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