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