1 /* AArch64-specific support for NN-bit ELF.
2 Copyright (C) 2009-2017 Free Software Foundation, Inc.
3 Contributed by ARM Ltd.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING3. If not,
19 see <http://www.gnu.org/licenses/>. */
21 /* Notes on implementation:
23 Thread Local Store (TLS)
27 The implementation currently supports both traditional TLS and TLS
28 descriptors, but only general dynamic (GD).
30 For traditional TLS the assembler will present us with code
31 fragments of the form:
34 R_AARCH64_TLSGD_ADR_PAGE21(foo)
35 add x0, :tlsgd_lo12:foo
36 R_AARCH64_TLSGD_ADD_LO12_NC(foo)
40 For TLS descriptors the assembler will present us with code
41 fragments of the form:
43 adrp x0, :tlsdesc:foo R_AARCH64_TLSDESC_ADR_PAGE21(foo)
44 ldr x1, [x0, #:tlsdesc_lo12:foo] R_AARCH64_TLSDESC_LD64_LO12(foo)
45 add x0, x0, #:tlsdesc_lo12:foo R_AARCH64_TLSDESC_ADD_LO12(foo)
47 blr x1 R_AARCH64_TLSDESC_CALL(foo)
49 The relocations R_AARCH64_TLSGD_{ADR_PREL21,ADD_LO12_NC} against foo
50 indicate that foo is thread local and should be accessed via the
51 traditional TLS mechanims.
53 The relocations R_AARCH64_TLSDESC_{ADR_PAGE21,LD64_LO12_NC,ADD_LO12_NC}
54 against foo indicate that 'foo' is thread local and should be accessed
55 via a TLS descriptor mechanism.
57 The precise instruction sequence is only relevant from the
58 perspective of linker relaxation which is currently not implemented.
60 The static linker must detect that 'foo' is a TLS object and
61 allocate a double GOT entry. The GOT entry must be created for both
62 global and local TLS symbols. Note that this is different to none
63 TLS local objects which do not need a GOT entry.
65 In the traditional TLS mechanism, the double GOT entry is used to
66 provide the tls_index structure, containing module and offset
67 entries. The static linker places the relocation R_AARCH64_TLS_DTPMOD
68 on the module entry. The loader will subsequently fixup this
69 relocation with the module identity.
71 For global traditional TLS symbols the static linker places an
72 R_AARCH64_TLS_DTPREL relocation on the offset entry. The loader
73 will subsequently fixup the offset. For local TLS symbols the static
74 linker fixes up offset.
76 In the TLS descriptor mechanism the double GOT entry is used to
77 provide the descriptor. The static linker places the relocation
78 R_AARCH64_TLSDESC on the first GOT slot. The loader will
79 subsequently fix this up.
83 The handling of TLS symbols is implemented across a number of
84 different backend functions. The following is a top level view of
85 what processing is performed where.
87 The TLS implementation maintains state information for each TLS
88 symbol. The state information for local and global symbols is kept
89 in different places. Global symbols use generic BFD structures while
90 local symbols use backend specific structures that are allocated and
91 maintained entirely by the backend.
95 elfNN_aarch64_check_relocs()
97 This function is invoked for each relocation.
99 The TLS relocations R_AARCH64_TLSGD_{ADR_PREL21,ADD_LO12_NC} and
100 R_AARCH64_TLSDESC_{ADR_PAGE21,LD64_LO12_NC,ADD_LO12_NC} are
101 spotted. One time creation of local symbol data structures are
102 created when the first local symbol is seen.
104 The reference count for a symbol is incremented. The GOT type for
105 each symbol is marked as general dynamic.
107 elfNN_aarch64_allocate_dynrelocs ()
109 For each global with positive reference count we allocate a double
110 GOT slot. For a traditional TLS symbol we allocate space for two
111 relocation entries on the GOT, for a TLS descriptor symbol we
112 allocate space for one relocation on the slot. Record the GOT offset
115 elfNN_aarch64_size_dynamic_sections ()
117 Iterate all input BFDS, look for in the local symbol data structure
118 constructed earlier for local TLS symbols and allocate them double
119 GOT slots along with space for a single GOT relocation. Update the
120 local symbol structure to record the GOT offset allocated.
122 elfNN_aarch64_relocate_section ()
124 Calls elfNN_aarch64_final_link_relocate ()
126 Emit the relevant TLS relocations against the GOT for each TLS
127 symbol. For local TLS symbols emit the GOT offset directly. The GOT
128 relocations are emitted once the first time a TLS symbol is
129 encountered. The implementation uses the LSB of the GOT offset to
130 flag that the relevant GOT relocations for a symbol have been
131 emitted. All of the TLS code that uses the GOT offset needs to take
132 care to mask out this flag bit before using the offset.
134 elfNN_aarch64_final_link_relocate ()
136 Fixup the R_AARCH64_TLSGD_{ADR_PREL21, ADD_LO12_NC} relocations. */
140 #include "libiberty.h"
142 #include "bfd_stdint.h"
145 #include "objalloc.h"
146 #include "elf/aarch64.h"
147 #include "elfxx-aarch64.h"
152 #define AARCH64_R(NAME) R_AARCH64_ ## NAME
153 #define AARCH64_R_STR(NAME) "R_AARCH64_" #NAME
154 #define HOWTO64(...) HOWTO (__VA_ARGS__)
155 #define HOWTO32(...) EMPTY_HOWTO (0)
156 #define LOG_FILE_ALIGN 3
160 #define AARCH64_R(NAME) R_AARCH64_P32_ ## NAME
161 #define AARCH64_R_STR(NAME) "R_AARCH64_P32_" #NAME
162 #define HOWTO64(...) EMPTY_HOWTO (0)
163 #define HOWTO32(...) HOWTO (__VA_ARGS__)
164 #define LOG_FILE_ALIGN 2
167 #define IS_AARCH64_TLS_RELOC(R_TYPE) \
168 ((R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC \
169 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21 \
170 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PREL21 \
171 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC \
172 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G1 \
173 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 \
174 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC \
175 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC \
176 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19 \
177 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC \
178 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1 \
179 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12 \
180 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12 \
181 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC \
182 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC \
183 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21 \
184 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21 \
185 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12 \
186 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC \
187 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12 \
188 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC \
189 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12 \
190 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC \
191 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12 \
192 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC \
193 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0 \
194 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC \
195 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1 \
196 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC \
197 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2 \
198 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12 \
199 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12 \
200 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC \
201 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0 \
202 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC \
203 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1 \
204 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC \
205 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2 \
206 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_DTPMOD \
207 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_DTPREL \
208 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_TPREL \
209 || IS_AARCH64_TLSDESC_RELOC ((R_TYPE)))
211 #define IS_AARCH64_TLS_RELAX_RELOC(R_TYPE) \
212 ((R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD \
213 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC \
214 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21 \
215 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21 \
216 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_CALL \
217 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD_PREL19 \
218 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC \
219 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LDR \
220 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC \
221 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_OFF_G1 \
222 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LDR \
223 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21 \
224 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PREL21 \
225 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC \
226 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC \
227 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G1 \
228 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 \
229 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19 \
230 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC \
231 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC \
232 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21 \
233 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21)
235 #define IS_AARCH64_TLSDESC_RELOC(R_TYPE) \
236 ((R_TYPE) == BFD_RELOC_AARCH64_TLSDESC \
237 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD \
238 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC \
239 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21 \
240 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21 \
241 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_CALL \
242 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC \
243 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC \
244 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LDR \
245 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD_PREL19 \
246 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC \
247 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_OFF_G1)
249 #define ELIMINATE_COPY_RELOCS 0
251 /* Return size of a relocation entry. HTAB is the bfd's
252 elf_aarch64_link_hash_entry. */
253 #define RELOC_SIZE(HTAB) (sizeof (ElfNN_External_Rela))
255 /* GOT Entry size - 8 bytes in ELF64 and 4 bytes in ELF32. */
256 #define GOT_ENTRY_SIZE (ARCH_SIZE / 8)
257 #define PLT_ENTRY_SIZE (32)
258 #define PLT_SMALL_ENTRY_SIZE (16)
259 #define PLT_TLSDESC_ENTRY_SIZE (32)
261 /* Encoding of the nop instruction. */
262 #define INSN_NOP 0xd503201f
264 #define aarch64_compute_jump_table_size(htab) \
265 (((htab)->root.srelplt == NULL) ? 0 \
266 : (htab)->root.srelplt->reloc_count * GOT_ENTRY_SIZE)
268 /* The first entry in a procedure linkage table looks like this
269 if the distance between the PLTGOT and the PLT is < 4GB use
270 these PLT entries. Note that the dynamic linker gets &PLTGOT[2]
271 in x16 and needs to work out PLTGOT[1] by using an address of
272 [x16,#-GOT_ENTRY_SIZE]. */
273 static const bfd_byte elfNN_aarch64_small_plt0_entry[PLT_ENTRY_SIZE] =
275 0xf0, 0x7b, 0xbf, 0xa9, /* stp x16, x30, [sp, #-16]! */
276 0x10, 0x00, 0x00, 0x90, /* adrp x16, (GOT+16) */
278 0x11, 0x0A, 0x40, 0xf9, /* ldr x17, [x16, #PLT_GOT+0x10] */
279 0x10, 0x42, 0x00, 0x91, /* add x16, x16,#PLT_GOT+0x10 */
281 0x11, 0x0A, 0x40, 0xb9, /* ldr w17, [x16, #PLT_GOT+0x8] */
282 0x10, 0x22, 0x00, 0x11, /* add w16, w16,#PLT_GOT+0x8 */
284 0x20, 0x02, 0x1f, 0xd6, /* br x17 */
285 0x1f, 0x20, 0x03, 0xd5, /* nop */
286 0x1f, 0x20, 0x03, 0xd5, /* nop */
287 0x1f, 0x20, 0x03, 0xd5, /* nop */
290 /* Per function entry in a procedure linkage table looks like this
291 if the distance between the PLTGOT and the PLT is < 4GB use
292 these PLT entries. */
293 static const bfd_byte elfNN_aarch64_small_plt_entry[PLT_SMALL_ENTRY_SIZE] =
295 0x10, 0x00, 0x00, 0x90, /* adrp x16, PLTGOT + n * 8 */
297 0x11, 0x02, 0x40, 0xf9, /* ldr x17, [x16, PLTGOT + n * 8] */
298 0x10, 0x02, 0x00, 0x91, /* add x16, x16, :lo12:PLTGOT + n * 8 */
300 0x11, 0x02, 0x40, 0xb9, /* ldr w17, [x16, PLTGOT + n * 4] */
301 0x10, 0x02, 0x00, 0x11, /* add w16, w16, :lo12:PLTGOT + n * 4 */
303 0x20, 0x02, 0x1f, 0xd6, /* br x17. */
306 static const bfd_byte
307 elfNN_aarch64_tlsdesc_small_plt_entry[PLT_TLSDESC_ENTRY_SIZE] =
309 0xe2, 0x0f, 0xbf, 0xa9, /* stp x2, x3, [sp, #-16]! */
310 0x02, 0x00, 0x00, 0x90, /* adrp x2, 0 */
311 0x03, 0x00, 0x00, 0x90, /* adrp x3, 0 */
313 0x42, 0x00, 0x40, 0xf9, /* ldr x2, [x2, #0] */
314 0x63, 0x00, 0x00, 0x91, /* add x3, x3, 0 */
316 0x42, 0x00, 0x40, 0xb9, /* ldr w2, [x2, #0] */
317 0x63, 0x00, 0x00, 0x11, /* add w3, w3, 0 */
319 0x40, 0x00, 0x1f, 0xd6, /* br x2 */
320 0x1f, 0x20, 0x03, 0xd5, /* nop */
321 0x1f, 0x20, 0x03, 0xd5, /* nop */
324 #define elf_info_to_howto elfNN_aarch64_info_to_howto
325 #define elf_info_to_howto_rel elfNN_aarch64_info_to_howto
327 #define AARCH64_ELF_ABI_VERSION 0
329 /* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
330 #define ALL_ONES (~ (bfd_vma) 0)
332 /* Indexed by the bfd interal reloc enumerators.
333 Therefore, the table needs to be synced with BFD_RELOC_AARCH64_*
336 static reloc_howto_type elfNN_aarch64_howto_table[] =
340 /* Basic data relocations. */
342 /* Deprecated, but retained for backwards compatibility. */
343 HOWTO64 (R_AARCH64_NULL, /* type */
345 3, /* size (0 = byte, 1 = short, 2 = long) */
347 FALSE, /* pc_relative */
349 complain_overflow_dont, /* complain_on_overflow */
350 bfd_elf_generic_reloc, /* special_function */
351 "R_AARCH64_NULL", /* name */
352 FALSE, /* partial_inplace */
355 FALSE), /* pcrel_offset */
356 HOWTO (R_AARCH64_NONE, /* type */
358 3, /* size (0 = byte, 1 = short, 2 = long) */
360 FALSE, /* pc_relative */
362 complain_overflow_dont, /* complain_on_overflow */
363 bfd_elf_generic_reloc, /* special_function */
364 "R_AARCH64_NONE", /* name */
365 FALSE, /* partial_inplace */
368 FALSE), /* pcrel_offset */
371 HOWTO64 (AARCH64_R (ABS64), /* type */
373 4, /* size (4 = long long) */
375 FALSE, /* pc_relative */
377 complain_overflow_unsigned, /* complain_on_overflow */
378 bfd_elf_generic_reloc, /* special_function */
379 AARCH64_R_STR (ABS64), /* name */
380 FALSE, /* partial_inplace */
381 ALL_ONES, /* src_mask */
382 ALL_ONES, /* dst_mask */
383 FALSE), /* pcrel_offset */
386 HOWTO (AARCH64_R (ABS32), /* type */
388 2, /* size (0 = byte, 1 = short, 2 = long) */
390 FALSE, /* pc_relative */
392 complain_overflow_unsigned, /* complain_on_overflow */
393 bfd_elf_generic_reloc, /* special_function */
394 AARCH64_R_STR (ABS32), /* name */
395 FALSE, /* partial_inplace */
396 0xffffffff, /* src_mask */
397 0xffffffff, /* dst_mask */
398 FALSE), /* pcrel_offset */
401 HOWTO (AARCH64_R (ABS16), /* type */
403 1, /* size (0 = byte, 1 = short, 2 = long) */
405 FALSE, /* pc_relative */
407 complain_overflow_unsigned, /* complain_on_overflow */
408 bfd_elf_generic_reloc, /* special_function */
409 AARCH64_R_STR (ABS16), /* name */
410 FALSE, /* partial_inplace */
411 0xffff, /* src_mask */
412 0xffff, /* dst_mask */
413 FALSE), /* pcrel_offset */
415 /* .xword: (S+A-P) */
416 HOWTO64 (AARCH64_R (PREL64), /* type */
418 4, /* size (4 = long long) */
420 TRUE, /* pc_relative */
422 complain_overflow_signed, /* complain_on_overflow */
423 bfd_elf_generic_reloc, /* special_function */
424 AARCH64_R_STR (PREL64), /* name */
425 FALSE, /* partial_inplace */
426 ALL_ONES, /* src_mask */
427 ALL_ONES, /* dst_mask */
428 TRUE), /* pcrel_offset */
431 HOWTO (AARCH64_R (PREL32), /* type */
433 2, /* size (0 = byte, 1 = short, 2 = long) */
435 TRUE, /* pc_relative */
437 complain_overflow_signed, /* complain_on_overflow */
438 bfd_elf_generic_reloc, /* special_function */
439 AARCH64_R_STR (PREL32), /* name */
440 FALSE, /* partial_inplace */
441 0xffffffff, /* src_mask */
442 0xffffffff, /* dst_mask */
443 TRUE), /* pcrel_offset */
446 HOWTO (AARCH64_R (PREL16), /* type */
448 1, /* size (0 = byte, 1 = short, 2 = long) */
450 TRUE, /* pc_relative */
452 complain_overflow_signed, /* complain_on_overflow */
453 bfd_elf_generic_reloc, /* special_function */
454 AARCH64_R_STR (PREL16), /* name */
455 FALSE, /* partial_inplace */
456 0xffff, /* src_mask */
457 0xffff, /* dst_mask */
458 TRUE), /* pcrel_offset */
460 /* Group relocations to create a 16, 32, 48 or 64 bit
461 unsigned data or abs address inline. */
463 /* MOVZ: ((S+A) >> 0) & 0xffff */
464 HOWTO (AARCH64_R (MOVW_UABS_G0), /* type */
466 2, /* size (0 = byte, 1 = short, 2 = long) */
468 FALSE, /* pc_relative */
470 complain_overflow_unsigned, /* complain_on_overflow */
471 bfd_elf_generic_reloc, /* special_function */
472 AARCH64_R_STR (MOVW_UABS_G0), /* name */
473 FALSE, /* partial_inplace */
474 0xffff, /* src_mask */
475 0xffff, /* dst_mask */
476 FALSE), /* pcrel_offset */
478 /* MOVK: ((S+A) >> 0) & 0xffff [no overflow check] */
479 HOWTO (AARCH64_R (MOVW_UABS_G0_NC), /* type */
481 2, /* size (0 = byte, 1 = short, 2 = long) */
483 FALSE, /* pc_relative */
485 complain_overflow_dont, /* complain_on_overflow */
486 bfd_elf_generic_reloc, /* special_function */
487 AARCH64_R_STR (MOVW_UABS_G0_NC), /* name */
488 FALSE, /* partial_inplace */
489 0xffff, /* src_mask */
490 0xffff, /* dst_mask */
491 FALSE), /* pcrel_offset */
493 /* MOVZ: ((S+A) >> 16) & 0xffff */
494 HOWTO (AARCH64_R (MOVW_UABS_G1), /* type */
496 2, /* size (0 = byte, 1 = short, 2 = long) */
498 FALSE, /* pc_relative */
500 complain_overflow_unsigned, /* complain_on_overflow */
501 bfd_elf_generic_reloc, /* special_function */
502 AARCH64_R_STR (MOVW_UABS_G1), /* name */
503 FALSE, /* partial_inplace */
504 0xffff, /* src_mask */
505 0xffff, /* dst_mask */
506 FALSE), /* pcrel_offset */
508 /* MOVK: ((S+A) >> 16) & 0xffff [no overflow check] */
509 HOWTO64 (AARCH64_R (MOVW_UABS_G1_NC), /* type */
511 2, /* size (0 = byte, 1 = short, 2 = long) */
513 FALSE, /* pc_relative */
515 complain_overflow_dont, /* complain_on_overflow */
516 bfd_elf_generic_reloc, /* special_function */
517 AARCH64_R_STR (MOVW_UABS_G1_NC), /* name */
518 FALSE, /* partial_inplace */
519 0xffff, /* src_mask */
520 0xffff, /* dst_mask */
521 FALSE), /* pcrel_offset */
523 /* MOVZ: ((S+A) >> 32) & 0xffff */
524 HOWTO64 (AARCH64_R (MOVW_UABS_G2), /* type */
526 2, /* size (0 = byte, 1 = short, 2 = long) */
528 FALSE, /* pc_relative */
530 complain_overflow_unsigned, /* complain_on_overflow */
531 bfd_elf_generic_reloc, /* special_function */
532 AARCH64_R_STR (MOVW_UABS_G2), /* name */
533 FALSE, /* partial_inplace */
534 0xffff, /* src_mask */
535 0xffff, /* dst_mask */
536 FALSE), /* pcrel_offset */
538 /* MOVK: ((S+A) >> 32) & 0xffff [no overflow check] */
539 HOWTO64 (AARCH64_R (MOVW_UABS_G2_NC), /* type */
541 2, /* size (0 = byte, 1 = short, 2 = long) */
543 FALSE, /* pc_relative */
545 complain_overflow_dont, /* complain_on_overflow */
546 bfd_elf_generic_reloc, /* special_function */
547 AARCH64_R_STR (MOVW_UABS_G2_NC), /* name */
548 FALSE, /* partial_inplace */
549 0xffff, /* src_mask */
550 0xffff, /* dst_mask */
551 FALSE), /* pcrel_offset */
553 /* MOVZ: ((S+A) >> 48) & 0xffff */
554 HOWTO64 (AARCH64_R (MOVW_UABS_G3), /* type */
556 2, /* size (0 = byte, 1 = short, 2 = long) */
558 FALSE, /* pc_relative */
560 complain_overflow_unsigned, /* complain_on_overflow */
561 bfd_elf_generic_reloc, /* special_function */
562 AARCH64_R_STR (MOVW_UABS_G3), /* name */
563 FALSE, /* partial_inplace */
564 0xffff, /* src_mask */
565 0xffff, /* dst_mask */
566 FALSE), /* pcrel_offset */
568 /* Group relocations to create high part of a 16, 32, 48 or 64 bit
569 signed data or abs address inline. Will change instruction
570 to MOVN or MOVZ depending on sign of calculated value. */
572 /* MOV[ZN]: ((S+A) >> 0) & 0xffff */
573 HOWTO (AARCH64_R (MOVW_SABS_G0), /* type */
575 2, /* size (0 = byte, 1 = short, 2 = long) */
577 FALSE, /* pc_relative */
579 complain_overflow_signed, /* complain_on_overflow */
580 bfd_elf_generic_reloc, /* special_function */
581 AARCH64_R_STR (MOVW_SABS_G0), /* name */
582 FALSE, /* partial_inplace */
583 0xffff, /* src_mask */
584 0xffff, /* dst_mask */
585 FALSE), /* pcrel_offset */
587 /* MOV[ZN]: ((S+A) >> 16) & 0xffff */
588 HOWTO64 (AARCH64_R (MOVW_SABS_G1), /* type */
590 2, /* size (0 = byte, 1 = short, 2 = long) */
592 FALSE, /* pc_relative */
594 complain_overflow_signed, /* complain_on_overflow */
595 bfd_elf_generic_reloc, /* special_function */
596 AARCH64_R_STR (MOVW_SABS_G1), /* name */
597 FALSE, /* partial_inplace */
598 0xffff, /* src_mask */
599 0xffff, /* dst_mask */
600 FALSE), /* pcrel_offset */
602 /* MOV[ZN]: ((S+A) >> 32) & 0xffff */
603 HOWTO64 (AARCH64_R (MOVW_SABS_G2), /* type */
605 2, /* size (0 = byte, 1 = short, 2 = long) */
607 FALSE, /* pc_relative */
609 complain_overflow_signed, /* complain_on_overflow */
610 bfd_elf_generic_reloc, /* special_function */
611 AARCH64_R_STR (MOVW_SABS_G2), /* name */
612 FALSE, /* partial_inplace */
613 0xffff, /* src_mask */
614 0xffff, /* dst_mask */
615 FALSE), /* pcrel_offset */
617 /* Relocations to generate 19, 21 and 33 bit PC-relative load/store
618 addresses: PG(x) is (x & ~0xfff). */
620 /* LD-lit: ((S+A-P) >> 2) & 0x7ffff */
621 HOWTO (AARCH64_R (LD_PREL_LO19), /* type */
623 2, /* size (0 = byte, 1 = short, 2 = long) */
625 TRUE, /* pc_relative */
627 complain_overflow_signed, /* complain_on_overflow */
628 bfd_elf_generic_reloc, /* special_function */
629 AARCH64_R_STR (LD_PREL_LO19), /* name */
630 FALSE, /* partial_inplace */
631 0x7ffff, /* src_mask */
632 0x7ffff, /* dst_mask */
633 TRUE), /* pcrel_offset */
635 /* ADR: (S+A-P) & 0x1fffff */
636 HOWTO (AARCH64_R (ADR_PREL_LO21), /* type */
638 2, /* size (0 = byte, 1 = short, 2 = long) */
640 TRUE, /* pc_relative */
642 complain_overflow_signed, /* complain_on_overflow */
643 bfd_elf_generic_reloc, /* special_function */
644 AARCH64_R_STR (ADR_PREL_LO21), /* name */
645 FALSE, /* partial_inplace */
646 0x1fffff, /* src_mask */
647 0x1fffff, /* dst_mask */
648 TRUE), /* pcrel_offset */
650 /* ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
651 HOWTO (AARCH64_R (ADR_PREL_PG_HI21), /* type */
653 2, /* size (0 = byte, 1 = short, 2 = long) */
655 TRUE, /* pc_relative */
657 complain_overflow_signed, /* complain_on_overflow */
658 bfd_elf_generic_reloc, /* special_function */
659 AARCH64_R_STR (ADR_PREL_PG_HI21), /* name */
660 FALSE, /* partial_inplace */
661 0x1fffff, /* src_mask */
662 0x1fffff, /* dst_mask */
663 TRUE), /* pcrel_offset */
665 /* ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff [no overflow check] */
666 HOWTO64 (AARCH64_R (ADR_PREL_PG_HI21_NC), /* type */
668 2, /* size (0 = byte, 1 = short, 2 = long) */
670 TRUE, /* pc_relative */
672 complain_overflow_dont, /* complain_on_overflow */
673 bfd_elf_generic_reloc, /* special_function */
674 AARCH64_R_STR (ADR_PREL_PG_HI21_NC), /* name */
675 FALSE, /* partial_inplace */
676 0x1fffff, /* src_mask */
677 0x1fffff, /* dst_mask */
678 TRUE), /* pcrel_offset */
680 /* ADD: (S+A) & 0xfff [no overflow check] */
681 HOWTO (AARCH64_R (ADD_ABS_LO12_NC), /* type */
683 2, /* size (0 = byte, 1 = short, 2 = long) */
685 FALSE, /* pc_relative */
687 complain_overflow_dont, /* complain_on_overflow */
688 bfd_elf_generic_reloc, /* special_function */
689 AARCH64_R_STR (ADD_ABS_LO12_NC), /* name */
690 FALSE, /* partial_inplace */
691 0x3ffc00, /* src_mask */
692 0x3ffc00, /* dst_mask */
693 FALSE), /* pcrel_offset */
695 /* LD/ST8: (S+A) & 0xfff */
696 HOWTO (AARCH64_R (LDST8_ABS_LO12_NC), /* type */
698 2, /* size (0 = byte, 1 = short, 2 = long) */
700 FALSE, /* pc_relative */
702 complain_overflow_dont, /* complain_on_overflow */
703 bfd_elf_generic_reloc, /* special_function */
704 AARCH64_R_STR (LDST8_ABS_LO12_NC), /* name */
705 FALSE, /* partial_inplace */
706 0xfff, /* src_mask */
707 0xfff, /* dst_mask */
708 FALSE), /* pcrel_offset */
710 /* Relocations for control-flow instructions. */
712 /* TBZ/NZ: ((S+A-P) >> 2) & 0x3fff */
713 HOWTO (AARCH64_R (TSTBR14), /* type */
715 2, /* size (0 = byte, 1 = short, 2 = long) */
717 TRUE, /* pc_relative */
719 complain_overflow_signed, /* complain_on_overflow */
720 bfd_elf_generic_reloc, /* special_function */
721 AARCH64_R_STR (TSTBR14), /* name */
722 FALSE, /* partial_inplace */
723 0x3fff, /* src_mask */
724 0x3fff, /* dst_mask */
725 TRUE), /* pcrel_offset */
727 /* B.cond: ((S+A-P) >> 2) & 0x7ffff */
728 HOWTO (AARCH64_R (CONDBR19), /* type */
730 2, /* size (0 = byte, 1 = short, 2 = long) */
732 TRUE, /* pc_relative */
734 complain_overflow_signed, /* complain_on_overflow */
735 bfd_elf_generic_reloc, /* special_function */
736 AARCH64_R_STR (CONDBR19), /* name */
737 FALSE, /* partial_inplace */
738 0x7ffff, /* src_mask */
739 0x7ffff, /* dst_mask */
740 TRUE), /* pcrel_offset */
742 /* B: ((S+A-P) >> 2) & 0x3ffffff */
743 HOWTO (AARCH64_R (JUMP26), /* type */
745 2, /* size (0 = byte, 1 = short, 2 = long) */
747 TRUE, /* pc_relative */
749 complain_overflow_signed, /* complain_on_overflow */
750 bfd_elf_generic_reloc, /* special_function */
751 AARCH64_R_STR (JUMP26), /* name */
752 FALSE, /* partial_inplace */
753 0x3ffffff, /* src_mask */
754 0x3ffffff, /* dst_mask */
755 TRUE), /* pcrel_offset */
757 /* BL: ((S+A-P) >> 2) & 0x3ffffff */
758 HOWTO (AARCH64_R (CALL26), /* type */
760 2, /* size (0 = byte, 1 = short, 2 = long) */
762 TRUE, /* pc_relative */
764 complain_overflow_signed, /* complain_on_overflow */
765 bfd_elf_generic_reloc, /* special_function */
766 AARCH64_R_STR (CALL26), /* name */
767 FALSE, /* partial_inplace */
768 0x3ffffff, /* src_mask */
769 0x3ffffff, /* dst_mask */
770 TRUE), /* pcrel_offset */
772 /* LD/ST16: (S+A) & 0xffe */
773 HOWTO (AARCH64_R (LDST16_ABS_LO12_NC), /* type */
775 2, /* size (0 = byte, 1 = short, 2 = long) */
777 FALSE, /* pc_relative */
779 complain_overflow_dont, /* complain_on_overflow */
780 bfd_elf_generic_reloc, /* special_function */
781 AARCH64_R_STR (LDST16_ABS_LO12_NC), /* name */
782 FALSE, /* partial_inplace */
783 0xffe, /* src_mask */
784 0xffe, /* dst_mask */
785 FALSE), /* pcrel_offset */
787 /* LD/ST32: (S+A) & 0xffc */
788 HOWTO (AARCH64_R (LDST32_ABS_LO12_NC), /* type */
790 2, /* size (0 = byte, 1 = short, 2 = long) */
792 FALSE, /* pc_relative */
794 complain_overflow_dont, /* complain_on_overflow */
795 bfd_elf_generic_reloc, /* special_function */
796 AARCH64_R_STR (LDST32_ABS_LO12_NC), /* name */
797 FALSE, /* partial_inplace */
798 0xffc, /* src_mask */
799 0xffc, /* dst_mask */
800 FALSE), /* pcrel_offset */
802 /* LD/ST64: (S+A) & 0xff8 */
803 HOWTO (AARCH64_R (LDST64_ABS_LO12_NC), /* type */
805 2, /* size (0 = byte, 1 = short, 2 = long) */
807 FALSE, /* pc_relative */
809 complain_overflow_dont, /* complain_on_overflow */
810 bfd_elf_generic_reloc, /* special_function */
811 AARCH64_R_STR (LDST64_ABS_LO12_NC), /* name */
812 FALSE, /* partial_inplace */
813 0xff8, /* src_mask */
814 0xff8, /* dst_mask */
815 FALSE), /* pcrel_offset */
817 /* LD/ST128: (S+A) & 0xff0 */
818 HOWTO (AARCH64_R (LDST128_ABS_LO12_NC), /* type */
820 2, /* size (0 = byte, 1 = short, 2 = long) */
822 FALSE, /* pc_relative */
824 complain_overflow_dont, /* complain_on_overflow */
825 bfd_elf_generic_reloc, /* special_function */
826 AARCH64_R_STR (LDST128_ABS_LO12_NC), /* name */
827 FALSE, /* partial_inplace */
828 0xff0, /* src_mask */
829 0xff0, /* dst_mask */
830 FALSE), /* pcrel_offset */
832 /* Set a load-literal immediate field to bits
833 0x1FFFFC of G(S)-P */
834 HOWTO (AARCH64_R (GOT_LD_PREL19), /* type */
836 2, /* size (0 = byte,1 = short,2 = long) */
838 TRUE, /* pc_relative */
840 complain_overflow_signed, /* complain_on_overflow */
841 bfd_elf_generic_reloc, /* special_function */
842 AARCH64_R_STR (GOT_LD_PREL19), /* name */
843 FALSE, /* partial_inplace */
844 0xffffe0, /* src_mask */
845 0xffffe0, /* dst_mask */
846 TRUE), /* pcrel_offset */
848 /* Get to the page for the GOT entry for the symbol
849 (G(S) - P) using an ADRP instruction. */
850 HOWTO (AARCH64_R (ADR_GOT_PAGE), /* type */
852 2, /* size (0 = byte, 1 = short, 2 = long) */
854 TRUE, /* pc_relative */
856 complain_overflow_dont, /* complain_on_overflow */
857 bfd_elf_generic_reloc, /* special_function */
858 AARCH64_R_STR (ADR_GOT_PAGE), /* name */
859 FALSE, /* partial_inplace */
860 0x1fffff, /* src_mask */
861 0x1fffff, /* dst_mask */
862 TRUE), /* pcrel_offset */
864 /* LD64: GOT offset G(S) & 0xff8 */
865 HOWTO64 (AARCH64_R (LD64_GOT_LO12_NC), /* type */
867 2, /* size (0 = byte, 1 = short, 2 = long) */
869 FALSE, /* pc_relative */
871 complain_overflow_dont, /* complain_on_overflow */
872 bfd_elf_generic_reloc, /* special_function */
873 AARCH64_R_STR (LD64_GOT_LO12_NC), /* name */
874 FALSE, /* partial_inplace */
875 0xff8, /* src_mask */
876 0xff8, /* dst_mask */
877 FALSE), /* pcrel_offset */
879 /* LD32: GOT offset G(S) & 0xffc */
880 HOWTO32 (AARCH64_R (LD32_GOT_LO12_NC), /* type */
882 2, /* size (0 = byte, 1 = short, 2 = long) */
884 FALSE, /* pc_relative */
886 complain_overflow_dont, /* complain_on_overflow */
887 bfd_elf_generic_reloc, /* special_function */
888 AARCH64_R_STR (LD32_GOT_LO12_NC), /* name */
889 FALSE, /* partial_inplace */
890 0xffc, /* src_mask */
891 0xffc, /* dst_mask */
892 FALSE), /* pcrel_offset */
894 /* Lower 16 bits of GOT offset for the symbol. */
895 HOWTO64 (AARCH64_R (MOVW_GOTOFF_G0_NC), /* type */
897 2, /* size (0 = byte, 1 = short, 2 = long) */
899 FALSE, /* pc_relative */
901 complain_overflow_dont, /* complain_on_overflow */
902 bfd_elf_generic_reloc, /* special_function */
903 AARCH64_R_STR (MOVW_GOTOFF_G0_NC), /* name */
904 FALSE, /* partial_inplace */
905 0xffff, /* src_mask */
906 0xffff, /* dst_mask */
907 FALSE), /* pcrel_offset */
909 /* Higher 16 bits of GOT offset for the symbol. */
910 HOWTO64 (AARCH64_R (MOVW_GOTOFF_G1), /* type */
912 2, /* size (0 = byte, 1 = short, 2 = long) */
914 FALSE, /* pc_relative */
916 complain_overflow_unsigned, /* complain_on_overflow */
917 bfd_elf_generic_reloc, /* special_function */
918 AARCH64_R_STR (MOVW_GOTOFF_G1), /* name */
919 FALSE, /* partial_inplace */
920 0xffff, /* src_mask */
921 0xffff, /* dst_mask */
922 FALSE), /* pcrel_offset */
924 /* LD64: GOT offset for the symbol. */
925 HOWTO64 (AARCH64_R (LD64_GOTOFF_LO15), /* type */
927 2, /* size (0 = byte, 1 = short, 2 = long) */
929 FALSE, /* pc_relative */
931 complain_overflow_unsigned, /* complain_on_overflow */
932 bfd_elf_generic_reloc, /* special_function */
933 AARCH64_R_STR (LD64_GOTOFF_LO15), /* name */
934 FALSE, /* partial_inplace */
935 0x7ff8, /* src_mask */
936 0x7ff8, /* dst_mask */
937 FALSE), /* pcrel_offset */
939 /* LD32: GOT offset to the page address of GOT table.
940 (G(S) - PAGE (_GLOBAL_OFFSET_TABLE_)) & 0x5ffc. */
941 HOWTO32 (AARCH64_R (LD32_GOTPAGE_LO14), /* type */
943 2, /* size (0 = byte, 1 = short, 2 = long) */
945 FALSE, /* pc_relative */
947 complain_overflow_unsigned, /* complain_on_overflow */
948 bfd_elf_generic_reloc, /* special_function */
949 AARCH64_R_STR (LD32_GOTPAGE_LO14), /* name */
950 FALSE, /* partial_inplace */
951 0x5ffc, /* src_mask */
952 0x5ffc, /* dst_mask */
953 FALSE), /* pcrel_offset */
955 /* LD64: GOT offset to the page address of GOT table.
956 (G(S) - PAGE (_GLOBAL_OFFSET_TABLE_)) & 0x7ff8. */
957 HOWTO64 (AARCH64_R (LD64_GOTPAGE_LO15), /* type */
959 2, /* size (0 = byte, 1 = short, 2 = long) */
961 FALSE, /* pc_relative */
963 complain_overflow_unsigned, /* complain_on_overflow */
964 bfd_elf_generic_reloc, /* special_function */
965 AARCH64_R_STR (LD64_GOTPAGE_LO15), /* name */
966 FALSE, /* partial_inplace */
967 0x7ff8, /* src_mask */
968 0x7ff8, /* dst_mask */
969 FALSE), /* pcrel_offset */
971 /* Get to the page for the GOT entry for the symbol
972 (G(S) - P) using an ADRP instruction. */
973 HOWTO (AARCH64_R (TLSGD_ADR_PAGE21), /* type */
975 2, /* size (0 = byte, 1 = short, 2 = long) */
977 TRUE, /* pc_relative */
979 complain_overflow_dont, /* complain_on_overflow */
980 bfd_elf_generic_reloc, /* special_function */
981 AARCH64_R_STR (TLSGD_ADR_PAGE21), /* name */
982 FALSE, /* partial_inplace */
983 0x1fffff, /* src_mask */
984 0x1fffff, /* dst_mask */
985 TRUE), /* pcrel_offset */
987 HOWTO (AARCH64_R (TLSGD_ADR_PREL21), /* type */
989 2, /* size (0 = byte, 1 = short, 2 = long) */
991 TRUE, /* pc_relative */
993 complain_overflow_dont, /* complain_on_overflow */
994 bfd_elf_generic_reloc, /* special_function */
995 AARCH64_R_STR (TLSGD_ADR_PREL21), /* name */
996 FALSE, /* partial_inplace */
997 0x1fffff, /* src_mask */
998 0x1fffff, /* dst_mask */
999 TRUE), /* pcrel_offset */
1001 /* ADD: GOT offset G(S) & 0xff8 [no overflow check] */
1002 HOWTO (AARCH64_R (TLSGD_ADD_LO12_NC), /* type */
1004 2, /* size (0 = byte, 1 = short, 2 = long) */
1006 FALSE, /* pc_relative */
1008 complain_overflow_dont, /* complain_on_overflow */
1009 bfd_elf_generic_reloc, /* special_function */
1010 AARCH64_R_STR (TLSGD_ADD_LO12_NC), /* name */
1011 FALSE, /* partial_inplace */
1012 0xfff, /* src_mask */
1013 0xfff, /* dst_mask */
1014 FALSE), /* pcrel_offset */
1016 /* Lower 16 bits of GOT offset to tls_index. */
1017 HOWTO64 (AARCH64_R (TLSGD_MOVW_G0_NC), /* type */
1019 2, /* size (0 = byte, 1 = short, 2 = long) */
1021 FALSE, /* pc_relative */
1023 complain_overflow_dont, /* complain_on_overflow */
1024 bfd_elf_generic_reloc, /* special_function */
1025 AARCH64_R_STR (TLSGD_MOVW_G0_NC), /* name */
1026 FALSE, /* partial_inplace */
1027 0xffff, /* src_mask */
1028 0xffff, /* dst_mask */
1029 FALSE), /* pcrel_offset */
1031 /* Higher 16 bits of GOT offset to tls_index. */
1032 HOWTO64 (AARCH64_R (TLSGD_MOVW_G1), /* type */
1033 16, /* rightshift */
1034 2, /* size (0 = byte, 1 = short, 2 = long) */
1036 FALSE, /* pc_relative */
1038 complain_overflow_unsigned, /* complain_on_overflow */
1039 bfd_elf_generic_reloc, /* special_function */
1040 AARCH64_R_STR (TLSGD_MOVW_G1), /* name */
1041 FALSE, /* partial_inplace */
1042 0xffff, /* src_mask */
1043 0xffff, /* dst_mask */
1044 FALSE), /* pcrel_offset */
1046 HOWTO (AARCH64_R (TLSIE_ADR_GOTTPREL_PAGE21), /* type */
1047 12, /* rightshift */
1048 2, /* size (0 = byte, 1 = short, 2 = long) */
1050 FALSE, /* pc_relative */
1052 complain_overflow_dont, /* complain_on_overflow */
1053 bfd_elf_generic_reloc, /* special_function */
1054 AARCH64_R_STR (TLSIE_ADR_GOTTPREL_PAGE21), /* name */
1055 FALSE, /* partial_inplace */
1056 0x1fffff, /* src_mask */
1057 0x1fffff, /* dst_mask */
1058 FALSE), /* pcrel_offset */
1060 HOWTO64 (AARCH64_R (TLSIE_LD64_GOTTPREL_LO12_NC), /* type */
1062 2, /* size (0 = byte, 1 = short, 2 = long) */
1064 FALSE, /* pc_relative */
1066 complain_overflow_dont, /* complain_on_overflow */
1067 bfd_elf_generic_reloc, /* special_function */
1068 AARCH64_R_STR (TLSIE_LD64_GOTTPREL_LO12_NC), /* name */
1069 FALSE, /* partial_inplace */
1070 0xff8, /* src_mask */
1071 0xff8, /* dst_mask */
1072 FALSE), /* pcrel_offset */
1074 HOWTO32 (AARCH64_R (TLSIE_LD32_GOTTPREL_LO12_NC), /* type */
1076 2, /* size (0 = byte, 1 = short, 2 = long) */
1078 FALSE, /* pc_relative */
1080 complain_overflow_dont, /* complain_on_overflow */
1081 bfd_elf_generic_reloc, /* special_function */
1082 AARCH64_R_STR (TLSIE_LD32_GOTTPREL_LO12_NC), /* name */
1083 FALSE, /* partial_inplace */
1084 0xffc, /* src_mask */
1085 0xffc, /* dst_mask */
1086 FALSE), /* pcrel_offset */
1088 HOWTO (AARCH64_R (TLSIE_LD_GOTTPREL_PREL19), /* type */
1090 2, /* size (0 = byte, 1 = short, 2 = long) */
1092 FALSE, /* pc_relative */
1094 complain_overflow_dont, /* complain_on_overflow */
1095 bfd_elf_generic_reloc, /* special_function */
1096 AARCH64_R_STR (TLSIE_LD_GOTTPREL_PREL19), /* name */
1097 FALSE, /* partial_inplace */
1098 0x1ffffc, /* src_mask */
1099 0x1ffffc, /* dst_mask */
1100 FALSE), /* pcrel_offset */
1102 HOWTO64 (AARCH64_R (TLSIE_MOVW_GOTTPREL_G0_NC), /* type */
1104 2, /* size (0 = byte, 1 = short, 2 = long) */
1106 FALSE, /* pc_relative */
1108 complain_overflow_dont, /* complain_on_overflow */
1109 bfd_elf_generic_reloc, /* special_function */
1110 AARCH64_R_STR (TLSIE_MOVW_GOTTPREL_G0_NC), /* name */
1111 FALSE, /* partial_inplace */
1112 0xffff, /* src_mask */
1113 0xffff, /* dst_mask */
1114 FALSE), /* pcrel_offset */
1116 HOWTO64 (AARCH64_R (TLSIE_MOVW_GOTTPREL_G1), /* type */
1117 16, /* rightshift */
1118 2, /* size (0 = byte, 1 = short, 2 = long) */
1120 FALSE, /* pc_relative */
1122 complain_overflow_unsigned, /* complain_on_overflow */
1123 bfd_elf_generic_reloc, /* special_function */
1124 AARCH64_R_STR (TLSIE_MOVW_GOTTPREL_G1), /* name */
1125 FALSE, /* partial_inplace */
1126 0xffff, /* src_mask */
1127 0xffff, /* dst_mask */
1128 FALSE), /* pcrel_offset */
1130 /* ADD: bit[23:12] of byte offset to module TLS base address. */
1131 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_HI12), /* type */
1132 12, /* rightshift */
1133 2, /* size (0 = byte, 1 = short, 2 = long) */
1135 FALSE, /* pc_relative */
1137 complain_overflow_unsigned, /* complain_on_overflow */
1138 bfd_elf_generic_reloc, /* special_function */
1139 AARCH64_R_STR (TLSLD_ADD_DTPREL_HI12), /* name */
1140 FALSE, /* partial_inplace */
1141 0xfff, /* src_mask */
1142 0xfff, /* dst_mask */
1143 FALSE), /* pcrel_offset */
1145 /* Unsigned 12 bit byte offset to module TLS base address. */
1146 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_LO12), /* type */
1148 2, /* size (0 = byte, 1 = short, 2 = long) */
1150 FALSE, /* pc_relative */
1152 complain_overflow_unsigned, /* complain_on_overflow */
1153 bfd_elf_generic_reloc, /* special_function */
1154 AARCH64_R_STR (TLSLD_ADD_DTPREL_LO12), /* name */
1155 FALSE, /* partial_inplace */
1156 0xfff, /* src_mask */
1157 0xfff, /* dst_mask */
1158 FALSE), /* pcrel_offset */
1160 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12. */
1161 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_LO12_NC), /* type */
1163 2, /* size (0 = byte, 1 = short, 2 = long) */
1165 FALSE, /* pc_relative */
1167 complain_overflow_dont, /* complain_on_overflow */
1168 bfd_elf_generic_reloc, /* special_function */
1169 AARCH64_R_STR (TLSLD_ADD_DTPREL_LO12_NC), /* name */
1170 FALSE, /* partial_inplace */
1171 0xfff, /* src_mask */
1172 0xfff, /* dst_mask */
1173 FALSE), /* pcrel_offset */
1175 /* ADD: GOT offset G(S) & 0xff8 [no overflow check] */
1176 HOWTO (AARCH64_R (TLSLD_ADD_LO12_NC), /* type */
1178 2, /* size (0 = byte, 1 = short, 2 = long) */
1180 FALSE, /* pc_relative */
1182 complain_overflow_dont, /* complain_on_overflow */
1183 bfd_elf_generic_reloc, /* special_function */
1184 AARCH64_R_STR (TLSLD_ADD_LO12_NC), /* name */
1185 FALSE, /* partial_inplace */
1186 0xfff, /* src_mask */
1187 0xfff, /* dst_mask */
1188 FALSE), /* pcrel_offset */
1190 /* Get to the page for the GOT entry for the symbol
1191 (G(S) - P) using an ADRP instruction. */
1192 HOWTO (AARCH64_R (TLSLD_ADR_PAGE21), /* type */
1193 12, /* rightshift */
1194 2, /* size (0 = byte, 1 = short, 2 = long) */
1196 TRUE, /* pc_relative */
1198 complain_overflow_signed, /* complain_on_overflow */
1199 bfd_elf_generic_reloc, /* special_function */
1200 AARCH64_R_STR (TLSLD_ADR_PAGE21), /* name */
1201 FALSE, /* partial_inplace */
1202 0x1fffff, /* src_mask */
1203 0x1fffff, /* dst_mask */
1204 TRUE), /* pcrel_offset */
1206 HOWTO (AARCH64_R (TLSLD_ADR_PREL21), /* type */
1208 2, /* size (0 = byte, 1 = short, 2 = long) */
1210 TRUE, /* pc_relative */
1212 complain_overflow_signed, /* complain_on_overflow */
1213 bfd_elf_generic_reloc, /* special_function */
1214 AARCH64_R_STR (TLSLD_ADR_PREL21), /* name */
1215 FALSE, /* partial_inplace */
1216 0x1fffff, /* src_mask */
1217 0x1fffff, /* dst_mask */
1218 TRUE), /* pcrel_offset */
1220 /* LD/ST16: bit[11:1] of byte offset to module TLS base address. */
1221 HOWTO64 (AARCH64_R (TLSLD_LDST16_DTPREL_LO12), /* type */
1223 2, /* size (0 = byte, 1 = short, 2 = long) */
1225 FALSE, /* pc_relative */
1227 complain_overflow_unsigned, /* complain_on_overflow */
1228 bfd_elf_generic_reloc, /* special_function */
1229 AARCH64_R_STR (TLSLD_LDST16_DTPREL_LO12), /* name */
1230 FALSE, /* partial_inplace */
1231 0x1ffc00, /* src_mask */
1232 0x1ffc00, /* dst_mask */
1233 FALSE), /* pcrel_offset */
1235 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12, but no overflow check. */
1236 HOWTO64 (AARCH64_R (TLSLD_LDST16_DTPREL_LO12_NC), /* type */
1238 2, /* size (0 = byte, 1 = short, 2 = long) */
1240 FALSE, /* pc_relative */
1242 complain_overflow_dont, /* complain_on_overflow */
1243 bfd_elf_generic_reloc, /* special_function */
1244 AARCH64_R_STR (TLSLD_LDST16_DTPREL_LO12_NC), /* name */
1245 FALSE, /* partial_inplace */
1246 0x1ffc00, /* src_mask */
1247 0x1ffc00, /* dst_mask */
1248 FALSE), /* pcrel_offset */
1250 /* LD/ST32: bit[11:2] of byte offset to module TLS base address. */
1251 HOWTO64 (AARCH64_R (TLSLD_LDST32_DTPREL_LO12), /* type */
1253 2, /* size (0 = byte, 1 = short, 2 = long) */
1255 FALSE, /* pc_relative */
1257 complain_overflow_unsigned, /* complain_on_overflow */
1258 bfd_elf_generic_reloc, /* special_function */
1259 AARCH64_R_STR (TLSLD_LDST32_DTPREL_LO12), /* name */
1260 FALSE, /* partial_inplace */
1261 0x3ffc00, /* src_mask */
1262 0x3ffc00, /* dst_mask */
1263 FALSE), /* pcrel_offset */
1265 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12, but no overflow check. */
1266 HOWTO64 (AARCH64_R (TLSLD_LDST32_DTPREL_LO12_NC), /* type */
1268 2, /* size (0 = byte, 1 = short, 2 = long) */
1270 FALSE, /* pc_relative */
1272 complain_overflow_dont, /* complain_on_overflow */
1273 bfd_elf_generic_reloc, /* special_function */
1274 AARCH64_R_STR (TLSLD_LDST32_DTPREL_LO12_NC), /* name */
1275 FALSE, /* partial_inplace */
1276 0xffc00, /* src_mask */
1277 0xffc00, /* dst_mask */
1278 FALSE), /* pcrel_offset */
1280 /* LD/ST64: bit[11:3] of byte offset to module TLS base address. */
1281 HOWTO64 (AARCH64_R (TLSLD_LDST64_DTPREL_LO12), /* type */
1283 2, /* size (0 = byte, 1 = short, 2 = long) */
1285 FALSE, /* pc_relative */
1287 complain_overflow_unsigned, /* complain_on_overflow */
1288 bfd_elf_generic_reloc, /* special_function */
1289 AARCH64_R_STR (TLSLD_LDST64_DTPREL_LO12), /* name */
1290 FALSE, /* partial_inplace */
1291 0x3ffc00, /* src_mask */
1292 0x3ffc00, /* dst_mask */
1293 FALSE), /* pcrel_offset */
1295 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12, but no overflow check. */
1296 HOWTO64 (AARCH64_R (TLSLD_LDST64_DTPREL_LO12_NC), /* type */
1298 2, /* size (0 = byte, 1 = short, 2 = long) */
1300 FALSE, /* pc_relative */
1302 complain_overflow_dont, /* complain_on_overflow */
1303 bfd_elf_generic_reloc, /* special_function */
1304 AARCH64_R_STR (TLSLD_LDST64_DTPREL_LO12_NC), /* name */
1305 FALSE, /* partial_inplace */
1306 0x7fc00, /* src_mask */
1307 0x7fc00, /* dst_mask */
1308 FALSE), /* pcrel_offset */
1310 /* LD/ST8: bit[11:0] of byte offset to module TLS base address. */
1311 HOWTO64 (AARCH64_R (TLSLD_LDST8_DTPREL_LO12), /* type */
1313 2, /* size (0 = byte, 1 = short, 2 = long) */
1315 FALSE, /* pc_relative */
1317 complain_overflow_unsigned, /* complain_on_overflow */
1318 bfd_elf_generic_reloc, /* special_function */
1319 AARCH64_R_STR (TLSLD_LDST8_DTPREL_LO12), /* name */
1320 FALSE, /* partial_inplace */
1321 0x3ffc00, /* src_mask */
1322 0x3ffc00, /* dst_mask */
1323 FALSE), /* pcrel_offset */
1325 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12, but no overflow check. */
1326 HOWTO64 (AARCH64_R (TLSLD_LDST8_DTPREL_LO12_NC), /* type */
1328 2, /* size (0 = byte, 1 = short, 2 = long) */
1330 FALSE, /* pc_relative */
1332 complain_overflow_dont, /* complain_on_overflow */
1333 bfd_elf_generic_reloc, /* special_function */
1334 AARCH64_R_STR (TLSLD_LDST8_DTPREL_LO12_NC), /* name */
1335 FALSE, /* partial_inplace */
1336 0x3ffc00, /* src_mask */
1337 0x3ffc00, /* dst_mask */
1338 FALSE), /* pcrel_offset */
1340 /* MOVZ: bit[15:0] of byte offset to module TLS base address. */
1341 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G0), /* type */
1343 2, /* size (0 = byte, 1 = short, 2 = long) */
1345 FALSE, /* pc_relative */
1347 complain_overflow_unsigned, /* complain_on_overflow */
1348 bfd_elf_generic_reloc, /* special_function */
1349 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G0), /* name */
1350 FALSE, /* partial_inplace */
1351 0xffff, /* src_mask */
1352 0xffff, /* dst_mask */
1353 FALSE), /* pcrel_offset */
1355 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0. */
1356 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G0_NC), /* type */
1358 2, /* size (0 = byte, 1 = short, 2 = long) */
1360 FALSE, /* pc_relative */
1362 complain_overflow_dont, /* complain_on_overflow */
1363 bfd_elf_generic_reloc, /* special_function */
1364 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G0_NC), /* name */
1365 FALSE, /* partial_inplace */
1366 0xffff, /* src_mask */
1367 0xffff, /* dst_mask */
1368 FALSE), /* pcrel_offset */
1370 /* MOVZ: bit[31:16] of byte offset to module TLS base address. */
1371 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G1), /* type */
1372 16, /* rightshift */
1373 2, /* size (0 = byte, 1 = short, 2 = long) */
1375 FALSE, /* pc_relative */
1377 complain_overflow_unsigned, /* complain_on_overflow */
1378 bfd_elf_generic_reloc, /* special_function */
1379 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G1), /* name */
1380 FALSE, /* partial_inplace */
1381 0xffff, /* src_mask */
1382 0xffff, /* dst_mask */
1383 FALSE), /* pcrel_offset */
1385 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1. */
1386 HOWTO64 (AARCH64_R (TLSLD_MOVW_DTPREL_G1_NC), /* type */
1387 16, /* rightshift */
1388 2, /* size (0 = byte, 1 = short, 2 = long) */
1390 FALSE, /* pc_relative */
1392 complain_overflow_dont, /* complain_on_overflow */
1393 bfd_elf_generic_reloc, /* special_function */
1394 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G1_NC), /* name */
1395 FALSE, /* partial_inplace */
1396 0xffff, /* src_mask */
1397 0xffff, /* dst_mask */
1398 FALSE), /* pcrel_offset */
1400 /* MOVZ: bit[47:32] of byte offset to module TLS base address. */
1401 HOWTO64 (AARCH64_R (TLSLD_MOVW_DTPREL_G2), /* type */
1402 32, /* rightshift */
1403 2, /* size (0 = byte, 1 = short, 2 = long) */
1405 FALSE, /* pc_relative */
1407 complain_overflow_unsigned, /* complain_on_overflow */
1408 bfd_elf_generic_reloc, /* special_function */
1409 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G2), /* name */
1410 FALSE, /* partial_inplace */
1411 0xffff, /* src_mask */
1412 0xffff, /* dst_mask */
1413 FALSE), /* pcrel_offset */
1415 HOWTO64 (AARCH64_R (TLSLE_MOVW_TPREL_G2), /* type */
1416 32, /* rightshift */
1417 2, /* size (0 = byte, 1 = short, 2 = long) */
1419 FALSE, /* pc_relative */
1421 complain_overflow_unsigned, /* complain_on_overflow */
1422 bfd_elf_generic_reloc, /* special_function */
1423 AARCH64_R_STR (TLSLE_MOVW_TPREL_G2), /* name */
1424 FALSE, /* partial_inplace */
1425 0xffff, /* src_mask */
1426 0xffff, /* dst_mask */
1427 FALSE), /* pcrel_offset */
1429 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G1), /* type */
1430 16, /* rightshift */
1431 2, /* size (0 = byte, 1 = short, 2 = long) */
1433 FALSE, /* pc_relative */
1435 complain_overflow_dont, /* complain_on_overflow */
1436 bfd_elf_generic_reloc, /* special_function */
1437 AARCH64_R_STR (TLSLE_MOVW_TPREL_G1), /* name */
1438 FALSE, /* partial_inplace */
1439 0xffff, /* src_mask */
1440 0xffff, /* dst_mask */
1441 FALSE), /* pcrel_offset */
1443 HOWTO64 (AARCH64_R (TLSLE_MOVW_TPREL_G1_NC), /* type */
1444 16, /* rightshift */
1445 2, /* size (0 = byte, 1 = short, 2 = long) */
1447 FALSE, /* pc_relative */
1449 complain_overflow_dont, /* complain_on_overflow */
1450 bfd_elf_generic_reloc, /* special_function */
1451 AARCH64_R_STR (TLSLE_MOVW_TPREL_G1_NC), /* name */
1452 FALSE, /* partial_inplace */
1453 0xffff, /* src_mask */
1454 0xffff, /* dst_mask */
1455 FALSE), /* pcrel_offset */
1457 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G0), /* type */
1459 2, /* size (0 = byte, 1 = short, 2 = long) */
1461 FALSE, /* pc_relative */
1463 complain_overflow_dont, /* complain_on_overflow */
1464 bfd_elf_generic_reloc, /* special_function */
1465 AARCH64_R_STR (TLSLE_MOVW_TPREL_G0), /* name */
1466 FALSE, /* partial_inplace */
1467 0xffff, /* src_mask */
1468 0xffff, /* dst_mask */
1469 FALSE), /* pcrel_offset */
1471 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G0_NC), /* type */
1473 2, /* size (0 = byte, 1 = short, 2 = long) */
1475 FALSE, /* pc_relative */
1477 complain_overflow_dont, /* complain_on_overflow */
1478 bfd_elf_generic_reloc, /* special_function */
1479 AARCH64_R_STR (TLSLE_MOVW_TPREL_G0_NC), /* name */
1480 FALSE, /* partial_inplace */
1481 0xffff, /* src_mask */
1482 0xffff, /* dst_mask */
1483 FALSE), /* pcrel_offset */
1485 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_HI12), /* type */
1486 12, /* rightshift */
1487 2, /* size (0 = byte, 1 = short, 2 = long) */
1489 FALSE, /* pc_relative */
1491 complain_overflow_unsigned, /* complain_on_overflow */
1492 bfd_elf_generic_reloc, /* special_function */
1493 AARCH64_R_STR (TLSLE_ADD_TPREL_HI12), /* name */
1494 FALSE, /* partial_inplace */
1495 0xfff, /* src_mask */
1496 0xfff, /* dst_mask */
1497 FALSE), /* pcrel_offset */
1499 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_LO12), /* type */
1501 2, /* size (0 = byte, 1 = short, 2 = long) */
1503 FALSE, /* pc_relative */
1505 complain_overflow_unsigned, /* complain_on_overflow */
1506 bfd_elf_generic_reloc, /* special_function */
1507 AARCH64_R_STR (TLSLE_ADD_TPREL_LO12), /* name */
1508 FALSE, /* partial_inplace */
1509 0xfff, /* src_mask */
1510 0xfff, /* dst_mask */
1511 FALSE), /* pcrel_offset */
1513 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_LO12_NC), /* type */
1515 2, /* size (0 = byte, 1 = short, 2 = long) */
1517 FALSE, /* pc_relative */
1519 complain_overflow_dont, /* complain_on_overflow */
1520 bfd_elf_generic_reloc, /* special_function */
1521 AARCH64_R_STR (TLSLE_ADD_TPREL_LO12_NC), /* name */
1522 FALSE, /* partial_inplace */
1523 0xfff, /* src_mask */
1524 0xfff, /* dst_mask */
1525 FALSE), /* pcrel_offset */
1527 HOWTO (AARCH64_R (TLSDESC_LD_PREL19), /* type */
1529 2, /* size (0 = byte, 1 = short, 2 = long) */
1531 TRUE, /* pc_relative */
1533 complain_overflow_dont, /* complain_on_overflow */
1534 bfd_elf_generic_reloc, /* special_function */
1535 AARCH64_R_STR (TLSDESC_LD_PREL19), /* name */
1536 FALSE, /* partial_inplace */
1537 0x0ffffe0, /* src_mask */
1538 0x0ffffe0, /* dst_mask */
1539 TRUE), /* pcrel_offset */
1541 HOWTO (AARCH64_R (TLSDESC_ADR_PREL21), /* type */
1543 2, /* size (0 = byte, 1 = short, 2 = long) */
1545 TRUE, /* pc_relative */
1547 complain_overflow_dont, /* complain_on_overflow */
1548 bfd_elf_generic_reloc, /* special_function */
1549 AARCH64_R_STR (TLSDESC_ADR_PREL21), /* name */
1550 FALSE, /* partial_inplace */
1551 0x1fffff, /* src_mask */
1552 0x1fffff, /* dst_mask */
1553 TRUE), /* pcrel_offset */
1555 /* Get to the page for the GOT entry for the symbol
1556 (G(S) - P) using an ADRP instruction. */
1557 HOWTO (AARCH64_R (TLSDESC_ADR_PAGE21), /* type */
1558 12, /* rightshift */
1559 2, /* size (0 = byte, 1 = short, 2 = long) */
1561 TRUE, /* pc_relative */
1563 complain_overflow_dont, /* complain_on_overflow */
1564 bfd_elf_generic_reloc, /* special_function */
1565 AARCH64_R_STR (TLSDESC_ADR_PAGE21), /* name */
1566 FALSE, /* partial_inplace */
1567 0x1fffff, /* src_mask */
1568 0x1fffff, /* dst_mask */
1569 TRUE), /* pcrel_offset */
1571 /* LD64: GOT offset G(S) & 0xff8. */
1572 HOWTO64 (AARCH64_R (TLSDESC_LD64_LO12_NC), /* type */
1574 2, /* size (0 = byte, 1 = short, 2 = long) */
1576 FALSE, /* pc_relative */
1578 complain_overflow_dont, /* complain_on_overflow */
1579 bfd_elf_generic_reloc, /* special_function */
1580 AARCH64_R_STR (TLSDESC_LD64_LO12_NC), /* name */
1581 FALSE, /* partial_inplace */
1582 0xff8, /* src_mask */
1583 0xff8, /* dst_mask */
1584 FALSE), /* pcrel_offset */
1586 /* LD32: GOT offset G(S) & 0xffc. */
1587 HOWTO32 (AARCH64_R (TLSDESC_LD32_LO12_NC), /* type */
1589 2, /* size (0 = byte, 1 = short, 2 = long) */
1591 FALSE, /* pc_relative */
1593 complain_overflow_dont, /* complain_on_overflow */
1594 bfd_elf_generic_reloc, /* special_function */
1595 AARCH64_R_STR (TLSDESC_LD32_LO12_NC), /* name */
1596 FALSE, /* partial_inplace */
1597 0xffc, /* src_mask */
1598 0xffc, /* dst_mask */
1599 FALSE), /* pcrel_offset */
1601 /* ADD: GOT offset G(S) & 0xfff. */
1602 HOWTO (AARCH64_R (TLSDESC_ADD_LO12_NC), /* type */
1604 2, /* size (0 = byte, 1 = short, 2 = long) */
1606 FALSE, /* pc_relative */
1608 complain_overflow_dont, /* complain_on_overflow */
1609 bfd_elf_generic_reloc, /* special_function */
1610 AARCH64_R_STR (TLSDESC_ADD_LO12_NC), /* name */
1611 FALSE, /* partial_inplace */
1612 0xfff, /* src_mask */
1613 0xfff, /* dst_mask */
1614 FALSE), /* pcrel_offset */
1616 HOWTO64 (AARCH64_R (TLSDESC_OFF_G1), /* type */
1617 16, /* rightshift */
1618 2, /* size (0 = byte, 1 = short, 2 = long) */
1620 FALSE, /* pc_relative */
1622 complain_overflow_unsigned, /* complain_on_overflow */
1623 bfd_elf_generic_reloc, /* special_function */
1624 AARCH64_R_STR (TLSDESC_OFF_G1), /* name */
1625 FALSE, /* partial_inplace */
1626 0xffff, /* src_mask */
1627 0xffff, /* dst_mask */
1628 FALSE), /* pcrel_offset */
1630 HOWTO64 (AARCH64_R (TLSDESC_OFF_G0_NC), /* type */
1632 2, /* size (0 = byte, 1 = short, 2 = long) */
1634 FALSE, /* pc_relative */
1636 complain_overflow_dont, /* complain_on_overflow */
1637 bfd_elf_generic_reloc, /* special_function */
1638 AARCH64_R_STR (TLSDESC_OFF_G0_NC), /* name */
1639 FALSE, /* partial_inplace */
1640 0xffff, /* src_mask */
1641 0xffff, /* dst_mask */
1642 FALSE), /* pcrel_offset */
1644 HOWTO64 (AARCH64_R (TLSDESC_LDR), /* type */
1646 2, /* size (0 = byte, 1 = short, 2 = long) */
1648 FALSE, /* pc_relative */
1650 complain_overflow_dont, /* complain_on_overflow */
1651 bfd_elf_generic_reloc, /* special_function */
1652 AARCH64_R_STR (TLSDESC_LDR), /* name */
1653 FALSE, /* partial_inplace */
1656 FALSE), /* pcrel_offset */
1658 HOWTO64 (AARCH64_R (TLSDESC_ADD), /* type */
1660 2, /* size (0 = byte, 1 = short, 2 = long) */
1662 FALSE, /* pc_relative */
1664 complain_overflow_dont, /* complain_on_overflow */
1665 bfd_elf_generic_reloc, /* special_function */
1666 AARCH64_R_STR (TLSDESC_ADD), /* name */
1667 FALSE, /* partial_inplace */
1670 FALSE), /* pcrel_offset */
1672 HOWTO (AARCH64_R (TLSDESC_CALL), /* type */
1674 2, /* size (0 = byte, 1 = short, 2 = long) */
1676 FALSE, /* pc_relative */
1678 complain_overflow_dont, /* complain_on_overflow */
1679 bfd_elf_generic_reloc, /* special_function */
1680 AARCH64_R_STR (TLSDESC_CALL), /* name */
1681 FALSE, /* partial_inplace */
1684 FALSE), /* pcrel_offset */
1686 HOWTO (AARCH64_R (COPY), /* type */
1688 2, /* size (0 = byte, 1 = short, 2 = long) */
1690 FALSE, /* pc_relative */
1692 complain_overflow_bitfield, /* complain_on_overflow */
1693 bfd_elf_generic_reloc, /* special_function */
1694 AARCH64_R_STR (COPY), /* name */
1695 TRUE, /* partial_inplace */
1696 0xffffffff, /* src_mask */
1697 0xffffffff, /* dst_mask */
1698 FALSE), /* pcrel_offset */
1700 HOWTO (AARCH64_R (GLOB_DAT), /* type */
1702 2, /* size (0 = byte, 1 = short, 2 = long) */
1704 FALSE, /* pc_relative */
1706 complain_overflow_bitfield, /* complain_on_overflow */
1707 bfd_elf_generic_reloc, /* special_function */
1708 AARCH64_R_STR (GLOB_DAT), /* name */
1709 TRUE, /* partial_inplace */
1710 0xffffffff, /* src_mask */
1711 0xffffffff, /* dst_mask */
1712 FALSE), /* pcrel_offset */
1714 HOWTO (AARCH64_R (JUMP_SLOT), /* type */
1716 2, /* size (0 = byte, 1 = short, 2 = long) */
1718 FALSE, /* pc_relative */
1720 complain_overflow_bitfield, /* complain_on_overflow */
1721 bfd_elf_generic_reloc, /* special_function */
1722 AARCH64_R_STR (JUMP_SLOT), /* name */
1723 TRUE, /* partial_inplace */
1724 0xffffffff, /* src_mask */
1725 0xffffffff, /* dst_mask */
1726 FALSE), /* pcrel_offset */
1728 HOWTO (AARCH64_R (RELATIVE), /* type */
1730 2, /* size (0 = byte, 1 = short, 2 = long) */
1732 FALSE, /* pc_relative */
1734 complain_overflow_bitfield, /* complain_on_overflow */
1735 bfd_elf_generic_reloc, /* special_function */
1736 AARCH64_R_STR (RELATIVE), /* name */
1737 TRUE, /* partial_inplace */
1738 ALL_ONES, /* src_mask */
1739 ALL_ONES, /* dst_mask */
1740 FALSE), /* pcrel_offset */
1742 HOWTO (AARCH64_R (TLS_DTPMOD), /* type */
1744 2, /* size (0 = byte, 1 = short, 2 = long) */
1746 FALSE, /* pc_relative */
1748 complain_overflow_dont, /* complain_on_overflow */
1749 bfd_elf_generic_reloc, /* special_function */
1751 AARCH64_R_STR (TLS_DTPMOD64), /* name */
1753 AARCH64_R_STR (TLS_DTPMOD), /* name */
1755 FALSE, /* partial_inplace */
1757 ALL_ONES, /* dst_mask */
1758 FALSE), /* pc_reloffset */
1760 HOWTO (AARCH64_R (TLS_DTPREL), /* type */
1762 2, /* size (0 = byte, 1 = short, 2 = long) */
1764 FALSE, /* pc_relative */
1766 complain_overflow_dont, /* complain_on_overflow */
1767 bfd_elf_generic_reloc, /* special_function */
1769 AARCH64_R_STR (TLS_DTPREL64), /* name */
1771 AARCH64_R_STR (TLS_DTPREL), /* name */
1773 FALSE, /* partial_inplace */
1775 ALL_ONES, /* dst_mask */
1776 FALSE), /* pcrel_offset */
1778 HOWTO (AARCH64_R (TLS_TPREL), /* type */
1780 2, /* size (0 = byte, 1 = short, 2 = long) */
1782 FALSE, /* pc_relative */
1784 complain_overflow_dont, /* complain_on_overflow */
1785 bfd_elf_generic_reloc, /* special_function */
1787 AARCH64_R_STR (TLS_TPREL64), /* name */
1789 AARCH64_R_STR (TLS_TPREL), /* name */
1791 FALSE, /* partial_inplace */
1793 ALL_ONES, /* dst_mask */
1794 FALSE), /* pcrel_offset */
1796 HOWTO (AARCH64_R (TLSDESC), /* type */
1798 2, /* size (0 = byte, 1 = short, 2 = long) */
1800 FALSE, /* pc_relative */
1802 complain_overflow_dont, /* complain_on_overflow */
1803 bfd_elf_generic_reloc, /* special_function */
1804 AARCH64_R_STR (TLSDESC), /* name */
1805 FALSE, /* partial_inplace */
1807 ALL_ONES, /* dst_mask */
1808 FALSE), /* pcrel_offset */
1810 HOWTO (AARCH64_R (IRELATIVE), /* type */
1812 2, /* size (0 = byte, 1 = short, 2 = long) */
1814 FALSE, /* pc_relative */
1816 complain_overflow_bitfield, /* complain_on_overflow */
1817 bfd_elf_generic_reloc, /* special_function */
1818 AARCH64_R_STR (IRELATIVE), /* name */
1819 FALSE, /* partial_inplace */
1821 ALL_ONES, /* dst_mask */
1822 FALSE), /* pcrel_offset */
1827 static reloc_howto_type elfNN_aarch64_howto_none =
1828 HOWTO (R_AARCH64_NONE, /* type */
1830 3, /* size (0 = byte, 1 = short, 2 = long) */
1832 FALSE, /* pc_relative */
1834 complain_overflow_dont,/* complain_on_overflow */
1835 bfd_elf_generic_reloc, /* special_function */
1836 "R_AARCH64_NONE", /* name */
1837 FALSE, /* partial_inplace */
1840 FALSE); /* pcrel_offset */
1842 /* Given HOWTO, return the bfd internal relocation enumerator. */
1844 static bfd_reloc_code_real_type
1845 elfNN_aarch64_bfd_reloc_from_howto (reloc_howto_type *howto)
1848 = (int) ARRAY_SIZE (elfNN_aarch64_howto_table);
1849 const ptrdiff_t offset
1850 = howto - elfNN_aarch64_howto_table;
1852 if (offset > 0 && offset < size - 1)
1853 return BFD_RELOC_AARCH64_RELOC_START + offset;
1855 if (howto == &elfNN_aarch64_howto_none)
1856 return BFD_RELOC_AARCH64_NONE;
1858 return BFD_RELOC_AARCH64_RELOC_START;
1861 /* Given R_TYPE, return the bfd internal relocation enumerator. */
1863 static bfd_reloc_code_real_type
1864 elfNN_aarch64_bfd_reloc_from_type (unsigned int r_type)
1866 static bfd_boolean initialized_p = FALSE;
1867 /* Indexed by R_TYPE, values are offsets in the howto_table. */
1868 static unsigned int offsets[R_AARCH64_end];
1870 if (initialized_p == FALSE)
1874 for (i = 1; i < ARRAY_SIZE (elfNN_aarch64_howto_table) - 1; ++i)
1875 if (elfNN_aarch64_howto_table[i].type != 0)
1876 offsets[elfNN_aarch64_howto_table[i].type] = i;
1878 initialized_p = TRUE;
1881 if (r_type == R_AARCH64_NONE || r_type == R_AARCH64_NULL)
1882 return BFD_RELOC_AARCH64_NONE;
1884 /* PR 17512: file: b371e70a. */
1885 if (r_type >= R_AARCH64_end)
1887 _bfd_error_handler (_("Invalid AArch64 reloc number: %d"), r_type);
1888 bfd_set_error (bfd_error_bad_value);
1889 return BFD_RELOC_AARCH64_NONE;
1892 return BFD_RELOC_AARCH64_RELOC_START + offsets[r_type];
1895 struct elf_aarch64_reloc_map
1897 bfd_reloc_code_real_type from;
1898 bfd_reloc_code_real_type to;
1901 /* Map bfd generic reloc to AArch64-specific reloc. */
1902 static const struct elf_aarch64_reloc_map elf_aarch64_reloc_map[] =
1904 {BFD_RELOC_NONE, BFD_RELOC_AARCH64_NONE},
1906 /* Basic data relocations. */
1907 {BFD_RELOC_CTOR, BFD_RELOC_AARCH64_NN},
1908 {BFD_RELOC_64, BFD_RELOC_AARCH64_64},
1909 {BFD_RELOC_32, BFD_RELOC_AARCH64_32},
1910 {BFD_RELOC_16, BFD_RELOC_AARCH64_16},
1911 {BFD_RELOC_64_PCREL, BFD_RELOC_AARCH64_64_PCREL},
1912 {BFD_RELOC_32_PCREL, BFD_RELOC_AARCH64_32_PCREL},
1913 {BFD_RELOC_16_PCREL, BFD_RELOC_AARCH64_16_PCREL},
1916 /* Given the bfd internal relocation enumerator in CODE, return the
1917 corresponding howto entry. */
1919 static reloc_howto_type *
1920 elfNN_aarch64_howto_from_bfd_reloc (bfd_reloc_code_real_type code)
1924 /* Convert bfd generic reloc to AArch64-specific reloc. */
1925 if (code < BFD_RELOC_AARCH64_RELOC_START
1926 || code > BFD_RELOC_AARCH64_RELOC_END)
1927 for (i = 0; i < ARRAY_SIZE (elf_aarch64_reloc_map); i++)
1928 if (elf_aarch64_reloc_map[i].from == code)
1930 code = elf_aarch64_reloc_map[i].to;
1934 if (code > BFD_RELOC_AARCH64_RELOC_START
1935 && code < BFD_RELOC_AARCH64_RELOC_END)
1936 if (elfNN_aarch64_howto_table[code - BFD_RELOC_AARCH64_RELOC_START].type)
1937 return &elfNN_aarch64_howto_table[code - BFD_RELOC_AARCH64_RELOC_START];
1939 if (code == BFD_RELOC_AARCH64_NONE)
1940 return &elfNN_aarch64_howto_none;
1945 static reloc_howto_type *
1946 elfNN_aarch64_howto_from_type (unsigned int r_type)
1948 bfd_reloc_code_real_type val;
1949 reloc_howto_type *howto;
1954 bfd_set_error (bfd_error_bad_value);
1959 if (r_type == R_AARCH64_NONE)
1960 return &elfNN_aarch64_howto_none;
1962 val = elfNN_aarch64_bfd_reloc_from_type (r_type);
1963 howto = elfNN_aarch64_howto_from_bfd_reloc (val);
1968 bfd_set_error (bfd_error_bad_value);
1973 elfNN_aarch64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc,
1974 Elf_Internal_Rela *elf_reloc)
1976 unsigned int r_type;
1978 r_type = ELFNN_R_TYPE (elf_reloc->r_info);
1979 bfd_reloc->howto = elfNN_aarch64_howto_from_type (r_type);
1982 static reloc_howto_type *
1983 elfNN_aarch64_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1984 bfd_reloc_code_real_type code)
1986 reloc_howto_type *howto = elfNN_aarch64_howto_from_bfd_reloc (code);
1991 bfd_set_error (bfd_error_bad_value);
1995 static reloc_howto_type *
1996 elfNN_aarch64_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2001 for (i = 1; i < ARRAY_SIZE (elfNN_aarch64_howto_table) - 1; ++i)
2002 if (elfNN_aarch64_howto_table[i].name != NULL
2003 && strcasecmp (elfNN_aarch64_howto_table[i].name, r_name) == 0)
2004 return &elfNN_aarch64_howto_table[i];
2009 #define TARGET_LITTLE_SYM aarch64_elfNN_le_vec
2010 #define TARGET_LITTLE_NAME "elfNN-littleaarch64"
2011 #define TARGET_BIG_SYM aarch64_elfNN_be_vec
2012 #define TARGET_BIG_NAME "elfNN-bigaarch64"
2014 /* The linker script knows the section names for placement.
2015 The entry_names are used to do simple name mangling on the stubs.
2016 Given a function name, and its type, the stub can be found. The
2017 name can be changed. The only requirement is the %s be present. */
2018 #define STUB_ENTRY_NAME "__%s_veneer"
2020 /* The name of the dynamic interpreter. This is put in the .interp
2022 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
2024 #define AARCH64_MAX_FWD_BRANCH_OFFSET \
2025 (((1 << 25) - 1) << 2)
2026 #define AARCH64_MAX_BWD_BRANCH_OFFSET \
2029 #define AARCH64_MAX_ADRP_IMM ((1 << 20) - 1)
2030 #define AARCH64_MIN_ADRP_IMM (-(1 << 20))
2033 aarch64_valid_for_adrp_p (bfd_vma value, bfd_vma place)
2035 bfd_signed_vma offset = (bfd_signed_vma) (PG (value) - PG (place)) >> 12;
2036 return offset <= AARCH64_MAX_ADRP_IMM && offset >= AARCH64_MIN_ADRP_IMM;
2040 aarch64_valid_branch_p (bfd_vma value, bfd_vma place)
2042 bfd_signed_vma offset = (bfd_signed_vma) (value - place);
2043 return (offset <= AARCH64_MAX_FWD_BRANCH_OFFSET
2044 && offset >= AARCH64_MAX_BWD_BRANCH_OFFSET);
2047 static const uint32_t aarch64_adrp_branch_stub [] =
2049 0x90000010, /* adrp ip0, X */
2050 /* R_AARCH64_ADR_HI21_PCREL(X) */
2051 0x91000210, /* add ip0, ip0, :lo12:X */
2052 /* R_AARCH64_ADD_ABS_LO12_NC(X) */
2053 0xd61f0200, /* br ip0 */
2056 static const uint32_t aarch64_long_branch_stub[] =
2059 0x58000090, /* ldr ip0, 1f */
2061 0x18000090, /* ldr wip0, 1f */
2063 0x10000011, /* adr ip1, #0 */
2064 0x8b110210, /* add ip0, ip0, ip1 */
2065 0xd61f0200, /* br ip0 */
2066 0x00000000, /* 1: .xword or .word
2067 R_AARCH64_PRELNN(X) + 12
2072 static const uint32_t aarch64_erratum_835769_stub[] =
2074 0x00000000, /* Placeholder for multiply accumulate. */
2075 0x14000000, /* b <label> */
2078 static const uint32_t aarch64_erratum_843419_stub[] =
2080 0x00000000, /* Placeholder for LDR instruction. */
2081 0x14000000, /* b <label> */
2084 /* Section name for stubs is the associated section name plus this
2086 #define STUB_SUFFIX ".stub"
2088 enum elf_aarch64_stub_type
2091 aarch64_stub_adrp_branch,
2092 aarch64_stub_long_branch,
2093 aarch64_stub_erratum_835769_veneer,
2094 aarch64_stub_erratum_843419_veneer,
2097 struct elf_aarch64_stub_hash_entry
2099 /* Base hash table entry structure. */
2100 struct bfd_hash_entry root;
2102 /* The stub section. */
2105 /* Offset within stub_sec of the beginning of this stub. */
2106 bfd_vma stub_offset;
2108 /* Given the symbol's value and its section we can determine its final
2109 value when building the stubs (so the stub knows where to jump). */
2110 bfd_vma target_value;
2111 asection *target_section;
2113 enum elf_aarch64_stub_type stub_type;
2115 /* The symbol table entry, if any, that this was derived from. */
2116 struct elf_aarch64_link_hash_entry *h;
2118 /* Destination symbol type */
2119 unsigned char st_type;
2121 /* Where this stub is being called from, or, in the case of combined
2122 stub sections, the first input section in the group. */
2125 /* The name for the local symbol at the start of this stub. The
2126 stub name in the hash table has to be unique; this does not, so
2127 it can be friendlier. */
2130 /* The instruction which caused this stub to be generated (only valid for
2131 erratum 835769 workaround stubs at present). */
2132 uint32_t veneered_insn;
2134 /* In an erratum 843419 workaround stub, the ADRP instruction offset. */
2135 bfd_vma adrp_offset;
2138 /* Used to build a map of a section. This is required for mixed-endian
2141 typedef struct elf_elf_section_map
2146 elf_aarch64_section_map;
2149 typedef struct _aarch64_elf_section_data
2151 struct bfd_elf_section_data elf;
2152 unsigned int mapcount;
2153 unsigned int mapsize;
2154 elf_aarch64_section_map *map;
2156 _aarch64_elf_section_data;
2158 #define elf_aarch64_section_data(sec) \
2159 ((_aarch64_elf_section_data *) elf_section_data (sec))
2161 /* The size of the thread control block which is defined to be two pointers. */
2162 #define TCB_SIZE (ARCH_SIZE/8)*2
2164 struct elf_aarch64_local_symbol
2166 unsigned int got_type;
2167 bfd_signed_vma got_refcount;
2170 /* Offset of the GOTPLT entry reserved for the TLS descriptor. The
2171 offset is from the end of the jump table and reserved entries
2174 The magic value (bfd_vma) -1 indicates that an offset has not be
2176 bfd_vma tlsdesc_got_jump_table_offset;
2179 struct elf_aarch64_obj_tdata
2181 struct elf_obj_tdata root;
2183 /* local symbol descriptors */
2184 struct elf_aarch64_local_symbol *locals;
2186 /* Zero to warn when linking objects with incompatible enum sizes. */
2187 int no_enum_size_warning;
2189 /* Zero to warn when linking objects with incompatible wchar_t sizes. */
2190 int no_wchar_size_warning;
2193 #define elf_aarch64_tdata(bfd) \
2194 ((struct elf_aarch64_obj_tdata *) (bfd)->tdata.any)
2196 #define elf_aarch64_locals(bfd) (elf_aarch64_tdata (bfd)->locals)
2198 #define is_aarch64_elf(bfd) \
2199 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
2200 && elf_tdata (bfd) != NULL \
2201 && elf_object_id (bfd) == AARCH64_ELF_DATA)
2204 elfNN_aarch64_mkobject (bfd *abfd)
2206 return bfd_elf_allocate_object (abfd, sizeof (struct elf_aarch64_obj_tdata),
2210 #define elf_aarch64_hash_entry(ent) \
2211 ((struct elf_aarch64_link_hash_entry *)(ent))
2213 #define GOT_UNKNOWN 0
2214 #define GOT_NORMAL 1
2215 #define GOT_TLS_GD 2
2216 #define GOT_TLS_IE 4
2217 #define GOT_TLSDESC_GD 8
2219 #define GOT_TLS_GD_ANY_P(type) ((type & GOT_TLS_GD) || (type & GOT_TLSDESC_GD))
2221 /* AArch64 ELF linker hash entry. */
2222 struct elf_aarch64_link_hash_entry
2224 struct elf_link_hash_entry root;
2226 /* Track dynamic relocs copied for this symbol. */
2227 struct elf_dyn_relocs *dyn_relocs;
2229 /* Since PLT entries have variable size, we need to record the
2230 index into .got.plt instead of recomputing it from the PLT
2232 bfd_signed_vma plt_got_offset;
2234 /* Bit mask representing the type of GOT entry(s) if any required by
2236 unsigned int got_type;
2238 /* A pointer to the most recently used stub hash entry against this
2240 struct elf_aarch64_stub_hash_entry *stub_cache;
2242 /* Offset of the GOTPLT entry reserved for the TLS descriptor. The offset
2243 is from the end of the jump table and reserved entries within the PLTGOT.
2245 The magic value (bfd_vma) -1 indicates that an offset has not
2247 bfd_vma tlsdesc_got_jump_table_offset;
2251 elfNN_aarch64_symbol_got_type (struct elf_link_hash_entry *h,
2253 unsigned long r_symndx)
2256 return elf_aarch64_hash_entry (h)->got_type;
2258 if (! elf_aarch64_locals (abfd))
2261 return elf_aarch64_locals (abfd)[r_symndx].got_type;
2264 /* Get the AArch64 elf linker hash table from a link_info structure. */
2265 #define elf_aarch64_hash_table(info) \
2266 ((struct elf_aarch64_link_hash_table *) ((info)->hash))
2268 #define aarch64_stub_hash_lookup(table, string, create, copy) \
2269 ((struct elf_aarch64_stub_hash_entry *) \
2270 bfd_hash_lookup ((table), (string), (create), (copy)))
2272 /* AArch64 ELF linker hash table. */
2273 struct elf_aarch64_link_hash_table
2275 /* The main hash table. */
2276 struct elf_link_hash_table root;
2278 /* Nonzero to force PIC branch veneers. */
2281 /* Fix erratum 835769. */
2282 int fix_erratum_835769;
2284 /* Fix erratum 843419. */
2285 int fix_erratum_843419;
2287 /* Enable ADRP->ADR rewrite for erratum 843419 workaround. */
2288 int fix_erratum_843419_adr;
2290 /* Don't apply link-time values for dynamic relocations. */
2291 int no_apply_dynamic_relocs;
2293 /* The number of bytes in the initial entry in the PLT. */
2294 bfd_size_type plt_header_size;
2296 /* The number of bytes in the subsequent PLT etries. */
2297 bfd_size_type plt_entry_size;
2299 /* Small local sym cache. */
2300 struct sym_cache sym_cache;
2302 /* For convenience in allocate_dynrelocs. */
2305 /* The amount of space used by the reserved portion of the sgotplt
2306 section, plus whatever space is used by the jump slots. */
2307 bfd_vma sgotplt_jump_table_size;
2309 /* The stub hash table. */
2310 struct bfd_hash_table stub_hash_table;
2312 /* Linker stub bfd. */
2315 /* Linker call-backs. */
2316 asection *(*add_stub_section) (const char *, asection *);
2317 void (*layout_sections_again) (void);
2319 /* Array to keep track of which stub sections have been created, and
2320 information on stub grouping. */
2323 /* This is the section to which stubs in the group will be
2326 /* The stub section. */
2330 /* Assorted information used by elfNN_aarch64_size_stubs. */
2331 unsigned int bfd_count;
2332 unsigned int top_index;
2333 asection **input_list;
2335 /* The offset into splt of the PLT entry for the TLS descriptor
2336 resolver. Special values are 0, if not necessary (or not found
2337 to be necessary yet), and -1 if needed but not determined
2339 bfd_vma tlsdesc_plt;
2341 /* The GOT offset for the lazy trampoline. Communicated to the
2342 loader via DT_TLSDESC_GOT. The magic value (bfd_vma) -1
2343 indicates an offset is not allocated. */
2344 bfd_vma dt_tlsdesc_got;
2346 /* Used by local STT_GNU_IFUNC symbols. */
2347 htab_t loc_hash_table;
2348 void * loc_hash_memory;
2351 /* Create an entry in an AArch64 ELF linker hash table. */
2353 static struct bfd_hash_entry *
2354 elfNN_aarch64_link_hash_newfunc (struct bfd_hash_entry *entry,
2355 struct bfd_hash_table *table,
2358 struct elf_aarch64_link_hash_entry *ret =
2359 (struct elf_aarch64_link_hash_entry *) entry;
2361 /* Allocate the structure if it has not already been allocated by a
2364 ret = bfd_hash_allocate (table,
2365 sizeof (struct elf_aarch64_link_hash_entry));
2367 return (struct bfd_hash_entry *) ret;
2369 /* Call the allocation method of the superclass. */
2370 ret = ((struct elf_aarch64_link_hash_entry *)
2371 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
2375 ret->dyn_relocs = NULL;
2376 ret->got_type = GOT_UNKNOWN;
2377 ret->plt_got_offset = (bfd_vma) - 1;
2378 ret->stub_cache = NULL;
2379 ret->tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
2382 return (struct bfd_hash_entry *) ret;
2385 /* Initialize an entry in the stub hash table. */
2387 static struct bfd_hash_entry *
2388 stub_hash_newfunc (struct bfd_hash_entry *entry,
2389 struct bfd_hash_table *table, const char *string)
2391 /* Allocate the structure if it has not already been allocated by a
2395 entry = bfd_hash_allocate (table,
2397 elf_aarch64_stub_hash_entry));
2402 /* Call the allocation method of the superclass. */
2403 entry = bfd_hash_newfunc (entry, table, string);
2406 struct elf_aarch64_stub_hash_entry *eh;
2408 /* Initialize the local fields. */
2409 eh = (struct elf_aarch64_stub_hash_entry *) entry;
2410 eh->adrp_offset = 0;
2411 eh->stub_sec = NULL;
2412 eh->stub_offset = 0;
2413 eh->target_value = 0;
2414 eh->target_section = NULL;
2415 eh->stub_type = aarch64_stub_none;
2423 /* Compute a hash of a local hash entry. We use elf_link_hash_entry
2424 for local symbol so that we can handle local STT_GNU_IFUNC symbols
2425 as global symbol. We reuse indx and dynstr_index for local symbol
2426 hash since they aren't used by global symbols in this backend. */
2429 elfNN_aarch64_local_htab_hash (const void *ptr)
2431 struct elf_link_hash_entry *h
2432 = (struct elf_link_hash_entry *) ptr;
2433 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
2436 /* Compare local hash entries. */
2439 elfNN_aarch64_local_htab_eq (const void *ptr1, const void *ptr2)
2441 struct elf_link_hash_entry *h1
2442 = (struct elf_link_hash_entry *) ptr1;
2443 struct elf_link_hash_entry *h2
2444 = (struct elf_link_hash_entry *) ptr2;
2446 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
2449 /* Find and/or create a hash entry for local symbol. */
2451 static struct elf_link_hash_entry *
2452 elfNN_aarch64_get_local_sym_hash (struct elf_aarch64_link_hash_table *htab,
2453 bfd *abfd, const Elf_Internal_Rela *rel,
2456 struct elf_aarch64_link_hash_entry e, *ret;
2457 asection *sec = abfd->sections;
2458 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
2459 ELFNN_R_SYM (rel->r_info));
2462 e.root.indx = sec->id;
2463 e.root.dynstr_index = ELFNN_R_SYM (rel->r_info);
2464 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
2465 create ? INSERT : NO_INSERT);
2472 ret = (struct elf_aarch64_link_hash_entry *) *slot;
2476 ret = (struct elf_aarch64_link_hash_entry *)
2477 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
2478 sizeof (struct elf_aarch64_link_hash_entry));
2481 memset (ret, 0, sizeof (*ret));
2482 ret->root.indx = sec->id;
2483 ret->root.dynstr_index = ELFNN_R_SYM (rel->r_info);
2484 ret->root.dynindx = -1;
2490 /* Copy the extra info we tack onto an elf_link_hash_entry. */
2493 elfNN_aarch64_copy_indirect_symbol (struct bfd_link_info *info,
2494 struct elf_link_hash_entry *dir,
2495 struct elf_link_hash_entry *ind)
2497 struct elf_aarch64_link_hash_entry *edir, *eind;
2499 edir = (struct elf_aarch64_link_hash_entry *) dir;
2500 eind = (struct elf_aarch64_link_hash_entry *) ind;
2502 if (eind->dyn_relocs != NULL)
2504 if (edir->dyn_relocs != NULL)
2506 struct elf_dyn_relocs **pp;
2507 struct elf_dyn_relocs *p;
2509 /* Add reloc counts against the indirect sym to the direct sym
2510 list. Merge any entries against the same section. */
2511 for (pp = &eind->dyn_relocs; (p = *pp) != NULL;)
2513 struct elf_dyn_relocs *q;
2515 for (q = edir->dyn_relocs; q != NULL; q = q->next)
2516 if (q->sec == p->sec)
2518 q->pc_count += p->pc_count;
2519 q->count += p->count;
2526 *pp = edir->dyn_relocs;
2529 edir->dyn_relocs = eind->dyn_relocs;
2530 eind->dyn_relocs = NULL;
2533 if (ind->root.type == bfd_link_hash_indirect)
2535 /* Copy over PLT info. */
2536 if (dir->got.refcount <= 0)
2538 edir->got_type = eind->got_type;
2539 eind->got_type = GOT_UNKNOWN;
2543 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
2546 /* Destroy an AArch64 elf linker hash table. */
2549 elfNN_aarch64_link_hash_table_free (bfd *obfd)
2551 struct elf_aarch64_link_hash_table *ret
2552 = (struct elf_aarch64_link_hash_table *) obfd->link.hash;
2554 if (ret->loc_hash_table)
2555 htab_delete (ret->loc_hash_table);
2556 if (ret->loc_hash_memory)
2557 objalloc_free ((struct objalloc *) ret->loc_hash_memory);
2559 bfd_hash_table_free (&ret->stub_hash_table);
2560 _bfd_elf_link_hash_table_free (obfd);
2563 /* Create an AArch64 elf linker hash table. */
2565 static struct bfd_link_hash_table *
2566 elfNN_aarch64_link_hash_table_create (bfd *abfd)
2568 struct elf_aarch64_link_hash_table *ret;
2569 bfd_size_type amt = sizeof (struct elf_aarch64_link_hash_table);
2571 ret = bfd_zmalloc (amt);
2575 if (!_bfd_elf_link_hash_table_init
2576 (&ret->root, abfd, elfNN_aarch64_link_hash_newfunc,
2577 sizeof (struct elf_aarch64_link_hash_entry), AARCH64_ELF_DATA))
2583 ret->plt_header_size = PLT_ENTRY_SIZE;
2584 ret->plt_entry_size = PLT_SMALL_ENTRY_SIZE;
2586 ret->dt_tlsdesc_got = (bfd_vma) - 1;
2588 if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc,
2589 sizeof (struct elf_aarch64_stub_hash_entry)))
2591 _bfd_elf_link_hash_table_free (abfd);
2595 ret->loc_hash_table = htab_try_create (1024,
2596 elfNN_aarch64_local_htab_hash,
2597 elfNN_aarch64_local_htab_eq,
2599 ret->loc_hash_memory = objalloc_create ();
2600 if (!ret->loc_hash_table || !ret->loc_hash_memory)
2602 elfNN_aarch64_link_hash_table_free (abfd);
2605 ret->root.root.hash_table_free = elfNN_aarch64_link_hash_table_free;
2607 return &ret->root.root;
2611 aarch64_relocate (unsigned int r_type, bfd *input_bfd, asection *input_section,
2612 bfd_vma offset, bfd_vma value)
2614 reloc_howto_type *howto;
2617 howto = elfNN_aarch64_howto_from_type (r_type);
2618 place = (input_section->output_section->vma + input_section->output_offset
2621 r_type = elfNN_aarch64_bfd_reloc_from_type (r_type);
2622 value = _bfd_aarch64_elf_resolve_relocation (r_type, place, value, 0, FALSE);
2623 return _bfd_aarch64_elf_put_addend (input_bfd,
2624 input_section->contents + offset, r_type,
2628 static enum elf_aarch64_stub_type
2629 aarch64_select_branch_stub (bfd_vma value, bfd_vma place)
2631 if (aarch64_valid_for_adrp_p (value, place))
2632 return aarch64_stub_adrp_branch;
2633 return aarch64_stub_long_branch;
2636 /* Determine the type of stub needed, if any, for a call. */
2638 static enum elf_aarch64_stub_type
2639 aarch64_type_of_stub (asection *input_sec,
2640 const Elf_Internal_Rela *rel,
2642 unsigned char st_type,
2643 bfd_vma destination)
2646 bfd_signed_vma branch_offset;
2647 unsigned int r_type;
2648 enum elf_aarch64_stub_type stub_type = aarch64_stub_none;
2650 if (st_type != STT_FUNC
2651 && (sym_sec == input_sec))
2654 /* Determine where the call point is. */
2655 location = (input_sec->output_offset
2656 + input_sec->output_section->vma + rel->r_offset);
2658 branch_offset = (bfd_signed_vma) (destination - location);
2660 r_type = ELFNN_R_TYPE (rel->r_info);
2662 /* We don't want to redirect any old unconditional jump in this way,
2663 only one which is being used for a sibcall, where it is
2664 acceptable for the IP0 and IP1 registers to be clobbered. */
2665 if ((r_type == AARCH64_R (CALL26) || r_type == AARCH64_R (JUMP26))
2666 && (branch_offset > AARCH64_MAX_FWD_BRANCH_OFFSET
2667 || branch_offset < AARCH64_MAX_BWD_BRANCH_OFFSET))
2669 stub_type = aarch64_stub_long_branch;
2675 /* Build a name for an entry in the stub hash table. */
2678 elfNN_aarch64_stub_name (const asection *input_section,
2679 const asection *sym_sec,
2680 const struct elf_aarch64_link_hash_entry *hash,
2681 const Elf_Internal_Rela *rel)
2688 len = 8 + 1 + strlen (hash->root.root.root.string) + 1 + 16 + 1;
2689 stub_name = bfd_malloc (len);
2690 if (stub_name != NULL)
2691 snprintf (stub_name, len, "%08x_%s+%" BFD_VMA_FMT "x",
2692 (unsigned int) input_section->id,
2693 hash->root.root.root.string,
2698 len = 8 + 1 + 8 + 1 + 8 + 1 + 16 + 1;
2699 stub_name = bfd_malloc (len);
2700 if (stub_name != NULL)
2701 snprintf (stub_name, len, "%08x_%x:%x+%" BFD_VMA_FMT "x",
2702 (unsigned int) input_section->id,
2703 (unsigned int) sym_sec->id,
2704 (unsigned int) ELFNN_R_SYM (rel->r_info),
2711 /* Return TRUE if symbol H should be hashed in the `.gnu.hash' section. For
2712 executable PLT slots where the executable never takes the address of those
2713 functions, the function symbols are not added to the hash table. */
2716 elf_aarch64_hash_symbol (struct elf_link_hash_entry *h)
2718 if (h->plt.offset != (bfd_vma) -1
2720 && !h->pointer_equality_needed)
2723 return _bfd_elf_hash_symbol (h);
2727 /* Look up an entry in the stub hash. Stub entries are cached because
2728 creating the stub name takes a bit of time. */
2730 static struct elf_aarch64_stub_hash_entry *
2731 elfNN_aarch64_get_stub_entry (const asection *input_section,
2732 const asection *sym_sec,
2733 struct elf_link_hash_entry *hash,
2734 const Elf_Internal_Rela *rel,
2735 struct elf_aarch64_link_hash_table *htab)
2737 struct elf_aarch64_stub_hash_entry *stub_entry;
2738 struct elf_aarch64_link_hash_entry *h =
2739 (struct elf_aarch64_link_hash_entry *) hash;
2740 const asection *id_sec;
2742 if ((input_section->flags & SEC_CODE) == 0)
2745 /* If this input section is part of a group of sections sharing one
2746 stub section, then use the id of the first section in the group.
2747 Stub names need to include a section id, as there may well be
2748 more than one stub used to reach say, printf, and we need to
2749 distinguish between them. */
2750 id_sec = htab->stub_group[input_section->id].link_sec;
2752 if (h != NULL && h->stub_cache != NULL
2753 && h->stub_cache->h == h && h->stub_cache->id_sec == id_sec)
2755 stub_entry = h->stub_cache;
2761 stub_name = elfNN_aarch64_stub_name (id_sec, sym_sec, h, rel);
2762 if (stub_name == NULL)
2765 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table,
2766 stub_name, FALSE, FALSE);
2768 h->stub_cache = stub_entry;
2777 /* Create a stub section. */
2780 _bfd_aarch64_create_stub_section (asection *section,
2781 struct elf_aarch64_link_hash_table *htab)
2787 namelen = strlen (section->name);
2788 len = namelen + sizeof (STUB_SUFFIX);
2789 s_name = bfd_alloc (htab->stub_bfd, len);
2793 memcpy (s_name, section->name, namelen);
2794 memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
2795 return (*htab->add_stub_section) (s_name, section);
2799 /* Find or create a stub section for a link section.
2801 Fix or create the stub section used to collect stubs attached to
2802 the specified link section. */
2805 _bfd_aarch64_get_stub_for_link_section (asection *link_section,
2806 struct elf_aarch64_link_hash_table *htab)
2808 if (htab->stub_group[link_section->id].stub_sec == NULL)
2809 htab->stub_group[link_section->id].stub_sec
2810 = _bfd_aarch64_create_stub_section (link_section, htab);
2811 return htab->stub_group[link_section->id].stub_sec;
2815 /* Find or create a stub section in the stub group for an input
2819 _bfd_aarch64_create_or_find_stub_sec (asection *section,
2820 struct elf_aarch64_link_hash_table *htab)
2822 asection *link_sec = htab->stub_group[section->id].link_sec;
2823 return _bfd_aarch64_get_stub_for_link_section (link_sec, htab);
2827 /* Add a new stub entry in the stub group associated with an input
2828 section to the stub hash. Not all fields of the new stub entry are
2831 static struct elf_aarch64_stub_hash_entry *
2832 _bfd_aarch64_add_stub_entry_in_group (const char *stub_name,
2834 struct elf_aarch64_link_hash_table *htab)
2838 struct elf_aarch64_stub_hash_entry *stub_entry;
2840 link_sec = htab->stub_group[section->id].link_sec;
2841 stub_sec = _bfd_aarch64_create_or_find_stub_sec (section, htab);
2843 /* Enter this entry into the linker stub hash table. */
2844 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
2846 if (stub_entry == NULL)
2848 /* xgettext:c-format */
2849 _bfd_error_handler (_("%s: cannot create stub entry %s"),
2850 section->owner, stub_name);
2854 stub_entry->stub_sec = stub_sec;
2855 stub_entry->stub_offset = 0;
2856 stub_entry->id_sec = link_sec;
2861 /* Add a new stub entry in the final stub section to the stub hash.
2862 Not all fields of the new stub entry are initialised. */
2864 static struct elf_aarch64_stub_hash_entry *
2865 _bfd_aarch64_add_stub_entry_after (const char *stub_name,
2866 asection *link_section,
2867 struct elf_aarch64_link_hash_table *htab)
2870 struct elf_aarch64_stub_hash_entry *stub_entry;
2872 stub_sec = _bfd_aarch64_get_stub_for_link_section (link_section, htab);
2873 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
2875 if (stub_entry == NULL)
2877 _bfd_error_handler (_("cannot create stub entry %s"), stub_name);
2881 stub_entry->stub_sec = stub_sec;
2882 stub_entry->stub_offset = 0;
2883 stub_entry->id_sec = link_section;
2890 aarch64_build_one_stub (struct bfd_hash_entry *gen_entry,
2891 void *in_arg ATTRIBUTE_UNUSED)
2893 struct elf_aarch64_stub_hash_entry *stub_entry;
2898 bfd_vma veneered_insn_loc;
2899 bfd_vma veneer_entry_loc;
2900 bfd_signed_vma branch_offset = 0;
2901 unsigned int template_size;
2902 const uint32_t *template;
2905 /* Massage our args to the form they really have. */
2906 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
2908 stub_sec = stub_entry->stub_sec;
2910 /* Make a note of the offset within the stubs for this entry. */
2911 stub_entry->stub_offset = stub_sec->size;
2912 loc = stub_sec->contents + stub_entry->stub_offset;
2914 stub_bfd = stub_sec->owner;
2916 /* This is the address of the stub destination. */
2917 sym_value = (stub_entry->target_value
2918 + stub_entry->target_section->output_offset
2919 + stub_entry->target_section->output_section->vma);
2921 if (stub_entry->stub_type == aarch64_stub_long_branch)
2923 bfd_vma place = (stub_entry->stub_offset + stub_sec->output_section->vma
2924 + stub_sec->output_offset);
2926 /* See if we can relax the stub. */
2927 if (aarch64_valid_for_adrp_p (sym_value, place))
2928 stub_entry->stub_type = aarch64_select_branch_stub (sym_value, place);
2931 switch (stub_entry->stub_type)
2933 case aarch64_stub_adrp_branch:
2934 template = aarch64_adrp_branch_stub;
2935 template_size = sizeof (aarch64_adrp_branch_stub);
2937 case aarch64_stub_long_branch:
2938 template = aarch64_long_branch_stub;
2939 template_size = sizeof (aarch64_long_branch_stub);
2941 case aarch64_stub_erratum_835769_veneer:
2942 template = aarch64_erratum_835769_stub;
2943 template_size = sizeof (aarch64_erratum_835769_stub);
2945 case aarch64_stub_erratum_843419_veneer:
2946 template = aarch64_erratum_843419_stub;
2947 template_size = sizeof (aarch64_erratum_843419_stub);
2953 for (i = 0; i < (template_size / sizeof template[0]); i++)
2955 bfd_putl32 (template[i], loc);
2959 template_size = (template_size + 7) & ~7;
2960 stub_sec->size += template_size;
2962 switch (stub_entry->stub_type)
2964 case aarch64_stub_adrp_branch:
2965 if (aarch64_relocate (AARCH64_R (ADR_PREL_PG_HI21), stub_bfd, stub_sec,
2966 stub_entry->stub_offset, sym_value))
2967 /* The stub would not have been relaxed if the offset was out
2971 if (aarch64_relocate (AARCH64_R (ADD_ABS_LO12_NC), stub_bfd, stub_sec,
2972 stub_entry->stub_offset + 4, sym_value))
2976 case aarch64_stub_long_branch:
2977 /* We want the value relative to the address 12 bytes back from the
2979 if (aarch64_relocate (AARCH64_R (PRELNN), stub_bfd, stub_sec,
2980 stub_entry->stub_offset + 16, sym_value + 12))
2984 case aarch64_stub_erratum_835769_veneer:
2985 veneered_insn_loc = stub_entry->target_section->output_section->vma
2986 + stub_entry->target_section->output_offset
2987 + stub_entry->target_value;
2988 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
2989 + stub_entry->stub_sec->output_offset
2990 + stub_entry->stub_offset;
2991 branch_offset = veneered_insn_loc - veneer_entry_loc;
2992 branch_offset >>= 2;
2993 branch_offset &= 0x3ffffff;
2994 bfd_putl32 (stub_entry->veneered_insn,
2995 stub_sec->contents + stub_entry->stub_offset);
2996 bfd_putl32 (template[1] | branch_offset,
2997 stub_sec->contents + stub_entry->stub_offset + 4);
3000 case aarch64_stub_erratum_843419_veneer:
3001 if (aarch64_relocate (AARCH64_R (JUMP26), stub_bfd, stub_sec,
3002 stub_entry->stub_offset + 4, sym_value + 4))
3013 /* As above, but don't actually build the stub. Just bump offset so
3014 we know stub section sizes. */
3017 aarch64_size_one_stub (struct bfd_hash_entry *gen_entry,
3018 void *in_arg ATTRIBUTE_UNUSED)
3020 struct elf_aarch64_stub_hash_entry *stub_entry;
3023 /* Massage our args to the form they really have. */
3024 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
3026 switch (stub_entry->stub_type)
3028 case aarch64_stub_adrp_branch:
3029 size = sizeof (aarch64_adrp_branch_stub);
3031 case aarch64_stub_long_branch:
3032 size = sizeof (aarch64_long_branch_stub);
3034 case aarch64_stub_erratum_835769_veneer:
3035 size = sizeof (aarch64_erratum_835769_stub);
3037 case aarch64_stub_erratum_843419_veneer:
3038 size = sizeof (aarch64_erratum_843419_stub);
3044 size = (size + 7) & ~7;
3045 stub_entry->stub_sec->size += size;
3049 /* External entry points for sizing and building linker stubs. */
3051 /* Set up various things so that we can make a list of input sections
3052 for each output section included in the link. Returns -1 on error,
3053 0 when no stubs will be needed, and 1 on success. */
3056 elfNN_aarch64_setup_section_lists (bfd *output_bfd,
3057 struct bfd_link_info *info)
3060 unsigned int bfd_count;
3061 unsigned int top_id, top_index;
3063 asection **input_list, **list;
3065 struct elf_aarch64_link_hash_table *htab =
3066 elf_aarch64_hash_table (info);
3068 if (!is_elf_hash_table (htab))
3071 /* Count the number of input BFDs and find the top input section id. */
3072 for (input_bfd = info->input_bfds, bfd_count = 0, top_id = 0;
3073 input_bfd != NULL; input_bfd = input_bfd->link.next)
3076 for (section = input_bfd->sections;
3077 section != NULL; section = section->next)
3079 if (top_id < section->id)
3080 top_id = section->id;
3083 htab->bfd_count = bfd_count;
3085 amt = sizeof (struct map_stub) * (top_id + 1);
3086 htab->stub_group = bfd_zmalloc (amt);
3087 if (htab->stub_group == NULL)
3090 /* We can't use output_bfd->section_count here to find the top output
3091 section index as some sections may have been removed, and
3092 _bfd_strip_section_from_output doesn't renumber the indices. */
3093 for (section = output_bfd->sections, top_index = 0;
3094 section != NULL; section = section->next)
3096 if (top_index < section->index)
3097 top_index = section->index;
3100 htab->top_index = top_index;
3101 amt = sizeof (asection *) * (top_index + 1);
3102 input_list = bfd_malloc (amt);
3103 htab->input_list = input_list;
3104 if (input_list == NULL)
3107 /* For sections we aren't interested in, mark their entries with a
3108 value we can check later. */
3109 list = input_list + top_index;
3111 *list = bfd_abs_section_ptr;
3112 while (list-- != input_list);
3114 for (section = output_bfd->sections;
3115 section != NULL; section = section->next)
3117 if ((section->flags & SEC_CODE) != 0)
3118 input_list[section->index] = NULL;
3124 /* Used by elfNN_aarch64_next_input_section and group_sections. */
3125 #define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
3127 /* The linker repeatedly calls this function for each input section,
3128 in the order that input sections are linked into output sections.
3129 Build lists of input sections to determine groupings between which
3130 we may insert linker stubs. */
3133 elfNN_aarch64_next_input_section (struct bfd_link_info *info, asection *isec)
3135 struct elf_aarch64_link_hash_table *htab =
3136 elf_aarch64_hash_table (info);
3138 if (isec->output_section->index <= htab->top_index)
3140 asection **list = htab->input_list + isec->output_section->index;
3142 if (*list != bfd_abs_section_ptr)
3144 /* Steal the link_sec pointer for our list. */
3145 /* This happens to make the list in reverse order,
3146 which is what we want. */
3147 PREV_SEC (isec) = *list;
3153 /* See whether we can group stub sections together. Grouping stub
3154 sections may result in fewer stubs. More importantly, we need to
3155 put all .init* and .fini* stubs at the beginning of the .init or
3156 .fini output sections respectively, because glibc splits the
3157 _init and _fini functions into multiple parts. Putting a stub in
3158 the middle of a function is not a good idea. */
3161 group_sections (struct elf_aarch64_link_hash_table *htab,
3162 bfd_size_type stub_group_size,
3163 bfd_boolean stubs_always_before_branch)
3165 asection **list = htab->input_list + htab->top_index;
3169 asection *tail = *list;
3171 if (tail == bfd_abs_section_ptr)
3174 while (tail != NULL)
3178 bfd_size_type total;
3182 while ((prev = PREV_SEC (curr)) != NULL
3183 && ((total += curr->output_offset - prev->output_offset)
3187 /* OK, the size from the start of CURR to the end is less
3188 than stub_group_size and thus can be handled by one stub
3189 section. (Or the tail section is itself larger than
3190 stub_group_size, in which case we may be toast.)
3191 We should really be keeping track of the total size of
3192 stubs added here, as stubs contribute to the final output
3196 prev = PREV_SEC (tail);
3197 /* Set up this stub group. */
3198 htab->stub_group[tail->id].link_sec = curr;
3200 while (tail != curr && (tail = prev) != NULL);
3202 /* But wait, there's more! Input sections up to stub_group_size
3203 bytes before the stub section can be handled by it too. */
3204 if (!stubs_always_before_branch)
3208 && ((total += tail->output_offset - prev->output_offset)
3212 prev = PREV_SEC (tail);
3213 htab->stub_group[tail->id].link_sec = curr;
3219 while (list-- != htab->input_list);
3221 free (htab->input_list);
3226 #define AARCH64_BITS(x, pos, n) (((x) >> (pos)) & ((1 << (n)) - 1))
3228 #define AARCH64_RT(insn) AARCH64_BITS (insn, 0, 5)
3229 #define AARCH64_RT2(insn) AARCH64_BITS (insn, 10, 5)
3230 #define AARCH64_RA(insn) AARCH64_BITS (insn, 10, 5)
3231 #define AARCH64_RD(insn) AARCH64_BITS (insn, 0, 5)
3232 #define AARCH64_RN(insn) AARCH64_BITS (insn, 5, 5)
3233 #define AARCH64_RM(insn) AARCH64_BITS (insn, 16, 5)
3235 #define AARCH64_MAC(insn) (((insn) & 0xff000000) == 0x9b000000)
3236 #define AARCH64_BIT(insn, n) AARCH64_BITS (insn, n, 1)
3237 #define AARCH64_OP31(insn) AARCH64_BITS (insn, 21, 3)
3238 #define AARCH64_ZR 0x1f
3240 /* All ld/st ops. See C4-182 of the ARM ARM. The encoding space for
3241 LD_PCREL, LDST_RO, LDST_UI and LDST_UIMM cover prefetch ops. */
3243 #define AARCH64_LD(insn) (AARCH64_BIT (insn, 22) == 1)
3244 #define AARCH64_LDST(insn) (((insn) & 0x0a000000) == 0x08000000)
3245 #define AARCH64_LDST_EX(insn) (((insn) & 0x3f000000) == 0x08000000)
3246 #define AARCH64_LDST_PCREL(insn) (((insn) & 0x3b000000) == 0x18000000)
3247 #define AARCH64_LDST_NAP(insn) (((insn) & 0x3b800000) == 0x28000000)
3248 #define AARCH64_LDSTP_PI(insn) (((insn) & 0x3b800000) == 0x28800000)
3249 #define AARCH64_LDSTP_O(insn) (((insn) & 0x3b800000) == 0x29000000)
3250 #define AARCH64_LDSTP_PRE(insn) (((insn) & 0x3b800000) == 0x29800000)
3251 #define AARCH64_LDST_UI(insn) (((insn) & 0x3b200c00) == 0x38000000)
3252 #define AARCH64_LDST_PIIMM(insn) (((insn) & 0x3b200c00) == 0x38000400)
3253 #define AARCH64_LDST_U(insn) (((insn) & 0x3b200c00) == 0x38000800)
3254 #define AARCH64_LDST_PREIMM(insn) (((insn) & 0x3b200c00) == 0x38000c00)
3255 #define AARCH64_LDST_RO(insn) (((insn) & 0x3b200c00) == 0x38200800)
3256 #define AARCH64_LDST_UIMM(insn) (((insn) & 0x3b000000) == 0x39000000)
3257 #define AARCH64_LDST_SIMD_M(insn) (((insn) & 0xbfbf0000) == 0x0c000000)
3258 #define AARCH64_LDST_SIMD_M_PI(insn) (((insn) & 0xbfa00000) == 0x0c800000)
3259 #define AARCH64_LDST_SIMD_S(insn) (((insn) & 0xbf9f0000) == 0x0d000000)
3260 #define AARCH64_LDST_SIMD_S_PI(insn) (((insn) & 0xbf800000) == 0x0d800000)
3262 /* Classify an INSN if it is indeed a load/store.
3264 Return TRUE if INSN is a LD/ST instruction otherwise return FALSE.
3266 For scalar LD/ST instructions PAIR is FALSE, RT is returned and RT2
3269 For LD/ST pair instructions PAIR is TRUE, RT and RT2 are returned. */
3272 aarch64_mem_op_p (uint32_t insn, unsigned int *rt, unsigned int *rt2,
3273 bfd_boolean *pair, bfd_boolean *load)
3281 /* Bail out quickly if INSN doesn't fall into the the load-store
3283 if (!AARCH64_LDST (insn))
3288 if (AARCH64_LDST_EX (insn))
3290 *rt = AARCH64_RT (insn);
3292 if (AARCH64_BIT (insn, 21) == 1)
3295 *rt2 = AARCH64_RT2 (insn);
3297 *load = AARCH64_LD (insn);
3300 else if (AARCH64_LDST_NAP (insn)
3301 || AARCH64_LDSTP_PI (insn)
3302 || AARCH64_LDSTP_O (insn)
3303 || AARCH64_LDSTP_PRE (insn))
3306 *rt = AARCH64_RT (insn);
3307 *rt2 = AARCH64_RT2 (insn);
3308 *load = AARCH64_LD (insn);
3311 else if (AARCH64_LDST_PCREL (insn)
3312 || AARCH64_LDST_UI (insn)
3313 || AARCH64_LDST_PIIMM (insn)
3314 || AARCH64_LDST_U (insn)
3315 || AARCH64_LDST_PREIMM (insn)
3316 || AARCH64_LDST_RO (insn)
3317 || AARCH64_LDST_UIMM (insn))
3319 *rt = AARCH64_RT (insn);
3321 if (AARCH64_LDST_PCREL (insn))
3323 opc = AARCH64_BITS (insn, 22, 2);
3324 v = AARCH64_BIT (insn, 26);
3325 opc_v = opc | (v << 2);
3326 *load = (opc_v == 1 || opc_v == 2 || opc_v == 3
3327 || opc_v == 5 || opc_v == 7);
3330 else if (AARCH64_LDST_SIMD_M (insn)
3331 || AARCH64_LDST_SIMD_M_PI (insn))
3333 *rt = AARCH64_RT (insn);
3334 *load = AARCH64_BIT (insn, 22);
3335 opcode = (insn >> 12) & 0xf;
3362 else if (AARCH64_LDST_SIMD_S (insn)
3363 || AARCH64_LDST_SIMD_S_PI (insn))
3365 *rt = AARCH64_RT (insn);
3366 r = (insn >> 21) & 1;
3367 *load = AARCH64_BIT (insn, 22);
3368 opcode = (insn >> 13) & 0x7;
3380 *rt2 = *rt + (r == 0 ? 2 : 3);
3388 *rt2 = *rt + (r == 0 ? 2 : 3);
3400 /* Return TRUE if INSN is multiply-accumulate. */
3403 aarch64_mlxl_p (uint32_t insn)
3405 uint32_t op31 = AARCH64_OP31 (insn);
3407 if (AARCH64_MAC (insn)
3408 && (op31 == 0 || op31 == 1 || op31 == 5)
3409 /* Exclude MUL instructions which are encoded as a multiple accumulate
3411 && AARCH64_RA (insn) != AARCH64_ZR)
3417 /* Some early revisions of the Cortex-A53 have an erratum (835769) whereby
3418 it is possible for a 64-bit multiply-accumulate instruction to generate an
3419 incorrect result. The details are quite complex and hard to
3420 determine statically, since branches in the code may exist in some
3421 circumstances, but all cases end with a memory (load, store, or
3422 prefetch) instruction followed immediately by the multiply-accumulate
3423 operation. We employ a linker patching technique, by moving the potentially
3424 affected multiply-accumulate instruction into a patch region and replacing
3425 the original instruction with a branch to the patch. This function checks
3426 if INSN_1 is the memory operation followed by a multiply-accumulate
3427 operation (INSN_2). Return TRUE if an erratum sequence is found, FALSE
3428 if INSN_1 and INSN_2 are safe. */
3431 aarch64_erratum_sequence (uint32_t insn_1, uint32_t insn_2)
3441 if (aarch64_mlxl_p (insn_2)
3442 && aarch64_mem_op_p (insn_1, &rt, &rt2, &pair, &load))
3444 /* Any SIMD memory op is independent of the subsequent MLA
3445 by definition of the erratum. */
3446 if (AARCH64_BIT (insn_1, 26))
3449 /* If not SIMD, check for integer memory ops and MLA relationship. */
3450 rn = AARCH64_RN (insn_2);
3451 ra = AARCH64_RA (insn_2);
3452 rm = AARCH64_RM (insn_2);
3454 /* If this is a load and there's a true(RAW) dependency, we are safe
3455 and this is not an erratum sequence. */
3457 (rt == rn || rt == rm || rt == ra
3458 || (pair && (rt2 == rn || rt2 == rm || rt2 == ra))))
3461 /* We conservatively put out stubs for all other cases (including
3469 /* Used to order a list of mapping symbols by address. */
3472 elf_aarch64_compare_mapping (const void *a, const void *b)
3474 const elf_aarch64_section_map *amap = (const elf_aarch64_section_map *) a;
3475 const elf_aarch64_section_map *bmap = (const elf_aarch64_section_map *) b;
3477 if (amap->vma > bmap->vma)
3479 else if (amap->vma < bmap->vma)
3481 else if (amap->type > bmap->type)
3482 /* Ensure results do not depend on the host qsort for objects with
3483 multiple mapping symbols at the same address by sorting on type
3486 else if (amap->type < bmap->type)
3494 _bfd_aarch64_erratum_835769_stub_name (unsigned num_fixes)
3496 char *stub_name = (char *) bfd_malloc
3497 (strlen ("__erratum_835769_veneer_") + 16);
3498 sprintf (stub_name,"__erratum_835769_veneer_%d", num_fixes);
3502 /* Scan for Cortex-A53 erratum 835769 sequence.
3504 Return TRUE else FALSE on abnormal termination. */
3507 _bfd_aarch64_erratum_835769_scan (bfd *input_bfd,
3508 struct bfd_link_info *info,
3509 unsigned int *num_fixes_p)
3512 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3513 unsigned int num_fixes = *num_fixes_p;
3518 for (section = input_bfd->sections;
3520 section = section->next)
3522 bfd_byte *contents = NULL;
3523 struct _aarch64_elf_section_data *sec_data;
3526 if (elf_section_type (section) != SHT_PROGBITS
3527 || (elf_section_flags (section) & SHF_EXECINSTR) == 0
3528 || (section->flags & SEC_EXCLUDE) != 0
3529 || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3530 || (section->output_section == bfd_abs_section_ptr))
3533 if (elf_section_data (section)->this_hdr.contents != NULL)
3534 contents = elf_section_data (section)->this_hdr.contents;
3535 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
3538 sec_data = elf_aarch64_section_data (section);
3540 qsort (sec_data->map, sec_data->mapcount,
3541 sizeof (elf_aarch64_section_map), elf_aarch64_compare_mapping);
3543 for (span = 0; span < sec_data->mapcount; span++)
3545 unsigned int span_start = sec_data->map[span].vma;
3546 unsigned int span_end = ((span == sec_data->mapcount - 1)
3547 ? sec_data->map[0].vma + section->size
3548 : sec_data->map[span + 1].vma);
3550 char span_type = sec_data->map[span].type;
3552 if (span_type == 'd')
3555 for (i = span_start; i + 4 < span_end; i += 4)
3557 uint32_t insn_1 = bfd_getl32 (contents + i);
3558 uint32_t insn_2 = bfd_getl32 (contents + i + 4);
3560 if (aarch64_erratum_sequence (insn_1, insn_2))
3562 struct elf_aarch64_stub_hash_entry *stub_entry;
3563 char *stub_name = _bfd_aarch64_erratum_835769_stub_name (num_fixes);
3567 stub_entry = _bfd_aarch64_add_stub_entry_in_group (stub_name,
3573 stub_entry->stub_type = aarch64_stub_erratum_835769_veneer;
3574 stub_entry->target_section = section;
3575 stub_entry->target_value = i + 4;
3576 stub_entry->veneered_insn = insn_2;
3577 stub_entry->output_name = stub_name;
3582 if (elf_section_data (section)->this_hdr.contents == NULL)
3586 *num_fixes_p = num_fixes;
3592 /* Test if instruction INSN is ADRP. */
3595 _bfd_aarch64_adrp_p (uint32_t insn)
3597 return ((insn & 0x9f000000) == 0x90000000);
3601 /* Helper predicate to look for cortex-a53 erratum 843419 sequence 1. */
3604 _bfd_aarch64_erratum_843419_sequence_p (uint32_t insn_1, uint32_t insn_2,
3612 return (aarch64_mem_op_p (insn_2, &rt, &rt2, &pair, &load)
3615 && AARCH64_LDST_UIMM (insn_3)
3616 && AARCH64_RN (insn_3) == AARCH64_RD (insn_1));
3620 /* Test for the presence of Cortex-A53 erratum 843419 instruction sequence.
3622 Return TRUE if section CONTENTS at offset I contains one of the
3623 erratum 843419 sequences, otherwise return FALSE. If a sequence is
3624 seen set P_VENEER_I to the offset of the final LOAD/STORE
3625 instruction in the sequence.
3629 _bfd_aarch64_erratum_843419_p (bfd_byte *contents, bfd_vma vma,
3630 bfd_vma i, bfd_vma span_end,
3631 bfd_vma *p_veneer_i)
3633 uint32_t insn_1 = bfd_getl32 (contents + i);
3635 if (!_bfd_aarch64_adrp_p (insn_1))
3638 if (span_end < i + 12)
3641 uint32_t insn_2 = bfd_getl32 (contents + i + 4);
3642 uint32_t insn_3 = bfd_getl32 (contents + i + 8);
3644 if ((vma & 0xfff) != 0xff8 && (vma & 0xfff) != 0xffc)
3647 if (_bfd_aarch64_erratum_843419_sequence_p (insn_1, insn_2, insn_3))
3649 *p_veneer_i = i + 8;
3653 if (span_end < i + 16)
3656 uint32_t insn_4 = bfd_getl32 (contents + i + 12);
3658 if (_bfd_aarch64_erratum_843419_sequence_p (insn_1, insn_2, insn_4))
3660 *p_veneer_i = i + 12;
3668 /* Resize all stub sections. */
3671 _bfd_aarch64_resize_stubs (struct elf_aarch64_link_hash_table *htab)
3675 /* OK, we've added some stubs. Find out the new size of the
3677 for (section = htab->stub_bfd->sections;
3678 section != NULL; section = section->next)
3680 /* Ignore non-stub sections. */
3681 if (!strstr (section->name, STUB_SUFFIX))
3686 bfd_hash_traverse (&htab->stub_hash_table, aarch64_size_one_stub, htab);
3688 for (section = htab->stub_bfd->sections;
3689 section != NULL; section = section->next)
3691 if (!strstr (section->name, STUB_SUFFIX))
3697 /* Ensure all stub sections have a size which is a multiple of
3698 4096. This is important in order to ensure that the insertion
3699 of stub sections does not in itself move existing code around
3700 in such a way that new errata sequences are created. */
3701 if (htab->fix_erratum_843419)
3703 section->size = BFD_ALIGN (section->size, 0x1000);
3708 /* Construct an erratum 843419 workaround stub name.
3712 _bfd_aarch64_erratum_843419_stub_name (asection *input_section,
3715 const bfd_size_type len = 8 + 4 + 1 + 8 + 1 + 16 + 1;
3716 char *stub_name = bfd_malloc (len);
3718 if (stub_name != NULL)
3719 snprintf (stub_name, len, "e843419@%04x_%08x_%" BFD_VMA_FMT "x",
3720 input_section->owner->id,
3726 /* Build a stub_entry structure describing an 843419 fixup.
3728 The stub_entry constructed is populated with the bit pattern INSN
3729 of the instruction located at OFFSET within input SECTION.
3731 Returns TRUE on success. */
3734 _bfd_aarch64_erratum_843419_fixup (uint32_t insn,
3735 bfd_vma adrp_offset,
3736 bfd_vma ldst_offset,
3738 struct bfd_link_info *info)
3740 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3742 struct elf_aarch64_stub_hash_entry *stub_entry;
3744 stub_name = _bfd_aarch64_erratum_843419_stub_name (section, ldst_offset);
3745 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
3753 /* We always place an 843419 workaround veneer in the stub section
3754 attached to the input section in which an erratum sequence has
3755 been found. This ensures that later in the link process (in
3756 elfNN_aarch64_write_section) when we copy the veneered
3757 instruction from the input section into the stub section the
3758 copied instruction will have had any relocations applied to it.
3759 If we placed workaround veneers in any other stub section then we
3760 could not assume that all relocations have been processed on the
3761 corresponding input section at the point we output the stub
3765 stub_entry = _bfd_aarch64_add_stub_entry_after (stub_name, section, htab);
3766 if (stub_entry == NULL)
3772 stub_entry->adrp_offset = adrp_offset;
3773 stub_entry->target_value = ldst_offset;
3774 stub_entry->target_section = section;
3775 stub_entry->stub_type = aarch64_stub_erratum_843419_veneer;
3776 stub_entry->veneered_insn = insn;
3777 stub_entry->output_name = stub_name;
3783 /* Scan an input section looking for the signature of erratum 843419.
3785 Scans input SECTION in INPUT_BFD looking for erratum 843419
3786 signatures, for each signature found a stub_entry is created
3787 describing the location of the erratum for subsequent fixup.
3789 Return TRUE on successful scan, FALSE on failure to scan.
3793 _bfd_aarch64_erratum_843419_scan (bfd *input_bfd, asection *section,
3794 struct bfd_link_info *info)
3796 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3801 if (elf_section_type (section) != SHT_PROGBITS
3802 || (elf_section_flags (section) & SHF_EXECINSTR) == 0
3803 || (section->flags & SEC_EXCLUDE) != 0
3804 || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3805 || (section->output_section == bfd_abs_section_ptr))
3810 bfd_byte *contents = NULL;
3811 struct _aarch64_elf_section_data *sec_data;
3814 if (elf_section_data (section)->this_hdr.contents != NULL)
3815 contents = elf_section_data (section)->this_hdr.contents;
3816 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
3819 sec_data = elf_aarch64_section_data (section);
3821 qsort (sec_data->map, sec_data->mapcount,
3822 sizeof (elf_aarch64_section_map), elf_aarch64_compare_mapping);
3824 for (span = 0; span < sec_data->mapcount; span++)
3826 unsigned int span_start = sec_data->map[span].vma;
3827 unsigned int span_end = ((span == sec_data->mapcount - 1)
3828 ? sec_data->map[0].vma + section->size
3829 : sec_data->map[span + 1].vma);
3831 char span_type = sec_data->map[span].type;
3833 if (span_type == 'd')
3836 for (i = span_start; i + 8 < span_end; i += 4)
3838 bfd_vma vma = (section->output_section->vma
3839 + section->output_offset
3843 if (_bfd_aarch64_erratum_843419_p
3844 (contents, vma, i, span_end, &veneer_i))
3846 uint32_t insn = bfd_getl32 (contents + veneer_i);
3848 if (!_bfd_aarch64_erratum_843419_fixup (insn, i, veneer_i,
3855 if (elf_section_data (section)->this_hdr.contents == NULL)
3864 /* Determine and set the size of the stub section for a final link.
3866 The basic idea here is to examine all the relocations looking for
3867 PC-relative calls to a target that is unreachable with a "bl"
3871 elfNN_aarch64_size_stubs (bfd *output_bfd,
3873 struct bfd_link_info *info,
3874 bfd_signed_vma group_size,
3875 asection * (*add_stub_section) (const char *,
3877 void (*layout_sections_again) (void))
3879 bfd_size_type stub_group_size;
3880 bfd_boolean stubs_always_before_branch;
3881 bfd_boolean stub_changed = FALSE;
3882 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3883 unsigned int num_erratum_835769_fixes = 0;
3885 /* Propagate mach to stub bfd, because it may not have been
3886 finalized when we created stub_bfd. */
3887 bfd_set_arch_mach (stub_bfd, bfd_get_arch (output_bfd),
3888 bfd_get_mach (output_bfd));
3890 /* Stash our params away. */
3891 htab->stub_bfd = stub_bfd;
3892 htab->add_stub_section = add_stub_section;
3893 htab->layout_sections_again = layout_sections_again;
3894 stubs_always_before_branch = group_size < 0;
3896 stub_group_size = -group_size;
3898 stub_group_size = group_size;
3900 if (stub_group_size == 1)
3902 /* Default values. */
3903 /* AArch64 branch range is +-128MB. The value used is 1MB less. */
3904 stub_group_size = 127 * 1024 * 1024;
3907 group_sections (htab, stub_group_size, stubs_always_before_branch);
3909 (*htab->layout_sections_again) ();
3911 if (htab->fix_erratum_835769)
3915 for (input_bfd = info->input_bfds;
3916 input_bfd != NULL; input_bfd = input_bfd->link.next)
3917 if (!_bfd_aarch64_erratum_835769_scan (input_bfd, info,
3918 &num_erratum_835769_fixes))
3921 _bfd_aarch64_resize_stubs (htab);
3922 (*htab->layout_sections_again) ();
3925 if (htab->fix_erratum_843419)
3929 for (input_bfd = info->input_bfds;
3931 input_bfd = input_bfd->link.next)
3935 for (section = input_bfd->sections;
3937 section = section->next)
3938 if (!_bfd_aarch64_erratum_843419_scan (input_bfd, section, info))
3942 _bfd_aarch64_resize_stubs (htab);
3943 (*htab->layout_sections_again) ();
3950 for (input_bfd = info->input_bfds;
3951 input_bfd != NULL; input_bfd = input_bfd->link.next)
3953 Elf_Internal_Shdr *symtab_hdr;
3955 Elf_Internal_Sym *local_syms = NULL;
3957 /* We'll need the symbol table in a second. */
3958 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3959 if (symtab_hdr->sh_info == 0)
3962 /* Walk over each section attached to the input bfd. */
3963 for (section = input_bfd->sections;
3964 section != NULL; section = section->next)
3966 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
3968 /* If there aren't any relocs, then there's nothing more
3970 if ((section->flags & SEC_RELOC) == 0
3971 || section->reloc_count == 0
3972 || (section->flags & SEC_CODE) == 0)
3975 /* If this section is a link-once section that will be
3976 discarded, then don't create any stubs. */
3977 if (section->output_section == NULL
3978 || section->output_section->owner != output_bfd)
3981 /* Get the relocs. */
3983 = _bfd_elf_link_read_relocs (input_bfd, section, NULL,
3984 NULL, info->keep_memory);
3985 if (internal_relocs == NULL)
3986 goto error_ret_free_local;
3988 /* Now examine each relocation. */
3989 irela = internal_relocs;
3990 irelaend = irela + section->reloc_count;
3991 for (; irela < irelaend; irela++)
3993 unsigned int r_type, r_indx;
3994 enum elf_aarch64_stub_type stub_type;
3995 struct elf_aarch64_stub_hash_entry *stub_entry;
3998 bfd_vma destination;
3999 struct elf_aarch64_link_hash_entry *hash;
4000 const char *sym_name;
4002 const asection *id_sec;
4003 unsigned char st_type;
4006 r_type = ELFNN_R_TYPE (irela->r_info);
4007 r_indx = ELFNN_R_SYM (irela->r_info);
4009 if (r_type >= (unsigned int) R_AARCH64_end)
4011 bfd_set_error (bfd_error_bad_value);
4012 error_ret_free_internal:
4013 if (elf_section_data (section)->relocs == NULL)
4014 free (internal_relocs);
4015 goto error_ret_free_local;
4018 /* Only look for stubs on unconditional branch and
4019 branch and link instructions. */
4020 if (r_type != (unsigned int) AARCH64_R (CALL26)
4021 && r_type != (unsigned int) AARCH64_R (JUMP26))
4024 /* Now determine the call target, its name, value,
4031 if (r_indx < symtab_hdr->sh_info)
4033 /* It's a local symbol. */
4034 Elf_Internal_Sym *sym;
4035 Elf_Internal_Shdr *hdr;
4037 if (local_syms == NULL)
4040 = (Elf_Internal_Sym *) symtab_hdr->contents;
4041 if (local_syms == NULL)
4043 = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
4044 symtab_hdr->sh_info, 0,
4046 if (local_syms == NULL)
4047 goto error_ret_free_internal;
4050 sym = local_syms + r_indx;
4051 hdr = elf_elfsections (input_bfd)[sym->st_shndx];
4052 sym_sec = hdr->bfd_section;
4054 /* This is an undefined symbol. It can never
4058 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
4059 sym_value = sym->st_value;
4060 destination = (sym_value + irela->r_addend
4061 + sym_sec->output_offset
4062 + sym_sec->output_section->vma);
4063 st_type = ELF_ST_TYPE (sym->st_info);
4065 = bfd_elf_string_from_elf_section (input_bfd,
4066 symtab_hdr->sh_link,
4073 e_indx = r_indx - symtab_hdr->sh_info;
4074 hash = ((struct elf_aarch64_link_hash_entry *)
4075 elf_sym_hashes (input_bfd)[e_indx]);
4077 while (hash->root.root.type == bfd_link_hash_indirect
4078 || hash->root.root.type == bfd_link_hash_warning)
4079 hash = ((struct elf_aarch64_link_hash_entry *)
4080 hash->root.root.u.i.link);
4082 if (hash->root.root.type == bfd_link_hash_defined
4083 || hash->root.root.type == bfd_link_hash_defweak)
4085 struct elf_aarch64_link_hash_table *globals =
4086 elf_aarch64_hash_table (info);
4087 sym_sec = hash->root.root.u.def.section;
4088 sym_value = hash->root.root.u.def.value;
4089 /* For a destination in a shared library,
4090 use the PLT stub as target address to
4091 decide whether a branch stub is
4093 if (globals->root.splt != NULL && hash != NULL
4094 && hash->root.plt.offset != (bfd_vma) - 1)
4096 sym_sec = globals->root.splt;
4097 sym_value = hash->root.plt.offset;
4098 if (sym_sec->output_section != NULL)
4099 destination = (sym_value
4100 + sym_sec->output_offset
4102 sym_sec->output_section->vma);
4104 else if (sym_sec->output_section != NULL)
4105 destination = (sym_value + irela->r_addend
4106 + sym_sec->output_offset
4107 + sym_sec->output_section->vma);
4109 else if (hash->root.root.type == bfd_link_hash_undefined
4110 || (hash->root.root.type
4111 == bfd_link_hash_undefweak))
4113 /* For a shared library, use the PLT stub as
4114 target address to decide whether a long
4115 branch stub is needed.
4116 For absolute code, they cannot be handled. */
4117 struct elf_aarch64_link_hash_table *globals =
4118 elf_aarch64_hash_table (info);
4120 if (globals->root.splt != NULL && hash != NULL
4121 && hash->root.plt.offset != (bfd_vma) - 1)
4123 sym_sec = globals->root.splt;
4124 sym_value = hash->root.plt.offset;
4125 if (sym_sec->output_section != NULL)
4126 destination = (sym_value
4127 + sym_sec->output_offset
4129 sym_sec->output_section->vma);
4136 bfd_set_error (bfd_error_bad_value);
4137 goto error_ret_free_internal;
4139 st_type = ELF_ST_TYPE (hash->root.type);
4140 sym_name = hash->root.root.root.string;
4143 /* Determine what (if any) linker stub is needed. */
4144 stub_type = aarch64_type_of_stub (section, irela, sym_sec,
4145 st_type, destination);
4146 if (stub_type == aarch64_stub_none)
4149 /* Support for grouping stub sections. */
4150 id_sec = htab->stub_group[section->id].link_sec;
4152 /* Get the name of this stub. */
4153 stub_name = elfNN_aarch64_stub_name (id_sec, sym_sec, hash,
4156 goto error_ret_free_internal;
4159 aarch64_stub_hash_lookup (&htab->stub_hash_table,
4160 stub_name, FALSE, FALSE);
4161 if (stub_entry != NULL)
4163 /* The proper stub has already been created. */
4168 stub_entry = _bfd_aarch64_add_stub_entry_in_group
4169 (stub_name, section, htab);
4170 if (stub_entry == NULL)
4173 goto error_ret_free_internal;
4176 stub_entry->target_value = sym_value + irela->r_addend;
4177 stub_entry->target_section = sym_sec;
4178 stub_entry->stub_type = stub_type;
4179 stub_entry->h = hash;
4180 stub_entry->st_type = st_type;
4182 if (sym_name == NULL)
4183 sym_name = "unnamed";
4184 len = sizeof (STUB_ENTRY_NAME) + strlen (sym_name);
4185 stub_entry->output_name = bfd_alloc (htab->stub_bfd, len);
4186 if (stub_entry->output_name == NULL)
4189 goto error_ret_free_internal;
4192 snprintf (stub_entry->output_name, len, STUB_ENTRY_NAME,
4195 stub_changed = TRUE;
4198 /* We're done with the internal relocs, free them. */
4199 if (elf_section_data (section)->relocs == NULL)
4200 free (internal_relocs);
4207 _bfd_aarch64_resize_stubs (htab);
4209 /* Ask the linker to do its stuff. */
4210 (*htab->layout_sections_again) ();
4211 stub_changed = FALSE;
4216 error_ret_free_local:
4220 /* Build all the stubs associated with the current output file. The
4221 stubs are kept in a hash table attached to the main linker hash
4222 table. We also set up the .plt entries for statically linked PIC
4223 functions here. This function is called via aarch64_elf_finish in the
4227 elfNN_aarch64_build_stubs (struct bfd_link_info *info)
4230 struct bfd_hash_table *table;
4231 struct elf_aarch64_link_hash_table *htab;
4233 htab = elf_aarch64_hash_table (info);
4235 for (stub_sec = htab->stub_bfd->sections;
4236 stub_sec != NULL; stub_sec = stub_sec->next)
4240 /* Ignore non-stub sections. */
4241 if (!strstr (stub_sec->name, STUB_SUFFIX))
4244 /* Allocate memory to hold the linker stubs. */
4245 size = stub_sec->size;
4246 stub_sec->contents = bfd_zalloc (htab->stub_bfd, size);
4247 if (stub_sec->contents == NULL && size != 0)
4251 bfd_putl32 (0x14000000 | (size >> 2), stub_sec->contents);
4252 stub_sec->size += 4;
4255 /* Build the stubs as directed by the stub hash table. */
4256 table = &htab->stub_hash_table;
4257 bfd_hash_traverse (table, aarch64_build_one_stub, info);
4263 /* Add an entry to the code/data map for section SEC. */
4266 elfNN_aarch64_section_map_add (asection *sec, char type, bfd_vma vma)
4268 struct _aarch64_elf_section_data *sec_data =
4269 elf_aarch64_section_data (sec);
4270 unsigned int newidx;
4272 if (sec_data->map == NULL)
4274 sec_data->map = bfd_malloc (sizeof (elf_aarch64_section_map));
4275 sec_data->mapcount = 0;
4276 sec_data->mapsize = 1;
4279 newidx = sec_data->mapcount++;
4281 if (sec_data->mapcount > sec_data->mapsize)
4283 sec_data->mapsize *= 2;
4284 sec_data->map = bfd_realloc_or_free
4285 (sec_data->map, sec_data->mapsize * sizeof (elf_aarch64_section_map));
4290 sec_data->map[newidx].vma = vma;
4291 sec_data->map[newidx].type = type;
4296 /* Initialise maps of insn/data for input BFDs. */
4298 bfd_elfNN_aarch64_init_maps (bfd *abfd)
4300 Elf_Internal_Sym *isymbuf;
4301 Elf_Internal_Shdr *hdr;
4302 unsigned int i, localsyms;
4304 /* Make sure that we are dealing with an AArch64 elf binary. */
4305 if (!is_aarch64_elf (abfd))
4308 if ((abfd->flags & DYNAMIC) != 0)
4311 hdr = &elf_symtab_hdr (abfd);
4312 localsyms = hdr->sh_info;
4314 /* Obtain a buffer full of symbols for this BFD. The hdr->sh_info field
4315 should contain the number of local symbols, which should come before any
4316 global symbols. Mapping symbols are always local. */
4317 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, localsyms, 0, NULL, NULL, NULL);
4319 /* No internal symbols read? Skip this BFD. */
4320 if (isymbuf == NULL)
4323 for (i = 0; i < localsyms; i++)
4325 Elf_Internal_Sym *isym = &isymbuf[i];
4326 asection *sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4329 if (sec != NULL && ELF_ST_BIND (isym->st_info) == STB_LOCAL)
4331 name = bfd_elf_string_from_elf_section (abfd,
4335 if (bfd_is_aarch64_special_symbol_name
4336 (name, BFD_AARCH64_SPECIAL_SYM_TYPE_MAP))
4337 elfNN_aarch64_section_map_add (sec, name[1], isym->st_value);
4342 /* Set option values needed during linking. */
4344 bfd_elfNN_aarch64_set_options (struct bfd *output_bfd,
4345 struct bfd_link_info *link_info,
4347 int no_wchar_warn, int pic_veneer,
4348 int fix_erratum_835769,
4349 int fix_erratum_843419,
4350 int no_apply_dynamic_relocs)
4352 struct elf_aarch64_link_hash_table *globals;
4354 globals = elf_aarch64_hash_table (link_info);
4355 globals->pic_veneer = pic_veneer;
4356 globals->fix_erratum_835769 = fix_erratum_835769;
4357 globals->fix_erratum_843419 = fix_erratum_843419;
4358 globals->fix_erratum_843419_adr = TRUE;
4359 globals->no_apply_dynamic_relocs = no_apply_dynamic_relocs;
4361 BFD_ASSERT (is_aarch64_elf (output_bfd));
4362 elf_aarch64_tdata (output_bfd)->no_enum_size_warning = no_enum_warn;
4363 elf_aarch64_tdata (output_bfd)->no_wchar_size_warning = no_wchar_warn;
4367 aarch64_calculate_got_entry_vma (struct elf_link_hash_entry *h,
4368 struct elf_aarch64_link_hash_table
4369 *globals, struct bfd_link_info *info,
4370 bfd_vma value, bfd *output_bfd,
4371 bfd_boolean *unresolved_reloc_p)
4373 bfd_vma off = (bfd_vma) - 1;
4374 asection *basegot = globals->root.sgot;
4375 bfd_boolean dyn = globals->root.dynamic_sections_created;
4379 BFD_ASSERT (basegot != NULL);
4380 off = h->got.offset;
4381 BFD_ASSERT (off != (bfd_vma) - 1);
4382 if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h)
4383 || (bfd_link_pic (info)
4384 && SYMBOL_REFERENCES_LOCAL (info, h))
4385 || (ELF_ST_VISIBILITY (h->other)
4386 && h->root.type == bfd_link_hash_undefweak))
4388 /* This is actually a static link, or it is a -Bsymbolic link
4389 and the symbol is defined locally. We must initialize this
4390 entry in the global offset table. Since the offset must
4391 always be a multiple of 8 (4 in the case of ILP32), we use
4392 the least significant bit to record whether we have
4393 initialized it already.
4394 When doing a dynamic link, we create a .rel(a).got relocation
4395 entry to initialize the value. This is done in the
4396 finish_dynamic_symbol routine. */
4401 bfd_put_NN (output_bfd, value, basegot->contents + off);
4406 *unresolved_reloc_p = FALSE;
4408 off = off + basegot->output_section->vma + basegot->output_offset;
4414 /* Change R_TYPE to a more efficient access model where possible,
4415 return the new reloc type. */
4417 static bfd_reloc_code_real_type
4418 aarch64_tls_transition_without_check (bfd_reloc_code_real_type r_type,
4419 struct elf_link_hash_entry *h)
4421 bfd_boolean is_local = h == NULL;
4425 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
4426 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
4428 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
4429 : BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21);
4431 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
4433 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4436 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
4438 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
4439 : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19);
4441 case BFD_RELOC_AARCH64_TLSDESC_LDR:
4443 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4444 : BFD_RELOC_AARCH64_NONE);
4446 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
4448 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
4449 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC);
4451 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
4453 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
4454 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1);
4456 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
4457 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
4459 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4460 : BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC);
4462 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
4463 return is_local ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1 : r_type;
4465 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
4466 return is_local ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC : r_type;
4468 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
4471 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
4473 ? BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12
4474 : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19);
4476 case BFD_RELOC_AARCH64_TLSDESC_ADD:
4477 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
4478 case BFD_RELOC_AARCH64_TLSDESC_CALL:
4479 /* Instructions with these relocations will become NOPs. */
4480 return BFD_RELOC_AARCH64_NONE;
4482 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
4483 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
4484 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
4485 return is_local ? BFD_RELOC_AARCH64_NONE : r_type;
4488 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
4490 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
4491 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC;
4493 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
4495 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
4496 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1;
4507 aarch64_reloc_got_type (bfd_reloc_code_real_type r_type)
4511 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
4512 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
4513 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
4514 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
4515 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
4516 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
4517 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
4518 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
4519 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
4522 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
4523 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
4524 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
4525 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
4526 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
4527 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
4528 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
4529 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
4532 case BFD_RELOC_AARCH64_TLSDESC_ADD:
4533 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
4534 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
4535 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
4536 case BFD_RELOC_AARCH64_TLSDESC_CALL:
4537 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
4538 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
4539 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
4540 case BFD_RELOC_AARCH64_TLSDESC_LDR:
4541 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
4542 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
4543 return GOT_TLSDESC_GD;
4545 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
4546 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
4547 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
4548 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
4549 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
4550 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
4560 aarch64_can_relax_tls (bfd *input_bfd,
4561 struct bfd_link_info *info,
4562 bfd_reloc_code_real_type r_type,
4563 struct elf_link_hash_entry *h,
4564 unsigned long r_symndx)
4566 unsigned int symbol_got_type;
4567 unsigned int reloc_got_type;
4569 if (! IS_AARCH64_TLS_RELAX_RELOC (r_type))
4572 symbol_got_type = elfNN_aarch64_symbol_got_type (h, input_bfd, r_symndx);
4573 reloc_got_type = aarch64_reloc_got_type (r_type);
4575 if (symbol_got_type == GOT_TLS_IE && GOT_TLS_GD_ANY_P (reloc_got_type))
4578 if (bfd_link_pic (info))
4581 if (h && h->root.type == bfd_link_hash_undefweak)
4587 /* Given the relocation code R_TYPE, return the relaxed bfd reloc
4590 static bfd_reloc_code_real_type
4591 aarch64_tls_transition (bfd *input_bfd,
4592 struct bfd_link_info *info,
4593 unsigned int r_type,
4594 struct elf_link_hash_entry *h,
4595 unsigned long r_symndx)
4597 bfd_reloc_code_real_type bfd_r_type
4598 = elfNN_aarch64_bfd_reloc_from_type (r_type);
4600 if (! aarch64_can_relax_tls (input_bfd, info, bfd_r_type, h, r_symndx))
4603 return aarch64_tls_transition_without_check (bfd_r_type, h);
4606 /* Return the base VMA address which should be subtracted from real addresses
4607 when resolving R_AARCH64_TLS_DTPREL relocation. */
4610 dtpoff_base (struct bfd_link_info *info)
4612 /* If tls_sec is NULL, we should have signalled an error already. */
4613 BFD_ASSERT (elf_hash_table (info)->tls_sec != NULL);
4614 return elf_hash_table (info)->tls_sec->vma;
4617 /* Return the base VMA address which should be subtracted from real addresses
4618 when resolving R_AARCH64_TLS_GOTTPREL64 relocations. */
4621 tpoff_base (struct bfd_link_info *info)
4623 struct elf_link_hash_table *htab = elf_hash_table (info);
4625 /* If tls_sec is NULL, we should have signalled an error already. */
4626 BFD_ASSERT (htab->tls_sec != NULL);
4628 bfd_vma base = align_power ((bfd_vma) TCB_SIZE,
4629 htab->tls_sec->alignment_power);
4630 return htab->tls_sec->vma - base;
4634 symbol_got_offset_ref (bfd *input_bfd, struct elf_link_hash_entry *h,
4635 unsigned long r_symndx)
4637 /* Calculate the address of the GOT entry for symbol
4638 referred to in h. */
4640 return &h->got.offset;
4644 struct elf_aarch64_local_symbol *l;
4646 l = elf_aarch64_locals (input_bfd);
4647 return &l[r_symndx].got_offset;
4652 symbol_got_offset_mark (bfd *input_bfd, struct elf_link_hash_entry *h,
4653 unsigned long r_symndx)
4656 p = symbol_got_offset_ref (input_bfd, h, r_symndx);
4661 symbol_got_offset_mark_p (bfd *input_bfd, struct elf_link_hash_entry *h,
4662 unsigned long r_symndx)
4665 value = * symbol_got_offset_ref (input_bfd, h, r_symndx);
4670 symbol_got_offset (bfd *input_bfd, struct elf_link_hash_entry *h,
4671 unsigned long r_symndx)
4674 value = * symbol_got_offset_ref (input_bfd, h, r_symndx);
4680 symbol_tlsdesc_got_offset_ref (bfd *input_bfd, struct elf_link_hash_entry *h,
4681 unsigned long r_symndx)
4683 /* Calculate the address of the GOT entry for symbol
4684 referred to in h. */
4687 struct elf_aarch64_link_hash_entry *eh;
4688 eh = (struct elf_aarch64_link_hash_entry *) h;
4689 return &eh->tlsdesc_got_jump_table_offset;
4694 struct elf_aarch64_local_symbol *l;
4696 l = elf_aarch64_locals (input_bfd);
4697 return &l[r_symndx].tlsdesc_got_jump_table_offset;
4702 symbol_tlsdesc_got_offset_mark (bfd *input_bfd, struct elf_link_hash_entry *h,
4703 unsigned long r_symndx)
4706 p = symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4711 symbol_tlsdesc_got_offset_mark_p (bfd *input_bfd,
4712 struct elf_link_hash_entry *h,
4713 unsigned long r_symndx)
4716 value = * symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4721 symbol_tlsdesc_got_offset (bfd *input_bfd, struct elf_link_hash_entry *h,
4722 unsigned long r_symndx)
4725 value = * symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4730 /* Data for make_branch_to_erratum_835769_stub(). */
4732 struct erratum_835769_branch_to_stub_data
4734 struct bfd_link_info *info;
4735 asection *output_section;
4739 /* Helper to insert branches to erratum 835769 stubs in the right
4740 places for a particular section. */
4743 make_branch_to_erratum_835769_stub (struct bfd_hash_entry *gen_entry,
4746 struct elf_aarch64_stub_hash_entry *stub_entry;
4747 struct erratum_835769_branch_to_stub_data *data;
4749 unsigned long branch_insn = 0;
4750 bfd_vma veneered_insn_loc, veneer_entry_loc;
4751 bfd_signed_vma branch_offset;
4752 unsigned int target;
4755 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
4756 data = (struct erratum_835769_branch_to_stub_data *) in_arg;
4758 if (stub_entry->target_section != data->output_section
4759 || stub_entry->stub_type != aarch64_stub_erratum_835769_veneer)
4762 contents = data->contents;
4763 veneered_insn_loc = stub_entry->target_section->output_section->vma
4764 + stub_entry->target_section->output_offset
4765 + stub_entry->target_value;
4766 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
4767 + stub_entry->stub_sec->output_offset
4768 + stub_entry->stub_offset;
4769 branch_offset = veneer_entry_loc - veneered_insn_loc;
4771 abfd = stub_entry->target_section->owner;
4772 if (!aarch64_valid_branch_p (veneer_entry_loc, veneered_insn_loc))
4774 (_("%B: error: Erratum 835769 stub out "
4775 "of range (input file too large)"), abfd);
4777 target = stub_entry->target_value;
4778 branch_insn = 0x14000000;
4779 branch_offset >>= 2;
4780 branch_offset &= 0x3ffffff;
4781 branch_insn |= branch_offset;
4782 bfd_putl32 (branch_insn, &contents[target]);
4789 _bfd_aarch64_erratum_843419_branch_to_stub (struct bfd_hash_entry *gen_entry,
4792 struct elf_aarch64_stub_hash_entry *stub_entry
4793 = (struct elf_aarch64_stub_hash_entry *) gen_entry;
4794 struct erratum_835769_branch_to_stub_data *data
4795 = (struct erratum_835769_branch_to_stub_data *) in_arg;
4796 struct bfd_link_info *info;
4797 struct elf_aarch64_link_hash_table *htab;
4805 contents = data->contents;
4806 section = data->output_section;
4808 htab = elf_aarch64_hash_table (info);
4810 if (stub_entry->target_section != section
4811 || stub_entry->stub_type != aarch64_stub_erratum_843419_veneer)
4814 insn = bfd_getl32 (contents + stub_entry->target_value);
4816 stub_entry->stub_sec->contents + stub_entry->stub_offset);
4818 place = (section->output_section->vma + section->output_offset
4819 + stub_entry->adrp_offset);
4820 insn = bfd_getl32 (contents + stub_entry->adrp_offset);
4822 if ((insn & AARCH64_ADRP_OP_MASK) != AARCH64_ADRP_OP)
4825 bfd_signed_vma imm =
4826 (_bfd_aarch64_sign_extend
4827 ((bfd_vma) _bfd_aarch64_decode_adrp_imm (insn) << 12, 33)
4830 if (htab->fix_erratum_843419_adr
4831 && (imm >= AARCH64_MIN_ADRP_IMM && imm <= AARCH64_MAX_ADRP_IMM))
4833 insn = (_bfd_aarch64_reencode_adr_imm (AARCH64_ADR_OP, imm)
4834 | AARCH64_RT (insn));
4835 bfd_putl32 (insn, contents + stub_entry->adrp_offset);
4839 bfd_vma veneered_insn_loc;
4840 bfd_vma veneer_entry_loc;
4841 bfd_signed_vma branch_offset;
4842 uint32_t branch_insn;
4844 veneered_insn_loc = stub_entry->target_section->output_section->vma
4845 + stub_entry->target_section->output_offset
4846 + stub_entry->target_value;
4847 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
4848 + stub_entry->stub_sec->output_offset
4849 + stub_entry->stub_offset;
4850 branch_offset = veneer_entry_loc - veneered_insn_loc;
4852 abfd = stub_entry->target_section->owner;
4853 if (!aarch64_valid_branch_p (veneer_entry_loc, veneered_insn_loc))
4855 (_("%B: error: Erratum 843419 stub out "
4856 "of range (input file too large)"), abfd);
4858 branch_insn = 0x14000000;
4859 branch_offset >>= 2;
4860 branch_offset &= 0x3ffffff;
4861 branch_insn |= branch_offset;
4862 bfd_putl32 (branch_insn, contents + stub_entry->target_value);
4869 elfNN_aarch64_write_section (bfd *output_bfd ATTRIBUTE_UNUSED,
4870 struct bfd_link_info *link_info,
4875 struct elf_aarch64_link_hash_table *globals =
4876 elf_aarch64_hash_table (link_info);
4878 if (globals == NULL)
4881 /* Fix code to point to erratum 835769 stubs. */
4882 if (globals->fix_erratum_835769)
4884 struct erratum_835769_branch_to_stub_data data;
4886 data.info = link_info;
4887 data.output_section = sec;
4888 data.contents = contents;
4889 bfd_hash_traverse (&globals->stub_hash_table,
4890 make_branch_to_erratum_835769_stub, &data);
4893 if (globals->fix_erratum_843419)
4895 struct erratum_835769_branch_to_stub_data data;
4897 data.info = link_info;
4898 data.output_section = sec;
4899 data.contents = contents;
4900 bfd_hash_traverse (&globals->stub_hash_table,
4901 _bfd_aarch64_erratum_843419_branch_to_stub, &data);
4907 /* Perform a relocation as part of a final link. The input relocation type
4908 should be TLS relaxed. */
4910 static bfd_reloc_status_type
4911 elfNN_aarch64_final_link_relocate (reloc_howto_type *howto,
4914 asection *input_section,
4916 Elf_Internal_Rela *rel,
4918 struct bfd_link_info *info,
4920 struct elf_link_hash_entry *h,
4921 bfd_boolean *unresolved_reloc_p,
4922 bfd_boolean save_addend,
4923 bfd_vma *saved_addend,
4924 Elf_Internal_Sym *sym)
4926 Elf_Internal_Shdr *symtab_hdr;
4927 unsigned int r_type = howto->type;
4928 bfd_reloc_code_real_type bfd_r_type
4929 = elfNN_aarch64_bfd_reloc_from_howto (howto);
4930 unsigned long r_symndx;
4931 bfd_byte *hit_data = contents + rel->r_offset;
4933 bfd_signed_vma signed_addend;
4934 struct elf_aarch64_link_hash_table *globals;
4935 bfd_boolean weak_undef_p;
4938 globals = elf_aarch64_hash_table (info);
4940 symtab_hdr = &elf_symtab_hdr (input_bfd);
4942 BFD_ASSERT (is_aarch64_elf (input_bfd));
4944 r_symndx = ELFNN_R_SYM (rel->r_info);
4946 place = input_section->output_section->vma
4947 + input_section->output_offset + rel->r_offset;
4949 /* Get addend, accumulating the addend for consecutive relocs
4950 which refer to the same offset. */
4951 signed_addend = saved_addend ? *saved_addend : 0;
4952 signed_addend += rel->r_addend;
4954 weak_undef_p = (h ? h->root.type == bfd_link_hash_undefweak
4955 : bfd_is_und_section (sym_sec));
4957 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
4958 it here if it is defined in a non-shared object. */
4960 && h->type == STT_GNU_IFUNC
4967 if ((input_section->flags & SEC_ALLOC) == 0
4968 || h->plt.offset == (bfd_vma) -1)
4971 /* STT_GNU_IFUNC symbol must go through PLT. */
4972 plt = globals->root.splt ? globals->root.splt : globals->root.iplt;
4973 value = (plt->output_section->vma + plt->output_offset + h->plt.offset);
4978 if (h->root.root.string)
4979 name = h->root.root.string;
4981 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4984 /* xgettext:c-format */
4985 (_("%B: relocation %s against STT_GNU_IFUNC "
4986 "symbol `%s' isn't handled by %s"), input_bfd,
4987 howto->name, name, __FUNCTION__);
4988 bfd_set_error (bfd_error_bad_value);
4991 case BFD_RELOC_AARCH64_NN:
4992 if (rel->r_addend != 0)
4994 if (h->root.root.string)
4995 name = h->root.root.string;
4997 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
5000 /* xgettext:c-format */
5001 (_("%B: relocation %s against STT_GNU_IFUNC "
5002 "symbol `%s' has non-zero addend: %d"),
5003 input_bfd, howto->name, name, rel->r_addend);
5004 bfd_set_error (bfd_error_bad_value);
5008 /* Generate dynamic relocation only when there is a
5009 non-GOT reference in a shared object. */
5010 if (bfd_link_pic (info) && h->non_got_ref)
5012 Elf_Internal_Rela outrel;
5015 /* Need a dynamic relocation to get the real function
5017 outrel.r_offset = _bfd_elf_section_offset (output_bfd,
5021 if (outrel.r_offset == (bfd_vma) -1
5022 || outrel.r_offset == (bfd_vma) -2)
5025 outrel.r_offset += (input_section->output_section->vma
5026 + input_section->output_offset);
5028 if (h->dynindx == -1
5030 || bfd_link_executable (info))
5032 /* This symbol is resolved locally. */
5033 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (IRELATIVE));
5034 outrel.r_addend = (h->root.u.def.value
5035 + h->root.u.def.section->output_section->vma
5036 + h->root.u.def.section->output_offset);
5040 outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
5041 outrel.r_addend = 0;
5044 sreloc = globals->root.irelifunc;
5045 elf_append_rela (output_bfd, sreloc, &outrel);
5047 /* If this reloc is against an external symbol, we
5048 do not want to fiddle with the addend. Otherwise,
5049 we need to include the symbol value so that it
5050 becomes an addend for the dynamic reloc. For an
5051 internal symbol, we have updated addend. */
5052 return bfd_reloc_ok;
5055 case BFD_RELOC_AARCH64_CALL26:
5056 case BFD_RELOC_AARCH64_JUMP26:
5057 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5060 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type,
5062 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
5063 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
5064 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
5065 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
5066 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
5067 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
5068 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
5069 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
5070 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
5071 base_got = globals->root.sgot;
5072 off = h->got.offset;
5074 if (base_got == NULL)
5077 if (off == (bfd_vma) -1)
5081 /* We can't use h->got.offset here to save state, or
5082 even just remember the offset, as finish_dynamic_symbol
5083 would use that as offset into .got. */
5085 if (globals->root.splt != NULL)
5087 plt_index = ((h->plt.offset - globals->plt_header_size) /
5088 globals->plt_entry_size);
5089 off = (plt_index + 3) * GOT_ENTRY_SIZE;
5090 base_got = globals->root.sgotplt;
5094 plt_index = h->plt.offset / globals->plt_entry_size;
5095 off = plt_index * GOT_ENTRY_SIZE;
5096 base_got = globals->root.igotplt;
5099 if (h->dynindx == -1
5103 /* This references the local definition. We must
5104 initialize this entry in the global offset table.
5105 Since the offset must always be a multiple of 8,
5106 we use the least significant bit to record
5107 whether we have initialized it already.
5109 When doing a dynamic link, we create a .rela.got
5110 relocation entry to initialize the value. This
5111 is done in the finish_dynamic_symbol routine. */
5116 bfd_put_NN (output_bfd, value,
5117 base_got->contents + off);
5118 /* Note that this is harmless as -1 | 1 still is -1. */
5122 value = (base_got->output_section->vma
5123 + base_got->output_offset + off);
5126 value = aarch64_calculate_got_entry_vma (h, globals, info,
5128 unresolved_reloc_p);
5132 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
5133 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
5134 addend = (globals->root.sgot->output_section->vma
5135 + globals->root.sgot->output_offset);
5137 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
5138 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
5139 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
5140 value = (value - globals->root.sgot->output_section->vma
5141 - globals->root.sgot->output_offset);
5146 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5147 addend, weak_undef_p);
5148 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type, howto, value);
5149 case BFD_RELOC_AARCH64_ADD_LO12:
5150 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
5157 case BFD_RELOC_AARCH64_NONE:
5158 case BFD_RELOC_AARCH64_TLSDESC_ADD:
5159 case BFD_RELOC_AARCH64_TLSDESC_CALL:
5160 case BFD_RELOC_AARCH64_TLSDESC_LDR:
5161 *unresolved_reloc_p = FALSE;
5162 return bfd_reloc_ok;
5164 case BFD_RELOC_AARCH64_NN:
5166 /* When generating a shared object or relocatable executable, these
5167 relocations are copied into the output file to be resolved at
5169 if (((bfd_link_pic (info) == TRUE)
5170 || globals->root.is_relocatable_executable)
5171 && (input_section->flags & SEC_ALLOC)
5173 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
5174 || h->root.type != bfd_link_hash_undefweak))
5176 Elf_Internal_Rela outrel;
5178 bfd_boolean skip, relocate;
5181 *unresolved_reloc_p = FALSE;
5186 outrel.r_addend = signed_addend;
5188 _bfd_elf_section_offset (output_bfd, info, input_section,
5190 if (outrel.r_offset == (bfd_vma) - 1)
5192 else if (outrel.r_offset == (bfd_vma) - 2)
5198 outrel.r_offset += (input_section->output_section->vma
5199 + input_section->output_offset);
5202 memset (&outrel, 0, sizeof outrel);
5205 && (!bfd_link_pic (info)
5206 || !(bfd_link_pie (info)
5207 || SYMBOLIC_BIND (info, h))
5208 || !h->def_regular))
5209 outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
5214 /* On SVR4-ish systems, the dynamic loader cannot
5215 relocate the text and data segments independently,
5216 so the symbol does not matter. */
5218 relocate = globals->no_apply_dynamic_relocs ? FALSE : TRUE;
5219 outrel.r_info = ELFNN_R_INFO (symbol, AARCH64_R (RELATIVE));
5220 outrel.r_addend += value;
5223 sreloc = elf_section_data (input_section)->sreloc;
5224 if (sreloc == NULL || sreloc->contents == NULL)
5225 return bfd_reloc_notsupported;
5227 loc = sreloc->contents + sreloc->reloc_count++ * RELOC_SIZE (globals);
5228 bfd_elfNN_swap_reloca_out (output_bfd, &outrel, loc);
5230 if (sreloc->reloc_count * RELOC_SIZE (globals) > sreloc->size)
5232 /* Sanity to check that we have previously allocated
5233 sufficient space in the relocation section for the
5234 number of relocations we actually want to emit. */
5238 /* If this reloc is against an external symbol, we do not want to
5239 fiddle with the addend. Otherwise, we need to include the symbol
5240 value so that it becomes an addend for the dynamic reloc. */
5242 return bfd_reloc_ok;
5244 return _bfd_final_link_relocate (howto, input_bfd, input_section,
5245 contents, rel->r_offset, value,
5249 value += signed_addend;
5252 case BFD_RELOC_AARCH64_CALL26:
5253 case BFD_RELOC_AARCH64_JUMP26:
5255 asection *splt = globals->root.splt;
5256 bfd_boolean via_plt_p =
5257 splt != NULL && h != NULL && h->plt.offset != (bfd_vma) - 1;
5259 /* A call to an undefined weak symbol is converted to a jump to
5260 the next instruction unless a PLT entry will be created.
5261 The jump to the next instruction is optimized as a NOP.
5262 Do the same for local undefined symbols. */
5263 if (weak_undef_p && ! via_plt_p)
5265 bfd_putl32 (INSN_NOP, hit_data);
5266 return bfd_reloc_ok;
5269 /* If the call goes through a PLT entry, make sure to
5270 check distance to the right destination address. */
5272 value = (splt->output_section->vma
5273 + splt->output_offset + h->plt.offset);
5275 /* Check if a stub has to be inserted because the destination
5277 struct elf_aarch64_stub_hash_entry *stub_entry = NULL;
5279 /* If the branch destination is directed to plt stub, "value" will be
5280 the final destination, otherwise we should plus signed_addend, it may
5281 contain non-zero value, for example call to local function symbol
5282 which are turned into "sec_sym + sec_off", and sec_off is kept in
5284 if (! aarch64_valid_branch_p (via_plt_p ? value : value + signed_addend,
5286 /* The target is out of reach, so redirect the branch to
5287 the local stub for this function. */
5288 stub_entry = elfNN_aarch64_get_stub_entry (input_section, sym_sec, h,
5290 if (stub_entry != NULL)
5292 value = (stub_entry->stub_offset
5293 + stub_entry->stub_sec->output_offset
5294 + stub_entry->stub_sec->output_section->vma);
5296 /* We have redirected the destination to stub entry address,
5297 so ignore any addend record in the original rela entry. */
5301 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5302 signed_addend, weak_undef_p);
5303 *unresolved_reloc_p = FALSE;
5306 case BFD_RELOC_AARCH64_16_PCREL:
5307 case BFD_RELOC_AARCH64_32_PCREL:
5308 case BFD_RELOC_AARCH64_64_PCREL:
5309 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
5310 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
5311 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
5312 case BFD_RELOC_AARCH64_LD_LO19_PCREL:
5313 if (bfd_link_pic (info)
5314 && (input_section->flags & SEC_ALLOC) != 0
5315 && (input_section->flags & SEC_READONLY) != 0
5319 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5322 /* xgettext:c-format */
5323 (_("%B: relocation %s against external symbol `%s' can not be used"
5324 " when making a shared object; recompile with -fPIC"),
5325 input_bfd, elfNN_aarch64_howto_table[howto_index].name,
5326 h->root.root.string);
5327 bfd_set_error (bfd_error_bad_value);
5332 case BFD_RELOC_AARCH64_16:
5334 case BFD_RELOC_AARCH64_32:
5336 case BFD_RELOC_AARCH64_ADD_LO12:
5337 case BFD_RELOC_AARCH64_BRANCH19:
5338 case BFD_RELOC_AARCH64_LDST128_LO12:
5339 case BFD_RELOC_AARCH64_LDST16_LO12:
5340 case BFD_RELOC_AARCH64_LDST32_LO12:
5341 case BFD_RELOC_AARCH64_LDST64_LO12:
5342 case BFD_RELOC_AARCH64_LDST8_LO12:
5343 case BFD_RELOC_AARCH64_MOVW_G0:
5344 case BFD_RELOC_AARCH64_MOVW_G0_NC:
5345 case BFD_RELOC_AARCH64_MOVW_G0_S:
5346 case BFD_RELOC_AARCH64_MOVW_G1:
5347 case BFD_RELOC_AARCH64_MOVW_G1_NC:
5348 case BFD_RELOC_AARCH64_MOVW_G1_S:
5349 case BFD_RELOC_AARCH64_MOVW_G2:
5350 case BFD_RELOC_AARCH64_MOVW_G2_NC:
5351 case BFD_RELOC_AARCH64_MOVW_G2_S:
5352 case BFD_RELOC_AARCH64_MOVW_G3:
5353 case BFD_RELOC_AARCH64_TSTBR14:
5354 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5355 signed_addend, weak_undef_p);
5358 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
5359 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
5360 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
5361 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
5362 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
5363 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
5364 if (globals->root.sgot == NULL)
5365 BFD_ASSERT (h != NULL);
5370 value = aarch64_calculate_got_entry_vma (h, globals, info, value,
5372 unresolved_reloc_p);
5373 if (bfd_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
5374 || bfd_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
5375 addend = (globals->root.sgot->output_section->vma
5376 + globals->root.sgot->output_offset);
5377 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5378 addend, weak_undef_p);
5383 struct elf_aarch64_local_symbol *locals
5384 = elf_aarch64_locals (input_bfd);
5388 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5390 /* xgettext:c-format */
5391 (_("%B: Local symbol descriptor table be NULL when applying "
5392 "relocation %s against local symbol"),
5393 input_bfd, elfNN_aarch64_howto_table[howto_index].name);
5397 off = symbol_got_offset (input_bfd, h, r_symndx);
5398 base_got = globals->root.sgot;
5399 bfd_vma got_entry_addr = (base_got->output_section->vma
5400 + base_got->output_offset + off);
5402 if (!symbol_got_offset_mark_p (input_bfd, h, r_symndx))
5404 bfd_put_64 (output_bfd, value, base_got->contents + off);
5406 if (bfd_link_pic (info))
5409 Elf_Internal_Rela outrel;
5411 /* For local symbol, we have done absolute relocation in static
5412 linking stageh. While for share library, we need to update
5413 the content of GOT entry according to the share objects
5414 loading base address. So we need to generate a
5415 R_AARCH64_RELATIVE reloc for dynamic linker. */
5416 s = globals->root.srelgot;
5420 outrel.r_offset = got_entry_addr;
5421 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
5422 outrel.r_addend = value;
5423 elf_append_rela (output_bfd, s, &outrel);
5426 symbol_got_offset_mark (input_bfd, h, r_symndx);
5429 /* Update the relocation value to GOT entry addr as we have transformed
5430 the direct data access into indirect data access through GOT. */
5431 value = got_entry_addr;
5433 if (bfd_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
5434 || bfd_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
5435 addend = base_got->output_section->vma + base_got->output_offset;
5437 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5438 addend, weak_undef_p);
5443 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
5444 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
5445 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
5447 value = aarch64_calculate_got_entry_vma (h, globals, info, value,
5449 unresolved_reloc_p);
5452 struct elf_aarch64_local_symbol *locals
5453 = elf_aarch64_locals (input_bfd);
5457 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5459 /* xgettext:c-format */
5460 (_("%B: Local symbol descriptor table be NULL when applying "
5461 "relocation %s against local symbol"),
5462 input_bfd, elfNN_aarch64_howto_table[howto_index].name);
5466 off = symbol_got_offset (input_bfd, h, r_symndx);
5467 base_got = globals->root.sgot;
5468 if (base_got == NULL)
5471 bfd_vma got_entry_addr = (base_got->output_section->vma
5472 + base_got->output_offset + off);
5474 if (!symbol_got_offset_mark_p (input_bfd, h, r_symndx))
5476 bfd_put_64 (output_bfd, value, base_got->contents + off);
5478 if (bfd_link_pic (info))
5481 Elf_Internal_Rela outrel;
5483 /* For local symbol, we have done absolute relocation in static
5484 linking stage. While for share library, we need to update
5485 the content of GOT entry according to the share objects
5486 loading base address. So we need to generate a
5487 R_AARCH64_RELATIVE reloc for dynamic linker. */
5488 s = globals->root.srelgot;
5492 outrel.r_offset = got_entry_addr;
5493 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
5494 outrel.r_addend = value;
5495 elf_append_rela (output_bfd, s, &outrel);
5498 symbol_got_offset_mark (input_bfd, h, r_symndx);
5502 /* Update the relocation value to GOT entry addr as we have transformed
5503 the direct data access into indirect data access through GOT. */
5504 value = symbol_got_offset (input_bfd, h, r_symndx);
5505 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5507 *unresolved_reloc_p = FALSE;
5510 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
5511 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
5512 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
5513 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
5514 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
5515 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
5516 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
5517 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
5518 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
5519 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
5520 if (globals->root.sgot == NULL)
5521 return bfd_reloc_notsupported;
5523 value = (symbol_got_offset (input_bfd, h, r_symndx)
5524 + globals->root.sgot->output_section->vma
5525 + globals->root.sgot->output_offset);
5527 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5529 *unresolved_reloc_p = FALSE;
5532 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
5533 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
5534 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
5535 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
5536 if (globals->root.sgot == NULL)
5537 return bfd_reloc_notsupported;
5539 value = symbol_got_offset (input_bfd, h, r_symndx);
5540 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5542 *unresolved_reloc_p = FALSE;
5545 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12:
5546 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12:
5547 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC:
5548 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12:
5549 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC:
5550 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12:
5551 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC:
5552 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12:
5553 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC:
5554 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12:
5555 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC:
5556 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0:
5557 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC:
5558 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1:
5559 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC:
5560 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2:
5561 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5562 signed_addend - dtpoff_base (info),
5566 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12:
5567 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12:
5568 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
5569 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
5570 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC:
5571 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
5572 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
5573 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
5574 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5575 signed_addend - tpoff_base (info),
5577 *unresolved_reloc_p = FALSE;
5580 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
5581 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
5582 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
5583 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
5584 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
5585 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
5586 if (globals->root.sgot == NULL)
5587 return bfd_reloc_notsupported;
5588 value = (symbol_tlsdesc_got_offset (input_bfd, h, r_symndx)
5589 + globals->root.sgotplt->output_section->vma
5590 + globals->root.sgotplt->output_offset
5591 + globals->sgotplt_jump_table_size);
5593 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5595 *unresolved_reloc_p = FALSE;
5598 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
5599 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
5600 if (globals->root.sgot == NULL)
5601 return bfd_reloc_notsupported;
5603 value = (symbol_tlsdesc_got_offset (input_bfd, h, r_symndx)
5604 + globals->root.sgotplt->output_section->vma
5605 + globals->root.sgotplt->output_offset
5606 + globals->sgotplt_jump_table_size);
5608 value -= (globals->root.sgot->output_section->vma
5609 + globals->root.sgot->output_offset);
5611 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5613 *unresolved_reloc_p = FALSE;
5617 return bfd_reloc_notsupported;
5621 *saved_addend = value;
5623 /* Only apply the final relocation in a sequence. */
5625 return bfd_reloc_continue;
5627 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type,
5631 /* LP64 and ILP32 operates on x- and w-registers respectively.
5632 Next definitions take into account the difference between
5633 corresponding machine codes. R means x-register if the target
5634 arch is LP64, and w-register if the target is ILP32. */
5637 # define add_R0_R0 (0x91000000)
5638 # define add_R0_R0_R1 (0x8b000020)
5639 # define add_R0_R1 (0x91400020)
5640 # define ldr_R0 (0x58000000)
5641 # define ldr_R0_mask(i) (i & 0xffffffe0)
5642 # define ldr_R0_x0 (0xf9400000)
5643 # define ldr_hw_R0 (0xf2a00000)
5644 # define movk_R0 (0xf2800000)
5645 # define movz_R0 (0xd2a00000)
5646 # define movz_hw_R0 (0xd2c00000)
5647 #else /*ARCH_SIZE == 32 */
5648 # define add_R0_R0 (0x11000000)
5649 # define add_R0_R0_R1 (0x0b000020)
5650 # define add_R0_R1 (0x11400020)
5651 # define ldr_R0 (0x18000000)
5652 # define ldr_R0_mask(i) (i & 0xbfffffe0)
5653 # define ldr_R0_x0 (0xb9400000)
5654 # define ldr_hw_R0 (0x72a00000)
5655 # define movk_R0 (0x72800000)
5656 # define movz_R0 (0x52a00000)
5657 # define movz_hw_R0 (0x52c00000)
5660 /* Handle TLS relaxations. Relaxing is possible for symbols that use
5661 R_AARCH64_TLSDESC_ADR_{PAGE, LD64_LO12_NC, ADD_LO12_NC} during a static
5664 Return bfd_reloc_ok if we're done, bfd_reloc_continue if the caller
5665 is to then call final_link_relocate. Return other values in the
5668 static bfd_reloc_status_type
5669 elfNN_aarch64_tls_relax (struct elf_aarch64_link_hash_table *globals,
5670 bfd *input_bfd, bfd_byte *contents,
5671 Elf_Internal_Rela *rel, struct elf_link_hash_entry *h)
5673 bfd_boolean is_local = h == NULL;
5674 unsigned int r_type = ELFNN_R_TYPE (rel->r_info);
5677 BFD_ASSERT (globals && input_bfd && contents && rel);
5679 switch (elfNN_aarch64_bfd_reloc_from_type (r_type))
5681 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
5682 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
5685 /* GD->LE relaxation:
5686 adrp x0, :tlsgd:var => movz R0, :tprel_g1:var
5688 adrp x0, :tlsdesc:var => movz R0, :tprel_g1:var
5690 Where R is x for LP64, and w for ILP32. */
5691 bfd_putl32 (movz_R0, contents + rel->r_offset);
5692 return bfd_reloc_continue;
5696 /* GD->IE relaxation:
5697 adrp x0, :tlsgd:var => adrp x0, :gottprel:var
5699 adrp x0, :tlsdesc:var => adrp x0, :gottprel:var
5701 return bfd_reloc_continue;
5704 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
5708 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
5711 /* Tiny TLSDESC->LE relaxation:
5712 ldr x1, :tlsdesc:var => movz R0, #:tprel_g1:var
5713 adr x0, :tlsdesc:var => movk R0, #:tprel_g0_nc:var
5717 Where R is x for LP64, and w for ILP32. */
5718 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSDESC_ADR_PREL21));
5719 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (TLSDESC_CALL));
5721 rel[1].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5722 AARCH64_R (TLSLE_MOVW_TPREL_G0_NC));
5723 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5725 bfd_putl32 (movz_R0, contents + rel->r_offset);
5726 bfd_putl32 (movk_R0, contents + rel->r_offset + 4);
5727 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 8);
5728 return bfd_reloc_continue;
5732 /* Tiny TLSDESC->IE relaxation:
5733 ldr x1, :tlsdesc:var => ldr x0, :gottprel:var
5734 adr x0, :tlsdesc:var => nop
5738 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSDESC_ADR_PREL21));
5739 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (TLSDESC_CALL));
5741 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5742 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5744 bfd_putl32 (ldr_R0, contents + rel->r_offset);
5745 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 4);
5746 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 8);
5747 return bfd_reloc_continue;
5750 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
5753 /* Tiny GD->LE relaxation:
5754 adr x0, :tlsgd:var => mrs x1, tpidr_el0
5755 bl __tls_get_addr => add R0, R1, #:tprel_hi12:x, lsl #12
5756 nop => add R0, R0, #:tprel_lo12_nc:x
5758 Where R is x for LP64, and x for Ilp32. */
5760 /* First kill the tls_get_addr reloc on the bl instruction. */
5761 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5763 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 0);
5764 bfd_putl32 (add_R0_R1, contents + rel->r_offset + 4);
5765 bfd_putl32 (add_R0_R0, contents + rel->r_offset + 8);
5767 rel[1].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5768 AARCH64_R (TLSLE_ADD_TPREL_LO12_NC));
5769 rel[1].r_offset = rel->r_offset + 8;
5771 /* Move the current relocation to the second instruction in
5774 rel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5775 AARCH64_R (TLSLE_ADD_TPREL_HI12));
5776 return bfd_reloc_continue;
5780 /* Tiny GD->IE relaxation:
5781 adr x0, :tlsgd:var => ldr R0, :gottprel:var
5782 bl __tls_get_addr => mrs x1, tpidr_el0
5783 nop => add R0, R0, R1
5785 Where R is x for LP64, and w for Ilp32. */
5787 /* First kill the tls_get_addr reloc on the bl instruction. */
5788 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5789 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5791 bfd_putl32 (ldr_R0, contents + rel->r_offset);
5792 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 4);
5793 bfd_putl32 (add_R0_R0_R1, contents + rel->r_offset + 8);
5794 return bfd_reloc_continue;
5798 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
5799 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSGD_MOVW_G0_NC));
5800 BFD_ASSERT (rel->r_offset + 12 == rel[2].r_offset);
5801 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (CALL26));
5805 /* Large GD->LE relaxation:
5806 movz x0, #:tlsgd_g1:var => movz x0, #:tprel_g2:var, lsl #32
5807 movk x0, #:tlsgd_g0_nc:var => movk x0, #:tprel_g1_nc:var, lsl #16
5808 add x0, gp, x0 => movk x0, #:tprel_g0_nc:var
5809 bl __tls_get_addr => mrs x1, tpidr_el0
5810 nop => add x0, x0, x1
5812 rel[2].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5813 AARCH64_R (TLSLE_MOVW_TPREL_G0_NC));
5814 rel[2].r_offset = rel->r_offset + 8;
5816 bfd_putl32 (movz_hw_R0, contents + rel->r_offset + 0);
5817 bfd_putl32 (ldr_hw_R0, contents + rel->r_offset + 4);
5818 bfd_putl32 (movk_R0, contents + rel->r_offset + 8);
5819 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 12);
5820 bfd_putl32 (add_R0_R0_R1, contents + rel->r_offset + 16);
5824 /* Large GD->IE relaxation:
5825 movz x0, #:tlsgd_g1:var => movz x0, #:gottprel_g1:var, lsl #16
5826 movk x0, #:tlsgd_g0_nc:var => movk x0, #:gottprel_g0_nc:var
5827 add x0, gp, x0 => ldr x0, [gp, x0]
5828 bl __tls_get_addr => mrs x1, tpidr_el0
5829 nop => add x0, x0, x1
5831 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5832 bfd_putl32 (0xd2a80000, contents + rel->r_offset + 0);
5833 bfd_putl32 (ldr_R0, contents + rel->r_offset + 8);
5834 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 12);
5835 bfd_putl32 (add_R0_R0_R1, contents + rel->r_offset + 16);
5837 return bfd_reloc_continue;
5839 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
5840 return bfd_reloc_continue;
5843 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
5844 return bfd_reloc_continue;
5846 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
5849 /* GD->LE relaxation:
5850 ldr xd, [x0, #:tlsdesc_lo12:var] => movk x0, :tprel_g0_nc:var
5852 Where R is x for lp64 mode, and w for ILP32 mode. */
5853 bfd_putl32 (movk_R0, contents + rel->r_offset);
5854 return bfd_reloc_continue;
5858 /* GD->IE relaxation:
5859 ldr xd, [x0, #:tlsdesc_lo12:var] => ldr R0, [x0, #:gottprel_lo12:var]
5861 Where R is x for lp64 mode, and w for ILP32 mode. */
5862 insn = bfd_getl32 (contents + rel->r_offset);
5863 bfd_putl32 (ldr_R0_mask (insn), contents + rel->r_offset);
5864 return bfd_reloc_continue;
5867 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
5870 /* GD->LE relaxation
5871 add x0, #:tlsgd_lo12:var => movk R0, :tprel_g0_nc:var
5872 bl __tls_get_addr => mrs x1, tpidr_el0
5873 nop => add R0, R1, R0
5875 Where R is x for lp64 mode, and w for ILP32 mode. */
5877 /* First kill the tls_get_addr reloc on the bl instruction. */
5878 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5879 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5881 bfd_putl32 (movk_R0, contents + rel->r_offset);
5882 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 4);
5883 bfd_putl32 (add_R0_R0_R1, contents + rel->r_offset + 8);
5884 return bfd_reloc_continue;
5888 /* GD->IE relaxation
5889 ADD x0, #:tlsgd_lo12:var => ldr R0, [x0, #:gottprel_lo12:var]
5890 BL __tls_get_addr => mrs x1, tpidr_el0
5892 NOP => add R0, R1, R0
5894 Where R is x for lp64 mode, and w for ilp32 mode. */
5896 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
5898 /* Remove the relocation on the BL instruction. */
5899 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5901 /* We choose to fixup the BL and NOP instructions using the
5902 offset from the second relocation to allow flexibility in
5903 scheduling instructions between the ADD and BL. */
5904 bfd_putl32 (ldr_R0_x0, contents + rel->r_offset);
5905 bfd_putl32 (0xd53bd041, contents + rel[1].r_offset);
5906 bfd_putl32 (add_R0_R0_R1, contents + rel[1].r_offset + 4);
5907 return bfd_reloc_continue;
5910 case BFD_RELOC_AARCH64_TLSDESC_ADD:
5911 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
5912 case BFD_RELOC_AARCH64_TLSDESC_CALL:
5913 /* GD->IE/LE relaxation:
5914 add x0, x0, #:tlsdesc_lo12:var => nop
5917 bfd_putl32 (INSN_NOP, contents + rel->r_offset);
5918 return bfd_reloc_ok;
5920 case BFD_RELOC_AARCH64_TLSDESC_LDR:
5923 /* GD->LE relaxation:
5924 ldr xd, [gp, xn] => movk R0, #:tprel_g0_nc:var
5926 Where R is x for lp64 mode, and w for ILP32 mode. */
5927 bfd_putl32 (movk_R0, contents + rel->r_offset);
5928 return bfd_reloc_continue;
5932 /* GD->IE relaxation:
5933 ldr xd, [gp, xn] => ldr R0, [gp, xn]
5935 Where R is x for lp64 mode, and w for ILP32 mode. */
5936 insn = bfd_getl32 (contents + rel->r_offset);
5937 bfd_putl32 (ldr_R0_mask (insn), contents + rel->r_offset);
5938 return bfd_reloc_ok;
5941 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
5942 /* GD->LE relaxation:
5943 movk xd, #:tlsdesc_off_g0_nc:var => movk R0, #:tprel_g1_nc:var, lsl #16
5945 movk xd, #:tlsdesc_off_g0_nc:var => movk Rd, #:gottprel_g0_nc:var
5947 Where R is x for lp64 mode, and w for ILP32 mode. */
5949 bfd_putl32 (ldr_hw_R0, contents + rel->r_offset);
5950 return bfd_reloc_continue;
5952 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
5955 /* GD->LE relaxation:
5956 movz xd, #:tlsdesc_off_g1:var => movz R0, #:tprel_g2:var, lsl #32
5958 Where R is x for lp64 mode, and w for ILP32 mode. */
5959 bfd_putl32 (movz_hw_R0, contents + rel->r_offset);
5960 return bfd_reloc_continue;
5964 /* GD->IE relaxation:
5965 movz xd, #:tlsdesc_off_g1:var => movz Rd, #:gottprel_g1:var, lsl #16
5967 Where R is x for lp64 mode, and w for ILP32 mode. */
5968 insn = bfd_getl32 (contents + rel->r_offset);
5969 bfd_putl32 (movz_R0 | (insn & 0x1f), contents + rel->r_offset);
5970 return bfd_reloc_continue;
5973 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
5974 /* IE->LE relaxation:
5975 adrp xd, :gottprel:var => movz Rd, :tprel_g1:var
5977 Where R is x for lp64 mode, and w for ILP32 mode. */
5980 insn = bfd_getl32 (contents + rel->r_offset);
5981 bfd_putl32 (movz_R0 | (insn & 0x1f), contents + rel->r_offset);
5983 return bfd_reloc_continue;
5985 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
5986 /* IE->LE relaxation:
5987 ldr xd, [xm, #:gottprel_lo12:var] => movk Rd, :tprel_g0_nc:var
5989 Where R is x for lp64 mode, and w for ILP32 mode. */
5992 insn = bfd_getl32 (contents + rel->r_offset);
5993 bfd_putl32 (movk_R0 | (insn & 0x1f), contents + rel->r_offset);
5995 return bfd_reloc_continue;
5997 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
5998 /* LD->LE relaxation (tiny):
5999 adr x0, :tlsldm:x => mrs x0, tpidr_el0
6000 bl __tls_get_addr => add R0, R0, TCB_SIZE
6002 Where R is x for lp64 mode, and w for ilp32 mode. */
6005 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
6006 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
6007 /* No need of CALL26 relocation for tls_get_addr. */
6008 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
6009 bfd_putl32 (0xd53bd040, contents + rel->r_offset + 0);
6010 bfd_putl32 (add_R0_R0 | (TCB_SIZE << 10),
6011 contents + rel->r_offset + 4);
6012 return bfd_reloc_ok;
6014 return bfd_reloc_continue;
6016 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
6017 /* LD->LE relaxation (small):
6018 adrp x0, :tlsldm:x => mrs x0, tpidr_el0
6022 bfd_putl32 (0xd53bd040, contents + rel->r_offset);
6023 return bfd_reloc_ok;
6025 return bfd_reloc_continue;
6027 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
6028 /* LD->LE relaxation (small):
6029 add x0, #:tlsldm_lo12:x => add R0, R0, TCB_SIZE
6030 bl __tls_get_addr => nop
6032 Where R is x for lp64 mode, and w for ilp32 mode. */
6035 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
6036 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
6037 /* No need of CALL26 relocation for tls_get_addr. */
6038 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
6039 bfd_putl32 (add_R0_R0 | (TCB_SIZE << 10),
6040 contents + rel->r_offset + 0);
6041 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 4);
6042 return bfd_reloc_ok;
6044 return bfd_reloc_continue;
6047 return bfd_reloc_continue;
6050 return bfd_reloc_ok;
6053 /* Relocate an AArch64 ELF section. */
6056 elfNN_aarch64_relocate_section (bfd *output_bfd,
6057 struct bfd_link_info *info,
6059 asection *input_section,
6061 Elf_Internal_Rela *relocs,
6062 Elf_Internal_Sym *local_syms,
6063 asection **local_sections)
6065 Elf_Internal_Shdr *symtab_hdr;
6066 struct elf_link_hash_entry **sym_hashes;
6067 Elf_Internal_Rela *rel;
6068 Elf_Internal_Rela *relend;
6070 struct elf_aarch64_link_hash_table *globals;
6071 bfd_boolean save_addend = FALSE;
6074 globals = elf_aarch64_hash_table (info);
6076 symtab_hdr = &elf_symtab_hdr (input_bfd);
6077 sym_hashes = elf_sym_hashes (input_bfd);
6080 relend = relocs + input_section->reloc_count;
6081 for (; rel < relend; rel++)
6083 unsigned int r_type;
6084 bfd_reloc_code_real_type bfd_r_type;
6085 bfd_reloc_code_real_type relaxed_bfd_r_type;
6086 reloc_howto_type *howto;
6087 unsigned long r_symndx;
6088 Elf_Internal_Sym *sym;
6090 struct elf_link_hash_entry *h;
6092 bfd_reloc_status_type r;
6095 bfd_boolean unresolved_reloc = FALSE;
6096 char *error_message = NULL;
6098 r_symndx = ELFNN_R_SYM (rel->r_info);
6099 r_type = ELFNN_R_TYPE (rel->r_info);
6101 bfd_reloc.howto = elfNN_aarch64_howto_from_type (r_type);
6102 howto = bfd_reloc.howto;
6106 /* xgettext:c-format */
6108 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
6109 input_bfd, input_section, r_type);
6112 bfd_r_type = elfNN_aarch64_bfd_reloc_from_howto (howto);
6118 if (r_symndx < symtab_hdr->sh_info)
6120 sym = local_syms + r_symndx;
6121 sym_type = ELFNN_ST_TYPE (sym->st_info);
6122 sec = local_sections[r_symndx];
6124 /* An object file might have a reference to a local
6125 undefined symbol. This is a daft object file, but we
6126 should at least do something about it. */
6127 if (r_type != R_AARCH64_NONE && r_type != R_AARCH64_NULL
6128 && bfd_is_und_section (sec)
6129 && ELF_ST_BIND (sym->st_info) != STB_WEAK)
6130 (*info->callbacks->undefined_symbol)
6131 (info, bfd_elf_string_from_elf_section
6132 (input_bfd, symtab_hdr->sh_link, sym->st_name),
6133 input_bfd, input_section, rel->r_offset, TRUE);
6135 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
6137 /* Relocate against local STT_GNU_IFUNC symbol. */
6138 if (!bfd_link_relocatable (info)
6139 && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
6141 h = elfNN_aarch64_get_local_sym_hash (globals, input_bfd,
6146 /* Set STT_GNU_IFUNC symbol value. */
6147 h->root.u.def.value = sym->st_value;
6148 h->root.u.def.section = sec;
6153 bfd_boolean warned, ignored;
6155 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
6156 r_symndx, symtab_hdr, sym_hashes,
6158 unresolved_reloc, warned, ignored);
6163 if (sec != NULL && discarded_section (sec))
6164 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
6165 rel, 1, relend, howto, 0, contents);
6167 if (bfd_link_relocatable (info))
6171 name = h->root.root.string;
6174 name = (bfd_elf_string_from_elf_section
6175 (input_bfd, symtab_hdr->sh_link, sym->st_name));
6176 if (name == NULL || *name == '\0')
6177 name = bfd_section_name (input_bfd, sec);
6181 && r_type != R_AARCH64_NONE
6182 && r_type != R_AARCH64_NULL
6184 || h->root.type == bfd_link_hash_defined
6185 || h->root.type == bfd_link_hash_defweak)
6186 && IS_AARCH64_TLS_RELOC (bfd_r_type) != (sym_type == STT_TLS))
6189 ((sym_type == STT_TLS
6190 /* xgettext:c-format */
6191 ? _("%B(%A+0x%lx): %s used with TLS symbol %s")
6192 /* xgettext:c-format */
6193 : _("%B(%A+0x%lx): %s used with non-TLS symbol %s")),
6195 input_section, (long) rel->r_offset, howto->name, name);
6198 /* We relax only if we can see that there can be a valid transition
6199 from a reloc type to another.
6200 We call elfNN_aarch64_final_link_relocate unless we're completely
6201 done, i.e., the relaxation produced the final output we want. */
6203 relaxed_bfd_r_type = aarch64_tls_transition (input_bfd, info, r_type,
6205 if (relaxed_bfd_r_type != bfd_r_type)
6207 bfd_r_type = relaxed_bfd_r_type;
6208 howto = elfNN_aarch64_howto_from_bfd_reloc (bfd_r_type);
6209 BFD_ASSERT (howto != NULL);
6210 r_type = howto->type;
6211 r = elfNN_aarch64_tls_relax (globals, input_bfd, contents, rel, h);
6212 unresolved_reloc = 0;
6215 r = bfd_reloc_continue;
6217 /* There may be multiple consecutive relocations for the
6218 same offset. In that case we are supposed to treat the
6219 output of each relocation as the addend for the next. */
6220 if (rel + 1 < relend
6221 && rel->r_offset == rel[1].r_offset
6222 && ELFNN_R_TYPE (rel[1].r_info) != R_AARCH64_NONE
6223 && ELFNN_R_TYPE (rel[1].r_info) != R_AARCH64_NULL)
6226 save_addend = FALSE;
6228 if (r == bfd_reloc_continue)
6229 r = elfNN_aarch64_final_link_relocate (howto, input_bfd, output_bfd,
6230 input_section, contents, rel,
6231 relocation, info, sec,
6232 h, &unresolved_reloc,
6233 save_addend, &addend, sym);
6235 switch (elfNN_aarch64_bfd_reloc_from_type (r_type))
6237 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
6238 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
6239 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
6240 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
6241 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
6242 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
6243 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
6244 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
6245 if (! symbol_got_offset_mark_p (input_bfd, h, r_symndx))
6247 bfd_boolean need_relocs = FALSE;
6252 off = symbol_got_offset (input_bfd, h, r_symndx);
6253 indx = h && h->dynindx != -1 ? h->dynindx : 0;
6256 (bfd_link_pic (info) || indx != 0) &&
6258 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6259 || h->root.type != bfd_link_hash_undefweak);
6261 BFD_ASSERT (globals->root.srelgot != NULL);
6265 Elf_Internal_Rela rela;
6266 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLS_DTPMOD));
6268 rela.r_offset = globals->root.sgot->output_section->vma +
6269 globals->root.sgot->output_offset + off;
6272 loc = globals->root.srelgot->contents;
6273 loc += globals->root.srelgot->reloc_count++
6274 * RELOC_SIZE (htab);
6275 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
6277 bfd_reloc_code_real_type real_type =
6278 elfNN_aarch64_bfd_reloc_from_type (r_type);
6280 if (real_type == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21
6281 || real_type == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21
6282 || real_type == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC)
6284 /* For local dynamic, don't generate DTPREL in any case.
6285 Initialize the DTPREL slot into zero, so we get module
6286 base address when invoke runtime TLS resolver. */
6287 bfd_put_NN (output_bfd, 0,
6288 globals->root.sgot->contents + off
6293 bfd_put_NN (output_bfd,
6294 relocation - dtpoff_base (info),
6295 globals->root.sgot->contents + off
6300 /* This TLS symbol is global. We emit a
6301 relocation to fixup the tls offset at load
6304 ELFNN_R_INFO (indx, AARCH64_R (TLS_DTPREL));
6307 (globals->root.sgot->output_section->vma
6308 + globals->root.sgot->output_offset + off
6311 loc = globals->root.srelgot->contents;
6312 loc += globals->root.srelgot->reloc_count++
6313 * RELOC_SIZE (globals);
6314 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
6315 bfd_put_NN (output_bfd, (bfd_vma) 0,
6316 globals->root.sgot->contents + off
6322 bfd_put_NN (output_bfd, (bfd_vma) 1,
6323 globals->root.sgot->contents + off);
6324 bfd_put_NN (output_bfd,
6325 relocation - dtpoff_base (info),
6326 globals->root.sgot->contents + off
6330 symbol_got_offset_mark (input_bfd, h, r_symndx);
6334 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
6335 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
6336 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
6337 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
6338 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
6339 if (! symbol_got_offset_mark_p (input_bfd, h, r_symndx))
6341 bfd_boolean need_relocs = FALSE;
6346 off = symbol_got_offset (input_bfd, h, r_symndx);
6348 indx = h && h->dynindx != -1 ? h->dynindx : 0;
6351 (bfd_link_pic (info) || indx != 0) &&
6353 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6354 || h->root.type != bfd_link_hash_undefweak);
6356 BFD_ASSERT (globals->root.srelgot != NULL);
6360 Elf_Internal_Rela rela;
6363 rela.r_addend = relocation - dtpoff_base (info);
6367 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLS_TPREL));
6368 rela.r_offset = globals->root.sgot->output_section->vma +
6369 globals->root.sgot->output_offset + off;
6371 loc = globals->root.srelgot->contents;
6372 loc += globals->root.srelgot->reloc_count++
6373 * RELOC_SIZE (htab);
6375 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
6377 bfd_put_NN (output_bfd, rela.r_addend,
6378 globals->root.sgot->contents + off);
6381 bfd_put_NN (output_bfd, relocation - tpoff_base (info),
6382 globals->root.sgot->contents + off);
6384 symbol_got_offset_mark (input_bfd, h, r_symndx);
6388 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
6389 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
6390 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
6391 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
6392 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
6393 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
6394 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
6395 if (! symbol_tlsdesc_got_offset_mark_p (input_bfd, h, r_symndx))
6397 bfd_boolean need_relocs = FALSE;
6398 int indx = h && h->dynindx != -1 ? h->dynindx : 0;
6399 bfd_vma off = symbol_tlsdesc_got_offset (input_bfd, h, r_symndx);
6401 need_relocs = (h == NULL
6402 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6403 || h->root.type != bfd_link_hash_undefweak);
6405 BFD_ASSERT (globals->root.srelgot != NULL);
6406 BFD_ASSERT (globals->root.sgot != NULL);
6411 Elf_Internal_Rela rela;
6412 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLSDESC));
6415 rela.r_offset = (globals->root.sgotplt->output_section->vma
6416 + globals->root.sgotplt->output_offset
6417 + off + globals->sgotplt_jump_table_size);
6420 rela.r_addend = relocation - dtpoff_base (info);
6422 /* Allocate the next available slot in the PLT reloc
6423 section to hold our R_AARCH64_TLSDESC, the next
6424 available slot is determined from reloc_count,
6425 which we step. But note, reloc_count was
6426 artifically moved down while allocating slots for
6427 real PLT relocs such that all of the PLT relocs
6428 will fit above the initial reloc_count and the
6429 extra stuff will fit below. */
6430 loc = globals->root.srelplt->contents;
6431 loc += globals->root.srelplt->reloc_count++
6432 * RELOC_SIZE (globals);
6434 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
6436 bfd_put_NN (output_bfd, (bfd_vma) 0,
6437 globals->root.sgotplt->contents + off +
6438 globals->sgotplt_jump_table_size);
6439 bfd_put_NN (output_bfd, (bfd_vma) 0,
6440 globals->root.sgotplt->contents + off +
6441 globals->sgotplt_jump_table_size +
6445 symbol_tlsdesc_got_offset_mark (input_bfd, h, r_symndx);
6452 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
6453 because such sections are not SEC_ALLOC and thus ld.so will
6454 not process them. */
6455 if (unresolved_reloc
6456 && !((input_section->flags & SEC_DEBUGGING) != 0
6458 && _bfd_elf_section_offset (output_bfd, info, input_section,
6459 +rel->r_offset) != (bfd_vma) - 1)
6462 /* xgettext:c-format */
6463 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
6464 input_bfd, input_section, (long) rel->r_offset, howto->name,
6465 h->root.root.string);
6469 if (r != bfd_reloc_ok && r != bfd_reloc_continue)
6471 bfd_reloc_code_real_type real_r_type
6472 = elfNN_aarch64_bfd_reloc_from_type (r_type);
6476 case bfd_reloc_overflow:
6477 (*info->callbacks->reloc_overflow)
6478 (info, (h ? &h->root : NULL), name, howto->name, (bfd_vma) 0,
6479 input_bfd, input_section, rel->r_offset);
6480 if (real_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
6481 || real_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
6483 (*info->callbacks->warning)
6485 _("Too many GOT entries for -fpic, "
6486 "please recompile with -fPIC"),
6487 name, input_bfd, input_section, rel->r_offset);
6490 /* Overflow can occur when a variable is referenced with a type
6491 that has a larger alignment than the type with which it was
6493 file1.c: extern int foo; int a (void) { return foo; }
6494 file2.c: char bar, foo, baz;
6495 If the variable is placed into a data section at an offset
6496 that is incompatible with the larger alignment requirement
6497 overflow will occur. (Strictly speaking this is not overflow
6498 but rather an alignment problem, but the bfd_reloc_ error
6499 enum does not have a value to cover that situation).
6501 Try to catch this situation here and provide a more helpful
6502 error message to the user. */
6503 if (addend & ((1 << howto->rightshift) - 1)
6504 /* FIXME: Are we testing all of the appropriate reloc
6506 && (real_r_type == BFD_RELOC_AARCH64_LD_LO19_PCREL
6507 || real_r_type == BFD_RELOC_AARCH64_LDST16_LO12
6508 || real_r_type == BFD_RELOC_AARCH64_LDST32_LO12
6509 || real_r_type == BFD_RELOC_AARCH64_LDST64_LO12
6510 || real_r_type == BFD_RELOC_AARCH64_LDST128_LO12))
6512 info->callbacks->warning
6513 (info, _("One possible cause of this error is that the \
6514 symbol is being referenced in the indicated code as if it had a larger \
6515 alignment than was declared where it was defined."),
6516 name, input_bfd, input_section, rel->r_offset);
6520 case bfd_reloc_undefined:
6521 (*info->callbacks->undefined_symbol)
6522 (info, name, input_bfd, input_section, rel->r_offset, TRUE);
6525 case bfd_reloc_outofrange:
6526 error_message = _("out of range");
6529 case bfd_reloc_notsupported:
6530 error_message = _("unsupported relocation");
6533 case bfd_reloc_dangerous:
6534 /* error_message should already be set. */
6538 error_message = _("unknown error");
6542 BFD_ASSERT (error_message != NULL);
6543 (*info->callbacks->reloc_dangerous)
6544 (info, error_message, input_bfd, input_section, rel->r_offset);
6556 /* Set the right machine number. */
6559 elfNN_aarch64_object_p (bfd *abfd)
6562 bfd_default_set_arch_mach (abfd, bfd_arch_aarch64, bfd_mach_aarch64_ilp32);
6564 bfd_default_set_arch_mach (abfd, bfd_arch_aarch64, bfd_mach_aarch64);
6569 /* Function to keep AArch64 specific flags in the ELF header. */
6572 elfNN_aarch64_set_private_flags (bfd *abfd, flagword flags)
6574 if (elf_flags_init (abfd) && elf_elfheader (abfd)->e_flags != flags)
6579 elf_elfheader (abfd)->e_flags = flags;
6580 elf_flags_init (abfd) = TRUE;
6586 /* Merge backend specific data from an object file to the output
6587 object file when linking. */
6590 elfNN_aarch64_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
6592 bfd *obfd = info->output_bfd;
6595 bfd_boolean flags_compatible = TRUE;
6598 /* Check if we have the same endianess. */
6599 if (!_bfd_generic_verify_endian_match (ibfd, info))
6602 if (!is_aarch64_elf (ibfd) || !is_aarch64_elf (obfd))
6605 /* The input BFD must have had its flags initialised. */
6606 /* The following seems bogus to me -- The flags are initialized in
6607 the assembler but I don't think an elf_flags_init field is
6608 written into the object. */
6609 /* BFD_ASSERT (elf_flags_init (ibfd)); */
6611 in_flags = elf_elfheader (ibfd)->e_flags;
6612 out_flags = elf_elfheader (obfd)->e_flags;
6614 if (!elf_flags_init (obfd))
6616 /* If the input is the default architecture and had the default
6617 flags then do not bother setting the flags for the output
6618 architecture, instead allow future merges to do this. If no
6619 future merges ever set these flags then they will retain their
6620 uninitialised values, which surprise surprise, correspond
6621 to the default values. */
6622 if (bfd_get_arch_info (ibfd)->the_default
6623 && elf_elfheader (ibfd)->e_flags == 0)
6626 elf_flags_init (obfd) = TRUE;
6627 elf_elfheader (obfd)->e_flags = in_flags;
6629 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
6630 && bfd_get_arch_info (obfd)->the_default)
6631 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
6632 bfd_get_mach (ibfd));
6637 /* Identical flags must be compatible. */
6638 if (in_flags == out_flags)
6641 /* Check to see if the input BFD actually contains any sections. If
6642 not, its flags may not have been initialised either, but it
6643 cannot actually cause any incompatiblity. Do not short-circuit
6644 dynamic objects; their section list may be emptied by
6645 elf_link_add_object_symbols.
6647 Also check to see if there are no code sections in the input.
6648 In this case there is no need to check for code specific flags.
6649 XXX - do we need to worry about floating-point format compatability
6650 in data sections ? */
6651 if (!(ibfd->flags & DYNAMIC))
6653 bfd_boolean null_input_bfd = TRUE;
6654 bfd_boolean only_data_sections = TRUE;
6656 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6658 if ((bfd_get_section_flags (ibfd, sec)
6659 & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
6660 == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
6661 only_data_sections = FALSE;
6663 null_input_bfd = FALSE;
6667 if (null_input_bfd || only_data_sections)
6671 return flags_compatible;
6674 /* Display the flags field. */
6677 elfNN_aarch64_print_private_bfd_data (bfd *abfd, void *ptr)
6679 FILE *file = (FILE *) ptr;
6680 unsigned long flags;
6682 BFD_ASSERT (abfd != NULL && ptr != NULL);
6684 /* Print normal ELF private data. */
6685 _bfd_elf_print_private_bfd_data (abfd, ptr);
6687 flags = elf_elfheader (abfd)->e_flags;
6688 /* Ignore init flag - it may not be set, despite the flags field
6689 containing valid data. */
6691 /* xgettext:c-format */
6692 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
6695 fprintf (file, _("<Unrecognised flag bits set>"));
6702 /* Update the got entry reference counts for the section being removed. */
6705 elfNN_aarch64_gc_sweep_hook (bfd *abfd,
6706 struct bfd_link_info *info,
6708 const Elf_Internal_Rela * relocs)
6710 struct elf_aarch64_link_hash_table *htab;
6711 Elf_Internal_Shdr *symtab_hdr;
6712 struct elf_link_hash_entry **sym_hashes;
6713 struct elf_aarch64_local_symbol *locals;
6714 const Elf_Internal_Rela *rel, *relend;
6716 if (bfd_link_relocatable (info))
6719 htab = elf_aarch64_hash_table (info);
6724 elf_section_data (sec)->local_dynrel = NULL;
6726 symtab_hdr = &elf_symtab_hdr (abfd);
6727 sym_hashes = elf_sym_hashes (abfd);
6729 locals = elf_aarch64_locals (abfd);
6731 relend = relocs + sec->reloc_count;
6732 for (rel = relocs; rel < relend; rel++)
6734 unsigned long r_symndx;
6735 unsigned int r_type;
6736 struct elf_link_hash_entry *h = NULL;
6738 r_symndx = ELFNN_R_SYM (rel->r_info);
6740 if (r_symndx >= symtab_hdr->sh_info)
6743 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
6744 while (h->root.type == bfd_link_hash_indirect
6745 || h->root.type == bfd_link_hash_warning)
6746 h = (struct elf_link_hash_entry *) h->root.u.i.link;
6750 Elf_Internal_Sym *isym;
6752 /* A local symbol. */
6753 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
6756 /* Check relocation against local STT_GNU_IFUNC symbol. */
6758 && ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
6760 h = elfNN_aarch64_get_local_sym_hash (htab, abfd, rel, FALSE);
6768 struct elf_aarch64_link_hash_entry *eh;
6769 struct elf_dyn_relocs **pp;
6770 struct elf_dyn_relocs *p;
6772 eh = (struct elf_aarch64_link_hash_entry *) h;
6774 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
6777 /* Everything must go for SEC. */
6783 r_type = ELFNN_R_TYPE (rel->r_info);
6784 switch (aarch64_tls_transition (abfd,info, r_type, h ,r_symndx))
6786 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
6787 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
6788 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
6789 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
6790 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
6791 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
6792 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
6793 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
6794 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
6795 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
6796 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
6797 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
6798 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
6799 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
6800 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
6801 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
6802 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
6803 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
6804 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
6805 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
6806 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
6807 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
6808 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
6809 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
6810 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
6811 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
6812 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
6813 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
6814 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
6815 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
6816 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
6819 if (h->got.refcount > 0)
6820 h->got.refcount -= 1;
6822 if (h->type == STT_GNU_IFUNC)
6824 if (h->plt.refcount > 0)
6825 h->plt.refcount -= 1;
6828 else if (locals != NULL)
6830 if (locals[r_symndx].got_refcount > 0)
6831 locals[r_symndx].got_refcount -= 1;
6835 case BFD_RELOC_AARCH64_CALL26:
6836 case BFD_RELOC_AARCH64_JUMP26:
6837 /* If this is a local symbol then we resolve it
6838 directly without creating a PLT entry. */
6842 if (h->plt.refcount > 0)
6843 h->plt.refcount -= 1;
6846 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
6847 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
6848 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
6849 case BFD_RELOC_AARCH64_MOVW_G0_NC:
6850 case BFD_RELOC_AARCH64_MOVW_G1_NC:
6851 case BFD_RELOC_AARCH64_MOVW_G2_NC:
6852 case BFD_RELOC_AARCH64_MOVW_G3:
6853 case BFD_RELOC_AARCH64_NN:
6854 if (h != NULL && bfd_link_executable (info))
6856 if (h->plt.refcount > 0)
6857 h->plt.refcount -= 1;
6869 /* Adjust a symbol defined by a dynamic object and referenced by a
6870 regular object. The current definition is in some section of the
6871 dynamic object, but we're not including those sections. We have to
6872 change the definition to something the rest of the link can
6876 elfNN_aarch64_adjust_dynamic_symbol (struct bfd_link_info *info,
6877 struct elf_link_hash_entry *h)
6879 struct elf_aarch64_link_hash_table *htab;
6882 /* If this is a function, put it in the procedure linkage table. We
6883 will fill in the contents of the procedure linkage table later,
6884 when we know the address of the .got section. */
6885 if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
6887 if (h->plt.refcount <= 0
6888 || (h->type != STT_GNU_IFUNC
6889 && (SYMBOL_CALLS_LOCAL (info, h)
6890 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
6891 && h->root.type == bfd_link_hash_undefweak))))
6893 /* This case can occur if we saw a CALL26 reloc in
6894 an input file, but the symbol wasn't referred to
6895 by a dynamic object or all references were
6896 garbage collected. In which case we can end up
6898 h->plt.offset = (bfd_vma) - 1;
6905 /* Otherwise, reset to -1. */
6906 h->plt.offset = (bfd_vma) - 1;
6909 /* If this is a weak symbol, and there is a real definition, the
6910 processor independent code will have arranged for us to see the
6911 real definition first, and we can just use the same value. */
6912 if (h->u.weakdef != NULL)
6914 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
6915 || h->u.weakdef->root.type == bfd_link_hash_defweak);
6916 h->root.u.def.section = h->u.weakdef->root.u.def.section;
6917 h->root.u.def.value = h->u.weakdef->root.u.def.value;
6918 if (ELIMINATE_COPY_RELOCS || info->nocopyreloc)
6919 h->non_got_ref = h->u.weakdef->non_got_ref;
6923 /* If we are creating a shared library, we must presume that the
6924 only references to the symbol are via the global offset table.
6925 For such cases we need not do anything here; the relocations will
6926 be handled correctly by relocate_section. */
6927 if (bfd_link_pic (info))
6930 /* If there are no references to this symbol that do not use the
6931 GOT, we don't need to generate a copy reloc. */
6932 if (!h->non_got_ref)
6935 /* If -z nocopyreloc was given, we won't generate them either. */
6936 if (info->nocopyreloc)
6942 /* We must allocate the symbol in our .dynbss section, which will
6943 become part of the .bss section of the executable. There will be
6944 an entry for this symbol in the .dynsym section. The dynamic
6945 object will contain position independent code, so all references
6946 from the dynamic object to this symbol will go through the global
6947 offset table. The dynamic linker will use the .dynsym entry to
6948 determine the address it must put in the global offset table, so
6949 both the dynamic object and the regular object will refer to the
6950 same memory location for the variable. */
6952 htab = elf_aarch64_hash_table (info);
6954 /* We must generate a R_AARCH64_COPY reloc to tell the dynamic linker
6955 to copy the initial value out of the dynamic object and into the
6956 runtime process image. */
6957 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
6959 s = htab->root.sdynrelro;
6960 srel = htab->root.sreldynrelro;
6964 s = htab->root.sdynbss;
6965 srel = htab->root.srelbss;
6967 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
6969 srel->size += RELOC_SIZE (htab);
6973 return _bfd_elf_adjust_dynamic_copy (info, h, s);
6978 elfNN_aarch64_allocate_local_symbols (bfd *abfd, unsigned number)
6980 struct elf_aarch64_local_symbol *locals;
6981 locals = elf_aarch64_locals (abfd);
6984 locals = (struct elf_aarch64_local_symbol *)
6985 bfd_zalloc (abfd, number * sizeof (struct elf_aarch64_local_symbol));
6988 elf_aarch64_locals (abfd) = locals;
6993 /* Create the .got section to hold the global offset table. */
6996 aarch64_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
6998 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
7001 struct elf_link_hash_entry *h;
7002 struct elf_link_hash_table *htab = elf_hash_table (info);
7004 /* This function may be called more than once. */
7005 if (htab->sgot != NULL)
7008 flags = bed->dynamic_sec_flags;
7010 s = bfd_make_section_anyway_with_flags (abfd,
7011 (bed->rela_plts_and_copies_p
7012 ? ".rela.got" : ".rel.got"),
7013 (bed->dynamic_sec_flags
7016 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
7020 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
7022 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
7025 htab->sgot->size += GOT_ENTRY_SIZE;
7027 if (bed->want_got_sym)
7029 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
7030 (or .got.plt) section. We don't do this in the linker script
7031 because we don't want to define the symbol if we are not creating
7032 a global offset table. */
7033 h = _bfd_elf_define_linkage_sym (abfd, info, s,
7034 "_GLOBAL_OFFSET_TABLE_");
7035 elf_hash_table (info)->hgot = h;
7040 if (bed->want_got_plt)
7042 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
7044 || !bfd_set_section_alignment (abfd, s,
7045 bed->s->log_file_align))
7050 /* The first bit of the global offset table is the header. */
7051 s->size += bed->got_header_size;
7056 /* Look through the relocs for a section during the first phase. */
7059 elfNN_aarch64_check_relocs (bfd *abfd, struct bfd_link_info *info,
7060 asection *sec, const Elf_Internal_Rela *relocs)
7062 Elf_Internal_Shdr *symtab_hdr;
7063 struct elf_link_hash_entry **sym_hashes;
7064 const Elf_Internal_Rela *rel;
7065 const Elf_Internal_Rela *rel_end;
7068 struct elf_aarch64_link_hash_table *htab;
7070 if (bfd_link_relocatable (info))
7073 BFD_ASSERT (is_aarch64_elf (abfd));
7075 htab = elf_aarch64_hash_table (info);
7078 symtab_hdr = &elf_symtab_hdr (abfd);
7079 sym_hashes = elf_sym_hashes (abfd);
7081 rel_end = relocs + sec->reloc_count;
7082 for (rel = relocs; rel < rel_end; rel++)
7084 struct elf_link_hash_entry *h;
7085 unsigned long r_symndx;
7086 unsigned int r_type;
7087 bfd_reloc_code_real_type bfd_r_type;
7088 Elf_Internal_Sym *isym;
7090 r_symndx = ELFNN_R_SYM (rel->r_info);
7091 r_type = ELFNN_R_TYPE (rel->r_info);
7093 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
7095 /* xgettext:c-format */
7096 _bfd_error_handler (_("%B: bad symbol index: %d"), abfd, r_symndx);
7100 if (r_symndx < symtab_hdr->sh_info)
7102 /* A local symbol. */
7103 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
7108 /* Check relocation against local STT_GNU_IFUNC symbol. */
7109 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
7111 h = elfNN_aarch64_get_local_sym_hash (htab, abfd, rel,
7116 /* Fake a STT_GNU_IFUNC symbol. */
7117 h->type = STT_GNU_IFUNC;
7120 h->forced_local = 1;
7121 h->root.type = bfd_link_hash_defined;
7128 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
7129 while (h->root.type == bfd_link_hash_indirect
7130 || h->root.type == bfd_link_hash_warning)
7131 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7133 /* PR15323, ref flags aren't set for references in the same
7135 h->root.non_ir_ref = 1;
7138 /* Could be done earlier, if h were already available. */
7139 bfd_r_type = aarch64_tls_transition (abfd, info, r_type, h, r_symndx);
7143 /* If a relocation refers to _GLOBAL_OFFSET_TABLE_, create the .got.
7144 This shows up in particular in an R_AARCH64_PREL64 in large model
7145 when calculating the pc-relative address to .got section which is
7146 used to initialize the gp register. */
7147 if (h->root.root.string
7148 && strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
7150 if (htab->root.dynobj == NULL)
7151 htab->root.dynobj = abfd;
7153 if (! aarch64_elf_create_got_section (htab->root.dynobj, info))
7156 BFD_ASSERT (h == htab->root.hgot);
7159 /* Create the ifunc sections for static executables. If we
7160 never see an indirect function symbol nor we are building
7161 a static executable, those sections will be empty and
7162 won't appear in output. */
7168 case BFD_RELOC_AARCH64_ADD_LO12:
7169 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
7170 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
7171 case BFD_RELOC_AARCH64_CALL26:
7172 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7173 case BFD_RELOC_AARCH64_JUMP26:
7174 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
7175 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
7176 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
7177 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
7178 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
7179 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
7180 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
7181 case BFD_RELOC_AARCH64_NN:
7182 if (htab->root.dynobj == NULL)
7183 htab->root.dynobj = abfd;
7184 if (!_bfd_elf_create_ifunc_sections (htab->root.dynobj, info))
7189 /* It is referenced by a non-shared object. */
7191 h->root.non_ir_ref = 1;
7196 case BFD_RELOC_AARCH64_NN:
7198 /* We don't need to handle relocs into sections not going into
7199 the "real" output. */
7200 if ((sec->flags & SEC_ALLOC) == 0)
7205 if (!bfd_link_pic (info))
7208 h->plt.refcount += 1;
7209 h->pointer_equality_needed = 1;
7212 /* No need to do anything if we're not creating a shared
7214 if (! bfd_link_pic (info))
7218 struct elf_dyn_relocs *p;
7219 struct elf_dyn_relocs **head;
7221 /* We must copy these reloc types into the output file.
7222 Create a reloc section in dynobj and make room for
7226 if (htab->root.dynobj == NULL)
7227 htab->root.dynobj = abfd;
7229 sreloc = _bfd_elf_make_dynamic_reloc_section
7230 (sec, htab->root.dynobj, LOG_FILE_ALIGN, abfd, /*rela? */ TRUE);
7236 /* If this is a global symbol, we count the number of
7237 relocations we need for this symbol. */
7240 struct elf_aarch64_link_hash_entry *eh;
7241 eh = (struct elf_aarch64_link_hash_entry *) h;
7242 head = &eh->dyn_relocs;
7246 /* Track dynamic relocs needed for local syms too.
7247 We really need local syms available to do this
7253 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
7258 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
7262 /* Beware of type punned pointers vs strict aliasing
7264 vpp = &(elf_section_data (s)->local_dynrel);
7265 head = (struct elf_dyn_relocs **) vpp;
7269 if (p == NULL || p->sec != sec)
7271 bfd_size_type amt = sizeof *p;
7272 p = ((struct elf_dyn_relocs *)
7273 bfd_zalloc (htab->root.dynobj, amt));
7286 /* RR: We probably want to keep a consistency check that
7287 there are no dangling GOT_PAGE relocs. */
7288 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
7289 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7290 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
7291 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
7292 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
7293 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
7294 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
7295 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
7296 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
7297 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
7298 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
7299 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
7300 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
7301 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
7302 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
7303 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
7304 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
7305 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
7306 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
7307 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
7308 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
7309 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
7310 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
7311 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
7312 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
7313 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
7314 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
7315 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
7316 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
7317 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
7318 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
7319 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
7320 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
7321 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
7324 unsigned old_got_type;
7326 got_type = aarch64_reloc_got_type (bfd_r_type);
7330 h->got.refcount += 1;
7331 old_got_type = elf_aarch64_hash_entry (h)->got_type;
7335 struct elf_aarch64_local_symbol *locals;
7337 if (!elfNN_aarch64_allocate_local_symbols
7338 (abfd, symtab_hdr->sh_info))
7341 locals = elf_aarch64_locals (abfd);
7342 BFD_ASSERT (r_symndx < symtab_hdr->sh_info);
7343 locals[r_symndx].got_refcount += 1;
7344 old_got_type = locals[r_symndx].got_type;
7347 /* If a variable is accessed with both general dynamic TLS
7348 methods, two slots may be created. */
7349 if (GOT_TLS_GD_ANY_P (old_got_type) && GOT_TLS_GD_ANY_P (got_type))
7350 got_type |= old_got_type;
7352 /* We will already have issued an error message if there
7353 is a TLS/non-TLS mismatch, based on the symbol type.
7354 So just combine any TLS types needed. */
7355 if (old_got_type != GOT_UNKNOWN && old_got_type != GOT_NORMAL
7356 && got_type != GOT_NORMAL)
7357 got_type |= old_got_type;
7359 /* If the symbol is accessed by both IE and GD methods, we
7360 are able to relax. Turn off the GD flag, without
7361 messing up with any other kind of TLS types that may be
7363 if ((got_type & GOT_TLS_IE) && GOT_TLS_GD_ANY_P (got_type))
7364 got_type &= ~ (GOT_TLSDESC_GD | GOT_TLS_GD);
7366 if (old_got_type != got_type)
7369 elf_aarch64_hash_entry (h)->got_type = got_type;
7372 struct elf_aarch64_local_symbol *locals;
7373 locals = elf_aarch64_locals (abfd);
7374 BFD_ASSERT (r_symndx < symtab_hdr->sh_info);
7375 locals[r_symndx].got_type = got_type;
7379 if (htab->root.dynobj == NULL)
7380 htab->root.dynobj = abfd;
7381 if (! aarch64_elf_create_got_section (htab->root.dynobj, info))
7386 case BFD_RELOC_AARCH64_MOVW_G0_NC:
7387 case BFD_RELOC_AARCH64_MOVW_G1_NC:
7388 case BFD_RELOC_AARCH64_MOVW_G2_NC:
7389 case BFD_RELOC_AARCH64_MOVW_G3:
7390 if (bfd_link_pic (info))
7392 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
7394 /* xgettext:c-format */
7395 (_("%B: relocation %s against `%s' can not be used when making "
7396 "a shared object; recompile with -fPIC"),
7397 abfd, elfNN_aarch64_howto_table[howto_index].name,
7398 (h) ? h->root.root.string : "a local symbol");
7399 bfd_set_error (bfd_error_bad_value);
7404 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
7405 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
7406 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
7407 if (h != NULL && bfd_link_executable (info))
7409 /* If this reloc is in a read-only section, we might
7410 need a copy reloc. We can't check reliably at this
7411 stage whether the section is read-only, as input
7412 sections have not yet been mapped to output sections.
7413 Tentatively set the flag for now, and correct in
7414 adjust_dynamic_symbol. */
7416 h->plt.refcount += 1;
7417 h->pointer_equality_needed = 1;
7419 /* FIXME:: RR need to handle these in shared libraries
7420 and essentially bomb out as these being non-PIC
7421 relocations in shared libraries. */
7424 case BFD_RELOC_AARCH64_CALL26:
7425 case BFD_RELOC_AARCH64_JUMP26:
7426 /* If this is a local symbol then we resolve it
7427 directly without creating a PLT entry. */
7432 if (h->plt.refcount <= 0)
7433 h->plt.refcount = 1;
7435 h->plt.refcount += 1;
7446 /* Treat mapping symbols as special target symbols. */
7449 elfNN_aarch64_is_target_special_symbol (bfd *abfd ATTRIBUTE_UNUSED,
7452 return bfd_is_aarch64_special_symbol_name (sym->name,
7453 BFD_AARCH64_SPECIAL_SYM_TYPE_ANY);
7456 /* This is a copy of elf_find_function () from elf.c except that
7457 AArch64 mapping symbols are ignored when looking for function names. */
7460 aarch64_elf_find_function (bfd *abfd ATTRIBUTE_UNUSED,
7464 const char **filename_ptr,
7465 const char **functionname_ptr)
7467 const char *filename = NULL;
7468 asymbol *func = NULL;
7469 bfd_vma low_func = 0;
7472 for (p = symbols; *p != NULL; p++)
7476 q = (elf_symbol_type *) * p;
7478 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
7483 filename = bfd_asymbol_name (&q->symbol);
7487 /* Skip mapping symbols. */
7488 if ((q->symbol.flags & BSF_LOCAL)
7489 && (bfd_is_aarch64_special_symbol_name
7490 (q->symbol.name, BFD_AARCH64_SPECIAL_SYM_TYPE_ANY)))
7493 if (bfd_get_section (&q->symbol) == section
7494 && q->symbol.value >= low_func && q->symbol.value <= offset)
7496 func = (asymbol *) q;
7497 low_func = q->symbol.value;
7507 *filename_ptr = filename;
7508 if (functionname_ptr)
7509 *functionname_ptr = bfd_asymbol_name (func);
7515 /* Find the nearest line to a particular section and offset, for error
7516 reporting. This code is a duplicate of the code in elf.c, except
7517 that it uses aarch64_elf_find_function. */
7520 elfNN_aarch64_find_nearest_line (bfd *abfd,
7524 const char **filename_ptr,
7525 const char **functionname_ptr,
7526 unsigned int *line_ptr,
7527 unsigned int *discriminator_ptr)
7529 bfd_boolean found = FALSE;
7531 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
7532 filename_ptr, functionname_ptr,
7533 line_ptr, discriminator_ptr,
7534 dwarf_debug_sections, 0,
7535 &elf_tdata (abfd)->dwarf2_find_line_info))
7537 if (!*functionname_ptr)
7538 aarch64_elf_find_function (abfd, symbols, section, offset,
7539 *filename_ptr ? NULL : filename_ptr,
7545 /* Skip _bfd_dwarf1_find_nearest_line since no known AArch64
7546 toolchain uses DWARF1. */
7548 if (!_bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
7549 &found, filename_ptr,
7550 functionname_ptr, line_ptr,
7551 &elf_tdata (abfd)->line_info))
7554 if (found && (*functionname_ptr || *line_ptr))
7557 if (symbols == NULL)
7560 if (!aarch64_elf_find_function (abfd, symbols, section, offset,
7561 filename_ptr, functionname_ptr))
7569 elfNN_aarch64_find_inliner_info (bfd *abfd,
7570 const char **filename_ptr,
7571 const char **functionname_ptr,
7572 unsigned int *line_ptr)
7575 found = _bfd_dwarf2_find_inliner_info
7576 (abfd, filename_ptr,
7577 functionname_ptr, line_ptr, &elf_tdata (abfd)->dwarf2_find_line_info);
7583 elfNN_aarch64_post_process_headers (bfd *abfd,
7584 struct bfd_link_info *link_info)
7586 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
7588 i_ehdrp = elf_elfheader (abfd);
7589 i_ehdrp->e_ident[EI_ABIVERSION] = AARCH64_ELF_ABI_VERSION;
7591 _bfd_elf_post_process_headers (abfd, link_info);
7594 static enum elf_reloc_type_class
7595 elfNN_aarch64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
7596 const asection *rel_sec ATTRIBUTE_UNUSED,
7597 const Elf_Internal_Rela *rela)
7599 switch ((int) ELFNN_R_TYPE (rela->r_info))
7601 case AARCH64_R (RELATIVE):
7602 return reloc_class_relative;
7603 case AARCH64_R (JUMP_SLOT):
7604 return reloc_class_plt;
7605 case AARCH64_R (COPY):
7606 return reloc_class_copy;
7608 return reloc_class_normal;
7612 /* Handle an AArch64 specific section when reading an object file. This is
7613 called when bfd_section_from_shdr finds a section with an unknown
7617 elfNN_aarch64_section_from_shdr (bfd *abfd,
7618 Elf_Internal_Shdr *hdr,
7619 const char *name, int shindex)
7621 /* There ought to be a place to keep ELF backend specific flags, but
7622 at the moment there isn't one. We just keep track of the
7623 sections by their name, instead. Fortunately, the ABI gives
7624 names for all the AArch64 specific sections, so we will probably get
7626 switch (hdr->sh_type)
7628 case SHT_AARCH64_ATTRIBUTES:
7635 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
7641 /* A structure used to record a list of sections, independently
7642 of the next and prev fields in the asection structure. */
7643 typedef struct section_list
7646 struct section_list *next;
7647 struct section_list *prev;
7651 /* Unfortunately we need to keep a list of sections for which
7652 an _aarch64_elf_section_data structure has been allocated. This
7653 is because it is possible for functions like elfNN_aarch64_write_section
7654 to be called on a section which has had an elf_data_structure
7655 allocated for it (and so the used_by_bfd field is valid) but
7656 for which the AArch64 extended version of this structure - the
7657 _aarch64_elf_section_data structure - has not been allocated. */
7658 static section_list *sections_with_aarch64_elf_section_data = NULL;
7661 record_section_with_aarch64_elf_section_data (asection *sec)
7663 struct section_list *entry;
7665 entry = bfd_malloc (sizeof (*entry));
7669 entry->next = sections_with_aarch64_elf_section_data;
7671 if (entry->next != NULL)
7672 entry->next->prev = entry;
7673 sections_with_aarch64_elf_section_data = entry;
7676 static struct section_list *
7677 find_aarch64_elf_section_entry (asection *sec)
7679 struct section_list *entry;
7680 static struct section_list *last_entry = NULL;
7682 /* This is a short cut for the typical case where the sections are added
7683 to the sections_with_aarch64_elf_section_data list in forward order and
7684 then looked up here in backwards order. This makes a real difference
7685 to the ld-srec/sec64k.exp linker test. */
7686 entry = sections_with_aarch64_elf_section_data;
7687 if (last_entry != NULL)
7689 if (last_entry->sec == sec)
7691 else if (last_entry->next != NULL && last_entry->next->sec == sec)
7692 entry = last_entry->next;
7695 for (; entry; entry = entry->next)
7696 if (entry->sec == sec)
7700 /* Record the entry prior to this one - it is the entry we are
7701 most likely to want to locate next time. Also this way if we
7702 have been called from
7703 unrecord_section_with_aarch64_elf_section_data () we will not
7704 be caching a pointer that is about to be freed. */
7705 last_entry = entry->prev;
7711 unrecord_section_with_aarch64_elf_section_data (asection *sec)
7713 struct section_list *entry;
7715 entry = find_aarch64_elf_section_entry (sec);
7719 if (entry->prev != NULL)
7720 entry->prev->next = entry->next;
7721 if (entry->next != NULL)
7722 entry->next->prev = entry->prev;
7723 if (entry == sections_with_aarch64_elf_section_data)
7724 sections_with_aarch64_elf_section_data = entry->next;
7733 struct bfd_link_info *info;
7736 int (*func) (void *, const char *, Elf_Internal_Sym *,
7737 asection *, struct elf_link_hash_entry *);
7738 } output_arch_syminfo;
7740 enum map_symbol_type
7747 /* Output a single mapping symbol. */
7750 elfNN_aarch64_output_map_sym (output_arch_syminfo *osi,
7751 enum map_symbol_type type, bfd_vma offset)
7753 static const char *names[2] = { "$x", "$d" };
7754 Elf_Internal_Sym sym;
7756 sym.st_value = (osi->sec->output_section->vma
7757 + osi->sec->output_offset + offset);
7760 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7761 sym.st_shndx = osi->sec_shndx;
7762 return osi->func (osi->finfo, names[type], &sym, osi->sec, NULL) == 1;
7765 /* Output a single local symbol for a generated stub. */
7768 elfNN_aarch64_output_stub_sym (output_arch_syminfo *osi, const char *name,
7769 bfd_vma offset, bfd_vma size)
7771 Elf_Internal_Sym sym;
7773 sym.st_value = (osi->sec->output_section->vma
7774 + osi->sec->output_offset + offset);
7777 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7778 sym.st_shndx = osi->sec_shndx;
7779 return osi->func (osi->finfo, name, &sym, osi->sec, NULL) == 1;
7783 aarch64_map_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
7785 struct elf_aarch64_stub_hash_entry *stub_entry;
7789 output_arch_syminfo *osi;
7791 /* Massage our args to the form they really have. */
7792 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
7793 osi = (output_arch_syminfo *) in_arg;
7795 stub_sec = stub_entry->stub_sec;
7797 /* Ensure this stub is attached to the current section being
7799 if (stub_sec != osi->sec)
7802 addr = (bfd_vma) stub_entry->stub_offset;
7804 stub_name = stub_entry->output_name;
7806 switch (stub_entry->stub_type)
7808 case aarch64_stub_adrp_branch:
7809 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
7810 sizeof (aarch64_adrp_branch_stub)))
7812 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7815 case aarch64_stub_long_branch:
7816 if (!elfNN_aarch64_output_stub_sym
7817 (osi, stub_name, addr, sizeof (aarch64_long_branch_stub)))
7819 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7821 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_DATA, addr + 16))
7824 case aarch64_stub_erratum_835769_veneer:
7825 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
7826 sizeof (aarch64_erratum_835769_stub)))
7828 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7831 case aarch64_stub_erratum_843419_veneer:
7832 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
7833 sizeof (aarch64_erratum_843419_stub)))
7835 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7846 /* Output mapping symbols for linker generated sections. */
7849 elfNN_aarch64_output_arch_local_syms (bfd *output_bfd,
7850 struct bfd_link_info *info,
7852 int (*func) (void *, const char *,
7855 struct elf_link_hash_entry
7858 output_arch_syminfo osi;
7859 struct elf_aarch64_link_hash_table *htab;
7861 htab = elf_aarch64_hash_table (info);
7867 /* Long calls stubs. */
7868 if (htab->stub_bfd && htab->stub_bfd->sections)
7872 for (stub_sec = htab->stub_bfd->sections;
7873 stub_sec != NULL; stub_sec = stub_sec->next)
7875 /* Ignore non-stub sections. */
7876 if (!strstr (stub_sec->name, STUB_SUFFIX))
7881 osi.sec_shndx = _bfd_elf_section_from_bfd_section
7882 (output_bfd, osi.sec->output_section);
7884 /* The first instruction in a stub is always a branch. */
7885 if (!elfNN_aarch64_output_map_sym (&osi, AARCH64_MAP_INSN, 0))
7888 bfd_hash_traverse (&htab->stub_hash_table, aarch64_map_one_stub,
7893 /* Finally, output mapping symbols for the PLT. */
7894 if (!htab->root.splt || htab->root.splt->size == 0)
7897 osi.sec_shndx = _bfd_elf_section_from_bfd_section
7898 (output_bfd, htab->root.splt->output_section);
7899 osi.sec = htab->root.splt;
7901 elfNN_aarch64_output_map_sym (&osi, AARCH64_MAP_INSN, 0);
7907 /* Allocate target specific section data. */
7910 elfNN_aarch64_new_section_hook (bfd *abfd, asection *sec)
7912 if (!sec->used_by_bfd)
7914 _aarch64_elf_section_data *sdata;
7915 bfd_size_type amt = sizeof (*sdata);
7917 sdata = bfd_zalloc (abfd, amt);
7920 sec->used_by_bfd = sdata;
7923 record_section_with_aarch64_elf_section_data (sec);
7925 return _bfd_elf_new_section_hook (abfd, sec);
7930 unrecord_section_via_map_over_sections (bfd *abfd ATTRIBUTE_UNUSED,
7932 void *ignore ATTRIBUTE_UNUSED)
7934 unrecord_section_with_aarch64_elf_section_data (sec);
7938 elfNN_aarch64_close_and_cleanup (bfd *abfd)
7941 bfd_map_over_sections (abfd,
7942 unrecord_section_via_map_over_sections, NULL);
7944 return _bfd_elf_close_and_cleanup (abfd);
7948 elfNN_aarch64_bfd_free_cached_info (bfd *abfd)
7951 bfd_map_over_sections (abfd,
7952 unrecord_section_via_map_over_sections, NULL);
7954 return _bfd_free_cached_info (abfd);
7957 /* Create dynamic sections. This is different from the ARM backend in that
7958 the got, plt, gotplt and their relocation sections are all created in the
7959 standard part of the bfd elf backend. */
7962 elfNN_aarch64_create_dynamic_sections (bfd *dynobj,
7963 struct bfd_link_info *info)
7965 /* We need to create .got section. */
7966 if (!aarch64_elf_create_got_section (dynobj, info))
7969 return _bfd_elf_create_dynamic_sections (dynobj, info);
7973 /* Allocate space in .plt, .got and associated reloc sections for
7977 elfNN_aarch64_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
7979 struct bfd_link_info *info;
7980 struct elf_aarch64_link_hash_table *htab;
7981 struct elf_aarch64_link_hash_entry *eh;
7982 struct elf_dyn_relocs *p;
7984 /* An example of a bfd_link_hash_indirect symbol is versioned
7985 symbol. For example: __gxx_personality_v0(bfd_link_hash_indirect)
7986 -> __gxx_personality_v0(bfd_link_hash_defined)
7988 There is no need to process bfd_link_hash_indirect symbols here
7989 because we will also be presented with the concrete instance of
7990 the symbol and elfNN_aarch64_copy_indirect_symbol () will have been
7991 called to copy all relevant data from the generic to the concrete
7993 if (h->root.type == bfd_link_hash_indirect)
7996 if (h->root.type == bfd_link_hash_warning)
7997 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7999 info = (struct bfd_link_info *) inf;
8000 htab = elf_aarch64_hash_table (info);
8002 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
8003 here if it is defined and referenced in a non-shared object. */
8004 if (h->type == STT_GNU_IFUNC
8007 else if (htab->root.dynamic_sections_created && h->plt.refcount > 0)
8009 /* Make sure this symbol is output as a dynamic symbol.
8010 Undefined weak syms won't yet be marked as dynamic. */
8011 if (h->dynindx == -1 && !h->forced_local)
8013 if (!bfd_elf_link_record_dynamic_symbol (info, h))
8017 if (bfd_link_pic (info) || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
8019 asection *s = htab->root.splt;
8021 /* If this is the first .plt entry, make room for the special
8024 s->size += htab->plt_header_size;
8026 h->plt.offset = s->size;
8028 /* If this symbol is not defined in a regular file, and we are
8029 not generating a shared library, then set the symbol to this
8030 location in the .plt. This is required to make function
8031 pointers compare as equal between the normal executable and
8032 the shared library. */
8033 if (!bfd_link_pic (info) && !h->def_regular)
8035 h->root.u.def.section = s;
8036 h->root.u.def.value = h->plt.offset;
8039 /* Make room for this entry. For now we only create the
8040 small model PLT entries. We later need to find a way
8041 of relaxing into these from the large model PLT entries. */
8042 s->size += PLT_SMALL_ENTRY_SIZE;
8044 /* We also need to make an entry in the .got.plt section, which
8045 will be placed in the .got section by the linker script. */
8046 htab->root.sgotplt->size += GOT_ENTRY_SIZE;
8048 /* We also need to make an entry in the .rela.plt section. */
8049 htab->root.srelplt->size += RELOC_SIZE (htab);
8051 /* We need to ensure that all GOT entries that serve the PLT
8052 are consecutive with the special GOT slots [0] [1] and
8053 [2]. Any addtional relocations, such as
8054 R_AARCH64_TLSDESC, must be placed after the PLT related
8055 entries. We abuse the reloc_count such that during
8056 sizing we adjust reloc_count to indicate the number of
8057 PLT related reserved entries. In subsequent phases when
8058 filling in the contents of the reloc entries, PLT related
8059 entries are placed by computing their PLT index (0
8060 .. reloc_count). While other none PLT relocs are placed
8061 at the slot indicated by reloc_count and reloc_count is
8064 htab->root.srelplt->reloc_count++;
8068 h->plt.offset = (bfd_vma) - 1;
8074 h->plt.offset = (bfd_vma) - 1;
8078 eh = (struct elf_aarch64_link_hash_entry *) h;
8079 eh->tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
8081 if (h->got.refcount > 0)
8084 unsigned got_type = elf_aarch64_hash_entry (h)->got_type;
8086 h->got.offset = (bfd_vma) - 1;
8088 dyn = htab->root.dynamic_sections_created;
8090 /* Make sure this symbol is output as a dynamic symbol.
8091 Undefined weak syms won't yet be marked as dynamic. */
8092 if (dyn && h->dynindx == -1 && !h->forced_local)
8094 if (!bfd_elf_link_record_dynamic_symbol (info, h))
8098 if (got_type == GOT_UNKNOWN)
8101 else if (got_type == GOT_NORMAL)
8103 h->got.offset = htab->root.sgot->size;
8104 htab->root.sgot->size += GOT_ENTRY_SIZE;
8105 if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8106 || h->root.type != bfd_link_hash_undefweak)
8107 && (bfd_link_pic (info)
8108 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
8110 htab->root.srelgot->size += RELOC_SIZE (htab);
8116 if (got_type & GOT_TLSDESC_GD)
8118 eh->tlsdesc_got_jump_table_offset =
8119 (htab->root.sgotplt->size
8120 - aarch64_compute_jump_table_size (htab));
8121 htab->root.sgotplt->size += GOT_ENTRY_SIZE * 2;
8122 h->got.offset = (bfd_vma) - 2;
8125 if (got_type & GOT_TLS_GD)
8127 h->got.offset = htab->root.sgot->size;
8128 htab->root.sgot->size += GOT_ENTRY_SIZE * 2;
8131 if (got_type & GOT_TLS_IE)
8133 h->got.offset = htab->root.sgot->size;
8134 htab->root.sgot->size += GOT_ENTRY_SIZE;
8137 indx = h && h->dynindx != -1 ? h->dynindx : 0;
8138 if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8139 || h->root.type != bfd_link_hash_undefweak)
8140 && (bfd_link_pic (info)
8142 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
8144 if (got_type & GOT_TLSDESC_GD)
8146 htab->root.srelplt->size += RELOC_SIZE (htab);
8147 /* Note reloc_count not incremented here! We have
8148 already adjusted reloc_count for this relocation
8151 /* TLSDESC PLT is now needed, but not yet determined. */
8152 htab->tlsdesc_plt = (bfd_vma) - 1;
8155 if (got_type & GOT_TLS_GD)
8156 htab->root.srelgot->size += RELOC_SIZE (htab) * 2;
8158 if (got_type & GOT_TLS_IE)
8159 htab->root.srelgot->size += RELOC_SIZE (htab);
8165 h->got.offset = (bfd_vma) - 1;
8168 if (eh->dyn_relocs == NULL)
8171 /* In the shared -Bsymbolic case, discard space allocated for
8172 dynamic pc-relative relocs against symbols which turn out to be
8173 defined in regular objects. For the normal shared case, discard
8174 space for pc-relative relocs that have become local due to symbol
8175 visibility changes. */
8177 if (bfd_link_pic (info))
8179 /* Relocs that use pc_count are those that appear on a call
8180 insn, or certain REL relocs that can generated via assembly.
8181 We want calls to protected symbols to resolve directly to the
8182 function rather than going via the plt. If people want
8183 function pointer comparisons to work as expected then they
8184 should avoid writing weird assembly. */
8185 if (SYMBOL_CALLS_LOCAL (info, h))
8187 struct elf_dyn_relocs **pp;
8189 for (pp = &eh->dyn_relocs; (p = *pp) != NULL;)
8191 p->count -= p->pc_count;
8200 /* Also discard relocs on undefined weak syms with non-default
8202 if (eh->dyn_relocs != NULL && h->root.type == bfd_link_hash_undefweak)
8204 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8205 eh->dyn_relocs = NULL;
8207 /* Make sure undefined weak symbols are output as a dynamic
8209 else if (h->dynindx == -1
8211 && !bfd_elf_link_record_dynamic_symbol (info, h))
8216 else if (ELIMINATE_COPY_RELOCS)
8218 /* For the non-shared case, discard space for relocs against
8219 symbols which turn out to need copy relocs or are not
8225 || (htab->root.dynamic_sections_created
8226 && (h->root.type == bfd_link_hash_undefweak
8227 || h->root.type == bfd_link_hash_undefined))))
8229 /* Make sure this symbol is output as a dynamic symbol.
8230 Undefined weak syms won't yet be marked as dynamic. */
8231 if (h->dynindx == -1
8233 && !bfd_elf_link_record_dynamic_symbol (info, h))
8236 /* If that succeeded, we know we'll be keeping all the
8238 if (h->dynindx != -1)
8242 eh->dyn_relocs = NULL;
8247 /* Finally, allocate space. */
8248 for (p = eh->dyn_relocs; p != NULL; p = p->next)
8252 sreloc = elf_section_data (p->sec)->sreloc;
8254 BFD_ASSERT (sreloc != NULL);
8256 sreloc->size += p->count * RELOC_SIZE (htab);
8262 /* Allocate space in .plt, .got and associated reloc sections for
8263 ifunc dynamic relocs. */
8266 elfNN_aarch64_allocate_ifunc_dynrelocs (struct elf_link_hash_entry *h,
8269 struct bfd_link_info *info;
8270 struct elf_aarch64_link_hash_table *htab;
8271 struct elf_aarch64_link_hash_entry *eh;
8273 /* An example of a bfd_link_hash_indirect symbol is versioned
8274 symbol. For example: __gxx_personality_v0(bfd_link_hash_indirect)
8275 -> __gxx_personality_v0(bfd_link_hash_defined)
8277 There is no need to process bfd_link_hash_indirect symbols here
8278 because we will also be presented with the concrete instance of
8279 the symbol and elfNN_aarch64_copy_indirect_symbol () will have been
8280 called to copy all relevant data from the generic to the concrete
8282 if (h->root.type == bfd_link_hash_indirect)
8285 if (h->root.type == bfd_link_hash_warning)
8286 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8288 info = (struct bfd_link_info *) inf;
8289 htab = elf_aarch64_hash_table (info);
8291 eh = (struct elf_aarch64_link_hash_entry *) h;
8293 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
8294 here if it is defined and referenced in a non-shared object. */
8295 if (h->type == STT_GNU_IFUNC
8297 return _bfd_elf_allocate_ifunc_dyn_relocs (info, h,
8300 htab->plt_entry_size,
8301 htab->plt_header_size,
8307 /* Allocate space in .plt, .got and associated reloc sections for
8308 local dynamic relocs. */
8311 elfNN_aarch64_allocate_local_dynrelocs (void **slot, void *inf)
8313 struct elf_link_hash_entry *h
8314 = (struct elf_link_hash_entry *) *slot;
8316 if (h->type != STT_GNU_IFUNC
8320 || h->root.type != bfd_link_hash_defined)
8323 return elfNN_aarch64_allocate_dynrelocs (h, inf);
8326 /* Allocate space in .plt, .got and associated reloc sections for
8327 local ifunc dynamic relocs. */
8330 elfNN_aarch64_allocate_local_ifunc_dynrelocs (void **slot, void *inf)
8332 struct elf_link_hash_entry *h
8333 = (struct elf_link_hash_entry *) *slot;
8335 if (h->type != STT_GNU_IFUNC
8339 || h->root.type != bfd_link_hash_defined)
8342 return elfNN_aarch64_allocate_ifunc_dynrelocs (h, inf);
8345 /* Find any dynamic relocs that apply to read-only sections. */
8348 aarch64_readonly_dynrelocs (struct elf_link_hash_entry * h, void * inf)
8350 struct elf_aarch64_link_hash_entry * eh;
8351 struct elf_dyn_relocs * p;
8353 eh = (struct elf_aarch64_link_hash_entry *) h;
8354 for (p = eh->dyn_relocs; p != NULL; p = p->next)
8356 asection *s = p->sec;
8358 if (s != NULL && (s->flags & SEC_READONLY) != 0)
8360 struct bfd_link_info *info = (struct bfd_link_info *) inf;
8362 info->flags |= DF_TEXTREL;
8364 /* Not an error, just cut short the traversal. */
8371 /* This is the most important function of all . Innocuosly named
8375 elfNN_aarch64_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
8376 struct bfd_link_info *info)
8378 struct elf_aarch64_link_hash_table *htab;
8384 htab = elf_aarch64_hash_table ((info));
8385 dynobj = htab->root.dynobj;
8387 BFD_ASSERT (dynobj != NULL);
8389 if (htab->root.dynamic_sections_created)
8391 if (bfd_link_executable (info) && !info->nointerp)
8393 s = bfd_get_linker_section (dynobj, ".interp");
8396 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
8397 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
8401 /* Set up .got offsets for local syms, and space for local dynamic
8403 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
8405 struct elf_aarch64_local_symbol *locals = NULL;
8406 Elf_Internal_Shdr *symtab_hdr;
8410 if (!is_aarch64_elf (ibfd))
8413 for (s = ibfd->sections; s != NULL; s = s->next)
8415 struct elf_dyn_relocs *p;
8417 for (p = (struct elf_dyn_relocs *)
8418 (elf_section_data (s)->local_dynrel); p != NULL; p = p->next)
8420 if (!bfd_is_abs_section (p->sec)
8421 && bfd_is_abs_section (p->sec->output_section))
8423 /* Input section has been discarded, either because
8424 it is a copy of a linkonce section or due to
8425 linker script /DISCARD/, so we'll be discarding
8428 else if (p->count != 0)
8430 srel = elf_section_data (p->sec)->sreloc;
8431 srel->size += p->count * RELOC_SIZE (htab);
8432 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
8433 info->flags |= DF_TEXTREL;
8438 locals = elf_aarch64_locals (ibfd);
8442 symtab_hdr = &elf_symtab_hdr (ibfd);
8443 srel = htab->root.srelgot;
8444 for (i = 0; i < symtab_hdr->sh_info; i++)
8446 locals[i].got_offset = (bfd_vma) - 1;
8447 locals[i].tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
8448 if (locals[i].got_refcount > 0)
8450 unsigned got_type = locals[i].got_type;
8451 if (got_type & GOT_TLSDESC_GD)
8453 locals[i].tlsdesc_got_jump_table_offset =
8454 (htab->root.sgotplt->size
8455 - aarch64_compute_jump_table_size (htab));
8456 htab->root.sgotplt->size += GOT_ENTRY_SIZE * 2;
8457 locals[i].got_offset = (bfd_vma) - 2;
8460 if (got_type & GOT_TLS_GD)
8462 locals[i].got_offset = htab->root.sgot->size;
8463 htab->root.sgot->size += GOT_ENTRY_SIZE * 2;
8466 if (got_type & GOT_TLS_IE
8467 || got_type & GOT_NORMAL)
8469 locals[i].got_offset = htab->root.sgot->size;
8470 htab->root.sgot->size += GOT_ENTRY_SIZE;
8473 if (got_type == GOT_UNKNOWN)
8477 if (bfd_link_pic (info))
8479 if (got_type & GOT_TLSDESC_GD)
8481 htab->root.srelplt->size += RELOC_SIZE (htab);
8482 /* Note RELOC_COUNT not incremented here! */
8483 htab->tlsdesc_plt = (bfd_vma) - 1;
8486 if (got_type & GOT_TLS_GD)
8487 htab->root.srelgot->size += RELOC_SIZE (htab) * 2;
8489 if (got_type & GOT_TLS_IE
8490 || got_type & GOT_NORMAL)
8491 htab->root.srelgot->size += RELOC_SIZE (htab);
8496 locals[i].got_refcount = (bfd_vma) - 1;
8502 /* Allocate global sym .plt and .got entries, and space for global
8503 sym dynamic relocs. */
8504 elf_link_hash_traverse (&htab->root, elfNN_aarch64_allocate_dynrelocs,
8507 /* Allocate global ifunc sym .plt and .got entries, and space for global
8508 ifunc sym dynamic relocs. */
8509 elf_link_hash_traverse (&htab->root, elfNN_aarch64_allocate_ifunc_dynrelocs,
8512 /* Allocate .plt and .got entries, and space for local symbols. */
8513 htab_traverse (htab->loc_hash_table,
8514 elfNN_aarch64_allocate_local_dynrelocs,
8517 /* Allocate .plt and .got entries, and space for local ifunc symbols. */
8518 htab_traverse (htab->loc_hash_table,
8519 elfNN_aarch64_allocate_local_ifunc_dynrelocs,
8522 /* For every jump slot reserved in the sgotplt, reloc_count is
8523 incremented. However, when we reserve space for TLS descriptors,
8524 it's not incremented, so in order to compute the space reserved
8525 for them, it suffices to multiply the reloc count by the jump
8528 if (htab->root.srelplt)
8529 htab->sgotplt_jump_table_size = aarch64_compute_jump_table_size (htab);
8531 if (htab->tlsdesc_plt)
8533 if (htab->root.splt->size == 0)
8534 htab->root.splt->size += PLT_ENTRY_SIZE;
8536 htab->tlsdesc_plt = htab->root.splt->size;
8537 htab->root.splt->size += PLT_TLSDESC_ENTRY_SIZE;
8539 /* If we're not using lazy TLS relocations, don't generate the
8540 GOT entry required. */
8541 if (!(info->flags & DF_BIND_NOW))
8543 htab->dt_tlsdesc_got = htab->root.sgot->size;
8544 htab->root.sgot->size += GOT_ENTRY_SIZE;
8548 /* Init mapping symbols information to use later to distingush between
8549 code and data while scanning for errata. */
8550 if (htab->fix_erratum_835769 || htab->fix_erratum_843419)
8551 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
8553 if (!is_aarch64_elf (ibfd))
8555 bfd_elfNN_aarch64_init_maps (ibfd);
8558 /* We now have determined the sizes of the various dynamic sections.
8559 Allocate memory for them. */
8561 for (s = dynobj->sections; s != NULL; s = s->next)
8563 if ((s->flags & SEC_LINKER_CREATED) == 0)
8566 if (s == htab->root.splt
8567 || s == htab->root.sgot
8568 || s == htab->root.sgotplt
8569 || s == htab->root.iplt
8570 || s == htab->root.igotplt
8571 || s == htab->root.sdynbss
8572 || s == htab->root.sdynrelro)
8574 /* Strip this section if we don't need it; see the
8577 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
8579 if (s->size != 0 && s != htab->root.srelplt)
8582 /* We use the reloc_count field as a counter if we need
8583 to copy relocs into the output file. */
8584 if (s != htab->root.srelplt)
8589 /* It's not one of our sections, so don't allocate space. */
8595 /* If we don't need this section, strip it from the
8596 output file. This is mostly to handle .rela.bss and
8597 .rela.plt. We must create both sections in
8598 create_dynamic_sections, because they must be created
8599 before the linker maps input sections to output
8600 sections. The linker does that before
8601 adjust_dynamic_symbol is called, and it is that
8602 function which decides whether anything needs to go
8603 into these sections. */
8604 s->flags |= SEC_EXCLUDE;
8608 if ((s->flags & SEC_HAS_CONTENTS) == 0)
8611 /* Allocate memory for the section contents. We use bfd_zalloc
8612 here in case unused entries are not reclaimed before the
8613 section's contents are written out. This should not happen,
8614 but this way if it does, we get a R_AARCH64_NONE reloc instead
8616 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
8617 if (s->contents == NULL)
8621 if (htab->root.dynamic_sections_created)
8623 /* Add some entries to the .dynamic section. We fill in the
8624 values later, in elfNN_aarch64_finish_dynamic_sections, but we
8625 must add the entries now so that we get the correct size for
8626 the .dynamic section. The DT_DEBUG entry is filled in by the
8627 dynamic linker and used by the debugger. */
8628 #define add_dynamic_entry(TAG, VAL) \
8629 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
8631 if (bfd_link_executable (info))
8633 if (!add_dynamic_entry (DT_DEBUG, 0))
8637 if (htab->root.splt->size != 0)
8639 if (!add_dynamic_entry (DT_PLTGOT, 0)
8640 || !add_dynamic_entry (DT_PLTRELSZ, 0)
8641 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
8642 || !add_dynamic_entry (DT_JMPREL, 0))
8645 if (htab->tlsdesc_plt
8646 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
8647 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
8653 if (!add_dynamic_entry (DT_RELA, 0)
8654 || !add_dynamic_entry (DT_RELASZ, 0)
8655 || !add_dynamic_entry (DT_RELAENT, RELOC_SIZE (htab)))
8658 /* If any dynamic relocs apply to a read-only section,
8659 then we need a DT_TEXTREL entry. */
8660 if ((info->flags & DF_TEXTREL) == 0)
8661 elf_link_hash_traverse (& htab->root, aarch64_readonly_dynrelocs,
8664 if ((info->flags & DF_TEXTREL) != 0)
8666 if (!add_dynamic_entry (DT_TEXTREL, 0))
8671 #undef add_dynamic_entry
8677 elf_aarch64_update_plt_entry (bfd *output_bfd,
8678 bfd_reloc_code_real_type r_type,
8679 bfd_byte *plt_entry, bfd_vma value)
8681 reloc_howto_type *howto = elfNN_aarch64_howto_from_bfd_reloc (r_type);
8683 _bfd_aarch64_elf_put_addend (output_bfd, plt_entry, r_type, howto, value);
8687 elfNN_aarch64_create_small_pltn_entry (struct elf_link_hash_entry *h,
8688 struct elf_aarch64_link_hash_table
8689 *htab, bfd *output_bfd,
8690 struct bfd_link_info *info)
8692 bfd_byte *plt_entry;
8695 bfd_vma gotplt_entry_address;
8696 bfd_vma plt_entry_address;
8697 Elf_Internal_Rela rela;
8699 asection *plt, *gotplt, *relplt;
8701 /* When building a static executable, use .iplt, .igot.plt and
8702 .rela.iplt sections for STT_GNU_IFUNC symbols. */
8703 if (htab->root.splt != NULL)
8705 plt = htab->root.splt;
8706 gotplt = htab->root.sgotplt;
8707 relplt = htab->root.srelplt;
8711 plt = htab->root.iplt;
8712 gotplt = htab->root.igotplt;
8713 relplt = htab->root.irelplt;
8716 /* Get the index in the procedure linkage table which
8717 corresponds to this symbol. This is the index of this symbol
8718 in all the symbols for which we are making plt entries. The
8719 first entry in the procedure linkage table is reserved.
8721 Get the offset into the .got table of the entry that
8722 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
8723 bytes. The first three are reserved for the dynamic linker.
8725 For static executables, we don't reserve anything. */
8727 if (plt == htab->root.splt)
8729 plt_index = (h->plt.offset - htab->plt_header_size) / htab->plt_entry_size;
8730 got_offset = (plt_index + 3) * GOT_ENTRY_SIZE;
8734 plt_index = h->plt.offset / htab->plt_entry_size;
8735 got_offset = plt_index * GOT_ENTRY_SIZE;
8738 plt_entry = plt->contents + h->plt.offset;
8739 plt_entry_address = plt->output_section->vma
8740 + plt->output_offset + h->plt.offset;
8741 gotplt_entry_address = gotplt->output_section->vma +
8742 gotplt->output_offset + got_offset;
8744 /* Copy in the boiler-plate for the PLTn entry. */
8745 memcpy (plt_entry, elfNN_aarch64_small_plt_entry, PLT_SMALL_ENTRY_SIZE);
8747 /* Fill in the top 21 bits for this: ADRP x16, PLT_GOT + n * 8.
8748 ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
8749 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADR_HI21_PCREL,
8751 PG (gotplt_entry_address) -
8752 PG (plt_entry_address));
8754 /* Fill in the lo12 bits for the load from the pltgot. */
8755 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_LDSTNN_LO12,
8757 PG_OFFSET (gotplt_entry_address));
8759 /* Fill in the lo12 bits for the add from the pltgot entry. */
8760 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADD_LO12,
8762 PG_OFFSET (gotplt_entry_address));
8764 /* All the GOTPLT Entries are essentially initialized to PLT0. */
8765 bfd_put_NN (output_bfd,
8766 plt->output_section->vma + plt->output_offset,
8767 gotplt->contents + got_offset);
8769 rela.r_offset = gotplt_entry_address;
8771 if (h->dynindx == -1
8772 || ((bfd_link_executable (info)
8773 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8775 && h->type == STT_GNU_IFUNC))
8777 /* If an STT_GNU_IFUNC symbol is locally defined, generate
8778 R_AARCH64_IRELATIVE instead of R_AARCH64_JUMP_SLOT. */
8779 rela.r_info = ELFNN_R_INFO (0, AARCH64_R (IRELATIVE));
8780 rela.r_addend = (h->root.u.def.value
8781 + h->root.u.def.section->output_section->vma
8782 + h->root.u.def.section->output_offset);
8786 /* Fill in the entry in the .rela.plt section. */
8787 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (JUMP_SLOT));
8791 /* Compute the relocation entry to used based on PLT index and do
8792 not adjust reloc_count. The reloc_count has already been adjusted
8793 to account for this entry. */
8794 loc = relplt->contents + plt_index * RELOC_SIZE (htab);
8795 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
8798 /* Size sections even though they're not dynamic. We use it to setup
8799 _TLS_MODULE_BASE_, if needed. */
8802 elfNN_aarch64_always_size_sections (bfd *output_bfd,
8803 struct bfd_link_info *info)
8807 if (bfd_link_relocatable (info))
8810 tls_sec = elf_hash_table (info)->tls_sec;
8814 struct elf_link_hash_entry *tlsbase;
8816 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
8817 "_TLS_MODULE_BASE_", TRUE, TRUE, FALSE);
8821 struct bfd_link_hash_entry *h = NULL;
8822 const struct elf_backend_data *bed =
8823 get_elf_backend_data (output_bfd);
8825 if (!(_bfd_generic_link_add_one_symbol
8826 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
8827 tls_sec, 0, NULL, FALSE, bed->collect, &h)))
8830 tlsbase->type = STT_TLS;
8831 tlsbase = (struct elf_link_hash_entry *) h;
8832 tlsbase->def_regular = 1;
8833 tlsbase->other = STV_HIDDEN;
8834 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
8841 /* Finish up dynamic symbol handling. We set the contents of various
8842 dynamic sections here. */
8845 elfNN_aarch64_finish_dynamic_symbol (bfd *output_bfd,
8846 struct bfd_link_info *info,
8847 struct elf_link_hash_entry *h,
8848 Elf_Internal_Sym *sym)
8850 struct elf_aarch64_link_hash_table *htab;
8851 htab = elf_aarch64_hash_table (info);
8853 if (h->plt.offset != (bfd_vma) - 1)
8855 asection *plt, *gotplt, *relplt;
8857 /* This symbol has an entry in the procedure linkage table. Set
8860 /* When building a static executable, use .iplt, .igot.plt and
8861 .rela.iplt sections for STT_GNU_IFUNC symbols. */
8862 if (htab->root.splt != NULL)
8864 plt = htab->root.splt;
8865 gotplt = htab->root.sgotplt;
8866 relplt = htab->root.srelplt;
8870 plt = htab->root.iplt;
8871 gotplt = htab->root.igotplt;
8872 relplt = htab->root.irelplt;
8875 /* This symbol has an entry in the procedure linkage table. Set
8877 if ((h->dynindx == -1
8878 && !((h->forced_local || bfd_link_executable (info))
8880 && h->type == STT_GNU_IFUNC))
8886 elfNN_aarch64_create_small_pltn_entry (h, htab, output_bfd, info);
8887 if (!h->def_regular)
8889 /* Mark the symbol as undefined, rather than as defined in
8890 the .plt section. */
8891 sym->st_shndx = SHN_UNDEF;
8892 /* If the symbol is weak we need to clear the value.
8893 Otherwise, the PLT entry would provide a definition for
8894 the symbol even if the symbol wasn't defined anywhere,
8895 and so the symbol would never be NULL. Leave the value if
8896 there were any relocations where pointer equality matters
8897 (this is a clue for the dynamic linker, to make function
8898 pointer comparisons work between an application and shared
8900 if (!h->ref_regular_nonweak || !h->pointer_equality_needed)
8905 if (h->got.offset != (bfd_vma) - 1
8906 && elf_aarch64_hash_entry (h)->got_type == GOT_NORMAL)
8908 Elf_Internal_Rela rela;
8911 /* This symbol has an entry in the global offset table. Set it
8913 if (htab->root.sgot == NULL || htab->root.srelgot == NULL)
8916 rela.r_offset = (htab->root.sgot->output_section->vma
8917 + htab->root.sgot->output_offset
8918 + (h->got.offset & ~(bfd_vma) 1));
8921 && h->type == STT_GNU_IFUNC)
8923 if (bfd_link_pic (info))
8925 /* Generate R_AARCH64_GLOB_DAT. */
8932 if (!h->pointer_equality_needed)
8935 /* For non-shared object, we can't use .got.plt, which
8936 contains the real function address if we need pointer
8937 equality. We load the GOT entry with the PLT entry. */
8938 plt = htab->root.splt ? htab->root.splt : htab->root.iplt;
8939 bfd_put_NN (output_bfd, (plt->output_section->vma
8940 + plt->output_offset
8942 htab->root.sgot->contents
8943 + (h->got.offset & ~(bfd_vma) 1));
8947 else if (bfd_link_pic (info) && SYMBOL_REFERENCES_LOCAL (info, h))
8949 if (!h->def_regular)
8952 BFD_ASSERT ((h->got.offset & 1) != 0);
8953 rela.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
8954 rela.r_addend = (h->root.u.def.value
8955 + h->root.u.def.section->output_section->vma
8956 + h->root.u.def.section->output_offset);
8961 BFD_ASSERT ((h->got.offset & 1) == 0);
8962 bfd_put_NN (output_bfd, (bfd_vma) 0,
8963 htab->root.sgot->contents + h->got.offset);
8964 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (GLOB_DAT));
8968 loc = htab->root.srelgot->contents;
8969 loc += htab->root.srelgot->reloc_count++ * RELOC_SIZE (htab);
8970 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
8975 Elf_Internal_Rela rela;
8979 /* This symbol needs a copy reloc. Set it up. */
8980 if (h->dynindx == -1
8981 || (h->root.type != bfd_link_hash_defined
8982 && h->root.type != bfd_link_hash_defweak)
8983 || htab->root.srelbss == NULL)
8986 rela.r_offset = (h->root.u.def.value
8987 + h->root.u.def.section->output_section->vma
8988 + h->root.u.def.section->output_offset);
8989 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (COPY));
8991 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
8992 s = htab->root.sreldynrelro;
8994 s = htab->root.srelbss;
8995 loc = s->contents + s->reloc_count++ * RELOC_SIZE (htab);
8996 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
8999 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. SYM may
9000 be NULL for local symbols. */
9002 && (h == elf_hash_table (info)->hdynamic
9003 || h == elf_hash_table (info)->hgot))
9004 sym->st_shndx = SHN_ABS;
9009 /* Finish up local dynamic symbol handling. We set the contents of
9010 various dynamic sections here. */
9013 elfNN_aarch64_finish_local_dynamic_symbol (void **slot, void *inf)
9015 struct elf_link_hash_entry *h
9016 = (struct elf_link_hash_entry *) *slot;
9017 struct bfd_link_info *info
9018 = (struct bfd_link_info *) inf;
9020 return elfNN_aarch64_finish_dynamic_symbol (info->output_bfd,
9025 elfNN_aarch64_init_small_plt0_entry (bfd *output_bfd ATTRIBUTE_UNUSED,
9026 struct elf_aarch64_link_hash_table
9029 /* Fill in PLT0. Fixme:RR Note this doesn't distinguish between
9030 small and large plts and at the minute just generates
9033 /* PLT0 of the small PLT looks like this in ELF64 -
9034 stp x16, x30, [sp, #-16]! // Save the reloc and lr on stack.
9035 adrp x16, PLT_GOT + 16 // Get the page base of the GOTPLT
9036 ldr x17, [x16, #:lo12:PLT_GOT+16] // Load the address of the
9038 add x16, x16, #:lo12:PLT_GOT+16 // Load the lo12 bits of the
9039 // GOTPLT entry for this.
9041 PLT0 will be slightly different in ELF32 due to different got entry
9043 bfd_vma plt_got_2nd_ent; /* Address of GOT[2]. */
9047 memcpy (htab->root.splt->contents, elfNN_aarch64_small_plt0_entry,
9049 elf_section_data (htab->root.splt->output_section)->this_hdr.sh_entsize =
9052 plt_got_2nd_ent = (htab->root.sgotplt->output_section->vma
9053 + htab->root.sgotplt->output_offset
9054 + GOT_ENTRY_SIZE * 2);
9056 plt_base = htab->root.splt->output_section->vma +
9057 htab->root.splt->output_offset;
9059 /* Fill in the top 21 bits for this: ADRP x16, PLT_GOT + n * 8.
9060 ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
9061 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9062 htab->root.splt->contents + 4,
9063 PG (plt_got_2nd_ent) - PG (plt_base + 4));
9065 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_LDSTNN_LO12,
9066 htab->root.splt->contents + 8,
9067 PG_OFFSET (plt_got_2nd_ent));
9069 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADD_LO12,
9070 htab->root.splt->contents + 12,
9071 PG_OFFSET (plt_got_2nd_ent));
9075 elfNN_aarch64_finish_dynamic_sections (bfd *output_bfd,
9076 struct bfd_link_info *info)
9078 struct elf_aarch64_link_hash_table *htab;
9082 htab = elf_aarch64_hash_table (info);
9083 dynobj = htab->root.dynobj;
9084 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
9086 if (htab->root.dynamic_sections_created)
9088 ElfNN_External_Dyn *dyncon, *dynconend;
9090 if (sdyn == NULL || htab->root.sgot == NULL)
9093 dyncon = (ElfNN_External_Dyn *) sdyn->contents;
9094 dynconend = (ElfNN_External_Dyn *) (sdyn->contents + sdyn->size);
9095 for (; dyncon < dynconend; dyncon++)
9097 Elf_Internal_Dyn dyn;
9100 bfd_elfNN_swap_dyn_in (dynobj, dyncon, &dyn);
9108 s = htab->root.sgotplt;
9109 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9113 s = htab->root.srelplt;
9114 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9118 s = htab->root.srelplt;
9119 dyn.d_un.d_val = s->size;
9122 case DT_TLSDESC_PLT:
9123 s = htab->root.splt;
9124 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
9125 + htab->tlsdesc_plt;
9128 case DT_TLSDESC_GOT:
9129 s = htab->root.sgot;
9130 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
9131 + htab->dt_tlsdesc_got;
9135 bfd_elfNN_swap_dyn_out (output_bfd, &dyn, dyncon);
9140 /* Fill in the special first entry in the procedure linkage table. */
9141 if (htab->root.splt && htab->root.splt->size > 0)
9143 elfNN_aarch64_init_small_plt0_entry (output_bfd, htab);
9145 elf_section_data (htab->root.splt->output_section)->
9146 this_hdr.sh_entsize = htab->plt_entry_size;
9149 if (htab->tlsdesc_plt)
9151 bfd_put_NN (output_bfd, (bfd_vma) 0,
9152 htab->root.sgot->contents + htab->dt_tlsdesc_got);
9154 memcpy (htab->root.splt->contents + htab->tlsdesc_plt,
9155 elfNN_aarch64_tlsdesc_small_plt_entry,
9156 sizeof (elfNN_aarch64_tlsdesc_small_plt_entry));
9159 bfd_vma adrp1_addr =
9160 htab->root.splt->output_section->vma
9161 + htab->root.splt->output_offset + htab->tlsdesc_plt + 4;
9163 bfd_vma adrp2_addr = adrp1_addr + 4;
9166 htab->root.sgot->output_section->vma
9167 + htab->root.sgot->output_offset;
9169 bfd_vma pltgot_addr =
9170 htab->root.sgotplt->output_section->vma
9171 + htab->root.sgotplt->output_offset;
9173 bfd_vma dt_tlsdesc_got = got_addr + htab->dt_tlsdesc_got;
9175 bfd_byte *plt_entry =
9176 htab->root.splt->contents + htab->tlsdesc_plt;
9178 /* adrp x2, DT_TLSDESC_GOT */
9179 elf_aarch64_update_plt_entry (output_bfd,
9180 BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9182 (PG (dt_tlsdesc_got)
9183 - PG (adrp1_addr)));
9186 elf_aarch64_update_plt_entry (output_bfd,
9187 BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9190 - PG (adrp2_addr)));
9192 /* ldr x2, [x2, #0] */
9193 elf_aarch64_update_plt_entry (output_bfd,
9194 BFD_RELOC_AARCH64_LDSTNN_LO12,
9196 PG_OFFSET (dt_tlsdesc_got));
9199 elf_aarch64_update_plt_entry (output_bfd,
9200 BFD_RELOC_AARCH64_ADD_LO12,
9202 PG_OFFSET (pltgot_addr));
9207 if (htab->root.sgotplt)
9209 if (bfd_is_abs_section (htab->root.sgotplt->output_section))
9212 (_("discarded output section: `%A'"), htab->root.sgotplt);
9216 /* Fill in the first three entries in the global offset table. */
9217 if (htab->root.sgotplt->size > 0)
9219 bfd_put_NN (output_bfd, (bfd_vma) 0, htab->root.sgotplt->contents);
9221 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
9222 bfd_put_NN (output_bfd,
9224 htab->root.sgotplt->contents + GOT_ENTRY_SIZE);
9225 bfd_put_NN (output_bfd,
9227 htab->root.sgotplt->contents + GOT_ENTRY_SIZE * 2);
9230 if (htab->root.sgot)
9232 if (htab->root.sgot->size > 0)
9235 sdyn ? sdyn->output_section->vma + sdyn->output_offset : 0;
9236 bfd_put_NN (output_bfd, addr, htab->root.sgot->contents);
9240 elf_section_data (htab->root.sgotplt->output_section)->
9241 this_hdr.sh_entsize = GOT_ENTRY_SIZE;
9244 if (htab->root.sgot && htab->root.sgot->size > 0)
9245 elf_section_data (htab->root.sgot->output_section)->this_hdr.sh_entsize
9248 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
9249 htab_traverse (htab->loc_hash_table,
9250 elfNN_aarch64_finish_local_dynamic_symbol,
9256 /* Return address for Ith PLT stub in section PLT, for relocation REL
9257 or (bfd_vma) -1 if it should not be included. */
9260 elfNN_aarch64_plt_sym_val (bfd_vma i, const asection *plt,
9261 const arelent *rel ATTRIBUTE_UNUSED)
9263 return plt->vma + PLT_ENTRY_SIZE + i * PLT_SMALL_ENTRY_SIZE;
9266 /* Returns TRUE if NAME is an AArch64 mapping symbol.
9267 The ARM ELF standard defines $x (for A64 code) and $d (for data).
9268 It also allows a period initiated suffix to be added to the symbol, ie:
9269 "$[adtx]\.[:sym_char]+". */
9272 is_aarch64_mapping_symbol (const char * name)
9274 return name != NULL /* Paranoia. */
9275 && name[0] == '$' /* Note: if objcopy --prefix-symbols has been used then
9276 the mapping symbols could have acquired a prefix.
9277 We do not support this here, since such symbols no
9278 longer conform to the ARM ELF ABI. */
9279 && (name[1] == 'd' || name[1] == 'x')
9280 && (name[2] == 0 || name[2] == '.');
9281 /* FIXME: Strictly speaking the symbol is only a valid mapping symbol if
9282 any characters that follow the period are legal characters for the body
9283 of a symbol's name. For now we just assume that this is the case. */
9286 /* Make sure that mapping symbols in object files are not removed via the
9287 "strip --strip-unneeded" tool. These symbols might needed in order to
9288 correctly generate linked files. Once an object file has been linked,
9289 it should be safe to remove them. */
9292 elfNN_aarch64_backend_symbol_processing (bfd *abfd, asymbol *sym)
9294 if (((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
9295 && sym->section != bfd_abs_section_ptr
9296 && is_aarch64_mapping_symbol (sym->name))
9297 sym->flags |= BSF_KEEP;
9301 /* We use this so we can override certain functions
9302 (though currently we don't). */
9304 const struct elf_size_info elfNN_aarch64_size_info =
9306 sizeof (ElfNN_External_Ehdr),
9307 sizeof (ElfNN_External_Phdr),
9308 sizeof (ElfNN_External_Shdr),
9309 sizeof (ElfNN_External_Rel),
9310 sizeof (ElfNN_External_Rela),
9311 sizeof (ElfNN_External_Sym),
9312 sizeof (ElfNN_External_Dyn),
9313 sizeof (Elf_External_Note),
9314 4, /* Hash table entry size. */
9315 1, /* Internal relocs per external relocs. */
9316 ARCH_SIZE, /* Arch size. */
9317 LOG_FILE_ALIGN, /* Log_file_align. */
9318 ELFCLASSNN, EV_CURRENT,
9319 bfd_elfNN_write_out_phdrs,
9320 bfd_elfNN_write_shdrs_and_ehdr,
9321 bfd_elfNN_checksum_contents,
9322 bfd_elfNN_write_relocs,
9323 bfd_elfNN_swap_symbol_in,
9324 bfd_elfNN_swap_symbol_out,
9325 bfd_elfNN_slurp_reloc_table,
9326 bfd_elfNN_slurp_symbol_table,
9327 bfd_elfNN_swap_dyn_in,
9328 bfd_elfNN_swap_dyn_out,
9329 bfd_elfNN_swap_reloc_in,
9330 bfd_elfNN_swap_reloc_out,
9331 bfd_elfNN_swap_reloca_in,
9332 bfd_elfNN_swap_reloca_out
9335 #define ELF_ARCH bfd_arch_aarch64
9336 #define ELF_MACHINE_CODE EM_AARCH64
9337 #define ELF_MAXPAGESIZE 0x10000
9338 #define ELF_MINPAGESIZE 0x1000
9339 #define ELF_COMMONPAGESIZE 0x1000
9341 #define bfd_elfNN_close_and_cleanup \
9342 elfNN_aarch64_close_and_cleanup
9344 #define bfd_elfNN_bfd_free_cached_info \
9345 elfNN_aarch64_bfd_free_cached_info
9347 #define bfd_elfNN_bfd_is_target_special_symbol \
9348 elfNN_aarch64_is_target_special_symbol
9350 #define bfd_elfNN_bfd_link_hash_table_create \
9351 elfNN_aarch64_link_hash_table_create
9353 #define bfd_elfNN_bfd_merge_private_bfd_data \
9354 elfNN_aarch64_merge_private_bfd_data
9356 #define bfd_elfNN_bfd_print_private_bfd_data \
9357 elfNN_aarch64_print_private_bfd_data
9359 #define bfd_elfNN_bfd_reloc_type_lookup \
9360 elfNN_aarch64_reloc_type_lookup
9362 #define bfd_elfNN_bfd_reloc_name_lookup \
9363 elfNN_aarch64_reloc_name_lookup
9365 #define bfd_elfNN_bfd_set_private_flags \
9366 elfNN_aarch64_set_private_flags
9368 #define bfd_elfNN_find_inliner_info \
9369 elfNN_aarch64_find_inliner_info
9371 #define bfd_elfNN_find_nearest_line \
9372 elfNN_aarch64_find_nearest_line
9374 #define bfd_elfNN_mkobject \
9375 elfNN_aarch64_mkobject
9377 #define bfd_elfNN_new_section_hook \
9378 elfNN_aarch64_new_section_hook
9380 #define elf_backend_adjust_dynamic_symbol \
9381 elfNN_aarch64_adjust_dynamic_symbol
9383 #define elf_backend_always_size_sections \
9384 elfNN_aarch64_always_size_sections
9386 #define elf_backend_check_relocs \
9387 elfNN_aarch64_check_relocs
9389 #define elf_backend_copy_indirect_symbol \
9390 elfNN_aarch64_copy_indirect_symbol
9392 /* Create .dynbss, and .rela.bss sections in DYNOBJ, and set up shortcuts
9393 to them in our hash. */
9394 #define elf_backend_create_dynamic_sections \
9395 elfNN_aarch64_create_dynamic_sections
9397 #define elf_backend_init_index_section \
9398 _bfd_elf_init_2_index_sections
9400 #define elf_backend_finish_dynamic_sections \
9401 elfNN_aarch64_finish_dynamic_sections
9403 #define elf_backend_finish_dynamic_symbol \
9404 elfNN_aarch64_finish_dynamic_symbol
9406 #define elf_backend_gc_sweep_hook \
9407 elfNN_aarch64_gc_sweep_hook
9409 #define elf_backend_object_p \
9410 elfNN_aarch64_object_p
9412 #define elf_backend_output_arch_local_syms \
9413 elfNN_aarch64_output_arch_local_syms
9415 #define elf_backend_plt_sym_val \
9416 elfNN_aarch64_plt_sym_val
9418 #define elf_backend_post_process_headers \
9419 elfNN_aarch64_post_process_headers
9421 #define elf_backend_relocate_section \
9422 elfNN_aarch64_relocate_section
9424 #define elf_backend_reloc_type_class \
9425 elfNN_aarch64_reloc_type_class
9427 #define elf_backend_section_from_shdr \
9428 elfNN_aarch64_section_from_shdr
9430 #define elf_backend_size_dynamic_sections \
9431 elfNN_aarch64_size_dynamic_sections
9433 #define elf_backend_size_info \
9434 elfNN_aarch64_size_info
9436 #define elf_backend_write_section \
9437 elfNN_aarch64_write_section
9439 #define elf_backend_symbol_processing \
9440 elfNN_aarch64_backend_symbol_processing
9442 #define elf_backend_can_refcount 1
9443 #define elf_backend_can_gc_sections 1
9444 #define elf_backend_plt_readonly 1
9445 #define elf_backend_want_got_plt 1
9446 #define elf_backend_want_plt_sym 0
9447 #define elf_backend_want_dynrelro 1
9448 #define elf_backend_may_use_rel_p 0
9449 #define elf_backend_may_use_rela_p 1
9450 #define elf_backend_default_use_rela_p 1
9451 #define elf_backend_rela_normal 1
9452 #define elf_backend_dtrel_excludes_plt 1
9453 #define elf_backend_got_header_size (GOT_ENTRY_SIZE * 3)
9454 #define elf_backend_default_execstack 0
9455 #define elf_backend_extern_protected_data 1
9456 #define elf_backend_hash_symbol elf_aarch64_hash_symbol
9458 #undef elf_backend_obj_attrs_section
9459 #define elf_backend_obj_attrs_section ".ARM.attributes"
9461 #include "elfNN-target.h"
9463 /* CloudABI support. */
9465 #undef TARGET_LITTLE_SYM
9466 #define TARGET_LITTLE_SYM aarch64_elfNN_le_cloudabi_vec
9467 #undef TARGET_LITTLE_NAME
9468 #define TARGET_LITTLE_NAME "elfNN-littleaarch64-cloudabi"
9469 #undef TARGET_BIG_SYM
9470 #define TARGET_BIG_SYM aarch64_elfNN_be_cloudabi_vec
9471 #undef TARGET_BIG_NAME
9472 #define TARGET_BIG_NAME "elfNN-bigaarch64-cloudabi"
9475 #define ELF_OSABI ELFOSABI_CLOUDABI
9478 #define elfNN_bed elfNN_aarch64_cloudabi_bed
9480 #include "elfNN-target.h"