blob: 67a92e064b4cac3f86d22920f5f5b19287a10ed6 [file] [log] [blame]
Andrew Hsiehe759bdc2013-09-22 14:05:12 +08001/* Script for -N: mix text and data on same page; don't align data */
2OUTPUT_FORMAT("elf64-x86-64", "elf64-x86-64",
3 "elf64-x86-64")
4OUTPUT_ARCH(i386:x86-64)
5ENTRY(_start)
6SECTIONS
7{
8 /* Read-only sections, merged into text segment: */
9 PROVIDE (__executable_start = 0x400000); . = 0x400000 + SIZEOF_HEADERS;
10 .interp : { *(.interp) }
11 .note.gnu.build-id : { *(.note.gnu.build-id) }
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 .rela.init : { *(.rela.init) }
20 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
21 .rela.fini : { *(.rela.fini) }
22 .rela.rodata : { *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*) }
23 .rela.data.rel.ro : { *(.rela.data.rel.ro .rela.data.rel.ro.* .rela.gnu.linkonce.d.rel.ro.*) }
24 .rela.data : { *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*) }
25 .rela.tdata : { *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*) }
26 .rela.tbss : { *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*) }
27 .rela.ctors : { *(.rela.ctors) }
28 .rela.dtors : { *(.rela.dtors) }
29 .rela.got : { *(.rela.got) }
30 .rela.bss : { *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*) }
31 .rela.ldata : { *(.rela.ldata .rela.ldata.* .rela.gnu.linkonce.l.*) }
32 .rela.lbss : { *(.rela.lbss .rela.lbss.* .rela.gnu.linkonce.lb.*) }
33 .rela.lrodata : { *(.rela.lrodata .rela.lrodata.* .rela.gnu.linkonce.lr.*) }
34 .rela.ifunc : { *(.rela.ifunc) }
35 .rela.plt :
36 {
37 *(.rela.plt)
38 PROVIDE_HIDDEN (__rela_iplt_start = .);
39 *(.rela.iplt)
40 PROVIDE_HIDDEN (__rela_iplt_end = .);
41 }
42 .init :
43 {
44 KEEP (*(SORT_NONE(.init)))
45 }
46 .plt : { *(.plt) *(.iplt) }
47 .text :
48 {
Andrew Hsiehc3c37a52014-04-26 19:57:57 -070049 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
Andrew Hsiehe759bdc2013-09-22 14:05:12 +080050 *(.text.exit .text.exit.*)
51 *(.text.startup .text.startup.*)
52 *(.text.hot .text.hot.*)
53 *(.text .stub .text.* .gnu.linkonce.t.*)
54 /* .gnu.warning sections are handled specially by elf32.em. */
55 *(.gnu.warning)
56 }
57 .fini :
58 {
59 KEEP (*(SORT_NONE(.fini)))
60 }
61 PROVIDE (__etext = .);
62 PROVIDE (_etext = .);
63 PROVIDE (etext = .);
64 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
65 .rodata1 : { *(.rodata1) }
66 .eh_frame_hdr : { *(.eh_frame_hdr) }
67 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
68 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
69 .gcc_except_table.*) }
70 /* These sections are generated by the Sun/Oracle C++ compiler. */
71 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
72 .exception_ranges*) }
Andrew Hsieh5b474152014-02-06 16:15:29 +080073 /* Adjust the address for the data segment. For 32 bits we want to align
74 at exactly a page boundary to make life easier for apriori. */
Andrew Hsiehe759bdc2013-09-22 14:05:12 +080075 . = .;
76 /* Exception handling */
77 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
78 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
79 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
80 /* Thread Local Storage sections */
81 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
82 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
83 /* Ensure the __preinit_array_start label is properly aligned. We
84 could instead move the label definition inside the section, but
85 the linker would then create the section even if it turns out to
86 be empty, which isn't pretty. */
87 . = ALIGN(32 / 8);
88 PROVIDE_HIDDEN (__preinit_array_start = .);
89 .preinit_array :
90 {
91 KEEP (*(.preinit_array))
92 }
93 PROVIDE_HIDDEN (__preinit_array_end = .);
94 PROVIDE_HIDDEN (__init_array_start = .);
95 .init_array :
96 {
97 KEEP (*crtbegin*.o(.init_array))
98 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
Andrew Hsiehc3c37a52014-04-26 19:57:57 -070099 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .ctors))
Andrew Hsiehe759bdc2013-09-22 14:05:12 +0800100 }
101 PROVIDE_HIDDEN (__init_array_end = .);
102 PROVIDE_HIDDEN (__fini_array_start = .);
103 .fini_array :
104 {
105 KEEP (*crtbegin*.o(.fini_array))
106 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
Andrew Hsiehc3c37a52014-04-26 19:57:57 -0700107 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin*.o *crtend.o *crtend*.o ) .dtors))
Andrew Hsiehe759bdc2013-09-22 14:05:12 +0800108 }
109 PROVIDE_HIDDEN (__fini_array_end = .);
110 .ctors :
111 {
112 /* gcc uses crtbegin.o to find the start of
113 the constructors, so we make sure it is
114 first. Because this is a wildcard, it
115 doesn't matter if the user does not
116 actually link against crtbegin.o; the
117 linker won't look for a file to match a
118 wildcard. The wildcard also means that it
119 doesn't matter which directory crtbegin.o
120 is in. */
121 KEEP (*crtbegin.o(.ctors))
122 KEEP (*crtbegin*.o(.ctors))
123 /* We don't want to include the .ctor section from
124 the crtend.o file until after the sorted ctors.
125 The .ctor section from the crtend file contains the
126 end of ctors marker and it must be last */
127 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .ctors))
128 KEEP (*(SORT(.ctors.*)))
129 KEEP (*(.ctors))
130 }
131 .dtors :
132 {
133 KEEP (*crtbegin.o(.dtors))
134 KEEP (*crtbegin*.o(.dtors))
135 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend*.o ) .dtors))
136 KEEP (*(SORT(.dtors.*)))
137 KEEP (*(.dtors))
138 }
139 .jcr : { KEEP (*(.jcr)) }
140 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
141 .dynamic : { *(.dynamic) }
142 .got : { *(.got) *(.igot) }
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 . = .;
152 __bss_start = .;
153 .bss :
154 {
155 *(.dynbss)
156 *(.bss .bss.* .gnu.linkonce.b.*)
157 *(COMMON)
158 /* Align here to ensure that the .bss section occupies space up to
159 _end. Align after .bss to ensure correct alignment even if the
160 .bss section disappears because there are no input sections. */
161 . = ALIGN(64 / 8);
162 }
163 .lbss :
164 {
165 *(.dynlbss)
166 *(.lbss .lbss.* .gnu.linkonce.lb.*)
167 *(LARGE_COMMON)
168 }
169 . = ALIGN(64 / 8);
Andrew Hsiehc3c37a52014-04-26 19:57:57 -0700170 . = SEGMENT_START("ldata-segment", .);
Andrew Hsiehe759bdc2013-09-22 14:05:12 +0800171 .lrodata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
172 {
173 *(.lrodata .lrodata.* .gnu.linkonce.lr.*)
174 }
175 .ldata ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1)) :
176 {
177 *(.ldata .ldata.* .gnu.linkonce.l.*)
178 . = ALIGN(. != 0 ? 64 / 8 : 1);
179 }
180 . = ALIGN(64 / 8);
181 _end = .;
182 _bss_end__ = . ; __bss_end__ = . ; __end__ = . ;
183 PROVIDE (end = .);
184 /* Stabs debugging sections. */
185 .stab 0 : { *(.stab) }
186 .stabstr 0 : { *(.stabstr) }
187 .stab.excl 0 : { *(.stab.excl) }
188 .stab.exclstr 0 : { *(.stab.exclstr) }
189 .stab.index 0 : { *(.stab.index) }
190 .stab.indexstr 0 : { *(.stab.indexstr) }
191 .comment 0 : { *(.comment) }
192 /* DWARF debug sections.
193 Symbols in the DWARF debugging sections are relative to the beginning
194 of the section so we begin them at 0. */
195 /* DWARF 1 */
196 .debug 0 : { *(.debug) }
197 .line 0 : { *(.line) }
198 /* GNU DWARF 1 extensions */
199 .debug_srcinfo 0 : { *(.debug_srcinfo) }
200 .debug_sfnames 0 : { *(.debug_sfnames) }
201 /* DWARF 1.1 and DWARF 2 */
202 .debug_aranges 0 : { *(.debug_aranges) }
203 .debug_pubnames 0 : { *(.debug_pubnames) }
204 /* DWARF 2 */
205 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
206 .debug_abbrev 0 : { *(.debug_abbrev) }
Andrew Hsiehc3c37a52014-04-26 19:57:57 -0700207 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
Andrew Hsiehe759bdc2013-09-22 14:05:12 +0800208 .debug_frame 0 : { *(.debug_frame) }
209 .debug_str 0 : { *(.debug_str) }
210 .debug_loc 0 : { *(.debug_loc) }
211 .debug_macinfo 0 : { *(.debug_macinfo) }
212 /* SGI/MIPS DWARF 2 extensions */
213 .debug_weaknames 0 : { *(.debug_weaknames) }
214 .debug_funcnames 0 : { *(.debug_funcnames) }
215 .debug_typenames 0 : { *(.debug_typenames) }
216 .debug_varnames 0 : { *(.debug_varnames) }
217 /* DWARF 3 */
218 .debug_pubtypes 0 : { *(.debug_pubtypes) }
219 .debug_ranges 0 : { *(.debug_ranges) }
220 /* DWARF Extension. */
221 .debug_macro 0 : { *(.debug_macro) }
222 .gnu.attributes 0 : { KEEP (*(.gnu.attributes)) }
223 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) *(.mdebug.*) }
224}