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