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