OSDN Git Service

temp
[gengkapak/clang-GengKapak.git] / aarch64-linux-gnu / lib / ldscripts / aarch64linux32b.xc
1 /* Script for -z combreloc */
2 /* Copyright (C) 2014-2023 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.  */
6 OUTPUT_FORMAT("elf32-bigaarch64", "elf32-bigaarch64",
7               "elf32-littleaarch64")
8 OUTPUT_ARCH(aarch64:ilp32)
9 ENTRY(_start)
10 SEARCH_DIR("/home/runner/work/tc-build/tc-build/install/aarch64-linux-gnu/libilp32"); SEARCH_DIR("/home/runner/work/tc-build/tc-build/install/aarch64-linux-gnu/lib");
11 SECTIONS
12 {
13   /* Read-only sections, merged into text segment: */
14   PROVIDE (__executable_start = SEGMENT_START("text-segment", 0x400000)); . = SEGMENT_START("text-segment", 0x400000) + SIZEOF_HEADERS;
15   .interp         : { *(.interp) }
16   .note.gnu.build-id  : { *(.note.gnu.build-id) }
17   .hash           : { *(.hash) }
18   .gnu.hash       : { *(.gnu.hash) }
19   .dynsym         : { *(.dynsym) }
20   .dynstr         : { *(.dynstr) }
21   .gnu.version    : { *(.gnu.version) }
22   .gnu.version_d  : { *(.gnu.version_d) }
23   .gnu.version_r  : { *(.gnu.version_r) }
24   .rela.dyn       :
25     {
26       *(.rela.init)
27       *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
28       *(.rela.fini)
29       *(.rela.rodata .rela.rodata.* .rela.gnu.linkonce.r.*)
30       *(.rela.data .rela.data.* .rela.gnu.linkonce.d.*)
31       *(.rela.tdata .rela.tdata.* .rela.gnu.linkonce.td.*)
32       *(.rela.tbss .rela.tbss.* .rela.gnu.linkonce.tb.*)
33       *(.rela.ctors)
34       *(.rela.dtors)
35       *(.rela.got)
36       *(.rela.bss .rela.bss.* .rela.gnu.linkonce.b.*)
37       *(.rela.ifunc)
38     }
39   .rela.plt       :
40     {
41       *(.rela.plt)
42       PROVIDE_HIDDEN (__rela_iplt_start = .);
43       *(.rela.iplt)
44       PROVIDE_HIDDEN (__rela_iplt_end = .);
45     }
46   .init           :
47   {
48     KEEP (*(SORT_NONE(.init)))
49   } =0x1f2003d5
50   .plt            : ALIGN(16) { *(.plt) *(.iplt) }
51   .text           :
52   {
53     *(.text.unlikely .text.*_unlikely .text.unlikely.*)
54     *(.text.exit .text.exit.*)
55     *(.text.startup .text.startup.*)
56     *(.text.hot .text.hot.*)
57     *(SORT(.text.sorted.*))
58     *(.text .stub .text.* .gnu.linkonce.t.*)
59     /* .gnu.warning sections are handled specially by elf.em.  */
60     *(.gnu.warning)
61   } =0x1f2003d5
62   .fini           :
63   {
64     KEEP (*(SORT_NONE(.fini)))
65   } =0x1f2003d5
66   PROVIDE (__etext = .);
67   PROVIDE (_etext = .);
68   PROVIDE (etext = .);
69   .rodata         : { *(.rodata .rodata.* .gnu.linkonce.r.*) }
70   .rodata1        : { *(.rodata1) }
71   .eh_frame_hdr   : { *(.eh_frame_hdr) *(.eh_frame_entry .eh_frame_entry.*) }
72   .eh_frame       : ONLY_IF_RO { KEEP (*(.eh_frame)) *(.eh_frame.*) }
73   .sframe         : ONLY_IF_RO { *(.sframe) *(.sframe.*) }
74   .gcc_except_table   : ONLY_IF_RO { *(.gcc_except_table .gcc_except_table.*) }
75   .gnu_extab   : ONLY_IF_RO { *(.gnu_extab*) }
76   /* These sections are generated by the Sun/Oracle C++ compiler.  */
77   .exception_ranges   : ONLY_IF_RO { *(.exception_ranges*) }
78   /* Adjust the address for the data segment.  We want to adjust up to
79      the same address within the page on the next page up.  */
80   . = DATA_SEGMENT_ALIGN (CONSTANT (MAXPAGESIZE), CONSTANT (COMMONPAGESIZE));
81   /* Exception handling  */
82   .eh_frame       : ONLY_IF_RW { KEEP (*(.eh_frame)) *(.eh_frame.*) }
83   .sframe         : ONLY_IF_RW { *(.sframe) *(.sframe.*) }
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   . = DATA_SEGMENT_RELRO_END (12, .);
148   .got.plt        : { *(.got.plt) *(.igot.plt) }
149   .data           :
150   {
151     PROVIDE (__data_start = .);
152     *(.data .data.* .gnu.linkonce.d.*)
153     SORT(CONSTRUCTORS)
154   }
155   .data1          : { *(.data1) }
156   _edata = .; PROVIDE (edata = .);
157   . = .;
158   __bss_start = .;
159   __bss_start__ = .;
160   .bss            :
161   {
162    *(.dynbss)
163    *(.bss .bss.* .gnu.linkonce.b.*)
164    *(COMMON)
165    /* Align here to ensure that the .bss section occupies space up to
166       _end.  Align after .bss to ensure correct alignment even if the
167       .bss section disappears because there are no input sections.
168       FIXME: Why do we need it? When there is no .bss section, we do not
169       pad the .data section.  */
170    . = ALIGN(. != 0 ? 32 / 8 : 1);
171   }
172   _bss_end__ = .; __bss_end__ = .;
173   . = ALIGN(32 / 8);
174   . = SEGMENT_START("ldata-segment", .);
175   . = ALIGN(32 / 8);
176   __end__ = .;
177   _end = .; PROVIDE (end = .);
178   . = DATA_SEGMENT_END (.);
179   /* Stabs debugging sections.  */
180   .stab          0 : { *(.stab) }
181   .stabstr       0 : { *(.stabstr) }
182   .stab.excl     0 : { *(.stab.excl) }
183   .stab.exclstr  0 : { *(.stab.exclstr) }
184   .stab.index    0 : { *(.stab.index) }
185   .stab.indexstr 0 : { *(.stab.indexstr) }
186   .comment       0 : { *(.comment) }
187   .gnu.build.attributes : { *(.gnu.build.attributes .gnu.build.attributes.*) }
188   /* DWARF debug sections.
189      Symbols in the DWARF debugging sections are relative to the beginning
190      of the section so we begin them at 0.  */
191   /* DWARF 1.  */
192   .debug          0 : { *(.debug) }
193   .line           0 : { *(.line) }
194   /* GNU DWARF 1 extensions.  */
195   .debug_srcinfo  0 : { *(.debug_srcinfo) }
196   .debug_sfnames  0 : { *(.debug_sfnames) }
197   /* DWARF 1.1 and DWARF 2.  */
198   .debug_aranges  0 : { *(.debug_aranges) }
199   .debug_pubnames 0 : { *(.debug_pubnames) }
200   /* DWARF 2.  */
201   .debug_info     0 : { *(.debug_info .gnu.linkonce.wi.*) }
202   .debug_abbrev   0 : { *(.debug_abbrev) }
203   .debug_line     0 : { *(.debug_line .debug_line.* .debug_line_end) }
204   .debug_frame    0 : { *(.debug_frame) }
205   .debug_str      0 : { *(.debug_str) }
206   .debug_loc      0 : { *(.debug_loc) }
207   .debug_macinfo  0 : { *(.debug_macinfo) }
208   /* SGI/MIPS DWARF 2 extensions.  */
209   .debug_weaknames 0 : { *(.debug_weaknames) }
210   .debug_funcnames 0 : { *(.debug_funcnames) }
211   .debug_typenames 0 : { *(.debug_typenames) }
212   .debug_varnames  0 : { *(.debug_varnames) }
213   /* DWARF 3.  */
214   .debug_pubtypes 0 : { *(.debug_pubtypes) }
215   .debug_ranges   0 : { *(.debug_ranges) }
216   /* DWARF 5.  */
217   .debug_addr     0 : { *(.debug_addr) }
218   .debug_line_str 0 : { *(.debug_line_str) }
219   .debug_loclists 0 : { *(.debug_loclists) }
220   .debug_macro    0 : { *(.debug_macro) }
221   .debug_names    0 : { *(.debug_names) }
222   .debug_rnglists 0 : { *(.debug_rnglists) }
223   .debug_str_offsets 0 : { *(.debug_str_offsets) }
224   .debug_sup      0 : { *(.debug_sup) }
225   .ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }
226   .note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
227   /DISCARD/ : { *(.note.GNU-stack) *(.gnu_debuglink) *(.gnu.lto_*) }
228 }