blob: 23295dc5038641ac151d1cd30b2f21f996fb8f9a [file] [log] [blame]
Ben Cheng6e5a1b62014-04-08 14:53:42 -07001/* Script for -n: mix text and data on same page */
2OUTPUT_FORMAT("elf32-bigaarch64", "elf32-bigaarch64",
3 "elf32-littleaarch64")
4OUTPUT_ARCH(aarch64:ilp32)
5ENTRY(_start)
6SECTIONS
7{
8 /* Read-only sections, merged into text segment: */
9 PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x00400000)); . = SEGMENT_START("text-segment", 0x00400000);
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.ifunc : { *(.rela.ifunc) }
32 .rela.plt :
33 {
34 *(.rela.plt)
35 PROVIDE_HIDDEN (__rela_iplt_start = .);
36 *(.rela.iplt)
37 PROVIDE_HIDDEN (__rela_iplt_end = .);
38 }
39 .init :
40 {
41 KEEP (*(SORT_NONE(.init)))
42 } =0
43 .plt : { *(.plt) *(.iplt) }
44 .text :
45 {
46 *(.text.unlikely .text.*_unlikely .text.unlikely.*)
47 *(.text.exit .text.exit.*)
48 *(.text.startup .text.startup.*)
49 *(.text.hot .text.hot.*)
50 *(.text .stub .text.* .gnu.linkonce.t.*)
51 /* .gnu.warning sections are handled specially by elf32.em. */
52 *(.gnu.warning)
53 } =0
54 .fini :
55 {
56 KEEP (*(SORT_NONE(.fini)))
57 } =0
58 PROVIDE (__etext = .);
59 PROVIDE (_etext = .);
60 PROVIDE (etext = .);
61 .rodata : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
62 .rodata1 : { *(.rodata1) }
63 .eh_frame_hdr : { *(.eh_frame_hdr) }
64 .eh_frame : ONLY_IF_RO { KEEP (*(.eh_frame)) }
65 .gcc_except_table : ONLY_IF_RO { *(.gcc_except_table
66 .gcc_except_table.*) }
67 /* These sections are generated by the Sun/Oracle C++ compiler. */
68 .exception_ranges : ONLY_IF_RO { *(.exception_ranges
69 .exception_ranges*) }
70 /* Adjust the address for the data segment. We want to adjust up to
71 the same address within the page on the next page up. */
72 . = ALIGN(CONSTANT (MAXPAGESIZE)) + (. & (CONSTANT (MAXPAGESIZE) - 1));
73 /* Exception handling */
74 .eh_frame : ONLY_IF_RW { KEEP (*(.eh_frame)) }
75 .gcc_except_table : ONLY_IF_RW { *(.gcc_except_table .gcc_except_table.*) }
76 .exception_ranges : ONLY_IF_RW { *(.exception_ranges .exception_ranges*) }
77 /* Thread Local Storage sections */
78 .tdata : { *(.tdata .tdata.* .gnu.linkonce.td.*) }
79 .tbss : { *(.tbss .tbss.* .gnu.linkonce.tb.*) *(.tcommon) }
80 .preinit_array :
81 {
82 PROVIDE_HIDDEN (__preinit_array_start = .);
83 KEEP (*(.preinit_array))
84 PROVIDE_HIDDEN (__preinit_array_end = .);
85 }
86 .init_array :
87 {
88 PROVIDE_HIDDEN (__init_array_start = .);
89 KEEP (*(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*)))
90 KEEP (*(.init_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .ctors))
91 PROVIDE_HIDDEN (__init_array_end = .);
92 }
93 .fini_array :
94 {
95 PROVIDE_HIDDEN (__fini_array_start = .);
96 KEEP (*(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*)))
97 KEEP (*(.fini_array EXCLUDE_FILE (*crtbegin.o *crtbegin?.o *crtend.o *crtend?.o ) .dtors))
98 PROVIDE_HIDDEN (__fini_array_end = .);
99 }
100 .ctors :
101 {
102 /* gcc uses crtbegin.o to find the start of
103 the constructors, so we make sure it is
104 first. Because this is a wildcard, it
105 doesn't matter if the user does not
106 actually link against crtbegin.o; the
107 linker won't look for a file to match a
108 wildcard. The wildcard also means that it
109 doesn't matter which directory crtbegin.o
110 is in. */
111 KEEP (*crtbegin.o(.ctors))
112 KEEP (*crtbegin?.o(.ctors))
113 /* We don't want to include the .ctor section from
114 the crtend.o file until after the sorted ctors.
115 The .ctor section from the crtend file contains the
116 end of ctors marker and it must be last */
117 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .ctors))
118 KEEP (*(SORT(.ctors.*)))
119 KEEP (*(.ctors))
120 }
121 .dtors :
122 {
123 KEEP (*crtbegin.o(.dtors))
124 KEEP (*crtbegin?.o(.dtors))
125 KEEP (*(EXCLUDE_FILE (*crtend.o *crtend?.o ) .dtors))
126 KEEP (*(SORT(.dtors.*)))
127 KEEP (*(.dtors))
128 }
129 .jcr : { KEEP (*(.jcr)) }
130 .data.rel.ro : { *(.data.rel.ro.local* .gnu.linkonce.d.rel.ro.local.*) *(.data.rel.ro .data.rel.ro.* .gnu.linkonce.d.rel.ro.*) }
131 .dynamic : { *(.dynamic) }
132 .got : { *(.got) *(.igot) }
133 .got.plt : { *(.got.plt) *(.igot.plt) }
134 .data :
135 {
136 __data_start = . ;
137 *(.data .data.* .gnu.linkonce.d.*)
138 SORT(CONSTRUCTORS)
139 }
140 .data1 : { *(.data1) }
141 _edata = .; PROVIDE (edata = .);
142 . = .;
143 __bss_start = .;
144 __bss_start__ = .;
145 .bss :
146 {
147 *(.dynbss)
148 *(.bss .bss.* .gnu.linkonce.b.*)
149 *(COMMON)
150 /* Align here to ensure that the .bss section occupies space up to
151 _end. Align after .bss to ensure correct alignment even if the
152 .bss section disappears because there are no input sections.
153 FIXME: Why do we need it? When there is no .bss section, we don't
154 pad the .data section. */
155 . = ALIGN(. != 0 ? 32 / 8 : 1);
156 }
157 _bss_end__ = . ; __bss_end__ = . ;
158 . = ALIGN(32 / 8);
159 . = SEGMENT_START("ldata-segment", .);
160 . = ALIGN(32 / 8);
161 __end__ = . ;
162 _end = .; PROVIDE (end = .);
163 /* Stabs debugging sections. */
164 .stab 0 : { *(.stab) }
165 .stabstr 0 : { *(.stabstr) }
166 .stab.excl 0 : { *(.stab.excl) }
167 .stab.exclstr 0 : { *(.stab.exclstr) }
168 .stab.index 0 : { *(.stab.index) }
169 .stab.indexstr 0 : { *(.stab.indexstr) }
170 .comment 0 : { *(.comment) }
171 /* DWARF debug sections.
172 Symbols in the DWARF debugging sections are relative to the beginning
173 of the section so we begin them at 0. */
174 /* DWARF 1 */
175 .debug 0 : { *(.debug) }
176 .line 0 : { *(.line) }
177 /* GNU DWARF 1 extensions */
178 .debug_srcinfo 0 : { *(.debug_srcinfo) }
179 .debug_sfnames 0 : { *(.debug_sfnames) }
180 /* DWARF 1.1 and DWARF 2 */
181 .debug_aranges 0 : { *(.debug_aranges) }
182 .debug_pubnames 0 : { *(.debug_pubnames) }
183 /* DWARF 2 */
184 .debug_info 0 : { *(.debug_info .gnu.linkonce.wi.*) }
185 .debug_abbrev 0 : { *(.debug_abbrev) }
186 .debug_line 0 : { *(.debug_line .debug_line.* .debug_line_end ) }
187 .debug_frame 0 : { *(.debug_frame) }
188 .debug_str 0 : { *(.debug_str) }
189 .debug_loc 0 : { *(.debug_loc) }
190 .debug_macinfo 0 : { *(.debug_macinfo) }
191 /* SGI/MIPS DWARF 2 extensions */
192 .debug_weaknames 0 : { *(.debug_weaknames) }
193 .debug_funcnames 0 : { *(.debug_funcnames) }
194 .debug_typenames 0 : { *(.debug_typenames) }
195 .debug_varnames 0 : { *(.debug_varnames) }
196 /* DWARF 3 */
197 .debug_pubtypes 0 : { *(.debug_pubtypes) }
198 .debug_ranges 0 : { *(.debug_ranges) }
199 /* DWARF Extension. */
200 .debug_macro 0 : { *(.debug_macro) }
201 .stack 0x80000 :
202 {
203 _stack = .;
204 *(.stack)
205 }
206 .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
207 .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
208 /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
209}