The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/conf/ldscript.arm64

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $FreeBSD: releng/11.2/sys/conf/ldscript.arm64 317146 2017-04-19 15:46:34Z andrew $ */
    2 OUTPUT_ARCH(aarch64)
    3 ENTRY(_start)
    4 
    5 SEARCH_DIR(/usr/lib);
    6 SECTIONS
    7 {
    8   /* Read-only sections, merged into text segment: */
    9   . = kernbase + SIZEOF_HEADERS;
   10   .text      :
   11   {
   12     *(.text)
   13     *(.stub)
   14     /* .gnu.warning sections are handled specially by elf32.em.  */
   15     *(.gnu.warning)
   16     *(.gnu.linkonce.t*)
   17   } =0x9090
   18   _etext = .;
   19   PROVIDE (etext = .);
   20   .fini      : { *(.fini)    } =0x9090
   21   .rodata    : { *(.rodata*) *(.gnu.linkonce.r*) }
   22   .rodata1   : { *(.rodata1) }
   23    .interp     : { *(.interp)   }
   24   .hash          : { *(.hash)           }
   25   .dynsym        : { *(.dynsym)         }
   26   .dynstr        : { *(.dynstr)         }
   27   .gnu.version   : { *(.gnu.version)    }
   28   .gnu.version_d   : { *(.gnu.version_d)        }
   29   .gnu.version_r   : { *(.gnu.version_r)        }
   30   .rel.text      :
   31     { *(.rel.text) *(.rel.gnu.linkonce.t*) }
   32   .rela.text     :
   33     { *(.rela.text) *(.rela.gnu.linkonce.t*) }
   34   .rel.data      :
   35     { *(.rel.data) *(.rel.gnu.linkonce.d*) }
   36   .rela.data     :
   37     { *(.rela.data) *(.rela.gnu.linkonce.d*) }
   38   .rel.rodata    :
   39     { *(.rel.rodata) *(.rel.gnu.linkonce.r*) }
   40   .rela.rodata   :
   41     { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
   42   .rel.got       : { *(.rel.got)                }
   43   .rela.got      : { *(.rela.got)               }
   44   .rel.ctors     : { *(.rel.ctors)      }
   45   .rela.ctors    : { *(.rela.ctors)     }
   46   .rel.dtors     : { *(.rel.dtors)      }
   47   .rela.dtors    : { *(.rela.dtors)     }
   48   .rel.init      : { *(.rel.init)       }
   49   .rela.init     : { *(.rela.init)      }
   50   .rel.fini      : { *(.rel.fini)       }
   51   .rela.fini     : { *(.rela.fini)      }
   52   .rel.bss       : { *(.rel.bss)                }
   53   .rela.bss      : { *(.rela.bss)               }
   54   .rel.plt       : { *(.rel.plt)                }
   55   .rela.plt      : { *(.rela.plt)               }
   56   .init          : { *(.init)   } =0x9090
   57   .plt      : { *(.plt) }
   58 
   59   . = ALIGN(4);
   60   _extab_start = .;
   61   PROVIDE(extab_start = .);
   62   .ARM.extab : { *(.ARM.extab) }
   63   _extab.end = .;
   64   PROVIDE(extab_end = .);
   65 
   66   _exidx_start = .;
   67   PROVIDE(exidx_start = .);
   68   .ARM.exidx : { *(.ARM.exidx) }
   69   _exidx_end = .;
   70   PROVIDE(exidx_end = .);
   71 
   72   /* Adjust the address for the data segment.  We want to adjust up to
   73      the same address within the page on the next page up.  */
   74   . = ALIGN(0x1000) + (. & (0x1000 - 1)) ; 
   75   .data    :
   76   {
   77     *(.data)
   78     *(.gnu.linkonce.d*)
   79   }
   80   .data1   : { *(.data1) }
   81   . = ALIGN(32 / 8);
   82   _start_ctors = .;
   83   PROVIDE (start_ctors = .);
   84   .ctors         :
   85   {
   86     *(.ctors)
   87   }
   88   _stop_ctors = .;
   89   PROVIDE (stop_ctors = .);
   90   .dtors         :
   91   {
   92     *(.dtors)
   93   }
   94   .got           : { *(.got.plt) *(.got) }
   95   .dynamic       : { *(.dynamic) }
   96   /* We want the small data sections together, so single-instruction offsets
   97      can access them all, and initialized data all before uninitialized, so
   98      we can shorten the on-disk segment size.  */
   99   . = ALIGN(8);
  100   .sdata     : { *(.sdata) }
  101   _edata  =  .;
  102   PROVIDE (edata = .);
  103   __bss_start = .;
  104   .sbss      : { *(.sbss) *(.scommon) }
  105   .bss       :
  106   {
  107    *(.dynbss)
  108    *(.bss)
  109    *(COMMON)
  110   }
  111   . = ALIGN(8);
  112   _end = . ;
  113   PROVIDE (end = .);
  114   /* Stabs debugging sections.  */
  115   .stab 0 : { *(.stab) }
  116   .stabstr 0 : { *(.stabstr) }
  117   .stab.excl 0 : { *(.stab.excl) }
  118   .stab.exclstr 0 : { *(.stab.exclstr) }
  119   .stab.index 0 : { *(.stab.index) }
  120   .stab.indexstr 0 : { *(.stab.indexstr) }
  121   .comment 0 : { *(.comment) }
  122   /* DWARF debug sections.
  123      Symbols in the DWARF debugging sections are relative to the beginning
  124      of the section so we begin them at 0.  */
  125   /* DWARF 1 */
  126   .debug          0 : { *(.debug) }
  127   .line           0 : { *(.line) }
  128   /* GNU DWARF 1 extensions */
  129   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  130   .debug_sfnames  0 : { *(.debug_sfnames) }
  131   /* DWARF 1.1 and DWARF 2 */
  132   .debug_aranges  0 : { *(.debug_aranges) }
  133   .debug_pubnames 0 : { *(.debug_pubnames) }
  134   /* DWARF 2 */
  135   .debug_info     0 : { *(.debug_info) }
  136   .debug_abbrev   0 : { *(.debug_abbrev) }
  137   .debug_line     0 : { *(.debug_line) }
  138   .debug_frame    0 : { *(.debug_frame) }
  139   .debug_str      0 : { *(.debug_str) }
  140   .debug_loc      0 : { *(.debug_loc) }
  141   .debug_macinfo  0 : { *(.debug_macinfo) }
  142   /* SGI/MIPS DWARF 2 extensions */
  143   .debug_weaknames 0 : { *(.debug_weaknames) }
  144   .debug_funcnames 0 : { *(.debug_funcnames) }
  145   .debug_typenames 0 : { *(.debug_typenames) }
  146   .debug_varnames  0 : { *(.debug_varnames) }
  147   /* These must appear regardless of  .  */
  148 }

Cache object: 0484bb253df12bfb9f4b0062744c169e


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.