Automatic date update in version.in
[deliverable/binutils-gdb.git] / bfd / elfnn-aarch64.c
CommitLineData
cec5225b 1/* AArch64-specific support for NN-bit ELF.
6f2750fe 2 Copyright (C) 2009-2016 Free Software Foundation, Inc.
a06ea964
NC
3 Contributed by ARM Ltd.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
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.
11
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.
16
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/>. */
20
21/* Notes on implementation:
22
23 Thread Local Store (TLS)
24
25 Overview:
26
27 The implementation currently supports both traditional TLS and TLS
28 descriptors, but only general dynamic (GD).
29
30 For traditional TLS the assembler will present us with code
31 fragments of the form:
32
33 adrp x0, :tlsgd:foo
34 R_AARCH64_TLSGD_ADR_PAGE21(foo)
35 add x0, :tlsgd_lo12:foo
36 R_AARCH64_TLSGD_ADD_LO12_NC(foo)
37 bl __tls_get_addr
38 nop
39
40 For TLS descriptors the assembler will present us with code
41 fragments of the form:
42
418009c2 43 adrp x0, :tlsdesc:foo R_AARCH64_TLSDESC_ADR_PAGE21(foo)
a06ea964
NC
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)
46 .tlsdesccall foo
47 blr x1 R_AARCH64_TLSDESC_CALL(foo)
48
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.
52
a6bb11b2 53 The relocations R_AARCH64_TLSDESC_{ADR_PAGE21,LD64_LO12_NC,ADD_LO12_NC}
a06ea964
NC
54 against foo indicate that 'foo' is thread local and should be accessed
55 via a TLS descriptor mechanism.
56
57 The precise instruction sequence is only relevant from the
58 perspective of linker relaxation which is currently not implemented.
59
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.
64
65 In the traditional TLS mechanism, the double GOT entry is used to
66 provide the tls_index structure, containing module and offset
a6bb11b2 67 entries. The static linker places the relocation R_AARCH64_TLS_DTPMOD
a06ea964
NC
68 on the module entry. The loader will subsequently fixup this
69 relocation with the module identity.
70
71 For global traditional TLS symbols the static linker places an
a6bb11b2 72 R_AARCH64_TLS_DTPREL relocation on the offset entry. The loader
a06ea964
NC
73 will subsequently fixup the offset. For local TLS symbols the static
74 linker fixes up offset.
75
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.
80
81 Implementation:
82
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.
86
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.
92
93 The flow:
94
cec5225b 95 elfNN_aarch64_check_relocs()
a06ea964
NC
96
97 This function is invoked for each relocation.
98
99 The TLS relocations R_AARCH64_TLSGD_{ADR_PREL21,ADD_LO12_NC} and
a6bb11b2 100 R_AARCH64_TLSDESC_{ADR_PAGE21,LD64_LO12_NC,ADD_LO12_NC} are
a06ea964
NC
101 spotted. One time creation of local symbol data structures are
102 created when the first local symbol is seen.
103
104 The reference count for a symbol is incremented. The GOT type for
105 each symbol is marked as general dynamic.
106
cec5225b 107 elfNN_aarch64_allocate_dynrelocs ()
a06ea964
NC
108
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
113 for this symbol.
114
cec5225b 115 elfNN_aarch64_size_dynamic_sections ()
a06ea964
NC
116
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.
121
cec5225b 122 elfNN_aarch64_relocate_section ()
a06ea964 123
cec5225b 124 Calls elfNN_aarch64_final_link_relocate ()
a06ea964
NC
125
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.
133
cec5225b 134 elfNN_aarch64_final_link_relocate ()
a06ea964
NC
135
136 Fixup the R_AARCH64_TLSGD_{ADR_PREL21, ADD_LO12_NC} relocations. */
137
138#include "sysdep.h"
139#include "bfd.h"
140#include "libiberty.h"
141#include "libbfd.h"
142#include "bfd_stdint.h"
143#include "elf-bfd.h"
144#include "bfdlink.h"
1419bbe5 145#include "objalloc.h"
a06ea964 146#include "elf/aarch64.h"
caed7120 147#include "elfxx-aarch64.h"
a06ea964 148
cec5225b
YZ
149#define ARCH_SIZE NN
150
151#if ARCH_SIZE == 64
152#define AARCH64_R(NAME) R_AARCH64_ ## NAME
153#define AARCH64_R_STR(NAME) "R_AARCH64_" #NAME
a6bb11b2
YZ
154#define HOWTO64(...) HOWTO (__VA_ARGS__)
155#define HOWTO32(...) EMPTY_HOWTO (0)
cec5225b
YZ
156#define LOG_FILE_ALIGN 3
157#endif
158
159#if ARCH_SIZE == 32
160#define AARCH64_R(NAME) R_AARCH64_P32_ ## NAME
161#define AARCH64_R_STR(NAME) "R_AARCH64_P32_" #NAME
a6bb11b2
YZ
162#define HOWTO64(...) EMPTY_HOWTO (0)
163#define HOWTO32(...) HOWTO (__VA_ARGS__)
cec5225b
YZ
164#define LOG_FILE_ALIGN 2
165#endif
166
a6bb11b2 167#define IS_AARCH64_TLS_RELOC(R_TYPE) \
4c0a9a6f
JW
168 ((R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC \
169 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21 \
3c12b054 170 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PREL21 \
3e8286c0 171 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC \
1aa66fb1 172 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G1 \
a6bb11b2 173 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 \
a6bb11b2 174 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC \
4c0a9a6f 175 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC \
a6bb11b2 176 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19 \
4c0a9a6f
JW
177 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC \
178 || (R_TYPE) == BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1 \
6ffe9a1b 179 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12 \
40fbed84 180 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12 \
753999c1 181 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC \
73f925cc 182 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC \
f69e4920 183 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21 \
77a69ff8 184 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21 \
07c9aa07
JW
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 \
6ffe9a1b
JW
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 \
a6bb11b2 198 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12 \
4c0a9a6f 199 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12 \
a6bb11b2 200 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC \
a6bb11b2
YZ
201 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0 \
202 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC \
4c0a9a6f
JW
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 \
a6bb11b2
YZ
206 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_DTPMOD \
207 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_DTPREL \
208 || (R_TYPE) == BFD_RELOC_AARCH64_TLS_TPREL \
a06ea964
NC
209 || IS_AARCH64_TLSDESC_RELOC ((R_TYPE)))
210
9331eea1 211#define IS_AARCH64_TLS_RELAX_RELOC(R_TYPE) \
0484b454
RL
212 ((R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD \
213 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC \
4af68b9c
JW
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 \
0484b454
RL
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 \
4af68b9c 223 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21 \
9331eea1
JW
224 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADR_PREL21 \
225 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC \
ac734732
RL
226 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC \
227 || (R_TYPE) == BFD_RELOC_AARCH64_TLSGD_MOVW_G1 \
9331eea1
JW
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 \
259364ad
JW
231 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC \
232 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21 \
4af68b9c 233 || (R_TYPE) == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21)
9331eea1 234
a6bb11b2 235#define IS_AARCH64_TLSDESC_RELOC(R_TYPE) \
4c0a9a6f
JW
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 \
a6bb11b2 239 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21 \
389b8029 240 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21 \
4c0a9a6f 241 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_CALL \
a6bb11b2 242 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC \
4c0a9a6f 243 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC \
a6bb11b2 244 || (R_TYPE) == BFD_RELOC_AARCH64_TLSDESC_LDR \
4c0a9a6f
JW
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)
a06ea964
NC
248
249#define ELIMINATE_COPY_RELOCS 0
250
a06ea964 251/* Return size of a relocation entry. HTAB is the bfd's
cec5225b
YZ
252 elf_aarch64_link_hash_entry. */
253#define RELOC_SIZE(HTAB) (sizeof (ElfNN_External_Rela))
a06ea964 254
cec5225b
YZ
255/* GOT Entry size - 8 bytes in ELF64 and 4 bytes in ELF32. */
256#define GOT_ENTRY_SIZE (ARCH_SIZE / 8)
a06ea964
NC
257#define PLT_ENTRY_SIZE (32)
258#define PLT_SMALL_ENTRY_SIZE (16)
259#define PLT_TLSDESC_ENTRY_SIZE (32)
260
a06ea964
NC
261/* Encoding of the nop instruction */
262#define INSN_NOP 0xd503201f
263
264#define aarch64_compute_jump_table_size(htab) \
265 (((htab)->root.srelplt == NULL) ? 0 \
266 : (htab)->root.srelplt->reloc_count * GOT_ENTRY_SIZE)
267
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
cec5225b
YZ
272 [x16,#-GOT_ENTRY_SIZE]. */
273static const bfd_byte elfNN_aarch64_small_plt0_entry[PLT_ENTRY_SIZE] =
a06ea964
NC
274{
275 0xf0, 0x7b, 0xbf, 0xa9, /* stp x16, x30, [sp, #-16]! */
276 0x10, 0x00, 0x00, 0x90, /* adrp x16, (GOT+16) */
caed7120 277#if ARCH_SIZE == 64
a06ea964
NC
278 0x11, 0x0A, 0x40, 0xf9, /* ldr x17, [x16, #PLT_GOT+0x10] */
279 0x10, 0x42, 0x00, 0x91, /* add x16, x16,#PLT_GOT+0x10 */
caed7120
YZ
280#else
281 0x11, 0x0A, 0x40, 0xb9, /* ldr w17, [x16, #PLT_GOT+0x8] */
282 0x10, 0x22, 0x00, 0x11, /* add w16, w16,#PLT_GOT+0x8 */
283#endif
a06ea964
NC
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 */
288};
289
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. */
cec5225b 293static const bfd_byte elfNN_aarch64_small_plt_entry[PLT_SMALL_ENTRY_SIZE] =
a06ea964
NC
294{
295 0x10, 0x00, 0x00, 0x90, /* adrp x16, PLTGOT + n * 8 */
caed7120 296#if ARCH_SIZE == 64
a06ea964
NC
297 0x11, 0x02, 0x40, 0xf9, /* ldr x17, [x16, PLTGOT + n * 8] */
298 0x10, 0x02, 0x00, 0x91, /* add x16, x16, :lo12:PLTGOT + n * 8 */
caed7120
YZ
299#else
300 0x11, 0x02, 0x40, 0xb9, /* ldr w17, [x16, PLTGOT + n * 4] */
301 0x10, 0x02, 0x00, 0x11, /* add w16, w16, :lo12:PLTGOT + n * 4 */
302#endif
a06ea964
NC
303 0x20, 0x02, 0x1f, 0xd6, /* br x17. */
304};
305
306static const bfd_byte
cec5225b 307elfNN_aarch64_tlsdesc_small_plt_entry[PLT_TLSDESC_ENTRY_SIZE] =
a06ea964
NC
308{
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 */
caed7120
YZ
312#if ARCH_SIZE == 64
313 0x42, 0x00, 0x40, 0xf9, /* ldr x2, [x2, #0] */
a06ea964 314 0x63, 0x00, 0x00, 0x91, /* add x3, x3, 0 */
caed7120
YZ
315#else
316 0x42, 0x00, 0x40, 0xb9, /* ldr w2, [x2, #0] */
317 0x63, 0x00, 0x00, 0x11, /* add w3, w3, 0 */
318#endif
319 0x40, 0x00, 0x1f, 0xd6, /* br x2 */
a06ea964
NC
320 0x1f, 0x20, 0x03, 0xd5, /* nop */
321 0x1f, 0x20, 0x03, 0xd5, /* nop */
322};
323
cec5225b
YZ
324#define elf_info_to_howto elfNN_aarch64_info_to_howto
325#define elf_info_to_howto_rel elfNN_aarch64_info_to_howto
a06ea964
NC
326
327#define AARCH64_ELF_ABI_VERSION 0
a06ea964
NC
328
329/* In case we're on a 32-bit machine, construct a 64-bit "-1" value. */
330#define ALL_ONES (~ (bfd_vma) 0)
331
a6bb11b2
YZ
332/* Indexed by the bfd interal reloc enumerators.
333 Therefore, the table needs to be synced with BFD_RELOC_AARCH64_*
334 in reloc.c. */
a06ea964 335
a6bb11b2 336static reloc_howto_type elfNN_aarch64_howto_table[] =
a06ea964 337{
a6bb11b2 338 EMPTY_HOWTO (0),
a06ea964 339
a6bb11b2 340 /* Basic data relocations. */
a06ea964 341
a6bb11b2
YZ
342#if ARCH_SIZE == 64
343 HOWTO (R_AARCH64_NULL, /* type */
a06ea964 344 0, /* rightshift */
6346d5ca 345 3, /* size (0 = byte, 1 = short, 2 = long) */
a6bb11b2 346 0, /* bitsize */
a06ea964
NC
347 FALSE, /* pc_relative */
348 0, /* bitpos */
349 complain_overflow_dont, /* complain_on_overflow */
350 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 351 "R_AARCH64_NULL", /* name */
a06ea964
NC
352 FALSE, /* partial_inplace */
353 0, /* src_mask */
a6bb11b2 354 0, /* dst_mask */
a06ea964 355 FALSE), /* pcrel_offset */
a6bb11b2
YZ
356#else
357 HOWTO (R_AARCH64_NONE, /* type */
a06ea964 358 0, /* rightshift */
6346d5ca 359 3, /* size (0 = byte, 1 = short, 2 = long) */
a06ea964
NC
360 0, /* bitsize */
361 FALSE, /* pc_relative */
362 0, /* bitpos */
363 complain_overflow_dont, /* complain_on_overflow */
364 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 365 "R_AARCH64_NONE", /* name */
a06ea964
NC
366 FALSE, /* partial_inplace */
367 0, /* src_mask */
368 0, /* dst_mask */
369 FALSE), /* pcrel_offset */
a6bb11b2 370#endif
a06ea964
NC
371
372 /* .xword: (S+A) */
a6bb11b2 373 HOWTO64 (AARCH64_R (ABS64), /* type */
a06ea964
NC
374 0, /* rightshift */
375 4, /* size (4 = long long) */
376 64, /* bitsize */
377 FALSE, /* pc_relative */
378 0, /* bitpos */
379 complain_overflow_unsigned, /* complain_on_overflow */
380 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 381 AARCH64_R_STR (ABS64), /* name */
a06ea964
NC
382 FALSE, /* partial_inplace */
383 ALL_ONES, /* src_mask */
384 ALL_ONES, /* dst_mask */
385 FALSE), /* pcrel_offset */
386
387 /* .word: (S+A) */
a6bb11b2 388 HOWTO (AARCH64_R (ABS32), /* type */
a06ea964
NC
389 0, /* rightshift */
390 2, /* size (0 = byte, 1 = short, 2 = long) */
391 32, /* bitsize */
392 FALSE, /* pc_relative */
393 0, /* bitpos */
394 complain_overflow_unsigned, /* complain_on_overflow */
395 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 396 AARCH64_R_STR (ABS32), /* name */
a06ea964
NC
397 FALSE, /* partial_inplace */
398 0xffffffff, /* src_mask */
399 0xffffffff, /* dst_mask */
400 FALSE), /* pcrel_offset */
401
402 /* .half: (S+A) */
a6bb11b2 403 HOWTO (AARCH64_R (ABS16), /* type */
a06ea964
NC
404 0, /* rightshift */
405 1, /* size (0 = byte, 1 = short, 2 = long) */
406 16, /* bitsize */
407 FALSE, /* pc_relative */
408 0, /* bitpos */
409 complain_overflow_unsigned, /* complain_on_overflow */
410 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 411 AARCH64_R_STR (ABS16), /* name */
a06ea964
NC
412 FALSE, /* partial_inplace */
413 0xffff, /* src_mask */
414 0xffff, /* dst_mask */
415 FALSE), /* pcrel_offset */
416
417 /* .xword: (S+A-P) */
a6bb11b2 418 HOWTO64 (AARCH64_R (PREL64), /* type */
a06ea964
NC
419 0, /* rightshift */
420 4, /* size (4 = long long) */
421 64, /* bitsize */
422 TRUE, /* pc_relative */
423 0, /* bitpos */
424 complain_overflow_signed, /* complain_on_overflow */
425 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 426 AARCH64_R_STR (PREL64), /* name */
a06ea964
NC
427 FALSE, /* partial_inplace */
428 ALL_ONES, /* src_mask */
429 ALL_ONES, /* dst_mask */
430 TRUE), /* pcrel_offset */
431
432 /* .word: (S+A-P) */
a6bb11b2 433 HOWTO (AARCH64_R (PREL32), /* type */
a06ea964
NC
434 0, /* rightshift */
435 2, /* size (0 = byte, 1 = short, 2 = long) */
436 32, /* bitsize */
437 TRUE, /* pc_relative */
438 0, /* bitpos */
439 complain_overflow_signed, /* complain_on_overflow */
440 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 441 AARCH64_R_STR (PREL32), /* name */
a06ea964
NC
442 FALSE, /* partial_inplace */
443 0xffffffff, /* src_mask */
444 0xffffffff, /* dst_mask */
445 TRUE), /* pcrel_offset */
446
447 /* .half: (S+A-P) */
a6bb11b2 448 HOWTO (AARCH64_R (PREL16), /* type */
a06ea964
NC
449 0, /* rightshift */
450 1, /* size (0 = byte, 1 = short, 2 = long) */
451 16, /* bitsize */
452 TRUE, /* pc_relative */
453 0, /* bitpos */
454 complain_overflow_signed, /* complain_on_overflow */
455 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 456 AARCH64_R_STR (PREL16), /* name */
a06ea964
NC
457 FALSE, /* partial_inplace */
458 0xffff, /* src_mask */
459 0xffff, /* dst_mask */
460 TRUE), /* pcrel_offset */
461
462 /* Group relocations to create a 16, 32, 48 or 64 bit
463 unsigned data or abs address inline. */
464
465 /* MOVZ: ((S+A) >> 0) & 0xffff */
a6bb11b2 466 HOWTO (AARCH64_R (MOVW_UABS_G0), /* type */
a06ea964
NC
467 0, /* rightshift */
468 2, /* size (0 = byte, 1 = short, 2 = long) */
469 16, /* bitsize */
470 FALSE, /* pc_relative */
471 0, /* bitpos */
472 complain_overflow_unsigned, /* complain_on_overflow */
473 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 474 AARCH64_R_STR (MOVW_UABS_G0), /* name */
a06ea964
NC
475 FALSE, /* partial_inplace */
476 0xffff, /* src_mask */
477 0xffff, /* dst_mask */
478 FALSE), /* pcrel_offset */
479
480 /* MOVK: ((S+A) >> 0) & 0xffff [no overflow check] */
a6bb11b2 481 HOWTO (AARCH64_R (MOVW_UABS_G0_NC), /* type */
a06ea964
NC
482 0, /* rightshift */
483 2, /* size (0 = byte, 1 = short, 2 = long) */
484 16, /* bitsize */
485 FALSE, /* pc_relative */
486 0, /* bitpos */
487 complain_overflow_dont, /* complain_on_overflow */
488 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 489 AARCH64_R_STR (MOVW_UABS_G0_NC), /* name */
a06ea964
NC
490 FALSE, /* partial_inplace */
491 0xffff, /* src_mask */
492 0xffff, /* dst_mask */
493 FALSE), /* pcrel_offset */
494
495 /* MOVZ: ((S+A) >> 16) & 0xffff */
a6bb11b2 496 HOWTO (AARCH64_R (MOVW_UABS_G1), /* type */
a06ea964
NC
497 16, /* rightshift */
498 2, /* size (0 = byte, 1 = short, 2 = long) */
499 16, /* bitsize */
500 FALSE, /* pc_relative */
501 0, /* bitpos */
502 complain_overflow_unsigned, /* complain_on_overflow */
503 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 504 AARCH64_R_STR (MOVW_UABS_G1), /* name */
a06ea964
NC
505 FALSE, /* partial_inplace */
506 0xffff, /* src_mask */
507 0xffff, /* dst_mask */
508 FALSE), /* pcrel_offset */
509
510 /* MOVK: ((S+A) >> 16) & 0xffff [no overflow check] */
a6bb11b2 511 HOWTO64 (AARCH64_R (MOVW_UABS_G1_NC), /* type */
a06ea964
NC
512 16, /* rightshift */
513 2, /* size (0 = byte, 1 = short, 2 = long) */
514 16, /* bitsize */
515 FALSE, /* pc_relative */
516 0, /* bitpos */
517 complain_overflow_dont, /* complain_on_overflow */
518 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 519 AARCH64_R_STR (MOVW_UABS_G1_NC), /* name */
a06ea964
NC
520 FALSE, /* partial_inplace */
521 0xffff, /* src_mask */
522 0xffff, /* dst_mask */
523 FALSE), /* pcrel_offset */
524
525 /* MOVZ: ((S+A) >> 32) & 0xffff */
a6bb11b2 526 HOWTO64 (AARCH64_R (MOVW_UABS_G2), /* type */
a06ea964
NC
527 32, /* rightshift */
528 2, /* size (0 = byte, 1 = short, 2 = long) */
529 16, /* bitsize */
530 FALSE, /* pc_relative */
531 0, /* bitpos */
532 complain_overflow_unsigned, /* complain_on_overflow */
533 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 534 AARCH64_R_STR (MOVW_UABS_G2), /* name */
a06ea964
NC
535 FALSE, /* partial_inplace */
536 0xffff, /* src_mask */
537 0xffff, /* dst_mask */
538 FALSE), /* pcrel_offset */
539
540 /* MOVK: ((S+A) >> 32) & 0xffff [no overflow check] */
a6bb11b2 541 HOWTO64 (AARCH64_R (MOVW_UABS_G2_NC), /* type */
a06ea964
NC
542 32, /* rightshift */
543 2, /* size (0 = byte, 1 = short, 2 = long) */
544 16, /* bitsize */
545 FALSE, /* pc_relative */
546 0, /* bitpos */
547 complain_overflow_dont, /* complain_on_overflow */
548 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 549 AARCH64_R_STR (MOVW_UABS_G2_NC), /* name */
a06ea964
NC
550 FALSE, /* partial_inplace */
551 0xffff, /* src_mask */
552 0xffff, /* dst_mask */
553 FALSE), /* pcrel_offset */
554
555 /* MOVZ: ((S+A) >> 48) & 0xffff */
a6bb11b2 556 HOWTO64 (AARCH64_R (MOVW_UABS_G3), /* type */
a06ea964
NC
557 48, /* rightshift */
558 2, /* size (0 = byte, 1 = short, 2 = long) */
559 16, /* bitsize */
560 FALSE, /* pc_relative */
561 0, /* bitpos */
562 complain_overflow_unsigned, /* complain_on_overflow */
563 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 564 AARCH64_R_STR (MOVW_UABS_G3), /* name */
a06ea964
NC
565 FALSE, /* partial_inplace */
566 0xffff, /* src_mask */
567 0xffff, /* dst_mask */
568 FALSE), /* pcrel_offset */
569
570 /* Group relocations to create high part of a 16, 32, 48 or 64 bit
571 signed data or abs address inline. Will change instruction
572 to MOVN or MOVZ depending on sign of calculated value. */
573
574 /* MOV[ZN]: ((S+A) >> 0) & 0xffff */
a6bb11b2 575 HOWTO (AARCH64_R (MOVW_SABS_G0), /* type */
a06ea964
NC
576 0, /* rightshift */
577 2, /* size (0 = byte, 1 = short, 2 = long) */
578 16, /* bitsize */
579 FALSE, /* pc_relative */
580 0, /* bitpos */
581 complain_overflow_signed, /* complain_on_overflow */
582 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 583 AARCH64_R_STR (MOVW_SABS_G0), /* name */
a06ea964
NC
584 FALSE, /* partial_inplace */
585 0xffff, /* src_mask */
586 0xffff, /* dst_mask */
587 FALSE), /* pcrel_offset */
588
589 /* MOV[ZN]: ((S+A) >> 16) & 0xffff */
a6bb11b2 590 HOWTO64 (AARCH64_R (MOVW_SABS_G1), /* type */
a06ea964
NC
591 16, /* rightshift */
592 2, /* size (0 = byte, 1 = short, 2 = long) */
593 16, /* bitsize */
594 FALSE, /* pc_relative */
595 0, /* bitpos */
596 complain_overflow_signed, /* complain_on_overflow */
597 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 598 AARCH64_R_STR (MOVW_SABS_G1), /* name */
a06ea964
NC
599 FALSE, /* partial_inplace */
600 0xffff, /* src_mask */
601 0xffff, /* dst_mask */
602 FALSE), /* pcrel_offset */
603
604 /* MOV[ZN]: ((S+A) >> 32) & 0xffff */
a6bb11b2 605 HOWTO64 (AARCH64_R (MOVW_SABS_G2), /* type */
a06ea964
NC
606 32, /* rightshift */
607 2, /* size (0 = byte, 1 = short, 2 = long) */
608 16, /* bitsize */
609 FALSE, /* pc_relative */
610 0, /* bitpos */
611 complain_overflow_signed, /* complain_on_overflow */
612 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 613 AARCH64_R_STR (MOVW_SABS_G2), /* name */
a06ea964
NC
614 FALSE, /* partial_inplace */
615 0xffff, /* src_mask */
616 0xffff, /* dst_mask */
617 FALSE), /* pcrel_offset */
618
619/* Relocations to generate 19, 21 and 33 bit PC-relative load/store
620 addresses: PG(x) is (x & ~0xfff). */
621
622 /* LD-lit: ((S+A-P) >> 2) & 0x7ffff */
a6bb11b2 623 HOWTO (AARCH64_R (LD_PREL_LO19), /* type */
a06ea964
NC
624 2, /* rightshift */
625 2, /* size (0 = byte, 1 = short, 2 = long) */
626 19, /* bitsize */
627 TRUE, /* pc_relative */
628 0, /* bitpos */
629 complain_overflow_signed, /* complain_on_overflow */
630 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 631 AARCH64_R_STR (LD_PREL_LO19), /* name */
a06ea964
NC
632 FALSE, /* partial_inplace */
633 0x7ffff, /* src_mask */
634 0x7ffff, /* dst_mask */
635 TRUE), /* pcrel_offset */
636
637 /* ADR: (S+A-P) & 0x1fffff */
a6bb11b2 638 HOWTO (AARCH64_R (ADR_PREL_LO21), /* type */
a06ea964
NC
639 0, /* rightshift */
640 2, /* size (0 = byte, 1 = short, 2 = long) */
641 21, /* bitsize */
642 TRUE, /* pc_relative */
643 0, /* bitpos */
644 complain_overflow_signed, /* complain_on_overflow */
645 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 646 AARCH64_R_STR (ADR_PREL_LO21), /* name */
a06ea964
NC
647 FALSE, /* partial_inplace */
648 0x1fffff, /* src_mask */
649 0x1fffff, /* dst_mask */
650 TRUE), /* pcrel_offset */
651
652 /* ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
a6bb11b2 653 HOWTO (AARCH64_R (ADR_PREL_PG_HI21), /* type */
a06ea964
NC
654 12, /* rightshift */
655 2, /* size (0 = byte, 1 = short, 2 = long) */
656 21, /* bitsize */
657 TRUE, /* pc_relative */
658 0, /* bitpos */
659 complain_overflow_signed, /* complain_on_overflow */
660 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 661 AARCH64_R_STR (ADR_PREL_PG_HI21), /* name */
a06ea964
NC
662 FALSE, /* partial_inplace */
663 0x1fffff, /* src_mask */
664 0x1fffff, /* dst_mask */
665 TRUE), /* pcrel_offset */
666
667 /* ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff [no overflow check] */
a6bb11b2 668 HOWTO64 (AARCH64_R (ADR_PREL_PG_HI21_NC), /* type */
a06ea964
NC
669 12, /* rightshift */
670 2, /* size (0 = byte, 1 = short, 2 = long) */
671 21, /* bitsize */
672 TRUE, /* pc_relative */
673 0, /* bitpos */
674 complain_overflow_dont, /* complain_on_overflow */
675 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 676 AARCH64_R_STR (ADR_PREL_PG_HI21_NC), /* name */
a06ea964
NC
677 FALSE, /* partial_inplace */
678 0x1fffff, /* src_mask */
679 0x1fffff, /* dst_mask */
680 TRUE), /* pcrel_offset */
681
682 /* ADD: (S+A) & 0xfff [no overflow check] */
a6bb11b2 683 HOWTO (AARCH64_R (ADD_ABS_LO12_NC), /* type */
a06ea964
NC
684 0, /* rightshift */
685 2, /* size (0 = byte, 1 = short, 2 = long) */
686 12, /* bitsize */
687 FALSE, /* pc_relative */
688 10, /* bitpos */
689 complain_overflow_dont, /* complain_on_overflow */
690 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 691 AARCH64_R_STR (ADD_ABS_LO12_NC), /* name */
a06ea964
NC
692 FALSE, /* partial_inplace */
693 0x3ffc00, /* src_mask */
694 0x3ffc00, /* dst_mask */
695 FALSE), /* pcrel_offset */
696
697 /* LD/ST8: (S+A) & 0xfff */
a6bb11b2 698 HOWTO (AARCH64_R (LDST8_ABS_LO12_NC), /* type */
a06ea964
NC
699 0, /* rightshift */
700 2, /* size (0 = byte, 1 = short, 2 = long) */
701 12, /* bitsize */
702 FALSE, /* pc_relative */
703 0, /* bitpos */
704 complain_overflow_dont, /* complain_on_overflow */
705 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 706 AARCH64_R_STR (LDST8_ABS_LO12_NC), /* name */
a06ea964
NC
707 FALSE, /* partial_inplace */
708 0xfff, /* src_mask */
709 0xfff, /* dst_mask */
710 FALSE), /* pcrel_offset */
711
712 /* Relocations for control-flow instructions. */
713
714 /* TBZ/NZ: ((S+A-P) >> 2) & 0x3fff */
a6bb11b2 715 HOWTO (AARCH64_R (TSTBR14), /* type */
a06ea964
NC
716 2, /* rightshift */
717 2, /* size (0 = byte, 1 = short, 2 = long) */
718 14, /* bitsize */
719 TRUE, /* pc_relative */
720 0, /* bitpos */
721 complain_overflow_signed, /* complain_on_overflow */
722 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 723 AARCH64_R_STR (TSTBR14), /* name */
a06ea964
NC
724 FALSE, /* partial_inplace */
725 0x3fff, /* src_mask */
726 0x3fff, /* dst_mask */
727 TRUE), /* pcrel_offset */
728
729 /* B.cond: ((S+A-P) >> 2) & 0x7ffff */
a6bb11b2 730 HOWTO (AARCH64_R (CONDBR19), /* type */
a06ea964
NC
731 2, /* rightshift */
732 2, /* size (0 = byte, 1 = short, 2 = long) */
733 19, /* bitsize */
734 TRUE, /* pc_relative */
735 0, /* bitpos */
736 complain_overflow_signed, /* complain_on_overflow */
737 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 738 AARCH64_R_STR (CONDBR19), /* name */
a06ea964
NC
739 FALSE, /* partial_inplace */
740 0x7ffff, /* src_mask */
741 0x7ffff, /* dst_mask */
742 TRUE), /* pcrel_offset */
743
a06ea964 744 /* B: ((S+A-P) >> 2) & 0x3ffffff */
a6bb11b2 745 HOWTO (AARCH64_R (JUMP26), /* type */
a06ea964
NC
746 2, /* rightshift */
747 2, /* size (0 = byte, 1 = short, 2 = long) */
748 26, /* bitsize */
749 TRUE, /* pc_relative */
750 0, /* bitpos */
751 complain_overflow_signed, /* complain_on_overflow */
752 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 753 AARCH64_R_STR (JUMP26), /* name */
a06ea964
NC
754 FALSE, /* partial_inplace */
755 0x3ffffff, /* src_mask */
756 0x3ffffff, /* dst_mask */
757 TRUE), /* pcrel_offset */
758
759 /* BL: ((S+A-P) >> 2) & 0x3ffffff */
a6bb11b2 760 HOWTO (AARCH64_R (CALL26), /* type */
a06ea964
NC
761 2, /* rightshift */
762 2, /* size (0 = byte, 1 = short, 2 = long) */
763 26, /* bitsize */
764 TRUE, /* pc_relative */
765 0, /* bitpos */
766 complain_overflow_signed, /* complain_on_overflow */
767 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 768 AARCH64_R_STR (CALL26), /* name */
a06ea964
NC
769 FALSE, /* partial_inplace */
770 0x3ffffff, /* src_mask */
771 0x3ffffff, /* dst_mask */
772 TRUE), /* pcrel_offset */
773
774 /* LD/ST16: (S+A) & 0xffe */
a6bb11b2 775 HOWTO (AARCH64_R (LDST16_ABS_LO12_NC), /* type */
a06ea964
NC
776 1, /* rightshift */
777 2, /* size (0 = byte, 1 = short, 2 = long) */
778 12, /* bitsize */
779 FALSE, /* pc_relative */
780 0, /* bitpos */
781 complain_overflow_dont, /* complain_on_overflow */
782 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 783 AARCH64_R_STR (LDST16_ABS_LO12_NC), /* name */
a06ea964
NC
784 FALSE, /* partial_inplace */
785 0xffe, /* src_mask */
786 0xffe, /* dst_mask */
787 FALSE), /* pcrel_offset */
788
789 /* LD/ST32: (S+A) & 0xffc */
a6bb11b2 790 HOWTO (AARCH64_R (LDST32_ABS_LO12_NC), /* type */
a06ea964
NC
791 2, /* rightshift */
792 2, /* size (0 = byte, 1 = short, 2 = long) */
793 12, /* bitsize */
794 FALSE, /* pc_relative */
795 0, /* bitpos */
796 complain_overflow_dont, /* complain_on_overflow */
797 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 798 AARCH64_R_STR (LDST32_ABS_LO12_NC), /* name */
a06ea964
NC
799 FALSE, /* partial_inplace */
800 0xffc, /* src_mask */
801 0xffc, /* dst_mask */
802 FALSE), /* pcrel_offset */
803
804 /* LD/ST64: (S+A) & 0xff8 */
a6bb11b2 805 HOWTO (AARCH64_R (LDST64_ABS_LO12_NC), /* type */
a06ea964
NC
806 3, /* rightshift */
807 2, /* size (0 = byte, 1 = short, 2 = long) */
808 12, /* bitsize */
809 FALSE, /* pc_relative */
810 0, /* bitpos */
811 complain_overflow_dont, /* complain_on_overflow */
812 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 813 AARCH64_R_STR (LDST64_ABS_LO12_NC), /* name */
a06ea964
NC
814 FALSE, /* partial_inplace */
815 0xff8, /* src_mask */
816 0xff8, /* dst_mask */
817 FALSE), /* pcrel_offset */
818
a06ea964 819 /* LD/ST128: (S+A) & 0xff0 */
a6bb11b2 820 HOWTO (AARCH64_R (LDST128_ABS_LO12_NC), /* type */
a06ea964
NC
821 4, /* rightshift */
822 2, /* size (0 = byte, 1 = short, 2 = long) */
823 12, /* bitsize */
824 FALSE, /* pc_relative */
825 0, /* bitpos */
826 complain_overflow_dont, /* complain_on_overflow */
827 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 828 AARCH64_R_STR (LDST128_ABS_LO12_NC), /* name */
a06ea964
NC
829 FALSE, /* partial_inplace */
830 0xff0, /* src_mask */
831 0xff0, /* dst_mask */
832 FALSE), /* pcrel_offset */
833
f41aef5f
RE
834 /* Set a load-literal immediate field to bits
835 0x1FFFFC of G(S)-P */
a6bb11b2 836 HOWTO (AARCH64_R (GOT_LD_PREL19), /* type */
f41aef5f
RE
837 2, /* rightshift */
838 2, /* size (0 = byte,1 = short,2 = long) */
839 19, /* bitsize */
840 TRUE, /* pc_relative */
841 0, /* bitpos */
842 complain_overflow_signed, /* complain_on_overflow */
843 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 844 AARCH64_R_STR (GOT_LD_PREL19), /* name */
f41aef5f
RE
845 FALSE, /* partial_inplace */
846 0xffffe0, /* src_mask */
847 0xffffe0, /* dst_mask */
848 TRUE), /* pcrel_offset */
849
a06ea964
NC
850 /* Get to the page for the GOT entry for the symbol
851 (G(S) - P) using an ADRP instruction. */
a6bb11b2 852 HOWTO (AARCH64_R (ADR_GOT_PAGE), /* type */
a06ea964
NC
853 12, /* rightshift */
854 2, /* size (0 = byte, 1 = short, 2 = long) */
855 21, /* bitsize */
856 TRUE, /* pc_relative */
857 0, /* bitpos */
858 complain_overflow_dont, /* complain_on_overflow */
859 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 860 AARCH64_R_STR (ADR_GOT_PAGE), /* name */
a06ea964
NC
861 FALSE, /* partial_inplace */
862 0x1fffff, /* src_mask */
863 0x1fffff, /* dst_mask */
864 TRUE), /* pcrel_offset */
865
a6bb11b2
YZ
866 /* LD64: GOT offset G(S) & 0xff8 */
867 HOWTO64 (AARCH64_R (LD64_GOT_LO12_NC), /* type */
a06ea964
NC
868 3, /* rightshift */
869 2, /* size (0 = byte, 1 = short, 2 = long) */
870 12, /* bitsize */
871 FALSE, /* pc_relative */
872 0, /* bitpos */
873 complain_overflow_dont, /* complain_on_overflow */
874 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 875 AARCH64_R_STR (LD64_GOT_LO12_NC), /* name */
a06ea964
NC
876 FALSE, /* partial_inplace */
877 0xff8, /* src_mask */
878 0xff8, /* dst_mask */
a6bb11b2 879 FALSE), /* pcrel_offset */
a06ea964 880
a6bb11b2
YZ
881 /* LD32: GOT offset G(S) & 0xffc */
882 HOWTO32 (AARCH64_R (LD32_GOT_LO12_NC), /* type */
883 2, /* rightshift */
884 2, /* size (0 = byte, 1 = short, 2 = long) */
885 12, /* bitsize */
886 FALSE, /* pc_relative */
887 0, /* bitpos */
888 complain_overflow_dont, /* complain_on_overflow */
889 bfd_elf_generic_reloc, /* special_function */
890 AARCH64_R_STR (LD32_GOT_LO12_NC), /* name */
891 FALSE, /* partial_inplace */
892 0xffc, /* src_mask */
893 0xffc, /* dst_mask */
894 FALSE), /* pcrel_offset */
a06ea964 895
ca632371
RL
896 /* Lower 16 bits of GOT offset for the symbol. */
897 HOWTO64 (AARCH64_R (MOVW_GOTOFF_G0_NC), /* type */
898 0, /* rightshift */
899 2, /* size (0 = byte, 1 = short, 2 = long) */
900 16, /* bitsize */
901 FALSE, /* pc_relative */
902 0, /* bitpos */
903 complain_overflow_dont, /* complain_on_overflow */
904 bfd_elf_generic_reloc, /* special_function */
905 AARCH64_R_STR (MOVW_GOTOFF_G0_NC), /* name */
906 FALSE, /* partial_inplace */
907 0xffff, /* src_mask */
908 0xffff, /* dst_mask */
909 FALSE), /* pcrel_offset */
910
654248e7
RL
911 /* Higher 16 bits of GOT offset for the symbol. */
912 HOWTO64 (AARCH64_R (MOVW_GOTOFF_G1), /* type */
913 16, /* rightshift */
914 2, /* size (0 = byte, 1 = short, 2 = long) */
915 16, /* bitsize */
916 FALSE, /* pc_relative */
917 0, /* bitpos */
918 complain_overflow_unsigned, /* complain_on_overflow */
919 bfd_elf_generic_reloc, /* special_function */
920 AARCH64_R_STR (MOVW_GOTOFF_G1), /* name */
921 FALSE, /* partial_inplace */
922 0xffff, /* src_mask */
923 0xffff, /* dst_mask */
924 FALSE), /* pcrel_offset */
925
87f5fbcc
RL
926 /* LD64: GOT offset for the symbol. */
927 HOWTO64 (AARCH64_R (LD64_GOTOFF_LO15), /* type */
928 3, /* rightshift */
929 2, /* size (0 = byte, 1 = short, 2 = long) */
930 12, /* bitsize */
931 FALSE, /* pc_relative */
932 0, /* bitpos */
933 complain_overflow_unsigned, /* complain_on_overflow */
934 bfd_elf_generic_reloc, /* special_function */
935 AARCH64_R_STR (LD64_GOTOFF_LO15), /* name */
936 FALSE, /* partial_inplace */
937 0x7ff8, /* src_mask */
938 0x7ff8, /* dst_mask */
939 FALSE), /* pcrel_offset */
940
3d715ce4
JW
941 /* LD32: GOT offset to the page address of GOT table.
942 (G(S) - PAGE (_GLOBAL_OFFSET_TABLE_)) & 0x5ffc. */
943 HOWTO32 (AARCH64_R (LD32_GOTPAGE_LO14), /* type */
944 2, /* rightshift */
945 2, /* size (0 = byte, 1 = short, 2 = long) */
946 12, /* bitsize */
947 FALSE, /* pc_relative */
948 0, /* bitpos */
949 complain_overflow_unsigned, /* complain_on_overflow */
950 bfd_elf_generic_reloc, /* special_function */
951 AARCH64_R_STR (LD32_GOTPAGE_LO14), /* name */
952 FALSE, /* partial_inplace */
953 0x5ffc, /* src_mask */
954 0x5ffc, /* dst_mask */
955 FALSE), /* pcrel_offset */
956
a921b5bd
JW
957 /* LD64: GOT offset to the page address of GOT table.
958 (G(S) - PAGE (_GLOBAL_OFFSET_TABLE_)) & 0x7ff8. */
959 HOWTO64 (AARCH64_R (LD64_GOTPAGE_LO15), /* type */
960 3, /* rightshift */
961 2, /* size (0 = byte, 1 = short, 2 = long) */
962 12, /* bitsize */
963 FALSE, /* pc_relative */
964 0, /* bitpos */
965 complain_overflow_unsigned, /* complain_on_overflow */
966 bfd_elf_generic_reloc, /* special_function */
967 AARCH64_R_STR (LD64_GOTPAGE_LO15), /* name */
968 FALSE, /* partial_inplace */
969 0x7ff8, /* src_mask */
970 0x7ff8, /* dst_mask */
971 FALSE), /* pcrel_offset */
972
a06ea964
NC
973 /* Get to the page for the GOT entry for the symbol
974 (G(S) - P) using an ADRP instruction. */
a6bb11b2 975 HOWTO (AARCH64_R (TLSGD_ADR_PAGE21), /* type */
a06ea964
NC
976 12, /* rightshift */
977 2, /* size (0 = byte, 1 = short, 2 = long) */
978 21, /* bitsize */
979 TRUE, /* pc_relative */
980 0, /* bitpos */
981 complain_overflow_dont, /* complain_on_overflow */
982 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 983 AARCH64_R_STR (TLSGD_ADR_PAGE21), /* name */
a06ea964
NC
984 FALSE, /* partial_inplace */
985 0x1fffff, /* src_mask */
986 0x1fffff, /* dst_mask */
987 TRUE), /* pcrel_offset */
988
3c12b054
MS
989 HOWTO (AARCH64_R (TLSGD_ADR_PREL21), /* type */
990 0, /* rightshift */
991 2, /* size (0 = byte, 1 = short, 2 = long) */
992 21, /* bitsize */
993 TRUE, /* pc_relative */
994 0, /* bitpos */
995 complain_overflow_dont, /* complain_on_overflow */
996 bfd_elf_generic_reloc, /* special_function */
997 AARCH64_R_STR (TLSGD_ADR_PREL21), /* name */
998 FALSE, /* partial_inplace */
999 0x1fffff, /* src_mask */
1000 0x1fffff, /* dst_mask */
1001 TRUE), /* pcrel_offset */
1002
a06ea964 1003 /* ADD: GOT offset G(S) & 0xff8 [no overflow check] */
a6bb11b2 1004 HOWTO (AARCH64_R (TLSGD_ADD_LO12_NC), /* type */
a06ea964
NC
1005 0, /* rightshift */
1006 2, /* size (0 = byte, 1 = short, 2 = long) */
1007 12, /* bitsize */
1008 FALSE, /* pc_relative */
1009 0, /* bitpos */
1010 complain_overflow_dont, /* complain_on_overflow */
1011 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1012 AARCH64_R_STR (TLSGD_ADD_LO12_NC), /* name */
a06ea964
NC
1013 FALSE, /* partial_inplace */
1014 0xfff, /* src_mask */
1015 0xfff, /* dst_mask */
1016 FALSE), /* pcrel_offset */
1017
3e8286c0
RL
1018 /* Lower 16 bits of GOT offset to tls_index. */
1019 HOWTO64 (AARCH64_R (TLSGD_MOVW_G0_NC), /* type */
1020 0, /* rightshift */
1021 2, /* size (0 = byte, 1 = short, 2 = long) */
1022 16, /* bitsize */
1023 FALSE, /* pc_relative */
1024 0, /* bitpos */
1025 complain_overflow_dont, /* complain_on_overflow */
1026 bfd_elf_generic_reloc, /* special_function */
1027 AARCH64_R_STR (TLSGD_MOVW_G0_NC), /* name */
1028 FALSE, /* partial_inplace */
1029 0xffff, /* src_mask */
1030 0xffff, /* dst_mask */
1031 FALSE), /* pcrel_offset */
1032
1aa66fb1
RL
1033 /* Higher 16 bits of GOT offset to tls_index. */
1034 HOWTO64 (AARCH64_R (TLSGD_MOVW_G1), /* type */
1035 16, /* rightshift */
1036 2, /* size (0 = byte, 1 = short, 2 = long) */
1037 16, /* bitsize */
1038 FALSE, /* pc_relative */
1039 0, /* bitpos */
1040 complain_overflow_unsigned, /* complain_on_overflow */
1041 bfd_elf_generic_reloc, /* special_function */
1042 AARCH64_R_STR (TLSGD_MOVW_G1), /* name */
1043 FALSE, /* partial_inplace */
1044 0xffff, /* src_mask */
1045 0xffff, /* dst_mask */
1046 FALSE), /* pcrel_offset */
1047
a6bb11b2 1048 HOWTO (AARCH64_R (TLSIE_ADR_GOTTPREL_PAGE21), /* type */
a06ea964
NC
1049 12, /* rightshift */
1050 2, /* size (0 = byte, 1 = short, 2 = long) */
1051 21, /* bitsize */
1052 FALSE, /* pc_relative */
1053 0, /* bitpos */
1054 complain_overflow_dont, /* complain_on_overflow */
1055 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1056 AARCH64_R_STR (TLSIE_ADR_GOTTPREL_PAGE21), /* name */
a06ea964
NC
1057 FALSE, /* partial_inplace */
1058 0x1fffff, /* src_mask */
1059 0x1fffff, /* dst_mask */
1060 FALSE), /* pcrel_offset */
1061
a6bb11b2 1062 HOWTO64 (AARCH64_R (TLSIE_LD64_GOTTPREL_LO12_NC), /* type */
a06ea964
NC
1063 3, /* rightshift */
1064 2, /* size (0 = byte, 1 = short, 2 = long) */
1065 12, /* bitsize */
1066 FALSE, /* pc_relative */
1067 0, /* bitpos */
1068 complain_overflow_dont, /* complain_on_overflow */
1069 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1070 AARCH64_R_STR (TLSIE_LD64_GOTTPREL_LO12_NC), /* name */
a06ea964
NC
1071 FALSE, /* partial_inplace */
1072 0xff8, /* src_mask */
1073 0xff8, /* dst_mask */
1074 FALSE), /* pcrel_offset */
1075
a6bb11b2
YZ
1076 HOWTO32 (AARCH64_R (TLSIE_LD32_GOTTPREL_LO12_NC), /* type */
1077 2, /* rightshift */
1078 2, /* size (0 = byte, 1 = short, 2 = long) */
1079 12, /* bitsize */
1080 FALSE, /* pc_relative */
1081 0, /* bitpos */
1082 complain_overflow_dont, /* complain_on_overflow */
1083 bfd_elf_generic_reloc, /* special_function */
1084 AARCH64_R_STR (TLSIE_LD32_GOTTPREL_LO12_NC), /* name */
1085 FALSE, /* partial_inplace */
1086 0xffc, /* src_mask */
1087 0xffc, /* dst_mask */
1088 FALSE), /* pcrel_offset */
1089
1090 HOWTO (AARCH64_R (TLSIE_LD_GOTTPREL_PREL19), /* type */
bb3f9ed8 1091 2, /* rightshift */
a06ea964 1092 2, /* size (0 = byte, 1 = short, 2 = long) */
043bf05a 1093 19, /* bitsize */
a06ea964
NC
1094 FALSE, /* pc_relative */
1095 0, /* bitpos */
1096 complain_overflow_dont, /* complain_on_overflow */
1097 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1098 AARCH64_R_STR (TLSIE_LD_GOTTPREL_PREL19), /* name */
a06ea964
NC
1099 FALSE, /* partial_inplace */
1100 0x1ffffc, /* src_mask */
1101 0x1ffffc, /* dst_mask */
1102 FALSE), /* pcrel_offset */
1103
3b957e5b
RL
1104 HOWTO64 (AARCH64_R (TLSIE_MOVW_GOTTPREL_G0_NC), /* type */
1105 0, /* rightshift */
1106 2, /* size (0 = byte, 1 = short, 2 = long) */
1107 16, /* bitsize */
1108 FALSE, /* pc_relative */
1109 0, /* bitpos */
1110 complain_overflow_dont, /* complain_on_overflow */
1111 bfd_elf_generic_reloc, /* special_function */
1112 AARCH64_R_STR (TLSIE_MOVW_GOTTPREL_G0_NC), /* name */
1113 FALSE, /* partial_inplace */
1114 0xffff, /* src_mask */
1115 0xffff, /* dst_mask */
1116 FALSE), /* pcrel_offset */
1117
1118 HOWTO64 (AARCH64_R (TLSIE_MOVW_GOTTPREL_G1), /* type */
1119 16, /* rightshift */
1120 2, /* size (0 = byte, 1 = short, 2 = long) */
1121 16, /* bitsize */
1122 FALSE, /* pc_relative */
1123 0, /* bitpos */
1124 complain_overflow_unsigned, /* complain_on_overflow */
1125 bfd_elf_generic_reloc, /* special_function */
1126 AARCH64_R_STR (TLSIE_MOVW_GOTTPREL_G1), /* name */
1127 FALSE, /* partial_inplace */
1128 0xffff, /* src_mask */
1129 0xffff, /* dst_mask */
1130 FALSE), /* pcrel_offset */
1131
49df5539
JW
1132 /* ADD: bit[23:12] of byte offset to module TLS base address. */
1133 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_HI12), /* type */
1134 12, /* rightshift */
1135 2, /* size (0 = byte, 1 = short, 2 = long) */
1136 12, /* bitsize */
1137 FALSE, /* pc_relative */
1138 0, /* bitpos */
1139 complain_overflow_unsigned, /* complain_on_overflow */
1140 bfd_elf_generic_reloc, /* special_function */
1141 AARCH64_R_STR (TLSLD_ADD_DTPREL_HI12), /* name */
1142 FALSE, /* partial_inplace */
1143 0xfff, /* src_mask */
1144 0xfff, /* dst_mask */
1145 FALSE), /* pcrel_offset */
1146
70151fb5
JW
1147 /* Unsigned 12 bit byte offset to module TLS base address. */
1148 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_LO12), /* type */
1149 0, /* rightshift */
1150 2, /* size (0 = byte, 1 = short, 2 = long) */
1151 12, /* bitsize */
1152 FALSE, /* pc_relative */
1153 0, /* bitpos */
1154 complain_overflow_unsigned, /* complain_on_overflow */
1155 bfd_elf_generic_reloc, /* special_function */
1156 AARCH64_R_STR (TLSLD_ADD_DTPREL_LO12), /* name */
1157 FALSE, /* partial_inplace */
1158 0xfff, /* src_mask */
1159 0xfff, /* dst_mask */
1160 FALSE), /* pcrel_offset */
13289c10
JW
1161
1162 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12. */
1163 HOWTO (AARCH64_R (TLSLD_ADD_DTPREL_LO12_NC), /* type */
1164 0, /* rightshift */
1165 2, /* size (0 = byte, 1 = short, 2 = long) */
1166 12, /* bitsize */
1167 FALSE, /* pc_relative */
1168 0, /* bitpos */
1169 complain_overflow_dont, /* complain_on_overflow */
1170 bfd_elf_generic_reloc, /* special_function */
1171 AARCH64_R_STR (TLSLD_ADD_DTPREL_LO12_NC), /* name */
1172 FALSE, /* partial_inplace */
1173 0xfff, /* src_mask */
1174 0xfff, /* dst_mask */
1175 FALSE), /* pcrel_offset */
70151fb5 1176
a12fad50
JW
1177 /* ADD: GOT offset G(S) & 0xff8 [no overflow check] */
1178 HOWTO (AARCH64_R (TLSLD_ADD_LO12_NC), /* type */
1179 0, /* rightshift */
1180 2, /* size (0 = byte, 1 = short, 2 = long) */
1181 12, /* bitsize */
1182 FALSE, /* pc_relative */
1183 0, /* bitpos */
1184 complain_overflow_dont, /* complain_on_overflow */
1185 bfd_elf_generic_reloc, /* special_function */
1186 AARCH64_R_STR (TLSLD_ADD_LO12_NC), /* name */
1187 FALSE, /* partial_inplace */
1188 0xfff, /* src_mask */
1189 0xfff, /* dst_mask */
1190 FALSE), /* pcrel_offset */
1191
1107e076
JW
1192 /* Get to the page for the GOT entry for the symbol
1193 (G(S) - P) using an ADRP instruction. */
1194 HOWTO (AARCH64_R (TLSLD_ADR_PAGE21), /* type */
1195 12, /* rightshift */
1196 2, /* size (0 = byte, 1 = short, 2 = long) */
1197 21, /* bitsize */
1198 TRUE, /* pc_relative */
1199 0, /* bitpos */
1200 complain_overflow_signed, /* complain_on_overflow */
1201 bfd_elf_generic_reloc, /* special_function */
1202 AARCH64_R_STR (TLSLD_ADR_PAGE21), /* name */
1203 FALSE, /* partial_inplace */
1204 0x1fffff, /* src_mask */
1205 0x1fffff, /* dst_mask */
1206 TRUE), /* pcrel_offset */
1207
6c37fedc
JW
1208 HOWTO (AARCH64_R (TLSLD_ADR_PREL21), /* type */
1209 0, /* rightshift */
1210 2, /* size (0 = byte, 1 = short, 2 = long) */
1211 21, /* bitsize */
1212 TRUE, /* pc_relative */
1213 0, /* bitpos */
1214 complain_overflow_signed, /* complain_on_overflow */
1215 bfd_elf_generic_reloc, /* special_function */
1216 AARCH64_R_STR (TLSLD_ADR_PREL21), /* name */
1217 FALSE, /* partial_inplace */
1218 0x1fffff, /* src_mask */
1219 0x1fffff, /* dst_mask */
1220 TRUE), /* pcrel_offset */
1221
4c562523
JW
1222 /* LD/ST16: bit[11:1] of byte offset to module TLS base address. */
1223 HOWTO64 (AARCH64_R (TLSLD_LDST16_DTPREL_LO12), /* type */
1224 1, /* rightshift */
1225 2, /* size (0 = byte, 1 = short, 2 = long) */
1226 11, /* bitsize */
1227 FALSE, /* pc_relative */
1228 10, /* bitpos */
1229 complain_overflow_unsigned, /* complain_on_overflow */
1230 bfd_elf_generic_reloc, /* special_function */
1231 AARCH64_R_STR (TLSLD_LDST16_DTPREL_LO12), /* name */
1232 FALSE, /* partial_inplace */
1233 0x1ffc00, /* src_mask */
1234 0x1ffc00, /* dst_mask */
1235 FALSE), /* pcrel_offset */
1236
1237 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12, but no overflow check. */
1238 HOWTO64 (AARCH64_R (TLSLD_LDST16_DTPREL_LO12_NC), /* type */
1239 1, /* rightshift */
1240 2, /* size (0 = byte, 1 = short, 2 = long) */
1241 11, /* bitsize */
1242 FALSE, /* pc_relative */
1243 10, /* bitpos */
1244 complain_overflow_dont, /* complain_on_overflow */
1245 bfd_elf_generic_reloc, /* special_function */
1246 AARCH64_R_STR (TLSLD_LDST16_DTPREL_LO12_NC), /* name */
1247 FALSE, /* partial_inplace */
1248 0x1ffc00, /* src_mask */
1249 0x1ffc00, /* dst_mask */
1250 FALSE), /* pcrel_offset */
1251
1252 /* LD/ST32: bit[11:2] of byte offset to module TLS base address. */
1253 HOWTO64 (AARCH64_R (TLSLD_LDST32_DTPREL_LO12), /* type */
1254 2, /* rightshift */
1255 2, /* size (0 = byte, 1 = short, 2 = long) */
1256 10, /* bitsize */
1257 FALSE, /* pc_relative */
1258 10, /* bitpos */
1259 complain_overflow_unsigned, /* complain_on_overflow */
1260 bfd_elf_generic_reloc, /* special_function */
1261 AARCH64_R_STR (TLSLD_LDST32_DTPREL_LO12), /* name */
1262 FALSE, /* partial_inplace */
1263 0x3ffc00, /* src_mask */
1264 0x3ffc00, /* dst_mask */
1265 FALSE), /* pcrel_offset */
1266
1267 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12, but no overflow check. */
1268 HOWTO64 (AARCH64_R (TLSLD_LDST32_DTPREL_LO12_NC), /* type */
1269 2, /* rightshift */
1270 2, /* size (0 = byte, 1 = short, 2 = long) */
1271 10, /* bitsize */
1272 FALSE, /* pc_relative */
1273 10, /* bitpos */
1274 complain_overflow_dont, /* complain_on_overflow */
1275 bfd_elf_generic_reloc, /* special_function */
1276 AARCH64_R_STR (TLSLD_LDST32_DTPREL_LO12_NC), /* name */
1277 FALSE, /* partial_inplace */
1278 0xffc00, /* src_mask */
1279 0xffc00, /* dst_mask */
1280 FALSE), /* pcrel_offset */
1281
1282 /* LD/ST64: bit[11:3] of byte offset to module TLS base address. */
1283 HOWTO64 (AARCH64_R (TLSLD_LDST64_DTPREL_LO12), /* type */
1284 3, /* rightshift */
1285 2, /* size (0 = byte, 1 = short, 2 = long) */
1286 9, /* bitsize */
1287 FALSE, /* pc_relative */
1288 10, /* bitpos */
1289 complain_overflow_unsigned, /* complain_on_overflow */
1290 bfd_elf_generic_reloc, /* special_function */
1291 AARCH64_R_STR (TLSLD_LDST64_DTPREL_LO12), /* name */
1292 FALSE, /* partial_inplace */
1293 0x3ffc00, /* src_mask */
1294 0x3ffc00, /* dst_mask */
1295 FALSE), /* pcrel_offset */
1296
1297 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12, but no overflow check. */
1298 HOWTO64 (AARCH64_R (TLSLD_LDST64_DTPREL_LO12_NC), /* type */
1299 3, /* rightshift */
1300 2, /* size (0 = byte, 1 = short, 2 = long) */
1301 9, /* bitsize */
1302 FALSE, /* pc_relative */
1303 10, /* bitpos */
1304 complain_overflow_dont, /* complain_on_overflow */
1305 bfd_elf_generic_reloc, /* special_function */
1306 AARCH64_R_STR (TLSLD_LDST64_DTPREL_LO12_NC), /* name */
1307 FALSE, /* partial_inplace */
1308 0x7fc00, /* src_mask */
1309 0x7fc00, /* dst_mask */
1310 FALSE), /* pcrel_offset */
1311
1312 /* LD/ST8: bit[11:0] of byte offset to module TLS base address. */
1313 HOWTO64 (AARCH64_R (TLSLD_LDST8_DTPREL_LO12), /* type */
1314 0, /* rightshift */
1315 2, /* size (0 = byte, 1 = short, 2 = long) */
1316 12, /* bitsize */
1317 FALSE, /* pc_relative */
1318 10, /* bitpos */
1319 complain_overflow_unsigned, /* complain_on_overflow */
1320 bfd_elf_generic_reloc, /* special_function */
1321 AARCH64_R_STR (TLSLD_LDST8_DTPREL_LO12), /* name */
1322 FALSE, /* partial_inplace */
1323 0x3ffc00, /* src_mask */
1324 0x3ffc00, /* dst_mask */
1325 FALSE), /* pcrel_offset */
1326
1327 /* Same as BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12, but no overflow check. */
1328 HOWTO64 (AARCH64_R (TLSLD_LDST8_DTPREL_LO12_NC), /* type */
1329 0, /* rightshift */
1330 2, /* size (0 = byte, 1 = short, 2 = long) */
1331 12, /* bitsize */
1332 FALSE, /* pc_relative */
1333 10, /* bitpos */
1334 complain_overflow_dont, /* complain_on_overflow */
1335 bfd_elf_generic_reloc, /* special_function */
1336 AARCH64_R_STR (TLSLD_LDST8_DTPREL_LO12_NC), /* name */
1337 FALSE, /* partial_inplace */
1338 0x3ffc00, /* src_mask */
1339 0x3ffc00, /* dst_mask */
1340 FALSE), /* pcrel_offset */
1341
49df5539
JW
1342 /* MOVZ: bit[15:0] of byte offset to module TLS base address. */
1343 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G0), /* type */
1344 0, /* rightshift */
1345 2, /* size (0 = byte, 1 = short, 2 = long) */
1346 16, /* bitsize */
1347 FALSE, /* pc_relative */
1348 0, /* bitpos */
1349 complain_overflow_unsigned, /* complain_on_overflow */
1350 bfd_elf_generic_reloc, /* special_function */
1351 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G0), /* name */
1352 FALSE, /* partial_inplace */
1353 0xffff, /* src_mask */
1354 0xffff, /* dst_mask */
1355 FALSE), /* pcrel_offset */
1356
1357 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0. */
1358 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G0_NC), /* type */
1359 0, /* rightshift */
1360 2, /* size (0 = byte, 1 = short, 2 = long) */
1361 16, /* bitsize */
1362 FALSE, /* pc_relative */
1363 0, /* bitpos */
1364 complain_overflow_dont, /* complain_on_overflow */
1365 bfd_elf_generic_reloc, /* special_function */
1366 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G0_NC), /* name */
1367 FALSE, /* partial_inplace */
1368 0xffff, /* src_mask */
1369 0xffff, /* dst_mask */
1370 FALSE), /* pcrel_offset */
1371
1372 /* MOVZ: bit[31:16] of byte offset to module TLS base address. */
1373 HOWTO (AARCH64_R (TLSLD_MOVW_DTPREL_G1), /* type */
1374 16, /* rightshift */
1375 2, /* size (0 = byte, 1 = short, 2 = long) */
1376 16, /* bitsize */
1377 FALSE, /* pc_relative */
1378 0, /* bitpos */
1379 complain_overflow_unsigned, /* complain_on_overflow */
1380 bfd_elf_generic_reloc, /* special_function */
1381 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G1), /* name */
1382 FALSE, /* partial_inplace */
1383 0xffff, /* src_mask */
1384 0xffff, /* dst_mask */
1385 FALSE), /* pcrel_offset */
1386
1387 /* No overflow check version of BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1. */
1388 HOWTO64 (AARCH64_R (TLSLD_MOVW_DTPREL_G1_NC), /* type */
1389 16, /* rightshift */
1390 2, /* size (0 = byte, 1 = short, 2 = long) */
1391 16, /* bitsize */
1392 FALSE, /* pc_relative */
1393 0, /* bitpos */
1394 complain_overflow_dont, /* complain_on_overflow */
1395 bfd_elf_generic_reloc, /* special_function */
1396 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G1_NC), /* name */
1397 FALSE, /* partial_inplace */
1398 0xffff, /* src_mask */
1399 0xffff, /* dst_mask */
1400 FALSE), /* pcrel_offset */
1401
1402 /* MOVZ: bit[47:32] of byte offset to module TLS base address. */
1403 HOWTO64 (AARCH64_R (TLSLD_MOVW_DTPREL_G2), /* type */
1404 32, /* rightshift */
1405 2, /* size (0 = byte, 1 = short, 2 = long) */
1406 16, /* bitsize */
1407 FALSE, /* pc_relative */
1408 0, /* bitpos */
1409 complain_overflow_unsigned, /* complain_on_overflow */
1410 bfd_elf_generic_reloc, /* special_function */
1411 AARCH64_R_STR (TLSLD_MOVW_DTPREL_G2), /* name */
1412 FALSE, /* partial_inplace */
1413 0xffff, /* src_mask */
1414 0xffff, /* dst_mask */
1415 FALSE), /* pcrel_offset */
1416
a6bb11b2 1417 HOWTO64 (AARCH64_R (TLSLE_MOVW_TPREL_G2), /* type */
bb3f9ed8 1418 32, /* rightshift */
a06ea964 1419 2, /* size (0 = byte, 1 = short, 2 = long) */
07875fbc 1420 16, /* bitsize */
a06ea964
NC
1421 FALSE, /* pc_relative */
1422 0, /* bitpos */
0172429c 1423 complain_overflow_unsigned, /* complain_on_overflow */
a06ea964 1424 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1425 AARCH64_R_STR (TLSLE_MOVW_TPREL_G2), /* name */
a06ea964
NC
1426 FALSE, /* partial_inplace */
1427 0xffff, /* src_mask */
1428 0xffff, /* dst_mask */
1429 FALSE), /* pcrel_offset */
1430
a6bb11b2 1431 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G1), /* type */
bb3f9ed8 1432 16, /* rightshift */
a06ea964 1433 2, /* size (0 = byte, 1 = short, 2 = long) */
07875fbc 1434 16, /* bitsize */
a06ea964
NC
1435 FALSE, /* pc_relative */
1436 0, /* bitpos */
1437 complain_overflow_dont, /* complain_on_overflow */
1438 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1439 AARCH64_R_STR (TLSLE_MOVW_TPREL_G1), /* name */
a06ea964
NC
1440 FALSE, /* partial_inplace */
1441 0xffff, /* src_mask */
1442 0xffff, /* dst_mask */
1443 FALSE), /* pcrel_offset */
1444
a6bb11b2 1445 HOWTO64 (AARCH64_R (TLSLE_MOVW_TPREL_G1_NC), /* type */
bb3f9ed8 1446 16, /* rightshift */
a06ea964 1447 2, /* size (0 = byte, 1 = short, 2 = long) */
07875fbc 1448 16, /* bitsize */
a06ea964
NC
1449 FALSE, /* pc_relative */
1450 0, /* bitpos */
1451 complain_overflow_dont, /* complain_on_overflow */
1452 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1453 AARCH64_R_STR (TLSLE_MOVW_TPREL_G1_NC), /* name */
a06ea964
NC
1454 FALSE, /* partial_inplace */
1455 0xffff, /* src_mask */
1456 0xffff, /* dst_mask */
1457 FALSE), /* pcrel_offset */
1458
a6bb11b2 1459 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G0), /* type */
a06ea964
NC
1460 0, /* rightshift */
1461 2, /* size (0 = byte, 1 = short, 2 = long) */
07875fbc 1462 16, /* bitsize */
a06ea964
NC
1463 FALSE, /* pc_relative */
1464 0, /* bitpos */
1465 complain_overflow_dont, /* complain_on_overflow */
1466 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1467 AARCH64_R_STR (TLSLE_MOVW_TPREL_G0), /* name */
a06ea964
NC
1468 FALSE, /* partial_inplace */
1469 0xffff, /* src_mask */
1470 0xffff, /* dst_mask */
1471 FALSE), /* pcrel_offset */
1472
a6bb11b2 1473 HOWTO (AARCH64_R (TLSLE_MOVW_TPREL_G0_NC), /* type */
a06ea964
NC
1474 0, /* rightshift */
1475 2, /* size (0 = byte, 1 = short, 2 = long) */
07875fbc 1476 16, /* bitsize */
a06ea964
NC
1477 FALSE, /* pc_relative */
1478 0, /* bitpos */
1479 complain_overflow_dont, /* complain_on_overflow */
1480 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1481 AARCH64_R_STR (TLSLE_MOVW_TPREL_G0_NC), /* name */
a06ea964
NC
1482 FALSE, /* partial_inplace */
1483 0xffff, /* src_mask */
1484 0xffff, /* dst_mask */
1485 FALSE), /* pcrel_offset */
1486
a6bb11b2 1487 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_HI12), /* type */
bb3f9ed8 1488 12, /* rightshift */
a06ea964
NC
1489 2, /* size (0 = byte, 1 = short, 2 = long) */
1490 12, /* bitsize */
1491 FALSE, /* pc_relative */
1492 0, /* bitpos */
bab91cce 1493 complain_overflow_unsigned, /* complain_on_overflow */
a06ea964 1494 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1495 AARCH64_R_STR (TLSLE_ADD_TPREL_HI12), /* name */
a06ea964
NC
1496 FALSE, /* partial_inplace */
1497 0xfff, /* src_mask */
1498 0xfff, /* dst_mask */
1499 FALSE), /* pcrel_offset */
1500
a6bb11b2 1501 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_LO12), /* type */
a06ea964
NC
1502 0, /* rightshift */
1503 2, /* size (0 = byte, 1 = short, 2 = long) */
1504 12, /* bitsize */
1505 FALSE, /* pc_relative */
1506 0, /* bitpos */
36e6c140 1507 complain_overflow_unsigned, /* complain_on_overflow */
a06ea964 1508 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1509 AARCH64_R_STR (TLSLE_ADD_TPREL_LO12), /* name */
a06ea964
NC
1510 FALSE, /* partial_inplace */
1511 0xfff, /* src_mask */
1512 0xfff, /* dst_mask */
1513 FALSE), /* pcrel_offset */
1514
a6bb11b2 1515 HOWTO (AARCH64_R (TLSLE_ADD_TPREL_LO12_NC), /* type */
a06ea964
NC
1516 0, /* rightshift */
1517 2, /* size (0 = byte, 1 = short, 2 = long) */
1518 12, /* bitsize */
1519 FALSE, /* pc_relative */
1520 0, /* bitpos */
1521 complain_overflow_dont, /* complain_on_overflow */
1522 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1523 AARCH64_R_STR (TLSLE_ADD_TPREL_LO12_NC), /* name */
a06ea964
NC
1524 FALSE, /* partial_inplace */
1525 0xfff, /* src_mask */
1526 0xfff, /* dst_mask */
1527 FALSE), /* pcrel_offset */
a06ea964 1528
a6bb11b2 1529 HOWTO (AARCH64_R (TLSDESC_LD_PREL19), /* type */
bb3f9ed8 1530 2, /* rightshift */
a06ea964 1531 2, /* size (0 = byte, 1 = short, 2 = long) */
1ada945d 1532 19, /* bitsize */
a06ea964
NC
1533 TRUE, /* pc_relative */
1534 0, /* bitpos */
1535 complain_overflow_dont, /* complain_on_overflow */
1536 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1537 AARCH64_R_STR (TLSDESC_LD_PREL19), /* name */
a06ea964 1538 FALSE, /* partial_inplace */
1ada945d
MS
1539 0x0ffffe0, /* src_mask */
1540 0x0ffffe0, /* dst_mask */
a06ea964
NC
1541 TRUE), /* pcrel_offset */
1542
a6bb11b2 1543 HOWTO (AARCH64_R (TLSDESC_ADR_PREL21), /* type */
a06ea964
NC
1544 0, /* rightshift */
1545 2, /* size (0 = byte, 1 = short, 2 = long) */
1546 21, /* bitsize */
1547 TRUE, /* pc_relative */
1548 0, /* bitpos */
1549 complain_overflow_dont, /* complain_on_overflow */
1550 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1551 AARCH64_R_STR (TLSDESC_ADR_PREL21), /* name */
a06ea964
NC
1552 FALSE, /* partial_inplace */
1553 0x1fffff, /* src_mask */
1554 0x1fffff, /* dst_mask */
1555 TRUE), /* pcrel_offset */
1556
1557 /* Get to the page for the GOT entry for the symbol
1558 (G(S) - P) using an ADRP instruction. */
a6bb11b2 1559 HOWTO (AARCH64_R (TLSDESC_ADR_PAGE21), /* type */
a06ea964
NC
1560 12, /* rightshift */
1561 2, /* size (0 = byte, 1 = short, 2 = long) */
1562 21, /* bitsize */
1563 TRUE, /* pc_relative */
1564 0, /* bitpos */
1565 complain_overflow_dont, /* complain_on_overflow */
1566 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1567 AARCH64_R_STR (TLSDESC_ADR_PAGE21), /* name */
a06ea964
NC
1568 FALSE, /* partial_inplace */
1569 0x1fffff, /* src_mask */
1570 0x1fffff, /* dst_mask */
1571 TRUE), /* pcrel_offset */
1572
a6bb11b2
YZ
1573 /* LD64: GOT offset G(S) & 0xff8. */
1574 HOWTO64 (AARCH64_R (TLSDESC_LD64_LO12_NC), /* type */
a06ea964
NC
1575 3, /* rightshift */
1576 2, /* size (0 = byte, 1 = short, 2 = long) */
1577 12, /* bitsize */
1578 FALSE, /* pc_relative */
1579 0, /* bitpos */
1580 complain_overflow_dont, /* complain_on_overflow */
1581 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1582 AARCH64_R_STR (TLSDESC_LD64_LO12_NC), /* name */
a06ea964 1583 FALSE, /* partial_inplace */
a6bb11b2
YZ
1584 0xff8, /* src_mask */
1585 0xff8, /* dst_mask */
1586 FALSE), /* pcrel_offset */
1587
1588 /* LD32: GOT offset G(S) & 0xffc. */
1589 HOWTO32 (AARCH64_R (TLSDESC_LD32_LO12_NC), /* type */
1590 2, /* rightshift */
1591 2, /* size (0 = byte, 1 = short, 2 = long) */
1592 12, /* bitsize */
1593 FALSE, /* pc_relative */
1594 0, /* bitpos */
1595 complain_overflow_dont, /* complain_on_overflow */
1596 bfd_elf_generic_reloc, /* special_function */
1597 AARCH64_R_STR (TLSDESC_LD32_LO12_NC), /* name */
1598 FALSE, /* partial_inplace */
1599 0xffc, /* src_mask */
1600 0xffc, /* dst_mask */
a06ea964
NC
1601 FALSE), /* pcrel_offset */
1602
1603 /* ADD: GOT offset G(S) & 0xfff. */
a6bb11b2 1604 HOWTO (AARCH64_R (TLSDESC_ADD_LO12_NC), /* type */
a06ea964
NC
1605 0, /* rightshift */
1606 2, /* size (0 = byte, 1 = short, 2 = long) */
1607 12, /* bitsize */
1608 FALSE, /* pc_relative */
1609 0, /* bitpos */
1610 complain_overflow_dont, /* complain_on_overflow */
1611 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1612 AARCH64_R_STR (TLSDESC_ADD_LO12_NC), /* name */
a06ea964
NC
1613 FALSE, /* partial_inplace */
1614 0xfff, /* src_mask */
1615 0xfff, /* dst_mask */
1616 FALSE), /* pcrel_offset */
1617
a6bb11b2 1618 HOWTO64 (AARCH64_R (TLSDESC_OFF_G1), /* type */
bb3f9ed8 1619 16, /* rightshift */
a06ea964
NC
1620 2, /* size (0 = byte, 1 = short, 2 = long) */
1621 12, /* bitsize */
1622 FALSE, /* pc_relative */
1623 0, /* bitpos */
43a357f9 1624 complain_overflow_unsigned, /* complain_on_overflow */
a06ea964 1625 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1626 AARCH64_R_STR (TLSDESC_OFF_G1), /* name */
a06ea964
NC
1627 FALSE, /* partial_inplace */
1628 0xffff, /* src_mask */
1629 0xffff, /* dst_mask */
1630 FALSE), /* pcrel_offset */
1631
a6bb11b2 1632 HOWTO64 (AARCH64_R (TLSDESC_OFF_G0_NC), /* type */
a06ea964
NC
1633 0, /* rightshift */
1634 2, /* size (0 = byte, 1 = short, 2 = long) */
1635 12, /* bitsize */
1636 FALSE, /* pc_relative */
1637 0, /* bitpos */
1638 complain_overflow_dont, /* complain_on_overflow */
1639 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1640 AARCH64_R_STR (TLSDESC_OFF_G0_NC), /* name */
a06ea964
NC
1641 FALSE, /* partial_inplace */
1642 0xffff, /* src_mask */
1643 0xffff, /* dst_mask */
1644 FALSE), /* pcrel_offset */
1645
a6bb11b2 1646 HOWTO64 (AARCH64_R (TLSDESC_LDR), /* type */
a06ea964
NC
1647 0, /* rightshift */
1648 2, /* size (0 = byte, 1 = short, 2 = long) */
1649 12, /* bitsize */
1650 FALSE, /* pc_relative */
1651 0, /* bitpos */
1652 complain_overflow_dont, /* complain_on_overflow */
1653 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1654 AARCH64_R_STR (TLSDESC_LDR), /* name */
a06ea964
NC
1655 FALSE, /* partial_inplace */
1656 0x0, /* src_mask */
1657 0x0, /* dst_mask */
1658 FALSE), /* pcrel_offset */
1659
a6bb11b2 1660 HOWTO64 (AARCH64_R (TLSDESC_ADD), /* type */
a06ea964
NC
1661 0, /* rightshift */
1662 2, /* size (0 = byte, 1 = short, 2 = long) */
1663 12, /* bitsize */
1664 FALSE, /* pc_relative */
1665 0, /* bitpos */
1666 complain_overflow_dont, /* complain_on_overflow */
1667 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1668 AARCH64_R_STR (TLSDESC_ADD), /* name */
a06ea964
NC
1669 FALSE, /* partial_inplace */
1670 0x0, /* src_mask */
1671 0x0, /* dst_mask */
1672 FALSE), /* pcrel_offset */
1673
a6bb11b2 1674 HOWTO (AARCH64_R (TLSDESC_CALL), /* type */
a06ea964
NC
1675 0, /* rightshift */
1676 2, /* size (0 = byte, 1 = short, 2 = long) */
7366006f 1677 0, /* bitsize */
a06ea964
NC
1678 FALSE, /* pc_relative */
1679 0, /* bitpos */
1680 complain_overflow_dont, /* complain_on_overflow */
1681 bfd_elf_generic_reloc, /* special_function */
a6bb11b2 1682 AARCH64_R_STR (TLSDESC_CALL), /* name */
a06ea964
NC
1683 FALSE, /* partial_inplace */
1684 0x0, /* src_mask */
1685 0x0, /* dst_mask */
1686 FALSE), /* pcrel_offset */
a6bb11b2
YZ
1687
1688 HOWTO (AARCH64_R (COPY), /* type */
1689 0, /* rightshift */
1690 2, /* size (0 = byte, 1 = short, 2 = long) */
1691 64, /* bitsize */
1692 FALSE, /* pc_relative */
1693 0, /* bitpos */
1694 complain_overflow_bitfield, /* complain_on_overflow */
1695 bfd_elf_generic_reloc, /* special_function */
1696 AARCH64_R_STR (COPY), /* name */
1697 TRUE, /* partial_inplace */
1698 0xffffffff, /* src_mask */
1699 0xffffffff, /* dst_mask */
1700 FALSE), /* pcrel_offset */
1701
1702 HOWTO (AARCH64_R (GLOB_DAT), /* type */
1703 0, /* rightshift */
1704 2, /* size (0 = byte, 1 = short, 2 = long) */
1705 64, /* bitsize */
1706 FALSE, /* pc_relative */
1707 0, /* bitpos */
1708 complain_overflow_bitfield, /* complain_on_overflow */
1709 bfd_elf_generic_reloc, /* special_function */
1710 AARCH64_R_STR (GLOB_DAT), /* name */
1711 TRUE, /* partial_inplace */
1712 0xffffffff, /* src_mask */
1713 0xffffffff, /* dst_mask */
1714 FALSE), /* pcrel_offset */
1715
1716 HOWTO (AARCH64_R (JUMP_SLOT), /* type */
1717 0, /* rightshift */
1718 2, /* size (0 = byte, 1 = short, 2 = long) */
1719 64, /* bitsize */
1720 FALSE, /* pc_relative */
1721 0, /* bitpos */
1722 complain_overflow_bitfield, /* complain_on_overflow */
1723 bfd_elf_generic_reloc, /* special_function */
1724 AARCH64_R_STR (JUMP_SLOT), /* name */
1725 TRUE, /* partial_inplace */
1726 0xffffffff, /* src_mask */
1727 0xffffffff, /* dst_mask */
1728 FALSE), /* pcrel_offset */
1729
1730 HOWTO (AARCH64_R (RELATIVE), /* type */
1731 0, /* rightshift */
1732 2, /* size (0 = byte, 1 = short, 2 = long) */
1733 64, /* bitsize */
1734 FALSE, /* pc_relative */
1735 0, /* bitpos */
1736 complain_overflow_bitfield, /* complain_on_overflow */
1737 bfd_elf_generic_reloc, /* special_function */
1738 AARCH64_R_STR (RELATIVE), /* name */
1739 TRUE, /* partial_inplace */
1740 ALL_ONES, /* src_mask */
1741 ALL_ONES, /* dst_mask */
1742 FALSE), /* pcrel_offset */
1743
1744 HOWTO (AARCH64_R (TLS_DTPMOD), /* type */
1745 0, /* rightshift */
1746 2, /* size (0 = byte, 1 = short, 2 = long) */
1747 64, /* bitsize */
1748 FALSE, /* pc_relative */
1749 0, /* bitpos */
1750 complain_overflow_dont, /* complain_on_overflow */
1751 bfd_elf_generic_reloc, /* special_function */
da0781dc
YZ
1752#if ARCH_SIZE == 64
1753 AARCH64_R_STR (TLS_DTPMOD64), /* name */
1754#else
a6bb11b2 1755 AARCH64_R_STR (TLS_DTPMOD), /* name */
da0781dc 1756#endif
a6bb11b2
YZ
1757 FALSE, /* partial_inplace */
1758 0, /* src_mask */
1759 ALL_ONES, /* dst_mask */
1760 FALSE), /* pc_reloffset */
1761
1762 HOWTO (AARCH64_R (TLS_DTPREL), /* type */
1763 0, /* rightshift */
1764 2, /* size (0 = byte, 1 = short, 2 = long) */
1765 64, /* bitsize */
1766 FALSE, /* pc_relative */
1767 0, /* bitpos */
1768 complain_overflow_dont, /* complain_on_overflow */
1769 bfd_elf_generic_reloc, /* special_function */
da0781dc
YZ
1770#if ARCH_SIZE == 64
1771 AARCH64_R_STR (TLS_DTPREL64), /* name */
1772#else
a6bb11b2 1773 AARCH64_R_STR (TLS_DTPREL), /* name */
da0781dc 1774#endif
a6bb11b2
YZ
1775 FALSE, /* partial_inplace */
1776 0, /* src_mask */
1777 ALL_ONES, /* dst_mask */
1778 FALSE), /* pcrel_offset */
1779
1780 HOWTO (AARCH64_R (TLS_TPREL), /* type */
1781 0, /* rightshift */
1782 2, /* size (0 = byte, 1 = short, 2 = long) */
1783 64, /* bitsize */
1784 FALSE, /* pc_relative */
1785 0, /* bitpos */
1786 complain_overflow_dont, /* complain_on_overflow */
1787 bfd_elf_generic_reloc, /* special_function */
da0781dc
YZ
1788#if ARCH_SIZE == 64
1789 AARCH64_R_STR (TLS_TPREL64), /* name */
1790#else
a6bb11b2 1791 AARCH64_R_STR (TLS_TPREL), /* name */
da0781dc 1792#endif
a6bb11b2
YZ
1793 FALSE, /* partial_inplace */
1794 0, /* src_mask */
1795 ALL_ONES, /* dst_mask */
1796 FALSE), /* pcrel_offset */
1797
1798 HOWTO (AARCH64_R (TLSDESC), /* type */
1799 0, /* rightshift */
1800 2, /* size (0 = byte, 1 = short, 2 = long) */
1801 64, /* bitsize */
1802 FALSE, /* pc_relative */
1803 0, /* bitpos */
1804 complain_overflow_dont, /* complain_on_overflow */
1805 bfd_elf_generic_reloc, /* special_function */
1806 AARCH64_R_STR (TLSDESC), /* name */
1807 FALSE, /* partial_inplace */
1808 0, /* src_mask */
1809 ALL_ONES, /* dst_mask */
1810 FALSE), /* pcrel_offset */
1811
1812 HOWTO (AARCH64_R (IRELATIVE), /* type */
1813 0, /* rightshift */
1814 2, /* size (0 = byte, 1 = short, 2 = long) */
1815 64, /* bitsize */
1816 FALSE, /* pc_relative */
1817 0, /* bitpos */
1818 complain_overflow_bitfield, /* complain_on_overflow */
1819 bfd_elf_generic_reloc, /* special_function */
1820 AARCH64_R_STR (IRELATIVE), /* name */
1821 FALSE, /* partial_inplace */
1822 0, /* src_mask */
1823 ALL_ONES, /* dst_mask */
1824 FALSE), /* pcrel_offset */
1825
1826 EMPTY_HOWTO (0),
a06ea964
NC
1827};
1828
a6bb11b2
YZ
1829static reloc_howto_type elfNN_aarch64_howto_none =
1830 HOWTO (R_AARCH64_NONE, /* type */
1831 0, /* rightshift */
6346d5ca 1832 3, /* size (0 = byte, 1 = short, 2 = long) */
a6bb11b2
YZ
1833 0, /* bitsize */
1834 FALSE, /* pc_relative */
1835 0, /* bitpos */
1836 complain_overflow_dont,/* complain_on_overflow */
1837 bfd_elf_generic_reloc, /* special_function */
1838 "R_AARCH64_NONE", /* name */
1839 FALSE, /* partial_inplace */
1840 0, /* src_mask */
1841 0, /* dst_mask */
1842 FALSE); /* pcrel_offset */
1843
1844/* Given HOWTO, return the bfd internal relocation enumerator. */
1845
1846static bfd_reloc_code_real_type
1847elfNN_aarch64_bfd_reloc_from_howto (reloc_howto_type *howto)
1848{
1849 const int size
1850 = (int) ARRAY_SIZE (elfNN_aarch64_howto_table);
1851 const ptrdiff_t offset
1852 = howto - elfNN_aarch64_howto_table;
1853
1854 if (offset > 0 && offset < size - 1)
1855 return BFD_RELOC_AARCH64_RELOC_START + offset;
1856
1857 if (howto == &elfNN_aarch64_howto_none)
1858 return BFD_RELOC_AARCH64_NONE;
1859
1860 return BFD_RELOC_AARCH64_RELOC_START;
1861}
1862
1863/* Given R_TYPE, return the bfd internal relocation enumerator. */
1864
1865static bfd_reloc_code_real_type
1866elfNN_aarch64_bfd_reloc_from_type (unsigned int r_type)
1867{
1868 static bfd_boolean initialized_p = FALSE;
1869 /* Indexed by R_TYPE, values are offsets in the howto_table. */
1870 static unsigned int offsets[R_AARCH64_end];
1871
1872 if (initialized_p == FALSE)
1873 {
1874 unsigned int i;
1875
1876 for (i = 1; i < ARRAY_SIZE (elfNN_aarch64_howto_table) - 1; ++i)
1877 if (elfNN_aarch64_howto_table[i].type != 0)
1878 offsets[elfNN_aarch64_howto_table[i].type] = i;
1879
1880 initialized_p = TRUE;
1881 }
1882
1883 if (r_type == R_AARCH64_NONE || r_type == R_AARCH64_NULL)
1884 return BFD_RELOC_AARCH64_NONE;
1885
5860e3f8
NC
1886 /* PR 17512: file: b371e70a. */
1887 if (r_type >= R_AARCH64_end)
1888 {
1889 _bfd_error_handler (_("Invalid AArch64 reloc number: %d"), r_type);
1890 bfd_set_error (bfd_error_bad_value);
1891 return BFD_RELOC_AARCH64_NONE;
1892 }
1893
a6bb11b2
YZ
1894 return BFD_RELOC_AARCH64_RELOC_START + offsets[r_type];
1895}
1896
1897struct elf_aarch64_reloc_map
1898{
1899 bfd_reloc_code_real_type from;
1900 bfd_reloc_code_real_type to;
1901};
1902
1903/* Map bfd generic reloc to AArch64-specific reloc. */
1904static const struct elf_aarch64_reloc_map elf_aarch64_reloc_map[] =
1905{
1906 {BFD_RELOC_NONE, BFD_RELOC_AARCH64_NONE},
1907
1908 /* Basic data relocations. */
1909 {BFD_RELOC_CTOR, BFD_RELOC_AARCH64_NN},
1910 {BFD_RELOC_64, BFD_RELOC_AARCH64_64},
1911 {BFD_RELOC_32, BFD_RELOC_AARCH64_32},
1912 {BFD_RELOC_16, BFD_RELOC_AARCH64_16},
1913 {BFD_RELOC_64_PCREL, BFD_RELOC_AARCH64_64_PCREL},
1914 {BFD_RELOC_32_PCREL, BFD_RELOC_AARCH64_32_PCREL},
1915 {BFD_RELOC_16_PCREL, BFD_RELOC_AARCH64_16_PCREL},
1916};
1917
1918/* Given the bfd internal relocation enumerator in CODE, return the
1919 corresponding howto entry. */
1920
1921static reloc_howto_type *
1922elfNN_aarch64_howto_from_bfd_reloc (bfd_reloc_code_real_type code)
1923{
1924 unsigned int i;
1925
1926 /* Convert bfd generic reloc to AArch64-specific reloc. */
1927 if (code < BFD_RELOC_AARCH64_RELOC_START
1928 || code > BFD_RELOC_AARCH64_RELOC_END)
1929 for (i = 0; i < ARRAY_SIZE (elf_aarch64_reloc_map); i++)
1930 if (elf_aarch64_reloc_map[i].from == code)
1931 {
1932 code = elf_aarch64_reloc_map[i].to;
1933 break;
1934 }
1935
1936 if (code > BFD_RELOC_AARCH64_RELOC_START
1937 && code < BFD_RELOC_AARCH64_RELOC_END)
1938 if (elfNN_aarch64_howto_table[code - BFD_RELOC_AARCH64_RELOC_START].type)
1939 return &elfNN_aarch64_howto_table[code - BFD_RELOC_AARCH64_RELOC_START];
1940
54757ed1
AP
1941 if (code == BFD_RELOC_AARCH64_NONE)
1942 return &elfNN_aarch64_howto_none;
1943
a6bb11b2
YZ
1944 return NULL;
1945}
1946
a06ea964 1947static reloc_howto_type *
cec5225b 1948elfNN_aarch64_howto_from_type (unsigned int r_type)
a06ea964 1949{
a6bb11b2
YZ
1950 bfd_reloc_code_real_type val;
1951 reloc_howto_type *howto;
1952
cec5225b
YZ
1953#if ARCH_SIZE == 32
1954 if (r_type > 256)
1955 {
1956 bfd_set_error (bfd_error_bad_value);
1957 return NULL;
1958 }
1959#endif
1960
a6bb11b2
YZ
1961 if (r_type == R_AARCH64_NONE)
1962 return &elfNN_aarch64_howto_none;
a06ea964 1963
a6bb11b2
YZ
1964 val = elfNN_aarch64_bfd_reloc_from_type (r_type);
1965 howto = elfNN_aarch64_howto_from_bfd_reloc (val);
a06ea964 1966
a6bb11b2
YZ
1967 if (howto != NULL)
1968 return howto;
a06ea964 1969
a06ea964
NC
1970 bfd_set_error (bfd_error_bad_value);
1971 return NULL;
1972}
1973
1974static void
cec5225b 1975elfNN_aarch64_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *bfd_reloc,
a06ea964
NC
1976 Elf_Internal_Rela *elf_reloc)
1977{
1978 unsigned int r_type;
1979
cec5225b
YZ
1980 r_type = ELFNN_R_TYPE (elf_reloc->r_info);
1981 bfd_reloc->howto = elfNN_aarch64_howto_from_type (r_type);
a06ea964
NC
1982}
1983
a06ea964 1984static reloc_howto_type *
cec5225b 1985elfNN_aarch64_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
a06ea964
NC
1986 bfd_reloc_code_real_type code)
1987{
a6bb11b2 1988 reloc_howto_type *howto = elfNN_aarch64_howto_from_bfd_reloc (code);
a06ea964 1989
a6bb11b2
YZ
1990 if (howto != NULL)
1991 return howto;
a06ea964
NC
1992
1993 bfd_set_error (bfd_error_bad_value);
1994 return NULL;
1995}
1996
1997static reloc_howto_type *
cec5225b 1998elfNN_aarch64_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
a06ea964
NC
1999 const char *r_name)
2000{
2001 unsigned int i;
2002
a6bb11b2
YZ
2003 for (i = 1; i < ARRAY_SIZE (elfNN_aarch64_howto_table) - 1; ++i)
2004 if (elfNN_aarch64_howto_table[i].name != NULL
2005 && strcasecmp (elfNN_aarch64_howto_table[i].name, r_name) == 0)
2006 return &elfNN_aarch64_howto_table[i];
a06ea964
NC
2007
2008 return NULL;
2009}
2010
6d00b590 2011#define TARGET_LITTLE_SYM aarch64_elfNN_le_vec
cec5225b 2012#define TARGET_LITTLE_NAME "elfNN-littleaarch64"
6d00b590 2013#define TARGET_BIG_SYM aarch64_elfNN_be_vec
cec5225b 2014#define TARGET_BIG_NAME "elfNN-bigaarch64"
a06ea964 2015
a06ea964
NC
2016/* The linker script knows the section names for placement.
2017 The entry_names are used to do simple name mangling on the stubs.
2018 Given a function name, and its type, the stub can be found. The
2019 name can be changed. The only requirement is the %s be present. */
2020#define STUB_ENTRY_NAME "__%s_veneer"
2021
2022/* The name of the dynamic interpreter. This is put in the .interp
2023 section. */
2024#define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
2025
2026#define AARCH64_MAX_FWD_BRANCH_OFFSET \
2027 (((1 << 25) - 1) << 2)
2028#define AARCH64_MAX_BWD_BRANCH_OFFSET \
2029 (-((1 << 25) << 2))
2030
2031#define AARCH64_MAX_ADRP_IMM ((1 << 20) - 1)
2032#define AARCH64_MIN_ADRP_IMM (-(1 << 20))
2033
2034static int
2035aarch64_valid_for_adrp_p (bfd_vma value, bfd_vma place)
2036{
2037 bfd_signed_vma offset = (bfd_signed_vma) (PG (value) - PG (place)) >> 12;
2038 return offset <= AARCH64_MAX_ADRP_IMM && offset >= AARCH64_MIN_ADRP_IMM;
2039}
2040
2041static int
2042aarch64_valid_branch_p (bfd_vma value, bfd_vma place)
2043{
2044 bfd_signed_vma offset = (bfd_signed_vma) (value - place);
2045 return (offset <= AARCH64_MAX_FWD_BRANCH_OFFSET
2046 && offset >= AARCH64_MAX_BWD_BRANCH_OFFSET);
2047}
2048
2049static const uint32_t aarch64_adrp_branch_stub [] =
2050{
2051 0x90000010, /* adrp ip0, X */
2052 /* R_AARCH64_ADR_HI21_PCREL(X) */
2053 0x91000210, /* add ip0, ip0, :lo12:X */
2054 /* R_AARCH64_ADD_ABS_LO12_NC(X) */
2055 0xd61f0200, /* br ip0 */
2056};
2057
2058static const uint32_t aarch64_long_branch_stub[] =
2059{
cec5225b 2060#if ARCH_SIZE == 64
a06ea964 2061 0x58000090, /* ldr ip0, 1f */
cec5225b
YZ
2062#else
2063 0x18000090, /* ldr wip0, 1f */
2064#endif
a06ea964
NC
2065 0x10000011, /* adr ip1, #0 */
2066 0x8b110210, /* add ip0, ip0, ip1 */
2067 0xd61f0200, /* br ip0 */
cec5225b
YZ
2068 0x00000000, /* 1: .xword or .word
2069 R_AARCH64_PRELNN(X) + 12
a06ea964
NC
2070 */
2071 0x00000000,
2072};
2073
68fcca92
JW
2074static const uint32_t aarch64_erratum_835769_stub[] =
2075{
2076 0x00000000, /* Placeholder for multiply accumulate. */
2077 0x14000000, /* b <label> */
2078};
2079
4106101c
MS
2080static const uint32_t aarch64_erratum_843419_stub[] =
2081{
2082 0x00000000, /* Placeholder for LDR instruction. */
2083 0x14000000, /* b <label> */
2084};
2085
a06ea964
NC
2086/* Section name for stubs is the associated section name plus this
2087 string. */
2088#define STUB_SUFFIX ".stub"
2089
cec5225b 2090enum elf_aarch64_stub_type
a06ea964
NC
2091{
2092 aarch64_stub_none,
2093 aarch64_stub_adrp_branch,
2094 aarch64_stub_long_branch,
68fcca92 2095 aarch64_stub_erratum_835769_veneer,
4106101c 2096 aarch64_stub_erratum_843419_veneer,
a06ea964
NC
2097};
2098
cec5225b 2099struct elf_aarch64_stub_hash_entry
a06ea964
NC
2100{
2101 /* Base hash table entry structure. */
2102 struct bfd_hash_entry root;
2103
2104 /* The stub section. */
2105 asection *stub_sec;
2106
2107 /* Offset within stub_sec of the beginning of this stub. */
2108 bfd_vma stub_offset;
2109
2110 /* Given the symbol's value and its section we can determine its final
2111 value when building the stubs (so the stub knows where to jump). */
2112 bfd_vma target_value;
2113 asection *target_section;
2114
cec5225b 2115 enum elf_aarch64_stub_type stub_type;
a06ea964
NC
2116
2117 /* The symbol table entry, if any, that this was derived from. */
cec5225b 2118 struct elf_aarch64_link_hash_entry *h;
a06ea964
NC
2119
2120 /* Destination symbol type */
2121 unsigned char st_type;
2122
2123 /* Where this stub is being called from, or, in the case of combined
2124 stub sections, the first input section in the group. */
2125 asection *id_sec;
2126
2127 /* The name for the local symbol at the start of this stub. The
2128 stub name in the hash table has to be unique; this does not, so
2129 it can be friendlier. */
2130 char *output_name;
68fcca92
JW
2131
2132 /* The instruction which caused this stub to be generated (only valid for
2133 erratum 835769 workaround stubs at present). */
2134 uint32_t veneered_insn;
4106101c
MS
2135
2136 /* In an erratum 843419 workaround stub, the ADRP instruction offset. */
2137 bfd_vma adrp_offset;
a06ea964
NC
2138};
2139
2140/* Used to build a map of a section. This is required for mixed-endian
2141 code/data. */
2142
cec5225b 2143typedef struct elf_elf_section_map
a06ea964
NC
2144{
2145 bfd_vma vma;
2146 char type;
2147}
cec5225b 2148elf_aarch64_section_map;
a06ea964
NC
2149
2150
2151typedef struct _aarch64_elf_section_data
2152{
2153 struct bfd_elf_section_data elf;
2154 unsigned int mapcount;
2155 unsigned int mapsize;
cec5225b 2156 elf_aarch64_section_map *map;
a06ea964
NC
2157}
2158_aarch64_elf_section_data;
2159
cec5225b 2160#define elf_aarch64_section_data(sec) \
a06ea964
NC
2161 ((_aarch64_elf_section_data *) elf_section_data (sec))
2162
4e8516b2
AP
2163/* The size of the thread control block which is defined to be two pointers. */
2164#define TCB_SIZE (ARCH_SIZE/8)*2
a06ea964
NC
2165
2166struct elf_aarch64_local_symbol
2167{
2168 unsigned int got_type;
2169 bfd_signed_vma got_refcount;
2170 bfd_vma got_offset;
2171
2172 /* Offset of the GOTPLT entry reserved for the TLS descriptor. The
2173 offset is from the end of the jump table and reserved entries
2174 within the PLTGOT.
2175
2176 The magic value (bfd_vma) -1 indicates that an offset has not be
2177 allocated. */
2178 bfd_vma tlsdesc_got_jump_table_offset;
2179};
2180
2181struct elf_aarch64_obj_tdata
2182{
2183 struct elf_obj_tdata root;
2184
2185 /* local symbol descriptors */
2186 struct elf_aarch64_local_symbol *locals;
2187
2188 /* Zero to warn when linking objects with incompatible enum sizes. */
2189 int no_enum_size_warning;
2190
2191 /* Zero to warn when linking objects with incompatible wchar_t sizes. */
2192 int no_wchar_size_warning;
2193};
2194
2195#define elf_aarch64_tdata(bfd) \
2196 ((struct elf_aarch64_obj_tdata *) (bfd)->tdata.any)
2197
cec5225b 2198#define elf_aarch64_locals(bfd) (elf_aarch64_tdata (bfd)->locals)
a06ea964
NC
2199
2200#define is_aarch64_elf(bfd) \
2201 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
2202 && elf_tdata (bfd) != NULL \
2203 && elf_object_id (bfd) == AARCH64_ELF_DATA)
2204
2205static bfd_boolean
cec5225b 2206elfNN_aarch64_mkobject (bfd *abfd)
a06ea964
NC
2207{
2208 return bfd_elf_allocate_object (abfd, sizeof (struct elf_aarch64_obj_tdata),
2209 AARCH64_ELF_DATA);
2210}
2211
cec5225b
YZ
2212#define elf_aarch64_hash_entry(ent) \
2213 ((struct elf_aarch64_link_hash_entry *)(ent))
a06ea964
NC
2214
2215#define GOT_UNKNOWN 0
2216#define GOT_NORMAL 1
2217#define GOT_TLS_GD 2
2218#define GOT_TLS_IE 4
2219#define GOT_TLSDESC_GD 8
2220
2221#define GOT_TLS_GD_ANY_P(type) ((type & GOT_TLS_GD) || (type & GOT_TLSDESC_GD))
2222
2223/* AArch64 ELF linker hash entry. */
cec5225b 2224struct elf_aarch64_link_hash_entry
a06ea964
NC
2225{
2226 struct elf_link_hash_entry root;
2227
2228 /* Track dynamic relocs copied for this symbol. */
2229 struct elf_dyn_relocs *dyn_relocs;
2230
a06ea964
NC
2231 /* Since PLT entries have variable size, we need to record the
2232 index into .got.plt instead of recomputing it from the PLT
2233 offset. */
2234 bfd_signed_vma plt_got_offset;
2235
2236 /* Bit mask representing the type of GOT entry(s) if any required by
2237 this symbol. */
2238 unsigned int got_type;
2239
2240 /* A pointer to the most recently used stub hash entry against this
2241 symbol. */
cec5225b 2242 struct elf_aarch64_stub_hash_entry *stub_cache;
a06ea964
NC
2243
2244 /* Offset of the GOTPLT entry reserved for the TLS descriptor. The offset
2245 is from the end of the jump table and reserved entries within the PLTGOT.
2246
2247 The magic value (bfd_vma) -1 indicates that an offset has not
2248 be allocated. */
2249 bfd_vma tlsdesc_got_jump_table_offset;
2250};
2251
2252static unsigned int
cec5225b 2253elfNN_aarch64_symbol_got_type (struct elf_link_hash_entry *h,
a06ea964
NC
2254 bfd *abfd,
2255 unsigned long r_symndx)
2256{
2257 if (h)
cec5225b 2258 return elf_aarch64_hash_entry (h)->got_type;
a06ea964 2259
cec5225b 2260 if (! elf_aarch64_locals (abfd))
a06ea964
NC
2261 return GOT_UNKNOWN;
2262
cec5225b 2263 return elf_aarch64_locals (abfd)[r_symndx].got_type;
a06ea964
NC
2264}
2265
a06ea964 2266/* Get the AArch64 elf linker hash table from a link_info structure. */
cec5225b
YZ
2267#define elf_aarch64_hash_table(info) \
2268 ((struct elf_aarch64_link_hash_table *) ((info)->hash))
a06ea964
NC
2269
2270#define aarch64_stub_hash_lookup(table, string, create, copy) \
cec5225b 2271 ((struct elf_aarch64_stub_hash_entry *) \
a06ea964
NC
2272 bfd_hash_lookup ((table), (string), (create), (copy)))
2273
2274/* AArch64 ELF linker hash table. */
cec5225b 2275struct elf_aarch64_link_hash_table
a06ea964
NC
2276{
2277 /* The main hash table. */
2278 struct elf_link_hash_table root;
2279
2280 /* Nonzero to force PIC branch veneers. */
2281 int pic_veneer;
2282
68fcca92
JW
2283 /* Fix erratum 835769. */
2284 int fix_erratum_835769;
2285
4106101c
MS
2286 /* Fix erratum 843419. */
2287 int fix_erratum_843419;
2288
2289 /* Enable ADRP->ADR rewrite for erratum 843419 workaround. */
2290 int fix_erratum_843419_adr;
2291
a06ea964
NC
2292 /* The number of bytes in the initial entry in the PLT. */
2293 bfd_size_type plt_header_size;
2294
2295 /* The number of bytes in the subsequent PLT etries. */
2296 bfd_size_type plt_entry_size;
2297
2298 /* Short-cuts to get to dynamic linker sections. */
2299 asection *sdynbss;
2300 asection *srelbss;
2301
2302 /* Small local sym cache. */
2303 struct sym_cache sym_cache;
2304
2305 /* For convenience in allocate_dynrelocs. */
2306 bfd *obfd;
2307
2308 /* The amount of space used by the reserved portion of the sgotplt
2309 section, plus whatever space is used by the jump slots. */
2310 bfd_vma sgotplt_jump_table_size;
2311
2312 /* The stub hash table. */
2313 struct bfd_hash_table stub_hash_table;
2314
2315 /* Linker stub bfd. */
2316 bfd *stub_bfd;
2317
2318 /* Linker call-backs. */
2319 asection *(*add_stub_section) (const char *, asection *);
2320 void (*layout_sections_again) (void);
2321
2322 /* Array to keep track of which stub sections have been created, and
2323 information on stub grouping. */
2324 struct map_stub
2325 {
2326 /* This is the section to which stubs in the group will be
2327 attached. */
2328 asection *link_sec;
2329 /* The stub section. */
2330 asection *stub_sec;
2331 } *stub_group;
2332
cec5225b 2333 /* Assorted information used by elfNN_aarch64_size_stubs. */
a06ea964 2334 unsigned int bfd_count;
7292b3ac 2335 unsigned int top_index;
a06ea964
NC
2336 asection **input_list;
2337
2338 /* The offset into splt of the PLT entry for the TLS descriptor
2339 resolver. Special values are 0, if not necessary (or not found
2340 to be necessary yet), and -1 if needed but not determined
2341 yet. */
2342 bfd_vma tlsdesc_plt;
2343
2344 /* The GOT offset for the lazy trampoline. Communicated to the
2345 loader via DT_TLSDESC_GOT. The magic value (bfd_vma) -1
2346 indicates an offset is not allocated. */
2347 bfd_vma dt_tlsdesc_got;
1419bbe5
WN
2348
2349 /* Used by local STT_GNU_IFUNC symbols. */
2350 htab_t loc_hash_table;
2351 void * loc_hash_memory;
a06ea964
NC
2352};
2353
a06ea964
NC
2354/* Create an entry in an AArch64 ELF linker hash table. */
2355
2356static struct bfd_hash_entry *
cec5225b 2357elfNN_aarch64_link_hash_newfunc (struct bfd_hash_entry *entry,
a06ea964
NC
2358 struct bfd_hash_table *table,
2359 const char *string)
2360{
cec5225b
YZ
2361 struct elf_aarch64_link_hash_entry *ret =
2362 (struct elf_aarch64_link_hash_entry *) entry;
a06ea964
NC
2363
2364 /* Allocate the structure if it has not already been allocated by a
2365 subclass. */
2366 if (ret == NULL)
2367 ret = bfd_hash_allocate (table,
cec5225b 2368 sizeof (struct elf_aarch64_link_hash_entry));
a06ea964
NC
2369 if (ret == NULL)
2370 return (struct bfd_hash_entry *) ret;
2371
2372 /* Call the allocation method of the superclass. */
cec5225b 2373 ret = ((struct elf_aarch64_link_hash_entry *)
a06ea964
NC
2374 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
2375 table, string));
2376 if (ret != NULL)
2377 {
2378 ret->dyn_relocs = NULL;
a06ea964
NC
2379 ret->got_type = GOT_UNKNOWN;
2380 ret->plt_got_offset = (bfd_vma) - 1;
2381 ret->stub_cache = NULL;
2382 ret->tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
2383 }
2384
2385 return (struct bfd_hash_entry *) ret;
2386}
2387
2388/* Initialize an entry in the stub hash table. */
2389
2390static struct bfd_hash_entry *
2391stub_hash_newfunc (struct bfd_hash_entry *entry,
2392 struct bfd_hash_table *table, const char *string)
2393{
2394 /* Allocate the structure if it has not already been allocated by a
2395 subclass. */
2396 if (entry == NULL)
2397 {
2398 entry = bfd_hash_allocate (table,
2399 sizeof (struct
cec5225b 2400 elf_aarch64_stub_hash_entry));
a06ea964
NC
2401 if (entry == NULL)
2402 return entry;
2403 }
2404
2405 /* Call the allocation method of the superclass. */
2406 entry = bfd_hash_newfunc (entry, table, string);
2407 if (entry != NULL)
2408 {
cec5225b 2409 struct elf_aarch64_stub_hash_entry *eh;
a06ea964
NC
2410
2411 /* Initialize the local fields. */
cec5225b 2412 eh = (struct elf_aarch64_stub_hash_entry *) entry;
4106101c 2413 eh->adrp_offset = 0;
a06ea964
NC
2414 eh->stub_sec = NULL;
2415 eh->stub_offset = 0;
2416 eh->target_value = 0;
2417 eh->target_section = NULL;
2418 eh->stub_type = aarch64_stub_none;
2419 eh->h = NULL;
2420 eh->id_sec = NULL;
2421 }
2422
2423 return entry;
2424}
2425
1419bbe5
WN
2426/* Compute a hash of a local hash entry. We use elf_link_hash_entry
2427 for local symbol so that we can handle local STT_GNU_IFUNC symbols
2428 as global symbol. We reuse indx and dynstr_index for local symbol
2429 hash since they aren't used by global symbols in this backend. */
2430
2431static hashval_t
2432elfNN_aarch64_local_htab_hash (const void *ptr)
2433{
2434 struct elf_link_hash_entry *h
2435 = (struct elf_link_hash_entry *) ptr;
2436 return ELF_LOCAL_SYMBOL_HASH (h->indx, h->dynstr_index);
2437}
2438
2439/* Compare local hash entries. */
2440
2441static int
2442elfNN_aarch64_local_htab_eq (const void *ptr1, const void *ptr2)
2443{
2444 struct elf_link_hash_entry *h1
2445 = (struct elf_link_hash_entry *) ptr1;
2446 struct elf_link_hash_entry *h2
2447 = (struct elf_link_hash_entry *) ptr2;
2448
2449 return h1->indx == h2->indx && h1->dynstr_index == h2->dynstr_index;
2450}
2451
2452/* Find and/or create a hash entry for local symbol. */
2453
2454static struct elf_link_hash_entry *
2455elfNN_aarch64_get_local_sym_hash (struct elf_aarch64_link_hash_table *htab,
2456 bfd *abfd, const Elf_Internal_Rela *rel,
2457 bfd_boolean create)
2458{
2459 struct elf_aarch64_link_hash_entry e, *ret;
2460 asection *sec = abfd->sections;
2461 hashval_t h = ELF_LOCAL_SYMBOL_HASH (sec->id,
2462 ELFNN_R_SYM (rel->r_info));
2463 void **slot;
2464
2465 e.root.indx = sec->id;
2466 e.root.dynstr_index = ELFNN_R_SYM (rel->r_info);
2467 slot = htab_find_slot_with_hash (htab->loc_hash_table, &e, h,
2468 create ? INSERT : NO_INSERT);
2469
2470 if (!slot)
2471 return NULL;
2472
2473 if (*slot)
2474 {
2475 ret = (struct elf_aarch64_link_hash_entry *) *slot;
2476 return &ret->root;
2477 }
2478
2479 ret = (struct elf_aarch64_link_hash_entry *)
2480 objalloc_alloc ((struct objalloc *) htab->loc_hash_memory,
2481 sizeof (struct elf_aarch64_link_hash_entry));
2482 if (ret)
2483 {
2484 memset (ret, 0, sizeof (*ret));
2485 ret->root.indx = sec->id;
2486 ret->root.dynstr_index = ELFNN_R_SYM (rel->r_info);
2487 ret->root.dynindx = -1;
2488 *slot = ret;
2489 }
2490 return &ret->root;
2491}
a06ea964
NC
2492
2493/* Copy the extra info we tack onto an elf_link_hash_entry. */
2494
2495static void
cec5225b 2496elfNN_aarch64_copy_indirect_symbol (struct bfd_link_info *info,
a06ea964
NC
2497 struct elf_link_hash_entry *dir,
2498 struct elf_link_hash_entry *ind)
2499{
cec5225b 2500 struct elf_aarch64_link_hash_entry *edir, *eind;
a06ea964 2501
cec5225b
YZ
2502 edir = (struct elf_aarch64_link_hash_entry *) dir;
2503 eind = (struct elf_aarch64_link_hash_entry *) ind;
a06ea964
NC
2504
2505 if (eind->dyn_relocs != NULL)
2506 {
2507 if (edir->dyn_relocs != NULL)
2508 {
2509 struct elf_dyn_relocs **pp;
2510 struct elf_dyn_relocs *p;
2511
2512 /* Add reloc counts against the indirect sym to the direct sym
2513 list. Merge any entries against the same section. */
2514 for (pp = &eind->dyn_relocs; (p = *pp) != NULL;)
2515 {
2516 struct elf_dyn_relocs *q;
2517
2518 for (q = edir->dyn_relocs; q != NULL; q = q->next)
2519 if (q->sec == p->sec)
2520 {
2521 q->pc_count += p->pc_count;
2522 q->count += p->count;
2523 *pp = p->next;
2524 break;
2525 }
2526 if (q == NULL)
2527 pp = &p->next;
2528 }
2529 *pp = edir->dyn_relocs;
2530 }
2531
2532 edir->dyn_relocs = eind->dyn_relocs;
2533 eind->dyn_relocs = NULL;
2534 }
2535
a06ea964
NC
2536 if (ind->root.type == bfd_link_hash_indirect)
2537 {
2538 /* Copy over PLT info. */
2539 if (dir->got.refcount <= 0)
2540 {
2541 edir->got_type = eind->got_type;
2542 eind->got_type = GOT_UNKNOWN;
2543 }
2544 }
2545
2546 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
2547}
2548
68faa637
AM
2549/* Destroy an AArch64 elf linker hash table. */
2550
2551static void
d495ab0d 2552elfNN_aarch64_link_hash_table_free (bfd *obfd)
68faa637
AM
2553{
2554 struct elf_aarch64_link_hash_table *ret
d495ab0d 2555 = (struct elf_aarch64_link_hash_table *) obfd->link.hash;
68faa637
AM
2556
2557 if (ret->loc_hash_table)
2558 htab_delete (ret->loc_hash_table);
2559 if (ret->loc_hash_memory)
2560 objalloc_free ((struct objalloc *) ret->loc_hash_memory);
2561
2562 bfd_hash_table_free (&ret->stub_hash_table);
d495ab0d 2563 _bfd_elf_link_hash_table_free (obfd);
68faa637
AM
2564}
2565
a06ea964
NC
2566/* Create an AArch64 elf linker hash table. */
2567
2568static struct bfd_link_hash_table *
cec5225b 2569elfNN_aarch64_link_hash_table_create (bfd *abfd)
a06ea964 2570{
cec5225b
YZ
2571 struct elf_aarch64_link_hash_table *ret;
2572 bfd_size_type amt = sizeof (struct elf_aarch64_link_hash_table);
a06ea964 2573
7bf52ea2 2574 ret = bfd_zmalloc (amt);
a06ea964
NC
2575 if (ret == NULL)
2576 return NULL;
2577
2578 if (!_bfd_elf_link_hash_table_init
cec5225b
YZ
2579 (&ret->root, abfd, elfNN_aarch64_link_hash_newfunc,
2580 sizeof (struct elf_aarch64_link_hash_entry), AARCH64_ELF_DATA))
a06ea964
NC
2581 {
2582 free (ret);
2583 return NULL;
2584 }
2585
a06ea964
NC
2586 ret->plt_header_size = PLT_ENTRY_SIZE;
2587 ret->plt_entry_size = PLT_SMALL_ENTRY_SIZE;
a06ea964 2588 ret->obfd = abfd;
a06ea964
NC
2589 ret->dt_tlsdesc_got = (bfd_vma) - 1;
2590
2591 if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc,
cec5225b 2592 sizeof (struct elf_aarch64_stub_hash_entry)))
a06ea964 2593 {
d495ab0d 2594 _bfd_elf_link_hash_table_free (abfd);
a06ea964
NC
2595 return NULL;
2596 }
2597
1419bbe5
WN
2598 ret->loc_hash_table = htab_try_create (1024,
2599 elfNN_aarch64_local_htab_hash,
2600 elfNN_aarch64_local_htab_eq,
2601 NULL);
2602 ret->loc_hash_memory = objalloc_create ();
2603 if (!ret->loc_hash_table || !ret->loc_hash_memory)
2604 {
d495ab0d 2605 elfNN_aarch64_link_hash_table_free (abfd);
1419bbe5
WN
2606 return NULL;
2607 }
d495ab0d 2608 ret->root.root.hash_table_free = elfNN_aarch64_link_hash_table_free;
1419bbe5 2609
a06ea964
NC
2610 return &ret->root.root;
2611}
2612
a06ea964
NC
2613static bfd_boolean
2614aarch64_relocate (unsigned int r_type, bfd *input_bfd, asection *input_section,
2615 bfd_vma offset, bfd_vma value)
2616{
2617 reloc_howto_type *howto;
2618 bfd_vma place;
2619
cec5225b 2620 howto = elfNN_aarch64_howto_from_type (r_type);
a06ea964
NC
2621 place = (input_section->output_section->vma + input_section->output_offset
2622 + offset);
caed7120
YZ
2623
2624 r_type = elfNN_aarch64_bfd_reloc_from_type (r_type);
2625 value = _bfd_aarch64_elf_resolve_relocation (r_type, place, value, 0, FALSE);
2626 return _bfd_aarch64_elf_put_addend (input_bfd,
2627 input_section->contents + offset, r_type,
2628 howto, value);
a06ea964
NC
2629}
2630
cec5225b 2631static enum elf_aarch64_stub_type
a06ea964
NC
2632aarch64_select_branch_stub (bfd_vma value, bfd_vma place)
2633{
2634 if (aarch64_valid_for_adrp_p (value, place))
2635 return aarch64_stub_adrp_branch;
2636 return aarch64_stub_long_branch;
2637}
2638
2639/* Determine the type of stub needed, if any, for a call. */
2640
cec5225b 2641static enum elf_aarch64_stub_type
a06ea964
NC
2642aarch64_type_of_stub (struct bfd_link_info *info,
2643 asection *input_sec,
2644 const Elf_Internal_Rela *rel,
f678ded7 2645 asection *sym_sec,
a06ea964 2646 unsigned char st_type,
cec5225b 2647 struct elf_aarch64_link_hash_entry *hash,
a06ea964
NC
2648 bfd_vma destination)
2649{
2650 bfd_vma location;
2651 bfd_signed_vma branch_offset;
2652 unsigned int r_type;
cec5225b
YZ
2653 struct elf_aarch64_link_hash_table *globals;
2654 enum elf_aarch64_stub_type stub_type = aarch64_stub_none;
a06ea964
NC
2655 bfd_boolean via_plt_p;
2656
f678ded7 2657 if (st_type != STT_FUNC
2f340668 2658 && (sym_sec == input_sec))
a06ea964
NC
2659 return stub_type;
2660
cec5225b 2661 globals = elf_aarch64_hash_table (info);
a06ea964
NC
2662 via_plt_p = (globals->root.splt != NULL && hash != NULL
2663 && hash->root.plt.offset != (bfd_vma) - 1);
07f9ddfe 2664 /* Make sure call to plt stub can fit into the branch range. */
a06ea964 2665 if (via_plt_p)
07f9ddfe
JW
2666 destination = (globals->root.splt->output_section->vma
2667 + globals->root.splt->output_offset
2668 + hash->root.plt.offset);
a06ea964
NC
2669
2670 /* Determine where the call point is. */
2671 location = (input_sec->output_offset
2672 + input_sec->output_section->vma + rel->r_offset);
2673
2674 branch_offset = (bfd_signed_vma) (destination - location);
2675
cec5225b 2676 r_type = ELFNN_R_TYPE (rel->r_info);
a06ea964
NC
2677
2678 /* We don't want to redirect any old unconditional jump in this way,
2679 only one which is being used for a sibcall, where it is
2680 acceptable for the IP0 and IP1 registers to be clobbered. */
a6bb11b2 2681 if ((r_type == AARCH64_R (CALL26) || r_type == AARCH64_R (JUMP26))
a06ea964
NC
2682 && (branch_offset > AARCH64_MAX_FWD_BRANCH_OFFSET
2683 || branch_offset < AARCH64_MAX_BWD_BRANCH_OFFSET))
2684 {
2685 stub_type = aarch64_stub_long_branch;
2686 }
2687
2688 return stub_type;
2689}
2690
2691/* Build a name for an entry in the stub hash table. */
2692
2693static char *
cec5225b 2694elfNN_aarch64_stub_name (const asection *input_section,
a06ea964 2695 const asection *sym_sec,
cec5225b 2696 const struct elf_aarch64_link_hash_entry *hash,
a06ea964
NC
2697 const Elf_Internal_Rela *rel)
2698{
2699 char *stub_name;
2700 bfd_size_type len;
2701
2702 if (hash)
2703 {
2704 len = 8 + 1 + strlen (hash->root.root.root.string) + 1 + 16 + 1;
2705 stub_name = bfd_malloc (len);
2706 if (stub_name != NULL)
2707 snprintf (stub_name, len, "%08x_%s+%" BFD_VMA_FMT "x",
2708 (unsigned int) input_section->id,
2709 hash->root.root.root.string,
2710 rel->r_addend);
2711 }
2712 else
2713 {
2714 len = 8 + 1 + 8 + 1 + 8 + 1 + 16 + 1;
2715 stub_name = bfd_malloc (len);
2716 if (stub_name != NULL)
2717 snprintf (stub_name, len, "%08x_%x:%x+%" BFD_VMA_FMT "x",
2718 (unsigned int) input_section->id,
2719 (unsigned int) sym_sec->id,
cec5225b 2720 (unsigned int) ELFNN_R_SYM (rel->r_info),
a06ea964
NC
2721 rel->r_addend);
2722 }
2723
2724 return stub_name;
2725}
2726
2727/* Look up an entry in the stub hash. Stub entries are cached because
2728 creating the stub name takes a bit of time. */
2729
cec5225b
YZ
2730static struct elf_aarch64_stub_hash_entry *
2731elfNN_aarch64_get_stub_entry (const asection *input_section,
a06ea964
NC
2732 const asection *sym_sec,
2733 struct elf_link_hash_entry *hash,
2734 const Elf_Internal_Rela *rel,
cec5225b 2735 struct elf_aarch64_link_hash_table *htab)
a06ea964 2736{
cec5225b
YZ
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;
a06ea964
NC
2740 const asection *id_sec;
2741
2742 if ((input_section->flags & SEC_CODE) == 0)
2743 return NULL;
2744
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;
2751
2752 if (h != NULL && h->stub_cache != NULL
2753 && h->stub_cache->h == h && h->stub_cache->id_sec == id_sec)
2754 {
2755 stub_entry = h->stub_cache;
2756 }
2757 else
2758 {
2759 char *stub_name;
2760
cec5225b 2761 stub_name = elfNN_aarch64_stub_name (id_sec, sym_sec, h, rel);
a06ea964
NC
2762 if (stub_name == NULL)
2763 return NULL;
2764
2765 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table,
2766 stub_name, FALSE, FALSE);
2767 if (h != NULL)
2768 h->stub_cache = stub_entry;
2769
2770 free (stub_name);
2771 }
2772
2773 return stub_entry;
2774}
2775
a06ea964 2776
66585675
MS
2777/* Create a stub section. */
2778
2779static asection *
2780_bfd_aarch64_create_stub_section (asection *section,
2781 struct elf_aarch64_link_hash_table *htab)
2782{
2783 size_t namelen;
2784 bfd_size_type len;
2785 char *s_name;
2786
2787 namelen = strlen (section->name);
2788 len = namelen + sizeof (STUB_SUFFIX);
2789 s_name = bfd_alloc (htab->stub_bfd, len);
2790 if (s_name == NULL)
2791 return NULL;
2792
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);
2796}
2797
2798
fc6d53be
MS
2799/* Find or create a stub section for a link section.
2800
2801 Fix or create the stub section used to collect stubs attached to
2802 the specified link section. */
2803
2804static asection *
2805_bfd_aarch64_get_stub_for_link_section (asection *link_section,
2806 struct elf_aarch64_link_hash_table *htab)
2807{
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;
2812}
2813
2814
ef857521
MS
2815/* Find or create a stub section in the stub group for an input
2816 section. */
2817
2818static asection *
2819_bfd_aarch64_create_or_find_stub_sec (asection *section,
2820 struct elf_aarch64_link_hash_table *htab)
a06ea964 2821{
fc6d53be
MS
2822 asection *link_sec = htab->stub_group[section->id].link_sec;
2823 return _bfd_aarch64_get_stub_for_link_section (link_sec, htab);
ef857521
MS
2824}
2825
2826
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
2829 initialised. */
2830
2831static struct elf_aarch64_stub_hash_entry *
2832_bfd_aarch64_add_stub_entry_in_group (const char *stub_name,
2833 asection *section,
2834 struct elf_aarch64_link_hash_table *htab)
2835{
2836 asection *link_sec;
2837 asection *stub_sec;
2838 struct elf_aarch64_stub_hash_entry *stub_entry;
2839
2840 link_sec = htab->stub_group[section->id].link_sec;
2841 stub_sec = _bfd_aarch64_create_or_find_stub_sec (section, htab);
2842
a06ea964
NC
2843 /* Enter this entry into the linker stub hash table. */
2844 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
2845 TRUE, FALSE);
2846 if (stub_entry == NULL)
2847 {
2848 (*_bfd_error_handler) (_("%s: cannot create stub entry %s"),
2849 section->owner, stub_name);
2850 return NULL;
2851 }
2852
2853 stub_entry->stub_sec = stub_sec;
2854 stub_entry->stub_offset = 0;
2855 stub_entry->id_sec = link_sec;
2856
2857 return stub_entry;
2858}
2859
4106101c
MS
2860/* Add a new stub entry in the final stub section to the stub hash.
2861 Not all fields of the new stub entry are initialised. */
2862
2863static struct elf_aarch64_stub_hash_entry *
2864_bfd_aarch64_add_stub_entry_after (const char *stub_name,
2865 asection *link_section,
2866 struct elf_aarch64_link_hash_table *htab)
2867{
2868 asection *stub_sec;
2869 struct elf_aarch64_stub_hash_entry *stub_entry;
2870
2871 stub_sec = _bfd_aarch64_get_stub_for_link_section (link_section, htab);
2872 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
2873 TRUE, FALSE);
2874 if (stub_entry == NULL)
2875 {
2876 (*_bfd_error_handler) (_("cannot create stub entry %s"), stub_name);
2877 return NULL;
2878 }
2879
2880 stub_entry->stub_sec = stub_sec;
2881 stub_entry->stub_offset = 0;
2882 stub_entry->id_sec = link_section;
2883
2884 return stub_entry;
2885}
2886
2887
a06ea964
NC
2888static bfd_boolean
2889aarch64_build_one_stub (struct bfd_hash_entry *gen_entry,
2890 void *in_arg ATTRIBUTE_UNUSED)
2891{
cec5225b 2892 struct elf_aarch64_stub_hash_entry *stub_entry;
a06ea964
NC
2893 asection *stub_sec;
2894 bfd *stub_bfd;
2895 bfd_byte *loc;
2896 bfd_vma sym_value;
68fcca92
JW
2897 bfd_vma veneered_insn_loc;
2898 bfd_vma veneer_entry_loc;
2899 bfd_signed_vma branch_offset = 0;
a06ea964
NC
2900 unsigned int template_size;
2901 const uint32_t *template;
2902 unsigned int i;
2903
2904 /* Massage our args to the form they really have. */
cec5225b 2905 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
a06ea964
NC
2906
2907 stub_sec = stub_entry->stub_sec;
2908
2909 /* Make a note of the offset within the stubs for this entry. */
2910 stub_entry->stub_offset = stub_sec->size;
2911 loc = stub_sec->contents + stub_entry->stub_offset;
2912
2913 stub_bfd = stub_sec->owner;
2914
2915 /* This is the address of the stub destination. */
2916 sym_value = (stub_entry->target_value
2917 + stub_entry->target_section->output_offset
2918 + stub_entry->target_section->output_section->vma);
2919
2920 if (stub_entry->stub_type == aarch64_stub_long_branch)
2921 {
2922 bfd_vma place = (stub_entry->stub_offset + stub_sec->output_section->vma
2923 + stub_sec->output_offset);
2924
2925 /* See if we can relax the stub. */
2926 if (aarch64_valid_for_adrp_p (sym_value, place))
2927 stub_entry->stub_type = aarch64_select_branch_stub (sym_value, place);
2928 }
2929
2930 switch (stub_entry->stub_type)
2931 {
2932 case aarch64_stub_adrp_branch:
2933 template = aarch64_adrp_branch_stub;
2934 template_size = sizeof (aarch64_adrp_branch_stub);
2935 break;
2936 case aarch64_stub_long_branch:
2937 template = aarch64_long_branch_stub;
2938 template_size = sizeof (aarch64_long_branch_stub);
2939 break;
68fcca92
JW
2940 case aarch64_stub_erratum_835769_veneer:
2941 template = aarch64_erratum_835769_stub;
2942 template_size = sizeof (aarch64_erratum_835769_stub);
2943 break;
4106101c
MS
2944 case aarch64_stub_erratum_843419_veneer:
2945 template = aarch64_erratum_843419_stub;
2946 template_size = sizeof (aarch64_erratum_843419_stub);
2947 break;
a06ea964 2948 default:
8e2fe09f 2949 abort ();
a06ea964
NC
2950 }
2951
2952 for (i = 0; i < (template_size / sizeof template[0]); i++)
2953 {
2954 bfd_putl32 (template[i], loc);
2955 loc += 4;
2956 }
2957
2958 template_size = (template_size + 7) & ~7;
2959 stub_sec->size += template_size;
2960
2961 switch (stub_entry->stub_type)
2962 {
2963 case aarch64_stub_adrp_branch:
a6bb11b2 2964 if (aarch64_relocate (AARCH64_R (ADR_PREL_PG_HI21), stub_bfd, stub_sec,
a06ea964
NC
2965 stub_entry->stub_offset, sym_value))
2966 /* The stub would not have been relaxed if the offset was out
2967 of range. */
2968 BFD_FAIL ();
2969
93ca8569
TB
2970 if (aarch64_relocate (AARCH64_R (ADD_ABS_LO12_NC), stub_bfd, stub_sec,
2971 stub_entry->stub_offset + 4, sym_value))
2972 BFD_FAIL ();
a06ea964
NC
2973 break;
2974
2975 case aarch64_stub_long_branch:
2976 /* We want the value relative to the address 12 bytes back from the
2977 value itself. */
93ca8569
TB
2978 if (aarch64_relocate (AARCH64_R (PRELNN), stub_bfd, stub_sec,
2979 stub_entry->stub_offset + 16, sym_value + 12))
2980 BFD_FAIL ();
a06ea964 2981 break;
68fcca92
JW
2982
2983 case aarch64_stub_erratum_835769_veneer:
2984 veneered_insn_loc = stub_entry->target_section->output_section->vma
2985 + stub_entry->target_section->output_offset
2986 + stub_entry->target_value;
2987 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
2988 + stub_entry->stub_sec->output_offset
2989 + stub_entry->stub_offset;
2990 branch_offset = veneered_insn_loc - veneer_entry_loc;
2991 branch_offset >>= 2;
2992 branch_offset &= 0x3ffffff;
2993 bfd_putl32 (stub_entry->veneered_insn,
2994 stub_sec->contents + stub_entry->stub_offset);
2995 bfd_putl32 (template[1] | branch_offset,
2996 stub_sec->contents + stub_entry->stub_offset + 4);
2997 break;
2998
4106101c
MS
2999 case aarch64_stub_erratum_843419_veneer:
3000 if (aarch64_relocate (AARCH64_R (JUMP26), stub_bfd, stub_sec,
3001 stub_entry->stub_offset + 4, sym_value + 4))
3002 BFD_FAIL ();
3003 break;
3004
a06ea964 3005 default:
8e2fe09f 3006 abort ();
a06ea964
NC
3007 }
3008
3009 return TRUE;
3010}
3011
3012/* As above, but don't actually build the stub. Just bump offset so
3013 we know stub section sizes. */
3014
3015static bfd_boolean
3016aarch64_size_one_stub (struct bfd_hash_entry *gen_entry,
3017 void *in_arg ATTRIBUTE_UNUSED)
3018{
cec5225b 3019 struct elf_aarch64_stub_hash_entry *stub_entry;
a06ea964
NC
3020 int size;
3021
3022 /* Massage our args to the form they really have. */
cec5225b 3023 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
a06ea964
NC
3024
3025 switch (stub_entry->stub_type)
3026 {
3027 case aarch64_stub_adrp_branch:
3028 size = sizeof (aarch64_adrp_branch_stub);
3029 break;
3030 case aarch64_stub_long_branch:
3031 size = sizeof (aarch64_long_branch_stub);
3032 break;
68fcca92
JW
3033 case aarch64_stub_erratum_835769_veneer:
3034 size = sizeof (aarch64_erratum_835769_stub);
3035 break;
4106101c
MS
3036 case aarch64_stub_erratum_843419_veneer:
3037 size = sizeof (aarch64_erratum_843419_stub);
3038 break;
a06ea964 3039 default:
8e2fe09f 3040 abort ();
a06ea964
NC
3041 }
3042
3043 size = (size + 7) & ~7;
3044 stub_entry->stub_sec->size += size;
3045 return TRUE;
3046}
3047
3048/* External entry points for sizing and building linker stubs. */
3049
3050/* Set up various things so that we can make a list of input sections
3051 for each output section included in the link. Returns -1 on error,
3052 0 when no stubs will be needed, and 1 on success. */
3053
3054int
cec5225b 3055elfNN_aarch64_setup_section_lists (bfd *output_bfd,
a06ea964
NC
3056 struct bfd_link_info *info)
3057{
3058 bfd *input_bfd;
3059 unsigned int bfd_count;
7292b3ac 3060 unsigned int top_id, top_index;
a06ea964
NC
3061 asection *section;
3062 asection **input_list, **list;
3063 bfd_size_type amt;
cec5225b
YZ
3064 struct elf_aarch64_link_hash_table *htab =
3065 elf_aarch64_hash_table (info);
a06ea964
NC
3066
3067 if (!is_elf_hash_table (htab))
3068 return 0;
3069
3070 /* Count the number of input BFDs and find the top input section id. */
3071 for (input_bfd = info->input_bfds, bfd_count = 0, top_id = 0;
c72f2fb2 3072 input_bfd != NULL; input_bfd = input_bfd->link.next)
a06ea964
NC
3073 {
3074 bfd_count += 1;
3075 for (section = input_bfd->sections;
3076 section != NULL; section = section->next)
3077 {
3078 if (top_id < section->id)
3079 top_id = section->id;
3080 }
3081 }
3082 htab->bfd_count = bfd_count;
3083
3084 amt = sizeof (struct map_stub) * (top_id + 1);
3085 htab->stub_group = bfd_zmalloc (amt);
3086 if (htab->stub_group == NULL)
3087 return -1;
3088
3089 /* We can't use output_bfd->section_count here to find the top output
3090 section index as some sections may have been removed, and
3091 _bfd_strip_section_from_output doesn't renumber the indices. */
3092 for (section = output_bfd->sections, top_index = 0;
3093 section != NULL; section = section->next)
3094 {
3095 if (top_index < section->index)
3096 top_index = section->index;
3097 }
3098
3099 htab->top_index = top_index;
3100 amt = sizeof (asection *) * (top_index + 1);
3101 input_list = bfd_malloc (amt);
3102 htab->input_list = input_list;
3103 if (input_list == NULL)
3104 return -1;
3105
3106 /* For sections we aren't interested in, mark their entries with a
3107 value we can check later. */
3108 list = input_list + top_index;
3109 do
3110 *list = bfd_abs_section_ptr;
3111 while (list-- != input_list);
3112
3113 for (section = output_bfd->sections;
3114 section != NULL; section = section->next)
3115 {
3116 if ((section->flags & SEC_CODE) != 0)
3117 input_list[section->index] = NULL;
3118 }
3119
3120 return 1;
3121}
3122
cec5225b 3123/* Used by elfNN_aarch64_next_input_section and group_sections. */
a06ea964
NC
3124#define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
3125
3126/* The linker repeatedly calls this function for each input section,
3127 in the order that input sections are linked into output sections.
3128 Build lists of input sections to determine groupings between which
3129 we may insert linker stubs. */
3130
3131void
cec5225b 3132elfNN_aarch64_next_input_section (struct bfd_link_info *info, asection *isec)
a06ea964 3133{
cec5225b
YZ
3134 struct elf_aarch64_link_hash_table *htab =
3135 elf_aarch64_hash_table (info);
a06ea964
NC
3136
3137 if (isec->output_section->index <= htab->top_index)
3138 {
3139 asection **list = htab->input_list + isec->output_section->index;
3140
3141 if (*list != bfd_abs_section_ptr)
3142 {
3143 /* Steal the link_sec pointer for our list. */
3144 /* This happens to make the list in reverse order,
3145 which is what we want. */
3146 PREV_SEC (isec) = *list;
3147 *list = isec;
3148 }
3149 }
3150}
3151
3152/* See whether we can group stub sections together. Grouping stub
3153 sections may result in fewer stubs. More importantly, we need to
3154 put all .init* and .fini* stubs at the beginning of the .init or
3155 .fini output sections respectively, because glibc splits the
3156 _init and _fini functions into multiple parts. Putting a stub in
3157 the middle of a function is not a good idea. */
3158
3159static void
cec5225b 3160group_sections (struct elf_aarch64_link_hash_table *htab,
a06ea964
NC
3161 bfd_size_type stub_group_size,
3162 bfd_boolean stubs_always_before_branch)
3163{
3164 asection **list = htab->input_list + htab->top_index;
3165
3166 do
3167 {
3168 asection *tail = *list;
3169
3170 if (tail == bfd_abs_section_ptr)
3171 continue;
3172
3173 while (tail != NULL)
3174 {
3175 asection *curr;
3176 asection *prev;
3177 bfd_size_type total;
3178
3179 curr = tail;
3180 total = tail->size;
3181 while ((prev = PREV_SEC (curr)) != NULL
3182 && ((total += curr->output_offset - prev->output_offset)
3183 < stub_group_size))
3184 curr = prev;
3185
3186 /* OK, the size from the start of CURR to the end is less
3187 than stub_group_size and thus can be handled by one stub
3188 section. (Or the tail section is itself larger than
3189 stub_group_size, in which case we may be toast.)
3190 We should really be keeping track of the total size of
3191 stubs added here, as stubs contribute to the final output
3192 section size. */
3193 do
3194 {
3195 prev = PREV_SEC (tail);
3196 /* Set up this stub group. */
3197 htab->stub_group[tail->id].link_sec = curr;
3198 }
3199 while (tail != curr && (tail = prev) != NULL);
3200
3201 /* But wait, there's more! Input sections up to stub_group_size
3202 bytes before the stub section can be handled by it too. */
3203 if (!stubs_always_before_branch)
3204 {
3205 total = 0;
3206 while (prev != NULL
3207 && ((total += tail->output_offset - prev->output_offset)
3208 < stub_group_size))
3209 {
3210 tail = prev;
3211 prev = PREV_SEC (tail);
3212 htab->stub_group[tail->id].link_sec = curr;
3213 }
3214 }
3215 tail = prev;
3216 }
3217 }
3218 while (list-- != htab->input_list);
3219
3220 free (htab->input_list);
3221}
3222
3223#undef PREV_SEC
3224
68fcca92
JW
3225#define AARCH64_BITS(x, pos, n) (((x) >> (pos)) & ((1 << (n)) - 1))
3226
3227#define AARCH64_RT(insn) AARCH64_BITS (insn, 0, 5)
3228#define AARCH64_RT2(insn) AARCH64_BITS (insn, 10, 5)
3229#define AARCH64_RA(insn) AARCH64_BITS (insn, 10, 5)
3230#define AARCH64_RD(insn) AARCH64_BITS (insn, 0, 5)
3231#define AARCH64_RN(insn) AARCH64_BITS (insn, 5, 5)
3232#define AARCH64_RM(insn) AARCH64_BITS (insn, 16, 5)
3233
3234#define AARCH64_MAC(insn) (((insn) & 0xff000000) == 0x9b000000)
3235#define AARCH64_BIT(insn, n) AARCH64_BITS (insn, n, 1)
3236#define AARCH64_OP31(insn) AARCH64_BITS (insn, 21, 3)
3237#define AARCH64_ZR 0x1f
3238
3239/* All ld/st ops. See C4-182 of the ARM ARM. The encoding space for
3240 LD_PCREL, LDST_RO, LDST_UI and LDST_UIMM cover prefetch ops. */
3241
3242#define AARCH64_LD(insn) (AARCH64_BIT (insn, 22) == 1)
3243#define AARCH64_LDST(insn) (((insn) & 0x0a000000) == 0x08000000)
3244#define AARCH64_LDST_EX(insn) (((insn) & 0x3f000000) == 0x08000000)
3245#define AARCH64_LDST_PCREL(insn) (((insn) & 0x3b000000) == 0x18000000)
3246#define AARCH64_LDST_NAP(insn) (((insn) & 0x3b800000) == 0x28000000)
3247#define AARCH64_LDSTP_PI(insn) (((insn) & 0x3b800000) == 0x28800000)
3248#define AARCH64_LDSTP_O(insn) (((insn) & 0x3b800000) == 0x29000000)
3249#define AARCH64_LDSTP_PRE(insn) (((insn) & 0x3b800000) == 0x29800000)
3250#define AARCH64_LDST_UI(insn) (((insn) & 0x3b200c00) == 0x38000000)
3251#define AARCH64_LDST_PIIMM(insn) (((insn) & 0x3b200c00) == 0x38000400)
3252#define AARCH64_LDST_U(insn) (((insn) & 0x3b200c00) == 0x38000800)
3253#define AARCH64_LDST_PREIMM(insn) (((insn) & 0x3b200c00) == 0x38000c00)
3254#define AARCH64_LDST_RO(insn) (((insn) & 0x3b200c00) == 0x38200800)
3255#define AARCH64_LDST_UIMM(insn) (((insn) & 0x3b000000) == 0x39000000)
3256#define AARCH64_LDST_SIMD_M(insn) (((insn) & 0xbfbf0000) == 0x0c000000)
3257#define AARCH64_LDST_SIMD_M_PI(insn) (((insn) & 0xbfa00000) == 0x0c800000)
3258#define AARCH64_LDST_SIMD_S(insn) (((insn) & 0xbf9f0000) == 0x0d000000)
3259#define AARCH64_LDST_SIMD_S_PI(insn) (((insn) & 0xbf800000) == 0x0d800000)
3260
3d14faea
MS
3261/* Classify an INSN if it is indeed a load/store.
3262
3263 Return TRUE if INSN is a LD/ST instruction otherwise return FALSE.
3264
3265 For scalar LD/ST instructions PAIR is FALSE, RT is returned and RT2
3266 is set equal to RT.
3267
3268 For LD/ST pair instructions PAIR is TRUE, RT and RT2 are returned.
3269
3270 */
68fcca92
JW
3271
3272static bfd_boolean
3d14faea 3273aarch64_mem_op_p (uint32_t insn, unsigned int *rt, unsigned int *rt2,
68fcca92
JW
3274 bfd_boolean *pair, bfd_boolean *load)
3275{
3276 uint32_t opcode;
3277 unsigned int r;
3278 uint32_t opc = 0;
3279 uint32_t v = 0;
3280 uint32_t opc_v = 0;
3281
3282 /* Bail out quickly if INSN doesn't fall into the the load-store
3283 encoding space. */
3284 if (!AARCH64_LDST (insn))
3285 return FALSE;
3286
3287 *pair = FALSE;
3288 *load = FALSE;
3289 if (AARCH64_LDST_EX (insn))
3290 {
3291 *rt = AARCH64_RT (insn);
3d14faea 3292 *rt2 = *rt;
68fcca92
JW
3293 if (AARCH64_BIT (insn, 21) == 1)
3294 {
3295 *pair = TRUE;
3d14faea 3296 *rt2 = AARCH64_RT2 (insn);
68fcca92
JW
3297 }
3298 *load = AARCH64_LD (insn);
3299 return TRUE;
3300 }
3301 else if (AARCH64_LDST_NAP (insn)
3302 || AARCH64_LDSTP_PI (insn)
3303 || AARCH64_LDSTP_O (insn)
3304 || AARCH64_LDSTP_PRE (insn))
3305 {
3306 *pair = TRUE;
3307 *rt = AARCH64_RT (insn);
3d14faea 3308 *rt2 = AARCH64_RT2 (insn);
68fcca92
JW
3309 *load = AARCH64_LD (insn);
3310 return TRUE;
3311 }
3312 else if (AARCH64_LDST_PCREL (insn)
3313 || AARCH64_LDST_UI (insn)
3314 || AARCH64_LDST_PIIMM (insn)
3315 || AARCH64_LDST_U (insn)
3316 || AARCH64_LDST_PREIMM (insn)
3317 || AARCH64_LDST_RO (insn)
3318 || AARCH64_LDST_UIMM (insn))
3319 {
3320 *rt = AARCH64_RT (insn);
3d14faea 3321 *rt2 = *rt;
68fcca92
JW
3322 if (AARCH64_LDST_PCREL (insn))
3323 *load = TRUE;
3324 opc = AARCH64_BITS (insn, 22, 2);
3325 v = AARCH64_BIT (insn, 26);
3326 opc_v = opc | (v << 2);
3327 *load = (opc_v == 1 || opc_v == 2 || opc_v == 3
3328 || opc_v == 5 || opc_v == 7);
3329 return TRUE;
3330 }
3331 else if (AARCH64_LDST_SIMD_M (insn)
3332 || AARCH64_LDST_SIMD_M_PI (insn))
3333 {
3334 *rt = AARCH64_RT (insn);
3335 *load = AARCH64_BIT (insn, 22);
3336 opcode = (insn >> 12) & 0xf;
3337 switch (opcode)
3338 {
3339 case 0:
3340 case 2:
3d14faea 3341 *rt2 = *rt + 3;
68fcca92
JW
3342 break;
3343
3344 case 4:
3345 case 6:
3d14faea 3346 *rt2 = *rt + 2;
68fcca92
JW
3347 break;
3348
3349 case 7:
3d14faea 3350 *rt2 = *rt;
68fcca92
JW
3351 break;
3352
3353 case 8:
3354 case 10:
3d14faea 3355 *rt2 = *rt + 1;
68fcca92
JW
3356 break;
3357
3358 default:
3359 return FALSE;
3360 }
3361 return TRUE;
3362 }
3363 else if (AARCH64_LDST_SIMD_S (insn)
3364 || AARCH64_LDST_SIMD_S_PI (insn))
3365 {
3366 *rt = AARCH64_RT (insn);
3367 r = (insn >> 21) & 1;
3368 *load = AARCH64_BIT (insn, 22);
3369 opcode = (insn >> 13) & 0x7;
3370 switch (opcode)
3371 {
3372 case 0:
3373 case 2:
3374 case 4:
3d14faea 3375 *rt2 = *rt + r;
68fcca92
JW
3376 break;
3377
3378 case 1:
3379 case 3:
3380 case 5:
3d14faea 3381 *rt2 = *rt + (r == 0 ? 2 : 3);
68fcca92
JW
3382 break;
3383
3384 case 6:
3d14faea 3385 *rt2 = *rt + r;
68fcca92
JW
3386 break;
3387
3388 case 7:
3d14faea 3389 *rt2 = *rt + (r == 0 ? 2 : 3);
68fcca92
JW
3390 break;
3391
3392 default:
3393 return FALSE;
3394 }
3395 return TRUE;
3396 }
3397
3398 return FALSE;
3399}
3400
3401/* Return TRUE if INSN is multiply-accumulate. */
3402
3403static bfd_boolean
3404aarch64_mlxl_p (uint32_t insn)
3405{
3406 uint32_t op31 = AARCH64_OP31 (insn);
3407
3408 if (AARCH64_MAC (insn)
3409 && (op31 == 0 || op31 == 1 || op31 == 5)
3410 /* Exclude MUL instructions which are encoded as a multiple accumulate
3411 with RA = XZR. */
3412 && AARCH64_RA (insn) != AARCH64_ZR)
3413 return TRUE;
3414
3415 return FALSE;
3416}
3417
3418/* Some early revisions of the Cortex-A53 have an erratum (835769) whereby
3419 it is possible for a 64-bit multiply-accumulate instruction to generate an
3420 incorrect result. The details are quite complex and hard to
3421 determine statically, since branches in the code may exist in some
3422 circumstances, but all cases end with a memory (load, store, or
3423 prefetch) instruction followed immediately by the multiply-accumulate
3424 operation. We employ a linker patching technique, by moving the potentially
3425 affected multiply-accumulate instruction into a patch region and replacing
3426 the original instruction with a branch to the patch. This function checks
3427 if INSN_1 is the memory operation followed by a multiply-accumulate
3428 operation (INSN_2). Return TRUE if an erratum sequence is found, FALSE
3429 if INSN_1 and INSN_2 are safe. */
3430
3431static bfd_boolean
3432aarch64_erratum_sequence (uint32_t insn_1, uint32_t insn_2)
3433{
3434 uint32_t rt;
3d14faea 3435 uint32_t rt2;
68fcca92
JW
3436 uint32_t rn;
3437 uint32_t rm;
3438 uint32_t ra;
3439 bfd_boolean pair;
3440 bfd_boolean load;
3441
3442 if (aarch64_mlxl_p (insn_2)
3d14faea 3443 && aarch64_mem_op_p (insn_1, &rt, &rt2, &pair, &load))
68fcca92
JW
3444 {
3445 /* Any SIMD memory op is independent of the subsequent MLA
3446 by definition of the erratum. */
3447 if (AARCH64_BIT (insn_1, 26))
3448 return TRUE;
3449
3450 /* If not SIMD, check for integer memory ops and MLA relationship. */
3451 rn = AARCH64_RN (insn_2);
3452 ra = AARCH64_RA (insn_2);
3453 rm = AARCH64_RM (insn_2);
3454
3455 /* If this is a load and there's a true(RAW) dependency, we are safe
3456 and this is not an erratum sequence. */
3457 if (load &&
3458 (rt == rn || rt == rm || rt == ra
3d14faea 3459 || (pair && (rt2 == rn || rt2 == rm || rt2 == ra))))
68fcca92
JW
3460 return FALSE;
3461
3462 /* We conservatively put out stubs for all other cases (including
3463 writebacks). */
3464 return TRUE;
3465 }
3466
3467 return FALSE;
3468}
3469
520c7b56
JW
3470/* Used to order a list of mapping symbols by address. */
3471
3472static int
3473elf_aarch64_compare_mapping (const void *a, const void *b)
3474{
3475 const elf_aarch64_section_map *amap = (const elf_aarch64_section_map *) a;
3476 const elf_aarch64_section_map *bmap = (const elf_aarch64_section_map *) b;
3477
3478 if (amap->vma > bmap->vma)
3479 return 1;
3480 else if (amap->vma < bmap->vma)
3481 return -1;
3482 else if (amap->type > bmap->type)
3483 /* Ensure results do not depend on the host qsort for objects with
3484 multiple mapping symbols at the same address by sorting on type
3485 after vma. */
3486 return 1;
3487 else if (amap->type < bmap->type)
3488 return -1;
3489 else
3490 return 0;
3491}
3492
2144188d 3493
35fee8b7
MS
3494static char *
3495_bfd_aarch64_erratum_835769_stub_name (unsigned num_fixes)
3496{
3497 char *stub_name = (char *) bfd_malloc
3498 (strlen ("__erratum_835769_veneer_") + 16);
3499 sprintf (stub_name,"__erratum_835769_veneer_%d", num_fixes);
3500 return stub_name;
3501}
3502
4106101c 3503/* Scan for Cortex-A53 erratum 835769 sequence.
2144188d
MS
3504
3505 Return TRUE else FALSE on abnormal termination. */
3506
68fcca92 3507static bfd_boolean
5421cc6e
MS
3508_bfd_aarch64_erratum_835769_scan (bfd *input_bfd,
3509 struct bfd_link_info *info,
3510 unsigned int *num_fixes_p)
68fcca92
JW
3511{
3512 asection *section;
3513 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
68fcca92 3514 unsigned int num_fixes = *num_fixes_p;
68fcca92
JW
3515
3516 if (htab == NULL)
2144188d 3517 return TRUE;
68fcca92
JW
3518
3519 for (section = input_bfd->sections;
3520 section != NULL;
3521 section = section->next)
3522 {
3523 bfd_byte *contents = NULL;
3524 struct _aarch64_elf_section_data *sec_data;
3525 unsigned int span;
3526
3527 if (elf_section_type (section) != SHT_PROGBITS
3528 || (elf_section_flags (section) & SHF_EXECINSTR) == 0
3529 || (section->flags & SEC_EXCLUDE) != 0
3530 || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3531 || (section->output_section == bfd_abs_section_ptr))
3532 continue;
3533
3534 if (elf_section_data (section)->this_hdr.contents != NULL)
3535 contents = elf_section_data (section)->this_hdr.contents;
3536 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
2144188d 3537 return FALSE;
68fcca92
JW
3538
3539 sec_data = elf_aarch64_section_data (section);
520c7b56
JW
3540
3541 qsort (sec_data->map, sec_data->mapcount,
3542 sizeof (elf_aarch64_section_map), elf_aarch64_compare_mapping);
3543
68fcca92
JW
3544 for (span = 0; span < sec_data->mapcount; span++)
3545 {
3546 unsigned int span_start = sec_data->map[span].vma;
3547 unsigned int span_end = ((span == sec_data->mapcount - 1)
3548 ? sec_data->map[0].vma + section->size
3549 : sec_data->map[span + 1].vma);
3550 unsigned int i;
3551 char span_type = sec_data->map[span].type;
3552
3553 if (span_type == 'd')
3554 continue;
3555
3556 for (i = span_start; i + 4 < span_end; i += 4)
3557 {
3558 uint32_t insn_1 = bfd_getl32 (contents + i);
3559 uint32_t insn_2 = bfd_getl32 (contents + i + 4);
3560
3561 if (aarch64_erratum_sequence (insn_1, insn_2))
3562 {
5421cc6e 3563 struct elf_aarch64_stub_hash_entry *stub_entry;
35fee8b7
MS
3564 char *stub_name = _bfd_aarch64_erratum_835769_stub_name (num_fixes);
3565 if (! stub_name)
2144188d 3566 return FALSE;
68fcca92 3567
5421cc6e
MS
3568 stub_entry = _bfd_aarch64_add_stub_entry_in_group (stub_name,
3569 section,
3570 htab);
3571 if (! stub_entry)
3572 return FALSE;
68fcca92 3573
5421cc6e
MS
3574 stub_entry->stub_type = aarch64_stub_erratum_835769_veneer;
3575 stub_entry->target_section = section;
3576 stub_entry->target_value = i + 4;
3577 stub_entry->veneered_insn = insn_2;
3578 stub_entry->output_name = stub_name;
68fcca92
JW
3579 num_fixes++;
3580 }
3581 }
3582 }
3583 if (elf_section_data (section)->this_hdr.contents == NULL)
3584 free (contents);
3585 }
3586
357d1523
MS
3587 *num_fixes_p = num_fixes;
3588
2144188d 3589 return TRUE;
68fcca92
JW
3590}
3591
13f622ec 3592
4106101c
MS
3593/* Test if instruction INSN is ADRP. */
3594
3595static bfd_boolean
3596_bfd_aarch64_adrp_p (uint32_t insn)
3597{
3598 return ((insn & 0x9f000000) == 0x90000000);
3599}
3600
3601
3602/* Helper predicate to look for cortex-a53 erratum 843419 sequence 1. */
3603
3604static bfd_boolean
3605_bfd_aarch64_erratum_843419_sequence_p (uint32_t insn_1, uint32_t insn_2,
3606 uint32_t insn_3)
3607{
3608 uint32_t rt;
3609 uint32_t rt2;
3610 bfd_boolean pair;
3611 bfd_boolean load;
3612
3613 return (aarch64_mem_op_p (insn_2, &rt, &rt2, &pair, &load)
3614 && (!pair
3615 || (pair && !load))
3616 && AARCH64_LDST_UIMM (insn_3)
3617 && AARCH64_RN (insn_3) == AARCH64_RD (insn_1));
3618}
3619
3620
3621/* Test for the presence of Cortex-A53 erratum 843419 instruction sequence.
3622
3623 Return TRUE if section CONTENTS at offset I contains one of the
3624 erratum 843419 sequences, otherwise return FALSE. If a sequence is
3625 seen set P_VENEER_I to the offset of the final LOAD/STORE
3626 instruction in the sequence.
3627 */
3628
3629static bfd_boolean
3630_bfd_aarch64_erratum_843419_p (bfd_byte *contents, bfd_vma vma,
3631 bfd_vma i, bfd_vma span_end,
3632 bfd_vma *p_veneer_i)
3633{
3634 uint32_t insn_1 = bfd_getl32 (contents + i);
3635
3636 if (!_bfd_aarch64_adrp_p (insn_1))
3637 return FALSE;
3638
3639 if (span_end < i + 12)
3640 return FALSE;
3641
3642 uint32_t insn_2 = bfd_getl32 (contents + i + 4);
3643 uint32_t insn_3 = bfd_getl32 (contents + i + 8);
3644
3645 if ((vma & 0xfff) != 0xff8 && (vma & 0xfff) != 0xffc)
3646 return FALSE;
3647
3648 if (_bfd_aarch64_erratum_843419_sequence_p (insn_1, insn_2, insn_3))
3649 {
3650 *p_veneer_i = i + 8;
3651 return TRUE;
3652 }
3653
3654 if (span_end < i + 16)
3655 return FALSE;
3656
3657 uint32_t insn_4 = bfd_getl32 (contents + i + 12);
3658
3659 if (_bfd_aarch64_erratum_843419_sequence_p (insn_1, insn_2, insn_4))
3660 {
3661 *p_veneer_i = i + 12;
3662 return TRUE;
3663 }
3664
3665 return FALSE;
3666}
3667
3668
13f622ec
MS
3669/* Resize all stub sections. */
3670
3671static void
3672_bfd_aarch64_resize_stubs (struct elf_aarch64_link_hash_table *htab)
3673{
3674 asection *section;
3675
3676 /* OK, we've added some stubs. Find out the new size of the
3677 stub sections. */
3678 for (section = htab->stub_bfd->sections;
3679 section != NULL; section = section->next)
3680 {
3681 /* Ignore non-stub sections. */
3682 if (!strstr (section->name, STUB_SUFFIX))
3683 continue;
3684 section->size = 0;
3685 }
3686
3687 bfd_hash_traverse (&htab->stub_hash_table, aarch64_size_one_stub, htab);
13f622ec 3688
61865519
MS
3689 for (section = htab->stub_bfd->sections;
3690 section != NULL; section = section->next)
3691 {
3692 if (!strstr (section->name, STUB_SUFFIX))
3693 continue;
3694
3695 if (section->size)
3696 section->size += 4;
4106101c
MS
3697
3698 /* Ensure all stub sections have a size which is a multiple of
3699 4096. This is important in order to ensure that the insertion
3700 of stub sections does not in itself move existing code around
3701 in such a way that new errata sequences are created. */
3702 if (htab->fix_erratum_843419)
3703 if (section->size)
3704 section->size = BFD_ALIGN (section->size, 0x1000);
3705 }
3706}
3707
3708
3709/* Construct an erratum 843419 workaround stub name.
3710 */
3711
3712static char *
3713_bfd_aarch64_erratum_843419_stub_name (asection *input_section,
3714 bfd_vma offset)
3715{
3716 const bfd_size_type len = 8 + 4 + 1 + 8 + 1 + 16 + 1;
3717 char *stub_name = bfd_malloc (len);
3718
3719 if (stub_name != NULL)
3720 snprintf (stub_name, len, "e843419@%04x_%08x_%" BFD_VMA_FMT "x",
3721 input_section->owner->id,
3722 input_section->id,
3723 offset);
3724 return stub_name;
3725}
3726
3727/* Build a stub_entry structure describing an 843419 fixup.
3728
3729 The stub_entry constructed is populated with the bit pattern INSN
3730 of the instruction located at OFFSET within input SECTION.
3731
3732 Returns TRUE on success. */
3733
3734static bfd_boolean
3735_bfd_aarch64_erratum_843419_fixup (uint32_t insn,
3736 bfd_vma adrp_offset,
3737 bfd_vma ldst_offset,
3738 asection *section,
3739 struct bfd_link_info *info)
3740{
3741 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3742 char *stub_name;
3743 struct elf_aarch64_stub_hash_entry *stub_entry;
3744
3745 stub_name = _bfd_aarch64_erratum_843419_stub_name (section, ldst_offset);
3746 stub_entry = aarch64_stub_hash_lookup (&htab->stub_hash_table, stub_name,
3747 FALSE, FALSE);
3748 if (stub_entry)
3749 {
3750 free (stub_name);
3751 return TRUE;
3752 }
3753
3754 /* We always place an 843419 workaround veneer in the stub section
3755 attached to the input section in which an erratum sequence has
3756 been found. This ensures that later in the link process (in
3757 elfNN_aarch64_write_section) when we copy the veneered
3758 instruction from the input section into the stub section the
3759 copied instruction will have had any relocations applied to it.
3760 If we placed workaround veneers in any other stub section then we
3761 could not assume that all relocations have been processed on the
3762 corresponding input section at the point we output the stub
3763 section.
3764 */
3765
3766 stub_entry = _bfd_aarch64_add_stub_entry_after (stub_name, section, htab);
3767 if (stub_entry == NULL)
3768 {
3769 free (stub_name);
3770 return FALSE;
3771 }
3772
3773 stub_entry->adrp_offset = adrp_offset;
3774 stub_entry->target_value = ldst_offset;
3775 stub_entry->target_section = section;
3776 stub_entry->stub_type = aarch64_stub_erratum_843419_veneer;
3777 stub_entry->veneered_insn = insn;
3778 stub_entry->output_name = stub_name;
3779
3780 return TRUE;
3781}
3782
3783
3784/* Scan an input section looking for the signature of erratum 843419.
3785
3786 Scans input SECTION in INPUT_BFD looking for erratum 843419
3787 signatures, for each signature found a stub_entry is created
3788 describing the location of the erratum for subsequent fixup.
3789
3790 Return TRUE on successful scan, FALSE on failure to scan.
3791 */
3792
3793static bfd_boolean
3794_bfd_aarch64_erratum_843419_scan (bfd *input_bfd, asection *section,
3795 struct bfd_link_info *info)
3796{
3797 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
3798
3799 if (htab == NULL)
3800 return TRUE;
3801
3802 if (elf_section_type (section) != SHT_PROGBITS
3803 || (elf_section_flags (section) & SHF_EXECINSTR) == 0
3804 || (section->flags & SEC_EXCLUDE) != 0
3805 || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
3806 || (section->output_section == bfd_abs_section_ptr))
3807 return TRUE;
3808
3809 do
3810 {
3811 bfd_byte *contents = NULL;
3812 struct _aarch64_elf_section_data *sec_data;
3813 unsigned int span;
3814
3815 if (elf_section_data (section)->this_hdr.contents != NULL)
3816 contents = elf_section_data (section)->this_hdr.contents;
3817 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
3818 return FALSE;
3819
3820 sec_data = elf_aarch64_section_data (section);
3821
3822 qsort (sec_data->map, sec_data->mapcount,
3823 sizeof (elf_aarch64_section_map), elf_aarch64_compare_mapping);
3824
3825 for (span = 0; span < sec_data->mapcount; span++)
3826 {
3827 unsigned int span_start = sec_data->map[span].vma;
3828 unsigned int span_end = ((span == sec_data->mapcount - 1)
3829 ? sec_data->map[0].vma + section->size
3830 : sec_data->map[span + 1].vma);
3831 unsigned int i;
3832 char span_type = sec_data->map[span].type;
3833
3834 if (span_type == 'd')
3835 continue;
3836
3837 for (i = span_start; i + 8 < span_end; i += 4)
3838 {
3839 bfd_vma vma = (section->output_section->vma
3840 + section->output_offset
3841 + i);
3842 bfd_vma veneer_i;
3843
3844 if (_bfd_aarch64_erratum_843419_p
3845 (contents, vma, i, span_end, &veneer_i))
3846 {
3847 uint32_t insn = bfd_getl32 (contents + veneer_i);
3848
3849 if (!_bfd_aarch64_erratum_843419_fixup (insn, i, veneer_i,
3850 section, info))
3851 return FALSE;
3852 }
3853 }
3854 }
3855
3856 if (elf_section_data (section)->this_hdr.contents == NULL)
3857 free (contents);
61865519 3858 }
4106101c
MS
3859 while (0);
3860
3861 return TRUE;
61865519 3862}
13f622ec 3863
4106101c 3864
a06ea964
NC
3865/* Determine and set the size of the stub section for a final link.
3866
3867 The basic idea here is to examine all the relocations looking for
3868 PC-relative calls to a target that is unreachable with a "bl"
3869 instruction. */
3870
3871bfd_boolean
cec5225b 3872elfNN_aarch64_size_stubs (bfd *output_bfd,
a06ea964
NC
3873 bfd *stub_bfd,
3874 struct bfd_link_info *info,
3875 bfd_signed_vma group_size,
3876 asection * (*add_stub_section) (const char *,
3877 asection *),
3878 void (*layout_sections_again) (void))
3879{
3880 bfd_size_type stub_group_size;
3881 bfd_boolean stubs_always_before_branch;
5421cc6e 3882 bfd_boolean stub_changed = FALSE;
cec5225b 3883 struct elf_aarch64_link_hash_table *htab = elf_aarch64_hash_table (info);
68fcca92 3884 unsigned int num_erratum_835769_fixes = 0;
a06ea964
NC
3885
3886 /* Propagate mach to stub bfd, because it may not have been
3887 finalized when we created stub_bfd. */
3888 bfd_set_arch_mach (stub_bfd, bfd_get_arch (output_bfd),
3889 bfd_get_mach (output_bfd));
3890
3891 /* Stash our params away. */
3892 htab->stub_bfd = stub_bfd;
3893 htab->add_stub_section = add_stub_section;
3894 htab->layout_sections_again = layout_sections_again;
3895 stubs_always_before_branch = group_size < 0;
3896 if (group_size < 0)
3897 stub_group_size = -group_size;
3898 else
3899 stub_group_size = group_size;
3900
3901 if (stub_group_size == 1)
3902 {
3903 /* Default values. */
b9eead84 3904 /* AArch64 branch range is +-128MB. The value used is 1MB less. */
a06ea964
NC
3905 stub_group_size = 127 * 1024 * 1024;
3906 }
3907
3908 group_sections (htab, stub_group_size, stubs_always_before_branch);
3909
4106101c
MS
3910 (*htab->layout_sections_again) ();
3911
5421cc6e
MS
3912 if (htab->fix_erratum_835769)
3913 {
3914 bfd *input_bfd;
3915
3916 for (input_bfd = info->input_bfds;
3917 input_bfd != NULL; input_bfd = input_bfd->link.next)
3918 if (!_bfd_aarch64_erratum_835769_scan (input_bfd, info,
3919 &num_erratum_835769_fixes))
3920 return FALSE;
3921
4106101c
MS
3922 _bfd_aarch64_resize_stubs (htab);
3923 (*htab->layout_sections_again) ();
3924 }
3925
3926 if (htab->fix_erratum_843419)
3927 {
3928 bfd *input_bfd;
3929
3930 for (input_bfd = info->input_bfds;
3931 input_bfd != NULL;
3932 input_bfd = input_bfd->link.next)
3933 {
3934 asection *section;
3935
3936 for (section = input_bfd->sections;
3937 section != NULL;
3938 section = section->next)
3939 if (!_bfd_aarch64_erratum_843419_scan (input_bfd, section, info))
3940 return FALSE;
3941 }
3942
3943 _bfd_aarch64_resize_stubs (htab);
3944 (*htab->layout_sections_again) ();
5421cc6e
MS
3945 }
3946
a06ea964
NC
3947 while (1)
3948 {
3949 bfd *input_bfd;
a06ea964 3950
9b9971aa
MS
3951 for (input_bfd = info->input_bfds;
3952 input_bfd != NULL; input_bfd = input_bfd->link.next)
a06ea964
NC
3953 {
3954 Elf_Internal_Shdr *symtab_hdr;
3955 asection *section;
3956 Elf_Internal_Sym *local_syms = NULL;
3957
3958 /* We'll need the symbol table in a second. */
3959 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
3960 if (symtab_hdr->sh_info == 0)
3961 continue;
3962
3963 /* Walk over each section attached to the input bfd. */
3964 for (section = input_bfd->sections;
3965 section != NULL; section = section->next)
3966 {
3967 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
3968
3969 /* If there aren't any relocs, then there's nothing more
3970 to do. */
3971 if ((section->flags & SEC_RELOC) == 0
3972 || section->reloc_count == 0
3973 || (section->flags & SEC_CODE) == 0)
3974 continue;
3975
3976 /* If this section is a link-once section that will be
3977 discarded, then don't create any stubs. */
3978 if (section->output_section == NULL
3979 || section->output_section->owner != output_bfd)
3980 continue;
3981
3982 /* Get the relocs. */
3983 internal_relocs
3984 = _bfd_elf_link_read_relocs (input_bfd, section, NULL,
3985 NULL, info->keep_memory);
3986 if (internal_relocs == NULL)
3987 goto error_ret_free_local;
3988
3989 /* Now examine each relocation. */
3990 irela = internal_relocs;
3991 irelaend = irela + section->reloc_count;
3992 for (; irela < irelaend; irela++)
3993 {
3994 unsigned int r_type, r_indx;
cec5225b
YZ
3995 enum elf_aarch64_stub_type stub_type;
3996 struct elf_aarch64_stub_hash_entry *stub_entry;
a06ea964
NC
3997 asection *sym_sec;
3998 bfd_vma sym_value;
3999 bfd_vma destination;
cec5225b 4000 struct elf_aarch64_link_hash_entry *hash;
a06ea964
NC
4001 const char *sym_name;
4002 char *stub_name;
4003 const asection *id_sec;
4004 unsigned char st_type;
4005 bfd_size_type len;
4006
cec5225b
YZ
4007 r_type = ELFNN_R_TYPE (irela->r_info);
4008 r_indx = ELFNN_R_SYM (irela->r_info);
a06ea964
NC
4009
4010 if (r_type >= (unsigned int) R_AARCH64_end)
4011 {
4012 bfd_set_error (bfd_error_bad_value);
4013 error_ret_free_internal:
4014 if (elf_section_data (section)->relocs == NULL)
4015 free (internal_relocs);
4016 goto error_ret_free_local;
4017 }
4018
4019 /* Only look for stubs on unconditional branch and
4020 branch and link instructions. */
a6bb11b2
YZ
4021 if (r_type != (unsigned int) AARCH64_R (CALL26)
4022 && r_type != (unsigned int) AARCH64_R (JUMP26))
a06ea964
NC
4023 continue;
4024
4025 /* Now determine the call target, its name, value,
4026 section. */
4027 sym_sec = NULL;
4028 sym_value = 0;
4029 destination = 0;
4030 hash = NULL;
4031 sym_name = NULL;
4032 if (r_indx < symtab_hdr->sh_info)
4033 {
4034 /* It's a local symbol. */
4035 Elf_Internal_Sym *sym;
4036 Elf_Internal_Shdr *hdr;
4037
4038 if (local_syms == NULL)
4039 {
4040 local_syms
4041 = (Elf_Internal_Sym *) symtab_hdr->contents;
4042 if (local_syms == NULL)
4043 local_syms
4044 = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
4045 symtab_hdr->sh_info, 0,
4046 NULL, NULL, NULL);
4047 if (local_syms == NULL)
4048 goto error_ret_free_internal;
4049 }
4050
4051 sym = local_syms + r_indx;
4052 hdr = elf_elfsections (input_bfd)[sym->st_shndx];
4053 sym_sec = hdr->bfd_section;
4054 if (!sym_sec)
4055 /* This is an undefined symbol. It can never
4056 be resolved. */
4057 continue;
4058
4059 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
4060 sym_value = sym->st_value;
4061 destination = (sym_value + irela->r_addend
4062 + sym_sec->output_offset
4063 + sym_sec->output_section->vma);
4064 st_type = ELF_ST_TYPE (sym->st_info);
4065 sym_name
4066 = bfd_elf_string_from_elf_section (input_bfd,
4067 symtab_hdr->sh_link,
4068 sym->st_name);
4069 }
4070 else
4071 {
4072 int e_indx;
4073
4074 e_indx = r_indx - symtab_hdr->sh_info;
cec5225b 4075 hash = ((struct elf_aarch64_link_hash_entry *)
a06ea964
NC
4076 elf_sym_hashes (input_bfd)[e_indx]);
4077
4078 while (hash->root.root.type == bfd_link_hash_indirect
4079 || hash->root.root.type == bfd_link_hash_warning)
cec5225b 4080 hash = ((struct elf_aarch64_link_hash_entry *)
a06ea964
NC
4081 hash->root.root.u.i.link);
4082
4083 if (hash->root.root.type == bfd_link_hash_defined
4084 || hash->root.root.type == bfd_link_hash_defweak)
4085 {
cec5225b
YZ
4086 struct elf_aarch64_link_hash_table *globals =
4087 elf_aarch64_hash_table (info);
a06ea964
NC
4088 sym_sec = hash->root.root.u.def.section;
4089 sym_value = hash->root.root.u.def.value;
4090 /* For a destination in a shared library,
4091 use the PLT stub as target address to
4092 decide whether a branch stub is
4093 needed. */
4094 if (globals->root.splt != NULL && hash != NULL
4095 && hash->root.plt.offset != (bfd_vma) - 1)
4096 {
4097 sym_sec = globals->root.splt;
4098 sym_value = hash->root.plt.offset;
4099 if (sym_sec->output_section != NULL)
4100 destination = (sym_value
4101 + sym_sec->output_offset
4102 +
4103 sym_sec->output_section->vma);
4104 }
4105 else if (sym_sec->output_section != NULL)
4106 destination = (sym_value + irela->r_addend
4107 + sym_sec->output_offset
4108 + sym_sec->output_section->vma);
4109 }
4110 else if (hash->root.root.type == bfd_link_hash_undefined
4111 || (hash->root.root.type
4112 == bfd_link_hash_undefweak))
4113 {
4114 /* For a shared library, use the PLT stub as
4115 target address to decide whether a long
4116 branch stub is needed.
4117 For absolute code, they cannot be handled. */
cec5225b
YZ
4118 struct elf_aarch64_link_hash_table *globals =
4119 elf_aarch64_hash_table (info);
a06ea964
NC
4120
4121 if (globals->root.splt != NULL && hash != NULL
4122 && hash->root.plt.offset != (bfd_vma) - 1)
4123 {
4124 sym_sec = globals->root.splt;
4125 sym_value = hash->root.plt.offset;
4126 if (sym_sec->output_section != NULL)
4127 destination = (sym_value
4128 + sym_sec->output_offset
4129 +
4130 sym_sec->output_section->vma);
4131 }
4132 else
4133 continue;
4134 }
4135 else
4136 {
4137 bfd_set_error (bfd_error_bad_value);
4138 goto error_ret_free_internal;
4139 }
4140 st_type = ELF_ST_TYPE (hash->root.type);
4141 sym_name = hash->root.root.root.string;
4142 }
4143
4144 /* Determine what (if any) linker stub is needed. */
4145 stub_type = aarch64_type_of_stub
f678ded7 4146 (info, section, irela, sym_sec, st_type, hash, destination);
a06ea964
NC
4147 if (stub_type == aarch64_stub_none)
4148 continue;
4149
4150 /* Support for grouping stub sections. */
4151 id_sec = htab->stub_group[section->id].link_sec;
4152
4153 /* Get the name of this stub. */
cec5225b 4154 stub_name = elfNN_aarch64_stub_name (id_sec, sym_sec, hash,
a06ea964
NC
4155 irela);
4156 if (!stub_name)
4157 goto error_ret_free_internal;
4158
4159 stub_entry =
4160 aarch64_stub_hash_lookup (&htab->stub_hash_table,
4161 stub_name, FALSE, FALSE);
4162 if (stub_entry != NULL)
4163 {
4164 /* The proper stub has already been created. */
4165 free (stub_name);
4166 continue;
4167 }
4168
ef857521
MS
4169 stub_entry = _bfd_aarch64_add_stub_entry_in_group
4170 (stub_name, section, htab);
a06ea964
NC
4171 if (stub_entry == NULL)
4172 {
4173 free (stub_name);
4174 goto error_ret_free_internal;
4175 }
4176
2f340668 4177 stub_entry->target_value = sym_value + irela->r_addend;
a06ea964
NC
4178 stub_entry->target_section = sym_sec;
4179 stub_entry->stub_type = stub_type;
4180 stub_entry->h = hash;
4181 stub_entry->st_type = st_type;
4182
4183 if (sym_name == NULL)
4184 sym_name = "unnamed";
4185 len = sizeof (STUB_ENTRY_NAME) + strlen (sym_name);
4186 stub_entry->output_name = bfd_alloc (htab->stub_bfd, len);
4187 if (stub_entry->output_name == NULL)
4188 {
4189 free (stub_name);
4190 goto error_ret_free_internal;
4191 }
4192
4193 snprintf (stub_entry->output_name, len, STUB_ENTRY_NAME,
4194 sym_name);
4195
4196 stub_changed = TRUE;
4197 }
4198
4199 /* We're done with the internal relocs, free them. */
4200 if (elf_section_data (section)->relocs == NULL)
4201 free (internal_relocs);
4202 }
4203 }
4204
4205 if (!stub_changed)
4206 break;
4207
13f622ec 4208 _bfd_aarch64_resize_stubs (htab);
a06ea964
NC
4209
4210 /* Ask the linker to do its stuff. */
4211 (*htab->layout_sections_again) ();
4212 stub_changed = FALSE;
4213 }
4214
4215 return TRUE;
4216
4217error_ret_free_local:
4218 return FALSE;
4219}
4220
4221/* Build all the stubs associated with the current output file. The
4222 stubs are kept in a hash table attached to the main linker hash
4223 table. We also set up the .plt entries for statically linked PIC
4224 functions here. This function is called via aarch64_elf_finish in the
4225 linker. */
4226
4227bfd_boolean
cec5225b 4228elfNN_aarch64_build_stubs (struct bfd_link_info *info)
a06ea964
NC
4229{
4230 asection *stub_sec;
4231 struct bfd_hash_table *table;
cec5225b 4232 struct elf_aarch64_link_hash_table *htab;
a06ea964 4233
cec5225b 4234 htab = elf_aarch64_hash_table (info);
a06ea964
NC
4235
4236 for (stub_sec = htab->stub_bfd->sections;
4237 stub_sec != NULL; stub_sec = stub_sec->next)
4238 {
4239 bfd_size_type size;
4240
4241 /* Ignore non-stub sections. */
4242 if (!strstr (stub_sec->name, STUB_SUFFIX))
4243 continue;
4244
4245 /* Allocate memory to hold the linker stubs. */
4246 size = stub_sec->size;
4247 stub_sec->contents = bfd_zalloc (htab->stub_bfd, size);
4248 if (stub_sec->contents == NULL && size != 0)
4249 return FALSE;
4250 stub_sec->size = 0;
61865519
MS
4251
4252 bfd_putl32 (0x14000000 | (size >> 2), stub_sec->contents);
4253 stub_sec->size += 4;
a06ea964
NC
4254 }
4255
4256 /* Build the stubs as directed by the stub hash table. */
4257 table = &htab->stub_hash_table;
4258 bfd_hash_traverse (table, aarch64_build_one_stub, info);
4259
4260 return TRUE;
4261}
4262
4263
4264/* Add an entry to the code/data map for section SEC. */
4265
4266static void
cec5225b 4267elfNN_aarch64_section_map_add (asection *sec, char type, bfd_vma vma)
a06ea964
NC
4268{
4269 struct _aarch64_elf_section_data *sec_data =
cec5225b 4270 elf_aarch64_section_data (sec);
a06ea964
NC
4271 unsigned int newidx;
4272
4273 if (sec_data->map == NULL)
4274 {
cec5225b 4275 sec_data->map = bfd_malloc (sizeof (elf_aarch64_section_map));
a06ea964
NC
4276 sec_data->mapcount = 0;
4277 sec_data->mapsize = 1;
4278 }
4279
4280 newidx = sec_data->mapcount++;
4281
4282 if (sec_data->mapcount > sec_data->mapsize)
4283 {
4284 sec_data->mapsize *= 2;
4285 sec_data->map = bfd_realloc_or_free
cec5225b 4286 (sec_data->map, sec_data->mapsize * sizeof (elf_aarch64_section_map));
a06ea964
NC
4287 }
4288
4289 if (sec_data->map)
4290 {
4291 sec_data->map[newidx].vma = vma;
4292 sec_data->map[newidx].type = type;
4293 }
4294}
4295
4296
4297/* Initialise maps of insn/data for input BFDs. */
4298void
cec5225b 4299bfd_elfNN_aarch64_init_maps (bfd *abfd)
a06ea964
NC
4300{
4301 Elf_Internal_Sym *isymbuf;
4302 Elf_Internal_Shdr *hdr;
4303 unsigned int i, localsyms;
4304
4305 /* Make sure that we are dealing with an AArch64 elf binary. */
4306 if (!is_aarch64_elf (abfd))
4307 return;
4308
4309 if ((abfd->flags & DYNAMIC) != 0)
68fcca92 4310 return;
a06ea964
NC
4311
4312 hdr = &elf_symtab_hdr (abfd);
4313 localsyms = hdr->sh_info;
4314
4315 /* Obtain a buffer full of symbols for this BFD. The hdr->sh_info field
4316 should contain the number of local symbols, which should come before any
4317 global symbols. Mapping symbols are always local. */
4318 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, localsyms, 0, NULL, NULL, NULL);
4319
4320 /* No internal symbols read? Skip this BFD. */
4321 if (isymbuf == NULL)
4322 return;
4323
4324 for (i = 0; i < localsyms; i++)
4325 {
4326 Elf_Internal_Sym *isym = &isymbuf[i];
4327 asection *sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
4328 const char *name;
4329
4330 if (sec != NULL && ELF_ST_BIND (isym->st_info) == STB_LOCAL)
4331 {
4332 name = bfd_elf_string_from_elf_section (abfd,
4333 hdr->sh_link,
4334 isym->st_name);
4335
4336 if (bfd_is_aarch64_special_symbol_name
4337 (name, BFD_AARCH64_SPECIAL_SYM_TYPE_MAP))
cec5225b 4338 elfNN_aarch64_section_map_add (sec, name[1], isym->st_value);
a06ea964
NC
4339 }
4340 }
4341}
4342
4343/* Set option values needed during linking. */
4344void
cec5225b 4345bfd_elfNN_aarch64_set_options (struct bfd *output_bfd,
a06ea964
NC
4346 struct bfd_link_info *link_info,
4347 int no_enum_warn,
68fcca92 4348 int no_wchar_warn, int pic_veneer,
4106101c
MS
4349 int fix_erratum_835769,
4350 int fix_erratum_843419)
a06ea964 4351{
cec5225b 4352 struct elf_aarch64_link_hash_table *globals;
a06ea964 4353
cec5225b 4354 globals = elf_aarch64_hash_table (link_info);
a06ea964 4355 globals->pic_veneer = pic_veneer;
68fcca92 4356 globals->fix_erratum_835769 = fix_erratum_835769;
4106101c
MS
4357 globals->fix_erratum_843419 = fix_erratum_843419;
4358 globals->fix_erratum_843419_adr = TRUE;
a06ea964
NC
4359
4360 BFD_ASSERT (is_aarch64_elf (output_bfd));
4361 elf_aarch64_tdata (output_bfd)->no_enum_size_warning = no_enum_warn;
4362 elf_aarch64_tdata (output_bfd)->no_wchar_size_warning = no_wchar_warn;
4363}
4364
a06ea964
NC
4365static bfd_vma
4366aarch64_calculate_got_entry_vma (struct elf_link_hash_entry *h,
cec5225b 4367 struct elf_aarch64_link_hash_table
a06ea964
NC
4368 *globals, struct bfd_link_info *info,
4369 bfd_vma value, bfd *output_bfd,
4370 bfd_boolean *unresolved_reloc_p)
4371{
4372 bfd_vma off = (bfd_vma) - 1;
4373 asection *basegot = globals->root.sgot;
4374 bfd_boolean dyn = globals->root.dynamic_sections_created;
4375
4376 if (h != NULL)
4377 {
a6bb11b2 4378 BFD_ASSERT (basegot != NULL);
a06ea964
NC
4379 off = h->got.offset;
4380 BFD_ASSERT (off != (bfd_vma) - 1);
0e1862bb
L
4381 if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h)
4382 || (bfd_link_pic (info)
a06ea964
NC
4383 && SYMBOL_REFERENCES_LOCAL (info, h))
4384 || (ELF_ST_VISIBILITY (h->other)
4385 && h->root.type == bfd_link_hash_undefweak))
4386 {
4387 /* This is actually a static link, or it is a -Bsymbolic link
4388 and the symbol is defined locally. We must initialize this
4389 entry in the global offset table. Since the offset must
a6bb11b2
YZ
4390 always be a multiple of 8 (4 in the case of ILP32), we use
4391 the least significant bit to record whether we have
4392 initialized it already.
a06ea964
NC
4393 When doing a dynamic link, we create a .rel(a).got relocation
4394 entry to initialize the value. This is done in the
4395 finish_dynamic_symbol routine. */
4396 if ((off & 1) != 0)
4397 off &= ~1;
4398 else
4399 {
cec5225b 4400 bfd_put_NN (output_bfd, value, basegot->contents + off);
a06ea964
NC
4401 h->got.offset |= 1;
4402 }
4403 }
4404 else
4405 *unresolved_reloc_p = FALSE;
4406
4407 off = off + basegot->output_section->vma + basegot->output_offset;
4408 }
4409
4410 return off;
4411}
4412
4413/* Change R_TYPE to a more efficient access model where possible,
4414 return the new reloc type. */
4415
a6bb11b2
YZ
4416static bfd_reloc_code_real_type
4417aarch64_tls_transition_without_check (bfd_reloc_code_real_type r_type,
a06ea964
NC
4418 struct elf_link_hash_entry *h)
4419{
4420 bfd_boolean is_local = h == NULL;
a6bb11b2 4421
a06ea964
NC
4422 switch (r_type)
4423 {
a6bb11b2 4424 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
ce336788 4425 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
a6bb11b2
YZ
4426 return (is_local
4427 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
4428 : BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21);
4429
389b8029
MS
4430 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
4431 return (is_local
4432 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4433 : r_type);
4434
1ada945d
MS
4435 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
4436 return (is_local
4437 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1
4438 : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19);
4439
0484b454
RL
4440 case BFD_RELOC_AARCH64_TLSDESC_LDR:
4441 return (is_local
4442 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4443 : BFD_RELOC_AARCH64_NONE);
4444
4445 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
4446 return (is_local
4447 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
4448 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC);
4449
4450 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
4451 return (is_local
4452 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
4453 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1);
4454
a6bb11b2 4455 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
ce336788 4456 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
a6bb11b2
YZ
4457 return (is_local
4458 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC
4459 : BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC);
4460
4461 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
4462 return is_local ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1 : r_type;
4463
4464 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
4465 return is_local ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC : r_type;
4466
043bf05a
MS
4467 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
4468 return r_type;
4469
3c12b054
MS
4470 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
4471 return (is_local
4472 ? BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12
4473 : BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19);
4474
0484b454 4475 case BFD_RELOC_AARCH64_TLSDESC_ADD:
a6bb11b2
YZ
4476 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
4477 case BFD_RELOC_AARCH64_TLSDESC_CALL:
a06ea964 4478 /* Instructions with these relocations will become NOPs. */
a6bb11b2
YZ
4479 return BFD_RELOC_AARCH64_NONE;
4480
259364ad
JW
4481 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
4482 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
4483 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
4484 return is_local ? BFD_RELOC_AARCH64_NONE : r_type;
4485
ac734732
RL
4486#if ARCH_SIZE == 64
4487 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
4488 return is_local
4489 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC
4490 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC;
4491
4492 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
4493 return is_local
4494 ? BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2
4495 : BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1;
4496#endif
4497
a6bb11b2
YZ
4498 default:
4499 break;
a06ea964
NC
4500 }
4501
4502 return r_type;
4503}
4504
4505static unsigned int
a6bb11b2 4506aarch64_reloc_got_type (bfd_reloc_code_real_type r_type)
a06ea964
NC
4507{
4508 switch (r_type)
4509 {
a6bb11b2
YZ
4510 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
4511 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7018c030 4512 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
ce336788 4513 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
a2e1db00 4514 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
99ad26cb 4515 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
ce336788 4516 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
dc8008f5 4517 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 4518 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
a06ea964
NC
4519 return GOT_NORMAL;
4520
ce336788 4521 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
a6bb11b2 4522 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
3c12b054 4523 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
7ba7cfe4 4524 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
94facae3 4525 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
73f925cc 4526 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
f69e4920 4527 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
77a69ff8 4528 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
a06ea964
NC
4529 return GOT_TLS_GD;
4530
0484b454 4531 case BFD_RELOC_AARCH64_TLSDESC_ADD:
a6bb11b2
YZ
4532 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
4533 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
389b8029 4534 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
a6bb11b2 4535 case BFD_RELOC_AARCH64_TLSDESC_CALL:
a6bb11b2 4536 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
ce336788 4537 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
1ada945d 4538 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
0484b454
RL
4539 case BFD_RELOC_AARCH64_TLSDESC_LDR:
4540 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
4541 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
a06ea964
NC
4542 return GOT_TLSDESC_GD;
4543
a6bb11b2 4544 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
a6bb11b2 4545 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
ce336788 4546 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
043bf05a 4547 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
3b957e5b
RL
4548 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
4549 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
a06ea964
NC
4550 return GOT_TLS_IE;
4551
a6bb11b2
YZ
4552 default:
4553 break;
a06ea964
NC
4554 }
4555 return GOT_UNKNOWN;
4556}
4557
4558static bfd_boolean
4559aarch64_can_relax_tls (bfd *input_bfd,
4560 struct bfd_link_info *info,
a6bb11b2 4561 bfd_reloc_code_real_type r_type,
a06ea964
NC
4562 struct elf_link_hash_entry *h,
4563 unsigned long r_symndx)
4564{
4565 unsigned int symbol_got_type;
4566 unsigned int reloc_got_type;
4567
9331eea1 4568 if (! IS_AARCH64_TLS_RELAX_RELOC (r_type))
a06ea964
NC
4569 return FALSE;
4570
cec5225b 4571 symbol_got_type = elfNN_aarch64_symbol_got_type (h, input_bfd, r_symndx);
a06ea964
NC
4572 reloc_got_type = aarch64_reloc_got_type (r_type);
4573
4574 if (symbol_got_type == GOT_TLS_IE && GOT_TLS_GD_ANY_P (reloc_got_type))
4575 return TRUE;
4576
0e1862bb 4577 if (bfd_link_pic (info))
a06ea964
NC
4578 return FALSE;
4579
4580 if (h && h->root.type == bfd_link_hash_undefweak)
4581 return FALSE;
4582
4583 return TRUE;
4584}
4585
a6bb11b2
YZ
4586/* Given the relocation code R_TYPE, return the relaxed bfd reloc
4587 enumerator. */
4588
4589static bfd_reloc_code_real_type
a06ea964
NC
4590aarch64_tls_transition (bfd *input_bfd,
4591 struct bfd_link_info *info,
4592 unsigned int r_type,
4593 struct elf_link_hash_entry *h,
4594 unsigned long r_symndx)
4595{
a6bb11b2
YZ
4596 bfd_reloc_code_real_type bfd_r_type
4597 = elfNN_aarch64_bfd_reloc_from_type (r_type);
a06ea964 4598
a6bb11b2
YZ
4599 if (! aarch64_can_relax_tls (input_bfd, info, bfd_r_type, h, r_symndx))
4600 return bfd_r_type;
4601
4602 return aarch64_tls_transition_without_check (bfd_r_type, h);
a06ea964
NC
4603}
4604
4605/* Return the base VMA address which should be subtracted from real addresses
a6bb11b2 4606 when resolving R_AARCH64_TLS_DTPREL relocation. */
a06ea964
NC
4607
4608static bfd_vma
4609dtpoff_base (struct bfd_link_info *info)
4610{
4611 /* If tls_sec is NULL, we should have signalled an error already. */
4612 BFD_ASSERT (elf_hash_table (info)->tls_sec != NULL);
4613 return elf_hash_table (info)->tls_sec->vma;
4614}
4615
a06ea964
NC
4616/* Return the base VMA address which should be subtracted from real addresses
4617 when resolving R_AARCH64_TLS_GOTTPREL64 relocations. */
4618
4619static bfd_vma
4620tpoff_base (struct bfd_link_info *info)
4621{
4622 struct elf_link_hash_table *htab = elf_hash_table (info);
4623
4624 /* If tls_sec is NULL, we should have signalled an error already. */
ac21917f 4625 BFD_ASSERT (htab->tls_sec != NULL);
a06ea964
NC
4626
4627 bfd_vma base = align_power ((bfd_vma) TCB_SIZE,
4628 htab->tls_sec->alignment_power);
4629 return htab->tls_sec->vma - base;
4630}
4631
4632static bfd_vma *
4633symbol_got_offset_ref (bfd *input_bfd, struct elf_link_hash_entry *h,
4634 unsigned long r_symndx)
4635{
4636 /* Calculate the address of the GOT entry for symbol
4637 referred to in h. */
4638 if (h != NULL)
4639 return &h->got.offset;
4640 else
4641 {
4642 /* local symbol */
4643 struct elf_aarch64_local_symbol *l;
4644
cec5225b 4645 l = elf_aarch64_locals (input_bfd);
a06ea964
NC
4646 return &l[r_symndx].got_offset;
4647 }
4648}
4649
4650static void
4651symbol_got_offset_mark (bfd *input_bfd, struct elf_link_hash_entry *h,
4652 unsigned long r_symndx)
4653{
4654 bfd_vma *p;
4655 p = symbol_got_offset_ref (input_bfd, h, r_symndx);
4656 *p |= 1;
4657}
4658
4659static int
4660symbol_got_offset_mark_p (bfd *input_bfd, struct elf_link_hash_entry *h,
4661 unsigned long r_symndx)
4662{
4663 bfd_vma value;
4664 value = * symbol_got_offset_ref (input_bfd, h, r_symndx);
4665 return value & 1;
4666}
4667
4668static bfd_vma
4669symbol_got_offset (bfd *input_bfd, struct elf_link_hash_entry *h,
4670 unsigned long r_symndx)
4671{
4672 bfd_vma value;
4673 value = * symbol_got_offset_ref (input_bfd, h, r_symndx);
4674 value &= ~1;
4675 return value;
4676}
4677
4678static bfd_vma *
4679symbol_tlsdesc_got_offset_ref (bfd *input_bfd, struct elf_link_hash_entry *h,
4680 unsigned long r_symndx)
4681{
4682 /* Calculate the address of the GOT entry for symbol
4683 referred to in h. */
4684 if (h != NULL)
4685 {
cec5225b
YZ
4686 struct elf_aarch64_link_hash_entry *eh;
4687 eh = (struct elf_aarch64_link_hash_entry *) h;
a06ea964
NC
4688 return &eh->tlsdesc_got_jump_table_offset;
4689 }
4690 else
4691 {
4692 /* local symbol */
4693 struct elf_aarch64_local_symbol *l;
4694
cec5225b 4695 l = elf_aarch64_locals (input_bfd);
a06ea964
NC
4696 return &l[r_symndx].tlsdesc_got_jump_table_offset;
4697 }
4698}
4699
4700static void
4701symbol_tlsdesc_got_offset_mark (bfd *input_bfd, struct elf_link_hash_entry *h,
4702 unsigned long r_symndx)
4703{
4704 bfd_vma *p;
4705 p = symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4706 *p |= 1;
4707}
4708
4709static int
4710symbol_tlsdesc_got_offset_mark_p (bfd *input_bfd,
4711 struct elf_link_hash_entry *h,
4712 unsigned long r_symndx)
4713{
4714 bfd_vma value;
4715 value = * symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4716 return value & 1;
4717}
4718
4719static bfd_vma
4720symbol_tlsdesc_got_offset (bfd *input_bfd, struct elf_link_hash_entry *h,
4721 unsigned long r_symndx)
4722{
4723 bfd_vma value;
4724 value = * symbol_tlsdesc_got_offset_ref (input_bfd, h, r_symndx);
4725 value &= ~1;
4726 return value;
4727}
4728
68fcca92
JW
4729/* Data for make_branch_to_erratum_835769_stub(). */
4730
4731struct erratum_835769_branch_to_stub_data
4732{
4106101c 4733 struct bfd_link_info *info;
68fcca92
JW
4734 asection *output_section;
4735 bfd_byte *contents;
4736};
4737
4738/* Helper to insert branches to erratum 835769 stubs in the right
4739 places for a particular section. */
4740
4741static bfd_boolean
4742make_branch_to_erratum_835769_stub (struct bfd_hash_entry *gen_entry,
4743 void *in_arg)
4744{
4745 struct elf_aarch64_stub_hash_entry *stub_entry;
4746 struct erratum_835769_branch_to_stub_data *data;
4747 bfd_byte *contents;
4748 unsigned long branch_insn = 0;
4749 bfd_vma veneered_insn_loc, veneer_entry_loc;
4750 bfd_signed_vma branch_offset;
4751 unsigned int target;
4752 bfd *abfd;
4753
4754 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
4755 data = (struct erratum_835769_branch_to_stub_data *) in_arg;
4756
4757 if (stub_entry->target_section != data->output_section
4758 || stub_entry->stub_type != aarch64_stub_erratum_835769_veneer)
4759 return TRUE;
4760
4761 contents = data->contents;
4762 veneered_insn_loc = stub_entry->target_section->output_section->vma
4763 + stub_entry->target_section->output_offset
4764 + stub_entry->target_value;
4765 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
4766 + stub_entry->stub_sec->output_offset
4767 + stub_entry->stub_offset;
4768 branch_offset = veneer_entry_loc - veneered_insn_loc;
4769
4770 abfd = stub_entry->target_section->owner;
4771 if (!aarch64_valid_branch_p (veneer_entry_loc, veneered_insn_loc))
4772 (*_bfd_error_handler)
4773 (_("%B: error: Erratum 835769 stub out "
4774 "of range (input file too large)"), abfd);
4775
4776 target = stub_entry->target_value;
4777 branch_insn = 0x14000000;
4778 branch_offset >>= 2;
4779 branch_offset &= 0x3ffffff;
4780 branch_insn |= branch_offset;
4781 bfd_putl32 (branch_insn, &contents[target]);
4782
4783 return TRUE;
4784}
4785
4106101c
MS
4786
4787static bfd_boolean
4788_bfd_aarch64_erratum_843419_branch_to_stub (struct bfd_hash_entry *gen_entry,
4789 void *in_arg)
4790{
4791 struct elf_aarch64_stub_hash_entry *stub_entry
4792 = (struct elf_aarch64_stub_hash_entry *) gen_entry;
4793 struct erratum_835769_branch_to_stub_data *data
4794 = (struct erratum_835769_branch_to_stub_data *) in_arg;
4795 struct bfd_link_info *info;
4796 struct elf_aarch64_link_hash_table *htab;
4797 bfd_byte *contents;
4798 asection *section;
4799 bfd *abfd;
4800 bfd_vma place;
4801 uint32_t insn;
4802
4803 info = data->info;
4804 contents = data->contents;
4805 section = data->output_section;
4806
4807 htab = elf_aarch64_hash_table (info);
4808
4809 if (stub_entry->target_section != section
4810 || stub_entry->stub_type != aarch64_stub_erratum_843419_veneer)
4811 return TRUE;
4812
4813 insn = bfd_getl32 (contents + stub_entry->target_value);
4814 bfd_putl32 (insn,
4815 stub_entry->stub_sec->contents + stub_entry->stub_offset);
4816
4817 place = (section->output_section->vma + section->output_offset
4818 + stub_entry->adrp_offset);
4819 insn = bfd_getl32 (contents + stub_entry->adrp_offset);
4820
4821 if ((insn & AARCH64_ADRP_OP_MASK) != AARCH64_ADRP_OP)
4822 abort ();
4823
4824 bfd_signed_vma imm =
4825 (_bfd_aarch64_sign_extend
4826 ((bfd_vma) _bfd_aarch64_decode_adrp_imm (insn) << 12, 33)
4827 - (place & 0xfff));
4828
4829 if (htab->fix_erratum_843419_adr
4830 && (imm >= AARCH64_MIN_ADRP_IMM && imm <= AARCH64_MAX_ADRP_IMM))
4831 {
4832 insn = (_bfd_aarch64_reencode_adr_imm (AARCH64_ADR_OP, imm)
4833 | AARCH64_RT (insn));
4834 bfd_putl32 (insn, contents + stub_entry->adrp_offset);
4835 }
4836 else
4837 {
4838 bfd_vma veneered_insn_loc;
4839 bfd_vma veneer_entry_loc;
4840 bfd_signed_vma branch_offset;
4841 uint32_t branch_insn;
4842
4843 veneered_insn_loc = stub_entry->target_section->output_section->vma
4844 + stub_entry->target_section->output_offset
4845 + stub_entry->target_value;
4846 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
4847 + stub_entry->stub_sec->output_offset
4848 + stub_entry->stub_offset;
4849 branch_offset = veneer_entry_loc - veneered_insn_loc;
4850
4851 abfd = stub_entry->target_section->owner;
4852 if (!aarch64_valid_branch_p (veneer_entry_loc, veneered_insn_loc))
4853 (*_bfd_error_handler)
4854 (_("%B: error: Erratum 843419 stub out "
4855 "of range (input file too large)"), abfd);
4856
4857 branch_insn = 0x14000000;
4858 branch_offset >>= 2;
4859 branch_offset &= 0x3ffffff;
4860 branch_insn |= branch_offset;
4861 bfd_putl32 (branch_insn, contents + stub_entry->target_value);
4862 }
4863 return TRUE;
4864}
4865
4866
68fcca92
JW
4867static bfd_boolean
4868elfNN_aarch64_write_section (bfd *output_bfd ATTRIBUTE_UNUSED,
4869 struct bfd_link_info *link_info,
4870 asection *sec,
4871 bfd_byte *contents)
4872
4873{
4874 struct elf_aarch64_link_hash_table *globals =
f872121a 4875 elf_aarch64_hash_table (link_info);
68fcca92
JW
4876
4877 if (globals == NULL)
4878 return FALSE;
4879
4880 /* Fix code to point to erratum 835769 stubs. */
4881 if (globals->fix_erratum_835769)
4882 {
4883 struct erratum_835769_branch_to_stub_data data;
4884
4106101c 4885 data.info = link_info;
68fcca92
JW
4886 data.output_section = sec;
4887 data.contents = contents;
4888 bfd_hash_traverse (&globals->stub_hash_table,
4889 make_branch_to_erratum_835769_stub, &data);
4890 }
4891
4106101c
MS
4892 if (globals->fix_erratum_843419)
4893 {
4894 struct erratum_835769_branch_to_stub_data data;
4895
4896 data.info = link_info;
4897 data.output_section = sec;
4898 data.contents = contents;
4899 bfd_hash_traverse (&globals->stub_hash_table,
4900 _bfd_aarch64_erratum_843419_branch_to_stub, &data);
4901 }
4902
68fcca92
JW
4903 return FALSE;
4904}
4905
a06ea964
NC
4906/* Perform a relocation as part of a final link. */
4907static bfd_reloc_status_type
cec5225b 4908elfNN_aarch64_final_link_relocate (reloc_howto_type *howto,
a06ea964
NC
4909 bfd *input_bfd,
4910 bfd *output_bfd,
4911 asection *input_section,
4912 bfd_byte *contents,
4913 Elf_Internal_Rela *rel,
4914 bfd_vma value,
4915 struct bfd_link_info *info,
4916 asection *sym_sec,
4917 struct elf_link_hash_entry *h,
4918 bfd_boolean *unresolved_reloc_p,
4919 bfd_boolean save_addend,
1419bbe5
WN
4920 bfd_vma *saved_addend,
4921 Elf_Internal_Sym *sym)
a06ea964 4922{
1419bbe5 4923 Elf_Internal_Shdr *symtab_hdr;
a06ea964 4924 unsigned int r_type = howto->type;
a6bb11b2
YZ
4925 bfd_reloc_code_real_type bfd_r_type
4926 = elfNN_aarch64_bfd_reloc_from_howto (howto);
4927 bfd_reloc_code_real_type new_bfd_r_type;
a06ea964
NC
4928 unsigned long r_symndx;
4929 bfd_byte *hit_data = contents + rel->r_offset;
b53b1bed 4930 bfd_vma place, off;
a06ea964 4931 bfd_signed_vma signed_addend;
cec5225b 4932 struct elf_aarch64_link_hash_table *globals;
a06ea964 4933 bfd_boolean weak_undef_p;
b53b1bed 4934 asection *base_got;
a06ea964 4935
cec5225b 4936 globals = elf_aarch64_hash_table (info);
a06ea964 4937
1419bbe5
WN
4938 symtab_hdr = &elf_symtab_hdr (input_bfd);
4939
a06ea964
NC
4940 BFD_ASSERT (is_aarch64_elf (input_bfd));
4941
cec5225b 4942 r_symndx = ELFNN_R_SYM (rel->r_info);
a06ea964
NC
4943
4944 /* It is possible to have linker relaxations on some TLS access
4945 models. Update our information here. */
a6bb11b2
YZ
4946 new_bfd_r_type = aarch64_tls_transition (input_bfd, info, r_type, h, r_symndx);
4947 if (new_bfd_r_type != bfd_r_type)
4948 {
4949 bfd_r_type = new_bfd_r_type;
4950 howto = elfNN_aarch64_howto_from_bfd_reloc (bfd_r_type);
4951 BFD_ASSERT (howto != NULL);
4952 r_type = howto->type;
4953 }
a06ea964
NC
4954
4955 place = input_section->output_section->vma
4956 + input_section->output_offset + rel->r_offset;
4957
4958 /* Get addend, accumulating the addend for consecutive relocs
4959 which refer to the same offset. */
4960 signed_addend = saved_addend ? *saved_addend : 0;
4961 signed_addend += rel->r_addend;
4962
4963 weak_undef_p = (h ? h->root.type == bfd_link_hash_undefweak
4964 : bfd_is_und_section (sym_sec));
a6bb11b2 4965
1419bbe5
WN
4966 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
4967 it here if it is defined in a non-shared object. */
4968 if (h != NULL
4969 && h->type == STT_GNU_IFUNC
4970 && h->def_regular)
4971 {
4972 asection *plt;
4973 const char *name;
99ad26cb 4974 bfd_vma addend = 0;
1419bbe5
WN
4975
4976 if ((input_section->flags & SEC_ALLOC) == 0
4977 || h->plt.offset == (bfd_vma) -1)
4978 abort ();
4979
4980 /* STT_GNU_IFUNC symbol must go through PLT. */
4981 plt = globals->root.splt ? globals->root.splt : globals->root.iplt;
4982 value = (plt->output_section->vma + plt->output_offset + h->plt.offset);
4983
4984 switch (bfd_r_type)
4985 {
4986 default:
4987 if (h->root.root.string)
4988 name = h->root.root.string;
4989 else
4990 name = bfd_elf_sym_name (input_bfd, symtab_hdr, sym,
4991 NULL);
4992 (*_bfd_error_handler)
4993 (_("%B: relocation %s against STT_GNU_IFUNC "
4994 "symbol `%s' isn't handled by %s"), input_bfd,
4995 howto->name, name, __FUNCTION__);
4996 bfd_set_error (bfd_error_bad_value);
4997 return FALSE;
4998
4999 case BFD_RELOC_AARCH64_NN:
5000 if (rel->r_addend != 0)
5001 {
5002 if (h->root.root.string)
5003 name = h->root.root.string;
5004 else
5005 name = bfd_elf_sym_name (input_bfd, symtab_hdr,
5006 sym, NULL);
5007 (*_bfd_error_handler)
5008 (_("%B: relocation %s against STT_GNU_IFUNC "
5009 "symbol `%s' has non-zero addend: %d"),
5010 input_bfd, howto->name, name, rel->r_addend);
5011 bfd_set_error (bfd_error_bad_value);
5012 return FALSE;
5013 }
5014
5015 /* Generate dynamic relocation only when there is a
5016 non-GOT reference in a shared object. */
0e1862bb 5017 if (bfd_link_pic (info) && h->non_got_ref)
1419bbe5
WN
5018 {
5019 Elf_Internal_Rela outrel;
5020 asection *sreloc;
5021
5022 /* Need a dynamic relocation to get the real function
5023 address. */
5024 outrel.r_offset = _bfd_elf_section_offset (output_bfd,
5025 info,
5026 input_section,
5027 rel->r_offset);
5028 if (outrel.r_offset == (bfd_vma) -1
5029 || outrel.r_offset == (bfd_vma) -2)
5030 abort ();
5031
5032 outrel.r_offset += (input_section->output_section->vma
5033 + input_section->output_offset);
5034
5035 if (h->dynindx == -1
5036 || h->forced_local
0e1862bb 5037 || bfd_link_executable (info))
1419bbe5
WN
5038 {
5039 /* This symbol is resolved locally. */
5040 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (IRELATIVE));
5041 outrel.r_addend = (h->root.u.def.value
5042 + h->root.u.def.section->output_section->vma
5043 + h->root.u.def.section->output_offset);
5044 }
5045 else
5046 {
5047 outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
5048 outrel.r_addend = 0;
5049 }
5050
5051 sreloc = globals->root.irelifunc;
5052 elf_append_rela (output_bfd, sreloc, &outrel);
5053
5054 /* If this reloc is against an external symbol, we
5055 do not want to fiddle with the addend. Otherwise,
5056 we need to include the symbol value so that it
5057 becomes an addend for the dynamic reloc. For an
5058 internal symbol, we have updated addend. */
5059 return bfd_reloc_ok;
5060 }
5061 /* FALLTHROUGH */
1419bbe5 5062 case BFD_RELOC_AARCH64_CALL26:
ce336788 5063 case BFD_RELOC_AARCH64_JUMP26:
1419bbe5
WN
5064 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5065 signed_addend,
5066 weak_undef_p);
5067 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type,
5068 howto, value);
1419bbe5
WN
5069 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
5070 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7018c030 5071 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
ce336788 5072 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
99ad26cb 5073 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
dc8008f5 5074 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 5075 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
a2e1db00 5076 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
ce336788 5077 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
1419bbe5
WN
5078 base_got = globals->root.sgot;
5079 off = h->got.offset;
5080
5081 if (base_got == NULL)
5082 abort ();
5083
5084 if (off == (bfd_vma) -1)
5085 {
5086 bfd_vma plt_index;
5087
5088 /* We can't use h->got.offset here to save state, or
5089 even just remember the offset, as finish_dynamic_symbol
5090 would use that as offset into .got. */
5091
5092 if (globals->root.splt != NULL)
5093 {
b1ee0cc4
WN
5094 plt_index = ((h->plt.offset - globals->plt_header_size) /
5095 globals->plt_entry_size);
1419bbe5
WN
5096 off = (plt_index + 3) * GOT_ENTRY_SIZE;
5097 base_got = globals->root.sgotplt;
5098 }
5099 else
5100 {
5101 plt_index = h->plt.offset / globals->plt_entry_size;
5102 off = plt_index * GOT_ENTRY_SIZE;
5103 base_got = globals->root.igotplt;
5104 }
5105
5106 if (h->dynindx == -1
5107 || h->forced_local
5108 || info->symbolic)
5109 {
5110 /* This references the local definition. We must
5111 initialize this entry in the global offset table.
5112 Since the offset must always be a multiple of 8,
5113 we use the least significant bit to record
5114 whether we have initialized it already.
5115
5116 When doing a dynamic link, we create a .rela.got
5117 relocation entry to initialize the value. This
5118 is done in the finish_dynamic_symbol routine. */
5119 if ((off & 1) != 0)
5120 off &= ~1;
5121 else
5122 {
5123 bfd_put_NN (output_bfd, value,
5124 base_got->contents + off);
5125 /* Note that this is harmless as -1 | 1 still is -1. */
5126 h->got.offset |= 1;
5127 }
5128 }
5129 value = (base_got->output_section->vma
5130 + base_got->output_offset + off);
5131 }
5132 else
5133 value = aarch64_calculate_got_entry_vma (h, globals, info,
5134 value, output_bfd,
5135 unresolved_reloc_p);
a0becb89
RL
5136
5137 switch (bfd_r_type)
5138 {
5139 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
5140 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
5141 addend = (globals->root.sgot->output_section->vma
5142 + globals->root.sgot->output_offset);
5143 break;
dc8008f5 5144 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 5145 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
a2e1db00
RL
5146 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
5147 value = (value - globals->root.sgot->output_section->vma
5148 - globals->root.sgot->output_offset);
a0becb89
RL
5149 default:
5150 break;
5151 }
5152
1419bbe5 5153 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
99ad26cb 5154 addend, weak_undef_p);
1419bbe5 5155 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type, howto, value);
1419bbe5 5156 case BFD_RELOC_AARCH64_ADD_LO12:
ce336788 5157 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
1419bbe5
WN
5158 break;
5159 }
5160 }
5161
a6bb11b2 5162 switch (bfd_r_type)
a06ea964 5163 {
a6bb11b2 5164 case BFD_RELOC_AARCH64_NONE:
0484b454 5165 case BFD_RELOC_AARCH64_TLSDESC_ADD:
a6bb11b2 5166 case BFD_RELOC_AARCH64_TLSDESC_CALL:
0484b454 5167 case BFD_RELOC_AARCH64_TLSDESC_LDR:
a06ea964
NC
5168 *unresolved_reloc_p = FALSE;
5169 return bfd_reloc_ok;
5170
a6bb11b2 5171 case BFD_RELOC_AARCH64_NN:
a06ea964
NC
5172
5173 /* When generating a shared object or relocatable executable, these
5174 relocations are copied into the output file to be resolved at
5175 run time. */
0e1862bb
L
5176 if (((bfd_link_pic (info) == TRUE)
5177 || globals->root.is_relocatable_executable)
a06ea964
NC
5178 && (input_section->flags & SEC_ALLOC)
5179 && (h == NULL
5180 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
5181 || h->root.type != bfd_link_hash_undefweak))
5182 {
5183 Elf_Internal_Rela outrel;
5184 bfd_byte *loc;
5185 bfd_boolean skip, relocate;
5186 asection *sreloc;
5187
5188 *unresolved_reloc_p = FALSE;
5189
a06ea964
NC
5190 skip = FALSE;
5191 relocate = FALSE;
5192
5193 outrel.r_addend = signed_addend;
5194 outrel.r_offset =
5195 _bfd_elf_section_offset (output_bfd, info, input_section,
5196 rel->r_offset);
5197 if (outrel.r_offset == (bfd_vma) - 1)
5198 skip = TRUE;
5199 else if (outrel.r_offset == (bfd_vma) - 2)
5200 {
5201 skip = TRUE;
5202 relocate = TRUE;
5203 }
5204
5205 outrel.r_offset += (input_section->output_section->vma
5206 + input_section->output_offset);
5207
5208 if (skip)
5209 memset (&outrel, 0, sizeof outrel);
5210 else if (h != NULL
5211 && h->dynindx != -1
0e1862bb
L
5212 && (!bfd_link_pic (info)
5213 || !SYMBOLIC_BIND (info, h)
5214 || !h->def_regular))
cec5225b 5215 outrel.r_info = ELFNN_R_INFO (h->dynindx, r_type);
a06ea964
NC
5216 else
5217 {
5218 int symbol;
5219
5220 /* On SVR4-ish systems, the dynamic loader cannot
5221 relocate the text and data segments independently,
5222 so the symbol does not matter. */
5223 symbol = 0;
a6bb11b2 5224 outrel.r_info = ELFNN_R_INFO (symbol, AARCH64_R (RELATIVE));
a06ea964
NC
5225 outrel.r_addend += value;
5226 }
5227
1419bbe5
WN
5228 sreloc = elf_section_data (input_section)->sreloc;
5229 if (sreloc == NULL || sreloc->contents == NULL)
5230 return bfd_reloc_notsupported;
5231
5232 loc = sreloc->contents + sreloc->reloc_count++ * RELOC_SIZE (globals);
cec5225b 5233 bfd_elfNN_swap_reloca_out (output_bfd, &outrel, loc);
a06ea964 5234
1419bbe5 5235 if (sreloc->reloc_count * RELOC_SIZE (globals) > sreloc->size)
a06ea964
NC
5236 {
5237 /* Sanity to check that we have previously allocated
5238 sufficient space in the relocation section for the
5239 number of relocations we actually want to emit. */
5240 abort ();
5241 }
5242
5243 /* If this reloc is against an external symbol, we do not want to
5244 fiddle with the addend. Otherwise, we need to include the symbol
5245 value so that it becomes an addend for the dynamic reloc. */
5246 if (!relocate)
5247 return bfd_reloc_ok;
5248
5249 return _bfd_final_link_relocate (howto, input_bfd, input_section,
5250 contents, rel->r_offset, value,
5251 signed_addend);
5252 }
5253 else
5254 value += signed_addend;
5255 break;
5256
a6bb11b2 5257 case BFD_RELOC_AARCH64_CALL26:
ce336788 5258 case BFD_RELOC_AARCH64_JUMP26:
a06ea964
NC
5259 {
5260 asection *splt = globals->root.splt;
5261 bfd_boolean via_plt_p =
5262 splt != NULL && h != NULL && h->plt.offset != (bfd_vma) - 1;
5263
5264 /* A call to an undefined weak symbol is converted to a jump to
5265 the next instruction unless a PLT entry will be created.
5266 The jump to the next instruction is optimized as a NOP.
5267 Do the same for local undefined symbols. */
5268 if (weak_undef_p && ! via_plt_p)
5269 {
5270 bfd_putl32 (INSN_NOP, hit_data);
5271 return bfd_reloc_ok;
5272 }
5273
5274 /* If the call goes through a PLT entry, make sure to
5275 check distance to the right destination address. */
5276 if (via_plt_p)
07f9ddfe
JW
5277 value = (splt->output_section->vma
5278 + splt->output_offset + h->plt.offset);
5279
5280 /* Check if a stub has to be inserted because the destination
5281 is too far away. */
5282 struct elf_aarch64_stub_hash_entry *stub_entry = NULL;
2f340668
JW
5283
5284 /* If the branch destination is directed to plt stub, "value" will be
5285 the final destination, otherwise we should plus signed_addend, it may
5286 contain non-zero value, for example call to local function symbol
5287 which are turned into "sec_sym + sec_off", and sec_off is kept in
5288 signed_addend. */
5289 if (! aarch64_valid_branch_p (via_plt_p ? value : value + signed_addend,
5290 place))
07f9ddfe
JW
5291 /* The target is out of reach, so redirect the branch to
5292 the local stub for this function. */
5293 stub_entry = elfNN_aarch64_get_stub_entry (input_section, sym_sec, h,
5294 rel, globals);
5295 if (stub_entry != NULL)
2f340668
JW
5296 {
5297 value = (stub_entry->stub_offset
5298 + stub_entry->stub_sec->output_offset
5299 + stub_entry->stub_sec->output_section->vma);
5300
5301 /* We have redirected the destination to stub entry address,
5302 so ignore any addend record in the original rela entry. */
5303 signed_addend = 0;
5304 }
a06ea964 5305 }
caed7120
YZ
5306 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5307 signed_addend, weak_undef_p);
07f9ddfe 5308 *unresolved_reloc_p = FALSE;
a06ea964
NC
5309 break;
5310
dcbd20eb
JW
5311 case BFD_RELOC_AARCH64_16_PCREL:
5312 case BFD_RELOC_AARCH64_32_PCREL:
5313 case BFD_RELOC_AARCH64_64_PCREL:
ce336788
JW
5314 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
5315 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
5316 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
5317 case BFD_RELOC_AARCH64_LD_LO19_PCREL:
0e1862bb 5318 if (bfd_link_pic (info)
dcbd20eb
JW
5319 && (input_section->flags & SEC_ALLOC) != 0
5320 && (input_section->flags & SEC_READONLY) != 0
5321 && h != NULL
5322 && !h->def_regular)
5323 {
5324 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5325
5326 (*_bfd_error_handler)
5327 (_("%B: relocation %s against external symbol `%s' can not be used"
5328 " when making a shared object; recompile with -fPIC"),
5329 input_bfd, elfNN_aarch64_howto_table[howto_index].name,
5330 h->root.root.string);
5331 bfd_set_error (bfd_error_bad_value);
5332 return FALSE;
5333 }
5334
a6bb11b2
YZ
5335 case BFD_RELOC_AARCH64_16:
5336#if ARCH_SIZE == 64
5337 case BFD_RELOC_AARCH64_32:
5338#endif
5339 case BFD_RELOC_AARCH64_ADD_LO12:
a6bb11b2 5340 case BFD_RELOC_AARCH64_BRANCH19:
ce336788 5341 case BFD_RELOC_AARCH64_LDST128_LO12:
a6bb11b2
YZ
5342 case BFD_RELOC_AARCH64_LDST16_LO12:
5343 case BFD_RELOC_AARCH64_LDST32_LO12:
5344 case BFD_RELOC_AARCH64_LDST64_LO12:
ce336788 5345 case BFD_RELOC_AARCH64_LDST8_LO12:
a6bb11b2
YZ
5346 case BFD_RELOC_AARCH64_MOVW_G0:
5347 case BFD_RELOC_AARCH64_MOVW_G0_NC:
ce336788 5348 case BFD_RELOC_AARCH64_MOVW_G0_S:
a6bb11b2
YZ
5349 case BFD_RELOC_AARCH64_MOVW_G1:
5350 case BFD_RELOC_AARCH64_MOVW_G1_NC:
ce336788 5351 case BFD_RELOC_AARCH64_MOVW_G1_S:
a6bb11b2
YZ
5352 case BFD_RELOC_AARCH64_MOVW_G2:
5353 case BFD_RELOC_AARCH64_MOVW_G2_NC:
ce336788 5354 case BFD_RELOC_AARCH64_MOVW_G2_S:
a6bb11b2 5355 case BFD_RELOC_AARCH64_MOVW_G3:
a6bb11b2 5356 case BFD_RELOC_AARCH64_TSTBR14:
caed7120
YZ
5357 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5358 signed_addend, weak_undef_p);
a06ea964
NC
5359 break;
5360
a6bb11b2
YZ
5361 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
5362 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7018c030 5363 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
ce336788 5364 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
99ad26cb 5365 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
ce336788 5366 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
a06ea964
NC
5367 if (globals->root.sgot == NULL)
5368 BFD_ASSERT (h != NULL);
5369
5370 if (h != NULL)
5371 {
99ad26cb 5372 bfd_vma addend = 0;
a06ea964
NC
5373 value = aarch64_calculate_got_entry_vma (h, globals, info, value,
5374 output_bfd,
5375 unresolved_reloc_p);
7018c030
JW
5376 if (bfd_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
5377 || bfd_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
99ad26cb
JW
5378 addend = (globals->root.sgot->output_section->vma
5379 + globals->root.sgot->output_offset);
caed7120 5380 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
99ad26cb 5381 addend, weak_undef_p);
a06ea964 5382 }
b53b1bed
JW
5383 else
5384 {
99ad26cb 5385 bfd_vma addend = 0;
b53b1bed
JW
5386 struct elf_aarch64_local_symbol *locals
5387 = elf_aarch64_locals (input_bfd);
5388
5389 if (locals == NULL)
5390 {
5391 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5392 (*_bfd_error_handler)
5393 (_("%B: Local symbol descriptor table be NULL when applying "
5394 "relocation %s against local symbol"),
5395 input_bfd, elfNN_aarch64_howto_table[howto_index].name);
5396 abort ();
5397 }
5398
5399 off = symbol_got_offset (input_bfd, h, r_symndx);
5400 base_got = globals->root.sgot;
5401 bfd_vma got_entry_addr = (base_got->output_section->vma
5402 + base_got->output_offset + off);
5403
5404 if (!symbol_got_offset_mark_p (input_bfd, h, r_symndx))
5405 {
5406 bfd_put_64 (output_bfd, value, base_got->contents + off);
5407
0e1862bb 5408 if (bfd_link_pic (info))
b53b1bed
JW
5409 {
5410 asection *s;
5411 Elf_Internal_Rela outrel;
5412
5413 /* For local symbol, we have done absolute relocation in static
5414 linking stageh. While for share library, we need to update
5415 the content of GOT entry according to the share objects
5416 loading base address. So we need to generate a
5417 R_AARCH64_RELATIVE reloc for dynamic linker. */
5418 s = globals->root.srelgot;
5419 if (s == NULL)
5420 abort ();
5421
5422 outrel.r_offset = got_entry_addr;
5423 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
5424 outrel.r_addend = value;
5425 elf_append_rela (output_bfd, s, &outrel);
5426 }
5427
5428 symbol_got_offset_mark (input_bfd, h, r_symndx);
5429 }
5430
5431 /* Update the relocation value to GOT entry addr as we have transformed
5432 the direct data access into indirect data access through GOT. */
5433 value = got_entry_addr;
99ad26cb 5434
7018c030
JW
5435 if (bfd_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
5436 || bfd_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
99ad26cb
JW
5437 addend = base_got->output_section->vma + base_got->output_offset;
5438
5439 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5440 addend, weak_undef_p);
b53b1bed
JW
5441 }
5442
a06ea964
NC
5443 break;
5444
a2e1db00 5445 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
dc8008f5 5446 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 5447 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
a2e1db00
RL
5448 if (h != NULL)
5449 value = aarch64_calculate_got_entry_vma (h, globals, info, value,
5450 output_bfd,
5451 unresolved_reloc_p);
5452 else
5453 {
5454 struct elf_aarch64_local_symbol *locals
5455 = elf_aarch64_locals (input_bfd);
5456
5457 if (locals == NULL)
5458 {
5459 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
5460 (*_bfd_error_handler)
5461 (_("%B: Local symbol descriptor table be NULL when applying "
5462 "relocation %s against local symbol"),
5463 input_bfd, elfNN_aarch64_howto_table[howto_index].name);
5464 abort ();
5465 }
5466
5467 off = symbol_got_offset (input_bfd, h, r_symndx);
5468 base_got = globals->root.sgot;
5469 if (base_got == NULL)
5470 abort ();
5471
5472 bfd_vma got_entry_addr = (base_got->output_section->vma
5473 + base_got->output_offset + off);
5474
5475 if (!symbol_got_offset_mark_p (input_bfd, h, r_symndx))
5476 {
5477 bfd_put_64 (output_bfd, value, base_got->contents + off);
5478
5479 if (bfd_link_pic (info))
5480 {
5481 asection *s;
5482 Elf_Internal_Rela outrel;
5483
5484 /* For local symbol, we have done absolute relocation in static
5485 linking stage. While for share library, we need to update
5486 the content of GOT entry according to the share objects
5487 loading base address. So we need to generate a
5488 R_AARCH64_RELATIVE reloc for dynamic linker. */
5489 s = globals->root.srelgot;
5490 if (s == NULL)
5491 abort ();
5492
5493 outrel.r_offset = got_entry_addr;
5494 outrel.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
5495 outrel.r_addend = value;
5496 elf_append_rela (output_bfd, s, &outrel);
5497 }
5498
5499 symbol_got_offset_mark (input_bfd, h, r_symndx);
5500 }
5501 }
5502
5503 /* Update the relocation value to GOT entry addr as we have transformed
5504 the direct data access into indirect data access through GOT. */
5505 value = symbol_got_offset (input_bfd, h, r_symndx);
5506 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5507 0, weak_undef_p);
5508 *unresolved_reloc_p = FALSE;
5509 break;
5510
ce336788 5511 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
a6bb11b2 5512 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
3c12b054 5513 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
a6bb11b2 5514 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
a6bb11b2 5515 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
ce336788 5516 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
043bf05a 5517 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
73f925cc 5518 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
f69e4920 5519 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
77a69ff8 5520 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
a06ea964
NC
5521 if (globals->root.sgot == NULL)
5522 return bfd_reloc_notsupported;
5523
5524 value = (symbol_got_offset (input_bfd, h, r_symndx)
5525 + globals->root.sgot->output_section->vma
f44a1f8e 5526 + globals->root.sgot->output_offset);
a06ea964 5527
caed7120
YZ
5528 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5529 0, weak_undef_p);
a06ea964
NC
5530 *unresolved_reloc_p = FALSE;
5531 break;
5532
7ba7cfe4 5533 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
94facae3 5534 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
3b957e5b
RL
5535 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
5536 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
94facae3
RL
5537 if (globals->root.sgot == NULL)
5538 return bfd_reloc_notsupported;
5539
5540 value = symbol_got_offset (input_bfd, h, r_symndx);
5541 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5542 0, weak_undef_p);
5543 *unresolved_reloc_p = FALSE;
5544 break;
5545
6ffe9a1b 5546 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_HI12:
40fbed84 5547 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12:
753999c1 5548 case BFD_RELOC_AARCH64_TLSLD_ADD_DTPREL_LO12_NC:
07c9aa07
JW
5549 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12:
5550 case BFD_RELOC_AARCH64_TLSLD_LDST16_DTPREL_LO12_NC:
5551 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12:
5552 case BFD_RELOC_AARCH64_TLSLD_LDST32_DTPREL_LO12_NC:
5553 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12:
5554 case BFD_RELOC_AARCH64_TLSLD_LDST64_DTPREL_LO12_NC:
5555 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12:
5556 case BFD_RELOC_AARCH64_TLSLD_LDST8_DTPREL_LO12_NC:
6ffe9a1b
JW
5557 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0:
5558 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G0_NC:
5559 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1:
5560 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G1_NC:
5561 case BFD_RELOC_AARCH64_TLSLD_MOVW_DTPREL_G2:
40fbed84
JW
5562 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5563 signed_addend - dtpoff_base (info),
5564 weak_undef_p);
5565 break;
5566
a6bb11b2
YZ
5567 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_HI12:
5568 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12:
5569 case BFD_RELOC_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
5570 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0:
5571 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G0_NC:
5572 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
5573 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
5574 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
caed7120
YZ
5575 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5576 signed_addend - tpoff_base (info),
5577 weak_undef_p);
a06ea964
NC
5578 *unresolved_reloc_p = FALSE;
5579 break;
5580
7bcccb57 5581 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
a6bb11b2 5582 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
389b8029 5583 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
a6bb11b2 5584 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
7bcccb57 5585 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
1ada945d 5586 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
a06ea964
NC
5587 if (globals->root.sgot == NULL)
5588 return bfd_reloc_notsupported;
a06ea964
NC
5589 value = (symbol_tlsdesc_got_offset (input_bfd, h, r_symndx)
5590 + globals->root.sgotplt->output_section->vma
f44a1f8e 5591 + globals->root.sgotplt->output_offset
a06ea964
NC
5592 + globals->sgotplt_jump_table_size);
5593
caed7120
YZ
5594 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5595 0, weak_undef_p);
a06ea964
NC
5596 *unresolved_reloc_p = FALSE;
5597 break;
5598
0484b454
RL
5599 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
5600 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
5601 if (globals->root.sgot == NULL)
5602 return bfd_reloc_notsupported;
5603
5604 value = (symbol_tlsdesc_got_offset (input_bfd, h, r_symndx)
5605 + globals->root.sgotplt->output_section->vma
5606 + globals->root.sgotplt->output_offset
5607 + globals->sgotplt_jump_table_size);
5608
5609 value -= (globals->root.sgot->output_section->vma
5610 + globals->root.sgot->output_offset);
5611
5612 value = _bfd_aarch64_elf_resolve_relocation (bfd_r_type, place, value,
5613 0, weak_undef_p);
5614 *unresolved_reloc_p = FALSE;
5615 break;
5616
a06ea964
NC
5617 default:
5618 return bfd_reloc_notsupported;
5619 }
5620
5621 if (saved_addend)
5622 *saved_addend = value;
5623
5624 /* Only apply the final relocation in a sequence. */
5625 if (save_addend)
5626 return bfd_reloc_continue;
5627
caed7120
YZ
5628 return _bfd_aarch64_elf_put_addend (input_bfd, hit_data, bfd_r_type,
5629 howto, value);
a06ea964
NC
5630}
5631
5632/* Handle TLS relaxations. Relaxing is possible for symbols that use
5633 R_AARCH64_TLSDESC_ADR_{PAGE, LD64_LO12_NC, ADD_LO12_NC} during a static
5634 link.
5635
5636 Return bfd_reloc_ok if we're done, bfd_reloc_continue if the caller
5637 is to then call final_link_relocate. Return other values in the
5638 case of error. */
5639
5640static bfd_reloc_status_type
cec5225b 5641elfNN_aarch64_tls_relax (struct elf_aarch64_link_hash_table *globals,
a06ea964 5642 bfd *input_bfd, bfd_byte *contents,
06d2788c 5643 Elf_Internal_Rela *rel, struct elf_link_hash_entry *h)
a06ea964
NC
5644{
5645 bfd_boolean is_local = h == NULL;
cec5225b 5646 unsigned int r_type = ELFNN_R_TYPE (rel->r_info);
a06ea964
NC
5647 unsigned long insn;
5648
5649 BFD_ASSERT (globals && input_bfd && contents && rel);
5650
a6bb11b2 5651 switch (elfNN_aarch64_bfd_reloc_from_type (r_type))
a06ea964 5652 {
a6bb11b2 5653 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
ce336788 5654 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
a06ea964
NC
5655 if (is_local)
5656 {
5657 /* GD->LE relaxation:
5658 adrp x0, :tlsgd:var => movz x0, :tprel_g1:var
5659 or
5660 adrp x0, :tlsdesc:var => movz x0, :tprel_g1:var
5661 */
5662 bfd_putl32 (0xd2a00000, contents + rel->r_offset);
5663 return bfd_reloc_continue;
5664 }
5665 else
5666 {
5667 /* GD->IE relaxation:
5668 adrp x0, :tlsgd:var => adrp x0, :gottprel:var
5669 or
5670 adrp x0, :tlsdesc:var => adrp x0, :gottprel:var
5671 */
a06ea964
NC
5672 return bfd_reloc_continue;
5673 }
5674
389b8029
MS
5675 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
5676 BFD_ASSERT (0);
5677 break;
5678
1ada945d
MS
5679 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
5680 if (is_local)
5681 {
5682 /* Tiny TLSDESC->LE relaxation:
5683 ldr x1, :tlsdesc:var => movz x0, #:tprel_g1:var
5684 adr x0, :tlsdesc:var => movk x0, #:tprel_g0_nc:var
5685 .tlsdesccall var
5686 blr x1 => nop
5687 */
5688 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSDESC_ADR_PREL21));
5689 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (TLSDESC_CALL));
5690
5691 rel[1].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5692 AARCH64_R (TLSLE_MOVW_TPREL_G0_NC));
5693 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5694
5695 bfd_putl32 (0xd2a00000, contents + rel->r_offset);
5696 bfd_putl32 (0xf2800000, contents + rel->r_offset + 4);
5697 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 8);
5698 return bfd_reloc_continue;
5699 }
5700 else
5701 {
5702 /* Tiny TLSDESC->IE relaxation:
5703 ldr x1, :tlsdesc:var => ldr x0, :gottprel:var
5704 adr x0, :tlsdesc:var => nop
5705 .tlsdesccall var
5706 blr x1 => nop
5707 */
5708 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSDESC_ADR_PREL21));
5709 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (TLSDESC_CALL));
5710
5711 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5712 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5713
5714 bfd_putl32 (0x58000000, contents + rel->r_offset);
5715 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 4);
5716 bfd_putl32 (INSN_NOP, contents + rel->r_offset + 8);
5717 return bfd_reloc_continue;
5718 }
5719
3c12b054
MS
5720 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
5721 if (is_local)
5722 {
5723 /* Tiny GD->LE relaxation:
5724 adr x0, :tlsgd:var => mrs x1, tpidr_el0
5725 bl __tls_get_addr => add x0, x1, #:tprel_hi12:x, lsl #12
5726 nop => add x0, x0, #:tprel_lo12_nc:x
5727 */
5728
5729 /* First kill the tls_get_addr reloc on the bl instruction. */
5730 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5731
5732 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 0);
5733 bfd_putl32 (0x91400020, contents + rel->r_offset + 4);
5734 bfd_putl32 (0x91000000, contents + rel->r_offset + 8);
5735
5736 rel[1].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5737 AARCH64_R (TLSLE_ADD_TPREL_LO12_NC));
5738 rel[1].r_offset = rel->r_offset + 8;
5739
5740 /* Move the current relocation to the second instruction in
5741 the sequence. */
5742 rel->r_offset += 4;
5743 rel->r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5744 AARCH64_R (TLSLE_ADD_TPREL_HI12));
5745 return bfd_reloc_continue;
5746 }
5747 else
5748 {
5749 /* Tiny GD->IE relaxation:
5750 adr x0, :tlsgd:var => ldr x0, :gottprel:var
5751 bl __tls_get_addr => mrs x1, tpidr_el0
5752 nop => add x0, x0, x1
5753 */
5754
5755 /* First kill the tls_get_addr reloc on the bl instruction. */
5756 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5757 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5758
5759 bfd_putl32 (0x58000000, contents + rel->r_offset);
5760 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 4);
5761 bfd_putl32 (0x8b000020, contents + rel->r_offset + 8);
5762 return bfd_reloc_continue;
5763 }
5764
ac734732
RL
5765#if ARCH_SIZE == 64
5766 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
5767 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (TLSGD_MOVW_G0_NC));
5768 BFD_ASSERT (rel->r_offset + 12 == rel[2].r_offset);
5769 BFD_ASSERT (ELFNN_R_TYPE (rel[2].r_info) == AARCH64_R (CALL26));
5770
5771 if (is_local)
5772 {
5773 /* Large GD->LE relaxation:
5774 movz x0, #:tlsgd_g1:var => movz x0, #:tprel_g2:var, lsl #32
5775 movk x0, #:tlsgd_g0_nc:var => movk x0, #:tprel_g1_nc:var, lsl #16
5776 add x0, gp, x0 => movk x0, #:tprel_g0_nc:var
5777 bl __tls_get_addr => mrs x1, tpidr_el0
5778 nop => add x0, x0, x1
5779 */
5780 rel[2].r_info = ELFNN_R_INFO (ELFNN_R_SYM (rel->r_info),
5781 AARCH64_R (TLSLE_MOVW_TPREL_G0_NC));
5782 rel[2].r_offset = rel->r_offset + 8;
5783
5784 bfd_putl32 (0xd2c00000, contents + rel->r_offset + 0);
5785 bfd_putl32 (0xf2a00000, contents + rel->r_offset + 4);
5786 bfd_putl32 (0xf2800000, contents + rel->r_offset + 8);
5787 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 12);
5788 bfd_putl32 (0x8b000020, contents + rel->r_offset + 16);
5789 }
5790 else
5791 {
5792 /* Large GD->IE relaxation:
5793 movz x0, #:tlsgd_g1:var => movz x0, #:gottprel_g1:var, lsl #16
5794 movk x0, #:tlsgd_g0_nc:var => movk x0, #:gottprel_g0_nc:var
5795 add x0, gp, x0 => ldr x0, [gp, x0]
5796 bl __tls_get_addr => mrs x1, tpidr_el0
5797 nop => add x0, x0, x1
5798 */
5799 rel[2].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5800 bfd_putl32 (0xd2a80000, contents + rel->r_offset + 0);
5801 bfd_putl32 (0x58000000, contents + rel->r_offset + 8);
5802 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 12);
5803 bfd_putl32 (0x8b000020, contents + rel->r_offset + 16);
5804 }
5805 return bfd_reloc_continue;
5806
5807 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
5808 return bfd_reloc_continue;
5809#endif
5810
043bf05a
MS
5811 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
5812 return bfd_reloc_continue;
5813
a6bb11b2 5814 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
a06ea964
NC
5815 if (is_local)
5816 {
5817 /* GD->LE relaxation:
5818 ldr xd, [x0, #:tlsdesc_lo12:var] => movk x0, :tprel_g0_nc:var
5819 */
5820 bfd_putl32 (0xf2800000, contents + rel->r_offset);
5821 return bfd_reloc_continue;
5822 }
5823 else
5824 {
5825 /* GD->IE relaxation:
5826 ldr xd, [x0, #:tlsdesc_lo12:var] => ldr x0, [x0, #:gottprel_lo12:var]
5827 */
5828 insn = bfd_getl32 (contents + rel->r_offset);
fa85fb9a 5829 insn &= 0xffffffe0;
a06ea964
NC
5830 bfd_putl32 (insn, contents + rel->r_offset);
5831 return bfd_reloc_continue;
5832 }
5833
a6bb11b2 5834 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
a06ea964
NC
5835 if (is_local)
5836 {
5837 /* GD->LE relaxation
5838 add x0, #:tlsgd_lo12:var => movk x0, :tprel_g0_nc:var
5839 bl __tls_get_addr => mrs x1, tpidr_el0
5840 nop => add x0, x1, x0
5841 */
5842
5843 /* First kill the tls_get_addr reloc on the bl instruction. */
5844 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
cec5225b 5845 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
a06ea964
NC
5846
5847 bfd_putl32 (0xf2800000, contents + rel->r_offset);
5848 bfd_putl32 (0xd53bd041, contents + rel->r_offset + 4);
5849 bfd_putl32 (0x8b000020, contents + rel->r_offset + 8);
5850 return bfd_reloc_continue;
5851 }
5852 else
5853 {
5854 /* GD->IE relaxation
5855 ADD x0, #:tlsgd_lo12:var => ldr x0, [x0, #:gottprel_lo12:var]
5856 BL __tls_get_addr => mrs x1, tpidr_el0
5857 R_AARCH64_CALL26
5858 NOP => add x0, x1, x0
5859 */
5860
a6bb11b2 5861 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
a06ea964
NC
5862
5863 /* Remove the relocation on the BL instruction. */
cec5225b 5864 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
a06ea964
NC
5865
5866 bfd_putl32 (0xf9400000, contents + rel->r_offset);
5867
5868 /* We choose to fixup the BL and NOP instructions using the
5869 offset from the second relocation to allow flexibility in
5870 scheduling instructions between the ADD and BL. */
5871 bfd_putl32 (0xd53bd041, contents + rel[1].r_offset);
5872 bfd_putl32 (0x8b000020, contents + rel[1].r_offset + 4);
5873 return bfd_reloc_continue;
5874 }
5875
0484b454 5876 case BFD_RELOC_AARCH64_TLSDESC_ADD:
a6bb11b2
YZ
5877 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
5878 case BFD_RELOC_AARCH64_TLSDESC_CALL:
a06ea964
NC
5879 /* GD->IE/LE relaxation:
5880 add x0, x0, #:tlsdesc_lo12:var => nop
5881 blr xd => nop
5882 */
5883 bfd_putl32 (INSN_NOP, contents + rel->r_offset);
5884 return bfd_reloc_ok;
5885
0484b454
RL
5886 case BFD_RELOC_AARCH64_TLSDESC_LDR:
5887 if (is_local)
5888 {
5889 /* GD->LE relaxation:
5890 ldr xd, [gp, xn] => movk x0, #:tprel_g0_nc:var
5891 */
5892 bfd_putl32 (0xf2800000, contents + rel->r_offset);
5893 return bfd_reloc_continue;
5894 }
5895 else
5896 {
5897 /* GD->IE relaxation:
5898 ldr xd, [gp, xn] => ldr x0, [gp, xn]
5899 */
5900 insn = bfd_getl32 (contents + rel->r_offset);
5901 insn &= 0xffffffe0;
5902 bfd_putl32 (insn, contents + rel->r_offset);
5903 return bfd_reloc_ok;
5904 }
5905
5906 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
5907 /* GD->LE relaxation:
5908 movk xd, #:tlsdesc_off_g0_nc:var => movk x0, #:tprel_g1_nc:var, lsl #16
5909 GD->IE relaxation:
5910 movk xd, #:tlsdesc_off_g0_nc:var => movk xd, #:gottprel_g0_nc:var
5911 */
5912 if (is_local)
5913 bfd_putl32 (0xf2a00000, contents + rel->r_offset);
5914 return bfd_reloc_continue;
5915
5916 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
5917 if (is_local)
5918 {
5919 /* GD->LE relaxation:
5920 movz xd, #:tlsdesc_off_g1:var => movz x0, #:tprel_g2:var, lsl #32
5921 */
5922 bfd_putl32 (0xd2c00000, contents + rel->r_offset);
5923 return bfd_reloc_continue;
5924 }
5925 else
5926 {
5927 /* GD->IE relaxation:
5928 movz xd, #:tlsdesc_off_g1:var => movz xd, #:gottprel_g1:var, lsl #16
5929 */
5930 insn = bfd_getl32 (contents + rel->r_offset);
5931 bfd_putl32 (0xd2a00000 | (insn & 0x1f), contents + rel->r_offset);
5932 return bfd_reloc_continue;
5933 }
5934
a6bb11b2 5935 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
a06ea964
NC
5936 /* IE->LE relaxation:
5937 adrp xd, :gottprel:var => movz xd, :tprel_g1:var
5938 */
5939 if (is_local)
5940 {
5941 insn = bfd_getl32 (contents + rel->r_offset);
5942 bfd_putl32 (0xd2a00000 | (insn & 0x1f), contents + rel->r_offset);
5943 }
5944 return bfd_reloc_continue;
5945
a6bb11b2 5946 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
a06ea964
NC
5947 /* IE->LE relaxation:
5948 ldr xd, [xm, #:gottprel_lo12:var] => movk xd, :tprel_g0_nc:var
5949 */
5950 if (is_local)
5951 {
5952 insn = bfd_getl32 (contents + rel->r_offset);
5953 bfd_putl32 (0xf2800000 | (insn & 0x1f), contents + rel->r_offset);
5954 }
5955 return bfd_reloc_continue;
5956
259364ad
JW
5957 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
5958 /* LD->LE relaxation (tiny):
5959 adr x0, :tlsldm:x => mrs x0, tpidr_el0
5960 bl __tls_get_addr => add x0, x0, TCB_SIZE
5961 */
5962 if (is_local)
5963 {
5964 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5965 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
5966 /* No need of CALL26 relocation for tls_get_addr. */
5967 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5968 bfd_putl32 (0xd53bd040, contents + rel->r_offset + 0);
5969 bfd_putl32 (0x91004000, contents + rel->r_offset + 4);
5970 return bfd_reloc_ok;
5971 }
5972 return bfd_reloc_continue;
5973
5974 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
5975 /* LD->LE relaxation (small):
5976 adrp x0, :tlsldm:x => mrs x0, tpidr_el0
5977 */
5978 if (is_local)
5979 {
5980 bfd_putl32 (0xd53bd040, contents + rel->r_offset);
5981 return bfd_reloc_ok;
5982 }
5983 return bfd_reloc_continue;
5984
5985 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
5986 /* LD->LE relaxation (small):
5987 add x0, #:tlsldm_lo12:x => add x0, x0, TCB_SIZE
5988 bl __tls_get_addr => nop
5989 */
5990 if (is_local)
5991 {
5992 BFD_ASSERT (rel->r_offset + 4 == rel[1].r_offset);
5993 BFD_ASSERT (ELFNN_R_TYPE (rel[1].r_info) == AARCH64_R (CALL26));
5994 /* No need of CALL26 relocation for tls_get_addr. */
5995 rel[1].r_info = ELFNN_R_INFO (STN_UNDEF, R_AARCH64_NONE);
5996 bfd_putl32 (0x91004000, contents + rel->r_offset + 0);
5997 bfd_putl32 (0xd503201f, contents + rel->r_offset + 4);
5998 return bfd_reloc_ok;
5999 }
6000 return bfd_reloc_continue;
6001
a06ea964
NC
6002 default:
6003 return bfd_reloc_continue;
6004 }
6005
6006 return bfd_reloc_ok;
6007}
6008
6009/* Relocate an AArch64 ELF section. */
6010
6011static bfd_boolean
cec5225b 6012elfNN_aarch64_relocate_section (bfd *output_bfd,
a06ea964
NC
6013 struct bfd_link_info *info,
6014 bfd *input_bfd,
6015 asection *input_section,
6016 bfd_byte *contents,
6017 Elf_Internal_Rela *relocs,
6018 Elf_Internal_Sym *local_syms,
6019 asection **local_sections)
6020{
6021 Elf_Internal_Shdr *symtab_hdr;
6022 struct elf_link_hash_entry **sym_hashes;
6023 Elf_Internal_Rela *rel;
6024 Elf_Internal_Rela *relend;
6025 const char *name;
cec5225b 6026 struct elf_aarch64_link_hash_table *globals;
a06ea964
NC
6027 bfd_boolean save_addend = FALSE;
6028 bfd_vma addend = 0;
6029
cec5225b 6030 globals = elf_aarch64_hash_table (info);
a06ea964
NC
6031
6032 symtab_hdr = &elf_symtab_hdr (input_bfd);
6033 sym_hashes = elf_sym_hashes (input_bfd);
6034
6035 rel = relocs;
6036 relend = relocs + input_section->reloc_count;
6037 for (; rel < relend; rel++)
6038 {
6039 unsigned int r_type;
a6bb11b2
YZ
6040 bfd_reloc_code_real_type bfd_r_type;
6041 bfd_reloc_code_real_type relaxed_bfd_r_type;
a06ea964
NC
6042 reloc_howto_type *howto;
6043 unsigned long r_symndx;
6044 Elf_Internal_Sym *sym;
6045 asection *sec;
6046 struct elf_link_hash_entry *h;
6047 bfd_vma relocation;
6048 bfd_reloc_status_type r;
6049 arelent bfd_reloc;
6050 char sym_type;
6051 bfd_boolean unresolved_reloc = FALSE;
6052 char *error_message = NULL;
6053
cec5225b
YZ
6054 r_symndx = ELFNN_R_SYM (rel->r_info);
6055 r_type = ELFNN_R_TYPE (rel->r_info);
a06ea964 6056
cec5225b 6057 bfd_reloc.howto = elfNN_aarch64_howto_from_type (r_type);
a06ea964
NC
6058 howto = bfd_reloc.howto;
6059
7fcfd62d
NC
6060 if (howto == NULL)
6061 {
6062 (*_bfd_error_handler)
6063 (_("%B: unrecognized relocation (0x%x) in section `%A'"),
6064 input_bfd, input_section, r_type);
6065 return FALSE;
6066 }
a6bb11b2 6067 bfd_r_type = elfNN_aarch64_bfd_reloc_from_howto (howto);
7fcfd62d 6068
a06ea964
NC
6069 h = NULL;
6070 sym = NULL;
6071 sec = NULL;
6072
6073 if (r_symndx < symtab_hdr->sh_info)
6074 {
6075 sym = local_syms + r_symndx;
cec5225b 6076 sym_type = ELFNN_ST_TYPE (sym->st_info);
a06ea964
NC
6077 sec = local_sections[r_symndx];
6078
6079 /* An object file might have a reference to a local
6080 undefined symbol. This is a daft object file, but we
6081 should at least do something about it. */
6082 if (r_type != R_AARCH64_NONE && r_type != R_AARCH64_NULL
6083 && bfd_is_und_section (sec)
6084 && ELF_ST_BIND (sym->st_info) != STB_WEAK)
6085 {
6086 if (!info->callbacks->undefined_symbol
6087 (info, bfd_elf_string_from_elf_section
6088 (input_bfd, symtab_hdr->sh_link, sym->st_name),
6089 input_bfd, input_section, rel->r_offset, TRUE))
6090 return FALSE;
6091 }
6092
a06ea964 6093 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
1419bbe5
WN
6094
6095 /* Relocate against local STT_GNU_IFUNC symbol. */
0e1862bb 6096 if (!bfd_link_relocatable (info)
1419bbe5
WN
6097 && ELF_ST_TYPE (sym->st_info) == STT_GNU_IFUNC)
6098 {
6099 h = elfNN_aarch64_get_local_sym_hash (globals, input_bfd,
6100 rel, FALSE);
6101 if (h == NULL)
6102 abort ();
6103
6104 /* Set STT_GNU_IFUNC symbol value. */
6105 h->root.u.def.value = sym->st_value;
6106 h->root.u.def.section = sec;
6107 }
a06ea964
NC
6108 }
6109 else
6110 {
62d887d4 6111 bfd_boolean warned, ignored;
a06ea964
NC
6112
6113 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
6114 r_symndx, symtab_hdr, sym_hashes,
6115 h, sec, relocation,
62d887d4 6116 unresolved_reloc, warned, ignored);
a06ea964
NC
6117
6118 sym_type = h->type;
6119 }
6120
6121 if (sec != NULL && discarded_section (sec))
6122 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
6123 rel, 1, relend, howto, 0, contents);
6124
0e1862bb 6125 if (bfd_link_relocatable (info))
2e0488d3 6126 continue;
a06ea964
NC
6127
6128 if (h != NULL)
6129 name = h->root.root.string;
6130 else
6131 {
6132 name = (bfd_elf_string_from_elf_section
6133 (input_bfd, symtab_hdr->sh_link, sym->st_name));
6134 if (name == NULL || *name == '\0')
6135 name = bfd_section_name (input_bfd, sec);
6136 }
6137
6138 if (r_symndx != 0
6139 && r_type != R_AARCH64_NONE
6140 && r_type != R_AARCH64_NULL
6141 && (h == NULL
6142 || h->root.type == bfd_link_hash_defined
6143 || h->root.type == bfd_link_hash_defweak)
a6bb11b2 6144 && IS_AARCH64_TLS_RELOC (bfd_r_type) != (sym_type == STT_TLS))
a06ea964
NC
6145 {
6146 (*_bfd_error_handler)
6147 ((sym_type == STT_TLS
6148 ? _("%B(%A+0x%lx): %s used with TLS symbol %s")
6149 : _("%B(%A+0x%lx): %s used with non-TLS symbol %s")),
6150 input_bfd,
6151 input_section, (long) rel->r_offset, howto->name, name);
6152 }
6153
a06ea964
NC
6154 /* We relax only if we can see that there can be a valid transition
6155 from a reloc type to another.
cec5225b 6156 We call elfNN_aarch64_final_link_relocate unless we're completely
a06ea964
NC
6157 done, i.e., the relaxation produced the final output we want. */
6158
a6bb11b2
YZ
6159 relaxed_bfd_r_type = aarch64_tls_transition (input_bfd, info, r_type,
6160 h, r_symndx);
6161 if (relaxed_bfd_r_type != bfd_r_type)
a06ea964 6162 {
a6bb11b2
YZ
6163 bfd_r_type = relaxed_bfd_r_type;
6164 howto = elfNN_aarch64_howto_from_bfd_reloc (bfd_r_type);
6165 BFD_ASSERT (howto != NULL);
6166 r_type = howto->type;
06d2788c 6167 r = elfNN_aarch64_tls_relax (globals, input_bfd, contents, rel, h);
a06ea964
NC
6168 unresolved_reloc = 0;
6169 }
6170 else
6171 r = bfd_reloc_continue;
6172
6173 /* There may be multiple consecutive relocations for the
6174 same offset. In that case we are supposed to treat the
6175 output of each relocation as the addend for the next. */
6176 if (rel + 1 < relend
6177 && rel->r_offset == rel[1].r_offset
cec5225b
YZ
6178 && ELFNN_R_TYPE (rel[1].r_info) != R_AARCH64_NONE
6179 && ELFNN_R_TYPE (rel[1].r_info) != R_AARCH64_NULL)
a06ea964
NC
6180 save_addend = TRUE;
6181 else
6182 save_addend = FALSE;
6183
6184 if (r == bfd_reloc_continue)
cec5225b 6185 r = elfNN_aarch64_final_link_relocate (howto, input_bfd, output_bfd,
a06ea964
NC
6186 input_section, contents, rel,
6187 relocation, info, sec,
6188 h, &unresolved_reloc,
1419bbe5 6189 save_addend, &addend, sym);
a06ea964 6190
a6bb11b2 6191 switch (elfNN_aarch64_bfd_reloc_from_type (r_type))
a06ea964 6192 {
ce336788 6193 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
a6bb11b2 6194 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
3c12b054 6195 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
7ba7cfe4 6196 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
94facae3 6197 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
73f925cc 6198 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
f69e4920 6199 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
77a69ff8 6200 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
a06ea964
NC
6201 if (! symbol_got_offset_mark_p (input_bfd, h, r_symndx))
6202 {
6203 bfd_boolean need_relocs = FALSE;
6204 bfd_byte *loc;
6205 int indx;
6206 bfd_vma off;
6207
6208 off = symbol_got_offset (input_bfd, h, r_symndx);
6209 indx = h && h->dynindx != -1 ? h->dynindx : 0;
6210
6211 need_relocs =
0e1862bb 6212 (bfd_link_pic (info) || indx != 0) &&
a06ea964
NC
6213 (h == NULL
6214 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6215 || h->root.type != bfd_link_hash_undefweak);
6216
6217 BFD_ASSERT (globals->root.srelgot != NULL);
6218
6219 if (need_relocs)
6220 {
6221 Elf_Internal_Rela rela;
a6bb11b2 6222 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLS_DTPMOD));
a06ea964
NC
6223 rela.r_addend = 0;
6224 rela.r_offset = globals->root.sgot->output_section->vma +
6225 globals->root.sgot->output_offset + off;
6226
6227
6228 loc = globals->root.srelgot->contents;
6229 loc += globals->root.srelgot->reloc_count++
6230 * RELOC_SIZE (htab);
cec5225b 6231 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964 6232
f69e4920
JW
6233 bfd_reloc_code_real_type real_type =
6234 elfNN_aarch64_bfd_reloc_from_type (r_type);
6235
6236 if (real_type == BFD_RELOC_AARCH64_TLSLD_ADR_PREL21
73f925cc
JW
6237 || real_type == BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21
6238 || real_type == BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC)
77a69ff8
JW
6239 {
6240 /* For local dynamic, don't generate DTPREL in any case.
6241 Initialize the DTPREL slot into zero, so we get module
6242 base address when invoke runtime TLS resolver. */
6243 bfd_put_NN (output_bfd, 0,
6244 globals->root.sgot->contents + off
6245 + GOT_ENTRY_SIZE);
6246 }
6247 else if (indx == 0)
a06ea964 6248 {
cec5225b 6249 bfd_put_NN (output_bfd,
a06ea964
NC
6250 relocation - dtpoff_base (info),
6251 globals->root.sgot->contents + off
6252 + GOT_ENTRY_SIZE);
6253 }
6254 else
6255 {
6256 /* This TLS symbol is global. We emit a
6257 relocation to fixup the tls offset at load
6258 time. */
6259 rela.r_info =
a6bb11b2 6260 ELFNN_R_INFO (indx, AARCH64_R (TLS_DTPREL));
a06ea964
NC
6261 rela.r_addend = 0;
6262 rela.r_offset =
6263 (globals->root.sgot->output_section->vma
6264 + globals->root.sgot->output_offset + off
6265 + GOT_ENTRY_SIZE);
6266
6267 loc = globals->root.srelgot->contents;
6268 loc += globals->root.srelgot->reloc_count++
6269 * RELOC_SIZE (globals);
cec5225b
YZ
6270 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
6271 bfd_put_NN (output_bfd, (bfd_vma) 0,
a06ea964
NC
6272 globals->root.sgot->contents + off
6273 + GOT_ENTRY_SIZE);
6274 }
6275 }
6276 else
6277 {
cec5225b 6278 bfd_put_NN (output_bfd, (bfd_vma) 1,
a06ea964 6279 globals->root.sgot->contents + off);
cec5225b 6280 bfd_put_NN (output_bfd,
a06ea964
NC
6281 relocation - dtpoff_base (info),
6282 globals->root.sgot->contents + off
6283 + GOT_ENTRY_SIZE);
6284 }
6285
6286 symbol_got_offset_mark (input_bfd, h, r_symndx);
6287 }
6288 break;
6289
a6bb11b2
YZ
6290 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
6291 case BFD_RELOC_AARCH64_TLSIE_LDNN_GOTTPREL_LO12_NC:
043bf05a 6292 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
3b957e5b
RL
6293 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
6294 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
a06ea964
NC
6295 if (! symbol_got_offset_mark_p (input_bfd, h, r_symndx))
6296 {
6297 bfd_boolean need_relocs = FALSE;
6298 bfd_byte *loc;
6299 int indx;
6300 bfd_vma off;
6301
6302 off = symbol_got_offset (input_bfd, h, r_symndx);
6303
6304 indx = h && h->dynindx != -1 ? h->dynindx : 0;
6305
6306 need_relocs =
0e1862bb 6307 (bfd_link_pic (info) || indx != 0) &&
a06ea964
NC
6308 (h == NULL
6309 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6310 || h->root.type != bfd_link_hash_undefweak);
6311
6312 BFD_ASSERT (globals->root.srelgot != NULL);
6313
6314 if (need_relocs)
6315 {
6316 Elf_Internal_Rela rela;
6317
6318 if (indx == 0)
6319 rela.r_addend = relocation - dtpoff_base (info);
6320 else
6321 rela.r_addend = 0;
6322
a6bb11b2 6323 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLS_TPREL));
a06ea964
NC
6324 rela.r_offset = globals->root.sgot->output_section->vma +
6325 globals->root.sgot->output_offset + off;
6326
6327 loc = globals->root.srelgot->contents;
6328 loc += globals->root.srelgot->reloc_count++
6329 * RELOC_SIZE (htab);
6330
cec5225b 6331 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964 6332
cec5225b 6333 bfd_put_NN (output_bfd, rela.r_addend,
a06ea964
NC
6334 globals->root.sgot->contents + off);
6335 }
6336 else
cec5225b 6337 bfd_put_NN (output_bfd, relocation - tpoff_base (info),
a06ea964
NC
6338 globals->root.sgot->contents + off);
6339
6340 symbol_got_offset_mark (input_bfd, h, r_symndx);
6341 }
6342 break;
6343
7bcccb57 6344 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
a6bb11b2 6345 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
389b8029 6346 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
a6bb11b2 6347 case BFD_RELOC_AARCH64_TLSDESC_LDNN_LO12_NC:
1ada945d 6348 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
0484b454
RL
6349 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
6350 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
a06ea964
NC
6351 if (! symbol_tlsdesc_got_offset_mark_p (input_bfd, h, r_symndx))
6352 {
6353 bfd_boolean need_relocs = FALSE;
6354 int indx = h && h->dynindx != -1 ? h->dynindx : 0;
6355 bfd_vma off = symbol_tlsdesc_got_offset (input_bfd, h, r_symndx);
6356
6357 need_relocs = (h == NULL
6358 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
6359 || h->root.type != bfd_link_hash_undefweak);
6360
6361 BFD_ASSERT (globals->root.srelgot != NULL);
6362 BFD_ASSERT (globals->root.sgot != NULL);
6363
6364 if (need_relocs)
6365 {
6366 bfd_byte *loc;
6367 Elf_Internal_Rela rela;
a6bb11b2
YZ
6368 rela.r_info = ELFNN_R_INFO (indx, AARCH64_R (TLSDESC));
6369
a06ea964
NC
6370 rela.r_addend = 0;
6371 rela.r_offset = (globals->root.sgotplt->output_section->vma
6372 + globals->root.sgotplt->output_offset
6373 + off + globals->sgotplt_jump_table_size);
6374
6375 if (indx == 0)
6376 rela.r_addend = relocation - dtpoff_base (info);
6377
6378 /* Allocate the next available slot in the PLT reloc
6379 section to hold our R_AARCH64_TLSDESC, the next
6380 available slot is determined from reloc_count,
6381 which we step. But note, reloc_count was
6382 artifically moved down while allocating slots for
6383 real PLT relocs such that all of the PLT relocs
6384 will fit above the initial reloc_count and the
6385 extra stuff will fit below. */
6386 loc = globals->root.srelplt->contents;
6387 loc += globals->root.srelplt->reloc_count++
6388 * RELOC_SIZE (globals);
6389
cec5225b 6390 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964 6391
cec5225b 6392 bfd_put_NN (output_bfd, (bfd_vma) 0,
a06ea964
NC
6393 globals->root.sgotplt->contents + off +
6394 globals->sgotplt_jump_table_size);
cec5225b 6395 bfd_put_NN (output_bfd, (bfd_vma) 0,
a06ea964
NC
6396 globals->root.sgotplt->contents + off +
6397 globals->sgotplt_jump_table_size +
6398 GOT_ENTRY_SIZE);
6399 }
6400
6401 symbol_tlsdesc_got_offset_mark (input_bfd, h, r_symndx);
6402 }
6403 break;
a6bb11b2
YZ
6404 default:
6405 break;
a06ea964
NC
6406 }
6407
a06ea964
NC
6408 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
6409 because such sections are not SEC_ALLOC and thus ld.so will
6410 not process them. */
6411 if (unresolved_reloc
6412 && !((input_section->flags & SEC_DEBUGGING) != 0
6413 && h->def_dynamic)
6414 && _bfd_elf_section_offset (output_bfd, info, input_section,
6415 +rel->r_offset) != (bfd_vma) - 1)
6416 {
6417 (*_bfd_error_handler)
6418 (_
6419 ("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
6420 input_bfd, input_section, (long) rel->r_offset, howto->name,
6421 h->root.root.string);
6422 return FALSE;
6423 }
6424
6425 if (r != bfd_reloc_ok && r != bfd_reloc_continue)
6426 {
c674f5cd
JW
6427 bfd_reloc_code_real_type real_r_type
6428 = elfNN_aarch64_bfd_reloc_from_type (r_type);
6429
a06ea964
NC
6430 switch (r)
6431 {
6432 case bfd_reloc_overflow:
fdc3b1b1
JW
6433 if (!(*info->callbacks->reloc_overflow)
6434 (info, (h ? &h->root : NULL), name, howto->name, (bfd_vma) 0,
6435 input_bfd, input_section, rel->r_offset))
a06ea964 6436 return FALSE;
c674f5cd
JW
6437 if (real_r_type == BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15
6438 || real_r_type == BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14)
6439 {
6440 (*info->callbacks->warning)
6441 (info,
6442 _("Too many GOT entries for -fpic, "
6443 "please recompile with -fPIC"),
6444 name, input_bfd, input_section, rel->r_offset);
6445 return FALSE;
6446 }
027e9c75
NC
6447 /* Overflow can occur when a variable is referenced with a type
6448 that has a larger alignment than the type with which it was
6449 declared. eg:
6450 file1.c: extern int foo; int a (void) { return foo; }
6451 file2.c: char bar, foo, baz;
6452 If the variable is placed into a data section at an offset
6453 that is incompatible with the larger alignment requirement
6454 overflow will occur. (Strictly speaking this is not overflow
6455 but rather an alignment problem, but the bfd_reloc_ error
6456 enum does not have a value to cover that situation).
6457
6458 Try to catch this situation here and provide a more helpful
6459 error message to the user. */
6460 if (addend & ((1 << howto->rightshift) - 1)
6461 /* FIXME: Are we testing all of the appropriate reloc
6462 types here ? */
6463 && (real_r_type == BFD_RELOC_AARCH64_LD_LO19_PCREL
6464 || real_r_type == BFD_RELOC_AARCH64_LDST16_LO12
6465 || real_r_type == BFD_RELOC_AARCH64_LDST32_LO12
6466 || real_r_type == BFD_RELOC_AARCH64_LDST64_LO12
6467 || real_r_type == BFD_RELOC_AARCH64_LDST128_LO12))
6468 {
6469 info->callbacks->warning
6470 (info, _("One possible cause of this error is that the \
6471symbol is being referenced in the indicated code as if it had a larger \
6472alignment than was declared where it was defined."),
6473 name, input_bfd, input_section, rel->r_offset);
6474 }
a06ea964
NC
6475 break;
6476
6477 case bfd_reloc_undefined:
6478 if (!((*info->callbacks->undefined_symbol)
6479 (info, name, input_bfd, input_section,
6480 rel->r_offset, TRUE)))
6481 return FALSE;
6482 break;
6483
6484 case bfd_reloc_outofrange:
6485 error_message = _("out of range");
6486 goto common_error;
6487
6488 case bfd_reloc_notsupported:
6489 error_message = _("unsupported relocation");
6490 goto common_error;
6491
6492 case bfd_reloc_dangerous:
6493 /* error_message should already be set. */
6494 goto common_error;
6495
6496 default:
6497 error_message = _("unknown error");
6498 /* Fall through. */
6499
6500 common_error:
6501 BFD_ASSERT (error_message != NULL);
6502 if (!((*info->callbacks->reloc_dangerous)
6503 (info, error_message, input_bfd, input_section,
6504 rel->r_offset)))
6505 return FALSE;
6506 break;
6507 }
6508 }
027e9c75
NC
6509
6510 if (!save_addend)
6511 addend = 0;
a06ea964
NC
6512 }
6513
6514 return TRUE;
6515}
6516
6517/* Set the right machine number. */
6518
6519static bfd_boolean
cec5225b 6520elfNN_aarch64_object_p (bfd *abfd)
a06ea964 6521{
cec5225b
YZ
6522#if ARCH_SIZE == 32
6523 bfd_default_set_arch_mach (abfd, bfd_arch_aarch64, bfd_mach_aarch64_ilp32);
6524#else
a06ea964 6525 bfd_default_set_arch_mach (abfd, bfd_arch_aarch64, bfd_mach_aarch64);
cec5225b 6526#endif
a06ea964
NC
6527 return TRUE;
6528}
6529
6530/* Function to keep AArch64 specific flags in the ELF header. */
6531
6532static bfd_boolean
cec5225b 6533elfNN_aarch64_set_private_flags (bfd *abfd, flagword flags)
a06ea964
NC
6534{
6535 if (elf_flags_init (abfd) && elf_elfheader (abfd)->e_flags != flags)
6536 {
6537 }
6538 else
6539 {
6540 elf_elfheader (abfd)->e_flags = flags;
6541 elf_flags_init (abfd) = TRUE;
6542 }
6543
6544 return TRUE;
6545}
6546
a06ea964
NC
6547/* Merge backend specific data from an object file to the output
6548 object file when linking. */
6549
6550static bfd_boolean
cec5225b 6551elfNN_aarch64_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
a06ea964
NC
6552{
6553 flagword out_flags;
6554 flagword in_flags;
6555 bfd_boolean flags_compatible = TRUE;
6556 asection *sec;
6557
6558 /* Check if we have the same endianess. */
6559 if (!_bfd_generic_verify_endian_match (ibfd, obfd))
6560 return FALSE;
6561
6562 if (!is_aarch64_elf (ibfd) || !is_aarch64_elf (obfd))
6563 return TRUE;
6564
6565 /* The input BFD must have had its flags initialised. */
6566 /* The following seems bogus to me -- The flags are initialized in
6567 the assembler but I don't think an elf_flags_init field is
6568 written into the object. */
6569 /* BFD_ASSERT (elf_flags_init (ibfd)); */
6570
6571 in_flags = elf_elfheader (ibfd)->e_flags;
6572 out_flags = elf_elfheader (obfd)->e_flags;
6573
6574 if (!elf_flags_init (obfd))
6575 {
6576 /* If the input is the default architecture and had the default
6577 flags then do not bother setting the flags for the output
6578 architecture, instead allow future merges to do this. If no
6579 future merges ever set these flags then they will retain their
6580 uninitialised values, which surprise surprise, correspond
6581 to the default values. */
6582 if (bfd_get_arch_info (ibfd)->the_default
6583 && elf_elfheader (ibfd)->e_flags == 0)
6584 return TRUE;
6585
6586 elf_flags_init (obfd) = TRUE;
6587 elf_elfheader (obfd)->e_flags = in_flags;
6588
6589 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
6590 && bfd_get_arch_info (obfd)->the_default)
6591 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
6592 bfd_get_mach (ibfd));
6593
6594 return TRUE;
6595 }
6596
6597 /* Identical flags must be compatible. */
6598 if (in_flags == out_flags)
6599 return TRUE;
6600
6601 /* Check to see if the input BFD actually contains any sections. If
6602 not, its flags may not have been initialised either, but it
6603 cannot actually cause any incompatiblity. Do not short-circuit
6604 dynamic objects; their section list may be emptied by
6605 elf_link_add_object_symbols.
6606
6607 Also check to see if there are no code sections in the input.
6608 In this case there is no need to check for code specific flags.
6609 XXX - do we need to worry about floating-point format compatability
6610 in data sections ? */
6611 if (!(ibfd->flags & DYNAMIC))
6612 {
6613 bfd_boolean null_input_bfd = TRUE;
6614 bfd_boolean only_data_sections = TRUE;
6615
6616 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
6617 {
6618 if ((bfd_get_section_flags (ibfd, sec)
6619 & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
6620 == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
6621 only_data_sections = FALSE;
6622
6623 null_input_bfd = FALSE;
6624 break;
6625 }
6626
6627 if (null_input_bfd || only_data_sections)
6628 return TRUE;
6629 }
6630
6631 return flags_compatible;
6632}
6633
6634/* Display the flags field. */
6635
6636static bfd_boolean
cec5225b 6637elfNN_aarch64_print_private_bfd_data (bfd *abfd, void *ptr)
a06ea964
NC
6638{
6639 FILE *file = (FILE *) ptr;
6640 unsigned long flags;
6641
6642 BFD_ASSERT (abfd != NULL && ptr != NULL);
6643
6644 /* Print normal ELF private data. */
6645 _bfd_elf_print_private_bfd_data (abfd, ptr);
6646
6647 flags = elf_elfheader (abfd)->e_flags;
6648 /* Ignore init flag - it may not be set, despite the flags field
6649 containing valid data. */
6650
6651 /* xgettext:c-format */
6652 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
6653
6654 if (flags)
6655 fprintf (file, _("<Unrecognised flag bits set>"));
6656
6657 fputc ('\n', file);
6658
6659 return TRUE;
6660}
6661
6662/* Update the got entry reference counts for the section being removed. */
6663
6664static bfd_boolean
cec5225b 6665elfNN_aarch64_gc_sweep_hook (bfd *abfd,
cb8af559
NC
6666 struct bfd_link_info *info,
6667 asection *sec,
6668 const Elf_Internal_Rela * relocs)
a06ea964 6669{
cec5225b 6670 struct elf_aarch64_link_hash_table *htab;
59c108f7
NC
6671 Elf_Internal_Shdr *symtab_hdr;
6672 struct elf_link_hash_entry **sym_hashes;
cb8af559 6673 struct elf_aarch64_local_symbol *locals;
59c108f7
NC
6674 const Elf_Internal_Rela *rel, *relend;
6675
0e1862bb 6676 if (bfd_link_relocatable (info))
59c108f7
NC
6677 return TRUE;
6678
cec5225b 6679 htab = elf_aarch64_hash_table (info);
59c108f7
NC
6680
6681 if (htab == NULL)
6682 return FALSE;
6683
6684 elf_section_data (sec)->local_dynrel = NULL;
6685
6686 symtab_hdr = &elf_symtab_hdr (abfd);
6687 sym_hashes = elf_sym_hashes (abfd);
6688
cec5225b 6689 locals = elf_aarch64_locals (abfd);
59c108f7
NC
6690
6691 relend = relocs + sec->reloc_count;
6692 for (rel = relocs; rel < relend; rel++)
6693 {
6694 unsigned long r_symndx;
6695 unsigned int r_type;
6696 struct elf_link_hash_entry *h = NULL;
6697
cec5225b 6698 r_symndx = ELFNN_R_SYM (rel->r_info);
8847944f 6699
59c108f7
NC
6700 if (r_symndx >= symtab_hdr->sh_info)
6701 {
8847944f 6702
59c108f7
NC
6703 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
6704 while (h->root.type == bfd_link_hash_indirect
6705 || h->root.type == bfd_link_hash_warning)
6706 h = (struct elf_link_hash_entry *) h->root.u.i.link;
59c108f7
NC
6707 }
6708 else
6709 {
6710 Elf_Internal_Sym *isym;
6711
8847944f 6712 /* A local symbol. */
59c108f7
NC
6713 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
6714 abfd, r_symndx);
1419bbe5
WN
6715
6716 /* Check relocation against local STT_GNU_IFUNC symbol. */
6717 if (isym != NULL
6718 && ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
6719 {
6720 h = elfNN_aarch64_get_local_sym_hash (htab, abfd, rel, FALSE);
6721 if (h == NULL)
6722 abort ();
6723 }
6724 }
6725
6726 if (h)
6727 {
6728 struct elf_aarch64_link_hash_entry *eh;
6729 struct elf_dyn_relocs **pp;
6730 struct elf_dyn_relocs *p;
6731
6732 eh = (struct elf_aarch64_link_hash_entry *) h;
6733
6734 for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
6735 if (p->sec == sec)
6736 {
6737 /* Everything must go for SEC. */
6738 *pp = p->next;
6739 break;
6740 }
59c108f7
NC
6741 }
6742
cec5225b 6743 r_type = ELFNN_R_TYPE (rel->r_info);
a6bb11b2 6744 switch (aarch64_tls_transition (abfd,info, r_type, h ,r_symndx))
59c108f7 6745 {
a6bb11b2 6746 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
7bcccb57 6747 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7018c030 6748 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
7bcccb57 6749 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
a2e1db00 6750 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
99ad26cb 6751 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
7bcccb57 6752 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
dc8008f5 6753 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 6754 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
7bcccb57
MS
6755 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
6756 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
389b8029 6757 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
7bcccb57
MS
6758 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
6759 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
1ada945d 6760 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
0484b454
RL
6761 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
6762 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
a6bb11b2 6763 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
7bcccb57 6764 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
3c12b054 6765 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
7ba7cfe4 6766 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
94facae3 6767 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
a6bb11b2 6768 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
a6bb11b2 6769 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
7bcccb57 6770 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
043bf05a 6771 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
3b957e5b
RL
6772 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
6773 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
73f925cc 6774 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
f69e4920 6775 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
77a69ff8 6776 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
a6bb11b2 6777 if (h != NULL)
59c108f7
NC
6778 {
6779 if (h->got.refcount > 0)
6780 h->got.refcount -= 1;
1419bbe5
WN
6781
6782 if (h->type == STT_GNU_IFUNC)
6783 {
6784 if (h->plt.refcount > 0)
6785 h->plt.refcount -= 1;
6786 }
59c108f7 6787 }
cb8af559 6788 else if (locals != NULL)
59c108f7 6789 {
cb8af559
NC
6790 if (locals[r_symndx].got_refcount > 0)
6791 locals[r_symndx].got_refcount -= 1;
59c108f7
NC
6792 }
6793 break;
6794
a6bb11b2
YZ
6795 case BFD_RELOC_AARCH64_CALL26:
6796 case BFD_RELOC_AARCH64_JUMP26:
6797 /* If this is a local symbol then we resolve it
6798 directly without creating a PLT entry. */
59c108f7
NC
6799 if (h == NULL)
6800 continue;
6801
6802 if (h->plt.refcount > 0)
6803 h->plt.refcount -= 1;
6804 break;
6805
ce336788
JW
6806 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
6807 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
6808 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
614b09ce
JW
6809 case BFD_RELOC_AARCH64_MOVW_G0_NC:
6810 case BFD_RELOC_AARCH64_MOVW_G1_NC:
6811 case BFD_RELOC_AARCH64_MOVW_G2_NC:
6812 case BFD_RELOC_AARCH64_MOVW_G3:
a6bb11b2 6813 case BFD_RELOC_AARCH64_NN:
0e1862bb 6814 if (h != NULL && bfd_link_executable (info))
59c108f7
NC
6815 {
6816 if (h->plt.refcount > 0)
6817 h->plt.refcount -= 1;
6818 }
6819 break;
cec5225b 6820
59c108f7
NC
6821 default:
6822 break;
6823 }
6824 }
6825
a06ea964
NC
6826 return TRUE;
6827}
6828
6829/* Adjust a symbol defined by a dynamic object and referenced by a
6830 regular object. The current definition is in some section of the
6831 dynamic object, but we're not including those sections. We have to
6832 change the definition to something the rest of the link can
6833 understand. */
6834
6835static bfd_boolean
cec5225b 6836elfNN_aarch64_adjust_dynamic_symbol (struct bfd_link_info *info,
a06ea964
NC
6837 struct elf_link_hash_entry *h)
6838{
cec5225b 6839 struct elf_aarch64_link_hash_table *htab;
a06ea964
NC
6840 asection *s;
6841
6842 /* If this is a function, put it in the procedure linkage table. We
6843 will fill in the contents of the procedure linkage table later,
6844 when we know the address of the .got section. */
1419bbe5 6845 if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
a06ea964
NC
6846 {
6847 if (h->plt.refcount <= 0
1419bbe5
WN
6848 || (h->type != STT_GNU_IFUNC
6849 && (SYMBOL_CALLS_LOCAL (info, h)
6850 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
6851 && h->root.type == bfd_link_hash_undefweak))))
a06ea964
NC
6852 {
6853 /* This case can occur if we saw a CALL26 reloc in
6854 an input file, but the symbol wasn't referred to
6855 by a dynamic object or all references were
6856 garbage collected. In which case we can end up
6857 resolving. */
6858 h->plt.offset = (bfd_vma) - 1;
6859 h->needs_plt = 0;
6860 }
6861
6862 return TRUE;
6863 }
6864 else
80de0c6d 6865 /* Otherwise, reset to -1. */
a06ea964
NC
6866 h->plt.offset = (bfd_vma) - 1;
6867
6868
6869 /* If this is a weak symbol, and there is a real definition, the
6870 processor independent code will have arranged for us to see the
6871 real definition first, and we can just use the same value. */
6872 if (h->u.weakdef != NULL)
6873 {
6874 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
6875 || h->u.weakdef->root.type == bfd_link_hash_defweak);
6876 h->root.u.def.section = h->u.weakdef->root.u.def.section;
6877 h->root.u.def.value = h->u.weakdef->root.u.def.value;
6878 if (ELIMINATE_COPY_RELOCS || info->nocopyreloc)
6879 h->non_got_ref = h->u.weakdef->non_got_ref;
6880 return TRUE;
6881 }
6882
6883 /* If we are creating a shared library, we must presume that the
6884 only references to the symbol are via the global offset table.
6885 For such cases we need not do anything here; the relocations will
6886 be handled correctly by relocate_section. */
0e1862bb 6887 if (bfd_link_pic (info))
a06ea964
NC
6888 return TRUE;
6889
6890 /* If there are no references to this symbol that do not use the
6891 GOT, we don't need to generate a copy reloc. */
6892 if (!h->non_got_ref)
6893 return TRUE;
6894
6895 /* If -z nocopyreloc was given, we won't generate them either. */
6896 if (info->nocopyreloc)
6897 {
6898 h->non_got_ref = 0;
6899 return TRUE;
6900 }
6901
6902 /* We must allocate the symbol in our .dynbss section, which will
6903 become part of the .bss section of the executable. There will be
6904 an entry for this symbol in the .dynsym section. The dynamic
6905 object will contain position independent code, so all references
6906 from the dynamic object to this symbol will go through the global
6907 offset table. The dynamic linker will use the .dynsym entry to
6908 determine the address it must put in the global offset table, so
6909 both the dynamic object and the regular object will refer to the
6910 same memory location for the variable. */
6911
cec5225b 6912 htab = elf_aarch64_hash_table (info);
a06ea964
NC
6913
6914 /* We must generate a R_AARCH64_COPY reloc to tell the dynamic linker
6915 to copy the initial value out of the dynamic object and into the
6916 runtime process image. */
6917 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0 && h->size != 0)
6918 {
6919 htab->srelbss->size += RELOC_SIZE (htab);
6920 h->needs_copy = 1;
6921 }
6922
6923 s = htab->sdynbss;
6924
6cabe1ea 6925 return _bfd_elf_adjust_dynamic_copy (info, h, s);
a06ea964
NC
6926
6927}
6928
6929static bfd_boolean
cec5225b 6930elfNN_aarch64_allocate_local_symbols (bfd *abfd, unsigned number)
a06ea964
NC
6931{
6932 struct elf_aarch64_local_symbol *locals;
cec5225b 6933 locals = elf_aarch64_locals (abfd);
a06ea964
NC
6934 if (locals == NULL)
6935 {
6936 locals = (struct elf_aarch64_local_symbol *)
6937 bfd_zalloc (abfd, number * sizeof (struct elf_aarch64_local_symbol));
6938 if (locals == NULL)
6939 return FALSE;
cec5225b 6940 elf_aarch64_locals (abfd) = locals;
a06ea964
NC
6941 }
6942 return TRUE;
6943}
6944
cc0efaa8
MS
6945/* Create the .got section to hold the global offset table. */
6946
6947static bfd_boolean
6948aarch64_elf_create_got_section (bfd *abfd, struct bfd_link_info *info)
6949{
6950 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
6951 flagword flags;
6952 asection *s;
6953 struct elf_link_hash_entry *h;
6954 struct elf_link_hash_table *htab = elf_hash_table (info);
6955
6956 /* This function may be called more than once. */
6957 s = bfd_get_linker_section (abfd, ".got");
6958 if (s != NULL)
6959 return TRUE;
6960
6961 flags = bed->dynamic_sec_flags;
6962
6963 s = bfd_make_section_anyway_with_flags (abfd,
6964 (bed->rela_plts_and_copies_p
6965 ? ".rela.got" : ".rel.got"),
6966 (bed->dynamic_sec_flags
6967 | SEC_READONLY));
6968 if (s == NULL
6969 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
6970 return FALSE;
6971 htab->srelgot = s;
6972
6973 s = bfd_make_section_anyway_with_flags (abfd, ".got", flags);
6974 if (s == NULL
6975 || !bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
6976 return FALSE;
6977 htab->sgot = s;
6978 htab->sgot->size += GOT_ENTRY_SIZE;
6979
6980 if (bed->want_got_sym)
6981 {
6982 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
6983 (or .got.plt) section. We don't do this in the linker script
6984 because we don't want to define the symbol if we are not creating
6985 a global offset table. */
6986 h = _bfd_elf_define_linkage_sym (abfd, info, s,
6987 "_GLOBAL_OFFSET_TABLE_");
6988 elf_hash_table (info)->hgot = h;
6989 if (h == NULL)
6990 return FALSE;
6991 }
6992
6993 if (bed->want_got_plt)
6994 {
6995 s = bfd_make_section_anyway_with_flags (abfd, ".got.plt", flags);
6996 if (s == NULL
6997 || !bfd_set_section_alignment (abfd, s,
6998 bed->s->log_file_align))
6999 return FALSE;
7000 htab->sgotplt = s;
7001 }
7002
7003 /* The first bit of the global offset table is the header. */
7004 s->size += bed->got_header_size;
7005
7006 return TRUE;
7007}
7008
a06ea964
NC
7009/* Look through the relocs for a section during the first phase. */
7010
7011static bfd_boolean
cec5225b 7012elfNN_aarch64_check_relocs (bfd *abfd, struct bfd_link_info *info,
a06ea964
NC
7013 asection *sec, const Elf_Internal_Rela *relocs)
7014{
7015 Elf_Internal_Shdr *symtab_hdr;
7016 struct elf_link_hash_entry **sym_hashes;
7017 const Elf_Internal_Rela *rel;
7018 const Elf_Internal_Rela *rel_end;
7019 asection *sreloc;
7020
cec5225b 7021 struct elf_aarch64_link_hash_table *htab;
a06ea964 7022
0e1862bb 7023 if (bfd_link_relocatable (info))
a06ea964
NC
7024 return TRUE;
7025
7026 BFD_ASSERT (is_aarch64_elf (abfd));
7027
cec5225b 7028 htab = elf_aarch64_hash_table (info);
a06ea964
NC
7029 sreloc = NULL;
7030
7031 symtab_hdr = &elf_symtab_hdr (abfd);
7032 sym_hashes = elf_sym_hashes (abfd);
a06ea964
NC
7033
7034 rel_end = relocs + sec->reloc_count;
7035 for (rel = relocs; rel < rel_end; rel++)
7036 {
7037 struct elf_link_hash_entry *h;
7038 unsigned long r_symndx;
7039 unsigned int r_type;
a6bb11b2 7040 bfd_reloc_code_real_type bfd_r_type;
1419bbe5 7041 Elf_Internal_Sym *isym;
a06ea964 7042
cec5225b
YZ
7043 r_symndx = ELFNN_R_SYM (rel->r_info);
7044 r_type = ELFNN_R_TYPE (rel->r_info);
a06ea964
NC
7045
7046 if (r_symndx >= NUM_SHDR_ENTRIES (symtab_hdr))
7047 {
7048 (*_bfd_error_handler) (_("%B: bad symbol index: %d"), abfd,
7049 r_symndx);
7050 return FALSE;
7051 }
7052
ed5acf27 7053 if (r_symndx < symtab_hdr->sh_info)
1419bbe5
WN
7054 {
7055 /* A local symbol. */
7056 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
7057 abfd, r_symndx);
7058 if (isym == NULL)
7059 return FALSE;
7060
7061 /* Check relocation against local STT_GNU_IFUNC symbol. */
7062 if (ELF_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
7063 {
7064 h = elfNN_aarch64_get_local_sym_hash (htab, abfd, rel,
7065 TRUE);
7066 if (h == NULL)
7067 return FALSE;
7068
7069 /* Fake a STT_GNU_IFUNC symbol. */
7070 h->type = STT_GNU_IFUNC;
7071 h->def_regular = 1;
7072 h->ref_regular = 1;
7073 h->forced_local = 1;
7074 h->root.type = bfd_link_hash_defined;
7075 }
7076 else
7077 h = NULL;
7078 }
a06ea964
NC
7079 else
7080 {
7081 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
7082 while (h->root.type == bfd_link_hash_indirect
7083 || h->root.type == bfd_link_hash_warning)
7084 h = (struct elf_link_hash_entry *) h->root.u.i.link;
81fbe831
AM
7085
7086 /* PR15323, ref flags aren't set for references in the same
7087 object. */
7088 h->root.non_ir_ref = 1;
a06ea964
NC
7089 }
7090
7091 /* Could be done earlier, if h were already available. */
a6bb11b2 7092 bfd_r_type = aarch64_tls_transition (abfd, info, r_type, h, r_symndx);
a06ea964 7093
1419bbe5
WN
7094 if (h != NULL)
7095 {
7096 /* Create the ifunc sections for static executables. If we
7097 never see an indirect function symbol nor we are building
7098 a static executable, those sections will be empty and
7099 won't appear in output. */
7100 switch (bfd_r_type)
7101 {
7102 default:
7103 break;
7104
ce336788
JW
7105 case BFD_RELOC_AARCH64_ADD_LO12:
7106 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
7107 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
1419bbe5 7108 case BFD_RELOC_AARCH64_CALL26:
ce336788 7109 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
1419bbe5 7110 case BFD_RELOC_AARCH64_JUMP26:
7018c030 7111 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
1419bbe5 7112 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
a2e1db00 7113 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
99ad26cb 7114 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
1419bbe5 7115 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
dc8008f5 7116 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 7117 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
ce336788 7118 case BFD_RELOC_AARCH64_NN:
1419bbe5
WN
7119 if (htab->root.dynobj == NULL)
7120 htab->root.dynobj = abfd;
7121 if (!_bfd_elf_create_ifunc_sections (htab->root.dynobj, info))
7122 return FALSE;
7123 break;
7124 }
7125
7126 /* It is referenced by a non-shared object. */
7127 h->ref_regular = 1;
7128 h->root.non_ir_ref = 1;
7129 }
7130
a6bb11b2 7131 switch (bfd_r_type)
a06ea964 7132 {
a6bb11b2 7133 case BFD_RELOC_AARCH64_NN:
a06ea964
NC
7134
7135 /* We don't need to handle relocs into sections not going into
7136 the "real" output. */
7137 if ((sec->flags & SEC_ALLOC) == 0)
7138 break;
7139
7140 if (h != NULL)
7141 {
0e1862bb 7142 if (!bfd_link_pic (info))
a06ea964
NC
7143 h->non_got_ref = 1;
7144
7145 h->plt.refcount += 1;
7146 h->pointer_equality_needed = 1;
7147 }
7148
7149 /* No need to do anything if we're not creating a shared
7150 object. */
0e1862bb 7151 if (! bfd_link_pic (info))
a06ea964
NC
7152 break;
7153
7154 {
7155 struct elf_dyn_relocs *p;
7156 struct elf_dyn_relocs **head;
7157
7158 /* We must copy these reloc types into the output file.
7159 Create a reloc section in dynobj and make room for
7160 this reloc. */
7161 if (sreloc == NULL)
7162 {
7163 if (htab->root.dynobj == NULL)
7164 htab->root.dynobj = abfd;
7165
7166 sreloc = _bfd_elf_make_dynamic_reloc_section
0608afa7 7167 (sec, htab->root.dynobj, LOG_FILE_ALIGN, abfd, /*rela? */ TRUE);
a06ea964
NC
7168
7169 if (sreloc == NULL)
7170 return FALSE;
7171 }
7172
7173 /* If this is a global symbol, we count the number of
7174 relocations we need for this symbol. */
7175 if (h != NULL)
7176 {
cec5225b
YZ
7177 struct elf_aarch64_link_hash_entry *eh;
7178 eh = (struct elf_aarch64_link_hash_entry *) h;
a06ea964
NC
7179 head = &eh->dyn_relocs;
7180 }
7181 else
7182 {
7183 /* Track dynamic relocs needed for local syms too.
7184 We really need local syms available to do this
7185 easily. Oh well. */
7186
7187 asection *s;
7188 void **vpp;
a06ea964
NC
7189
7190 isym = bfd_sym_from_r_symndx (&htab->sym_cache,
7191 abfd, r_symndx);
7192 if (isym == NULL)
7193 return FALSE;
7194
7195 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
7196 if (s == NULL)
7197 s = sec;
7198
7199 /* Beware of type punned pointers vs strict aliasing
7200 rules. */
7201 vpp = &(elf_section_data (s)->local_dynrel);
7202 head = (struct elf_dyn_relocs **) vpp;
7203 }
7204
7205 p = *head;
7206 if (p == NULL || p->sec != sec)
7207 {
7208 bfd_size_type amt = sizeof *p;
7209 p = ((struct elf_dyn_relocs *)
7210 bfd_zalloc (htab->root.dynobj, amt));
7211 if (p == NULL)
7212 return FALSE;
7213 p->next = *head;
7214 *head = p;
7215 p->sec = sec;
7216 }
7217
7218 p->count += 1;
7219
7220 }
7221 break;
7222
7223 /* RR: We probably want to keep a consistency check that
7224 there are no dangling GOT_PAGE relocs. */
a6bb11b2 7225 case BFD_RELOC_AARCH64_ADR_GOT_PAGE:
7bcccb57 7226 case BFD_RELOC_AARCH64_GOT_LD_PREL19:
7018c030 7227 case BFD_RELOC_AARCH64_LD32_GOTPAGE_LO14:
7bcccb57 7228 case BFD_RELOC_AARCH64_LD32_GOT_LO12_NC:
a2e1db00 7229 case BFD_RELOC_AARCH64_LD64_GOTOFF_LO15:
99ad26cb 7230 case BFD_RELOC_AARCH64_LD64_GOTPAGE_LO15:
7bcccb57 7231 case BFD_RELOC_AARCH64_LD64_GOT_LO12_NC:
dc8008f5 7232 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G0_NC:
74a1bfe1 7233 case BFD_RELOC_AARCH64_MOVW_GOTOFF_G1:
7bcccb57
MS
7234 case BFD_RELOC_AARCH64_TLSDESC_ADD_LO12_NC:
7235 case BFD_RELOC_AARCH64_TLSDESC_ADR_PAGE21:
389b8029 7236 case BFD_RELOC_AARCH64_TLSDESC_ADR_PREL21:
7bcccb57
MS
7237 case BFD_RELOC_AARCH64_TLSDESC_LD32_LO12_NC:
7238 case BFD_RELOC_AARCH64_TLSDESC_LD64_LO12_NC:
1ada945d 7239 case BFD_RELOC_AARCH64_TLSDESC_LD_PREL19:
0484b454
RL
7240 case BFD_RELOC_AARCH64_TLSDESC_OFF_G0_NC:
7241 case BFD_RELOC_AARCH64_TLSDESC_OFF_G1:
a6bb11b2 7242 case BFD_RELOC_AARCH64_TLSGD_ADD_LO12_NC:
7bcccb57 7243 case BFD_RELOC_AARCH64_TLSGD_ADR_PAGE21:
3c12b054 7244 case BFD_RELOC_AARCH64_TLSGD_ADR_PREL21:
7ba7cfe4 7245 case BFD_RELOC_AARCH64_TLSGD_MOVW_G0_NC:
94facae3 7246 case BFD_RELOC_AARCH64_TLSGD_MOVW_G1:
a6bb11b2 7247 case BFD_RELOC_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
a6bb11b2 7248 case BFD_RELOC_AARCH64_TLSIE_LD32_GOTTPREL_LO12_NC:
7bcccb57 7249 case BFD_RELOC_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
043bf05a 7250 case BFD_RELOC_AARCH64_TLSIE_LD_GOTTPREL_PREL19:
3b957e5b
RL
7251 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G0_NC:
7252 case BFD_RELOC_AARCH64_TLSIE_MOVW_GOTTPREL_G1:
73f925cc 7253 case BFD_RELOC_AARCH64_TLSLD_ADD_LO12_NC:
f69e4920 7254 case BFD_RELOC_AARCH64_TLSLD_ADR_PAGE21:
77a69ff8 7255 case BFD_RELOC_AARCH64_TLSLD_ADR_PREL21:
b7a944fe
RL
7256 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1:
7257 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G1_NC:
7258 case BFD_RELOC_AARCH64_TLSLE_MOVW_TPREL_G2:
a06ea964
NC
7259 {
7260 unsigned got_type;
7261 unsigned old_got_type;
7262
a6bb11b2 7263 got_type = aarch64_reloc_got_type (bfd_r_type);
a06ea964
NC
7264
7265 if (h)
7266 {
7267 h->got.refcount += 1;
cec5225b 7268 old_got_type = elf_aarch64_hash_entry (h)->got_type;
a06ea964
NC
7269 }
7270 else
7271 {
7272 struct elf_aarch64_local_symbol *locals;
7273
cec5225b 7274 if (!elfNN_aarch64_allocate_local_symbols
a06ea964
NC
7275 (abfd, symtab_hdr->sh_info))
7276 return FALSE;
7277
cec5225b 7278 locals = elf_aarch64_locals (abfd);
a06ea964
NC
7279 BFD_ASSERT (r_symndx < symtab_hdr->sh_info);
7280 locals[r_symndx].got_refcount += 1;
7281 old_got_type = locals[r_symndx].got_type;
7282 }
7283
7284 /* If a variable is accessed with both general dynamic TLS
7285 methods, two slots may be created. */
7286 if (GOT_TLS_GD_ANY_P (old_got_type) && GOT_TLS_GD_ANY_P (got_type))
7287 got_type |= old_got_type;
7288
7289 /* We will already have issued an error message if there
7290 is a TLS/non-TLS mismatch, based on the symbol type.
7291 So just combine any TLS types needed. */
7292 if (old_got_type != GOT_UNKNOWN && old_got_type != GOT_NORMAL
7293 && got_type != GOT_NORMAL)
7294 got_type |= old_got_type;
7295
7296 /* If the symbol is accessed by both IE and GD methods, we
7297 are able to relax. Turn off the GD flag, without
7298 messing up with any other kind of TLS types that may be
7299 involved. */
7300 if ((got_type & GOT_TLS_IE) && GOT_TLS_GD_ANY_P (got_type))
7301 got_type &= ~ (GOT_TLSDESC_GD | GOT_TLS_GD);
7302
7303 if (old_got_type != got_type)
7304 {
7305 if (h != NULL)
cec5225b 7306 elf_aarch64_hash_entry (h)->got_type = got_type;
a06ea964
NC
7307 else
7308 {
7309 struct elf_aarch64_local_symbol *locals;
cec5225b 7310 locals = elf_aarch64_locals (abfd);
a06ea964
NC
7311 BFD_ASSERT (r_symndx < symtab_hdr->sh_info);
7312 locals[r_symndx].got_type = got_type;
7313 }
7314 }
7315
cc0efaa8
MS
7316 if (htab->root.dynobj == NULL)
7317 htab->root.dynobj = abfd;
7318 if (! aarch64_elf_create_got_section (htab->root.dynobj, info))
7319 return FALSE;
a06ea964
NC
7320 break;
7321 }
7322
614b09ce
JW
7323 case BFD_RELOC_AARCH64_MOVW_G0_NC:
7324 case BFD_RELOC_AARCH64_MOVW_G1_NC:
7325 case BFD_RELOC_AARCH64_MOVW_G2_NC:
7326 case BFD_RELOC_AARCH64_MOVW_G3:
0e1862bb 7327 if (bfd_link_pic (info))
614b09ce
JW
7328 {
7329 int howto_index = bfd_r_type - BFD_RELOC_AARCH64_RELOC_START;
7330 (*_bfd_error_handler)
7331 (_("%B: relocation %s against `%s' can not be used when making "
7332 "a shared object; recompile with -fPIC"),
7333 abfd, elfNN_aarch64_howto_table[howto_index].name,
7334 (h) ? h->root.root.string : "a local symbol");
7335 bfd_set_error (bfd_error_bad_value);
7336 return FALSE;
7337 }
7338
a6bb11b2
YZ
7339 case BFD_RELOC_AARCH64_ADR_HI21_NC_PCREL:
7340 case BFD_RELOC_AARCH64_ADR_HI21_PCREL:
7341 case BFD_RELOC_AARCH64_ADR_LO21_PCREL:
0e1862bb 7342 if (h != NULL && bfd_link_executable (info))
a06ea964
NC
7343 {
7344 /* If this reloc is in a read-only section, we might
7345 need a copy reloc. We can't check reliably at this
7346 stage whether the section is read-only, as input
7347 sections have not yet been mapped to output sections.
7348 Tentatively set the flag for now, and correct in
7349 adjust_dynamic_symbol. */
7350 h->non_got_ref = 1;
7351 h->plt.refcount += 1;
7352 h->pointer_equality_needed = 1;
7353 }
7354 /* FIXME:: RR need to handle these in shared libraries
7355 and essentially bomb out as these being non-PIC
7356 relocations in shared libraries. */
7357 break;
7358
a6bb11b2
YZ
7359 case BFD_RELOC_AARCH64_CALL26:
7360 case BFD_RELOC_AARCH64_JUMP26:
a06ea964
NC
7361 /* If this is a local symbol then we resolve it
7362 directly without creating a PLT entry. */
7363 if (h == NULL)
7364 continue;
7365
7366 h->needs_plt = 1;
1419bbe5
WN
7367 if (h->plt.refcount <= 0)
7368 h->plt.refcount = 1;
7369 else
7370 h->plt.refcount += 1;
a06ea964 7371 break;
a6bb11b2
YZ
7372
7373 default:
7374 break;
a06ea964
NC
7375 }
7376 }
a6bb11b2 7377
a06ea964
NC
7378 return TRUE;
7379}
7380
7381/* Treat mapping symbols as special target symbols. */
7382
7383static bfd_boolean
cec5225b 7384elfNN_aarch64_is_target_special_symbol (bfd *abfd ATTRIBUTE_UNUSED,
a06ea964
NC
7385 asymbol *sym)
7386{
7387 return bfd_is_aarch64_special_symbol_name (sym->name,
7388 BFD_AARCH64_SPECIAL_SYM_TYPE_ANY);
7389}
7390
7391/* This is a copy of elf_find_function () from elf.c except that
7392 AArch64 mapping symbols are ignored when looking for function names. */
7393
7394static bfd_boolean
7395aarch64_elf_find_function (bfd *abfd ATTRIBUTE_UNUSED,
a06ea964 7396 asymbol **symbols,
fb167eb2 7397 asection *section,
a06ea964
NC
7398 bfd_vma offset,
7399 const char **filename_ptr,
7400 const char **functionname_ptr)
7401{
7402 const char *filename = NULL;
7403 asymbol *func = NULL;
7404 bfd_vma low_func = 0;
7405 asymbol **p;
7406
7407 for (p = symbols; *p != NULL; p++)
7408 {
7409 elf_symbol_type *q;
7410
7411 q = (elf_symbol_type *) * p;
7412
7413 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
7414 {
7415 default:
7416 break;
7417 case STT_FILE:
7418 filename = bfd_asymbol_name (&q->symbol);
7419 break;
7420 case STT_FUNC:
7421 case STT_NOTYPE:
7422 /* Skip mapping symbols. */
7423 if ((q->symbol.flags & BSF_LOCAL)
7424 && (bfd_is_aarch64_special_symbol_name
7425 (q->symbol.name, BFD_AARCH64_SPECIAL_SYM_TYPE_ANY)))
7426 continue;
7427 /* Fall through. */
7428 if (bfd_get_section (&q->symbol) == section
7429 && q->symbol.value >= low_func && q->symbol.value <= offset)
7430 {
7431 func = (asymbol *) q;
7432 low_func = q->symbol.value;
7433 }
7434 break;
7435 }
7436 }
7437
7438 if (func == NULL)
7439 return FALSE;
7440
7441 if (filename_ptr)
7442 *filename_ptr = filename;
7443 if (functionname_ptr)
7444 *functionname_ptr = bfd_asymbol_name (func);
7445
7446 return TRUE;
7447}
7448
7449
7450/* Find the nearest line to a particular section and offset, for error
7451 reporting. This code is a duplicate of the code in elf.c, except
7452 that it uses aarch64_elf_find_function. */
7453
7454static bfd_boolean
cec5225b 7455elfNN_aarch64_find_nearest_line (bfd *abfd,
a06ea964 7456 asymbol **symbols,
fb167eb2 7457 asection *section,
a06ea964
NC
7458 bfd_vma offset,
7459 const char **filename_ptr,
7460 const char **functionname_ptr,
fb167eb2
AM
7461 unsigned int *line_ptr,
7462 unsigned int *discriminator_ptr)
a06ea964
NC
7463{
7464 bfd_boolean found = FALSE;
7465
fb167eb2 7466 if (_bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
a06ea964 7467 filename_ptr, functionname_ptr,
fb167eb2
AM
7468 line_ptr, discriminator_ptr,
7469 dwarf_debug_sections, 0,
a06ea964
NC
7470 &elf_tdata (abfd)->dwarf2_find_line_info))
7471 {
7472 if (!*functionname_ptr)
fb167eb2 7473 aarch64_elf_find_function (abfd, symbols, section, offset,
a06ea964
NC
7474 *filename_ptr ? NULL : filename_ptr,
7475 functionname_ptr);
7476
7477 return TRUE;
7478 }
7479
fb167eb2
AM
7480 /* Skip _bfd_dwarf1_find_nearest_line since no known AArch64
7481 toolchain uses DWARF1. */
7482
a06ea964
NC
7483 if (!_bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
7484 &found, filename_ptr,
7485 functionname_ptr, line_ptr,
7486 &elf_tdata (abfd)->line_info))
7487 return FALSE;
7488
7489 if (found && (*functionname_ptr || *line_ptr))
7490 return TRUE;
7491
7492 if (symbols == NULL)
7493 return FALSE;
7494
fb167eb2 7495 if (!aarch64_elf_find_function (abfd, symbols, section, offset,
a06ea964
NC
7496 filename_ptr, functionname_ptr))
7497 return FALSE;
7498
7499 *line_ptr = 0;
7500 return TRUE;
7501}
7502
7503static bfd_boolean
cec5225b 7504elfNN_aarch64_find_inliner_info (bfd *abfd,
a06ea964
NC
7505 const char **filename_ptr,
7506 const char **functionname_ptr,
7507 unsigned int *line_ptr)
7508{
7509 bfd_boolean found;
7510 found = _bfd_dwarf2_find_inliner_info
7511 (abfd, filename_ptr,
7512 functionname_ptr, line_ptr, &elf_tdata (abfd)->dwarf2_find_line_info);
7513 return found;
7514}
7515
7516
7517static void
cec5225b 7518elfNN_aarch64_post_process_headers (bfd *abfd,
1419bbe5 7519 struct bfd_link_info *link_info)
a06ea964
NC
7520{
7521 Elf_Internal_Ehdr *i_ehdrp; /* ELF file header, internal form. */
7522
7523 i_ehdrp = elf_elfheader (abfd);
a06ea964 7524 i_ehdrp->e_ident[EI_ABIVERSION] = AARCH64_ELF_ABI_VERSION;
1419bbe5 7525
78245035 7526 _bfd_elf_post_process_headers (abfd, link_info);
a06ea964
NC
7527}
7528
7529static enum elf_reloc_type_class
cec5225b 7530elfNN_aarch64_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
7e612e98
AM
7531 const asection *rel_sec ATTRIBUTE_UNUSED,
7532 const Elf_Internal_Rela *rela)
a06ea964 7533{
cec5225b 7534 switch ((int) ELFNN_R_TYPE (rela->r_info))
a06ea964 7535 {
a6bb11b2 7536 case AARCH64_R (RELATIVE):
a06ea964 7537 return reloc_class_relative;
a6bb11b2 7538 case AARCH64_R (JUMP_SLOT):
a06ea964 7539 return reloc_class_plt;
a6bb11b2 7540 case AARCH64_R (COPY):
a06ea964
NC
7541 return reloc_class_copy;
7542 default:
7543 return reloc_class_normal;
7544 }
7545}
7546
a06ea964
NC
7547/* Handle an AArch64 specific section when reading an object file. This is
7548 called when bfd_section_from_shdr finds a section with an unknown
7549 type. */
7550
7551static bfd_boolean
cec5225b 7552elfNN_aarch64_section_from_shdr (bfd *abfd,
a06ea964
NC
7553 Elf_Internal_Shdr *hdr,
7554 const char *name, int shindex)
7555{
7556 /* There ought to be a place to keep ELF backend specific flags, but
7557 at the moment there isn't one. We just keep track of the
7558 sections by their name, instead. Fortunately, the ABI gives
7559 names for all the AArch64 specific sections, so we will probably get
7560 away with this. */
7561 switch (hdr->sh_type)
7562 {
7563 case SHT_AARCH64_ATTRIBUTES:
7564 break;
7565
7566 default:
7567 return FALSE;
7568 }
7569
7570 if (!_bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
7571 return FALSE;
7572
7573 return TRUE;
7574}
7575
7576/* A structure used to record a list of sections, independently
7577 of the next and prev fields in the asection structure. */
7578typedef struct section_list
7579{
7580 asection *sec;
7581 struct section_list *next;
7582 struct section_list *prev;
7583}
7584section_list;
7585
7586/* Unfortunately we need to keep a list of sections for which
7587 an _aarch64_elf_section_data structure has been allocated. This
cec5225b 7588 is because it is possible for functions like elfNN_aarch64_write_section
a06ea964
NC
7589 to be called on a section which has had an elf_data_structure
7590 allocated for it (and so the used_by_bfd field is valid) but
7591 for which the AArch64 extended version of this structure - the
7592 _aarch64_elf_section_data structure - has not been allocated. */
7593static section_list *sections_with_aarch64_elf_section_data = NULL;
7594
7595static void
7596record_section_with_aarch64_elf_section_data (asection *sec)
7597{
7598 struct section_list *entry;
7599
7600 entry = bfd_malloc (sizeof (*entry));
7601 if (entry == NULL)
7602 return;
7603 entry->sec = sec;
7604 entry->next = sections_with_aarch64_elf_section_data;
7605 entry->prev = NULL;
7606 if (entry->next != NULL)
7607 entry->next->prev = entry;
7608 sections_with_aarch64_elf_section_data = entry;
7609}
7610
7611static struct section_list *
7612find_aarch64_elf_section_entry (asection *sec)
7613{
7614 struct section_list *entry;
7615 static struct section_list *last_entry = NULL;
7616
7617 /* This is a short cut for the typical case where the sections are added
7618 to the sections_with_aarch64_elf_section_data list in forward order and
7619 then looked up here in backwards order. This makes a real difference
7620 to the ld-srec/sec64k.exp linker test. */
7621 entry = sections_with_aarch64_elf_section_data;
7622 if (last_entry != NULL)
7623 {
7624 if (last_entry->sec == sec)
7625 entry = last_entry;
7626 else if (last_entry->next != NULL && last_entry->next->sec == sec)
7627 entry = last_entry->next;
7628 }
7629
7630 for (; entry; entry = entry->next)
7631 if (entry->sec == sec)
7632 break;
7633
7634 if (entry)
7635 /* Record the entry prior to this one - it is the entry we are
7636 most likely to want to locate next time. Also this way if we
7637 have been called from
7638 unrecord_section_with_aarch64_elf_section_data () we will not
7639 be caching a pointer that is about to be freed. */
7640 last_entry = entry->prev;
7641
7642 return entry;
7643}
7644
7645static void
7646unrecord_section_with_aarch64_elf_section_data (asection *sec)
7647{
7648 struct section_list *entry;
7649
7650 entry = find_aarch64_elf_section_entry (sec);
7651
7652 if (entry)
7653 {
7654 if (entry->prev != NULL)
7655 entry->prev->next = entry->next;
7656 if (entry->next != NULL)
7657 entry->next->prev = entry->prev;
7658 if (entry == sections_with_aarch64_elf_section_data)
7659 sections_with_aarch64_elf_section_data = entry->next;
7660 free (entry);
7661 }
7662}
7663
7664
7665typedef struct
7666{
7667 void *finfo;
7668 struct bfd_link_info *info;
7669 asection *sec;
7670 int sec_shndx;
7671 int (*func) (void *, const char *, Elf_Internal_Sym *,
7672 asection *, struct elf_link_hash_entry *);
7673} output_arch_syminfo;
7674
7675enum map_symbol_type
7676{
7677 AARCH64_MAP_INSN,
7678 AARCH64_MAP_DATA
7679};
7680
7681
7682/* Output a single mapping symbol. */
7683
7684static bfd_boolean
cec5225b 7685elfNN_aarch64_output_map_sym (output_arch_syminfo *osi,
a06ea964
NC
7686 enum map_symbol_type type, bfd_vma offset)
7687{
7688 static const char *names[2] = { "$x", "$d" };
7689 Elf_Internal_Sym sym;
7690
7691 sym.st_value = (osi->sec->output_section->vma
7692 + osi->sec->output_offset + offset);
7693 sym.st_size = 0;
7694 sym.st_other = 0;
7695 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7696 sym.st_shndx = osi->sec_shndx;
7697 return osi->func (osi->finfo, names[type], &sym, osi->sec, NULL) == 1;
7698}
7699
a06ea964
NC
7700/* Output a single local symbol for a generated stub. */
7701
7702static bfd_boolean
cec5225b 7703elfNN_aarch64_output_stub_sym (output_arch_syminfo *osi, const char *name,
a06ea964
NC
7704 bfd_vma offset, bfd_vma size)
7705{
7706 Elf_Internal_Sym sym;
7707
7708 sym.st_value = (osi->sec->output_section->vma
7709 + osi->sec->output_offset + offset);
7710 sym.st_size = size;
7711 sym.st_other = 0;
7712 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7713 sym.st_shndx = osi->sec_shndx;
7714 return osi->func (osi->finfo, name, &sym, osi->sec, NULL) == 1;
7715}
7716
7717static bfd_boolean
7718aarch64_map_one_stub (struct bfd_hash_entry *gen_entry, void *in_arg)
7719{
cec5225b 7720 struct elf_aarch64_stub_hash_entry *stub_entry;
a06ea964
NC
7721 asection *stub_sec;
7722 bfd_vma addr;
7723 char *stub_name;
7724 output_arch_syminfo *osi;
7725
7726 /* Massage our args to the form they really have. */
cec5225b 7727 stub_entry = (struct elf_aarch64_stub_hash_entry *) gen_entry;
a06ea964
NC
7728 osi = (output_arch_syminfo *) in_arg;
7729
7730 stub_sec = stub_entry->stub_sec;
7731
7732 /* Ensure this stub is attached to the current section being
7733 processed. */
7734 if (stub_sec != osi->sec)
7735 return TRUE;
7736
7737 addr = (bfd_vma) stub_entry->stub_offset;
7738
7739 stub_name = stub_entry->output_name;
7740
7741 switch (stub_entry->stub_type)
7742 {
7743 case aarch64_stub_adrp_branch:
cec5225b 7744 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
a06ea964
NC
7745 sizeof (aarch64_adrp_branch_stub)))
7746 return FALSE;
cec5225b 7747 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
a06ea964
NC
7748 return FALSE;
7749 break;
7750 case aarch64_stub_long_branch:
cec5225b 7751 if (!elfNN_aarch64_output_stub_sym
a06ea964
NC
7752 (osi, stub_name, addr, sizeof (aarch64_long_branch_stub)))
7753 return FALSE;
cec5225b 7754 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
a06ea964 7755 return FALSE;
cec5225b 7756 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_DATA, addr + 16))
a06ea964
NC
7757 return FALSE;
7758 break;
68fcca92
JW
7759 case aarch64_stub_erratum_835769_veneer:
7760 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
7761 sizeof (aarch64_erratum_835769_stub)))
7762 return FALSE;
7763 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7764 return FALSE;
7765 break;
4106101c
MS
7766 case aarch64_stub_erratum_843419_veneer:
7767 if (!elfNN_aarch64_output_stub_sym (osi, stub_name, addr,
7768 sizeof (aarch64_erratum_843419_stub)))
7769 return FALSE;
7770 if (!elfNN_aarch64_output_map_sym (osi, AARCH64_MAP_INSN, addr))
7771 return FALSE;
7772 break;
7773
a06ea964 7774 default:
8e2fe09f 7775 abort ();
a06ea964
NC
7776 }
7777
7778 return TRUE;
7779}
7780
7781/* Output mapping symbols for linker generated sections. */
7782
7783static bfd_boolean
cec5225b 7784elfNN_aarch64_output_arch_local_syms (bfd *output_bfd,
a06ea964
NC
7785 struct bfd_link_info *info,
7786 void *finfo,
7787 int (*func) (void *, const char *,
7788 Elf_Internal_Sym *,
7789 asection *,
7790 struct elf_link_hash_entry
7791 *))
7792{
7793 output_arch_syminfo osi;
cec5225b 7794 struct elf_aarch64_link_hash_table *htab;
a06ea964 7795
cec5225b 7796 htab = elf_aarch64_hash_table (info);
a06ea964
NC
7797
7798 osi.finfo = finfo;
7799 osi.info = info;
7800 osi.func = func;
7801
7802 /* Long calls stubs. */
7803 if (htab->stub_bfd && htab->stub_bfd->sections)
7804 {
7805 asection *stub_sec;
7806
7807 for (stub_sec = htab->stub_bfd->sections;
7808 stub_sec != NULL; stub_sec = stub_sec->next)
7809 {
7810 /* Ignore non-stub sections. */
7811 if (!strstr (stub_sec->name, STUB_SUFFIX))
7812 continue;
7813
7814 osi.sec = stub_sec;
7815
7816 osi.sec_shndx = _bfd_elf_section_from_bfd_section
7817 (output_bfd, osi.sec->output_section);
7818
61865519
MS
7819 /* The first instruction in a stub is always a branch. */
7820 if (!elfNN_aarch64_output_map_sym (&osi, AARCH64_MAP_INSN, 0))
7821 return FALSE;
7822
a06ea964
NC
7823 bfd_hash_traverse (&htab->stub_hash_table, aarch64_map_one_stub,
7824 &osi);
7825 }
7826 }
7827
7828 /* Finally, output mapping symbols for the PLT. */
7829 if (!htab->root.splt || htab->root.splt->size == 0)
7830 return TRUE;
7831
a06ea964
NC
7832 osi.sec_shndx = _bfd_elf_section_from_bfd_section
7833 (output_bfd, htab->root.splt->output_section);
7834 osi.sec = htab->root.splt;
7835
73524045 7836 elfNN_aarch64_output_map_sym (&osi, AARCH64_MAP_INSN, 0);
a06ea964
NC
7837
7838 return TRUE;
7839
7840}
7841
7842/* Allocate target specific section data. */
7843
7844static bfd_boolean
cec5225b 7845elfNN_aarch64_new_section_hook (bfd *abfd, asection *sec)
a06ea964
NC
7846{
7847 if (!sec->used_by_bfd)
7848 {
7849 _aarch64_elf_section_data *sdata;
7850 bfd_size_type amt = sizeof (*sdata);
7851
7852 sdata = bfd_zalloc (abfd, amt);
7853 if (sdata == NULL)
7854 return FALSE;
7855 sec->used_by_bfd = sdata;
7856 }
7857
7858 record_section_with_aarch64_elf_section_data (sec);
7859
7860 return _bfd_elf_new_section_hook (abfd, sec);
7861}
7862
7863
7864static void
7865unrecord_section_via_map_over_sections (bfd *abfd ATTRIBUTE_UNUSED,
7866 asection *sec,
7867 void *ignore ATTRIBUTE_UNUSED)
7868{
7869 unrecord_section_with_aarch64_elf_section_data (sec);
7870}
7871
7872static bfd_boolean
cec5225b 7873elfNN_aarch64_close_and_cleanup (bfd *abfd)
a06ea964
NC
7874{
7875 if (abfd->sections)
7876 bfd_map_over_sections (abfd,
7877 unrecord_section_via_map_over_sections, NULL);
7878
7879 return _bfd_elf_close_and_cleanup (abfd);
7880}
7881
7882static bfd_boolean
cec5225b 7883elfNN_aarch64_bfd_free_cached_info (bfd *abfd)
a06ea964
NC
7884{
7885 if (abfd->sections)
7886 bfd_map_over_sections (abfd,
7887 unrecord_section_via_map_over_sections, NULL);
7888
7889 return _bfd_free_cached_info (abfd);
7890}
7891
a06ea964
NC
7892/* Create dynamic sections. This is different from the ARM backend in that
7893 the got, plt, gotplt and their relocation sections are all created in the
7894 standard part of the bfd elf backend. */
7895
7896static bfd_boolean
cec5225b 7897elfNN_aarch64_create_dynamic_sections (bfd *dynobj,
a06ea964
NC
7898 struct bfd_link_info *info)
7899{
cec5225b 7900 struct elf_aarch64_link_hash_table *htab;
cc0efaa8
MS
7901
7902 /* We need to create .got section. */
7903 if (!aarch64_elf_create_got_section (dynobj, info))
7904 return FALSE;
a06ea964
NC
7905
7906 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
7907 return FALSE;
7908
cec5225b 7909 htab = elf_aarch64_hash_table (info);
a06ea964 7910 htab->sdynbss = bfd_get_linker_section (dynobj, ".dynbss");
0e1862bb 7911 if (!bfd_link_pic (info))
a06ea964
NC
7912 htab->srelbss = bfd_get_linker_section (dynobj, ".rela.bss");
7913
0e1862bb 7914 if (!htab->sdynbss || (!bfd_link_pic (info) && !htab->srelbss))
a06ea964
NC
7915 abort ();
7916
a06ea964
NC
7917 return TRUE;
7918}
7919
7920
7921/* Allocate space in .plt, .got and associated reloc sections for
7922 dynamic relocs. */
7923
7924static bfd_boolean
cec5225b 7925elfNN_aarch64_allocate_dynrelocs (struct elf_link_hash_entry *h, void *inf)
a06ea964
NC
7926{
7927 struct bfd_link_info *info;
cec5225b
YZ
7928 struct elf_aarch64_link_hash_table *htab;
7929 struct elf_aarch64_link_hash_entry *eh;
a06ea964
NC
7930 struct elf_dyn_relocs *p;
7931
7932 /* An example of a bfd_link_hash_indirect symbol is versioned
7933 symbol. For example: __gxx_personality_v0(bfd_link_hash_indirect)
7934 -> __gxx_personality_v0(bfd_link_hash_defined)
7935
7936 There is no need to process bfd_link_hash_indirect symbols here
7937 because we will also be presented with the concrete instance of
cec5225b 7938 the symbol and elfNN_aarch64_copy_indirect_symbol () will have been
a06ea964
NC
7939 called to copy all relevant data from the generic to the concrete
7940 symbol instance.
7941 */
7942 if (h->root.type == bfd_link_hash_indirect)
7943 return TRUE;
7944
7945 if (h->root.type == bfd_link_hash_warning)
7946 h = (struct elf_link_hash_entry *) h->root.u.i.link;
7947
7948 info = (struct bfd_link_info *) inf;
cec5225b 7949 htab = elf_aarch64_hash_table (info);
a06ea964 7950
1419bbe5
WN
7951 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
7952 here if it is defined and referenced in a non-shared object. */
7953 if (h->type == STT_GNU_IFUNC
7954 && h->def_regular)
7955 return TRUE;
7956 else if (htab->root.dynamic_sections_created && h->plt.refcount > 0)
a06ea964
NC
7957 {
7958 /* Make sure this symbol is output as a dynamic symbol.
7959 Undefined weak syms won't yet be marked as dynamic. */
7960 if (h->dynindx == -1 && !h->forced_local)
7961 {
7962 if (!bfd_elf_link_record_dynamic_symbol (info, h))
7963 return FALSE;
7964 }
7965
0e1862bb 7966 if (bfd_link_pic (info) || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
a06ea964
NC
7967 {
7968 asection *s = htab->root.splt;
7969
7970 /* If this is the first .plt entry, make room for the special
7971 first entry. */
7972 if (s->size == 0)
7973 s->size += htab->plt_header_size;
7974
7975 h->plt.offset = s->size;
7976
7977 /* If this symbol is not defined in a regular file, and we are
7978 not generating a shared library, then set the symbol to this
7979 location in the .plt. This is required to make function
7980 pointers compare as equal between the normal executable and
7981 the shared library. */
0e1862bb 7982 if (!bfd_link_pic (info) && !h->def_regular)
a06ea964
NC
7983 {
7984 h->root.u.def.section = s;
7985 h->root.u.def.value = h->plt.offset;
7986 }
7987
7988 /* Make room for this entry. For now we only create the
7989 small model PLT entries. We later need to find a way
7990 of relaxing into these from the large model PLT entries. */
7991 s->size += PLT_SMALL_ENTRY_SIZE;
7992
7993 /* We also need to make an entry in the .got.plt section, which
7994 will be placed in the .got section by the linker script. */
7995 htab->root.sgotplt->size += GOT_ENTRY_SIZE;
7996
7997 /* We also need to make an entry in the .rela.plt section. */
7998 htab->root.srelplt->size += RELOC_SIZE (htab);
7999
8000 /* We need to ensure that all GOT entries that serve the PLT
8001 are consecutive with the special GOT slots [0] [1] and
8002 [2]. Any addtional relocations, such as
8003 R_AARCH64_TLSDESC, must be placed after the PLT related
8004 entries. We abuse the reloc_count such that during
8005 sizing we adjust reloc_count to indicate the number of
8006 PLT related reserved entries. In subsequent phases when
8007 filling in the contents of the reloc entries, PLT related
8008 entries are placed by computing their PLT index (0
8009 .. reloc_count). While other none PLT relocs are placed
8010 at the slot indicated by reloc_count and reloc_count is
8011 updated. */
8012
8013 htab->root.srelplt->reloc_count++;
8014 }
8015 else
8016 {
8017 h->plt.offset = (bfd_vma) - 1;
8018 h->needs_plt = 0;
8019 }
8020 }
8021 else
8022 {
8023 h->plt.offset = (bfd_vma) - 1;
8024 h->needs_plt = 0;
8025 }
8026
cec5225b 8027 eh = (struct elf_aarch64_link_hash_entry *) h;
a06ea964
NC
8028 eh->tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
8029
8030 if (h->got.refcount > 0)
8031 {
8032 bfd_boolean dyn;
cec5225b 8033 unsigned got_type = elf_aarch64_hash_entry (h)->got_type;
a06ea964
NC
8034
8035 h->got.offset = (bfd_vma) - 1;
8036
8037 dyn = htab->root.dynamic_sections_created;
8038
8039 /* Make sure this symbol is output as a dynamic symbol.
8040 Undefined weak syms won't yet be marked as dynamic. */
8041 if (dyn && h->dynindx == -1 && !h->forced_local)
8042 {
8043 if (!bfd_elf_link_record_dynamic_symbol (info, h))
8044 return FALSE;
8045 }
8046
8047 if (got_type == GOT_UNKNOWN)
8048 {
8049 }
8050 else if (got_type == GOT_NORMAL)
8051 {
8052 h->got.offset = htab->root.sgot->size;
8053 htab->root.sgot->size += GOT_ENTRY_SIZE;
8054 if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8055 || h->root.type != bfd_link_hash_undefweak)
0e1862bb 8056 && (bfd_link_pic (info)
a06ea964
NC
8057 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
8058 {
8059 htab->root.srelgot->size += RELOC_SIZE (htab);
8060 }
8061 }
8062 else
8063 {
8064 int indx;
8065 if (got_type & GOT_TLSDESC_GD)
8066 {
8067 eh->tlsdesc_got_jump_table_offset =
8068 (htab->root.sgotplt->size
8069 - aarch64_compute_jump_table_size (htab));
8070 htab->root.sgotplt->size += GOT_ENTRY_SIZE * 2;
8071 h->got.offset = (bfd_vma) - 2;
8072 }
8073
8074 if (got_type & GOT_TLS_GD)
8075 {
8076 h->got.offset = htab->root.sgot->size;
8077 htab->root.sgot->size += GOT_ENTRY_SIZE * 2;
8078 }
8079
8080 if (got_type & GOT_TLS_IE)
8081 {
8082 h->got.offset = htab->root.sgot->size;
8083 htab->root.sgot->size += GOT_ENTRY_SIZE;
8084 }
8085
8086 indx = h && h->dynindx != -1 ? h->dynindx : 0;
8087 if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
8088 || h->root.type != bfd_link_hash_undefweak)
0e1862bb 8089 && (bfd_link_pic (info)
a06ea964
NC
8090 || indx != 0
8091 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
8092 {
8093 if (got_type & GOT_TLSDESC_GD)
8094 {
8095 htab->root.srelplt->size += RELOC_SIZE (htab);
8096 /* Note reloc_count not incremented here! We have
8097 already adjusted reloc_count for this relocation
8098 type. */
8099
8100 /* TLSDESC PLT is now needed, but not yet determined. */
8101 htab->tlsdesc_plt = (bfd_vma) - 1;
8102 }
8103
8104 if (got_type & GOT_TLS_GD)
8105 htab->root.srelgot->size += RELOC_SIZE (htab) * 2;
8106
8107 if (got_type & GOT_TLS_IE)
8108 htab->root.srelgot->size += RELOC_SIZE (htab);
8109 }
8110 }
8111 }
8112 else
8113 {
8114 h->got.offset = (bfd_vma) - 1;
8115 }
8116
8117 if (eh->dyn_relocs == NULL)
8118 return TRUE;
8119
8120 /* In the shared -Bsymbolic case, discard space allocated for
8121 dynamic pc-relative relocs against symbols which turn out to be
8122 defined in regular objects. For the normal shared case, discard
8123 space for pc-relative relocs that have become local due to symbol
8124 visibility changes. */
8125
0e1862bb 8126 if (bfd_link_pic (info))
a06ea964
NC
8127 {
8128 /* Relocs that use pc_count are those that appear on a call
8129 insn, or certain REL relocs that can generated via assembly.
8130 We want calls to protected symbols to resolve directly to the
8131 function rather than going via the plt. If people want
8132 function pointer comparisons to work as expected then they
8133 should avoid writing weird assembly. */
8134 if (SYMBOL_CALLS_LOCAL (info, h))
8135 {
8136 struct elf_dyn_relocs **pp;
8137
8138 for (pp = &eh->dyn_relocs; (p = *pp) != NULL;)
8139 {
8140 p->count -= p->pc_count;
8141 p->pc_count = 0;
8142 if (p->count == 0)
8143 *pp = p->next;
8144 else
8145 pp = &p->next;
8146 }
8147 }
8148
8149 /* Also discard relocs on undefined weak syms with non-default
8150 visibility. */
8151 if (eh->dyn_relocs != NULL && h->root.type == bfd_link_hash_undefweak)
8152 {
8153 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8154 eh->dyn_relocs = NULL;
8155
8156 /* Make sure undefined weak symbols are output as a dynamic
8157 symbol in PIEs. */
8158 else if (h->dynindx == -1
8159 && !h->forced_local
8160 && !bfd_elf_link_record_dynamic_symbol (info, h))
8161 return FALSE;
8162 }
8163
8164 }
8165 else if (ELIMINATE_COPY_RELOCS)
8166 {
8167 /* For the non-shared case, discard space for relocs against
8168 symbols which turn out to need copy relocs or are not
8169 dynamic. */
8170
8171 if (!h->non_got_ref
8172 && ((h->def_dynamic
8173 && !h->def_regular)
8174 || (htab->root.dynamic_sections_created
8175 && (h->root.type == bfd_link_hash_undefweak
8176 || h->root.type == bfd_link_hash_undefined))))
8177 {
8178 /* Make sure this symbol is output as a dynamic symbol.
8179 Undefined weak syms won't yet be marked as dynamic. */
8180 if (h->dynindx == -1
8181 && !h->forced_local
8182 && !bfd_elf_link_record_dynamic_symbol (info, h))
8183 return FALSE;
8184
8185 /* If that succeeded, we know we'll be keeping all the
8186 relocs. */
8187 if (h->dynindx != -1)
8188 goto keep;
8189 }
8190
8191 eh->dyn_relocs = NULL;
8192
8193 keep:;
8194 }
8195
8196 /* Finally, allocate space. */
8197 for (p = eh->dyn_relocs; p != NULL; p = p->next)
8198 {
8199 asection *sreloc;
8200
8201 sreloc = elf_section_data (p->sec)->sreloc;
8202
8203 BFD_ASSERT (sreloc != NULL);
8204
8205 sreloc->size += p->count * RELOC_SIZE (htab);
8206 }
8207
8208 return TRUE;
8209}
8210
1419bbe5
WN
8211/* Allocate space in .plt, .got and associated reloc sections for
8212 ifunc dynamic relocs. */
8213
8214static bfd_boolean
8215elfNN_aarch64_allocate_ifunc_dynrelocs (struct elf_link_hash_entry *h,
8216 void *inf)
8217{
8218 struct bfd_link_info *info;
8219 struct elf_aarch64_link_hash_table *htab;
8220 struct elf_aarch64_link_hash_entry *eh;
8221
8222 /* An example of a bfd_link_hash_indirect symbol is versioned
8223 symbol. For example: __gxx_personality_v0(bfd_link_hash_indirect)
8224 -> __gxx_personality_v0(bfd_link_hash_defined)
8225
8226 There is no need to process bfd_link_hash_indirect symbols here
8227 because we will also be presented with the concrete instance of
8228 the symbol and elfNN_aarch64_copy_indirect_symbol () will have been
8229 called to copy all relevant data from the generic to the concrete
8230 symbol instance.
8231 */
8232 if (h->root.type == bfd_link_hash_indirect)
8233 return TRUE;
8234
8235 if (h->root.type == bfd_link_hash_warning)
8236 h = (struct elf_link_hash_entry *) h->root.u.i.link;
8237
8238 info = (struct bfd_link_info *) inf;
8239 htab = elf_aarch64_hash_table (info);
8240
8241 eh = (struct elf_aarch64_link_hash_entry *) h;
8242
8243 /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
8244 here if it is defined and referenced in a non-shared object. */
8245 if (h->type == STT_GNU_IFUNC
8246 && h->def_regular)
8247 return _bfd_elf_allocate_ifunc_dyn_relocs (info, h,
8248 &eh->dyn_relocs,
8249 htab->plt_entry_size,
8250 htab->plt_header_size,
8251 GOT_ENTRY_SIZE);
8252 return TRUE;
8253}
8254
8255/* Allocate space in .plt, .got and associated reloc sections for
8256 local dynamic relocs. */
8257
8258static bfd_boolean
8259elfNN_aarch64_allocate_local_dynrelocs (void **slot, void *inf)
8260{
8261 struct elf_link_hash_entry *h
8262 = (struct elf_link_hash_entry *) *slot;
8263
8264 if (h->type != STT_GNU_IFUNC
8265 || !h->def_regular
8266 || !h->ref_regular
8267 || !h->forced_local
8268 || h->root.type != bfd_link_hash_defined)
8269 abort ();
8270
8271 return elfNN_aarch64_allocate_dynrelocs (h, inf);
8272}
8273
8274/* Allocate space in .plt, .got and associated reloc sections for
8275 local ifunc dynamic relocs. */
8276
8277static bfd_boolean
8278elfNN_aarch64_allocate_local_ifunc_dynrelocs (void **slot, void *inf)
8279{
8280 struct elf_link_hash_entry *h
8281 = (struct elf_link_hash_entry *) *slot;
8282
8283 if (h->type != STT_GNU_IFUNC
8284 || !h->def_regular
8285 || !h->ref_regular
8286 || !h->forced_local
8287 || h->root.type != bfd_link_hash_defined)
8288 abort ();
8289
8290 return elfNN_aarch64_allocate_ifunc_dynrelocs (h, inf);
8291}
a06ea964 8292
c2170589
JW
8293/* Find any dynamic relocs that apply to read-only sections. */
8294
8295static bfd_boolean
8296aarch64_readonly_dynrelocs (struct elf_link_hash_entry * h, void * inf)
8297{
8298 struct elf_aarch64_link_hash_entry * eh;
8299 struct elf_dyn_relocs * p;
8300
8301 eh = (struct elf_aarch64_link_hash_entry *) h;
8302 for (p = eh->dyn_relocs; p != NULL; p = p->next)
8303 {
8304 asection *s = p->sec;
8305
8306 if (s != NULL && (s->flags & SEC_READONLY) != 0)
8307 {
8308 struct bfd_link_info *info = (struct bfd_link_info *) inf;
8309
8310 info->flags |= DF_TEXTREL;
8311
8312 /* Not an error, just cut short the traversal. */
8313 return FALSE;
8314 }
8315 }
8316 return TRUE;
8317}
8318
a06ea964
NC
8319/* This is the most important function of all . Innocuosly named
8320 though ! */
8321static bfd_boolean
cec5225b 8322elfNN_aarch64_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
a06ea964
NC
8323 struct bfd_link_info *info)
8324{
cec5225b 8325 struct elf_aarch64_link_hash_table *htab;
a06ea964
NC
8326 bfd *dynobj;
8327 asection *s;
8328 bfd_boolean relocs;
8329 bfd *ibfd;
8330
cec5225b 8331 htab = elf_aarch64_hash_table ((info));
a06ea964
NC
8332 dynobj = htab->root.dynobj;
8333
8334 BFD_ASSERT (dynobj != NULL);
8335
8336 if (htab->root.dynamic_sections_created)
8337 {
9b8b325a 8338 if (bfd_link_executable (info) && !info->nointerp)
a06ea964
NC
8339 {
8340 s = bfd_get_linker_section (dynobj, ".interp");
8341 if (s == NULL)
8342 abort ();
8343 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
8344 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
8345 }
8346 }
8347
8348 /* Set up .got offsets for local syms, and space for local dynamic
8349 relocs. */
c72f2fb2 8350 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
a06ea964
NC
8351 {
8352 struct elf_aarch64_local_symbol *locals = NULL;
8353 Elf_Internal_Shdr *symtab_hdr;
8354 asection *srel;
8355 unsigned int i;
8356
8357 if (!is_aarch64_elf (ibfd))
8358 continue;
8359
8360 for (s = ibfd->sections; s != NULL; s = s->next)
8361 {
8362 struct elf_dyn_relocs *p;
8363
8364 for (p = (struct elf_dyn_relocs *)
8365 (elf_section_data (s)->local_dynrel); p != NULL; p = p->next)
8366 {
8367 if (!bfd_is_abs_section (p->sec)
8368 && bfd_is_abs_section (p->sec->output_section))
8369 {
8370 /* Input section has been discarded, either because
8371 it is a copy of a linkonce section or due to
8372 linker script /DISCARD/, so we'll be discarding
8373 the relocs too. */
8374 }
8375 else if (p->count != 0)
8376 {
8377 srel = elf_section_data (p->sec)->sreloc;
8378 srel->size += p->count * RELOC_SIZE (htab);
8379 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
8380 info->flags |= DF_TEXTREL;
8381 }
8382 }
8383 }
8384
cec5225b 8385 locals = elf_aarch64_locals (ibfd);
a06ea964
NC
8386 if (!locals)
8387 continue;
8388
8389 symtab_hdr = &elf_symtab_hdr (ibfd);
8390 srel = htab->root.srelgot;
8391 for (i = 0; i < symtab_hdr->sh_info; i++)
8392 {
8393 locals[i].got_offset = (bfd_vma) - 1;
8394 locals[i].tlsdesc_got_jump_table_offset = (bfd_vma) - 1;
8395 if (locals[i].got_refcount > 0)
8396 {
8397 unsigned got_type = locals[i].got_type;
8398 if (got_type & GOT_TLSDESC_GD)
8399 {
8400 locals[i].tlsdesc_got_jump_table_offset =
8401 (htab->root.sgotplt->size
8402 - aarch64_compute_jump_table_size (htab));
8403 htab->root.sgotplt->size += GOT_ENTRY_SIZE * 2;
8404 locals[i].got_offset = (bfd_vma) - 2;
8405 }
8406
8407 if (got_type & GOT_TLS_GD)
8408 {
8409 locals[i].got_offset = htab->root.sgot->size;
8410 htab->root.sgot->size += GOT_ENTRY_SIZE * 2;
8411 }
8412
b53b1bed
JW
8413 if (got_type & GOT_TLS_IE
8414 || got_type & GOT_NORMAL)
a06ea964
NC
8415 {
8416 locals[i].got_offset = htab->root.sgot->size;
8417 htab->root.sgot->size += GOT_ENTRY_SIZE;
8418 }
8419
8420 if (got_type == GOT_UNKNOWN)
8421 {
8422 }
8423
0e1862bb 8424 if (bfd_link_pic (info))
a06ea964
NC
8425 {
8426 if (got_type & GOT_TLSDESC_GD)
8427 {
8428 htab->root.srelplt->size += RELOC_SIZE (htab);
8429 /* Note RELOC_COUNT not incremented here! */
8430 htab->tlsdesc_plt = (bfd_vma) - 1;
8431 }
8432
8433 if (got_type & GOT_TLS_GD)
8434 htab->root.srelgot->size += RELOC_SIZE (htab) * 2;
8435
b53b1bed
JW
8436 if (got_type & GOT_TLS_IE
8437 || got_type & GOT_NORMAL)
a06ea964
NC
8438 htab->root.srelgot->size += RELOC_SIZE (htab);
8439 }
8440 }
8441 else
8442 {
8443 locals[i].got_refcount = (bfd_vma) - 1;
8444 }
8445 }
8446 }
8447
8448
8449 /* Allocate global sym .plt and .got entries, and space for global
8450 sym dynamic relocs. */
cec5225b 8451 elf_link_hash_traverse (&htab->root, elfNN_aarch64_allocate_dynrelocs,
a06ea964
NC
8452 info);
8453
1419bbe5
WN
8454 /* Allocate global ifunc sym .plt and .got entries, and space for global
8455 ifunc sym dynamic relocs. */
8456 elf_link_hash_traverse (&htab->root, elfNN_aarch64_allocate_ifunc_dynrelocs,
8457 info);
8458
8459 /* Allocate .plt and .got entries, and space for local symbols. */
8460 htab_traverse (htab->loc_hash_table,
8461 elfNN_aarch64_allocate_local_dynrelocs,
8462 info);
8463
8464 /* Allocate .plt and .got entries, and space for local ifunc symbols. */
8465 htab_traverse (htab->loc_hash_table,
8466 elfNN_aarch64_allocate_local_ifunc_dynrelocs,
8467 info);
a06ea964
NC
8468
8469 /* For every jump slot reserved in the sgotplt, reloc_count is
8470 incremented. However, when we reserve space for TLS descriptors,
8471 it's not incremented, so in order to compute the space reserved
8472 for them, it suffices to multiply the reloc count by the jump
8473 slot size. */
8474
8475 if (htab->root.srelplt)
8847944f 8476 htab->sgotplt_jump_table_size = aarch64_compute_jump_table_size (htab);
a06ea964
NC
8477
8478 if (htab->tlsdesc_plt)
8479 {
8480 if (htab->root.splt->size == 0)
8481 htab->root.splt->size += PLT_ENTRY_SIZE;
8482
8483 htab->tlsdesc_plt = htab->root.splt->size;
8484 htab->root.splt->size += PLT_TLSDESC_ENTRY_SIZE;
8485
8486 /* If we're not using lazy TLS relocations, don't generate the
8487 GOT entry required. */
8488 if (!(info->flags & DF_BIND_NOW))
8489 {
8490 htab->dt_tlsdesc_got = htab->root.sgot->size;
8491 htab->root.sgot->size += GOT_ENTRY_SIZE;
8492 }
8493 }
8494
68fcca92 8495 /* Init mapping symbols information to use later to distingush between
4106101c
MS
8496 code and data while scanning for errata. */
8497 if (htab->fix_erratum_835769 || htab->fix_erratum_843419)
68fcca92
JW
8498 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
8499 {
8500 if (!is_aarch64_elf (ibfd))
8501 continue;
8502 bfd_elfNN_aarch64_init_maps (ibfd);
8503 }
8504
a06ea964
NC
8505 /* We now have determined the sizes of the various dynamic sections.
8506 Allocate memory for them. */
8507 relocs = FALSE;
8508 for (s = dynobj->sections; s != NULL; s = s->next)
8509 {
8510 if ((s->flags & SEC_LINKER_CREATED) == 0)
8511 continue;
8512
8513 if (s == htab->root.splt
8514 || s == htab->root.sgot
8515 || s == htab->root.sgotplt
8516 || s == htab->root.iplt
8517 || s == htab->root.igotplt || s == htab->sdynbss)
8518 {
8519 /* Strip this section if we don't need it; see the
8520 comment below. */
8521 }
8522 else if (CONST_STRNEQ (bfd_get_section_name (dynobj, s), ".rela"))
8523 {
8524 if (s->size != 0 && s != htab->root.srelplt)
8525 relocs = TRUE;
8526
8527 /* We use the reloc_count field as a counter if we need
8528 to copy relocs into the output file. */
8529 if (s != htab->root.srelplt)
8530 s->reloc_count = 0;
8531 }
8532 else
8533 {
8534 /* It's not one of our sections, so don't allocate space. */
8535 continue;
8536 }
8537
8538 if (s->size == 0)
8539 {
8540 /* If we don't need this section, strip it from the
8541 output file. This is mostly to handle .rela.bss and
8542 .rela.plt. We must create both sections in
8543 create_dynamic_sections, because they must be created
8544 before the linker maps input sections to output
8545 sections. The linker does that before
8546 adjust_dynamic_symbol is called, and it is that
8547 function which decides whether anything needs to go
8548 into these sections. */
8549
8550 s->flags |= SEC_EXCLUDE;
8551 continue;
8552 }
8553
8554 if ((s->flags & SEC_HAS_CONTENTS) == 0)
8555 continue;
8556
8557 /* Allocate memory for the section contents. We use bfd_zalloc
8558 here in case unused entries are not reclaimed before the
8559 section's contents are written out. This should not happen,
8560 but this way if it does, we get a R_AARCH64_NONE reloc instead
8561 of garbage. */
8562 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
8563 if (s->contents == NULL)
8564 return FALSE;
8565 }
8566
8567 if (htab->root.dynamic_sections_created)
8568 {
8569 /* Add some entries to the .dynamic section. We fill in the
cec5225b 8570 values later, in elfNN_aarch64_finish_dynamic_sections, but we
a06ea964
NC
8571 must add the entries now so that we get the correct size for
8572 the .dynamic section. The DT_DEBUG entry is filled in by the
8573 dynamic linker and used by the debugger. */
8574#define add_dynamic_entry(TAG, VAL) \
8575 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
8576
0e1862bb 8577 if (bfd_link_executable (info))
a06ea964
NC
8578 {
8579 if (!add_dynamic_entry (DT_DEBUG, 0))
8580 return FALSE;
8581 }
8582
8583 if (htab->root.splt->size != 0)
8584 {
8585 if (!add_dynamic_entry (DT_PLTGOT, 0)
8586 || !add_dynamic_entry (DT_PLTRELSZ, 0)
8587 || !add_dynamic_entry (DT_PLTREL, DT_RELA)
8588 || !add_dynamic_entry (DT_JMPREL, 0))
8589 return FALSE;
8590
8591 if (htab->tlsdesc_plt
8592 && (!add_dynamic_entry (DT_TLSDESC_PLT, 0)
8593 || !add_dynamic_entry (DT_TLSDESC_GOT, 0)))
8594 return FALSE;
8595 }
8596
8597 if (relocs)
8598 {
8599 if (!add_dynamic_entry (DT_RELA, 0)
8600 || !add_dynamic_entry (DT_RELASZ, 0)
8601 || !add_dynamic_entry (DT_RELAENT, RELOC_SIZE (htab)))
8602 return FALSE;
8603
8604 /* If any dynamic relocs apply to a read-only section,
8605 then we need a DT_TEXTREL entry. */
c2170589
JW
8606 if ((info->flags & DF_TEXTREL) == 0)
8607 elf_link_hash_traverse (& htab->root, aarch64_readonly_dynrelocs,
8608 info);
8609
a06ea964
NC
8610 if ((info->flags & DF_TEXTREL) != 0)
8611 {
8612 if (!add_dynamic_entry (DT_TEXTREL, 0))
8613 return FALSE;
8614 }
8615 }
8616 }
8617#undef add_dynamic_entry
8618
8619 return TRUE;
a06ea964
NC
8620}
8621
8622static inline void
caed7120
YZ
8623elf_aarch64_update_plt_entry (bfd *output_bfd,
8624 bfd_reloc_code_real_type r_type,
8625 bfd_byte *plt_entry, bfd_vma value)
a06ea964 8626{
caed7120
YZ
8627 reloc_howto_type *howto = elfNN_aarch64_howto_from_bfd_reloc (r_type);
8628
8629 _bfd_aarch64_elf_put_addend (output_bfd, plt_entry, r_type, howto, value);
a06ea964
NC
8630}
8631
8632static void
cec5225b
YZ
8633elfNN_aarch64_create_small_pltn_entry (struct elf_link_hash_entry *h,
8634 struct elf_aarch64_link_hash_table
1419bbe5
WN
8635 *htab, bfd *output_bfd,
8636 struct bfd_link_info *info)
a06ea964
NC
8637{
8638 bfd_byte *plt_entry;
8639 bfd_vma plt_index;
8640 bfd_vma got_offset;
8641 bfd_vma gotplt_entry_address;
8642 bfd_vma plt_entry_address;
8643 Elf_Internal_Rela rela;
8644 bfd_byte *loc;
1419bbe5
WN
8645 asection *plt, *gotplt, *relplt;
8646
8647 /* When building a static executable, use .iplt, .igot.plt and
8648 .rela.iplt sections for STT_GNU_IFUNC symbols. */
8649 if (htab->root.splt != NULL)
8650 {
8651 plt = htab->root.splt;
8652 gotplt = htab->root.sgotplt;
8653 relplt = htab->root.srelplt;
8654 }
8655 else
8656 {
8657 plt = htab->root.iplt;
8658 gotplt = htab->root.igotplt;
8659 relplt = htab->root.irelplt;
8660 }
8661
8662 /* Get the index in the procedure linkage table which
8663 corresponds to this symbol. This is the index of this symbol
8664 in all the symbols for which we are making plt entries. The
8665 first entry in the procedure linkage table is reserved.
a06ea964 8666
1419bbe5
WN
8667 Get the offset into the .got table of the entry that
8668 corresponds to this function. Each .got entry is GOT_ENTRY_SIZE
8669 bytes. The first three are reserved for the dynamic linker.
692e2b8b 8670
1419bbe5
WN
8671 For static executables, we don't reserve anything. */
8672
8673 if (plt == htab->root.splt)
8674 {
8675 plt_index = (h->plt.offset - htab->plt_header_size) / htab->plt_entry_size;
8676 got_offset = (plt_index + 3) * GOT_ENTRY_SIZE;
8677 }
8678 else
8679 {
8680 plt_index = h->plt.offset / htab->plt_entry_size;
8681 got_offset = plt_index * GOT_ENTRY_SIZE;
8682 }
8683
8684 plt_entry = plt->contents + h->plt.offset;
8685 plt_entry_address = plt->output_section->vma
f44a1f8e 8686 + plt->output_offset + h->plt.offset;
1419bbe5
WN
8687 gotplt_entry_address = gotplt->output_section->vma +
8688 gotplt->output_offset + got_offset;
a06ea964
NC
8689
8690 /* Copy in the boiler-plate for the PLTn entry. */
cec5225b 8691 memcpy (plt_entry, elfNN_aarch64_small_plt_entry, PLT_SMALL_ENTRY_SIZE);
a06ea964
NC
8692
8693 /* Fill in the top 21 bits for this: ADRP x16, PLT_GOT + n * 8.
8694 ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
caed7120
YZ
8695 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADR_HI21_PCREL,
8696 plt_entry,
8697 PG (gotplt_entry_address) -
8698 PG (plt_entry_address));
a06ea964
NC
8699
8700 /* Fill in the lo12 bits for the load from the pltgot. */
caed7120
YZ
8701 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_LDSTNN_LO12,
8702 plt_entry + 4,
8703 PG_OFFSET (gotplt_entry_address));
a06ea964 8704
9aff4b7a 8705 /* Fill in the lo12 bits for the add from the pltgot entry. */
caed7120
YZ
8706 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADD_LO12,
8707 plt_entry + 8,
8708 PG_OFFSET (gotplt_entry_address));
a06ea964
NC
8709
8710 /* All the GOTPLT Entries are essentially initialized to PLT0. */
cec5225b 8711 bfd_put_NN (output_bfd,
1419bbe5
WN
8712 plt->output_section->vma + plt->output_offset,
8713 gotplt->contents + got_offset);
a06ea964 8714
a06ea964 8715 rela.r_offset = gotplt_entry_address;
1419bbe5
WN
8716
8717 if (h->dynindx == -1
0e1862bb 8718 || ((bfd_link_executable (info)
1419bbe5
WN
8719 || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
8720 && h->def_regular
8721 && h->type == STT_GNU_IFUNC))
8722 {
8723 /* If an STT_GNU_IFUNC symbol is locally defined, generate
8724 R_AARCH64_IRELATIVE instead of R_AARCH64_JUMP_SLOT. */
8725 rela.r_info = ELFNN_R_INFO (0, AARCH64_R (IRELATIVE));
8726 rela.r_addend = (h->root.u.def.value
8727 + h->root.u.def.section->output_section->vma
8728 + h->root.u.def.section->output_offset);
8729 }
8730 else
8731 {
8732 /* Fill in the entry in the .rela.plt section. */
8733 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (JUMP_SLOT));
8734 rela.r_addend = 0;
8735 }
a06ea964
NC
8736
8737 /* Compute the relocation entry to used based on PLT index and do
8738 not adjust reloc_count. The reloc_count has already been adjusted
8739 to account for this entry. */
1419bbe5 8740 loc = relplt->contents + plt_index * RELOC_SIZE (htab);
cec5225b 8741 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964
NC
8742}
8743
8744/* Size sections even though they're not dynamic. We use it to setup
8745 _TLS_MODULE_BASE_, if needed. */
8746
8747static bfd_boolean
cec5225b 8748elfNN_aarch64_always_size_sections (bfd *output_bfd,
a06ea964
NC
8749 struct bfd_link_info *info)
8750{
8751 asection *tls_sec;
8752
0e1862bb 8753 if (bfd_link_relocatable (info))
a06ea964
NC
8754 return TRUE;
8755
8756 tls_sec = elf_hash_table (info)->tls_sec;
8757
8758 if (tls_sec)
8759 {
8760 struct elf_link_hash_entry *tlsbase;
8761
8762 tlsbase = elf_link_hash_lookup (elf_hash_table (info),
8763 "_TLS_MODULE_BASE_", TRUE, TRUE, FALSE);
8764
8765 if (tlsbase)
8766 {
8767 struct bfd_link_hash_entry *h = NULL;
8768 const struct elf_backend_data *bed =
8769 get_elf_backend_data (output_bfd);
8770
8771 if (!(_bfd_generic_link_add_one_symbol
8772 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
8773 tls_sec, 0, NULL, FALSE, bed->collect, &h)))
8774 return FALSE;
8775
8776 tlsbase->type = STT_TLS;
8777 tlsbase = (struct elf_link_hash_entry *) h;
8778 tlsbase->def_regular = 1;
8779 tlsbase->other = STV_HIDDEN;
8780 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
8781 }
8782 }
8783
8784 return TRUE;
8785}
8786
8787/* Finish up dynamic symbol handling. We set the contents of various
8788 dynamic sections here. */
8789static bfd_boolean
cec5225b 8790elfNN_aarch64_finish_dynamic_symbol (bfd *output_bfd,
a06ea964
NC
8791 struct bfd_link_info *info,
8792 struct elf_link_hash_entry *h,
8793 Elf_Internal_Sym *sym)
8794{
cec5225b
YZ
8795 struct elf_aarch64_link_hash_table *htab;
8796 htab = elf_aarch64_hash_table (info);
a06ea964
NC
8797
8798 if (h->plt.offset != (bfd_vma) - 1)
8799 {
1419bbe5
WN
8800 asection *plt, *gotplt, *relplt;
8801
a06ea964
NC
8802 /* This symbol has an entry in the procedure linkage table. Set
8803 it up. */
8804
1419bbe5
WN
8805 /* When building a static executable, use .iplt, .igot.plt and
8806 .rela.iplt sections for STT_GNU_IFUNC symbols. */
8807 if (htab->root.splt != NULL)
8808 {
8809 plt = htab->root.splt;
8810 gotplt = htab->root.sgotplt;
8811 relplt = htab->root.srelplt;
8812 }
8813 else
8814 {
8815 plt = htab->root.iplt;
8816 gotplt = htab->root.igotplt;
8817 relplt = htab->root.irelplt;
8818 }
8819
8820 /* This symbol has an entry in the procedure linkage table. Set
8821 it up. */
8822 if ((h->dynindx == -1
0e1862bb 8823 && !((h->forced_local || bfd_link_executable (info))
1419bbe5
WN
8824 && h->def_regular
8825 && h->type == STT_GNU_IFUNC))
8826 || plt == NULL
8827 || gotplt == NULL
8828 || relplt == NULL)
a06ea964
NC
8829 abort ();
8830
1419bbe5 8831 elfNN_aarch64_create_small_pltn_entry (h, htab, output_bfd, info);
a06ea964
NC
8832 if (!h->def_regular)
8833 {
8834 /* Mark the symbol as undefined, rather than as defined in
46b87d49 8835 the .plt section. */
a06ea964 8836 sym->st_shndx = SHN_UNDEF;
46b87d49
WN
8837 /* If the symbol is weak we need to clear the value.
8838 Otherwise, the PLT entry would provide a definition for
8839 the symbol even if the symbol wasn't defined anywhere,
8840 and so the symbol would never be NULL. Leave the value if
8841 there were any relocations where pointer equality matters
8842 (this is a clue for the dynamic linker, to make function
8843 pointer comparisons work between an application and shared
8844 library). */
8845 if (!h->ref_regular_nonweak || !h->pointer_equality_needed)
8846 sym->st_value = 0;
a06ea964
NC
8847 }
8848 }
8849
8850 if (h->got.offset != (bfd_vma) - 1
cec5225b 8851 && elf_aarch64_hash_entry (h)->got_type == GOT_NORMAL)
a06ea964
NC
8852 {
8853 Elf_Internal_Rela rela;
8854 bfd_byte *loc;
8855
8856 /* This symbol has an entry in the global offset table. Set it
8857 up. */
8858 if (htab->root.sgot == NULL || htab->root.srelgot == NULL)
8859 abort ();
8860
8861 rela.r_offset = (htab->root.sgot->output_section->vma
8862 + htab->root.sgot->output_offset
8863 + (h->got.offset & ~(bfd_vma) 1));
8864
49206388
WN
8865 if (h->def_regular
8866 && h->type == STT_GNU_IFUNC)
8867 {
0e1862bb 8868 if (bfd_link_pic (info))
49206388
WN
8869 {
8870 /* Generate R_AARCH64_GLOB_DAT. */
8871 goto do_glob_dat;
8872 }
8873 else
8874 {
8875 asection *plt;
8876
8877 if (!h->pointer_equality_needed)
8878 abort ();
8879
8880 /* For non-shared object, we can't use .got.plt, which
8881 contains the real function address if we need pointer
8882 equality. We load the GOT entry with the PLT entry. */
8883 plt = htab->root.splt ? htab->root.splt : htab->root.iplt;
8884 bfd_put_NN (output_bfd, (plt->output_section->vma
8885 + plt->output_offset
8886 + h->plt.offset),
8887 htab->root.sgot->contents
8888 + (h->got.offset & ~(bfd_vma) 1));
8889 return TRUE;
8890 }
8891 }
0e1862bb 8892 else if (bfd_link_pic (info) && SYMBOL_REFERENCES_LOCAL (info, h))
a06ea964
NC
8893 {
8894 if (!h->def_regular)
8895 return FALSE;
8896
8897 BFD_ASSERT ((h->got.offset & 1) != 0);
a6bb11b2 8898 rela.r_info = ELFNN_R_INFO (0, AARCH64_R (RELATIVE));
a06ea964
NC
8899 rela.r_addend = (h->root.u.def.value
8900 + h->root.u.def.section->output_section->vma
8901 + h->root.u.def.section->output_offset);
8902 }
8903 else
8904 {
49206388 8905do_glob_dat:
a06ea964 8906 BFD_ASSERT ((h->got.offset & 1) == 0);
cec5225b 8907 bfd_put_NN (output_bfd, (bfd_vma) 0,
a06ea964 8908 htab->root.sgot->contents + h->got.offset);
a6bb11b2 8909 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (GLOB_DAT));
a06ea964
NC
8910 rela.r_addend = 0;
8911 }
8912
8913 loc = htab->root.srelgot->contents;
8914 loc += htab->root.srelgot->reloc_count++ * RELOC_SIZE (htab);
cec5225b 8915 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964
NC
8916 }
8917
8918 if (h->needs_copy)
8919 {
8920 Elf_Internal_Rela rela;
8921 bfd_byte *loc;
8922
8923 /* This symbol needs a copy reloc. Set it up. */
8924
8925 if (h->dynindx == -1
8926 || (h->root.type != bfd_link_hash_defined
8927 && h->root.type != bfd_link_hash_defweak)
8928 || htab->srelbss == NULL)
8929 abort ();
8930
8931 rela.r_offset = (h->root.u.def.value
8932 + h->root.u.def.section->output_section->vma
8933 + h->root.u.def.section->output_offset);
a6bb11b2 8934 rela.r_info = ELFNN_R_INFO (h->dynindx, AARCH64_R (COPY));
a06ea964
NC
8935 rela.r_addend = 0;
8936 loc = htab->srelbss->contents;
8937 loc += htab->srelbss->reloc_count++ * RELOC_SIZE (htab);
cec5225b 8938 bfd_elfNN_swap_reloca_out (output_bfd, &rela, loc);
a06ea964
NC
8939 }
8940
8941 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. SYM may
8942 be NULL for local symbols. */
8943 if (sym != NULL
9637f6ef 8944 && (h == elf_hash_table (info)->hdynamic
a06ea964
NC
8945 || h == elf_hash_table (info)->hgot))
8946 sym->st_shndx = SHN_ABS;
8947
8948 return TRUE;
8949}
8950
1419bbe5
WN
8951/* Finish up local dynamic symbol handling. We set the contents of
8952 various dynamic sections here. */
8953
8954static bfd_boolean
8955elfNN_aarch64_finish_local_dynamic_symbol (void **slot, void *inf)
8956{
8957 struct elf_link_hash_entry *h
8958 = (struct elf_link_hash_entry *) *slot;
8959 struct bfd_link_info *info
8960 = (struct bfd_link_info *) inf;
8961
8962 return elfNN_aarch64_finish_dynamic_symbol (info->output_bfd,
8963 info, h, NULL);
8964}
8965
a06ea964 8966static void
cec5225b
YZ
8967elfNN_aarch64_init_small_plt0_entry (bfd *output_bfd ATTRIBUTE_UNUSED,
8968 struct elf_aarch64_link_hash_table
a06ea964
NC
8969 *htab)
8970{
8971 /* Fill in PLT0. Fixme:RR Note this doesn't distinguish between
8972 small and large plts and at the minute just generates
8973 the small PLT. */
8974
cec5225b 8975 /* PLT0 of the small PLT looks like this in ELF64 -
a06ea964
NC
8976 stp x16, x30, [sp, #-16]! // Save the reloc and lr on stack.
8977 adrp x16, PLT_GOT + 16 // Get the page base of the GOTPLT
8978 ldr x17, [x16, #:lo12:PLT_GOT+16] // Load the address of the
8979 // symbol resolver
8980 add x16, x16, #:lo12:PLT_GOT+16 // Load the lo12 bits of the
8981 // GOTPLT entry for this.
8982 br x17
cec5225b
YZ
8983 PLT0 will be slightly different in ELF32 due to different got entry
8984 size.
a06ea964 8985 */
caed7120 8986 bfd_vma plt_got_2nd_ent; /* Address of GOT[2]. */
a06ea964
NC
8987 bfd_vma plt_base;
8988
8989
cec5225b 8990 memcpy (htab->root.splt->contents, elfNN_aarch64_small_plt0_entry,
a06ea964
NC
8991 PLT_ENTRY_SIZE);
8992 elf_section_data (htab->root.splt->output_section)->this_hdr.sh_entsize =
8993 PLT_ENTRY_SIZE;
8994
caed7120
YZ
8995 plt_got_2nd_ent = (htab->root.sgotplt->output_section->vma
8996 + htab->root.sgotplt->output_offset
8997 + GOT_ENTRY_SIZE * 2);
a06ea964
NC
8998
8999 plt_base = htab->root.splt->output_section->vma +
f44a1f8e 9000 htab->root.splt->output_offset;
a06ea964
NC
9001
9002 /* Fill in the top 21 bits for this: ADRP x16, PLT_GOT + n * 8.
9003 ADRP: ((PG(S+A)-PG(P)) >> 12) & 0x1fffff */
caed7120
YZ
9004 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9005 htab->root.splt->contents + 4,
9006 PG (plt_got_2nd_ent) - PG (plt_base + 4));
a06ea964 9007
caed7120
YZ
9008 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_LDSTNN_LO12,
9009 htab->root.splt->contents + 8,
9010 PG_OFFSET (plt_got_2nd_ent));
a06ea964 9011
caed7120
YZ
9012 elf_aarch64_update_plt_entry (output_bfd, BFD_RELOC_AARCH64_ADD_LO12,
9013 htab->root.splt->contents + 12,
9014 PG_OFFSET (plt_got_2nd_ent));
a06ea964
NC
9015}
9016
9017static bfd_boolean
cec5225b 9018elfNN_aarch64_finish_dynamic_sections (bfd *output_bfd,
a06ea964
NC
9019 struct bfd_link_info *info)
9020{
cec5225b 9021 struct elf_aarch64_link_hash_table *htab;
a06ea964
NC
9022 bfd *dynobj;
9023 asection *sdyn;
9024
cec5225b 9025 htab = elf_aarch64_hash_table (info);
a06ea964
NC
9026 dynobj = htab->root.dynobj;
9027 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
9028
9029 if (htab->root.dynamic_sections_created)
9030 {
cec5225b 9031 ElfNN_External_Dyn *dyncon, *dynconend;
a06ea964
NC
9032
9033 if (sdyn == NULL || htab->root.sgot == NULL)
9034 abort ();
9035
cec5225b
YZ
9036 dyncon = (ElfNN_External_Dyn *) sdyn->contents;
9037 dynconend = (ElfNN_External_Dyn *) (sdyn->contents + sdyn->size);
a06ea964
NC
9038 for (; dyncon < dynconend; dyncon++)
9039 {
9040 Elf_Internal_Dyn dyn;
9041 asection *s;
9042
cec5225b 9043 bfd_elfNN_swap_dyn_in (dynobj, dyncon, &dyn);
a06ea964
NC
9044
9045 switch (dyn.d_tag)
9046 {
9047 default:
9048 continue;
9049
9050 case DT_PLTGOT:
9051 s = htab->root.sgotplt;
9052 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
9053 break;
9054
9055 case DT_JMPREL:
9056 dyn.d_un.d_ptr = htab->root.srelplt->output_section->vma;
9057 break;
9058
9059 case DT_PLTRELSZ:
c955de36 9060 s = htab->root.srelplt;
a06ea964
NC
9061 dyn.d_un.d_val = s->size;
9062 break;
9063
9064 case DT_RELASZ:
9065 /* The procedure linkage table relocs (DT_JMPREL) should
9066 not be included in the overall relocs (DT_RELA).
9067 Therefore, we override the DT_RELASZ entry here to
9068 make it not include the JMPREL relocs. Since the
9069 linker script arranges for .rela.plt to follow all
9070 other relocation sections, we don't have to worry
9071 about changing the DT_RELA entry. */
9072 if (htab->root.srelplt != NULL)
9073 {
c955de36 9074 s = htab->root.srelplt;
a06ea964
NC
9075 dyn.d_un.d_val -= s->size;
9076 }
9077 break;
9078
9079 case DT_TLSDESC_PLT:
9080 s = htab->root.splt;
9081 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
9082 + htab->tlsdesc_plt;
9083 break;
9084
9085 case DT_TLSDESC_GOT:
9086 s = htab->root.sgot;
9087 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset
9088 + htab->dt_tlsdesc_got;
9089 break;
9090 }
9091
cec5225b 9092 bfd_elfNN_swap_dyn_out (output_bfd, &dyn, dyncon);
a06ea964
NC
9093 }
9094
9095 }
9096
9097 /* Fill in the special first entry in the procedure linkage table. */
9098 if (htab->root.splt && htab->root.splt->size > 0)
9099 {
cec5225b 9100 elfNN_aarch64_init_small_plt0_entry (output_bfd, htab);
a06ea964
NC
9101
9102 elf_section_data (htab->root.splt->output_section)->
9103 this_hdr.sh_entsize = htab->plt_entry_size;
9104
9105
9106 if (htab->tlsdesc_plt)
9107 {
cec5225b 9108 bfd_put_NN (output_bfd, (bfd_vma) 0,
a06ea964
NC
9109 htab->root.sgot->contents + htab->dt_tlsdesc_got);
9110
9111 memcpy (htab->root.splt->contents + htab->tlsdesc_plt,
cec5225b
YZ
9112 elfNN_aarch64_tlsdesc_small_plt_entry,
9113 sizeof (elfNN_aarch64_tlsdesc_small_plt_entry));
a06ea964
NC
9114
9115 {
9116 bfd_vma adrp1_addr =
9117 htab->root.splt->output_section->vma
9118 + htab->root.splt->output_offset + htab->tlsdesc_plt + 4;
9119
caed7120 9120 bfd_vma adrp2_addr = adrp1_addr + 4;
a06ea964
NC
9121
9122 bfd_vma got_addr =
9123 htab->root.sgot->output_section->vma
9124 + htab->root.sgot->output_offset;
9125
9126 bfd_vma pltgot_addr =
9127 htab->root.sgotplt->output_section->vma
9128 + htab->root.sgotplt->output_offset;
9129
9130 bfd_vma dt_tlsdesc_got = got_addr + htab->dt_tlsdesc_got;
caed7120
YZ
9131
9132 bfd_byte *plt_entry =
9133 htab->root.splt->contents + htab->tlsdesc_plt;
a06ea964
NC
9134
9135 /* adrp x2, DT_TLSDESC_GOT */
caed7120
YZ
9136 elf_aarch64_update_plt_entry (output_bfd,
9137 BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9138 plt_entry + 4,
9139 (PG (dt_tlsdesc_got)
9140 - PG (adrp1_addr)));
a06ea964
NC
9141
9142 /* adrp x3, 0 */
caed7120
YZ
9143 elf_aarch64_update_plt_entry (output_bfd,
9144 BFD_RELOC_AARCH64_ADR_HI21_PCREL,
9145 plt_entry + 8,
9146 (PG (pltgot_addr)
9147 - PG (adrp2_addr)));
a06ea964
NC
9148
9149 /* ldr x2, [x2, #0] */
caed7120
YZ
9150 elf_aarch64_update_plt_entry (output_bfd,
9151 BFD_RELOC_AARCH64_LDSTNN_LO12,
9152 plt_entry + 12,
9153 PG_OFFSET (dt_tlsdesc_got));
a06ea964
NC
9154
9155 /* add x3, x3, 0 */
caed7120
YZ
9156 elf_aarch64_update_plt_entry (output_bfd,
9157 BFD_RELOC_AARCH64_ADD_LO12,
9158 plt_entry + 16,
9159 PG_OFFSET (pltgot_addr));
a06ea964
NC
9160 }
9161 }
9162 }
9163
9164 if (htab->root.sgotplt)
9165 {
9166 if (bfd_is_abs_section (htab->root.sgotplt->output_section))
9167 {
9168 (*_bfd_error_handler)
9169 (_("discarded output section: `%A'"), htab->root.sgotplt);
9170 return FALSE;
9171 }
9172
9173 /* Fill in the first three entries in the global offset table. */
9174 if (htab->root.sgotplt->size > 0)
9175 {
8db339a6
MS
9176 bfd_put_NN (output_bfd, (bfd_vma) 0, htab->root.sgotplt->contents);
9177
a06ea964 9178 /* Write GOT[1] and GOT[2], needed for the dynamic linker. */
cec5225b 9179 bfd_put_NN (output_bfd,
a06ea964
NC
9180 (bfd_vma) 0,
9181 htab->root.sgotplt->contents + GOT_ENTRY_SIZE);
cec5225b 9182 bfd_put_NN (output_bfd,
a06ea964
NC
9183 (bfd_vma) 0,
9184 htab->root.sgotplt->contents + GOT_ENTRY_SIZE * 2);
9185 }
9186
8db339a6
MS
9187 if (htab->root.sgot)
9188 {
9189 if (htab->root.sgot->size > 0)
9190 {
9191 bfd_vma addr =
9192 sdyn ? sdyn->output_section->vma + sdyn->output_offset : 0;
9193 bfd_put_NN (output_bfd, addr, htab->root.sgot->contents);
9194 }
9195 }
9196
a06ea964
NC
9197 elf_section_data (htab->root.sgotplt->output_section)->
9198 this_hdr.sh_entsize = GOT_ENTRY_SIZE;
9199 }
9200
9201 if (htab->root.sgot && htab->root.sgot->size > 0)
9202 elf_section_data (htab->root.sgot->output_section)->this_hdr.sh_entsize
9203 = GOT_ENTRY_SIZE;
9204
1419bbe5
WN
9205 /* Fill PLT and GOT entries for local STT_GNU_IFUNC symbols. */
9206 htab_traverse (htab->loc_hash_table,
9207 elfNN_aarch64_finish_local_dynamic_symbol,
9208 info);
9209
a06ea964
NC
9210 return TRUE;
9211}
9212
9213/* Return address for Ith PLT stub in section PLT, for relocation REL
9214 or (bfd_vma) -1 if it should not be included. */
9215
9216static bfd_vma
cec5225b 9217elfNN_aarch64_plt_sym_val (bfd_vma i, const asection *plt,
a06ea964
NC
9218 const arelent *rel ATTRIBUTE_UNUSED)
9219{
9220 return plt->vma + PLT_ENTRY_SIZE + i * PLT_SMALL_ENTRY_SIZE;
9221}
9222
9223
9224/* We use this so we can override certain functions
9225 (though currently we don't). */
9226
cec5225b 9227const struct elf_size_info elfNN_aarch64_size_info =
a06ea964 9228{
cec5225b
YZ
9229 sizeof (ElfNN_External_Ehdr),
9230 sizeof (ElfNN_External_Phdr),
9231 sizeof (ElfNN_External_Shdr),
9232 sizeof (ElfNN_External_Rel),
9233 sizeof (ElfNN_External_Rela),
9234 sizeof (ElfNN_External_Sym),
9235 sizeof (ElfNN_External_Dyn),
a06ea964
NC
9236 sizeof (Elf_External_Note),
9237 4, /* Hash table entry size. */
9238 1, /* Internal relocs per external relocs. */
cec5225b
YZ
9239 ARCH_SIZE, /* Arch size. */
9240 LOG_FILE_ALIGN, /* Log_file_align. */
9241 ELFCLASSNN, EV_CURRENT,
9242 bfd_elfNN_write_out_phdrs,
9243 bfd_elfNN_write_shdrs_and_ehdr,
9244 bfd_elfNN_checksum_contents,
9245 bfd_elfNN_write_relocs,
9246 bfd_elfNN_swap_symbol_in,
9247 bfd_elfNN_swap_symbol_out,
9248 bfd_elfNN_slurp_reloc_table,
9249 bfd_elfNN_slurp_symbol_table,
9250 bfd_elfNN_swap_dyn_in,
9251 bfd_elfNN_swap_dyn_out,
9252 bfd_elfNN_swap_reloc_in,
9253 bfd_elfNN_swap_reloc_out,
9254 bfd_elfNN_swap_reloca_in,
9255 bfd_elfNN_swap_reloca_out
a06ea964
NC
9256};
9257
9258#define ELF_ARCH bfd_arch_aarch64
9259#define ELF_MACHINE_CODE EM_AARCH64
9260#define ELF_MAXPAGESIZE 0x10000
9261#define ELF_MINPAGESIZE 0x1000
9262#define ELF_COMMONPAGESIZE 0x1000
9263
cec5225b
YZ
9264#define bfd_elfNN_close_and_cleanup \
9265 elfNN_aarch64_close_and_cleanup
a06ea964 9266
cec5225b
YZ
9267#define bfd_elfNN_bfd_free_cached_info \
9268 elfNN_aarch64_bfd_free_cached_info
a06ea964 9269
cec5225b
YZ
9270#define bfd_elfNN_bfd_is_target_special_symbol \
9271 elfNN_aarch64_is_target_special_symbol
a06ea964 9272
cec5225b
YZ
9273#define bfd_elfNN_bfd_link_hash_table_create \
9274 elfNN_aarch64_link_hash_table_create
a06ea964 9275
cec5225b
YZ
9276#define bfd_elfNN_bfd_merge_private_bfd_data \
9277 elfNN_aarch64_merge_private_bfd_data
a06ea964 9278
cec5225b
YZ
9279#define bfd_elfNN_bfd_print_private_bfd_data \
9280 elfNN_aarch64_print_private_bfd_data
a06ea964 9281
cec5225b
YZ
9282#define bfd_elfNN_bfd_reloc_type_lookup \
9283 elfNN_aarch64_reloc_type_lookup
a06ea964 9284
cec5225b
YZ
9285#define bfd_elfNN_bfd_reloc_name_lookup \
9286 elfNN_aarch64_reloc_name_lookup
a06ea964 9287
cec5225b
YZ
9288#define bfd_elfNN_bfd_set_private_flags \
9289 elfNN_aarch64_set_private_flags
a06ea964 9290
cec5225b
YZ
9291#define bfd_elfNN_find_inliner_info \
9292 elfNN_aarch64_find_inliner_info
a06ea964 9293
cec5225b
YZ
9294#define bfd_elfNN_find_nearest_line \
9295 elfNN_aarch64_find_nearest_line
a06ea964 9296
cec5225b
YZ
9297#define bfd_elfNN_mkobject \
9298 elfNN_aarch64_mkobject
a06ea964 9299
cec5225b
YZ
9300#define bfd_elfNN_new_section_hook \
9301 elfNN_aarch64_new_section_hook
a06ea964
NC
9302
9303#define elf_backend_adjust_dynamic_symbol \
cec5225b 9304 elfNN_aarch64_adjust_dynamic_symbol
a06ea964
NC
9305
9306#define elf_backend_always_size_sections \
cec5225b 9307 elfNN_aarch64_always_size_sections
a06ea964
NC
9308
9309#define elf_backend_check_relocs \
cec5225b 9310 elfNN_aarch64_check_relocs
a06ea964
NC
9311
9312#define elf_backend_copy_indirect_symbol \
cec5225b 9313 elfNN_aarch64_copy_indirect_symbol
a06ea964
NC
9314
9315/* Create .dynbss, and .rela.bss sections in DYNOBJ, and set up shortcuts
9316 to them in our hash. */
9317#define elf_backend_create_dynamic_sections \
cec5225b 9318 elfNN_aarch64_create_dynamic_sections
a06ea964
NC
9319
9320#define elf_backend_init_index_section \
9321 _bfd_elf_init_2_index_sections
9322
a06ea964 9323#define elf_backend_finish_dynamic_sections \
cec5225b 9324 elfNN_aarch64_finish_dynamic_sections
a06ea964
NC
9325
9326#define elf_backend_finish_dynamic_symbol \
cec5225b 9327 elfNN_aarch64_finish_dynamic_symbol
a06ea964
NC
9328
9329#define elf_backend_gc_sweep_hook \
cec5225b 9330 elfNN_aarch64_gc_sweep_hook
a06ea964
NC
9331
9332#define elf_backend_object_p \
cec5225b 9333 elfNN_aarch64_object_p
a06ea964
NC
9334
9335#define elf_backend_output_arch_local_syms \
cec5225b 9336 elfNN_aarch64_output_arch_local_syms
a06ea964
NC
9337
9338#define elf_backend_plt_sym_val \
cec5225b 9339 elfNN_aarch64_plt_sym_val
a06ea964
NC
9340
9341#define elf_backend_post_process_headers \
cec5225b 9342 elfNN_aarch64_post_process_headers
a06ea964
NC
9343
9344#define elf_backend_relocate_section \
cec5225b 9345 elfNN_aarch64_relocate_section
a06ea964
NC
9346
9347#define elf_backend_reloc_type_class \
cec5225b 9348 elfNN_aarch64_reloc_type_class
a06ea964 9349
a06ea964 9350#define elf_backend_section_from_shdr \
cec5225b 9351 elfNN_aarch64_section_from_shdr
a06ea964
NC
9352
9353#define elf_backend_size_dynamic_sections \
cec5225b 9354 elfNN_aarch64_size_dynamic_sections
a06ea964
NC
9355
9356#define elf_backend_size_info \
cec5225b 9357 elfNN_aarch64_size_info
a06ea964 9358
68fcca92
JW
9359#define elf_backend_write_section \
9360 elfNN_aarch64_write_section
9361
a06ea964 9362#define elf_backend_can_refcount 1
59c108f7 9363#define elf_backend_can_gc_sections 1
a06ea964
NC
9364#define elf_backend_plt_readonly 1
9365#define elf_backend_want_got_plt 1
9366#define elf_backend_want_plt_sym 0
9367#define elf_backend_may_use_rel_p 0
9368#define elf_backend_may_use_rela_p 1
9369#define elf_backend_default_use_rela_p 1
2e0488d3 9370#define elf_backend_rela_normal 1
a06ea964 9371#define elf_backend_got_header_size (GOT_ENTRY_SIZE * 3)
c495064d 9372#define elf_backend_default_execstack 0
32f573bc 9373#define elf_backend_extern_protected_data 1
a06ea964
NC
9374
9375#undef elf_backend_obj_attrs_section
9376#define elf_backend_obj_attrs_section ".ARM.attributes"
9377
cec5225b 9378#include "elfNN-target.h"
a75cf613
ES
9379
9380/* CloudABI support. */
9381
9382#undef TARGET_LITTLE_SYM
9383#define TARGET_LITTLE_SYM aarch64_elfNN_le_cloudabi_vec
9384#undef TARGET_LITTLE_NAME
9385#define TARGET_LITTLE_NAME "elfNN-littleaarch64-cloudabi"
9386#undef TARGET_BIG_SYM
9387#define TARGET_BIG_SYM aarch64_elfNN_be_cloudabi_vec
9388#undef TARGET_BIG_NAME
9389#define TARGET_BIG_NAME "elfNN-bigaarch64-cloudabi"
9390
9391#undef ELF_OSABI
9392#define ELF_OSABI ELFOSABI_CLOUDABI
9393
9394#undef elfNN_bed
9395#define elfNN_bed elfNN_aarch64_cloudabi_bed
9396
9397#include "elfNN-target.h"
This page took 0.723847 seconds and 4 git commands to generate.