xref: /freebsd/sys/conf/ldscript.amd64 (revision 8ba66bb8)
1/* $FreeBSD$ */
2OUTPUT_FORMAT("elf64-x86-64-freebsd", "elf64-x86-64-freebsd", "elf64-x86-64-freebsd")
3OUTPUT_ARCH(i386:x86-64)
4ENTRY(btext)
5SEARCH_DIR("/usr/lib");
6SECTIONS
7{
8  /* Read-only sections, merged into text segment: */
9  . = kernbase + CONSTANT (MAXPAGESIZE) + SIZEOF_HEADERS;
10  .interp         : { *(.interp) }
11  .hash           : { *(.hash) }
12  .gnu.hash       : { *(.gnu.hash) }
13  .dynsym         : { *(.dynsym) }
14  .dynstr         : { *(.dynstr) }
15  .gnu.version    : { *(.gnu.version) }
16  .gnu.version_d  : { *(.gnu.version_d) }
17  .gnu.version_r  : { *(.gnu.version_r) }
18  .rel.init       : { *(.rel.init) }
19  .rela.init      : { *(.rela.init) }
20  .rel.text       : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
21  .rela.text      : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
22  .rel.fini       : { *(.rel.fini) }
23  .rela.fini      : { *(.rela.fini) }
24  .rel.rodata     : { *(.rel.rodata .rel.rodata.* .rel.gnu.linkonce.r.*) }
25  .rela.rodata    : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
26  .rel.data.rel.ro   : { *(.rel.data.rel.ro* .rel.gnu.linkonce.d.rel.ro.*) }
27  .rela.data.rel.ro   : { *(.rela.data.rel.ro* .rela.gnu.linkonce.d.rel.ro.*) }
28  .rel.data       : { *(.rel.data .rel.data.* .rel.gnu.linkonce.d.*) }
29  .rela.data      : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
30  .rel.tdata	  : { *(.rel.tdata .rel.tdata.* .rel.gnu.linkonce.td.*) }
31  .rela.tdata	  : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
32  .rel.tbss	  : { *(.rel.tbss .rel.tbss.* .rel.gnu.linkonce.tb.*) }
33  .rela.tbss	  : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
34  .rel.ctors      : { *(.rel.ctors) }
35  .rela.ctors     : { *(.rela.ctors) }
36  .rel.dtors      : { *(.rel.dtors) }
37  .rela.dtors     : { *(.rela.dtors) }
38  .rel.got        : { *(.rel.got) }
39  .rela.got       : { *(.rela.got) }
40  .rel.bss        : { *(.rel.bss .rel.bss.* .rel.gnu.linkonce.b.*) }
41  .rela.bss       : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
42  .rel.ldata      : { *(.rel.ldata .rel.ldata.* .rel.gnu.linkonce.l.*) }
43  .rela.ldata     : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
44  .rel.lbss       : { *(.rel.lbss .rel.lbss.* .rel.gnu.linkonce.lb.*) }
45  .rela.lbss      : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
46  .rel.lrodata    : { *(.rel.lrodata .rel.lrodata.* .rel.gnu.linkonce.lr.*) }
47  .rela.lrodata   : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
48  .rel.plt        : { *(.rel.plt) }
49  .rela.plt       : { *(.rela.plt) }
50  .init           :
51  {
52    KEEP (*(.init))
53  } =0x90909090
54  .plt            : { *(.plt) }
55  .text           :
56  {
57    *(.text .stub .text.* .gnu.linkonce.t.*)
58    KEEP (*(.text.*personality*))
59    /* .gnu.warning sections are handled specially by elf32.em.  */
60    *(.gnu.warning)
61  } =0x90909090
62  .fini           :
63  {
64    KEEP (*(.fini))
65  } =0x90909090
66  PROVIDE (__etext = .);
67  PROVIDE (_etext = .);
68  PROVIDE (etext = .);
69  .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
70  .rodata1        : { *(.rodata1) }
71  .eh_frame_hdr : { *(.eh_frame_hdr) }
72  .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) }
73  .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }
74  /* Adjust the address for the data segment.  We want to adjust up to
75     the same address within the page on the next page up.  */
76  . = ALIGN (CONSTANT (MAXPAGESIZE)) - ((CONSTANT (MAXPAGESIZE) - .) & (CONSTANT (MAXPAGESIZE) - 1)); . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
77  /* Exception handling  */
78  .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) }
79  .gcc_except_table   : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
80  /* Thread Local Storage sections  */
81  .tdata	  : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
82  .tbss		  : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
83  .preinit_array     :
84  {
85    PROVIDE_HIDDEN (__preinit_array_start = .);
86    KEEP (*(.preinit_array))
87    PROVIDE_HIDDEN (__preinit_array_end = .);
88  }
89  .init_array     :
90  {
91     PROVIDE_HIDDEN (__init_array_start = .);
92     KEEP (*(SORT(.init_array.*)))
93     KEEP (*(.init_array))
94     PROVIDE_HIDDEN (__init_array_end = .);
95  }
96  .fini_array     :
97  {
98    PROVIDE_HIDDEN (__fini_array_start = .);
99    KEEP (*(.fini_array))
100    KEEP (*(SORT(.fini_array.*)))
101    PROVIDE_HIDDEN (__fini_array_end = .);
102  }
103  _start_ctors = .;
104  PROVIDE (start_ctors = .);
105  .ctors          :
106  {
107    /* gcc uses crtbegin.o to find the start of
108       the constructors, so we make sure it is
109       first.  Because this is a wildcard, it
110       doesn't matter if the user does not
111       actually link against crtbegin.o; the
112       linker won't look for a file to match a
113       wildcard.  The wildcard also means that it
114       doesn't matter which directory crtbegin.o
115       is in.  */
116    KEEP (*crtbegin.o(.ctors))
117    KEEP (*crtbegin?.o(.ctors))
118    /* We don't want to include the .ctor section from
119       the crtend.o file until after the sorted ctors.
120       The .ctor section from the crtend file contains the
121       end of ctors marker and it must be last */
122    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
123    KEEP (*(SORT(.ctors.*)))
124    KEEP (*(.ctors))
125  }
126  _stop_ctors = .;
127  PROVIDE (stop_ctors = .);
128  .dtors          :
129  {
130    KEEP (*crtbegin.o(.dtors))
131    KEEP (*crtbegin?.o(.dtors))
132    KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
133    KEEP (*(SORT(.dtors.*)))
134    KEEP (*(.dtors))
135  }
136  .jcr            : { KEEP (*(.jcr)) }
137  .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro* .gnu.linkonce.d.rel.ro.*) }
138  .dynamic        : { *(.dynamic) }
139  .got            : { *(.got) }
140  . = DATA_SEGMENT_RELRO_END (24, .);
141  .got.plt        : { *(.got.plt) }
142  .data           :
143  {
144    *(.data .data.* .gnu.linkonce.d.*)
145    KEEP (*(.gnu.linkonce.d.*personality*))
146    SORT(CONSTRUCTORS)
147  }
148  .data1          : { *(.data1) }
149  _edata = .; PROVIDE (edata = .);
150  __bss_start = .;
151  .bss            :
152  {
153   *(.dynbss)
154   *(.bss .bss.* .gnu.linkonce.b.*)
155   *(COMMON)
156   /* Align here to ensure that the .bss section occupies space up to
157      _end.  Align after .bss to ensure correct alignment even if the
158      .bss section disappears because there are no input sections.
159      FIXME: Why do we need it? When there is no .bss section, we don't
160      pad the .data section.  */
161   . = ALIGN(. != 0 ? 64 / 8 : 1);
162  }
163  .lbss   :
164  {
165    *(.dynlbss)
166    *(.lbss .lbss.* .gnu.linkonce.lb.*)
167    *(LARGE_COMMON)
168  }
169  . = ALIGN(64 / 8);
170  .lrodata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
171  {
172    *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
173  }
174  .ldata   ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
175  {
176    *(.ldata .ldata.* .gnu.linkonce.l.*)
177    . = ALIGN(. != 0 ? 64 / 8 : 1);
178  }
179  . = ALIGN(64 / 8);
180  _end = .; PROVIDE (end = .);
181  . = DATA_SEGMENT_END (.);
182  /* Stabs debugging sections.  */
183  .stab          0 : { *(.stab) }
184  .stabstr       0 : { *(.stabstr) }
185  .stab.excl     0 : { *(.stab.excl) }
186  .stab.exclstr  0 : { *(.stab.exclstr) }
187  .stab.index    0 : { *(.stab.index) }
188  .stab.indexstr 0 : { *(.stab.indexstr) }
189  .comment       0 : { *(.comment) }
190  /* DWARF debug sections.
191     Symbols in the DWARF debugging sections are relative to the beginning
192     of the section so we begin them at 0.  */
193  /* DWARF 1 */
194  .debug          0 : { *(.debug) }
195  .line           0 : { *(.line) }
196  /* GNU DWARF 1 extensions */
197  .debug_srcinfo  0 : { *(.debug_srcinfo) }
198  .debug_sfnames  0 : { *(.debug_sfnames) }
199  /* DWARF 1.1 and DWARF 2 */
200  .debug_aranges  0 : { *(.debug_aranges) }
201  .debug_pubnames 0 : { *(.debug_pubnames) }
202  /* DWARF 2 */
203  .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
204  .debug_abbrev   0 : { *(.debug_abbrev) }
205  .debug_line     0 : { *(.debug_line) }
206  .debug_frame    0 : { *(.debug_frame) }
207  .debug_str      0 : { *(.debug_str) }
208  .debug_loc      0 : { *(.debug_loc) }
209  .debug_macinfo  0 : { *(.debug_macinfo) }
210  /* SGI/MIPS DWARF 2 extensions */
211  .debug_weaknames 0 : { *(.debug_weaknames) }
212  .debug_funcnames 0 : { *(.debug_funcnames) }
213  .debug_typenames 0 : { *(.debug_typenames) }
214  .debug_varnames  0 : { *(.debug_varnames) }
215  /* DWARF 3 */
216  .debug_pubtypes 0 : { *(.debug_pubtypes) }
217  .debug_ranges   0 : { *(.debug_ranges) }
218  .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
219  /DISCARD/ : { *(.note.GNU-stack) }
220}
221