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