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.powerpc64

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.0/sys/conf/ldscript.powerpc64 291441 2015-11-29 06:40:09Z nwhitehorn $ */
    2 
    3 OUTPUT_FORMAT("elf64-powerpc-freebsd", "elf64-powerpc-freebsd",
    4               "elf64-powerpc-freebsd")
    5 OUTPUT_ARCH(powerpc:common64)
    6 ENTRY(__start)
    7 SEARCH_DIR(/usr/lib);
    8 PROVIDE (__stack = 0);
    9 SECTIONS
   10 {
   11   /* Read-only sections, merged into text segment: */
   12 
   13   . = kernbase + SIZEOF_HEADERS;
   14   PROVIDE (begin = . - SIZEOF_HEADERS);
   15 
   16   .text      :
   17   {
   18     *(.text)
   19     *(.stub)
   20     /* .gnu.warning sections are handled specially by elf32.em.  */
   21     *(.gnu.warning)
   22     *(.gnu.linkonce.t*)
   23   } =0
   24   _etext = .;
   25   PROVIDE (etext = .);
   26 
   27   .interp     : { *(.interp)    }
   28   .hash          : { *(.hash)           }
   29   .dynsym        : { *(.dynsym)         }
   30   .dynstr        : { *(.dynstr)         }
   31   .gnu.version   : { *(.gnu.version)    }
   32   .gnu.version_d   : { *(.gnu.version_d)        }
   33   .gnu.version_r   : { *(.gnu.version_r)        }
   34   .rela.text     :
   35     { *(.rela.text) *(.rela.gnu.linkonce.t*) }
   36   .rela.data     :
   37     { *(.rela.data) *(.rela.gnu.linkonce.d*) }
   38   .rela.rodata   :
   39     { *(.rela.rodata) *(.rela.gnu.linkonce.r*) }
   40   .rela.got      : { *(.rela.got)               }
   41   .rela.got1     : { *(.rela.got1)              }
   42   .rela.got2     : { *(.rela.got2)              }
   43   .rela.ctors    : { *(.rela.ctors)     }
   44   .rela.dtors    : { *(.rela.dtors)     }
   45   .rela.init     : { *(.rela.init)      }
   46   .rela.fini     : { *(.rela.fini)      }
   47   .rela.bss      : { *(.rela.bss)               }
   48   .rela.plt      : { *(.rela.plt)               }
   49   .rela.sdata    : { *(.rela.sdata)             }
   50   .rela.sbss     : { *(.rela.sbss)              }
   51   .rela.sdata2   : { *(.rela.sdata2)            }
   52   .rela.sbss2    : { *(.rela.sbss2)             }
   53 
   54   .init      : { *(.init)    } =0
   55   .fini      : { *(.fini)    } =0
   56   .rodata    : { *(.rodata) *(.gnu.linkonce.r*) }
   57   .rodata1   : { *(.rodata1) }
   58   .sdata2    : { *(.sdata2)  }
   59   .sbss2     : { *(.sbss2)   }
   60   /* Adjust the address for the data segment to the next page up. */
   61   . = ALIGN(4096);
   62   .data    :
   63   {
   64     *(.data)
   65     *(.gnu.linkonce.d*)
   66     CONSTRUCTORS
   67   }
   68   .data1     : { *(.data1) }
   69   .toc1      : ALIGN(8) { *(.toc1) }
   70   .opd       : ALIGN(8) { KEEP (*(.opd)) }
   71   .branch_lt : ALIGN(8) { *(.branch_lt) }
   72   . = ALIGN(4096);
   73   .got       : ALIGN(8) { __tocbase = .; *(.got .toc) }
   74 
   75   .dynamic        : { *(.dynamic) }
   76   /* Put .ctors and .dtors next to the .got2 section, so that the pointers
   77      get relocated with -mrelocatable. Also put in the .fixup pointers.
   78      The current compiler no longer needs this, but keep it around for 2.7.2  */
   79                 PROVIDE (_GOT2_START_ = .);
   80   .got2           :  { *(.got2) }
   81                 PROVIDE (__CTOR_LIST__ = .);
   82   .ctors          : { *(.ctors) }
   83                 PROVIDE (__CTOR_END__ = .);
   84                 PROVIDE (__DTOR_LIST__ = .);
   85   .dtors          : { *(.dtors) }
   86                 PROVIDE (__DTOR_END__ = .);
   87                 PROVIDE (_FIXUP_START_ = .);
   88   .fixup          : { *(.fixup) }
   89                 PROVIDE (_FIXUP_END_ = .);
   90                 PROVIDE (_GOT2_END_ = .);
   91   /* We want the small data sections together, so single-instruction offsets
   92      can access them all, and initialized data all before uninitialized, so
   93      we can shorten the on-disk segment size.  */
   94   .sdata     : { *(.sdata) }
   95   _edata  =  .;
   96   PROVIDE (edata = .);
   97   .sbss      :
   98   {
   99     PROVIDE (__sbss_start = .);
  100     *(.sbss)
  101     *(.scommon)
  102     *(.dynsbss)
  103     PROVIDE (__sbss_end = .);
  104   }
  105   .plt   : { *(.plt) }
  106   .bss       :
  107   {
  108    PROVIDE (__bss_start = .);
  109    *(.dynbss)
  110    *(.bss)
  111    *(COMMON)
  112   }
  113   _end = . ;
  114   PROVIDE (end = .);
  115   /* Stabs debugging sections.  */
  116   .stab 0 : { *(.stab) }
  117   .stabstr 0 : { *(.stabstr) }
  118   /* DWARF debug sections.
  119      Symbols in the DWARF debugging sections are relative to the beginning
  120      of the section so we begin them at 0.  */
  121   /* DWARF 1 */
  122   .debug          0 : { *(.debug) }
  123   .line           0 : { *(.line) }
  124   /* GNU DWARF 1 extensions */
  125   .debug_srcinfo  0 : { *(.debug_srcinfo) }
  126   .debug_sfnames  0 : { *(.debug_sfnames) }
  127   /* DWARF 1.1 and DWARF 2 */
  128   .debug_aranges  0 : { *(.debug_aranges) }
  129   .debug_pubnames 0 : { *(.debug_pubnames) }
  130   /* DWARF 2 */
  131   .debug_info     0 : { *(.debug_info) }
  132   .debug_abbrev   0 : { *(.debug_abbrev) }
  133   .debug_line     0 : { *(.debug_line) }
  134   .debug_frame    0 : { *(.debug_frame) }
  135   .debug_str      0 : { *(.debug_str) }
  136   .debug_loc      0 : { *(.debug_loc) }
  137   .debug_macinfo  0 : { *(.debug_macinfo) }
  138   /* SGI/MIPS DWARF 2 extensions */
  139   .debug_weaknames 0 : { *(.debug_weaknames) }
  140   .debug_funcnames 0 : { *(.debug_funcnames) }
  141   .debug_typenames 0 : { *(.debug_typenames) }
  142   .debug_varnames  0 : { *(.debug_varnames) }
  143   /* These must appear regardless of  .  */
  144 }
  145 

Cache object: f4b704240e4a3f790cd941c750be1b2f


[ 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.