Fix type of .persistent.bss section
[deliverable/binutils-gdb.git] / bfd / elf32-arm.c
CommitLineData
252b5132 1/* 32-bit ELF support for ARM
250d07de 2 Copyright (C) 1998-2021 Free Software Foundation, Inc.
252b5132
RH
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
252b5132 20
6e6718a3 21#include "sysdep.h"
2468f9c9
PB
22#include <limits.h>
23
3db64b00 24#include "bfd.h"
00a97672 25#include "libiberty.h"
7f266840
DJ
26#include "libbfd.h"
27#include "elf-bfd.h"
b38cadfb 28#include "elf-nacl.h"
00a97672 29#include "elf-vxworks.h"
ee065d83 30#include "elf/arm.h"
f37164d7
AM
31#include "elf32-arm.h"
32#include "cpu-arm.h"
7f266840 33
00a97672
RS
34/* Return the relocation section associated with NAME. HTAB is the
35 bfd's elf32_arm_link_hash_entry. */
36#define RELOC_SECTION(HTAB, NAME) \
37 ((HTAB)->use_rel ? ".rel" NAME : ".rela" NAME)
38
39/* Return size of a relocation entry. HTAB is the bfd's
40 elf32_arm_link_hash_entry. */
41#define RELOC_SIZE(HTAB) \
42 ((HTAB)->use_rel \
43 ? sizeof (Elf32_External_Rel) \
44 : sizeof (Elf32_External_Rela))
45
46/* Return function to swap relocations in. HTAB is the bfd's
47 elf32_arm_link_hash_entry. */
48#define SWAP_RELOC_IN(HTAB) \
49 ((HTAB)->use_rel \
50 ? bfd_elf32_swap_reloc_in \
51 : bfd_elf32_swap_reloca_in)
52
53/* Return function to swap relocations out. HTAB is the bfd's
54 elf32_arm_link_hash_entry. */
55#define SWAP_RELOC_OUT(HTAB) \
56 ((HTAB)->use_rel \
57 ? bfd_elf32_swap_reloc_out \
58 : bfd_elf32_swap_reloca_out)
59
f3185997 60#define elf_info_to_howto NULL
07d6d2b8 61#define elf_info_to_howto_rel elf32_arm_info_to_howto
7f266840
DJ
62
63#define ARM_ELF_ABI_VERSION 0
64#define ARM_ELF_OS_ABI_VERSION ELFOSABI_ARM
65
79f08007
YZ
66/* The Adjusted Place, as defined by AAELF. */
67#define Pa(X) ((X) & 0xfffffffc)
68
0a1b45a2
AM
69static bool elf32_arm_write_section (bfd *output_bfd,
70 struct bfd_link_info *link_info,
71 asection *sec,
72 bfd_byte *contents);
3e6b1042 73
7f266840
DJ
74/* Note: code such as elf32_arm_reloc_type_lookup expect to use e.g.
75 R_ARM_PC24 as an index into this, and find the R_ARM_PC24 HOWTO
76 in that slot. */
77
c19d1205 78static reloc_howto_type elf32_arm_howto_table_1[] =
7f266840 79{
8029a119 80 /* No relocation. */
7f266840
DJ
81 HOWTO (R_ARM_NONE, /* type */
82 0, /* rightshift */
6346d5ca 83 3, /* size (0 = byte, 1 = short, 2 = long) */
7f266840 84 0, /* bitsize */
0a1b45a2 85 false, /* pc_relative */
7f266840
DJ
86 0, /* bitpos */
87 complain_overflow_dont,/* complain_on_overflow */
88 bfd_elf_generic_reloc, /* special_function */
89 "R_ARM_NONE", /* name */
0a1b45a2 90 false, /* partial_inplace */
7f266840
DJ
91 0, /* src_mask */
92 0, /* dst_mask */
0a1b45a2 93 false), /* pcrel_offset */
7f266840
DJ
94
95 HOWTO (R_ARM_PC24, /* type */
96 2, /* rightshift */
97 2, /* size (0 = byte, 1 = short, 2 = long) */
98 24, /* bitsize */
0a1b45a2 99 true, /* pc_relative */
7f266840
DJ
100 0, /* bitpos */
101 complain_overflow_signed,/* complain_on_overflow */
102 bfd_elf_generic_reloc, /* special_function */
103 "R_ARM_PC24", /* name */
0a1b45a2 104 false, /* partial_inplace */
7f266840
DJ
105 0x00ffffff, /* src_mask */
106 0x00ffffff, /* dst_mask */
0a1b45a2 107 true), /* pcrel_offset */
7f266840
DJ
108
109 /* 32 bit absolute */
110 HOWTO (R_ARM_ABS32, /* type */
111 0, /* rightshift */
112 2, /* size (0 = byte, 1 = short, 2 = long) */
113 32, /* bitsize */
0a1b45a2 114 false, /* pc_relative */
7f266840
DJ
115 0, /* bitpos */
116 complain_overflow_bitfield,/* complain_on_overflow */
117 bfd_elf_generic_reloc, /* special_function */
118 "R_ARM_ABS32", /* name */
0a1b45a2 119 false, /* partial_inplace */
7f266840
DJ
120 0xffffffff, /* src_mask */
121 0xffffffff, /* dst_mask */
0a1b45a2 122 false), /* pcrel_offset */
7f266840
DJ
123
124 /* standard 32bit pc-relative reloc */
125 HOWTO (R_ARM_REL32, /* type */
126 0, /* rightshift */
127 2, /* size (0 = byte, 1 = short, 2 = long) */
128 32, /* bitsize */
0a1b45a2 129 true, /* pc_relative */
7f266840
DJ
130 0, /* bitpos */
131 complain_overflow_bitfield,/* complain_on_overflow */
132 bfd_elf_generic_reloc, /* special_function */
133 "R_ARM_REL32", /* name */
0a1b45a2 134 false, /* partial_inplace */
7f266840
DJ
135 0xffffffff, /* src_mask */
136 0xffffffff, /* dst_mask */
0a1b45a2 137 true), /* pcrel_offset */
7f266840 138
c19d1205 139 /* 8 bit absolute - R_ARM_LDR_PC_G0 in AAELF */
4962c51a 140 HOWTO (R_ARM_LDR_PC_G0, /* type */
7f266840
DJ
141 0, /* rightshift */
142 0, /* size (0 = byte, 1 = short, 2 = long) */
4962c51a 143 32, /* bitsize */
0a1b45a2 144 true, /* pc_relative */
7f266840 145 0, /* bitpos */
4962c51a 146 complain_overflow_dont,/* complain_on_overflow */
7f266840 147 bfd_elf_generic_reloc, /* special_function */
4962c51a 148 "R_ARM_LDR_PC_G0", /* name */
0a1b45a2 149 false, /* partial_inplace */
4962c51a
MS
150 0xffffffff, /* src_mask */
151 0xffffffff, /* dst_mask */
0a1b45a2 152 true), /* pcrel_offset */
7f266840
DJ
153
154 /* 16 bit absolute */
155 HOWTO (R_ARM_ABS16, /* type */
156 0, /* rightshift */
157 1, /* size (0 = byte, 1 = short, 2 = long) */
158 16, /* bitsize */
0a1b45a2 159 false, /* pc_relative */
7f266840
DJ
160 0, /* bitpos */
161 complain_overflow_bitfield,/* complain_on_overflow */
162 bfd_elf_generic_reloc, /* special_function */
163 "R_ARM_ABS16", /* name */
0a1b45a2 164 false, /* partial_inplace */
7f266840
DJ
165 0x0000ffff, /* src_mask */
166 0x0000ffff, /* dst_mask */
0a1b45a2 167 false), /* pcrel_offset */
7f266840
DJ
168
169 /* 12 bit absolute */
170 HOWTO (R_ARM_ABS12, /* type */
171 0, /* rightshift */
172 2, /* size (0 = byte, 1 = short, 2 = long) */
173 12, /* bitsize */
0a1b45a2 174 false, /* pc_relative */
7f266840
DJ
175 0, /* bitpos */
176 complain_overflow_bitfield,/* complain_on_overflow */
177 bfd_elf_generic_reloc, /* special_function */
178 "R_ARM_ABS12", /* name */
0a1b45a2 179 false, /* partial_inplace */
00a97672
RS
180 0x00000fff, /* src_mask */
181 0x00000fff, /* dst_mask */
0a1b45a2 182 false), /* pcrel_offset */
7f266840
DJ
183
184 HOWTO (R_ARM_THM_ABS5, /* type */
185 6, /* rightshift */
186 1, /* size (0 = byte, 1 = short, 2 = long) */
187 5, /* bitsize */
0a1b45a2 188 false, /* pc_relative */
7f266840
DJ
189 0, /* bitpos */
190 complain_overflow_bitfield,/* complain_on_overflow */
191 bfd_elf_generic_reloc, /* special_function */
192 "R_ARM_THM_ABS5", /* name */
0a1b45a2 193 false, /* partial_inplace */
7f266840
DJ
194 0x000007e0, /* src_mask */
195 0x000007e0, /* dst_mask */
0a1b45a2 196 false), /* pcrel_offset */
7f266840
DJ
197
198 /* 8 bit absolute */
199 HOWTO (R_ARM_ABS8, /* type */
200 0, /* rightshift */
201 0, /* size (0 = byte, 1 = short, 2 = long) */
202 8, /* bitsize */
0a1b45a2 203 false, /* pc_relative */
7f266840
DJ
204 0, /* bitpos */
205 complain_overflow_bitfield,/* complain_on_overflow */
206 bfd_elf_generic_reloc, /* special_function */
207 "R_ARM_ABS8", /* name */
0a1b45a2 208 false, /* partial_inplace */
7f266840
DJ
209 0x000000ff, /* src_mask */
210 0x000000ff, /* dst_mask */
0a1b45a2 211 false), /* pcrel_offset */
7f266840
DJ
212
213 HOWTO (R_ARM_SBREL32, /* type */
214 0, /* rightshift */
215 2, /* size (0 = byte, 1 = short, 2 = long) */
216 32, /* bitsize */
0a1b45a2 217 false, /* pc_relative */
7f266840
DJ
218 0, /* bitpos */
219 complain_overflow_dont,/* complain_on_overflow */
220 bfd_elf_generic_reloc, /* special_function */
221 "R_ARM_SBREL32", /* name */
0a1b45a2 222 false, /* partial_inplace */
7f266840
DJ
223 0xffffffff, /* src_mask */
224 0xffffffff, /* dst_mask */
0a1b45a2 225 false), /* pcrel_offset */
7f266840 226
c19d1205 227 HOWTO (R_ARM_THM_CALL, /* type */
7f266840
DJ
228 1, /* rightshift */
229 2, /* size (0 = byte, 1 = short, 2 = long) */
f6ebfac0 230 24, /* bitsize */
0a1b45a2 231 true, /* pc_relative */
7f266840
DJ
232 0, /* bitpos */
233 complain_overflow_signed,/* complain_on_overflow */
234 bfd_elf_generic_reloc, /* special_function */
c19d1205 235 "R_ARM_THM_CALL", /* name */
0a1b45a2 236 false, /* partial_inplace */
7f6ab9f8
AM
237 0x07ff2fff, /* src_mask */
238 0x07ff2fff, /* dst_mask */
0a1b45a2 239 true), /* pcrel_offset */
7f266840 240
07d6d2b8 241 HOWTO (R_ARM_THM_PC8, /* type */
7f266840
DJ
242 1, /* rightshift */
243 1, /* size (0 = byte, 1 = short, 2 = long) */
244 8, /* bitsize */
0a1b45a2 245 true, /* pc_relative */
7f266840
DJ
246 0, /* bitpos */
247 complain_overflow_signed,/* complain_on_overflow */
248 bfd_elf_generic_reloc, /* special_function */
249 "R_ARM_THM_PC8", /* name */
0a1b45a2 250 false, /* partial_inplace */
7f266840
DJ
251 0x000000ff, /* src_mask */
252 0x000000ff, /* dst_mask */
0a1b45a2 253 true), /* pcrel_offset */
7f266840 254
c19d1205 255 HOWTO (R_ARM_BREL_ADJ, /* type */
7f266840
DJ
256 1, /* rightshift */
257 1, /* size (0 = byte, 1 = short, 2 = long) */
c19d1205 258 32, /* bitsize */
0a1b45a2 259 false, /* pc_relative */
7f266840
DJ
260 0, /* bitpos */
261 complain_overflow_signed,/* complain_on_overflow */
262 bfd_elf_generic_reloc, /* special_function */
c19d1205 263 "R_ARM_BREL_ADJ", /* name */
0a1b45a2 264 false, /* partial_inplace */
c19d1205
ZW
265 0xffffffff, /* src_mask */
266 0xffffffff, /* dst_mask */
0a1b45a2 267 false), /* pcrel_offset */
7f266840 268
0855e32b 269 HOWTO (R_ARM_TLS_DESC, /* type */
7f266840 270 0, /* rightshift */
0855e32b
NS
271 2, /* size (0 = byte, 1 = short, 2 = long) */
272 32, /* bitsize */
0a1b45a2 273 false, /* pc_relative */
7f266840 274 0, /* bitpos */
0855e32b 275 complain_overflow_bitfield,/* complain_on_overflow */
7f266840 276 bfd_elf_generic_reloc, /* special_function */
0855e32b 277 "R_ARM_TLS_DESC", /* name */
0a1b45a2 278 false, /* partial_inplace */
0855e32b
NS
279 0xffffffff, /* src_mask */
280 0xffffffff, /* dst_mask */
0a1b45a2 281 false), /* pcrel_offset */
7f266840
DJ
282
283 HOWTO (R_ARM_THM_SWI8, /* type */
284 0, /* rightshift */
285 0, /* size (0 = byte, 1 = short, 2 = long) */
286 0, /* bitsize */
0a1b45a2 287 false, /* pc_relative */
7f266840
DJ
288 0, /* bitpos */
289 complain_overflow_signed,/* complain_on_overflow */
290 bfd_elf_generic_reloc, /* special_function */
291 "R_ARM_SWI8", /* name */
0a1b45a2 292 false, /* partial_inplace */
7f266840
DJ
293 0x00000000, /* src_mask */
294 0x00000000, /* dst_mask */
0a1b45a2 295 false), /* pcrel_offset */
7f266840
DJ
296
297 /* BLX instruction for the ARM. */
298 HOWTO (R_ARM_XPC25, /* type */
299 2, /* rightshift */
300 2, /* size (0 = byte, 1 = short, 2 = long) */
7f6ab9f8 301 24, /* bitsize */
0a1b45a2 302 true, /* pc_relative */
7f266840
DJ
303 0, /* bitpos */
304 complain_overflow_signed,/* complain_on_overflow */
305 bfd_elf_generic_reloc, /* special_function */
306 "R_ARM_XPC25", /* name */
0a1b45a2 307 false, /* partial_inplace */
7f266840
DJ
308 0x00ffffff, /* src_mask */
309 0x00ffffff, /* dst_mask */
0a1b45a2 310 true), /* pcrel_offset */
7f266840
DJ
311
312 /* BLX instruction for the Thumb. */
313 HOWTO (R_ARM_THM_XPC22, /* type */
314 2, /* rightshift */
315 2, /* size (0 = byte, 1 = short, 2 = long) */
7f6ab9f8 316 24, /* bitsize */
0a1b45a2 317 true, /* pc_relative */
7f266840
DJ
318 0, /* bitpos */
319 complain_overflow_signed,/* complain_on_overflow */
320 bfd_elf_generic_reloc, /* special_function */
321 "R_ARM_THM_XPC22", /* name */
0a1b45a2 322 false, /* partial_inplace */
7f6ab9f8
AM
323 0x07ff2fff, /* src_mask */
324 0x07ff2fff, /* dst_mask */
0a1b45a2 325 true), /* pcrel_offset */
7f266840 326
ba93b8ac 327 /* Dynamic TLS relocations. */
7f266840 328
ba93b8ac 329 HOWTO (R_ARM_TLS_DTPMOD32, /* type */
07d6d2b8
AM
330 0, /* rightshift */
331 2, /* size (0 = byte, 1 = short, 2 = long) */
332 32, /* bitsize */
0a1b45a2 333 false, /* pc_relative */
07d6d2b8 334 0, /* bitpos */
99059e56
RM
335 complain_overflow_bitfield,/* complain_on_overflow */
336 bfd_elf_generic_reloc, /* special_function */
337 "R_ARM_TLS_DTPMOD32", /* name */
0a1b45a2 338 true, /* partial_inplace */
99059e56
RM
339 0xffffffff, /* src_mask */
340 0xffffffff, /* dst_mask */
0a1b45a2 341 false), /* pcrel_offset */
7f266840 342
ba93b8ac 343 HOWTO (R_ARM_TLS_DTPOFF32, /* type */
07d6d2b8
AM
344 0, /* rightshift */
345 2, /* size (0 = byte, 1 = short, 2 = long) */
346 32, /* bitsize */
0a1b45a2 347 false, /* pc_relative */
07d6d2b8 348 0, /* bitpos */
99059e56
RM
349 complain_overflow_bitfield,/* complain_on_overflow */
350 bfd_elf_generic_reloc, /* special_function */
351 "R_ARM_TLS_DTPOFF32", /* name */
0a1b45a2 352 true, /* partial_inplace */
99059e56
RM
353 0xffffffff, /* src_mask */
354 0xffffffff, /* dst_mask */
0a1b45a2 355 false), /* pcrel_offset */
7f266840 356
ba93b8ac 357 HOWTO (R_ARM_TLS_TPOFF32, /* type */
07d6d2b8
AM
358 0, /* rightshift */
359 2, /* size (0 = byte, 1 = short, 2 = long) */
360 32, /* bitsize */
0a1b45a2 361 false, /* pc_relative */
07d6d2b8 362 0, /* bitpos */
99059e56
RM
363 complain_overflow_bitfield,/* complain_on_overflow */
364 bfd_elf_generic_reloc, /* special_function */
365 "R_ARM_TLS_TPOFF32", /* name */
0a1b45a2 366 true, /* partial_inplace */
99059e56
RM
367 0xffffffff, /* src_mask */
368 0xffffffff, /* dst_mask */
0a1b45a2 369 false), /* pcrel_offset */
7f266840
DJ
370
371 /* Relocs used in ARM Linux */
372
373 HOWTO (R_ARM_COPY, /* type */
07d6d2b8
AM
374 0, /* rightshift */
375 2, /* size (0 = byte, 1 = short, 2 = long) */
376 32, /* bitsize */
0a1b45a2 377 false, /* pc_relative */
07d6d2b8 378 0, /* bitpos */
99059e56
RM
379 complain_overflow_bitfield,/* complain_on_overflow */
380 bfd_elf_generic_reloc, /* special_function */
381 "R_ARM_COPY", /* name */
0a1b45a2 382 true, /* partial_inplace */
99059e56
RM
383 0xffffffff, /* src_mask */
384 0xffffffff, /* dst_mask */
0a1b45a2 385 false), /* pcrel_offset */
7f266840
DJ
386
387 HOWTO (R_ARM_GLOB_DAT, /* type */
07d6d2b8
AM
388 0, /* rightshift */
389 2, /* size (0 = byte, 1 = short, 2 = long) */
390 32, /* bitsize */
0a1b45a2 391 false, /* pc_relative */
07d6d2b8 392 0, /* bitpos */
99059e56
RM
393 complain_overflow_bitfield,/* complain_on_overflow */
394 bfd_elf_generic_reloc, /* special_function */
395 "R_ARM_GLOB_DAT", /* name */
0a1b45a2 396 true, /* partial_inplace */
99059e56
RM
397 0xffffffff, /* src_mask */
398 0xffffffff, /* dst_mask */
0a1b45a2 399 false), /* pcrel_offset */
7f266840
DJ
400
401 HOWTO (R_ARM_JUMP_SLOT, /* type */
07d6d2b8
AM
402 0, /* rightshift */
403 2, /* size (0 = byte, 1 = short, 2 = long) */
404 32, /* bitsize */
0a1b45a2 405 false, /* pc_relative */
07d6d2b8 406 0, /* bitpos */
99059e56
RM
407 complain_overflow_bitfield,/* complain_on_overflow */
408 bfd_elf_generic_reloc, /* special_function */
409 "R_ARM_JUMP_SLOT", /* name */
0a1b45a2 410 true, /* partial_inplace */
99059e56
RM
411 0xffffffff, /* src_mask */
412 0xffffffff, /* dst_mask */
0a1b45a2 413 false), /* pcrel_offset */
7f266840
DJ
414
415 HOWTO (R_ARM_RELATIVE, /* type */
07d6d2b8
AM
416 0, /* rightshift */
417 2, /* size (0 = byte, 1 = short, 2 = long) */
418 32, /* bitsize */
0a1b45a2 419 false, /* pc_relative */
07d6d2b8 420 0, /* bitpos */
99059e56
RM
421 complain_overflow_bitfield,/* complain_on_overflow */
422 bfd_elf_generic_reloc, /* special_function */
423 "R_ARM_RELATIVE", /* name */
0a1b45a2 424 true, /* partial_inplace */
99059e56
RM
425 0xffffffff, /* src_mask */
426 0xffffffff, /* dst_mask */
0a1b45a2 427 false), /* pcrel_offset */
7f266840 428
c19d1205 429 HOWTO (R_ARM_GOTOFF32, /* type */
07d6d2b8
AM
430 0, /* rightshift */
431 2, /* size (0 = byte, 1 = short, 2 = long) */
432 32, /* bitsize */
0a1b45a2 433 false, /* pc_relative */
07d6d2b8 434 0, /* bitpos */
99059e56
RM
435 complain_overflow_bitfield,/* complain_on_overflow */
436 bfd_elf_generic_reloc, /* special_function */
437 "R_ARM_GOTOFF32", /* name */
0a1b45a2 438 true, /* partial_inplace */
99059e56
RM
439 0xffffffff, /* src_mask */
440 0xffffffff, /* dst_mask */
0a1b45a2 441 false), /* pcrel_offset */
7f266840
DJ
442
443 HOWTO (R_ARM_GOTPC, /* type */
07d6d2b8
AM
444 0, /* rightshift */
445 2, /* size (0 = byte, 1 = short, 2 = long) */
446 32, /* bitsize */
0a1b45a2 447 true, /* pc_relative */
07d6d2b8 448 0, /* bitpos */
99059e56
RM
449 complain_overflow_bitfield,/* complain_on_overflow */
450 bfd_elf_generic_reloc, /* special_function */
451 "R_ARM_GOTPC", /* name */
0a1b45a2 452 true, /* partial_inplace */
99059e56
RM
453 0xffffffff, /* src_mask */
454 0xffffffff, /* dst_mask */
0a1b45a2 455 true), /* pcrel_offset */
7f266840
DJ
456
457 HOWTO (R_ARM_GOT32, /* type */
07d6d2b8
AM
458 0, /* rightshift */
459 2, /* size (0 = byte, 1 = short, 2 = long) */
460 32, /* bitsize */
0a1b45a2 461 false, /* pc_relative */
07d6d2b8 462 0, /* bitpos */
99059e56
RM
463 complain_overflow_bitfield,/* complain_on_overflow */
464 bfd_elf_generic_reloc, /* special_function */
465 "R_ARM_GOT32", /* name */
0a1b45a2 466 true, /* partial_inplace */
99059e56
RM
467 0xffffffff, /* src_mask */
468 0xffffffff, /* dst_mask */
0a1b45a2 469 false), /* pcrel_offset */
7f266840
DJ
470
471 HOWTO (R_ARM_PLT32, /* type */
07d6d2b8
AM
472 2, /* rightshift */
473 2, /* size (0 = byte, 1 = short, 2 = long) */
474 24, /* bitsize */
0a1b45a2 475 true, /* pc_relative */
07d6d2b8 476 0, /* bitpos */
99059e56
RM
477 complain_overflow_bitfield,/* complain_on_overflow */
478 bfd_elf_generic_reloc, /* special_function */
479 "R_ARM_PLT32", /* name */
0a1b45a2 480 false, /* partial_inplace */
99059e56
RM
481 0x00ffffff, /* src_mask */
482 0x00ffffff, /* dst_mask */
0a1b45a2 483 true), /* pcrel_offset */
7f266840
DJ
484
485 HOWTO (R_ARM_CALL, /* type */
486 2, /* rightshift */
487 2, /* size (0 = byte, 1 = short, 2 = long) */
488 24, /* bitsize */
0a1b45a2 489 true, /* pc_relative */
7f266840
DJ
490 0, /* bitpos */
491 complain_overflow_signed,/* complain_on_overflow */
492 bfd_elf_generic_reloc, /* special_function */
493 "R_ARM_CALL", /* name */
0a1b45a2 494 false, /* partial_inplace */
7f266840
DJ
495 0x00ffffff, /* src_mask */
496 0x00ffffff, /* dst_mask */
0a1b45a2 497 true), /* pcrel_offset */
7f266840
DJ
498
499 HOWTO (R_ARM_JUMP24, /* type */
500 2, /* rightshift */
501 2, /* size (0 = byte, 1 = short, 2 = long) */
502 24, /* bitsize */
0a1b45a2 503 true, /* pc_relative */
7f266840
DJ
504 0, /* bitpos */
505 complain_overflow_signed,/* complain_on_overflow */
506 bfd_elf_generic_reloc, /* special_function */
507 "R_ARM_JUMP24", /* name */
0a1b45a2 508 false, /* partial_inplace */
7f266840
DJ
509 0x00ffffff, /* src_mask */
510 0x00ffffff, /* dst_mask */
0a1b45a2 511 true), /* pcrel_offset */
7f266840 512
c19d1205
ZW
513 HOWTO (R_ARM_THM_JUMP24, /* type */
514 1, /* rightshift */
515 2, /* size (0 = byte, 1 = short, 2 = long) */
516 24, /* bitsize */
0a1b45a2 517 true, /* pc_relative */
7f266840 518 0, /* bitpos */
c19d1205 519 complain_overflow_signed,/* complain_on_overflow */
7f266840 520 bfd_elf_generic_reloc, /* special_function */
c19d1205 521 "R_ARM_THM_JUMP24", /* name */
0a1b45a2 522 false, /* partial_inplace */
c19d1205
ZW
523 0x07ff2fff, /* src_mask */
524 0x07ff2fff, /* dst_mask */
0a1b45a2 525 true), /* pcrel_offset */
7f266840 526
c19d1205 527 HOWTO (R_ARM_BASE_ABS, /* type */
7f266840 528 0, /* rightshift */
c19d1205
ZW
529 2, /* size (0 = byte, 1 = short, 2 = long) */
530 32, /* bitsize */
0a1b45a2 531 false, /* pc_relative */
7f266840
DJ
532 0, /* bitpos */
533 complain_overflow_dont,/* complain_on_overflow */
534 bfd_elf_generic_reloc, /* special_function */
c19d1205 535 "R_ARM_BASE_ABS", /* name */
0a1b45a2 536 false, /* partial_inplace */
c19d1205
ZW
537 0xffffffff, /* src_mask */
538 0xffffffff, /* dst_mask */
0a1b45a2 539 false), /* pcrel_offset */
7f266840
DJ
540
541 HOWTO (R_ARM_ALU_PCREL7_0, /* type */
542 0, /* rightshift */
543 2, /* size (0 = byte, 1 = short, 2 = long) */
544 12, /* bitsize */
0a1b45a2 545 true, /* pc_relative */
7f266840
DJ
546 0, /* bitpos */
547 complain_overflow_dont,/* complain_on_overflow */
548 bfd_elf_generic_reloc, /* special_function */
549 "R_ARM_ALU_PCREL_7_0", /* name */
0a1b45a2 550 false, /* partial_inplace */
7f266840
DJ
551 0x00000fff, /* src_mask */
552 0x00000fff, /* dst_mask */
0a1b45a2 553 true), /* pcrel_offset */
7f266840
DJ
554
555 HOWTO (R_ARM_ALU_PCREL15_8, /* type */
556 0, /* rightshift */
557 2, /* size (0 = byte, 1 = short, 2 = long) */
558 12, /* bitsize */
0a1b45a2 559 true, /* pc_relative */
7f266840
DJ
560 8, /* bitpos */
561 complain_overflow_dont,/* complain_on_overflow */
562 bfd_elf_generic_reloc, /* special_function */
563 "R_ARM_ALU_PCREL_15_8",/* name */
0a1b45a2 564 false, /* partial_inplace */
7f266840
DJ
565 0x00000fff, /* src_mask */
566 0x00000fff, /* dst_mask */
0a1b45a2 567 true), /* pcrel_offset */
7f266840
DJ
568
569 HOWTO (R_ARM_ALU_PCREL23_15, /* type */
570 0, /* rightshift */
571 2, /* size (0 = byte, 1 = short, 2 = long) */
572 12, /* bitsize */
0a1b45a2 573 true, /* pc_relative */
7f266840
DJ
574 16, /* bitpos */
575 complain_overflow_dont,/* complain_on_overflow */
576 bfd_elf_generic_reloc, /* special_function */
577 "R_ARM_ALU_PCREL_23_15",/* name */
0a1b45a2 578 false, /* partial_inplace */
7f266840
DJ
579 0x00000fff, /* src_mask */
580 0x00000fff, /* dst_mask */
0a1b45a2 581 true), /* pcrel_offset */
7f266840
DJ
582
583 HOWTO (R_ARM_LDR_SBREL_11_0, /* type */
584 0, /* rightshift */
585 2, /* size (0 = byte, 1 = short, 2 = long) */
586 12, /* bitsize */
0a1b45a2 587 false, /* pc_relative */
7f266840
DJ
588 0, /* bitpos */
589 complain_overflow_dont,/* complain_on_overflow */
590 bfd_elf_generic_reloc, /* special_function */
591 "R_ARM_LDR_SBREL_11_0",/* name */
0a1b45a2 592 false, /* partial_inplace */
7f266840
DJ
593 0x00000fff, /* src_mask */
594 0x00000fff, /* dst_mask */
0a1b45a2 595 false), /* pcrel_offset */
7f266840
DJ
596
597 HOWTO (R_ARM_ALU_SBREL_19_12, /* type */
598 0, /* rightshift */
599 2, /* size (0 = byte, 1 = short, 2 = long) */
600 8, /* bitsize */
0a1b45a2 601 false, /* pc_relative */
7f266840
DJ
602 12, /* bitpos */
603 complain_overflow_dont,/* complain_on_overflow */
604 bfd_elf_generic_reloc, /* special_function */
605 "R_ARM_ALU_SBREL_19_12",/* name */
0a1b45a2 606 false, /* partial_inplace */
7f266840
DJ
607 0x000ff000, /* src_mask */
608 0x000ff000, /* dst_mask */
0a1b45a2 609 false), /* pcrel_offset */
7f266840
DJ
610
611 HOWTO (R_ARM_ALU_SBREL_27_20, /* type */
612 0, /* rightshift */
613 2, /* size (0 = byte, 1 = short, 2 = long) */
614 8, /* bitsize */
0a1b45a2 615 false, /* pc_relative */
7f266840
DJ
616 20, /* bitpos */
617 complain_overflow_dont,/* complain_on_overflow */
618 bfd_elf_generic_reloc, /* special_function */
619 "R_ARM_ALU_SBREL_27_20",/* name */
0a1b45a2 620 false, /* partial_inplace */
7f266840
DJ
621 0x0ff00000, /* src_mask */
622 0x0ff00000, /* dst_mask */
0a1b45a2 623 false), /* pcrel_offset */
7f266840
DJ
624
625 HOWTO (R_ARM_TARGET1, /* type */
626 0, /* rightshift */
627 2, /* size (0 = byte, 1 = short, 2 = long) */
628 32, /* bitsize */
0a1b45a2 629 false, /* pc_relative */
7f266840
DJ
630 0, /* bitpos */
631 complain_overflow_dont,/* complain_on_overflow */
632 bfd_elf_generic_reloc, /* special_function */
633 "R_ARM_TARGET1", /* name */
0a1b45a2 634 false, /* partial_inplace */
7f266840
DJ
635 0xffffffff, /* src_mask */
636 0xffffffff, /* dst_mask */
0a1b45a2 637 false), /* pcrel_offset */
7f266840
DJ
638
639 HOWTO (R_ARM_ROSEGREL32, /* type */
640 0, /* rightshift */
641 2, /* size (0 = byte, 1 = short, 2 = long) */
642 32, /* bitsize */
0a1b45a2 643 false, /* pc_relative */
7f266840
DJ
644 0, /* bitpos */
645 complain_overflow_dont,/* complain_on_overflow */
646 bfd_elf_generic_reloc, /* special_function */
647 "R_ARM_ROSEGREL32", /* name */
0a1b45a2 648 false, /* partial_inplace */
7f266840
DJ
649 0xffffffff, /* src_mask */
650 0xffffffff, /* dst_mask */
0a1b45a2 651 false), /* pcrel_offset */
7f266840
DJ
652
653 HOWTO (R_ARM_V4BX, /* type */
654 0, /* rightshift */
655 2, /* size (0 = byte, 1 = short, 2 = long) */
656 32, /* bitsize */
0a1b45a2 657 false, /* pc_relative */
7f266840
DJ
658 0, /* bitpos */
659 complain_overflow_dont,/* complain_on_overflow */
660 bfd_elf_generic_reloc, /* special_function */
661 "R_ARM_V4BX", /* name */
0a1b45a2 662 false, /* partial_inplace */
7f266840
DJ
663 0xffffffff, /* src_mask */
664 0xffffffff, /* dst_mask */
0a1b45a2 665 false), /* pcrel_offset */
7f266840
DJ
666
667 HOWTO (R_ARM_TARGET2, /* type */
668 0, /* rightshift */
669 2, /* size (0 = byte, 1 = short, 2 = long) */
670 32, /* bitsize */
0a1b45a2 671 false, /* pc_relative */
7f266840
DJ
672 0, /* bitpos */
673 complain_overflow_signed,/* complain_on_overflow */
674 bfd_elf_generic_reloc, /* special_function */
675 "R_ARM_TARGET2", /* name */
0a1b45a2 676 false, /* partial_inplace */
7f266840
DJ
677 0xffffffff, /* src_mask */
678 0xffffffff, /* dst_mask */
0a1b45a2 679 true), /* pcrel_offset */
7f266840
DJ
680
681 HOWTO (R_ARM_PREL31, /* type */
682 0, /* rightshift */
683 2, /* size (0 = byte, 1 = short, 2 = long) */
684 31, /* bitsize */
0a1b45a2 685 true, /* pc_relative */
7f266840
DJ
686 0, /* bitpos */
687 complain_overflow_signed,/* complain_on_overflow */
688 bfd_elf_generic_reloc, /* special_function */
689 "R_ARM_PREL31", /* name */
0a1b45a2 690 false, /* partial_inplace */
7f266840
DJ
691 0x7fffffff, /* src_mask */
692 0x7fffffff, /* dst_mask */
0a1b45a2 693 true), /* pcrel_offset */
c19d1205
ZW
694
695 HOWTO (R_ARM_MOVW_ABS_NC, /* type */
696 0, /* rightshift */
697 2, /* size (0 = byte, 1 = short, 2 = long) */
698 16, /* bitsize */
0a1b45a2 699 false, /* pc_relative */
c19d1205
ZW
700 0, /* bitpos */
701 complain_overflow_dont,/* complain_on_overflow */
702 bfd_elf_generic_reloc, /* special_function */
703 "R_ARM_MOVW_ABS_NC", /* name */
0a1b45a2 704 false, /* partial_inplace */
39623e12
PB
705 0x000f0fff, /* src_mask */
706 0x000f0fff, /* dst_mask */
0a1b45a2 707 false), /* pcrel_offset */
c19d1205
ZW
708
709 HOWTO (R_ARM_MOVT_ABS, /* type */
710 0, /* rightshift */
711 2, /* size (0 = byte, 1 = short, 2 = long) */
712 16, /* bitsize */
0a1b45a2 713 false, /* pc_relative */
c19d1205
ZW
714 0, /* bitpos */
715 complain_overflow_bitfield,/* complain_on_overflow */
716 bfd_elf_generic_reloc, /* special_function */
717 "R_ARM_MOVT_ABS", /* name */
0a1b45a2 718 false, /* partial_inplace */
39623e12
PB
719 0x000f0fff, /* src_mask */
720 0x000f0fff, /* dst_mask */
0a1b45a2 721 false), /* pcrel_offset */
c19d1205
ZW
722
723 HOWTO (R_ARM_MOVW_PREL_NC, /* type */
724 0, /* rightshift */
725 2, /* size (0 = byte, 1 = short, 2 = long) */
726 16, /* bitsize */
0a1b45a2 727 true, /* pc_relative */
c19d1205
ZW
728 0, /* bitpos */
729 complain_overflow_dont,/* complain_on_overflow */
730 bfd_elf_generic_reloc, /* special_function */
731 "R_ARM_MOVW_PREL_NC", /* name */
0a1b45a2 732 false, /* partial_inplace */
39623e12
PB
733 0x000f0fff, /* src_mask */
734 0x000f0fff, /* dst_mask */
0a1b45a2 735 true), /* pcrel_offset */
c19d1205
ZW
736
737 HOWTO (R_ARM_MOVT_PREL, /* type */
738 0, /* rightshift */
739 2, /* size (0 = byte, 1 = short, 2 = long) */
740 16, /* bitsize */
0a1b45a2 741 true, /* pc_relative */
c19d1205
ZW
742 0, /* bitpos */
743 complain_overflow_bitfield,/* complain_on_overflow */
744 bfd_elf_generic_reloc, /* special_function */
745 "R_ARM_MOVT_PREL", /* name */
0a1b45a2 746 false, /* partial_inplace */
39623e12
PB
747 0x000f0fff, /* src_mask */
748 0x000f0fff, /* dst_mask */
0a1b45a2 749 true), /* pcrel_offset */
c19d1205
ZW
750
751 HOWTO (R_ARM_THM_MOVW_ABS_NC, /* type */
752 0, /* rightshift */
753 2, /* size (0 = byte, 1 = short, 2 = long) */
754 16, /* bitsize */
0a1b45a2 755 false, /* pc_relative */
c19d1205
ZW
756 0, /* bitpos */
757 complain_overflow_dont,/* complain_on_overflow */
758 bfd_elf_generic_reloc, /* special_function */
759 "R_ARM_THM_MOVW_ABS_NC",/* name */
0a1b45a2 760 false, /* partial_inplace */
c19d1205
ZW
761 0x040f70ff, /* src_mask */
762 0x040f70ff, /* dst_mask */
0a1b45a2 763 false), /* pcrel_offset */
c19d1205
ZW
764
765 HOWTO (R_ARM_THM_MOVT_ABS, /* type */
766 0, /* rightshift */
767 2, /* size (0 = byte, 1 = short, 2 = long) */
768 16, /* bitsize */
0a1b45a2 769 false, /* pc_relative */
c19d1205
ZW
770 0, /* bitpos */
771 complain_overflow_bitfield,/* complain_on_overflow */
772 bfd_elf_generic_reloc, /* special_function */
773 "R_ARM_THM_MOVT_ABS", /* name */
0a1b45a2 774 false, /* partial_inplace */
c19d1205
ZW
775 0x040f70ff, /* src_mask */
776 0x040f70ff, /* dst_mask */
0a1b45a2 777 false), /* pcrel_offset */
c19d1205
ZW
778
779 HOWTO (R_ARM_THM_MOVW_PREL_NC,/* type */
780 0, /* rightshift */
781 2, /* size (0 = byte, 1 = short, 2 = long) */
782 16, /* bitsize */
0a1b45a2 783 true, /* pc_relative */
c19d1205
ZW
784 0, /* bitpos */
785 complain_overflow_dont,/* complain_on_overflow */
786 bfd_elf_generic_reloc, /* special_function */
787 "R_ARM_THM_MOVW_PREL_NC",/* name */
0a1b45a2 788 false, /* partial_inplace */
c19d1205
ZW
789 0x040f70ff, /* src_mask */
790 0x040f70ff, /* dst_mask */
0a1b45a2 791 true), /* pcrel_offset */
c19d1205
ZW
792
793 HOWTO (R_ARM_THM_MOVT_PREL, /* type */
794 0, /* rightshift */
795 2, /* size (0 = byte, 1 = short, 2 = long) */
796 16, /* bitsize */
0a1b45a2 797 true, /* pc_relative */
c19d1205
ZW
798 0, /* bitpos */
799 complain_overflow_bitfield,/* complain_on_overflow */
800 bfd_elf_generic_reloc, /* special_function */
801 "R_ARM_THM_MOVT_PREL", /* name */
0a1b45a2 802 false, /* partial_inplace */
c19d1205
ZW
803 0x040f70ff, /* src_mask */
804 0x040f70ff, /* dst_mask */
0a1b45a2 805 true), /* pcrel_offset */
c19d1205
ZW
806
807 HOWTO (R_ARM_THM_JUMP19, /* type */
808 1, /* rightshift */
809 2, /* size (0 = byte, 1 = short, 2 = long) */
810 19, /* bitsize */
0a1b45a2 811 true, /* pc_relative */
c19d1205
ZW
812 0, /* bitpos */
813 complain_overflow_signed,/* complain_on_overflow */
814 bfd_elf_generic_reloc, /* special_function */
815 "R_ARM_THM_JUMP19", /* name */
0a1b45a2 816 false, /* partial_inplace */
c19d1205
ZW
817 0x043f2fff, /* src_mask */
818 0x043f2fff, /* dst_mask */
0a1b45a2 819 true), /* pcrel_offset */
c19d1205
ZW
820
821 HOWTO (R_ARM_THM_JUMP6, /* type */
822 1, /* rightshift */
823 1, /* size (0 = byte, 1 = short, 2 = long) */
824 6, /* bitsize */
0a1b45a2 825 true, /* pc_relative */
c19d1205
ZW
826 0, /* bitpos */
827 complain_overflow_unsigned,/* complain_on_overflow */
828 bfd_elf_generic_reloc, /* special_function */
829 "R_ARM_THM_JUMP6", /* name */
0a1b45a2 830 false, /* partial_inplace */
c19d1205
ZW
831 0x02f8, /* src_mask */
832 0x02f8, /* dst_mask */
0a1b45a2 833 true), /* pcrel_offset */
c19d1205
ZW
834
835 /* These are declared as 13-bit signed relocations because we can
836 address -4095 .. 4095(base) by altering ADDW to SUBW or vice
837 versa. */
838 HOWTO (R_ARM_THM_ALU_PREL_11_0,/* type */
839 0, /* rightshift */
840 2, /* size (0 = byte, 1 = short, 2 = long) */
841 13, /* bitsize */
0a1b45a2 842 true, /* pc_relative */
c19d1205 843 0, /* bitpos */
2cab6cc3 844 complain_overflow_dont,/* complain_on_overflow */
c19d1205
ZW
845 bfd_elf_generic_reloc, /* special_function */
846 "R_ARM_THM_ALU_PREL_11_0",/* name */
0a1b45a2 847 false, /* partial_inplace */
2cab6cc3
MS
848 0xffffffff, /* src_mask */
849 0xffffffff, /* dst_mask */
0a1b45a2 850 true), /* pcrel_offset */
c19d1205
ZW
851
852 HOWTO (R_ARM_THM_PC12, /* type */
853 0, /* rightshift */
854 2, /* size (0 = byte, 1 = short, 2 = long) */
855 13, /* bitsize */
0a1b45a2 856 true, /* pc_relative */
c19d1205 857 0, /* bitpos */
2cab6cc3 858 complain_overflow_dont,/* complain_on_overflow */
c19d1205
ZW
859 bfd_elf_generic_reloc, /* special_function */
860 "R_ARM_THM_PC12", /* name */
0a1b45a2 861 false, /* partial_inplace */
2cab6cc3
MS
862 0xffffffff, /* src_mask */
863 0xffffffff, /* dst_mask */
0a1b45a2 864 true), /* pcrel_offset */
c19d1205
ZW
865
866 HOWTO (R_ARM_ABS32_NOI, /* type */
867 0, /* rightshift */
868 2, /* size (0 = byte, 1 = short, 2 = long) */
869 32, /* bitsize */
0a1b45a2 870 false, /* pc_relative */
c19d1205
ZW
871 0, /* bitpos */
872 complain_overflow_dont,/* complain_on_overflow */
873 bfd_elf_generic_reloc, /* special_function */
874 "R_ARM_ABS32_NOI", /* name */
0a1b45a2 875 false, /* partial_inplace */
c19d1205
ZW
876 0xffffffff, /* src_mask */
877 0xffffffff, /* dst_mask */
0a1b45a2 878 false), /* pcrel_offset */
c19d1205
ZW
879
880 HOWTO (R_ARM_REL32_NOI, /* type */
881 0, /* rightshift */
882 2, /* size (0 = byte, 1 = short, 2 = long) */
883 32, /* bitsize */
0a1b45a2 884 true, /* pc_relative */
c19d1205
ZW
885 0, /* bitpos */
886 complain_overflow_dont,/* complain_on_overflow */
887 bfd_elf_generic_reloc, /* special_function */
888 "R_ARM_REL32_NOI", /* name */
0a1b45a2 889 false, /* partial_inplace */
c19d1205
ZW
890 0xffffffff, /* src_mask */
891 0xffffffff, /* dst_mask */
0a1b45a2 892 false), /* pcrel_offset */
7f266840 893
4962c51a
MS
894 /* Group relocations. */
895
896 HOWTO (R_ARM_ALU_PC_G0_NC, /* type */
897 0, /* rightshift */
898 2, /* size (0 = byte, 1 = short, 2 = long) */
899 32, /* bitsize */
0a1b45a2 900 true, /* pc_relative */
4962c51a
MS
901 0, /* bitpos */
902 complain_overflow_dont,/* complain_on_overflow */
903 bfd_elf_generic_reloc, /* special_function */
904 "R_ARM_ALU_PC_G0_NC", /* name */
0a1b45a2 905 false, /* partial_inplace */
4962c51a
MS
906 0xffffffff, /* src_mask */
907 0xffffffff, /* dst_mask */
0a1b45a2 908 true), /* pcrel_offset */
4962c51a 909
07d6d2b8 910 HOWTO (R_ARM_ALU_PC_G0, /* type */
4962c51a
MS
911 0, /* rightshift */
912 2, /* size (0 = byte, 1 = short, 2 = long) */
913 32, /* bitsize */
0a1b45a2 914 true, /* pc_relative */
4962c51a
MS
915 0, /* bitpos */
916 complain_overflow_dont,/* complain_on_overflow */
917 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 918 "R_ARM_ALU_PC_G0", /* name */
0a1b45a2 919 false, /* partial_inplace */
4962c51a
MS
920 0xffffffff, /* src_mask */
921 0xffffffff, /* dst_mask */
0a1b45a2 922 true), /* pcrel_offset */
4962c51a
MS
923
924 HOWTO (R_ARM_ALU_PC_G1_NC, /* type */
925 0, /* rightshift */
926 2, /* size (0 = byte, 1 = short, 2 = long) */
927 32, /* bitsize */
0a1b45a2 928 true, /* pc_relative */
4962c51a
MS
929 0, /* bitpos */
930 complain_overflow_dont,/* complain_on_overflow */
931 bfd_elf_generic_reloc, /* special_function */
932 "R_ARM_ALU_PC_G1_NC", /* name */
0a1b45a2 933 false, /* partial_inplace */
4962c51a
MS
934 0xffffffff, /* src_mask */
935 0xffffffff, /* dst_mask */
0a1b45a2 936 true), /* pcrel_offset */
4962c51a 937
07d6d2b8 938 HOWTO (R_ARM_ALU_PC_G1, /* type */
4962c51a
MS
939 0, /* rightshift */
940 2, /* size (0 = byte, 1 = short, 2 = long) */
941 32, /* bitsize */
0a1b45a2 942 true, /* pc_relative */
4962c51a
MS
943 0, /* bitpos */
944 complain_overflow_dont,/* complain_on_overflow */
945 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 946 "R_ARM_ALU_PC_G1", /* name */
0a1b45a2 947 false, /* partial_inplace */
4962c51a
MS
948 0xffffffff, /* src_mask */
949 0xffffffff, /* dst_mask */
0a1b45a2 950 true), /* pcrel_offset */
4962c51a 951
07d6d2b8 952 HOWTO (R_ARM_ALU_PC_G2, /* type */
4962c51a
MS
953 0, /* rightshift */
954 2, /* size (0 = byte, 1 = short, 2 = long) */
955 32, /* bitsize */
0a1b45a2 956 true, /* pc_relative */
4962c51a
MS
957 0, /* bitpos */
958 complain_overflow_dont,/* complain_on_overflow */
959 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 960 "R_ARM_ALU_PC_G2", /* name */
0a1b45a2 961 false, /* partial_inplace */
4962c51a
MS
962 0xffffffff, /* src_mask */
963 0xffffffff, /* dst_mask */
0a1b45a2 964 true), /* pcrel_offset */
4962c51a 965
07d6d2b8 966 HOWTO (R_ARM_LDR_PC_G1, /* type */
4962c51a
MS
967 0, /* rightshift */
968 2, /* size (0 = byte, 1 = short, 2 = long) */
969 32, /* bitsize */
0a1b45a2 970 true, /* pc_relative */
4962c51a
MS
971 0, /* bitpos */
972 complain_overflow_dont,/* complain_on_overflow */
973 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 974 "R_ARM_LDR_PC_G1", /* name */
0a1b45a2 975 false, /* partial_inplace */
4962c51a
MS
976 0xffffffff, /* src_mask */
977 0xffffffff, /* dst_mask */
0a1b45a2 978 true), /* pcrel_offset */
4962c51a 979
07d6d2b8 980 HOWTO (R_ARM_LDR_PC_G2, /* type */
4962c51a
MS
981 0, /* rightshift */
982 2, /* size (0 = byte, 1 = short, 2 = long) */
983 32, /* bitsize */
0a1b45a2 984 true, /* pc_relative */
4962c51a
MS
985 0, /* bitpos */
986 complain_overflow_dont,/* complain_on_overflow */
987 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 988 "R_ARM_LDR_PC_G2", /* name */
0a1b45a2 989 false, /* partial_inplace */
4962c51a
MS
990 0xffffffff, /* src_mask */
991 0xffffffff, /* dst_mask */
0a1b45a2 992 true), /* pcrel_offset */
4962c51a 993
07d6d2b8 994 HOWTO (R_ARM_LDRS_PC_G0, /* type */
4962c51a
MS
995 0, /* rightshift */
996 2, /* size (0 = byte, 1 = short, 2 = long) */
997 32, /* bitsize */
0a1b45a2 998 true, /* pc_relative */
4962c51a
MS
999 0, /* bitpos */
1000 complain_overflow_dont,/* complain_on_overflow */
1001 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1002 "R_ARM_LDRS_PC_G0", /* name */
0a1b45a2 1003 false, /* partial_inplace */
4962c51a
MS
1004 0xffffffff, /* src_mask */
1005 0xffffffff, /* dst_mask */
0a1b45a2 1006 true), /* pcrel_offset */
4962c51a 1007
07d6d2b8 1008 HOWTO (R_ARM_LDRS_PC_G1, /* type */
4962c51a
MS
1009 0, /* rightshift */
1010 2, /* size (0 = byte, 1 = short, 2 = long) */
1011 32, /* bitsize */
0a1b45a2 1012 true, /* pc_relative */
4962c51a
MS
1013 0, /* bitpos */
1014 complain_overflow_dont,/* complain_on_overflow */
1015 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1016 "R_ARM_LDRS_PC_G1", /* name */
0a1b45a2 1017 false, /* partial_inplace */
4962c51a
MS
1018 0xffffffff, /* src_mask */
1019 0xffffffff, /* dst_mask */
0a1b45a2 1020 true), /* pcrel_offset */
4962c51a 1021
07d6d2b8 1022 HOWTO (R_ARM_LDRS_PC_G2, /* type */
4962c51a
MS
1023 0, /* rightshift */
1024 2, /* size (0 = byte, 1 = short, 2 = long) */
1025 32, /* bitsize */
0a1b45a2 1026 true, /* pc_relative */
4962c51a
MS
1027 0, /* bitpos */
1028 complain_overflow_dont,/* complain_on_overflow */
1029 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1030 "R_ARM_LDRS_PC_G2", /* name */
0a1b45a2 1031 false, /* partial_inplace */
4962c51a
MS
1032 0xffffffff, /* src_mask */
1033 0xffffffff, /* dst_mask */
0a1b45a2 1034 true), /* pcrel_offset */
4962c51a 1035
07d6d2b8 1036 HOWTO (R_ARM_LDC_PC_G0, /* type */
4962c51a
MS
1037 0, /* rightshift */
1038 2, /* size (0 = byte, 1 = short, 2 = long) */
1039 32, /* bitsize */
0a1b45a2 1040 true, /* pc_relative */
4962c51a
MS
1041 0, /* bitpos */
1042 complain_overflow_dont,/* complain_on_overflow */
1043 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1044 "R_ARM_LDC_PC_G0", /* name */
0a1b45a2 1045 false, /* partial_inplace */
4962c51a
MS
1046 0xffffffff, /* src_mask */
1047 0xffffffff, /* dst_mask */
0a1b45a2 1048 true), /* pcrel_offset */
4962c51a 1049
07d6d2b8 1050 HOWTO (R_ARM_LDC_PC_G1, /* type */
4962c51a
MS
1051 0, /* rightshift */
1052 2, /* size (0 = byte, 1 = short, 2 = long) */
1053 32, /* bitsize */
0a1b45a2 1054 true, /* pc_relative */
4962c51a
MS
1055 0, /* bitpos */
1056 complain_overflow_dont,/* complain_on_overflow */
1057 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1058 "R_ARM_LDC_PC_G1", /* name */
0a1b45a2 1059 false, /* partial_inplace */
4962c51a
MS
1060 0xffffffff, /* src_mask */
1061 0xffffffff, /* dst_mask */
0a1b45a2 1062 true), /* pcrel_offset */
4962c51a 1063
07d6d2b8 1064 HOWTO (R_ARM_LDC_PC_G2, /* type */
4962c51a
MS
1065 0, /* rightshift */
1066 2, /* size (0 = byte, 1 = short, 2 = long) */
1067 32, /* bitsize */
0a1b45a2 1068 true, /* pc_relative */
4962c51a
MS
1069 0, /* bitpos */
1070 complain_overflow_dont,/* complain_on_overflow */
1071 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1072 "R_ARM_LDC_PC_G2", /* name */
0a1b45a2 1073 false, /* partial_inplace */
4962c51a
MS
1074 0xffffffff, /* src_mask */
1075 0xffffffff, /* dst_mask */
0a1b45a2 1076 true), /* pcrel_offset */
4962c51a 1077
07d6d2b8 1078 HOWTO (R_ARM_ALU_SB_G0_NC, /* type */
4962c51a
MS
1079 0, /* rightshift */
1080 2, /* size (0 = byte, 1 = short, 2 = long) */
1081 32, /* bitsize */
0a1b45a2 1082 true, /* pc_relative */
4962c51a
MS
1083 0, /* bitpos */
1084 complain_overflow_dont,/* complain_on_overflow */
1085 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1086 "R_ARM_ALU_SB_G0_NC", /* name */
0a1b45a2 1087 false, /* partial_inplace */
4962c51a
MS
1088 0xffffffff, /* src_mask */
1089 0xffffffff, /* dst_mask */
0a1b45a2 1090 true), /* pcrel_offset */
4962c51a 1091
07d6d2b8 1092 HOWTO (R_ARM_ALU_SB_G0, /* type */
4962c51a
MS
1093 0, /* rightshift */
1094 2, /* size (0 = byte, 1 = short, 2 = long) */
1095 32, /* bitsize */
0a1b45a2 1096 true, /* pc_relative */
4962c51a
MS
1097 0, /* bitpos */
1098 complain_overflow_dont,/* complain_on_overflow */
1099 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1100 "R_ARM_ALU_SB_G0", /* name */
0a1b45a2 1101 false, /* partial_inplace */
4962c51a
MS
1102 0xffffffff, /* src_mask */
1103 0xffffffff, /* dst_mask */
0a1b45a2 1104 true), /* pcrel_offset */
4962c51a 1105
07d6d2b8 1106 HOWTO (R_ARM_ALU_SB_G1_NC, /* type */
4962c51a
MS
1107 0, /* rightshift */
1108 2, /* size (0 = byte, 1 = short, 2 = long) */
1109 32, /* bitsize */
0a1b45a2 1110 true, /* pc_relative */
4962c51a
MS
1111 0, /* bitpos */
1112 complain_overflow_dont,/* complain_on_overflow */
1113 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1114 "R_ARM_ALU_SB_G1_NC", /* name */
0a1b45a2 1115 false, /* partial_inplace */
4962c51a
MS
1116 0xffffffff, /* src_mask */
1117 0xffffffff, /* dst_mask */
0a1b45a2 1118 true), /* pcrel_offset */
4962c51a 1119
07d6d2b8 1120 HOWTO (R_ARM_ALU_SB_G1, /* type */
4962c51a
MS
1121 0, /* rightshift */
1122 2, /* size (0 = byte, 1 = short, 2 = long) */
1123 32, /* bitsize */
0a1b45a2 1124 true, /* pc_relative */
4962c51a
MS
1125 0, /* bitpos */
1126 complain_overflow_dont,/* complain_on_overflow */
1127 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1128 "R_ARM_ALU_SB_G1", /* name */
0a1b45a2 1129 false, /* partial_inplace */
4962c51a
MS
1130 0xffffffff, /* src_mask */
1131 0xffffffff, /* dst_mask */
0a1b45a2 1132 true), /* pcrel_offset */
4962c51a 1133
07d6d2b8 1134 HOWTO (R_ARM_ALU_SB_G2, /* type */
4962c51a
MS
1135 0, /* rightshift */
1136 2, /* size (0 = byte, 1 = short, 2 = long) */
1137 32, /* bitsize */
0a1b45a2 1138 true, /* pc_relative */
4962c51a
MS
1139 0, /* bitpos */
1140 complain_overflow_dont,/* complain_on_overflow */
1141 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1142 "R_ARM_ALU_SB_G2", /* name */
0a1b45a2 1143 false, /* partial_inplace */
4962c51a
MS
1144 0xffffffff, /* src_mask */
1145 0xffffffff, /* dst_mask */
0a1b45a2 1146 true), /* pcrel_offset */
4962c51a 1147
07d6d2b8 1148 HOWTO (R_ARM_LDR_SB_G0, /* type */
4962c51a
MS
1149 0, /* rightshift */
1150 2, /* size (0 = byte, 1 = short, 2 = long) */
1151 32, /* bitsize */
0a1b45a2 1152 true, /* pc_relative */
4962c51a
MS
1153 0, /* bitpos */
1154 complain_overflow_dont,/* complain_on_overflow */
1155 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1156 "R_ARM_LDR_SB_G0", /* name */
0a1b45a2 1157 false, /* partial_inplace */
4962c51a
MS
1158 0xffffffff, /* src_mask */
1159 0xffffffff, /* dst_mask */
0a1b45a2 1160 true), /* pcrel_offset */
4962c51a 1161
07d6d2b8 1162 HOWTO (R_ARM_LDR_SB_G1, /* type */
4962c51a
MS
1163 0, /* rightshift */
1164 2, /* size (0 = byte, 1 = short, 2 = long) */
1165 32, /* bitsize */
0a1b45a2 1166 true, /* pc_relative */
4962c51a
MS
1167 0, /* bitpos */
1168 complain_overflow_dont,/* complain_on_overflow */
1169 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1170 "R_ARM_LDR_SB_G1", /* name */
0a1b45a2 1171 false, /* partial_inplace */
4962c51a
MS
1172 0xffffffff, /* src_mask */
1173 0xffffffff, /* dst_mask */
0a1b45a2 1174 true), /* pcrel_offset */
4962c51a 1175
07d6d2b8 1176 HOWTO (R_ARM_LDR_SB_G2, /* type */
4962c51a
MS
1177 0, /* rightshift */
1178 2, /* size (0 = byte, 1 = short, 2 = long) */
1179 32, /* bitsize */
0a1b45a2 1180 true, /* pc_relative */
4962c51a
MS
1181 0, /* bitpos */
1182 complain_overflow_dont,/* complain_on_overflow */
1183 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1184 "R_ARM_LDR_SB_G2", /* name */
0a1b45a2 1185 false, /* partial_inplace */
4962c51a
MS
1186 0xffffffff, /* src_mask */
1187 0xffffffff, /* dst_mask */
0a1b45a2 1188 true), /* pcrel_offset */
4962c51a 1189
07d6d2b8 1190 HOWTO (R_ARM_LDRS_SB_G0, /* type */
4962c51a
MS
1191 0, /* rightshift */
1192 2, /* size (0 = byte, 1 = short, 2 = long) */
1193 32, /* bitsize */
0a1b45a2 1194 true, /* pc_relative */
4962c51a
MS
1195 0, /* bitpos */
1196 complain_overflow_dont,/* complain_on_overflow */
1197 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1198 "R_ARM_LDRS_SB_G0", /* name */
0a1b45a2 1199 false, /* partial_inplace */
4962c51a
MS
1200 0xffffffff, /* src_mask */
1201 0xffffffff, /* dst_mask */
0a1b45a2 1202 true), /* pcrel_offset */
4962c51a 1203
07d6d2b8 1204 HOWTO (R_ARM_LDRS_SB_G1, /* type */
4962c51a
MS
1205 0, /* rightshift */
1206 2, /* size (0 = byte, 1 = short, 2 = long) */
1207 32, /* bitsize */
0a1b45a2 1208 true, /* pc_relative */
4962c51a
MS
1209 0, /* bitpos */
1210 complain_overflow_dont,/* complain_on_overflow */
1211 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1212 "R_ARM_LDRS_SB_G1", /* name */
0a1b45a2 1213 false, /* partial_inplace */
4962c51a
MS
1214 0xffffffff, /* src_mask */
1215 0xffffffff, /* dst_mask */
0a1b45a2 1216 true), /* pcrel_offset */
4962c51a 1217
07d6d2b8 1218 HOWTO (R_ARM_LDRS_SB_G2, /* type */
4962c51a
MS
1219 0, /* rightshift */
1220 2, /* size (0 = byte, 1 = short, 2 = long) */
1221 32, /* bitsize */
0a1b45a2 1222 true, /* pc_relative */
4962c51a
MS
1223 0, /* bitpos */
1224 complain_overflow_dont,/* complain_on_overflow */
1225 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1226 "R_ARM_LDRS_SB_G2", /* name */
0a1b45a2 1227 false, /* partial_inplace */
4962c51a
MS
1228 0xffffffff, /* src_mask */
1229 0xffffffff, /* dst_mask */
0a1b45a2 1230 true), /* pcrel_offset */
4962c51a 1231
07d6d2b8 1232 HOWTO (R_ARM_LDC_SB_G0, /* type */
4962c51a
MS
1233 0, /* rightshift */
1234 2, /* size (0 = byte, 1 = short, 2 = long) */
1235 32, /* bitsize */
0a1b45a2 1236 true, /* pc_relative */
4962c51a
MS
1237 0, /* bitpos */
1238 complain_overflow_dont,/* complain_on_overflow */
1239 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1240 "R_ARM_LDC_SB_G0", /* name */
0a1b45a2 1241 false, /* partial_inplace */
4962c51a
MS
1242 0xffffffff, /* src_mask */
1243 0xffffffff, /* dst_mask */
0a1b45a2 1244 true), /* pcrel_offset */
4962c51a 1245
07d6d2b8 1246 HOWTO (R_ARM_LDC_SB_G1, /* type */
4962c51a
MS
1247 0, /* rightshift */
1248 2, /* size (0 = byte, 1 = short, 2 = long) */
1249 32, /* bitsize */
0a1b45a2 1250 true, /* pc_relative */
4962c51a
MS
1251 0, /* bitpos */
1252 complain_overflow_dont,/* complain_on_overflow */
1253 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1254 "R_ARM_LDC_SB_G1", /* name */
0a1b45a2 1255 false, /* partial_inplace */
4962c51a
MS
1256 0xffffffff, /* src_mask */
1257 0xffffffff, /* dst_mask */
0a1b45a2 1258 true), /* pcrel_offset */
4962c51a 1259
07d6d2b8 1260 HOWTO (R_ARM_LDC_SB_G2, /* type */
4962c51a
MS
1261 0, /* rightshift */
1262 2, /* size (0 = byte, 1 = short, 2 = long) */
1263 32, /* bitsize */
0a1b45a2 1264 true, /* pc_relative */
4962c51a
MS
1265 0, /* bitpos */
1266 complain_overflow_dont,/* complain_on_overflow */
1267 bfd_elf_generic_reloc, /* special_function */
07d6d2b8 1268 "R_ARM_LDC_SB_G2", /* name */
0a1b45a2 1269 false, /* partial_inplace */
4962c51a
MS
1270 0xffffffff, /* src_mask */
1271 0xffffffff, /* dst_mask */
0a1b45a2 1272 true), /* pcrel_offset */
4962c51a
MS
1273
1274 /* End of group relocations. */
c19d1205 1275
c19d1205
ZW
1276 HOWTO (R_ARM_MOVW_BREL_NC, /* type */
1277 0, /* rightshift */
1278 2, /* size (0 = byte, 1 = short, 2 = long) */
1279 16, /* bitsize */
0a1b45a2 1280 false, /* pc_relative */
c19d1205
ZW
1281 0, /* bitpos */
1282 complain_overflow_dont,/* complain_on_overflow */
1283 bfd_elf_generic_reloc, /* special_function */
1284 "R_ARM_MOVW_BREL_NC", /* name */
0a1b45a2 1285 false, /* partial_inplace */
c19d1205
ZW
1286 0x0000ffff, /* src_mask */
1287 0x0000ffff, /* dst_mask */
0a1b45a2 1288 false), /* pcrel_offset */
c19d1205
ZW
1289
1290 HOWTO (R_ARM_MOVT_BREL, /* type */
1291 0, /* rightshift */
1292 2, /* size (0 = byte, 1 = short, 2 = long) */
1293 16, /* bitsize */
0a1b45a2 1294 false, /* pc_relative */
c19d1205
ZW
1295 0, /* bitpos */
1296 complain_overflow_bitfield,/* complain_on_overflow */
1297 bfd_elf_generic_reloc, /* special_function */
1298 "R_ARM_MOVT_BREL", /* name */
0a1b45a2 1299 false, /* partial_inplace */
c19d1205
ZW
1300 0x0000ffff, /* src_mask */
1301 0x0000ffff, /* dst_mask */
0a1b45a2 1302 false), /* pcrel_offset */
c19d1205
ZW
1303
1304 HOWTO (R_ARM_MOVW_BREL, /* type */
1305 0, /* rightshift */
1306 2, /* size (0 = byte, 1 = short, 2 = long) */
1307 16, /* bitsize */
0a1b45a2 1308 false, /* pc_relative */
c19d1205
ZW
1309 0, /* bitpos */
1310 complain_overflow_dont,/* complain_on_overflow */
1311 bfd_elf_generic_reloc, /* special_function */
1312 "R_ARM_MOVW_BREL", /* name */
0a1b45a2 1313 false, /* partial_inplace */
c19d1205
ZW
1314 0x0000ffff, /* src_mask */
1315 0x0000ffff, /* dst_mask */
0a1b45a2 1316 false), /* pcrel_offset */
c19d1205
ZW
1317
1318 HOWTO (R_ARM_THM_MOVW_BREL_NC,/* type */
1319 0, /* rightshift */
1320 2, /* size (0 = byte, 1 = short, 2 = long) */
1321 16, /* bitsize */
0a1b45a2 1322 false, /* pc_relative */
c19d1205
ZW
1323 0, /* bitpos */
1324 complain_overflow_dont,/* complain_on_overflow */
1325 bfd_elf_generic_reloc, /* special_function */
1326 "R_ARM_THM_MOVW_BREL_NC",/* name */
0a1b45a2 1327 false, /* partial_inplace */
c19d1205
ZW
1328 0x040f70ff, /* src_mask */
1329 0x040f70ff, /* dst_mask */
0a1b45a2 1330 false), /* pcrel_offset */
c19d1205
ZW
1331
1332 HOWTO (R_ARM_THM_MOVT_BREL, /* type */
1333 0, /* rightshift */
1334 2, /* size (0 = byte, 1 = short, 2 = long) */
1335 16, /* bitsize */
0a1b45a2 1336 false, /* pc_relative */
c19d1205
ZW
1337 0, /* bitpos */
1338 complain_overflow_bitfield,/* complain_on_overflow */
1339 bfd_elf_generic_reloc, /* special_function */
1340 "R_ARM_THM_MOVT_BREL", /* name */
0a1b45a2 1341 false, /* partial_inplace */
c19d1205
ZW
1342 0x040f70ff, /* src_mask */
1343 0x040f70ff, /* dst_mask */
0a1b45a2 1344 false), /* pcrel_offset */
c19d1205
ZW
1345
1346 HOWTO (R_ARM_THM_MOVW_BREL, /* type */
1347 0, /* rightshift */
1348 2, /* size (0 = byte, 1 = short, 2 = long) */
1349 16, /* bitsize */
0a1b45a2 1350 false, /* pc_relative */
c19d1205
ZW
1351 0, /* bitpos */
1352 complain_overflow_dont,/* complain_on_overflow */
1353 bfd_elf_generic_reloc, /* special_function */
1354 "R_ARM_THM_MOVW_BREL", /* name */
0a1b45a2 1355 false, /* partial_inplace */
c19d1205
ZW
1356 0x040f70ff, /* src_mask */
1357 0x040f70ff, /* dst_mask */
0a1b45a2 1358 false), /* pcrel_offset */
c19d1205 1359
0855e32b
NS
1360 HOWTO (R_ARM_TLS_GOTDESC, /* type */
1361 0, /* rightshift */
1362 2, /* size (0 = byte, 1 = short, 2 = long) */
1363 32, /* bitsize */
0a1b45a2 1364 false, /* pc_relative */
0855e32b
NS
1365 0, /* bitpos */
1366 complain_overflow_bitfield,/* complain_on_overflow */
1367 NULL, /* special_function */
1368 "R_ARM_TLS_GOTDESC", /* name */
0a1b45a2 1369 true, /* partial_inplace */
0855e32b
NS
1370 0xffffffff, /* src_mask */
1371 0xffffffff, /* dst_mask */
0a1b45a2 1372 false), /* pcrel_offset */
0855e32b
NS
1373
1374 HOWTO (R_ARM_TLS_CALL, /* type */
1375 0, /* rightshift */
1376 2, /* size (0 = byte, 1 = short, 2 = long) */
1377 24, /* bitsize */
0a1b45a2 1378 false, /* pc_relative */
0855e32b
NS
1379 0, /* bitpos */
1380 complain_overflow_dont,/* complain_on_overflow */
1381 bfd_elf_generic_reloc, /* special_function */
1382 "R_ARM_TLS_CALL", /* name */
0a1b45a2 1383 false, /* partial_inplace */
0855e32b
NS
1384 0x00ffffff, /* src_mask */
1385 0x00ffffff, /* dst_mask */
0a1b45a2 1386 false), /* pcrel_offset */
0855e32b
NS
1387
1388 HOWTO (R_ARM_TLS_DESCSEQ, /* type */
1389 0, /* rightshift */
1390 2, /* size (0 = byte, 1 = short, 2 = long) */
1391 0, /* bitsize */
0a1b45a2 1392 false, /* pc_relative */
0855e32b 1393 0, /* bitpos */
821e059c 1394 complain_overflow_dont,/* complain_on_overflow */
0855e32b
NS
1395 bfd_elf_generic_reloc, /* special_function */
1396 "R_ARM_TLS_DESCSEQ", /* name */
0a1b45a2 1397 false, /* partial_inplace */
0855e32b
NS
1398 0x00000000, /* src_mask */
1399 0x00000000, /* dst_mask */
0a1b45a2 1400 false), /* pcrel_offset */
0855e32b
NS
1401
1402 HOWTO (R_ARM_THM_TLS_CALL, /* type */
1403 0, /* rightshift */
1404 2, /* size (0 = byte, 1 = short, 2 = long) */
1405 24, /* bitsize */
0a1b45a2 1406 false, /* pc_relative */
0855e32b
NS
1407 0, /* bitpos */
1408 complain_overflow_dont,/* complain_on_overflow */
1409 bfd_elf_generic_reloc, /* special_function */
1410 "R_ARM_THM_TLS_CALL", /* name */
0a1b45a2 1411 false, /* partial_inplace */
0855e32b
NS
1412 0x07ff07ff, /* src_mask */
1413 0x07ff07ff, /* dst_mask */
0a1b45a2 1414 false), /* pcrel_offset */
c19d1205
ZW
1415
1416 HOWTO (R_ARM_PLT32_ABS, /* type */
1417 0, /* rightshift */
1418 2, /* size (0 = byte, 1 = short, 2 = long) */
1419 32, /* bitsize */
0a1b45a2 1420 false, /* pc_relative */
c19d1205
ZW
1421 0, /* bitpos */
1422 complain_overflow_dont,/* complain_on_overflow */
1423 bfd_elf_generic_reloc, /* special_function */
1424 "R_ARM_PLT32_ABS", /* name */
0a1b45a2 1425 false, /* partial_inplace */
c19d1205
ZW
1426 0xffffffff, /* src_mask */
1427 0xffffffff, /* dst_mask */
0a1b45a2 1428 false), /* pcrel_offset */
c19d1205
ZW
1429
1430 HOWTO (R_ARM_GOT_ABS, /* type */
1431 0, /* rightshift */
1432 2, /* size (0 = byte, 1 = short, 2 = long) */
1433 32, /* bitsize */
0a1b45a2 1434 false, /* pc_relative */
c19d1205
ZW
1435 0, /* bitpos */
1436 complain_overflow_dont,/* complain_on_overflow */
1437 bfd_elf_generic_reloc, /* special_function */
1438 "R_ARM_GOT_ABS", /* name */
0a1b45a2 1439 false, /* partial_inplace */
c19d1205
ZW
1440 0xffffffff, /* src_mask */
1441 0xffffffff, /* dst_mask */
0a1b45a2 1442 false), /* pcrel_offset */
c19d1205
ZW
1443
1444 HOWTO (R_ARM_GOT_PREL, /* type */
1445 0, /* rightshift */
1446 2, /* size (0 = byte, 1 = short, 2 = long) */
1447 32, /* bitsize */
0a1b45a2 1448 true, /* pc_relative */
c19d1205
ZW
1449 0, /* bitpos */
1450 complain_overflow_dont, /* complain_on_overflow */
1451 bfd_elf_generic_reloc, /* special_function */
1452 "R_ARM_GOT_PREL", /* name */
0a1b45a2 1453 false, /* partial_inplace */
c19d1205
ZW
1454 0xffffffff, /* src_mask */
1455 0xffffffff, /* dst_mask */
0a1b45a2 1456 true), /* pcrel_offset */
c19d1205
ZW
1457
1458 HOWTO (R_ARM_GOT_BREL12, /* type */
1459 0, /* rightshift */
1460 2, /* size (0 = byte, 1 = short, 2 = long) */
1461 12, /* bitsize */
0a1b45a2 1462 false, /* pc_relative */
c19d1205
ZW
1463 0, /* bitpos */
1464 complain_overflow_bitfield,/* complain_on_overflow */
1465 bfd_elf_generic_reloc, /* special_function */
1466 "R_ARM_GOT_BREL12", /* name */
0a1b45a2 1467 false, /* partial_inplace */
c19d1205
ZW
1468 0x00000fff, /* src_mask */
1469 0x00000fff, /* dst_mask */
0a1b45a2 1470 false), /* pcrel_offset */
c19d1205
ZW
1471
1472 HOWTO (R_ARM_GOTOFF12, /* type */
1473 0, /* rightshift */
1474 2, /* size (0 = byte, 1 = short, 2 = long) */
1475 12, /* bitsize */
0a1b45a2 1476 false, /* pc_relative */
c19d1205
ZW
1477 0, /* bitpos */
1478 complain_overflow_bitfield,/* complain_on_overflow */
1479 bfd_elf_generic_reloc, /* special_function */
1480 "R_ARM_GOTOFF12", /* name */
0a1b45a2 1481 false, /* partial_inplace */
c19d1205
ZW
1482 0x00000fff, /* src_mask */
1483 0x00000fff, /* dst_mask */
0a1b45a2 1484 false), /* pcrel_offset */
c19d1205 1485
07d6d2b8 1486 EMPTY_HOWTO (R_ARM_GOTRELAX), /* reserved for future GOT-load optimizations */
c19d1205
ZW
1487
1488 /* GNU extension to record C++ vtable member usage */
07d6d2b8
AM
1489 HOWTO (R_ARM_GNU_VTENTRY, /* type */
1490 0, /* rightshift */
1491 2, /* size (0 = byte, 1 = short, 2 = long) */
1492 0, /* bitsize */
0a1b45a2 1493 false, /* pc_relative */
07d6d2b8 1494 0, /* bitpos */
99059e56 1495 complain_overflow_dont, /* complain_on_overflow */
07d6d2b8
AM
1496 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
1497 "R_ARM_GNU_VTENTRY", /* name */
0a1b45a2 1498 false, /* partial_inplace */
07d6d2b8
AM
1499 0, /* src_mask */
1500 0, /* dst_mask */
0a1b45a2 1501 false), /* pcrel_offset */
c19d1205
ZW
1502
1503 /* GNU extension to record C++ vtable hierarchy */
1504 HOWTO (R_ARM_GNU_VTINHERIT, /* type */
07d6d2b8
AM
1505 0, /* rightshift */
1506 2, /* size (0 = byte, 1 = short, 2 = long) */
1507 0, /* bitsize */
0a1b45a2 1508 false, /* pc_relative */
07d6d2b8 1509 0, /* bitpos */
99059e56 1510 complain_overflow_dont, /* complain_on_overflow */
07d6d2b8 1511 NULL, /* special_function */
99059e56 1512 "R_ARM_GNU_VTINHERIT", /* name */
0a1b45a2 1513 false, /* partial_inplace */
07d6d2b8
AM
1514 0, /* src_mask */
1515 0, /* dst_mask */
0a1b45a2 1516 false), /* pcrel_offset */
c19d1205
ZW
1517
1518 HOWTO (R_ARM_THM_JUMP11, /* type */
1519 1, /* rightshift */
1520 1, /* size (0 = byte, 1 = short, 2 = long) */
1521 11, /* bitsize */
0a1b45a2 1522 true, /* pc_relative */
c19d1205
ZW
1523 0, /* bitpos */
1524 complain_overflow_signed, /* complain_on_overflow */
1525 bfd_elf_generic_reloc, /* special_function */
1526 "R_ARM_THM_JUMP11", /* name */
0a1b45a2 1527 false, /* partial_inplace */
c19d1205
ZW
1528 0x000007ff, /* src_mask */
1529 0x000007ff, /* dst_mask */
0a1b45a2 1530 true), /* pcrel_offset */
c19d1205
ZW
1531
1532 HOWTO (R_ARM_THM_JUMP8, /* type */
1533 1, /* rightshift */
1534 1, /* size (0 = byte, 1 = short, 2 = long) */
1535 8, /* bitsize */
0a1b45a2 1536 true, /* pc_relative */
c19d1205
ZW
1537 0, /* bitpos */
1538 complain_overflow_signed, /* complain_on_overflow */
1539 bfd_elf_generic_reloc, /* special_function */
1540 "R_ARM_THM_JUMP8", /* name */
0a1b45a2 1541 false, /* partial_inplace */
c19d1205
ZW
1542 0x000000ff, /* src_mask */
1543 0x000000ff, /* dst_mask */
0a1b45a2 1544 true), /* pcrel_offset */
ba93b8ac 1545
c19d1205
ZW
1546 /* TLS relocations */
1547 HOWTO (R_ARM_TLS_GD32, /* type */
07d6d2b8
AM
1548 0, /* rightshift */
1549 2, /* size (0 = byte, 1 = short, 2 = long) */
1550 32, /* bitsize */
0a1b45a2 1551 false, /* pc_relative */
07d6d2b8 1552 0, /* bitpos */
99059e56
RM
1553 complain_overflow_bitfield,/* complain_on_overflow */
1554 NULL, /* special_function */
1555 "R_ARM_TLS_GD32", /* name */
0a1b45a2 1556 true, /* partial_inplace */
99059e56
RM
1557 0xffffffff, /* src_mask */
1558 0xffffffff, /* dst_mask */
0a1b45a2 1559 false), /* pcrel_offset */
ba93b8ac 1560
ba93b8ac 1561 HOWTO (R_ARM_TLS_LDM32, /* type */
07d6d2b8
AM
1562 0, /* rightshift */
1563 2, /* size (0 = byte, 1 = short, 2 = long) */
1564 32, /* bitsize */
0a1b45a2 1565 false, /* pc_relative */
07d6d2b8 1566 0, /* bitpos */
99059e56
RM
1567 complain_overflow_bitfield,/* complain_on_overflow */
1568 bfd_elf_generic_reloc, /* special_function */
1569 "R_ARM_TLS_LDM32", /* name */
0a1b45a2 1570 true, /* partial_inplace */
99059e56
RM
1571 0xffffffff, /* src_mask */
1572 0xffffffff, /* dst_mask */
0a1b45a2 1573 false), /* pcrel_offset */
ba93b8ac 1574
c19d1205 1575 HOWTO (R_ARM_TLS_LDO32, /* type */
07d6d2b8
AM
1576 0, /* rightshift */
1577 2, /* size (0 = byte, 1 = short, 2 = long) */
1578 32, /* bitsize */
0a1b45a2 1579 false, /* pc_relative */
07d6d2b8 1580 0, /* bitpos */
99059e56
RM
1581 complain_overflow_bitfield,/* complain_on_overflow */
1582 bfd_elf_generic_reloc, /* special_function */
1583 "R_ARM_TLS_LDO32", /* name */
0a1b45a2 1584 true, /* partial_inplace */
99059e56
RM
1585 0xffffffff, /* src_mask */
1586 0xffffffff, /* dst_mask */
0a1b45a2 1587 false), /* pcrel_offset */
ba93b8ac 1588
ba93b8ac 1589 HOWTO (R_ARM_TLS_IE32, /* type */
07d6d2b8
AM
1590 0, /* rightshift */
1591 2, /* size (0 = byte, 1 = short, 2 = long) */
1592 32, /* bitsize */
0a1b45a2 1593 false, /* pc_relative */
07d6d2b8 1594 0, /* bitpos */
99059e56
RM
1595 complain_overflow_bitfield,/* complain_on_overflow */
1596 NULL, /* special_function */
1597 "R_ARM_TLS_IE32", /* name */
0a1b45a2 1598 true, /* partial_inplace */
99059e56
RM
1599 0xffffffff, /* src_mask */
1600 0xffffffff, /* dst_mask */
0a1b45a2 1601 false), /* pcrel_offset */
7f266840 1602
c19d1205 1603 HOWTO (R_ARM_TLS_LE32, /* type */
07d6d2b8
AM
1604 0, /* rightshift */
1605 2, /* size (0 = byte, 1 = short, 2 = long) */
1606 32, /* bitsize */
0a1b45a2 1607 false, /* pc_relative */
07d6d2b8 1608 0, /* bitpos */
99059e56 1609 complain_overflow_bitfield,/* complain_on_overflow */
07d6d2b8 1610 NULL, /* special_function */
99059e56 1611 "R_ARM_TLS_LE32", /* name */
0a1b45a2 1612 true, /* partial_inplace */
99059e56
RM
1613 0xffffffff, /* src_mask */
1614 0xffffffff, /* dst_mask */
0a1b45a2 1615 false), /* pcrel_offset */
7f266840 1616
c19d1205
ZW
1617 HOWTO (R_ARM_TLS_LDO12, /* type */
1618 0, /* rightshift */
1619 2, /* size (0 = byte, 1 = short, 2 = long) */
1620 12, /* bitsize */
0a1b45a2 1621 false, /* pc_relative */
7f266840 1622 0, /* bitpos */
c19d1205 1623 complain_overflow_bitfield,/* complain_on_overflow */
7f266840 1624 bfd_elf_generic_reloc, /* special_function */
c19d1205 1625 "R_ARM_TLS_LDO12", /* name */
0a1b45a2 1626 false, /* partial_inplace */
c19d1205
ZW
1627 0x00000fff, /* src_mask */
1628 0x00000fff, /* dst_mask */
0a1b45a2 1629 false), /* pcrel_offset */
7f266840 1630
c19d1205
ZW
1631 HOWTO (R_ARM_TLS_LE12, /* type */
1632 0, /* rightshift */
1633 2, /* size (0 = byte, 1 = short, 2 = long) */
1634 12, /* bitsize */
0a1b45a2 1635 false, /* pc_relative */
7f266840 1636 0, /* bitpos */
c19d1205 1637 complain_overflow_bitfield,/* complain_on_overflow */
7f266840 1638 bfd_elf_generic_reloc, /* special_function */
c19d1205 1639 "R_ARM_TLS_LE12", /* name */
0a1b45a2 1640 false, /* partial_inplace */
c19d1205
ZW
1641 0x00000fff, /* src_mask */
1642 0x00000fff, /* dst_mask */
0a1b45a2 1643 false), /* pcrel_offset */
7f266840 1644
c19d1205 1645 HOWTO (R_ARM_TLS_IE12GP, /* type */
7f266840
DJ
1646 0, /* rightshift */
1647 2, /* size (0 = byte, 1 = short, 2 = long) */
c19d1205 1648 12, /* bitsize */
0a1b45a2 1649 false, /* pc_relative */
7f266840 1650 0, /* bitpos */
c19d1205 1651 complain_overflow_bitfield,/* complain_on_overflow */
7f266840 1652 bfd_elf_generic_reloc, /* special_function */
c19d1205 1653 "R_ARM_TLS_IE12GP", /* name */
0a1b45a2 1654 false, /* partial_inplace */
c19d1205
ZW
1655 0x00000fff, /* src_mask */
1656 0x00000fff, /* dst_mask */
0a1b45a2 1657 false), /* pcrel_offset */
0855e32b 1658
34e77a92 1659 /* 112-127 private relocations. */
0855e32b
NS
1660 EMPTY_HOWTO (112),
1661 EMPTY_HOWTO (113),
1662 EMPTY_HOWTO (114),
1663 EMPTY_HOWTO (115),
1664 EMPTY_HOWTO (116),
1665 EMPTY_HOWTO (117),
1666 EMPTY_HOWTO (118),
1667 EMPTY_HOWTO (119),
1668 EMPTY_HOWTO (120),
1669 EMPTY_HOWTO (121),
1670 EMPTY_HOWTO (122),
1671 EMPTY_HOWTO (123),
1672 EMPTY_HOWTO (124),
1673 EMPTY_HOWTO (125),
1674 EMPTY_HOWTO (126),
1675 EMPTY_HOWTO (127),
34e77a92
RS
1676
1677 /* R_ARM_ME_TOO, obsolete. */
0855e32b
NS
1678 EMPTY_HOWTO (128),
1679
1680 HOWTO (R_ARM_THM_TLS_DESCSEQ, /* type */
1681 0, /* rightshift */
1682 1, /* size (0 = byte, 1 = short, 2 = long) */
1683 0, /* bitsize */
0a1b45a2 1684 false, /* pc_relative */
0855e32b 1685 0, /* bitpos */
821e059c 1686 complain_overflow_dont,/* complain_on_overflow */
0855e32b
NS
1687 bfd_elf_generic_reloc, /* special_function */
1688 "R_ARM_THM_TLS_DESCSEQ",/* name */
0a1b45a2 1689 false, /* partial_inplace */
0855e32b
NS
1690 0x00000000, /* src_mask */
1691 0x00000000, /* dst_mask */
0a1b45a2 1692 false), /* pcrel_offset */
72d98d16
MG
1693 EMPTY_HOWTO (130),
1694 EMPTY_HOWTO (131),
1695 HOWTO (R_ARM_THM_ALU_ABS_G0_NC,/* type. */
1696 0, /* rightshift. */
1697 1, /* size (0 = byte, 1 = short, 2 = long). */
1698 16, /* bitsize. */
0a1b45a2 1699 false, /* pc_relative. */
72d98d16
MG
1700 0, /* bitpos. */
1701 complain_overflow_bitfield,/* complain_on_overflow. */
1702 bfd_elf_generic_reloc, /* special_function. */
1703 "R_ARM_THM_ALU_ABS_G0_NC",/* name. */
0a1b45a2 1704 false, /* partial_inplace. */
72d98d16
MG
1705 0x00000000, /* src_mask. */
1706 0x00000000, /* dst_mask. */
0a1b45a2 1707 false), /* pcrel_offset. */
72d98d16
MG
1708 HOWTO (R_ARM_THM_ALU_ABS_G1_NC,/* type. */
1709 0, /* rightshift. */
1710 1, /* size (0 = byte, 1 = short, 2 = long). */
1711 16, /* bitsize. */
0a1b45a2 1712 false, /* pc_relative. */
72d98d16
MG
1713 0, /* bitpos. */
1714 complain_overflow_bitfield,/* complain_on_overflow. */
1715 bfd_elf_generic_reloc, /* special_function. */
1716 "R_ARM_THM_ALU_ABS_G1_NC",/* name. */
0a1b45a2 1717 false, /* partial_inplace. */
72d98d16
MG
1718 0x00000000, /* src_mask. */
1719 0x00000000, /* dst_mask. */
0a1b45a2 1720 false), /* pcrel_offset. */
72d98d16
MG
1721 HOWTO (R_ARM_THM_ALU_ABS_G2_NC,/* type. */
1722 0, /* rightshift. */
1723 1, /* size (0 = byte, 1 = short, 2 = long). */
1724 16, /* bitsize. */
0a1b45a2 1725 false, /* pc_relative. */
72d98d16
MG
1726 0, /* bitpos. */
1727 complain_overflow_bitfield,/* complain_on_overflow. */
1728 bfd_elf_generic_reloc, /* special_function. */
1729 "R_ARM_THM_ALU_ABS_G2_NC",/* name. */
0a1b45a2 1730 false, /* partial_inplace. */
72d98d16
MG
1731 0x00000000, /* src_mask. */
1732 0x00000000, /* dst_mask. */
0a1b45a2 1733 false), /* pcrel_offset. */
72d98d16
MG
1734 HOWTO (R_ARM_THM_ALU_ABS_G3_NC,/* type. */
1735 0, /* rightshift. */
1736 1, /* size (0 = byte, 1 = short, 2 = long). */
1737 16, /* bitsize. */
0a1b45a2 1738 false, /* pc_relative. */
72d98d16
MG
1739 0, /* bitpos. */
1740 complain_overflow_bitfield,/* complain_on_overflow. */
1741 bfd_elf_generic_reloc, /* special_function. */
1742 "R_ARM_THM_ALU_ABS_G3_NC",/* name. */
0a1b45a2 1743 false, /* partial_inplace. */
72d98d16
MG
1744 0x00000000, /* src_mask. */
1745 0x00000000, /* dst_mask. */
0a1b45a2 1746 false), /* pcrel_offset. */
e5d6e09e
AV
1747 /* Relocations for Armv8.1-M Mainline. */
1748 HOWTO (R_ARM_THM_BF16, /* type. */
1749 0, /* rightshift. */
1750 1, /* size (0 = byte, 1 = short, 2 = long). */
1751 16, /* bitsize. */
0a1b45a2 1752 true, /* pc_relative. */
e5d6e09e
AV
1753 0, /* bitpos. */
1754 complain_overflow_dont,/* do not complain_on_overflow. */
1755 bfd_elf_generic_reloc, /* special_function. */
1756 "R_ARM_THM_BF16", /* name. */
0a1b45a2 1757 false, /* partial_inplace. */
e5d6e09e
AV
1758 0x001f0ffe, /* src_mask. */
1759 0x001f0ffe, /* dst_mask. */
0a1b45a2 1760 true), /* pcrel_offset. */
1889da70
AV
1761 HOWTO (R_ARM_THM_BF12, /* type. */
1762 0, /* rightshift. */
1763 1, /* size (0 = byte, 1 = short, 2 = long). */
1764 12, /* bitsize. */
0a1b45a2 1765 true, /* pc_relative. */
1889da70
AV
1766 0, /* bitpos. */
1767 complain_overflow_dont,/* do not complain_on_overflow. */
1768 bfd_elf_generic_reloc, /* special_function. */
1769 "R_ARM_THM_BF12", /* name. */
0a1b45a2 1770 false, /* partial_inplace. */
1889da70
AV
1771 0x00010ffe, /* src_mask. */
1772 0x00010ffe, /* dst_mask. */
0a1b45a2 1773 true), /* pcrel_offset. */
1caf72a5
AV
1774 HOWTO (R_ARM_THM_BF18, /* type. */
1775 0, /* rightshift. */
1776 1, /* size (0 = byte, 1 = short, 2 = long). */
1777 18, /* bitsize. */
0a1b45a2 1778 true, /* pc_relative. */
1caf72a5
AV
1779 0, /* bitpos. */
1780 complain_overflow_dont,/* do not complain_on_overflow. */
1781 bfd_elf_generic_reloc, /* special_function. */
1782 "R_ARM_THM_BF18", /* name. */
0a1b45a2 1783 false, /* partial_inplace. */
1caf72a5
AV
1784 0x007f0ffe, /* src_mask. */
1785 0x007f0ffe, /* dst_mask. */
0a1b45a2 1786 true), /* pcrel_offset. */
c19d1205
ZW
1787};
1788
34e77a92 1789/* 160 onwards: */
5c5a4843 1790static reloc_howto_type elf32_arm_howto_table_2[8] =
34e77a92
RS
1791{
1792 HOWTO (R_ARM_IRELATIVE, /* type */
07d6d2b8
AM
1793 0, /* rightshift */
1794 2, /* size (0 = byte, 1 = short, 2 = long) */
1795 32, /* bitsize */
0a1b45a2 1796 false, /* pc_relative */
07d6d2b8 1797 0, /* bitpos */
99059e56
RM
1798 complain_overflow_bitfield,/* complain_on_overflow */
1799 bfd_elf_generic_reloc, /* special_function */
1800 "R_ARM_IRELATIVE", /* name */
0a1b45a2 1801 true, /* partial_inplace */
99059e56
RM
1802 0xffffffff, /* src_mask */
1803 0xffffffff, /* dst_mask */
0a1b45a2 1804 false), /* pcrel_offset */
188fd7ae
CL
1805 HOWTO (R_ARM_GOTFUNCDESC, /* type */
1806 0, /* rightshift */
1807 2, /* size (0 = byte, 1 = short, 2 = long) */
1808 32, /* bitsize */
0a1b45a2 1809 false, /* pc_relative */
188fd7ae
CL
1810 0, /* bitpos */
1811 complain_overflow_bitfield,/* complain_on_overflow */
1812 bfd_elf_generic_reloc, /* special_function */
1813 "R_ARM_GOTFUNCDESC", /* name */
0a1b45a2 1814 false, /* partial_inplace */
188fd7ae
CL
1815 0, /* src_mask */
1816 0xffffffff, /* dst_mask */
0a1b45a2 1817 false), /* pcrel_offset */
188fd7ae
CL
1818 HOWTO (R_ARM_GOTOFFFUNCDESC, /* type */
1819 0, /* rightshift */
1820 2, /* size (0 = byte, 1 = short, 2 = long) */
1821 32, /* bitsize */
0a1b45a2 1822 false, /* pc_relative */
188fd7ae
CL
1823 0, /* bitpos */
1824 complain_overflow_bitfield,/* complain_on_overflow */
1825 bfd_elf_generic_reloc, /* special_function */
1826 "R_ARM_GOTOFFFUNCDESC",/* name */
0a1b45a2 1827 false, /* partial_inplace */
188fd7ae
CL
1828 0, /* src_mask */
1829 0xffffffff, /* dst_mask */
0a1b45a2 1830 false), /* pcrel_offset */
188fd7ae
CL
1831 HOWTO (R_ARM_FUNCDESC, /* type */
1832 0, /* rightshift */
1833 2, /* size (0 = byte, 1 = short, 2 = long) */
1834 32, /* bitsize */
0a1b45a2 1835 false, /* pc_relative */
188fd7ae
CL
1836 0, /* bitpos */
1837 complain_overflow_bitfield,/* complain_on_overflow */
1838 bfd_elf_generic_reloc, /* special_function */
1839 "R_ARM_FUNCDESC", /* name */
0a1b45a2 1840 false, /* partial_inplace */
188fd7ae
CL
1841 0, /* src_mask */
1842 0xffffffff, /* dst_mask */
0a1b45a2 1843 false), /* pcrel_offset */
188fd7ae
CL
1844 HOWTO (R_ARM_FUNCDESC_VALUE, /* type */
1845 0, /* rightshift */
1846 2, /* size (0 = byte, 1 = short, 2 = long) */
1847 64, /* bitsize */
0a1b45a2 1848 false, /* pc_relative */
188fd7ae
CL
1849 0, /* bitpos */
1850 complain_overflow_bitfield,/* complain_on_overflow */
1851 bfd_elf_generic_reloc, /* special_function */
1852 "R_ARM_FUNCDESC_VALUE",/* name */
0a1b45a2 1853 false, /* partial_inplace */
188fd7ae
CL
1854 0, /* src_mask */
1855 0xffffffff, /* dst_mask */
0a1b45a2 1856 false), /* pcrel_offset */
5c5a4843
CL
1857 HOWTO (R_ARM_TLS_GD32_FDPIC, /* type */
1858 0, /* rightshift */
1859 2, /* size (0 = byte, 1 = short, 2 = long) */
1860 32, /* bitsize */
0a1b45a2 1861 false, /* pc_relative */
5c5a4843
CL
1862 0, /* bitpos */
1863 complain_overflow_bitfield,/* complain_on_overflow */
1864 bfd_elf_generic_reloc, /* special_function */
1865 "R_ARM_TLS_GD32_FDPIC",/* name */
0a1b45a2 1866 false, /* partial_inplace */
5c5a4843
CL
1867 0, /* src_mask */
1868 0xffffffff, /* dst_mask */
0a1b45a2 1869 false), /* pcrel_offset */
5c5a4843
CL
1870 HOWTO (R_ARM_TLS_LDM32_FDPIC, /* type */
1871 0, /* rightshift */
1872 2, /* size (0 = byte, 1 = short, 2 = long) */
1873 32, /* bitsize */
0a1b45a2 1874 false, /* pc_relative */
5c5a4843
CL
1875 0, /* bitpos */
1876 complain_overflow_bitfield,/* complain_on_overflow */
1877 bfd_elf_generic_reloc, /* special_function */
1878 "R_ARM_TLS_LDM32_FDPIC",/* name */
0a1b45a2 1879 false, /* partial_inplace */
5c5a4843
CL
1880 0, /* src_mask */
1881 0xffffffff, /* dst_mask */
0a1b45a2 1882 false), /* pcrel_offset */
5c5a4843
CL
1883 HOWTO (R_ARM_TLS_IE32_FDPIC, /* type */
1884 0, /* rightshift */
1885 2, /* size (0 = byte, 1 = short, 2 = long) */
1886 32, /* bitsize */
0a1b45a2 1887 false, /* pc_relative */
5c5a4843
CL
1888 0, /* bitpos */
1889 complain_overflow_bitfield,/* complain_on_overflow */
1890 bfd_elf_generic_reloc, /* special_function */
1891 "R_ARM_TLS_IE32_FDPIC",/* name */
0a1b45a2 1892 false, /* partial_inplace */
5c5a4843
CL
1893 0, /* src_mask */
1894 0xffffffff, /* dst_mask */
0a1b45a2 1895 false), /* pcrel_offset */
34e77a92 1896};
c19d1205 1897
34e77a92
RS
1898/* 249-255 extended, currently unused, relocations: */
1899static reloc_howto_type elf32_arm_howto_table_3[4] =
7f266840
DJ
1900{
1901 HOWTO (R_ARM_RREL32, /* type */
1902 0, /* rightshift */
1903 0, /* size (0 = byte, 1 = short, 2 = long) */
1904 0, /* bitsize */
0a1b45a2 1905 false, /* pc_relative */
7f266840
DJ
1906 0, /* bitpos */
1907 complain_overflow_dont,/* complain_on_overflow */
1908 bfd_elf_generic_reloc, /* special_function */
1909 "R_ARM_RREL32", /* name */
0a1b45a2 1910 false, /* partial_inplace */
7f266840
DJ
1911 0, /* src_mask */
1912 0, /* dst_mask */
0a1b45a2 1913 false), /* pcrel_offset */
7f266840
DJ
1914
1915 HOWTO (R_ARM_RABS32, /* type */
1916 0, /* rightshift */
1917 0, /* size (0 = byte, 1 = short, 2 = long) */
1918 0, /* bitsize */
0a1b45a2 1919 false, /* pc_relative */
7f266840
DJ
1920 0, /* bitpos */
1921 complain_overflow_dont,/* complain_on_overflow */
1922 bfd_elf_generic_reloc, /* special_function */
1923 "R_ARM_RABS32", /* name */
0a1b45a2 1924 false, /* partial_inplace */
7f266840
DJ
1925 0, /* src_mask */
1926 0, /* dst_mask */
0a1b45a2 1927 false), /* pcrel_offset */
7f266840
DJ
1928
1929 HOWTO (R_ARM_RPC24, /* type */
1930 0, /* rightshift */
1931 0, /* size (0 = byte, 1 = short, 2 = long) */
1932 0, /* bitsize */
0a1b45a2 1933 false, /* pc_relative */
7f266840
DJ
1934 0, /* bitpos */
1935 complain_overflow_dont,/* complain_on_overflow */
1936 bfd_elf_generic_reloc, /* special_function */
1937 "R_ARM_RPC24", /* name */
0a1b45a2 1938 false, /* partial_inplace */
7f266840
DJ
1939 0, /* src_mask */
1940 0, /* dst_mask */
0a1b45a2 1941 false), /* pcrel_offset */
7f266840
DJ
1942
1943 HOWTO (R_ARM_RBASE, /* type */
1944 0, /* rightshift */
1945 0, /* size (0 = byte, 1 = short, 2 = long) */
1946 0, /* bitsize */
0a1b45a2 1947 false, /* pc_relative */
7f266840
DJ
1948 0, /* bitpos */
1949 complain_overflow_dont,/* complain_on_overflow */
1950 bfd_elf_generic_reloc, /* special_function */
1951 "R_ARM_RBASE", /* name */
0a1b45a2 1952 false, /* partial_inplace */
7f266840
DJ
1953 0, /* src_mask */
1954 0, /* dst_mask */
0a1b45a2 1955 false) /* pcrel_offset */
7f266840
DJ
1956};
1957
1958static reloc_howto_type *
1959elf32_arm_howto_from_type (unsigned int r_type)
1960{
906e58ca 1961 if (r_type < ARRAY_SIZE (elf32_arm_howto_table_1))
c19d1205 1962 return &elf32_arm_howto_table_1[r_type];
ba93b8ac 1963
188fd7ae
CL
1964 if (r_type >= R_ARM_IRELATIVE
1965 && r_type < R_ARM_IRELATIVE + ARRAY_SIZE (elf32_arm_howto_table_2))
34e77a92
RS
1966 return &elf32_arm_howto_table_2[r_type - R_ARM_IRELATIVE];
1967
c19d1205 1968 if (r_type >= R_ARM_RREL32
34e77a92
RS
1969 && r_type < R_ARM_RREL32 + ARRAY_SIZE (elf32_arm_howto_table_3))
1970 return &elf32_arm_howto_table_3[r_type - R_ARM_RREL32];
7f266840 1971
c19d1205 1972 return NULL;
7f266840
DJ
1973}
1974
0a1b45a2 1975static bool
f3185997 1976elf32_arm_info_to_howto (bfd * abfd, arelent * bfd_reloc,
7f266840
DJ
1977 Elf_Internal_Rela * elf_reloc)
1978{
1979 unsigned int r_type;
1980
1981 r_type = ELF32_R_TYPE (elf_reloc->r_info);
f3185997
NC
1982 if ((bfd_reloc->howto = elf32_arm_howto_from_type (r_type)) == NULL)
1983 {
1984 /* xgettext:c-format */
1985 _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
1986 abfd, r_type);
1987 bfd_set_error (bfd_error_bad_value);
0a1b45a2 1988 return false;
f3185997 1989 }
0a1b45a2 1990 return true;
7f266840
DJ
1991}
1992
1993struct elf32_arm_reloc_map
1994 {
1995 bfd_reloc_code_real_type bfd_reloc_val;
07d6d2b8 1996 unsigned char elf_reloc_val;
7f266840
DJ
1997 };
1998
1999/* All entries in this list must also be present in elf32_arm_howto_table. */
2000static const struct elf32_arm_reloc_map elf32_arm_reloc_map[] =
2001 {
07d6d2b8 2002 {BFD_RELOC_NONE, R_ARM_NONE},
7f266840 2003 {BFD_RELOC_ARM_PCREL_BRANCH, R_ARM_PC24},
39b41c9c
PB
2004 {BFD_RELOC_ARM_PCREL_CALL, R_ARM_CALL},
2005 {BFD_RELOC_ARM_PCREL_JUMP, R_ARM_JUMP24},
07d6d2b8
AM
2006 {BFD_RELOC_ARM_PCREL_BLX, R_ARM_XPC25},
2007 {BFD_RELOC_THUMB_PCREL_BLX, R_ARM_THM_XPC22},
2008 {BFD_RELOC_32, R_ARM_ABS32},
2009 {BFD_RELOC_32_PCREL, R_ARM_REL32},
2010 {BFD_RELOC_8, R_ARM_ABS8},
2011 {BFD_RELOC_16, R_ARM_ABS16},
2012 {BFD_RELOC_ARM_OFFSET_IMM, R_ARM_ABS12},
7f266840 2013 {BFD_RELOC_ARM_THUMB_OFFSET, R_ARM_THM_ABS5},
c19d1205
ZW
2014 {BFD_RELOC_THUMB_PCREL_BRANCH25, R_ARM_THM_JUMP24},
2015 {BFD_RELOC_THUMB_PCREL_BRANCH23, R_ARM_THM_CALL},
2016 {BFD_RELOC_THUMB_PCREL_BRANCH12, R_ARM_THM_JUMP11},
2017 {BFD_RELOC_THUMB_PCREL_BRANCH20, R_ARM_THM_JUMP19},
2018 {BFD_RELOC_THUMB_PCREL_BRANCH9, R_ARM_THM_JUMP8},
2019 {BFD_RELOC_THUMB_PCREL_BRANCH7, R_ARM_THM_JUMP6},
07d6d2b8
AM
2020 {BFD_RELOC_ARM_GLOB_DAT, R_ARM_GLOB_DAT},
2021 {BFD_RELOC_ARM_JUMP_SLOT, R_ARM_JUMP_SLOT},
2022 {BFD_RELOC_ARM_RELATIVE, R_ARM_RELATIVE},
2023 {BFD_RELOC_ARM_GOTOFF, R_ARM_GOTOFF32},
2024 {BFD_RELOC_ARM_GOTPC, R_ARM_GOTPC},
2025 {BFD_RELOC_ARM_GOT_PREL, R_ARM_GOT_PREL},
2026 {BFD_RELOC_ARM_GOT32, R_ARM_GOT32},
2027 {BFD_RELOC_ARM_PLT32, R_ARM_PLT32},
7f266840
DJ
2028 {BFD_RELOC_ARM_TARGET1, R_ARM_TARGET1},
2029 {BFD_RELOC_ARM_ROSEGREL32, R_ARM_ROSEGREL32},
2030 {BFD_RELOC_ARM_SBREL32, R_ARM_SBREL32},
2031 {BFD_RELOC_ARM_PREL31, R_ARM_PREL31},
ba93b8ac 2032 {BFD_RELOC_ARM_TARGET2, R_ARM_TARGET2},
07d6d2b8
AM
2033 {BFD_RELOC_ARM_PLT32, R_ARM_PLT32},
2034 {BFD_RELOC_ARM_TLS_GOTDESC, R_ARM_TLS_GOTDESC},
2035 {BFD_RELOC_ARM_TLS_CALL, R_ARM_TLS_CALL},
0855e32b 2036 {BFD_RELOC_ARM_THM_TLS_CALL, R_ARM_THM_TLS_CALL},
07d6d2b8 2037 {BFD_RELOC_ARM_TLS_DESCSEQ, R_ARM_TLS_DESCSEQ},
0855e32b 2038 {BFD_RELOC_ARM_THM_TLS_DESCSEQ, R_ARM_THM_TLS_DESCSEQ},
07d6d2b8 2039 {BFD_RELOC_ARM_TLS_DESC, R_ARM_TLS_DESC},
ba93b8ac
DJ
2040 {BFD_RELOC_ARM_TLS_GD32, R_ARM_TLS_GD32},
2041 {BFD_RELOC_ARM_TLS_LDO32, R_ARM_TLS_LDO32},
2042 {BFD_RELOC_ARM_TLS_LDM32, R_ARM_TLS_LDM32},
2043 {BFD_RELOC_ARM_TLS_DTPMOD32, R_ARM_TLS_DTPMOD32},
2044 {BFD_RELOC_ARM_TLS_DTPOFF32, R_ARM_TLS_DTPOFF32},
07d6d2b8
AM
2045 {BFD_RELOC_ARM_TLS_TPOFF32, R_ARM_TLS_TPOFF32},
2046 {BFD_RELOC_ARM_TLS_IE32, R_ARM_TLS_IE32},
2047 {BFD_RELOC_ARM_TLS_LE32, R_ARM_TLS_LE32},
2048 {BFD_RELOC_ARM_IRELATIVE, R_ARM_IRELATIVE},
188fd7ae
CL
2049 {BFD_RELOC_ARM_GOTFUNCDESC, R_ARM_GOTFUNCDESC},
2050 {BFD_RELOC_ARM_GOTOFFFUNCDESC, R_ARM_GOTOFFFUNCDESC},
2051 {BFD_RELOC_ARM_FUNCDESC, R_ARM_FUNCDESC},
2052 {BFD_RELOC_ARM_FUNCDESC_VALUE, R_ARM_FUNCDESC_VALUE},
5c5a4843
CL
2053 {BFD_RELOC_ARM_TLS_GD32_FDPIC, R_ARM_TLS_GD32_FDPIC},
2054 {BFD_RELOC_ARM_TLS_LDM32_FDPIC, R_ARM_TLS_LDM32_FDPIC},
2055 {BFD_RELOC_ARM_TLS_IE32_FDPIC, R_ARM_TLS_IE32_FDPIC},
c19d1205
ZW
2056 {BFD_RELOC_VTABLE_INHERIT, R_ARM_GNU_VTINHERIT},
2057 {BFD_RELOC_VTABLE_ENTRY, R_ARM_GNU_VTENTRY},
b6895b4f
PB
2058 {BFD_RELOC_ARM_MOVW, R_ARM_MOVW_ABS_NC},
2059 {BFD_RELOC_ARM_MOVT, R_ARM_MOVT_ABS},
2060 {BFD_RELOC_ARM_MOVW_PCREL, R_ARM_MOVW_PREL_NC},
2061 {BFD_RELOC_ARM_MOVT_PCREL, R_ARM_MOVT_PREL},
2062 {BFD_RELOC_ARM_THUMB_MOVW, R_ARM_THM_MOVW_ABS_NC},
2063 {BFD_RELOC_ARM_THUMB_MOVT, R_ARM_THM_MOVT_ABS},
2064 {BFD_RELOC_ARM_THUMB_MOVW_PCREL, R_ARM_THM_MOVW_PREL_NC},
2065 {BFD_RELOC_ARM_THUMB_MOVT_PCREL, R_ARM_THM_MOVT_PREL},
4962c51a
MS
2066 {BFD_RELOC_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0_NC},
2067 {BFD_RELOC_ARM_ALU_PC_G0, R_ARM_ALU_PC_G0},
2068 {BFD_RELOC_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1_NC},
2069 {BFD_RELOC_ARM_ALU_PC_G1, R_ARM_ALU_PC_G1},
2070 {BFD_RELOC_ARM_ALU_PC_G2, R_ARM_ALU_PC_G2},
2071 {BFD_RELOC_ARM_LDR_PC_G0, R_ARM_LDR_PC_G0},
2072 {BFD_RELOC_ARM_LDR_PC_G1, R_ARM_LDR_PC_G1},
2073 {BFD_RELOC_ARM_LDR_PC_G2, R_ARM_LDR_PC_G2},
2074 {BFD_RELOC_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G0},
2075 {BFD_RELOC_ARM_LDRS_PC_G1, R_ARM_LDRS_PC_G1},
2076 {BFD_RELOC_ARM_LDRS_PC_G2, R_ARM_LDRS_PC_G2},
2077 {BFD_RELOC_ARM_LDC_PC_G0, R_ARM_LDC_PC_G0},
2078 {BFD_RELOC_ARM_LDC_PC_G1, R_ARM_LDC_PC_G1},
2079 {BFD_RELOC_ARM_LDC_PC_G2, R_ARM_LDC_PC_G2},
2080 {BFD_RELOC_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0_NC},
2081 {BFD_RELOC_ARM_ALU_SB_G0, R_ARM_ALU_SB_G0},
2082 {BFD_RELOC_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1_NC},
2083 {BFD_RELOC_ARM_ALU_SB_G1, R_ARM_ALU_SB_G1},
2084 {BFD_RELOC_ARM_ALU_SB_G2, R_ARM_ALU_SB_G2},
2085 {BFD_RELOC_ARM_LDR_SB_G0, R_ARM_LDR_SB_G0},
2086 {BFD_RELOC_ARM_LDR_SB_G1, R_ARM_LDR_SB_G1},
2087 {BFD_RELOC_ARM_LDR_SB_G2, R_ARM_LDR_SB_G2},
2088 {BFD_RELOC_ARM_LDRS_SB_G0, R_ARM_LDRS_SB_G0},
2089 {BFD_RELOC_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G1},
2090 {BFD_RELOC_ARM_LDRS_SB_G2, R_ARM_LDRS_SB_G2},
2091 {BFD_RELOC_ARM_LDC_SB_G0, R_ARM_LDC_SB_G0},
2092 {BFD_RELOC_ARM_LDC_SB_G1, R_ARM_LDC_SB_G1},
845b51d6 2093 {BFD_RELOC_ARM_LDC_SB_G2, R_ARM_LDC_SB_G2},
72d98d16
MG
2094 {BFD_RELOC_ARM_V4BX, R_ARM_V4BX},
2095 {BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC, R_ARM_THM_ALU_ABS_G3_NC},
2096 {BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC, R_ARM_THM_ALU_ABS_G2_NC},
2097 {BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC, R_ARM_THM_ALU_ABS_G1_NC},
e5d6e09e 2098 {BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC, R_ARM_THM_ALU_ABS_G0_NC},
1caf72a5 2099 {BFD_RELOC_ARM_THUMB_BF17, R_ARM_THM_BF16},
1889da70 2100 {BFD_RELOC_ARM_THUMB_BF13, R_ARM_THM_BF12},
1caf72a5 2101 {BFD_RELOC_ARM_THUMB_BF19, R_ARM_THM_BF18}
7f266840
DJ
2102 };
2103
2104static reloc_howto_type *
f1c71a59
ZW
2105elf32_arm_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2106 bfd_reloc_code_real_type code)
7f266840
DJ
2107{
2108 unsigned int i;
8029a119 2109
906e58ca 2110 for (i = 0; i < ARRAY_SIZE (elf32_arm_reloc_map); i ++)
c19d1205
ZW
2111 if (elf32_arm_reloc_map[i].bfd_reloc_val == code)
2112 return elf32_arm_howto_from_type (elf32_arm_reloc_map[i].elf_reloc_val);
7f266840 2113
c19d1205 2114 return NULL;
7f266840
DJ
2115}
2116
157090f7
AM
2117static reloc_howto_type *
2118elf32_arm_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2119 const char *r_name)
2120{
2121 unsigned int i;
2122
906e58ca 2123 for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_1); i++)
157090f7
AM
2124 if (elf32_arm_howto_table_1[i].name != NULL
2125 && strcasecmp (elf32_arm_howto_table_1[i].name, r_name) == 0)
2126 return &elf32_arm_howto_table_1[i];
2127
906e58ca 2128 for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_2); i++)
157090f7
AM
2129 if (elf32_arm_howto_table_2[i].name != NULL
2130 && strcasecmp (elf32_arm_howto_table_2[i].name, r_name) == 0)
2131 return &elf32_arm_howto_table_2[i];
2132
34e77a92
RS
2133 for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_3); i++)
2134 if (elf32_arm_howto_table_3[i].name != NULL
2135 && strcasecmp (elf32_arm_howto_table_3[i].name, r_name) == 0)
2136 return &elf32_arm_howto_table_3[i];
2137
157090f7
AM
2138 return NULL;
2139}
2140
906e58ca
NC
2141/* Support for core dump NOTE sections. */
2142
0a1b45a2 2143static bool
f1c71a59 2144elf32_arm_nabi_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
7f266840
DJ
2145{
2146 int offset;
2147 size_t size;
2148
2149 switch (note->descsz)
2150 {
2151 default:
0a1b45a2 2152 return false;
7f266840 2153
8029a119 2154 case 148: /* Linux/ARM 32-bit. */
7f266840 2155 /* pr_cursig */
228e534f 2156 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
7f266840
DJ
2157
2158 /* pr_pid */
228e534f 2159 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
7f266840
DJ
2160
2161 /* pr_reg */
2162 offset = 72;
2163 size = 72;
2164
2165 break;
2166 }
2167
2168 /* Make a ".reg/999" section. */
2169 return _bfd_elfcore_make_pseudosection (abfd, ".reg",
2170 size, note->descpos + offset);
2171}
2172
0a1b45a2 2173static bool
f1c71a59 2174elf32_arm_nabi_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
7f266840
DJ
2175{
2176 switch (note->descsz)
2177 {
2178 default:
0a1b45a2 2179 return false;
7f266840 2180
8029a119 2181 case 124: /* Linux/ARM elf_prpsinfo. */
228e534f 2182 elf_tdata (abfd)->core->pid
4395ee08 2183 = bfd_get_32 (abfd, note->descdata + 12);
228e534f 2184 elf_tdata (abfd)->core->program
7f266840 2185 = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
228e534f 2186 elf_tdata (abfd)->core->command
7f266840
DJ
2187 = _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
2188 }
2189
2190 /* Note that for some reason, a spurious space is tacked
2191 onto the end of the args in some (at least one anyway)
2192 implementations, so strip it off if it exists. */
7f266840 2193 {
228e534f 2194 char *command = elf_tdata (abfd)->core->command;
7f266840
DJ
2195 int n = strlen (command);
2196
2197 if (0 < n && command[n - 1] == ' ')
2198 command[n - 1] = '\0';
2199 }
2200
0a1b45a2 2201 return true;
7f266840
DJ
2202}
2203
1f20dca5
UW
2204static char *
2205elf32_arm_nabi_write_core_note (bfd *abfd, char *buf, int *bufsiz,
2206 int note_type, ...)
2207{
2208 switch (note_type)
2209 {
2210 default:
2211 return NULL;
2212
2213 case NT_PRPSINFO:
2214 {
602f1657 2215 char data[124] ATTRIBUTE_NONSTRING;
1f20dca5
UW
2216 va_list ap;
2217
2218 va_start (ap, note_type);
2219 memset (data, 0, sizeof (data));
2220 strncpy (data + 28, va_arg (ap, const char *), 16);
be3e27bb 2221#if GCC_VERSION == 8000 || GCC_VERSION == 8001
95da9854 2222 DIAGNOSTIC_PUSH;
be3e27bb 2223 /* GCC 8.0 and 8.1 warn about 80 equals destination size with
95da9854
L
2224 -Wstringop-truncation:
2225 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85643
2226 */
95da9854
L
2227 DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION;
2228#endif
1f20dca5 2229 strncpy (data + 44, va_arg (ap, const char *), 80);
be3e27bb 2230#if GCC_VERSION == 8000 || GCC_VERSION == 8001
95da9854 2231 DIAGNOSTIC_POP;
fe75810f 2232#endif
1f20dca5
UW
2233 va_end (ap);
2234
2235 return elfcore_write_note (abfd, buf, bufsiz,
2236 "CORE", note_type, data, sizeof (data));
2237 }
2238
2239 case NT_PRSTATUS:
2240 {
2241 char data[148];
2242 va_list ap;
2243 long pid;
2244 int cursig;
2245 const void *greg;
2246
2247 va_start (ap, note_type);
2248 memset (data, 0, sizeof (data));
2249 pid = va_arg (ap, long);
2250 bfd_put_32 (abfd, pid, data + 24);
2251 cursig = va_arg (ap, int);
2252 bfd_put_16 (abfd, cursig, data + 12);
2253 greg = va_arg (ap, const void *);
2254 memcpy (data + 72, greg, 72);
2255 va_end (ap);
2256
2257 return elfcore_write_note (abfd, buf, bufsiz,
2258 "CORE", note_type, data, sizeof (data));
2259 }
2260 }
2261}
2262
07d6d2b8
AM
2263#define TARGET_LITTLE_SYM arm_elf32_le_vec
2264#define TARGET_LITTLE_NAME "elf32-littlearm"
2265#define TARGET_BIG_SYM arm_elf32_be_vec
2266#define TARGET_BIG_NAME "elf32-bigarm"
7f266840
DJ
2267
2268#define elf_backend_grok_prstatus elf32_arm_nabi_grok_prstatus
2269#define elf_backend_grok_psinfo elf32_arm_nabi_grok_psinfo
1f20dca5 2270#define elf_backend_write_core_note elf32_arm_nabi_write_core_note
7f266840 2271
252b5132
RH
2272typedef unsigned long int insn32;
2273typedef unsigned short int insn16;
2274
3a4a14e9
PB
2275/* In lieu of proper flags, assume all EABIv4 or later objects are
2276 interworkable. */
57e8b36a 2277#define INTERWORK_FLAG(abfd) \
3a4a14e9 2278 (EF_ARM_EABI_VERSION (elf_elfheader (abfd)->e_flags) >= EF_ARM_EABI_VER4 \
3e6b1042
DJ
2279 || (elf_elfheader (abfd)->e_flags & EF_ARM_INTERWORK) \
2280 || ((abfd)->flags & BFD_LINKER_CREATED))
9b485d32 2281
252b5132
RH
2282/* The linker script knows the section names for placement.
2283 The entry_names are used to do simple name mangling on the stubs.
2284 Given a function name, and its type, the stub can be found. The
9b485d32 2285 name can be changed. The only requirement is the %s be present. */
252b5132
RH
2286#define THUMB2ARM_GLUE_SECTION_NAME ".glue_7t"
2287#define THUMB2ARM_GLUE_ENTRY_NAME "__%s_from_thumb"
2288
2289#define ARM2THUMB_GLUE_SECTION_NAME ".glue_7"
2290#define ARM2THUMB_GLUE_ENTRY_NAME "__%s_from_arm"
2291
c7b8f16e
JB
2292#define VFP11_ERRATUM_VENEER_SECTION_NAME ".vfp11_veneer"
2293#define VFP11_ERRATUM_VENEER_ENTRY_NAME "__vfp11_veneer_%x"
2294
a504d23a
LA
2295#define STM32L4XX_ERRATUM_VENEER_SECTION_NAME ".text.stm32l4xx_veneer"
2296#define STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "__stm32l4xx_veneer_%x"
2297
845b51d6
PB
2298#define ARM_BX_GLUE_SECTION_NAME ".v4_bx"
2299#define ARM_BX_GLUE_ENTRY_NAME "__bx_r%d"
2300
7413f23f
DJ
2301#define STUB_ENTRY_NAME "__%s_veneer"
2302
4ba2ef8f
TP
2303#define CMSE_PREFIX "__acle_se_"
2304
4d83e8d9
CL
2305#define CMSE_STUB_NAME ".gnu.sgstubs"
2306
252b5132
RH
2307/* The name of the dynamic interpreter. This is put in the .interp
2308 section. */
2309#define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
2310
cb10292c
CL
2311/* FDPIC default stack size. */
2312#define DEFAULT_STACK_SIZE 0x8000
2313
0855e32b 2314static const unsigned long tls_trampoline [] =
b38cadfb
NC
2315{
2316 0xe08e0000, /* add r0, lr, r0 */
2317 0xe5901004, /* ldr r1, [r0,#4] */
2318 0xe12fff11, /* bx r1 */
2319};
0855e32b
NS
2320
2321static const unsigned long dl_tlsdesc_lazy_trampoline [] =
b38cadfb
NC
2322{
2323 0xe52d2004, /* push {r2} */
2324 0xe59f200c, /* ldr r2, [pc, #3f - . - 8] */
2325 0xe59f100c, /* ldr r1, [pc, #4f - . - 8] */
2326 0xe79f2002, /* 1: ldr r2, [pc, r2] */
2327 0xe081100f, /* 2: add r1, pc */
2328 0xe12fff12, /* bx r2 */
2329 0x00000014, /* 3: .word _GLOBAL_OFFSET_TABLE_ - 1b - 8
99059e56 2330 + dl_tlsdesc_lazy_resolver(GOT) */
b38cadfb
NC
2331 0x00000018, /* 4: .word _GLOBAL_OFFSET_TABLE_ - 2b - 8 */
2332};
0855e32b 2333
b4e87f2c
TC
2334/* NOTE: [Thumb nop sequence]
2335 When adding code that transitions from Thumb to Arm the instruction that
2336 should be used for the alignment padding should be 0xe7fd (b .-2) instead of
2337 a nop for performance reasons. */
2338
7801f98f
CL
2339/* ARM FDPIC PLT entry. */
2340/* The last 5 words contain PLT lazy fragment code and data. */
2341static const bfd_vma elf32_arm_fdpic_plt_entry [] =
2342 {
2343 0xe59fc008, /* ldr r12, .L1 */
2344 0xe08cc009, /* add r12, r12, r9 */
2345 0xe59c9004, /* ldr r9, [r12, #4] */
2346 0xe59cf000, /* ldr pc, [r12] */
2347 0x00000000, /* L1. .word foo(GOTOFFFUNCDESC) */
2348 0x00000000, /* L1. .word foo(funcdesc_value_reloc_offset) */
2349 0xe51fc00c, /* ldr r12, [pc, #-12] */
2350 0xe92d1000, /* push {r12} */
2351 0xe599c004, /* ldr r12, [r9, #4] */
2352 0xe599f000, /* ldr pc, [r9] */
2353 };
2354
59029f57
CL
2355/* Thumb FDPIC PLT entry. */
2356/* The last 5 words contain PLT lazy fragment code and data. */
2357static const bfd_vma elf32_arm_fdpic_thumb_plt_entry [] =
2358 {
2359 0xc00cf8df, /* ldr.w r12, .L1 */
2360 0x0c09eb0c, /* add.w r12, r12, r9 */
2361 0x9004f8dc, /* ldr.w r9, [r12, #4] */
2362 0xf000f8dc, /* ldr.w pc, [r12] */
2363 0x00000000, /* .L1 .word foo(GOTOFFFUNCDESC) */
2364 0x00000000, /* .L2 .word foo(funcdesc_value_reloc_offset) */
2365 0xc008f85f, /* ldr.w r12, .L2 */
2366 0xcd04f84d, /* push {r12} */
2367 0xc004f8d9, /* ldr.w r12, [r9, #4] */
2368 0xf000f8d9, /* ldr.w pc, [r9] */
2369 };
2370
5e681ec4
PB
2371#ifdef FOUR_WORD_PLT
2372
252b5132
RH
2373/* The first entry in a procedure linkage table looks like
2374 this. It is set up so that any shared library function that is
59f2c4e7 2375 called before the relocation has been set up calls the dynamic
9b485d32 2376 linker first. */
e5a52504 2377static const bfd_vma elf32_arm_plt0_entry [] =
b38cadfb
NC
2378{
2379 0xe52de004, /* str lr, [sp, #-4]! */
2380 0xe59fe010, /* ldr lr, [pc, #16] */
2381 0xe08fe00e, /* add lr, pc, lr */
2382 0xe5bef008, /* ldr pc, [lr, #8]! */
2383};
5e681ec4
PB
2384
2385/* Subsequent entries in a procedure linkage table look like
2386 this. */
e5a52504 2387static const bfd_vma elf32_arm_plt_entry [] =
b38cadfb
NC
2388{
2389 0xe28fc600, /* add ip, pc, #NN */
2390 0xe28cca00, /* add ip, ip, #NN */
2391 0xe5bcf000, /* ldr pc, [ip, #NN]! */
2392 0x00000000, /* unused */
2393};
5e681ec4 2394
eed94f8f 2395#else /* not FOUR_WORD_PLT */
5e681ec4 2396
5e681ec4
PB
2397/* The first entry in a procedure linkage table looks like
2398 this. It is set up so that any shared library function that is
2399 called before the relocation has been set up calls the dynamic
2400 linker first. */
e5a52504 2401static const bfd_vma elf32_arm_plt0_entry [] =
b38cadfb 2402{
07d6d2b8
AM
2403 0xe52de004, /* str lr, [sp, #-4]! */
2404 0xe59fe004, /* ldr lr, [pc, #4] */
2405 0xe08fe00e, /* add lr, pc, lr */
2406 0xe5bef008, /* ldr pc, [lr, #8]! */
2407 0x00000000, /* &GOT[0] - . */
b38cadfb 2408};
252b5132 2409
1db37fe6
YG
2410/* By default subsequent entries in a procedure linkage table look like
2411 this. Offsets that don't fit into 28 bits will cause link error. */
2412static const bfd_vma elf32_arm_plt_entry_short [] =
b38cadfb
NC
2413{
2414 0xe28fc600, /* add ip, pc, #0xNN00000 */
2415 0xe28cca00, /* add ip, ip, #0xNN000 */
2416 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
2417};
5e681ec4 2418
1db37fe6
YG
2419/* When explicitly asked, we'll use this "long" entry format
2420 which can cope with arbitrary displacements. */
2421static const bfd_vma elf32_arm_plt_entry_long [] =
2422{
07d6d2b8
AM
2423 0xe28fc200, /* add ip, pc, #0xN0000000 */
2424 0xe28cc600, /* add ip, ip, #0xNN00000 */
1db37fe6
YG
2425 0xe28cca00, /* add ip, ip, #0xNN000 */
2426 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
2427};
2428
0a1b45a2 2429static bool elf32_arm_use_long_plt_entry = false;
1db37fe6 2430
eed94f8f
NC
2431#endif /* not FOUR_WORD_PLT */
2432
2433/* The first entry in a procedure linkage table looks like this.
2434 It is set up so that any shared library function that is called before the
2435 relocation has been set up calls the dynamic linker first. */
2436static const bfd_vma elf32_thumb2_plt0_entry [] =
2437{
2438 /* NOTE: As this is a mixture of 16-bit and 32-bit instructions,
2439 an instruction maybe encoded to one or two array elements. */
07d6d2b8
AM
2440 0xf8dfb500, /* push {lr} */
2441 0x44fee008, /* ldr.w lr, [pc, #8] */
2442 /* add lr, pc */
eed94f8f 2443 0xff08f85e, /* ldr.w pc, [lr, #8]! */
07d6d2b8 2444 0x00000000, /* &GOT[0] - . */
eed94f8f
NC
2445};
2446
2447/* Subsequent entries in a procedure linkage table for thumb only target
2448 look like this. */
2449static const bfd_vma elf32_thumb2_plt_entry [] =
2450{
2451 /* NOTE: As this is a mixture of 16-bit and 32-bit instructions,
2452 an instruction maybe encoded to one or two array elements. */
07d6d2b8
AM
2453 0x0c00f240, /* movw ip, #0xNNNN */
2454 0x0c00f2c0, /* movt ip, #0xNNNN */
2455 0xf8dc44fc, /* add ip, pc */
15ccbdd7
TC
2456 0xe7fcf000 /* ldr.w pc, [ip] */
2457 /* b .-4 */
eed94f8f 2458};
252b5132 2459
00a97672
RS
2460/* The format of the first entry in the procedure linkage table
2461 for a VxWorks executable. */
2462static const bfd_vma elf32_arm_vxworks_exec_plt0_entry[] =
b38cadfb 2463{
07d6d2b8
AM
2464 0xe52dc008, /* str ip,[sp,#-8]! */
2465 0xe59fc000, /* ldr ip,[pc] */
2466 0xe59cf008, /* ldr pc,[ip,#8] */
2467 0x00000000, /* .long _GLOBAL_OFFSET_TABLE_ */
b38cadfb 2468};
00a97672
RS
2469
2470/* The format of subsequent entries in a VxWorks executable. */
2471static const bfd_vma elf32_arm_vxworks_exec_plt_entry[] =
b38cadfb 2472{
07d6d2b8
AM
2473 0xe59fc000, /* ldr ip,[pc] */
2474 0xe59cf000, /* ldr pc,[ip] */
2475 0x00000000, /* .long @got */
2476 0xe59fc000, /* ldr ip,[pc] */
2477 0xea000000, /* b _PLT */
2478 0x00000000, /* .long @pltindex*sizeof(Elf32_Rela) */
b38cadfb 2479};
00a97672
RS
2480
2481/* The format of entries in a VxWorks shared library. */
2482static const bfd_vma elf32_arm_vxworks_shared_plt_entry[] =
b38cadfb 2483{
07d6d2b8
AM
2484 0xe59fc000, /* ldr ip,[pc] */
2485 0xe79cf009, /* ldr pc,[ip,r9] */
2486 0x00000000, /* .long @got */
2487 0xe59fc000, /* ldr ip,[pc] */
2488 0xe599f008, /* ldr pc,[r9,#8] */
2489 0x00000000, /* .long @pltindex*sizeof(Elf32_Rela) */
b38cadfb 2490};
00a97672 2491
b7693d02
DJ
2492/* An initial stub used if the PLT entry is referenced from Thumb code. */
2493#define PLT_THUMB_STUB_SIZE 4
2494static const bfd_vma elf32_arm_plt_thumb_stub [] =
b38cadfb
NC
2495{
2496 0x4778, /* bx pc */
b4e87f2c 2497 0xe7fd /* b .-2 */
b38cadfb 2498};
b7693d02 2499
b38cadfb
NC
2500/* The first entry in a procedure linkage table looks like
2501 this. It is set up so that any shared library function that is
2502 called before the relocation has been set up calls the dynamic
2503 linker first. */
2504static const bfd_vma elf32_arm_nacl_plt0_entry [] =
2505{
2506 /* First bundle: */
2507 0xe300c000, /* movw ip, #:lower16:&GOT[2]-.+8 */
2508 0xe340c000, /* movt ip, #:upper16:&GOT[2]-.+8 */
2509 0xe08cc00f, /* add ip, ip, pc */
2510 0xe52dc008, /* str ip, [sp, #-8]! */
2511 /* Second bundle: */
edccdf7c
RM
2512 0xe3ccc103, /* bic ip, ip, #0xc0000000 */
2513 0xe59cc000, /* ldr ip, [ip] */
b38cadfb 2514 0xe3ccc13f, /* bic ip, ip, #0xc000000f */
edccdf7c 2515 0xe12fff1c, /* bx ip */
b38cadfb 2516 /* Third bundle: */
edccdf7c
RM
2517 0xe320f000, /* nop */
2518 0xe320f000, /* nop */
2519 0xe320f000, /* nop */
b38cadfb
NC
2520 /* .Lplt_tail: */
2521 0xe50dc004, /* str ip, [sp, #-4] */
2522 /* Fourth bundle: */
edccdf7c
RM
2523 0xe3ccc103, /* bic ip, ip, #0xc0000000 */
2524 0xe59cc000, /* ldr ip, [ip] */
b38cadfb 2525 0xe3ccc13f, /* bic ip, ip, #0xc000000f */
edccdf7c 2526 0xe12fff1c, /* bx ip */
b38cadfb
NC
2527};
2528#define ARM_NACL_PLT_TAIL_OFFSET (11 * 4)
2529
2530/* Subsequent entries in a procedure linkage table look like this. */
2531static const bfd_vma elf32_arm_nacl_plt_entry [] =
2532{
2533 0xe300c000, /* movw ip, #:lower16:&GOT[n]-.+8 */
2534 0xe340c000, /* movt ip, #:upper16:&GOT[n]-.+8 */
2535 0xe08cc00f, /* add ip, ip, pc */
2536 0xea000000, /* b .Lplt_tail */
2537};
e5a52504 2538
906e58ca
NC
2539#define ARM_MAX_FWD_BRANCH_OFFSET ((((1 << 23) - 1) << 2) + 8)
2540#define ARM_MAX_BWD_BRANCH_OFFSET ((-((1 << 23) << 2)) + 8)
2541#define THM_MAX_FWD_BRANCH_OFFSET ((1 << 22) -2 + 4)
2542#define THM_MAX_BWD_BRANCH_OFFSET (-(1 << 22) + 4)
2543#define THM2_MAX_FWD_BRANCH_OFFSET (((1 << 24) - 2) + 4)
2544#define THM2_MAX_BWD_BRANCH_OFFSET (-(1 << 24) + 4)
c5423981
TG
2545#define THM2_MAX_FWD_COND_BRANCH_OFFSET (((1 << 20) -2) + 4)
2546#define THM2_MAX_BWD_COND_BRANCH_OFFSET (-(1 << 20) + 4)
906e58ca 2547
461a49ca 2548enum stub_insn_type
b38cadfb
NC
2549{
2550 THUMB16_TYPE = 1,
2551 THUMB32_TYPE,
2552 ARM_TYPE,
2553 DATA_TYPE
2554};
461a49ca 2555
48229727
JB
2556#define THUMB16_INSN(X) {(X), THUMB16_TYPE, R_ARM_NONE, 0}
2557/* A bit of a hack. A Thumb conditional branch, in which the proper condition
2558 is inserted in arm_build_one_stub(). */
2559#define THUMB16_BCOND_INSN(X) {(X), THUMB16_TYPE, R_ARM_NONE, 1}
2560#define THUMB32_INSN(X) {(X), THUMB32_TYPE, R_ARM_NONE, 0}
d5a67c02
AV
2561#define THUMB32_MOVT(X) {(X), THUMB32_TYPE, R_ARM_THM_MOVT_ABS, 0}
2562#define THUMB32_MOVW(X) {(X), THUMB32_TYPE, R_ARM_THM_MOVW_ABS_NC, 0}
48229727
JB
2563#define THUMB32_B_INSN(X, Z) {(X), THUMB32_TYPE, R_ARM_THM_JUMP24, (Z)}
2564#define ARM_INSN(X) {(X), ARM_TYPE, R_ARM_NONE, 0}
2565#define ARM_REL_INSN(X, Z) {(X), ARM_TYPE, R_ARM_JUMP24, (Z)}
2566#define DATA_WORD(X,Y,Z) {(X), DATA_TYPE, (Y), (Z)}
461a49ca
DJ
2567
2568typedef struct
2569{
07d6d2b8 2570 bfd_vma data;
b38cadfb 2571 enum stub_insn_type type;
07d6d2b8
AM
2572 unsigned int r_type;
2573 int reloc_addend;
461a49ca
DJ
2574} insn_sequence;
2575
b4e87f2c
TC
2576/* See note [Thumb nop sequence] when adding a veneer. */
2577
fea2b4d6
CL
2578/* Arm/Thumb -> Arm/Thumb long branch stub. On V5T and above, use blx
2579 to reach the stub if necessary. */
461a49ca 2580static const insn_sequence elf32_arm_stub_long_branch_any_any[] =
b38cadfb 2581{
07d6d2b8 2582 ARM_INSN (0xe51ff004), /* ldr pc, [pc, #-4] */
b38cadfb
NC
2583 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2584};
906e58ca 2585
fea2b4d6
CL
2586/* V4T Arm -> Thumb long branch stub. Used on V4T where blx is not
2587 available. */
461a49ca 2588static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb[] =
b38cadfb 2589{
07d6d2b8
AM
2590 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2591 ARM_INSN (0xe12fff1c), /* bx ip */
b38cadfb
NC
2592 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2593};
906e58ca 2594
d3626fb0 2595/* Thumb -> Thumb long branch stub. Used on M-profile architectures. */
461a49ca 2596static const insn_sequence elf32_arm_stub_long_branch_thumb_only[] =
b38cadfb 2597{
07d6d2b8
AM
2598 THUMB16_INSN (0xb401), /* push {r0} */
2599 THUMB16_INSN (0x4802), /* ldr r0, [pc, #8] */
2600 THUMB16_INSN (0x4684), /* mov ip, r0 */
2601 THUMB16_INSN (0xbc01), /* pop {r0} */
2602 THUMB16_INSN (0x4760), /* bx ip */
2603 THUMB16_INSN (0xbf00), /* nop */
b38cadfb
NC
2604 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2605};
906e58ca 2606
80c135e5
TP
2607/* Thumb -> Thumb long branch stub in thumb2 encoding. Used on armv7. */
2608static const insn_sequence elf32_arm_stub_long_branch_thumb2_only[] =
2609{
07d6d2b8 2610 THUMB32_INSN (0xf85ff000), /* ldr.w pc, [pc, #-0] */
80c135e5
TP
2611 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(x) */
2612};
2613
d5a67c02
AV
2614/* Thumb -> Thumb long branch stub. Used for PureCode sections on Thumb2
2615 M-profile architectures. */
2616static const insn_sequence elf32_arm_stub_long_branch_thumb2_only_pure[] =
2617{
2618 THUMB32_MOVW (0xf2400c00), /* mov.w ip, R_ARM_MOVW_ABS_NC */
2619 THUMB32_MOVT (0xf2c00c00), /* movt ip, R_ARM_MOVT_ABS << 16 */
07d6d2b8 2620 THUMB16_INSN (0x4760), /* bx ip */
d5a67c02
AV
2621};
2622
d3626fb0
CL
2623/* V4T Thumb -> Thumb long branch stub. Using the stack is not
2624 allowed. */
2625static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb[] =
b38cadfb 2626{
07d6d2b8 2627 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2628 THUMB16_INSN (0xe7fd), /* b .-2 */
07d6d2b8
AM
2629 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2630 ARM_INSN (0xe12fff1c), /* bx ip */
b38cadfb
NC
2631 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2632};
d3626fb0 2633
fea2b4d6
CL
2634/* V4T Thumb -> ARM long branch stub. Used on V4T where blx is not
2635 available. */
461a49ca 2636static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm[] =
b38cadfb 2637{
07d6d2b8 2638 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2639 THUMB16_INSN (0xe7fd), /* b .-2 */
07d6d2b8 2640 ARM_INSN (0xe51ff004), /* ldr pc, [pc, #-4] */
b38cadfb
NC
2641 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2642};
906e58ca 2643
fea2b4d6
CL
2644/* V4T Thumb -> ARM short branch stub. Shorter variant of the above
2645 one, when the destination is close enough. */
461a49ca 2646static const insn_sequence elf32_arm_stub_short_branch_v4t_thumb_arm[] =
b38cadfb 2647{
07d6d2b8 2648 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2649 THUMB16_INSN (0xe7fd), /* b .-2 */
b38cadfb
NC
2650 ARM_REL_INSN (0xea000000, -8), /* b (X-8) */
2651};
c820be07 2652
cf3eccff 2653/* ARM/Thumb -> ARM long branch stub, PIC. On V5T and above, use
fea2b4d6 2654 blx to reach the stub if necessary. */
cf3eccff 2655static const insn_sequence elf32_arm_stub_long_branch_any_arm_pic[] =
b38cadfb 2656{
07d6d2b8
AM
2657 ARM_INSN (0xe59fc000), /* ldr ip, [pc] */
2658 ARM_INSN (0xe08ff00c), /* add pc, pc, ip */
b38cadfb
NC
2659 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X-4) */
2660};
906e58ca 2661
cf3eccff
DJ
2662/* ARM/Thumb -> Thumb long branch stub, PIC. On V5T and above, use
2663 blx to reach the stub if necessary. We can not add into pc;
2664 it is not guaranteed to mode switch (different in ARMv6 and
2665 ARMv7). */
2666static const insn_sequence elf32_arm_stub_long_branch_any_thumb_pic[] =
b38cadfb 2667{
07d6d2b8
AM
2668 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2669 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2670 ARM_INSN (0xe12fff1c), /* bx ip */
b38cadfb
NC
2671 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2672};
cf3eccff 2673
ebe24dd4
CL
2674/* V4T ARM -> ARM long branch stub, PIC. */
2675static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb_pic[] =
b38cadfb 2676{
07d6d2b8
AM
2677 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2678 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2679 ARM_INSN (0xe12fff1c), /* bx ip */
b38cadfb
NC
2680 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2681};
ebe24dd4
CL
2682
2683/* V4T Thumb -> ARM long branch stub, PIC. */
2684static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm_pic[] =
b38cadfb 2685{
07d6d2b8 2686 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2687 THUMB16_INSN (0xe7fd), /* b .-2 */
07d6d2b8
AM
2688 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2689 ARM_INSN (0xe08cf00f), /* add pc, ip, pc */
b38cadfb
NC
2690 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X) */
2691};
ebe24dd4 2692
d3626fb0
CL
2693/* Thumb -> Thumb long branch stub, PIC. Used on M-profile
2694 architectures. */
ebe24dd4 2695static const insn_sequence elf32_arm_stub_long_branch_thumb_only_pic[] =
b38cadfb 2696{
07d6d2b8
AM
2697 THUMB16_INSN (0xb401), /* push {r0} */
2698 THUMB16_INSN (0x4802), /* ldr r0, [pc, #8] */
2699 THUMB16_INSN (0x46fc), /* mov ip, pc */
2700 THUMB16_INSN (0x4484), /* add ip, r0 */
2701 THUMB16_INSN (0xbc01), /* pop {r0} */
2702 THUMB16_INSN (0x4760), /* bx ip */
b38cadfb
NC
2703 DATA_WORD (0, R_ARM_REL32, 4), /* dcd R_ARM_REL32(X) */
2704};
ebe24dd4 2705
d3626fb0
CL
2706/* V4T Thumb -> Thumb long branch stub, PIC. Using the stack is not
2707 allowed. */
2708static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb_pic[] =
b38cadfb 2709{
07d6d2b8 2710 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2711 THUMB16_INSN (0xe7fd), /* b .-2 */
07d6d2b8
AM
2712 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2713 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2714 ARM_INSN (0xe12fff1c), /* bx ip */
b38cadfb
NC
2715 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2716};
d3626fb0 2717
0855e32b
NS
2718/* Thumb2/ARM -> TLS trampoline. Lowest common denominator, which is a
2719 long PIC stub. We can use r1 as a scratch -- and cannot use ip. */
2720static const insn_sequence elf32_arm_stub_long_branch_any_tls_pic[] =
2721{
07d6d2b8
AM
2722 ARM_INSN (0xe59f1000), /* ldr r1, [pc] */
2723 ARM_INSN (0xe08ff001), /* add pc, pc, r1 */
b38cadfb 2724 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X-4) */
0855e32b
NS
2725};
2726
2727/* V4T Thumb -> TLS trampoline. lowest common denominator, which is a
2728 long PIC stub. We can use r1 as a scratch -- and cannot use ip. */
2729static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_tls_pic[] =
2730{
07d6d2b8 2731 THUMB16_INSN (0x4778), /* bx pc */
b4e87f2c 2732 THUMB16_INSN (0xe7fd), /* b .-2 */
07d6d2b8
AM
2733 ARM_INSN (0xe59f1000), /* ldr r1, [pc, #0] */
2734 ARM_INSN (0xe081f00f), /* add pc, r1, pc */
b38cadfb 2735 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X) */
0855e32b
NS
2736};
2737
7a89b94e
NC
2738/* NaCl ARM -> ARM long branch stub. */
2739static const insn_sequence elf32_arm_stub_long_branch_arm_nacl[] =
2740{
2741 ARM_INSN (0xe59fc00c), /* ldr ip, [pc, #12] */
2742 ARM_INSN (0xe3ccc13f), /* bic ip, ip, #0xc000000f */
07d6d2b8
AM
2743 ARM_INSN (0xe12fff1c), /* bx ip */
2744 ARM_INSN (0xe320f000), /* nop */
2745 ARM_INSN (0xe125be70), /* bkpt 0x5be0 */
2746 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2747 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2748 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
7a89b94e
NC
2749};
2750
2751/* NaCl ARM -> ARM long branch stub, PIC. */
2752static const insn_sequence elf32_arm_stub_long_branch_arm_nacl_pic[] =
2753{
2754 ARM_INSN (0xe59fc00c), /* ldr ip, [pc, #12] */
07d6d2b8 2755 ARM_INSN (0xe08cc00f), /* add ip, ip, pc */
7a89b94e 2756 ARM_INSN (0xe3ccc13f), /* bic ip, ip, #0xc000000f */
07d6d2b8
AM
2757 ARM_INSN (0xe12fff1c), /* bx ip */
2758 ARM_INSN (0xe125be70), /* bkpt 0x5be0 */
2759 DATA_WORD (0, R_ARM_REL32, 8), /* dcd R_ARM_REL32(X+8) */
2760 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2761 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
7a89b94e
NC
2762};
2763
4ba2ef8f
TP
2764/* Stub used for transition to secure state (aka SG veneer). */
2765static const insn_sequence elf32_arm_stub_cmse_branch_thumb_only[] =
2766{
2767 THUMB32_INSN (0xe97fe97f), /* sg. */
2768 THUMB32_B_INSN (0xf000b800, -4), /* b.w original_branch_dest. */
2769};
2770
7a89b94e 2771
48229727
JB
2772/* Cortex-A8 erratum-workaround stubs. */
2773
2774/* Stub used for conditional branches (which may be beyond +/-1MB away, so we
2775 can't use a conditional branch to reach this stub). */
2776
2777static const insn_sequence elf32_arm_stub_a8_veneer_b_cond[] =
b38cadfb 2778{
07d6d2b8 2779 THUMB16_BCOND_INSN (0xd001), /* b<cond>.n true. */
b38cadfb
NC
2780 THUMB32_B_INSN (0xf000b800, -4), /* b.w insn_after_original_branch. */
2781 THUMB32_B_INSN (0xf000b800, -4) /* true: b.w original_branch_dest. */
2782};
48229727
JB
2783
2784/* Stub used for b.w and bl.w instructions. */
2785
2786static const insn_sequence elf32_arm_stub_a8_veneer_b[] =
b38cadfb
NC
2787{
2788 THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest. */
2789};
48229727
JB
2790
2791static const insn_sequence elf32_arm_stub_a8_veneer_bl[] =
b38cadfb
NC
2792{
2793 THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest. */
2794};
48229727
JB
2795
2796/* Stub used for Thumb-2 blx.w instructions. We modified the original blx.w
2797 instruction (which switches to ARM mode) to point to this stub. Jump to the
2798 real destination using an ARM-mode branch. */
2799
2800static const insn_sequence elf32_arm_stub_a8_veneer_blx[] =
b38cadfb
NC
2801{
2802 ARM_REL_INSN (0xea000000, -8) /* b original_branch_dest. */
2803};
48229727 2804
9553db3c
NC
2805/* For each section group there can be a specially created linker section
2806 to hold the stubs for that group. The name of the stub section is based
2807 upon the name of another section within that group with the suffix below
2808 applied.
2809
2810 PR 13049: STUB_SUFFIX used to be ".stub", but this allowed the user to
2811 create what appeared to be a linker stub section when it actually
2812 contained user code/data. For example, consider this fragment:
b38cadfb 2813
9553db3c
NC
2814 const char * stubborn_problems[] = { "np" };
2815
2816 If this is compiled with "-fPIC -fdata-sections" then gcc produces a
2817 section called:
2818
2819 .data.rel.local.stubborn_problems
2820
2821 This then causes problems in arm32_arm_build_stubs() as it triggers:
2822
2823 // Ignore non-stub sections.
2824 if (!strstr (stub_sec->name, STUB_SUFFIX))
2825 continue;
2826
2827 And so the section would be ignored instead of being processed. Hence
2828 the change in definition of STUB_SUFFIX to a name that cannot be a valid
2829 C identifier. */
2830#define STUB_SUFFIX ".__stub"
906e58ca 2831
738a79f6
CL
2832/* One entry per long/short branch stub defined above. */
2833#define DEF_STUBS \
2834 DEF_STUB(long_branch_any_any) \
2835 DEF_STUB(long_branch_v4t_arm_thumb) \
2836 DEF_STUB(long_branch_thumb_only) \
2837 DEF_STUB(long_branch_v4t_thumb_thumb) \
2838 DEF_STUB(long_branch_v4t_thumb_arm) \
2839 DEF_STUB(short_branch_v4t_thumb_arm) \
2840 DEF_STUB(long_branch_any_arm_pic) \
2841 DEF_STUB(long_branch_any_thumb_pic) \
2842 DEF_STUB(long_branch_v4t_thumb_thumb_pic) \
2843 DEF_STUB(long_branch_v4t_arm_thumb_pic) \
2844 DEF_STUB(long_branch_v4t_thumb_arm_pic) \
48229727 2845 DEF_STUB(long_branch_thumb_only_pic) \
0855e32b
NS
2846 DEF_STUB(long_branch_any_tls_pic) \
2847 DEF_STUB(long_branch_v4t_thumb_tls_pic) \
7a89b94e
NC
2848 DEF_STUB(long_branch_arm_nacl) \
2849 DEF_STUB(long_branch_arm_nacl_pic) \
4ba2ef8f 2850 DEF_STUB(cmse_branch_thumb_only) \
48229727
JB
2851 DEF_STUB(a8_veneer_b_cond) \
2852 DEF_STUB(a8_veneer_b) \
2853 DEF_STUB(a8_veneer_bl) \
80c135e5
TP
2854 DEF_STUB(a8_veneer_blx) \
2855 DEF_STUB(long_branch_thumb2_only) \
d5a67c02 2856 DEF_STUB(long_branch_thumb2_only_pure)
738a79f6
CL
2857
2858#define DEF_STUB(x) arm_stub_##x,
b38cadfb
NC
2859enum elf32_arm_stub_type
2860{
906e58ca 2861 arm_stub_none,
738a79f6 2862 DEF_STUBS
4f4faa4d 2863 max_stub_type
738a79f6
CL
2864};
2865#undef DEF_STUB
2866
8d9d9490
TP
2867/* Note the first a8_veneer type. */
2868const unsigned arm_stub_a8_veneer_lwm = arm_stub_a8_veneer_b_cond;
2869
738a79f6
CL
2870typedef struct
2871{
d3ce72d0 2872 const insn_sequence* template_sequence;
738a79f6
CL
2873 int template_size;
2874} stub_def;
2875
2876#define DEF_STUB(x) {elf32_arm_stub_##x, ARRAY_SIZE(elf32_arm_stub_##x)},
b38cadfb
NC
2877static const stub_def stub_definitions[] =
2878{
738a79f6
CL
2879 {NULL, 0},
2880 DEF_STUBS
906e58ca
NC
2881};
2882
2883struct elf32_arm_stub_hash_entry
2884{
2885 /* Base hash table entry structure. */
2886 struct bfd_hash_entry root;
2887
2888 /* The stub section. */
2889 asection *stub_sec;
2890
2891 /* Offset within stub_sec of the beginning of this stub. */
2892 bfd_vma stub_offset;
2893
2894 /* Given the symbol's value and its section we can determine its final
2895 value when building the stubs (so the stub knows where to jump). */
2896 bfd_vma target_value;
2897 asection *target_section;
2898
8d9d9490
TP
2899 /* Same as above but for the source of the branch to the stub. Used for
2900 Cortex-A8 erratum workaround to patch it to branch to the stub. As
2901 such, source section does not need to be recorded since Cortex-A8 erratum
2902 workaround stubs are only generated when both source and target are in the
2903 same section. */
2904 bfd_vma source_value;
48229727
JB
2905
2906 /* The instruction which caused this stub to be generated (only valid for
2907 Cortex-A8 erratum workaround stubs at present). */
2908 unsigned long orig_insn;
2909
461a49ca 2910 /* The stub type. */
906e58ca 2911 enum elf32_arm_stub_type stub_type;
461a49ca
DJ
2912 /* Its encoding size in bytes. */
2913 int stub_size;
2914 /* Its template. */
2915 const insn_sequence *stub_template;
2916 /* The size of the template (number of entries). */
2917 int stub_template_size;
906e58ca
NC
2918
2919 /* The symbol table entry, if any, that this was derived from. */
2920 struct elf32_arm_link_hash_entry *h;
2921
35fc36a8
RS
2922 /* Type of branch. */
2923 enum arm_st_branch_type branch_type;
906e58ca
NC
2924
2925 /* Where this stub is being called from, or, in the case of combined
2926 stub sections, the first input section in the group. */
2927 asection *id_sec;
7413f23f
DJ
2928
2929 /* The name for the local symbol at the start of this stub. The
2930 stub name in the hash table has to be unique; this does not, so
2931 it can be friendlier. */
2932 char *output_name;
906e58ca
NC
2933};
2934
e489d0ae
PB
2935/* Used to build a map of a section. This is required for mixed-endian
2936 code/data. */
2937
2938typedef struct elf32_elf_section_map
2939{
2940 bfd_vma vma;
2941 char type;
2942}
2943elf32_arm_section_map;
2944
c7b8f16e
JB
2945/* Information about a VFP11 erratum veneer, or a branch to such a veneer. */
2946
2947typedef enum
2948{
2949 VFP11_ERRATUM_BRANCH_TO_ARM_VENEER,
2950 VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER,
2951 VFP11_ERRATUM_ARM_VENEER,
2952 VFP11_ERRATUM_THUMB_VENEER
2953}
2954elf32_vfp11_erratum_type;
2955
2956typedef struct elf32_vfp11_erratum_list
2957{
2958 struct elf32_vfp11_erratum_list *next;
2959 bfd_vma vma;
2960 union
2961 {
2962 struct
2963 {
2964 struct elf32_vfp11_erratum_list *veneer;
2965 unsigned int vfp_insn;
2966 } b;
2967 struct
2968 {
2969 struct elf32_vfp11_erratum_list *branch;
2970 unsigned int id;
2971 } v;
2972 } u;
2973 elf32_vfp11_erratum_type type;
2974}
2975elf32_vfp11_erratum_list;
2976
a504d23a
LA
2977/* Information about a STM32L4XX erratum veneer, or a branch to such a
2978 veneer. */
2979typedef enum
2980{
2981 STM32L4XX_ERRATUM_BRANCH_TO_VENEER,
2982 STM32L4XX_ERRATUM_VENEER
2983}
2984elf32_stm32l4xx_erratum_type;
2985
2986typedef struct elf32_stm32l4xx_erratum_list
2987{
2988 struct elf32_stm32l4xx_erratum_list *next;
2989 bfd_vma vma;
2990 union
2991 {
2992 struct
2993 {
2994 struct elf32_stm32l4xx_erratum_list *veneer;
2995 unsigned int insn;
2996 } b;
2997 struct
2998 {
2999 struct elf32_stm32l4xx_erratum_list *branch;
3000 unsigned int id;
3001 } v;
3002 } u;
3003 elf32_stm32l4xx_erratum_type type;
3004}
3005elf32_stm32l4xx_erratum_list;
3006
2468f9c9
PB
3007typedef enum
3008{
3009 DELETE_EXIDX_ENTRY,
3010 INSERT_EXIDX_CANTUNWIND_AT_END
3011}
3012arm_unwind_edit_type;
3013
3014/* A (sorted) list of edits to apply to an unwind table. */
3015typedef struct arm_unwind_table_edit
3016{
3017 arm_unwind_edit_type type;
3018 /* Note: we sometimes want to insert an unwind entry corresponding to a
3019 section different from the one we're currently writing out, so record the
3020 (text) section this edit relates to here. */
3021 asection *linked_section;
3022 unsigned int index;
3023 struct arm_unwind_table_edit *next;
3024}
3025arm_unwind_table_edit;
3026
8e3de13a 3027typedef struct _arm_elf_section_data
e489d0ae 3028{
2468f9c9 3029 /* Information about mapping symbols. */
e489d0ae 3030 struct bfd_elf_section_data elf;
8e3de13a 3031 unsigned int mapcount;
c7b8f16e 3032 unsigned int mapsize;
e489d0ae 3033 elf32_arm_section_map *map;
2468f9c9 3034 /* Information about CPU errata. */
c7b8f16e
JB
3035 unsigned int erratumcount;
3036 elf32_vfp11_erratum_list *erratumlist;
a504d23a
LA
3037 unsigned int stm32l4xx_erratumcount;
3038 elf32_stm32l4xx_erratum_list *stm32l4xx_erratumlist;
491d01d3 3039 unsigned int additional_reloc_count;
2468f9c9
PB
3040 /* Information about unwind tables. */
3041 union
3042 {
3043 /* Unwind info attached to a text section. */
3044 struct
3045 {
3046 asection *arm_exidx_sec;
3047 } text;
3048
3049 /* Unwind info attached to an .ARM.exidx section. */
3050 struct
3051 {
3052 arm_unwind_table_edit *unwind_edit_list;
3053 arm_unwind_table_edit *unwind_edit_tail;
3054 } exidx;
3055 } u;
8e3de13a
NC
3056}
3057_arm_elf_section_data;
e489d0ae
PB
3058
3059#define elf32_arm_section_data(sec) \
8e3de13a 3060 ((_arm_elf_section_data *) elf_section_data (sec))
e489d0ae 3061
48229727
JB
3062/* A fix which might be required for Cortex-A8 Thumb-2 branch/TLB erratum.
3063 These fixes are subject to a relaxation procedure (in elf32_arm_size_stubs),
3064 so may be created multiple times: we use an array of these entries whilst
3065 relaxing which we can refresh easily, then create stubs for each potentially
3066 erratum-triggering instruction once we've settled on a solution. */
3067
b38cadfb
NC
3068struct a8_erratum_fix
3069{
48229727
JB
3070 bfd *input_bfd;
3071 asection *section;
3072 bfd_vma offset;
8d9d9490 3073 bfd_vma target_offset;
48229727
JB
3074 unsigned long orig_insn;
3075 char *stub_name;
3076 enum elf32_arm_stub_type stub_type;
35fc36a8 3077 enum arm_st_branch_type branch_type;
48229727
JB
3078};
3079
3080/* A table of relocs applied to branches which might trigger Cortex-A8
3081 erratum. */
3082
b38cadfb
NC
3083struct a8_erratum_reloc
3084{
48229727
JB
3085 bfd_vma from;
3086 bfd_vma destination;
92750f34
DJ
3087 struct elf32_arm_link_hash_entry *hash;
3088 const char *sym_name;
48229727 3089 unsigned int r_type;
35fc36a8 3090 enum arm_st_branch_type branch_type;
0a1b45a2 3091 bool non_a8_stub;
48229727
JB
3092};
3093
ba93b8ac
DJ
3094/* The size of the thread control block. */
3095#define TCB_SIZE 8
3096
34e77a92
RS
3097/* ARM-specific information about a PLT entry, over and above the usual
3098 gotplt_union. */
b38cadfb
NC
3099struct arm_plt_info
3100{
34e77a92
RS
3101 /* We reference count Thumb references to a PLT entry separately,
3102 so that we can emit the Thumb trampoline only if needed. */
3103 bfd_signed_vma thumb_refcount;
3104
3105 /* Some references from Thumb code may be eliminated by BL->BLX
3106 conversion, so record them separately. */
3107 bfd_signed_vma maybe_thumb_refcount;
3108
3109 /* How many of the recorded PLT accesses were from non-call relocations.
3110 This information is useful when deciding whether anything takes the
3111 address of an STT_GNU_IFUNC PLT. A value of 0 means that all
3112 non-call references to the function should resolve directly to the
3113 real runtime target. */
3114 unsigned int noncall_refcount;
3115
3116 /* Since PLT entries have variable size if the Thumb prologue is
3117 used, we need to record the index into .got.plt instead of
3118 recomputing it from the PLT offset. */
3119 bfd_signed_vma got_offset;
3120};
3121
3122/* Information about an .iplt entry for a local STT_GNU_IFUNC symbol. */
b38cadfb
NC
3123struct arm_local_iplt_info
3124{
34e77a92
RS
3125 /* The information that is usually found in the generic ELF part of
3126 the hash table entry. */
3127 union gotplt_union root;
3128
3129 /* The information that is usually found in the ARM-specific part of
3130 the hash table entry. */
3131 struct arm_plt_info arm;
3132
3133 /* A list of all potential dynamic relocations against this symbol. */
3134 struct elf_dyn_relocs *dyn_relocs;
3135};
3136
e8b09b87
CL
3137/* Structure to handle FDPIC support for local functions. */
3138struct fdpic_local {
3139 unsigned int funcdesc_cnt;
3140 unsigned int gotofffuncdesc_cnt;
3141 int funcdesc_offset;
3142};
3143
0ffa91dd 3144struct elf_arm_obj_tdata
ba93b8ac
DJ
3145{
3146 struct elf_obj_tdata root;
3147
3148 /* tls_type for each local got entry. */
3149 char *local_got_tls_type;
ee065d83 3150
0855e32b
NS
3151 /* GOTPLT entries for TLS descriptors. */
3152 bfd_vma *local_tlsdesc_gotent;
3153
34e77a92
RS
3154 /* Information for local symbols that need entries in .iplt. */
3155 struct arm_local_iplt_info **local_iplt;
3156
bf21ed78
MS
3157 /* Zero to warn when linking objects with incompatible enum sizes. */
3158 int no_enum_size_warning;
a9dc9481
JM
3159
3160 /* Zero to warn when linking objects with incompatible wchar_t sizes. */
3161 int no_wchar_size_warning;
e8b09b87
CL
3162
3163 /* Maintains FDPIC counters and funcdesc info. */
3164 struct fdpic_local *local_fdpic_cnts;
ba93b8ac
DJ
3165};
3166
0ffa91dd
NC
3167#define elf_arm_tdata(bfd) \
3168 ((struct elf_arm_obj_tdata *) (bfd)->tdata.any)
ba93b8ac 3169
0ffa91dd
NC
3170#define elf32_arm_local_got_tls_type(bfd) \
3171 (elf_arm_tdata (bfd)->local_got_tls_type)
3172
0855e32b
NS
3173#define elf32_arm_local_tlsdesc_gotent(bfd) \
3174 (elf_arm_tdata (bfd)->local_tlsdesc_gotent)
3175
34e77a92
RS
3176#define elf32_arm_local_iplt(bfd) \
3177 (elf_arm_tdata (bfd)->local_iplt)
3178
e8b09b87
CL
3179#define elf32_arm_local_fdpic_cnts(bfd) \
3180 (elf_arm_tdata (bfd)->local_fdpic_cnts)
3181
0ffa91dd
NC
3182#define is_arm_elf(bfd) \
3183 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
3184 && elf_tdata (bfd) != NULL \
4dfe6ac6 3185 && elf_object_id (bfd) == ARM_ELF_DATA)
ba93b8ac 3186
0a1b45a2 3187static bool
ba93b8ac
DJ
3188elf32_arm_mkobject (bfd *abfd)
3189{
0ffa91dd 3190 return bfd_elf_allocate_object (abfd, sizeof (struct elf_arm_obj_tdata),
4dfe6ac6 3191 ARM_ELF_DATA);
ba93b8ac
DJ
3192}
3193
ba93b8ac
DJ
3194#define elf32_arm_hash_entry(ent) ((struct elf32_arm_link_hash_entry *)(ent))
3195
e8b09b87
CL
3196/* Structure to handle FDPIC support for extern functions. */
3197struct fdpic_global {
3198 unsigned int gotofffuncdesc_cnt;
3199 unsigned int gotfuncdesc_cnt;
3200 unsigned int funcdesc_cnt;
3201 int funcdesc_offset;
3202 int gotfuncdesc_offset;
3203};
3204
ba96a88f 3205/* Arm ELF linker hash entry. */
252b5132 3206struct elf32_arm_link_hash_entry
b38cadfb
NC
3207{
3208 struct elf_link_hash_entry root;
252b5132 3209
b38cadfb
NC
3210 /* ARM-specific PLT information. */
3211 struct arm_plt_info plt;
ba93b8ac
DJ
3212
3213#define GOT_UNKNOWN 0
3214#define GOT_NORMAL 1
3215#define GOT_TLS_GD 2
3216#define GOT_TLS_IE 4
0855e32b
NS
3217#define GOT_TLS_GDESC 8
3218#define GOT_TLS_GD_ANY_P(type) ((type & GOT_TLS_GD) || (type & GOT_TLS_GDESC))
b38cadfb 3219 unsigned int tls_type : 8;
34e77a92 3220
b38cadfb
NC
3221 /* True if the symbol's PLT entry is in .iplt rather than .plt. */
3222 unsigned int is_iplt : 1;
34e77a92 3223
b38cadfb 3224 unsigned int unused : 23;
a4fd1a8e 3225
b38cadfb
NC
3226 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
3227 starting at the end of the jump table. */
3228 bfd_vma tlsdesc_got;
0855e32b 3229
b38cadfb
NC
3230 /* The symbol marking the real symbol location for exported thumb
3231 symbols with Arm stubs. */
3232 struct elf_link_hash_entry *export_glue;
906e58ca 3233
b38cadfb 3234 /* A pointer to the most recently used stub hash entry against this
8029a119 3235 symbol. */
b38cadfb 3236 struct elf32_arm_stub_hash_entry *stub_cache;
e8b09b87
CL
3237
3238 /* Counter for FDPIC relocations against this symbol. */
3239 struct fdpic_global fdpic_cnts;
b38cadfb 3240};
252b5132 3241
252b5132 3242/* Traverse an arm ELF linker hash table. */
252b5132
RH
3243#define elf32_arm_link_hash_traverse(table, func, info) \
3244 (elf_link_hash_traverse \
3245 (&(table)->root, \
0a1b45a2 3246 (bool (*) (struct elf_link_hash_entry *, void *)) (func), \
252b5132
RH
3247 (info)))
3248
3249/* Get the ARM elf linker hash table from a link_info structure. */
0f55320b
AM
3250#define elf32_arm_hash_table(p) \
3251 ((is_elf_hash_table ((p)->hash) \
3252 && elf_hash_table_id (elf_hash_table (p)) == ARM_ELF_DATA) \
3253 ? (struct elf32_arm_link_hash_table *) (p)->hash : NULL)
252b5132 3254
906e58ca
NC
3255#define arm_stub_hash_lookup(table, string, create, copy) \
3256 ((struct elf32_arm_stub_hash_entry *) \
3257 bfd_hash_lookup ((table), (string), (create), (copy)))
3258
21d799b5
NC
3259/* Array to keep track of which stub sections have been created, and
3260 information on stub grouping. */
3261struct map_stub
3262{
3263 /* This is the section to which stubs in the group will be
3264 attached. */
3265 asection *link_sec;
3266 /* The stub section. */
3267 asection *stub_sec;
3268};
3269
0855e32b
NS
3270#define elf32_arm_compute_jump_table_size(htab) \
3271 ((htab)->next_tls_desc_index * 4)
3272
9b485d32 3273/* ARM ELF linker hash table. */
252b5132 3274struct elf32_arm_link_hash_table
906e58ca
NC
3275{
3276 /* The main hash table. */
3277 struct elf_link_hash_table root;
252b5132 3278
906e58ca
NC
3279 /* The size in bytes of the section containing the Thumb-to-ARM glue. */
3280 bfd_size_type thumb_glue_size;
252b5132 3281
906e58ca
NC
3282 /* The size in bytes of the section containing the ARM-to-Thumb glue. */
3283 bfd_size_type arm_glue_size;
252b5132 3284
906e58ca
NC
3285 /* The size in bytes of section containing the ARMv4 BX veneers. */
3286 bfd_size_type bx_glue_size;
845b51d6 3287
906e58ca
NC
3288 /* Offsets of ARMv4 BX veneers. Bit1 set if present, and Bit0 set when
3289 veneer has been populated. */
3290 bfd_vma bx_glue_offset[15];
845b51d6 3291
906e58ca
NC
3292 /* The size in bytes of the section containing glue for VFP11 erratum
3293 veneers. */
3294 bfd_size_type vfp11_erratum_glue_size;
c7b8f16e 3295
a504d23a
LA
3296 /* The size in bytes of the section containing glue for STM32L4XX erratum
3297 veneers. */
3298 bfd_size_type stm32l4xx_erratum_glue_size;
3299
48229727
JB
3300 /* A table of fix locations for Cortex-A8 Thumb-2 branch/TLB erratum. This
3301 holds Cortex-A8 erratum fix locations between elf32_arm_size_stubs() and
3302 elf32_arm_write_section(). */
3303 struct a8_erratum_fix *a8_erratum_fixes;
3304 unsigned int num_a8_erratum_fixes;
3305
906e58ca
NC
3306 /* An arbitrary input BFD chosen to hold the glue sections. */
3307 bfd * bfd_of_glue_owner;
ba96a88f 3308
906e58ca
NC
3309 /* Nonzero to output a BE8 image. */
3310 int byteswap_code;
e489d0ae 3311
906e58ca
NC
3312 /* Zero if R_ARM_TARGET1 means R_ARM_ABS32.
3313 Nonzero if R_ARM_TARGET1 means R_ARM_REL32. */
3314 int target1_is_rel;
9c504268 3315
906e58ca
NC
3316 /* The relocation to use for R_ARM_TARGET2 relocations. */
3317 int target2_reloc;
eb043451 3318
906e58ca
NC
3319 /* 0 = Ignore R_ARM_V4BX.
3320 1 = Convert BX to MOV PC.
3321 2 = Generate v4 interworing stubs. */
3322 int fix_v4bx;
319850b4 3323
48229727
JB
3324 /* Whether we should fix the Cortex-A8 Thumb-2 branch/TLB erratum. */
3325 int fix_cortex_a8;
3326
2de70689
MGD
3327 /* Whether we should fix the ARM1176 BLX immediate issue. */
3328 int fix_arm1176;
3329
906e58ca
NC
3330 /* Nonzero if the ARM/Thumb BLX instructions are available for use. */
3331 int use_blx;
33bfe774 3332
906e58ca
NC
3333 /* What sort of code sequences we should look for which may trigger the
3334 VFP11 denorm erratum. */
3335 bfd_arm_vfp11_fix vfp11_fix;
c7b8f16e 3336
906e58ca
NC
3337 /* Global counter for the number of fixes we have emitted. */
3338 int num_vfp11_fixes;
c7b8f16e 3339
a504d23a
LA
3340 /* What sort of code sequences we should look for which may trigger the
3341 STM32L4XX erratum. */
3342 bfd_arm_stm32l4xx_fix stm32l4xx_fix;
3343
3344 /* Global counter for the number of fixes we have emitted. */
3345 int num_stm32l4xx_fixes;
3346
906e58ca
NC
3347 /* Nonzero to force PIC branch veneers. */
3348 int pic_veneer;
27e55c4d 3349
906e58ca
NC
3350 /* The number of bytes in the initial entry in the PLT. */
3351 bfd_size_type plt_header_size;
e5a52504 3352
906e58ca
NC
3353 /* The number of bytes in the subsequent PLT etries. */
3354 bfd_size_type plt_entry_size;
e5a52504 3355
906e58ca 3356 /* True if the target uses REL relocations. */
0a1b45a2 3357 bool use_rel;
4e7fd91e 3358
54ddd295
TP
3359 /* Nonzero if import library must be a secure gateway import library
3360 as per ARMv8-M Security Extensions. */
3361 int cmse_implib;
3362
0955507f
TP
3363 /* The import library whose symbols' address must remain stable in
3364 the import library generated. */
3365 bfd *in_implib_bfd;
3366
0855e32b
NS
3367 /* The index of the next unused R_ARM_TLS_DESC slot in .rel.plt. */
3368 bfd_vma next_tls_desc_index;
3369
3370 /* How many R_ARM_TLS_DESC relocations were generated so far. */
3371 bfd_vma num_tls_desc;
3372
906e58ca
NC
3373 /* The (unloaded but important) VxWorks .rela.plt.unloaded section. */
3374 asection *srelplt2;
00a97672 3375
0855e32b
NS
3376 /* Offset in .plt section of tls_arm_trampoline. */
3377 bfd_vma tls_trampoline;
3378
5c5a4843 3379 /* Data for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations. */
906e58ca
NC
3380 union
3381 {
3382 bfd_signed_vma refcount;
3383 bfd_vma offset;
3384 } tls_ldm_got;
b7693d02 3385
906e58ca
NC
3386 /* For convenience in allocate_dynrelocs. */
3387 bfd * obfd;
3388
0855e32b
NS
3389 /* The amount of space used by the reserved portion of the sgotplt
3390 section, plus whatever space is used by the jump slots. */
3391 bfd_vma sgotplt_jump_table_size;
3392
906e58ca
NC
3393 /* The stub hash table. */
3394 struct bfd_hash_table stub_hash_table;
3395
3396 /* Linker stub bfd. */
3397 bfd *stub_bfd;
3398
3399 /* Linker call-backs. */
6bde4c52
TP
3400 asection * (*add_stub_section) (const char *, asection *, asection *,
3401 unsigned int);
906e58ca
NC
3402 void (*layout_sections_again) (void);
3403
3404 /* Array to keep track of which stub sections have been created, and
3405 information on stub grouping. */
21d799b5 3406 struct map_stub *stub_group;
906e58ca 3407
4ba2ef8f
TP
3408 /* Input stub section holding secure gateway veneers. */
3409 asection *cmse_stub_sec;
3410
0955507f
TP
3411 /* Offset in cmse_stub_sec where new SG veneers (not in input import library)
3412 start to be allocated. */
3413 bfd_vma new_cmse_stub_offset;
3414
fe33d2fa 3415 /* Number of elements in stub_group. */
7292b3ac 3416 unsigned int top_id;
fe33d2fa 3417
906e58ca
NC
3418 /* Assorted information used by elf32_arm_size_stubs. */
3419 unsigned int bfd_count;
7292b3ac 3420 unsigned int top_index;
906e58ca 3421 asection **input_list;
617a5ada
CL
3422
3423 /* True if the target system uses FDPIC. */
3424 int fdpic_p;
e8b09b87
CL
3425
3426 /* Fixup section. Used for FDPIC. */
3427 asection *srofixup;
906e58ca 3428};
252b5132 3429
e8b09b87
CL
3430/* Add an FDPIC read-only fixup. */
3431static void
3432arm_elf_add_rofixup (bfd *output_bfd, asection *srofixup, bfd_vma offset)
3433{
3434 bfd_vma fixup_offset;
3435
3436 fixup_offset = srofixup->reloc_count++ * 4;
3437 BFD_ASSERT (fixup_offset < srofixup->size);
3438 bfd_put_32 (output_bfd, offset, srofixup->contents + fixup_offset);
3439}
3440
a504d23a
LA
3441static inline int
3442ctz (unsigned int mask)
3443{
3444#if GCC_VERSION >= 3004
3445 return __builtin_ctz (mask);
3446#else
3447 unsigned int i;
3448
3449 for (i = 0; i < 8 * sizeof (mask); i++)
3450 {
3451 if (mask & 0x1)
3452 break;
3453 mask = (mask >> 1);
3454 }
3455 return i;
3456#endif
3457}
3458
3459static inline int
b25e998d 3460elf32_arm_popcount (unsigned int mask)
a504d23a
LA
3461{
3462#if GCC_VERSION >= 3004
3463 return __builtin_popcount (mask);
3464#else
b25e998d
CG
3465 unsigned int i;
3466 int sum = 0;
a504d23a
LA
3467
3468 for (i = 0; i < 8 * sizeof (mask); i++)
3469 {
3470 if (mask & 0x1)
3471 sum++;
3472 mask = (mask >> 1);
3473 }
3474 return sum;
3475#endif
3476}
3477
e8b09b87
CL
3478static void elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
3479 asection *sreloc, Elf_Internal_Rela *rel);
3480
3481static void
3482arm_elf_fill_funcdesc(bfd *output_bfd,
3483 struct bfd_link_info *info,
3484 int *funcdesc_offset,
3485 int dynindx,
3486 int offset,
3487 bfd_vma addr,
3488 bfd_vma dynreloc_value,
3489 bfd_vma seg)
3490{
3491 if ((*funcdesc_offset & 1) == 0)
3492 {
3493 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
3494 asection *sgot = globals->root.sgot;
3495
3496 if (bfd_link_pic(info))
3497 {
3498 asection *srelgot = globals->root.srelgot;
3499 Elf_Internal_Rela outrel;
3500
3501 outrel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
3502 outrel.r_offset = sgot->output_section->vma + sgot->output_offset + offset;
3503 outrel.r_addend = 0;
3504
3505 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
3506 bfd_put_32 (output_bfd, addr, sgot->contents + offset);
3507 bfd_put_32 (output_bfd, seg, sgot->contents + offset + 4);
3508 }
3509 else
3510 {
3511 struct elf_link_hash_entry *hgot = globals->root.hgot;
3512 bfd_vma got_value = hgot->root.u.def.value
3513 + hgot->root.u.def.section->output_section->vma
3514 + hgot->root.u.def.section->output_offset;
3515
3516 arm_elf_add_rofixup(output_bfd, globals->srofixup,
3517 sgot->output_section->vma + sgot->output_offset
3518 + offset);
3519 arm_elf_add_rofixup(output_bfd, globals->srofixup,
3520 sgot->output_section->vma + sgot->output_offset
3521 + offset + 4);
3522 bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + offset);
3523 bfd_put_32 (output_bfd, got_value, sgot->contents + offset + 4);
3524 }
3525 *funcdesc_offset |= 1;
3526 }
3527}
3528
780a67af
NC
3529/* Create an entry in an ARM ELF linker hash table. */
3530
3531static struct bfd_hash_entry *
57e8b36a 3532elf32_arm_link_hash_newfunc (struct bfd_hash_entry * entry,
99059e56
RM
3533 struct bfd_hash_table * table,
3534 const char * string)
780a67af
NC
3535{
3536 struct elf32_arm_link_hash_entry * ret =
3537 (struct elf32_arm_link_hash_entry *) entry;
3538
3539 /* Allocate the structure if it has not already been allocated by a
3540 subclass. */
906e58ca 3541 if (ret == NULL)
21d799b5 3542 ret = (struct elf32_arm_link_hash_entry *)
99059e56 3543 bfd_hash_allocate (table, sizeof (struct elf32_arm_link_hash_entry));
57e8b36a 3544 if (ret == NULL)
780a67af
NC
3545 return (struct bfd_hash_entry *) ret;
3546
3547 /* Call the allocation method of the superclass. */
3548 ret = ((struct elf32_arm_link_hash_entry *)
3549 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3550 table, string));
57e8b36a 3551 if (ret != NULL)
b7693d02 3552 {
ba93b8ac 3553 ret->tls_type = GOT_UNKNOWN;
0855e32b 3554 ret->tlsdesc_got = (bfd_vma) -1;
34e77a92
RS
3555 ret->plt.thumb_refcount = 0;
3556 ret->plt.maybe_thumb_refcount = 0;
3557 ret->plt.noncall_refcount = 0;
3558 ret->plt.got_offset = -1;
0a1b45a2 3559 ret->is_iplt = false;
a4fd1a8e 3560 ret->export_glue = NULL;
906e58ca
NC
3561
3562 ret->stub_cache = NULL;
e8b09b87
CL
3563
3564 ret->fdpic_cnts.gotofffuncdesc_cnt = 0;
3565 ret->fdpic_cnts.gotfuncdesc_cnt = 0;
3566 ret->fdpic_cnts.funcdesc_cnt = 0;
3567 ret->fdpic_cnts.funcdesc_offset = -1;
3568 ret->fdpic_cnts.gotfuncdesc_offset = -1;
b7693d02 3569 }
780a67af
NC
3570
3571 return (struct bfd_hash_entry *) ret;
3572}
3573
34e77a92
RS
3574/* Ensure that we have allocated bookkeeping structures for ABFD's local
3575 symbols. */
3576
0a1b45a2 3577static bool
34e77a92
RS
3578elf32_arm_allocate_local_sym_info (bfd *abfd)
3579{
3580 if (elf_local_got_refcounts (abfd) == NULL)
3581 {
3582 bfd_size_type num_syms;
3583 bfd_size_type size;
3584 char *data;
3585
3586 num_syms = elf_tdata (abfd)->symtab_hdr.sh_info;
3587 size = num_syms * (sizeof (bfd_signed_vma)
34e77a92 3588 + sizeof (bfd_vma)
f911bb22
AM
3589 + sizeof (struct arm_local_iplt_info *)
3590 + sizeof (struct fdpic_local)
3591 + sizeof (char));
34e77a92
RS
3592 data = bfd_zalloc (abfd, size);
3593 if (data == NULL)
0a1b45a2 3594 return false;
34e77a92 3595
f911bb22
AM
3596 /* It is important that these all be allocated in descending
3597 order of required alignment, so that arrays allocated later
3598 will be sufficiently aligned. */
34e77a92
RS
3599 elf_local_got_refcounts (abfd) = (bfd_signed_vma *) data;
3600 data += num_syms * sizeof (bfd_signed_vma);
3601
f911bb22
AM
3602 elf32_arm_local_tlsdesc_gotent (abfd) = (bfd_vma *) data;
3603 data += num_syms * sizeof (bfd_vma);
3604
34e77a92
RS
3605 elf32_arm_local_iplt (abfd) = (struct arm_local_iplt_info **) data;
3606 data += num_syms * sizeof (struct arm_local_iplt_info *);
3607
f911bb22
AM
3608 elf32_arm_local_fdpic_cnts (abfd) = (struct fdpic_local *) data;
3609 data += num_syms * sizeof (struct fdpic_local);
34e77a92
RS
3610
3611 elf32_arm_local_got_tls_type (abfd) = data;
f911bb22
AM
3612#if GCC_VERSION >= 3000
3613 BFD_ASSERT (__alignof__ (*elf32_arm_local_tlsdesc_gotent (abfd))
3614 <= __alignof__ (*elf_local_got_refcounts (abfd)));
3615 BFD_ASSERT (__alignof__ (*elf32_arm_local_iplt (abfd))
3616 <= __alignof__ (*elf32_arm_local_tlsdesc_gotent (abfd)));
3617 BFD_ASSERT (__alignof__ (*elf32_arm_local_fdpic_cnts (abfd))
3618 <= __alignof__ (*elf32_arm_local_iplt (abfd)));
3619 BFD_ASSERT (__alignof__ (*elf32_arm_local_got_tls_type (abfd))
3620 <= __alignof__ (*elf32_arm_local_fdpic_cnts (abfd)));
3621#endif
34e77a92 3622 }
0a1b45a2 3623 return true;
34e77a92
RS
3624}
3625
3626/* Return the .iplt information for local symbol R_SYMNDX, which belongs
3627 to input bfd ABFD. Create the information if it doesn't already exist.
3628 Return null if an allocation fails. */
3629
3630static struct arm_local_iplt_info *
3631elf32_arm_create_local_iplt (bfd *abfd, unsigned long r_symndx)
3632{
3633 struct arm_local_iplt_info **ptr;
3634
3635 if (!elf32_arm_allocate_local_sym_info (abfd))
3636 return NULL;
3637
3638 BFD_ASSERT (r_symndx < elf_tdata (abfd)->symtab_hdr.sh_info);
3639 ptr = &elf32_arm_local_iplt (abfd)[r_symndx];
3640 if (*ptr == NULL)
3641 *ptr = bfd_zalloc (abfd, sizeof (**ptr));
3642 return *ptr;
3643}
3644
3645/* Try to obtain PLT information for the symbol with index R_SYMNDX
3646 in ABFD's symbol table. If the symbol is global, H points to its
3647 hash table entry, otherwise H is null.
3648
3649 Return true if the symbol does have PLT information. When returning
3650 true, point *ROOT_PLT at the target-independent reference count/offset
3651 union and *ARM_PLT at the ARM-specific information. */
3652
0a1b45a2 3653static bool
4ba2ef8f
TP
3654elf32_arm_get_plt_info (bfd *abfd, struct elf32_arm_link_hash_table *globals,
3655 struct elf32_arm_link_hash_entry *h,
34e77a92
RS
3656 unsigned long r_symndx, union gotplt_union **root_plt,
3657 struct arm_plt_info **arm_plt)
3658{
3659 struct arm_local_iplt_info *local_iplt;
3660
4ba2ef8f 3661 if (globals->root.splt == NULL && globals->root.iplt == NULL)
0a1b45a2 3662 return false;
4ba2ef8f 3663
34e77a92
RS
3664 if (h != NULL)
3665 {
3666 *root_plt = &h->root.plt;
3667 *arm_plt = &h->plt;
0a1b45a2 3668 return true;
34e77a92
RS
3669 }
3670
3671 if (elf32_arm_local_iplt (abfd) == NULL)
0a1b45a2 3672 return false;
34e77a92
RS
3673
3674 local_iplt = elf32_arm_local_iplt (abfd)[r_symndx];
3675 if (local_iplt == NULL)
0a1b45a2 3676 return false;
34e77a92
RS
3677
3678 *root_plt = &local_iplt->root;
3679 *arm_plt = &local_iplt->arm;
0a1b45a2 3680 return true;
34e77a92
RS
3681}
3682
0a1b45a2 3683static bool using_thumb_only (struct elf32_arm_link_hash_table *globals);
59029f57 3684
34e77a92
RS
3685/* Return true if the PLT described by ARM_PLT requires a Thumb stub
3686 before it. */
3687
0a1b45a2 3688static bool
34e77a92
RS
3689elf32_arm_plt_needs_thumb_stub_p (struct bfd_link_info *info,
3690 struct arm_plt_info *arm_plt)
3691{
3692 struct elf32_arm_link_hash_table *htab;
3693
3694 htab = elf32_arm_hash_table (info);
59029f57
CL
3695
3696 return (!using_thumb_only(htab) && (arm_plt->thumb_refcount != 0
3697 || (!htab->use_blx && arm_plt->maybe_thumb_refcount != 0)));
34e77a92
RS
3698}
3699
3700/* Return a pointer to the head of the dynamic reloc list that should
3701 be used for local symbol ISYM, which is symbol number R_SYMNDX in
3702 ABFD's symbol table. Return null if an error occurs. */
3703
3704static struct elf_dyn_relocs **
3705elf32_arm_get_local_dynreloc_list (bfd *abfd, unsigned long r_symndx,
3706 Elf_Internal_Sym *isym)
3707{
3708 if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
3709 {
3710 struct arm_local_iplt_info *local_iplt;
3711
3712 local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
3713 if (local_iplt == NULL)
3714 return NULL;
3715 return &local_iplt->dyn_relocs;
3716 }
3717 else
3718 {
3719 /* Track dynamic relocs needed for local syms too.
3720 We really need local syms available to do this
3721 easily. Oh well. */
3722 asection *s;
3723 void *vpp;
3724
3725 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
3726 if (s == NULL)
3727 abort ();
3728
3729 vpp = &elf_section_data (s)->local_dynrel;
3730 return (struct elf_dyn_relocs **) vpp;
3731 }
3732}
3733
906e58ca
NC
3734/* Initialize an entry in the stub hash table. */
3735
3736static struct bfd_hash_entry *
3737stub_hash_newfunc (struct bfd_hash_entry *entry,
3738 struct bfd_hash_table *table,
3739 const char *string)
3740{
3741 /* Allocate the structure if it has not already been allocated by a
3742 subclass. */
3743 if (entry == NULL)
3744 {
21d799b5 3745 entry = (struct bfd_hash_entry *)
99059e56 3746 bfd_hash_allocate (table, sizeof (struct elf32_arm_stub_hash_entry));
906e58ca
NC
3747 if (entry == NULL)
3748 return entry;
3749 }
3750
3751 /* Call the allocation method of the superclass. */
3752 entry = bfd_hash_newfunc (entry, table, string);
3753 if (entry != NULL)
3754 {
3755 struct elf32_arm_stub_hash_entry *eh;
3756
3757 /* Initialize the local fields. */
3758 eh = (struct elf32_arm_stub_hash_entry *) entry;
3759 eh->stub_sec = NULL;
0955507f 3760 eh->stub_offset = (bfd_vma) -1;
8d9d9490 3761 eh->source_value = 0;
906e58ca
NC
3762 eh->target_value = 0;
3763 eh->target_section = NULL;
cedfb179 3764 eh->orig_insn = 0;
906e58ca 3765 eh->stub_type = arm_stub_none;
461a49ca
DJ
3766 eh->stub_size = 0;
3767 eh->stub_template = NULL;
0955507f 3768 eh->stub_template_size = -1;
906e58ca
NC
3769 eh->h = NULL;
3770 eh->id_sec = NULL;
d8d2f433 3771 eh->output_name = NULL;
906e58ca
NC
3772 }
3773
3774 return entry;
3775}
3776
00a97672 3777/* Create .got, .gotplt, and .rel(a).got sections in DYNOBJ, and set up
5e681ec4
PB
3778 shortcuts to them in our hash table. */
3779
0a1b45a2 3780static bool
57e8b36a 3781create_got_section (bfd *dynobj, struct bfd_link_info *info)
5e681ec4
PB
3782{
3783 struct elf32_arm_link_hash_table *htab;
3784
e5a52504 3785 htab = elf32_arm_hash_table (info);
4dfe6ac6 3786 if (htab == NULL)
0a1b45a2 3787 return false;
4dfe6ac6 3788
5e681ec4 3789 if (! _bfd_elf_create_got_section (dynobj, info))
0a1b45a2 3790 return false;
5e681ec4 3791
e8b09b87
CL
3792 /* Also create .rofixup. */
3793 if (htab->fdpic_p)
3794 {
3795 htab->srofixup = bfd_make_section_with_flags (dynobj, ".rofixup",
3796 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
3797 | SEC_IN_MEMORY | SEC_LINKER_CREATED | SEC_READONLY));
fd361982
AM
3798 if (htab->srofixup == NULL
3799 || !bfd_set_section_alignment (htab->srofixup, 2))
0a1b45a2 3800 return false;
e8b09b87
CL
3801 }
3802
0a1b45a2 3803 return true;
5e681ec4
PB
3804}
3805
34e77a92
RS
3806/* Create the .iplt, .rel(a).iplt and .igot.plt sections. */
3807
0a1b45a2 3808static bool
34e77a92
RS
3809create_ifunc_sections (struct bfd_link_info *info)
3810{
3811 struct elf32_arm_link_hash_table *htab;
3812 const struct elf_backend_data *bed;
3813 bfd *dynobj;
3814 asection *s;
3815 flagword flags;
b38cadfb 3816
34e77a92
RS
3817 htab = elf32_arm_hash_table (info);
3818 dynobj = htab->root.dynobj;
3819 bed = get_elf_backend_data (dynobj);
3820 flags = bed->dynamic_sec_flags;
3821
3822 if (htab->root.iplt == NULL)
3823 {
3d4d4302
AM
3824 s = bfd_make_section_anyway_with_flags (dynobj, ".iplt",
3825 flags | SEC_READONLY | SEC_CODE);
34e77a92 3826 if (s == NULL
fd361982 3827 || !bfd_set_section_alignment (s, bed->plt_alignment))
0a1b45a2 3828 return false;
34e77a92
RS
3829 htab->root.iplt = s;
3830 }
3831
3832 if (htab->root.irelplt == NULL)
3833 {
3d4d4302
AM
3834 s = bfd_make_section_anyway_with_flags (dynobj,
3835 RELOC_SECTION (htab, ".iplt"),
3836 flags | SEC_READONLY);
34e77a92 3837 if (s == NULL
fd361982 3838 || !bfd_set_section_alignment (s, bed->s->log_file_align))
0a1b45a2 3839 return false;
34e77a92
RS
3840 htab->root.irelplt = s;
3841 }
3842
3843 if (htab->root.igotplt == NULL)
3844 {
3d4d4302 3845 s = bfd_make_section_anyway_with_flags (dynobj, ".igot.plt", flags);
34e77a92 3846 if (s == NULL
fd361982 3847 || !bfd_set_section_alignment (s, bed->s->log_file_align))
0a1b45a2 3848 return false;
34e77a92
RS
3849 htab->root.igotplt = s;
3850 }
0a1b45a2 3851 return true;
34e77a92
RS
3852}
3853
eed94f8f
NC
3854/* Determine if we're dealing with a Thumb only architecture. */
3855
0a1b45a2 3856static bool
eed94f8f
NC
3857using_thumb_only (struct elf32_arm_link_hash_table *globals)
3858{
2fd158eb
TP
3859 int arch;
3860 int profile = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3861 Tag_CPU_arch_profile);
eed94f8f 3862
2fd158eb
TP
3863 if (profile)
3864 return profile == 'M';
eed94f8f 3865
2fd158eb 3866 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
eed94f8f 3867
60a019a0 3868 /* Force return logic to be reviewed for each new architecture. */
031254f2 3869 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
60a019a0 3870
2fd158eb
TP
3871 if (arch == TAG_CPU_ARCH_V6_M
3872 || arch == TAG_CPU_ARCH_V6S_M
3873 || arch == TAG_CPU_ARCH_V7E_M
3874 || arch == TAG_CPU_ARCH_V8M_BASE
031254f2
AV
3875 || arch == TAG_CPU_ARCH_V8M_MAIN
3876 || arch == TAG_CPU_ARCH_V8_1M_MAIN)
0a1b45a2 3877 return true;
eed94f8f 3878
0a1b45a2 3879 return false;
eed94f8f
NC
3880}
3881
3882/* Determine if we're dealing with a Thumb-2 object. */
3883
0a1b45a2 3884static bool
eed94f8f
NC
3885using_thumb2 (struct elf32_arm_link_hash_table *globals)
3886{
60a019a0
TP
3887 int arch;
3888 int thumb_isa = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3889 Tag_THUMB_ISA_use);
3890
3891 if (thumb_isa)
3892 return thumb_isa == 2;
3893
3894 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3895
3896 /* Force return logic to be reviewed for each new architecture. */
031254f2 3897 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
60a019a0
TP
3898
3899 return (arch == TAG_CPU_ARCH_V6T2
3900 || arch == TAG_CPU_ARCH_V7
3901 || arch == TAG_CPU_ARCH_V7E_M
3902 || arch == TAG_CPU_ARCH_V8
bff0500d 3903 || arch == TAG_CPU_ARCH_V8R
031254f2
AV
3904 || arch == TAG_CPU_ARCH_V8M_MAIN
3905 || arch == TAG_CPU_ARCH_V8_1M_MAIN);
eed94f8f
NC
3906}
3907
5e866f5a
TP
3908/* Determine whether Thumb-2 BL instruction is available. */
3909
0a1b45a2 3910static bool
5e866f5a
TP
3911using_thumb2_bl (struct elf32_arm_link_hash_table *globals)
3912{
3913 int arch =
3914 bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3915
3916 /* Force return logic to be reviewed for each new architecture. */
031254f2 3917 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
5e866f5a
TP
3918
3919 /* Architecture was introduced after ARMv6T2 (eg. ARMv6-M). */
3920 return (arch == TAG_CPU_ARCH_V6T2
3921 || arch >= TAG_CPU_ARCH_V7);
3922}
3923
00a97672
RS
3924/* Create .plt, .rel(a).plt, .got, .got.plt, .rel(a).got, .dynbss, and
3925 .rel(a).bss sections in DYNOBJ, and set up shortcuts to them in our
5e681ec4
PB
3926 hash table. */
3927
0a1b45a2 3928static bool
57e8b36a 3929elf32_arm_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
5e681ec4
PB
3930{
3931 struct elf32_arm_link_hash_table *htab;
3932
3933 htab = elf32_arm_hash_table (info);
4dfe6ac6 3934 if (htab == NULL)
0a1b45a2 3935 return false;
4dfe6ac6 3936
362d30a1 3937 if (!htab->root.sgot && !create_got_section (dynobj, info))
0a1b45a2 3938 return false;
5e681ec4
PB
3939
3940 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
0a1b45a2 3941 return false;
5e681ec4 3942
90c14f0c 3943 if (htab->root.target_os == is_vxworks)
00a97672
RS
3944 {
3945 if (!elf_vxworks_create_dynamic_sections (dynobj, info, &htab->srelplt2))
0a1b45a2 3946 return false;
00a97672 3947
0e1862bb 3948 if (bfd_link_pic (info))
00a97672
RS
3949 {
3950 htab->plt_header_size = 0;
3951 htab->plt_entry_size
3952 = 4 * ARRAY_SIZE (elf32_arm_vxworks_shared_plt_entry);
3953 }
3954 else
3955 {
3956 htab->plt_header_size
3957 = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt0_entry);
3958 htab->plt_entry_size
3959 = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt_entry);
3960 }
aebf9be7
NC
3961
3962 if (elf_elfheader (dynobj))
3963 elf_elfheader (dynobj)->e_ident[EI_CLASS] = ELFCLASS32;
00a97672 3964 }
eed94f8f
NC
3965 else
3966 {
3967 /* PR ld/16017
3968 Test for thumb only architectures. Note - we cannot just call
3969 using_thumb_only() as the attributes in the output bfd have not been
3970 initialised at this point, so instead we use the input bfd. */
3971 bfd * saved_obfd = htab->obfd;
3972
3973 htab->obfd = dynobj;
3974 if (using_thumb_only (htab))
3975 {
3976 htab->plt_header_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
3977 htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
3978 }
3979 htab->obfd = saved_obfd;
3980 }
5e681ec4 3981
7801f98f
CL
3982 if (htab->fdpic_p) {
3983 htab->plt_header_size = 0;
3984 if (info->flags & DF_BIND_NOW)
3985 htab->plt_entry_size = 4 * (ARRAY_SIZE(elf32_arm_fdpic_plt_entry) - 5);
3986 else
3987 htab->plt_entry_size = 4 * ARRAY_SIZE(elf32_arm_fdpic_plt_entry);
3988 }
3989
362d30a1
RS
3990 if (!htab->root.splt
3991 || !htab->root.srelplt
9d19e4fd
AM
3992 || !htab->root.sdynbss
3993 || (!bfd_link_pic (info) && !htab->root.srelbss))
5e681ec4
PB
3994 abort ();
3995
0a1b45a2 3996 return true;
5e681ec4
PB
3997}
3998
906e58ca
NC
3999/* Copy the extra info we tack onto an elf_link_hash_entry. */
4000
4001static void
4002elf32_arm_copy_indirect_symbol (struct bfd_link_info *info,
4003 struct elf_link_hash_entry *dir,
4004 struct elf_link_hash_entry *ind)
4005{
4006 struct elf32_arm_link_hash_entry *edir, *eind;
4007
4008 edir = (struct elf32_arm_link_hash_entry *) dir;
4009 eind = (struct elf32_arm_link_hash_entry *) ind;
4010
906e58ca
NC
4011 if (ind->root.type == bfd_link_hash_indirect)
4012 {
4013 /* Copy over PLT info. */
34e77a92
RS
4014 edir->plt.thumb_refcount += eind->plt.thumb_refcount;
4015 eind->plt.thumb_refcount = 0;
4016 edir->plt.maybe_thumb_refcount += eind->plt.maybe_thumb_refcount;
4017 eind->plt.maybe_thumb_refcount = 0;
4018 edir->plt.noncall_refcount += eind->plt.noncall_refcount;
4019 eind->plt.noncall_refcount = 0;
4020
e8b09b87
CL
4021 /* Copy FDPIC counters. */
4022 edir->fdpic_cnts.gotofffuncdesc_cnt += eind->fdpic_cnts.gotofffuncdesc_cnt;
4023 edir->fdpic_cnts.gotfuncdesc_cnt += eind->fdpic_cnts.gotfuncdesc_cnt;
4024 edir->fdpic_cnts.funcdesc_cnt += eind->fdpic_cnts.funcdesc_cnt;
4025
34e77a92
RS
4026 /* We should only allocate a function to .iplt once the final
4027 symbol information is known. */
4028 BFD_ASSERT (!eind->is_iplt);
906e58ca
NC
4029
4030 if (dir->got.refcount <= 0)
4031 {
4032 edir->tls_type = eind->tls_type;
4033 eind->tls_type = GOT_UNKNOWN;
4034 }
4035 }
4036
4037 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
4038}
4039
68faa637
AM
4040/* Destroy an ARM elf linker hash table. */
4041
4042static void
d495ab0d 4043elf32_arm_link_hash_table_free (bfd *obfd)
68faa637
AM
4044{
4045 struct elf32_arm_link_hash_table *ret
d495ab0d 4046 = (struct elf32_arm_link_hash_table *) obfd->link.hash;
68faa637
AM
4047
4048 bfd_hash_table_free (&ret->stub_hash_table);
d495ab0d 4049 _bfd_elf_link_hash_table_free (obfd);
68faa637
AM
4050}
4051
906e58ca
NC
4052/* Create an ARM elf linker hash table. */
4053
4054static struct bfd_link_hash_table *
4055elf32_arm_link_hash_table_create (bfd *abfd)
4056{
4057 struct elf32_arm_link_hash_table *ret;
986f0783 4058 size_t amt = sizeof (struct elf32_arm_link_hash_table);
906e58ca 4059
7bf52ea2 4060 ret = (struct elf32_arm_link_hash_table *) bfd_zmalloc (amt);
906e58ca
NC
4061 if (ret == NULL)
4062 return NULL;
4063
4064 if (!_bfd_elf_link_hash_table_init (& ret->root, abfd,
4065 elf32_arm_link_hash_newfunc,
4dfe6ac6
NC
4066 sizeof (struct elf32_arm_link_hash_entry),
4067 ARM_ELF_DATA))
906e58ca
NC
4068 {
4069 free (ret);
4070 return NULL;
4071 }
4072
906e58ca 4073 ret->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
a504d23a 4074 ret->stm32l4xx_fix = BFD_ARM_STM32L4XX_FIX_NONE;
906e58ca
NC
4075#ifdef FOUR_WORD_PLT
4076 ret->plt_header_size = 16;
4077 ret->plt_entry_size = 16;
4078#else
4079 ret->plt_header_size = 20;
1db37fe6 4080 ret->plt_entry_size = elf32_arm_use_long_plt_entry ? 16 : 12;
906e58ca 4081#endif
0a1b45a2 4082 ret->use_rel = true;
906e58ca 4083 ret->obfd = abfd;
617a5ada 4084 ret->fdpic_p = 0;
906e58ca
NC
4085
4086 if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc,
4087 sizeof (struct elf32_arm_stub_hash_entry)))
4088 {
d495ab0d 4089 _bfd_elf_link_hash_table_free (abfd);
906e58ca
NC
4090 return NULL;
4091 }
d495ab0d 4092 ret->root.root.hash_table_free = elf32_arm_link_hash_table_free;
906e58ca
NC
4093
4094 return &ret->root.root;
4095}
4096
cd1dac3d
DG
4097/* Determine what kind of NOPs are available. */
4098
0a1b45a2 4099static bool
cd1dac3d
DG
4100arch_has_arm_nop (struct elf32_arm_link_hash_table *globals)
4101{
4102 const int arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
4103 Tag_CPU_arch);
cd1dac3d 4104
60a019a0 4105 /* Force return logic to be reviewed for each new architecture. */
031254f2 4106 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
60a019a0
TP
4107
4108 return (arch == TAG_CPU_ARCH_V6T2
4109 || arch == TAG_CPU_ARCH_V6K
4110 || arch == TAG_CPU_ARCH_V7
bff0500d
TP
4111 || arch == TAG_CPU_ARCH_V8
4112 || arch == TAG_CPU_ARCH_V8R);
cd1dac3d
DG
4113}
4114
0a1b45a2 4115static bool
f4ac8484
DJ
4116arm_stub_is_thumb (enum elf32_arm_stub_type stub_type)
4117{
4118 switch (stub_type)
4119 {
fea2b4d6 4120 case arm_stub_long_branch_thumb_only:
80c135e5 4121 case arm_stub_long_branch_thumb2_only:
d5a67c02 4122 case arm_stub_long_branch_thumb2_only_pure:
fea2b4d6
CL
4123 case arm_stub_long_branch_v4t_thumb_arm:
4124 case arm_stub_short_branch_v4t_thumb_arm:
ebe24dd4 4125 case arm_stub_long_branch_v4t_thumb_arm_pic:
12352d3f 4126 case arm_stub_long_branch_v4t_thumb_tls_pic:
ebe24dd4 4127 case arm_stub_long_branch_thumb_only_pic:
4ba2ef8f 4128 case arm_stub_cmse_branch_thumb_only:
0a1b45a2 4129 return true;
f4ac8484
DJ
4130 case arm_stub_none:
4131 BFD_FAIL ();
0a1b45a2 4132 return false;
f4ac8484
DJ
4133 break;
4134 default:
0a1b45a2 4135 return false;
f4ac8484
DJ
4136 }
4137}
4138
906e58ca
NC
4139/* Determine the type of stub needed, if any, for a call. */
4140
4141static enum elf32_arm_stub_type
4142arm_type_of_stub (struct bfd_link_info *info,
4143 asection *input_sec,
4144 const Elf_Internal_Rela *rel,
34e77a92 4145 unsigned char st_type,
35fc36a8 4146 enum arm_st_branch_type *actual_branch_type,
906e58ca 4147 struct elf32_arm_link_hash_entry *hash,
c820be07
NC
4148 bfd_vma destination,
4149 asection *sym_sec,
4150 bfd *input_bfd,
4151 const char *name)
906e58ca
NC
4152{
4153 bfd_vma location;
4154 bfd_signed_vma branch_offset;
4155 unsigned int r_type;
4156 struct elf32_arm_link_hash_table * globals;
0a1b45a2 4157 bool thumb2, thumb2_bl, thumb_only;
906e58ca 4158 enum elf32_arm_stub_type stub_type = arm_stub_none;
5fa9e92f 4159 int use_plt = 0;
35fc36a8 4160 enum arm_st_branch_type branch_type = *actual_branch_type;
34e77a92
RS
4161 union gotplt_union *root_plt;
4162 struct arm_plt_info *arm_plt;
d5a67c02
AV
4163 int arch;
4164 int thumb2_movw;
906e58ca 4165
35fc36a8 4166 if (branch_type == ST_BRANCH_LONG)
da5938a2
NC
4167 return stub_type;
4168
906e58ca 4169 globals = elf32_arm_hash_table (info);
4dfe6ac6
NC
4170 if (globals == NULL)
4171 return stub_type;
906e58ca
NC
4172
4173 thumb_only = using_thumb_only (globals);
906e58ca 4174 thumb2 = using_thumb2 (globals);
5e866f5a 4175 thumb2_bl = using_thumb2_bl (globals);
906e58ca 4176
d5a67c02
AV
4177 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
4178
4179 /* True for architectures that implement the thumb2 movw instruction. */
4180 thumb2_movw = thumb2 || (arch == TAG_CPU_ARCH_V8M_BASE);
4181
906e58ca
NC
4182 /* Determine where the call point is. */
4183 location = (input_sec->output_offset
4184 + input_sec->output_section->vma
4185 + rel->r_offset);
4186
906e58ca
NC
4187 r_type = ELF32_R_TYPE (rel->r_info);
4188
39f21624
NC
4189 /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we
4190 are considering a function call relocation. */
c5423981 4191 if (thumb_only && (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
07d6d2b8 4192 || r_type == R_ARM_THM_JUMP19)
39f21624
NC
4193 && branch_type == ST_BRANCH_TO_ARM)
4194 branch_type = ST_BRANCH_TO_THUMB;
4195
34e77a92
RS
4196 /* For TLS call relocs, it is the caller's responsibility to provide
4197 the address of the appropriate trampoline. */
4198 if (r_type != R_ARM_TLS_CALL
4199 && r_type != R_ARM_THM_TLS_CALL
4ba2ef8f
TP
4200 && elf32_arm_get_plt_info (input_bfd, globals, hash,
4201 ELF32_R_SYM (rel->r_info), &root_plt,
4202 &arm_plt)
34e77a92 4203 && root_plt->offset != (bfd_vma) -1)
5fa9e92f 4204 {
34e77a92 4205 asection *splt;
fe33d2fa 4206
34e77a92
RS
4207 if (hash == NULL || hash->is_iplt)
4208 splt = globals->root.iplt;
4209 else
4210 splt = globals->root.splt;
4211 if (splt != NULL)
b38cadfb 4212 {
34e77a92
RS
4213 use_plt = 1;
4214
4215 /* Note when dealing with PLT entries: the main PLT stub is in
4216 ARM mode, so if the branch is in Thumb mode, another
4217 Thumb->ARM stub will be inserted later just before the ARM
2df2751d
CL
4218 PLT stub. If a long branch stub is needed, we'll add a
4219 Thumb->Arm one and branch directly to the ARM PLT entry.
4220 Here, we have to check if a pre-PLT Thumb->ARM stub
4221 is needed and if it will be close enough. */
34e77a92
RS
4222
4223 destination = (splt->output_section->vma
4224 + splt->output_offset
4225 + root_plt->offset);
4226 st_type = STT_FUNC;
2df2751d
CL
4227
4228 /* Thumb branch/call to PLT: it can become a branch to ARM
4229 or to Thumb. We must perform the same checks and
4230 corrections as in elf32_arm_final_link_relocate. */
4231 if ((r_type == R_ARM_THM_CALL)
4232 || (r_type == R_ARM_THM_JUMP24))
4233 {
4234 if (globals->use_blx
4235 && r_type == R_ARM_THM_CALL
4236 && !thumb_only)
4237 {
4238 /* If the Thumb BLX instruction is available, convert
4239 the BL to a BLX instruction to call the ARM-mode
4240 PLT entry. */
4241 branch_type = ST_BRANCH_TO_ARM;
4242 }
4243 else
4244 {
4245 if (!thumb_only)
4246 /* Target the Thumb stub before the ARM PLT entry. */
4247 destination -= PLT_THUMB_STUB_SIZE;
4248 branch_type = ST_BRANCH_TO_THUMB;
4249 }
4250 }
4251 else
4252 {
4253 branch_type = ST_BRANCH_TO_ARM;
4254 }
34e77a92 4255 }
5fa9e92f 4256 }
34e77a92
RS
4257 /* Calls to STT_GNU_IFUNC symbols should go through a PLT. */
4258 BFD_ASSERT (st_type != STT_GNU_IFUNC);
906e58ca 4259
fe33d2fa
CL
4260 branch_offset = (bfd_signed_vma)(destination - location);
4261
0855e32b 4262 if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
c5423981 4263 || r_type == R_ARM_THM_TLS_CALL || r_type == R_ARM_THM_JUMP19)
906e58ca 4264 {
5fa9e92f
CL
4265 /* Handle cases where:
4266 - this call goes too far (different Thumb/Thumb2 max
99059e56 4267 distance)
155d87d7 4268 - it's a Thumb->Arm call and blx is not available, or it's a
99059e56
RM
4269 Thumb->Arm branch (not bl). A stub is needed in this case,
4270 but only if this call is not through a PLT entry. Indeed,
695344c0 4271 PLT stubs handle mode switching already. */
5e866f5a 4272 if ((!thumb2_bl
906e58ca
NC
4273 && (branch_offset > THM_MAX_FWD_BRANCH_OFFSET
4274 || (branch_offset < THM_MAX_BWD_BRANCH_OFFSET)))
5e866f5a 4275 || (thumb2_bl
906e58ca
NC
4276 && (branch_offset > THM2_MAX_FWD_BRANCH_OFFSET
4277 || (branch_offset < THM2_MAX_BWD_BRANCH_OFFSET)))
c5423981
TG
4278 || (thumb2
4279 && (branch_offset > THM2_MAX_FWD_COND_BRANCH_OFFSET
4280 || (branch_offset < THM2_MAX_BWD_COND_BRANCH_OFFSET))
4281 && (r_type == R_ARM_THM_JUMP19))
35fc36a8 4282 || (branch_type == ST_BRANCH_TO_ARM
0855e32b
NS
4283 && (((r_type == R_ARM_THM_CALL
4284 || r_type == R_ARM_THM_TLS_CALL) && !globals->use_blx)
c5423981 4285 || (r_type == R_ARM_THM_JUMP24)
07d6d2b8 4286 || (r_type == R_ARM_THM_JUMP19))
5fa9e92f 4287 && !use_plt))
906e58ca 4288 {
2df2751d
CL
4289 /* If we need to insert a Thumb-Thumb long branch stub to a
4290 PLT, use one that branches directly to the ARM PLT
4291 stub. If we pretended we'd use the pre-PLT Thumb->ARM
4292 stub, undo this now. */
695344c0
NC
4293 if ((branch_type == ST_BRANCH_TO_THUMB) && use_plt && !thumb_only)
4294 {
4295 branch_type = ST_BRANCH_TO_ARM;
4296 branch_offset += PLT_THUMB_STUB_SIZE;
4297 }
2df2751d 4298
35fc36a8 4299 if (branch_type == ST_BRANCH_TO_THUMB)
906e58ca
NC
4300 {
4301 /* Thumb to thumb. */
4302 if (!thumb_only)
4303 {
d5a67c02 4304 if (input_sec->flags & SEC_ELF_PURECODE)
10463f39 4305 _bfd_error_handler
871b3ab2 4306 (_("%pB(%pA): warning: long branch veneers used in"
10463f39
AM
4307 " section with SHF_ARM_PURECODE section"
4308 " attribute is only supported for M-profile"
90b6238f 4309 " targets that implement the movw instruction"),
10463f39 4310 input_bfd, input_sec);
d5a67c02 4311
0e1862bb 4312 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
c2b4a39d 4313 /* PIC stubs. */
155d87d7 4314 ? ((globals->use_blx
9553db3c 4315 && (r_type == R_ARM_THM_CALL))
155d87d7
CL
4316 /* V5T and above. Stub starts with ARM code, so
4317 we must be able to switch mode before
4318 reaching it, which is only possible for 'bl'
4319 (ie R_ARM_THM_CALL relocation). */
cf3eccff 4320 ? arm_stub_long_branch_any_thumb_pic
ebe24dd4 4321 /* On V4T, use Thumb code only. */
d3626fb0 4322 : arm_stub_long_branch_v4t_thumb_thumb_pic)
c2b4a39d
CL
4323
4324 /* non-PIC stubs. */
155d87d7 4325 : ((globals->use_blx
9553db3c 4326 && (r_type == R_ARM_THM_CALL))
c2b4a39d
CL
4327 /* V5T and above. */
4328 ? arm_stub_long_branch_any_any
4329 /* V4T. */
d3626fb0 4330 : arm_stub_long_branch_v4t_thumb_thumb);
906e58ca
NC
4331 }
4332 else
4333 {
d5a67c02
AV
4334 if (thumb2_movw && (input_sec->flags & SEC_ELF_PURECODE))
4335 stub_type = arm_stub_long_branch_thumb2_only_pure;
4336 else
4337 {
4338 if (input_sec->flags & SEC_ELF_PURECODE)
10463f39 4339 _bfd_error_handler
871b3ab2 4340 (_("%pB(%pA): warning: long branch veneers used in"
10463f39
AM
4341 " section with SHF_ARM_PURECODE section"
4342 " attribute is only supported for M-profile"
90b6238f 4343 " targets that implement the movw instruction"),
10463f39 4344 input_bfd, input_sec);
d5a67c02
AV
4345
4346 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4347 /* PIC stub. */
4348 ? arm_stub_long_branch_thumb_only_pic
4349 /* non-PIC stub. */
4350 : (thumb2 ? arm_stub_long_branch_thumb2_only
4351 : arm_stub_long_branch_thumb_only);
4352 }
906e58ca
NC
4353 }
4354 }
4355 else
4356 {
d5a67c02 4357 if (input_sec->flags & SEC_ELF_PURECODE)
10463f39 4358 _bfd_error_handler
871b3ab2 4359 (_("%pB(%pA): warning: long branch veneers used in"
10463f39
AM
4360 " section with SHF_ARM_PURECODE section"
4361 " attribute is only supported" " for M-profile"
90b6238f 4362 " targets that implement the movw instruction"),
10463f39 4363 input_bfd, input_sec);
d5a67c02 4364
906e58ca 4365 /* Thumb to arm. */
c820be07
NC
4366 if (sym_sec != NULL
4367 && sym_sec->owner != NULL
4368 && !INTERWORK_FLAG (sym_sec->owner))
4369 {
4eca0228 4370 _bfd_error_handler
90b6238f
AM
4371 (_("%pB(%s): warning: interworking not enabled;"
4372 " first occurrence: %pB: %s call to %s"),
4373 sym_sec->owner, name, input_bfd, "Thumb", "ARM");
c820be07
NC
4374 }
4375
0855e32b 4376 stub_type =
0e1862bb 4377 (bfd_link_pic (info) | globals->pic_veneer)
c2b4a39d 4378 /* PIC stubs. */
0855e32b 4379 ? (r_type == R_ARM_THM_TLS_CALL
6a631e86 4380 /* TLS PIC stubs. */
0855e32b
NS
4381 ? (globals->use_blx ? arm_stub_long_branch_any_tls_pic
4382 : arm_stub_long_branch_v4t_thumb_tls_pic)
4383 : ((globals->use_blx && r_type == R_ARM_THM_CALL)
4384 /* V5T PIC and above. */
4385 ? arm_stub_long_branch_any_arm_pic
4386 /* V4T PIC stub. */
4387 : arm_stub_long_branch_v4t_thumb_arm_pic))
c2b4a39d
CL
4388
4389 /* non-PIC stubs. */
0855e32b 4390 : ((globals->use_blx && r_type == R_ARM_THM_CALL)
c2b4a39d
CL
4391 /* V5T and above. */
4392 ? arm_stub_long_branch_any_any
4393 /* V4T. */
4394 : arm_stub_long_branch_v4t_thumb_arm);
c820be07
NC
4395
4396 /* Handle v4t short branches. */
fea2b4d6 4397 if ((stub_type == arm_stub_long_branch_v4t_thumb_arm)
c820be07
NC
4398 && (branch_offset <= THM_MAX_FWD_BRANCH_OFFSET)
4399 && (branch_offset >= THM_MAX_BWD_BRANCH_OFFSET))
fea2b4d6 4400 stub_type = arm_stub_short_branch_v4t_thumb_arm;
906e58ca
NC
4401 }
4402 }
4403 }
fe33d2fa
CL
4404 else if (r_type == R_ARM_CALL
4405 || r_type == R_ARM_JUMP24
0855e32b
NS
4406 || r_type == R_ARM_PLT32
4407 || r_type == R_ARM_TLS_CALL)
906e58ca 4408 {
d5a67c02 4409 if (input_sec->flags & SEC_ELF_PURECODE)
10463f39 4410 _bfd_error_handler
871b3ab2 4411 (_("%pB(%pA): warning: long branch veneers used in"
10463f39
AM
4412 " section with SHF_ARM_PURECODE section"
4413 " attribute is only supported for M-profile"
90b6238f 4414 " targets that implement the movw instruction"),
10463f39 4415 input_bfd, input_sec);
35fc36a8 4416 if (branch_type == ST_BRANCH_TO_THUMB)
906e58ca
NC
4417 {
4418 /* Arm to thumb. */
c820be07
NC
4419
4420 if (sym_sec != NULL
4421 && sym_sec->owner != NULL
4422 && !INTERWORK_FLAG (sym_sec->owner))
4423 {
4eca0228 4424 _bfd_error_handler
90b6238f
AM
4425 (_("%pB(%s): warning: interworking not enabled;"
4426 " first occurrence: %pB: %s call to %s"),
4427 sym_sec->owner, name, input_bfd, "ARM", "Thumb");
c820be07
NC
4428 }
4429
4430 /* We have an extra 2-bytes reach because of
4431 the mode change (bit 24 (H) of BLX encoding). */
4116d8d7
PB
4432 if (branch_offset > (ARM_MAX_FWD_BRANCH_OFFSET + 2)
4433 || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET)
0855e32b 4434 || (r_type == R_ARM_CALL && !globals->use_blx)
4116d8d7
PB
4435 || (r_type == R_ARM_JUMP24)
4436 || (r_type == R_ARM_PLT32))
906e58ca 4437 {
0e1862bb 4438 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
c2b4a39d 4439 /* PIC stubs. */
ebe24dd4
CL
4440 ? ((globals->use_blx)
4441 /* V5T and above. */
4442 ? arm_stub_long_branch_any_thumb_pic
4443 /* V4T stub. */
4444 : arm_stub_long_branch_v4t_arm_thumb_pic)
4445
c2b4a39d
CL
4446 /* non-PIC stubs. */
4447 : ((globals->use_blx)
4448 /* V5T and above. */
4449 ? arm_stub_long_branch_any_any
4450 /* V4T. */
4451 : arm_stub_long_branch_v4t_arm_thumb);
906e58ca
NC
4452 }
4453 }
4454 else
4455 {
4456 /* Arm to arm. */
4457 if (branch_offset > ARM_MAX_FWD_BRANCH_OFFSET
4458 || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET))
4459 {
0855e32b 4460 stub_type =
0e1862bb 4461 (bfd_link_pic (info) | globals->pic_veneer)
c2b4a39d 4462 /* PIC stubs. */
0855e32b 4463 ? (r_type == R_ARM_TLS_CALL
6a631e86 4464 /* TLS PIC Stub. */
0855e32b 4465 ? arm_stub_long_branch_any_tls_pic
90c14f0c 4466 : (globals->root.target_os == is_nacl
7a89b94e
NC
4467 ? arm_stub_long_branch_arm_nacl_pic
4468 : arm_stub_long_branch_any_arm_pic))
c2b4a39d 4469 /* non-PIC stubs. */
90c14f0c 4470 : (globals->root.target_os == is_nacl
7a89b94e
NC
4471 ? arm_stub_long_branch_arm_nacl
4472 : arm_stub_long_branch_any_any);
906e58ca
NC
4473 }
4474 }
4475 }
4476
fe33d2fa
CL
4477 /* If a stub is needed, record the actual destination type. */
4478 if (stub_type != arm_stub_none)
35fc36a8 4479 *actual_branch_type = branch_type;
fe33d2fa 4480
906e58ca
NC
4481 return stub_type;
4482}
4483
4484/* Build a name for an entry in the stub hash table. */
4485
4486static char *
4487elf32_arm_stub_name (const asection *input_section,
4488 const asection *sym_sec,
4489 const struct elf32_arm_link_hash_entry *hash,
fe33d2fa
CL
4490 const Elf_Internal_Rela *rel,
4491 enum elf32_arm_stub_type stub_type)
906e58ca
NC
4492{
4493 char *stub_name;
4494 bfd_size_type len;
4495
4496 if (hash)
4497 {
fe33d2fa 4498 len = 8 + 1 + strlen (hash->root.root.root.string) + 1 + 8 + 1 + 2 + 1;
21d799b5 4499 stub_name = (char *) bfd_malloc (len);
906e58ca 4500 if (stub_name != NULL)
fe33d2fa 4501 sprintf (stub_name, "%08x_%s+%x_%d",
906e58ca
NC
4502 input_section->id & 0xffffffff,
4503 hash->root.root.root.string,
fe33d2fa
CL
4504 (int) rel->r_addend & 0xffffffff,
4505 (int) stub_type);
906e58ca
NC
4506 }
4507 else
4508 {
fe33d2fa 4509 len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1 + 2 + 1;
21d799b5 4510 stub_name = (char *) bfd_malloc (len);
906e58ca 4511 if (stub_name != NULL)
fe33d2fa 4512 sprintf (stub_name, "%08x_%x:%x+%x_%d",
906e58ca
NC
4513 input_section->id & 0xffffffff,
4514 sym_sec->id & 0xffffffff,
0855e32b
NS
4515 ELF32_R_TYPE (rel->r_info) == R_ARM_TLS_CALL
4516 || ELF32_R_TYPE (rel->r_info) == R_ARM_THM_TLS_CALL
4517 ? 0 : (int) ELF32_R_SYM (rel->r_info) & 0xffffffff,
fe33d2fa
CL
4518 (int) rel->r_addend & 0xffffffff,
4519 (int) stub_type);
906e58ca
NC
4520 }
4521
4522 return stub_name;
4523}
4524
4525/* Look up an entry in the stub hash. Stub entries are cached because
4526 creating the stub name takes a bit of time. */
4527
4528static struct elf32_arm_stub_hash_entry *
4529elf32_arm_get_stub_entry (const asection *input_section,
4530 const asection *sym_sec,
4531 struct elf_link_hash_entry *hash,
4532 const Elf_Internal_Rela *rel,
fe33d2fa
CL
4533 struct elf32_arm_link_hash_table *htab,
4534 enum elf32_arm_stub_type stub_type)
906e58ca
NC
4535{
4536 struct elf32_arm_stub_hash_entry *stub_entry;
4537 struct elf32_arm_link_hash_entry *h = (struct elf32_arm_link_hash_entry *) hash;
4538 const asection *id_sec;
4539
4540 if ((input_section->flags & SEC_CODE) == 0)
4541 return NULL;
4542
4d83e8d9
CL
4543 /* If the input section is the CMSE stubs one and it needs a long
4544 branch stub to reach it's final destination, give up with an
4545 error message: this is not supported. See PR ld/24709. */
4546 if (!strncmp (input_section->name, CMSE_STUB_NAME, strlen(CMSE_STUB_NAME)))
4547 {
4548 bfd *output_bfd = htab->obfd;
4549 asection *out_sec = bfd_get_section_by_name (output_bfd, CMSE_STUB_NAME);
4550
4551 _bfd_error_handler (_("ERROR: CMSE stub (%s section) too far "
4552 "(%#" PRIx64 ") from destination (%#" PRIx64 ")"),
4553 CMSE_STUB_NAME,
4554 (uint64_t)out_sec->output_section->vma
4555 + out_sec->output_offset,
4556 (uint64_t)sym_sec->output_section->vma
4557 + sym_sec->output_offset
4558 + h->root.root.u.def.value);
4559 /* Exit, rather than leave incompletely processed
4560 relocations. */
4561 xexit(1);
4562 }
4563
906e58ca
NC
4564 /* If this input section is part of a group of sections sharing one
4565 stub section, then use the id of the first section in the group.
4566 Stub names need to include a section id, as there may well be
4567 more than one stub used to reach say, printf, and we need to
4568 distinguish between them. */
c2abbbeb 4569 BFD_ASSERT (input_section->id <= htab->top_id);
906e58ca
NC
4570 id_sec = htab->stub_group[input_section->id].link_sec;
4571
4572 if (h != NULL && h->stub_cache != NULL
4573 && h->stub_cache->h == h
fe33d2fa
CL
4574 && h->stub_cache->id_sec == id_sec
4575 && h->stub_cache->stub_type == stub_type)
906e58ca
NC
4576 {
4577 stub_entry = h->stub_cache;
4578 }
4579 else
4580 {
4581 char *stub_name;
4582
fe33d2fa 4583 stub_name = elf32_arm_stub_name (id_sec, sym_sec, h, rel, stub_type);
906e58ca
NC
4584 if (stub_name == NULL)
4585 return NULL;
4586
4587 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table,
0a1b45a2 4588 stub_name, false, false);
906e58ca
NC
4589 if (h != NULL)
4590 h->stub_cache = stub_entry;
4591
4592 free (stub_name);
4593 }
4594
4595 return stub_entry;
4596}
4597
daa4adae
TP
4598/* Whether veneers of type STUB_TYPE require to be in a dedicated output
4599 section. */
4600
0a1b45a2 4601static bool
daa4adae
TP
4602arm_dedicated_stub_output_section_required (enum elf32_arm_stub_type stub_type)
4603{
4604 if (stub_type >= max_stub_type)
4605 abort (); /* Should be unreachable. */
4606
4ba2ef8f
TP
4607 switch (stub_type)
4608 {
4609 case arm_stub_cmse_branch_thumb_only:
0a1b45a2 4610 return true;
4ba2ef8f
TP
4611
4612 default:
0a1b45a2 4613 return false;
4ba2ef8f
TP
4614 }
4615
4616 abort (); /* Should be unreachable. */
daa4adae
TP
4617}
4618
4619/* Required alignment (as a power of 2) for the dedicated section holding
4620 veneers of type STUB_TYPE, or 0 if veneers of this type are interspersed
4621 with input sections. */
4622
4623static int
4624arm_dedicated_stub_output_section_required_alignment
4625 (enum elf32_arm_stub_type stub_type)
4626{
4627 if (stub_type >= max_stub_type)
4628 abort (); /* Should be unreachable. */
4629
4ba2ef8f
TP
4630 switch (stub_type)
4631 {
4632 /* Vectors of Secure Gateway veneers must be aligned on 32byte
4633 boundary. */
4634 case arm_stub_cmse_branch_thumb_only:
4635 return 5;
4636
4637 default:
4638 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4639 return 0;
4640 }
4641
4642 abort (); /* Should be unreachable. */
daa4adae
TP
4643}
4644
4645/* Name of the dedicated output section to put veneers of type STUB_TYPE, or
4646 NULL if veneers of this type are interspersed with input sections. */
4647
4648static const char *
4649arm_dedicated_stub_output_section_name (enum elf32_arm_stub_type stub_type)
4650{
4651 if (stub_type >= max_stub_type)
4652 abort (); /* Should be unreachable. */
4653
4ba2ef8f
TP
4654 switch (stub_type)
4655 {
4656 case arm_stub_cmse_branch_thumb_only:
4d83e8d9 4657 return CMSE_STUB_NAME;
4ba2ef8f
TP
4658
4659 default:
4660 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4661 return NULL;
4662 }
4663
4664 abort (); /* Should be unreachable. */
daa4adae
TP
4665}
4666
4667/* If veneers of type STUB_TYPE should go in a dedicated output section,
4668 returns the address of the hash table field in HTAB holding a pointer to the
4669 corresponding input section. Otherwise, returns NULL. */
4670
4671static asection **
4ba2ef8f
TP
4672arm_dedicated_stub_input_section_ptr (struct elf32_arm_link_hash_table *htab,
4673 enum elf32_arm_stub_type stub_type)
daa4adae
TP
4674{
4675 if (stub_type >= max_stub_type)
4676 abort (); /* Should be unreachable. */
4677
4ba2ef8f
TP
4678 switch (stub_type)
4679 {
4680 case arm_stub_cmse_branch_thumb_only:
4681 return &htab->cmse_stub_sec;
4682
4683 default:
4684 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4685 return NULL;
4686 }
4687
4688 abort (); /* Should be unreachable. */
daa4adae
TP
4689}
4690
4691/* Find or create a stub section to contain a stub of type STUB_TYPE. SECTION
4692 is the section that branch into veneer and can be NULL if stub should go in
4693 a dedicated output section. Returns a pointer to the stub section, and the
4694 section to which the stub section will be attached (in *LINK_SEC_P).
48229727 4695 LINK_SEC_P may be NULL. */
906e58ca 4696
48229727
JB
4697static asection *
4698elf32_arm_create_or_find_stub_sec (asection **link_sec_p, asection *section,
daa4adae
TP
4699 struct elf32_arm_link_hash_table *htab,
4700 enum elf32_arm_stub_type stub_type)
906e58ca 4701{
daa4adae
TP
4702 asection *link_sec, *out_sec, **stub_sec_p;
4703 const char *stub_sec_prefix;
0a1b45a2 4704 bool dedicated_output_section =
daa4adae
TP
4705 arm_dedicated_stub_output_section_required (stub_type);
4706 int align;
906e58ca 4707
daa4adae 4708 if (dedicated_output_section)
906e58ca 4709 {
daa4adae
TP
4710 bfd *output_bfd = htab->obfd;
4711 const char *out_sec_name =
4712 arm_dedicated_stub_output_section_name (stub_type);
4713 link_sec = NULL;
4714 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
4715 stub_sec_prefix = out_sec_name;
4716 align = arm_dedicated_stub_output_section_required_alignment (stub_type);
4717 out_sec = bfd_get_section_by_name (output_bfd, out_sec_name);
4718 if (out_sec == NULL)
906e58ca 4719 {
90b6238f 4720 _bfd_error_handler (_("no address assigned to the veneers output "
4eca0228 4721 "section %s"), out_sec_name);
daa4adae 4722 return NULL;
906e58ca 4723 }
daa4adae
TP
4724 }
4725 else
4726 {
c2abbbeb 4727 BFD_ASSERT (section->id <= htab->top_id);
daa4adae
TP
4728 link_sec = htab->stub_group[section->id].link_sec;
4729 BFD_ASSERT (link_sec != NULL);
4730 stub_sec_p = &htab->stub_group[section->id].stub_sec;
4731 if (*stub_sec_p == NULL)
4732 stub_sec_p = &htab->stub_group[link_sec->id].stub_sec;
4733 stub_sec_prefix = link_sec->name;
4734 out_sec = link_sec->output_section;
90c14f0c 4735 align = htab->root.target_os == is_nacl ? 4 : 3;
906e58ca 4736 }
b38cadfb 4737
daa4adae
TP
4738 if (*stub_sec_p == NULL)
4739 {
4740 size_t namelen;
4741 bfd_size_type len;
4742 char *s_name;
4743
4744 namelen = strlen (stub_sec_prefix);
4745 len = namelen + sizeof (STUB_SUFFIX);
4746 s_name = (char *) bfd_alloc (htab->stub_bfd, len);
4747 if (s_name == NULL)
4748 return NULL;
4749
4750 memcpy (s_name, stub_sec_prefix, namelen);
4751 memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
4752 *stub_sec_p = (*htab->add_stub_section) (s_name, out_sec, link_sec,
4753 align);
4754 if (*stub_sec_p == NULL)
4755 return NULL;
4756
4757 out_sec->flags |= SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
4758 | SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY
4759 | SEC_KEEP;
4760 }
4761
4762 if (!dedicated_output_section)
4763 htab->stub_group[section->id].stub_sec = *stub_sec_p;
4764
48229727
JB
4765 if (link_sec_p)
4766 *link_sec_p = link_sec;
b38cadfb 4767
daa4adae 4768 return *stub_sec_p;
48229727
JB
4769}
4770
4771/* Add a new stub entry to the stub hash. Not all fields of the new
4772 stub entry are initialised. */
4773
4774static struct elf32_arm_stub_hash_entry *
daa4adae
TP
4775elf32_arm_add_stub (const char *stub_name, asection *section,
4776 struct elf32_arm_link_hash_table *htab,
4777 enum elf32_arm_stub_type stub_type)
48229727
JB
4778{
4779 asection *link_sec;
4780 asection *stub_sec;
4781 struct elf32_arm_stub_hash_entry *stub_entry;
4782
daa4adae
TP
4783 stub_sec = elf32_arm_create_or_find_stub_sec (&link_sec, section, htab,
4784 stub_type);
48229727
JB
4785 if (stub_sec == NULL)
4786 return NULL;
906e58ca
NC
4787
4788 /* Enter this entry into the linker stub hash table. */
4789 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
0a1b45a2 4790 true, false);
906e58ca
NC
4791 if (stub_entry == NULL)
4792 {
6bde4c52
TP
4793 if (section == NULL)
4794 section = stub_sec;
871b3ab2 4795 _bfd_error_handler (_("%pB: cannot create stub entry %s"),
4eca0228 4796 section->owner, stub_name);
906e58ca
NC
4797 return NULL;
4798 }
4799
4800 stub_entry->stub_sec = stub_sec;
0955507f 4801 stub_entry->stub_offset = (bfd_vma) -1;
906e58ca
NC
4802 stub_entry->id_sec = link_sec;
4803
906e58ca
NC
4804 return stub_entry;
4805}
4806
4807/* Store an Arm insn into an output section not processed by
4808 elf32_arm_write_section. */
4809
4810static void
8029a119
NC
4811put_arm_insn (struct elf32_arm_link_hash_table * htab,
4812 bfd * output_bfd, bfd_vma val, void * ptr)
906e58ca
NC
4813{
4814 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4815 bfd_putl32 (val, ptr);
4816 else
4817 bfd_putb32 (val, ptr);
4818}
4819
4820/* Store a 16-bit Thumb insn into an output section not processed by
4821 elf32_arm_write_section. */
4822
4823static void
8029a119
NC
4824put_thumb_insn (struct elf32_arm_link_hash_table * htab,
4825 bfd * output_bfd, bfd_vma val, void * ptr)
906e58ca
NC
4826{
4827 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4828 bfd_putl16 (val, ptr);
4829 else
4830 bfd_putb16 (val, ptr);
4831}
4832
a504d23a
LA
4833/* Store a Thumb2 insn into an output section not processed by
4834 elf32_arm_write_section. */
4835
4836static void
4837put_thumb2_insn (struct elf32_arm_link_hash_table * htab,
b98e6871 4838 bfd * output_bfd, bfd_vma val, bfd_byte * ptr)
a504d23a
LA
4839{
4840 /* T2 instructions are 16-bit streamed. */
4841 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4842 {
4843 bfd_putl16 ((val >> 16) & 0xffff, ptr);
4844 bfd_putl16 ((val & 0xffff), ptr + 2);
4845 }
4846 else
4847 {
4848 bfd_putb16 ((val >> 16) & 0xffff, ptr);
4849 bfd_putb16 ((val & 0xffff), ptr + 2);
4850 }
4851}
4852
0855e32b
NS
4853/* If it's possible to change R_TYPE to a more efficient access
4854 model, return the new reloc type. */
4855
4856static unsigned
b38cadfb 4857elf32_arm_tls_transition (struct bfd_link_info *info, int r_type,
0855e32b
NS
4858 struct elf_link_hash_entry *h)
4859{
4860 int is_local = (h == NULL);
4861
9cb09e33 4862 if (bfd_link_dll (info)
0e1862bb 4863 || (h && h->root.type == bfd_link_hash_undefweak))
0855e32b
NS
4864 return r_type;
4865
b38cadfb 4866 /* We do not support relaxations for Old TLS models. */
0855e32b
NS
4867 switch (r_type)
4868 {
4869 case R_ARM_TLS_GOTDESC:
4870 case R_ARM_TLS_CALL:
4871 case R_ARM_THM_TLS_CALL:
4872 case R_ARM_TLS_DESCSEQ:
4873 case R_ARM_THM_TLS_DESCSEQ:
4874 return is_local ? R_ARM_TLS_LE32 : R_ARM_TLS_IE32;
4875 }
4876
4877 return r_type;
4878}
4879
48229727
JB
4880static bfd_reloc_status_type elf32_arm_final_link_relocate
4881 (reloc_howto_type *, bfd *, bfd *, asection *, bfd_byte *,
4882 Elf_Internal_Rela *, bfd_vma, struct bfd_link_info *, asection *,
34e77a92 4883 const char *, unsigned char, enum arm_st_branch_type,
0a1b45a2 4884 struct elf_link_hash_entry *, bool *, char **);
48229727 4885
4563a860
JB
4886static unsigned int
4887arm_stub_required_alignment (enum elf32_arm_stub_type stub_type)
4888{
4889 switch (stub_type)
4890 {
4891 case arm_stub_a8_veneer_b_cond:
4892 case arm_stub_a8_veneer_b:
4893 case arm_stub_a8_veneer_bl:
4894 return 2;
4895
4896 case arm_stub_long_branch_any_any:
4897 case arm_stub_long_branch_v4t_arm_thumb:
4898 case arm_stub_long_branch_thumb_only:
80c135e5 4899 case arm_stub_long_branch_thumb2_only:
d5a67c02 4900 case arm_stub_long_branch_thumb2_only_pure:
4563a860
JB
4901 case arm_stub_long_branch_v4t_thumb_thumb:
4902 case arm_stub_long_branch_v4t_thumb_arm:
4903 case arm_stub_short_branch_v4t_thumb_arm:
4904 case arm_stub_long_branch_any_arm_pic:
4905 case arm_stub_long_branch_any_thumb_pic:
4906 case arm_stub_long_branch_v4t_thumb_thumb_pic:
4907 case arm_stub_long_branch_v4t_arm_thumb_pic:
4908 case arm_stub_long_branch_v4t_thumb_arm_pic:
4909 case arm_stub_long_branch_thumb_only_pic:
0855e32b
NS
4910 case arm_stub_long_branch_any_tls_pic:
4911 case arm_stub_long_branch_v4t_thumb_tls_pic:
4ba2ef8f 4912 case arm_stub_cmse_branch_thumb_only:
4563a860
JB
4913 case arm_stub_a8_veneer_blx:
4914 return 4;
b38cadfb 4915
7a89b94e
NC
4916 case arm_stub_long_branch_arm_nacl:
4917 case arm_stub_long_branch_arm_nacl_pic:
4918 return 16;
4919
4563a860
JB
4920 default:
4921 abort (); /* Should be unreachable. */
4922 }
4923}
4924
4f4faa4d
TP
4925/* Returns whether stubs of type STUB_TYPE take over the symbol they are
4926 veneering (TRUE) or have their own symbol (FALSE). */
4927
0a1b45a2 4928static bool
4f4faa4d
TP
4929arm_stub_sym_claimed (enum elf32_arm_stub_type stub_type)
4930{
4931 if (stub_type >= max_stub_type)
4932 abort (); /* Should be unreachable. */
4933
4ba2ef8f
TP
4934 switch (stub_type)
4935 {
4936 case arm_stub_cmse_branch_thumb_only:
0a1b45a2 4937 return true;
4ba2ef8f
TP
4938
4939 default:
0a1b45a2 4940 return false;
4ba2ef8f
TP
4941 }
4942
4943 abort (); /* Should be unreachable. */
4f4faa4d
TP
4944}
4945
d7c5bd02
TP
4946/* Returns the padding needed for the dedicated section used stubs of type
4947 STUB_TYPE. */
4948
4949static int
4950arm_dedicated_stub_section_padding (enum elf32_arm_stub_type stub_type)
4951{
4952 if (stub_type >= max_stub_type)
4953 abort (); /* Should be unreachable. */
4954
4ba2ef8f
TP
4955 switch (stub_type)
4956 {
4957 case arm_stub_cmse_branch_thumb_only:
4958 return 32;
4959
4960 default:
4961 return 0;
4962 }
4963
4964 abort (); /* Should be unreachable. */
d7c5bd02
TP
4965}
4966
0955507f
TP
4967/* If veneers of type STUB_TYPE should go in a dedicated output section,
4968 returns the address of the hash table field in HTAB holding the offset at
4969 which new veneers should be layed out in the stub section. */
4970
4971static bfd_vma*
4972arm_new_stubs_start_offset_ptr (struct elf32_arm_link_hash_table *htab,
4973 enum elf32_arm_stub_type stub_type)
4974{
4975 switch (stub_type)
4976 {
4977 case arm_stub_cmse_branch_thumb_only:
4978 return &htab->new_cmse_stub_offset;
4979
4980 default:
4981 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4982 return NULL;
4983 }
4984}
4985
0a1b45a2 4986static bool
906e58ca
NC
4987arm_build_one_stub (struct bfd_hash_entry *gen_entry,
4988 void * in_arg)
4989{
7a89b94e 4990#define MAXRELOCS 3
0a1b45a2 4991 bool removed_sg_veneer;
906e58ca 4992 struct elf32_arm_stub_hash_entry *stub_entry;
4dfe6ac6 4993 struct elf32_arm_link_hash_table *globals;
906e58ca 4994 struct bfd_link_info *info;
906e58ca
NC
4995 asection *stub_sec;
4996 bfd *stub_bfd;
906e58ca
NC
4997 bfd_byte *loc;
4998 bfd_vma sym_value;
4999 int template_size;
5000 int size;
d3ce72d0 5001 const insn_sequence *template_sequence;
906e58ca 5002 int i;
48229727
JB
5003 int stub_reloc_idx[MAXRELOCS] = {-1, -1};
5004 int stub_reloc_offset[MAXRELOCS] = {0, 0};
5005 int nrelocs = 0;
0955507f 5006 int just_allocated = 0;
906e58ca
NC
5007
5008 /* Massage our args to the form they really have. */
5009 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
5010 info = (struct bfd_link_info *) in_arg;
5011
abf874aa
CL
5012 /* Fail if the target section could not be assigned to an output
5013 section. The user should fix his linker script. */
5014 if (stub_entry->target_section->output_section == NULL
5015 && info->non_contiguous_regions)
53215f21
CL
5016 info->callbacks->einfo (_("%F%P: Could not assign '%pA' to an output section. "
5017 "Retry without --enable-non-contiguous-regions.\n"),
5018 stub_entry->target_section);
abf874aa 5019
906e58ca 5020 globals = elf32_arm_hash_table (info);
4dfe6ac6 5021 if (globals == NULL)
0a1b45a2 5022 return false;
906e58ca 5023
906e58ca
NC
5024 stub_sec = stub_entry->stub_sec;
5025
4dfe6ac6 5026 if ((globals->fix_cortex_a8 < 0)
4563a860
JB
5027 != (arm_stub_required_alignment (stub_entry->stub_type) == 2))
5028 /* We have to do less-strictly-aligned fixes last. */
0a1b45a2 5029 return true;
fe33d2fa 5030
0955507f
TP
5031 /* Assign a slot at the end of section if none assigned yet. */
5032 if (stub_entry->stub_offset == (bfd_vma) -1)
5033 {
5034 stub_entry->stub_offset = stub_sec->size;
5035 just_allocated = 1;
5036 }
906e58ca
NC
5037 loc = stub_sec->contents + stub_entry->stub_offset;
5038
5039 stub_bfd = stub_sec->owner;
5040
906e58ca
NC
5041 /* This is the address of the stub destination. */
5042 sym_value = (stub_entry->target_value
5043 + stub_entry->target_section->output_offset
5044 + stub_entry->target_section->output_section->vma);
5045
d3ce72d0 5046 template_sequence = stub_entry->stub_template;
461a49ca 5047 template_size = stub_entry->stub_template_size;
906e58ca
NC
5048
5049 size = 0;
461a49ca 5050 for (i = 0; i < template_size; i++)
906e58ca 5051 {
d3ce72d0 5052 switch (template_sequence[i].type)
461a49ca
DJ
5053 {
5054 case THUMB16_TYPE:
48229727 5055 {
d3ce72d0
NC
5056 bfd_vma data = (bfd_vma) template_sequence[i].data;
5057 if (template_sequence[i].reloc_addend != 0)
48229727 5058 {
99059e56
RM
5059 /* We've borrowed the reloc_addend field to mean we should
5060 insert a condition code into this (Thumb-1 branch)
5061 instruction. See THUMB16_BCOND_INSN. */
5062 BFD_ASSERT ((data & 0xff00) == 0xd000);
5063 data |= ((stub_entry->orig_insn >> 22) & 0xf) << 8;
48229727 5064 }
fe33d2fa 5065 bfd_put_16 (stub_bfd, data, loc + size);
48229727
JB
5066 size += 2;
5067 }
461a49ca 5068 break;
906e58ca 5069
48229727 5070 case THUMB32_TYPE:
fe33d2fa
CL
5071 bfd_put_16 (stub_bfd,
5072 (template_sequence[i].data >> 16) & 0xffff,
5073 loc + size);
5074 bfd_put_16 (stub_bfd, template_sequence[i].data & 0xffff,
5075 loc + size + 2);
99059e56
RM
5076 if (template_sequence[i].r_type != R_ARM_NONE)
5077 {
5078 stub_reloc_idx[nrelocs] = i;
5079 stub_reloc_offset[nrelocs++] = size;
5080 }
5081 size += 4;
5082 break;
48229727 5083
461a49ca 5084 case ARM_TYPE:
fe33d2fa
CL
5085 bfd_put_32 (stub_bfd, template_sequence[i].data,
5086 loc + size);
461a49ca
DJ
5087 /* Handle cases where the target is encoded within the
5088 instruction. */
d3ce72d0 5089 if (template_sequence[i].r_type == R_ARM_JUMP24)
461a49ca 5090 {
48229727
JB
5091 stub_reloc_idx[nrelocs] = i;
5092 stub_reloc_offset[nrelocs++] = size;
461a49ca
DJ
5093 }
5094 size += 4;
5095 break;
5096
5097 case DATA_TYPE:
d3ce72d0 5098 bfd_put_32 (stub_bfd, template_sequence[i].data, loc + size);
48229727
JB
5099 stub_reloc_idx[nrelocs] = i;
5100 stub_reloc_offset[nrelocs++] = size;
461a49ca
DJ
5101 size += 4;
5102 break;
5103
5104 default:
5105 BFD_FAIL ();
0a1b45a2 5106 return false;
461a49ca 5107 }
906e58ca 5108 }
461a49ca 5109
0955507f
TP
5110 if (just_allocated)
5111 stub_sec->size += size;
906e58ca 5112
461a49ca
DJ
5113 /* Stub size has already been computed in arm_size_one_stub. Check
5114 consistency. */
5115 BFD_ASSERT (size == stub_entry->stub_size);
5116
906e58ca 5117 /* Destination is Thumb. Force bit 0 to 1 to reflect this. */
35fc36a8 5118 if (stub_entry->branch_type == ST_BRANCH_TO_THUMB)
906e58ca
NC
5119 sym_value |= 1;
5120
0955507f
TP
5121 /* Assume non empty slots have at least one and at most MAXRELOCS entries
5122 to relocate in each stub. */
5123 removed_sg_veneer =
5124 (size == 0 && stub_entry->stub_type == arm_stub_cmse_branch_thumb_only);
5125 BFD_ASSERT (removed_sg_veneer || (nrelocs != 0 && nrelocs <= MAXRELOCS));
c820be07 5126
48229727 5127 for (i = 0; i < nrelocs; i++)
8d9d9490
TP
5128 {
5129 Elf_Internal_Rela rel;
0a1b45a2 5130 bool unresolved_reloc;
8d9d9490
TP
5131 char *error_message;
5132 bfd_vma points_to =
5133 sym_value + template_sequence[stub_reloc_idx[i]].reloc_addend;
5134
5135 rel.r_offset = stub_entry->stub_offset + stub_reloc_offset[i];
5136 rel.r_info = ELF32_R_INFO (0,
5137 template_sequence[stub_reloc_idx[i]].r_type);
5138 rel.r_addend = 0;
5139
5140 if (stub_entry->stub_type == arm_stub_a8_veneer_b_cond && i == 0)
5141 /* The first relocation in the elf32_arm_stub_a8_veneer_b_cond[]
5142 template should refer back to the instruction after the original
5143 branch. We use target_section as Cortex-A8 erratum workaround stubs
5144 are only generated when both source and target are in the same
5145 section. */
5146 points_to = stub_entry->target_section->output_section->vma
5147 + stub_entry->target_section->output_offset
5148 + stub_entry->source_value;
5149
5150 elf32_arm_final_link_relocate (elf32_arm_howto_from_type
5151 (template_sequence[stub_reloc_idx[i]].r_type),
5152 stub_bfd, info->output_bfd, stub_sec, stub_sec->contents, &rel,
5153 points_to, info, stub_entry->target_section, "", STT_FUNC,
5154 stub_entry->branch_type,
5155 (struct elf_link_hash_entry *) stub_entry->h, &unresolved_reloc,
5156 &error_message);
5157 }
906e58ca 5158
0a1b45a2 5159 return true;
48229727 5160#undef MAXRELOCS
906e58ca
NC
5161}
5162
48229727
JB
5163/* Calculate the template, template size and instruction size for a stub.
5164 Return value is the instruction size. */
906e58ca 5165
48229727
JB
5166static unsigned int
5167find_stub_size_and_template (enum elf32_arm_stub_type stub_type,
5168 const insn_sequence **stub_template,
5169 int *stub_template_size)
906e58ca 5170{
d3ce72d0 5171 const insn_sequence *template_sequence = NULL;
48229727
JB
5172 int template_size = 0, i;
5173 unsigned int size;
906e58ca 5174
d3ce72d0 5175 template_sequence = stub_definitions[stub_type].template_sequence;
2a229407
AM
5176 if (stub_template)
5177 *stub_template = template_sequence;
5178
48229727 5179 template_size = stub_definitions[stub_type].template_size;
2a229407
AM
5180 if (stub_template_size)
5181 *stub_template_size = template_size;
906e58ca
NC
5182
5183 size = 0;
461a49ca
DJ
5184 for (i = 0; i < template_size; i++)
5185 {
d3ce72d0 5186 switch (template_sequence[i].type)
461a49ca
DJ
5187 {
5188 case THUMB16_TYPE:
5189 size += 2;
5190 break;
5191
5192 case ARM_TYPE:
48229727 5193 case THUMB32_TYPE:
461a49ca
DJ
5194 case DATA_TYPE:
5195 size += 4;
5196 break;
5197
5198 default:
5199 BFD_FAIL ();
2a229407 5200 return 0;
461a49ca
DJ
5201 }
5202 }
5203
48229727
JB
5204 return size;
5205}
5206
5207/* As above, but don't actually build the stub. Just bump offset so
5208 we know stub section sizes. */
5209
0a1b45a2 5210static bool
48229727 5211arm_size_one_stub (struct bfd_hash_entry *gen_entry,
c7e2358a 5212 void *in_arg ATTRIBUTE_UNUSED)
48229727
JB
5213{
5214 struct elf32_arm_stub_hash_entry *stub_entry;
d3ce72d0 5215 const insn_sequence *template_sequence;
48229727
JB
5216 int template_size, size;
5217
5218 /* Massage our args to the form they really have. */
5219 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
48229727
JB
5220
5221 BFD_ASSERT((stub_entry->stub_type > arm_stub_none)
5222 && stub_entry->stub_type < ARRAY_SIZE(stub_definitions));
5223
d3ce72d0 5224 size = find_stub_size_and_template (stub_entry->stub_type, &template_sequence,
48229727
JB
5225 &template_size);
5226
0955507f
TP
5227 /* Initialized to -1. Null size indicates an empty slot full of zeros. */
5228 if (stub_entry->stub_template_size)
5229 {
5230 stub_entry->stub_size = size;
5231 stub_entry->stub_template = template_sequence;
5232 stub_entry->stub_template_size = template_size;
5233 }
5234
5235 /* Already accounted for. */
5236 if (stub_entry->stub_offset != (bfd_vma) -1)
0a1b45a2 5237 return true;
461a49ca 5238
906e58ca
NC
5239 size = (size + 7) & ~7;
5240 stub_entry->stub_sec->size += size;
461a49ca 5241
0a1b45a2 5242 return true;
906e58ca
NC
5243}
5244
5245/* External entry points for sizing and building linker stubs. */
5246
5247/* Set up various things so that we can make a list of input sections
5248 for each output section included in the link. Returns -1 on error,
5249 0 when no stubs will be needed, and 1 on success. */
5250
5251int
5252elf32_arm_setup_section_lists (bfd *output_bfd,
5253 struct bfd_link_info *info)
5254{
5255 bfd *input_bfd;
5256 unsigned int bfd_count;
7292b3ac 5257 unsigned int top_id, top_index;
906e58ca
NC
5258 asection *section;
5259 asection **input_list, **list;
986f0783 5260 size_t amt;
906e58ca
NC
5261 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5262
4dfe6ac6
NC
5263 if (htab == NULL)
5264 return 0;
906e58ca
NC
5265
5266 /* Count the number of input BFDs and find the top input section id. */
5267 for (input_bfd = info->input_bfds, bfd_count = 0, top_id = 0;
5268 input_bfd != NULL;
c72f2fb2 5269 input_bfd = input_bfd->link.next)
906e58ca
NC
5270 {
5271 bfd_count += 1;
5272 for (section = input_bfd->sections;
5273 section != NULL;
5274 section = section->next)
5275 {
5276 if (top_id < section->id)
5277 top_id = section->id;
5278 }
5279 }
5280 htab->bfd_count = bfd_count;
5281
5282 amt = sizeof (struct map_stub) * (top_id + 1);
21d799b5 5283 htab->stub_group = (struct map_stub *) bfd_zmalloc (amt);
906e58ca
NC
5284 if (htab->stub_group == NULL)
5285 return -1;
fe33d2fa 5286 htab->top_id = top_id;
906e58ca
NC
5287
5288 /* We can't use output_bfd->section_count here to find the top output
5289 section index as some sections may have been removed, and
5290 _bfd_strip_section_from_output doesn't renumber the indices. */
5291 for (section = output_bfd->sections, top_index = 0;
5292 section != NULL;
5293 section = section->next)
5294 {
5295 if (top_index < section->index)
5296 top_index = section->index;
5297 }
5298
5299 htab->top_index = top_index;
5300 amt = sizeof (asection *) * (top_index + 1);
21d799b5 5301 input_list = (asection **) bfd_malloc (amt);
906e58ca
NC
5302 htab->input_list = input_list;
5303 if (input_list == NULL)
5304 return -1;
5305
5306 /* For sections we aren't interested in, mark their entries with a
5307 value we can check later. */
5308 list = input_list + top_index;
5309 do
5310 *list = bfd_abs_section_ptr;
5311 while (list-- != input_list);
5312
5313 for (section = output_bfd->sections;
5314 section != NULL;
5315 section = section->next)
5316 {
5317 if ((section->flags & SEC_CODE) != 0)
5318 input_list[section->index] = NULL;
5319 }
5320
5321 return 1;
5322}
5323
5324/* The linker repeatedly calls this function for each input section,
5325 in the order that input sections are linked into output sections.
5326 Build lists of input sections to determine groupings between which
5327 we may insert linker stubs. */
5328
5329void
5330elf32_arm_next_input_section (struct bfd_link_info *info,
5331 asection *isec)
5332{
5333 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5334
4dfe6ac6
NC
5335 if (htab == NULL)
5336 return;
5337
906e58ca
NC
5338 if (isec->output_section->index <= htab->top_index)
5339 {
5340 asection **list = htab->input_list + isec->output_section->index;
5341
a7470592 5342 if (*list != bfd_abs_section_ptr && (isec->flags & SEC_CODE) != 0)
906e58ca
NC
5343 {
5344 /* Steal the link_sec pointer for our list. */
5345#define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
5346 /* This happens to make the list in reverse order,
07d72278 5347 which we reverse later. */
906e58ca
NC
5348 PREV_SEC (isec) = *list;
5349 *list = isec;
5350 }
5351 }
5352}
5353
5354/* See whether we can group stub sections together. Grouping stub
5355 sections may result in fewer stubs. More importantly, we need to
07d72278 5356 put all .init* and .fini* stubs at the end of the .init or
906e58ca
NC
5357 .fini output sections respectively, because glibc splits the
5358 _init and _fini functions into multiple parts. Putting a stub in
5359 the middle of a function is not a good idea. */
5360
5361static void
5362group_sections (struct elf32_arm_link_hash_table *htab,
5363 bfd_size_type stub_group_size,
0a1b45a2 5364 bool stubs_always_after_branch)
906e58ca 5365{
07d72278 5366 asection **list = htab->input_list;
906e58ca
NC
5367
5368 do
5369 {
5370 asection *tail = *list;
07d72278 5371 asection *head;
906e58ca
NC
5372
5373 if (tail == bfd_abs_section_ptr)
5374 continue;
5375
07d72278
DJ
5376 /* Reverse the list: we must avoid placing stubs at the
5377 beginning of the section because the beginning of the text
5378 section may be required for an interrupt vector in bare metal
5379 code. */
5380#define NEXT_SEC PREV_SEC
e780aef2
CL
5381 head = NULL;
5382 while (tail != NULL)
99059e56
RM
5383 {
5384 /* Pop from tail. */
5385 asection *item = tail;
5386 tail = PREV_SEC (item);
e780aef2 5387
99059e56
RM
5388 /* Push on head. */
5389 NEXT_SEC (item) = head;
5390 head = item;
5391 }
07d72278
DJ
5392
5393 while (head != NULL)
906e58ca
NC
5394 {
5395 asection *curr;
07d72278 5396 asection *next;
e780aef2
CL
5397 bfd_vma stub_group_start = head->output_offset;
5398 bfd_vma end_of_next;
906e58ca 5399
07d72278 5400 curr = head;
e780aef2 5401 while (NEXT_SEC (curr) != NULL)
8cd931b7 5402 {
e780aef2
CL
5403 next = NEXT_SEC (curr);
5404 end_of_next = next->output_offset + next->size;
5405 if (end_of_next - stub_group_start >= stub_group_size)
5406 /* End of NEXT is too far from start, so stop. */
8cd931b7 5407 break;
e780aef2
CL
5408 /* Add NEXT to the group. */
5409 curr = next;
8cd931b7 5410 }
906e58ca 5411
07d72278 5412 /* OK, the size from the start to the start of CURR is less
906e58ca 5413 than stub_group_size and thus can be handled by one stub
07d72278 5414 section. (Or the head section is itself larger than
906e58ca
NC
5415 stub_group_size, in which case we may be toast.)
5416 We should really be keeping track of the total size of
5417 stubs added here, as stubs contribute to the final output
7fb9f789 5418 section size. */
906e58ca
NC
5419 do
5420 {
07d72278 5421 next = NEXT_SEC (head);
906e58ca 5422 /* Set up this stub group. */
07d72278 5423 htab->stub_group[head->id].link_sec = curr;
906e58ca 5424 }
07d72278 5425 while (head != curr && (head = next) != NULL);
906e58ca
NC
5426
5427 /* But wait, there's more! Input sections up to stub_group_size
07d72278
DJ
5428 bytes after the stub section can be handled by it too. */
5429 if (!stubs_always_after_branch)
906e58ca 5430 {
e780aef2
CL
5431 stub_group_start = curr->output_offset + curr->size;
5432
8cd931b7 5433 while (next != NULL)
906e58ca 5434 {
e780aef2
CL
5435 end_of_next = next->output_offset + next->size;
5436 if (end_of_next - stub_group_start >= stub_group_size)
5437 /* End of NEXT is too far from stubs, so stop. */
8cd931b7 5438 break;
e780aef2 5439 /* Add NEXT to the stub group. */
07d72278
DJ
5440 head = next;
5441 next = NEXT_SEC (head);
5442 htab->stub_group[head->id].link_sec = curr;
906e58ca
NC
5443 }
5444 }
07d72278 5445 head = next;
906e58ca
NC
5446 }
5447 }
07d72278 5448 while (list++ != htab->input_list + htab->top_index);
906e58ca
NC
5449
5450 free (htab->input_list);
5451#undef PREV_SEC
07d72278 5452#undef NEXT_SEC
906e58ca
NC
5453}
5454
48229727
JB
5455/* Comparison function for sorting/searching relocations relating to Cortex-A8
5456 erratum fix. */
5457
5458static int
5459a8_reloc_compare (const void *a, const void *b)
5460{
21d799b5
NC
5461 const struct a8_erratum_reloc *ra = (const struct a8_erratum_reloc *) a;
5462 const struct a8_erratum_reloc *rb = (const struct a8_erratum_reloc *) b;
48229727
JB
5463
5464 if (ra->from < rb->from)
5465 return -1;
5466 else if (ra->from > rb->from)
5467 return 1;
5468 else
5469 return 0;
5470}
5471
5472static struct elf_link_hash_entry *find_thumb_glue (struct bfd_link_info *,
5473 const char *, char **);
5474
5475/* Helper function to scan code for sequences which might trigger the Cortex-A8
5476 branch/TLB erratum. Fill in the table described by A8_FIXES_P,
81694485 5477 NUM_A8_FIXES_P, A8_FIX_TABLE_SIZE_P. Returns true if an error occurs, false
48229727
JB
5478 otherwise. */
5479
0a1b45a2 5480static bool
81694485
NC
5481cortex_a8_erratum_scan (bfd *input_bfd,
5482 struct bfd_link_info *info,
48229727
JB
5483 struct a8_erratum_fix **a8_fixes_p,
5484 unsigned int *num_a8_fixes_p,
5485 unsigned int *a8_fix_table_size_p,
5486 struct a8_erratum_reloc *a8_relocs,
eb7c4339
NS
5487 unsigned int num_a8_relocs,
5488 unsigned prev_num_a8_fixes,
0a1b45a2 5489 bool *stub_changed_p)
48229727
JB
5490{
5491 asection *section;
5492 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5493 struct a8_erratum_fix *a8_fixes = *a8_fixes_p;
5494 unsigned int num_a8_fixes = *num_a8_fixes_p;
5495 unsigned int a8_fix_table_size = *a8_fix_table_size_p;
5496
4dfe6ac6 5497 if (htab == NULL)
0a1b45a2 5498 return false;
4dfe6ac6 5499
48229727
JB
5500 for (section = input_bfd->sections;
5501 section != NULL;
5502 section = section->next)
5503 {
5504 bfd_byte *contents = NULL;
5505 struct _arm_elf_section_data *sec_data;
5506 unsigned int span;
5507 bfd_vma base_vma;
5508
5509 if (elf_section_type (section) != SHT_PROGBITS
99059e56
RM
5510 || (elf_section_flags (section) & SHF_EXECINSTR) == 0
5511 || (section->flags & SEC_EXCLUDE) != 0
5512 || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
5513 || (section->output_section == bfd_abs_section_ptr))
5514 continue;
48229727
JB
5515
5516 base_vma = section->output_section->vma + section->output_offset;
5517
5518 if (elf_section_data (section)->this_hdr.contents != NULL)
99059e56 5519 contents = elf_section_data (section)->this_hdr.contents;
48229727 5520 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
0a1b45a2 5521 return true;
48229727
JB
5522
5523 sec_data = elf32_arm_section_data (section);
5524
5525 for (span = 0; span < sec_data->mapcount; span++)
99059e56
RM
5526 {
5527 unsigned int span_start = sec_data->map[span].vma;
5528 unsigned int span_end = (span == sec_data->mapcount - 1)
5529 ? section->size : sec_data->map[span + 1].vma;
5530 unsigned int i;
5531 char span_type = sec_data->map[span].type;
0a1b45a2 5532 bool last_was_32bit = false, last_was_branch = false;
99059e56
RM
5533
5534 if (span_type != 't')
5535 continue;
5536
5537 /* Span is entirely within a single 4KB region: skip scanning. */
5538 if (((base_vma + span_start) & ~0xfff)
48229727 5539 == ((base_vma + span_end) & ~0xfff))
99059e56
RM
5540 continue;
5541
5542 /* Scan for 32-bit Thumb-2 branches which span two 4K regions, where:
5543
5544 * The opcode is BLX.W, BL.W, B.W, Bcc.W
5545 * The branch target is in the same 4KB region as the
5546 first half of the branch.
5547 * The instruction before the branch is a 32-bit
5548 length non-branch instruction. */
5549 for (i = span_start; i < span_end;)
5550 {
5551 unsigned int insn = bfd_getl16 (&contents[i]);
0a1b45a2
AM
5552 bool insn_32bit = false, is_blx = false, is_b = false;
5553 bool is_bl = false, is_bcc = false, is_32bit_branch;
48229727 5554
99059e56 5555 if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
0a1b45a2 5556 insn_32bit = true;
48229727
JB
5557
5558 if (insn_32bit)
99059e56
RM
5559 {
5560 /* Load the rest of the insn (in manual-friendly order). */
5561 insn = (insn << 16) | bfd_getl16 (&contents[i + 2]);
5562
5563 /* Encoding T4: B<c>.W. */
5564 is_b = (insn & 0xf800d000) == 0xf0009000;
5565 /* Encoding T1: BL<c>.W. */
5566 is_bl = (insn & 0xf800d000) == 0xf000d000;
5567 /* Encoding T2: BLX<c>.W. */
5568 is_blx = (insn & 0xf800d000) == 0xf000c000;
48229727
JB
5569 /* Encoding T3: B<c>.W (not permitted in IT block). */
5570 is_bcc = (insn & 0xf800d000) == 0xf0008000
5571 && (insn & 0x07f00000) != 0x03800000;
5572 }
5573
5574 is_32bit_branch = is_b || is_bl || is_blx || is_bcc;
fe33d2fa 5575
99059e56 5576 if (((base_vma + i) & 0xfff) == 0xffe
81694485
NC
5577 && insn_32bit
5578 && is_32bit_branch
5579 && last_was_32bit
5580 && ! last_was_branch)
99059e56
RM
5581 {
5582 bfd_signed_vma offset = 0;
0a1b45a2
AM
5583 bool force_target_arm = false;
5584 bool force_target_thumb = false;
99059e56
RM
5585 bfd_vma target;
5586 enum elf32_arm_stub_type stub_type = arm_stub_none;
5587 struct a8_erratum_reloc key, *found;
0a1b45a2 5588 bool use_plt = false;
48229727 5589
99059e56
RM
5590 key.from = base_vma + i;
5591 found = (struct a8_erratum_reloc *)
5592 bsearch (&key, a8_relocs, num_a8_relocs,
5593 sizeof (struct a8_erratum_reloc),
5594 &a8_reloc_compare);
48229727
JB
5595
5596 if (found)
5597 {
5598 char *error_message = NULL;
5599 struct elf_link_hash_entry *entry;
5600
5601 /* We don't care about the error returned from this
99059e56 5602 function, only if there is glue or not. */
48229727
JB
5603 entry = find_thumb_glue (info, found->sym_name,
5604 &error_message);
5605
5606 if (entry)
0a1b45a2 5607 found->non_a8_stub = true;
48229727 5608
92750f34 5609 /* Keep a simpler condition, for the sake of clarity. */
362d30a1 5610 if (htab->root.splt != NULL && found->hash != NULL
92750f34 5611 && found->hash->root.plt.offset != (bfd_vma) -1)
0a1b45a2 5612 use_plt = true;
92750f34
DJ
5613
5614 if (found->r_type == R_ARM_THM_CALL)
5615 {
35fc36a8
RS
5616 if (found->branch_type == ST_BRANCH_TO_ARM
5617 || use_plt)
0a1b45a2 5618 force_target_arm = true;
92750f34 5619 else
0a1b45a2 5620 force_target_thumb = true;
92750f34 5621 }
48229727
JB
5622 }
5623
99059e56 5624 /* Check if we have an offending branch instruction. */
48229727
JB
5625
5626 if (found && found->non_a8_stub)
5627 /* We've already made a stub for this instruction, e.g.
5628 it's a long branch or a Thumb->ARM stub. Assume that
5629 stub will suffice to work around the A8 erratum (see
5630 setting of always_after_branch above). */
5631 ;
99059e56
RM
5632 else if (is_bcc)
5633 {
5634 offset = (insn & 0x7ff) << 1;
5635 offset |= (insn & 0x3f0000) >> 4;
5636 offset |= (insn & 0x2000) ? 0x40000 : 0;
5637 offset |= (insn & 0x800) ? 0x80000 : 0;
5638 offset |= (insn & 0x4000000) ? 0x100000 : 0;
5639 if (offset & 0x100000)
5640 offset |= ~ ((bfd_signed_vma) 0xfffff);
5641 stub_type = arm_stub_a8_veneer_b_cond;
5642 }
5643 else if (is_b || is_bl || is_blx)
5644 {
5645 int s = (insn & 0x4000000) != 0;
5646 int j1 = (insn & 0x2000) != 0;
5647 int j2 = (insn & 0x800) != 0;
5648 int i1 = !(j1 ^ s);
5649 int i2 = !(j2 ^ s);
5650
5651 offset = (insn & 0x7ff) << 1;
5652 offset |= (insn & 0x3ff0000) >> 4;
5653 offset |= i2 << 22;
5654 offset |= i1 << 23;
5655 offset |= s << 24;
5656 if (offset & 0x1000000)
5657 offset |= ~ ((bfd_signed_vma) 0xffffff);
5658
5659 if (is_blx)
5660 offset &= ~ ((bfd_signed_vma) 3);
5661
5662 stub_type = is_blx ? arm_stub_a8_veneer_blx :
5663 is_bl ? arm_stub_a8_veneer_bl : arm_stub_a8_veneer_b;
5664 }
5665
5666 if (stub_type != arm_stub_none)
5667 {
5668 bfd_vma pc_for_insn = base_vma + i + 4;
48229727
JB
5669
5670 /* The original instruction is a BL, but the target is
99059e56 5671 an ARM instruction. If we were not making a stub,
48229727
JB
5672 the BL would have been converted to a BLX. Use the
5673 BLX stub instead in that case. */
5674 if (htab->use_blx && force_target_arm
5675 && stub_type == arm_stub_a8_veneer_bl)
5676 {
5677 stub_type = arm_stub_a8_veneer_blx;
0a1b45a2
AM
5678 is_blx = true;
5679 is_bl = false;
48229727
JB
5680 }
5681 /* Conversely, if the original instruction was
5682 BLX but the target is Thumb mode, use the BL
5683 stub. */
5684 else if (force_target_thumb
5685 && stub_type == arm_stub_a8_veneer_blx)
5686 {
5687 stub_type = arm_stub_a8_veneer_bl;
0a1b45a2
AM
5688 is_blx = false;
5689 is_bl = true;
48229727
JB
5690 }
5691
99059e56
RM
5692 if (is_blx)
5693 pc_for_insn &= ~ ((bfd_vma) 3);
48229727 5694
99059e56
RM
5695 /* If we found a relocation, use the proper destination,
5696 not the offset in the (unrelocated) instruction.
48229727
JB
5697 Note this is always done if we switched the stub type
5698 above. */
99059e56
RM
5699 if (found)
5700 offset =
81694485 5701 (bfd_signed_vma) (found->destination - pc_for_insn);
48229727 5702
99059e56
RM
5703 /* If the stub will use a Thumb-mode branch to a
5704 PLT target, redirect it to the preceding Thumb
5705 entry point. */
5706 if (stub_type != arm_stub_a8_veneer_blx && use_plt)
5707 offset -= PLT_THUMB_STUB_SIZE;
7d24e6a6 5708
99059e56 5709 target = pc_for_insn + offset;
48229727 5710
99059e56
RM
5711 /* The BLX stub is ARM-mode code. Adjust the offset to
5712 take the different PC value (+8 instead of +4) into
48229727 5713 account. */
99059e56
RM
5714 if (stub_type == arm_stub_a8_veneer_blx)
5715 offset += 4;
5716
5717 if (((base_vma + i) & ~0xfff) == (target & ~0xfff))
5718 {
5719 char *stub_name = NULL;
5720
5721 if (num_a8_fixes == a8_fix_table_size)
5722 {
5723 a8_fix_table_size *= 2;
5724 a8_fixes = (struct a8_erratum_fix *)
5725 bfd_realloc (a8_fixes,
5726 sizeof (struct a8_erratum_fix)
5727 * a8_fix_table_size);
5728 }
48229727 5729
eb7c4339
NS
5730 if (num_a8_fixes < prev_num_a8_fixes)
5731 {
5732 /* If we're doing a subsequent scan,
5733 check if we've found the same fix as
5734 before, and try and reuse the stub
5735 name. */
5736 stub_name = a8_fixes[num_a8_fixes].stub_name;
5737 if ((a8_fixes[num_a8_fixes].section != section)
5738 || (a8_fixes[num_a8_fixes].offset != i))
5739 {
5740 free (stub_name);
5741 stub_name = NULL;
0a1b45a2 5742 *stub_changed_p = true;
eb7c4339
NS
5743 }
5744 }
5745
5746 if (!stub_name)
5747 {
21d799b5 5748 stub_name = (char *) bfd_malloc (8 + 1 + 8 + 1);
eb7c4339
NS
5749 if (stub_name != NULL)
5750 sprintf (stub_name, "%x:%x", section->id, i);
5751 }
48229727 5752
99059e56
RM
5753 a8_fixes[num_a8_fixes].input_bfd = input_bfd;
5754 a8_fixes[num_a8_fixes].section = section;
5755 a8_fixes[num_a8_fixes].offset = i;
8d9d9490
TP
5756 a8_fixes[num_a8_fixes].target_offset =
5757 target - base_vma;
99059e56
RM
5758 a8_fixes[num_a8_fixes].orig_insn = insn;
5759 a8_fixes[num_a8_fixes].stub_name = stub_name;
5760 a8_fixes[num_a8_fixes].stub_type = stub_type;
5761 a8_fixes[num_a8_fixes].branch_type =
35fc36a8 5762 is_blx ? ST_BRANCH_TO_ARM : ST_BRANCH_TO_THUMB;
48229727 5763
99059e56
RM
5764 num_a8_fixes++;
5765 }
5766 }
5767 }
48229727 5768
99059e56
RM
5769 i += insn_32bit ? 4 : 2;
5770 last_was_32bit = insn_32bit;
48229727 5771 last_was_branch = is_32bit_branch;
99059e56
RM
5772 }
5773 }
48229727
JB
5774
5775 if (elf_section_data (section)->this_hdr.contents == NULL)
99059e56 5776 free (contents);
48229727 5777 }
fe33d2fa 5778
48229727
JB
5779 *a8_fixes_p = a8_fixes;
5780 *num_a8_fixes_p = num_a8_fixes;
5781 *a8_fix_table_size_p = a8_fix_table_size;
fe33d2fa 5782
0a1b45a2 5783 return false;
48229727
JB
5784}
5785
b715f643
TP
5786/* Create or update a stub entry depending on whether the stub can already be
5787 found in HTAB. The stub is identified by:
5788 - its type STUB_TYPE
5789 - its source branch (note that several can share the same stub) whose
5790 section and relocation (if any) are given by SECTION and IRELA
5791 respectively
5792 - its target symbol whose input section, hash, name, value and branch type
5793 are given in SYM_SEC, HASH, SYM_NAME, SYM_VALUE and BRANCH_TYPE
5794 respectively
5795
5796 If found, the value of the stub's target symbol is updated from SYM_VALUE
5797 and *NEW_STUB is set to FALSE. Otherwise, *NEW_STUB is set to
5798 TRUE and the stub entry is initialized.
5799
0955507f
TP
5800 Returns the stub that was created or updated, or NULL if an error
5801 occurred. */
b715f643 5802
0955507f 5803static struct elf32_arm_stub_hash_entry *
b715f643
TP
5804elf32_arm_create_stub (struct elf32_arm_link_hash_table *htab,
5805 enum elf32_arm_stub_type stub_type, asection *section,
5806 Elf_Internal_Rela *irela, asection *sym_sec,
5807 struct elf32_arm_link_hash_entry *hash, char *sym_name,
5808 bfd_vma sym_value, enum arm_st_branch_type branch_type,
0a1b45a2 5809 bool *new_stub)
b715f643
TP
5810{
5811 const asection *id_sec;
5812 char *stub_name;
5813 struct elf32_arm_stub_hash_entry *stub_entry;
5814 unsigned int r_type;
0a1b45a2 5815 bool sym_claimed = arm_stub_sym_claimed (stub_type);
b715f643
TP
5816
5817 BFD_ASSERT (stub_type != arm_stub_none);
0a1b45a2 5818 *new_stub = false;
b715f643 5819
4f4faa4d
TP
5820 if (sym_claimed)
5821 stub_name = sym_name;
5822 else
5823 {
5824 BFD_ASSERT (irela);
5825 BFD_ASSERT (section);
c2abbbeb 5826 BFD_ASSERT (section->id <= htab->top_id);
b715f643 5827
4f4faa4d
TP
5828 /* Support for grouping stub sections. */
5829 id_sec = htab->stub_group[section->id].link_sec;
b715f643 5830
4f4faa4d
TP
5831 /* Get the name of this stub. */
5832 stub_name = elf32_arm_stub_name (id_sec, sym_sec, hash, irela,
5833 stub_type);
5834 if (!stub_name)
0955507f 5835 return NULL;
4f4faa4d 5836 }
b715f643 5837
0a1b45a2
AM
5838 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name, false,
5839 false);
b715f643
TP
5840 /* The proper stub has already been created, just update its value. */
5841 if (stub_entry != NULL)
5842 {
4f4faa4d
TP
5843 if (!sym_claimed)
5844 free (stub_name);
b715f643 5845 stub_entry->target_value = sym_value;
0955507f 5846 return stub_entry;
b715f643
TP
5847 }
5848
daa4adae 5849 stub_entry = elf32_arm_add_stub (stub_name, section, htab, stub_type);
b715f643
TP
5850 if (stub_entry == NULL)
5851 {
4f4faa4d
TP
5852 if (!sym_claimed)
5853 free (stub_name);
0955507f 5854 return NULL;
b715f643
TP
5855 }
5856
5857 stub_entry->target_value = sym_value;
5858 stub_entry->target_section = sym_sec;
5859 stub_entry->stub_type = stub_type;
5860 stub_entry->h = hash;
5861 stub_entry->branch_type = branch_type;
5862
4f4faa4d
TP
5863 if (sym_claimed)
5864 stub_entry->output_name = sym_name;
5865 else
b715f643 5866 {
4f4faa4d
TP
5867 if (sym_name == NULL)
5868 sym_name = "unnamed";
5869 stub_entry->output_name = (char *)
5870 bfd_alloc (htab->stub_bfd, sizeof (THUMB2ARM_GLUE_ENTRY_NAME)
5871 + strlen (sym_name));
5872 if (stub_entry->output_name == NULL)
5873 {
5874 free (stub_name);
0955507f 5875 return NULL;
4f4faa4d 5876 }
b715f643 5877
4f4faa4d
TP
5878 /* For historical reasons, use the existing names for ARM-to-Thumb and
5879 Thumb-to-ARM stubs. */
5880 r_type = ELF32_R_TYPE (irela->r_info);
5881 if ((r_type == (unsigned int) R_ARM_THM_CALL
5882 || r_type == (unsigned int) R_ARM_THM_JUMP24
5883 || r_type == (unsigned int) R_ARM_THM_JUMP19)
5884 && branch_type == ST_BRANCH_TO_ARM)
5885 sprintf (stub_entry->output_name, THUMB2ARM_GLUE_ENTRY_NAME, sym_name);
5886 else if ((r_type == (unsigned int) R_ARM_CALL
5887 || r_type == (unsigned int) R_ARM_JUMP24)
5888 && branch_type == ST_BRANCH_TO_THUMB)
5889 sprintf (stub_entry->output_name, ARM2THUMB_GLUE_ENTRY_NAME, sym_name);
5890 else
5891 sprintf (stub_entry->output_name, STUB_ENTRY_NAME, sym_name);
5892 }
b715f643 5893
0a1b45a2 5894 *new_stub = true;
0955507f 5895 return stub_entry;
b715f643
TP
5896}
5897
4ba2ef8f
TP
5898/* Scan symbols in INPUT_BFD to identify secure entry functions needing a
5899 gateway veneer to transition from non secure to secure state and create them
5900 accordingly.
5901
5902 "ARMv8-M Security Extensions: Requirements on Development Tools" document
5903 defines the conditions that govern Secure Gateway veneer creation for a
5904 given symbol <SYM> as follows:
5905 - it has function type
5906 - it has non local binding
5907 - a symbol named __acle_se_<SYM> (called special symbol) exists with the
5908 same type, binding and value as <SYM> (called normal symbol).
5909 An entry function can handle secure state transition itself in which case
5910 its special symbol would have a different value from the normal symbol.
5911
5912 OUT_ATTR gives the output attributes, SYM_HASHES the symbol index to hash
5913 entry mapping while HTAB gives the name to hash entry mapping.
0955507f
TP
5914 *CMSE_STUB_CREATED is increased by the number of secure gateway veneer
5915 created.
4ba2ef8f 5916
0955507f 5917 The return value gives whether a stub failed to be allocated. */
4ba2ef8f 5918
0a1b45a2 5919static bool
4ba2ef8f
TP
5920cmse_scan (bfd *input_bfd, struct elf32_arm_link_hash_table *htab,
5921 obj_attribute *out_attr, struct elf_link_hash_entry **sym_hashes,
0955507f 5922 int *cmse_stub_created)
4ba2ef8f
TP
5923{
5924 const struct elf_backend_data *bed;
5925 Elf_Internal_Shdr *symtab_hdr;
5926 unsigned i, j, sym_count, ext_start;
5927 Elf_Internal_Sym *cmse_sym, *local_syms;
5928 struct elf32_arm_link_hash_entry *hash, *cmse_hash = NULL;
5929 enum arm_st_branch_type branch_type;
5930 char *sym_name, *lsym_name;
5931 bfd_vma sym_value;
5932 asection *section;
0955507f 5933 struct elf32_arm_stub_hash_entry *stub_entry;
0a1b45a2 5934 bool is_v8m, new_stub, cmse_invalid, ret = true;
4ba2ef8f
TP
5935
5936 bed = get_elf_backend_data (input_bfd);
5937 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
5938 sym_count = symtab_hdr->sh_size / bed->s->sizeof_sym;
5939 ext_start = symtab_hdr->sh_info;
5940 is_v8m = (out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V8M_BASE
5941 && out_attr[Tag_CPU_arch_profile].i == 'M');
5942
5943 local_syms = (Elf_Internal_Sym *) symtab_hdr->contents;
5944 if (local_syms == NULL)
5945 local_syms = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
5946 symtab_hdr->sh_info, 0, NULL, NULL,
5947 NULL);
5948 if (symtab_hdr->sh_info && local_syms == NULL)
0a1b45a2 5949 return false;
4ba2ef8f
TP
5950
5951 /* Scan symbols. */
5952 for (i = 0; i < sym_count; i++)
5953 {
0a1b45a2 5954 cmse_invalid = false;
4ba2ef8f
TP
5955
5956 if (i < ext_start)
5957 {
5958 cmse_sym = &local_syms[i];
4ba2ef8f
TP
5959 sym_name = bfd_elf_string_from_elf_section (input_bfd,
5960 symtab_hdr->sh_link,
5961 cmse_sym->st_name);
08dedd66 5962 if (!sym_name || !startswith (sym_name, CMSE_PREFIX))
baf46cd7
AM
5963 continue;
5964
4ba2ef8f 5965 /* Special symbol with local binding. */
0a1b45a2 5966 cmse_invalid = true;
4ba2ef8f
TP
5967 }
5968 else
5969 {
5970 cmse_hash = elf32_arm_hash_entry (sym_hashes[i - ext_start]);
5971 sym_name = (char *) cmse_hash->root.root.root.string;
08dedd66 5972 if (!startswith (sym_name, CMSE_PREFIX))
4ba2ef8f
TP
5973 continue;
5974
5975 /* Special symbol has incorrect binding or type. */
5976 if ((cmse_hash->root.root.type != bfd_link_hash_defined
5977 && cmse_hash->root.root.type != bfd_link_hash_defweak)
5978 || cmse_hash->root.type != STT_FUNC)
0a1b45a2 5979 cmse_invalid = true;
4ba2ef8f
TP
5980 }
5981
5982 if (!is_v8m)
5983 {
90b6238f
AM
5984 _bfd_error_handler (_("%pB: special symbol `%s' only allowed for "
5985 "ARMv8-M architecture or later"),
4eca0228 5986 input_bfd, sym_name);
0a1b45a2
AM
5987 is_v8m = true; /* Avoid multiple warning. */
5988 ret = false;
4ba2ef8f
TP
5989 }
5990
5991 if (cmse_invalid)
5992 {
90b6238f
AM
5993 _bfd_error_handler (_("%pB: invalid special symbol `%s'; it must be"
5994 " a global or weak function symbol"),
4eca0228 5995 input_bfd, sym_name);
0a1b45a2 5996 ret = false;
4ba2ef8f
TP
5997 if (i < ext_start)
5998 continue;
5999 }
6000
6001 sym_name += strlen (CMSE_PREFIX);
6002 hash = (struct elf32_arm_link_hash_entry *)
0a1b45a2 6003 elf_link_hash_lookup (&(htab)->root, sym_name, false, false, true);
4ba2ef8f
TP
6004
6005 /* No associated normal symbol or it is neither global nor weak. */
6006 if (!hash
6007 || (hash->root.root.type != bfd_link_hash_defined
6008 && hash->root.root.type != bfd_link_hash_defweak)
6009 || hash->root.type != STT_FUNC)
6010 {
6011 /* Initialize here to avoid warning about use of possibly
6012 uninitialized variable. */
6013 j = 0;
6014
6015 if (!hash)
6016 {
6017 /* Searching for a normal symbol with local binding. */
6018 for (; j < ext_start; j++)
6019 {
6020 lsym_name =
6021 bfd_elf_string_from_elf_section (input_bfd,
6022 symtab_hdr->sh_link,
6023 local_syms[j].st_name);
6024 if (!strcmp (sym_name, lsym_name))
6025 break;
6026 }
6027 }
6028
6029 if (hash || j < ext_start)
6030 {
4eca0228 6031 _bfd_error_handler
90b6238f
AM
6032 (_("%pB: invalid standard symbol `%s'; it must be "
6033 "a global or weak function symbol"),
6034 input_bfd, sym_name);
4ba2ef8f
TP
6035 }
6036 else
4eca0228 6037 _bfd_error_handler
90b6238f 6038 (_("%pB: absent standard symbol `%s'"), input_bfd, sym_name);
0a1b45a2 6039 ret = false;
4ba2ef8f
TP
6040 if (!hash)
6041 continue;
6042 }
6043
6044 sym_value = hash->root.root.u.def.value;
6045 section = hash->root.root.u.def.section;
6046
6047 if (cmse_hash->root.root.u.def.section != section)
6048 {
4eca0228 6049 _bfd_error_handler
90b6238f 6050 (_("%pB: `%s' and its special symbol are in different sections"),
4ba2ef8f 6051 input_bfd, sym_name);
0a1b45a2 6052 ret = false;
4ba2ef8f
TP
6053 }
6054 if (cmse_hash->root.root.u.def.value != sym_value)
6055 continue; /* Ignore: could be an entry function starting with SG. */
6056
6057 /* If this section is a link-once section that will be discarded, then
6058 don't create any stubs. */
6059 if (section->output_section == NULL)
6060 {
4eca0228 6061 _bfd_error_handler
90b6238f 6062 (_("%pB: entry function `%s' not output"), input_bfd, sym_name);
4ba2ef8f
TP
6063 continue;
6064 }
6065
6066 if (hash->root.size == 0)
6067 {
4eca0228 6068 _bfd_error_handler
90b6238f 6069 (_("%pB: entry function `%s' is empty"), input_bfd, sym_name);
0a1b45a2 6070 ret = false;
4ba2ef8f
TP
6071 }
6072
6073 if (!ret)
6074 continue;
6075 branch_type = ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
0955507f 6076 stub_entry
4ba2ef8f
TP
6077 = elf32_arm_create_stub (htab, arm_stub_cmse_branch_thumb_only,
6078 NULL, NULL, section, hash, sym_name,
6079 sym_value, branch_type, &new_stub);
6080
0955507f 6081 if (stub_entry == NULL)
0a1b45a2 6082 ret = false;
4ba2ef8f
TP
6083 else
6084 {
6085 BFD_ASSERT (new_stub);
0955507f 6086 (*cmse_stub_created)++;
4ba2ef8f
TP
6087 }
6088 }
6089
6090 if (!symtab_hdr->contents)
6091 free (local_syms);
6092 return ret;
6093}
6094
0955507f
TP
6095/* Return TRUE iff a symbol identified by its linker HASH entry is a secure
6096 code entry function, ie can be called from non secure code without using a
6097 veneer. */
6098
0a1b45a2 6099static bool
0955507f
TP
6100cmse_entry_fct_p (struct elf32_arm_link_hash_entry *hash)
6101{
42484486 6102 bfd_byte contents[4];
0955507f
TP
6103 uint32_t first_insn;
6104 asection *section;
6105 file_ptr offset;
6106 bfd *abfd;
6107
6108 /* Defined symbol of function type. */
6109 if (hash->root.root.type != bfd_link_hash_defined
6110 && hash->root.root.type != bfd_link_hash_defweak)
0a1b45a2 6111 return false;
0955507f 6112 if (hash->root.type != STT_FUNC)
0a1b45a2 6113 return false;
0955507f
TP
6114
6115 /* Read first instruction. */
6116 section = hash->root.root.u.def.section;
6117 abfd = section->owner;
6118 offset = hash->root.root.u.def.value - section->vma;
42484486
TP
6119 if (!bfd_get_section_contents (abfd, section, contents, offset,
6120 sizeof (contents)))
0a1b45a2 6121 return false;
0955507f 6122
42484486
TP
6123 first_insn = bfd_get_32 (abfd, contents);
6124
6125 /* Starts by SG instruction. */
0955507f
TP
6126 return first_insn == 0xe97fe97f;
6127}
6128
6129/* Output the name (in symbol table) of the veneer GEN_ENTRY if it is a new
6130 secure gateway veneers (ie. the veneers was not in the input import library)
6131 and there is no output import library (GEN_INFO->out_implib_bfd is NULL. */
6132
0a1b45a2 6133static bool
0955507f
TP
6134arm_list_new_cmse_stub (struct bfd_hash_entry *gen_entry, void *gen_info)
6135{
6136 struct elf32_arm_stub_hash_entry *stub_entry;
6137 struct bfd_link_info *info;
6138
6139 /* Massage our args to the form they really have. */
6140 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
6141 info = (struct bfd_link_info *) gen_info;
6142
6143 if (info->out_implib_bfd)
0a1b45a2 6144 return true;
0955507f
TP
6145
6146 if (stub_entry->stub_type != arm_stub_cmse_branch_thumb_only)
0a1b45a2 6147 return true;
0955507f
TP
6148
6149 if (stub_entry->stub_offset == (bfd_vma) -1)
4eca0228 6150 _bfd_error_handler (" %s", stub_entry->output_name);
0955507f 6151
0a1b45a2 6152 return true;
0955507f
TP
6153}
6154
6155/* Set offset of each secure gateway veneers so that its address remain
6156 identical to the one in the input import library referred by
6157 HTAB->in_implib_bfd. A warning is issued for veneers that disappeared
6158 (present in input import library but absent from the executable being
6159 linked) or if new veneers appeared and there is no output import library
6160 (INFO->out_implib_bfd is NULL and *CMSE_STUB_CREATED is bigger than the
6161 number of secure gateway veneers found in the input import library.
6162
6163 The function returns whether an error occurred. If no error occurred,
6164 *CMSE_STUB_CREATED gives the number of SG veneers created by both cmse_scan
6165 and this function and HTAB->new_cmse_stub_offset is set to the biggest
6166 veneer observed set for new veneers to be layed out after. */
6167
0a1b45a2 6168static bool
0955507f
TP
6169set_cmse_veneer_addr_from_implib (struct bfd_link_info *info,
6170 struct elf32_arm_link_hash_table *htab,
6171 int *cmse_stub_created)
6172{
6173 long symsize;
6174 char *sym_name;
6175 flagword flags;
6176 long i, symcount;
6177 bfd *in_implib_bfd;
6178 asection *stub_out_sec;
0a1b45a2 6179 bool ret = true;
0955507f
TP
6180 Elf_Internal_Sym *intsym;
6181 const char *out_sec_name;
6182 bfd_size_type cmse_stub_size;
6183 asymbol **sympp = NULL, *sym;
6184 struct elf32_arm_link_hash_entry *hash;
6185 const insn_sequence *cmse_stub_template;
6186 struct elf32_arm_stub_hash_entry *stub_entry;
6187 int cmse_stub_template_size, new_cmse_stubs_created = *cmse_stub_created;
6188 bfd_vma veneer_value, stub_offset, next_cmse_stub_offset;
6189 bfd_vma cmse_stub_array_start = (bfd_vma) -1, cmse_stub_sec_vma = 0;
6190
6191 /* No input secure gateway import library. */
6192 if (!htab->in_implib_bfd)
0a1b45a2 6193 return true;
0955507f
TP
6194
6195 in_implib_bfd = htab->in_implib_bfd;
6196 if (!htab->cmse_implib)
6197 {
871b3ab2 6198 _bfd_error_handler (_("%pB: --in-implib only supported for Secure "
90b6238f 6199 "Gateway import libraries"), in_implib_bfd);
0a1b45a2 6200 return false;
0955507f
TP
6201 }
6202
6203 /* Get symbol table size. */
6204 symsize = bfd_get_symtab_upper_bound (in_implib_bfd);
6205 if (symsize < 0)
0a1b45a2 6206 return false;
0955507f
TP
6207
6208 /* Read in the input secure gateway import library's symbol table. */
9a733151
AM
6209 sympp = (asymbol **) bfd_malloc (symsize);
6210 if (sympp == NULL)
0a1b45a2 6211 return false;
9a733151 6212
0955507f
TP
6213 symcount = bfd_canonicalize_symtab (in_implib_bfd, sympp);
6214 if (symcount < 0)
6215 {
0a1b45a2 6216 ret = false;
0955507f
TP
6217 goto free_sym_buf;
6218 }
6219
6220 htab->new_cmse_stub_offset = 0;
6221 cmse_stub_size =
6222 find_stub_size_and_template (arm_stub_cmse_branch_thumb_only,
6223 &cmse_stub_template,
6224 &cmse_stub_template_size);
6225 out_sec_name =
6226 arm_dedicated_stub_output_section_name (arm_stub_cmse_branch_thumb_only);
6227 stub_out_sec =
6228 bfd_get_section_by_name (htab->obfd, out_sec_name);
6229 if (stub_out_sec != NULL)
6230 cmse_stub_sec_vma = stub_out_sec->vma;
6231
6232 /* Set addresses of veneers mentionned in input secure gateway import
6233 library's symbol table. */
6234 for (i = 0; i < symcount; i++)
6235 {
6236 sym = sympp[i];
6237 flags = sym->flags;
6238 sym_name = (char *) bfd_asymbol_name (sym);
6239 intsym = &((elf_symbol_type *) sym)->internal_elf_sym;
6240
6241 if (sym->section != bfd_abs_section_ptr
6242 || !(flags & (BSF_GLOBAL | BSF_WEAK))
6243 || (flags & BSF_FUNCTION) != BSF_FUNCTION
6244 || (ARM_GET_SYM_BRANCH_TYPE (intsym->st_target_internal)
6245 != ST_BRANCH_TO_THUMB))
6246 {
90b6238f
AM
6247 _bfd_error_handler (_("%pB: invalid import library entry: `%s'; "
6248 "symbol should be absolute, global and "
6249 "refer to Thumb functions"),
4eca0228 6250 in_implib_bfd, sym_name);
0a1b45a2 6251 ret = false;
0955507f
TP
6252 continue;
6253 }
6254
6255 veneer_value = bfd_asymbol_value (sym);
6256 stub_offset = veneer_value - cmse_stub_sec_vma;
6257 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, sym_name,
0a1b45a2 6258 false, false);
0955507f 6259 hash = (struct elf32_arm_link_hash_entry *)
0a1b45a2 6260 elf_link_hash_lookup (&(htab)->root, sym_name, false, false, true);
0955507f
TP
6261
6262 /* Stub entry should have been created by cmse_scan or the symbol be of
6263 a secure function callable from non secure code. */
6264 if (!stub_entry && !hash)
6265 {
0a1b45a2 6266 bool new_stub;
0955507f 6267
4eca0228 6268 _bfd_error_handler
90b6238f 6269 (_("entry function `%s' disappeared from secure code"), sym_name);
0955507f 6270 hash = (struct elf32_arm_link_hash_entry *)
0a1b45a2 6271 elf_link_hash_lookup (&(htab)->root, sym_name, true, true, true);
0955507f
TP
6272 stub_entry
6273 = elf32_arm_create_stub (htab, arm_stub_cmse_branch_thumb_only,
6274 NULL, NULL, bfd_abs_section_ptr, hash,
6275 sym_name, veneer_value,
6276 ST_BRANCH_TO_THUMB, &new_stub);
6277 if (stub_entry == NULL)
0a1b45a2 6278 ret = false;
0955507f
TP
6279 else
6280 {
6281 BFD_ASSERT (new_stub);
6282 new_cmse_stubs_created++;
6283 (*cmse_stub_created)++;
6284 }
6285 stub_entry->stub_template_size = stub_entry->stub_size = 0;
6286 stub_entry->stub_offset = stub_offset;
6287 }
6288 /* Symbol found is not callable from non secure code. */
6289 else if (!stub_entry)
6290 {
6291 if (!cmse_entry_fct_p (hash))
6292 {
90b6238f 6293 _bfd_error_handler (_("`%s' refers to a non entry function"),
4eca0228 6294 sym_name);
0a1b45a2 6295 ret = false;
0955507f
TP
6296 }
6297 continue;
6298 }
6299 else
6300 {
6301 /* Only stubs for SG veneers should have been created. */
6302 BFD_ASSERT (stub_entry->stub_type == arm_stub_cmse_branch_thumb_only);
6303
6304 /* Check visibility hasn't changed. */
6305 if (!!(flags & BSF_GLOBAL)
6306 != (hash->root.root.type == bfd_link_hash_defined))
4eca0228 6307 _bfd_error_handler
90b6238f 6308 (_("%pB: visibility of symbol `%s' has changed"), in_implib_bfd,
0955507f
TP
6309 sym_name);
6310
6311 stub_entry->stub_offset = stub_offset;
6312 }
6313
6314 /* Size should match that of a SG veneer. */
6315 if (intsym->st_size != cmse_stub_size)
6316 {
90b6238f 6317 _bfd_error_handler (_("%pB: incorrect size for symbol `%s'"),
4eca0228 6318 in_implib_bfd, sym_name);
0a1b45a2 6319 ret = false;
0955507f
TP
6320 }
6321
6322 /* Previous veneer address is before current SG veneer section. */
6323 if (veneer_value < cmse_stub_sec_vma)
6324 {
6325 /* Avoid offset underflow. */
6326 if (stub_entry)
6327 stub_entry->stub_offset = 0;
6328 stub_offset = 0;
0a1b45a2 6329 ret = false;
0955507f
TP
6330 }
6331
6332 /* Complain if stub offset not a multiple of stub size. */
6333 if (stub_offset % cmse_stub_size)
6334 {
4eca0228 6335 _bfd_error_handler
90b6238f
AM
6336 (_("offset of veneer for entry function `%s' not a multiple of "
6337 "its size"), sym_name);
0a1b45a2 6338 ret = false;
0955507f
TP
6339 }
6340
6341 if (!ret)
6342 continue;
6343
6344 new_cmse_stubs_created--;
6345 if (veneer_value < cmse_stub_array_start)
6346 cmse_stub_array_start = veneer_value;
6347 next_cmse_stub_offset = stub_offset + ((cmse_stub_size + 7) & ~7);
6348 if (next_cmse_stub_offset > htab->new_cmse_stub_offset)
6349 htab->new_cmse_stub_offset = next_cmse_stub_offset;
6350 }
6351
6352 if (!info->out_implib_bfd && new_cmse_stubs_created != 0)
6353 {
6354 BFD_ASSERT (new_cmse_stubs_created > 0);
4eca0228 6355 _bfd_error_handler
0955507f
TP
6356 (_("new entry function(s) introduced but no output import library "
6357 "specified:"));
6358 bfd_hash_traverse (&htab->stub_hash_table, arm_list_new_cmse_stub, info);
6359 }
6360
6361 if (cmse_stub_array_start != cmse_stub_sec_vma)
6362 {
4eca0228 6363 _bfd_error_handler
90b6238f 6364 (_("start address of `%s' is different from previous link"),
0955507f 6365 out_sec_name);
0a1b45a2 6366 ret = false;
0955507f
TP
6367 }
6368
dc1e8a47 6369 free_sym_buf:
0955507f
TP
6370 free (sympp);
6371 return ret;
6372}
6373
906e58ca
NC
6374/* Determine and set the size of the stub section for a final link.
6375
6376 The basic idea here is to examine all the relocations looking for
6377 PC-relative calls to a target that is unreachable with a "bl"
6378 instruction. */
6379
0a1b45a2 6380bool
906e58ca
NC
6381elf32_arm_size_stubs (bfd *output_bfd,
6382 bfd *stub_bfd,
6383 struct bfd_link_info *info,
6384 bfd_signed_vma group_size,
7a89b94e 6385 asection * (*add_stub_section) (const char *, asection *,
6bde4c52 6386 asection *,
7a89b94e 6387 unsigned int),
906e58ca
NC
6388 void (*layout_sections_again) (void))
6389{
0a1b45a2 6390 bool ret = true;
4ba2ef8f 6391 obj_attribute *out_attr;
0955507f 6392 int cmse_stub_created = 0;
906e58ca 6393 bfd_size_type stub_group_size;
0a1b45a2 6394 bool m_profile, stubs_always_after_branch, first_veneer_scan = true;
906e58ca 6395 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
48229727 6396 struct a8_erratum_fix *a8_fixes = NULL;
eb7c4339 6397 unsigned int num_a8_fixes = 0, a8_fix_table_size = 10;
48229727
JB
6398 struct a8_erratum_reloc *a8_relocs = NULL;
6399 unsigned int num_a8_relocs = 0, a8_reloc_table_size = 10, i;
6400
4dfe6ac6 6401 if (htab == NULL)
0a1b45a2 6402 return false;
4dfe6ac6 6403
48229727
JB
6404 if (htab->fix_cortex_a8)
6405 {
21d799b5 6406 a8_fixes = (struct a8_erratum_fix *)
99059e56 6407 bfd_zmalloc (sizeof (struct a8_erratum_fix) * a8_fix_table_size);
21d799b5 6408 a8_relocs = (struct a8_erratum_reloc *)
99059e56 6409 bfd_zmalloc (sizeof (struct a8_erratum_reloc) * a8_reloc_table_size);
48229727 6410 }
906e58ca
NC
6411
6412 /* Propagate mach to stub bfd, because it may not have been
6413 finalized when we created stub_bfd. */
6414 bfd_set_arch_mach (stub_bfd, bfd_get_arch (output_bfd),
6415 bfd_get_mach (output_bfd));
6416
6417 /* Stash our params away. */
6418 htab->stub_bfd = stub_bfd;
6419 htab->add_stub_section = add_stub_section;
6420 htab->layout_sections_again = layout_sections_again;
07d72278 6421 stubs_always_after_branch = group_size < 0;
48229727 6422
4ba2ef8f
TP
6423 out_attr = elf_known_obj_attributes_proc (output_bfd);
6424 m_profile = out_attr[Tag_CPU_arch_profile].i == 'M';
0955507f 6425
48229727
JB
6426 /* The Cortex-A8 erratum fix depends on stubs not being in the same 4K page
6427 as the first half of a 32-bit branch straddling two 4K pages. This is a
6428 crude way of enforcing that. */
6429 if (htab->fix_cortex_a8)
6430 stubs_always_after_branch = 1;
6431
906e58ca
NC
6432 if (group_size < 0)
6433 stub_group_size = -group_size;
6434 else
6435 stub_group_size = group_size;
6436
6437 if (stub_group_size == 1)
6438 {
6439 /* Default values. */
6440 /* Thumb branch range is +-4MB has to be used as the default
6441 maximum size (a given section can contain both ARM and Thumb
6442 code, so the worst case has to be taken into account).
6443
6444 This value is 24K less than that, which allows for 2025
6445 12-byte stubs. If we exceed that, then we will fail to link.
6446 The user will have to relink with an explicit group size
6447 option. */
6448 stub_group_size = 4170000;
6449 }
6450
07d72278 6451 group_sections (htab, stub_group_size, stubs_always_after_branch);
906e58ca 6452
3ae046cc
NS
6453 /* If we're applying the cortex A8 fix, we need to determine the
6454 program header size now, because we cannot change it later --
6455 that could alter section placements. Notice the A8 erratum fix
6456 ends up requiring the section addresses to remain unchanged
6457 modulo the page size. That's something we cannot represent
6458 inside BFD, and we don't want to force the section alignment to
6459 be the page size. */
6460 if (htab->fix_cortex_a8)
6461 (*htab->layout_sections_again) ();
6462
906e58ca
NC
6463 while (1)
6464 {
6465 bfd *input_bfd;
6466 unsigned int bfd_indx;
6467 asection *stub_sec;
d7c5bd02 6468 enum elf32_arm_stub_type stub_type;
0a1b45a2 6469 bool stub_changed = false;
eb7c4339 6470 unsigned prev_num_a8_fixes = num_a8_fixes;
906e58ca 6471
48229727 6472 num_a8_fixes = 0;
906e58ca
NC
6473 for (input_bfd = info->input_bfds, bfd_indx = 0;
6474 input_bfd != NULL;
c72f2fb2 6475 input_bfd = input_bfd->link.next, bfd_indx++)
906e58ca
NC
6476 {
6477 Elf_Internal_Shdr *symtab_hdr;
6478 asection *section;
6479 Elf_Internal_Sym *local_syms = NULL;
6480
73d5efd7
AM
6481 if (!is_arm_elf (input_bfd))
6482 continue;
6483 if ((input_bfd->flags & DYNAMIC) != 0
6484 && (elf_sym_hashes (input_bfd) == NULL
6485 || (elf_dyn_lib_class (input_bfd) & DYN_AS_NEEDED) != 0))
99059e56 6486 continue;
adbcc655 6487
48229727
JB
6488 num_a8_relocs = 0;
6489
906e58ca
NC
6490 /* We'll need the symbol table in a second. */
6491 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
6492 if (symtab_hdr->sh_info == 0)
6493 continue;
6494
4ba2ef8f
TP
6495 /* Limit scan of symbols to object file whose profile is
6496 Microcontroller to not hinder performance in the general case. */
6497 if (m_profile && first_veneer_scan)
6498 {
6499 struct elf_link_hash_entry **sym_hashes;
6500
6501 sym_hashes = elf_sym_hashes (input_bfd);
6502 if (!cmse_scan (input_bfd, htab, out_attr, sym_hashes,
0955507f 6503 &cmse_stub_created))
4ba2ef8f 6504 goto error_ret_free_local;
0955507f
TP
6505
6506 if (cmse_stub_created != 0)
0a1b45a2 6507 stub_changed = true;
4ba2ef8f
TP
6508 }
6509
906e58ca
NC
6510 /* Walk over each section attached to the input bfd. */
6511 for (section = input_bfd->sections;
6512 section != NULL;
6513 section = section->next)
6514 {
6515 Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
6516
6517 /* If there aren't any relocs, then there's nothing more
6518 to do. */
6519 if ((section->flags & SEC_RELOC) == 0
6520 || section->reloc_count == 0
6521 || (section->flags & SEC_CODE) == 0)
6522 continue;
6523
6524 /* If this section is a link-once section that will be
6525 discarded, then don't create any stubs. */
6526 if (section->output_section == NULL
6527 || section->output_section->owner != output_bfd)
6528 continue;
6529
6530 /* Get the relocs. */
6531 internal_relocs
6532 = _bfd_elf_link_read_relocs (input_bfd, section, NULL,
6533 NULL, info->keep_memory);
6534 if (internal_relocs == NULL)
6535 goto error_ret_free_local;
6536
6537 /* Now examine each relocation. */
6538 irela = internal_relocs;
6539 irelaend = irela + section->reloc_count;
6540 for (; irela < irelaend; irela++)
6541 {
6542 unsigned int r_type, r_indx;
906e58ca
NC
6543 asection *sym_sec;
6544 bfd_vma sym_value;
6545 bfd_vma destination;
6546 struct elf32_arm_link_hash_entry *hash;
7413f23f 6547 const char *sym_name;
34e77a92 6548 unsigned char st_type;
35fc36a8 6549 enum arm_st_branch_type branch_type;
0a1b45a2 6550 bool created_stub = false;
906e58ca
NC
6551
6552 r_type = ELF32_R_TYPE (irela->r_info);
6553 r_indx = ELF32_R_SYM (irela->r_info);
6554
6555 if (r_type >= (unsigned int) R_ARM_max)
6556 {
6557 bfd_set_error (bfd_error_bad_value);
6558 error_ret_free_internal:
6559 if (elf_section_data (section)->relocs == NULL)
6560 free (internal_relocs);
15dd01b1
TP
6561 /* Fall through. */
6562 error_ret_free_local:
c9594989 6563 if (symtab_hdr->contents != (unsigned char *) local_syms)
15dd01b1 6564 free (local_syms);
0a1b45a2 6565 return false;
906e58ca 6566 }
b38cadfb 6567
0855e32b
NS
6568 hash = NULL;
6569 if (r_indx >= symtab_hdr->sh_info)
6570 hash = elf32_arm_hash_entry
6571 (elf_sym_hashes (input_bfd)
6572 [r_indx - symtab_hdr->sh_info]);
b38cadfb 6573
0855e32b
NS
6574 /* Only look for stubs on branch instructions, or
6575 non-relaxed TLSCALL */
906e58ca 6576 if ((r_type != (unsigned int) R_ARM_CALL)
155d87d7
CL
6577 && (r_type != (unsigned int) R_ARM_THM_CALL)
6578 && (r_type != (unsigned int) R_ARM_JUMP24)
48229727
JB
6579 && (r_type != (unsigned int) R_ARM_THM_JUMP19)
6580 && (r_type != (unsigned int) R_ARM_THM_XPC22)
155d87d7 6581 && (r_type != (unsigned int) R_ARM_THM_JUMP24)
0855e32b
NS
6582 && (r_type != (unsigned int) R_ARM_PLT32)
6583 && !((r_type == (unsigned int) R_ARM_TLS_CALL
6584 || r_type == (unsigned int) R_ARM_THM_TLS_CALL)
c9f9a78d
AM
6585 && r_type == (elf32_arm_tls_transition
6586 (info, r_type,
6587 (struct elf_link_hash_entry *) hash))
0855e32b
NS
6588 && ((hash ? hash->tls_type
6589 : (elf32_arm_local_got_tls_type
6590 (input_bfd)[r_indx]))
6591 & GOT_TLS_GDESC) != 0))
906e58ca
NC
6592 continue;
6593
6594 /* Now determine the call target, its name, value,
6595 section. */
6596 sym_sec = NULL;
6597 sym_value = 0;
6598 destination = 0;
7413f23f 6599 sym_name = NULL;
b38cadfb 6600
0855e32b
NS
6601 if (r_type == (unsigned int) R_ARM_TLS_CALL
6602 || r_type == (unsigned int) R_ARM_THM_TLS_CALL)
6603 {
6604 /* A non-relaxed TLS call. The target is the
6605 plt-resident trampoline and nothing to do
6606 with the symbol. */
6607 BFD_ASSERT (htab->tls_trampoline > 0);
6608 sym_sec = htab->root.splt;
6609 sym_value = htab->tls_trampoline;
6610 hash = 0;
34e77a92 6611 st_type = STT_FUNC;
35fc36a8 6612 branch_type = ST_BRANCH_TO_ARM;
0855e32b
NS
6613 }
6614 else if (!hash)
906e58ca
NC
6615 {
6616 /* It's a local symbol. */
6617 Elf_Internal_Sym *sym;
906e58ca
NC
6618
6619 if (local_syms == NULL)
6620 {
6621 local_syms
6622 = (Elf_Internal_Sym *) symtab_hdr->contents;
6623 if (local_syms == NULL)
6624 local_syms
6625 = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
6626 symtab_hdr->sh_info, 0,
6627 NULL, NULL, NULL);
6628 if (local_syms == NULL)
6629 goto error_ret_free_internal;
6630 }
6631
6632 sym = local_syms + r_indx;
f6d250ce
TS
6633 if (sym->st_shndx == SHN_UNDEF)
6634 sym_sec = bfd_und_section_ptr;
6635 else if (sym->st_shndx == SHN_ABS)
6636 sym_sec = bfd_abs_section_ptr;
6637 else if (sym->st_shndx == SHN_COMMON)
6638 sym_sec = bfd_com_section_ptr;
6639 else
6640 sym_sec =
6641 bfd_section_from_elf_index (input_bfd, sym->st_shndx);
6642
ffcb4889
NS
6643 if (!sym_sec)
6644 /* This is an undefined symbol. It can never
6a631e86 6645 be resolved. */
ffcb4889 6646 continue;
fe33d2fa 6647
906e58ca
NC
6648 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
6649 sym_value = sym->st_value;
6650 destination = (sym_value + irela->r_addend
6651 + sym_sec->output_offset
6652 + sym_sec->output_section->vma);
34e77a92 6653 st_type = ELF_ST_TYPE (sym->st_info);
39d911fc
TP
6654 branch_type =
6655 ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
7413f23f
DJ
6656 sym_name
6657 = bfd_elf_string_from_elf_section (input_bfd,
6658 symtab_hdr->sh_link,
6659 sym->st_name);
906e58ca
NC
6660 }
6661 else
6662 {
6663 /* It's an external symbol. */
906e58ca
NC
6664 while (hash->root.root.type == bfd_link_hash_indirect
6665 || hash->root.root.type == bfd_link_hash_warning)
6666 hash = ((struct elf32_arm_link_hash_entry *)
6667 hash->root.root.u.i.link);
6668
6669 if (hash->root.root.type == bfd_link_hash_defined
6670 || hash->root.root.type == bfd_link_hash_defweak)
6671 {
6672 sym_sec = hash->root.root.u.def.section;
6673 sym_value = hash->root.root.u.def.value;
022f8312
CL
6674
6675 struct elf32_arm_link_hash_table *globals =
6676 elf32_arm_hash_table (info);
6677
6678 /* For a destination in a shared library,
6679 use the PLT stub as target address to
6680 decide whether a branch stub is
6681 needed. */
4dfe6ac6 6682 if (globals != NULL
362d30a1 6683 && globals->root.splt != NULL
4dfe6ac6 6684 && hash != NULL
022f8312
CL
6685 && hash->root.plt.offset != (bfd_vma) -1)
6686 {
362d30a1 6687 sym_sec = globals->root.splt;
022f8312
CL
6688 sym_value = hash->root.plt.offset;
6689 if (sym_sec->output_section != NULL)
6690 destination = (sym_value
6691 + sym_sec->output_offset
6692 + sym_sec->output_section->vma);
6693 }
6694 else if (sym_sec->output_section != NULL)
906e58ca
NC
6695 destination = (sym_value + irela->r_addend
6696 + sym_sec->output_offset
6697 + sym_sec->output_section->vma);
6698 }
69c5861e
CL
6699 else if ((hash->root.root.type == bfd_link_hash_undefined)
6700 || (hash->root.root.type == bfd_link_hash_undefweak))
6701 {
6702 /* For a shared library, use the PLT stub as
6703 target address to decide whether a long
6704 branch stub is needed.
6705 For absolute code, they cannot be handled. */
6706 struct elf32_arm_link_hash_table *globals =
6707 elf32_arm_hash_table (info);
6708
4dfe6ac6 6709 if (globals != NULL
362d30a1 6710 && globals->root.splt != NULL
4dfe6ac6 6711 && hash != NULL
69c5861e
CL
6712 && hash->root.plt.offset != (bfd_vma) -1)
6713 {
362d30a1 6714 sym_sec = globals->root.splt;
69c5861e
CL
6715 sym_value = hash->root.plt.offset;
6716 if (sym_sec->output_section != NULL)
6717 destination = (sym_value
6718 + sym_sec->output_offset
6719 + sym_sec->output_section->vma);
6720 }
6721 else
6722 continue;
6723 }
906e58ca
NC
6724 else
6725 {
6726 bfd_set_error (bfd_error_bad_value);
6727 goto error_ret_free_internal;
6728 }
34e77a92 6729 st_type = hash->root.type;
39d911fc
TP
6730 branch_type =
6731 ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
7413f23f 6732 sym_name = hash->root.root.root.string;
906e58ca
NC
6733 }
6734
48229727 6735 do
7413f23f 6736 {
0a1b45a2 6737 bool new_stub;
0955507f 6738 struct elf32_arm_stub_hash_entry *stub_entry;
b715f643 6739
48229727
JB
6740 /* Determine what (if any) linker stub is needed. */
6741 stub_type = arm_type_of_stub (info, section, irela,
34e77a92
RS
6742 st_type, &branch_type,
6743 hash, destination, sym_sec,
48229727
JB
6744 input_bfd, sym_name);
6745 if (stub_type == arm_stub_none)
6746 break;
6747
48229727
JB
6748 /* We've either created a stub for this reloc already,
6749 or we are about to. */
0955507f 6750 stub_entry =
b715f643
TP
6751 elf32_arm_create_stub (htab, stub_type, section, irela,
6752 sym_sec, hash,
6753 (char *) sym_name, sym_value,
6754 branch_type, &new_stub);
7413f23f 6755
0955507f 6756 created_stub = stub_entry != NULL;
b715f643
TP
6757 if (!created_stub)
6758 goto error_ret_free_internal;
6759 else if (!new_stub)
6760 break;
99059e56 6761 else
0a1b45a2 6762 stub_changed = true;
99059e56
RM
6763 }
6764 while (0);
6765
6766 /* Look for relocations which might trigger Cortex-A8
6767 erratum. */
6768 if (htab->fix_cortex_a8
6769 && (r_type == (unsigned int) R_ARM_THM_JUMP24
6770 || r_type == (unsigned int) R_ARM_THM_JUMP19
6771 || r_type == (unsigned int) R_ARM_THM_CALL
6772 || r_type == (unsigned int) R_ARM_THM_XPC22))
6773 {
6774 bfd_vma from = section->output_section->vma
6775 + section->output_offset
6776 + irela->r_offset;
6777
6778 if ((from & 0xfff) == 0xffe)
6779 {
6780 /* Found a candidate. Note we haven't checked the
6781 destination is within 4K here: if we do so (and
6782 don't create an entry in a8_relocs) we can't tell
6783 that a branch should have been relocated when
6784 scanning later. */
6785 if (num_a8_relocs == a8_reloc_table_size)
6786 {
6787 a8_reloc_table_size *= 2;
6788 a8_relocs = (struct a8_erratum_reloc *)
6789 bfd_realloc (a8_relocs,
6790 sizeof (struct a8_erratum_reloc)
6791 * a8_reloc_table_size);
6792 }
6793
6794 a8_relocs[num_a8_relocs].from = from;
6795 a8_relocs[num_a8_relocs].destination = destination;
6796 a8_relocs[num_a8_relocs].r_type = r_type;
6797 a8_relocs[num_a8_relocs].branch_type = branch_type;
6798 a8_relocs[num_a8_relocs].sym_name = sym_name;
6799 a8_relocs[num_a8_relocs].non_a8_stub = created_stub;
6800 a8_relocs[num_a8_relocs].hash = hash;
6801
6802 num_a8_relocs++;
6803 }
6804 }
906e58ca
NC
6805 }
6806
99059e56
RM
6807 /* We're done with the internal relocs, free them. */
6808 if (elf_section_data (section)->relocs == NULL)
6809 free (internal_relocs);
6810 }
48229727 6811
99059e56 6812 if (htab->fix_cortex_a8)
48229727 6813 {
99059e56
RM
6814 /* Sort relocs which might apply to Cortex-A8 erratum. */
6815 qsort (a8_relocs, num_a8_relocs,
eb7c4339 6816 sizeof (struct a8_erratum_reloc),
99059e56 6817 &a8_reloc_compare);
48229727 6818
99059e56
RM
6819 /* Scan for branches which might trigger Cortex-A8 erratum. */
6820 if (cortex_a8_erratum_scan (input_bfd, info, &a8_fixes,
48229727 6821 &num_a8_fixes, &a8_fix_table_size,
eb7c4339
NS
6822 a8_relocs, num_a8_relocs,
6823 prev_num_a8_fixes, &stub_changed)
6824 != 0)
48229727 6825 goto error_ret_free_local;
5e681ec4 6826 }
7f991970
AM
6827
6828 if (local_syms != NULL
6829 && symtab_hdr->contents != (unsigned char *) local_syms)
6830 {
6831 if (!info->keep_memory)
6832 free (local_syms);
6833 else
6834 symtab_hdr->contents = (unsigned char *) local_syms;
6835 }
5e681ec4
PB
6836 }
6837
0955507f
TP
6838 if (first_veneer_scan
6839 && !set_cmse_veneer_addr_from_implib (info, htab,
6840 &cmse_stub_created))
0a1b45a2 6841 ret = false;
0955507f 6842
eb7c4339 6843 if (prev_num_a8_fixes != num_a8_fixes)
0a1b45a2 6844 stub_changed = true;
48229727 6845
906e58ca
NC
6846 if (!stub_changed)
6847 break;
5e681ec4 6848
906e58ca
NC
6849 /* OK, we've added some stubs. Find out the new size of the
6850 stub sections. */
6851 for (stub_sec = htab->stub_bfd->sections;
6852 stub_sec != NULL;
6853 stub_sec = stub_sec->next)
3e6b1042
DJ
6854 {
6855 /* Ignore non-stub sections. */
6856 if (!strstr (stub_sec->name, STUB_SUFFIX))
6857 continue;
6858
6859 stub_sec->size = 0;
6860 }
b34b2d70 6861
0955507f
TP
6862 /* Add new SG veneers after those already in the input import
6863 library. */
6864 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6865 stub_type++)
6866 {
6867 bfd_vma *start_offset_p;
6868 asection **stub_sec_p;
6869
6870 start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
6871 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6872 if (start_offset_p == NULL)
6873 continue;
6874
6875 BFD_ASSERT (stub_sec_p != NULL);
6876 if (*stub_sec_p != NULL)
6877 (*stub_sec_p)->size = *start_offset_p;
6878 }
6879
d7c5bd02 6880 /* Compute stub section size, considering padding. */
906e58ca 6881 bfd_hash_traverse (&htab->stub_hash_table, arm_size_one_stub, htab);
d7c5bd02
TP
6882 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6883 stub_type++)
6884 {
6885 int size, padding;
6886 asection **stub_sec_p;
6887
6888 padding = arm_dedicated_stub_section_padding (stub_type);
6889 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6890 /* Skip if no stub input section or no stub section padding
6891 required. */
6892 if ((stub_sec_p != NULL && *stub_sec_p == NULL) || padding == 0)
6893 continue;
6894 /* Stub section padding required but no dedicated section. */
6895 BFD_ASSERT (stub_sec_p);
6896
6897 size = (*stub_sec_p)->size;
6898 size = (size + padding - 1) & ~(padding - 1);
6899 (*stub_sec_p)->size = size;
6900 }
906e58ca 6901
48229727
JB
6902 /* Add Cortex-A8 erratum veneers to stub section sizes too. */
6903 if (htab->fix_cortex_a8)
99059e56
RM
6904 for (i = 0; i < num_a8_fixes; i++)
6905 {
48229727 6906 stub_sec = elf32_arm_create_or_find_stub_sec (NULL,
daa4adae 6907 a8_fixes[i].section, htab, a8_fixes[i].stub_type);
48229727
JB
6908
6909 if (stub_sec == NULL)
0a1b45a2 6910 return false;
48229727 6911
99059e56
RM
6912 stub_sec->size
6913 += find_stub_size_and_template (a8_fixes[i].stub_type, NULL,
6914 NULL);
6915 }
48229727
JB
6916
6917
906e58ca
NC
6918 /* Ask the linker to do its stuff. */
6919 (*htab->layout_sections_again) ();
0a1b45a2 6920 first_veneer_scan = false;
ba93b8ac
DJ
6921 }
6922
48229727
JB
6923 /* Add stubs for Cortex-A8 erratum fixes now. */
6924 if (htab->fix_cortex_a8)
6925 {
6926 for (i = 0; i < num_a8_fixes; i++)
99059e56
RM
6927 {
6928 struct elf32_arm_stub_hash_entry *stub_entry;
6929 char *stub_name = a8_fixes[i].stub_name;
6930 asection *section = a8_fixes[i].section;
6931 unsigned int section_id = a8_fixes[i].section->id;
6932 asection *link_sec = htab->stub_group[section_id].link_sec;
6933 asection *stub_sec = htab->stub_group[section_id].stub_sec;
6934 const insn_sequence *template_sequence;
6935 int template_size, size = 0;
6936
6937 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
0a1b45a2 6938 true, false);
99059e56
RM
6939 if (stub_entry == NULL)
6940 {
871b3ab2 6941 _bfd_error_handler (_("%pB: cannot create stub entry %s"),
4eca0228 6942 section->owner, stub_name);
0a1b45a2 6943 return false;
99059e56
RM
6944 }
6945
6946 stub_entry->stub_sec = stub_sec;
0955507f 6947 stub_entry->stub_offset = (bfd_vma) -1;
99059e56
RM
6948 stub_entry->id_sec = link_sec;
6949 stub_entry->stub_type = a8_fixes[i].stub_type;
8d9d9490 6950 stub_entry->source_value = a8_fixes[i].offset;
99059e56 6951 stub_entry->target_section = a8_fixes[i].section;
8d9d9490 6952 stub_entry->target_value = a8_fixes[i].target_offset;
99059e56 6953 stub_entry->orig_insn = a8_fixes[i].orig_insn;
35fc36a8 6954 stub_entry->branch_type = a8_fixes[i].branch_type;
48229727 6955
99059e56
RM
6956 size = find_stub_size_and_template (a8_fixes[i].stub_type,
6957 &template_sequence,
6958 &template_size);
48229727 6959
99059e56
RM
6960 stub_entry->stub_size = size;
6961 stub_entry->stub_template = template_sequence;
6962 stub_entry->stub_template_size = template_size;
6963 }
48229727
JB
6964
6965 /* Stash the Cortex-A8 erratum fix array for use later in
99059e56 6966 elf32_arm_write_section(). */
48229727
JB
6967 htab->a8_erratum_fixes = a8_fixes;
6968 htab->num_a8_erratum_fixes = num_a8_fixes;
6969 }
6970 else
6971 {
6972 htab->a8_erratum_fixes = NULL;
6973 htab->num_a8_erratum_fixes = 0;
6974 }
0955507f 6975 return ret;
5e681ec4
PB
6976}
6977
906e58ca
NC
6978/* Build all the stubs associated with the current output file. The
6979 stubs are kept in a hash table attached to the main linker hash
6980 table. We also set up the .plt entries for statically linked PIC
6981 functions here. This function is called via arm_elf_finish in the
6982 linker. */
252b5132 6983
0a1b45a2 6984bool
906e58ca 6985elf32_arm_build_stubs (struct bfd_link_info *info)
252b5132 6986{
906e58ca
NC
6987 asection *stub_sec;
6988 struct bfd_hash_table *table;
0955507f 6989 enum elf32_arm_stub_type stub_type;
906e58ca 6990 struct elf32_arm_link_hash_table *htab;
252b5132 6991
906e58ca 6992 htab = elf32_arm_hash_table (info);
4dfe6ac6 6993 if (htab == NULL)
0a1b45a2 6994 return false;
252b5132 6995
906e58ca
NC
6996 for (stub_sec = htab->stub_bfd->sections;
6997 stub_sec != NULL;
6998 stub_sec = stub_sec->next)
252b5132 6999 {
906e58ca
NC
7000 bfd_size_type size;
7001
8029a119 7002 /* Ignore non-stub sections. */
906e58ca
NC
7003 if (!strstr (stub_sec->name, STUB_SUFFIX))
7004 continue;
7005
d7c5bd02 7006 /* Allocate memory to hold the linker stubs. Zeroing the stub sections
0955507f
TP
7007 must at least be done for stub section requiring padding and for SG
7008 veneers to ensure that a non secure code branching to a removed SG
7009 veneer causes an error. */
906e58ca 7010 size = stub_sec->size;
21d799b5 7011 stub_sec->contents = (unsigned char *) bfd_zalloc (htab->stub_bfd, size);
906e58ca 7012 if (stub_sec->contents == NULL && size != 0)
0a1b45a2 7013 return false;
0955507f 7014
906e58ca 7015 stub_sec->size = 0;
252b5132
RH
7016 }
7017
0955507f
TP
7018 /* Add new SG veneers after those already in the input import library. */
7019 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7020 {
7021 bfd_vma *start_offset_p;
7022 asection **stub_sec_p;
7023
7024 start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
7025 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
7026 if (start_offset_p == NULL)
7027 continue;
7028
7029 BFD_ASSERT (stub_sec_p != NULL);
7030 if (*stub_sec_p != NULL)
7031 (*stub_sec_p)->size = *start_offset_p;
7032 }
7033
906e58ca
NC
7034 /* Build the stubs as directed by the stub hash table. */
7035 table = &htab->stub_hash_table;
7036 bfd_hash_traverse (table, arm_build_one_stub, info);
eb7c4339
NS
7037 if (htab->fix_cortex_a8)
7038 {
7039 /* Place the cortex a8 stubs last. */
7040 htab->fix_cortex_a8 = -1;
7041 bfd_hash_traverse (table, arm_build_one_stub, info);
7042 }
252b5132 7043
0a1b45a2 7044 return true;
252b5132
RH
7045}
7046
9b485d32
NC
7047/* Locate the Thumb encoded calling stub for NAME. */
7048
252b5132 7049static struct elf_link_hash_entry *
57e8b36a
NC
7050find_thumb_glue (struct bfd_link_info *link_info,
7051 const char *name,
f2a9dd69 7052 char **error_message)
252b5132
RH
7053{
7054 char *tmp_name;
7055 struct elf_link_hash_entry *hash;
7056 struct elf32_arm_link_hash_table *hash_table;
7057
7058 /* We need a pointer to the armelf specific hash table. */
7059 hash_table = elf32_arm_hash_table (link_info);
4dfe6ac6
NC
7060 if (hash_table == NULL)
7061 return NULL;
252b5132 7062
21d799b5 7063 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
99059e56 7064 + strlen (THUMB2ARM_GLUE_ENTRY_NAME) + 1);
252b5132
RH
7065
7066 BFD_ASSERT (tmp_name);
7067
7068 sprintf (tmp_name, THUMB2ARM_GLUE_ENTRY_NAME, name);
7069
7070 hash = elf_link_hash_lookup
0a1b45a2 7071 (&(hash_table)->root, tmp_name, false, false, true);
252b5132 7072
b1657152 7073 if (hash == NULL
90b6238f
AM
7074 && asprintf (error_message, _("unable to find %s glue '%s' for '%s'"),
7075 "Thumb", tmp_name, name) == -1)
b1657152 7076 *error_message = (char *) bfd_errmsg (bfd_error_system_call);
252b5132
RH
7077
7078 free (tmp_name);
7079
7080 return hash;
7081}
7082
9b485d32
NC
7083/* Locate the ARM encoded calling stub for NAME. */
7084
252b5132 7085static struct elf_link_hash_entry *
57e8b36a
NC
7086find_arm_glue (struct bfd_link_info *link_info,
7087 const char *name,
f2a9dd69 7088 char **error_message)
252b5132
RH
7089{
7090 char *tmp_name;
7091 struct elf_link_hash_entry *myh;
7092 struct elf32_arm_link_hash_table *hash_table;
7093
7094 /* We need a pointer to the elfarm specific hash table. */
7095 hash_table = elf32_arm_hash_table (link_info);
4dfe6ac6
NC
7096 if (hash_table == NULL)
7097 return NULL;
252b5132 7098
21d799b5 7099 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
99059e56 7100 + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
252b5132
RH
7101 BFD_ASSERT (tmp_name);
7102
7103 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7104
7105 myh = elf_link_hash_lookup
0a1b45a2 7106 (&(hash_table)->root, tmp_name, false, false, true);
252b5132 7107
b1657152 7108 if (myh == NULL
90b6238f
AM
7109 && asprintf (error_message, _("unable to find %s glue '%s' for '%s'"),
7110 "ARM", tmp_name, name) == -1)
b1657152 7111 *error_message = (char *) bfd_errmsg (bfd_error_system_call);
252b5132
RH
7112
7113 free (tmp_name);
7114
7115 return myh;
7116}
7117
8f6277f5 7118/* ARM->Thumb glue (static images):
252b5132
RH
7119
7120 .arm
7121 __func_from_arm:
7122 ldr r12, __func_addr
7123 bx r12
7124 __func_addr:
906e58ca 7125 .word func @ behave as if you saw a ARM_32 reloc.
252b5132 7126
26079076
PB
7127 (v5t static images)
7128 .arm
7129 __func_from_arm:
7130 ldr pc, __func_addr
7131 __func_addr:
906e58ca 7132 .word func @ behave as if you saw a ARM_32 reloc.
26079076 7133
8f6277f5
PB
7134 (relocatable images)
7135 .arm
7136 __func_from_arm:
7137 ldr r12, __func_offset
7138 add r12, r12, pc
7139 bx r12
7140 __func_offset:
8029a119 7141 .word func - . */
8f6277f5
PB
7142
7143#define ARM2THUMB_STATIC_GLUE_SIZE 12
252b5132
RH
7144static const insn32 a2t1_ldr_insn = 0xe59fc000;
7145static const insn32 a2t2_bx_r12_insn = 0xe12fff1c;
7146static const insn32 a2t3_func_addr_insn = 0x00000001;
7147
26079076
PB
7148#define ARM2THUMB_V5_STATIC_GLUE_SIZE 8
7149static const insn32 a2t1v5_ldr_insn = 0xe51ff004;
7150static const insn32 a2t2v5_func_addr_insn = 0x00000001;
7151
8f6277f5
PB
7152#define ARM2THUMB_PIC_GLUE_SIZE 16
7153static const insn32 a2t1p_ldr_insn = 0xe59fc004;
7154static const insn32 a2t2p_add_pc_insn = 0xe08cc00f;
7155static const insn32 a2t3p_bx_r12_insn = 0xe12fff1c;
7156
07d6d2b8 7157/* Thumb->ARM: Thumb->(non-interworking aware) ARM
252b5132 7158
07d6d2b8
AM
7159 .thumb .thumb
7160 .align 2 .align 2
7161 __func_from_thumb: __func_from_thumb:
7162 bx pc push {r6, lr}
7163 nop ldr r6, __func_addr
7164 .arm mov lr, pc
7165 b func bx r6
99059e56
RM
7166 .arm
7167 ;; back_to_thumb
7168 ldmia r13! {r6, lr}
7169 bx lr
7170 __func_addr:
07d6d2b8 7171 .word func */
252b5132
RH
7172
7173#define THUMB2ARM_GLUE_SIZE 8
7174static const insn16 t2a1_bx_pc_insn = 0x4778;
7175static const insn16 t2a2_noop_insn = 0x46c0;
7176static const insn32 t2a3_b_insn = 0xea000000;
7177
c7b8f16e 7178#define VFP11_ERRATUM_VENEER_SIZE 8
a504d23a
LA
7179#define STM32L4XX_ERRATUM_LDM_VENEER_SIZE 16
7180#define STM32L4XX_ERRATUM_VLDM_VENEER_SIZE 24
c7b8f16e 7181
845b51d6
PB
7182#define ARM_BX_VENEER_SIZE 12
7183static const insn32 armbx1_tst_insn = 0xe3100001;
7184static const insn32 armbx2_moveq_insn = 0x01a0f000;
7185static const insn32 armbx3_bx_insn = 0xe12fff10;
7186
7e392df6 7187#ifndef ELFARM_NABI_C_INCLUDED
8029a119
NC
7188static void
7189arm_allocate_glue_section_space (bfd * abfd, bfd_size_type size, const char * name)
252b5132
RH
7190{
7191 asection * s;
8029a119 7192 bfd_byte * contents;
252b5132 7193
8029a119 7194 if (size == 0)
3e6b1042
DJ
7195 {
7196 /* Do not include empty glue sections in the output. */
7197 if (abfd != NULL)
7198 {
3d4d4302 7199 s = bfd_get_linker_section (abfd, name);
3e6b1042
DJ
7200 if (s != NULL)
7201 s->flags |= SEC_EXCLUDE;
7202 }
7203 return;
7204 }
252b5132 7205
8029a119 7206 BFD_ASSERT (abfd != NULL);
252b5132 7207
3d4d4302 7208 s = bfd_get_linker_section (abfd, name);
8029a119 7209 BFD_ASSERT (s != NULL);
252b5132 7210
b0f4fbf8 7211 contents = (bfd_byte *) bfd_zalloc (abfd, size);
252b5132 7212
8029a119
NC
7213 BFD_ASSERT (s->size == size);
7214 s->contents = contents;
7215}
906e58ca 7216
0a1b45a2 7217bool
8029a119
NC
7218bfd_elf32_arm_allocate_interworking_sections (struct bfd_link_info * info)
7219{
7220 struct elf32_arm_link_hash_table * globals;
906e58ca 7221
8029a119
NC
7222 globals = elf32_arm_hash_table (info);
7223 BFD_ASSERT (globals != NULL);
906e58ca 7224
8029a119
NC
7225 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7226 globals->arm_glue_size,
7227 ARM2THUMB_GLUE_SECTION_NAME);
906e58ca 7228
8029a119
NC
7229 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7230 globals->thumb_glue_size,
7231 THUMB2ARM_GLUE_SECTION_NAME);
252b5132 7232
8029a119
NC
7233 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7234 globals->vfp11_erratum_glue_size,
7235 VFP11_ERRATUM_VENEER_SECTION_NAME);
845b51d6 7236
a504d23a
LA
7237 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7238 globals->stm32l4xx_erratum_glue_size,
7239 STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7240
8029a119
NC
7241 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7242 globals->bx_glue_size,
845b51d6
PB
7243 ARM_BX_GLUE_SECTION_NAME);
7244
0a1b45a2 7245 return true;
252b5132
RH
7246}
7247
a4fd1a8e 7248/* Allocate space and symbols for calling a Thumb function from Arm mode.
906e58ca
NC
7249 returns the symbol identifying the stub. */
7250
a4fd1a8e 7251static struct elf_link_hash_entry *
57e8b36a
NC
7252record_arm_to_thumb_glue (struct bfd_link_info * link_info,
7253 struct elf_link_hash_entry * h)
252b5132
RH
7254{
7255 const char * name = h->root.root.string;
63b0f745 7256 asection * s;
252b5132
RH
7257 char * tmp_name;
7258 struct elf_link_hash_entry * myh;
14a793b2 7259 struct bfd_link_hash_entry * bh;
252b5132 7260 struct elf32_arm_link_hash_table * globals;
dc810e39 7261 bfd_vma val;
2f475487 7262 bfd_size_type size;
252b5132
RH
7263
7264 globals = elf32_arm_hash_table (link_info);
252b5132
RH
7265 BFD_ASSERT (globals != NULL);
7266 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7267
3d4d4302 7268 s = bfd_get_linker_section
252b5132
RH
7269 (globals->bfd_of_glue_owner, ARM2THUMB_GLUE_SECTION_NAME);
7270
252b5132
RH
7271 BFD_ASSERT (s != NULL);
7272
21d799b5 7273 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
99059e56 7274 + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
252b5132
RH
7275 BFD_ASSERT (tmp_name);
7276
7277 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7278
7279 myh = elf_link_hash_lookup
0a1b45a2 7280 (&(globals)->root, tmp_name, false, false, true);
252b5132
RH
7281
7282 if (myh != NULL)
7283 {
9b485d32 7284 /* We've already seen this guy. */
252b5132 7285 free (tmp_name);
a4fd1a8e 7286 return myh;
252b5132
RH
7287 }
7288
57e8b36a
NC
7289 /* The only trick here is using hash_table->arm_glue_size as the value.
7290 Even though the section isn't allocated yet, this is where we will be
3dccd7b7
DJ
7291 putting it. The +1 on the value marks that the stub has not been
7292 output yet - not that it is a Thumb function. */
14a793b2 7293 bh = NULL;
dc810e39
AM
7294 val = globals->arm_glue_size + 1;
7295 _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
7296 tmp_name, BSF_GLOBAL, s, val,
0a1b45a2 7297 NULL, true, false, &bh);
252b5132 7298
b7693d02
DJ
7299 myh = (struct elf_link_hash_entry *) bh;
7300 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7301 myh->forced_local = 1;
7302
252b5132
RH
7303 free (tmp_name);
7304
0e1862bb
L
7305 if (bfd_link_pic (link_info)
7306 || globals->root.is_relocatable_executable
27e55c4d 7307 || globals->pic_veneer)
2f475487 7308 size = ARM2THUMB_PIC_GLUE_SIZE;
26079076
PB
7309 else if (globals->use_blx)
7310 size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
8f6277f5 7311 else
2f475487
AM
7312 size = ARM2THUMB_STATIC_GLUE_SIZE;
7313
7314 s->size += size;
7315 globals->arm_glue_size += size;
252b5132 7316
a4fd1a8e 7317 return myh;
252b5132
RH
7318}
7319
845b51d6
PB
7320/* Allocate space for ARMv4 BX veneers. */
7321
7322static void
7323record_arm_bx_glue (struct bfd_link_info * link_info, int reg)
7324{
7325 asection * s;
7326 struct elf32_arm_link_hash_table *globals;
7327 char *tmp_name;
7328 struct elf_link_hash_entry *myh;
7329 struct bfd_link_hash_entry *bh;
7330 bfd_vma val;
7331
7332 /* BX PC does not need a veneer. */
7333 if (reg == 15)
7334 return;
7335
7336 globals = elf32_arm_hash_table (link_info);
845b51d6
PB
7337 BFD_ASSERT (globals != NULL);
7338 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7339
7340 /* Check if this veneer has already been allocated. */
7341 if (globals->bx_glue_offset[reg])
7342 return;
7343
3d4d4302 7344 s = bfd_get_linker_section
845b51d6
PB
7345 (globals->bfd_of_glue_owner, ARM_BX_GLUE_SECTION_NAME);
7346
7347 BFD_ASSERT (s != NULL);
7348
7349 /* Add symbol for veneer. */
21d799b5
NC
7350 tmp_name = (char *)
7351 bfd_malloc ((bfd_size_type) strlen (ARM_BX_GLUE_ENTRY_NAME) + 1);
845b51d6 7352 BFD_ASSERT (tmp_name);
906e58ca 7353
845b51d6 7354 sprintf (tmp_name, ARM_BX_GLUE_ENTRY_NAME, reg);
906e58ca 7355
845b51d6 7356 myh = elf_link_hash_lookup
0a1b45a2 7357 (&(globals)->root, tmp_name, false, false, false);
906e58ca 7358
845b51d6 7359 BFD_ASSERT (myh == NULL);
906e58ca 7360
845b51d6
PB
7361 bh = NULL;
7362 val = globals->bx_glue_size;
7363 _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
99059e56 7364 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
0a1b45a2 7365 NULL, true, false, &bh);
845b51d6
PB
7366
7367 myh = (struct elf_link_hash_entry *) bh;
7368 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7369 myh->forced_local = 1;
7370
7371 s->size += ARM_BX_VENEER_SIZE;
7372 globals->bx_glue_offset[reg] = globals->bx_glue_size | 2;
7373 globals->bx_glue_size += ARM_BX_VENEER_SIZE;
7374}
7375
7376
c7b8f16e
JB
7377/* Add an entry to the code/data map for section SEC. */
7378
7379static void
7380elf32_arm_section_map_add (asection *sec, char type, bfd_vma vma)
7381{
7382 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
7383 unsigned int newidx;
906e58ca 7384
c7b8f16e
JB
7385 if (sec_data->map == NULL)
7386 {
21d799b5 7387 sec_data->map = (elf32_arm_section_map *)
99059e56 7388 bfd_malloc (sizeof (elf32_arm_section_map));
c7b8f16e
JB
7389 sec_data->mapcount = 0;
7390 sec_data->mapsize = 1;
7391 }
906e58ca 7392
c7b8f16e 7393 newidx = sec_data->mapcount++;
906e58ca 7394
c7b8f16e
JB
7395 if (sec_data->mapcount > sec_data->mapsize)
7396 {
7397 sec_data->mapsize *= 2;
21d799b5 7398 sec_data->map = (elf32_arm_section_map *)
99059e56
RM
7399 bfd_realloc_or_free (sec_data->map, sec_data->mapsize
7400 * sizeof (elf32_arm_section_map));
515ef31d
NC
7401 }
7402
7403 if (sec_data->map)
7404 {
7405 sec_data->map[newidx].vma = vma;
7406 sec_data->map[newidx].type = type;
c7b8f16e 7407 }
c7b8f16e
JB
7408}
7409
7410
7411/* Record information about a VFP11 denorm-erratum veneer. Only ARM-mode
7412 veneers are handled for now. */
7413
7414static bfd_vma
7415record_vfp11_erratum_veneer (struct bfd_link_info *link_info,
99059e56
RM
7416 elf32_vfp11_erratum_list *branch,
7417 bfd *branch_bfd,
7418 asection *branch_sec,
7419 unsigned int offset)
c7b8f16e
JB
7420{
7421 asection *s;
7422 struct elf32_arm_link_hash_table *hash_table;
7423 char *tmp_name;
7424 struct elf_link_hash_entry *myh;
7425 struct bfd_link_hash_entry *bh;
7426 bfd_vma val;
7427 struct _arm_elf_section_data *sec_data;
c7b8f16e 7428 elf32_vfp11_erratum_list *newerr;
906e58ca 7429
c7b8f16e 7430 hash_table = elf32_arm_hash_table (link_info);
c7b8f16e
JB
7431 BFD_ASSERT (hash_table != NULL);
7432 BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
906e58ca 7433
3d4d4302 7434 s = bfd_get_linker_section
c7b8f16e 7435 (hash_table->bfd_of_glue_owner, VFP11_ERRATUM_VENEER_SECTION_NAME);
906e58ca 7436
c7b8f16e 7437 sec_data = elf32_arm_section_data (s);
906e58ca 7438
c7b8f16e 7439 BFD_ASSERT (s != NULL);
906e58ca 7440
21d799b5 7441 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
99059e56 7442 (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
c7b8f16e 7443 BFD_ASSERT (tmp_name);
906e58ca 7444
c7b8f16e
JB
7445 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
7446 hash_table->num_vfp11_fixes);
906e58ca 7447
c7b8f16e 7448 myh = elf_link_hash_lookup
0a1b45a2 7449 (&(hash_table)->root, tmp_name, false, false, false);
906e58ca 7450
c7b8f16e 7451 BFD_ASSERT (myh == NULL);
906e58ca 7452
c7b8f16e
JB
7453 bh = NULL;
7454 val = hash_table->vfp11_erratum_glue_size;
7455 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
99059e56 7456 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
0a1b45a2 7457 NULL, true, false, &bh);
c7b8f16e
JB
7458
7459 myh = (struct elf_link_hash_entry *) bh;
7460 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7461 myh->forced_local = 1;
7462
7463 /* Link veneer back to calling location. */
c7e2358a 7464 sec_data->erratumcount += 1;
21d799b5
NC
7465 newerr = (elf32_vfp11_erratum_list *)
7466 bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
906e58ca 7467
c7b8f16e
JB
7468 newerr->type = VFP11_ERRATUM_ARM_VENEER;
7469 newerr->vma = -1;
7470 newerr->u.v.branch = branch;
7471 newerr->u.v.id = hash_table->num_vfp11_fixes;
7472 branch->u.b.veneer = newerr;
7473
7474 newerr->next = sec_data->erratumlist;
7475 sec_data->erratumlist = newerr;
7476
7477 /* A symbol for the return from the veneer. */
7478 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
7479 hash_table->num_vfp11_fixes);
7480
7481 myh = elf_link_hash_lookup
0a1b45a2 7482 (&(hash_table)->root, tmp_name, false, false, false);
906e58ca 7483
c7b8f16e
JB
7484 if (myh != NULL)
7485 abort ();
7486
7487 bh = NULL;
7488 val = offset + 4;
7489 _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
0a1b45a2 7490 branch_sec, val, NULL, true, false, &bh);
906e58ca 7491
c7b8f16e
JB
7492 myh = (struct elf_link_hash_entry *) bh;
7493 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7494 myh->forced_local = 1;
7495
7496 free (tmp_name);
906e58ca 7497
c7b8f16e
JB
7498 /* Generate a mapping symbol for the veneer section, and explicitly add an
7499 entry for that symbol to the code/data map for the section. */
7500 if (hash_table->vfp11_erratum_glue_size == 0)
7501 {
7502 bh = NULL;
7503 /* FIXME: Creates an ARM symbol. Thumb mode will need attention if it
99059e56 7504 ever requires this erratum fix. */
c7b8f16e
JB
7505 _bfd_generic_link_add_one_symbol (link_info,
7506 hash_table->bfd_of_glue_owner, "$a",
7507 BSF_LOCAL, s, 0, NULL,
0a1b45a2 7508 true, false, &bh);
c7b8f16e
JB
7509
7510 myh = (struct elf_link_hash_entry *) bh;
7511 myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7512 myh->forced_local = 1;
906e58ca 7513
c7b8f16e 7514 /* The elf32_arm_init_maps function only cares about symbols from input
99059e56
RM
7515 BFDs. We must make a note of this generated mapping symbol
7516 ourselves so that code byteswapping works properly in
7517 elf32_arm_write_section. */
c7b8f16e
JB
7518 elf32_arm_section_map_add (s, 'a', 0);
7519 }
906e58ca 7520
c7b8f16e
JB
7521 s->size += VFP11_ERRATUM_VENEER_SIZE;
7522 hash_table->vfp11_erratum_glue_size += VFP11_ERRATUM_VENEER_SIZE;
7523 hash_table->num_vfp11_fixes++;
906e58ca 7524
c7b8f16e
JB
7525 /* The offset of the veneer. */
7526 return val;
7527}
7528
a504d23a
LA
7529/* Record information about a STM32L4XX STM erratum veneer. Only THUMB-mode
7530 veneers need to be handled because used only in Cortex-M. */
7531
7532static bfd_vma
7533record_stm32l4xx_erratum_veneer (struct bfd_link_info *link_info,
7534 elf32_stm32l4xx_erratum_list *branch,
7535 bfd *branch_bfd,
7536 asection *branch_sec,
7537 unsigned int offset,
7538 bfd_size_type veneer_size)
7539{
7540 asection *s;
7541 struct elf32_arm_link_hash_table *hash_table;
7542 char *tmp_name;
7543 struct elf_link_hash_entry *myh;
7544 struct bfd_link_hash_entry *bh;
7545 bfd_vma val;
7546 struct _arm_elf_section_data *sec_data;
7547 elf32_stm32l4xx_erratum_list *newerr;
7548
7549 hash_table = elf32_arm_hash_table (link_info);
7550 BFD_ASSERT (hash_table != NULL);
7551 BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
7552
7553 s = bfd_get_linker_section
7554 (hash_table->bfd_of_glue_owner, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7555
7556 BFD_ASSERT (s != NULL);
7557
7558 sec_data = elf32_arm_section_data (s);
7559
7560 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
7561 (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
a504d23a
LA
7562 BFD_ASSERT (tmp_name);
7563
7564 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
7565 hash_table->num_stm32l4xx_fixes);
7566
7567 myh = elf_link_hash_lookup
0a1b45a2 7568 (&(hash_table)->root, tmp_name, false, false, false);
a504d23a
LA
7569
7570 BFD_ASSERT (myh == NULL);
7571
7572 bh = NULL;
7573 val = hash_table->stm32l4xx_erratum_glue_size;
7574 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
7575 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
0a1b45a2 7576 NULL, true, false, &bh);
a504d23a
LA
7577
7578 myh = (struct elf_link_hash_entry *) bh;
7579 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7580 myh->forced_local = 1;
7581
7582 /* Link veneer back to calling location. */
7583 sec_data->stm32l4xx_erratumcount += 1;
7584 newerr = (elf32_stm32l4xx_erratum_list *)
7585 bfd_zmalloc (sizeof (elf32_stm32l4xx_erratum_list));
7586
7587 newerr->type = STM32L4XX_ERRATUM_VENEER;
7588 newerr->vma = -1;
7589 newerr->u.v.branch = branch;
7590 newerr->u.v.id = hash_table->num_stm32l4xx_fixes;
7591 branch->u.b.veneer = newerr;
7592
7593 newerr->next = sec_data->stm32l4xx_erratumlist;
7594 sec_data->stm32l4xx_erratumlist = newerr;
7595
7596 /* A symbol for the return from the veneer. */
7597 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
7598 hash_table->num_stm32l4xx_fixes);
7599
7600 myh = elf_link_hash_lookup
0a1b45a2 7601 (&(hash_table)->root, tmp_name, false, false, false);
a504d23a
LA
7602
7603 if (myh != NULL)
7604 abort ();
7605
7606 bh = NULL;
7607 val = offset + 4;
7608 _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
0a1b45a2 7609 branch_sec, val, NULL, true, false, &bh);
a504d23a
LA
7610
7611 myh = (struct elf_link_hash_entry *) bh;
7612 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7613 myh->forced_local = 1;
7614
7615 free (tmp_name);
7616
7617 /* Generate a mapping symbol for the veneer section, and explicitly add an
7618 entry for that symbol to the code/data map for the section. */
7619 if (hash_table->stm32l4xx_erratum_glue_size == 0)
7620 {
7621 bh = NULL;
7622 /* Creates a THUMB symbol since there is no other choice. */
7623 _bfd_generic_link_add_one_symbol (link_info,
7624 hash_table->bfd_of_glue_owner, "$t",
7625 BSF_LOCAL, s, 0, NULL,
0a1b45a2 7626 true, false, &bh);
a504d23a
LA
7627
7628 myh = (struct elf_link_hash_entry *) bh;
7629 myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7630 myh->forced_local = 1;
7631
7632 /* The elf32_arm_init_maps function only cares about symbols from input
7633 BFDs. We must make a note of this generated mapping symbol
7634 ourselves so that code byteswapping works properly in
7635 elf32_arm_write_section. */
7636 elf32_arm_section_map_add (s, 't', 0);
7637 }
7638
7639 s->size += veneer_size;
7640 hash_table->stm32l4xx_erratum_glue_size += veneer_size;
7641 hash_table->num_stm32l4xx_fixes++;
7642
7643 /* The offset of the veneer. */
7644 return val;
7645}
7646
8029a119 7647#define ARM_GLUE_SECTION_FLAGS \
3e6b1042
DJ
7648 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_CODE \
7649 | SEC_READONLY | SEC_LINKER_CREATED)
8029a119
NC
7650
7651/* Create a fake section for use by the ARM backend of the linker. */
7652
0a1b45a2 7653static bool
8029a119
NC
7654arm_make_glue_section (bfd * abfd, const char * name)
7655{
7656 asection * sec;
7657
3d4d4302 7658 sec = bfd_get_linker_section (abfd, name);
8029a119
NC
7659 if (sec != NULL)
7660 /* Already made. */
0a1b45a2 7661 return true;
8029a119 7662
3d4d4302 7663 sec = bfd_make_section_anyway_with_flags (abfd, name, ARM_GLUE_SECTION_FLAGS);
8029a119
NC
7664
7665 if (sec == NULL
fd361982 7666 || !bfd_set_section_alignment (sec, 2))
0a1b45a2 7667 return false;
8029a119
NC
7668
7669 /* Set the gc mark to prevent the section from being removed by garbage
7670 collection, despite the fact that no relocs refer to this section. */
7671 sec->gc_mark = 1;
7672
0a1b45a2 7673 return true;
8029a119
NC
7674}
7675
1db37fe6
YG
7676/* Set size of .plt entries. This function is called from the
7677 linker scripts in ld/emultempl/{armelf}.em. */
7678
7679void
7680bfd_elf32_arm_use_long_plt (void)
7681{
0a1b45a2 7682 elf32_arm_use_long_plt_entry = true;
1db37fe6
YG
7683}
7684
8afb0e02
NC
7685/* Add the glue sections to ABFD. This function is called from the
7686 linker scripts in ld/emultempl/{armelf}.em. */
9b485d32 7687
0a1b45a2 7688bool
57e8b36a
NC
7689bfd_elf32_arm_add_glue_sections_to_bfd (bfd *abfd,
7690 struct bfd_link_info *info)
252b5132 7691{
a504d23a 7692 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
0a1b45a2 7693 bool dostm32l4xx = globals
a504d23a 7694 && globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE;
0a1b45a2 7695 bool addglue;
a504d23a 7696
8afb0e02
NC
7697 /* If we are only performing a partial
7698 link do not bother adding the glue. */
0e1862bb 7699 if (bfd_link_relocatable (info))
0a1b45a2 7700 return true;
252b5132 7701
a504d23a 7702 addglue = arm_make_glue_section (abfd, ARM2THUMB_GLUE_SECTION_NAME)
8029a119
NC
7703 && arm_make_glue_section (abfd, THUMB2ARM_GLUE_SECTION_NAME)
7704 && arm_make_glue_section (abfd, VFP11_ERRATUM_VENEER_SECTION_NAME)
7705 && arm_make_glue_section (abfd, ARM_BX_GLUE_SECTION_NAME);
a504d23a
LA
7706
7707 if (!dostm32l4xx)
7708 return addglue;
7709
7710 return addglue
7711 && arm_make_glue_section (abfd, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
8afb0e02
NC
7712}
7713
daa4adae
TP
7714/* Mark output sections of veneers needing a dedicated one with SEC_KEEP. This
7715 ensures they are not marked for deletion by
7716 strip_excluded_output_sections () when veneers are going to be created
7717 later. Not doing so would trigger assert on empty section size in
7718 lang_size_sections_1 (). */
7719
7720void
7721bfd_elf32_arm_keep_private_stub_output_sections (struct bfd_link_info *info)
7722{
7723 enum elf32_arm_stub_type stub_type;
7724
7725 /* If we are only performing a partial
7726 link do not bother adding the glue. */
7727 if (bfd_link_relocatable (info))
7728 return;
7729
7730 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7731 {
7732 asection *out_sec;
7733 const char *out_sec_name;
7734
7735 if (!arm_dedicated_stub_output_section_required (stub_type))
7736 continue;
7737
7738 out_sec_name = arm_dedicated_stub_output_section_name (stub_type);
7739 out_sec = bfd_get_section_by_name (info->output_bfd, out_sec_name);
7740 if (out_sec != NULL)
7741 out_sec->flags |= SEC_KEEP;
7742 }
7743}
7744
8afb0e02
NC
7745/* Select a BFD to be used to hold the sections used by the glue code.
7746 This function is called from the linker scripts in ld/emultempl/
8029a119 7747 {armelf/pe}.em. */
8afb0e02 7748
0a1b45a2 7749bool
57e8b36a 7750bfd_elf32_arm_get_bfd_for_interworking (bfd *abfd, struct bfd_link_info *info)
8afb0e02
NC
7751{
7752 struct elf32_arm_link_hash_table *globals;
7753
7754 /* If we are only performing a partial link
7755 do not bother getting a bfd to hold the glue. */
0e1862bb 7756 if (bfd_link_relocatable (info))
0a1b45a2 7757 return true;
8afb0e02 7758
b7693d02
DJ
7759 /* Make sure we don't attach the glue sections to a dynamic object. */
7760 BFD_ASSERT (!(abfd->flags & DYNAMIC));
7761
8afb0e02 7762 globals = elf32_arm_hash_table (info);
8afb0e02
NC
7763 BFD_ASSERT (globals != NULL);
7764
7765 if (globals->bfd_of_glue_owner != NULL)
0a1b45a2 7766 return true;
8afb0e02 7767
252b5132
RH
7768 /* Save the bfd for later use. */
7769 globals->bfd_of_glue_owner = abfd;
cedb70c5 7770
0a1b45a2 7771 return true;
252b5132
RH
7772}
7773
906e58ca
NC
7774static void
7775check_use_blx (struct elf32_arm_link_hash_table *globals)
39b41c9c 7776{
2de70689
MGD
7777 int cpu_arch;
7778
b38cadfb 7779 cpu_arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
2de70689
MGD
7780 Tag_CPU_arch);
7781
7782 if (globals->fix_arm1176)
7783 {
7784 if (cpu_arch == TAG_CPU_ARCH_V6T2 || cpu_arch > TAG_CPU_ARCH_V6K)
7785 globals->use_blx = 1;
7786 }
7787 else
7788 {
7789 if (cpu_arch > TAG_CPU_ARCH_V4T)
7790 globals->use_blx = 1;
7791 }
39b41c9c
PB
7792}
7793
0a1b45a2 7794bool
57e8b36a 7795bfd_elf32_arm_process_before_allocation (bfd *abfd,
d504ffc8 7796 struct bfd_link_info *link_info)
252b5132
RH
7797{
7798 Elf_Internal_Shdr *symtab_hdr;
6cdc0ccc 7799 Elf_Internal_Rela *internal_relocs = NULL;
252b5132
RH
7800 Elf_Internal_Rela *irel, *irelend;
7801 bfd_byte *contents = NULL;
252b5132
RH
7802
7803 asection *sec;
7804 struct elf32_arm_link_hash_table *globals;
7805
7806 /* If we are only performing a partial link do not bother
7807 to construct any glue. */
0e1862bb 7808 if (bfd_link_relocatable (link_info))
0a1b45a2 7809 return true;
252b5132 7810
39ce1a6a
NC
7811 /* Here we have a bfd that is to be included on the link. We have a
7812 hook to do reloc rummaging, before section sizes are nailed down. */
252b5132 7813 globals = elf32_arm_hash_table (link_info);
252b5132 7814 BFD_ASSERT (globals != NULL);
39ce1a6a
NC
7815
7816 check_use_blx (globals);
252b5132 7817
d504ffc8 7818 if (globals->byteswap_code && !bfd_big_endian (abfd))
e489d0ae 7819 {
90b6238f 7820 _bfd_error_handler (_("%pB: BE8 images only valid in big-endian mode"),
d003868e 7821 abfd);
0a1b45a2 7822 return false;
e489d0ae 7823 }
f21f3fe0 7824
39ce1a6a
NC
7825 /* PR 5398: If we have not decided to include any loadable sections in
7826 the output then we will not have a glue owner bfd. This is OK, it
7827 just means that there is nothing else for us to do here. */
7828 if (globals->bfd_of_glue_owner == NULL)
0a1b45a2 7829 return true;
39ce1a6a 7830
252b5132
RH
7831 /* Rummage around all the relocs and map the glue vectors. */
7832 sec = abfd->sections;
7833
7834 if (sec == NULL)
0a1b45a2 7835 return true;
252b5132
RH
7836
7837 for (; sec != NULL; sec = sec->next)
7838 {
7839 if (sec->reloc_count == 0)
7840 continue;
7841
2f475487
AM
7842 if ((sec->flags & SEC_EXCLUDE) != 0)
7843 continue;
7844
0ffa91dd 7845 symtab_hdr = & elf_symtab_hdr (abfd);
252b5132 7846
9b485d32 7847 /* Load the relocs. */
6cdc0ccc 7848 internal_relocs
0a1b45a2 7849 = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, false);
252b5132 7850
6cdc0ccc
AM
7851 if (internal_relocs == NULL)
7852 goto error_return;
252b5132 7853
6cdc0ccc
AM
7854 irelend = internal_relocs + sec->reloc_count;
7855 for (irel = internal_relocs; irel < irelend; irel++)
252b5132
RH
7856 {
7857 long r_type;
7858 unsigned long r_index;
252b5132
RH
7859
7860 struct elf_link_hash_entry *h;
7861
7862 r_type = ELF32_R_TYPE (irel->r_info);
7863 r_index = ELF32_R_SYM (irel->r_info);
7864
9b485d32 7865 /* These are the only relocation types we care about. */
ba96a88f 7866 if ( r_type != R_ARM_PC24
845b51d6 7867 && (r_type != R_ARM_V4BX || globals->fix_v4bx < 2))
252b5132
RH
7868 continue;
7869
7870 /* Get the section contents if we haven't done so already. */
7871 if (contents == NULL)
7872 {
7873 /* Get cached copy if it exists. */
7874 if (elf_section_data (sec)->this_hdr.contents != NULL)
7875 contents = elf_section_data (sec)->this_hdr.contents;
7876 else
7877 {
7878 /* Go get them off disk. */
57e8b36a 7879 if (! bfd_malloc_and_get_section (abfd, sec, &contents))
252b5132
RH
7880 goto error_return;
7881 }
7882 }
7883
845b51d6
PB
7884 if (r_type == R_ARM_V4BX)
7885 {
7886 int reg;
7887
7888 reg = bfd_get_32 (abfd, contents + irel->r_offset) & 0xf;
7889 record_arm_bx_glue (link_info, reg);
7890 continue;
7891 }
7892
a7c10850 7893 /* If the relocation is not against a symbol it cannot concern us. */
252b5132
RH
7894 h = NULL;
7895
9b485d32 7896 /* We don't care about local symbols. */
252b5132
RH
7897 if (r_index < symtab_hdr->sh_info)
7898 continue;
7899
9b485d32 7900 /* This is an external symbol. */
252b5132
RH
7901 r_index -= symtab_hdr->sh_info;
7902 h = (struct elf_link_hash_entry *)
7903 elf_sym_hashes (abfd)[r_index];
7904
7905 /* If the relocation is against a static symbol it must be within
7906 the current section and so cannot be a cross ARM/Thumb relocation. */
7907 if (h == NULL)
7908 continue;
7909
d504ffc8
DJ
7910 /* If the call will go through a PLT entry then we do not need
7911 glue. */
362d30a1 7912 if (globals->root.splt != NULL && h->plt.offset != (bfd_vma) -1)
b7693d02
DJ
7913 continue;
7914
252b5132
RH
7915 switch (r_type)
7916 {
7917 case R_ARM_PC24:
7918 /* This one is a call from arm code. We need to look up
99059e56
RM
7919 the target of the call. If it is a thumb target, we
7920 insert glue. */
39d911fc
TP
7921 if (ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
7922 == ST_BRANCH_TO_THUMB)
252b5132
RH
7923 record_arm_to_thumb_glue (link_info, h);
7924 break;
7925
252b5132 7926 default:
c6596c5e 7927 abort ();
252b5132
RH
7928 }
7929 }
6cdc0ccc 7930
c9594989 7931 if (elf_section_data (sec)->this_hdr.contents != contents)
6cdc0ccc
AM
7932 free (contents);
7933 contents = NULL;
7934
c9594989 7935 if (elf_section_data (sec)->relocs != internal_relocs)
6cdc0ccc
AM
7936 free (internal_relocs);
7937 internal_relocs = NULL;
252b5132
RH
7938 }
7939
0a1b45a2 7940 return true;
9a5aca8c 7941
dc1e8a47 7942 error_return:
c9594989 7943 if (elf_section_data (sec)->this_hdr.contents != contents)
6cdc0ccc 7944 free (contents);
c9594989 7945 if (elf_section_data (sec)->relocs != internal_relocs)
6cdc0ccc 7946 free (internal_relocs);
9a5aca8c 7947
0a1b45a2 7948 return false;
252b5132 7949}
7e392df6 7950#endif
252b5132 7951
eb043451 7952
c7b8f16e
JB
7953/* Initialise maps of ARM/Thumb/data for input BFDs. */
7954
7955void
7956bfd_elf32_arm_init_maps (bfd *abfd)
7957{
7958 Elf_Internal_Sym *isymbuf;
7959 Elf_Internal_Shdr *hdr;
7960 unsigned int i, localsyms;
7961
af1f4419
NC
7962 /* PR 7093: Make sure that we are dealing with an arm elf binary. */
7963 if (! is_arm_elf (abfd))
7964 return;
7965
c7b8f16e
JB
7966 if ((abfd->flags & DYNAMIC) != 0)
7967 return;
7968
0ffa91dd 7969 hdr = & elf_symtab_hdr (abfd);
c7b8f16e
JB
7970 localsyms = hdr->sh_info;
7971
7972 /* Obtain a buffer full of symbols for this BFD. The hdr->sh_info field
7973 should contain the number of local symbols, which should come before any
7974 global symbols. Mapping symbols are always local. */
7975 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, localsyms, 0, NULL, NULL,
7976 NULL);
7977
7978 /* No internal symbols read? Skip this BFD. */
7979 if (isymbuf == NULL)
7980 return;
7981
7982 for (i = 0; i < localsyms; i++)
7983 {
7984 Elf_Internal_Sym *isym = &isymbuf[i];
7985 asection *sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
7986 const char *name;
906e58ca 7987
c7b8f16e 7988 if (sec != NULL
99059e56
RM
7989 && ELF_ST_BIND (isym->st_info) == STB_LOCAL)
7990 {
7991 name = bfd_elf_string_from_elf_section (abfd,
7992 hdr->sh_link, isym->st_name);
906e58ca 7993
99059e56 7994 if (bfd_is_arm_special_symbol_name (name,
c7b8f16e 7995 BFD_ARM_SPECIAL_SYM_TYPE_MAP))
99059e56
RM
7996 elf32_arm_section_map_add (sec, name[1], isym->st_value);
7997 }
c7b8f16e
JB
7998 }
7999}
8000
8001
48229727
JB
8002/* Auto-select enabling of Cortex-A8 erratum fix if the user didn't explicitly
8003 say what they wanted. */
8004
8005void
8006bfd_elf32_arm_set_cortex_a8_fix (bfd *obfd, struct bfd_link_info *link_info)
8007{
8008 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8009 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8010
4dfe6ac6
NC
8011 if (globals == NULL)
8012 return;
8013
48229727
JB
8014 if (globals->fix_cortex_a8 == -1)
8015 {
8016 /* Turn on Cortex-A8 erratum workaround for ARMv7-A. */
8017 if (out_attr[Tag_CPU_arch].i == TAG_CPU_ARCH_V7
8018 && (out_attr[Tag_CPU_arch_profile].i == 'A'
8019 || out_attr[Tag_CPU_arch_profile].i == 0))
8020 globals->fix_cortex_a8 = 1;
8021 else
8022 globals->fix_cortex_a8 = 0;
8023 }
8024}
8025
8026
c7b8f16e
JB
8027void
8028bfd_elf32_arm_set_vfp11_fix (bfd *obfd, struct bfd_link_info *link_info)
8029{
8030 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
104d59d1 8031 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
906e58ca 8032
4dfe6ac6
NC
8033 if (globals == NULL)
8034 return;
c7b8f16e
JB
8035 /* We assume that ARMv7+ does not need the VFP11 denorm erratum fix. */
8036 if (out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V7)
8037 {
8038 switch (globals->vfp11_fix)
99059e56
RM
8039 {
8040 case BFD_ARM_VFP11_FIX_DEFAULT:
8041 case BFD_ARM_VFP11_FIX_NONE:
8042 globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8043 break;
8044
8045 default:
8046 /* Give a warning, but do as the user requests anyway. */
871b3ab2 8047 _bfd_error_handler (_("%pB: warning: selected VFP11 erratum "
99059e56
RM
8048 "workaround is not necessary for target architecture"), obfd);
8049 }
c7b8f16e
JB
8050 }
8051 else if (globals->vfp11_fix == BFD_ARM_VFP11_FIX_DEFAULT)
8052 /* For earlier architectures, we might need the workaround, but do not
8053 enable it by default. If users is running with broken hardware, they
8054 must enable the erratum fix explicitly. */
8055 globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8056}
8057
a504d23a
LA
8058void
8059bfd_elf32_arm_set_stm32l4xx_fix (bfd *obfd, struct bfd_link_info *link_info)
8060{
8061 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8062 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8063
8064 if (globals == NULL)
8065 return;
8066
8067 /* We assume only Cortex-M4 may require the fix. */
8068 if (out_attr[Tag_CPU_arch].i != TAG_CPU_ARCH_V7E_M
8069 || out_attr[Tag_CPU_arch_profile].i != 'M')
8070 {
8071 if (globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE)
8072 /* Give a warning, but do as the user requests anyway. */
4eca0228 8073 _bfd_error_handler
871b3ab2 8074 (_("%pB: warning: selected STM32L4XX erratum "
a504d23a
LA
8075 "workaround is not necessary for target architecture"), obfd);
8076 }
8077}
c7b8f16e 8078
906e58ca
NC
8079enum bfd_arm_vfp11_pipe
8080{
c7b8f16e
JB
8081 VFP11_FMAC,
8082 VFP11_LS,
8083 VFP11_DS,
8084 VFP11_BAD
8085};
8086
8087/* Return a VFP register number. This is encoded as RX:X for single-precision
8088 registers, or X:RX for double-precision registers, where RX is the group of
8089 four bits in the instruction encoding and X is the single extension bit.
8090 RX and X fields are specified using their lowest (starting) bit. The return
8091 value is:
8092
8093 0...31: single-precision registers s0...s31
8094 32...63: double-precision registers d0...d31.
906e58ca 8095
c7b8f16e
JB
8096 Although X should be zero for VFP11 (encoding d0...d15 only), we might
8097 encounter VFP3 instructions, so we allow the full range for DP registers. */
906e58ca 8098
c7b8f16e 8099static unsigned int
0a1b45a2 8100bfd_arm_vfp11_regno (unsigned int insn, bool is_double, unsigned int rx,
99059e56 8101 unsigned int x)
c7b8f16e
JB
8102{
8103 if (is_double)
8104 return (((insn >> rx) & 0xf) | (((insn >> x) & 1) << 4)) + 32;
8105 else
8106 return (((insn >> rx) & 0xf) << 1) | ((insn >> x) & 1);
8107}
8108
8109/* Set bits in *WMASK according to a register number REG as encoded by
8110 bfd_arm_vfp11_regno(). Ignore d16-d31. */
8111
8112static void
8113bfd_arm_vfp11_write_mask (unsigned int *wmask, unsigned int reg)
8114{
8115 if (reg < 32)
8116 *wmask |= 1 << reg;
8117 else if (reg < 48)
8118 *wmask |= 3 << ((reg - 32) * 2);
8119}
8120
8121/* Return TRUE if WMASK overwrites anything in REGS. */
8122
0a1b45a2 8123static bool
c7b8f16e
JB
8124bfd_arm_vfp11_antidependency (unsigned int wmask, int *regs, int numregs)
8125{
8126 int i;
906e58ca 8127
c7b8f16e
JB
8128 for (i = 0; i < numregs; i++)
8129 {
8130 unsigned int reg = regs[i];
8131
8132 if (reg < 32 && (wmask & (1 << reg)) != 0)
0a1b45a2 8133 return true;
906e58ca 8134
c7b8f16e
JB
8135 reg -= 32;
8136
8137 if (reg >= 16)
99059e56 8138 continue;
906e58ca 8139
c7b8f16e 8140 if ((wmask & (3 << (reg * 2))) != 0)
0a1b45a2 8141 return true;
c7b8f16e 8142 }
906e58ca 8143
0a1b45a2 8144 return false;
c7b8f16e
JB
8145}
8146
8147/* In this function, we're interested in two things: finding input registers
8148 for VFP data-processing instructions, and finding the set of registers which
8149 arbitrary VFP instructions may write to. We use a 32-bit unsigned int to
8150 hold the written set, so FLDM etc. are easy to deal with (we're only
8151 interested in 32 SP registers or 16 dp registers, due to the VFP version
8152 implemented by the chip in question). DP registers are marked by setting
8153 both SP registers in the write mask). */
8154
8155static enum bfd_arm_vfp11_pipe
8156bfd_arm_vfp11_insn_decode (unsigned int insn, unsigned int *destmask, int *regs,
99059e56 8157 int *numregs)
c7b8f16e 8158{
91d6fa6a 8159 enum bfd_arm_vfp11_pipe vpipe = VFP11_BAD;
0a1b45a2 8160 bool is_double = ((insn & 0xf00) == 0xb00) ? 1 : 0;
c7b8f16e
JB
8161
8162 if ((insn & 0x0f000e10) == 0x0e000a00) /* A data-processing insn. */
8163 {
8164 unsigned int pqrs;
8165 unsigned int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8166 unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
8167
8168 pqrs = ((insn & 0x00800000) >> 20)
99059e56
RM
8169 | ((insn & 0x00300000) >> 19)
8170 | ((insn & 0x00000040) >> 6);
c7b8f16e
JB
8171
8172 switch (pqrs)
99059e56
RM
8173 {
8174 case 0: /* fmac[sd]. */
8175 case 1: /* fnmac[sd]. */
8176 case 2: /* fmsc[sd]. */
8177 case 3: /* fnmsc[sd]. */
8178 vpipe = VFP11_FMAC;
8179 bfd_arm_vfp11_write_mask (destmask, fd);
8180 regs[0] = fd;
8181 regs[1] = bfd_arm_vfp11_regno (insn, is_double, 16, 7); /* Fn. */
8182 regs[2] = fm;
8183 *numregs = 3;
8184 break;
8185
8186 case 4: /* fmul[sd]. */
8187 case 5: /* fnmul[sd]. */
8188 case 6: /* fadd[sd]. */
8189 case 7: /* fsub[sd]. */
8190 vpipe = VFP11_FMAC;
8191 goto vfp_binop;
8192
8193 case 8: /* fdiv[sd]. */
8194 vpipe = VFP11_DS;
8195 vfp_binop:
8196 bfd_arm_vfp11_write_mask (destmask, fd);
8197 regs[0] = bfd_arm_vfp11_regno (insn, is_double, 16, 7); /* Fn. */
8198 regs[1] = fm;
8199 *numregs = 2;
8200 break;
8201
8202 case 15: /* extended opcode. */
8203 {
8204 unsigned int extn = ((insn >> 15) & 0x1e)
8205 | ((insn >> 7) & 1);
8206
8207 switch (extn)
8208 {
8209 case 0: /* fcpy[sd]. */
8210 case 1: /* fabs[sd]. */
8211 case 2: /* fneg[sd]. */
8212 case 8: /* fcmp[sd]. */
8213 case 9: /* fcmpe[sd]. */
8214 case 10: /* fcmpz[sd]. */
8215 case 11: /* fcmpez[sd]. */
8216 case 16: /* fuito[sd]. */
8217 case 17: /* fsito[sd]. */
8218 case 24: /* ftoui[sd]. */
8219 case 25: /* ftouiz[sd]. */
8220 case 26: /* ftosi[sd]. */
8221 case 27: /* ftosiz[sd]. */
8222 /* These instructions will not bounce due to underflow. */
8223 *numregs = 0;
8224 vpipe = VFP11_FMAC;
8225 break;
8226
8227 case 3: /* fsqrt[sd]. */
8228 /* fsqrt cannot underflow, but it can (perhaps) overwrite
8229 registers to cause the erratum in previous instructions. */
8230 bfd_arm_vfp11_write_mask (destmask, fd);
8231 vpipe = VFP11_DS;
8232 break;
8233
8234 case 15: /* fcvt{ds,sd}. */
8235 {
8236 int rnum = 0;
8237
8238 bfd_arm_vfp11_write_mask (destmask, fd);
c7b8f16e
JB
8239
8240 /* Only FCVTSD can underflow. */
99059e56
RM
8241 if ((insn & 0x100) != 0)
8242 regs[rnum++] = fm;
c7b8f16e 8243
99059e56 8244 *numregs = rnum;
c7b8f16e 8245
99059e56
RM
8246 vpipe = VFP11_FMAC;
8247 }
8248 break;
c7b8f16e 8249
99059e56
RM
8250 default:
8251 return VFP11_BAD;
8252 }
8253 }
8254 break;
c7b8f16e 8255
99059e56
RM
8256 default:
8257 return VFP11_BAD;
8258 }
c7b8f16e
JB
8259 }
8260 /* Two-register transfer. */
8261 else if ((insn & 0x0fe00ed0) == 0x0c400a10)
8262 {
8263 unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
906e58ca 8264
c7b8f16e
JB
8265 if ((insn & 0x100000) == 0)
8266 {
99059e56
RM
8267 if (is_double)
8268 bfd_arm_vfp11_write_mask (destmask, fm);
8269 else
8270 {
8271 bfd_arm_vfp11_write_mask (destmask, fm);
8272 bfd_arm_vfp11_write_mask (destmask, fm + 1);
8273 }
c7b8f16e
JB
8274 }
8275
91d6fa6a 8276 vpipe = VFP11_LS;
c7b8f16e
JB
8277 }
8278 else if ((insn & 0x0e100e00) == 0x0c100a00) /* A load insn. */
8279 {
8280 int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8281 unsigned int puw = ((insn >> 21) & 0x1) | (((insn >> 23) & 3) << 1);
906e58ca 8282
c7b8f16e 8283 switch (puw)
99059e56
RM
8284 {
8285 case 0: /* Two-reg transfer. We should catch these above. */
8286 abort ();
906e58ca 8287
99059e56
RM
8288 case 2: /* fldm[sdx]. */
8289 case 3:
8290 case 5:
8291 {
8292 unsigned int i, offset = insn & 0xff;
c7b8f16e 8293
99059e56
RM
8294 if (is_double)
8295 offset >>= 1;
c7b8f16e 8296
99059e56
RM
8297 for (i = fd; i < fd + offset; i++)
8298 bfd_arm_vfp11_write_mask (destmask, i);
8299 }
8300 break;
906e58ca 8301
99059e56
RM
8302 case 4: /* fld[sd]. */
8303 case 6:
8304 bfd_arm_vfp11_write_mask (destmask, fd);
8305 break;
906e58ca 8306
99059e56
RM
8307 default:
8308 return VFP11_BAD;
8309 }
c7b8f16e 8310
91d6fa6a 8311 vpipe = VFP11_LS;
c7b8f16e
JB
8312 }
8313 /* Single-register transfer. Note L==0. */
8314 else if ((insn & 0x0f100e10) == 0x0e000a10)
8315 {
8316 unsigned int opcode = (insn >> 21) & 7;
8317 unsigned int fn = bfd_arm_vfp11_regno (insn, is_double, 16, 7);
8318
8319 switch (opcode)
99059e56
RM
8320 {
8321 case 0: /* fmsr/fmdlr. */
8322 case 1: /* fmdhr. */
8323 /* Mark fmdhr and fmdlr as writing to the whole of the DP
8324 destination register. I don't know if this is exactly right,
8325 but it is the conservative choice. */
8326 bfd_arm_vfp11_write_mask (destmask, fn);
8327 break;
8328
8329 case 7: /* fmxr. */
8330 break;
8331 }
c7b8f16e 8332
91d6fa6a 8333 vpipe = VFP11_LS;
c7b8f16e
JB
8334 }
8335
91d6fa6a 8336 return vpipe;
c7b8f16e
JB
8337}
8338
8339
8340static int elf32_arm_compare_mapping (const void * a, const void * b);
8341
8342
8343/* Look for potentially-troublesome code sequences which might trigger the
8344 VFP11 denormal/antidependency erratum. See, e.g., the ARM1136 errata sheet
8345 (available from ARM) for details of the erratum. A short version is
8346 described in ld.texinfo. */
8347
0a1b45a2 8348bool
c7b8f16e
JB
8349bfd_elf32_arm_vfp11_erratum_scan (bfd *abfd, struct bfd_link_info *link_info)
8350{
8351 asection *sec;
8352 bfd_byte *contents = NULL;
8353 int state = 0;
8354 int regs[3], numregs = 0;
8355 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8356 int use_vector = (globals->vfp11_fix == BFD_ARM_VFP11_FIX_VECTOR);
906e58ca 8357
4dfe6ac6 8358 if (globals == NULL)
0a1b45a2 8359 return false;
4dfe6ac6 8360
c7b8f16e
JB
8361 /* We use a simple FSM to match troublesome VFP11 instruction sequences.
8362 The states transition as follows:
906e58ca 8363
c7b8f16e 8364 0 -> 1 (vector) or 0 -> 2 (scalar)
99059e56
RM
8365 A VFP FMAC-pipeline instruction has been seen. Fill
8366 regs[0]..regs[numregs-1] with its input operands. Remember this
8367 instruction in 'first_fmac'.
c7b8f16e
JB
8368
8369 1 -> 2
99059e56
RM
8370 Any instruction, except for a VFP instruction which overwrites
8371 regs[*].
906e58ca 8372
c7b8f16e
JB
8373 1 -> 3 [ -> 0 ] or
8374 2 -> 3 [ -> 0 ]
99059e56
RM
8375 A VFP instruction has been seen which overwrites any of regs[*].
8376 We must make a veneer! Reset state to 0 before examining next
8377 instruction.
906e58ca 8378
c7b8f16e 8379 2 -> 0
99059e56
RM
8380 If we fail to match anything in state 2, reset to state 0 and reset
8381 the instruction pointer to the instruction after 'first_fmac'.
c7b8f16e
JB
8382
8383 If the VFP11 vector mode is in use, there must be at least two unrelated
8384 instructions between anti-dependent VFP11 instructions to properly avoid
906e58ca 8385 triggering the erratum, hence the use of the extra state 1. */
c7b8f16e
JB
8386
8387 /* If we are only performing a partial link do not bother
8388 to construct any glue. */
0e1862bb 8389 if (bfd_link_relocatable (link_info))
0a1b45a2 8390 return true;
c7b8f16e 8391
0ffa91dd
NC
8392 /* Skip if this bfd does not correspond to an ELF image. */
8393 if (! is_arm_elf (abfd))
0a1b45a2 8394 return true;
906e58ca 8395
c7b8f16e
JB
8396 /* We should have chosen a fix type by the time we get here. */
8397 BFD_ASSERT (globals->vfp11_fix != BFD_ARM_VFP11_FIX_DEFAULT);
8398
8399 if (globals->vfp11_fix == BFD_ARM_VFP11_FIX_NONE)
0a1b45a2 8400 return true;
2e6030b9 8401
33a7ffc2
JM
8402 /* Skip this BFD if it corresponds to an executable or dynamic object. */
8403 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
0a1b45a2 8404 return true;
33a7ffc2 8405
c7b8f16e
JB
8406 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8407 {
8408 unsigned int i, span, first_fmac = 0, veneer_of_insn = 0;
8409 struct _arm_elf_section_data *sec_data;
8410
8411 /* If we don't have executable progbits, we're not interested in this
99059e56 8412 section. Also skip if section is to be excluded. */
c7b8f16e 8413 if (elf_section_type (sec) != SHT_PROGBITS
99059e56
RM
8414 || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8415 || (sec->flags & SEC_EXCLUDE) != 0
dbaa2011 8416 || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
33a7ffc2 8417 || sec->output_section == bfd_abs_section_ptr
99059e56
RM
8418 || strcmp (sec->name, VFP11_ERRATUM_VENEER_SECTION_NAME) == 0)
8419 continue;
c7b8f16e
JB
8420
8421 sec_data = elf32_arm_section_data (sec);
906e58ca 8422
c7b8f16e 8423 if (sec_data->mapcount == 0)
99059e56 8424 continue;
906e58ca 8425
c7b8f16e
JB
8426 if (elf_section_data (sec)->this_hdr.contents != NULL)
8427 contents = elf_section_data (sec)->this_hdr.contents;
8428 else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8429 goto error_return;
8430
8431 qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8432 elf32_arm_compare_mapping);
8433
8434 for (span = 0; span < sec_data->mapcount; span++)
99059e56
RM
8435 {
8436 unsigned int span_start = sec_data->map[span].vma;
8437 unsigned int span_end = (span == sec_data->mapcount - 1)
c7b8f16e 8438 ? sec->size : sec_data->map[span + 1].vma;
99059e56
RM
8439 char span_type = sec_data->map[span].type;
8440
8441 /* FIXME: Only ARM mode is supported at present. We may need to
8442 support Thumb-2 mode also at some point. */
8443 if (span_type != 'a')
8444 continue;
8445
8446 for (i = span_start; i < span_end;)
8447 {
8448 unsigned int next_i = i + 4;
8449 unsigned int insn = bfd_big_endian (abfd)
13c9c485
AM
8450 ? (((unsigned) contents[i] << 24)
8451 | (contents[i + 1] << 16)
8452 | (contents[i + 2] << 8)
8453 | contents[i + 3])
8454 : (((unsigned) contents[i + 3] << 24)
8455 | (contents[i + 2] << 16)
8456 | (contents[i + 1] << 8)
8457 | contents[i]);
99059e56
RM
8458 unsigned int writemask = 0;
8459 enum bfd_arm_vfp11_pipe vpipe;
8460
8461 switch (state)
8462 {
8463 case 0:
8464 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask, regs,
8465 &numregs);
8466 /* I'm assuming the VFP11 erratum can trigger with denorm
8467 operands on either the FMAC or the DS pipeline. This might
8468 lead to slightly overenthusiastic veneer insertion. */
8469 if (vpipe == VFP11_FMAC || vpipe == VFP11_DS)
8470 {
8471 state = use_vector ? 1 : 2;
8472 first_fmac = i;
8473 veneer_of_insn = insn;
8474 }
8475 break;
8476
8477 case 1:
8478 {
8479 int other_regs[3], other_numregs;
8480 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
c7b8f16e 8481 other_regs,
99059e56
RM
8482 &other_numregs);
8483 if (vpipe != VFP11_BAD
8484 && bfd_arm_vfp11_antidependency (writemask, regs,
c7b8f16e 8485 numregs))
99059e56
RM
8486 state = 3;
8487 else
8488 state = 2;
8489 }
8490 break;
8491
8492 case 2:
8493 {
8494 int other_regs[3], other_numregs;
8495 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
c7b8f16e 8496 other_regs,
99059e56
RM
8497 &other_numregs);
8498 if (vpipe != VFP11_BAD
8499 && bfd_arm_vfp11_antidependency (writemask, regs,
c7b8f16e 8500 numregs))
99059e56
RM
8501 state = 3;
8502 else
8503 {
8504 state = 0;
8505 next_i = first_fmac + 4;
8506 }
8507 }
8508 break;
8509
8510 case 3:
8511 abort (); /* Should be unreachable. */
8512 }
8513
8514 if (state == 3)
8515 {
8516 elf32_vfp11_erratum_list *newerr =(elf32_vfp11_erratum_list *)
8517 bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
8518
8519 elf32_arm_section_data (sec)->erratumcount += 1;
8520
8521 newerr->u.b.vfp_insn = veneer_of_insn;
8522
8523 switch (span_type)
8524 {
8525 case 'a':
8526 newerr->type = VFP11_ERRATUM_BRANCH_TO_ARM_VENEER;
8527 break;
8528
8529 default:
8530 abort ();
8531 }
8532
8533 record_vfp11_erratum_veneer (link_info, newerr, abfd, sec,
c7b8f16e
JB
8534 first_fmac);
8535
99059e56 8536 newerr->vma = -1;
c7b8f16e 8537
99059e56
RM
8538 newerr->next = sec_data->erratumlist;
8539 sec_data->erratumlist = newerr;
c7b8f16e 8540
99059e56
RM
8541 state = 0;
8542 }
c7b8f16e 8543
99059e56
RM
8544 i = next_i;
8545 }
8546 }
906e58ca 8547
c9594989 8548 if (elf_section_data (sec)->this_hdr.contents != contents)
99059e56 8549 free (contents);
c7b8f16e
JB
8550 contents = NULL;
8551 }
8552
0a1b45a2 8553 return true;
c7b8f16e 8554
dc1e8a47 8555 error_return:
c9594989 8556 if (elf_section_data (sec)->this_hdr.contents != contents)
c7b8f16e 8557 free (contents);
906e58ca 8558
0a1b45a2 8559 return false;
c7b8f16e
JB
8560}
8561
8562/* Find virtual-memory addresses for VFP11 erratum veneers and return locations
8563 after sections have been laid out, using specially-named symbols. */
8564
8565void
8566bfd_elf32_arm_vfp11_fix_veneer_locations (bfd *abfd,
8567 struct bfd_link_info *link_info)
8568{
8569 asection *sec;
8570 struct elf32_arm_link_hash_table *globals;
8571 char *tmp_name;
906e58ca 8572
0e1862bb 8573 if (bfd_link_relocatable (link_info))
c7b8f16e 8574 return;
2e6030b9
MS
8575
8576 /* Skip if this bfd does not correspond to an ELF image. */
0ffa91dd 8577 if (! is_arm_elf (abfd))
2e6030b9
MS
8578 return;
8579
c7b8f16e 8580 globals = elf32_arm_hash_table (link_info);
4dfe6ac6
NC
8581 if (globals == NULL)
8582 return;
906e58ca 8583
21d799b5 8584 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
99059e56 8585 (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
7a0fb7be 8586 BFD_ASSERT (tmp_name);
c7b8f16e
JB
8587
8588 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8589 {
8590 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8591 elf32_vfp11_erratum_list *errnode = sec_data->erratumlist;
906e58ca 8592
c7b8f16e 8593 for (; errnode != NULL; errnode = errnode->next)
99059e56
RM
8594 {
8595 struct elf_link_hash_entry *myh;
8596 bfd_vma vma;
8597
8598 switch (errnode->type)
8599 {
8600 case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
8601 case VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER:
8602 /* Find veneer symbol. */
8603 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
c7b8f16e
JB
8604 errnode->u.b.veneer->u.v.id);
8605
99059e56 8606 myh = elf_link_hash_lookup
0a1b45a2 8607 (&(globals)->root, tmp_name, false, false, true);
c7b8f16e 8608
a504d23a 8609 if (myh == NULL)
90b6238f
AM
8610 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8611 abfd, "VFP11", tmp_name);
a504d23a
LA
8612
8613 vma = myh->root.u.def.section->output_section->vma
8614 + myh->root.u.def.section->output_offset
8615 + myh->root.u.def.value;
8616
8617 errnode->u.b.veneer->vma = vma;
8618 break;
8619
8620 case VFP11_ERRATUM_ARM_VENEER:
8621 case VFP11_ERRATUM_THUMB_VENEER:
8622 /* Find return location. */
8623 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
8624 errnode->u.v.id);
8625
8626 myh = elf_link_hash_lookup
0a1b45a2 8627 (&(globals)->root, tmp_name, false, false, true);
a504d23a
LA
8628
8629 if (myh == NULL)
90b6238f
AM
8630 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8631 abfd, "VFP11", tmp_name);
a504d23a
LA
8632
8633 vma = myh->root.u.def.section->output_section->vma
8634 + myh->root.u.def.section->output_offset
8635 + myh->root.u.def.value;
8636
8637 errnode->u.v.branch->vma = vma;
8638 break;
8639
8640 default:
8641 abort ();
8642 }
8643 }
8644 }
8645
8646 free (tmp_name);
8647}
8648
8649/* Find virtual-memory addresses for STM32L4XX erratum veneers and
8650 return locations after sections have been laid out, using
8651 specially-named symbols. */
8652
8653void
8654bfd_elf32_arm_stm32l4xx_fix_veneer_locations (bfd *abfd,
8655 struct bfd_link_info *link_info)
8656{
8657 asection *sec;
8658 struct elf32_arm_link_hash_table *globals;
8659 char *tmp_name;
8660
8661 if (bfd_link_relocatable (link_info))
8662 return;
8663
8664 /* Skip if this bfd does not correspond to an ELF image. */
8665 if (! is_arm_elf (abfd))
8666 return;
8667
8668 globals = elf32_arm_hash_table (link_info);
8669 if (globals == NULL)
8670 return;
8671
8672 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
8673 (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
7a0fb7be 8674 BFD_ASSERT (tmp_name);
a504d23a
LA
8675
8676 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8677 {
8678 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8679 elf32_stm32l4xx_erratum_list *errnode = sec_data->stm32l4xx_erratumlist;
8680
8681 for (; errnode != NULL; errnode = errnode->next)
8682 {
8683 struct elf_link_hash_entry *myh;
8684 bfd_vma vma;
8685
8686 switch (errnode->type)
8687 {
8688 case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
8689 /* Find veneer symbol. */
8690 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
8691 errnode->u.b.veneer->u.v.id);
8692
8693 myh = elf_link_hash_lookup
0a1b45a2 8694 (&(globals)->root, tmp_name, false, false, true);
a504d23a
LA
8695
8696 if (myh == NULL)
90b6238f
AM
8697 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8698 abfd, "STM32L4XX", tmp_name);
a504d23a
LA
8699
8700 vma = myh->root.u.def.section->output_section->vma
8701 + myh->root.u.def.section->output_offset
8702 + myh->root.u.def.value;
8703
8704 errnode->u.b.veneer->vma = vma;
8705 break;
8706
8707 case STM32L4XX_ERRATUM_VENEER:
8708 /* Find return location. */
8709 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
8710 errnode->u.v.id);
8711
8712 myh = elf_link_hash_lookup
0a1b45a2 8713 (&(globals)->root, tmp_name, false, false, true);
a504d23a
LA
8714
8715 if (myh == NULL)
90b6238f
AM
8716 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8717 abfd, "STM32L4XX", tmp_name);
a504d23a
LA
8718
8719 vma = myh->root.u.def.section->output_section->vma
8720 + myh->root.u.def.section->output_offset
8721 + myh->root.u.def.value;
8722
8723 errnode->u.v.branch->vma = vma;
8724 break;
8725
8726 default:
8727 abort ();
8728 }
8729 }
8730 }
8731
8732 free (tmp_name);
8733}
8734
0a1b45a2 8735static inline bool
a504d23a
LA
8736is_thumb2_ldmia (const insn32 insn)
8737{
8738 /* Encoding T2: LDM<c>.W <Rn>{!},<registers>
8739 1110 - 1000 - 10W1 - rrrr - PM (0) l - llll - llll - llll. */
8740 return (insn & 0xffd02000) == 0xe8900000;
8741}
8742
0a1b45a2 8743static inline bool
a504d23a
LA
8744is_thumb2_ldmdb (const insn32 insn)
8745{
8746 /* Encoding T1: LDMDB<c> <Rn>{!},<registers>
8747 1110 - 1001 - 00W1 - rrrr - PM (0) l - llll - llll - llll. */
8748 return (insn & 0xffd02000) == 0xe9100000;
8749}
8750
0a1b45a2 8751static inline bool
a504d23a
LA
8752is_thumb2_vldm (const insn32 insn)
8753{
8754 /* A6.5 Extension register load or store instruction
8755 A7.7.229
9239bbd3
CM
8756 We look for SP 32-bit and DP 64-bit registers.
8757 Encoding T1 VLDM{mode}<c> <Rn>{!}, <list>
8758 <list> is consecutive 64-bit registers
8759 1110 - 110P - UDW1 - rrrr - vvvv - 1011 - iiii - iiii
a504d23a
LA
8760 Encoding T2 VLDM{mode}<c> <Rn>{!}, <list>
8761 <list> is consecutive 32-bit registers
8762 1110 - 110P - UDW1 - rrrr - vvvv - 1010 - iiii - iiii
8763 if P==0 && U==1 && W==1 && Rn=1101 VPOP
8764 if PUW=010 || PUW=011 || PUW=101 VLDM. */
8765 return
9239bbd3
CM
8766 (((insn & 0xfe100f00) == 0xec100b00) ||
8767 ((insn & 0xfe100f00) == 0xec100a00))
a504d23a
LA
8768 && /* (IA without !). */
8769 (((((insn << 7) >> 28) & 0xd) == 0x4)
9239bbd3 8770 /* (IA with !), includes VPOP (when reg number is SP). */
a504d23a
LA
8771 || ((((insn << 7) >> 28) & 0xd) == 0x5)
8772 /* (DB with !). */
8773 || ((((insn << 7) >> 28) & 0xd) == 0x9));
8774}
8775
8776/* STM STM32L4XX erratum : This function assumes that it receives an LDM or
8777 VLDM opcode and:
8778 - computes the number and the mode of memory accesses
8779 - decides if the replacement should be done:
8780 . replaces only if > 8-word accesses
8781 . or (testing purposes only) replaces all accesses. */
8782
0a1b45a2 8783static bool
a504d23a
LA
8784stm32l4xx_need_create_replacing_stub (const insn32 insn,
8785 bfd_arm_stm32l4xx_fix stm32l4xx_fix)
8786{
9239bbd3 8787 int nb_words = 0;
a504d23a
LA
8788
8789 /* The field encoding the register list is the same for both LDMIA
8790 and LDMDB encodings. */
8791 if (is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn))
b25e998d 8792 nb_words = elf32_arm_popcount (insn & 0x0000ffff);
a504d23a 8793 else if (is_thumb2_vldm (insn))
9239bbd3 8794 nb_words = (insn & 0xff);
a504d23a
LA
8795
8796 /* DEFAULT mode accounts for the real bug condition situation,
8797 ALL mode inserts stubs for each LDM/VLDM instruction (testing). */
63b4cc53
AM
8798 return (stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_DEFAULT
8799 ? nb_words > 8
8800 : stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_ALL);
a504d23a
LA
8801}
8802
8803/* Look for potentially-troublesome code sequences which might trigger
8804 the STM STM32L4XX erratum. */
8805
0a1b45a2 8806bool
a504d23a
LA
8807bfd_elf32_arm_stm32l4xx_erratum_scan (bfd *abfd,
8808 struct bfd_link_info *link_info)
8809{
8810 asection *sec;
8811 bfd_byte *contents = NULL;
8812 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8813
8814 if (globals == NULL)
0a1b45a2 8815 return false;
a504d23a
LA
8816
8817 /* If we are only performing a partial link do not bother
8818 to construct any glue. */
8819 if (bfd_link_relocatable (link_info))
0a1b45a2 8820 return true;
a504d23a
LA
8821
8822 /* Skip if this bfd does not correspond to an ELF image. */
8823 if (! is_arm_elf (abfd))
0a1b45a2 8824 return true;
a504d23a
LA
8825
8826 if (globals->stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_NONE)
0a1b45a2 8827 return true;
a504d23a
LA
8828
8829 /* Skip this BFD if it corresponds to an executable or dynamic object. */
8830 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
0a1b45a2 8831 return true;
a504d23a
LA
8832
8833 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8834 {
8835 unsigned int i, span;
8836 struct _arm_elf_section_data *sec_data;
8837
8838 /* If we don't have executable progbits, we're not interested in this
8839 section. Also skip if section is to be excluded. */
8840 if (elf_section_type (sec) != SHT_PROGBITS
8841 || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8842 || (sec->flags & SEC_EXCLUDE) != 0
8843 || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8844 || sec->output_section == bfd_abs_section_ptr
8845 || strcmp (sec->name, STM32L4XX_ERRATUM_VENEER_SECTION_NAME) == 0)
8846 continue;
8847
8848 sec_data = elf32_arm_section_data (sec);
c7b8f16e 8849
a504d23a
LA
8850 if (sec_data->mapcount == 0)
8851 continue;
c7b8f16e 8852
a504d23a
LA
8853 if (elf_section_data (sec)->this_hdr.contents != NULL)
8854 contents = elf_section_data (sec)->this_hdr.contents;
8855 else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8856 goto error_return;
c7b8f16e 8857
a504d23a
LA
8858 qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8859 elf32_arm_compare_mapping);
c7b8f16e 8860
a504d23a
LA
8861 for (span = 0; span < sec_data->mapcount; span++)
8862 {
8863 unsigned int span_start = sec_data->map[span].vma;
8864 unsigned int span_end = (span == sec_data->mapcount - 1)
8865 ? sec->size : sec_data->map[span + 1].vma;
8866 char span_type = sec_data->map[span].type;
8867 int itblock_current_pos = 0;
c7b8f16e 8868
a504d23a
LA
8869 /* Only Thumb2 mode need be supported with this CM4 specific
8870 code, we should not encounter any arm mode eg span_type
8871 != 'a'. */
8872 if (span_type != 't')
8873 continue;
c7b8f16e 8874
a504d23a
LA
8875 for (i = span_start; i < span_end;)
8876 {
8877 unsigned int insn = bfd_get_16 (abfd, &contents[i]);
0a1b45a2
AM
8878 bool insn_32bit = false;
8879 bool is_ldm = false;
8880 bool is_vldm = false;
8881 bool is_not_last_in_it_block = false;
a504d23a
LA
8882
8883 /* The first 16-bits of all 32-bit thumb2 instructions start
8884 with opcode[15..13]=0b111 and the encoded op1 can be anything
8885 except opcode[12..11]!=0b00.
8886 See 32-bit Thumb instruction encoding. */
8887 if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
0a1b45a2 8888 insn_32bit = true;
c7b8f16e 8889
a504d23a
LA
8890 /* Compute the predicate that tells if the instruction
8891 is concerned by the IT block
8892 - Creates an error if there is a ldm that is not
8893 last in the IT block thus cannot be replaced
8894 - Otherwise we can create a branch at the end of the
8895 IT block, it will be controlled naturally by IT
8896 with the proper pseudo-predicate
8897 - So the only interesting predicate is the one that
8898 tells that we are not on the last item of an IT
8899 block. */
8900 if (itblock_current_pos != 0)
8901 is_not_last_in_it_block = !!--itblock_current_pos;
906e58ca 8902
a504d23a
LA
8903 if (insn_32bit)
8904 {
8905 /* Load the rest of the insn (in manual-friendly order). */
8906 insn = (insn << 16) | bfd_get_16 (abfd, &contents[i + 2]);
8907 is_ldm = is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn);
8908 is_vldm = is_thumb2_vldm (insn);
8909
8910 /* Veneers are created for (v)ldm depending on
8911 option flags and memory accesses conditions; but
8912 if the instruction is not the last instruction of
8913 an IT block, we cannot create a jump there, so we
8914 bail out. */
5025eb7c
AO
8915 if ((is_ldm || is_vldm)
8916 && stm32l4xx_need_create_replacing_stub
a504d23a
LA
8917 (insn, globals->stm32l4xx_fix))
8918 {
8919 if (is_not_last_in_it_block)
8920 {
4eca0228 8921 _bfd_error_handler
695344c0 8922 /* xgettext:c-format */
871b3ab2 8923 (_("%pB(%pA+%#x): error: multiple load detected"
90b6238f
AM
8924 " in non-last IT block instruction:"
8925 " STM32L4XX veneer cannot be generated; "
8926 "use gcc option -mrestrict-it to generate"
8927 " only one instruction per IT block"),
d42c267e 8928 abfd, sec, i);
a504d23a
LA
8929 }
8930 else
8931 {
8932 elf32_stm32l4xx_erratum_list *newerr =
8933 (elf32_stm32l4xx_erratum_list *)
8934 bfd_zmalloc
8935 (sizeof (elf32_stm32l4xx_erratum_list));
8936
8937 elf32_arm_section_data (sec)
8938 ->stm32l4xx_erratumcount += 1;
8939 newerr->u.b.insn = insn;
8940 /* We create only thumb branches. */
8941 newerr->type =
8942 STM32L4XX_ERRATUM_BRANCH_TO_VENEER;
8943 record_stm32l4xx_erratum_veneer
8944 (link_info, newerr, abfd, sec,
8945 i,
8946 is_ldm ?
8947 STM32L4XX_ERRATUM_LDM_VENEER_SIZE:
8948 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
8949 newerr->vma = -1;
8950 newerr->next = sec_data->stm32l4xx_erratumlist;
8951 sec_data->stm32l4xx_erratumlist = newerr;
8952 }
8953 }
8954 }
8955 else
8956 {
8957 /* A7.7.37 IT p208
8958 IT blocks are only encoded in T1
8959 Encoding T1: IT{x{y{z}}} <firstcond>
8960 1 0 1 1 - 1 1 1 1 - firstcond - mask
8961 if mask = '0000' then see 'related encodings'
8962 We don't deal with UNPREDICTABLE, just ignore these.
8963 There can be no nested IT blocks so an IT block
8964 is naturally a new one for which it is worth
8965 computing its size. */
0a1b45a2 8966 bool is_newitblock = ((insn & 0xff00) == 0xbf00)
5025eb7c 8967 && ((insn & 0x000f) != 0x0000);
a504d23a
LA
8968 /* If we have a new IT block we compute its size. */
8969 if (is_newitblock)
8970 {
8971 /* Compute the number of instructions controlled
8972 by the IT block, it will be used to decide
8973 whether we are inside an IT block or not. */
8974 unsigned int mask = insn & 0x000f;
8975 itblock_current_pos = 4 - ctz (mask);
8976 }
8977 }
8978
8979 i += insn_32bit ? 4 : 2;
99059e56
RM
8980 }
8981 }
a504d23a 8982
c9594989 8983 if (elf_section_data (sec)->this_hdr.contents != contents)
a504d23a
LA
8984 free (contents);
8985 contents = NULL;
c7b8f16e 8986 }
906e58ca 8987
0a1b45a2 8988 return true;
a504d23a 8989
dc1e8a47 8990 error_return:
c9594989 8991 if (elf_section_data (sec)->this_hdr.contents != contents)
a504d23a 8992 free (contents);
c7b8f16e 8993
0a1b45a2 8994 return false;
a504d23a 8995}
c7b8f16e 8996
eb043451
PB
8997/* Set target relocation values needed during linking. */
8998
8999void
68c39892 9000bfd_elf32_arm_set_target_params (struct bfd *output_bfd,
bf21ed78 9001 struct bfd_link_info *link_info,
68c39892 9002 struct elf32_arm_params *params)
eb043451
PB
9003{
9004 struct elf32_arm_link_hash_table *globals;
9005
9006 globals = elf32_arm_hash_table (link_info);
4dfe6ac6
NC
9007 if (globals == NULL)
9008 return;
eb043451 9009
68c39892 9010 globals->target1_is_rel = params->target1_is_rel;
29e9b073
CL
9011 if (globals->fdpic_p)
9012 globals->target2_reloc = R_ARM_GOT32;
9013 else if (strcmp (params->target2_type, "rel") == 0)
eb043451 9014 globals->target2_reloc = R_ARM_REL32;
68c39892 9015 else if (strcmp (params->target2_type, "abs") == 0)
eeac373a 9016 globals->target2_reloc = R_ARM_ABS32;
68c39892 9017 else if (strcmp (params->target2_type, "got-rel") == 0)
eb043451
PB
9018 globals->target2_reloc = R_ARM_GOT_PREL;
9019 else
9020 {
90b6238f 9021 _bfd_error_handler (_("invalid TARGET2 relocation type '%s'"),
68c39892 9022 params->target2_type);
eb043451 9023 }
68c39892
TP
9024 globals->fix_v4bx = params->fix_v4bx;
9025 globals->use_blx |= params->use_blx;
9026 globals->vfp11_fix = params->vfp11_denorm_fix;
9027 globals->stm32l4xx_fix = params->stm32l4xx_fix;
e8b09b87
CL
9028 if (globals->fdpic_p)
9029 globals->pic_veneer = 1;
9030 else
9031 globals->pic_veneer = params->pic_veneer;
68c39892
TP
9032 globals->fix_cortex_a8 = params->fix_cortex_a8;
9033 globals->fix_arm1176 = params->fix_arm1176;
9034 globals->cmse_implib = params->cmse_implib;
9035 globals->in_implib_bfd = params->in_implib_bfd;
bf21ed78 9036
0ffa91dd 9037 BFD_ASSERT (is_arm_elf (output_bfd));
68c39892
TP
9038 elf_arm_tdata (output_bfd)->no_enum_size_warning
9039 = params->no_enum_size_warning;
9040 elf_arm_tdata (output_bfd)->no_wchar_size_warning
9041 = params->no_wchar_size_warning;
eb043451 9042}
eb043451 9043
12a0a0fd 9044/* Replace the target offset of a Thumb bl or b.w instruction. */
252b5132 9045
12a0a0fd
PB
9046static void
9047insert_thumb_branch (bfd *abfd, long int offset, bfd_byte *insn)
9048{
9049 bfd_vma upper;
9050 bfd_vma lower;
9051 int reloc_sign;
9052
9053 BFD_ASSERT ((offset & 1) == 0);
9054
9055 upper = bfd_get_16 (abfd, insn);
9056 lower = bfd_get_16 (abfd, insn + 2);
9057 reloc_sign = (offset < 0) ? 1 : 0;
9058 upper = (upper & ~(bfd_vma) 0x7ff)
9059 | ((offset >> 12) & 0x3ff)
9060 | (reloc_sign << 10);
906e58ca 9061 lower = (lower & ~(bfd_vma) 0x2fff)
12a0a0fd
PB
9062 | (((!((offset >> 23) & 1)) ^ reloc_sign) << 13)
9063 | (((!((offset >> 22) & 1)) ^ reloc_sign) << 11)
9064 | ((offset >> 1) & 0x7ff);
9065 bfd_put_16 (abfd, upper, insn);
9066 bfd_put_16 (abfd, lower, insn + 2);
252b5132
RH
9067}
9068
9b485d32
NC
9069/* Thumb code calling an ARM function. */
9070
252b5132 9071static int
57e8b36a 9072elf32_thumb_to_arm_stub (struct bfd_link_info * info,
07d6d2b8
AM
9073 const char * name,
9074 bfd * input_bfd,
9075 bfd * output_bfd,
9076 asection * input_section,
9077 bfd_byte * hit_data,
9078 asection * sym_sec,
9079 bfd_vma offset,
9080 bfd_signed_vma addend,
9081 bfd_vma val,
f2a9dd69 9082 char **error_message)
252b5132 9083{
bcbdc74c 9084 asection * s = 0;
dc810e39 9085 bfd_vma my_offset;
252b5132 9086 long int ret_offset;
bcbdc74c
NC
9087 struct elf_link_hash_entry * myh;
9088 struct elf32_arm_link_hash_table * globals;
252b5132 9089
f2a9dd69 9090 myh = find_thumb_glue (info, name, error_message);
252b5132 9091 if (myh == NULL)
0a1b45a2 9092 return false;
252b5132
RH
9093
9094 globals = elf32_arm_hash_table (info);
252b5132
RH
9095 BFD_ASSERT (globals != NULL);
9096 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9097
9098 my_offset = myh->root.u.def.value;
9099
3d4d4302
AM
9100 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9101 THUMB2ARM_GLUE_SECTION_NAME);
252b5132
RH
9102
9103 BFD_ASSERT (s != NULL);
9104 BFD_ASSERT (s->contents != NULL);
9105 BFD_ASSERT (s->output_section != NULL);
9106
9107 if ((my_offset & 0x01) == 0x01)
9108 {
9109 if (sym_sec != NULL
9110 && sym_sec->owner != NULL
9111 && !INTERWORK_FLAG (sym_sec->owner))
9112 {
4eca0228 9113 _bfd_error_handler
90b6238f
AM
9114 (_("%pB(%s): warning: interworking not enabled;"
9115 " first occurrence: %pB: %s call to %s"),
9116 sym_sec->owner, name, input_bfd, "Thumb", "ARM");
252b5132 9117
0a1b45a2 9118 return false;
252b5132
RH
9119 }
9120
9121 --my_offset;
9122 myh->root.u.def.value = my_offset;
9123
52ab56c2
PB
9124 put_thumb_insn (globals, output_bfd, (bfd_vma) t2a1_bx_pc_insn,
9125 s->contents + my_offset);
252b5132 9126
52ab56c2
PB
9127 put_thumb_insn (globals, output_bfd, (bfd_vma) t2a2_noop_insn,
9128 s->contents + my_offset + 2);
252b5132
RH
9129
9130 ret_offset =
9b485d32
NC
9131 /* Address of destination of the stub. */
9132 ((bfd_signed_vma) val)
252b5132 9133 - ((bfd_signed_vma)
57e8b36a
NC
9134 /* Offset from the start of the current section
9135 to the start of the stubs. */
9b485d32
NC
9136 (s->output_offset
9137 /* Offset of the start of this stub from the start of the stubs. */
9138 + my_offset
9139 /* Address of the start of the current section. */
9140 + s->output_section->vma)
9141 /* The branch instruction is 4 bytes into the stub. */
9142 + 4
9143 /* ARM branches work from the pc of the instruction + 8. */
9144 + 8);
252b5132 9145
52ab56c2
PB
9146 put_arm_insn (globals, output_bfd,
9147 (bfd_vma) t2a3_b_insn | ((ret_offset >> 2) & 0x00FFFFFF),
9148 s->contents + my_offset + 4);
252b5132
RH
9149 }
9150
9151 BFD_ASSERT (my_offset <= globals->thumb_glue_size);
9152
427bfd90
NC
9153 /* Now go back and fix up the original BL insn to point to here. */
9154 ret_offset =
9155 /* Address of where the stub is located. */
9156 (s->output_section->vma + s->output_offset + my_offset)
9157 /* Address of where the BL is located. */
57e8b36a
NC
9158 - (input_section->output_section->vma + input_section->output_offset
9159 + offset)
427bfd90
NC
9160 /* Addend in the relocation. */
9161 - addend
9162 /* Biassing for PC-relative addressing. */
9163 - 8;
252b5132 9164
12a0a0fd 9165 insert_thumb_branch (input_bfd, ret_offset, hit_data - input_section->vma);
252b5132 9166
0a1b45a2 9167 return true;
252b5132
RH
9168}
9169
a4fd1a8e 9170/* Populate an Arm to Thumb stub. Returns the stub symbol. */
9b485d32 9171
a4fd1a8e
PB
9172static struct elf_link_hash_entry *
9173elf32_arm_create_thumb_stub (struct bfd_link_info * info,
07d6d2b8
AM
9174 const char * name,
9175 bfd * input_bfd,
9176 bfd * output_bfd,
9177 asection * sym_sec,
9178 bfd_vma val,
9179 asection * s,
9180 char ** error_message)
252b5132 9181{
dc810e39 9182 bfd_vma my_offset;
252b5132 9183 long int ret_offset;
bcbdc74c
NC
9184 struct elf_link_hash_entry * myh;
9185 struct elf32_arm_link_hash_table * globals;
252b5132 9186
f2a9dd69 9187 myh = find_arm_glue (info, name, error_message);
252b5132 9188 if (myh == NULL)
a4fd1a8e 9189 return NULL;
252b5132
RH
9190
9191 globals = elf32_arm_hash_table (info);
252b5132
RH
9192 BFD_ASSERT (globals != NULL);
9193 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9194
9195 my_offset = myh->root.u.def.value;
252b5132
RH
9196
9197 if ((my_offset & 0x01) == 0x01)
9198 {
9199 if (sym_sec != NULL
9200 && sym_sec->owner != NULL
9201 && !INTERWORK_FLAG (sym_sec->owner))
9202 {
4eca0228 9203 _bfd_error_handler
90b6238f
AM
9204 (_("%pB(%s): warning: interworking not enabled;"
9205 " first occurrence: %pB: %s call to %s"),
9206 sym_sec->owner, name, input_bfd, "ARM", "Thumb");
252b5132 9207 }
9b485d32 9208
252b5132
RH
9209 --my_offset;
9210 myh->root.u.def.value = my_offset;
9211
0e1862bb
L
9212 if (bfd_link_pic (info)
9213 || globals->root.is_relocatable_executable
27e55c4d 9214 || globals->pic_veneer)
8f6277f5
PB
9215 {
9216 /* For relocatable objects we can't use absolute addresses,
9217 so construct the address from a relative offset. */
9218 /* TODO: If the offset is small it's probably worth
9219 constructing the address with adds. */
52ab56c2
PB
9220 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1p_ldr_insn,
9221 s->contents + my_offset);
9222 put_arm_insn (globals, output_bfd, (bfd_vma) a2t2p_add_pc_insn,
9223 s->contents + my_offset + 4);
9224 put_arm_insn (globals, output_bfd, (bfd_vma) a2t3p_bx_r12_insn,
9225 s->contents + my_offset + 8);
8f6277f5
PB
9226 /* Adjust the offset by 4 for the position of the add,
9227 and 8 for the pipeline offset. */
9228 ret_offset = (val - (s->output_offset
9229 + s->output_section->vma
9230 + my_offset + 12))
9231 | 1;
9232 bfd_put_32 (output_bfd, ret_offset,
9233 s->contents + my_offset + 12);
9234 }
26079076
PB
9235 else if (globals->use_blx)
9236 {
9237 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1v5_ldr_insn,
9238 s->contents + my_offset);
9239
9240 /* It's a thumb address. Add the low order bit. */
9241 bfd_put_32 (output_bfd, val | a2t2v5_func_addr_insn,
9242 s->contents + my_offset + 4);
9243 }
8f6277f5
PB
9244 else
9245 {
52ab56c2
PB
9246 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1_ldr_insn,
9247 s->contents + my_offset);
252b5132 9248
52ab56c2
PB
9249 put_arm_insn (globals, output_bfd, (bfd_vma) a2t2_bx_r12_insn,
9250 s->contents + my_offset + 4);
252b5132 9251
8f6277f5
PB
9252 /* It's a thumb address. Add the low order bit. */
9253 bfd_put_32 (output_bfd, val | a2t3_func_addr_insn,
9254 s->contents + my_offset + 8);
8029a119
NC
9255
9256 my_offset += 12;
8f6277f5 9257 }
252b5132
RH
9258 }
9259
9260 BFD_ASSERT (my_offset <= globals->arm_glue_size);
9261
a4fd1a8e
PB
9262 return myh;
9263}
9264
9265/* Arm code calling a Thumb function. */
9266
9267static int
9268elf32_arm_to_thumb_stub (struct bfd_link_info * info,
07d6d2b8
AM
9269 const char * name,
9270 bfd * input_bfd,
9271 bfd * output_bfd,
9272 asection * input_section,
9273 bfd_byte * hit_data,
9274 asection * sym_sec,
9275 bfd_vma offset,
9276 bfd_signed_vma addend,
9277 bfd_vma val,
f2a9dd69 9278 char **error_message)
a4fd1a8e
PB
9279{
9280 unsigned long int tmp;
9281 bfd_vma my_offset;
9282 asection * s;
9283 long int ret_offset;
9284 struct elf_link_hash_entry * myh;
9285 struct elf32_arm_link_hash_table * globals;
9286
9287 globals = elf32_arm_hash_table (info);
a4fd1a8e
PB
9288 BFD_ASSERT (globals != NULL);
9289 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9290
3d4d4302
AM
9291 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9292 ARM2THUMB_GLUE_SECTION_NAME);
a4fd1a8e
PB
9293 BFD_ASSERT (s != NULL);
9294 BFD_ASSERT (s->contents != NULL);
9295 BFD_ASSERT (s->output_section != NULL);
9296
9297 myh = elf32_arm_create_thumb_stub (info, name, input_bfd, output_bfd,
f2a9dd69 9298 sym_sec, val, s, error_message);
a4fd1a8e 9299 if (!myh)
0a1b45a2 9300 return false;
a4fd1a8e
PB
9301
9302 my_offset = myh->root.u.def.value;
252b5132
RH
9303 tmp = bfd_get_32 (input_bfd, hit_data);
9304 tmp = tmp & 0xFF000000;
9305
9b485d32 9306 /* Somehow these are both 4 too far, so subtract 8. */
dc810e39
AM
9307 ret_offset = (s->output_offset
9308 + my_offset
9309 + s->output_section->vma
9310 - (input_section->output_offset
9311 + input_section->output_section->vma
9312 + offset + addend)
9313 - 8);
9a5aca8c 9314
252b5132
RH
9315 tmp = tmp | ((ret_offset >> 2) & 0x00FFFFFF);
9316
dc810e39 9317 bfd_put_32 (output_bfd, (bfd_vma) tmp, hit_data - input_section->vma);
252b5132 9318
0a1b45a2 9319 return true;
252b5132
RH
9320}
9321
a4fd1a8e
PB
9322/* Populate Arm stub for an exported Thumb function. */
9323
0a1b45a2 9324static bool
a4fd1a8e
PB
9325elf32_arm_to_thumb_export_stub (struct elf_link_hash_entry *h, void * inf)
9326{
9327 struct bfd_link_info * info = (struct bfd_link_info *) inf;
9328 asection * s;
9329 struct elf_link_hash_entry * myh;
9330 struct elf32_arm_link_hash_entry *eh;
9331 struct elf32_arm_link_hash_table * globals;
9332 asection *sec;
9333 bfd_vma val;
f2a9dd69 9334 char *error_message;
a4fd1a8e 9335
906e58ca 9336 eh = elf32_arm_hash_entry (h);
a4fd1a8e
PB
9337 /* Allocate stubs for exported Thumb functions on v4t. */
9338 if (eh->export_glue == NULL)
0a1b45a2 9339 return true;
a4fd1a8e
PB
9340
9341 globals = elf32_arm_hash_table (info);
a4fd1a8e
PB
9342 BFD_ASSERT (globals != NULL);
9343 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9344
3d4d4302
AM
9345 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9346 ARM2THUMB_GLUE_SECTION_NAME);
a4fd1a8e
PB
9347 BFD_ASSERT (s != NULL);
9348 BFD_ASSERT (s->contents != NULL);
9349 BFD_ASSERT (s->output_section != NULL);
9350
9351 sec = eh->export_glue->root.u.def.section;
0eaedd0e
PB
9352
9353 BFD_ASSERT (sec->output_section != NULL);
9354
a4fd1a8e
PB
9355 val = eh->export_glue->root.u.def.value + sec->output_offset
9356 + sec->output_section->vma;
8029a119 9357
a4fd1a8e
PB
9358 myh = elf32_arm_create_thumb_stub (info, h->root.root.string,
9359 h->root.u.def.section->owner,
f2a9dd69
DJ
9360 globals->obfd, sec, val, s,
9361 &error_message);
a4fd1a8e 9362 BFD_ASSERT (myh);
0a1b45a2 9363 return true;
a4fd1a8e
PB
9364}
9365
845b51d6
PB
9366/* Populate ARMv4 BX veneers. Returns the absolute adress of the veneer. */
9367
9368static bfd_vma
9369elf32_arm_bx_glue (struct bfd_link_info * info, int reg)
9370{
9371 bfd_byte *p;
9372 bfd_vma glue_addr;
9373 asection *s;
9374 struct elf32_arm_link_hash_table *globals;
9375
9376 globals = elf32_arm_hash_table (info);
845b51d6
PB
9377 BFD_ASSERT (globals != NULL);
9378 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9379
3d4d4302
AM
9380 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9381 ARM_BX_GLUE_SECTION_NAME);
845b51d6
PB
9382 BFD_ASSERT (s != NULL);
9383 BFD_ASSERT (s->contents != NULL);
9384 BFD_ASSERT (s->output_section != NULL);
9385
9386 BFD_ASSERT (globals->bx_glue_offset[reg] & 2);
9387
9388 glue_addr = globals->bx_glue_offset[reg] & ~(bfd_vma)3;
9389
9390 if ((globals->bx_glue_offset[reg] & 1) == 0)
9391 {
9392 p = s->contents + glue_addr;
9393 bfd_put_32 (globals->obfd, armbx1_tst_insn + (reg << 16), p);
9394 bfd_put_32 (globals->obfd, armbx2_moveq_insn + reg, p + 4);
9395 bfd_put_32 (globals->obfd, armbx3_bx_insn + reg, p + 8);
9396 globals->bx_glue_offset[reg] |= 1;
9397 }
9398
9399 return glue_addr + s->output_section->vma + s->output_offset;
9400}
9401
a4fd1a8e
PB
9402/* Generate Arm stubs for exported Thumb symbols. */
9403static void
906e58ca 9404elf32_arm_begin_write_processing (bfd *abfd ATTRIBUTE_UNUSED,
a4fd1a8e
PB
9405 struct bfd_link_info *link_info)
9406{
9407 struct elf32_arm_link_hash_table * globals;
9408
8029a119
NC
9409 if (link_info == NULL)
9410 /* Ignore this if we are not called by the ELF backend linker. */
a4fd1a8e
PB
9411 return;
9412
9413 globals = elf32_arm_hash_table (link_info);
4dfe6ac6
NC
9414 if (globals == NULL)
9415 return;
9416
84c08195
PB
9417 /* If blx is available then exported Thumb symbols are OK and there is
9418 nothing to do. */
a4fd1a8e
PB
9419 if (globals->use_blx)
9420 return;
9421
9422 elf_link_hash_traverse (&globals->root, elf32_arm_to_thumb_export_stub,
9423 link_info);
9424}
9425
47beaa6a
RS
9426/* Reserve space for COUNT dynamic relocations in relocation selection
9427 SRELOC. */
9428
9429static void
9430elf32_arm_allocate_dynrelocs (struct bfd_link_info *info, asection *sreloc,
9431 bfd_size_type count)
9432{
9433 struct elf32_arm_link_hash_table *htab;
9434
9435 htab = elf32_arm_hash_table (info);
9436 BFD_ASSERT (htab->root.dynamic_sections_created);
9437 if (sreloc == NULL)
9438 abort ();
9439 sreloc->size += RELOC_SIZE (htab) * count;
9440}
9441
34e77a92
RS
9442/* Reserve space for COUNT R_ARM_IRELATIVE relocations. If the link is
9443 dynamic, the relocations should go in SRELOC, otherwise they should
9444 go in the special .rel.iplt section. */
9445
9446static void
9447elf32_arm_allocate_irelocs (struct bfd_link_info *info, asection *sreloc,
9448 bfd_size_type count)
9449{
9450 struct elf32_arm_link_hash_table *htab;
9451
9452 htab = elf32_arm_hash_table (info);
9453 if (!htab->root.dynamic_sections_created)
9454 htab->root.irelplt->size += RELOC_SIZE (htab) * count;
9455 else
9456 {
9457 BFD_ASSERT (sreloc != NULL);
9458 sreloc->size += RELOC_SIZE (htab) * count;
9459 }
9460}
9461
47beaa6a
RS
9462/* Add relocation REL to the end of relocation section SRELOC. */
9463
9464static void
9465elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
9466 asection *sreloc, Elf_Internal_Rela *rel)
9467{
9468 bfd_byte *loc;
9469 struct elf32_arm_link_hash_table *htab;
9470
9471 htab = elf32_arm_hash_table (info);
34e77a92
RS
9472 if (!htab->root.dynamic_sections_created
9473 && ELF32_R_TYPE (rel->r_info) == R_ARM_IRELATIVE)
9474 sreloc = htab->root.irelplt;
47beaa6a
RS
9475 if (sreloc == NULL)
9476 abort ();
9477 loc = sreloc->contents;
9478 loc += sreloc->reloc_count++ * RELOC_SIZE (htab);
9479 if (sreloc->reloc_count * RELOC_SIZE (htab) > sreloc->size)
9480 abort ();
9481 SWAP_RELOC_OUT (htab) (output_bfd, rel, loc);
9482}
9483
34e77a92
RS
9484/* Allocate room for a PLT entry described by ROOT_PLT and ARM_PLT.
9485 IS_IPLT_ENTRY says whether the entry belongs to .iplt rather than
9486 to .plt. */
9487
9488static void
9489elf32_arm_allocate_plt_entry (struct bfd_link_info *info,
0a1b45a2 9490 bool is_iplt_entry,
34e77a92
RS
9491 union gotplt_union *root_plt,
9492 struct arm_plt_info *arm_plt)
9493{
9494 struct elf32_arm_link_hash_table *htab;
9495 asection *splt;
9496 asection *sgotplt;
9497
9498 htab = elf32_arm_hash_table (info);
9499
9500 if (is_iplt_entry)
9501 {
9502 splt = htab->root.iplt;
9503 sgotplt = htab->root.igotplt;
9504
99059e56 9505 /* NaCl uses a special first entry in .iplt too. */
90c14f0c 9506 if (htab->root.target_os == is_nacl && splt->size == 0)
99059e56
RM
9507 splt->size += htab->plt_header_size;
9508
34e77a92
RS
9509 /* Allocate room for an R_ARM_IRELATIVE relocation in .rel.iplt. */
9510 elf32_arm_allocate_irelocs (info, htab->root.irelplt, 1);
9511 }
9512 else
9513 {
9514 splt = htab->root.splt;
9515 sgotplt = htab->root.sgotplt;
9516
7801f98f
CL
9517 if (htab->fdpic_p)
9518 {
9519 /* Allocate room for R_ARM_FUNCDESC_VALUE. */
9520 /* For lazy binding, relocations will be put into .rel.plt, in
9521 .rel.got otherwise. */
9522 /* FIXME: today we don't support lazy binding so put it in .rel.got */
9523 if (info->flags & DF_BIND_NOW)
9524 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
9525 else
9526 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9527 }
9528 else
9529 {
9530 /* Allocate room for an R_JUMP_SLOT relocation in .rel.plt. */
9531 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9532 }
34e77a92
RS
9533
9534 /* If this is the first .plt entry, make room for the special
9535 first entry. */
9536 if (splt->size == 0)
9537 splt->size += htab->plt_header_size;
9f19ab6d
WN
9538
9539 htab->next_tls_desc_index++;
34e77a92
RS
9540 }
9541
9542 /* Allocate the PLT entry itself, including any leading Thumb stub. */
9543 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9544 splt->size += PLT_THUMB_STUB_SIZE;
9545 root_plt->offset = splt->size;
9546 splt->size += htab->plt_entry_size;
9547
a57d1773
AM
9548 /* We also need to make an entry in the .got.plt section, which
9549 will be placed in the .got section by the linker script. */
9550 if (is_iplt_entry)
9551 arm_plt->got_offset = sgotplt->size;
9552 else
9553 arm_plt->got_offset = sgotplt->size - 8 * htab->num_tls_desc;
9554 if (htab->fdpic_p)
9555 /* Function descriptor takes 64 bits in GOT. */
9556 sgotplt->size += 8;
9557 else
9558 sgotplt->size += 4;
34e77a92
RS
9559}
9560
b38cadfb
NC
9561static bfd_vma
9562arm_movw_immediate (bfd_vma value)
9563{
9564 return (value & 0x00000fff) | ((value & 0x0000f000) << 4);
9565}
9566
9567static bfd_vma
9568arm_movt_immediate (bfd_vma value)
9569{
9570 return ((value & 0x0fff0000) >> 16) | ((value & 0xf0000000) >> 12);
9571}
9572
34e77a92
RS
9573/* Fill in a PLT entry and its associated GOT slot. If DYNINDX == -1,
9574 the entry lives in .iplt and resolves to (*SYM_VALUE)().
9575 Otherwise, DYNINDX is the index of the symbol in the dynamic
9576 symbol table and SYM_VALUE is undefined.
9577
9578 ROOT_PLT points to the offset of the PLT entry from the start of its
9579 section (.iplt or .plt). ARM_PLT points to the symbol's ARM-specific
57460bcf 9580 bookkeeping information.
34e77a92 9581
57460bcf
NC
9582 Returns FALSE if there was a problem. */
9583
0a1b45a2 9584static bool
34e77a92
RS
9585elf32_arm_populate_plt_entry (bfd *output_bfd, struct bfd_link_info *info,
9586 union gotplt_union *root_plt,
9587 struct arm_plt_info *arm_plt,
9588 int dynindx, bfd_vma sym_value)
9589{
9590 struct elf32_arm_link_hash_table *htab;
9591 asection *sgot;
9592 asection *splt;
9593 asection *srel;
9594 bfd_byte *loc;
9595 bfd_vma plt_index;
9596 Elf_Internal_Rela rel;
34e77a92
RS
9597 bfd_vma got_header_size;
9598
9599 htab = elf32_arm_hash_table (info);
9600
9601 /* Pick the appropriate sections and sizes. */
9602 if (dynindx == -1)
9603 {
9604 splt = htab->root.iplt;
9605 sgot = htab->root.igotplt;
9606 srel = htab->root.irelplt;
9607
9608 /* There are no reserved entries in .igot.plt, and no special
9609 first entry in .iplt. */
9610 got_header_size = 0;
34e77a92
RS
9611 }
9612 else
9613 {
9614 splt = htab->root.splt;
9615 sgot = htab->root.sgotplt;
9616 srel = htab->root.srelplt;
9617
9618 got_header_size = get_elf_backend_data (output_bfd)->got_header_size;
34e77a92
RS
9619 }
9620 BFD_ASSERT (splt != NULL && srel != NULL);
9621
a57d1773
AM
9622 bfd_vma got_offset, got_address, plt_address;
9623 bfd_vma got_displacement, initial_got_entry;
9624 bfd_byte * ptr;
9625
9626 BFD_ASSERT (sgot != NULL);
9627
9628 /* Get the offset into the .(i)got.plt table of the entry that
9629 corresponds to this function. */
9630 got_offset = (arm_plt->got_offset & -2);
9631
9632 /* Get the index in the procedure linkage table which
9633 corresponds to this symbol. This is the index of this symbol
9634 in all the symbols for which we are making plt entries.
9635 After the reserved .got.plt entries, all symbols appear in
9636 the same order as in .plt. */
9637 if (htab->fdpic_p)
9638 /* Function descriptor takes 8 bytes. */
9639 plt_index = (got_offset - got_header_size) / 8;
9640 else
9641 plt_index = (got_offset - got_header_size) / 4;
9642
9643 /* Calculate the address of the GOT entry. */
9644 got_address = (sgot->output_section->vma
9645 + sgot->output_offset
9646 + got_offset);
9647
9648 /* ...and the address of the PLT entry. */
9649 plt_address = (splt->output_section->vma
9650 + splt->output_offset
9651 + root_plt->offset);
9652
9653 ptr = splt->contents + root_plt->offset;
9654 if (htab->root.target_os == is_vxworks && bfd_link_pic (info))
34e77a92 9655 {
a57d1773
AM
9656 unsigned int i;
9657 bfd_vma val;
9658
9659 for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9660 {
9661 val = elf32_arm_vxworks_shared_plt_entry[i];
9662 if (i == 2)
9663 val |= got_address - sgot->output_section->vma;
9664 if (i == 5)
9665 val |= plt_index * RELOC_SIZE (htab);
9666 if (i == 2 || i == 5)
9667 bfd_put_32 (output_bfd, val, ptr);
9668 else
9669 put_arm_insn (htab, output_bfd, val, ptr);
9670 }
34e77a92 9671 }
a57d1773 9672 else if (htab->root.target_os == is_vxworks)
34e77a92 9673 {
a57d1773
AM
9674 unsigned int i;
9675 bfd_vma val;
34e77a92 9676
a57d1773
AM
9677 for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9678 {
9679 val = elf32_arm_vxworks_exec_plt_entry[i];
9680 if (i == 2)
9681 val |= got_address;
9682 if (i == 4)
9683 val |= 0xffffff & -((root_plt->offset + i * 4 + 8) >> 2);
9684 if (i == 5)
9685 val |= plt_index * RELOC_SIZE (htab);
9686 if (i == 2 || i == 5)
9687 bfd_put_32 (output_bfd, val, ptr);
9688 else
9689 put_arm_insn (htab, output_bfd, val, ptr);
9690 }
34e77a92 9691
a57d1773
AM
9692 loc = (htab->srelplt2->contents
9693 + (plt_index * 2 + 1) * RELOC_SIZE (htab));
34e77a92 9694
a57d1773
AM
9695 /* Create the .rela.plt.unloaded R_ARM_ABS32 relocation
9696 referencing the GOT for this PLT entry. */
9697 rel.r_offset = plt_address + 8;
9698 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
9699 rel.r_addend = got_offset;
9700 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9701 loc += RELOC_SIZE (htab);
34e77a92 9702
a57d1773
AM
9703 /* Create the R_ARM_ABS32 relocation referencing the
9704 beginning of the PLT for this GOT entry. */
9705 rel.r_offset = got_address;
9706 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
9707 rel.r_addend = 0;
9708 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9709 }
9710 else if (htab->root.target_os == is_nacl)
9711 {
9712 /* Calculate the displacement between the PLT slot and the
9713 common tail that's part of the special initial PLT slot. */
9714 int32_t tail_displacement
9715 = ((splt->output_section->vma + splt->output_offset
9716 + ARM_NACL_PLT_TAIL_OFFSET)
9717 - (plt_address + htab->plt_entry_size + 4));
9718 BFD_ASSERT ((tail_displacement & 3) == 0);
9719 tail_displacement >>= 2;
34e77a92 9720
a57d1773
AM
9721 BFD_ASSERT ((tail_displacement & 0xff000000) == 0
9722 || (-tail_displacement & 0xff000000) == 0);
34e77a92 9723
a57d1773
AM
9724 /* Calculate the displacement between the PLT slot and the entry
9725 in the GOT. The offset accounts for the value produced by
9726 adding to pc in the penultimate instruction of the PLT stub. */
9727 got_displacement = (got_address
9728 - (plt_address + htab->plt_entry_size));
34e77a92 9729
a57d1773
AM
9730 /* NaCl does not support interworking at all. */
9731 BFD_ASSERT (!elf32_arm_plt_needs_thumb_stub_p (info, arm_plt));
9732
9733 put_arm_insn (htab, output_bfd,
9734 elf32_arm_nacl_plt_entry[0]
9735 | arm_movw_immediate (got_displacement),
9736 ptr + 0);
9737 put_arm_insn (htab, output_bfd,
9738 elf32_arm_nacl_plt_entry[1]
9739 | arm_movt_immediate (got_displacement),
9740 ptr + 4);
9741 put_arm_insn (htab, output_bfd,
9742 elf32_arm_nacl_plt_entry[2],
9743 ptr + 8);
9744 put_arm_insn (htab, output_bfd,
9745 elf32_arm_nacl_plt_entry[3]
9746 | (tail_displacement & 0x00ffffff),
9747 ptr + 12);
9748 }
9749 else if (htab->fdpic_p)
9750 {
9751 const bfd_vma *plt_entry = using_thumb_only(htab)
9752 ? elf32_arm_fdpic_thumb_plt_entry
9753 : elf32_arm_fdpic_plt_entry;
9754
9755 /* Fill-up Thumb stub if needed. */
9756 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9757 {
9758 put_thumb_insn (htab, output_bfd,
9759 elf32_arm_plt_thumb_stub[0], ptr - 4);
9760 put_thumb_insn (htab, output_bfd,
9761 elf32_arm_plt_thumb_stub[1], ptr - 2);
34e77a92 9762 }
a57d1773
AM
9763 /* As we are using 32 bit instructions even for the Thumb
9764 version, we have to use 'put_arm_insn' instead of
9765 'put_thumb_insn'. */
9766 put_arm_insn(htab, output_bfd, plt_entry[0], ptr + 0);
9767 put_arm_insn(htab, output_bfd, plt_entry[1], ptr + 4);
9768 put_arm_insn(htab, output_bfd, plt_entry[2], ptr + 8);
9769 put_arm_insn(htab, output_bfd, plt_entry[3], ptr + 12);
9770 bfd_put_32 (output_bfd, got_offset, ptr + 16);
9771
9772 if (!(info->flags & DF_BIND_NOW))
34e77a92 9773 {
a57d1773
AM
9774 /* funcdesc_value_reloc_offset. */
9775 bfd_put_32 (output_bfd,
9776 htab->root.srelplt->reloc_count * RELOC_SIZE (htab),
9777 ptr + 20);
9778 put_arm_insn(htab, output_bfd, plt_entry[6], ptr + 24);
9779 put_arm_insn(htab, output_bfd, plt_entry[7], ptr + 28);
9780 put_arm_insn(htab, output_bfd, plt_entry[8], ptr + 32);
9781 put_arm_insn(htab, output_bfd, plt_entry[9], ptr + 36);
9782 }
9783 }
9784 else if (using_thumb_only (htab))
9785 {
9786 /* PR ld/16017: Generate thumb only PLT entries. */
9787 if (!using_thumb2 (htab))
9788 {
9789 /* FIXME: We ought to be able to generate thumb-1 PLT
9790 instructions... */
9791 _bfd_error_handler (_("%pB: warning: thumb-1 mode PLT generation not currently supported"),
9792 output_bfd);
0a1b45a2 9793 return false;
a57d1773 9794 }
34e77a92 9795
a57d1773
AM
9796 /* Calculate the displacement between the PLT slot and the entry in
9797 the GOT. The 12-byte offset accounts for the value produced by
9798 adding to pc in the 3rd instruction of the PLT stub. */
9799 got_displacement = got_address - (plt_address + 12);
34e77a92 9800
a57d1773
AM
9801 /* As we are using 32 bit instructions we have to use 'put_arm_insn'
9802 instead of 'put_thumb_insn'. */
9803 put_arm_insn (htab, output_bfd,
9804 elf32_thumb2_plt_entry[0]
9805 | ((got_displacement & 0x000000ff) << 16)
9806 | ((got_displacement & 0x00000700) << 20)
9807 | ((got_displacement & 0x00000800) >> 1)
9808 | ((got_displacement & 0x0000f000) >> 12),
9809 ptr + 0);
9810 put_arm_insn (htab, output_bfd,
9811 elf32_thumb2_plt_entry[1]
9812 | ((got_displacement & 0x00ff0000) )
9813 | ((got_displacement & 0x07000000) << 4)
9814 | ((got_displacement & 0x08000000) >> 17)
9815 | ((got_displacement & 0xf0000000) >> 28),
9816 ptr + 4);
9817 put_arm_insn (htab, output_bfd,
9818 elf32_thumb2_plt_entry[2],
9819 ptr + 8);
9820 put_arm_insn (htab, output_bfd,
9821 elf32_thumb2_plt_entry[3],
9822 ptr + 12);
9823 }
9824 else
9825 {
9826 /* Calculate the displacement between the PLT slot and the
9827 entry in the GOT. The eight-byte offset accounts for the
9828 value produced by adding to pc in the first instruction
9829 of the PLT stub. */
9830 got_displacement = got_address - (plt_address + 8);
34e77a92 9831
a57d1773
AM
9832 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9833 {
9834 put_thumb_insn (htab, output_bfd,
9835 elf32_arm_plt_thumb_stub[0], ptr - 4);
9836 put_thumb_insn (htab, output_bfd,
9837 elf32_arm_plt_thumb_stub[1], ptr - 2);
34e77a92 9838 }
a57d1773
AM
9839
9840 if (!elf32_arm_use_long_plt_entry)
b38cadfb 9841 {
a57d1773 9842 BFD_ASSERT ((got_displacement & 0xf0000000) == 0);
b38cadfb
NC
9843
9844 put_arm_insn (htab, output_bfd,
a57d1773
AM
9845 elf32_arm_plt_entry_short[0]
9846 | ((got_displacement & 0x0ff00000) >> 20),
b38cadfb
NC
9847 ptr + 0);
9848 put_arm_insn (htab, output_bfd,
a57d1773
AM
9849 elf32_arm_plt_entry_short[1]
9850 | ((got_displacement & 0x000ff000) >> 12),
9851 ptr+ 4);
b38cadfb 9852 put_arm_insn (htab, output_bfd,
a57d1773
AM
9853 elf32_arm_plt_entry_short[2]
9854 | (got_displacement & 0x00000fff),
b38cadfb 9855 ptr + 8);
a57d1773
AM
9856#ifdef FOUR_WORD_PLT
9857 bfd_put_32 (output_bfd, elf32_arm_plt_entry_short[3], ptr + 12);
9858#endif
7801f98f 9859 }
a57d1773 9860 else
57460bcf 9861 {
eed94f8f 9862 put_arm_insn (htab, output_bfd,
a57d1773
AM
9863 elf32_arm_plt_entry_long[0]
9864 | ((got_displacement & 0xf0000000) >> 28),
eed94f8f
NC
9865 ptr + 0);
9866 put_arm_insn (htab, output_bfd,
a57d1773
AM
9867 elf32_arm_plt_entry_long[1]
9868 | ((got_displacement & 0x0ff00000) >> 20),
eed94f8f
NC
9869 ptr + 4);
9870 put_arm_insn (htab, output_bfd,
a57d1773
AM
9871 elf32_arm_plt_entry_long[2]
9872 | ((got_displacement & 0x000ff000) >> 12),
9873 ptr+ 8);
eed94f8f 9874 put_arm_insn (htab, output_bfd,
a57d1773
AM
9875 elf32_arm_plt_entry_long[3]
9876 | (got_displacement & 0x00000fff),
eed94f8f 9877 ptr + 12);
57460bcf 9878 }
a57d1773 9879 }
34e77a92 9880
a57d1773
AM
9881 /* Fill in the entry in the .rel(a).(i)plt section. */
9882 rel.r_offset = got_address;
9883 rel.r_addend = 0;
9884 if (dynindx == -1)
9885 {
9886 /* .igot.plt entries use IRELATIVE relocations against SYM_VALUE.
9887 The dynamic linker or static executable then calls SYM_VALUE
9888 to determine the correct run-time value of the .igot.plt entry. */
9889 rel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
9890 initial_got_entry = sym_value;
9891 }
9892 else
9893 {
9894 /* For FDPIC we will have to resolve a R_ARM_FUNCDESC_VALUE
9895 used by PLT entry. */
9896 if (htab->fdpic_p)
34e77a92 9897 {
a57d1773
AM
9898 rel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
9899 initial_got_entry = 0;
34e77a92
RS
9900 }
9901 else
9902 {
a57d1773
AM
9903 rel.r_info = ELF32_R_INFO (dynindx, R_ARM_JUMP_SLOT);
9904 initial_got_entry = (splt->output_section->vma
9905 + splt->output_offset);
9906
9907 /* PR ld/16017
9908 When thumb only we need to set the LSB for any address that
9909 will be used with an interworking branch instruction. */
9910 if (using_thumb_only (htab))
9911 initial_got_entry |= 1;
34e77a92 9912 }
a57d1773 9913 }
34e77a92 9914
a57d1773
AM
9915 /* Fill in the entry in the global offset table. */
9916 bfd_put_32 (output_bfd, initial_got_entry,
9917 sgot->contents + got_offset);
9918
9919 if (htab->fdpic_p && !(info->flags & DF_BIND_NOW))
9920 {
9921 /* Setup initial funcdesc value. */
9922 /* FIXME: we don't support lazy binding because there is a
9923 race condition between both words getting written and
9924 some other thread attempting to read them. The ARM
9925 architecture does not have an atomic 64 bit load/store
9926 instruction that could be used to prevent it; it is
9927 recommended that threaded FDPIC applications run with the
9928 LD_BIND_NOW environment variable set. */
9929 bfd_put_32(output_bfd, plt_address + 0x18,
9930 sgot->contents + got_offset);
9931 bfd_put_32(output_bfd, -1 /*TODO*/,
9932 sgot->contents + got_offset + 4);
34e77a92
RS
9933 }
9934
aba8c3de
WN
9935 if (dynindx == -1)
9936 elf32_arm_add_dynreloc (output_bfd, info, srel, &rel);
9937 else
9938 {
7801f98f
CL
9939 if (htab->fdpic_p)
9940 {
9941 /* For FDPIC we put PLT relocationss into .rel.got when not
9942 lazy binding otherwise we put them in .rel.plt. For now,
9943 we don't support lazy binding so put it in .rel.got. */
9944 if (info->flags & DF_BIND_NOW)
9945 elf32_arm_add_dynreloc(output_bfd, info, htab->root.srelgot, &rel);
9946 else
9947 elf32_arm_add_dynreloc(output_bfd, info, htab->root.srelplt, &rel);
9948 }
9949 else
9950 {
9951 loc = srel->contents + plt_index * RELOC_SIZE (htab);
9952 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9953 }
aba8c3de 9954 }
57460bcf 9955
0a1b45a2 9956 return true;
34e77a92
RS
9957}
9958
eb043451
PB
9959/* Some relocations map to different relocations depending on the
9960 target. Return the real relocation. */
8029a119 9961
eb043451
PB
9962static int
9963arm_real_reloc_type (struct elf32_arm_link_hash_table * globals,
9964 int r_type)
9965{
9966 switch (r_type)
9967 {
9968 case R_ARM_TARGET1:
9969 if (globals->target1_is_rel)
9970 return R_ARM_REL32;
9971 else
9972 return R_ARM_ABS32;
9973
9974 case R_ARM_TARGET2:
9975 return globals->target2_reloc;
9976
9977 default:
9978 return r_type;
9979 }
9980}
eb043451 9981
ba93b8ac
DJ
9982/* Return the base VMA address which should be subtracted from real addresses
9983 when resolving @dtpoff relocation.
9984 This is PT_TLS segment p_vaddr. */
9985
9986static bfd_vma
9987dtpoff_base (struct bfd_link_info *info)
9988{
9989 /* If tls_sec is NULL, we should have signalled an error already. */
9990 if (elf_hash_table (info)->tls_sec == NULL)
9991 return 0;
9992 return elf_hash_table (info)->tls_sec->vma;
9993}
9994
9995/* Return the relocation value for @tpoff relocation
9996 if STT_TLS virtual address is ADDRESS. */
9997
9998static bfd_vma
9999tpoff (struct bfd_link_info *info, bfd_vma address)
10000{
10001 struct elf_link_hash_table *htab = elf_hash_table (info);
10002 bfd_vma base;
10003
10004 /* If tls_sec is NULL, we should have signalled an error already. */
10005 if (htab->tls_sec == NULL)
10006 return 0;
10007 base = align_power ((bfd_vma) TCB_SIZE, htab->tls_sec->alignment_power);
10008 return address - htab->tls_sec->vma + base;
10009}
10010
00a97672
RS
10011/* Perform an R_ARM_ABS12 relocation on the field pointed to by DATA.
10012 VALUE is the relocation value. */
10013
10014static bfd_reloc_status_type
10015elf32_arm_abs12_reloc (bfd *abfd, void *data, bfd_vma value)
10016{
10017 if (value > 0xfff)
10018 return bfd_reloc_overflow;
10019
10020 value |= bfd_get_32 (abfd, data) & 0xfffff000;
10021 bfd_put_32 (abfd, value, data);
10022 return bfd_reloc_ok;
10023}
10024
0855e32b
NS
10025/* Handle TLS relaxations. Relaxing is possible for symbols that use
10026 R_ARM_GOTDESC, R_ARM_{,THM_}TLS_CALL or
10027 R_ARM_{,THM_}TLS_DESCSEQ relocations, during a static link.
10028
10029 Return bfd_reloc_ok if we're done, bfd_reloc_continue if the caller
10030 is to then call final_link_relocate. Return other values in the
62672b10
NS
10031 case of error.
10032
10033 FIXME:When --emit-relocs is in effect, we'll emit relocs describing
10034 the pre-relaxed code. It would be nice if the relocs were updated
10035 to match the optimization. */
0855e32b 10036
b38cadfb 10037static bfd_reloc_status_type
0855e32b 10038elf32_arm_tls_relax (struct elf32_arm_link_hash_table *globals,
b38cadfb 10039 bfd *input_bfd, asection *input_sec, bfd_byte *contents,
0855e32b
NS
10040 Elf_Internal_Rela *rel, unsigned long is_local)
10041{
10042 unsigned long insn;
b38cadfb 10043
0855e32b
NS
10044 switch (ELF32_R_TYPE (rel->r_info))
10045 {
10046 default:
10047 return bfd_reloc_notsupported;
b38cadfb 10048
0855e32b
NS
10049 case R_ARM_TLS_GOTDESC:
10050 if (is_local)
10051 insn = 0;
10052 else
10053 {
10054 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
10055 if (insn & 1)
10056 insn -= 5; /* THUMB */
10057 else
10058 insn -= 8; /* ARM */
10059 }
10060 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10061 return bfd_reloc_continue;
10062
10063 case R_ARM_THM_TLS_DESCSEQ:
10064 /* Thumb insn. */
10065 insn = bfd_get_16 (input_bfd, contents + rel->r_offset);
10066 if ((insn & 0xff78) == 0x4478) /* add rx, pc */
10067 {
10068 if (is_local)
10069 /* nop */
10070 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10071 }
10072 else if ((insn & 0xffc0) == 0x6840) /* ldr rx,[ry,#4] */
10073 {
10074 if (is_local)
10075 /* nop */
10076 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10077 else
10078 /* ldr rx,[ry] */
10079 bfd_put_16 (input_bfd, insn & 0xf83f, contents + rel->r_offset);
10080 }
10081 else if ((insn & 0xff87) == 0x4780) /* blx rx */
10082 {
10083 if (is_local)
10084 /* nop */
10085 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10086 else
10087 /* mov r0, rx */
10088 bfd_put_16 (input_bfd, 0x4600 | (insn & 0x78),
10089 contents + rel->r_offset);
10090 }
10091 else
10092 {
10093 if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
10094 /* It's a 32 bit instruction, fetch the rest of it for
10095 error generation. */
10096 insn = (insn << 16)
10097 | bfd_get_16 (input_bfd, contents + rel->r_offset + 2);
4eca0228 10098 _bfd_error_handler
695344c0 10099 /* xgettext:c-format */
2dcf00ce 10100 (_("%pB(%pA+%#" PRIx64 "): "
90b6238f
AM
10101 "unexpected %s instruction '%#lx' in TLS trampoline"),
10102 input_bfd, input_sec, (uint64_t) rel->r_offset,
10103 "Thumb", insn);
0855e32b
NS
10104 return bfd_reloc_notsupported;
10105 }
10106 break;
b38cadfb 10107
0855e32b
NS
10108 case R_ARM_TLS_DESCSEQ:
10109 /* arm insn. */
10110 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
10111 if ((insn & 0xffff0ff0) == 0xe08f0000) /* add rx,pc,ry */
10112 {
10113 if (is_local)
10114 /* mov rx, ry */
10115 bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xffff),
10116 contents + rel->r_offset);
10117 }
10118 else if ((insn & 0xfff00fff) == 0xe5900004) /* ldr rx,[ry,#4]*/
10119 {
10120 if (is_local)
10121 /* nop */
10122 bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10123 else
10124 /* ldr rx,[ry] */
10125 bfd_put_32 (input_bfd, insn & 0xfffff000,
10126 contents + rel->r_offset);
10127 }
10128 else if ((insn & 0xfffffff0) == 0xe12fff30) /* blx rx */
10129 {
10130 if (is_local)
10131 /* nop */
10132 bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10133 else
10134 /* mov r0, rx */
10135 bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xf),
10136 contents + rel->r_offset);
10137 }
10138 else
10139 {
4eca0228 10140 _bfd_error_handler
695344c0 10141 /* xgettext:c-format */
2dcf00ce 10142 (_("%pB(%pA+%#" PRIx64 "): "
90b6238f
AM
10143 "unexpected %s instruction '%#lx' in TLS trampoline"),
10144 input_bfd, input_sec, (uint64_t) rel->r_offset,
10145 "ARM", insn);
0855e32b
NS
10146 return bfd_reloc_notsupported;
10147 }
10148 break;
10149
10150 case R_ARM_TLS_CALL:
10151 /* GD->IE relaxation, turn the instruction into 'nop' or
10152 'ldr r0, [pc,r0]' */
10153 insn = is_local ? 0xe1a00000 : 0xe79f0000;
10154 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10155 break;
b38cadfb 10156
0855e32b 10157 case R_ARM_THM_TLS_CALL:
6a631e86 10158 /* GD->IE relaxation. */
0855e32b
NS
10159 if (!is_local)
10160 /* add r0,pc; ldr r0, [r0] */
10161 insn = 0x44786800;
60a019a0 10162 else if (using_thumb2 (globals))
0855e32b
NS
10163 /* nop.w */
10164 insn = 0xf3af8000;
10165 else
10166 /* nop; nop */
10167 insn = 0xbf00bf00;
b38cadfb 10168
0855e32b
NS
10169 bfd_put_16 (input_bfd, insn >> 16, contents + rel->r_offset);
10170 bfd_put_16 (input_bfd, insn & 0xffff, contents + rel->r_offset + 2);
10171 break;
10172 }
10173 return bfd_reloc_ok;
10174}
10175
4962c51a
MS
10176/* For a given value of n, calculate the value of G_n as required to
10177 deal with group relocations. We return it in the form of an
10178 encoded constant-and-rotation, together with the final residual. If n is
10179 specified as less than zero, then final_residual is filled with the
10180 input value and no further action is performed. */
10181
10182static bfd_vma
10183calculate_group_reloc_mask (bfd_vma value, int n, bfd_vma *final_residual)
10184{
10185 int current_n;
10186 bfd_vma g_n;
10187 bfd_vma encoded_g_n = 0;
10188 bfd_vma residual = value; /* Also known as Y_n. */
10189
10190 for (current_n = 0; current_n <= n; current_n++)
10191 {
10192 int shift;
10193
10194 /* Calculate which part of the value to mask. */
10195 if (residual == 0)
99059e56 10196 shift = 0;
4962c51a 10197 else
99059e56
RM
10198 {
10199 int msb;
10200
10201 /* Determine the most significant bit in the residual and
10202 align the resulting value to a 2-bit boundary. */
10203 for (msb = 30; msb >= 0; msb -= 2)
00c91124 10204 if (residual & (3u << msb))
99059e56
RM
10205 break;
10206
10207 /* The desired shift is now (msb - 6), or zero, whichever
10208 is the greater. */
10209 shift = msb - 6;
10210 if (shift < 0)
10211 shift = 0;
10212 }
4962c51a
MS
10213
10214 /* Calculate g_n in 32-bit as well as encoded constant+rotation form. */
10215 g_n = residual & (0xff << shift);
10216 encoded_g_n = (g_n >> shift)
99059e56 10217 | ((g_n <= 0xff ? 0 : (32 - shift) / 2) << 8);
4962c51a
MS
10218
10219 /* Calculate the residual for the next time around. */
10220 residual &= ~g_n;
10221 }
10222
10223 *final_residual = residual;
10224
10225 return encoded_g_n;
10226}
10227
10228/* Given an ARM instruction, determine whether it is an ADD or a SUB.
10229 Returns 1 if it is an ADD, -1 if it is a SUB, and 0 otherwise. */
906e58ca 10230
4962c51a 10231static int
906e58ca 10232identify_add_or_sub (bfd_vma insn)
4962c51a
MS
10233{
10234 int opcode = insn & 0x1e00000;
10235
10236 if (opcode == 1 << 23) /* ADD */
10237 return 1;
10238
10239 if (opcode == 1 << 22) /* SUB */
10240 return -1;
10241
10242 return 0;
10243}
10244
252b5132 10245/* Perform a relocation as part of a final link. */
9b485d32 10246
252b5132 10247static bfd_reloc_status_type
07d6d2b8
AM
10248elf32_arm_final_link_relocate (reloc_howto_type * howto,
10249 bfd * input_bfd,
10250 bfd * output_bfd,
10251 asection * input_section,
10252 bfd_byte * contents,
10253 Elf_Internal_Rela * rel,
10254 bfd_vma value,
10255 struct bfd_link_info * info,
10256 asection * sym_sec,
10257 const char * sym_name,
10258 unsigned char st_type,
10259 enum arm_st_branch_type branch_type,
0945cdfd 10260 struct elf_link_hash_entry * h,
0a1b45a2 10261 bool * unresolved_reloc_p,
07d6d2b8
AM
10262 char ** error_message)
10263{
10264 unsigned long r_type = howto->type;
10265 unsigned long r_symndx;
10266 bfd_byte * hit_data = contents + rel->r_offset;
10267 bfd_vma * local_got_offsets;
10268 bfd_vma * local_tlsdesc_gotents;
10269 asection * sgot;
10270 asection * splt;
10271 asection * sreloc = NULL;
10272 asection * srelgot;
10273 bfd_vma addend;
10274 bfd_signed_vma signed_addend;
10275 unsigned char dynreloc_st_type;
10276 bfd_vma dynreloc_value;
ba96a88f 10277 struct elf32_arm_link_hash_table * globals;
34e77a92 10278 struct elf32_arm_link_hash_entry *eh;
07d6d2b8
AM
10279 union gotplt_union *root_plt;
10280 struct arm_plt_info *arm_plt;
10281 bfd_vma plt_offset;
10282 bfd_vma gotplt_offset;
0a1b45a2
AM
10283 bool has_iplt_entry;
10284 bool resolved_to_zero;
f21f3fe0 10285
9c504268 10286 globals = elf32_arm_hash_table (info);
4dfe6ac6
NC
10287 if (globals == NULL)
10288 return bfd_reloc_notsupported;
9c504268 10289
0ffa91dd 10290 BFD_ASSERT (is_arm_elf (input_bfd));
47aeb64c 10291 BFD_ASSERT (howto != NULL);
0ffa91dd
NC
10292
10293 /* Some relocation types map to different relocations depending on the
9c504268 10294 target. We pick the right one here. */
eb043451 10295 r_type = arm_real_reloc_type (globals, r_type);
0855e32b
NS
10296
10297 /* It is possible to have linker relaxations on some TLS access
10298 models. Update our information here. */
10299 r_type = elf32_arm_tls_transition (info, r_type, h);
10300
eb043451
PB
10301 if (r_type != howto->type)
10302 howto = elf32_arm_howto_from_type (r_type);
9c504268 10303
34e77a92 10304 eh = (struct elf32_arm_link_hash_entry *) h;
362d30a1 10305 sgot = globals->root.sgot;
252b5132 10306 local_got_offsets = elf_local_got_offsets (input_bfd);
0855e32b
NS
10307 local_tlsdesc_gotents = elf32_arm_local_tlsdesc_gotent (input_bfd);
10308
34e77a92
RS
10309 if (globals->root.dynamic_sections_created)
10310 srelgot = globals->root.srelgot;
10311 else
10312 srelgot = NULL;
10313
252b5132
RH
10314 r_symndx = ELF32_R_SYM (rel->r_info);
10315
4e7fd91e 10316 if (globals->use_rel)
ba96a88f 10317 {
d2327e47 10318 bfd_vma sign;
4e7fd91e 10319
d2327e47 10320 switch (howto->size)
4e7fd91e 10321 {
d2327e47
AM
10322 case 0: addend = bfd_get_8 (input_bfd, hit_data); break;
10323 case 1: addend = bfd_get_16 (input_bfd, hit_data); break;
10324 case 2: addend = bfd_get_32 (input_bfd, hit_data); break;
10325 default: addend = 0; break;
4e7fd91e 10326 }
d2327e47
AM
10327 /* Note: the addend and signed_addend calculated here are
10328 incorrect for any split field. */
10329 addend &= howto->src_mask;
10330 sign = howto->src_mask & ~(howto->src_mask >> 1);
10331 signed_addend = (addend ^ sign) - sign;
10332 signed_addend = (bfd_vma) signed_addend << howto->rightshift;
10333 addend <<= howto->rightshift;
ba96a88f
NC
10334 }
10335 else
4e7fd91e 10336 addend = signed_addend = rel->r_addend;
f21f3fe0 10337
39f21624
NC
10338 /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we
10339 are resolving a function call relocation. */
10340 if (using_thumb_only (globals)
10341 && (r_type == R_ARM_THM_CALL
10342 || r_type == R_ARM_THM_JUMP24)
10343 && branch_type == ST_BRANCH_TO_ARM)
10344 branch_type = ST_BRANCH_TO_THUMB;
10345
34e77a92
RS
10346 /* Record the symbol information that should be used in dynamic
10347 relocations. */
10348 dynreloc_st_type = st_type;
10349 dynreloc_value = value;
10350 if (branch_type == ST_BRANCH_TO_THUMB)
10351 dynreloc_value |= 1;
10352
10353 /* Find out whether the symbol has a PLT. Set ST_VALUE, BRANCH_TYPE and
10354 VALUE appropriately for relocations that we resolve at link time. */
0a1b45a2 10355 has_iplt_entry = false;
4ba2ef8f
TP
10356 if (elf32_arm_get_plt_info (input_bfd, globals, eh, r_symndx, &root_plt,
10357 &arm_plt)
34e77a92
RS
10358 && root_plt->offset != (bfd_vma) -1)
10359 {
10360 plt_offset = root_plt->offset;
10361 gotplt_offset = arm_plt->got_offset;
10362
10363 if (h == NULL || eh->is_iplt)
10364 {
0a1b45a2 10365 has_iplt_entry = true;
34e77a92
RS
10366 splt = globals->root.iplt;
10367
10368 /* Populate .iplt entries here, because not all of them will
10369 be seen by finish_dynamic_symbol. The lower bit is set if
10370 we have already populated the entry. */
10371 if (plt_offset & 1)
10372 plt_offset--;
10373 else
10374 {
57460bcf
NC
10375 if (elf32_arm_populate_plt_entry (output_bfd, info, root_plt, arm_plt,
10376 -1, dynreloc_value))
10377 root_plt->offset |= 1;
10378 else
10379 return bfd_reloc_notsupported;
34e77a92
RS
10380 }
10381
10382 /* Static relocations always resolve to the .iplt entry. */
10383 st_type = STT_FUNC;
10384 value = (splt->output_section->vma
10385 + splt->output_offset
10386 + plt_offset);
10387 branch_type = ST_BRANCH_TO_ARM;
10388
10389 /* If there are non-call relocations that resolve to the .iplt
10390 entry, then all dynamic ones must too. */
10391 if (arm_plt->noncall_refcount != 0)
10392 {
10393 dynreloc_st_type = st_type;
10394 dynreloc_value = value;
10395 }
10396 }
10397 else
10398 /* We populate the .plt entry in finish_dynamic_symbol. */
10399 splt = globals->root.splt;
10400 }
10401 else
10402 {
10403 splt = NULL;
10404 plt_offset = (bfd_vma) -1;
10405 gotplt_offset = (bfd_vma) -1;
10406 }
10407
95b03e4a
L
10408 resolved_to_zero = (h != NULL
10409 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
10410
252b5132
RH
10411 switch (r_type)
10412 {
10413 case R_ARM_NONE:
28a094c2
DJ
10414 /* We don't need to find a value for this symbol. It's just a
10415 marker. */
0a1b45a2 10416 *unresolved_reloc_p = false;
252b5132
RH
10417 return bfd_reloc_ok;
10418
00a97672 10419 case R_ARM_ABS12:
90c14f0c 10420 if (globals->root.target_os != is_vxworks)
00a97672 10421 return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
1a0670f3 10422 /* Fall through. */
00a97672 10423
252b5132
RH
10424 case R_ARM_PC24:
10425 case R_ARM_ABS32:
bb224fc3 10426 case R_ARM_ABS32_NOI:
252b5132 10427 case R_ARM_REL32:
bb224fc3 10428 case R_ARM_REL32_NOI:
5b5bb741
PB
10429 case R_ARM_CALL:
10430 case R_ARM_JUMP24:
dfc5f959 10431 case R_ARM_XPC25:
eb043451 10432 case R_ARM_PREL31:
7359ea65 10433 case R_ARM_PLT32:
7359ea65
DJ
10434 /* Handle relocations which should use the PLT entry. ABS32/REL32
10435 will use the symbol's value, which may point to a PLT entry, but we
10436 don't need to handle that here. If we created a PLT entry, all
5fa9e92f
CL
10437 branches in this object should go to it, except if the PLT is too
10438 far away, in which case a long branch stub should be inserted. */
bb224fc3 10439 if ((r_type != R_ARM_ABS32 && r_type != R_ARM_REL32
99059e56 10440 && r_type != R_ARM_ABS32_NOI && r_type != R_ARM_REL32_NOI
155d87d7
CL
10441 && r_type != R_ARM_CALL
10442 && r_type != R_ARM_JUMP24
10443 && r_type != R_ARM_PLT32)
34e77a92 10444 && plt_offset != (bfd_vma) -1)
7359ea65 10445 {
34e77a92
RS
10446 /* If we've created a .plt section, and assigned a PLT entry
10447 to this function, it must either be a STT_GNU_IFUNC reference
10448 or not be known to bind locally. In other cases, we should
10449 have cleared the PLT entry by now. */
10450 BFD_ASSERT (has_iplt_entry || !SYMBOL_CALLS_LOCAL (info, h));
7359ea65
DJ
10451
10452 value = (splt->output_section->vma
10453 + splt->output_offset
34e77a92 10454 + plt_offset);
0a1b45a2 10455 *unresolved_reloc_p = false;
7359ea65
DJ
10456 return _bfd_final_link_relocate (howto, input_bfd, input_section,
10457 contents, rel->r_offset, value,
00a97672 10458 rel->r_addend);
7359ea65
DJ
10459 }
10460
67687978
PB
10461 /* When generating a shared object or relocatable executable, these
10462 relocations are copied into the output file to be resolved at
10463 run time. */
0e1862bb 10464 if ((bfd_link_pic (info)
e8b09b87
CL
10465 || globals->root.is_relocatable_executable
10466 || globals->fdpic_p)
7359ea65 10467 && (input_section->flags & SEC_ALLOC)
90c14f0c 10468 && !(globals->root.target_os == is_vxworks
3348747a
NS
10469 && strcmp (input_section->output_section->name,
10470 ".tls_vars") == 0)
bb224fc3 10471 && ((r_type != R_ARM_REL32 && r_type != R_ARM_REL32_NOI)
ee06dc07 10472 || !SYMBOL_CALLS_LOCAL (info, h))
ca6b5f82
AM
10473 && !(input_bfd == globals->stub_bfd
10474 && strstr (input_section->name, STUB_SUFFIX))
7359ea65 10475 && (h == NULL
95b03e4a
L
10476 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
10477 && !resolved_to_zero)
7359ea65
DJ
10478 || h->root.type != bfd_link_hash_undefweak)
10479 && r_type != R_ARM_PC24
5b5bb741
PB
10480 && r_type != R_ARM_CALL
10481 && r_type != R_ARM_JUMP24
ee06dc07 10482 && r_type != R_ARM_PREL31
7359ea65 10483 && r_type != R_ARM_PLT32)
252b5132 10484 {
947216bf 10485 Elf_Internal_Rela outrel;
0a1b45a2 10486 bool skip, relocate;
e8b09b87 10487 int isrofixup = 0;
f21f3fe0 10488
52db4ec2
JW
10489 if ((r_type == R_ARM_REL32 || r_type == R_ARM_REL32_NOI)
10490 && !h->def_regular)
10491 {
10492 char *v = _("shared object");
10493
0e1862bb 10494 if (bfd_link_executable (info))
52db4ec2
JW
10495 v = _("PIE executable");
10496
4eca0228 10497 _bfd_error_handler
871b3ab2 10498 (_("%pB: relocation %s against external or undefined symbol `%s'"
52db4ec2
JW
10499 " can not be used when making a %s; recompile with -fPIC"), input_bfd,
10500 elf32_arm_howto_table_1[r_type].name, h->root.root.string, v);
10501 return bfd_reloc_notsupported;
10502 }
10503
0a1b45a2 10504 *unresolved_reloc_p = false;
0945cdfd 10505
34e77a92 10506 if (sreloc == NULL && globals->root.dynamic_sections_created)
252b5132 10507 {
83bac4b0
NC
10508 sreloc = _bfd_elf_get_dynamic_reloc_section (input_bfd, input_section,
10509 ! globals->use_rel);
f21f3fe0 10510
83bac4b0 10511 if (sreloc == NULL)
252b5132 10512 return bfd_reloc_notsupported;
252b5132 10513 }
f21f3fe0 10514
0a1b45a2
AM
10515 skip = false;
10516 relocate = false;
f21f3fe0 10517
00a97672 10518 outrel.r_addend = addend;
c629eae0
JJ
10519 outrel.r_offset =
10520 _bfd_elf_section_offset (output_bfd, info, input_section,
10521 rel->r_offset);
10522 if (outrel.r_offset == (bfd_vma) -1)
0a1b45a2 10523 skip = true;
0bb2d96a 10524 else if (outrel.r_offset == (bfd_vma) -2)
0a1b45a2 10525 skip = true, relocate = true;
252b5132
RH
10526 outrel.r_offset += (input_section->output_section->vma
10527 + input_section->output_offset);
f21f3fe0 10528
252b5132 10529 if (skip)
0bb2d96a 10530 memset (&outrel, 0, sizeof outrel);
5e681ec4
PB
10531 else if (h != NULL
10532 && h->dynindx != -1
0e1862bb 10533 && (!bfd_link_pic (info)
1dcb9720
JW
10534 || !(bfd_link_pie (info)
10535 || SYMBOLIC_BIND (info, h))
f5385ebf 10536 || !h->def_regular))
5e681ec4 10537 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
252b5132
RH
10538 else
10539 {
a16385dc
MM
10540 int symbol;
10541
5e681ec4 10542 /* This symbol is local, or marked to become local. */
e8b09b87
CL
10543 BFD_ASSERT (r_type == R_ARM_ABS32 || r_type == R_ARM_ABS32_NOI
10544 || (globals->fdpic_p && !bfd_link_pic(info)));
a57d1773
AM
10545 /* On SVR4-ish systems, the dynamic loader cannot
10546 relocate the text and data segments independently,
10547 so the symbol does not matter. */
10548 symbol = 0;
34e77a92
RS
10549 if (dynreloc_st_type == STT_GNU_IFUNC)
10550 /* We have an STT_GNU_IFUNC symbol that doesn't resolve
10551 to the .iplt entry. Instead, every non-call reference
10552 must use an R_ARM_IRELATIVE relocation to obtain the
10553 correct run-time address. */
10554 outrel.r_info = ELF32_R_INFO (symbol, R_ARM_IRELATIVE);
e8b09b87
CL
10555 else if (globals->fdpic_p && !bfd_link_pic(info))
10556 isrofixup = 1;
34e77a92
RS
10557 else
10558 outrel.r_info = ELF32_R_INFO (symbol, R_ARM_RELATIVE);
00a97672 10559 if (globals->use_rel)
0a1b45a2 10560 relocate = true;
00a97672 10561 else
34e77a92 10562 outrel.r_addend += dynreloc_value;
252b5132 10563 }
f21f3fe0 10564
e8b09b87
CL
10565 if (isrofixup)
10566 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
10567 else
10568 elf32_arm_add_dynreloc (output_bfd, info, sreloc, &outrel);
9a5aca8c 10569
f21f3fe0 10570 /* If this reloc is against an external symbol, we do not want to
252b5132 10571 fiddle with the addend. Otherwise, we need to include the symbol
9b485d32 10572 value so that it becomes an addend for the dynamic reloc. */
252b5132
RH
10573 if (! relocate)
10574 return bfd_reloc_ok;
9a5aca8c 10575
f21f3fe0 10576 return _bfd_final_link_relocate (howto, input_bfd, input_section,
34e77a92
RS
10577 contents, rel->r_offset,
10578 dynreloc_value, (bfd_vma) 0);
252b5132
RH
10579 }
10580 else switch (r_type)
10581 {
00a97672
RS
10582 case R_ARM_ABS12:
10583 return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
10584
dfc5f959 10585 case R_ARM_XPC25: /* Arm BLX instruction. */
5b5bb741
PB
10586 case R_ARM_CALL:
10587 case R_ARM_JUMP24:
8029a119 10588 case R_ARM_PC24: /* Arm B/BL instruction. */
7359ea65 10589 case R_ARM_PLT32:
906e58ca 10590 {
906e58ca
NC
10591 struct elf32_arm_stub_hash_entry *stub_entry = NULL;
10592
dfc5f959 10593 if (r_type == R_ARM_XPC25)
252b5132 10594 {
dfc5f959
NC
10595 /* Check for Arm calling Arm function. */
10596 /* FIXME: Should we translate the instruction into a BL
10597 instruction instead ? */
35fc36a8 10598 if (branch_type != ST_BRANCH_TO_THUMB)
4eca0228 10599 _bfd_error_handler
90b6238f
AM
10600 (_("\%pB: warning: %s BLX instruction targets"
10601 " %s function '%s'"),
10602 input_bfd, "ARM",
10603 "ARM", h ? h->root.root.string : "(local)");
dfc5f959 10604 }
155d87d7 10605 else if (r_type == R_ARM_PC24)
dfc5f959
NC
10606 {
10607 /* Check for Arm calling Thumb function. */
35fc36a8 10608 if (branch_type == ST_BRANCH_TO_THUMB)
dfc5f959 10609 {
f2a9dd69
DJ
10610 if (elf32_arm_to_thumb_stub (info, sym_name, input_bfd,
10611 output_bfd, input_section,
10612 hit_data, sym_sec, rel->r_offset,
10613 signed_addend, value,
10614 error_message))
10615 return bfd_reloc_ok;
10616 else
10617 return bfd_reloc_dangerous;
dfc5f959 10618 }
252b5132 10619 }
ba96a88f 10620
906e58ca 10621 /* Check if a stub has to be inserted because the
8029a119 10622 destination is too far or we are changing mode. */
155d87d7
CL
10623 if ( r_type == R_ARM_CALL
10624 || r_type == R_ARM_JUMP24
10625 || r_type == R_ARM_PLT32)
906e58ca 10626 {
fe33d2fa
CL
10627 enum elf32_arm_stub_type stub_type = arm_stub_none;
10628 struct elf32_arm_link_hash_entry *hash;
10629
10630 hash = (struct elf32_arm_link_hash_entry *) h;
10631 stub_type = arm_type_of_stub (info, input_section, rel,
34e77a92
RS
10632 st_type, &branch_type,
10633 hash, value, sym_sec,
fe33d2fa 10634 input_bfd, sym_name);
5fa9e92f 10635
fe33d2fa 10636 if (stub_type != arm_stub_none)
906e58ca
NC
10637 {
10638 /* The target is out of reach, so redirect the
10639 branch to the local stub for this function. */
906e58ca
NC
10640 stub_entry = elf32_arm_get_stub_entry (input_section,
10641 sym_sec, h,
fe33d2fa
CL
10642 rel, globals,
10643 stub_type);
9cd3e4e5
NC
10644 {
10645 if (stub_entry != NULL)
10646 value = (stub_entry->stub_offset
10647 + stub_entry->stub_sec->output_offset
10648 + stub_entry->stub_sec->output_section->vma);
10649
10650 if (plt_offset != (bfd_vma) -1)
0a1b45a2 10651 *unresolved_reloc_p = false;
9cd3e4e5 10652 }
906e58ca 10653 }
fe33d2fa
CL
10654 else
10655 {
10656 /* If the call goes through a PLT entry, make sure to
10657 check distance to the right destination address. */
34e77a92 10658 if (plt_offset != (bfd_vma) -1)
fe33d2fa
CL
10659 {
10660 value = (splt->output_section->vma
10661 + splt->output_offset
34e77a92 10662 + plt_offset);
0a1b45a2 10663 *unresolved_reloc_p = false;
fe33d2fa
CL
10664 /* The PLT entry is in ARM mode, regardless of the
10665 target function. */
35fc36a8 10666 branch_type = ST_BRANCH_TO_ARM;
fe33d2fa
CL
10667 }
10668 }
906e58ca
NC
10669 }
10670
dea514f5
PB
10671 /* The ARM ELF ABI says that this reloc is computed as: S - P + A
10672 where:
10673 S is the address of the symbol in the relocation.
10674 P is address of the instruction being relocated.
10675 A is the addend (extracted from the instruction) in bytes.
10676
10677 S is held in 'value'.
10678 P is the base address of the section containing the
10679 instruction plus the offset of the reloc into that
10680 section, ie:
10681 (input_section->output_section->vma +
10682 input_section->output_offset +
10683 rel->r_offset).
10684 A is the addend, converted into bytes, ie:
10685 (signed_addend * 4)
10686
10687 Note: None of these operations have knowledge of the pipeline
10688 size of the processor, thus it is up to the assembler to
10689 encode this information into the addend. */
10690 value -= (input_section->output_section->vma
10691 + input_section->output_offset);
10692 value -= rel->r_offset;
d2327e47 10693 value += signed_addend;
23080146 10694
dcb5e6e6
NC
10695 signed_addend = value;
10696 signed_addend >>= howto->rightshift;
9a5aca8c 10697
5ab79981 10698 /* A branch to an undefined weak symbol is turned into a jump to
ffcb4889 10699 the next instruction unless a PLT entry will be created.
77b4f08f 10700 Do the same for local undefined symbols (but not for STN_UNDEF).
cd1dac3d
DG
10701 The jump to the next instruction is optimized as a NOP depending
10702 on the architecture. */
ffcb4889 10703 if (h ? (h->root.type == bfd_link_hash_undefweak
34e77a92 10704 && plt_offset == (bfd_vma) -1)
77b4f08f 10705 : r_symndx != STN_UNDEF && bfd_is_und_section (sym_sec))
5ab79981 10706 {
cd1dac3d
DG
10707 value = (bfd_get_32 (input_bfd, hit_data) & 0xf0000000);
10708
10709 if (arch_has_arm_nop (globals))
10710 value |= 0x0320f000;
10711 else
10712 value |= 0x01a00000; /* Using pre-UAL nop: mov r0, r0. */
5ab79981
PB
10713 }
10714 else
59f2c4e7 10715 {
9b485d32 10716 /* Perform a signed range check. */
dcb5e6e6 10717 if ( signed_addend > ((bfd_signed_vma) (howto->dst_mask >> 1))
59f2c4e7
NC
10718 || signed_addend < - ((bfd_signed_vma) ((howto->dst_mask + 1) >> 1)))
10719 return bfd_reloc_overflow;
9a5aca8c 10720
5ab79981 10721 addend = (value & 2);
39b41c9c 10722
5ab79981
PB
10723 value = (signed_addend & howto->dst_mask)
10724 | (bfd_get_32 (input_bfd, hit_data) & (~ howto->dst_mask));
39b41c9c 10725
5ab79981
PB
10726 if (r_type == R_ARM_CALL)
10727 {
155d87d7 10728 /* Set the H bit in the BLX instruction. */
35fc36a8 10729 if (branch_type == ST_BRANCH_TO_THUMB)
155d87d7
CL
10730 {
10731 if (addend)
10732 value |= (1 << 24);
10733 else
10734 value &= ~(bfd_vma)(1 << 24);
10735 }
10736
5ab79981 10737 /* Select the correct instruction (BL or BLX). */
906e58ca 10738 /* Only if we are not handling a BL to a stub. In this
8029a119 10739 case, mode switching is performed by the stub. */
35fc36a8 10740 if (branch_type == ST_BRANCH_TO_THUMB && !stub_entry)
5ab79981 10741 value |= (1 << 28);
63e1a0fc 10742 else if (stub_entry || branch_type != ST_BRANCH_UNKNOWN)
5ab79981
PB
10743 {
10744 value &= ~(bfd_vma)(1 << 28);
10745 value |= (1 << 24);
10746 }
39b41c9c
PB
10747 }
10748 }
906e58ca 10749 }
252b5132 10750 break;
f21f3fe0 10751
252b5132
RH
10752 case R_ARM_ABS32:
10753 value += addend;
35fc36a8 10754 if (branch_type == ST_BRANCH_TO_THUMB)
252b5132
RH
10755 value |= 1;
10756 break;
f21f3fe0 10757
bb224fc3
MS
10758 case R_ARM_ABS32_NOI:
10759 value += addend;
10760 break;
10761
252b5132 10762 case R_ARM_REL32:
a8bc6c78 10763 value += addend;
35fc36a8 10764 if (branch_type == ST_BRANCH_TO_THUMB)
a8bc6c78 10765 value |= 1;
252b5132 10766 value -= (input_section->output_section->vma
62efb346 10767 + input_section->output_offset + rel->r_offset);
252b5132 10768 break;
eb043451 10769
bb224fc3
MS
10770 case R_ARM_REL32_NOI:
10771 value += addend;
10772 value -= (input_section->output_section->vma
10773 + input_section->output_offset + rel->r_offset);
10774 break;
10775
eb043451
PB
10776 case R_ARM_PREL31:
10777 value -= (input_section->output_section->vma
10778 + input_section->output_offset + rel->r_offset);
10779 value += signed_addend;
10780 if (! h || h->root.type != bfd_link_hash_undefweak)
10781 {
8029a119 10782 /* Check for overflow. */
eb043451
PB
10783 if ((value ^ (value >> 1)) & (1 << 30))
10784 return bfd_reloc_overflow;
10785 }
10786 value &= 0x7fffffff;
10787 value |= (bfd_get_32 (input_bfd, hit_data) & 0x80000000);
35fc36a8 10788 if (branch_type == ST_BRANCH_TO_THUMB)
eb043451
PB
10789 value |= 1;
10790 break;
252b5132 10791 }
f21f3fe0 10792
252b5132
RH
10793 bfd_put_32 (input_bfd, value, hit_data);
10794 return bfd_reloc_ok;
10795
10796 case R_ARM_ABS8:
10797 value += addend;
4e67d4ca
DG
10798
10799 /* There is no way to tell whether the user intended to use a signed or
10800 unsigned addend. When checking for overflow we accept either,
10801 as specified by the AAELF. */
10802 if ((long) value > 0xff || (long) value < -0x80)
252b5132
RH
10803 return bfd_reloc_overflow;
10804
10805 bfd_put_8 (input_bfd, value, hit_data);
10806 return bfd_reloc_ok;
10807
10808 case R_ARM_ABS16:
10809 value += addend;
10810
4e67d4ca
DG
10811 /* See comment for R_ARM_ABS8. */
10812 if ((long) value > 0xffff || (long) value < -0x8000)
252b5132
RH
10813 return bfd_reloc_overflow;
10814
10815 bfd_put_16 (input_bfd, value, hit_data);
10816 return bfd_reloc_ok;
10817
252b5132 10818 case R_ARM_THM_ABS5:
9b485d32 10819 /* Support ldr and str instructions for the thumb. */
4e7fd91e
PB
10820 if (globals->use_rel)
10821 {
10822 /* Need to refetch addend. */
10823 addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
10824 /* ??? Need to determine shift amount from operand size. */
10825 addend >>= howto->rightshift;
10826 }
252b5132
RH
10827 value += addend;
10828
10829 /* ??? Isn't value unsigned? */
10830 if ((long) value > 0x1f || (long) value < -0x10)
10831 return bfd_reloc_overflow;
10832
10833 /* ??? Value needs to be properly shifted into place first. */
10834 value |= bfd_get_16 (input_bfd, hit_data) & 0xf83f;
10835 bfd_put_16 (input_bfd, value, hit_data);
10836 return bfd_reloc_ok;
10837
2cab6cc3
MS
10838 case R_ARM_THM_ALU_PREL_11_0:
10839 /* Corresponds to: addw.w reg, pc, #offset (and similarly for subw). */
10840 {
10841 bfd_vma insn;
10842 bfd_signed_vma relocation;
10843
10844 insn = (bfd_get_16 (input_bfd, hit_data) << 16)
99059e56 10845 | bfd_get_16 (input_bfd, hit_data + 2);
2cab6cc3 10846
99059e56
RM
10847 if (globals->use_rel)
10848 {
10849 signed_addend = (insn & 0xff) | ((insn & 0x7000) >> 4)
10850 | ((insn & (1 << 26)) >> 15);
10851 if (insn & 0xf00000)
10852 signed_addend = -signed_addend;
10853 }
2cab6cc3
MS
10854
10855 relocation = value + signed_addend;
79f08007 10856 relocation -= Pa (input_section->output_section->vma
99059e56
RM
10857 + input_section->output_offset
10858 + rel->r_offset);
2cab6cc3 10859
8c65b54f
CS
10860 /* PR 21523: Use an absolute value. The user of this reloc will
10861 have already selected an ADD or SUB insn appropriately. */
453f8e1e 10862 value = llabs (relocation);
2cab6cc3 10863
99059e56
RM
10864 if (value >= 0x1000)
10865 return bfd_reloc_overflow;
2cab6cc3 10866
e645cf40
AG
10867 /* Destination is Thumb. Force bit 0 to 1 to reflect this. */
10868 if (branch_type == ST_BRANCH_TO_THUMB)
10869 value |= 1;
10870
2cab6cc3 10871 insn = (insn & 0xfb0f8f00) | (value & 0xff)
99059e56
RM
10872 | ((value & 0x700) << 4)
10873 | ((value & 0x800) << 15);
10874 if (relocation < 0)
10875 insn |= 0xa00000;
2cab6cc3
MS
10876
10877 bfd_put_16 (input_bfd, insn >> 16, hit_data);
10878 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
10879
99059e56 10880 return bfd_reloc_ok;
2cab6cc3
MS
10881 }
10882
e1ec24c6
NC
10883 case R_ARM_THM_PC8:
10884 /* PR 10073: This reloc is not generated by the GNU toolchain,
10885 but it is supported for compatibility with third party libraries
10886 generated by other compilers, specifically the ARM/IAR. */
10887 {
10888 bfd_vma insn;
10889 bfd_signed_vma relocation;
10890
10891 insn = bfd_get_16 (input_bfd, hit_data);
10892
99059e56 10893 if (globals->use_rel)
79f08007 10894 addend = ((((insn & 0x00ff) << 2) + 4) & 0x3ff) -4;
e1ec24c6
NC
10895
10896 relocation = value + addend;
79f08007 10897 relocation -= Pa (input_section->output_section->vma
99059e56
RM
10898 + input_section->output_offset
10899 + rel->r_offset);
e1ec24c6 10900
b6518b38 10901 value = relocation;
e1ec24c6
NC
10902
10903 /* We do not check for overflow of this reloc. Although strictly
10904 speaking this is incorrect, it appears to be necessary in order
10905 to work with IAR generated relocs. Since GCC and GAS do not
10906 generate R_ARM_THM_PC8 relocs, the lack of a check should not be
10907 a problem for them. */
10908 value &= 0x3fc;
10909
10910 insn = (insn & 0xff00) | (value >> 2);
10911
10912 bfd_put_16 (input_bfd, insn, hit_data);
10913
99059e56 10914 return bfd_reloc_ok;
e1ec24c6
NC
10915 }
10916
2cab6cc3
MS
10917 case R_ARM_THM_PC12:
10918 /* Corresponds to: ldr.w reg, [pc, #offset]. */
10919 {
10920 bfd_vma insn;
10921 bfd_signed_vma relocation;
10922
10923 insn = (bfd_get_16 (input_bfd, hit_data) << 16)
99059e56 10924 | bfd_get_16 (input_bfd, hit_data + 2);
2cab6cc3 10925
99059e56
RM
10926 if (globals->use_rel)
10927 {
10928 signed_addend = insn & 0xfff;
10929 if (!(insn & (1 << 23)))
10930 signed_addend = -signed_addend;
10931 }
2cab6cc3
MS
10932
10933 relocation = value + signed_addend;
79f08007 10934 relocation -= Pa (input_section->output_section->vma
99059e56
RM
10935 + input_section->output_offset
10936 + rel->r_offset);
2cab6cc3 10937
b6518b38 10938 value = relocation;
2cab6cc3 10939
99059e56
RM
10940 if (value >= 0x1000)
10941 return bfd_reloc_overflow;
2cab6cc3
MS
10942
10943 insn = (insn & 0xff7ff000) | value;
99059e56
RM
10944 if (relocation >= 0)
10945 insn |= (1 << 23);
2cab6cc3
MS
10946
10947 bfd_put_16 (input_bfd, insn >> 16, hit_data);
10948 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
10949
99059e56 10950 return bfd_reloc_ok;
2cab6cc3
MS
10951 }
10952
dfc5f959 10953 case R_ARM_THM_XPC22:
c19d1205 10954 case R_ARM_THM_CALL:
bd97cb95 10955 case R_ARM_THM_JUMP24:
dfc5f959 10956 /* Thumb BL (branch long instruction). */
252b5132 10957 {
b34976b6 10958 bfd_vma relocation;
99059e56 10959 bfd_vma reloc_sign;
0a1b45a2 10960 bool overflow = false;
b34976b6
AM
10961 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
10962 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
e95de063
MS
10963 bfd_signed_vma reloc_signed_max;
10964 bfd_signed_vma reloc_signed_min;
b34976b6 10965 bfd_vma check;
252b5132 10966 bfd_signed_vma signed_check;
e95de063 10967 int bitsize;
cd1dac3d 10968 const int thumb2 = using_thumb2 (globals);
5e866f5a 10969 const int thumb2_bl = using_thumb2_bl (globals);
252b5132 10970
5ab79981 10971 /* A branch to an undefined weak symbol is turned into a jump to
cd1dac3d
DG
10972 the next instruction unless a PLT entry will be created.
10973 The jump to the next instruction is optimized as a NOP.W for
10974 Thumb-2 enabled architectures. */
19540007 10975 if (h && h->root.type == bfd_link_hash_undefweak
34e77a92 10976 && plt_offset == (bfd_vma) -1)
5ab79981 10977 {
60a019a0 10978 if (thumb2)
cd1dac3d
DG
10979 {
10980 bfd_put_16 (input_bfd, 0xf3af, hit_data);
10981 bfd_put_16 (input_bfd, 0x8000, hit_data + 2);
10982 }
10983 else
10984 {
10985 bfd_put_16 (input_bfd, 0xe000, hit_data);
10986 bfd_put_16 (input_bfd, 0xbf00, hit_data + 2);
10987 }
5ab79981
PB
10988 return bfd_reloc_ok;
10989 }
10990
e95de063 10991 /* Fetch the addend. We use the Thumb-2 encoding (backwards compatible
99059e56 10992 with Thumb-1) involving the J1 and J2 bits. */
4e7fd91e
PB
10993 if (globals->use_rel)
10994 {
99059e56
RM
10995 bfd_vma s = (upper_insn & (1 << 10)) >> 10;
10996 bfd_vma upper = upper_insn & 0x3ff;
10997 bfd_vma lower = lower_insn & 0x7ff;
e95de063
MS
10998 bfd_vma j1 = (lower_insn & (1 << 13)) >> 13;
10999 bfd_vma j2 = (lower_insn & (1 << 11)) >> 11;
99059e56
RM
11000 bfd_vma i1 = j1 ^ s ? 0 : 1;
11001 bfd_vma i2 = j2 ^ s ? 0 : 1;
e95de063 11002
99059e56
RM
11003 addend = (i1 << 23) | (i2 << 22) | (upper << 12) | (lower << 1);
11004 /* Sign extend. */
11005 addend = (addend | ((s ? 0 : 1) << 24)) - (1 << 24);
e95de063 11006
4e7fd91e
PB
11007 signed_addend = addend;
11008 }
cb1afa5c 11009
dfc5f959
NC
11010 if (r_type == R_ARM_THM_XPC22)
11011 {
11012 /* Check for Thumb to Thumb call. */
11013 /* FIXME: Should we translate the instruction into a BL
11014 instruction instead ? */
35fc36a8 11015 if (branch_type == ST_BRANCH_TO_THUMB)
4eca0228 11016 _bfd_error_handler
90b6238f
AM
11017 (_("%pB: warning: %s BLX instruction targets"
11018 " %s function '%s'"),
11019 input_bfd, "Thumb",
11020 "Thumb", h ? h->root.root.string : "(local)");
dfc5f959
NC
11021 }
11022 else
252b5132 11023 {
dfc5f959
NC
11024 /* If it is not a call to Thumb, assume call to Arm.
11025 If it is a call relative to a section name, then it is not a
b7693d02
DJ
11026 function call at all, but rather a long jump. Calls through
11027 the PLT do not require stubs. */
34e77a92 11028 if (branch_type == ST_BRANCH_TO_ARM && plt_offset == (bfd_vma) -1)
dfc5f959 11029 {
bd97cb95 11030 if (globals->use_blx && r_type == R_ARM_THM_CALL)
39b41c9c
PB
11031 {
11032 /* Convert BL to BLX. */
11033 lower_insn = (lower_insn & ~0x1000) | 0x0800;
11034 }
155d87d7
CL
11035 else if (( r_type != R_ARM_THM_CALL)
11036 && (r_type != R_ARM_THM_JUMP24))
8029a119
NC
11037 {
11038 if (elf32_thumb_to_arm_stub
11039 (info, sym_name, input_bfd, output_bfd, input_section,
11040 hit_data, sym_sec, rel->r_offset, signed_addend, value,
11041 error_message))
11042 return bfd_reloc_ok;
11043 else
11044 return bfd_reloc_dangerous;
11045 }
da5938a2 11046 }
35fc36a8
RS
11047 else if (branch_type == ST_BRANCH_TO_THUMB
11048 && globals->use_blx
bd97cb95 11049 && r_type == R_ARM_THM_CALL)
39b41c9c
PB
11050 {
11051 /* Make sure this is a BL. */
11052 lower_insn |= 0x1800;
11053 }
252b5132 11054 }
f21f3fe0 11055
fe33d2fa 11056 enum elf32_arm_stub_type stub_type = arm_stub_none;
155d87d7 11057 if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24)
906e58ca
NC
11058 {
11059 /* Check if a stub has to be inserted because the destination
8029a119 11060 is too far. */
fe33d2fa
CL
11061 struct elf32_arm_stub_hash_entry *stub_entry;
11062 struct elf32_arm_link_hash_entry *hash;
11063
11064 hash = (struct elf32_arm_link_hash_entry *) h;
11065
11066 stub_type = arm_type_of_stub (info, input_section, rel,
34e77a92
RS
11067 st_type, &branch_type,
11068 hash, value, sym_sec,
fe33d2fa
CL
11069 input_bfd, sym_name);
11070
11071 if (stub_type != arm_stub_none)
906e58ca
NC
11072 {
11073 /* The target is out of reach or we are changing modes, so
11074 redirect the branch to the local stub for this
11075 function. */
11076 stub_entry = elf32_arm_get_stub_entry (input_section,
11077 sym_sec, h,
fe33d2fa
CL
11078 rel, globals,
11079 stub_type);
906e58ca 11080 if (stub_entry != NULL)
9cd3e4e5
NC
11081 {
11082 value = (stub_entry->stub_offset
11083 + stub_entry->stub_sec->output_offset
11084 + stub_entry->stub_sec->output_section->vma);
11085
11086 if (plt_offset != (bfd_vma) -1)
0a1b45a2 11087 *unresolved_reloc_p = false;
9cd3e4e5 11088 }
906e58ca 11089
f4ac8484 11090 /* If this call becomes a call to Arm, force BLX. */
155d87d7 11091 if (globals->use_blx && (r_type == R_ARM_THM_CALL))
f4ac8484
DJ
11092 {
11093 if ((stub_entry
11094 && !arm_stub_is_thumb (stub_entry->stub_type))
35fc36a8 11095 || branch_type != ST_BRANCH_TO_THUMB)
f4ac8484
DJ
11096 lower_insn = (lower_insn & ~0x1000) | 0x0800;
11097 }
906e58ca
NC
11098 }
11099 }
11100
fe33d2fa 11101 /* Handle calls via the PLT. */
34e77a92 11102 if (stub_type == arm_stub_none && plt_offset != (bfd_vma) -1)
fe33d2fa
CL
11103 {
11104 value = (splt->output_section->vma
11105 + splt->output_offset
34e77a92 11106 + plt_offset);
fe33d2fa 11107
eed94f8f
NC
11108 if (globals->use_blx
11109 && r_type == R_ARM_THM_CALL
11110 && ! using_thumb_only (globals))
fe33d2fa
CL
11111 {
11112 /* If the Thumb BLX instruction is available, convert
11113 the BL to a BLX instruction to call the ARM-mode
11114 PLT entry. */
11115 lower_insn = (lower_insn & ~0x1000) | 0x0800;
35fc36a8 11116 branch_type = ST_BRANCH_TO_ARM;
fe33d2fa
CL
11117 }
11118 else
11119 {
eed94f8f
NC
11120 if (! using_thumb_only (globals))
11121 /* Target the Thumb stub before the ARM PLT entry. */
11122 value -= PLT_THUMB_STUB_SIZE;
35fc36a8 11123 branch_type = ST_BRANCH_TO_THUMB;
fe33d2fa 11124 }
0a1b45a2 11125 *unresolved_reloc_p = false;
fe33d2fa
CL
11126 }
11127
ba96a88f 11128 relocation = value + signed_addend;
f21f3fe0 11129
252b5132 11130 relocation -= (input_section->output_section->vma
ba96a88f
NC
11131 + input_section->output_offset
11132 + rel->r_offset);
9a5aca8c 11133
252b5132
RH
11134 check = relocation >> howto->rightshift;
11135
11136 /* If this is a signed value, the rightshift just dropped
11137 leading 1 bits (assuming twos complement). */
11138 if ((bfd_signed_vma) relocation >= 0)
11139 signed_check = check;
11140 else
11141 signed_check = check | ~((bfd_vma) -1 >> howto->rightshift);
11142
e95de063
MS
11143 /* Calculate the permissable maximum and minimum values for
11144 this relocation according to whether we're relocating for
11145 Thumb-2 or not. */
11146 bitsize = howto->bitsize;
5e866f5a 11147 if (!thumb2_bl)
e95de063 11148 bitsize -= 2;
f6ebfac0 11149 reloc_signed_max = (1 << (bitsize - 1)) - 1;
e95de063
MS
11150 reloc_signed_min = ~reloc_signed_max;
11151
252b5132 11152 /* Assumes two's complement. */
ba96a88f 11153 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
0a1b45a2 11154 overflow = true;
252b5132 11155
bd97cb95 11156 if ((lower_insn & 0x5000) == 0x4000)
c62e1cc3
NC
11157 /* For a BLX instruction, make sure that the relocation is rounded up
11158 to a word boundary. This follows the semantics of the instruction
11159 which specifies that bit 1 of the target address will come from bit
11160 1 of the base address. */
11161 relocation = (relocation + 2) & ~ 3;
cb1afa5c 11162
e95de063
MS
11163 /* Put RELOCATION back into the insn. Assumes two's complement.
11164 We use the Thumb-2 encoding, which is safe even if dealing with
11165 a Thumb-1 instruction by virtue of our overflow check above. */
99059e56 11166 reloc_sign = (signed_check < 0) ? 1 : 0;
e95de063 11167 upper_insn = (upper_insn & ~(bfd_vma) 0x7ff)
99059e56
RM
11168 | ((relocation >> 12) & 0x3ff)
11169 | (reloc_sign << 10);
906e58ca 11170 lower_insn = (lower_insn & ~(bfd_vma) 0x2fff)
99059e56
RM
11171 | (((!((relocation >> 23) & 1)) ^ reloc_sign) << 13)
11172 | (((!((relocation >> 22) & 1)) ^ reloc_sign) << 11)
11173 | ((relocation >> 1) & 0x7ff);
c62e1cc3 11174
252b5132
RH
11175 /* Put the relocated value back in the object file: */
11176 bfd_put_16 (input_bfd, upper_insn, hit_data);
11177 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11178
11179 return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11180 }
11181 break;
11182
c19d1205
ZW
11183 case R_ARM_THM_JUMP19:
11184 /* Thumb32 conditional branch instruction. */
11185 {
11186 bfd_vma relocation;
0a1b45a2 11187 bool overflow = false;
c19d1205
ZW
11188 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
11189 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
a00a1f35
MS
11190 bfd_signed_vma reloc_signed_max = 0xffffe;
11191 bfd_signed_vma reloc_signed_min = -0x100000;
c19d1205 11192 bfd_signed_vma signed_check;
07d6d2b8 11193 enum elf32_arm_stub_type stub_type = arm_stub_none;
c5423981
TG
11194 struct elf32_arm_stub_hash_entry *stub_entry;
11195 struct elf32_arm_link_hash_entry *hash;
c19d1205
ZW
11196
11197 /* Need to refetch the addend, reconstruct the top three bits,
11198 and squish the two 11 bit pieces together. */
11199 if (globals->use_rel)
11200 {
11201 bfd_vma S = (upper_insn & 0x0400) >> 10;
a00a1f35 11202 bfd_vma upper = (upper_insn & 0x003f);
c19d1205
ZW
11203 bfd_vma J1 = (lower_insn & 0x2000) >> 13;
11204 bfd_vma J2 = (lower_insn & 0x0800) >> 11;
11205 bfd_vma lower = (lower_insn & 0x07ff);
11206
a00a1f35
MS
11207 upper |= J1 << 6;
11208 upper |= J2 << 7;
11209 upper |= (!S) << 8;
c19d1205
ZW
11210 upper -= 0x0100; /* Sign extend. */
11211
11212 addend = (upper << 12) | (lower << 1);
11213 signed_addend = addend;
11214 }
11215
bd97cb95 11216 /* Handle calls via the PLT. */
34e77a92 11217 if (plt_offset != (bfd_vma) -1)
bd97cb95
DJ
11218 {
11219 value = (splt->output_section->vma
11220 + splt->output_offset
34e77a92 11221 + plt_offset);
bd97cb95
DJ
11222 /* Target the Thumb stub before the ARM PLT entry. */
11223 value -= PLT_THUMB_STUB_SIZE;
0a1b45a2 11224 *unresolved_reloc_p = false;
bd97cb95
DJ
11225 }
11226
c5423981
TG
11227 hash = (struct elf32_arm_link_hash_entry *)h;
11228
11229 stub_type = arm_type_of_stub (info, input_section, rel,
07d6d2b8
AM
11230 st_type, &branch_type,
11231 hash, value, sym_sec,
11232 input_bfd, sym_name);
c5423981
TG
11233 if (stub_type != arm_stub_none)
11234 {
11235 stub_entry = elf32_arm_get_stub_entry (input_section,
07d6d2b8
AM
11236 sym_sec, h,
11237 rel, globals,
11238 stub_type);
c5423981
TG
11239 if (stub_entry != NULL)
11240 {
07d6d2b8
AM
11241 value = (stub_entry->stub_offset
11242 + stub_entry->stub_sec->output_offset
11243 + stub_entry->stub_sec->output_section->vma);
c5423981
TG
11244 }
11245 }
c19d1205 11246
99059e56 11247 relocation = value + signed_addend;
c19d1205
ZW
11248 relocation -= (input_section->output_section->vma
11249 + input_section->output_offset
11250 + rel->r_offset);
a00a1f35 11251 signed_check = (bfd_signed_vma) relocation;
c19d1205 11252
c19d1205 11253 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
0a1b45a2 11254 overflow = true;
c19d1205
ZW
11255
11256 /* Put RELOCATION back into the insn. */
11257 {
11258 bfd_vma S = (relocation & 0x00100000) >> 20;
11259 bfd_vma J2 = (relocation & 0x00080000) >> 19;
11260 bfd_vma J1 = (relocation & 0x00040000) >> 18;
11261 bfd_vma hi = (relocation & 0x0003f000) >> 12;
11262 bfd_vma lo = (relocation & 0x00000ffe) >> 1;
11263
a00a1f35 11264 upper_insn = (upper_insn & 0xfbc0) | (S << 10) | hi;
c19d1205
ZW
11265 lower_insn = (lower_insn & 0xd000) | (J1 << 13) | (J2 << 11) | lo;
11266 }
11267
11268 /* Put the relocated value back in the object file: */
11269 bfd_put_16 (input_bfd, upper_insn, hit_data);
11270 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11271
11272 return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11273 }
11274
11275 case R_ARM_THM_JUMP11:
11276 case R_ARM_THM_JUMP8:
11277 case R_ARM_THM_JUMP6:
51c5503b
NC
11278 /* Thumb B (branch) instruction). */
11279 {
6cf9e9fe 11280 bfd_signed_vma relocation;
51c5503b
NC
11281 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1;
11282 bfd_signed_vma reloc_signed_min = ~ reloc_signed_max;
51c5503b
NC
11283 bfd_signed_vma signed_check;
11284
c19d1205
ZW
11285 /* CZB cannot jump backward. */
11286 if (r_type == R_ARM_THM_JUMP6)
6cf9e9fe 11287 {
d2327e47
AM
11288 reloc_signed_min = 0;
11289 if (globals->use_rel)
11290 signed_addend = ((addend & 0x200) >> 3) | ((addend & 0xf8) >> 2);
6cf9e9fe 11291 }
d2327e47 11292
6cf9e9fe 11293 relocation = value + signed_addend;
51c5503b
NC
11294
11295 relocation -= (input_section->output_section->vma
11296 + input_section->output_offset
11297 + rel->r_offset);
11298
6cf9e9fe
NC
11299 relocation >>= howto->rightshift;
11300 signed_check = relocation;
c19d1205
ZW
11301
11302 if (r_type == R_ARM_THM_JUMP6)
11303 relocation = ((relocation & 0x0020) << 4) | ((relocation & 0x001f) << 3);
11304 else
11305 relocation &= howto->dst_mask;
51c5503b 11306 relocation |= (bfd_get_16 (input_bfd, hit_data) & (~ howto->dst_mask));
cedb70c5 11307
51c5503b
NC
11308 bfd_put_16 (input_bfd, relocation, hit_data);
11309
11310 /* Assumes two's complement. */
11311 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11312 return bfd_reloc_overflow;
11313
11314 return bfd_reloc_ok;
11315 }
cedb70c5 11316
8375c36b
PB
11317 case R_ARM_ALU_PCREL7_0:
11318 case R_ARM_ALU_PCREL15_8:
11319 case R_ARM_ALU_PCREL23_15:
11320 {
11321 bfd_vma insn;
11322 bfd_vma relocation;
11323
11324 insn = bfd_get_32 (input_bfd, hit_data);
4e7fd91e
PB
11325 if (globals->use_rel)
11326 {
11327 /* Extract the addend. */
11328 addend = (insn & 0xff) << ((insn & 0xf00) >> 7);
11329 signed_addend = addend;
11330 }
8375c36b
PB
11331 relocation = value + signed_addend;
11332
11333 relocation -= (input_section->output_section->vma
11334 + input_section->output_offset
11335 + rel->r_offset);
11336 insn = (insn & ~0xfff)
11337 | ((howto->bitpos << 7) & 0xf00)
11338 | ((relocation >> howto->bitpos) & 0xff);
11339 bfd_put_32 (input_bfd, value, hit_data);
11340 }
11341 return bfd_reloc_ok;
11342
252b5132
RH
11343 case R_ARM_GNU_VTINHERIT:
11344 case R_ARM_GNU_VTENTRY:
11345 return bfd_reloc_ok;
11346
c19d1205 11347 case R_ARM_GOTOFF32:
252b5132 11348 /* Relocation is relative to the start of the
99059e56 11349 global offset table. */
252b5132
RH
11350
11351 BFD_ASSERT (sgot != NULL);
11352 if (sgot == NULL)
99059e56 11353 return bfd_reloc_notsupported;
9a5aca8c 11354
cedb70c5 11355 /* If we are addressing a Thumb function, we need to adjust the
ee29b9fb
RE
11356 address by one, so that attempts to call the function pointer will
11357 correctly interpret it as Thumb code. */
35fc36a8 11358 if (branch_type == ST_BRANCH_TO_THUMB)
ee29b9fb
RE
11359 value += 1;
11360
252b5132 11361 /* Note that sgot->output_offset is not involved in this
99059e56
RM
11362 calculation. We always want the start of .got. If we
11363 define _GLOBAL_OFFSET_TABLE in a different way, as is
11364 permitted by the ABI, we might have to change this
11365 calculation. */
252b5132 11366 value -= sgot->output_section->vma;
f21f3fe0 11367 return _bfd_final_link_relocate (howto, input_bfd, input_section,
99e4ae17 11368 contents, rel->r_offset, value,
00a97672 11369 rel->r_addend);
252b5132
RH
11370
11371 case R_ARM_GOTPC:
a7c10850 11372 /* Use global offset table as symbol value. */
252b5132 11373 BFD_ASSERT (sgot != NULL);
f21f3fe0 11374
252b5132 11375 if (sgot == NULL)
99059e56 11376 return bfd_reloc_notsupported;
252b5132 11377
0a1b45a2 11378 *unresolved_reloc_p = false;
252b5132 11379 value = sgot->output_section->vma;
f21f3fe0 11380 return _bfd_final_link_relocate (howto, input_bfd, input_section,
99e4ae17 11381 contents, rel->r_offset, value,
00a97672 11382 rel->r_addend);
f21f3fe0 11383
252b5132 11384 case R_ARM_GOT32:
eb043451 11385 case R_ARM_GOT_PREL:
252b5132 11386 /* Relocation is to the entry for this symbol in the
99059e56 11387 global offset table. */
252b5132
RH
11388 if (sgot == NULL)
11389 return bfd_reloc_notsupported;
f21f3fe0 11390
34e77a92
RS
11391 if (dynreloc_st_type == STT_GNU_IFUNC
11392 && plt_offset != (bfd_vma) -1
11393 && (h == NULL || SYMBOL_REFERENCES_LOCAL (info, h)))
11394 {
11395 /* We have a relocation against a locally-binding STT_GNU_IFUNC
11396 symbol, and the relocation resolves directly to the runtime
11397 target rather than to the .iplt entry. This means that any
11398 .got entry would be the same value as the .igot.plt entry,
11399 so there's no point creating both. */
11400 sgot = globals->root.igotplt;
11401 value = sgot->output_offset + gotplt_offset;
11402 }
11403 else if (h != NULL)
252b5132
RH
11404 {
11405 bfd_vma off;
f21f3fe0 11406
252b5132
RH
11407 off = h->got.offset;
11408 BFD_ASSERT (off != (bfd_vma) -1);
b436d854 11409 if ((off & 1) != 0)
252b5132 11410 {
b436d854
RS
11411 /* We have already processsed one GOT relocation against
11412 this symbol. */
11413 off &= ~1;
11414 if (globals->root.dynamic_sections_created
11415 && !SYMBOL_REFERENCES_LOCAL (info, h))
0a1b45a2 11416 *unresolved_reloc_p = false;
b436d854
RS
11417 }
11418 else
11419 {
11420 Elf_Internal_Rela outrel;
e8b09b87 11421 int isrofixup = 0;
b436d854 11422
e8b09b87
CL
11423 if (((h->dynindx != -1) || globals->fdpic_p)
11424 && !SYMBOL_REFERENCES_LOCAL (info, h))
b436d854
RS
11425 {
11426 /* If the symbol doesn't resolve locally in a static
11427 object, we have an undefined reference. If the
11428 symbol doesn't resolve locally in a dynamic object,
11429 it should be resolved by the dynamic linker. */
11430 if (globals->root.dynamic_sections_created)
11431 {
11432 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_GLOB_DAT);
0a1b45a2 11433 *unresolved_reloc_p = false;
b436d854
RS
11434 }
11435 else
11436 outrel.r_info = 0;
11437 outrel.r_addend = 0;
11438 }
252b5132
RH
11439 else
11440 {
34e77a92 11441 if (dynreloc_st_type == STT_GNU_IFUNC)
99059e56 11442 outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
5025eb7c 11443 else if (bfd_link_pic (info)
7f026732 11444 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
99059e56
RM
11445 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11446 else
2376f038
EB
11447 {
11448 outrel.r_info = 0;
11449 if (globals->fdpic_p)
11450 isrofixup = 1;
11451 }
34e77a92 11452 outrel.r_addend = dynreloc_value;
b436d854 11453 }
ee29b9fb 11454
b436d854
RS
11455 /* The GOT entry is initialized to zero by default.
11456 See if we should install a different value. */
11457 if (outrel.r_addend != 0
2376f038 11458 && (globals->use_rel || outrel.r_info == 0))
b436d854
RS
11459 {
11460 bfd_put_32 (output_bfd, outrel.r_addend,
11461 sgot->contents + off);
11462 outrel.r_addend = 0;
252b5132 11463 }
f21f3fe0 11464
2376f038
EB
11465 if (isrofixup)
11466 arm_elf_add_rofixup (output_bfd,
11467 elf32_arm_hash_table(info)->srofixup,
11468 sgot->output_section->vma
11469 + sgot->output_offset + off);
11470
11471 else if (outrel.r_info != 0)
b436d854
RS
11472 {
11473 outrel.r_offset = (sgot->output_section->vma
11474 + sgot->output_offset
11475 + off);
11476 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11477 }
2376f038 11478
b436d854
RS
11479 h->got.offset |= 1;
11480 }
252b5132
RH
11481 value = sgot->output_offset + off;
11482 }
11483 else
11484 {
11485 bfd_vma off;
f21f3fe0 11486
5025eb7c
AO
11487 BFD_ASSERT (local_got_offsets != NULL
11488 && local_got_offsets[r_symndx] != (bfd_vma) -1);
f21f3fe0 11489
252b5132 11490 off = local_got_offsets[r_symndx];
f21f3fe0 11491
252b5132
RH
11492 /* The offset must always be a multiple of 4. We use the
11493 least significant bit to record whether we have already
9b485d32 11494 generated the necessary reloc. */
252b5132
RH
11495 if ((off & 1) != 0)
11496 off &= ~1;
11497 else
11498 {
2376f038
EB
11499 Elf_Internal_Rela outrel;
11500 int isrofixup = 0;
f21f3fe0 11501
2376f038
EB
11502 if (dynreloc_st_type == STT_GNU_IFUNC)
11503 outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
11504 else if (bfd_link_pic (info))
11505 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11506 else
252b5132 11507 {
2376f038
EB
11508 outrel.r_info = 0;
11509 if (globals->fdpic_p)
11510 isrofixup = 1;
11511 }
11512
11513 /* The GOT entry is initialized to zero by default.
11514 See if we should install a different value. */
11515 if (globals->use_rel || outrel.r_info == 0)
11516 bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + off);
11517
11518 if (isrofixup)
11519 arm_elf_add_rofixup (output_bfd,
11520 globals->srofixup,
11521 sgot->output_section->vma
11522 + sgot->output_offset + off);
f21f3fe0 11523
2376f038
EB
11524 else if (outrel.r_info != 0)
11525 {
34e77a92 11526 outrel.r_addend = addend + dynreloc_value;
252b5132 11527 outrel.r_offset = (sgot->output_section->vma
f21f3fe0 11528 + sgot->output_offset
252b5132 11529 + off);
47beaa6a 11530 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
252b5132 11531 }
f21f3fe0 11532
252b5132
RH
11533 local_got_offsets[r_symndx] |= 1;
11534 }
f21f3fe0 11535
252b5132
RH
11536 value = sgot->output_offset + off;
11537 }
eb043451
PB
11538 if (r_type != R_ARM_GOT32)
11539 value += sgot->output_section->vma;
9a5aca8c 11540
f21f3fe0 11541 return _bfd_final_link_relocate (howto, input_bfd, input_section,
99e4ae17 11542 contents, rel->r_offset, value,
00a97672 11543 rel->r_addend);
f21f3fe0 11544
ba93b8ac
DJ
11545 case R_ARM_TLS_LDO32:
11546 value = value - dtpoff_base (info);
11547
11548 return _bfd_final_link_relocate (howto, input_bfd, input_section,
00a97672
RS
11549 contents, rel->r_offset, value,
11550 rel->r_addend);
ba93b8ac
DJ
11551
11552 case R_ARM_TLS_LDM32:
5c5a4843 11553 case R_ARM_TLS_LDM32_FDPIC:
ba93b8ac
DJ
11554 {
11555 bfd_vma off;
11556
362d30a1 11557 if (sgot == NULL)
ba93b8ac
DJ
11558 abort ();
11559
11560 off = globals->tls_ldm_got.offset;
11561
11562 if ((off & 1) != 0)
11563 off &= ~1;
11564 else
11565 {
11566 /* If we don't know the module number, create a relocation
11567 for it. */
9cb09e33 11568 if (bfd_link_dll (info))
ba93b8ac
DJ
11569 {
11570 Elf_Internal_Rela outrel;
ba93b8ac 11571
362d30a1 11572 if (srelgot == NULL)
ba93b8ac
DJ
11573 abort ();
11574
00a97672 11575 outrel.r_addend = 0;
362d30a1
RS
11576 outrel.r_offset = (sgot->output_section->vma
11577 + sgot->output_offset + off);
ba93b8ac
DJ
11578 outrel.r_info = ELF32_R_INFO (0, R_ARM_TLS_DTPMOD32);
11579
00a97672
RS
11580 if (globals->use_rel)
11581 bfd_put_32 (output_bfd, outrel.r_addend,
362d30a1 11582 sgot->contents + off);
ba93b8ac 11583
47beaa6a 11584 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
ba93b8ac
DJ
11585 }
11586 else
362d30a1 11587 bfd_put_32 (output_bfd, 1, sgot->contents + off);
ba93b8ac
DJ
11588
11589 globals->tls_ldm_got.offset |= 1;
11590 }
11591
5c5a4843 11592 if (r_type == R_ARM_TLS_LDM32_FDPIC)
e8b09b87
CL
11593 {
11594 bfd_put_32(output_bfd,
11595 globals->root.sgot->output_offset + off,
11596 contents + rel->r_offset);
11597
11598 return bfd_reloc_ok;
11599 }
11600 else
11601 {
11602 value = sgot->output_section->vma + sgot->output_offset + off
11603 - (input_section->output_section->vma
11604 + input_section->output_offset + rel->r_offset);
ba93b8ac 11605
e8b09b87
CL
11606 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11607 contents, rel->r_offset, value,
11608 rel->r_addend);
11609 }
ba93b8ac
DJ
11610 }
11611
0855e32b
NS
11612 case R_ARM_TLS_CALL:
11613 case R_ARM_THM_TLS_CALL:
ba93b8ac 11614 case R_ARM_TLS_GD32:
5c5a4843 11615 case R_ARM_TLS_GD32_FDPIC:
ba93b8ac 11616 case R_ARM_TLS_IE32:
5c5a4843 11617 case R_ARM_TLS_IE32_FDPIC:
0855e32b
NS
11618 case R_ARM_TLS_GOTDESC:
11619 case R_ARM_TLS_DESCSEQ:
11620 case R_ARM_THM_TLS_DESCSEQ:
ba93b8ac 11621 {
0855e32b
NS
11622 bfd_vma off, offplt;
11623 int indx = 0;
ba93b8ac
DJ
11624 char tls_type;
11625
0855e32b 11626 BFD_ASSERT (sgot != NULL);
ba93b8ac 11627
ba93b8ac
DJ
11628 if (h != NULL)
11629 {
0a1b45a2 11630 bool dyn;
ba93b8ac 11631 dyn = globals->root.dynamic_sections_created;
0e1862bb
L
11632 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
11633 bfd_link_pic (info),
11634 h)
11635 && (!bfd_link_pic (info)
ba93b8ac
DJ
11636 || !SYMBOL_REFERENCES_LOCAL (info, h)))
11637 {
0a1b45a2 11638 *unresolved_reloc_p = false;
ba93b8ac
DJ
11639 indx = h->dynindx;
11640 }
11641 off = h->got.offset;
0855e32b 11642 offplt = elf32_arm_hash_entry (h)->tlsdesc_got;
ba93b8ac
DJ
11643 tls_type = ((struct elf32_arm_link_hash_entry *) h)->tls_type;
11644 }
11645 else
11646 {
0855e32b 11647 BFD_ASSERT (local_got_offsets != NULL);
ba93b8ac 11648 off = local_got_offsets[r_symndx];
0855e32b 11649 offplt = local_tlsdesc_gotents[r_symndx];
ba93b8ac
DJ
11650 tls_type = elf32_arm_local_got_tls_type (input_bfd)[r_symndx];
11651 }
11652
0855e32b 11653 /* Linker relaxations happens from one of the
b38cadfb 11654 R_ARM_{GOTDESC,CALL,DESCSEQ} relocations to IE or LE. */
0855e32b 11655 if (ELF32_R_TYPE(rel->r_info) != r_type)
b38cadfb 11656 tls_type = GOT_TLS_IE;
0855e32b
NS
11657
11658 BFD_ASSERT (tls_type != GOT_UNKNOWN);
ba93b8ac
DJ
11659
11660 if ((off & 1) != 0)
11661 off &= ~1;
11662 else
11663 {
0a1b45a2 11664 bool need_relocs = false;
ba93b8ac 11665 Elf_Internal_Rela outrel;
ba93b8ac
DJ
11666 int cur_off = off;
11667
11668 /* The GOT entries have not been initialized yet. Do it
11669 now, and emit any relocations. If both an IE GOT and a
11670 GD GOT are necessary, we emit the GD first. */
11671
9cb09e33 11672 if ((bfd_link_dll (info) || indx != 0)
ba93b8ac 11673 && (h == NULL
95b03e4a
L
11674 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
11675 && !resolved_to_zero)
ba93b8ac
DJ
11676 || h->root.type != bfd_link_hash_undefweak))
11677 {
0a1b45a2 11678 need_relocs = true;
0855e32b 11679 BFD_ASSERT (srelgot != NULL);
ba93b8ac
DJ
11680 }
11681
0855e32b
NS
11682 if (tls_type & GOT_TLS_GDESC)
11683 {
47beaa6a
RS
11684 bfd_byte *loc;
11685
0855e32b
NS
11686 /* We should have relaxed, unless this is an undefined
11687 weak symbol. */
11688 BFD_ASSERT ((h && (h->root.type == bfd_link_hash_undefweak))
9cb09e33 11689 || bfd_link_dll (info));
0855e32b 11690 BFD_ASSERT (globals->sgotplt_jump_table_size + offplt + 8
99059e56 11691 <= globals->root.sgotplt->size);
0855e32b
NS
11692
11693 outrel.r_addend = 0;
11694 outrel.r_offset = (globals->root.sgotplt->output_section->vma
11695 + globals->root.sgotplt->output_offset
11696 + offplt
11697 + globals->sgotplt_jump_table_size);
b38cadfb 11698
0855e32b
NS
11699 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DESC);
11700 sreloc = globals->root.srelplt;
11701 loc = sreloc->contents;
11702 loc += globals->next_tls_desc_index++ * RELOC_SIZE (globals);
11703 BFD_ASSERT (loc + RELOC_SIZE (globals)
99059e56 11704 <= sreloc->contents + sreloc->size);
0855e32b
NS
11705
11706 SWAP_RELOC_OUT (globals) (output_bfd, &outrel, loc);
11707
11708 /* For globals, the first word in the relocation gets
11709 the relocation index and the top bit set, or zero,
11710 if we're binding now. For locals, it gets the
11711 symbol's offset in the tls section. */
99059e56 11712 bfd_put_32 (output_bfd,
0855e32b
NS
11713 !h ? value - elf_hash_table (info)->tls_sec->vma
11714 : info->flags & DF_BIND_NOW ? 0
11715 : 0x80000000 | ELF32_R_SYM (outrel.r_info),
b38cadfb
NC
11716 globals->root.sgotplt->contents + offplt
11717 + globals->sgotplt_jump_table_size);
11718
0855e32b 11719 /* Second word in the relocation is always zero. */
99059e56 11720 bfd_put_32 (output_bfd, 0,
b38cadfb
NC
11721 globals->root.sgotplt->contents + offplt
11722 + globals->sgotplt_jump_table_size + 4);
0855e32b 11723 }
ba93b8ac
DJ
11724 if (tls_type & GOT_TLS_GD)
11725 {
11726 if (need_relocs)
11727 {
00a97672 11728 outrel.r_addend = 0;
362d30a1
RS
11729 outrel.r_offset = (sgot->output_section->vma
11730 + sgot->output_offset
00a97672 11731 + cur_off);
ba93b8ac 11732 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DTPMOD32);
ba93b8ac 11733
00a97672
RS
11734 if (globals->use_rel)
11735 bfd_put_32 (output_bfd, outrel.r_addend,
362d30a1 11736 sgot->contents + cur_off);
00a97672 11737
47beaa6a 11738 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
ba93b8ac
DJ
11739
11740 if (indx == 0)
11741 bfd_put_32 (output_bfd, value - dtpoff_base (info),
362d30a1 11742 sgot->contents + cur_off + 4);
ba93b8ac
DJ
11743 else
11744 {
00a97672 11745 outrel.r_addend = 0;
ba93b8ac
DJ
11746 outrel.r_info = ELF32_R_INFO (indx,
11747 R_ARM_TLS_DTPOFF32);
11748 outrel.r_offset += 4;
00a97672
RS
11749
11750 if (globals->use_rel)
11751 bfd_put_32 (output_bfd, outrel.r_addend,
362d30a1 11752 sgot->contents + cur_off + 4);
00a97672 11753
47beaa6a
RS
11754 elf32_arm_add_dynreloc (output_bfd, info,
11755 srelgot, &outrel);
ba93b8ac
DJ
11756 }
11757 }
11758 else
11759 {
11760 /* If we are not emitting relocations for a
11761 general dynamic reference, then we must be in a
11762 static link or an executable link with the
11763 symbol binding locally. Mark it as belonging
11764 to module 1, the executable. */
11765 bfd_put_32 (output_bfd, 1,
362d30a1 11766 sgot->contents + cur_off);
ba93b8ac 11767 bfd_put_32 (output_bfd, value - dtpoff_base (info),
362d30a1 11768 sgot->contents + cur_off + 4);
ba93b8ac
DJ
11769 }
11770
11771 cur_off += 8;
11772 }
11773
11774 if (tls_type & GOT_TLS_IE)
11775 {
11776 if (need_relocs)
11777 {
00a97672
RS
11778 if (indx == 0)
11779 outrel.r_addend = value - dtpoff_base (info);
11780 else
11781 outrel.r_addend = 0;
362d30a1
RS
11782 outrel.r_offset = (sgot->output_section->vma
11783 + sgot->output_offset
ba93b8ac
DJ
11784 + cur_off);
11785 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_TPOFF32);
11786
00a97672
RS
11787 if (globals->use_rel)
11788 bfd_put_32 (output_bfd, outrel.r_addend,
362d30a1 11789 sgot->contents + cur_off);
ba93b8ac 11790
47beaa6a 11791 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
ba93b8ac
DJ
11792 }
11793 else
11794 bfd_put_32 (output_bfd, tpoff (info, value),
362d30a1 11795 sgot->contents + cur_off);
ba93b8ac
DJ
11796 cur_off += 4;
11797 }
11798
11799 if (h != NULL)
11800 h->got.offset |= 1;
11801 else
11802 local_got_offsets[r_symndx] |= 1;
11803 }
11804
5c5a4843 11805 if ((tls_type & GOT_TLS_GD) && r_type != R_ARM_TLS_GD32 && r_type != R_ARM_TLS_GD32_FDPIC)
ba93b8ac 11806 off += 8;
0855e32b
NS
11807 else if (tls_type & GOT_TLS_GDESC)
11808 off = offplt;
11809
11810 if (ELF32_R_TYPE(rel->r_info) == R_ARM_TLS_CALL
11811 || ELF32_R_TYPE(rel->r_info) == R_ARM_THM_TLS_CALL)
11812 {
11813 bfd_signed_vma offset;
12352d3f
PB
11814 /* TLS stubs are arm mode. The original symbol is a
11815 data object, so branch_type is bogus. */
11816 branch_type = ST_BRANCH_TO_ARM;
0855e32b 11817 enum elf32_arm_stub_type stub_type
34e77a92
RS
11818 = arm_type_of_stub (info, input_section, rel,
11819 st_type, &branch_type,
0855e32b
NS
11820 (struct elf32_arm_link_hash_entry *)h,
11821 globals->tls_trampoline, globals->root.splt,
11822 input_bfd, sym_name);
11823
11824 if (stub_type != arm_stub_none)
11825 {
11826 struct elf32_arm_stub_hash_entry *stub_entry
11827 = elf32_arm_get_stub_entry
11828 (input_section, globals->root.splt, 0, rel,
11829 globals, stub_type);
11830 offset = (stub_entry->stub_offset
11831 + stub_entry->stub_sec->output_offset
11832 + stub_entry->stub_sec->output_section->vma);
11833 }
11834 else
11835 offset = (globals->root.splt->output_section->vma
11836 + globals->root.splt->output_offset
11837 + globals->tls_trampoline);
11838
11839 if (ELF32_R_TYPE(rel->r_info) == R_ARM_TLS_CALL)
11840 {
11841 unsigned long inst;
b38cadfb
NC
11842
11843 offset -= (input_section->output_section->vma
11844 + input_section->output_offset
11845 + rel->r_offset + 8);
0855e32b
NS
11846
11847 inst = offset >> 2;
11848 inst &= 0x00ffffff;
11849 value = inst | (globals->use_blx ? 0xfa000000 : 0xeb000000);
11850 }
11851 else
11852 {
11853 /* Thumb blx encodes the offset in a complicated
11854 fashion. */
11855 unsigned upper_insn, lower_insn;
11856 unsigned neg;
11857
b38cadfb
NC
11858 offset -= (input_section->output_section->vma
11859 + input_section->output_offset
0855e32b 11860 + rel->r_offset + 4);
b38cadfb 11861
12352d3f
PB
11862 if (stub_type != arm_stub_none
11863 && arm_stub_is_thumb (stub_type))
11864 {
11865 lower_insn = 0xd000;
11866 }
11867 else
11868 {
11869 lower_insn = 0xc000;
6a631e86 11870 /* Round up the offset to a word boundary. */
12352d3f
PB
11871 offset = (offset + 2) & ~2;
11872 }
11873
0855e32b
NS
11874 neg = offset < 0;
11875 upper_insn = (0xf000
11876 | ((offset >> 12) & 0x3ff)
11877 | (neg << 10));
12352d3f 11878 lower_insn |= (((!((offset >> 23) & 1)) ^ neg) << 13)
0855e32b 11879 | (((!((offset >> 22) & 1)) ^ neg) << 11)
12352d3f 11880 | ((offset >> 1) & 0x7ff);
0855e32b
NS
11881 bfd_put_16 (input_bfd, upper_insn, hit_data);
11882 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11883 return bfd_reloc_ok;
11884 }
11885 }
11886 /* These relocations needs special care, as besides the fact
11887 they point somewhere in .gotplt, the addend must be
11888 adjusted accordingly depending on the type of instruction
6a631e86 11889 we refer to. */
0855e32b
NS
11890 else if ((r_type == R_ARM_TLS_GOTDESC) && (tls_type & GOT_TLS_GDESC))
11891 {
11892 unsigned long data, insn;
11893 unsigned thumb;
b38cadfb 11894
b627f562 11895 data = bfd_get_signed_32 (input_bfd, hit_data);
0855e32b 11896 thumb = data & 1;
b627f562 11897 data &= ~1ul;
b38cadfb 11898
0855e32b
NS
11899 if (thumb)
11900 {
11901 insn = bfd_get_16 (input_bfd, contents + rel->r_offset - data);
11902 if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
11903 insn = (insn << 16)
11904 | bfd_get_16 (input_bfd,
11905 contents + rel->r_offset - data + 2);
11906 if ((insn & 0xf800c000) == 0xf000c000)
11907 /* bl/blx */
11908 value = -6;
11909 else if ((insn & 0xffffff00) == 0x4400)
11910 /* add */
11911 value = -5;
11912 else
11913 {
4eca0228 11914 _bfd_error_handler
695344c0 11915 /* xgettext:c-format */
2dcf00ce 11916 (_("%pB(%pA+%#" PRIx64 "): "
90b6238f 11917 "unexpected %s instruction '%#lx' "
2dcf00ce
AM
11918 "referenced by TLS_GOTDESC"),
11919 input_bfd, input_section, (uint64_t) rel->r_offset,
90b6238f 11920 "Thumb", insn);
0855e32b
NS
11921 return bfd_reloc_notsupported;
11922 }
11923 }
11924 else
11925 {
11926 insn = bfd_get_32 (input_bfd, contents + rel->r_offset - data);
11927
11928 switch (insn >> 24)
11929 {
11930 case 0xeb: /* bl */
11931 case 0xfa: /* blx */
11932 value = -4;
11933 break;
11934
11935 case 0xe0: /* add */
11936 value = -8;
11937 break;
b38cadfb 11938
0855e32b 11939 default:
4eca0228 11940 _bfd_error_handler
695344c0 11941 /* xgettext:c-format */
2dcf00ce 11942 (_("%pB(%pA+%#" PRIx64 "): "
90b6238f 11943 "unexpected %s instruction '%#lx' "
2dcf00ce
AM
11944 "referenced by TLS_GOTDESC"),
11945 input_bfd, input_section, (uint64_t) rel->r_offset,
90b6238f 11946 "ARM", insn);
0855e32b
NS
11947 return bfd_reloc_notsupported;
11948 }
11949 }
b38cadfb 11950
0855e32b
NS
11951 value += ((globals->root.sgotplt->output_section->vma
11952 + globals->root.sgotplt->output_offset + off)
11953 - (input_section->output_section->vma
11954 + input_section->output_offset
11955 + rel->r_offset)
11956 + globals->sgotplt_jump_table_size);
11957 }
11958 else
11959 value = ((globals->root.sgot->output_section->vma
11960 + globals->root.sgot->output_offset + off)
11961 - (input_section->output_section->vma
11962 + input_section->output_offset + rel->r_offset));
ba93b8ac 11963
5c5a4843
CL
11964 if (globals->fdpic_p && (r_type == R_ARM_TLS_GD32_FDPIC ||
11965 r_type == R_ARM_TLS_IE32_FDPIC))
e8b09b87
CL
11966 {
11967 /* For FDPIC relocations, resolve to the offset of the GOT
11968 entry from the start of GOT. */
11969 bfd_put_32(output_bfd,
11970 globals->root.sgot->output_offset + off,
11971 contents + rel->r_offset);
11972
11973 return bfd_reloc_ok;
11974 }
11975 else
11976 {
11977 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11978 contents, rel->r_offset, value,
11979 rel->r_addend);
11980 }
ba93b8ac
DJ
11981 }
11982
11983 case R_ARM_TLS_LE32:
3cbc1e5e 11984 if (bfd_link_dll (info))
ba93b8ac 11985 {
4eca0228 11986 _bfd_error_handler
695344c0 11987 /* xgettext:c-format */
2dcf00ce
AM
11988 (_("%pB(%pA+%#" PRIx64 "): %s relocation not permitted "
11989 "in shared object"),
11990 input_bfd, input_section, (uint64_t) rel->r_offset, howto->name);
46691134 11991 return bfd_reloc_notsupported;
ba93b8ac
DJ
11992 }
11993 else
11994 value = tpoff (info, value);
906e58ca 11995
ba93b8ac 11996 return _bfd_final_link_relocate (howto, input_bfd, input_section,
00a97672
RS
11997 contents, rel->r_offset, value,
11998 rel->r_addend);
ba93b8ac 11999
319850b4
JB
12000 case R_ARM_V4BX:
12001 if (globals->fix_v4bx)
845b51d6
PB
12002 {
12003 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
319850b4 12004
845b51d6
PB
12005 /* Ensure that we have a BX instruction. */
12006 BFD_ASSERT ((insn & 0x0ffffff0) == 0x012fff10);
319850b4 12007
845b51d6
PB
12008 if (globals->fix_v4bx == 2 && (insn & 0xf) != 0xf)
12009 {
12010 /* Branch to veneer. */
12011 bfd_vma glue_addr;
12012 glue_addr = elf32_arm_bx_glue (info, insn & 0xf);
12013 glue_addr -= input_section->output_section->vma
12014 + input_section->output_offset
12015 + rel->r_offset + 8;
12016 insn = (insn & 0xf0000000) | 0x0a000000
12017 | ((glue_addr >> 2) & 0x00ffffff);
12018 }
12019 else
12020 {
12021 /* Preserve Rm (lowest four bits) and the condition code
12022 (highest four bits). Other bits encode MOV PC,Rm. */
12023 insn = (insn & 0xf000000f) | 0x01a0f000;
12024 }
319850b4 12025
845b51d6
PB
12026 bfd_put_32 (input_bfd, insn, hit_data);
12027 }
319850b4
JB
12028 return bfd_reloc_ok;
12029
b6895b4f
PB
12030 case R_ARM_MOVW_ABS_NC:
12031 case R_ARM_MOVT_ABS:
12032 case R_ARM_MOVW_PREL_NC:
12033 case R_ARM_MOVT_PREL:
92f5d02b
MS
12034 /* Until we properly support segment-base-relative addressing then
12035 we assume the segment base to be zero, as for the group relocations.
12036 Thus R_ARM_MOVW_BREL_NC has the same semantics as R_ARM_MOVW_ABS_NC
12037 and R_ARM_MOVT_BREL has the same semantics as R_ARM_MOVT_ABS. */
12038 case R_ARM_MOVW_BREL_NC:
12039 case R_ARM_MOVW_BREL:
12040 case R_ARM_MOVT_BREL:
b6895b4f
PB
12041 {
12042 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12043
12044 if (globals->use_rel)
12045 {
12046 addend = ((insn >> 4) & 0xf000) | (insn & 0xfff);
39623e12 12047 signed_addend = (addend ^ 0x8000) - 0x8000;
b6895b4f 12048 }
92f5d02b 12049
b6895b4f 12050 value += signed_addend;
b6895b4f
PB
12051
12052 if (r_type == R_ARM_MOVW_PREL_NC || r_type == R_ARM_MOVT_PREL)
12053 value -= (input_section->output_section->vma
12054 + input_section->output_offset + rel->r_offset);
12055
92f5d02b 12056 if (r_type == R_ARM_MOVW_BREL && value >= 0x10000)
99059e56 12057 return bfd_reloc_overflow;
92f5d02b 12058
35fc36a8 12059 if (branch_type == ST_BRANCH_TO_THUMB)
92f5d02b
MS
12060 value |= 1;
12061
12062 if (r_type == R_ARM_MOVT_ABS || r_type == R_ARM_MOVT_PREL
99059e56 12063 || r_type == R_ARM_MOVT_BREL)
b6895b4f
PB
12064 value >>= 16;
12065
12066 insn &= 0xfff0f000;
12067 insn |= value & 0xfff;
12068 insn |= (value & 0xf000) << 4;
12069 bfd_put_32 (input_bfd, insn, hit_data);
12070 }
12071 return bfd_reloc_ok;
12072
12073 case R_ARM_THM_MOVW_ABS_NC:
12074 case R_ARM_THM_MOVT_ABS:
12075 case R_ARM_THM_MOVW_PREL_NC:
12076 case R_ARM_THM_MOVT_PREL:
92f5d02b
MS
12077 /* Until we properly support segment-base-relative addressing then
12078 we assume the segment base to be zero, as for the above relocations.
12079 Thus R_ARM_THM_MOVW_BREL_NC has the same semantics as
12080 R_ARM_THM_MOVW_ABS_NC and R_ARM_THM_MOVT_BREL has the same semantics
12081 as R_ARM_THM_MOVT_ABS. */
12082 case R_ARM_THM_MOVW_BREL_NC:
12083 case R_ARM_THM_MOVW_BREL:
12084 case R_ARM_THM_MOVT_BREL:
b6895b4f
PB
12085 {
12086 bfd_vma insn;
906e58ca 12087
b6895b4f
PB
12088 insn = bfd_get_16 (input_bfd, hit_data) << 16;
12089 insn |= bfd_get_16 (input_bfd, hit_data + 2);
12090
12091 if (globals->use_rel)
12092 {
12093 addend = ((insn >> 4) & 0xf000)
12094 | ((insn >> 15) & 0x0800)
12095 | ((insn >> 4) & 0x0700)
07d6d2b8 12096 | (insn & 0x00ff);
39623e12 12097 signed_addend = (addend ^ 0x8000) - 0x8000;
b6895b4f 12098 }
92f5d02b 12099
b6895b4f 12100 value += signed_addend;
b6895b4f
PB
12101
12102 if (r_type == R_ARM_THM_MOVW_PREL_NC || r_type == R_ARM_THM_MOVT_PREL)
12103 value -= (input_section->output_section->vma
12104 + input_section->output_offset + rel->r_offset);
12105
92f5d02b 12106 if (r_type == R_ARM_THM_MOVW_BREL && value >= 0x10000)
99059e56 12107 return bfd_reloc_overflow;
92f5d02b 12108
35fc36a8 12109 if (branch_type == ST_BRANCH_TO_THUMB)
92f5d02b
MS
12110 value |= 1;
12111
12112 if (r_type == R_ARM_THM_MOVT_ABS || r_type == R_ARM_THM_MOVT_PREL
99059e56 12113 || r_type == R_ARM_THM_MOVT_BREL)
b6895b4f
PB
12114 value >>= 16;
12115
12116 insn &= 0xfbf08f00;
12117 insn |= (value & 0xf000) << 4;
12118 insn |= (value & 0x0800) << 15;
12119 insn |= (value & 0x0700) << 4;
12120 insn |= (value & 0x00ff);
12121
12122 bfd_put_16 (input_bfd, insn >> 16, hit_data);
12123 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
12124 }
12125 return bfd_reloc_ok;
12126
4962c51a
MS
12127 case R_ARM_ALU_PC_G0_NC:
12128 case R_ARM_ALU_PC_G1_NC:
12129 case R_ARM_ALU_PC_G0:
12130 case R_ARM_ALU_PC_G1:
12131 case R_ARM_ALU_PC_G2:
12132 case R_ARM_ALU_SB_G0_NC:
12133 case R_ARM_ALU_SB_G1_NC:
12134 case R_ARM_ALU_SB_G0:
12135 case R_ARM_ALU_SB_G1:
12136 case R_ARM_ALU_SB_G2:
12137 {
12138 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
99059e56 12139 bfd_vma pc = input_section->output_section->vma
4962c51a 12140 + input_section->output_offset + rel->r_offset;
31a91d61 12141 /* sb is the origin of the *segment* containing the symbol. */
62c34db3 12142 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
99059e56
RM
12143 bfd_vma residual;
12144 bfd_vma g_n;
4962c51a 12145 bfd_signed_vma signed_value;
99059e56
RM
12146 int group = 0;
12147
12148 /* Determine which group of bits to select. */
12149 switch (r_type)
12150 {
12151 case R_ARM_ALU_PC_G0_NC:
12152 case R_ARM_ALU_PC_G0:
12153 case R_ARM_ALU_SB_G0_NC:
12154 case R_ARM_ALU_SB_G0:
12155 group = 0;
12156 break;
12157
12158 case R_ARM_ALU_PC_G1_NC:
12159 case R_ARM_ALU_PC_G1:
12160 case R_ARM_ALU_SB_G1_NC:
12161 case R_ARM_ALU_SB_G1:
12162 group = 1;
12163 break;
12164
12165 case R_ARM_ALU_PC_G2:
12166 case R_ARM_ALU_SB_G2:
12167 group = 2;
12168 break;
12169
12170 default:
12171 abort ();
12172 }
12173
12174 /* If REL, extract the addend from the insn. If RELA, it will
12175 have already been fetched for us. */
4962c51a 12176 if (globals->use_rel)
99059e56
RM
12177 {
12178 int negative;
12179 bfd_vma constant = insn & 0xff;
12180 bfd_vma rotation = (insn & 0xf00) >> 8;
12181
12182 if (rotation == 0)
12183 signed_addend = constant;
12184 else
12185 {
12186 /* Compensate for the fact that in the instruction, the
12187 rotation is stored in multiples of 2 bits. */
12188 rotation *= 2;
12189
12190 /* Rotate "constant" right by "rotation" bits. */
12191 signed_addend = (constant >> rotation) |
12192 (constant << (8 * sizeof (bfd_vma) - rotation));
12193 }
12194
12195 /* Determine if the instruction is an ADD or a SUB.
12196 (For REL, this determines the sign of the addend.) */
12197 negative = identify_add_or_sub (insn);
12198 if (negative == 0)
12199 {
4eca0228 12200 _bfd_error_handler
695344c0 12201 /* xgettext:c-format */
90b6238f 12202 (_("%pB(%pA+%#" PRIx64 "): only ADD or SUB instructions "
2dcf00ce
AM
12203 "are allowed for ALU group relocations"),
12204 input_bfd, input_section, (uint64_t) rel->r_offset);
99059e56
RM
12205 return bfd_reloc_overflow;
12206 }
12207
12208 signed_addend *= negative;
12209 }
4962c51a
MS
12210
12211 /* Compute the value (X) to go in the place. */
99059e56
RM
12212 if (r_type == R_ARM_ALU_PC_G0_NC
12213 || r_type == R_ARM_ALU_PC_G1_NC
12214 || r_type == R_ARM_ALU_PC_G0
12215 || r_type == R_ARM_ALU_PC_G1
12216 || r_type == R_ARM_ALU_PC_G2)
12217 /* PC relative. */
12218 signed_value = value - pc + signed_addend;
12219 else
12220 /* Section base relative. */
12221 signed_value = value - sb + signed_addend;
12222
12223 /* If the target symbol is a Thumb function, then set the
12224 Thumb bit in the address. */
35fc36a8 12225 if (branch_type == ST_BRANCH_TO_THUMB)
4962c51a
MS
12226 signed_value |= 1;
12227
99059e56
RM
12228 /* Calculate the value of the relevant G_n, in encoded
12229 constant-with-rotation format. */
b6518b38
NC
12230 g_n = calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12231 group, &residual);
99059e56
RM
12232
12233 /* Check for overflow if required. */
12234 if ((r_type == R_ARM_ALU_PC_G0
12235 || r_type == R_ARM_ALU_PC_G1
12236 || r_type == R_ARM_ALU_PC_G2
12237 || r_type == R_ARM_ALU_SB_G0
12238 || r_type == R_ARM_ALU_SB_G1
12239 || r_type == R_ARM_ALU_SB_G2) && residual != 0)
12240 {
4eca0228 12241 _bfd_error_handler
695344c0 12242 /* xgettext:c-format */
90b6238f 12243 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
2dcf00ce
AM
12244 "splitting %#" PRIx64 " for group relocation %s"),
12245 input_bfd, input_section, (uint64_t) rel->r_offset,
12246 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12247 howto->name);
99059e56
RM
12248 return bfd_reloc_overflow;
12249 }
12250
12251 /* Mask out the value and the ADD/SUB part of the opcode; take care
12252 not to destroy the S bit. */
12253 insn &= 0xff1ff000;
12254
12255 /* Set the opcode according to whether the value to go in the
12256 place is negative. */
12257 if (signed_value < 0)
12258 insn |= 1 << 22;
12259 else
12260 insn |= 1 << 23;
12261
12262 /* Encode the offset. */
12263 insn |= g_n;
4962c51a
MS
12264
12265 bfd_put_32 (input_bfd, insn, hit_data);
12266 }
12267 return bfd_reloc_ok;
12268
12269 case R_ARM_LDR_PC_G0:
12270 case R_ARM_LDR_PC_G1:
12271 case R_ARM_LDR_PC_G2:
12272 case R_ARM_LDR_SB_G0:
12273 case R_ARM_LDR_SB_G1:
12274 case R_ARM_LDR_SB_G2:
12275 {
12276 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
99059e56 12277 bfd_vma pc = input_section->output_section->vma
4962c51a 12278 + input_section->output_offset + rel->r_offset;
31a91d61 12279 /* sb is the origin of the *segment* containing the symbol. */
62c34db3 12280 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
99059e56 12281 bfd_vma residual;
4962c51a 12282 bfd_signed_vma signed_value;
99059e56
RM
12283 int group = 0;
12284
12285 /* Determine which groups of bits to calculate. */
12286 switch (r_type)
12287 {
12288 case R_ARM_LDR_PC_G0:
12289 case R_ARM_LDR_SB_G0:
12290 group = 0;
12291 break;
12292
12293 case R_ARM_LDR_PC_G1:
12294 case R_ARM_LDR_SB_G1:
12295 group = 1;
12296 break;
12297
12298 case R_ARM_LDR_PC_G2:
12299 case R_ARM_LDR_SB_G2:
12300 group = 2;
12301 break;
12302
12303 default:
12304 abort ();
12305 }
12306
12307 /* If REL, extract the addend from the insn. If RELA, it will
12308 have already been fetched for us. */
4962c51a 12309 if (globals->use_rel)
99059e56
RM
12310 {
12311 int negative = (insn & (1 << 23)) ? 1 : -1;
12312 signed_addend = negative * (insn & 0xfff);
12313 }
4962c51a
MS
12314
12315 /* Compute the value (X) to go in the place. */
99059e56
RM
12316 if (r_type == R_ARM_LDR_PC_G0
12317 || r_type == R_ARM_LDR_PC_G1
12318 || r_type == R_ARM_LDR_PC_G2)
12319 /* PC relative. */
12320 signed_value = value - pc + signed_addend;
12321 else
12322 /* Section base relative. */
12323 signed_value = value - sb + signed_addend;
12324
12325 /* Calculate the value of the relevant G_{n-1} to obtain
12326 the residual at that stage. */
b6518b38
NC
12327 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12328 group - 1, &residual);
99059e56
RM
12329
12330 /* Check for overflow. */
12331 if (residual >= 0x1000)
12332 {
4eca0228 12333 _bfd_error_handler
695344c0 12334 /* xgettext:c-format */
90b6238f 12335 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
2dcf00ce
AM
12336 "splitting %#" PRIx64 " for group relocation %s"),
12337 input_bfd, input_section, (uint64_t) rel->r_offset,
12338 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12339 howto->name);
99059e56
RM
12340 return bfd_reloc_overflow;
12341 }
12342
12343 /* Mask out the value and U bit. */
12344 insn &= 0xff7ff000;
12345
12346 /* Set the U bit if the value to go in the place is non-negative. */
12347 if (signed_value >= 0)
12348 insn |= 1 << 23;
12349
12350 /* Encode the offset. */
12351 insn |= residual;
4962c51a
MS
12352
12353 bfd_put_32 (input_bfd, insn, hit_data);
12354 }
12355 return bfd_reloc_ok;
12356
12357 case R_ARM_LDRS_PC_G0:
12358 case R_ARM_LDRS_PC_G1:
12359 case R_ARM_LDRS_PC_G2:
12360 case R_ARM_LDRS_SB_G0:
12361 case R_ARM_LDRS_SB_G1:
12362 case R_ARM_LDRS_SB_G2:
12363 {
12364 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
99059e56 12365 bfd_vma pc = input_section->output_section->vma
4962c51a 12366 + input_section->output_offset + rel->r_offset;
31a91d61 12367 /* sb is the origin of the *segment* containing the symbol. */
62c34db3 12368 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
99059e56 12369 bfd_vma residual;
4962c51a 12370 bfd_signed_vma signed_value;
99059e56
RM
12371 int group = 0;
12372
12373 /* Determine which groups of bits to calculate. */
12374 switch (r_type)
12375 {
12376 case R_ARM_LDRS_PC_G0:
12377 case R_ARM_LDRS_SB_G0:
12378 group = 0;
12379 break;
12380
12381 case R_ARM_LDRS_PC_G1:
12382 case R_ARM_LDRS_SB_G1:
12383 group = 1;
12384 break;
12385
12386 case R_ARM_LDRS_PC_G2:
12387 case R_ARM_LDRS_SB_G2:
12388 group = 2;
12389 break;
12390
12391 default:
12392 abort ();
12393 }
12394
12395 /* If REL, extract the addend from the insn. If RELA, it will
12396 have already been fetched for us. */
4962c51a 12397 if (globals->use_rel)
99059e56
RM
12398 {
12399 int negative = (insn & (1 << 23)) ? 1 : -1;
12400 signed_addend = negative * (((insn & 0xf00) >> 4) + (insn & 0xf));
12401 }
4962c51a
MS
12402
12403 /* Compute the value (X) to go in the place. */
99059e56
RM
12404 if (r_type == R_ARM_LDRS_PC_G0
12405 || r_type == R_ARM_LDRS_PC_G1
12406 || r_type == R_ARM_LDRS_PC_G2)
12407 /* PC relative. */
12408 signed_value = value - pc + signed_addend;
12409 else
12410 /* Section base relative. */
12411 signed_value = value - sb + signed_addend;
12412
12413 /* Calculate the value of the relevant G_{n-1} to obtain
12414 the residual at that stage. */
b6518b38
NC
12415 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12416 group - 1, &residual);
99059e56
RM
12417
12418 /* Check for overflow. */
12419 if (residual >= 0x100)
12420 {
4eca0228 12421 _bfd_error_handler
695344c0 12422 /* xgettext:c-format */
90b6238f 12423 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
2dcf00ce
AM
12424 "splitting %#" PRIx64 " for group relocation %s"),
12425 input_bfd, input_section, (uint64_t) rel->r_offset,
12426 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12427 howto->name);
99059e56
RM
12428 return bfd_reloc_overflow;
12429 }
12430
12431 /* Mask out the value and U bit. */
12432 insn &= 0xff7ff0f0;
12433
12434 /* Set the U bit if the value to go in the place is non-negative. */
12435 if (signed_value >= 0)
12436 insn |= 1 << 23;
12437
12438 /* Encode the offset. */
12439 insn |= ((residual & 0xf0) << 4) | (residual & 0xf);
4962c51a
MS
12440
12441 bfd_put_32 (input_bfd, insn, hit_data);
12442 }
12443 return bfd_reloc_ok;
12444
12445 case R_ARM_LDC_PC_G0:
12446 case R_ARM_LDC_PC_G1:
12447 case R_ARM_LDC_PC_G2:
12448 case R_ARM_LDC_SB_G0:
12449 case R_ARM_LDC_SB_G1:
12450 case R_ARM_LDC_SB_G2:
12451 {
12452 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
99059e56 12453 bfd_vma pc = input_section->output_section->vma
4962c51a 12454 + input_section->output_offset + rel->r_offset;
31a91d61 12455 /* sb is the origin of the *segment* containing the symbol. */
62c34db3 12456 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
99059e56 12457 bfd_vma residual;
4962c51a 12458 bfd_signed_vma signed_value;
99059e56
RM
12459 int group = 0;
12460
12461 /* Determine which groups of bits to calculate. */
12462 switch (r_type)
12463 {
12464 case R_ARM_LDC_PC_G0:
12465 case R_ARM_LDC_SB_G0:
12466 group = 0;
12467 break;
12468
12469 case R_ARM_LDC_PC_G1:
12470 case R_ARM_LDC_SB_G1:
12471 group = 1;
12472 break;
12473
12474 case R_ARM_LDC_PC_G2:
12475 case R_ARM_LDC_SB_G2:
12476 group = 2;
12477 break;
12478
12479 default:
12480 abort ();
12481 }
12482
12483 /* If REL, extract the addend from the insn. If RELA, it will
12484 have already been fetched for us. */
4962c51a 12485 if (globals->use_rel)
99059e56
RM
12486 {
12487 int negative = (insn & (1 << 23)) ? 1 : -1;
12488 signed_addend = negative * ((insn & 0xff) << 2);
12489 }
4962c51a
MS
12490
12491 /* Compute the value (X) to go in the place. */
99059e56
RM
12492 if (r_type == R_ARM_LDC_PC_G0
12493 || r_type == R_ARM_LDC_PC_G1
12494 || r_type == R_ARM_LDC_PC_G2)
12495 /* PC relative. */
12496 signed_value = value - pc + signed_addend;
12497 else
12498 /* Section base relative. */
12499 signed_value = value - sb + signed_addend;
12500
12501 /* Calculate the value of the relevant G_{n-1} to obtain
12502 the residual at that stage. */
b6518b38
NC
12503 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12504 group - 1, &residual);
99059e56
RM
12505
12506 /* Check for overflow. (The absolute value to go in the place must be
12507 divisible by four and, after having been divided by four, must
12508 fit in eight bits.) */
12509 if ((residual & 0x3) != 0 || residual >= 0x400)
12510 {
4eca0228 12511 _bfd_error_handler
695344c0 12512 /* xgettext:c-format */
90b6238f 12513 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
2dcf00ce
AM
12514 "splitting %#" PRIx64 " for group relocation %s"),
12515 input_bfd, input_section, (uint64_t) rel->r_offset,
12516 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12517 howto->name);
99059e56
RM
12518 return bfd_reloc_overflow;
12519 }
12520
12521 /* Mask out the value and U bit. */
12522 insn &= 0xff7fff00;
12523
12524 /* Set the U bit if the value to go in the place is non-negative. */
12525 if (signed_value >= 0)
12526 insn |= 1 << 23;
12527
12528 /* Encode the offset. */
12529 insn |= residual >> 2;
4962c51a
MS
12530
12531 bfd_put_32 (input_bfd, insn, hit_data);
12532 }
12533 return bfd_reloc_ok;
12534
72d98d16
MG
12535 case R_ARM_THM_ALU_ABS_G0_NC:
12536 case R_ARM_THM_ALU_ABS_G1_NC:
12537 case R_ARM_THM_ALU_ABS_G2_NC:
12538 case R_ARM_THM_ALU_ABS_G3_NC:
12539 {
12540 const int shift_array[4] = {0, 8, 16, 24};
12541 bfd_vma insn = bfd_get_16 (input_bfd, hit_data);
12542 bfd_vma addr = value;
12543 int shift = shift_array[r_type - R_ARM_THM_ALU_ABS_G0_NC];
12544
12545 /* Compute address. */
12546 if (globals->use_rel)
12547 signed_addend = insn & 0xff;
12548 addr += signed_addend;
12549 if (branch_type == ST_BRANCH_TO_THUMB)
12550 addr |= 1;
12551 /* Clean imm8 insn. */
12552 insn &= 0xff00;
12553 /* And update with correct part of address. */
12554 insn |= (addr >> shift) & 0xff;
12555 /* Update insn. */
12556 bfd_put_16 (input_bfd, insn, hit_data);
12557 }
12558
0a1b45a2 12559 *unresolved_reloc_p = false;
72d98d16
MG
12560 return bfd_reloc_ok;
12561
e8b09b87
CL
12562 case R_ARM_GOTOFFFUNCDESC:
12563 {
4b24dd1a 12564 if (h == NULL)
e8b09b87
CL
12565 {
12566 struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts(input_bfd);
12567 int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12568 int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12569 bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12570 bfd_vma seg = -1;
12571
12572 if (bfd_link_pic(info) && dynindx == 0)
12573 abort();
12574
12575 /* Resolve relocation. */
12576 bfd_put_32(output_bfd, (offset + sgot->output_offset)
12577 , contents + rel->r_offset);
12578 /* Emit R_ARM_FUNCDESC_VALUE or two fixups on funcdesc if
12579 not done yet. */
12580 arm_elf_fill_funcdesc(output_bfd, info,
12581 &local_fdpic_cnts[r_symndx].funcdesc_offset,
12582 dynindx, offset, addr, dynreloc_value, seg);
12583 }
12584 else
12585 {
12586 int dynindx;
12587 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12588 bfd_vma addr;
12589 bfd_vma seg = -1;
12590
12591 /* For static binaries, sym_sec can be null. */
12592 if (sym_sec)
12593 {
12594 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12595 addr = dynreloc_value - sym_sec->output_section->vma;
12596 }
12597 else
12598 {
12599 dynindx = 0;
12600 addr = 0;
12601 }
12602
12603 if (bfd_link_pic(info) && dynindx == 0)
12604 abort();
12605
12606 /* This case cannot occur since funcdesc is allocated by
12607 the dynamic loader so we cannot resolve the relocation. */
12608 if (h->dynindx != -1)
12609 abort();
12610
12611 /* Resolve relocation. */
12612 bfd_put_32(output_bfd, (offset + sgot->output_offset),
12613 contents + rel->r_offset);
12614 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12615 arm_elf_fill_funcdesc(output_bfd, info,
12616 &eh->fdpic_cnts.funcdesc_offset,
12617 dynindx, offset, addr, dynreloc_value, seg);
12618 }
12619 }
0a1b45a2 12620 *unresolved_reloc_p = false;
e8b09b87
CL
12621 return bfd_reloc_ok;
12622
12623 case R_ARM_GOTFUNCDESC:
12624 {
4b24dd1a 12625 if (h != NULL)
e8b09b87
CL
12626 {
12627 Elf_Internal_Rela outrel;
12628
12629 /* Resolve relocation. */
12630 bfd_put_32(output_bfd, ((eh->fdpic_cnts.gotfuncdesc_offset & ~1)
12631 + sgot->output_offset),
12632 contents + rel->r_offset);
12633 /* Add funcdesc and associated R_ARM_FUNCDESC_VALUE. */
12634 if(h->dynindx == -1)
12635 {
12636 int dynindx;
12637 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12638 bfd_vma addr;
12639 bfd_vma seg = -1;
12640
12641 /* For static binaries sym_sec can be null. */
12642 if (sym_sec)
12643 {
12644 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12645 addr = dynreloc_value - sym_sec->output_section->vma;
12646 }
12647 else
12648 {
12649 dynindx = 0;
12650 addr = 0;
12651 }
12652
12653 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12654 arm_elf_fill_funcdesc(output_bfd, info,
12655 &eh->fdpic_cnts.funcdesc_offset,
12656 dynindx, offset, addr, dynreloc_value, seg);
12657 }
12658
12659 /* Add a dynamic relocation on GOT entry if not already done. */
12660 if ((eh->fdpic_cnts.gotfuncdesc_offset & 1) == 0)
12661 {
12662 if (h->dynindx == -1)
12663 {
12664 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12665 if (h->root.type == bfd_link_hash_undefweak)
12666 bfd_put_32(output_bfd, 0, sgot->contents
12667 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12668 else
12669 bfd_put_32(output_bfd, sgot->output_section->vma
12670 + sgot->output_offset
12671 + (eh->fdpic_cnts.funcdesc_offset & ~1),
12672 sgot->contents
12673 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12674 }
12675 else
12676 {
12677 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12678 }
12679 outrel.r_offset = sgot->output_section->vma
12680 + sgot->output_offset
12681 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1);
12682 outrel.r_addend = 0;
12683 if (h->dynindx == -1 && !bfd_link_pic(info))
12684 if (h->root.type == bfd_link_hash_undefweak)
4b24dd1a 12685 arm_elf_add_rofixup(output_bfd, globals->srofixup, -1);
e8b09b87 12686 else
4b24dd1a
AM
12687 arm_elf_add_rofixup(output_bfd, globals->srofixup,
12688 outrel.r_offset);
e8b09b87
CL
12689 else
12690 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12691 eh->fdpic_cnts.gotfuncdesc_offset |= 1;
12692 }
12693 }
12694 else
12695 {
12696 /* Such relocation on static function should not have been
12697 emitted by the compiler. */
12698 abort();
12699 }
12700 }
0a1b45a2 12701 *unresolved_reloc_p = false;
e8b09b87
CL
12702 return bfd_reloc_ok;
12703
12704 case R_ARM_FUNCDESC:
12705 {
4b24dd1a 12706 if (h == NULL)
e8b09b87
CL
12707 {
12708 struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts(input_bfd);
12709 Elf_Internal_Rela outrel;
12710 int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12711 int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12712 bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12713 bfd_vma seg = -1;
12714
12715 if (bfd_link_pic(info) && dynindx == 0)
12716 abort();
12717
12718 /* Replace static FUNCDESC relocation with a
12719 R_ARM_RELATIVE dynamic relocation or with a rofixup for
12720 executable. */
12721 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12722 outrel.r_offset = input_section->output_section->vma
12723 + input_section->output_offset + rel->r_offset;
12724 outrel.r_addend = 0;
12725 if (bfd_link_pic(info))
12726 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12727 else
12728 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
12729
12730 bfd_put_32 (input_bfd, sgot->output_section->vma
12731 + sgot->output_offset + offset, hit_data);
12732
12733 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12734 arm_elf_fill_funcdesc(output_bfd, info,
12735 &local_fdpic_cnts[r_symndx].funcdesc_offset,
12736 dynindx, offset, addr, dynreloc_value, seg);
12737 }
12738 else
12739 {
12740 if (h->dynindx == -1)
12741 {
12742 int dynindx;
12743 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12744 bfd_vma addr;
12745 bfd_vma seg = -1;
12746 Elf_Internal_Rela outrel;
12747
12748 /* For static binaries sym_sec can be null. */
12749 if (sym_sec)
12750 {
12751 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12752 addr = dynreloc_value - sym_sec->output_section->vma;
12753 }
12754 else
12755 {
12756 dynindx = 0;
12757 addr = 0;
12758 }
12759
12760 if (bfd_link_pic(info) && dynindx == 0)
12761 abort();
12762
12763 /* Replace static FUNCDESC relocation with a
12764 R_ARM_RELATIVE dynamic relocation. */
12765 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12766 outrel.r_offset = input_section->output_section->vma
12767 + input_section->output_offset + rel->r_offset;
12768 outrel.r_addend = 0;
12769 if (bfd_link_pic(info))
12770 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12771 else
12772 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
12773
12774 bfd_put_32 (input_bfd, sgot->output_section->vma
12775 + sgot->output_offset + offset, hit_data);
12776
12777 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12778 arm_elf_fill_funcdesc(output_bfd, info,
12779 &eh->fdpic_cnts.funcdesc_offset,
12780 dynindx, offset, addr, dynreloc_value, seg);
12781 }
12782 else
12783 {
12784 Elf_Internal_Rela outrel;
12785
12786 /* Add a dynamic relocation. */
12787 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12788 outrel.r_offset = input_section->output_section->vma
12789 + input_section->output_offset + rel->r_offset;
12790 outrel.r_addend = 0;
12791 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12792 }
12793 }
12794 }
0a1b45a2 12795 *unresolved_reloc_p = false;
e8b09b87
CL
12796 return bfd_reloc_ok;
12797
e5d6e09e
AV
12798 case R_ARM_THM_BF16:
12799 {
12800 bfd_vma relocation;
12801 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12802 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12803
12804 if (globals->use_rel)
12805 {
12806 bfd_vma immA = (upper_insn & 0x001f);
12807 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12808 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12809 addend = (immA << 12);
12810 addend |= (immB << 2);
12811 addend |= (immC << 1);
12812 addend |= 1;
12813 /* Sign extend. */
e6f65e75 12814 signed_addend = (addend & 0x10000) ? addend - (1 << 17) : addend;
e5d6e09e
AV
12815 }
12816
e6f65e75 12817 relocation = value + signed_addend;
e5d6e09e
AV
12818 relocation -= (input_section->output_section->vma
12819 + input_section->output_offset
12820 + rel->r_offset);
12821
12822 /* Put RELOCATION back into the insn. */
12823 {
12824 bfd_vma immA = (relocation & 0x0001f000) >> 12;
12825 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12826 bfd_vma immC = (relocation & 0x00000002) >> 1;
12827
12828 upper_insn = (upper_insn & 0xffe0) | immA;
12829 lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12830 }
12831
12832 /* Put the relocated value back in the object file: */
12833 bfd_put_16 (input_bfd, upper_insn, hit_data);
12834 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12835
12836 return bfd_reloc_ok;
12837 }
12838
1889da70
AV
12839 case R_ARM_THM_BF12:
12840 {
12841 bfd_vma relocation;
12842 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12843 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12844
12845 if (globals->use_rel)
12846 {
12847 bfd_vma immA = (upper_insn & 0x0001);
12848 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12849 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12850 addend = (immA << 12);
12851 addend |= (immB << 2);
12852 addend |= (immC << 1);
12853 addend |= 1;
12854 /* Sign extend. */
12855 addend = (addend & 0x1000) ? addend - (1 << 13) : addend;
e6f65e75 12856 signed_addend = addend;
1889da70
AV
12857 }
12858
e6f65e75 12859 relocation = value + signed_addend;
1889da70
AV
12860 relocation -= (input_section->output_section->vma
12861 + input_section->output_offset
12862 + rel->r_offset);
12863
12864 /* Put RELOCATION back into the insn. */
12865 {
12866 bfd_vma immA = (relocation & 0x00001000) >> 12;
12867 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12868 bfd_vma immC = (relocation & 0x00000002) >> 1;
12869
12870 upper_insn = (upper_insn & 0xfffe) | immA;
12871 lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12872 }
12873
12874 /* Put the relocated value back in the object file: */
12875 bfd_put_16 (input_bfd, upper_insn, hit_data);
12876 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12877
12878 return bfd_reloc_ok;
12879 }
12880
1caf72a5
AV
12881 case R_ARM_THM_BF18:
12882 {
12883 bfd_vma relocation;
12884 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12885 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12886
12887 if (globals->use_rel)
12888 {
12889 bfd_vma immA = (upper_insn & 0x007f);
12890 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12891 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12892 addend = (immA << 12);
12893 addend |= (immB << 2);
12894 addend |= (immC << 1);
12895 addend |= 1;
12896 /* Sign extend. */
12897 addend = (addend & 0x40000) ? addend - (1 << 19) : addend;
e6f65e75 12898 signed_addend = addend;
1caf72a5
AV
12899 }
12900
e6f65e75 12901 relocation = value + signed_addend;
1caf72a5
AV
12902 relocation -= (input_section->output_section->vma
12903 + input_section->output_offset
12904 + rel->r_offset);
12905
12906 /* Put RELOCATION back into the insn. */
12907 {
12908 bfd_vma immA = (relocation & 0x0007f000) >> 12;
12909 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12910 bfd_vma immC = (relocation & 0x00000002) >> 1;
12911
12912 upper_insn = (upper_insn & 0xff80) | immA;
12913 lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12914 }
12915
12916 /* Put the relocated value back in the object file: */
12917 bfd_put_16 (input_bfd, upper_insn, hit_data);
12918 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12919
12920 return bfd_reloc_ok;
12921 }
12922
252b5132
RH
12923 default:
12924 return bfd_reloc_notsupported;
12925 }
12926}
12927
98c1d4aa
NC
12928/* Add INCREMENT to the reloc (of type HOWTO) at ADDRESS. */
12929static void
07d6d2b8
AM
12930arm_add_to_rel (bfd * abfd,
12931 bfd_byte * address,
57e8b36a 12932 reloc_howto_type * howto,
07d6d2b8 12933 bfd_signed_vma increment)
98c1d4aa 12934{
98c1d4aa
NC
12935 bfd_signed_vma addend;
12936
bd97cb95
DJ
12937 if (howto->type == R_ARM_THM_CALL
12938 || howto->type == R_ARM_THM_JUMP24)
98c1d4aa 12939 {
9a5aca8c
AM
12940 int upper_insn, lower_insn;
12941 int upper, lower;
98c1d4aa 12942
9a5aca8c
AM
12943 upper_insn = bfd_get_16 (abfd, address);
12944 lower_insn = bfd_get_16 (abfd, address + 2);
12945 upper = upper_insn & 0x7ff;
12946 lower = lower_insn & 0x7ff;
12947
12948 addend = (upper << 12) | (lower << 1);
ddda4409 12949 addend += increment;
9a5aca8c 12950 addend >>= 1;
98c1d4aa 12951
9a5aca8c
AM
12952 upper_insn = (upper_insn & 0xf800) | ((addend >> 11) & 0x7ff);
12953 lower_insn = (lower_insn & 0xf800) | (addend & 0x7ff);
12954
dc810e39
AM
12955 bfd_put_16 (abfd, (bfd_vma) upper_insn, address);
12956 bfd_put_16 (abfd, (bfd_vma) lower_insn, address + 2);
9a5aca8c
AM
12957 }
12958 else
12959 {
07d6d2b8 12960 bfd_vma contents;
9a5aca8c
AM
12961
12962 contents = bfd_get_32 (abfd, address);
12963
12964 /* Get the (signed) value from the instruction. */
12965 addend = contents & howto->src_mask;
12966 if (addend & ((howto->src_mask + 1) >> 1))
12967 {
12968 bfd_signed_vma mask;
12969
12970 mask = -1;
12971 mask &= ~ howto->src_mask;
12972 addend |= mask;
12973 }
12974
12975 /* Add in the increment, (which is a byte value). */
12976 switch (howto->type)
12977 {
12978 default:
12979 addend += increment;
12980 break;
12981
12982 case R_ARM_PC24:
c6596c5e 12983 case R_ARM_PLT32:
5b5bb741
PB
12984 case R_ARM_CALL:
12985 case R_ARM_JUMP24:
9a5aca8c 12986 addend <<= howto->size;
dc810e39 12987 addend += increment;
9a5aca8c
AM
12988
12989 /* Should we check for overflow here ? */
12990
12991 /* Drop any undesired bits. */
12992 addend >>= howto->rightshift;
12993 break;
12994 }
12995
12996 contents = (contents & ~ howto->dst_mask) | (addend & howto->dst_mask);
12997
12998 bfd_put_32 (abfd, contents, address);
ddda4409 12999 }
98c1d4aa 13000}
252b5132 13001
ba93b8ac
DJ
13002#define IS_ARM_TLS_RELOC(R_TYPE) \
13003 ((R_TYPE) == R_ARM_TLS_GD32 \
5c5a4843 13004 || (R_TYPE) == R_ARM_TLS_GD32_FDPIC \
ba93b8ac
DJ
13005 || (R_TYPE) == R_ARM_TLS_LDO32 \
13006 || (R_TYPE) == R_ARM_TLS_LDM32 \
5c5a4843 13007 || (R_TYPE) == R_ARM_TLS_LDM32_FDPIC \
ba93b8ac
DJ
13008 || (R_TYPE) == R_ARM_TLS_DTPOFF32 \
13009 || (R_TYPE) == R_ARM_TLS_DTPMOD32 \
13010 || (R_TYPE) == R_ARM_TLS_TPOFF32 \
13011 || (R_TYPE) == R_ARM_TLS_LE32 \
0855e32b 13012 || (R_TYPE) == R_ARM_TLS_IE32 \
5c5a4843 13013 || (R_TYPE) == R_ARM_TLS_IE32_FDPIC \
0855e32b
NS
13014 || IS_ARM_TLS_GNU_RELOC (R_TYPE))
13015
13016/* Specific set of relocations for the gnu tls dialect. */
13017#define IS_ARM_TLS_GNU_RELOC(R_TYPE) \
13018 ((R_TYPE) == R_ARM_TLS_GOTDESC \
13019 || (R_TYPE) == R_ARM_TLS_CALL \
13020 || (R_TYPE) == R_ARM_THM_TLS_CALL \
13021 || (R_TYPE) == R_ARM_TLS_DESCSEQ \
13022 || (R_TYPE) == R_ARM_THM_TLS_DESCSEQ)
ba93b8ac 13023
252b5132 13024/* Relocate an ARM ELF section. */
906e58ca 13025
0f684201 13026static int
07d6d2b8 13027elf32_arm_relocate_section (bfd * output_bfd,
57e8b36a 13028 struct bfd_link_info * info,
07d6d2b8
AM
13029 bfd * input_bfd,
13030 asection * input_section,
13031 bfd_byte * contents,
13032 Elf_Internal_Rela * relocs,
13033 Elf_Internal_Sym * local_syms,
13034 asection ** local_sections)
252b5132 13035{
b34976b6
AM
13036 Elf_Internal_Shdr *symtab_hdr;
13037 struct elf_link_hash_entry **sym_hashes;
13038 Elf_Internal_Rela *rel;
13039 Elf_Internal_Rela *relend;
13040 const char *name;
b32d3aa2 13041 struct elf32_arm_link_hash_table * globals;
252b5132 13042
4e7fd91e 13043 globals = elf32_arm_hash_table (info);
4dfe6ac6 13044 if (globals == NULL)
0a1b45a2 13045 return false;
b491616a 13046
0ffa91dd 13047 symtab_hdr = & elf_symtab_hdr (input_bfd);
252b5132
RH
13048 sym_hashes = elf_sym_hashes (input_bfd);
13049
13050 rel = relocs;
13051 relend = relocs + input_section->reloc_count;
13052 for (; rel < relend; rel++)
13053 {
07d6d2b8
AM
13054 int r_type;
13055 reloc_howto_type * howto;
13056 unsigned long r_symndx;
13057 Elf_Internal_Sym * sym;
13058 asection * sec;
252b5132 13059 struct elf_link_hash_entry * h;
07d6d2b8
AM
13060 bfd_vma relocation;
13061 bfd_reloc_status_type r;
13062 arelent bfd_reloc;
13063 char sym_type;
0a1b45a2 13064 bool unresolved_reloc = false;
f2a9dd69 13065 char *error_message = NULL;
f21f3fe0 13066
252b5132 13067 r_symndx = ELF32_R_SYM (rel->r_info);
ba96a88f 13068 r_type = ELF32_R_TYPE (rel->r_info);
b32d3aa2 13069 r_type = arm_real_reloc_type (globals, r_type);
252b5132 13070
ba96a88f 13071 if ( r_type == R_ARM_GNU_VTENTRY
99059e56
RM
13072 || r_type == R_ARM_GNU_VTINHERIT)
13073 continue;
252b5132 13074
47aeb64c
NC
13075 howto = bfd_reloc.howto = elf32_arm_howto_from_type (r_type);
13076
13077 if (howto == NULL)
13078 return _bfd_unrecognized_reloc (input_bfd, input_section, r_type);
252b5132 13079
252b5132
RH
13080 h = NULL;
13081 sym = NULL;
13082 sec = NULL;
9b485d32 13083
252b5132
RH
13084 if (r_symndx < symtab_hdr->sh_info)
13085 {
13086 sym = local_syms + r_symndx;
ba93b8ac 13087 sym_type = ELF32_ST_TYPE (sym->st_info);
252b5132 13088 sec = local_sections[r_symndx];
ffcb4889
NS
13089
13090 /* An object file might have a reference to a local
13091 undefined symbol. This is a daft object file, but we
13092 should at least do something about it. V4BX & NONE
13093 relocations do not use the symbol and are explicitly
77b4f08f
TS
13094 allowed to use the undefined symbol, so allow those.
13095 Likewise for relocations against STN_UNDEF. */
ffcb4889
NS
13096 if (r_type != R_ARM_V4BX
13097 && r_type != R_ARM_NONE
77b4f08f 13098 && r_symndx != STN_UNDEF
ffcb4889
NS
13099 && bfd_is_und_section (sec)
13100 && ELF_ST_BIND (sym->st_info) != STB_WEAK)
1a72702b
AM
13101 (*info->callbacks->undefined_symbol)
13102 (info, bfd_elf_string_from_elf_section
13103 (input_bfd, symtab_hdr->sh_link, sym->st_name),
13104 input_bfd, input_section,
0a1b45a2 13105 rel->r_offset, true);
b38cadfb 13106
4e7fd91e 13107 if (globals->use_rel)
f8df10f4 13108 {
4e7fd91e
PB
13109 relocation = (sec->output_section->vma
13110 + sec->output_offset
13111 + sym->st_value);
0e1862bb 13112 if (!bfd_link_relocatable (info)
ab96bf03
AM
13113 && (sec->flags & SEC_MERGE)
13114 && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
f8df10f4 13115 {
4e7fd91e
PB
13116 asection *msec;
13117 bfd_vma addend, value;
13118
39623e12 13119 switch (r_type)
4e7fd91e 13120 {
39623e12
PB
13121 case R_ARM_MOVW_ABS_NC:
13122 case R_ARM_MOVT_ABS:
13123 value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13124 addend = ((value & 0xf0000) >> 4) | (value & 0xfff);
13125 addend = (addend ^ 0x8000) - 0x8000;
13126 break;
f8df10f4 13127
39623e12
PB
13128 case R_ARM_THM_MOVW_ABS_NC:
13129 case R_ARM_THM_MOVT_ABS:
13130 value = bfd_get_16 (input_bfd, contents + rel->r_offset)
13131 << 16;
13132 value |= bfd_get_16 (input_bfd,
13133 contents + rel->r_offset + 2);
13134 addend = ((value & 0xf7000) >> 4) | (value & 0xff)
13135 | ((value & 0x04000000) >> 15);
13136 addend = (addend ^ 0x8000) - 0x8000;
13137 break;
f8df10f4 13138
39623e12
PB
13139 default:
13140 if (howto->rightshift
13141 || (howto->src_mask & (howto->src_mask + 1)))
13142 {
4eca0228 13143 _bfd_error_handler
695344c0 13144 /* xgettext:c-format */
2dcf00ce
AM
13145 (_("%pB(%pA+%#" PRIx64 "): "
13146 "%s relocation against SEC_MERGE section"),
39623e12 13147 input_bfd, input_section,
2dcf00ce 13148 (uint64_t) rel->r_offset, howto->name);
0a1b45a2 13149 return false;
39623e12
PB
13150 }
13151
13152 value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13153
13154 /* Get the (signed) value from the instruction. */
13155 addend = value & howto->src_mask;
13156 if (addend & ((howto->src_mask + 1) >> 1))
13157 {
13158 bfd_signed_vma mask;
13159
13160 mask = -1;
13161 mask &= ~ howto->src_mask;
13162 addend |= mask;
13163 }
13164 break;
4e7fd91e 13165 }
39623e12 13166
4e7fd91e
PB
13167 msec = sec;
13168 addend =
13169 _bfd_elf_rel_local_sym (output_bfd, sym, &msec, addend)
13170 - relocation;
13171 addend += msec->output_section->vma + msec->output_offset;
39623e12 13172
cc643b88 13173 /* Cases here must match those in the preceding
39623e12
PB
13174 switch statement. */
13175 switch (r_type)
13176 {
13177 case R_ARM_MOVW_ABS_NC:
13178 case R_ARM_MOVT_ABS:
13179 value = (value & 0xfff0f000) | ((addend & 0xf000) << 4)
13180 | (addend & 0xfff);
13181 bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13182 break;
13183
13184 case R_ARM_THM_MOVW_ABS_NC:
13185 case R_ARM_THM_MOVT_ABS:
13186 value = (value & 0xfbf08f00) | ((addend & 0xf700) << 4)
13187 | (addend & 0xff) | ((addend & 0x0800) << 15);
13188 bfd_put_16 (input_bfd, value >> 16,
13189 contents + rel->r_offset);
13190 bfd_put_16 (input_bfd, value,
13191 contents + rel->r_offset + 2);
13192 break;
13193
13194 default:
13195 value = (value & ~ howto->dst_mask)
13196 | (addend & howto->dst_mask);
13197 bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13198 break;
13199 }
f8df10f4 13200 }
f8df10f4 13201 }
4e7fd91e
PB
13202 else
13203 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
252b5132
RH
13204 }
13205 else
13206 {
0a1b45a2 13207 bool warned, ignored;
560e09e9 13208
b2a8e766
AM
13209 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
13210 r_symndx, symtab_hdr, sym_hashes,
13211 h, sec, relocation,
62d887d4 13212 unresolved_reloc, warned, ignored);
ba93b8ac
DJ
13213
13214 sym_type = h->type;
252b5132
RH
13215 }
13216
dbaa2011 13217 if (sec != NULL && discarded_section (sec))
e4067dbb 13218 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
545fd46b 13219 rel, 1, relend, howto, 0, contents);
ab96bf03 13220
0e1862bb 13221 if (bfd_link_relocatable (info))
ab96bf03
AM
13222 {
13223 /* This is a relocatable link. We don't have to change
13224 anything, unless the reloc is against a section symbol,
13225 in which case we have to adjust according to where the
13226 section symbol winds up in the output section. */
13227 if (sym != NULL && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13228 {
13229 if (globals->use_rel)
13230 arm_add_to_rel (input_bfd, contents + rel->r_offset,
13231 howto, (bfd_signed_vma) sec->output_offset);
13232 else
13233 rel->r_addend += sec->output_offset;
13234 }
13235 continue;
13236 }
13237
252b5132
RH
13238 if (h != NULL)
13239 name = h->root.root.string;
13240 else
13241 {
13242 name = (bfd_elf_string_from_elf_section
13243 (input_bfd, symtab_hdr->sh_link, sym->st_name));
13244 if (name == NULL || *name == '\0')
fd361982 13245 name = bfd_section_name (sec);
252b5132 13246 }
f21f3fe0 13247
cf35638d 13248 if (r_symndx != STN_UNDEF
ba93b8ac
DJ
13249 && r_type != R_ARM_NONE
13250 && (h == NULL
13251 || h->root.type == bfd_link_hash_defined
13252 || h->root.type == bfd_link_hash_defweak)
13253 && IS_ARM_TLS_RELOC (r_type) != (sym_type == STT_TLS))
13254 {
4eca0228 13255 _bfd_error_handler
ba93b8ac 13256 ((sym_type == STT_TLS
695344c0 13257 /* xgettext:c-format */
2dcf00ce 13258 ? _("%pB(%pA+%#" PRIx64 "): %s used with TLS symbol %s")
695344c0 13259 /* xgettext:c-format */
2dcf00ce 13260 : _("%pB(%pA+%#" PRIx64 "): %s used with non-TLS symbol %s")),
ba93b8ac
DJ
13261 input_bfd,
13262 input_section,
2dcf00ce 13263 (uint64_t) rel->r_offset,
ba93b8ac
DJ
13264 howto->name,
13265 name);
13266 }
13267
0855e32b 13268 /* We call elf32_arm_final_link_relocate unless we're completely
99059e56
RM
13269 done, i.e., the relaxation produced the final output we want,
13270 and we won't let anybody mess with it. Also, we have to do
13271 addend adjustments in case of a R_ARM_TLS_GOTDESC relocation
6a631e86 13272 both in relaxed and non-relaxed cases. */
39d911fc
TP
13273 if ((elf32_arm_tls_transition (info, r_type, h) != (unsigned)r_type)
13274 || (IS_ARM_TLS_GNU_RELOC (r_type)
13275 && !((h ? elf32_arm_hash_entry (h)->tls_type :
13276 elf32_arm_local_got_tls_type (input_bfd)[r_symndx])
13277 & GOT_TLS_GDESC)))
13278 {
13279 r = elf32_arm_tls_relax (globals, input_bfd, input_section,
13280 contents, rel, h == NULL);
13281 /* This may have been marked unresolved because it came from
13282 a shared library. But we've just dealt with that. */
13283 unresolved_reloc = 0;
13284 }
13285 else
13286 r = bfd_reloc_continue;
b38cadfb 13287
39d911fc
TP
13288 if (r == bfd_reloc_continue)
13289 {
13290 unsigned char branch_type =
13291 h ? ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
13292 : ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
13293
13294 r = elf32_arm_final_link_relocate (howto, input_bfd, output_bfd,
13295 input_section, contents, rel,
13296 relocation, info, sec, name,
13297 sym_type, branch_type, h,
13298 &unresolved_reloc,
13299 &error_message);
13300 }
0945cdfd
DJ
13301
13302 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
13303 because such sections are not SEC_ALLOC and thus ld.so will
13304 not process them. */
13305 if (unresolved_reloc
99059e56
RM
13306 && !((input_section->flags & SEC_DEBUGGING) != 0
13307 && h->def_dynamic)
1d5316ab
AM
13308 && _bfd_elf_section_offset (output_bfd, info, input_section,
13309 rel->r_offset) != (bfd_vma) -1)
0945cdfd 13310 {
4eca0228 13311 _bfd_error_handler
695344c0 13312 /* xgettext:c-format */
2dcf00ce
AM
13313 (_("%pB(%pA+%#" PRIx64 "): "
13314 "unresolvable %s relocation against symbol `%s'"),
843fe662
L
13315 input_bfd,
13316 input_section,
2dcf00ce 13317 (uint64_t) rel->r_offset,
843fe662
L
13318 howto->name,
13319 h->root.root.string);
0a1b45a2 13320 return false;
0945cdfd 13321 }
252b5132
RH
13322
13323 if (r != bfd_reloc_ok)
13324 {
252b5132
RH
13325 switch (r)
13326 {
13327 case bfd_reloc_overflow:
cf919dfd
PB
13328 /* If the overflowing reloc was to an undefined symbol,
13329 we have already printed one error message and there
13330 is no point complaining again. */
1a72702b
AM
13331 if (!h || h->root.type != bfd_link_hash_undefined)
13332 (*info->callbacks->reloc_overflow)
13333 (info, (h ? &h->root : NULL), name, howto->name,
13334 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
252b5132
RH
13335 break;
13336
13337 case bfd_reloc_undefined:
1a72702b 13338 (*info->callbacks->undefined_symbol)
0a1b45a2 13339 (info, name, input_bfd, input_section, rel->r_offset, true);
252b5132
RH
13340 break;
13341
13342 case bfd_reloc_outofrange:
f2a9dd69 13343 error_message = _("out of range");
252b5132
RH
13344 goto common_error;
13345
13346 case bfd_reloc_notsupported:
f2a9dd69 13347 error_message = _("unsupported relocation");
252b5132
RH
13348 goto common_error;
13349
13350 case bfd_reloc_dangerous:
f2a9dd69 13351 /* error_message should already be set. */
252b5132
RH
13352 goto common_error;
13353
13354 default:
f2a9dd69 13355 error_message = _("unknown error");
8029a119 13356 /* Fall through. */
252b5132
RH
13357
13358 common_error:
f2a9dd69 13359 BFD_ASSERT (error_message != NULL);
1a72702b
AM
13360 (*info->callbacks->reloc_dangerous)
13361 (info, error_message, input_bfd, input_section, rel->r_offset);
252b5132
RH
13362 break;
13363 }
13364 }
13365 }
13366
0a1b45a2 13367 return true;
252b5132
RH
13368}
13369
91d6fa6a 13370/* Add a new unwind edit to the list described by HEAD, TAIL. If TINDEX is zero,
2468f9c9 13371 adds the edit to the start of the list. (The list must be built in order of
91d6fa6a 13372 ascending TINDEX: the function's callers are primarily responsible for
2468f9c9
PB
13373 maintaining that condition). */
13374
13375static void
13376add_unwind_table_edit (arm_unwind_table_edit **head,
13377 arm_unwind_table_edit **tail,
13378 arm_unwind_edit_type type,
13379 asection *linked_section,
91d6fa6a 13380 unsigned int tindex)
2468f9c9 13381{
21d799b5
NC
13382 arm_unwind_table_edit *new_edit = (arm_unwind_table_edit *)
13383 xmalloc (sizeof (arm_unwind_table_edit));
b38cadfb 13384
2468f9c9
PB
13385 new_edit->type = type;
13386 new_edit->linked_section = linked_section;
91d6fa6a 13387 new_edit->index = tindex;
b38cadfb 13388
91d6fa6a 13389 if (tindex > 0)
2468f9c9
PB
13390 {
13391 new_edit->next = NULL;
13392
13393 if (*tail)
13394 (*tail)->next = new_edit;
13395
13396 (*tail) = new_edit;
13397
13398 if (!*head)
13399 (*head) = new_edit;
13400 }
13401 else
13402 {
13403 new_edit->next = *head;
13404
13405 if (!*tail)
13406 *tail = new_edit;
13407
13408 *head = new_edit;
13409 }
13410}
13411
13412static _arm_elf_section_data *get_arm_elf_section_data (asection *);
13413
13414/* Increase the size of EXIDX_SEC by ADJUST bytes. ADJUST mau be negative. */
13415static void
13416adjust_exidx_size(asection *exidx_sec, int adjust)
13417{
13418 asection *out_sec;
13419
13420 if (!exidx_sec->rawsize)
13421 exidx_sec->rawsize = exidx_sec->size;
13422
fd361982 13423 bfd_set_section_size (exidx_sec, exidx_sec->size + adjust);
2468f9c9
PB
13424 out_sec = exidx_sec->output_section;
13425 /* Adjust size of output section. */
fd361982 13426 bfd_set_section_size (out_sec, out_sec->size +adjust);
2468f9c9
PB
13427}
13428
13429/* Insert an EXIDX_CANTUNWIND marker at the end of a section. */
13430static void
13431insert_cantunwind_after(asection *text_sec, asection *exidx_sec)
13432{
13433 struct _arm_elf_section_data *exidx_arm_data;
13434
13435 exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13436 add_unwind_table_edit (
13437 &exidx_arm_data->u.exidx.unwind_edit_list,
13438 &exidx_arm_data->u.exidx.unwind_edit_tail,
13439 INSERT_EXIDX_CANTUNWIND_AT_END, text_sec, UINT_MAX);
13440
491d01d3
YU
13441 exidx_arm_data->additional_reloc_count++;
13442
2468f9c9
PB
13443 adjust_exidx_size(exidx_sec, 8);
13444}
13445
13446/* Scan .ARM.exidx tables, and create a list describing edits which should be
13447 made to those tables, such that:
b38cadfb 13448
2468f9c9
PB
13449 1. Regions without unwind data are marked with EXIDX_CANTUNWIND entries.
13450 2. Duplicate entries are merged together (EXIDX_CANTUNWIND, or unwind
99059e56 13451 codes which have been inlined into the index).
2468f9c9 13452
85fdf906
AH
13453 If MERGE_EXIDX_ENTRIES is false, duplicate entries are not merged.
13454
2468f9c9 13455 The edits are applied when the tables are written
b38cadfb 13456 (in elf32_arm_write_section). */
2468f9c9 13457
0a1b45a2 13458bool
2468f9c9
PB
13459elf32_arm_fix_exidx_coverage (asection **text_section_order,
13460 unsigned int num_text_sections,
85fdf906 13461 struct bfd_link_info *info,
0a1b45a2 13462 bool merge_exidx_entries)
2468f9c9
PB
13463{
13464 bfd *inp;
13465 unsigned int last_second_word = 0, i;
13466 asection *last_exidx_sec = NULL;
13467 asection *last_text_sec = NULL;
13468 int last_unwind_type = -1;
13469
13470 /* Walk over all EXIDX sections, and create backlinks from the corrsponding
13471 text sections. */
c72f2fb2 13472 for (inp = info->input_bfds; inp != NULL; inp = inp->link.next)
2468f9c9
PB
13473 {
13474 asection *sec;
b38cadfb 13475
2468f9c9 13476 for (sec = inp->sections; sec != NULL; sec = sec->next)
99059e56 13477 {
2468f9c9
PB
13478 struct bfd_elf_section_data *elf_sec = elf_section_data (sec);
13479 Elf_Internal_Shdr *hdr = &elf_sec->this_hdr;
b38cadfb 13480
dec9d5df 13481 if (!hdr || hdr->sh_type != SHT_ARM_EXIDX)
2468f9c9 13482 continue;
b38cadfb 13483
2468f9c9
PB
13484 if (elf_sec->linked_to)
13485 {
13486 Elf_Internal_Shdr *linked_hdr
99059e56 13487 = &elf_section_data (elf_sec->linked_to)->this_hdr;
2468f9c9 13488 struct _arm_elf_section_data *linked_sec_arm_data
99059e56 13489 = get_arm_elf_section_data (linked_hdr->bfd_section);
2468f9c9
PB
13490
13491 if (linked_sec_arm_data == NULL)
99059e56 13492 continue;
2468f9c9
PB
13493
13494 /* Link this .ARM.exidx section back from the text section it
99059e56 13495 describes. */
2468f9c9
PB
13496 linked_sec_arm_data->u.text.arm_exidx_sec = sec;
13497 }
13498 }
13499 }
13500
13501 /* Walk all text sections in order of increasing VMA. Eilminate duplicate
13502 index table entries (EXIDX_CANTUNWIND and inlined unwind opcodes),
91d6fa6a 13503 and add EXIDX_CANTUNWIND entries for sections with no unwind table data. */
2468f9c9
PB
13504
13505 for (i = 0; i < num_text_sections; i++)
13506 {
13507 asection *sec = text_section_order[i];
13508 asection *exidx_sec;
13509 struct _arm_elf_section_data *arm_data = get_arm_elf_section_data (sec);
13510 struct _arm_elf_section_data *exidx_arm_data;
13511 bfd_byte *contents = NULL;
13512 int deleted_exidx_bytes = 0;
13513 bfd_vma j;
13514 arm_unwind_table_edit *unwind_edit_head = NULL;
13515 arm_unwind_table_edit *unwind_edit_tail = NULL;
13516 Elf_Internal_Shdr *hdr;
13517 bfd *ibfd;
13518
13519 if (arm_data == NULL)
99059e56 13520 continue;
2468f9c9
PB
13521
13522 exidx_sec = arm_data->u.text.arm_exidx_sec;
13523 if (exidx_sec == NULL)
13524 {
13525 /* Section has no unwind data. */
13526 if (last_unwind_type == 0 || !last_exidx_sec)
13527 continue;
13528
13529 /* Ignore zero sized sections. */
13530 if (sec->size == 0)
13531 continue;
13532
13533 insert_cantunwind_after(last_text_sec, last_exidx_sec);
13534 last_unwind_type = 0;
13535 continue;
13536 }
13537
22a8f80e
PB
13538 /* Skip /DISCARD/ sections. */
13539 if (bfd_is_abs_section (exidx_sec->output_section))
13540 continue;
13541
2468f9c9
PB
13542 hdr = &elf_section_data (exidx_sec)->this_hdr;
13543 if (hdr->sh_type != SHT_ARM_EXIDX)
99059e56 13544 continue;
b38cadfb 13545
2468f9c9
PB
13546 exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13547 if (exidx_arm_data == NULL)
99059e56 13548 continue;
b38cadfb 13549
2468f9c9 13550 ibfd = exidx_sec->owner;
b38cadfb 13551
2468f9c9
PB
13552 if (hdr->contents != NULL)
13553 contents = hdr->contents;
13554 else if (! bfd_malloc_and_get_section (ibfd, exidx_sec, &contents))
13555 /* An error? */
13556 continue;
13557
ac06903d
YU
13558 if (last_unwind_type > 0)
13559 {
13560 unsigned int first_word = bfd_get_32 (ibfd, contents);
13561 /* Add cantunwind if first unwind item does not match section
13562 start. */
13563 if (first_word != sec->vma)
13564 {
13565 insert_cantunwind_after (last_text_sec, last_exidx_sec);
13566 last_unwind_type = 0;
13567 }
13568 }
13569
2468f9c9
PB
13570 for (j = 0; j < hdr->sh_size; j += 8)
13571 {
13572 unsigned int second_word = bfd_get_32 (ibfd, contents + j + 4);
13573 int unwind_type;
13574 int elide = 0;
13575
13576 /* An EXIDX_CANTUNWIND entry. */
13577 if (second_word == 1)
13578 {
13579 if (last_unwind_type == 0)
13580 elide = 1;
13581 unwind_type = 0;
13582 }
13583 /* Inlined unwinding data. Merge if equal to previous. */
13584 else if ((second_word & 0x80000000) != 0)
13585 {
85fdf906
AH
13586 if (merge_exidx_entries
13587 && last_second_word == second_word && last_unwind_type == 1)
2468f9c9
PB
13588 elide = 1;
13589 unwind_type = 1;
13590 last_second_word = second_word;
13591 }
13592 /* Normal table entry. In theory we could merge these too,
13593 but duplicate entries are likely to be much less common. */
13594 else
13595 unwind_type = 2;
13596
491d01d3 13597 if (elide && !bfd_link_relocatable (info))
2468f9c9
PB
13598 {
13599 add_unwind_table_edit (&unwind_edit_head, &unwind_edit_tail,
13600 DELETE_EXIDX_ENTRY, NULL, j / 8);
13601
13602 deleted_exidx_bytes += 8;
13603 }
13604
13605 last_unwind_type = unwind_type;
13606 }
13607
13608 /* Free contents if we allocated it ourselves. */
13609 if (contents != hdr->contents)
99059e56 13610 free (contents);
2468f9c9
PB
13611
13612 /* Record edits to be applied later (in elf32_arm_write_section). */
13613 exidx_arm_data->u.exidx.unwind_edit_list = unwind_edit_head;
13614 exidx_arm_data->u.exidx.unwind_edit_tail = unwind_edit_tail;
b38cadfb 13615
2468f9c9
PB
13616 if (deleted_exidx_bytes > 0)
13617 adjust_exidx_size(exidx_sec, -deleted_exidx_bytes);
13618
13619 last_exidx_sec = exidx_sec;
13620 last_text_sec = sec;
13621 }
13622
13623 /* Add terminating CANTUNWIND entry. */
491d01d3
YU
13624 if (!bfd_link_relocatable (info) && last_exidx_sec
13625 && last_unwind_type != 0)
2468f9c9
PB
13626 insert_cantunwind_after(last_text_sec, last_exidx_sec);
13627
0a1b45a2 13628 return true;
2468f9c9
PB
13629}
13630
0a1b45a2 13631static bool
3e6b1042
DJ
13632elf32_arm_output_glue_section (struct bfd_link_info *info, bfd *obfd,
13633 bfd *ibfd, const char *name)
13634{
13635 asection *sec, *osec;
13636
3d4d4302 13637 sec = bfd_get_linker_section (ibfd, name);
3e6b1042 13638 if (sec == NULL || (sec->flags & SEC_EXCLUDE) != 0)
0a1b45a2 13639 return true;
3e6b1042
DJ
13640
13641 osec = sec->output_section;
13642 if (elf32_arm_write_section (obfd, info, sec, sec->contents))
0a1b45a2 13643 return true;
3e6b1042
DJ
13644
13645 if (! bfd_set_section_contents (obfd, osec, sec->contents,
13646 sec->output_offset, sec->size))
0a1b45a2 13647 return false;
3e6b1042 13648
0a1b45a2 13649 return true;
3e6b1042
DJ
13650}
13651
0a1b45a2 13652static bool
3e6b1042
DJ
13653elf32_arm_final_link (bfd *abfd, struct bfd_link_info *info)
13654{
13655 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
fe33d2fa 13656 asection *sec, *osec;
3e6b1042 13657
4dfe6ac6 13658 if (globals == NULL)
0a1b45a2 13659 return false;
4dfe6ac6 13660
3e6b1042
DJ
13661 /* Invoke the regular ELF backend linker to do all the work. */
13662 if (!bfd_elf_final_link (abfd, info))
0a1b45a2 13663 return false;
3e6b1042 13664
fe33d2fa
CL
13665 /* Process stub sections (eg BE8 encoding, ...). */
13666 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
7292b3ac 13667 unsigned int i;
cdb21a0a
NS
13668 for (i=0; i<htab->top_id; i++)
13669 {
13670 sec = htab->stub_group[i].stub_sec;
13671 /* Only process it once, in its link_sec slot. */
13672 if (sec && i == htab->stub_group[i].link_sec->id)
13673 {
13674 osec = sec->output_section;
13675 elf32_arm_write_section (abfd, info, sec, sec->contents);
13676 if (! bfd_set_section_contents (abfd, osec, sec->contents,
13677 sec->output_offset, sec->size))
0a1b45a2 13678 return false;
cdb21a0a 13679 }
fe33d2fa 13680 }
fe33d2fa 13681
3e6b1042
DJ
13682 /* Write out any glue sections now that we have created all the
13683 stubs. */
13684 if (globals->bfd_of_glue_owner != NULL)
13685 {
13686 if (! elf32_arm_output_glue_section (info, abfd,
13687 globals->bfd_of_glue_owner,
13688 ARM2THUMB_GLUE_SECTION_NAME))
0a1b45a2 13689 return false;
3e6b1042
DJ
13690
13691 if (! elf32_arm_output_glue_section (info, abfd,
13692 globals->bfd_of_glue_owner,
13693 THUMB2ARM_GLUE_SECTION_NAME))
0a1b45a2 13694 return false;
3e6b1042
DJ
13695
13696 if (! elf32_arm_output_glue_section (info, abfd,
13697 globals->bfd_of_glue_owner,
13698 VFP11_ERRATUM_VENEER_SECTION_NAME))
0a1b45a2 13699 return false;
3e6b1042 13700
a504d23a
LA
13701 if (! elf32_arm_output_glue_section (info, abfd,
13702 globals->bfd_of_glue_owner,
13703 STM32L4XX_ERRATUM_VENEER_SECTION_NAME))
0a1b45a2 13704 return false;
a504d23a 13705
3e6b1042
DJ
13706 if (! elf32_arm_output_glue_section (info, abfd,
13707 globals->bfd_of_glue_owner,
13708 ARM_BX_GLUE_SECTION_NAME))
0a1b45a2 13709 return false;
3e6b1042
DJ
13710 }
13711
0a1b45a2 13712 return true;
3e6b1042
DJ
13713}
13714
5968a7b8
NC
13715/* Return a best guess for the machine number based on the attributes. */
13716
13717static unsigned int
13718bfd_arm_get_mach_from_attributes (bfd * abfd)
13719{
13720 int arch = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_CPU_arch);
13721
13722 switch (arch)
13723 {
c0c468d5 13724 case TAG_CPU_ARCH_PRE_V4: return bfd_mach_arm_3M;
5968a7b8
NC
13725 case TAG_CPU_ARCH_V4: return bfd_mach_arm_4;
13726 case TAG_CPU_ARCH_V4T: return bfd_mach_arm_4T;
13727 case TAG_CPU_ARCH_V5T: return bfd_mach_arm_5T;
13728
13729 case TAG_CPU_ARCH_V5TE:
13730 {
13731 char * name;
13732
13733 BFD_ASSERT (Tag_CPU_name < NUM_KNOWN_OBJ_ATTRIBUTES);
13734 name = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_CPU_name].s;
13735
13736 if (name)
13737 {
13738 if (strcmp (name, "IWMMXT2") == 0)
13739 return bfd_mach_arm_iWMMXt2;
13740
13741 if (strcmp (name, "IWMMXT") == 0)
6034aab8 13742 return bfd_mach_arm_iWMMXt;
088ca6c1
NC
13743
13744 if (strcmp (name, "XSCALE") == 0)
13745 {
13746 int wmmx;
13747
13748 BFD_ASSERT (Tag_WMMX_arch < NUM_KNOWN_OBJ_ATTRIBUTES);
13749 wmmx = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_WMMX_arch].i;
13750 switch (wmmx)
13751 {
13752 case 1: return bfd_mach_arm_iWMMXt;
13753 case 2: return bfd_mach_arm_iWMMXt2;
13754 default: return bfd_mach_arm_XScale;
13755 }
13756 }
5968a7b8
NC
13757 }
13758
13759 return bfd_mach_arm_5TE;
13760 }
13761
c0c468d5
TP
13762 case TAG_CPU_ARCH_V5TEJ:
13763 return bfd_mach_arm_5TEJ;
13764 case TAG_CPU_ARCH_V6:
13765 return bfd_mach_arm_6;
13766 case TAG_CPU_ARCH_V6KZ:
13767 return bfd_mach_arm_6KZ;
13768 case TAG_CPU_ARCH_V6T2:
13769 return bfd_mach_arm_6T2;
13770 case TAG_CPU_ARCH_V6K:
13771 return bfd_mach_arm_6K;
13772 case TAG_CPU_ARCH_V7:
13773 return bfd_mach_arm_7;
13774 case TAG_CPU_ARCH_V6_M:
13775 return bfd_mach_arm_6M;
13776 case TAG_CPU_ARCH_V6S_M:
13777 return bfd_mach_arm_6SM;
13778 case TAG_CPU_ARCH_V7E_M:
13779 return bfd_mach_arm_7EM;
13780 case TAG_CPU_ARCH_V8:
13781 return bfd_mach_arm_8;
13782 case TAG_CPU_ARCH_V8R:
13783 return bfd_mach_arm_8R;
13784 case TAG_CPU_ARCH_V8M_BASE:
13785 return bfd_mach_arm_8M_BASE;
13786 case TAG_CPU_ARCH_V8M_MAIN:
13787 return bfd_mach_arm_8M_MAIN;
031254f2
AV
13788 case TAG_CPU_ARCH_V8_1M_MAIN:
13789 return bfd_mach_arm_8_1M_MAIN;
c0c468d5 13790
5968a7b8 13791 default:
c0c468d5
TP
13792 /* Force entry to be added for any new known Tag_CPU_arch value. */
13793 BFD_ASSERT (arch > MAX_TAG_CPU_ARCH);
13794
13795 /* Unknown Tag_CPU_arch value. */
5968a7b8
NC
13796 return bfd_mach_arm_unknown;
13797 }
13798}
13799
c178919b
NC
13800/* Set the right machine number. */
13801
0a1b45a2 13802static bool
57e8b36a 13803elf32_arm_object_p (bfd *abfd)
c178919b 13804{
5a6c6817 13805 unsigned int mach;
57e8b36a 13806
5a6c6817 13807 mach = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
c178919b 13808
5968a7b8
NC
13809 if (mach == bfd_mach_arm_unknown)
13810 {
13811 if (elf_elfheader (abfd)->e_flags & EF_ARM_MAVERICK_FLOAT)
13812 mach = bfd_mach_arm_ep9312;
13813 else
13814 mach = bfd_arm_get_mach_from_attributes (abfd);
13815 }
c178919b 13816
5968a7b8 13817 bfd_default_set_arch_mach (abfd, bfd_arch_arm, mach);
0a1b45a2 13818 return true;
c178919b
NC
13819}
13820
fc830a83 13821/* Function to keep ARM specific flags in the ELF header. */
3c9458e9 13822
0a1b45a2 13823static bool
57e8b36a 13824elf32_arm_set_private_flags (bfd *abfd, flagword flags)
252b5132
RH
13825{
13826 if (elf_flags_init (abfd)
13827 && elf_elfheader (abfd)->e_flags != flags)
13828 {
fc830a83
NC
13829 if (EF_ARM_EABI_VERSION (flags) == EF_ARM_EABI_UNKNOWN)
13830 {
fd2ec330 13831 if (flags & EF_ARM_INTERWORK)
4eca0228 13832 _bfd_error_handler
90b6238f 13833 (_("warning: not setting interworking flag of %pB since it has already been specified as non-interworking"),
d003868e 13834 abfd);
fc830a83 13835 else
d003868e 13836 _bfd_error_handler
90b6238f 13837 (_("warning: clearing the interworking flag of %pB due to outside request"),
d003868e 13838 abfd);
fc830a83 13839 }
252b5132
RH
13840 }
13841 else
13842 {
13843 elf_elfheader (abfd)->e_flags = flags;
0a1b45a2 13844 elf_flags_init (abfd) = true;
252b5132
RH
13845 }
13846
0a1b45a2 13847 return true;
252b5132
RH
13848}
13849
fc830a83 13850/* Copy backend specific data from one object module to another. */
9b485d32 13851
0a1b45a2 13852static bool
57e8b36a 13853elf32_arm_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
252b5132
RH
13854{
13855 flagword in_flags;
13856 flagword out_flags;
13857
0ffa91dd 13858 if (! is_arm_elf (ibfd) || ! is_arm_elf (obfd))
0a1b45a2 13859 return true;
252b5132 13860
fc830a83 13861 in_flags = elf_elfheader (ibfd)->e_flags;
252b5132
RH
13862 out_flags = elf_elfheader (obfd)->e_flags;
13863
fc830a83
NC
13864 if (elf_flags_init (obfd)
13865 && EF_ARM_EABI_VERSION (out_flags) == EF_ARM_EABI_UNKNOWN
13866 && in_flags != out_flags)
252b5132 13867 {
252b5132 13868 /* Cannot mix APCS26 and APCS32 code. */
fd2ec330 13869 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
0a1b45a2 13870 return false;
252b5132
RH
13871
13872 /* Cannot mix float APCS and non-float APCS code. */
fd2ec330 13873 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
0a1b45a2 13874 return false;
252b5132
RH
13875
13876 /* If the src and dest have different interworking flags
99059e56 13877 then turn off the interworking bit. */
fd2ec330 13878 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
252b5132 13879 {
fd2ec330 13880 if (out_flags & EF_ARM_INTERWORK)
d003868e 13881 _bfd_error_handler
90b6238f 13882 (_("warning: clearing the interworking flag of %pB because non-interworking code in %pB has been linked with it"),
d003868e 13883 obfd, ibfd);
252b5132 13884
fd2ec330 13885 in_flags &= ~EF_ARM_INTERWORK;
252b5132 13886 }
1006ba19
PB
13887
13888 /* Likewise for PIC, though don't warn for this case. */
fd2ec330
PB
13889 if ((in_flags & EF_ARM_PIC) != (out_flags & EF_ARM_PIC))
13890 in_flags &= ~EF_ARM_PIC;
252b5132
RH
13891 }
13892
13893 elf_elfheader (obfd)->e_flags = in_flags;
0a1b45a2 13894 elf_flags_init (obfd) = true;
252b5132 13895
e2349352 13896 return _bfd_elf_copy_private_bfd_data (ibfd, obfd);
ee065d83
PB
13897}
13898
13899/* Values for Tag_ABI_PCS_R9_use. */
13900enum
13901{
13902 AEABI_R9_V6,
13903 AEABI_R9_SB,
13904 AEABI_R9_TLS,
13905 AEABI_R9_unused
13906};
13907
13908/* Values for Tag_ABI_PCS_RW_data. */
13909enum
13910{
13911 AEABI_PCS_RW_data_absolute,
13912 AEABI_PCS_RW_data_PCrel,
13913 AEABI_PCS_RW_data_SBrel,
13914 AEABI_PCS_RW_data_unused
13915};
13916
13917/* Values for Tag_ABI_enum_size. */
13918enum
13919{
13920 AEABI_enum_unused,
13921 AEABI_enum_short,
13922 AEABI_enum_wide,
13923 AEABI_enum_forced_wide
13924};
13925
104d59d1
JM
13926/* Determine whether an object attribute tag takes an integer, a
13927 string or both. */
906e58ca 13928
104d59d1
JM
13929static int
13930elf32_arm_obj_attrs_arg_type (int tag)
13931{
13932 if (tag == Tag_compatibility)
3483fe2e 13933 return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL;
2d0bb761 13934 else if (tag == Tag_nodefaults)
3483fe2e
AS
13935 return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_NO_DEFAULT;
13936 else if (tag == Tag_CPU_raw_name || tag == Tag_CPU_name)
13937 return ATTR_TYPE_FLAG_STR_VAL;
104d59d1 13938 else if (tag < 32)
3483fe2e 13939 return ATTR_TYPE_FLAG_INT_VAL;
104d59d1 13940 else
3483fe2e 13941 return (tag & 1) != 0 ? ATTR_TYPE_FLAG_STR_VAL : ATTR_TYPE_FLAG_INT_VAL;
104d59d1
JM
13942}
13943
5aa6ff7c
AS
13944/* The ABI defines that Tag_conformance should be emitted first, and that
13945 Tag_nodefaults should be second (if either is defined). This sets those
13946 two positions, and bumps up the position of all the remaining tags to
13947 compensate. */
13948static int
13949elf32_arm_obj_attrs_order (int num)
13950{
3de4a297 13951 if (num == LEAST_KNOWN_OBJ_ATTRIBUTE)
5aa6ff7c 13952 return Tag_conformance;
3de4a297 13953 if (num == LEAST_KNOWN_OBJ_ATTRIBUTE + 1)
5aa6ff7c
AS
13954 return Tag_nodefaults;
13955 if ((num - 2) < Tag_nodefaults)
13956 return num - 2;
13957 if ((num - 1) < Tag_conformance)
13958 return num - 1;
13959 return num;
13960}
13961
e8b36cd1 13962/* Attribute numbers >=64 (mod 128) can be safely ignored. */
0a1b45a2 13963static bool
e8b36cd1
JM
13964elf32_arm_obj_attrs_handle_unknown (bfd *abfd, int tag)
13965{
13966 if ((tag & 127) < 64)
13967 {
13968 _bfd_error_handler
90b6238f 13969 (_("%pB: unknown mandatory EABI object attribute %d"),
e8b36cd1
JM
13970 abfd, tag);
13971 bfd_set_error (bfd_error_bad_value);
0a1b45a2 13972 return false;
e8b36cd1
JM
13973 }
13974 else
13975 {
13976 _bfd_error_handler
90b6238f 13977 (_("warning: %pB: unknown EABI object attribute %d"),
e8b36cd1 13978 abfd, tag);
0a1b45a2 13979 return true;
e8b36cd1
JM
13980 }
13981}
13982
91e22acd
AS
13983/* Read the architecture from the Tag_also_compatible_with attribute, if any.
13984 Returns -1 if no architecture could be read. */
13985
13986static int
13987get_secondary_compatible_arch (bfd *abfd)
13988{
13989 obj_attribute *attr =
13990 &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
13991
13992 /* Note: the tag and its argument below are uleb128 values, though
13993 currently-defined values fit in one byte for each. */
13994 if (attr->s
13995 && attr->s[0] == Tag_CPU_arch
13996 && (attr->s[1] & 128) != 128
13997 && attr->s[2] == 0)
13998 return attr->s[1];
13999
14000 /* This tag is "safely ignorable", so don't complain if it looks funny. */
14001 return -1;
14002}
14003
14004/* Set, or unset, the architecture of the Tag_also_compatible_with attribute.
14005 The tag is removed if ARCH is -1. */
14006
8e79c3df 14007static void
91e22acd 14008set_secondary_compatible_arch (bfd *abfd, int arch)
8e79c3df 14009{
91e22acd
AS
14010 obj_attribute *attr =
14011 &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
8e79c3df 14012
91e22acd
AS
14013 if (arch == -1)
14014 {
14015 attr->s = NULL;
14016 return;
8e79c3df 14017 }
91e22acd
AS
14018
14019 /* Note: the tag and its argument below are uleb128 values, though
14020 currently-defined values fit in one byte for each. */
14021 if (!attr->s)
21d799b5 14022 attr->s = (char *) bfd_alloc (abfd, 3);
91e22acd
AS
14023 attr->s[0] = Tag_CPU_arch;
14024 attr->s[1] = arch;
14025 attr->s[2] = '\0';
8e79c3df
CM
14026}
14027
91e22acd
AS
14028/* Combine two values for Tag_CPU_arch, taking secondary compatibility tags
14029 into account. */
14030
14031static int
14032tag_cpu_arch_combine (bfd *ibfd, int oldtag, int *secondary_compat_out,
14033 int newtag, int secondary_compat)
8e79c3df 14034{
91e22acd
AS
14035#define T(X) TAG_CPU_ARCH_##X
14036 int tagl, tagh, result;
14037 const int v6t2[] =
14038 {
14039 T(V6T2), /* PRE_V4. */
14040 T(V6T2), /* V4. */
14041 T(V6T2), /* V4T. */
14042 T(V6T2), /* V5T. */
14043 T(V6T2), /* V5TE. */
14044 T(V6T2), /* V5TEJ. */
14045 T(V6T2), /* V6. */
14046 T(V7), /* V6KZ. */
14047 T(V6T2) /* V6T2. */
14048 };
14049 const int v6k[] =
14050 {
14051 T(V6K), /* PRE_V4. */
14052 T(V6K), /* V4. */
14053 T(V6K), /* V4T. */
14054 T(V6K), /* V5T. */
14055 T(V6K), /* V5TE. */
14056 T(V6K), /* V5TEJ. */
14057 T(V6K), /* V6. */
14058 T(V6KZ), /* V6KZ. */
14059 T(V7), /* V6T2. */
14060 T(V6K) /* V6K. */
14061 };
14062 const int v7[] =
14063 {
14064 T(V7), /* PRE_V4. */
14065 T(V7), /* V4. */
14066 T(V7), /* V4T. */
14067 T(V7), /* V5T. */
14068 T(V7), /* V5TE. */
14069 T(V7), /* V5TEJ. */
14070 T(V7), /* V6. */
14071 T(V7), /* V6KZ. */
14072 T(V7), /* V6T2. */
14073 T(V7), /* V6K. */
14074 T(V7) /* V7. */
14075 };
14076 const int v6_m[] =
14077 {
07d6d2b8
AM
14078 -1, /* PRE_V4. */
14079 -1, /* V4. */
91e22acd
AS
14080 T(V6K), /* V4T. */
14081 T(V6K), /* V5T. */
14082 T(V6K), /* V5TE. */
14083 T(V6K), /* V5TEJ. */
14084 T(V6K), /* V6. */
14085 T(V6KZ), /* V6KZ. */
14086 T(V7), /* V6T2. */
14087 T(V6K), /* V6K. */
14088 T(V7), /* V7. */
14089 T(V6_M) /* V6_M. */
14090 };
14091 const int v6s_m[] =
14092 {
07d6d2b8
AM
14093 -1, /* PRE_V4. */
14094 -1, /* V4. */
91e22acd
AS
14095 T(V6K), /* V4T. */
14096 T(V6K), /* V5T. */
14097 T(V6K), /* V5TE. */
14098 T(V6K), /* V5TEJ. */
14099 T(V6K), /* V6. */
14100 T(V6KZ), /* V6KZ. */
14101 T(V7), /* V6T2. */
14102 T(V6K), /* V6K. */
14103 T(V7), /* V7. */
14104 T(V6S_M), /* V6_M. */
14105 T(V6S_M) /* V6S_M. */
14106 };
9e3c6df6
PB
14107 const int v7e_m[] =
14108 {
07d6d2b8
AM
14109 -1, /* PRE_V4. */
14110 -1, /* V4. */
9e3c6df6
PB
14111 T(V7E_M), /* V4T. */
14112 T(V7E_M), /* V5T. */
14113 T(V7E_M), /* V5TE. */
14114 T(V7E_M), /* V5TEJ. */
14115 T(V7E_M), /* V6. */
14116 T(V7E_M), /* V6KZ. */
14117 T(V7E_M), /* V6T2. */
14118 T(V7E_M), /* V6K. */
14119 T(V7E_M), /* V7. */
14120 T(V7E_M), /* V6_M. */
14121 T(V7E_M), /* V6S_M. */
14122 T(V7E_M) /* V7E_M. */
14123 };
bca38921
MGD
14124 const int v8[] =
14125 {
14126 T(V8), /* PRE_V4. */
14127 T(V8), /* V4. */
14128 T(V8), /* V4T. */
14129 T(V8), /* V5T. */
14130 T(V8), /* V5TE. */
14131 T(V8), /* V5TEJ. */
14132 T(V8), /* V6. */
14133 T(V8), /* V6KZ. */
14134 T(V8), /* V6T2. */
14135 T(V8), /* V6K. */
14136 T(V8), /* V7. */
14137 T(V8), /* V6_M. */
14138 T(V8), /* V6S_M. */
14139 T(V8), /* V7E_M. */
14140 T(V8) /* V8. */
14141 };
bff0500d
TP
14142 const int v8r[] =
14143 {
14144 T(V8R), /* PRE_V4. */
14145 T(V8R), /* V4. */
14146 T(V8R), /* V4T. */
14147 T(V8R), /* V5T. */
14148 T(V8R), /* V5TE. */
14149 T(V8R), /* V5TEJ. */
14150 T(V8R), /* V6. */
14151 T(V8R), /* V6KZ. */
14152 T(V8R), /* V6T2. */
14153 T(V8R), /* V6K. */
14154 T(V8R), /* V7. */
14155 T(V8R), /* V6_M. */
14156 T(V8R), /* V6S_M. */
14157 T(V8R), /* V7E_M. */
14158 T(V8), /* V8. */
14159 T(V8R), /* V8R. */
14160 };
2fd158eb
TP
14161 const int v8m_baseline[] =
14162 {
14163 -1, /* PRE_V4. */
14164 -1, /* V4. */
14165 -1, /* V4T. */
14166 -1, /* V5T. */
14167 -1, /* V5TE. */
14168 -1, /* V5TEJ. */
14169 -1, /* V6. */
14170 -1, /* V6KZ. */
14171 -1, /* V6T2. */
14172 -1, /* V6K. */
14173 -1, /* V7. */
14174 T(V8M_BASE), /* V6_M. */
14175 T(V8M_BASE), /* V6S_M. */
14176 -1, /* V7E_M. */
14177 -1, /* V8. */
bff0500d 14178 -1, /* V8R. */
2fd158eb
TP
14179 T(V8M_BASE) /* V8-M BASELINE. */
14180 };
14181 const int v8m_mainline[] =
14182 {
14183 -1, /* PRE_V4. */
14184 -1, /* V4. */
14185 -1, /* V4T. */
14186 -1, /* V5T. */
14187 -1, /* V5TE. */
14188 -1, /* V5TEJ. */
14189 -1, /* V6. */
14190 -1, /* V6KZ. */
14191 -1, /* V6T2. */
14192 -1, /* V6K. */
14193 T(V8M_MAIN), /* V7. */
14194 T(V8M_MAIN), /* V6_M. */
14195 T(V8M_MAIN), /* V6S_M. */
14196 T(V8M_MAIN), /* V7E_M. */
14197 -1, /* V8. */
bff0500d 14198 -1, /* V8R. */
2fd158eb
TP
14199 T(V8M_MAIN), /* V8-M BASELINE. */
14200 T(V8M_MAIN) /* V8-M MAINLINE. */
14201 };
031254f2
AV
14202 const int v8_1m_mainline[] =
14203 {
14204 -1, /* PRE_V4. */
14205 -1, /* V4. */
14206 -1, /* V4T. */
14207 -1, /* V5T. */
14208 -1, /* V5TE. */
14209 -1, /* V5TEJ. */
14210 -1, /* V6. */
14211 -1, /* V6KZ. */
14212 -1, /* V6T2. */
14213 -1, /* V6K. */
14214 T(V8_1M_MAIN), /* V7. */
14215 T(V8_1M_MAIN), /* V6_M. */
14216 T(V8_1M_MAIN), /* V6S_M. */
14217 T(V8_1M_MAIN), /* V7E_M. */
14218 -1, /* V8. */
14219 -1, /* V8R. */
14220 T(V8_1M_MAIN), /* V8-M BASELINE. */
14221 T(V8_1M_MAIN), /* V8-M MAINLINE. */
14222 -1, /* Unused (18). */
14223 -1, /* Unused (19). */
14224 -1, /* Unused (20). */
14225 T(V8_1M_MAIN) /* V8.1-M MAINLINE. */
14226 };
91e22acd
AS
14227 const int v4t_plus_v6_m[] =
14228 {
14229 -1, /* PRE_V4. */
14230 -1, /* V4. */
14231 T(V4T), /* V4T. */
14232 T(V5T), /* V5T. */
14233 T(V5TE), /* V5TE. */
14234 T(V5TEJ), /* V5TEJ. */
14235 T(V6), /* V6. */
14236 T(V6KZ), /* V6KZ. */
14237 T(V6T2), /* V6T2. */
14238 T(V6K), /* V6K. */
14239 T(V7), /* V7. */
14240 T(V6_M), /* V6_M. */
14241 T(V6S_M), /* V6S_M. */
9e3c6df6 14242 T(V7E_M), /* V7E_M. */
bca38921 14243 T(V8), /* V8. */
bff0500d 14244 -1, /* V8R. */
2fd158eb
TP
14245 T(V8M_BASE), /* V8-M BASELINE. */
14246 T(V8M_MAIN), /* V8-M MAINLINE. */
031254f2
AV
14247 -1, /* Unused (18). */
14248 -1, /* Unused (19). */
14249 -1, /* Unused (20). */
14250 T(V8_1M_MAIN), /* V8.1-M MAINLINE. */
91e22acd
AS
14251 T(V4T_PLUS_V6_M) /* V4T plus V6_M. */
14252 };
14253 const int *comb[] =
14254 {
14255 v6t2,
14256 v6k,
14257 v7,
14258 v6_m,
14259 v6s_m,
9e3c6df6 14260 v7e_m,
bca38921 14261 v8,
bff0500d 14262 v8r,
2fd158eb
TP
14263 v8m_baseline,
14264 v8m_mainline,
031254f2
AV
14265 NULL,
14266 NULL,
14267 NULL,
14268 v8_1m_mainline,
91e22acd
AS
14269 /* Pseudo-architecture. */
14270 v4t_plus_v6_m
14271 };
14272
14273 /* Check we've not got a higher architecture than we know about. */
14274
9e3c6df6 14275 if (oldtag > MAX_TAG_CPU_ARCH || newtag > MAX_TAG_CPU_ARCH)
91e22acd 14276 {
90b6238f 14277 _bfd_error_handler (_("error: %pB: unknown CPU architecture"), ibfd);
91e22acd
AS
14278 return -1;
14279 }
14280
14281 /* Override old tag if we have a Tag_also_compatible_with on the output. */
14282
14283 if ((oldtag == T(V6_M) && *secondary_compat_out == T(V4T))
14284 || (oldtag == T(V4T) && *secondary_compat_out == T(V6_M)))
14285 oldtag = T(V4T_PLUS_V6_M);
14286
14287 /* And override the new tag if we have a Tag_also_compatible_with on the
14288 input. */
14289
14290 if ((newtag == T(V6_M) && secondary_compat == T(V4T))
14291 || (newtag == T(V4T) && secondary_compat == T(V6_M)))
14292 newtag = T(V4T_PLUS_V6_M);
14293
14294 tagl = (oldtag < newtag) ? oldtag : newtag;
14295 result = tagh = (oldtag > newtag) ? oldtag : newtag;
14296
14297 /* Architectures before V6KZ add features monotonically. */
14298 if (tagh <= TAG_CPU_ARCH_V6KZ)
14299 return result;
14300
4ed7ed8d 14301 result = comb[tagh - T(V6T2)] ? comb[tagh - T(V6T2)][tagl] : -1;
91e22acd
AS
14302
14303 /* Use Tag_CPU_arch == V4T and Tag_also_compatible_with (Tag_CPU_arch V6_M)
14304 as the canonical version. */
14305 if (result == T(V4T_PLUS_V6_M))
14306 {
14307 result = T(V4T);
14308 *secondary_compat_out = T(V6_M);
14309 }
14310 else
14311 *secondary_compat_out = -1;
14312
14313 if (result == -1)
14314 {
90b6238f 14315 _bfd_error_handler (_("error: %pB: conflicting CPU architectures %d/%d"),
91e22acd
AS
14316 ibfd, oldtag, newtag);
14317 return -1;
14318 }
14319
14320 return result;
14321#undef T
8e79c3df
CM
14322}
14323
ac56ee8f
MGD
14324/* Query attributes object to see if integer divide instructions may be
14325 present in an object. */
0a1b45a2 14326static bool
ac56ee8f
MGD
14327elf32_arm_attributes_accept_div (const obj_attribute *attr)
14328{
14329 int arch = attr[Tag_CPU_arch].i;
14330 int profile = attr[Tag_CPU_arch_profile].i;
14331
14332 switch (attr[Tag_DIV_use].i)
14333 {
14334 case 0:
14335 /* Integer divide allowed if instruction contained in archetecture. */
14336 if (arch == TAG_CPU_ARCH_V7 && (profile == 'R' || profile == 'M'))
0a1b45a2 14337 return true;
ac56ee8f 14338 else if (arch >= TAG_CPU_ARCH_V7E_M)
0a1b45a2 14339 return true;
ac56ee8f 14340 else
0a1b45a2 14341 return false;
ac56ee8f
MGD
14342
14343 case 1:
14344 /* Integer divide explicitly prohibited. */
0a1b45a2 14345 return false;
ac56ee8f
MGD
14346
14347 default:
14348 /* Unrecognised case - treat as allowing divide everywhere. */
14349 case 2:
14350 /* Integer divide allowed in ARM state. */
0a1b45a2 14351 return true;
ac56ee8f
MGD
14352 }
14353}
14354
14355/* Query attributes object to see if integer divide instructions are
14356 forbidden to be in the object. This is not the inverse of
14357 elf32_arm_attributes_accept_div. */
0a1b45a2 14358static bool
ac56ee8f
MGD
14359elf32_arm_attributes_forbid_div (const obj_attribute *attr)
14360{
14361 return attr[Tag_DIV_use].i == 1;
14362}
14363
ee065d83
PB
14364/* Merge EABI object attributes from IBFD into OBFD. Raise an error if there
14365 are conflicting attributes. */
906e58ca 14366
0a1b45a2 14367static bool
50e03d47 14368elf32_arm_merge_eabi_attributes (bfd *ibfd, struct bfd_link_info *info)
ee065d83 14369{
50e03d47 14370 bfd *obfd = info->output_bfd;
104d59d1
JM
14371 obj_attribute *in_attr;
14372 obj_attribute *out_attr;
ee065d83
PB
14373 /* Some tags have 0 = don't care, 1 = strong requirement,
14374 2 = weak requirement. */
91e22acd 14375 static const int order_021[3] = {0, 2, 1};
ee065d83 14376 int i;
0a1b45a2 14377 bool result = true;
9274e9de 14378 const char *sec_name = get_elf_backend_data (ibfd)->obj_attrs_section;
ee065d83 14379
3e6b1042
DJ
14380 /* Skip the linker stubs file. This preserves previous behavior
14381 of accepting unknown attributes in the first input file - but
14382 is that a bug? */
14383 if (ibfd->flags & BFD_LINKER_CREATED)
0a1b45a2 14384 return true;
3e6b1042 14385
9274e9de
TG
14386 /* Skip any input that hasn't attribute section.
14387 This enables to link object files without attribute section with
14388 any others. */
14389 if (bfd_get_section_by_name (ibfd, sec_name) == NULL)
0a1b45a2 14390 return true;
9274e9de 14391
104d59d1 14392 if (!elf_known_obj_attributes_proc (obfd)[0].i)
ee065d83
PB
14393 {
14394 /* This is the first object. Copy the attributes. */
104d59d1 14395 _bfd_elf_copy_obj_attributes (ibfd, obfd);
004ae526 14396
cd21e546
MGD
14397 out_attr = elf_known_obj_attributes_proc (obfd);
14398
004ae526
PB
14399 /* Use the Tag_null value to indicate the attributes have been
14400 initialized. */
cd21e546 14401 out_attr[0].i = 1;
004ae526 14402
cd21e546
MGD
14403 /* We do not output objects with Tag_MPextension_use_legacy - we move
14404 the attribute's value to Tag_MPextension_use. */
14405 if (out_attr[Tag_MPextension_use_legacy].i != 0)
14406 {
14407 if (out_attr[Tag_MPextension_use].i != 0
14408 && out_attr[Tag_MPextension_use_legacy].i
99059e56 14409 != out_attr[Tag_MPextension_use].i)
cd21e546
MGD
14410 {
14411 _bfd_error_handler
871b3ab2 14412 (_("Error: %pB has both the current and legacy "
cd21e546 14413 "Tag_MPextension_use attributes"), ibfd);
0a1b45a2 14414 result = false;
cd21e546
MGD
14415 }
14416
14417 out_attr[Tag_MPextension_use] =
14418 out_attr[Tag_MPextension_use_legacy];
14419 out_attr[Tag_MPextension_use_legacy].type = 0;
14420 out_attr[Tag_MPextension_use_legacy].i = 0;
14421 }
14422
14423 return result;
ee065d83
PB
14424 }
14425
104d59d1
JM
14426 in_attr = elf_known_obj_attributes_proc (ibfd);
14427 out_attr = elf_known_obj_attributes_proc (obfd);
ee065d83
PB
14428 /* This needs to happen before Tag_ABI_FP_number_model is merged. */
14429 if (in_attr[Tag_ABI_VFP_args].i != out_attr[Tag_ABI_VFP_args].i)
14430 {
5c294fee
TG
14431 /* Ignore mismatches if the object doesn't use floating point or is
14432 floating point ABI independent. */
14433 if (out_attr[Tag_ABI_FP_number_model].i == AEABI_FP_number_model_none
14434 || (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14435 && out_attr[Tag_ABI_VFP_args].i == AEABI_VFP_args_compatible))
ee065d83 14436 out_attr[Tag_ABI_VFP_args].i = in_attr[Tag_ABI_VFP_args].i;
5c294fee
TG
14437 else if (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14438 && in_attr[Tag_ABI_VFP_args].i != AEABI_VFP_args_compatible)
ee065d83
PB
14439 {
14440 _bfd_error_handler
871b3ab2 14441 (_("error: %pB uses VFP register arguments, %pB does not"),
deddc40b
NS
14442 in_attr[Tag_ABI_VFP_args].i ? ibfd : obfd,
14443 in_attr[Tag_ABI_VFP_args].i ? obfd : ibfd);
0a1b45a2 14444 result = false;
ee065d83
PB
14445 }
14446 }
14447
3de4a297 14448 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
ee065d83
PB
14449 {
14450 /* Merge this attribute with existing attributes. */
14451 switch (i)
14452 {
14453 case Tag_CPU_raw_name:
14454 case Tag_CPU_name:
6a631e86 14455 /* These are merged after Tag_CPU_arch. */
ee065d83
PB
14456 break;
14457
14458 case Tag_ABI_optimization_goals:
14459 case Tag_ABI_FP_optimization_goals:
14460 /* Use the first value seen. */
14461 break;
14462
14463 case Tag_CPU_arch:
91e22acd
AS
14464 {
14465 int secondary_compat = -1, secondary_compat_out = -1;
14466 unsigned int saved_out_attr = out_attr[i].i;
70e99720
TG
14467 int arch_attr;
14468 static const char *name_table[] =
14469 {
91e22acd
AS
14470 /* These aren't real CPU names, but we can't guess
14471 that from the architecture version alone. */
14472 "Pre v4",
14473 "ARM v4",
14474 "ARM v4T",
14475 "ARM v5T",
14476 "ARM v5TE",
14477 "ARM v5TEJ",
14478 "ARM v6",
14479 "ARM v6KZ",
14480 "ARM v6T2",
14481 "ARM v6K",
14482 "ARM v7",
14483 "ARM v6-M",
bca38921 14484 "ARM v6S-M",
2fd158eb
TP
14485 "ARM v8",
14486 "",
14487 "ARM v8-M.baseline",
14488 "ARM v8-M.mainline",
91e22acd
AS
14489 };
14490
14491 /* Merge Tag_CPU_arch and Tag_also_compatible_with. */
14492 secondary_compat = get_secondary_compatible_arch (ibfd);
14493 secondary_compat_out = get_secondary_compatible_arch (obfd);
70e99720
TG
14494 arch_attr = tag_cpu_arch_combine (ibfd, out_attr[i].i,
14495 &secondary_compat_out,
14496 in_attr[i].i,
14497 secondary_compat);
14498
14499 /* Return with error if failed to merge. */
14500 if (arch_attr == -1)
0a1b45a2 14501 return false;
70e99720
TG
14502
14503 out_attr[i].i = arch_attr;
14504
91e22acd
AS
14505 set_secondary_compatible_arch (obfd, secondary_compat_out);
14506
14507 /* Merge Tag_CPU_name and Tag_CPU_raw_name. */
14508 if (out_attr[i].i == saved_out_attr)
14509 ; /* Leave the names alone. */
14510 else if (out_attr[i].i == in_attr[i].i)
14511 {
14512 /* The output architecture has been changed to match the
14513 input architecture. Use the input names. */
14514 out_attr[Tag_CPU_name].s = in_attr[Tag_CPU_name].s
14515 ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_name].s)
14516 : NULL;
14517 out_attr[Tag_CPU_raw_name].s = in_attr[Tag_CPU_raw_name].s
14518 ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_raw_name].s)
14519 : NULL;
14520 }
14521 else
14522 {
14523 out_attr[Tag_CPU_name].s = NULL;
14524 out_attr[Tag_CPU_raw_name].s = NULL;
14525 }
14526
14527 /* If we still don't have a value for Tag_CPU_name,
14528 make one up now. Tag_CPU_raw_name remains blank. */
14529 if (out_attr[Tag_CPU_name].s == NULL
14530 && out_attr[i].i < ARRAY_SIZE (name_table))
14531 out_attr[Tag_CPU_name].s =
14532 _bfd_elf_attr_strdup (obfd, name_table[out_attr[i].i]);
14533 }
14534 break;
14535
ee065d83
PB
14536 case Tag_ARM_ISA_use:
14537 case Tag_THUMB_ISA_use:
ee065d83 14538 case Tag_WMMX_arch:
91e22acd
AS
14539 case Tag_Advanced_SIMD_arch:
14540 /* ??? Do Advanced_SIMD (NEON) and WMMX conflict? */
ee065d83 14541 case Tag_ABI_FP_rounding:
ee065d83
PB
14542 case Tag_ABI_FP_exceptions:
14543 case Tag_ABI_FP_user_exceptions:
14544 case Tag_ABI_FP_number_model:
75375b3e 14545 case Tag_FP_HP_extension:
91e22acd
AS
14546 case Tag_CPU_unaligned_access:
14547 case Tag_T2EE_use:
91e22acd 14548 case Tag_MPextension_use:
a7ad558c 14549 case Tag_MVE_arch:
ee065d83
PB
14550 /* Use the largest value specified. */
14551 if (in_attr[i].i > out_attr[i].i)
14552 out_attr[i].i = in_attr[i].i;
14553 break;
14554
75375b3e 14555 case Tag_ABI_align_preserved:
91e22acd
AS
14556 case Tag_ABI_PCS_RO_data:
14557 /* Use the smallest value specified. */
14558 if (in_attr[i].i < out_attr[i].i)
14559 out_attr[i].i = in_attr[i].i;
14560 break;
14561
75375b3e 14562 case Tag_ABI_align_needed:
91e22acd 14563 if ((in_attr[i].i > 0 || out_attr[i].i > 0)
75375b3e
MGD
14564 && (in_attr[Tag_ABI_align_preserved].i == 0
14565 || out_attr[Tag_ABI_align_preserved].i == 0))
ee065d83 14566 {
91e22acd
AS
14567 /* This error message should be enabled once all non-conformant
14568 binaries in the toolchain have had the attributes set
14569 properly.
ee065d83 14570 _bfd_error_handler
871b3ab2 14571 (_("error: %pB: 8-byte data alignment conflicts with %pB"),
91e22acd 14572 obfd, ibfd);
0a1b45a2 14573 result = false; */
ee065d83 14574 }
91e22acd
AS
14575 /* Fall through. */
14576 case Tag_ABI_FP_denormal:
14577 case Tag_ABI_PCS_GOT_use:
14578 /* Use the "greatest" from the sequence 0, 2, 1, or the largest
14579 value if greater than 2 (for future-proofing). */
14580 if ((in_attr[i].i > 2 && in_attr[i].i > out_attr[i].i)
14581 || (in_attr[i].i <= 2 && out_attr[i].i <= 2
14582 && order_021[in_attr[i].i] > order_021[out_attr[i].i]))
ee065d83
PB
14583 out_attr[i].i = in_attr[i].i;
14584 break;
91e22acd 14585
75375b3e
MGD
14586 case Tag_Virtualization_use:
14587 /* The virtualization tag effectively stores two bits of
14588 information: the intended use of TrustZone (in bit 0), and the
14589 intended use of Virtualization (in bit 1). */
14590 if (out_attr[i].i == 0)
14591 out_attr[i].i = in_attr[i].i;
14592 else if (in_attr[i].i != 0
14593 && in_attr[i].i != out_attr[i].i)
14594 {
14595 if (in_attr[i].i <= 3 && out_attr[i].i <= 3)
14596 out_attr[i].i = 3;
14597 else
14598 {
14599 _bfd_error_handler
871b3ab2
AM
14600 (_("error: %pB: unable to merge virtualization attributes "
14601 "with %pB"),
75375b3e 14602 obfd, ibfd);
0a1b45a2 14603 result = false;
75375b3e
MGD
14604 }
14605 }
14606 break;
91e22acd
AS
14607
14608 case Tag_CPU_arch_profile:
14609 if (out_attr[i].i != in_attr[i].i)
14610 {
14611 /* 0 will merge with anything.
14612 'A' and 'S' merge to 'A'.
14613 'R' and 'S' merge to 'R'.
99059e56 14614 'M' and 'A|R|S' is an error. */
91e22acd
AS
14615 if (out_attr[i].i == 0
14616 || (out_attr[i].i == 'S'
14617 && (in_attr[i].i == 'A' || in_attr[i].i == 'R')))
14618 out_attr[i].i = in_attr[i].i;
14619 else if (in_attr[i].i == 0
14620 || (in_attr[i].i == 'S'
14621 && (out_attr[i].i == 'A' || out_attr[i].i == 'R')))
6a631e86 14622 ; /* Do nothing. */
91e22acd
AS
14623 else
14624 {
14625 _bfd_error_handler
90b6238f 14626 (_("error: %pB: conflicting architecture profiles %c/%c"),
91e22acd
AS
14627 ibfd,
14628 in_attr[i].i ? in_attr[i].i : '0',
14629 out_attr[i].i ? out_attr[i].i : '0');
0a1b45a2 14630 result = false;
91e22acd
AS
14631 }
14632 }
14633 break;
15afaa63
TP
14634
14635 case Tag_DSP_extension:
14636 /* No need to change output value if any of:
14637 - pre (<=) ARMv5T input architecture (do not have DSP)
14638 - M input profile not ARMv7E-M and do not have DSP. */
14639 if (in_attr[Tag_CPU_arch].i <= 3
14640 || (in_attr[Tag_CPU_arch_profile].i == 'M'
14641 && in_attr[Tag_CPU_arch].i != 13
14642 && in_attr[i].i == 0))
14643 ; /* Do nothing. */
14644 /* Output value should be 0 if DSP part of architecture, ie.
14645 - post (>=) ARMv5te architecture output
14646 - A, R or S profile output or ARMv7E-M output architecture. */
14647 else if (out_attr[Tag_CPU_arch].i >= 4
14648 && (out_attr[Tag_CPU_arch_profile].i == 'A'
14649 || out_attr[Tag_CPU_arch_profile].i == 'R'
14650 || out_attr[Tag_CPU_arch_profile].i == 'S'
14651 || out_attr[Tag_CPU_arch].i == 13))
14652 out_attr[i].i = 0;
14653 /* Otherwise, DSP instructions are added and not part of output
14654 architecture. */
14655 else
14656 out_attr[i].i = 1;
14657 break;
14658
75375b3e 14659 case Tag_FP_arch:
62f3b8c8 14660 {
4547cb56
NC
14661 /* Tag_ABI_HardFP_use is handled along with Tag_FP_arch since
14662 the meaning of Tag_ABI_HardFP_use depends on Tag_FP_arch
14663 when it's 0. It might mean absence of FP hardware if
99654aaf 14664 Tag_FP_arch is zero. */
4547cb56 14665
a715796b 14666#define VFP_VERSION_COUNT 9
62f3b8c8
PB
14667 static const struct
14668 {
14669 int ver;
14670 int regs;
bca38921 14671 } vfp_versions[VFP_VERSION_COUNT] =
62f3b8c8
PB
14672 {
14673 {0, 0},
14674 {1, 16},
14675 {2, 16},
14676 {3, 32},
14677 {3, 16},
14678 {4, 32},
bca38921 14679 {4, 16},
a715796b
TG
14680 {8, 32},
14681 {8, 16}
62f3b8c8
PB
14682 };
14683 int ver;
14684 int regs;
14685 int newval;
14686
4547cb56
NC
14687 /* If the output has no requirement about FP hardware,
14688 follow the requirement of the input. */
14689 if (out_attr[i].i == 0)
14690 {
4ec192e6
RE
14691 /* This assert is still reasonable, we shouldn't
14692 produce the suspicious build attribute
14693 combination (See below for in_attr). */
4547cb56
NC
14694 BFD_ASSERT (out_attr[Tag_ABI_HardFP_use].i == 0);
14695 out_attr[i].i = in_attr[i].i;
14696 out_attr[Tag_ABI_HardFP_use].i
14697 = in_attr[Tag_ABI_HardFP_use].i;
14698 break;
14699 }
14700 /* If the input has no requirement about FP hardware, do
14701 nothing. */
14702 else if (in_attr[i].i == 0)
14703 {
4ec192e6
RE
14704 /* We used to assert that Tag_ABI_HardFP_use was
14705 zero here, but we should never assert when
14706 consuming an object file that has suspicious
14707 build attributes. The single precision variant
14708 of 'no FP architecture' is still 'no FP
14709 architecture', so we just ignore the tag in this
14710 case. */
4547cb56
NC
14711 break;
14712 }
14713
14714 /* Both the input and the output have nonzero Tag_FP_arch.
99654aaf 14715 So Tag_ABI_HardFP_use is implied by Tag_FP_arch when it's zero. */
4547cb56
NC
14716
14717 /* If both the input and the output have zero Tag_ABI_HardFP_use,
14718 do nothing. */
14719 if (in_attr[Tag_ABI_HardFP_use].i == 0
14720 && out_attr[Tag_ABI_HardFP_use].i == 0)
14721 ;
14722 /* If the input and the output have different Tag_ABI_HardFP_use,
99654aaf 14723 the combination of them is 0 (implied by Tag_FP_arch). */
4547cb56
NC
14724 else if (in_attr[Tag_ABI_HardFP_use].i
14725 != out_attr[Tag_ABI_HardFP_use].i)
99654aaf 14726 out_attr[Tag_ABI_HardFP_use].i = 0;
4547cb56
NC
14727
14728 /* Now we can handle Tag_FP_arch. */
14729
bca38921
MGD
14730 /* Values of VFP_VERSION_COUNT or more aren't defined, so just
14731 pick the biggest. */
14732 if (in_attr[i].i >= VFP_VERSION_COUNT
14733 && in_attr[i].i > out_attr[i].i)
62f3b8c8
PB
14734 {
14735 out_attr[i] = in_attr[i];
14736 break;
14737 }
14738 /* The output uses the superset of input features
14739 (ISA version) and registers. */
14740 ver = vfp_versions[in_attr[i].i].ver;
14741 if (ver < vfp_versions[out_attr[i].i].ver)
14742 ver = vfp_versions[out_attr[i].i].ver;
14743 regs = vfp_versions[in_attr[i].i].regs;
14744 if (regs < vfp_versions[out_attr[i].i].regs)
14745 regs = vfp_versions[out_attr[i].i].regs;
14746 /* This assumes all possible supersets are also a valid
99059e56 14747 options. */
bca38921 14748 for (newval = VFP_VERSION_COUNT - 1; newval > 0; newval--)
62f3b8c8
PB
14749 {
14750 if (regs == vfp_versions[newval].regs
14751 && ver == vfp_versions[newval].ver)
14752 break;
14753 }
14754 out_attr[i].i = newval;
14755 }
b1cc4aeb 14756 break;
ee065d83
PB
14757 case Tag_PCS_config:
14758 if (out_attr[i].i == 0)
14759 out_attr[i].i = in_attr[i].i;
b6009aca 14760 else if (in_attr[i].i != 0 && out_attr[i].i != in_attr[i].i)
ee065d83
PB
14761 {
14762 /* It's sometimes ok to mix different configs, so this is only
99059e56 14763 a warning. */
ee065d83 14764 _bfd_error_handler
90b6238f 14765 (_("warning: %pB: conflicting platform configuration"), ibfd);
ee065d83
PB
14766 }
14767 break;
14768 case Tag_ABI_PCS_R9_use:
004ae526
PB
14769 if (in_attr[i].i != out_attr[i].i
14770 && out_attr[i].i != AEABI_R9_unused
ee065d83
PB
14771 && in_attr[i].i != AEABI_R9_unused)
14772 {
14773 _bfd_error_handler
90b6238f 14774 (_("error: %pB: conflicting use of R9"), ibfd);
0a1b45a2 14775 result = false;
ee065d83
PB
14776 }
14777 if (out_attr[i].i == AEABI_R9_unused)
14778 out_attr[i].i = in_attr[i].i;
14779 break;
14780 case Tag_ABI_PCS_RW_data:
14781 if (in_attr[i].i == AEABI_PCS_RW_data_SBrel
14782 && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_SB
14783 && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_unused)
14784 {
14785 _bfd_error_handler
871b3ab2 14786 (_("error: %pB: SB relative addressing conflicts with use of R9"),
ee065d83 14787 ibfd);
0a1b45a2 14788 result = false;
ee065d83
PB
14789 }
14790 /* Use the smallest value specified. */
14791 if (in_attr[i].i < out_attr[i].i)
14792 out_attr[i].i = in_attr[i].i;
14793 break;
ee065d83 14794 case Tag_ABI_PCS_wchar_t:
a9dc9481
JM
14795 if (out_attr[i].i && in_attr[i].i && out_attr[i].i != in_attr[i].i
14796 && !elf_arm_tdata (obfd)->no_wchar_size_warning)
ee065d83
PB
14797 {
14798 _bfd_error_handler
871b3ab2 14799 (_("warning: %pB uses %u-byte wchar_t yet the output is to use %u-byte wchar_t; use of wchar_t values across objects may fail"),
a9dc9481 14800 ibfd, in_attr[i].i, out_attr[i].i);
ee065d83 14801 }
a9dc9481 14802 else if (in_attr[i].i && !out_attr[i].i)
ee065d83
PB
14803 out_attr[i].i = in_attr[i].i;
14804 break;
ee065d83
PB
14805 case Tag_ABI_enum_size:
14806 if (in_attr[i].i != AEABI_enum_unused)
14807 {
14808 if (out_attr[i].i == AEABI_enum_unused
14809 || out_attr[i].i == AEABI_enum_forced_wide)
14810 {
14811 /* The existing object is compatible with anything.
14812 Use whatever requirements the new object has. */
14813 out_attr[i].i = in_attr[i].i;
14814 }
14815 else if (in_attr[i].i != AEABI_enum_forced_wide
bf21ed78 14816 && out_attr[i].i != in_attr[i].i
0ffa91dd 14817 && !elf_arm_tdata (obfd)->no_enum_size_warning)
ee065d83 14818 {
91e22acd 14819 static const char *aeabi_enum_names[] =
bf21ed78 14820 { "", "variable-size", "32-bit", "" };
91e22acd
AS
14821 const char *in_name =
14822 in_attr[i].i < ARRAY_SIZE(aeabi_enum_names)
14823 ? aeabi_enum_names[in_attr[i].i]
14824 : "<unknown>";
14825 const char *out_name =
14826 out_attr[i].i < ARRAY_SIZE(aeabi_enum_names)
14827 ? aeabi_enum_names[out_attr[i].i]
14828 : "<unknown>";
ee065d83 14829 _bfd_error_handler
871b3ab2 14830 (_("warning: %pB uses %s enums yet the output is to use %s enums; use of enum values across objects may fail"),
91e22acd 14831 ibfd, in_name, out_name);
ee065d83
PB
14832 }
14833 }
14834 break;
14835 case Tag_ABI_VFP_args:
14836 /* Aready done. */
14837 break;
14838 case Tag_ABI_WMMX_args:
14839 if (in_attr[i].i != out_attr[i].i)
14840 {
14841 _bfd_error_handler
871b3ab2 14842 (_("error: %pB uses iWMMXt register arguments, %pB does not"),
ee065d83 14843 ibfd, obfd);
0a1b45a2 14844 result = false;
ee065d83
PB
14845 }
14846 break;
7b86a9fa
AS
14847 case Tag_compatibility:
14848 /* Merged in target-independent code. */
14849 break;
91e22acd 14850 case Tag_ABI_HardFP_use:
4547cb56 14851 /* This is handled along with Tag_FP_arch. */
91e22acd
AS
14852 break;
14853 case Tag_ABI_FP_16bit_format:
14854 if (in_attr[i].i != 0 && out_attr[i].i != 0)
14855 {
14856 if (in_attr[i].i != out_attr[i].i)
14857 {
14858 _bfd_error_handler
871b3ab2 14859 (_("error: fp16 format mismatch between %pB and %pB"),
91e22acd 14860 ibfd, obfd);
0a1b45a2 14861 result = false;
91e22acd
AS
14862 }
14863 }
14864 if (in_attr[i].i != 0)
14865 out_attr[i].i = in_attr[i].i;
14866 break;
7b86a9fa 14867
cd21e546 14868 case Tag_DIV_use:
ac56ee8f
MGD
14869 /* A value of zero on input means that the divide instruction may
14870 be used if available in the base architecture as specified via
14871 Tag_CPU_arch and Tag_CPU_arch_profile. A value of 1 means that
14872 the user did not want divide instructions. A value of 2
14873 explicitly means that divide instructions were allowed in ARM
14874 and Thumb state. */
14875 if (in_attr[i].i == out_attr[i].i)
14876 /* Do nothing. */ ;
14877 else if (elf32_arm_attributes_forbid_div (in_attr)
14878 && !elf32_arm_attributes_accept_div (out_attr))
14879 out_attr[i].i = 1;
14880 else if (elf32_arm_attributes_forbid_div (out_attr)
14881 && elf32_arm_attributes_accept_div (in_attr))
14882 out_attr[i].i = in_attr[i].i;
14883 else if (in_attr[i].i == 2)
14884 out_attr[i].i = in_attr[i].i;
cd21e546
MGD
14885 break;
14886
14887 case Tag_MPextension_use_legacy:
14888 /* We don't output objects with Tag_MPextension_use_legacy - we
14889 move the value to Tag_MPextension_use. */
14890 if (in_attr[i].i != 0 && in_attr[Tag_MPextension_use].i != 0)
14891 {
14892 if (in_attr[Tag_MPextension_use].i != in_attr[i].i)
14893 {
14894 _bfd_error_handler
871b3ab2 14895 (_("%pB has both the current and legacy "
b38cadfb 14896 "Tag_MPextension_use attributes"),
cd21e546 14897 ibfd);
0a1b45a2 14898 result = false;
cd21e546
MGD
14899 }
14900 }
14901
14902 if (in_attr[i].i > out_attr[Tag_MPextension_use].i)
14903 out_attr[Tag_MPextension_use] = in_attr[i];
14904
14905 break;
14906
91e22acd 14907 case Tag_nodefaults:
2d0bb761
AS
14908 /* This tag is set if it exists, but the value is unused (and is
14909 typically zero). We don't actually need to do anything here -
14910 the merge happens automatically when the type flags are merged
14911 below. */
91e22acd
AS
14912 break;
14913 case Tag_also_compatible_with:
14914 /* Already done in Tag_CPU_arch. */
14915 break;
14916 case Tag_conformance:
14917 /* Keep the attribute if it matches. Throw it away otherwise.
14918 No attribute means no claim to conform. */
14919 if (!in_attr[i].s || !out_attr[i].s
14920 || strcmp (in_attr[i].s, out_attr[i].s) != 0)
14921 out_attr[i].s = NULL;
14922 break;
3cfad14c 14923
91e22acd 14924 default:
e8b36cd1
JM
14925 result
14926 = result && _bfd_elf_merge_unknown_attribute_low (ibfd, obfd, i);
91e22acd
AS
14927 }
14928
14929 /* If out_attr was copied from in_attr then it won't have a type yet. */
14930 if (in_attr[i].type && !out_attr[i].type)
14931 out_attr[i].type = in_attr[i].type;
ee065d83
PB
14932 }
14933
104d59d1 14934 /* Merge Tag_compatibility attributes and any common GNU ones. */
50e03d47 14935 if (!_bfd_elf_merge_object_attributes (ibfd, info))
0a1b45a2 14936 return false;
ee065d83 14937
104d59d1 14938 /* Check for any attributes not known on ARM. */
e8b36cd1 14939 result &= _bfd_elf_merge_unknown_attribute_list (ibfd, obfd);
91e22acd 14940
91e22acd 14941 return result;
252b5132
RH
14942}
14943
3a4a14e9
PB
14944
14945/* Return TRUE if the two EABI versions are incompatible. */
14946
0a1b45a2 14947static bool
3a4a14e9
PB
14948elf32_arm_versions_compatible (unsigned iver, unsigned over)
14949{
14950 /* v4 and v5 are the same spec before and after it was released,
14951 so allow mixing them. */
14952 if ((iver == EF_ARM_EABI_VER4 && over == EF_ARM_EABI_VER5)
14953 || (iver == EF_ARM_EABI_VER5 && over == EF_ARM_EABI_VER4))
0a1b45a2 14954 return true;
3a4a14e9
PB
14955
14956 return (iver == over);
14957}
14958
252b5132
RH
14959/* Merge backend specific data from an object file to the output
14960 object file when linking. */
9b485d32 14961
0a1b45a2 14962static bool
50e03d47 14963elf32_arm_merge_private_bfd_data (bfd *, struct bfd_link_info *);
252b5132 14964
9b485d32
NC
14965/* Display the flags field. */
14966
0a1b45a2 14967static bool
57e8b36a 14968elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
252b5132 14969{
fc830a83
NC
14970 FILE * file = (FILE *) ptr;
14971 unsigned long flags;
252b5132
RH
14972
14973 BFD_ASSERT (abfd != NULL && ptr != NULL);
14974
14975 /* Print normal ELF private data. */
14976 _bfd_elf_print_private_bfd_data (abfd, ptr);
14977
fc830a83 14978 flags = elf_elfheader (abfd)->e_flags;
9b485d32
NC
14979 /* Ignore init flag - it may not be set, despite the flags field
14980 containing valid data. */
252b5132 14981
dbb078f6 14982 fprintf (file, _("private flags = 0x%lx:"), elf_elfheader (abfd)->e_flags);
252b5132 14983
fc830a83
NC
14984 switch (EF_ARM_EABI_VERSION (flags))
14985 {
14986 case EF_ARM_EABI_UNKNOWN:
4cc11e76 14987 /* The following flag bits are GNU extensions and not part of the
fc830a83
NC
14988 official ARM ELF extended ABI. Hence they are only decoded if
14989 the EABI version is not set. */
fd2ec330 14990 if (flags & EF_ARM_INTERWORK)
9b485d32 14991 fprintf (file, _(" [interworking enabled]"));
9a5aca8c 14992
fd2ec330 14993 if (flags & EF_ARM_APCS_26)
6c571f00 14994 fprintf (file, " [APCS-26]");
fc830a83 14995 else
6c571f00 14996 fprintf (file, " [APCS-32]");
9a5aca8c 14997
96a846ea
RE
14998 if (flags & EF_ARM_VFP_FLOAT)
14999 fprintf (file, _(" [VFP float format]"));
fde78edd
NC
15000 else if (flags & EF_ARM_MAVERICK_FLOAT)
15001 fprintf (file, _(" [Maverick float format]"));
96a846ea
RE
15002 else
15003 fprintf (file, _(" [FPA float format]"));
15004
fd2ec330 15005 if (flags & EF_ARM_APCS_FLOAT)
9b485d32 15006 fprintf (file, _(" [floats passed in float registers]"));
9a5aca8c 15007
fd2ec330 15008 if (flags & EF_ARM_PIC)
9b485d32 15009 fprintf (file, _(" [position independent]"));
fc830a83 15010
fd2ec330 15011 if (flags & EF_ARM_NEW_ABI)
9b485d32 15012 fprintf (file, _(" [new ABI]"));
9a5aca8c 15013
fd2ec330 15014 if (flags & EF_ARM_OLD_ABI)
9b485d32 15015 fprintf (file, _(" [old ABI]"));
9a5aca8c 15016
fd2ec330 15017 if (flags & EF_ARM_SOFT_FLOAT)
9b485d32 15018 fprintf (file, _(" [software FP]"));
9a5aca8c 15019
96a846ea
RE
15020 flags &= ~(EF_ARM_INTERWORK | EF_ARM_APCS_26 | EF_ARM_APCS_FLOAT
15021 | EF_ARM_PIC | EF_ARM_NEW_ABI | EF_ARM_OLD_ABI
fde78edd
NC
15022 | EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT
15023 | EF_ARM_MAVERICK_FLOAT);
fc830a83 15024 break;
9a5aca8c 15025
fc830a83 15026 case EF_ARM_EABI_VER1:
9b485d32 15027 fprintf (file, _(" [Version1 EABI]"));
9a5aca8c 15028
fc830a83 15029 if (flags & EF_ARM_SYMSARESORTED)
9b485d32 15030 fprintf (file, _(" [sorted symbol table]"));
fc830a83 15031 else
9b485d32 15032 fprintf (file, _(" [unsorted symbol table]"));
9a5aca8c 15033
fc830a83
NC
15034 flags &= ~ EF_ARM_SYMSARESORTED;
15035 break;
9a5aca8c 15036
fd2ec330
PB
15037 case EF_ARM_EABI_VER2:
15038 fprintf (file, _(" [Version2 EABI]"));
15039
15040 if (flags & EF_ARM_SYMSARESORTED)
15041 fprintf (file, _(" [sorted symbol table]"));
15042 else
15043 fprintf (file, _(" [unsorted symbol table]"));
15044
15045 if (flags & EF_ARM_DYNSYMSUSESEGIDX)
15046 fprintf (file, _(" [dynamic symbols use segment index]"));
15047
15048 if (flags & EF_ARM_MAPSYMSFIRST)
15049 fprintf (file, _(" [mapping symbols precede others]"));
15050
99e4ae17 15051 flags &= ~(EF_ARM_SYMSARESORTED | EF_ARM_DYNSYMSUSESEGIDX
fd2ec330
PB
15052 | EF_ARM_MAPSYMSFIRST);
15053 break;
15054
d507cf36
PB
15055 case EF_ARM_EABI_VER3:
15056 fprintf (file, _(" [Version3 EABI]"));
8cb51566
PB
15057 break;
15058
15059 case EF_ARM_EABI_VER4:
15060 fprintf (file, _(" [Version4 EABI]"));
3a4a14e9 15061 goto eabi;
d507cf36 15062
3a4a14e9
PB
15063 case EF_ARM_EABI_VER5:
15064 fprintf (file, _(" [Version5 EABI]"));
3bfcb652
NC
15065
15066 if (flags & EF_ARM_ABI_FLOAT_SOFT)
15067 fprintf (file, _(" [soft-float ABI]"));
15068
15069 if (flags & EF_ARM_ABI_FLOAT_HARD)
15070 fprintf (file, _(" [hard-float ABI]"));
15071
15072 flags &= ~(EF_ARM_ABI_FLOAT_SOFT | EF_ARM_ABI_FLOAT_HARD);
15073
3a4a14e9 15074 eabi:
d507cf36
PB
15075 if (flags & EF_ARM_BE8)
15076 fprintf (file, _(" [BE8]"));
15077
15078 if (flags & EF_ARM_LE8)
15079 fprintf (file, _(" [LE8]"));
15080
15081 flags &= ~(EF_ARM_LE8 | EF_ARM_BE8);
15082 break;
15083
fc830a83 15084 default:
9b485d32 15085 fprintf (file, _(" <EABI version unrecognised>"));
fc830a83
NC
15086 break;
15087 }
252b5132 15088
fc830a83 15089 flags &= ~ EF_ARM_EABIMASK;
252b5132 15090
fc830a83 15091 if (flags & EF_ARM_RELEXEC)
9b485d32 15092 fprintf (file, _(" [relocatable executable]"));
252b5132 15093
18a20338
CL
15094 if (flags & EF_ARM_PIC)
15095 fprintf (file, _(" [position independent]"));
15096
15097 if (elf_elfheader (abfd)->e_ident[EI_OSABI] == ELFOSABI_ARM_FDPIC)
15098 fprintf (file, _(" [FDPIC ABI supplement]"));
15099
15100 flags &= ~ (EF_ARM_RELEXEC | EF_ARM_PIC);
fc830a83
NC
15101
15102 if (flags)
dbb078f6 15103 fprintf (file, _(" <Unrecognised flag bits set>"));
9a5aca8c 15104
252b5132
RH
15105 fputc ('\n', file);
15106
0a1b45a2 15107 return true;
252b5132
RH
15108}
15109
15110static int
57e8b36a 15111elf32_arm_get_symbol_type (Elf_Internal_Sym * elf_sym, int type)
252b5132 15112{
2f0ca46a
NC
15113 switch (ELF_ST_TYPE (elf_sym->st_info))
15114 {
15115 case STT_ARM_TFUNC:
15116 return ELF_ST_TYPE (elf_sym->st_info);
ce855c42 15117
2f0ca46a
NC
15118 case STT_ARM_16BIT:
15119 /* If the symbol is not an object, return the STT_ARM_16BIT flag.
15120 This allows us to distinguish between data used by Thumb instructions
15121 and non-data (which is probably code) inside Thumb regions of an
15122 executable. */
1a0eb693 15123 if (type != STT_OBJECT && type != STT_TLS)
2f0ca46a
NC
15124 return ELF_ST_TYPE (elf_sym->st_info);
15125 break;
9a5aca8c 15126
ce855c42
NC
15127 default:
15128 break;
2f0ca46a
NC
15129 }
15130
15131 return type;
252b5132 15132}
f21f3fe0 15133
252b5132 15134static asection *
07adf181
AM
15135elf32_arm_gc_mark_hook (asection *sec,
15136 struct bfd_link_info *info,
15137 Elf_Internal_Rela *rel,
15138 struct elf_link_hash_entry *h,
15139 Elf_Internal_Sym *sym)
252b5132
RH
15140{
15141 if (h != NULL)
07adf181 15142 switch (ELF32_R_TYPE (rel->r_info))
252b5132
RH
15143 {
15144 case R_ARM_GNU_VTINHERIT:
15145 case R_ARM_GNU_VTENTRY:
07adf181
AM
15146 return NULL;
15147 }
9ad5cbcf 15148
07adf181 15149 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
252b5132
RH
15150}
15151
780a67af
NC
15152/* Look through the relocs for a section during the first phase. */
15153
0a1b45a2 15154static bool
57e8b36a
NC
15155elf32_arm_check_relocs (bfd *abfd, struct bfd_link_info *info,
15156 asection *sec, const Elf_Internal_Rela *relocs)
252b5132 15157{
b34976b6
AM
15158 Elf_Internal_Shdr *symtab_hdr;
15159 struct elf_link_hash_entry **sym_hashes;
b34976b6
AM
15160 const Elf_Internal_Rela *rel;
15161 const Elf_Internal_Rela *rel_end;
15162 bfd *dynobj;
5e681ec4 15163 asection *sreloc;
5e681ec4 15164 struct elf32_arm_link_hash_table *htab;
0a1b45a2
AM
15165 bool call_reloc_p;
15166 bool may_become_dynamic_p;
15167 bool may_need_local_target_p;
ce98a316 15168 unsigned long nsyms;
9a5aca8c 15169
0e1862bb 15170 if (bfd_link_relocatable (info))
0a1b45a2 15171 return true;
9a5aca8c 15172
0ffa91dd
NC
15173 BFD_ASSERT (is_arm_elf (abfd));
15174
5e681ec4 15175 htab = elf32_arm_hash_table (info);
4dfe6ac6 15176 if (htab == NULL)
0a1b45a2 15177 return false;
4dfe6ac6 15178
5e681ec4 15179 sreloc = NULL;
9a5aca8c 15180
67687978
PB
15181 /* Create dynamic sections for relocatable executables so that we can
15182 copy relocations. */
15183 if (htab->root.is_relocatable_executable
15184 && ! htab->root.dynamic_sections_created)
15185 {
15186 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
0a1b45a2 15187 return false;
67687978
PB
15188 }
15189
cbc704f3
RS
15190 if (htab->root.dynobj == NULL)
15191 htab->root.dynobj = abfd;
34e77a92 15192 if (!create_ifunc_sections (info))
0a1b45a2 15193 return false;
cbc704f3
RS
15194
15195 dynobj = htab->root.dynobj;
15196
0ffa91dd 15197 symtab_hdr = & elf_symtab_hdr (abfd);
252b5132 15198 sym_hashes = elf_sym_hashes (abfd);
ce98a316 15199 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
b38cadfb 15200
252b5132
RH
15201 rel_end = relocs + sec->reloc_count;
15202 for (rel = relocs; rel < rel_end; rel++)
15203 {
34e77a92 15204 Elf_Internal_Sym *isym;
252b5132 15205 struct elf_link_hash_entry *h;
b7693d02 15206 struct elf32_arm_link_hash_entry *eh;
d42c267e 15207 unsigned int r_symndx;
eb043451 15208 int r_type;
9a5aca8c 15209
252b5132 15210 r_symndx = ELF32_R_SYM (rel->r_info);
eb043451 15211 r_type = ELF32_R_TYPE (rel->r_info);
eb043451 15212 r_type = arm_real_reloc_type (htab, r_type);
ba93b8ac 15213
ce98a316
NC
15214 if (r_symndx >= nsyms
15215 /* PR 9934: It is possible to have relocations that do not
15216 refer to symbols, thus it is also possible to have an
15217 object file containing relocations but no symbol table. */
cf35638d 15218 && (r_symndx > STN_UNDEF || nsyms > 0))
ba93b8ac 15219 {
871b3ab2 15220 _bfd_error_handler (_("%pB: bad symbol index: %d"), abfd,
4eca0228 15221 r_symndx);
0a1b45a2 15222 return false;
ba93b8ac
DJ
15223 }
15224
34e77a92
RS
15225 h = NULL;
15226 isym = NULL;
15227 if (nsyms > 0)
973a3492 15228 {
34e77a92
RS
15229 if (r_symndx < symtab_hdr->sh_info)
15230 {
15231 /* A local symbol. */
f1dfbfdb 15232 isym = bfd_sym_from_r_symndx (&htab->root.sym_cache,
34e77a92
RS
15233 abfd, r_symndx);
15234 if (isym == NULL)
0a1b45a2 15235 return false;
34e77a92
RS
15236 }
15237 else
15238 {
15239 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
15240 while (h->root.type == bfd_link_hash_indirect
15241 || h->root.type == bfd_link_hash_warning)
15242 h = (struct elf_link_hash_entry *) h->root.u.i.link;
15243 }
973a3492 15244 }
9a5aca8c 15245
b7693d02
DJ
15246 eh = (struct elf32_arm_link_hash_entry *) h;
15247
0a1b45a2
AM
15248 call_reloc_p = false;
15249 may_become_dynamic_p = false;
15250 may_need_local_target_p = false;
f6e32f6d 15251
0855e32b
NS
15252 /* Could be done earlier, if h were already available. */
15253 r_type = elf32_arm_tls_transition (info, r_type, h);
eb043451 15254 switch (r_type)
99059e56 15255 {
e8b09b87
CL
15256 case R_ARM_GOTOFFFUNCDESC:
15257 {
15258 if (h == NULL)
15259 {
15260 if (!elf32_arm_allocate_local_sym_info (abfd))
0a1b45a2 15261 return false;
e8b09b87
CL
15262 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].gotofffuncdesc_cnt += 1;
15263 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_offset = -1;
15264 }
15265 else
15266 {
15267 eh->fdpic_cnts.gotofffuncdesc_cnt++;
15268 }
15269 }
15270 break;
15271
15272 case R_ARM_GOTFUNCDESC:
15273 {
15274 if (h == NULL)
15275 {
15276 /* Such a relocation is not supposed to be generated
15277 by gcc on a static function. */
15278 /* Anyway if needed it could be handled. */
15279 abort();
15280 }
15281 else
15282 {
15283 eh->fdpic_cnts.gotfuncdesc_cnt++;
15284 }
15285 }
15286 break;
15287
15288 case R_ARM_FUNCDESC:
15289 {
15290 if (h == NULL)
15291 {
15292 if (!elf32_arm_allocate_local_sym_info (abfd))
0a1b45a2 15293 return false;
e8b09b87
CL
15294 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_cnt += 1;
15295 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_offset = -1;
15296 }
15297 else
15298 {
15299 eh->fdpic_cnts.funcdesc_cnt++;
15300 }
15301 }
15302 break;
15303
5e681ec4 15304 case R_ARM_GOT32:
eb043451 15305 case R_ARM_GOT_PREL:
ba93b8ac 15306 case R_ARM_TLS_GD32:
5c5a4843 15307 case R_ARM_TLS_GD32_FDPIC:
ba93b8ac 15308 case R_ARM_TLS_IE32:
5c5a4843 15309 case R_ARM_TLS_IE32_FDPIC:
0855e32b
NS
15310 case R_ARM_TLS_GOTDESC:
15311 case R_ARM_TLS_DESCSEQ:
15312 case R_ARM_THM_TLS_DESCSEQ:
15313 case R_ARM_TLS_CALL:
15314 case R_ARM_THM_TLS_CALL:
5e681ec4 15315 /* This symbol requires a global offset table entry. */
ba93b8ac
DJ
15316 {
15317 int tls_type, old_tls_type;
5e681ec4 15318
ba93b8ac
DJ
15319 switch (r_type)
15320 {
15321 case R_ARM_TLS_GD32: tls_type = GOT_TLS_GD; break;
5c5a4843 15322 case R_ARM_TLS_GD32_FDPIC: tls_type = GOT_TLS_GD; break;
b38cadfb 15323
ba93b8ac 15324 case R_ARM_TLS_IE32: tls_type = GOT_TLS_IE; break;
5c5a4843 15325 case R_ARM_TLS_IE32_FDPIC: tls_type = GOT_TLS_IE; break;
b38cadfb 15326
0855e32b
NS
15327 case R_ARM_TLS_GOTDESC:
15328 case R_ARM_TLS_CALL: case R_ARM_THM_TLS_CALL:
15329 case R_ARM_TLS_DESCSEQ: case R_ARM_THM_TLS_DESCSEQ:
15330 tls_type = GOT_TLS_GDESC; break;
b38cadfb 15331
ba93b8ac
DJ
15332 default: tls_type = GOT_NORMAL; break;
15333 }
252b5132 15334
0e1862bb 15335 if (!bfd_link_executable (info) && (tls_type & GOT_TLS_IE))
eea6dad2
KM
15336 info->flags |= DF_STATIC_TLS;
15337
ba93b8ac
DJ
15338 if (h != NULL)
15339 {
15340 h->got.refcount++;
15341 old_tls_type = elf32_arm_hash_entry (h)->tls_type;
15342 }
15343 else
15344 {
ba93b8ac 15345 /* This is a global offset table entry for a local symbol. */
34e77a92 15346 if (!elf32_arm_allocate_local_sym_info (abfd))
0a1b45a2 15347 return false;
34e77a92 15348 elf_local_got_refcounts (abfd)[r_symndx] += 1;
ba93b8ac
DJ
15349 old_tls_type = elf32_arm_local_got_tls_type (abfd) [r_symndx];
15350 }
15351
0855e32b 15352 /* If a variable is accessed with both tls methods, two
99059e56 15353 slots may be created. */
0855e32b
NS
15354 if (GOT_TLS_GD_ANY_P (old_tls_type)
15355 && GOT_TLS_GD_ANY_P (tls_type))
15356 tls_type |= old_tls_type;
15357
15358 /* We will already have issued an error message if there
15359 is a TLS/non-TLS mismatch, based on the symbol
15360 type. So just combine any TLS types needed. */
ba93b8ac
DJ
15361 if (old_tls_type != GOT_UNKNOWN && old_tls_type != GOT_NORMAL
15362 && tls_type != GOT_NORMAL)
15363 tls_type |= old_tls_type;
15364
0855e32b 15365 /* If the symbol is accessed in both IE and GDESC
99059e56
RM
15366 method, we're able to relax. Turn off the GDESC flag,
15367 without messing up with any other kind of tls types
6a631e86 15368 that may be involved. */
0855e32b
NS
15369 if ((tls_type & GOT_TLS_IE) && (tls_type & GOT_TLS_GDESC))
15370 tls_type &= ~GOT_TLS_GDESC;
15371
ba93b8ac
DJ
15372 if (old_tls_type != tls_type)
15373 {
15374 if (h != NULL)
15375 elf32_arm_hash_entry (h)->tls_type = tls_type;
15376 else
15377 elf32_arm_local_got_tls_type (abfd) [r_symndx] = tls_type;
15378 }
15379 }
8029a119 15380 /* Fall through. */
ba93b8ac
DJ
15381
15382 case R_ARM_TLS_LDM32:
5c5a4843
CL
15383 case R_ARM_TLS_LDM32_FDPIC:
15384 if (r_type == R_ARM_TLS_LDM32 || r_type == R_ARM_TLS_LDM32_FDPIC)
ba93b8ac 15385 htab->tls_ldm_got.refcount++;
8029a119 15386 /* Fall through. */
252b5132 15387
c19d1205 15388 case R_ARM_GOTOFF32:
5e681ec4 15389 case R_ARM_GOTPC:
cbc704f3
RS
15390 if (htab->root.sgot == NULL
15391 && !create_got_section (htab->root.dynobj, info))
0a1b45a2 15392 return false;
252b5132
RH
15393 break;
15394
252b5132 15395 case R_ARM_PC24:
7359ea65 15396 case R_ARM_PLT32:
5b5bb741
PB
15397 case R_ARM_CALL:
15398 case R_ARM_JUMP24:
eb043451 15399 case R_ARM_PREL31:
c19d1205 15400 case R_ARM_THM_CALL:
bd97cb95
DJ
15401 case R_ARM_THM_JUMP24:
15402 case R_ARM_THM_JUMP19:
0a1b45a2
AM
15403 call_reloc_p = true;
15404 may_need_local_target_p = true;
f6e32f6d
RS
15405 break;
15406
15407 case R_ARM_ABS12:
15408 /* VxWorks uses dynamic R_ARM_ABS12 relocations for
15409 ldr __GOTT_INDEX__ offsets. */
90c14f0c 15410 if (htab->root.target_os != is_vxworks)
f6e32f6d 15411 {
0a1b45a2 15412 may_need_local_target_p = true;
f6e32f6d
RS
15413 break;
15414 }
aebf9be7 15415 else goto jump_over;
9eaff861 15416
f6e32f6d 15417 /* Fall through. */
39623e12 15418
96c23d59
JM
15419 case R_ARM_MOVW_ABS_NC:
15420 case R_ARM_MOVT_ABS:
15421 case R_ARM_THM_MOVW_ABS_NC:
15422 case R_ARM_THM_MOVT_ABS:
0e1862bb 15423 if (bfd_link_pic (info))
96c23d59 15424 {
4eca0228 15425 _bfd_error_handler
871b3ab2 15426 (_("%pB: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
96c23d59
JM
15427 abfd, elf32_arm_howto_table_1[r_type].name,
15428 (h) ? h->root.root.string : "a local symbol");
15429 bfd_set_error (bfd_error_bad_value);
0a1b45a2 15430 return false;
96c23d59
JM
15431 }
15432
15433 /* Fall through. */
39623e12
PB
15434 case R_ARM_ABS32:
15435 case R_ARM_ABS32_NOI:
aebf9be7 15436 jump_over:
0e1862bb 15437 if (h != NULL && bfd_link_executable (info))
97323ad1
WN
15438 {
15439 h->pointer_equality_needed = 1;
15440 }
15441 /* Fall through. */
39623e12
PB
15442 case R_ARM_REL32:
15443 case R_ARM_REL32_NOI:
b6895b4f
PB
15444 case R_ARM_MOVW_PREL_NC:
15445 case R_ARM_MOVT_PREL:
b6895b4f
PB
15446 case R_ARM_THM_MOVW_PREL_NC:
15447 case R_ARM_THM_MOVT_PREL:
39623e12 15448
b7693d02 15449 /* Should the interworking branches be listed here? */
e8b09b87
CL
15450 if ((bfd_link_pic (info) || htab->root.is_relocatable_executable
15451 || htab->fdpic_p)
34e77a92
RS
15452 && (sec->flags & SEC_ALLOC) != 0)
15453 {
15454 if (h == NULL
469a3493 15455 && elf32_arm_howto_from_type (r_type)->pc_relative)
34e77a92
RS
15456 {
15457 /* In shared libraries and relocatable executables,
15458 we treat local relative references as calls;
15459 see the related SYMBOL_CALLS_LOCAL code in
15460 allocate_dynrelocs. */
0a1b45a2
AM
15461 call_reloc_p = true;
15462 may_need_local_target_p = true;
34e77a92
RS
15463 }
15464 else
15465 /* We are creating a shared library or relocatable
15466 executable, and this is a reloc against a global symbol,
15467 or a non-PC-relative reloc against a local symbol.
15468 We may need to copy the reloc into the output. */
0a1b45a2 15469 may_become_dynamic_p = true;
34e77a92 15470 }
f6e32f6d 15471 else
0a1b45a2 15472 may_need_local_target_p = true;
252b5132
RH
15473 break;
15474
99059e56
RM
15475 /* This relocation describes the C++ object vtable hierarchy.
15476 Reconstruct it for later use during GC. */
15477 case R_ARM_GNU_VTINHERIT:
15478 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
0a1b45a2 15479 return false;
99059e56
RM
15480 break;
15481
15482 /* This relocation describes which C++ vtable entries are actually
15483 used. Record for later use during GC. */
15484 case R_ARM_GNU_VTENTRY:
a0ea3a14 15485 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
0a1b45a2 15486 return false;
99059e56
RM
15487 break;
15488 }
f6e32f6d
RS
15489
15490 if (h != NULL)
15491 {
15492 if (call_reloc_p)
15493 /* We may need a .plt entry if the function this reloc
15494 refers to is in a different object, regardless of the
15495 symbol's type. We can't tell for sure yet, because
15496 something later might force the symbol local. */
15497 h->needs_plt = 1;
15498 else if (may_need_local_target_p)
15499 /* If this reloc is in a read-only section, we might
15500 need a copy reloc. We can't check reliably at this
15501 stage whether the section is read-only, as input
15502 sections have not yet been mapped to output sections.
15503 Tentatively set the flag for now, and correct in
15504 adjust_dynamic_symbol. */
15505 h->non_got_ref = 1;
15506 }
15507
34e77a92
RS
15508 if (may_need_local_target_p
15509 && (h != NULL || ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC))
f6e32f6d 15510 {
34e77a92
RS
15511 union gotplt_union *root_plt;
15512 struct arm_plt_info *arm_plt;
15513 struct arm_local_iplt_info *local_iplt;
15514
15515 if (h != NULL)
15516 {
15517 root_plt = &h->plt;
15518 arm_plt = &eh->plt;
15519 }
15520 else
15521 {
15522 local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
15523 if (local_iplt == NULL)
0a1b45a2 15524 return false;
34e77a92
RS
15525 root_plt = &local_iplt->root;
15526 arm_plt = &local_iplt->arm;
15527 }
15528
f6e32f6d
RS
15529 /* If the symbol is a function that doesn't bind locally,
15530 this relocation will need a PLT entry. */
a8c887dd
NC
15531 if (root_plt->refcount != -1)
15532 root_plt->refcount += 1;
34e77a92
RS
15533
15534 if (!call_reloc_p)
15535 arm_plt->noncall_refcount++;
f6e32f6d
RS
15536
15537 /* It's too early to use htab->use_blx here, so we have to
15538 record possible blx references separately from
15539 relocs that definitely need a thumb stub. */
15540
15541 if (r_type == R_ARM_THM_CALL)
34e77a92 15542 arm_plt->maybe_thumb_refcount += 1;
f6e32f6d
RS
15543
15544 if (r_type == R_ARM_THM_JUMP24
15545 || r_type == R_ARM_THM_JUMP19)
34e77a92 15546 arm_plt->thumb_refcount += 1;
f6e32f6d
RS
15547 }
15548
15549 if (may_become_dynamic_p)
15550 {
15551 struct elf_dyn_relocs *p, **head;
15552
15553 /* Create a reloc section in dynobj. */
15554 if (sreloc == NULL)
15555 {
15556 sreloc = _bfd_elf_make_dynamic_reloc_section
15557 (sec, dynobj, 2, abfd, ! htab->use_rel);
15558
15559 if (sreloc == NULL)
0a1b45a2 15560 return false;
f6e32f6d
RS
15561 }
15562
15563 /* If this is a global symbol, count the number of
15564 relocations we need for this symbol. */
15565 if (h != NULL)
190eb1dd 15566 head = &h->dyn_relocs;
f6e32f6d
RS
15567 else
15568 {
34e77a92
RS
15569 head = elf32_arm_get_local_dynreloc_list (abfd, r_symndx, isym);
15570 if (head == NULL)
0a1b45a2 15571 return false;
f6e32f6d
RS
15572 }
15573
15574 p = *head;
15575 if (p == NULL || p->sec != sec)
15576 {
986f0783 15577 size_t amt = sizeof *p;
f6e32f6d
RS
15578
15579 p = (struct elf_dyn_relocs *) bfd_alloc (htab->root.dynobj, amt);
15580 if (p == NULL)
0a1b45a2 15581 return false;
f6e32f6d
RS
15582 p->next = *head;
15583 *head = p;
15584 p->sec = sec;
15585 p->count = 0;
15586 p->pc_count = 0;
15587 }
15588
469a3493 15589 if (elf32_arm_howto_from_type (r_type)->pc_relative)
f6e32f6d
RS
15590 p->pc_count += 1;
15591 p->count += 1;
e8b09b87
CL
15592 if (h == NULL && htab->fdpic_p && !bfd_link_pic(info)
15593 && r_type != R_ARM_ABS32 && r_type != R_ARM_ABS32_NOI) {
15594 /* Here we only support R_ARM_ABS32 and R_ARM_ABS32_NOI
15595 that will become rofixup. */
15596 /* This is due to the fact that we suppose all will become rofixup. */
15597 fprintf(stderr, "FDPIC does not yet support %d relocation to become dynamic for executable\n", r_type);
15598 _bfd_error_handler
15599 (_("FDPIC does not yet support %s relocation"
15600 " to become dynamic for executable"),
15601 elf32_arm_howto_table_1[r_type].name);
15602 abort();
15603 }
f6e32f6d 15604 }
252b5132 15605 }
f21f3fe0 15606
0a1b45a2 15607 return true;
252b5132
RH
15608}
15609
9eaff861
AO
15610static void
15611elf32_arm_update_relocs (asection *o,
15612 struct bfd_elf_section_reloc_data *reldata)
15613{
15614 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
15615 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
15616 const struct elf_backend_data *bed;
15617 _arm_elf_section_data *eado;
15618 struct bfd_link_order *p;
15619 bfd_byte *erela_head, *erela;
15620 Elf_Internal_Rela *irela_head, *irela;
15621 Elf_Internal_Shdr *rel_hdr;
15622 bfd *abfd;
15623 unsigned int count;
15624
15625 eado = get_arm_elf_section_data (o);
15626
15627 if (!eado || eado->elf.this_hdr.sh_type != SHT_ARM_EXIDX)
15628 return;
15629
15630 abfd = o->owner;
15631 bed = get_elf_backend_data (abfd);
15632 rel_hdr = reldata->hdr;
15633
15634 if (rel_hdr->sh_entsize == bed->s->sizeof_rel)
15635 {
15636 swap_in = bed->s->swap_reloc_in;
15637 swap_out = bed->s->swap_reloc_out;
15638 }
15639 else if (rel_hdr->sh_entsize == bed->s->sizeof_rela)
15640 {
15641 swap_in = bed->s->swap_reloca_in;
15642 swap_out = bed->s->swap_reloca_out;
15643 }
15644 else
15645 abort ();
15646
15647 erela_head = rel_hdr->contents;
15648 irela_head = (Elf_Internal_Rela *) bfd_zmalloc
15649 ((NUM_SHDR_ENTRIES (rel_hdr) + 1) * sizeof (*irela_head));
15650
15651 erela = erela_head;
15652 irela = irela_head;
15653 count = 0;
15654
15655 for (p = o->map_head.link_order; p; p = p->next)
15656 {
15657 if (p->type == bfd_section_reloc_link_order
15658 || p->type == bfd_symbol_reloc_link_order)
15659 {
15660 (*swap_in) (abfd, erela, irela);
15661 erela += rel_hdr->sh_entsize;
15662 irela++;
15663 count++;
15664 }
15665 else if (p->type == bfd_indirect_link_order)
15666 {
15667 struct bfd_elf_section_reloc_data *input_reldata;
15668 arm_unwind_table_edit *edit_list, *edit_tail;
15669 _arm_elf_section_data *eadi;
15670 bfd_size_type j;
15671 bfd_vma offset;
15672 asection *i;
15673
15674 i = p->u.indirect.section;
15675
15676 eadi = get_arm_elf_section_data (i);
15677 edit_list = eadi->u.exidx.unwind_edit_list;
15678 edit_tail = eadi->u.exidx.unwind_edit_tail;
539300fb 15679 offset = i->output_offset;
9eaff861
AO
15680
15681 if (eadi->elf.rel.hdr &&
15682 eadi->elf.rel.hdr->sh_entsize == rel_hdr->sh_entsize)
15683 input_reldata = &eadi->elf.rel;
15684 else if (eadi->elf.rela.hdr &&
15685 eadi->elf.rela.hdr->sh_entsize == rel_hdr->sh_entsize)
15686 input_reldata = &eadi->elf.rela;
15687 else
15688 abort ();
15689
15690 if (edit_list)
15691 {
15692 for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15693 {
15694 arm_unwind_table_edit *edit_node, *edit_next;
15695 bfd_vma bias;
c48182bf 15696 bfd_vma reloc_index;
9eaff861
AO
15697
15698 (*swap_in) (abfd, erela, irela);
c48182bf 15699 reloc_index = (irela->r_offset - offset) / 8;
9eaff861
AO
15700
15701 bias = 0;
15702 edit_node = edit_list;
15703 for (edit_next = edit_list;
c48182bf 15704 edit_next && edit_next->index <= reloc_index;
9eaff861
AO
15705 edit_next = edit_node->next)
15706 {
15707 bias++;
15708 edit_node = edit_next;
15709 }
15710
15711 if (edit_node->type != DELETE_EXIDX_ENTRY
c48182bf 15712 || edit_node->index != reloc_index)
9eaff861
AO
15713 {
15714 irela->r_offset -= bias * 8;
15715 irela++;
15716 count++;
15717 }
15718
15719 erela += rel_hdr->sh_entsize;
15720 }
15721
15722 if (edit_tail->type == INSERT_EXIDX_CANTUNWIND_AT_END)
15723 {
15724 /* New relocation entity. */
15725 asection *text_sec = edit_tail->linked_section;
15726 asection *text_out = text_sec->output_section;
15727 bfd_vma exidx_offset = offset + i->size - 8;
15728
15729 irela->r_addend = 0;
15730 irela->r_offset = exidx_offset;
15731 irela->r_info = ELF32_R_INFO
15732 (text_out->target_index, R_ARM_PREL31);
15733 irela++;
15734 count++;
15735 }
15736 }
15737 else
15738 {
15739 for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15740 {
15741 (*swap_in) (abfd, erela, irela);
15742 erela += rel_hdr->sh_entsize;
15743 irela++;
15744 }
15745
15746 count += NUM_SHDR_ENTRIES (input_reldata->hdr);
15747 }
15748 }
15749 }
15750
15751 reldata->count = count;
15752 rel_hdr->sh_size = count * rel_hdr->sh_entsize;
15753
15754 erela = erela_head;
15755 irela = irela_head;
15756 while (count > 0)
15757 {
15758 (*swap_out) (abfd, irela, erela);
15759 erela += rel_hdr->sh_entsize;
15760 irela++;
15761 count--;
15762 }
15763
15764 free (irela_head);
15765
15766 /* Hashes are no longer valid. */
15767 free (reldata->hashes);
15768 reldata->hashes = NULL;
15769}
15770
6a5bb875 15771/* Unwinding tables are not referenced directly. This pass marks them as
4ba2ef8f
TP
15772 required if the corresponding code section is marked. Similarly, ARMv8-M
15773 secure entry functions can only be referenced by SG veneers which are
15774 created after the GC process. They need to be marked in case they reside in
15775 their own section (as would be the case if code was compiled with
15776 -ffunction-sections). */
6a5bb875 15777
0a1b45a2 15778static bool
906e58ca
NC
15779elf32_arm_gc_mark_extra_sections (struct bfd_link_info *info,
15780 elf_gc_mark_hook_fn gc_mark_hook)
6a5bb875
PB
15781{
15782 bfd *sub;
15783 Elf_Internal_Shdr **elf_shdrp;
4ba2ef8f
TP
15784 asection *cmse_sec;
15785 obj_attribute *out_attr;
15786 Elf_Internal_Shdr *symtab_hdr;
15787 unsigned i, sym_count, ext_start;
15788 const struct elf_backend_data *bed;
15789 struct elf_link_hash_entry **sym_hashes;
15790 struct elf32_arm_link_hash_entry *cmse_hash;
0a1b45a2
AM
15791 bool again, is_v8m, first_bfd_browse = true;
15792 bool debug_sec_need_to_be_marked = false;
bb32413f 15793 asection *isec;
6a5bb875 15794
7f6ab9f8
AM
15795 _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
15796
4ba2ef8f
TP
15797 out_attr = elf_known_obj_attributes_proc (info->output_bfd);
15798 is_v8m = out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V8M_BASE
15799 && out_attr[Tag_CPU_arch_profile].i == 'M';
15800
6a5bb875
PB
15801 /* Marking EH data may cause additional code sections to be marked,
15802 requiring multiple passes. */
0a1b45a2 15803 again = true;
6a5bb875
PB
15804 while (again)
15805 {
0a1b45a2 15806 again = false;
c72f2fb2 15807 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
6a5bb875
PB
15808 {
15809 asection *o;
15810
0ffa91dd 15811 if (! is_arm_elf (sub))
6a5bb875
PB
15812 continue;
15813
15814 elf_shdrp = elf_elfsections (sub);
15815 for (o = sub->sections; o != NULL; o = o->next)
15816 {
15817 Elf_Internal_Shdr *hdr;
0ffa91dd 15818
6a5bb875 15819 hdr = &elf_section_data (o)->this_hdr;
4fbb74a6
AM
15820 if (hdr->sh_type == SHT_ARM_EXIDX
15821 && hdr->sh_link
15822 && hdr->sh_link < elf_numsections (sub)
6a5bb875
PB
15823 && !o->gc_mark
15824 && elf_shdrp[hdr->sh_link]->bfd_section->gc_mark)
15825 {
0a1b45a2 15826 again = true;
6a5bb875 15827 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
0a1b45a2 15828 return false;
6a5bb875
PB
15829 }
15830 }
4ba2ef8f
TP
15831
15832 /* Mark section holding ARMv8-M secure entry functions. We mark all
15833 of them so no need for a second browsing. */
15834 if (is_v8m && first_bfd_browse)
15835 {
15836 sym_hashes = elf_sym_hashes (sub);
15837 bed = get_elf_backend_data (sub);
15838 symtab_hdr = &elf_tdata (sub)->symtab_hdr;
15839 sym_count = symtab_hdr->sh_size / bed->s->sizeof_sym;
15840 ext_start = symtab_hdr->sh_info;
15841
15842 /* Scan symbols. */
15843 for (i = ext_start; i < sym_count; i++)
15844 {
15845 cmse_hash = elf32_arm_hash_entry (sym_hashes[i - ext_start]);
15846
15847 /* Assume it is a special symbol. If not, cmse_scan will
15848 warn about it and user can do something about it. */
08dedd66 15849 if (startswith (cmse_hash->root.root.root.string,
baf46cd7 15850 CMSE_PREFIX))
4ba2ef8f
TP
15851 {
15852 cmse_sec = cmse_hash->root.root.u.def.section;
5025eb7c
AO
15853 if (!cmse_sec->gc_mark
15854 && !_bfd_elf_gc_mark (info, cmse_sec, gc_mark_hook))
0a1b45a2 15855 return false;
bb32413f
SP
15856 /* The debug sections related to these secure entry
15857 functions are marked on enabling below flag. */
0a1b45a2 15858 debug_sec_need_to_be_marked = true;
4ba2ef8f
TP
15859 }
15860 }
bb32413f
SP
15861
15862 if (debug_sec_need_to_be_marked)
15863 {
15864 /* Looping over all the sections of the object file containing
15865 Armv8-M secure entry functions and marking all the debug
15866 sections. */
15867 for (isec = sub->sections; isec != NULL; isec = isec->next)
15868 {
15869 /* If not a debug sections, skip it. */
15870 if (!isec->gc_mark && (isec->flags & SEC_DEBUGGING))
15871 isec->gc_mark = 1 ;
15872 }
0a1b45a2 15873 debug_sec_need_to_be_marked = false;
bb32413f 15874 }
4ba2ef8f 15875 }
6a5bb875 15876 }
0a1b45a2 15877 first_bfd_browse = false;
6a5bb875
PB
15878 }
15879
0a1b45a2 15880 return true;
6a5bb875
PB
15881}
15882
3c9458e9
NC
15883/* Treat mapping symbols as special target symbols. */
15884
0a1b45a2 15885static bool
3c9458e9
NC
15886elf32_arm_is_target_special_symbol (bfd * abfd ATTRIBUTE_UNUSED, asymbol * sym)
15887{
b0796911
PB
15888 return bfd_is_arm_special_symbol_name (sym->name,
15889 BFD_ARM_SPECIAL_SYM_TYPE_ANY);
3c9458e9
NC
15890}
15891
e7679060
AM
15892/* If the ELF symbol SYM might be a function in SEC, return the
15893 function size and set *CODE_OFF to the function's entry point,
15894 otherwise return zero. */
252b5132 15895
e7679060
AM
15896static bfd_size_type
15897elf32_arm_maybe_function_sym (const asymbol *sym, asection *sec,
15898 bfd_vma *code_off)
15899{
15900 bfd_size_type size;
252b5132 15901
e7679060
AM
15902 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
15903 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
15904 || sym->section != sec)
15905 return 0;
252b5132 15906
e7679060
AM
15907 if (!(sym->flags & BSF_SYNTHETIC))
15908 switch (ELF_ST_TYPE (((elf_symbol_type *) sym)->internal_elf_sym.st_info))
15909 {
252b5132
RH
15910 case STT_FUNC:
15911 case STT_ARM_TFUNC:
9d2da7ca 15912 case STT_NOTYPE:
252b5132 15913 break;
e7679060
AM
15914 default:
15915 return 0;
15916 }
0367ecfb 15917
e7679060
AM
15918 if ((sym->flags & BSF_LOCAL)
15919 && bfd_is_arm_special_symbol_name (sym->name,
15920 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
15921 return 0;
0367ecfb 15922
e7679060
AM
15923 *code_off = sym->value;
15924 size = 0;
15925 if (!(sym->flags & BSF_SYNTHETIC))
15926 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
15927 if (size == 0)
15928 size = 1;
15929 return size;
252b5132
RH
15930}
15931
0a1b45a2 15932static bool
07d6d2b8 15933elf32_arm_find_inliner_info (bfd * abfd,
4ab527b0
FF
15934 const char ** filename_ptr,
15935 const char ** functionname_ptr,
15936 unsigned int * line_ptr)
15937{
0a1b45a2 15938 bool found;
4ab527b0
FF
15939 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
15940 functionname_ptr, line_ptr,
15941 & elf_tdata (abfd)->dwarf2_find_line_info);
15942 return found;
15943}
15944
252b5132
RH
15945/* Adjust a symbol defined by a dynamic object and referenced by a
15946 regular object. The current definition is in some section of the
15947 dynamic object, but we're not including those sections. We have to
15948 change the definition to something the rest of the link can
15949 understand. */
15950
0a1b45a2 15951static bool
57e8b36a
NC
15952elf32_arm_adjust_dynamic_symbol (struct bfd_link_info * info,
15953 struct elf_link_hash_entry * h)
252b5132
RH
15954{
15955 bfd * dynobj;
5474d94f 15956 asection *s, *srel;
b7693d02 15957 struct elf32_arm_link_hash_entry * eh;
67687978 15958 struct elf32_arm_link_hash_table *globals;
252b5132 15959
67687978 15960 globals = elf32_arm_hash_table (info);
4dfe6ac6 15961 if (globals == NULL)
0a1b45a2 15962 return false;
4dfe6ac6 15963
252b5132
RH
15964 dynobj = elf_hash_table (info)->dynobj;
15965
15966 /* Make sure we know what is going on here. */
15967 BFD_ASSERT (dynobj != NULL
f5385ebf 15968 && (h->needs_plt
34e77a92 15969 || h->type == STT_GNU_IFUNC
60d67dc8 15970 || h->is_weakalias
f5385ebf
AM
15971 || (h->def_dynamic
15972 && h->ref_regular
15973 && !h->def_regular)));
252b5132 15974
b7693d02
DJ
15975 eh = (struct elf32_arm_link_hash_entry *) h;
15976
252b5132
RH
15977 /* If this is a function, put it in the procedure linkage table. We
15978 will fill in the contents of the procedure linkage table later,
15979 when we know the address of the .got section. */
34e77a92 15980 if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
252b5132 15981 {
34e77a92
RS
15982 /* Calls to STT_GNU_IFUNC symbols always use a PLT, even if the
15983 symbol binds locally. */
5e681ec4 15984 if (h->plt.refcount <= 0
34e77a92
RS
15985 || (h->type != STT_GNU_IFUNC
15986 && (SYMBOL_CALLS_LOCAL (info, h)
15987 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
15988 && h->root.type == bfd_link_hash_undefweak))))
252b5132
RH
15989 {
15990 /* This case can occur if we saw a PLT32 reloc in an input
5e681ec4
PB
15991 file, but the symbol was never referred to by a dynamic
15992 object, or if all references were garbage collected. In
15993 such a case, we don't actually need to build a procedure
15994 linkage table, and we can just do a PC24 reloc instead. */
15995 h->plt.offset = (bfd_vma) -1;
34e77a92
RS
15996 eh->plt.thumb_refcount = 0;
15997 eh->plt.maybe_thumb_refcount = 0;
15998 eh->plt.noncall_refcount = 0;
f5385ebf 15999 h->needs_plt = 0;
252b5132
RH
16000 }
16001
0a1b45a2 16002 return true;
252b5132 16003 }
5e681ec4 16004 else
b7693d02
DJ
16005 {
16006 /* It's possible that we incorrectly decided a .plt reloc was
16007 needed for an R_ARM_PC24 or similar reloc to a non-function sym
16008 in check_relocs. We can't decide accurately between function
16009 and non-function syms in check-relocs; Objects loaded later in
16010 the link may change h->type. So fix it now. */
16011 h->plt.offset = (bfd_vma) -1;
34e77a92
RS
16012 eh->plt.thumb_refcount = 0;
16013 eh->plt.maybe_thumb_refcount = 0;
16014 eh->plt.noncall_refcount = 0;
b7693d02 16015 }
252b5132
RH
16016
16017 /* If this is a weak symbol, and there is a real definition, the
16018 processor independent code will have arranged for us to see the
16019 real definition first, and we can just use the same value. */
60d67dc8 16020 if (h->is_weakalias)
252b5132 16021 {
60d67dc8
AM
16022 struct elf_link_hash_entry *def = weakdef (h);
16023 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
16024 h->root.u.def.section = def->root.u.def.section;
16025 h->root.u.def.value = def->root.u.def.value;
0a1b45a2 16026 return true;
252b5132
RH
16027 }
16028
ba93b8ac
DJ
16029 /* If there are no non-GOT references, we do not need a copy
16030 relocation. */
16031 if (!h->non_got_ref)
0a1b45a2 16032 return true;
ba93b8ac 16033
252b5132
RH
16034 /* This is a reference to a symbol defined by a dynamic object which
16035 is not a function. */
16036
16037 /* If we are creating a shared library, we must presume that the
16038 only references to the symbol are via the global offset table.
16039 For such cases we need not do anything here; the relocations will
67687978
PB
16040 be handled correctly by relocate_section. Relocatable executables
16041 can reference data in shared objects directly, so we don't need to
16042 do anything here. */
0e1862bb 16043 if (bfd_link_pic (info) || globals->root.is_relocatable_executable)
0a1b45a2 16044 return true;
252b5132
RH
16045
16046 /* We must allocate the symbol in our .dynbss section, which will
16047 become part of the .bss section of the executable. There will be
16048 an entry for this symbol in the .dynsym section. The dynamic
16049 object will contain position independent code, so all references
16050 from the dynamic object to this symbol will go through the global
16051 offset table. The dynamic linker will use the .dynsym entry to
16052 determine the address it must put in the global offset table, so
16053 both the dynamic object and the regular object will refer to the
16054 same memory location for the variable. */
5522f910
NC
16055 /* If allowed, we must generate a R_ARM_COPY reloc to tell the dynamic
16056 linker to copy the initial value out of the dynamic object and into
16057 the runtime process image. We need to remember the offset into the
00a97672 16058 .rel(a).bss section we are going to use. */
5474d94f
AM
16059 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
16060 {
16061 s = globals->root.sdynrelro;
16062 srel = globals->root.sreldynrelro;
16063 }
16064 else
16065 {
16066 s = globals->root.sdynbss;
16067 srel = globals->root.srelbss;
16068 }
5522f910
NC
16069 if (info->nocopyreloc == 0
16070 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
5522f910 16071 && h->size != 0)
252b5132 16072 {
47beaa6a 16073 elf32_arm_allocate_dynrelocs (info, srel, 1);
f5385ebf 16074 h->needs_copy = 1;
252b5132
RH
16075 }
16076
6cabe1ea 16077 return _bfd_elf_adjust_dynamic_copy (info, h, s);
252b5132
RH
16078}
16079
5e681ec4
PB
16080/* Allocate space in .plt, .got and associated reloc sections for
16081 dynamic relocs. */
16082
0a1b45a2 16083static bool
47beaa6a 16084allocate_dynrelocs_for_symbol (struct elf_link_hash_entry *h, void * inf)
5e681ec4
PB
16085{
16086 struct bfd_link_info *info;
16087 struct elf32_arm_link_hash_table *htab;
16088 struct elf32_arm_link_hash_entry *eh;
0bdcacaf 16089 struct elf_dyn_relocs *p;
5e681ec4
PB
16090
16091 if (h->root.type == bfd_link_hash_indirect)
0a1b45a2 16092 return true;
5e681ec4 16093
e6a6bb22
AM
16094 eh = (struct elf32_arm_link_hash_entry *) h;
16095
5e681ec4
PB
16096 info = (struct bfd_link_info *) inf;
16097 htab = elf32_arm_hash_table (info);
4dfe6ac6 16098 if (htab == NULL)
0a1b45a2 16099 return false;
5e681ec4 16100
34e77a92 16101 if ((htab->root.dynamic_sections_created || h->type == STT_GNU_IFUNC)
5e681ec4
PB
16102 && h->plt.refcount > 0)
16103 {
16104 /* Make sure this symbol is output as a dynamic symbol.
16105 Undefined weak syms won't yet be marked as dynamic. */
6c699715
RL
16106 if (h->dynindx == -1 && !h->forced_local
16107 && h->root.type == bfd_link_hash_undefweak)
5e681ec4 16108 {
c152c796 16109 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16110 return false;
5e681ec4
PB
16111 }
16112
34e77a92
RS
16113 /* If the call in the PLT entry binds locally, the associated
16114 GOT entry should use an R_ARM_IRELATIVE relocation instead of
16115 the usual R_ARM_JUMP_SLOT. Put it in the .iplt section rather
16116 than the .plt section. */
16117 if (h->type == STT_GNU_IFUNC && SYMBOL_CALLS_LOCAL (info, h))
16118 {
16119 eh->is_iplt = 1;
16120 if (eh->plt.noncall_refcount == 0
16121 && SYMBOL_REFERENCES_LOCAL (info, h))
16122 /* All non-call references can be resolved directly.
16123 This means that they can (and in some cases, must)
16124 resolve directly to the run-time target, rather than
16125 to the PLT. That in turns means that any .got entry
16126 would be equal to the .igot.plt entry, so there's
16127 no point having both. */
16128 h->got.refcount = 0;
16129 }
16130
0e1862bb 16131 if (bfd_link_pic (info)
34e77a92 16132 || eh->is_iplt
7359ea65 16133 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
5e681ec4 16134 {
34e77a92 16135 elf32_arm_allocate_plt_entry (info, eh->is_iplt, &h->plt, &eh->plt);
b7693d02 16136
5e681ec4
PB
16137 /* If this symbol is not defined in a regular file, and we are
16138 not generating a shared library, then set the symbol to this
16139 location in the .plt. This is required to make function
16140 pointers compare as equal between the normal executable and
16141 the shared library. */
0e1862bb 16142 if (! bfd_link_pic (info)
f5385ebf 16143 && !h->def_regular)
5e681ec4 16144 {
34e77a92 16145 h->root.u.def.section = htab->root.splt;
5e681ec4 16146 h->root.u.def.value = h->plt.offset;
5e681ec4 16147
67d74e43
DJ
16148 /* Make sure the function is not marked as Thumb, in case
16149 it is the target of an ABS32 relocation, which will
16150 point to the PLT entry. */
39d911fc 16151 ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
67d74e43 16152 }
022f8312 16153
00a97672
RS
16154 /* VxWorks executables have a second set of relocations for
16155 each PLT entry. They go in a separate relocation section,
16156 which is processed by the kernel loader. */
90c14f0c 16157 if (htab->root.target_os == is_vxworks && !bfd_link_pic (info))
00a97672
RS
16158 {
16159 /* There is a relocation for the initial PLT entry:
16160 an R_ARM_32 relocation for _GLOBAL_OFFSET_TABLE_. */
16161 if (h->plt.offset == htab->plt_header_size)
47beaa6a 16162 elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 1);
00a97672
RS
16163
16164 /* There are two extra relocations for each subsequent
16165 PLT entry: an R_ARM_32 relocation for the GOT entry,
16166 and an R_ARM_32 relocation for the PLT entry. */
47beaa6a 16167 elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 2);
00a97672 16168 }
5e681ec4
PB
16169 }
16170 else
16171 {
16172 h->plt.offset = (bfd_vma) -1;
f5385ebf 16173 h->needs_plt = 0;
5e681ec4
PB
16174 }
16175 }
16176 else
16177 {
16178 h->plt.offset = (bfd_vma) -1;
f5385ebf 16179 h->needs_plt = 0;
5e681ec4
PB
16180 }
16181
0855e32b
NS
16182 eh = (struct elf32_arm_link_hash_entry *) h;
16183 eh->tlsdesc_got = (bfd_vma) -1;
16184
5e681ec4
PB
16185 if (h->got.refcount > 0)
16186 {
16187 asection *s;
0a1b45a2 16188 bool dyn;
ba93b8ac
DJ
16189 int tls_type = elf32_arm_hash_entry (h)->tls_type;
16190 int indx;
5e681ec4
PB
16191
16192 /* Make sure this symbol is output as a dynamic symbol.
16193 Undefined weak syms won't yet be marked as dynamic. */
a57d1773
AM
16194 if (htab->root.dynamic_sections_created
16195 && h->dynindx == -1
16196 && !h->forced_local
6c699715 16197 && h->root.type == bfd_link_hash_undefweak)
5e681ec4 16198 {
c152c796 16199 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16200 return false;
5e681ec4
PB
16201 }
16202
a57d1773
AM
16203 s = htab->root.sgot;
16204 h->got.offset = s->size;
ba93b8ac 16205
a57d1773
AM
16206 if (tls_type == GOT_UNKNOWN)
16207 abort ();
ba93b8ac 16208
a57d1773
AM
16209 if (tls_type == GOT_NORMAL)
16210 /* Non-TLS symbols need one GOT slot. */
16211 s->size += 4;
16212 else
16213 {
16214 if (tls_type & GOT_TLS_GDESC)
ba93b8ac 16215 {
a57d1773
AM
16216 /* R_ARM_TLS_DESC needs 2 GOT slots. */
16217 eh->tlsdesc_got
16218 = (htab->root.sgotplt->size
16219 - elf32_arm_compute_jump_table_size (htab));
16220 htab->root.sgotplt->size += 8;
16221 h->got.offset = (bfd_vma) -2;
16222 /* plt.got_offset needs to know there's a TLS_DESC
16223 reloc in the middle of .got.plt. */
16224 htab->num_tls_desc++;
16225 }
0855e32b 16226
a57d1773
AM
16227 if (tls_type & GOT_TLS_GD)
16228 {
16229 /* R_ARM_TLS_GD32 and R_ARM_TLS_GD32_FDPIC need two
16230 consecutive GOT slots. If the symbol is both GD
16231 and GDESC, got.offset may have been
16232 overwritten. */
16233 h->got.offset = s->size;
16234 s->size += 8;
ba93b8ac
DJ
16235 }
16236
a57d1773
AM
16237 if (tls_type & GOT_TLS_IE)
16238 /* R_ARM_TLS_IE32/R_ARM_TLS_IE32_FDPIC need one GOT
16239 slot. */
16240 s->size += 4;
16241 }
ba93b8ac 16242
a57d1773 16243 dyn = htab->root.dynamic_sections_created;
ba93b8ac 16244
a57d1773
AM
16245 indx = 0;
16246 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h)
16247 && (!bfd_link_pic (info)
16248 || !SYMBOL_REFERENCES_LOCAL (info, h)))
16249 indx = h->dynindx;
ba93b8ac 16250
a57d1773
AM
16251 if (tls_type != GOT_NORMAL
16252 && (bfd_link_dll (info) || indx != 0)
16253 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
16254 || h->root.type != bfd_link_hash_undefweak))
16255 {
16256 if (tls_type & GOT_TLS_IE)
16257 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
ba93b8ac 16258
a57d1773
AM
16259 if (tls_type & GOT_TLS_GD)
16260 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
0855e32b 16261
a57d1773 16262 if (tls_type & GOT_TLS_GDESC)
b436d854 16263 {
a57d1773
AM
16264 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
16265 /* GDESC needs a trampoline to jump to. */
16266 htab->tls_trampoline = -1;
b436d854 16267 }
a57d1773
AM
16268
16269 /* Only GD needs it. GDESC just emits one relocation per
16270 2 entries. */
16271 if ((tls_type & GOT_TLS_GD) && indx != 0)
47beaa6a 16272 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
e5a52504 16273 }
a57d1773
AM
16274 else if (((indx != -1) || htab->fdpic_p)
16275 && !SYMBOL_REFERENCES_LOCAL (info, h))
16276 {
16277 if (htab->root.dynamic_sections_created)
16278 /* Reserve room for the GOT entry's R_ARM_GLOB_DAT relocation. */
16279 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16280 }
16281 else if (h->type == STT_GNU_IFUNC
16282 && eh->plt.noncall_refcount == 0)
16283 /* No non-call references resolve the STT_GNU_IFUNC's PLT entry;
16284 they all resolve dynamically instead. Reserve room for the
16285 GOT entry's R_ARM_IRELATIVE relocation. */
16286 elf32_arm_allocate_irelocs (info, htab->root.srelgot, 1);
16287 else if (bfd_link_pic (info)
16288 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
16289 /* Reserve room for the GOT entry's R_ARM_RELATIVE relocation. */
16290 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16291 else if (htab->fdpic_p && tls_type == GOT_NORMAL)
16292 /* Reserve room for rofixup for FDPIC executable. */
16293 /* TLS relocs do not need space since they are completely
16294 resolved. */
16295 htab->srofixup->size += 4;
5e681ec4
PB
16296 }
16297 else
16298 h->got.offset = (bfd_vma) -1;
16299
e8b09b87
CL
16300 /* FDPIC support. */
16301 if (eh->fdpic_cnts.gotofffuncdesc_cnt > 0)
16302 {
16303 /* Symbol musn't be exported. */
16304 if (h->dynindx != -1)
16305 abort();
16306
a57d1773
AM
16307 /* We only allocate one function descriptor with its associated
16308 relocation. */
e8b09b87
CL
16309 if (eh->fdpic_cnts.funcdesc_offset == -1)
16310 {
16311 asection *s = htab->root.sgot;
16312
16313 eh->fdpic_cnts.funcdesc_offset = s->size;
16314 s->size += 8;
16315 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16316 if (bfd_link_pic(info))
16317 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16318 else
16319 htab->srofixup->size += 8;
16320 }
16321 }
16322
16323 if (eh->fdpic_cnts.gotfuncdesc_cnt > 0)
16324 {
16325 asection *s = htab->root.sgot;
16326
16327 if (htab->root.dynamic_sections_created && h->dynindx == -1
16328 && !h->forced_local)
16329 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16330 return false;
e8b09b87
CL
16331
16332 if (h->dynindx == -1)
16333 {
a57d1773
AM
16334 /* We only allocate one function descriptor with its
16335 associated relocation. */
e8b09b87
CL
16336 if (eh->fdpic_cnts.funcdesc_offset == -1)
16337 {
16338
16339 eh->fdpic_cnts.funcdesc_offset = s->size;
16340 s->size += 8;
a57d1773
AM
16341 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two
16342 rofixups. */
e8b09b87
CL
16343 if (bfd_link_pic(info))
16344 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16345 else
16346 htab->srofixup->size += 8;
16347 }
16348 }
16349
16350 /* Add one entry into the GOT and a R_ARM_FUNCDESC or
16351 R_ARM_RELATIVE/rofixup relocation on it. */
16352 eh->fdpic_cnts.gotfuncdesc_offset = s->size;
16353 s->size += 4;
16354 if (h->dynindx == -1 && !bfd_link_pic(info))
4b24dd1a 16355 htab->srofixup->size += 4;
e8b09b87 16356 else
4b24dd1a 16357 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
e8b09b87
CL
16358 }
16359
16360 if (eh->fdpic_cnts.funcdesc_cnt > 0)
16361 {
16362 if (htab->root.dynamic_sections_created && h->dynindx == -1
16363 && !h->forced_local)
16364 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16365 return false;
e8b09b87
CL
16366
16367 if (h->dynindx == -1)
16368 {
a57d1773
AM
16369 /* We only allocate one function descriptor with its
16370 associated relocation. */
e8b09b87
CL
16371 if (eh->fdpic_cnts.funcdesc_offset == -1)
16372 {
16373 asection *s = htab->root.sgot;
16374
16375 eh->fdpic_cnts.funcdesc_offset = s->size;
16376 s->size += 8;
a57d1773
AM
16377 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two
16378 rofixups. */
e8b09b87
CL
16379 if (bfd_link_pic(info))
16380 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16381 else
16382 htab->srofixup->size += 8;
16383 }
16384 }
16385 if (h->dynindx == -1 && !bfd_link_pic(info))
16386 {
16387 /* For FDPIC executable we replace R_ARM_RELATIVE with a rofixup. */
16388 htab->srofixup->size += 4 * eh->fdpic_cnts.funcdesc_cnt;
16389 }
16390 else
16391 {
16392 /* Will need one dynamic reloc per reference. will be either
16393 R_ARM_FUNCDESC or R_ARM_RELATIVE for hidden symbols. */
16394 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot,
16395 eh->fdpic_cnts.funcdesc_cnt);
16396 }
16397 }
16398
a4fd1a8e
PB
16399 /* Allocate stubs for exported Thumb functions on v4t. */
16400 if (!htab->use_blx && h->dynindx != -1
0eaedd0e 16401 && h->def_regular
39d911fc 16402 && ARM_GET_SYM_BRANCH_TYPE (h->target_internal) == ST_BRANCH_TO_THUMB
a4fd1a8e
PB
16403 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
16404 {
16405 struct elf_link_hash_entry * th;
16406 struct bfd_link_hash_entry * bh;
16407 struct elf_link_hash_entry * myh;
16408 char name[1024];
16409 asection *s;
16410 bh = NULL;
16411 /* Create a new symbol to regist the real location of the function. */
16412 s = h->root.u.def.section;
906e58ca 16413 sprintf (name, "__real_%s", h->root.root.string);
a4fd1a8e
PB
16414 _bfd_generic_link_add_one_symbol (info, s->owner,
16415 name, BSF_GLOBAL, s,
16416 h->root.u.def.value,
0a1b45a2 16417 NULL, true, false, &bh);
a4fd1a8e
PB
16418
16419 myh = (struct elf_link_hash_entry *) bh;
35fc36a8 16420 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
a4fd1a8e 16421 myh->forced_local = 1;
39d911fc 16422 ARM_SET_SYM_BRANCH_TYPE (myh->target_internal, ST_BRANCH_TO_THUMB);
a4fd1a8e
PB
16423 eh->export_glue = myh;
16424 th = record_arm_to_thumb_glue (info, h);
16425 /* Point the symbol at the stub. */
16426 h->type = ELF_ST_INFO (ELF_ST_BIND (h->type), STT_FUNC);
39d911fc 16427 ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
a4fd1a8e
PB
16428 h->root.u.def.section = th->root.u.def.section;
16429 h->root.u.def.value = th->root.u.def.value & ~1;
16430 }
16431
190eb1dd 16432 if (h->dyn_relocs == NULL)
0a1b45a2 16433 return true;
5e681ec4
PB
16434
16435 /* In the shared -Bsymbolic case, discard space allocated for
16436 dynamic pc-relative relocs against symbols which turn out to be
16437 defined in regular objects. For the normal shared case, discard
16438 space for pc-relative relocs that have become local due to symbol
16439 visibility changes. */
16440
a57d1773
AM
16441 if (bfd_link_pic (info)
16442 || htab->root.is_relocatable_executable
16443 || htab->fdpic_p)
5e681ec4 16444 {
469a3493
RM
16445 /* Relocs that use pc_count are PC-relative forms, which will appear
16446 on something like ".long foo - ." or "movw REG, foo - .". We want
16447 calls to protected symbols to resolve directly to the function
16448 rather than going via the plt. If people want function pointer
16449 comparisons to work as expected then they should avoid writing
16450 assembly like ".long foo - .". */
ba93b8ac
DJ
16451 if (SYMBOL_CALLS_LOCAL (info, h))
16452 {
0bdcacaf 16453 struct elf_dyn_relocs **pp;
ba93b8ac 16454
190eb1dd 16455 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
ba93b8ac
DJ
16456 {
16457 p->count -= p->pc_count;
16458 p->pc_count = 0;
16459 if (p->count == 0)
16460 *pp = p->next;
16461 else
16462 pp = &p->next;
16463 }
16464 }
16465
90c14f0c 16466 if (htab->root.target_os == is_vxworks)
3348747a 16467 {
0bdcacaf 16468 struct elf_dyn_relocs **pp;
3348747a 16469
190eb1dd 16470 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
3348747a 16471 {
0bdcacaf 16472 if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
3348747a
NS
16473 *pp = p->next;
16474 else
16475 pp = &p->next;
16476 }
16477 }
16478
ba93b8ac 16479 /* Also discard relocs on undefined weak syms with non-default
99059e56 16480 visibility. */
190eb1dd 16481 if (h->dyn_relocs != NULL
5e681ec4 16482 && h->root.type == bfd_link_hash_undefweak)
22d606e9 16483 {
95b03e4a
L
16484 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
16485 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
190eb1dd 16486 h->dyn_relocs = NULL;
22d606e9
AM
16487
16488 /* Make sure undefined weak symbols are output as a dynamic
16489 symbol in PIEs. */
e8b09b87 16490 else if (htab->root.dynamic_sections_created && h->dynindx == -1
22d606e9
AM
16491 && !h->forced_local)
16492 {
16493 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16494 return false;
22d606e9
AM
16495 }
16496 }
16497
67687978
PB
16498 else if (htab->root.is_relocatable_executable && h->dynindx == -1
16499 && h->root.type == bfd_link_hash_new)
16500 {
16501 /* Output absolute symbols so that we can create relocations
16502 against them. For normal symbols we output a relocation
16503 against the section that contains them. */
16504 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16505 return false;
67687978
PB
16506 }
16507
5e681ec4
PB
16508 }
16509 else
16510 {
16511 /* For the non-shared case, discard space for relocs against
16512 symbols which turn out to need copy relocs or are not
16513 dynamic. */
16514
f5385ebf
AM
16515 if (!h->non_got_ref
16516 && ((h->def_dynamic
16517 && !h->def_regular)
5e681ec4
PB
16518 || (htab->root.dynamic_sections_created
16519 && (h->root.type == bfd_link_hash_undefweak
16520 || h->root.type == bfd_link_hash_undefined))))
16521 {
16522 /* Make sure this symbol is output as a dynamic symbol.
16523 Undefined weak syms won't yet be marked as dynamic. */
6c699715
RL
16524 if (h->dynindx == -1 && !h->forced_local
16525 && h->root.type == bfd_link_hash_undefweak)
5e681ec4 16526 {
c152c796 16527 if (! bfd_elf_link_record_dynamic_symbol (info, h))
0a1b45a2 16528 return false;
5e681ec4
PB
16529 }
16530
16531 /* If that succeeded, we know we'll be keeping all the
16532 relocs. */
16533 if (h->dynindx != -1)
16534 goto keep;
16535 }
16536
190eb1dd 16537 h->dyn_relocs = NULL;
5e681ec4
PB
16538
16539 keep: ;
16540 }
16541
16542 /* Finally, allocate space. */
190eb1dd 16543 for (p = h->dyn_relocs; p != NULL; p = p->next)
5e681ec4 16544 {
0bdcacaf 16545 asection *sreloc = elf_section_data (p->sec)->sreloc;
e8b09b87 16546
34e77a92
RS
16547 if (h->type == STT_GNU_IFUNC
16548 && eh->plt.noncall_refcount == 0
16549 && SYMBOL_REFERENCES_LOCAL (info, h))
16550 elf32_arm_allocate_irelocs (info, sreloc, p->count);
a57d1773
AM
16551 else if (h->dynindx != -1
16552 && (!bfd_link_pic(info) || !info->symbolic || !h->def_regular))
e8b09b87
CL
16553 elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
16554 else if (htab->fdpic_p && !bfd_link_pic(info))
16555 htab->srofixup->size += 4 * p->count;
34e77a92
RS
16556 else
16557 elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
5e681ec4
PB
16558 }
16559
0a1b45a2 16560 return true;
5e681ec4
PB
16561}
16562
d504ffc8
DJ
16563void
16564bfd_elf32_arm_set_byteswap_code (struct bfd_link_info *info,
16565 int byteswap_code)
16566{
16567 struct elf32_arm_link_hash_table *globals;
16568
16569 globals = elf32_arm_hash_table (info);
4dfe6ac6
NC
16570 if (globals == NULL)
16571 return;
16572
d504ffc8
DJ
16573 globals->byteswap_code = byteswap_code;
16574}
16575
252b5132
RH
16576/* Set the sizes of the dynamic sections. */
16577
0a1b45a2 16578static bool
57e8b36a
NC
16579elf32_arm_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
16580 struct bfd_link_info * info)
252b5132
RH
16581{
16582 bfd * dynobj;
16583 asection * s;
0a1b45a2 16584 bool relocs;
5e681ec4
PB
16585 bfd *ibfd;
16586 struct elf32_arm_link_hash_table *htab;
252b5132 16587
5e681ec4 16588 htab = elf32_arm_hash_table (info);
4dfe6ac6 16589 if (htab == NULL)
0a1b45a2 16590 return false;
4dfe6ac6 16591
252b5132
RH
16592 dynobj = elf_hash_table (info)->dynobj;
16593 BFD_ASSERT (dynobj != NULL);
39b41c9c 16594 check_use_blx (htab);
252b5132
RH
16595
16596 if (elf_hash_table (info)->dynamic_sections_created)
16597 {
16598 /* Set the contents of the .interp section to the interpreter. */
9b8b325a 16599 if (bfd_link_executable (info) && !info->nointerp)
252b5132 16600 {
3d4d4302 16601 s = bfd_get_linker_section (dynobj, ".interp");
252b5132 16602 BFD_ASSERT (s != NULL);
eea6121a 16603 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
252b5132
RH
16604 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
16605 }
16606 }
5e681ec4
PB
16607
16608 /* Set up .got offsets for local syms, and space for local dynamic
16609 relocs. */
c72f2fb2 16610 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
252b5132 16611 {
5e681ec4
PB
16612 bfd_signed_vma *local_got;
16613 bfd_signed_vma *end_local_got;
34e77a92 16614 struct arm_local_iplt_info **local_iplt_ptr, *local_iplt;
5e681ec4 16615 char *local_tls_type;
0855e32b 16616 bfd_vma *local_tlsdesc_gotent;
5e681ec4
PB
16617 bfd_size_type locsymcount;
16618 Elf_Internal_Shdr *symtab_hdr;
16619 asection *srel;
34e77a92 16620 unsigned int symndx;
e8b09b87 16621 struct fdpic_local *local_fdpic_cnts;
5e681ec4 16622
0ffa91dd 16623 if (! is_arm_elf (ibfd))
5e681ec4
PB
16624 continue;
16625
16626 for (s = ibfd->sections; s != NULL; s = s->next)
16627 {
0bdcacaf 16628 struct elf_dyn_relocs *p;
5e681ec4 16629
0bdcacaf 16630 for (p = (struct elf_dyn_relocs *)
99059e56 16631 elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
5e681ec4 16632 {
0bdcacaf
RS
16633 if (!bfd_is_abs_section (p->sec)
16634 && bfd_is_abs_section (p->sec->output_section))
5e681ec4
PB
16635 {
16636 /* Input section has been discarded, either because
16637 it is a copy of a linkonce section or due to
16638 linker script /DISCARD/, so we'll be discarding
16639 the relocs too. */
16640 }
90c14f0c 16641 else if (htab->root.target_os == is_vxworks
0bdcacaf 16642 && strcmp (p->sec->output_section->name,
3348747a
NS
16643 ".tls_vars") == 0)
16644 {
16645 /* Relocations in vxworks .tls_vars sections are
16646 handled specially by the loader. */
16647 }
5e681ec4
PB
16648 else if (p->count != 0)
16649 {
0bdcacaf 16650 srel = elf_section_data (p->sec)->sreloc;
e8b09b87
CL
16651 if (htab->fdpic_p && !bfd_link_pic(info))
16652 htab->srofixup->size += 4 * p->count;
16653 else
16654 elf32_arm_allocate_dynrelocs (info, srel, p->count);
0bdcacaf 16655 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
5e681ec4
PB
16656 info->flags |= DF_TEXTREL;
16657 }
16658 }
16659 }
16660
16661 local_got = elf_local_got_refcounts (ibfd);
16662 if (!local_got)
16663 continue;
16664
0ffa91dd 16665 symtab_hdr = & elf_symtab_hdr (ibfd);
5e681ec4
PB
16666 locsymcount = symtab_hdr->sh_info;
16667 end_local_got = local_got + locsymcount;
34e77a92 16668 local_iplt_ptr = elf32_arm_local_iplt (ibfd);
ba93b8ac 16669 local_tls_type = elf32_arm_local_got_tls_type (ibfd);
0855e32b 16670 local_tlsdesc_gotent = elf32_arm_local_tlsdesc_gotent (ibfd);
e8b09b87 16671 local_fdpic_cnts = elf32_arm_local_fdpic_cnts (ibfd);
34e77a92 16672 symndx = 0;
362d30a1
RS
16673 s = htab->root.sgot;
16674 srel = htab->root.srelgot;
0855e32b 16675 for (; local_got < end_local_got;
34e77a92 16676 ++local_got, ++local_iplt_ptr, ++local_tls_type,
e8b09b87 16677 ++local_tlsdesc_gotent, ++symndx, ++local_fdpic_cnts)
5e681ec4 16678 {
0855e32b 16679 *local_tlsdesc_gotent = (bfd_vma) -1;
34e77a92 16680 local_iplt = *local_iplt_ptr;
e8b09b87
CL
16681
16682 /* FDPIC support. */
16683 if (local_fdpic_cnts->gotofffuncdesc_cnt > 0)
16684 {
16685 if (local_fdpic_cnts->funcdesc_offset == -1)
16686 {
16687 local_fdpic_cnts->funcdesc_offset = s->size;
16688 s->size += 8;
16689
16690 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16691 if (bfd_link_pic(info))
16692 elf32_arm_allocate_dynrelocs (info, srel, 1);
16693 else
16694 htab->srofixup->size += 8;
16695 }
16696 }
16697
16698 if (local_fdpic_cnts->funcdesc_cnt > 0)
16699 {
16700 if (local_fdpic_cnts->funcdesc_offset == -1)
16701 {
16702 local_fdpic_cnts->funcdesc_offset = s->size;
16703 s->size += 8;
16704
16705 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16706 if (bfd_link_pic(info))
16707 elf32_arm_allocate_dynrelocs (info, srel, 1);
16708 else
16709 htab->srofixup->size += 8;
16710 }
16711
16712 /* We will add n R_ARM_RELATIVE relocations or n rofixups. */
16713 if (bfd_link_pic(info))
16714 elf32_arm_allocate_dynrelocs (info, srel, local_fdpic_cnts->funcdesc_cnt);
16715 else
16716 htab->srofixup->size += 4 * local_fdpic_cnts->funcdesc_cnt;
16717 }
16718
34e77a92
RS
16719 if (local_iplt != NULL)
16720 {
16721 struct elf_dyn_relocs *p;
16722
16723 if (local_iplt->root.refcount > 0)
16724 {
0a1b45a2 16725 elf32_arm_allocate_plt_entry (info, true,
34e77a92
RS
16726 &local_iplt->root,
16727 &local_iplt->arm);
16728 if (local_iplt->arm.noncall_refcount == 0)
16729 /* All references to the PLT are calls, so all
16730 non-call references can resolve directly to the
16731 run-time target. This means that the .got entry
16732 would be the same as the .igot.plt entry, so there's
16733 no point creating both. */
16734 *local_got = 0;
16735 }
16736 else
16737 {
16738 BFD_ASSERT (local_iplt->arm.noncall_refcount == 0);
16739 local_iplt->root.offset = (bfd_vma) -1;
16740 }
16741
16742 for (p = local_iplt->dyn_relocs; p != NULL; p = p->next)
16743 {
16744 asection *psrel;
16745
16746 psrel = elf_section_data (p->sec)->sreloc;
16747 if (local_iplt->arm.noncall_refcount == 0)
16748 elf32_arm_allocate_irelocs (info, psrel, p->count);
16749 else
16750 elf32_arm_allocate_dynrelocs (info, psrel, p->count);
16751 }
16752 }
5e681ec4
PB
16753 if (*local_got > 0)
16754 {
34e77a92
RS
16755 Elf_Internal_Sym *isym;
16756
eea6121a 16757 *local_got = s->size;
ba93b8ac
DJ
16758 if (*local_tls_type & GOT_TLS_GD)
16759 /* TLS_GD relocs need an 8-byte structure in the GOT. */
16760 s->size += 8;
0855e32b
NS
16761 if (*local_tls_type & GOT_TLS_GDESC)
16762 {
16763 *local_tlsdesc_gotent = htab->root.sgotplt->size
16764 - elf32_arm_compute_jump_table_size (htab);
16765 htab->root.sgotplt->size += 8;
16766 *local_got = (bfd_vma) -2;
34e77a92 16767 /* plt.got_offset needs to know there's a TLS_DESC
0855e32b 16768 reloc in the middle of .got.plt. */
99059e56 16769 htab->num_tls_desc++;
0855e32b 16770 }
ba93b8ac
DJ
16771 if (*local_tls_type & GOT_TLS_IE)
16772 s->size += 4;
ba93b8ac 16773
0855e32b
NS
16774 if (*local_tls_type & GOT_NORMAL)
16775 {
16776 /* If the symbol is both GD and GDESC, *local_got
16777 may have been overwritten. */
16778 *local_got = s->size;
16779 s->size += 4;
16780 }
16781
f1dfbfdb
L
16782 isym = bfd_sym_from_r_symndx (&htab->root.sym_cache, ibfd,
16783 symndx);
34e77a92 16784 if (isym == NULL)
0a1b45a2 16785 return false;
34e77a92
RS
16786
16787 /* If all references to an STT_GNU_IFUNC PLT are calls,
16788 then all non-call references, including this GOT entry,
16789 resolve directly to the run-time target. */
16790 if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
16791 && (local_iplt == NULL
16792 || local_iplt->arm.noncall_refcount == 0))
16793 elf32_arm_allocate_irelocs (info, srel, 1);
e8b09b87 16794 else if (bfd_link_pic (info) || output_bfd->flags & DYNAMIC || htab->fdpic_p)
0855e32b 16795 {
e8b09b87 16796 if ((bfd_link_pic (info) && !(*local_tls_type & GOT_TLS_GDESC)))
3064e1ff 16797 elf32_arm_allocate_dynrelocs (info, srel, 1);
e8b09b87
CL
16798 else if (htab->fdpic_p && *local_tls_type & GOT_NORMAL)
16799 htab->srofixup->size += 4;
99059e56 16800
e8b09b87
CL
16801 if ((bfd_link_pic (info) || htab->fdpic_p)
16802 && *local_tls_type & GOT_TLS_GDESC)
3064e1ff
JB
16803 {
16804 elf32_arm_allocate_dynrelocs (info,
16805 htab->root.srelplt, 1);
16806 htab->tls_trampoline = -1;
16807 }
0855e32b 16808 }
5e681ec4
PB
16809 }
16810 else
16811 *local_got = (bfd_vma) -1;
16812 }
252b5132
RH
16813 }
16814
ba93b8ac
DJ
16815 if (htab->tls_ldm_got.refcount > 0)
16816 {
16817 /* Allocate two GOT entries and one dynamic relocation (if necessary)
5c5a4843 16818 for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations. */
362d30a1
RS
16819 htab->tls_ldm_got.offset = htab->root.sgot->size;
16820 htab->root.sgot->size += 8;
0e1862bb 16821 if (bfd_link_pic (info))
47beaa6a 16822 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
ba93b8ac
DJ
16823 }
16824 else
16825 htab->tls_ldm_got.offset = -1;
16826
e8b09b87
CL
16827 /* At the very end of the .rofixup section is a pointer to the GOT,
16828 reserve space for it. */
16829 if (htab->fdpic_p && htab->srofixup != NULL)
16830 htab->srofixup->size += 4;
16831
5e681ec4
PB
16832 /* Allocate global sym .plt and .got entries, and space for global
16833 sym dynamic relocs. */
47beaa6a 16834 elf_link_hash_traverse (& htab->root, allocate_dynrelocs_for_symbol, info);
252b5132 16835
d504ffc8 16836 /* Here we rummage through the found bfds to collect glue information. */
c72f2fb2 16837 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
c7b8f16e 16838 {
0ffa91dd 16839 if (! is_arm_elf (ibfd))
e44a2c9c
AM
16840 continue;
16841
c7b8f16e
JB
16842 /* Initialise mapping tables for code/data. */
16843 bfd_elf32_arm_init_maps (ibfd);
906e58ca 16844
c7b8f16e 16845 if (!bfd_elf32_arm_process_before_allocation (ibfd, info)
a504d23a
LA
16846 || !bfd_elf32_arm_vfp11_erratum_scan (ibfd, info)
16847 || !bfd_elf32_arm_stm32l4xx_erratum_scan (ibfd, info))
90b6238f 16848 _bfd_error_handler (_("errors encountered processing file %pB"), ibfd);
c7b8f16e 16849 }
d504ffc8 16850
3e6b1042
DJ
16851 /* Allocate space for the glue sections now that we've sized them. */
16852 bfd_elf32_arm_allocate_interworking_sections (info);
16853
0855e32b
NS
16854 /* For every jump slot reserved in the sgotplt, reloc_count is
16855 incremented. However, when we reserve space for TLS descriptors,
16856 it's not incremented, so in order to compute the space reserved
16857 for them, it suffices to multiply the reloc count by the jump
16858 slot size. */
16859 if (htab->root.srelplt)
16860 htab->sgotplt_jump_table_size = elf32_arm_compute_jump_table_size(htab);
16861
16862 if (htab->tls_trampoline)
16863 {
16864 if (htab->root.splt->size == 0)
16865 htab->root.splt->size += htab->plt_header_size;
b38cadfb 16866
0855e32b
NS
16867 htab->tls_trampoline = htab->root.splt->size;
16868 htab->root.splt->size += htab->plt_entry_size;
b38cadfb 16869
0855e32b 16870 /* If we're not using lazy TLS relocations, don't generate the
99059e56 16871 PLT and GOT entries they require. */
9bcc30e4
L
16872 if ((info->flags & DF_BIND_NOW))
16873 htab->root.tlsdesc_plt = 0;
16874 else
0855e32b 16875 {
9bcc30e4 16876 htab->root.tlsdesc_got = htab->root.sgot->size;
0855e32b
NS
16877 htab->root.sgot->size += 4;
16878
9bcc30e4 16879 htab->root.tlsdesc_plt = htab->root.splt->size;
0855e32b
NS
16880 htab->root.splt->size += 4 * ARRAY_SIZE (dl_tlsdesc_lazy_trampoline);
16881 }
16882 }
16883
252b5132
RH
16884 /* The check_relocs and adjust_dynamic_symbol entry points have
16885 determined the sizes of the various dynamic sections. Allocate
16886 memory for them. */
0a1b45a2 16887 relocs = false;
252b5132
RH
16888 for (s = dynobj->sections; s != NULL; s = s->next)
16889 {
16890 const char * name;
252b5132
RH
16891
16892 if ((s->flags & SEC_LINKER_CREATED) == 0)
16893 continue;
16894
16895 /* It's OK to base decisions on the section name, because none
16896 of the dynobj section names depend upon the input files. */
fd361982 16897 name = bfd_section_name (s);
252b5132 16898
34e77a92 16899 if (s == htab->root.splt)
252b5132 16900 {
c456f082 16901 /* Remember whether there is a PLT. */
3084d7a2 16902 ;
252b5132 16903 }
08dedd66 16904 else if (startswith (name, ".rel"))
252b5132 16905 {
c456f082 16906 if (s->size != 0)
252b5132 16907 {
252b5132 16908 /* Remember whether there are any reloc sections other
00a97672 16909 than .rel(a).plt and .rela.plt.unloaded. */
362d30a1 16910 if (s != htab->root.srelplt && s != htab->srelplt2)
0a1b45a2 16911 relocs = true;
252b5132
RH
16912
16913 /* We use the reloc_count field as a counter if we need
16914 to copy relocs into the output file. */
16915 s->reloc_count = 0;
16916 }
16917 }
34e77a92
RS
16918 else if (s != htab->root.sgot
16919 && s != htab->root.sgotplt
16920 && s != htab->root.iplt
16921 && s != htab->root.igotplt
5474d94f 16922 && s != htab->root.sdynbss
e8b09b87
CL
16923 && s != htab->root.sdynrelro
16924 && s != htab->srofixup)
252b5132
RH
16925 {
16926 /* It's not one of our sections, so don't allocate space. */
16927 continue;
16928 }
16929
c456f082 16930 if (s->size == 0)
252b5132 16931 {
c456f082 16932 /* If we don't need this section, strip it from the
00a97672
RS
16933 output file. This is mostly to handle .rel(a).bss and
16934 .rel(a).plt. We must create both sections in
c456f082
AM
16935 create_dynamic_sections, because they must be created
16936 before the linker maps input sections to output
16937 sections. The linker does that before
16938 adjust_dynamic_symbol is called, and it is that
16939 function which decides whether anything needs to go
16940 into these sections. */
8423293d 16941 s->flags |= SEC_EXCLUDE;
252b5132
RH
16942 continue;
16943 }
16944
c456f082
AM
16945 if ((s->flags & SEC_HAS_CONTENTS) == 0)
16946 continue;
16947
252b5132 16948 /* Allocate memory for the section contents. */
21d799b5 16949 s->contents = (unsigned char *) bfd_zalloc (dynobj, s->size);
c456f082 16950 if (s->contents == NULL)
0a1b45a2 16951 return false;
252b5132
RH
16952 }
16953
3084d7a2
L
16954 return _bfd_elf_maybe_vxworks_add_dynamic_tags (output_bfd, info,
16955 relocs);
252b5132
RH
16956}
16957
0855e32b
NS
16958/* Size sections even though they're not dynamic. We use it to setup
16959 _TLS_MODULE_BASE_, if needed. */
16960
0a1b45a2 16961static bool
0855e32b 16962elf32_arm_always_size_sections (bfd *output_bfd,
99059e56 16963 struct bfd_link_info *info)
0855e32b
NS
16964{
16965 asection *tls_sec;
cb10292c
CL
16966 struct elf32_arm_link_hash_table *htab;
16967
16968 htab = elf32_arm_hash_table (info);
0855e32b 16969
0e1862bb 16970 if (bfd_link_relocatable (info))
0a1b45a2 16971 return true;
0855e32b
NS
16972
16973 tls_sec = elf_hash_table (info)->tls_sec;
16974
16975 if (tls_sec)
16976 {
16977 struct elf_link_hash_entry *tlsbase;
16978
16979 tlsbase = elf_link_hash_lookup
0a1b45a2 16980 (elf_hash_table (info), "_TLS_MODULE_BASE_", true, true, false);
0855e32b
NS
16981
16982 if (tlsbase)
99059e56
RM
16983 {
16984 struct bfd_link_hash_entry *bh = NULL;
0855e32b 16985 const struct elf_backend_data *bed
99059e56 16986 = get_elf_backend_data (output_bfd);
0855e32b 16987
99059e56 16988 if (!(_bfd_generic_link_add_one_symbol
0855e32b 16989 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
0a1b45a2 16990 tls_sec, 0, NULL, false,
0855e32b 16991 bed->collect, &bh)))
0a1b45a2 16992 return false;
b38cadfb 16993
99059e56
RM
16994 tlsbase->type = STT_TLS;
16995 tlsbase = (struct elf_link_hash_entry *)bh;
16996 tlsbase->def_regular = 1;
16997 tlsbase->other = STV_HIDDEN;
0a1b45a2 16998 (*bed->elf_backend_hide_symbol) (info, tlsbase, true);
0855e32b
NS
16999 }
17000 }
cb10292c
CL
17001
17002 if (htab->fdpic_p && !bfd_link_relocatable (info)
17003 && !bfd_elf_stack_segment_size (output_bfd, info,
17004 "__stacksize", DEFAULT_STACK_SIZE))
0a1b45a2 17005 return false;
cb10292c 17006
0a1b45a2 17007 return true;
0855e32b
NS
17008}
17009
252b5132
RH
17010/* Finish up dynamic symbol handling. We set the contents of various
17011 dynamic sections here. */
17012
0a1b45a2 17013static bool
906e58ca
NC
17014elf32_arm_finish_dynamic_symbol (bfd * output_bfd,
17015 struct bfd_link_info * info,
17016 struct elf_link_hash_entry * h,
17017 Elf_Internal_Sym * sym)
252b5132 17018{
e5a52504 17019 struct elf32_arm_link_hash_table *htab;
b7693d02 17020 struct elf32_arm_link_hash_entry *eh;
252b5132 17021
e5a52504 17022 htab = elf32_arm_hash_table (info);
4dfe6ac6 17023 if (htab == NULL)
0a1b45a2 17024 return false;
4dfe6ac6 17025
b7693d02 17026 eh = (struct elf32_arm_link_hash_entry *) h;
252b5132
RH
17027
17028 if (h->plt.offset != (bfd_vma) -1)
17029 {
34e77a92 17030 if (!eh->is_iplt)
e5a52504 17031 {
34e77a92 17032 BFD_ASSERT (h->dynindx != -1);
57460bcf
NC
17033 if (! elf32_arm_populate_plt_entry (output_bfd, info, &h->plt, &eh->plt,
17034 h->dynindx, 0))
0a1b45a2 17035 return false;
e5a52504 17036 }
57e8b36a 17037
f5385ebf 17038 if (!h->def_regular)
252b5132
RH
17039 {
17040 /* Mark the symbol as undefined, rather than as defined in
3a635617 17041 the .plt section. */
252b5132 17042 sym->st_shndx = SHN_UNDEF;
3a635617 17043 /* If the symbol is weak we need to clear the value.
d982ba73
PB
17044 Otherwise, the PLT entry would provide a definition for
17045 the symbol even if the symbol wasn't defined anywhere,
3a635617
WN
17046 and so the symbol would never be NULL. Leave the value if
17047 there were any relocations where pointer equality matters
17048 (this is a clue for the dynamic linker, to make function
17049 pointer comparisons work between an application and shared
17050 library). */
97323ad1 17051 if (!h->ref_regular_nonweak || !h->pointer_equality_needed)
d982ba73 17052 sym->st_value = 0;
252b5132 17053 }
34e77a92
RS
17054 else if (eh->is_iplt && eh->plt.noncall_refcount != 0)
17055 {
17056 /* At least one non-call relocation references this .iplt entry,
17057 so the .iplt entry is the function's canonical address. */
17058 sym->st_info = ELF_ST_INFO (ELF_ST_BIND (sym->st_info), STT_FUNC);
39d911fc 17059 ARM_SET_SYM_BRANCH_TYPE (sym->st_target_internal, ST_BRANCH_TO_ARM);
34e77a92
RS
17060 sym->st_shndx = (_bfd_elf_section_from_bfd_section
17061 (output_bfd, htab->root.iplt->output_section));
17062 sym->st_value = (h->plt.offset
17063 + htab->root.iplt->output_section->vma
17064 + htab->root.iplt->output_offset);
17065 }
252b5132
RH
17066 }
17067
f5385ebf 17068 if (h->needs_copy)
252b5132
RH
17069 {
17070 asection * s;
947216bf 17071 Elf_Internal_Rela rel;
252b5132
RH
17072
17073 /* This symbol needs a copy reloc. Set it up. */
252b5132
RH
17074 BFD_ASSERT (h->dynindx != -1
17075 && (h->root.type == bfd_link_hash_defined
17076 || h->root.type == bfd_link_hash_defweak));
17077
00a97672 17078 rel.r_addend = 0;
252b5132
RH
17079 rel.r_offset = (h->root.u.def.value
17080 + h->root.u.def.section->output_section->vma
17081 + h->root.u.def.section->output_offset);
17082 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_COPY);
afbf7e8e 17083 if (h->root.u.def.section == htab->root.sdynrelro)
5474d94f
AM
17084 s = htab->root.sreldynrelro;
17085 else
17086 s = htab->root.srelbss;
47beaa6a 17087 elf32_arm_add_dynreloc (output_bfd, info, s, &rel);
252b5132
RH
17088 }
17089
00a97672 17090 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. On VxWorks,
fac7bd64
CL
17091 and for FDPIC, the _GLOBAL_OFFSET_TABLE_ symbol is not absolute:
17092 it is relative to the ".got" section. */
9637f6ef 17093 if (h == htab->root.hdynamic
90c14f0c
L
17094 || (!htab->fdpic_p
17095 && htab->root.target_os != is_vxworks
17096 && h == htab->root.hgot))
252b5132
RH
17097 sym->st_shndx = SHN_ABS;
17098
0a1b45a2 17099 return true;
252b5132
RH
17100}
17101
0855e32b
NS
17102static void
17103arm_put_trampoline (struct elf32_arm_link_hash_table *htab, bfd *output_bfd,
17104 void *contents,
17105 const unsigned long *template, unsigned count)
17106{
17107 unsigned ix;
b38cadfb 17108
0855e32b
NS
17109 for (ix = 0; ix != count; ix++)
17110 {
17111 unsigned long insn = template[ix];
17112
17113 /* Emit mov pc,rx if bx is not permitted. */
17114 if (htab->fix_v4bx == 1 && (insn & 0x0ffffff0) == 0x012fff10)
17115 insn = (insn & 0xf000000f) | 0x01a0f000;
17116 put_arm_insn (htab, output_bfd, insn, (char *)contents + ix*4);
17117 }
17118}
17119
99059e56
RM
17120/* Install the special first PLT entry for elf32-arm-nacl. Unlike
17121 other variants, NaCl needs this entry in a static executable's
17122 .iplt too. When we're handling that case, GOT_DISPLACEMENT is
17123 zero. For .iplt really only the last bundle is useful, and .iplt
17124 could have a shorter first entry, with each individual PLT entry's
17125 relative branch calculated differently so it targets the last
17126 bundle instead of the instruction before it (labelled .Lplt_tail
17127 above). But it's simpler to keep the size and layout of PLT0
17128 consistent with the dynamic case, at the cost of some dead code at
17129 the start of .iplt and the one dead store to the stack at the start
17130 of .Lplt_tail. */
17131static void
17132arm_nacl_put_plt0 (struct elf32_arm_link_hash_table *htab, bfd *output_bfd,
17133 asection *plt, bfd_vma got_displacement)
17134{
17135 unsigned int i;
17136
17137 put_arm_insn (htab, output_bfd,
17138 elf32_arm_nacl_plt0_entry[0]
17139 | arm_movw_immediate (got_displacement),
17140 plt->contents + 0);
17141 put_arm_insn (htab, output_bfd,
17142 elf32_arm_nacl_plt0_entry[1]
17143 | arm_movt_immediate (got_displacement),
17144 plt->contents + 4);
17145
17146 for (i = 2; i < ARRAY_SIZE (elf32_arm_nacl_plt0_entry); ++i)
17147 put_arm_insn (htab, output_bfd,
17148 elf32_arm_nacl_plt0_entry[i],
17149 plt->contents + (i * 4));
17150}
17151
252b5132
RH
17152/* Finish up the dynamic sections. */
17153
0a1b45a2 17154static bool
57e8b36a 17155elf32_arm_finish_dynamic_sections (bfd * output_bfd, struct bfd_link_info * info)
252b5132
RH
17156{
17157 bfd * dynobj;
17158 asection * sgot;
17159 asection * sdyn;
4dfe6ac6
NC
17160 struct elf32_arm_link_hash_table *htab;
17161
17162 htab = elf32_arm_hash_table (info);
17163 if (htab == NULL)
0a1b45a2 17164 return false;
252b5132
RH
17165
17166 dynobj = elf_hash_table (info)->dynobj;
17167
362d30a1 17168 sgot = htab->root.sgotplt;
894891db
NC
17169 /* A broken linker script might have discarded the dynamic sections.
17170 Catch this here so that we do not seg-fault later on. */
17171 if (sgot != NULL && bfd_is_abs_section (sgot->output_section))
0a1b45a2 17172 return false;
3d4d4302 17173 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
252b5132
RH
17174
17175 if (elf_hash_table (info)->dynamic_sections_created)
17176 {
17177 asection *splt;
17178 Elf32_External_Dyn *dyncon, *dynconend;
17179
362d30a1 17180 splt = htab->root.splt;
24a1ba0f 17181 BFD_ASSERT (splt != NULL && sdyn != NULL);
a57d1773 17182 BFD_ASSERT (sgot != NULL);
252b5132
RH
17183
17184 dyncon = (Elf32_External_Dyn *) sdyn->contents;
eea6121a 17185 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
9b485d32 17186
252b5132
RH
17187 for (; dyncon < dynconend; dyncon++)
17188 {
17189 Elf_Internal_Dyn dyn;
17190 const char * name;
17191 asection * s;
17192
17193 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
17194
17195 switch (dyn.d_tag)
17196 {
17197 default:
90c14f0c 17198 if (htab->root.target_os == is_vxworks
7a2b07ff
NS
17199 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
17200 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
252b5132
RH
17201 break;
17202
229fcec5 17203 case DT_HASH:
229fcec5 17204 case DT_STRTAB:
229fcec5 17205 case DT_SYMTAB:
c0042f5d 17206 case DT_VERSYM:
c0042f5d 17207 case DT_VERDEF:
c0042f5d 17208 case DT_VERNEED:
a57d1773 17209 break;
c0042f5d 17210
252b5132 17211 case DT_PLTGOT:
a57d1773 17212 name = ".got.plt";
252b5132
RH
17213 goto get_vma;
17214 case DT_JMPREL:
00a97672 17215 name = RELOC_SECTION (htab, ".plt");
252b5132 17216 get_vma:
4ade44b7 17217 s = bfd_get_linker_section (dynobj, name);
05456594
NC
17218 if (s == NULL)
17219 {
4eca0228 17220 _bfd_error_handler
4ade44b7 17221 (_("could not find section %s"), name);
05456594 17222 bfd_set_error (bfd_error_invalid_operation);
0a1b45a2 17223 return false;
05456594 17224 }
a57d1773 17225 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
252b5132
RH
17226 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17227 break;
17228
17229 case DT_PLTRELSZ:
362d30a1 17230 s = htab->root.srelplt;
252b5132 17231 BFD_ASSERT (s != NULL);
eea6121a 17232 dyn.d_un.d_val = s->size;
252b5132
RH
17233 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17234 break;
906e58ca 17235
252b5132 17236 case DT_RELSZ:
00a97672 17237 case DT_RELASZ:
229fcec5
MM
17238 case DT_REL:
17239 case DT_RELA:
252b5132 17240 break;
88f7bcd5 17241
0855e32b 17242 case DT_TLSDESC_PLT:
99059e56 17243 s = htab->root.splt;
0855e32b 17244 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
9bcc30e4 17245 + htab->root.tlsdesc_plt);
0855e32b
NS
17246 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17247 break;
17248
17249 case DT_TLSDESC_GOT:
99059e56 17250 s = htab->root.sgot;
0855e32b 17251 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
9bcc30e4 17252 + htab->root.tlsdesc_got);
0855e32b
NS
17253 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17254 break;
17255
88f7bcd5
NC
17256 /* Set the bottom bit of DT_INIT/FINI if the
17257 corresponding function is Thumb. */
17258 case DT_INIT:
17259 name = info->init_function;
17260 goto get_sym;
17261 case DT_FINI:
17262 name = info->fini_function;
17263 get_sym:
17264 /* If it wasn't set by elf_bfd_final_link
4cc11e76 17265 then there is nothing to adjust. */
88f7bcd5
NC
17266 if (dyn.d_un.d_val != 0)
17267 {
17268 struct elf_link_hash_entry * eh;
17269
17270 eh = elf_link_hash_lookup (elf_hash_table (info), name,
0a1b45a2 17271 false, false, true);
39d911fc
TP
17272 if (eh != NULL
17273 && ARM_GET_SYM_BRANCH_TYPE (eh->target_internal)
17274 == ST_BRANCH_TO_THUMB)
88f7bcd5
NC
17275 {
17276 dyn.d_un.d_val |= 1;
b34976b6 17277 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
88f7bcd5
NC
17278 }
17279 }
17280 break;
252b5132
RH
17281 }
17282 }
17283
24a1ba0f 17284 /* Fill in the first entry in the procedure linkage table. */
4dfe6ac6 17285 if (splt->size > 0 && htab->plt_header_size)
f7a74f8c 17286 {
00a97672
RS
17287 const bfd_vma *plt0_entry;
17288 bfd_vma got_address, plt_address, got_displacement;
17289
17290 /* Calculate the addresses of the GOT and PLT. */
17291 got_address = sgot->output_section->vma + sgot->output_offset;
17292 plt_address = splt->output_section->vma + splt->output_offset;
17293
90c14f0c 17294 if (htab->root.target_os == is_vxworks)
00a97672
RS
17295 {
17296 /* The VxWorks GOT is relocated by the dynamic linker.
17297 Therefore, we must emit relocations rather than simply
17298 computing the values now. */
17299 Elf_Internal_Rela rel;
17300
17301 plt0_entry = elf32_arm_vxworks_exec_plt0_entry;
52ab56c2
PB
17302 put_arm_insn (htab, output_bfd, plt0_entry[0],
17303 splt->contents + 0);
17304 put_arm_insn (htab, output_bfd, plt0_entry[1],
17305 splt->contents + 4);
17306 put_arm_insn (htab, output_bfd, plt0_entry[2],
17307 splt->contents + 8);
00a97672
RS
17308 bfd_put_32 (output_bfd, got_address, splt->contents + 12);
17309
8029a119 17310 /* Generate a relocation for _GLOBAL_OFFSET_TABLE_. */
00a97672
RS
17311 rel.r_offset = plt_address + 12;
17312 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17313 rel.r_addend = 0;
17314 SWAP_RELOC_OUT (htab) (output_bfd, &rel,
17315 htab->srelplt2->contents);
17316 }
90c14f0c 17317 else if (htab->root.target_os == is_nacl)
99059e56
RM
17318 arm_nacl_put_plt0 (htab, output_bfd, splt,
17319 got_address + 8 - (plt_address + 16));
eed94f8f
NC
17320 else if (using_thumb_only (htab))
17321 {
17322 got_displacement = got_address - (plt_address + 12);
17323
17324 plt0_entry = elf32_thumb2_plt0_entry;
17325 put_arm_insn (htab, output_bfd, plt0_entry[0],
17326 splt->contents + 0);
17327 put_arm_insn (htab, output_bfd, plt0_entry[1],
17328 splt->contents + 4);
17329 put_arm_insn (htab, output_bfd, plt0_entry[2],
17330 splt->contents + 8);
17331
17332 bfd_put_32 (output_bfd, got_displacement, splt->contents + 12);
17333 }
00a97672
RS
17334 else
17335 {
17336 got_displacement = got_address - (plt_address + 16);
17337
17338 plt0_entry = elf32_arm_plt0_entry;
52ab56c2
PB
17339 put_arm_insn (htab, output_bfd, plt0_entry[0],
17340 splt->contents + 0);
17341 put_arm_insn (htab, output_bfd, plt0_entry[1],
17342 splt->contents + 4);
17343 put_arm_insn (htab, output_bfd, plt0_entry[2],
17344 splt->contents + 8);
17345 put_arm_insn (htab, output_bfd, plt0_entry[3],
17346 splt->contents + 12);
5e681ec4 17347
5e681ec4 17348#ifdef FOUR_WORD_PLT
00a97672
RS
17349 /* The displacement value goes in the otherwise-unused
17350 last word of the second entry. */
17351 bfd_put_32 (output_bfd, got_displacement, splt->contents + 28);
5e681ec4 17352#else
00a97672 17353 bfd_put_32 (output_bfd, got_displacement, splt->contents + 16);
5e681ec4 17354#endif
00a97672 17355 }
f7a74f8c 17356 }
252b5132
RH
17357
17358 /* UnixWare sets the entsize of .plt to 4, although that doesn't
17359 really seem like the right value. */
74541ad4
AM
17360 if (splt->output_section->owner == output_bfd)
17361 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
00a97672 17362
9bcc30e4 17363 if (htab->root.tlsdesc_plt)
0855e32b
NS
17364 {
17365 bfd_vma got_address
17366 = sgot->output_section->vma + sgot->output_offset;
17367 bfd_vma gotplt_address = (htab->root.sgot->output_section->vma
17368 + htab->root.sgot->output_offset);
17369 bfd_vma plt_address
17370 = splt->output_section->vma + splt->output_offset;
17371
b38cadfb 17372 arm_put_trampoline (htab, output_bfd,
9bcc30e4 17373 splt->contents + htab->root.tlsdesc_plt,
0855e32b
NS
17374 dl_tlsdesc_lazy_trampoline, 6);
17375
17376 bfd_put_32 (output_bfd,
9bcc30e4
L
17377 gotplt_address + htab->root.tlsdesc_got
17378 - (plt_address + htab->root.tlsdesc_plt)
0855e32b 17379 - dl_tlsdesc_lazy_trampoline[6],
9bcc30e4 17380 splt->contents + htab->root.tlsdesc_plt + 24);
0855e32b 17381 bfd_put_32 (output_bfd,
9bcc30e4 17382 got_address - (plt_address + htab->root.tlsdesc_plt)
0855e32b 17383 - dl_tlsdesc_lazy_trampoline[7],
9bcc30e4 17384 splt->contents + htab->root.tlsdesc_plt + 24 + 4);
0855e32b
NS
17385 }
17386
17387 if (htab->tls_trampoline)
17388 {
b38cadfb 17389 arm_put_trampoline (htab, output_bfd,
0855e32b
NS
17390 splt->contents + htab->tls_trampoline,
17391 tls_trampoline, 3);
17392#ifdef FOUR_WORD_PLT
17393 bfd_put_32 (output_bfd, 0x00000000,
17394 splt->contents + htab->tls_trampoline + 12);
b38cadfb 17395#endif
0855e32b
NS
17396 }
17397
90c14f0c 17398 if (htab->root.target_os == is_vxworks
0e1862bb
L
17399 && !bfd_link_pic (info)
17400 && htab->root.splt->size > 0)
00a97672
RS
17401 {
17402 /* Correct the .rel(a).plt.unloaded relocations. They will have
17403 incorrect symbol indexes. */
17404 int num_plts;
eed62c48 17405 unsigned char *p;
00a97672 17406
362d30a1 17407 num_plts = ((htab->root.splt->size - htab->plt_header_size)
00a97672
RS
17408 / htab->plt_entry_size);
17409 p = htab->srelplt2->contents + RELOC_SIZE (htab);
17410
17411 for (; num_plts; num_plts--)
17412 {
17413 Elf_Internal_Rela rel;
17414
17415 SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17416 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17417 SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17418 p += RELOC_SIZE (htab);
17419
17420 SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17421 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
17422 SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17423 p += RELOC_SIZE (htab);
17424 }
17425 }
252b5132
RH
17426 }
17427
90c14f0c
L
17428 if (htab->root.target_os == is_nacl
17429 && htab->root.iplt != NULL
17430 && htab->root.iplt->size > 0)
99059e56
RM
17431 /* NaCl uses a special first entry in .iplt too. */
17432 arm_nacl_put_plt0 (htab, output_bfd, htab->root.iplt, 0);
17433
252b5132 17434 /* Fill in the first three entries in the global offset table. */
229fcec5 17435 if (sgot)
252b5132 17436 {
229fcec5
MM
17437 if (sgot->size > 0)
17438 {
17439 if (sdyn == NULL)
17440 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
17441 else
17442 bfd_put_32 (output_bfd,
17443 sdyn->output_section->vma + sdyn->output_offset,
17444 sgot->contents);
17445 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
17446 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
17447 }
252b5132 17448
229fcec5
MM
17449 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
17450 }
252b5132 17451
e8b09b87
CL
17452 /* At the very end of the .rofixup section is a pointer to the GOT. */
17453 if (htab->fdpic_p && htab->srofixup != NULL)
17454 {
17455 struct elf_link_hash_entry *hgot = htab->root.hgot;
17456
17457 bfd_vma got_value = hgot->root.u.def.value
17458 + hgot->root.u.def.section->output_section->vma
17459 + hgot->root.u.def.section->output_offset;
17460
17461 arm_elf_add_rofixup(output_bfd, htab->srofixup, got_value);
17462
17463 /* Make sure we allocated and generated the same number of fixups. */
17464 BFD_ASSERT (htab->srofixup->reloc_count * 4 == htab->srofixup->size);
17465 }
17466
0a1b45a2 17467 return true;
252b5132
RH
17468}
17469
0a1b45a2 17470static bool
ed7e9d0b 17471elf32_arm_init_file_header (bfd *abfd, struct bfd_link_info *link_info)
ba96a88f 17472{
9b485d32 17473 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
e489d0ae 17474 struct elf32_arm_link_hash_table *globals;
ac4c9b04 17475 struct elf_segment_map *m;
ba96a88f 17476
ed7e9d0b 17477 if (!_bfd_elf_init_file_header (abfd, link_info))
0a1b45a2 17478 return false;
ed7e9d0b 17479
ba96a88f
NC
17480 i_ehdrp = elf_elfheader (abfd);
17481
94a3258f
PB
17482 if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_UNKNOWN)
17483 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_ARM;
ba96a88f 17484 i_ehdrp->e_ident[EI_ABIVERSION] = ARM_ELF_ABI_VERSION;
e489d0ae 17485
93204d3a
PB
17486 if (link_info)
17487 {
17488 globals = elf32_arm_hash_table (link_info);
4dfe6ac6 17489 if (globals != NULL && globals->byteswap_code)
93204d3a 17490 i_ehdrp->e_flags |= EF_ARM_BE8;
18a20338
CL
17491
17492 if (globals->fdpic_p)
17493 i_ehdrp->e_ident[EI_OSABI] |= ELFOSABI_ARM_FDPIC;
93204d3a 17494 }
3bfcb652
NC
17495
17496 if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_VER5
17497 && ((i_ehdrp->e_type == ET_DYN) || (i_ehdrp->e_type == ET_EXEC)))
17498 {
17499 int abi = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_ABI_VFP_args);
5c294fee 17500 if (abi == AEABI_VFP_args_vfp)
3bfcb652
NC
17501 i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_HARD;
17502 else
17503 i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_SOFT;
17504 }
ac4c9b04
MG
17505
17506 /* Scan segment to set p_flags attribute if it contains only sections with
f0728ee3 17507 SHF_ARM_PURECODE flag. */
ac4c9b04
MG
17508 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
17509 {
17510 unsigned int j;
17511
17512 if (m->count == 0)
17513 continue;
17514 for (j = 0; j < m->count; j++)
17515 {
f0728ee3 17516 if (!(elf_section_flags (m->sections[j]) & SHF_ARM_PURECODE))
ac4c9b04
MG
17517 break;
17518 }
17519 if (j == m->count)
17520 {
17521 m->p_flags = PF_X;
17522 m->p_flags_valid = 1;
17523 }
17524 }
0a1b45a2 17525 return true;
ba96a88f
NC
17526}
17527
99e4ae17 17528static enum elf_reloc_type_class
7e612e98
AM
17529elf32_arm_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
17530 const asection *rel_sec ATTRIBUTE_UNUSED,
17531 const Elf_Internal_Rela *rela)
99e4ae17 17532{
f51e552e 17533 switch ((int) ELF32_R_TYPE (rela->r_info))
99e4ae17
AJ
17534 {
17535 case R_ARM_RELATIVE:
17536 return reloc_class_relative;
17537 case R_ARM_JUMP_SLOT:
17538 return reloc_class_plt;
17539 case R_ARM_COPY:
17540 return reloc_class_copy;
109575d7
JW
17541 case R_ARM_IRELATIVE:
17542 return reloc_class_ifunc;
99e4ae17
AJ
17543 default:
17544 return reloc_class_normal;
17545 }
17546}
17547
e489d0ae 17548static void
cc364be6 17549arm_final_write_processing (bfd *abfd)
e16bb312 17550{
5a6c6817 17551 bfd_arm_update_notes (abfd, ARM_NOTE_SECTION);
e16bb312
NC
17552}
17553
0a1b45a2 17554static bool
cc364be6 17555elf32_arm_final_write_processing (bfd *abfd)
06f44071 17556{
cc364be6
AM
17557 arm_final_write_processing (abfd);
17558 return _bfd_elf_final_write_processing (abfd);
06f44071
AM
17559}
17560
40a18ebd
NC
17561/* Return TRUE if this is an unwinding table entry. */
17562
0a1b45a2 17563static bool
40a18ebd
NC
17564is_arm_elf_unwind_section_name (bfd * abfd ATTRIBUTE_UNUSED, const char * name)
17565{
08dedd66
ML
17566 return (startswith (name, ELF_STRING_ARM_unwind)
17567 || startswith (name, ELF_STRING_ARM_unwind_once));
40a18ebd
NC
17568}
17569
17570
17571/* Set the type and flags for an ARM section. We do this by
17572 the section name, which is a hack, but ought to work. */
17573
0a1b45a2 17574static bool
40a18ebd
NC
17575elf32_arm_fake_sections (bfd * abfd, Elf_Internal_Shdr * hdr, asection * sec)
17576{
17577 const char * name;
17578
fd361982 17579 name = bfd_section_name (sec);
40a18ebd
NC
17580
17581 if (is_arm_elf_unwind_section_name (abfd, name))
17582 {
17583 hdr->sh_type = SHT_ARM_EXIDX;
17584 hdr->sh_flags |= SHF_LINK_ORDER;
17585 }
ac4c9b04 17586
f0728ee3
AV
17587 if (sec->flags & SEC_ELF_PURECODE)
17588 hdr->sh_flags |= SHF_ARM_PURECODE;
ac4c9b04 17589
0a1b45a2 17590 return true;
40a18ebd
NC
17591}
17592
6dc132d9
L
17593/* Handle an ARM specific section when reading an object file. This is
17594 called when bfd_section_from_shdr finds a section with an unknown
17595 type. */
40a18ebd 17596
0a1b45a2 17597static bool
40a18ebd
NC
17598elf32_arm_section_from_shdr (bfd *abfd,
17599 Elf_Internal_Shdr * hdr,
6dc132d9
L
17600 const char *name,
17601 int shindex)
40a18ebd
NC
17602{
17603 /* There ought to be a place to keep ELF backend specific flags, but
17604 at the moment there isn't one. We just keep track of the
17605 sections by their name, instead. Fortunately, the ABI gives
17606 names for all the ARM specific sections, so we will probably get
17607 away with this. */
17608 switch (hdr->sh_type)
17609 {
17610 case SHT_ARM_EXIDX:
0951f019
RE
17611 case SHT_ARM_PREEMPTMAP:
17612 case SHT_ARM_ATTRIBUTES:
40a18ebd
NC
17613 break;
17614
17615 default:
0a1b45a2 17616 return false;
40a18ebd
NC
17617 }
17618
6dc132d9 17619 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
0a1b45a2 17620 return false;
40a18ebd 17621
0a1b45a2 17622 return true;
40a18ebd 17623}
e489d0ae 17624
44444f50
NC
17625static _arm_elf_section_data *
17626get_arm_elf_section_data (asection * sec)
17627{
47b2e99c
JZ
17628 if (sec && sec->owner && is_arm_elf (sec->owner))
17629 return elf32_arm_section_data (sec);
44444f50
NC
17630 else
17631 return NULL;
8e3de13a
NC
17632}
17633
4e617b1e
PB
17634typedef struct
17635{
57402f1e 17636 void *flaginfo;
4e617b1e 17637 struct bfd_link_info *info;
91a5743d
PB
17638 asection *sec;
17639 int sec_shndx;
6e0b88f1
AM
17640 int (*func) (void *, const char *, Elf_Internal_Sym *,
17641 asection *, struct elf_link_hash_entry *);
4e617b1e
PB
17642} output_arch_syminfo;
17643
17644enum map_symbol_type
17645{
17646 ARM_MAP_ARM,
17647 ARM_MAP_THUMB,
17648 ARM_MAP_DATA
17649};
17650
17651
7413f23f 17652/* Output a single mapping symbol. */
4e617b1e 17653
0a1b45a2 17654static bool
7413f23f
DJ
17655elf32_arm_output_map_sym (output_arch_syminfo *osi,
17656 enum map_symbol_type type,
17657 bfd_vma offset)
4e617b1e
PB
17658{
17659 static const char *names[3] = {"$a", "$t", "$d"};
4e617b1e
PB
17660 Elf_Internal_Sym sym;
17661
91a5743d
PB
17662 sym.st_value = osi->sec->output_section->vma
17663 + osi->sec->output_offset
17664 + offset;
4e617b1e
PB
17665 sym.st_size = 0;
17666 sym.st_other = 0;
17667 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
91a5743d 17668 sym.st_shndx = osi->sec_shndx;
35fc36a8 17669 sym.st_target_internal = 0;
fe33d2fa 17670 elf32_arm_section_map_add (osi->sec, names[type][1], offset);
57402f1e 17671 return osi->func (osi->flaginfo, names[type], &sym, osi->sec, NULL) == 1;
4e617b1e
PB
17672}
17673
34e77a92
RS
17674/* Output mapping symbols for the PLT entry described by ROOT_PLT and ARM_PLT.
17675 IS_IPLT_ENTRY_P says whether the PLT is in .iplt rather than .plt. */
4e617b1e 17676
0a1b45a2 17677static bool
34e77a92 17678elf32_arm_output_plt_map_1 (output_arch_syminfo *osi,
0a1b45a2 17679 bool is_iplt_entry_p,
34e77a92
RS
17680 union gotplt_union *root_plt,
17681 struct arm_plt_info *arm_plt)
4e617b1e 17682{
4e617b1e 17683 struct elf32_arm_link_hash_table *htab;
34e77a92 17684 bfd_vma addr, plt_header_size;
4e617b1e 17685
34e77a92 17686 if (root_plt->offset == (bfd_vma) -1)
0a1b45a2 17687 return true;
4e617b1e 17688
4dfe6ac6
NC
17689 htab = elf32_arm_hash_table (osi->info);
17690 if (htab == NULL)
0a1b45a2 17691 return false;
4dfe6ac6 17692
34e77a92
RS
17693 if (is_iplt_entry_p)
17694 {
17695 osi->sec = htab->root.iplt;
17696 plt_header_size = 0;
17697 }
17698 else
17699 {
17700 osi->sec = htab->root.splt;
17701 plt_header_size = htab->plt_header_size;
17702 }
17703 osi->sec_shndx = (_bfd_elf_section_from_bfd_section
17704 (osi->info->output_bfd, osi->sec->output_section));
17705
17706 addr = root_plt->offset & -2;
a57d1773 17707 if (htab->root.target_os == is_vxworks)
4e617b1e 17708 {
7413f23f 17709 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
0a1b45a2 17710 return false;
7413f23f 17711 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 8))
0a1b45a2 17712 return false;
7413f23f 17713 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr + 12))
0a1b45a2 17714 return false;
7413f23f 17715 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 20))
0a1b45a2 17716 return false;
4e617b1e 17717 }
90c14f0c 17718 else if (htab->root.target_os == is_nacl)
b38cadfb
NC
17719 {
17720 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
0a1b45a2 17721 return false;
b38cadfb 17722 }
7801f98f
CL
17723 else if (htab->fdpic_p)
17724 {
59029f57
CL
17725 enum map_symbol_type type = using_thumb_only(htab)
17726 ? ARM_MAP_THUMB
17727 : ARM_MAP_ARM;
17728
7801f98f 17729 if (elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt))
4b24dd1a 17730 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
0a1b45a2 17731 return false;
59029f57 17732 if (!elf32_arm_output_map_sym (osi, type, addr))
0a1b45a2 17733 return false;
7801f98f 17734 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 16))
0a1b45a2 17735 return false;
7801f98f 17736 if (htab->plt_entry_size == 4 * ARRAY_SIZE(elf32_arm_fdpic_plt_entry))
4b24dd1a 17737 if (!elf32_arm_output_map_sym (osi, type, addr + 24))
0a1b45a2 17738 return false;
7801f98f 17739 }
eed94f8f
NC
17740 else if (using_thumb_only (htab))
17741 {
17742 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr))
0a1b45a2 17743 return false;
6a631e86 17744 }
4e617b1e
PB
17745 else
17746 {
0a1b45a2 17747 bool thumb_stub_p;
bd97cb95 17748
34e77a92
RS
17749 thumb_stub_p = elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt);
17750 if (thumb_stub_p)
4e617b1e 17751 {
7413f23f 17752 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
0a1b45a2 17753 return false;
4e617b1e
PB
17754 }
17755#ifdef FOUR_WORD_PLT
7413f23f 17756 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
0a1b45a2 17757 return false;
7413f23f 17758 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 12))
0a1b45a2 17759 return false;
4e617b1e 17760#else
906e58ca 17761 /* A three-word PLT with no Thumb thunk contains only Arm code,
4e617b1e
PB
17762 so only need to output a mapping symbol for the first PLT entry and
17763 entries with thumb thunks. */
34e77a92 17764 if (thumb_stub_p || addr == plt_header_size)
4e617b1e 17765 {
7413f23f 17766 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
0a1b45a2 17767 return false;
4e617b1e
PB
17768 }
17769#endif
17770 }
17771
0a1b45a2 17772 return true;
4e617b1e
PB
17773}
17774
34e77a92
RS
17775/* Output mapping symbols for PLT entries associated with H. */
17776
0a1b45a2 17777static bool
34e77a92
RS
17778elf32_arm_output_plt_map (struct elf_link_hash_entry *h, void *inf)
17779{
17780 output_arch_syminfo *osi = (output_arch_syminfo *) inf;
17781 struct elf32_arm_link_hash_entry *eh;
17782
17783 if (h->root.type == bfd_link_hash_indirect)
0a1b45a2 17784 return true;
34e77a92
RS
17785
17786 if (h->root.type == bfd_link_hash_warning)
17787 /* When warning symbols are created, they **replace** the "real"
17788 entry in the hash table, thus we never get to see the real
17789 symbol in a hash traversal. So look at it now. */
17790 h = (struct elf_link_hash_entry *) h->root.u.i.link;
17791
17792 eh = (struct elf32_arm_link_hash_entry *) h;
17793 return elf32_arm_output_plt_map_1 (osi, SYMBOL_CALLS_LOCAL (osi->info, h),
17794 &h->plt, &eh->plt);
17795}
17796
4f4faa4d
TP
17797/* Bind a veneered symbol to its veneer identified by its hash entry
17798 STUB_ENTRY. The veneered location thus loose its symbol. */
17799
17800static void
17801arm_stub_claim_sym (struct elf32_arm_stub_hash_entry *stub_entry)
17802{
17803 struct elf32_arm_link_hash_entry *hash = stub_entry->h;
17804
17805 BFD_ASSERT (hash);
17806 hash->root.root.u.def.section = stub_entry->stub_sec;
17807 hash->root.root.u.def.value = stub_entry->stub_offset;
17808 hash->root.size = stub_entry->stub_size;
17809}
17810
7413f23f
DJ
17811/* Output a single local symbol for a generated stub. */
17812
0a1b45a2 17813static bool
7413f23f
DJ
17814elf32_arm_output_stub_sym (output_arch_syminfo *osi, const char *name,
17815 bfd_vma offset, bfd_vma size)
17816{
7413f23f
DJ
17817 Elf_Internal_Sym sym;
17818
7413f23f
DJ
17819 sym.st_value = osi->sec->output_section->vma
17820 + osi->sec->output_offset
17821 + offset;
17822 sym.st_size = size;
17823 sym.st_other = 0;
17824 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
17825 sym.st_shndx = osi->sec_shndx;
35fc36a8 17826 sym.st_target_internal = 0;
57402f1e 17827 return osi->func (osi->flaginfo, name, &sym, osi->sec, NULL) == 1;
7413f23f 17828}
4e617b1e 17829
0a1b45a2 17830static bool
8029a119
NC
17831arm_map_one_stub (struct bfd_hash_entry * gen_entry,
17832 void * in_arg)
da5938a2
NC
17833{
17834 struct elf32_arm_stub_hash_entry *stub_entry;
da5938a2
NC
17835 asection *stub_sec;
17836 bfd_vma addr;
7413f23f 17837 char *stub_name;
9a008db3 17838 output_arch_syminfo *osi;
d3ce72d0 17839 const insn_sequence *template_sequence;
461a49ca
DJ
17840 enum stub_insn_type prev_type;
17841 int size;
17842 int i;
17843 enum map_symbol_type sym_type;
da5938a2
NC
17844
17845 /* Massage our args to the form they really have. */
17846 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
9a008db3 17847 osi = (output_arch_syminfo *) in_arg;
da5938a2 17848
da5938a2
NC
17849 stub_sec = stub_entry->stub_sec;
17850
17851 /* Ensure this stub is attached to the current section being
7413f23f 17852 processed. */
da5938a2 17853 if (stub_sec != osi->sec)
0a1b45a2 17854 return true;
da5938a2 17855
7413f23f 17856 addr = (bfd_vma) stub_entry->stub_offset;
d3ce72d0 17857 template_sequence = stub_entry->stub_template;
4f4faa4d
TP
17858
17859 if (arm_stub_sym_claimed (stub_entry->stub_type))
17860 arm_stub_claim_sym (stub_entry);
17861 else
7413f23f 17862 {
4f4faa4d
TP
17863 stub_name = stub_entry->output_name;
17864 switch (template_sequence[0].type)
17865 {
17866 case ARM_TYPE:
17867 if (!elf32_arm_output_stub_sym (osi, stub_name, addr,
17868 stub_entry->stub_size))
0a1b45a2 17869 return false;
4f4faa4d
TP
17870 break;
17871 case THUMB16_TYPE:
17872 case THUMB32_TYPE:
17873 if (!elf32_arm_output_stub_sym (osi, stub_name, addr | 1,
17874 stub_entry->stub_size))
0a1b45a2 17875 return false;
4f4faa4d
TP
17876 break;
17877 default:
17878 BFD_FAIL ();
17879 return 0;
17880 }
7413f23f 17881 }
da5938a2 17882
461a49ca
DJ
17883 prev_type = DATA_TYPE;
17884 size = 0;
17885 for (i = 0; i < stub_entry->stub_template_size; i++)
17886 {
d3ce72d0 17887 switch (template_sequence[i].type)
461a49ca
DJ
17888 {
17889 case ARM_TYPE:
17890 sym_type = ARM_MAP_ARM;
17891 break;
17892
17893 case THUMB16_TYPE:
48229727 17894 case THUMB32_TYPE:
461a49ca
DJ
17895 sym_type = ARM_MAP_THUMB;
17896 break;
17897
17898 case DATA_TYPE:
17899 sym_type = ARM_MAP_DATA;
17900 break;
17901
17902 default:
17903 BFD_FAIL ();
0a1b45a2 17904 return false;
461a49ca
DJ
17905 }
17906
d3ce72d0 17907 if (template_sequence[i].type != prev_type)
461a49ca 17908 {
d3ce72d0 17909 prev_type = template_sequence[i].type;
461a49ca 17910 if (!elf32_arm_output_map_sym (osi, sym_type, addr + size))
0a1b45a2 17911 return false;
461a49ca
DJ
17912 }
17913
d3ce72d0 17914 switch (template_sequence[i].type)
461a49ca
DJ
17915 {
17916 case ARM_TYPE:
48229727 17917 case THUMB32_TYPE:
461a49ca
DJ
17918 size += 4;
17919 break;
17920
17921 case THUMB16_TYPE:
17922 size += 2;
17923 break;
17924
17925 case DATA_TYPE:
17926 size += 4;
17927 break;
17928
17929 default:
17930 BFD_FAIL ();
0a1b45a2 17931 return false;
461a49ca
DJ
17932 }
17933 }
17934
0a1b45a2 17935 return true;
da5938a2
NC
17936}
17937
33811162
DG
17938/* Output mapping symbols for linker generated sections,
17939 and for those data-only sections that do not have a
17940 $d. */
4e617b1e 17941
0a1b45a2 17942static bool
4e617b1e 17943elf32_arm_output_arch_local_syms (bfd *output_bfd,
906e58ca 17944 struct bfd_link_info *info,
57402f1e 17945 void *flaginfo,
6e0b88f1
AM
17946 int (*func) (void *, const char *,
17947 Elf_Internal_Sym *,
17948 asection *,
17949 struct elf_link_hash_entry *))
4e617b1e
PB
17950{
17951 output_arch_syminfo osi;
17952 struct elf32_arm_link_hash_table *htab;
91a5743d
PB
17953 bfd_vma offset;
17954 bfd_size_type size;
33811162 17955 bfd *input_bfd;
4e617b1e
PB
17956
17957 htab = elf32_arm_hash_table (info);
4dfe6ac6 17958 if (htab == NULL)
0a1b45a2 17959 return false;
4dfe6ac6 17960
906e58ca 17961 check_use_blx (htab);
91a5743d 17962
57402f1e 17963 osi.flaginfo = flaginfo;
4e617b1e
PB
17964 osi.info = info;
17965 osi.func = func;
906e58ca 17966
33811162
DG
17967 /* Add a $d mapping symbol to data-only sections that
17968 don't have any mapping symbol. This may result in (harmless) redundant
17969 mapping symbols. */
17970 for (input_bfd = info->input_bfds;
17971 input_bfd != NULL;
c72f2fb2 17972 input_bfd = input_bfd->link.next)
33811162
DG
17973 {
17974 if ((input_bfd->flags & (BFD_LINKER_CREATED | HAS_SYMS)) == HAS_SYMS)
17975 for (osi.sec = input_bfd->sections;
17976 osi.sec != NULL;
17977 osi.sec = osi.sec->next)
17978 {
17979 if (osi.sec->output_section != NULL
f7dd8c79
DJ
17980 && ((osi.sec->output_section->flags & (SEC_ALLOC | SEC_CODE))
17981 != 0)
33811162
DG
17982 && (osi.sec->flags & (SEC_HAS_CONTENTS | SEC_LINKER_CREATED))
17983 == SEC_HAS_CONTENTS
17984 && get_arm_elf_section_data (osi.sec) != NULL
501abfe0 17985 && get_arm_elf_section_data (osi.sec)->mapcount == 0
7d500b83
CL
17986 && osi.sec->size > 0
17987 && (osi.sec->flags & SEC_EXCLUDE) == 0)
33811162
DG
17988 {
17989 osi.sec_shndx = _bfd_elf_section_from_bfd_section
17990 (output_bfd, osi.sec->output_section);
17991 if (osi.sec_shndx != (int)SHN_BAD)
17992 elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 0);
17993 }
17994 }
17995 }
17996
91a5743d
PB
17997 /* ARM->Thumb glue. */
17998 if (htab->arm_glue_size > 0)
17999 {
3d4d4302
AM
18000 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18001 ARM2THUMB_GLUE_SECTION_NAME);
91a5743d
PB
18002
18003 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18004 (output_bfd, osi.sec->output_section);
0e1862bb 18005 if (bfd_link_pic (info) || htab->root.is_relocatable_executable
91a5743d
PB
18006 || htab->pic_veneer)
18007 size = ARM2THUMB_PIC_GLUE_SIZE;
18008 else if (htab->use_blx)
18009 size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
18010 else
18011 size = ARM2THUMB_STATIC_GLUE_SIZE;
4e617b1e 18012
91a5743d
PB
18013 for (offset = 0; offset < htab->arm_glue_size; offset += size)
18014 {
7413f23f
DJ
18015 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset);
18016 elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, offset + size - 4);
91a5743d
PB
18017 }
18018 }
18019
18020 /* Thumb->ARM glue. */
18021 if (htab->thumb_glue_size > 0)
18022 {
3d4d4302
AM
18023 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18024 THUMB2ARM_GLUE_SECTION_NAME);
91a5743d
PB
18025
18026 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18027 (output_bfd, osi.sec->output_section);
18028 size = THUMB2ARM_GLUE_SIZE;
18029
18030 for (offset = 0; offset < htab->thumb_glue_size; offset += size)
18031 {
7413f23f
DJ
18032 elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, offset);
18033 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset + 4);
91a5743d
PB
18034 }
18035 }
18036
845b51d6
PB
18037 /* ARMv4 BX veneers. */
18038 if (htab->bx_glue_size > 0)
18039 {
3d4d4302
AM
18040 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18041 ARM_BX_GLUE_SECTION_NAME);
845b51d6
PB
18042
18043 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18044 (output_bfd, osi.sec->output_section);
18045
7413f23f 18046 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0);
845b51d6
PB
18047 }
18048
8029a119
NC
18049 /* Long calls stubs. */
18050 if (htab->stub_bfd && htab->stub_bfd->sections)
18051 {
da5938a2 18052 asection* stub_sec;
8029a119 18053
da5938a2
NC
18054 for (stub_sec = htab->stub_bfd->sections;
18055 stub_sec != NULL;
8029a119
NC
18056 stub_sec = stub_sec->next)
18057 {
18058 /* Ignore non-stub sections. */
18059 if (!strstr (stub_sec->name, STUB_SUFFIX))
18060 continue;
da5938a2 18061
8029a119 18062 osi.sec = stub_sec;
da5938a2 18063
8029a119
NC
18064 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18065 (output_bfd, osi.sec->output_section);
da5938a2 18066
8029a119
NC
18067 bfd_hash_traverse (&htab->stub_hash_table, arm_map_one_stub, &osi);
18068 }
18069 }
da5938a2 18070
91a5743d 18071 /* Finally, output mapping symbols for the PLT. */
34e77a92 18072 if (htab->root.splt && htab->root.splt->size > 0)
4e617b1e 18073 {
34e77a92
RS
18074 osi.sec = htab->root.splt;
18075 osi.sec_shndx = (_bfd_elf_section_from_bfd_section
18076 (output_bfd, osi.sec->output_section));
18077
a57d1773 18078 /* Output mapping symbols for the plt header. */
90c14f0c 18079 if (htab->root.target_os == is_vxworks)
34e77a92
RS
18080 {
18081 /* VxWorks shared libraries have no PLT header. */
0e1862bb 18082 if (!bfd_link_pic (info))
34e77a92
RS
18083 {
18084 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
0a1b45a2 18085 return false;
34e77a92 18086 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
0a1b45a2 18087 return false;
34e77a92
RS
18088 }
18089 }
90c14f0c 18090 else if (htab->root.target_os == is_nacl)
b38cadfb
NC
18091 {
18092 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
0a1b45a2 18093 return false;
b38cadfb 18094 }
59029f57 18095 else if (using_thumb_only (htab) && !htab->fdpic_p)
eed94f8f
NC
18096 {
18097 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 0))
0a1b45a2 18098 return false;
eed94f8f 18099 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
0a1b45a2 18100 return false;
eed94f8f 18101 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 16))
0a1b45a2 18102 return false;
eed94f8f 18103 }
a57d1773 18104 else if (!htab->fdpic_p)
4e617b1e 18105 {
7413f23f 18106 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
0a1b45a2 18107 return false;
34e77a92
RS
18108#ifndef FOUR_WORD_PLT
18109 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 16))
0a1b45a2 18110 return false;
34e77a92 18111#endif
4e617b1e
PB
18112 }
18113 }
90c14f0c
L
18114 if (htab->root.target_os == is_nacl
18115 && htab->root.iplt
18116 && htab->root.iplt->size > 0)
99059e56
RM
18117 {
18118 /* NaCl uses a special first entry in .iplt too. */
18119 osi.sec = htab->root.iplt;
18120 osi.sec_shndx = (_bfd_elf_section_from_bfd_section
18121 (output_bfd, osi.sec->output_section));
18122 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
0a1b45a2 18123 return false;
99059e56 18124 }
34e77a92
RS
18125 if ((htab->root.splt && htab->root.splt->size > 0)
18126 || (htab->root.iplt && htab->root.iplt->size > 0))
4e617b1e 18127 {
34e77a92
RS
18128 elf_link_hash_traverse (&htab->root, elf32_arm_output_plt_map, &osi);
18129 for (input_bfd = info->input_bfds;
18130 input_bfd != NULL;
c72f2fb2 18131 input_bfd = input_bfd->link.next)
34e77a92
RS
18132 {
18133 struct arm_local_iplt_info **local_iplt;
18134 unsigned int i, num_syms;
4e617b1e 18135
34e77a92
RS
18136 local_iplt = elf32_arm_local_iplt (input_bfd);
18137 if (local_iplt != NULL)
18138 {
18139 num_syms = elf_symtab_hdr (input_bfd).sh_info;
18140 for (i = 0; i < num_syms; i++)
18141 if (local_iplt[i] != NULL
0a1b45a2 18142 && !elf32_arm_output_plt_map_1 (&osi, true,
34e77a92
RS
18143 &local_iplt[i]->root,
18144 &local_iplt[i]->arm))
0a1b45a2 18145 return false;
34e77a92
RS
18146 }
18147 }
18148 }
9bcc30e4 18149 if (htab->root.tlsdesc_plt != 0)
0855e32b
NS
18150 {
18151 /* Mapping symbols for the lazy tls trampoline. */
9bcc30e4
L
18152 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM,
18153 htab->root.tlsdesc_plt))
0a1b45a2 18154 return false;
b38cadfb 18155
0855e32b 18156 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
9bcc30e4 18157 htab->root.tlsdesc_plt + 24))
0a1b45a2 18158 return false;
0855e32b
NS
18159 }
18160 if (htab->tls_trampoline != 0)
18161 {
18162 /* Mapping symbols for the tls trampoline. */
18163 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, htab->tls_trampoline))
0a1b45a2 18164 return false;
0855e32b
NS
18165#ifdef FOUR_WORD_PLT
18166 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
18167 htab->tls_trampoline + 12))
0a1b45a2 18168 return false;
b38cadfb 18169#endif
0855e32b 18170 }
b38cadfb 18171
0a1b45a2 18172 return true;
4e617b1e
PB
18173}
18174
54ddd295
TP
18175/* Filter normal symbols of CMSE entry functions of ABFD to include in
18176 the import library. All SYMCOUNT symbols of ABFD can be examined
18177 from their pointers in SYMS. Pointers of symbols to keep should be
18178 stored continuously at the beginning of that array.
18179
18180 Returns the number of symbols to keep. */
18181
18182static unsigned int
18183elf32_arm_filter_cmse_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18184 struct bfd_link_info *info,
18185 asymbol **syms, long symcount)
18186{
18187 size_t maxnamelen;
18188 char *cmse_name;
18189 long src_count, dst_count = 0;
18190 struct elf32_arm_link_hash_table *htab;
18191
18192 htab = elf32_arm_hash_table (info);
18193 if (!htab->stub_bfd || !htab->stub_bfd->sections)
18194 symcount = 0;
18195
18196 maxnamelen = 128;
18197 cmse_name = (char *) bfd_malloc (maxnamelen);
7a0fb7be
NC
18198 BFD_ASSERT (cmse_name);
18199
54ddd295
TP
18200 for (src_count = 0; src_count < symcount; src_count++)
18201 {
18202 struct elf32_arm_link_hash_entry *cmse_hash;
18203 asymbol *sym;
18204 flagword flags;
18205 char *name;
18206 size_t namelen;
18207
18208 sym = syms[src_count];
18209 flags = sym->flags;
18210 name = (char *) bfd_asymbol_name (sym);
18211
18212 if ((flags & BSF_FUNCTION) != BSF_FUNCTION)
18213 continue;
18214 if (!(flags & (BSF_GLOBAL | BSF_WEAK)))
18215 continue;
18216
18217 namelen = strlen (name) + sizeof (CMSE_PREFIX) + 1;
18218 if (namelen > maxnamelen)
18219 {
18220 cmse_name = (char *)
18221 bfd_realloc (cmse_name, namelen);
18222 maxnamelen = namelen;
18223 }
18224 snprintf (cmse_name, maxnamelen, "%s%s", CMSE_PREFIX, name);
18225 cmse_hash = (struct elf32_arm_link_hash_entry *)
0a1b45a2 18226 elf_link_hash_lookup (&(htab)->root, cmse_name, false, false, true);
54ddd295
TP
18227
18228 if (!cmse_hash
18229 || (cmse_hash->root.root.type != bfd_link_hash_defined
18230 && cmse_hash->root.root.type != bfd_link_hash_defweak)
18231 || cmse_hash->root.type != STT_FUNC)
18232 continue;
18233
54ddd295
TP
18234 syms[dst_count++] = sym;
18235 }
18236 free (cmse_name);
18237
18238 syms[dst_count] = NULL;
18239
18240 return dst_count;
18241}
18242
18243/* Filter symbols of ABFD to include in the import library. All
18244 SYMCOUNT symbols of ABFD can be examined from their pointers in
18245 SYMS. Pointers of symbols to keep should be stored continuously at
18246 the beginning of that array.
18247
18248 Returns the number of symbols to keep. */
18249
18250static unsigned int
18251elf32_arm_filter_implib_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18252 struct bfd_link_info *info,
18253 asymbol **syms, long symcount)
18254{
18255 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
18256
046734ff
TP
18257 /* Requirement 8 of "ARM v8-M Security Extensions: Requirements on
18258 Development Tools" (ARM-ECM-0359818) mandates Secure Gateway import
18259 library to be a relocatable object file. */
18260 BFD_ASSERT (!(bfd_get_file_flags (info->out_implib_bfd) & EXEC_P));
54ddd295
TP
18261 if (globals->cmse_implib)
18262 return elf32_arm_filter_cmse_symbols (abfd, info, syms, symcount);
18263 else
18264 return _bfd_elf_filter_global_symbols (abfd, info, syms, symcount);
18265}
18266
e489d0ae
PB
18267/* Allocate target specific section data. */
18268
0a1b45a2 18269static bool
e489d0ae
PB
18270elf32_arm_new_section_hook (bfd *abfd, asection *sec)
18271{
f592407e
AM
18272 if (!sec->used_by_bfd)
18273 {
18274 _arm_elf_section_data *sdata;
986f0783 18275 size_t amt = sizeof (*sdata);
e489d0ae 18276
21d799b5 18277 sdata = (_arm_elf_section_data *) bfd_zalloc (abfd, amt);
f592407e 18278 if (sdata == NULL)
0a1b45a2 18279 return false;
f592407e
AM
18280 sec->used_by_bfd = sdata;
18281 }
e489d0ae
PB
18282
18283 return _bfd_elf_new_section_hook (abfd, sec);
18284}
18285
18286
18287/* Used to order a list of mapping symbols by address. */
18288
18289static int
18290elf32_arm_compare_mapping (const void * a, const void * b)
18291{
7f6a71ff
JM
18292 const elf32_arm_section_map *amap = (const elf32_arm_section_map *) a;
18293 const elf32_arm_section_map *bmap = (const elf32_arm_section_map *) b;
18294
18295 if (amap->vma > bmap->vma)
18296 return 1;
18297 else if (amap->vma < bmap->vma)
18298 return -1;
18299 else if (amap->type > bmap->type)
18300 /* Ensure results do not depend on the host qsort for objects with
18301 multiple mapping symbols at the same address by sorting on type
18302 after vma. */
18303 return 1;
18304 else if (amap->type < bmap->type)
18305 return -1;
18306 else
18307 return 0;
e489d0ae
PB
18308}
18309
2468f9c9
PB
18310/* Add OFFSET to lower 31 bits of ADDR, leaving other bits unmodified. */
18311
18312static unsigned long
18313offset_prel31 (unsigned long addr, bfd_vma offset)
18314{
18315 return (addr & ~0x7ffffffful) | ((addr + offset) & 0x7ffffffful);
18316}
18317
18318/* Copy an .ARM.exidx table entry, adding OFFSET to (applied) PREL31
18319 relocations. */
18320
18321static void
18322copy_exidx_entry (bfd *output_bfd, bfd_byte *to, bfd_byte *from, bfd_vma offset)
18323{
18324 unsigned long first_word = bfd_get_32 (output_bfd, from);
18325 unsigned long second_word = bfd_get_32 (output_bfd, from + 4);
b38cadfb 18326
2468f9c9
PB
18327 /* High bit of first word is supposed to be zero. */
18328 if ((first_word & 0x80000000ul) == 0)
18329 first_word = offset_prel31 (first_word, offset);
b38cadfb 18330
2468f9c9
PB
18331 /* If the high bit of the first word is clear, and the bit pattern is not 0x1
18332 (EXIDX_CANTUNWIND), this is an offset to an .ARM.extab entry. */
18333 if ((second_word != 0x1) && ((second_word & 0x80000000ul) == 0))
18334 second_word = offset_prel31 (second_word, offset);
b38cadfb 18335
2468f9c9
PB
18336 bfd_put_32 (output_bfd, first_word, to);
18337 bfd_put_32 (output_bfd, second_word, to + 4);
18338}
e489d0ae 18339
48229727
JB
18340/* Data for make_branch_to_a8_stub(). */
18341
b38cadfb
NC
18342struct a8_branch_to_stub_data
18343{
48229727
JB
18344 asection *writing_section;
18345 bfd_byte *contents;
18346};
18347
18348
18349/* Helper to insert branches to Cortex-A8 erratum stubs in the right
18350 places for a particular section. */
18351
0a1b45a2 18352static bool
48229727 18353make_branch_to_a8_stub (struct bfd_hash_entry *gen_entry,
99059e56 18354 void *in_arg)
48229727
JB
18355{
18356 struct elf32_arm_stub_hash_entry *stub_entry;
18357 struct a8_branch_to_stub_data *data;
18358 bfd_byte *contents;
18359 unsigned long branch_insn;
18360 bfd_vma veneered_insn_loc, veneer_entry_loc;
18361 bfd_signed_vma branch_offset;
18362 bfd *abfd;
8d9d9490 18363 unsigned int loc;
48229727
JB
18364
18365 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
18366 data = (struct a8_branch_to_stub_data *) in_arg;
18367
18368 if (stub_entry->target_section != data->writing_section
4563a860 18369 || stub_entry->stub_type < arm_stub_a8_veneer_lwm)
0a1b45a2 18370 return true;
48229727
JB
18371
18372 contents = data->contents;
18373
8d9d9490
TP
18374 /* We use target_section as Cortex-A8 erratum workaround stubs are only
18375 generated when both source and target are in the same section. */
48229727
JB
18376 veneered_insn_loc = stub_entry->target_section->output_section->vma
18377 + stub_entry->target_section->output_offset
8d9d9490 18378 + stub_entry->source_value;
48229727
JB
18379
18380 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
18381 + stub_entry->stub_sec->output_offset
18382 + stub_entry->stub_offset;
18383
18384 if (stub_entry->stub_type == arm_stub_a8_veneer_blx)
18385 veneered_insn_loc &= ~3u;
18386
18387 branch_offset = veneer_entry_loc - veneered_insn_loc - 4;
18388
18389 abfd = stub_entry->target_section->owner;
8d9d9490 18390 loc = stub_entry->source_value;
48229727
JB
18391
18392 /* We attempt to avoid this condition by setting stubs_always_after_branch
18393 in elf32_arm_size_stubs if we've enabled the Cortex-A8 erratum workaround.
18394 This check is just to be on the safe side... */
18395 if ((veneered_insn_loc & ~0xfff) == (veneer_entry_loc & ~0xfff))
18396 {
871b3ab2 18397 _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub is "
4eca0228 18398 "allocated in unsafe location"), abfd);
0a1b45a2 18399 return false;
48229727
JB
18400 }
18401
18402 switch (stub_entry->stub_type)
18403 {
18404 case arm_stub_a8_veneer_b:
18405 case arm_stub_a8_veneer_b_cond:
18406 branch_insn = 0xf0009000;
18407 goto jump24;
18408
18409 case arm_stub_a8_veneer_blx:
18410 branch_insn = 0xf000e800;
18411 goto jump24;
18412
18413 case arm_stub_a8_veneer_bl:
18414 {
18415 unsigned int i1, j1, i2, j2, s;
18416
18417 branch_insn = 0xf000d000;
18418
18419 jump24:
18420 if (branch_offset < -16777216 || branch_offset > 16777214)
18421 {
18422 /* There's not much we can do apart from complain if this
18423 happens. */
871b3ab2 18424 _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub out "
4eca0228 18425 "of range (input file too large)"), abfd);
0a1b45a2 18426 return false;
48229727
JB
18427 }
18428
18429 /* i1 = not(j1 eor s), so:
18430 not i1 = j1 eor s
18431 j1 = (not i1) eor s. */
18432
18433 branch_insn |= (branch_offset >> 1) & 0x7ff;
18434 branch_insn |= ((branch_offset >> 12) & 0x3ff) << 16;
18435 i2 = (branch_offset >> 22) & 1;
18436 i1 = (branch_offset >> 23) & 1;
18437 s = (branch_offset >> 24) & 1;
18438 j1 = (!i1) ^ s;
18439 j2 = (!i2) ^ s;
18440 branch_insn |= j2 << 11;
18441 branch_insn |= j1 << 13;
18442 branch_insn |= s << 26;
18443 }
18444 break;
18445
18446 default:
18447 BFD_FAIL ();
0a1b45a2 18448 return false;
48229727
JB
18449 }
18450
8d9d9490
TP
18451 bfd_put_16 (abfd, (branch_insn >> 16) & 0xffff, &contents[loc]);
18452 bfd_put_16 (abfd, branch_insn & 0xffff, &contents[loc + 2]);
48229727 18453
0a1b45a2 18454 return true;
48229727
JB
18455}
18456
a504d23a
LA
18457/* Beginning of stm32l4xx work-around. */
18458
18459/* Functions encoding instructions necessary for the emission of the
18460 fix-stm32l4xx-629360.
18461 Encoding is extracted from the
18462 ARM (C) Architecture Reference Manual
18463 ARMv7-A and ARMv7-R edition
18464 ARM DDI 0406C.b (ID072512). */
18465
18466static inline bfd_vma
82188b29 18467create_instruction_branch_absolute (int branch_offset)
a504d23a
LA
18468{
18469 /* A8.8.18 B (A8-334)
18470 B target_address (Encoding T4). */
18471 /* 1111 - 0Sii - iiii - iiii - 10J1 - Jiii - iiii - iiii. */
18472 /* jump offset is: S:I1:I2:imm10:imm11:0. */
18473 /* with : I1 = NOT (J1 EOR S) I2 = NOT (J2 EOR S). */
18474
a504d23a
LA
18475 int s = ((branch_offset & 0x1000000) >> 24);
18476 int j1 = s ^ !((branch_offset & 0x800000) >> 23);
18477 int j2 = s ^ !((branch_offset & 0x400000) >> 22);
18478
18479 if (branch_offset < -(1 << 24) || branch_offset >= (1 << 24))
18480 BFD_ASSERT (0 && "Error: branch out of range. Cannot create branch.");
18481
18482 bfd_vma patched_inst = 0xf0009000
18483 | s << 26 /* S. */
18484 | (((unsigned long) (branch_offset) >> 12) & 0x3ff) << 16 /* imm10. */
18485 | j1 << 13 /* J1. */
18486 | j2 << 11 /* J2. */
18487 | (((unsigned long) (branch_offset) >> 1) & 0x7ff); /* imm11. */
18488
18489 return patched_inst;
18490}
18491
18492static inline bfd_vma
18493create_instruction_ldmia (int base_reg, int wback, int reg_mask)
18494{
18495 /* A8.8.57 LDM/LDMIA/LDMFD (A8-396)
18496 LDMIA Rn!, {Ra, Rb, Rc, ...} (Encoding T2). */
18497 bfd_vma patched_inst = 0xe8900000
18498 | (/*W=*/wback << 21)
18499 | (base_reg << 16)
18500 | (reg_mask & 0x0000ffff);
18501
18502 return patched_inst;
18503}
18504
18505static inline bfd_vma
18506create_instruction_ldmdb (int base_reg, int wback, int reg_mask)
18507{
18508 /* A8.8.60 LDMDB/LDMEA (A8-402)
18509 LDMDB Rn!, {Ra, Rb, Rc, ...} (Encoding T1). */
18510 bfd_vma patched_inst = 0xe9100000
18511 | (/*W=*/wback << 21)
18512 | (base_reg << 16)
18513 | (reg_mask & 0x0000ffff);
18514
18515 return patched_inst;
18516}
18517
18518static inline bfd_vma
18519create_instruction_mov (int target_reg, int source_reg)
18520{
18521 /* A8.8.103 MOV (register) (A8-486)
18522 MOV Rd, Rm (Encoding T1). */
18523 bfd_vma patched_inst = 0x4600
18524 | (target_reg & 0x7)
18525 | ((target_reg & 0x8) >> 3) << 7
18526 | (source_reg << 3);
18527
18528 return patched_inst;
18529}
18530
18531static inline bfd_vma
18532create_instruction_sub (int target_reg, int source_reg, int value)
18533{
18534 /* A8.8.221 SUB (immediate) (A8-708)
18535 SUB Rd, Rn, #value (Encoding T3). */
18536 bfd_vma patched_inst = 0xf1a00000
18537 | (target_reg << 8)
18538 | (source_reg << 16)
18539 | (/*S=*/0 << 20)
18540 | ((value & 0x800) >> 11) << 26
18541 | ((value & 0x700) >> 8) << 12
18542 | (value & 0x0ff);
18543
18544 return patched_inst;
18545}
18546
18547static inline bfd_vma
9239bbd3 18548create_instruction_vldmia (int base_reg, int is_dp, int wback, int num_words,
a504d23a
LA
18549 int first_reg)
18550{
18551 /* A8.8.332 VLDM (A8-922)
9239bbd3
CM
18552 VLMD{MODE} Rn{!}, {list} (Encoding T1 or T2). */
18553 bfd_vma patched_inst = (is_dp ? 0xec900b00 : 0xec900a00)
a504d23a
LA
18554 | (/*W=*/wback << 21)
18555 | (base_reg << 16)
9239bbd3
CM
18556 | (num_words & 0x000000ff)
18557 | (((unsigned)first_reg >> 1) & 0x0000000f) << 12
a504d23a
LA
18558 | (first_reg & 0x00000001) << 22;
18559
18560 return patched_inst;
18561}
18562
18563static inline bfd_vma
9239bbd3
CM
18564create_instruction_vldmdb (int base_reg, int is_dp, int num_words,
18565 int first_reg)
a504d23a
LA
18566{
18567 /* A8.8.332 VLDM (A8-922)
9239bbd3
CM
18568 VLMD{MODE} Rn!, {} (Encoding T1 or T2). */
18569 bfd_vma patched_inst = (is_dp ? 0xed300b00 : 0xed300a00)
a504d23a 18570 | (base_reg << 16)
9239bbd3
CM
18571 | (num_words & 0x000000ff)
18572 | (((unsigned)first_reg >>1 ) & 0x0000000f) << 12
a504d23a
LA
18573 | (first_reg & 0x00000001) << 22;
18574
18575 return patched_inst;
18576}
18577
18578static inline bfd_vma
18579create_instruction_udf_w (int value)
18580{
18581 /* A8.8.247 UDF (A8-758)
18582 Undefined (Encoding T2). */
18583 bfd_vma patched_inst = 0xf7f0a000
18584 | (value & 0x00000fff)
18585 | (value & 0x000f0000) << 16;
18586
18587 return patched_inst;
18588}
18589
18590static inline bfd_vma
18591create_instruction_udf (int value)
18592{
18593 /* A8.8.247 UDF (A8-758)
18594 Undefined (Encoding T1). */
18595 bfd_vma patched_inst = 0xde00
18596 | (value & 0xff);
18597
18598 return patched_inst;
18599}
18600
18601/* Functions writing an instruction in memory, returning the next
18602 memory position to write to. */
18603
18604static inline bfd_byte *
18605push_thumb2_insn32 (struct elf32_arm_link_hash_table * htab,
18606 bfd * output_bfd, bfd_byte *pt, insn32 insn)
18607{
18608 put_thumb2_insn (htab, output_bfd, insn, pt);
18609 return pt + 4;
18610}
18611
18612static inline bfd_byte *
18613push_thumb2_insn16 (struct elf32_arm_link_hash_table * htab,
18614 bfd * output_bfd, bfd_byte *pt, insn32 insn)
18615{
18616 put_thumb_insn (htab, output_bfd, insn, pt);
18617 return pt + 2;
18618}
18619
18620/* Function filling up a region in memory with T1 and T2 UDFs taking
18621 care of alignment. */
18622
18623static bfd_byte *
18624stm32l4xx_fill_stub_udf (struct elf32_arm_link_hash_table * htab,
07d6d2b8
AM
18625 bfd * output_bfd,
18626 const bfd_byte * const base_stub_contents,
18627 bfd_byte * const from_stub_contents,
18628 const bfd_byte * const end_stub_contents)
a504d23a
LA
18629{
18630 bfd_byte *current_stub_contents = from_stub_contents;
18631
18632 /* Fill the remaining of the stub with deterministic contents : UDF
18633 instructions.
18634 Check if realignment is needed on modulo 4 frontier using T1, to
18635 further use T2. */
18636 if ((current_stub_contents < end_stub_contents)
18637 && !((current_stub_contents - base_stub_contents) % 2)
18638 && ((current_stub_contents - base_stub_contents) % 4))
18639 current_stub_contents =
18640 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18641 create_instruction_udf (0));
18642
18643 for (; current_stub_contents < end_stub_contents;)
18644 current_stub_contents =
18645 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18646 create_instruction_udf_w (0));
18647
18648 return current_stub_contents;
18649}
18650
18651/* Functions writing the stream of instructions equivalent to the
18652 derived sequence for ldmia, ldmdb, vldm respectively. */
18653
18654static void
18655stm32l4xx_create_replacing_stub_ldmia (struct elf32_arm_link_hash_table * htab,
18656 bfd * output_bfd,
18657 const insn32 initial_insn,
18658 const bfd_byte *const initial_insn_addr,
18659 bfd_byte *const base_stub_contents)
18660{
18661 int wback = (initial_insn & 0x00200000) >> 21;
18662 int ri, rn = (initial_insn & 0x000F0000) >> 16;
18663 int insn_all_registers = initial_insn & 0x0000ffff;
18664 int insn_low_registers, insn_high_registers;
18665 int usable_register_mask;
b25e998d 18666 int nb_registers = elf32_arm_popcount (insn_all_registers);
a504d23a
LA
18667 int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18668 int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
18669 bfd_byte *current_stub_contents = base_stub_contents;
18670
18671 BFD_ASSERT (is_thumb2_ldmia (initial_insn));
18672
18673 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18674 smaller than 8 registers load sequences that do not cause the
18675 hardware issue. */
18676 if (nb_registers <= 8)
18677 {
18678 /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}. */
18679 current_stub_contents =
18680 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18681 initial_insn);
18682
18683 /* B initial_insn_addr+4. */
18684 if (!restore_pc)
18685 current_stub_contents =
18686 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18687 create_instruction_branch_absolute
82188b29 18688 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18689
18690 /* Fill the remaining of the stub with deterministic contents. */
18691 current_stub_contents =
18692 stm32l4xx_fill_stub_udf (htab, output_bfd,
18693 base_stub_contents, current_stub_contents,
18694 base_stub_contents +
18695 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18696
18697 return;
18698 }
18699
18700 /* - reg_list[13] == 0. */
18701 BFD_ASSERT ((insn_all_registers & (1 << 13))==0);
18702
18703 /* - reg_list[14] & reg_list[15] != 1. */
18704 BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18705
18706 /* - if (wback==1) reg_list[rn] == 0. */
18707 BFD_ASSERT (!wback || !restore_rn);
18708
18709 /* - nb_registers > 8. */
b25e998d 18710 BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
a504d23a
LA
18711
18712 /* At this point, LDMxx initial insn loads between 9 and 14 registers. */
18713
18714 /* In the following algorithm, we split this wide LDM using 2 LDM insns:
18715 - One with the 7 lowest registers (register mask 0x007F)
18716 This LDM will finally contain between 2 and 7 registers
18717 - One with the 7 highest registers (register mask 0xDF80)
18718 This ldm will finally contain between 2 and 7 registers. */
18719 insn_low_registers = insn_all_registers & 0x007F;
18720 insn_high_registers = insn_all_registers & 0xDF80;
18721
18722 /* A spare register may be needed during this veneer to temporarily
18723 handle the base register. This register will be restored with the
18724 last LDM operation.
18725 The usable register may be any general purpose register (that
18726 excludes PC, SP, LR : register mask is 0x1FFF). */
18727 usable_register_mask = 0x1FFF;
18728
18729 /* Generate the stub function. */
18730 if (wback)
18731 {
18732 /* LDMIA Rn!, {R-low-register-list} : (Encoding T2). */
18733 current_stub_contents =
18734 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18735 create_instruction_ldmia
18736 (rn, /*wback=*/1, insn_low_registers));
18737
18738 /* LDMIA Rn!, {R-high-register-list} : (Encoding T2). */
18739 current_stub_contents =
18740 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18741 create_instruction_ldmia
18742 (rn, /*wback=*/1, insn_high_registers));
18743 if (!restore_pc)
18744 {
18745 /* B initial_insn_addr+4. */
18746 current_stub_contents =
18747 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18748 create_instruction_branch_absolute
82188b29 18749 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18750 }
18751 }
18752 else /* if (!wback). */
18753 {
18754 ri = rn;
18755
18756 /* If Rn is not part of the high-register-list, move it there. */
18757 if (!(insn_high_registers & (1 << rn)))
18758 {
18759 /* Choose a Ri in the high-register-list that will be restored. */
18760 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
18761
18762 /* MOV Ri, Rn. */
18763 current_stub_contents =
18764 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18765 create_instruction_mov (ri, rn));
18766 }
18767
18768 /* LDMIA Ri!, {R-low-register-list} : (Encoding T2). */
18769 current_stub_contents =
18770 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18771 create_instruction_ldmia
18772 (ri, /*wback=*/1, insn_low_registers));
18773
18774 /* LDMIA Ri, {R-high-register-list} : (Encoding T2). */
18775 current_stub_contents =
18776 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18777 create_instruction_ldmia
18778 (ri, /*wback=*/0, insn_high_registers));
18779
18780 if (!restore_pc)
18781 {
18782 /* B initial_insn_addr+4. */
18783 current_stub_contents =
18784 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18785 create_instruction_branch_absolute
82188b29 18786 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18787 }
18788 }
18789
18790 /* Fill the remaining of the stub with deterministic contents. */
18791 current_stub_contents =
18792 stm32l4xx_fill_stub_udf (htab, output_bfd,
18793 base_stub_contents, current_stub_contents,
18794 base_stub_contents +
18795 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18796}
18797
18798static void
18799stm32l4xx_create_replacing_stub_ldmdb (struct elf32_arm_link_hash_table * htab,
18800 bfd * output_bfd,
18801 const insn32 initial_insn,
18802 const bfd_byte *const initial_insn_addr,
18803 bfd_byte *const base_stub_contents)
18804{
18805 int wback = (initial_insn & 0x00200000) >> 21;
18806 int ri, rn = (initial_insn & 0x000f0000) >> 16;
18807 int insn_all_registers = initial_insn & 0x0000ffff;
18808 int insn_low_registers, insn_high_registers;
18809 int usable_register_mask;
18810 int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18811 int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
b25e998d 18812 int nb_registers = elf32_arm_popcount (insn_all_registers);
a504d23a
LA
18813 bfd_byte *current_stub_contents = base_stub_contents;
18814
18815 BFD_ASSERT (is_thumb2_ldmdb (initial_insn));
18816
18817 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18818 smaller than 8 registers load sequences that do not cause the
18819 hardware issue. */
18820 if (nb_registers <= 8)
18821 {
18822 /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}. */
18823 current_stub_contents =
18824 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18825 initial_insn);
18826
18827 /* B initial_insn_addr+4. */
18828 current_stub_contents =
18829 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18830 create_instruction_branch_absolute
82188b29 18831 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18832
18833 /* Fill the remaining of the stub with deterministic contents. */
18834 current_stub_contents =
18835 stm32l4xx_fill_stub_udf (htab, output_bfd,
18836 base_stub_contents, current_stub_contents,
18837 base_stub_contents +
18838 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18839
18840 return;
18841 }
18842
18843 /* - reg_list[13] == 0. */
18844 BFD_ASSERT ((insn_all_registers & (1 << 13)) == 0);
18845
18846 /* - reg_list[14] & reg_list[15] != 1. */
18847 BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18848
18849 /* - if (wback==1) reg_list[rn] == 0. */
18850 BFD_ASSERT (!wback || !restore_rn);
18851
18852 /* - nb_registers > 8. */
b25e998d 18853 BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
a504d23a
LA
18854
18855 /* At this point, LDMxx initial insn loads between 9 and 14 registers. */
18856
18857 /* In the following algorithm, we split this wide LDM using 2 LDM insn:
18858 - One with the 7 lowest registers (register mask 0x007F)
18859 This LDM will finally contain between 2 and 7 registers
18860 - One with the 7 highest registers (register mask 0xDF80)
18861 This ldm will finally contain between 2 and 7 registers. */
18862 insn_low_registers = insn_all_registers & 0x007F;
18863 insn_high_registers = insn_all_registers & 0xDF80;
18864
18865 /* A spare register may be needed during this veneer to temporarily
18866 handle the base register. This register will be restored with
18867 the last LDM operation.
18868 The usable register may be any general purpose register (that excludes
18869 PC, SP, LR : register mask is 0x1FFF). */
18870 usable_register_mask = 0x1FFF;
18871
18872 /* Generate the stub function. */
18873 if (!wback && !restore_pc && !restore_rn)
18874 {
18875 /* Choose a Ri in the low-register-list that will be restored. */
18876 ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
18877
18878 /* MOV Ri, Rn. */
18879 current_stub_contents =
18880 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18881 create_instruction_mov (ri, rn));
18882
18883 /* LDMDB Ri!, {R-high-register-list}. */
18884 current_stub_contents =
18885 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18886 create_instruction_ldmdb
18887 (ri, /*wback=*/1, insn_high_registers));
18888
18889 /* LDMDB Ri, {R-low-register-list}. */
18890 current_stub_contents =
18891 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18892 create_instruction_ldmdb
18893 (ri, /*wback=*/0, insn_low_registers));
18894
18895 /* B initial_insn_addr+4. */
18896 current_stub_contents =
18897 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18898 create_instruction_branch_absolute
82188b29 18899 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18900 }
18901 else if (wback && !restore_pc && !restore_rn)
18902 {
18903 /* LDMDB Rn!, {R-high-register-list}. */
18904 current_stub_contents =
18905 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18906 create_instruction_ldmdb
18907 (rn, /*wback=*/1, insn_high_registers));
18908
18909 /* LDMDB Rn!, {R-low-register-list}. */
18910 current_stub_contents =
18911 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18912 create_instruction_ldmdb
18913 (rn, /*wback=*/1, insn_low_registers));
18914
18915 /* B initial_insn_addr+4. */
18916 current_stub_contents =
18917 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18918 create_instruction_branch_absolute
82188b29 18919 (initial_insn_addr - current_stub_contents));
a504d23a
LA
18920 }
18921 else if (!wback && restore_pc && !restore_rn)
18922 {
18923 /* Choose a Ri in the high-register-list that will be restored. */
18924 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
18925
18926 /* SUB Ri, Rn, #(4*nb_registers). */
18927 current_stub_contents =
18928 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18929 create_instruction_sub (ri, rn, (4 * nb_registers)));
18930
18931 /* LDMIA Ri!, {R-low-register-list}. */
18932 current_stub_contents =
18933 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18934 create_instruction_ldmia
18935 (ri, /*wback=*/1, insn_low_registers));
18936
18937 /* LDMIA Ri, {R-high-register-list}. */
18938 current_stub_contents =
18939 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18940 create_instruction_ldmia
18941 (ri, /*wback=*/0, insn_high_registers));
18942 }
18943 else if (wback && restore_pc && !restore_rn)
18944 {
18945 /* Choose a Ri in the high-register-list that will be restored. */
18946 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
18947
18948 /* SUB Rn, Rn, #(4*nb_registers) */
18949 current_stub_contents =
18950 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18951 create_instruction_sub (rn, rn, (4 * nb_registers)));
18952
18953 /* MOV Ri, Rn. */
18954 current_stub_contents =
18955 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18956 create_instruction_mov (ri, rn));
18957
18958 /* LDMIA Ri!, {R-low-register-list}. */
18959 current_stub_contents =
18960 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18961 create_instruction_ldmia
18962 (ri, /*wback=*/1, insn_low_registers));
18963
18964 /* LDMIA Ri, {R-high-register-list}. */
18965 current_stub_contents =
18966 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18967 create_instruction_ldmia
18968 (ri, /*wback=*/0, insn_high_registers));
18969 }
18970 else if (!wback && !restore_pc && restore_rn)
18971 {
18972 ri = rn;
18973 if (!(insn_low_registers & (1 << rn)))
18974 {
18975 /* Choose a Ri in the low-register-list that will be restored. */
18976 ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
18977
18978 /* MOV Ri, Rn. */
18979 current_stub_contents =
18980 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18981 create_instruction_mov (ri, rn));
18982 }
18983
18984 /* LDMDB Ri!, {R-high-register-list}. */
18985 current_stub_contents =
18986 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18987 create_instruction_ldmdb
18988 (ri, /*wback=*/1, insn_high_registers));
18989
18990 /* LDMDB Ri, {R-low-register-list}. */
18991 current_stub_contents =
18992 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18993 create_instruction_ldmdb
18994 (ri, /*wback=*/0, insn_low_registers));
18995
18996 /* B initial_insn_addr+4. */
18997 current_stub_contents =
18998 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18999 create_instruction_branch_absolute
82188b29 19000 (initial_insn_addr - current_stub_contents));
a504d23a
LA
19001 }
19002 else if (!wback && restore_pc && restore_rn)
19003 {
19004 ri = rn;
19005 if (!(insn_high_registers & (1 << rn)))
19006 {
19007 /* Choose a Ri in the high-register-list that will be restored. */
19008 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19009 }
19010
19011 /* SUB Ri, Rn, #(4*nb_registers). */
19012 current_stub_contents =
19013 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19014 create_instruction_sub (ri, rn, (4 * nb_registers)));
19015
19016 /* LDMIA Ri!, {R-low-register-list}. */
19017 current_stub_contents =
19018 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19019 create_instruction_ldmia
19020 (ri, /*wback=*/1, insn_low_registers));
19021
19022 /* LDMIA Ri, {R-high-register-list}. */
19023 current_stub_contents =
19024 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19025 create_instruction_ldmia
19026 (ri, /*wback=*/0, insn_high_registers));
19027 }
19028 else if (wback && restore_rn)
19029 {
19030 /* The assembler should not have accepted to encode this. */
19031 BFD_ASSERT (0 && "Cannot patch an instruction that has an "
19032 "undefined behavior.\n");
19033 }
19034
19035 /* Fill the remaining of the stub with deterministic contents. */
19036 current_stub_contents =
19037 stm32l4xx_fill_stub_udf (htab, output_bfd,
19038 base_stub_contents, current_stub_contents,
19039 base_stub_contents +
19040 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
19041
19042}
19043
19044static void
19045stm32l4xx_create_replacing_stub_vldm (struct elf32_arm_link_hash_table * htab,
19046 bfd * output_bfd,
19047 const insn32 initial_insn,
19048 const bfd_byte *const initial_insn_addr,
19049 bfd_byte *const base_stub_contents)
19050{
13c9c485 19051 int num_words = initial_insn & 0xff;
a504d23a
LA
19052 bfd_byte *current_stub_contents = base_stub_contents;
19053
19054 BFD_ASSERT (is_thumb2_vldm (initial_insn));
19055
19056 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
9239bbd3 19057 smaller than 8 words load sequences that do not cause the
a504d23a 19058 hardware issue. */
9239bbd3 19059 if (num_words <= 8)
a504d23a
LA
19060 {
19061 /* Untouched instruction. */
19062 current_stub_contents =
19063 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19064 initial_insn);
19065
19066 /* B initial_insn_addr+4. */
19067 current_stub_contents =
19068 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19069 create_instruction_branch_absolute
82188b29 19070 (initial_insn_addr - current_stub_contents));
a504d23a
LA
19071 }
19072 else
19073 {
0a1b45a2 19074 bool is_dp = /* DP encoding. */
9239bbd3 19075 (initial_insn & 0xfe100f00) == 0xec100b00;
0a1b45a2 19076 bool is_ia_nobang = /* (IA without !). */
a504d23a 19077 (((initial_insn << 7) >> 28) & 0xd) == 0x4;
0a1b45a2 19078 bool is_ia_bang = /* (IA with !) - includes VPOP. */
a504d23a 19079 (((initial_insn << 7) >> 28) & 0xd) == 0x5;
0a1b45a2 19080 bool is_db_bang = /* (DB with !). */
a504d23a 19081 (((initial_insn << 7) >> 28) & 0xd) == 0x9;
9239bbd3 19082 int base_reg = ((unsigned int) initial_insn << 12) >> 28;
a504d23a 19083 /* d = UInt (Vd:D);. */
9239bbd3 19084 int first_reg = ((((unsigned int) initial_insn << 16) >> 28) << 1)
a504d23a
LA
19085 | (((unsigned int)initial_insn << 9) >> 31);
19086
9239bbd3
CM
19087 /* Compute the number of 8-words chunks needed to split. */
19088 int chunks = (num_words % 8) ? (num_words / 8 + 1) : (num_words / 8);
a504d23a
LA
19089 int chunk;
19090
19091 /* The test coverage has been done assuming the following
19092 hypothesis that exactly one of the previous is_ predicates is
19093 true. */
9239bbd3
CM
19094 BFD_ASSERT ( (is_ia_nobang ^ is_ia_bang ^ is_db_bang)
19095 && !(is_ia_nobang & is_ia_bang & is_db_bang));
a504d23a 19096
9239bbd3 19097 /* We treat the cutting of the words in one pass for all
a504d23a
LA
19098 cases, then we emit the adjustments:
19099
19100 vldm rx, {...}
19101 -> vldm rx!, {8_words_or_less} for each needed 8_word
19102 -> sub rx, rx, #size (list)
19103
19104 vldm rx!, {...}
19105 -> vldm rx!, {8_words_or_less} for each needed 8_word
19106 This also handles vpop instruction (when rx is sp)
19107
19108 vldmd rx!, {...}
19109 -> vldmb rx!, {8_words_or_less} for each needed 8_word. */
9239bbd3 19110 for (chunk = 0; chunk < chunks; ++chunk)
a504d23a 19111 {
9239bbd3
CM
19112 bfd_vma new_insn = 0;
19113
a504d23a
LA
19114 if (is_ia_nobang || is_ia_bang)
19115 {
9239bbd3
CM
19116 new_insn = create_instruction_vldmia
19117 (base_reg,
19118 is_dp,
19119 /*wback= . */1,
19120 chunks - (chunk + 1) ?
19121 8 : num_words - chunk * 8,
19122 first_reg + chunk * 8);
a504d23a
LA
19123 }
19124 else if (is_db_bang)
19125 {
9239bbd3
CM
19126 new_insn = create_instruction_vldmdb
19127 (base_reg,
19128 is_dp,
19129 chunks - (chunk + 1) ?
19130 8 : num_words - chunk * 8,
19131 first_reg + chunk * 8);
a504d23a 19132 }
9239bbd3
CM
19133
19134 if (new_insn)
19135 current_stub_contents =
19136 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19137 new_insn);
a504d23a
LA
19138 }
19139
19140 /* Only this case requires the base register compensation
19141 subtract. */
19142 if (is_ia_nobang)
19143 {
19144 current_stub_contents =
19145 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19146 create_instruction_sub
9239bbd3 19147 (base_reg, base_reg, 4*num_words));
a504d23a
LA
19148 }
19149
19150 /* B initial_insn_addr+4. */
19151 current_stub_contents =
19152 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19153 create_instruction_branch_absolute
82188b29 19154 (initial_insn_addr - current_stub_contents));
a504d23a
LA
19155 }
19156
19157 /* Fill the remaining of the stub with deterministic contents. */
19158 current_stub_contents =
19159 stm32l4xx_fill_stub_udf (htab, output_bfd,
19160 base_stub_contents, current_stub_contents,
19161 base_stub_contents +
19162 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
19163}
19164
19165static void
19166stm32l4xx_create_replacing_stub (struct elf32_arm_link_hash_table * htab,
19167 bfd * output_bfd,
19168 const insn32 wrong_insn,
19169 const bfd_byte *const wrong_insn_addr,
19170 bfd_byte *const stub_contents)
19171{
19172 if (is_thumb2_ldmia (wrong_insn))
19173 stm32l4xx_create_replacing_stub_ldmia (htab, output_bfd,
19174 wrong_insn, wrong_insn_addr,
19175 stub_contents);
19176 else if (is_thumb2_ldmdb (wrong_insn))
19177 stm32l4xx_create_replacing_stub_ldmdb (htab, output_bfd,
19178 wrong_insn, wrong_insn_addr,
19179 stub_contents);
19180 else if (is_thumb2_vldm (wrong_insn))
19181 stm32l4xx_create_replacing_stub_vldm (htab, output_bfd,
19182 wrong_insn, wrong_insn_addr,
19183 stub_contents);
19184}
19185
19186/* End of stm32l4xx work-around. */
19187
19188
e489d0ae
PB
19189/* Do code byteswapping. Return FALSE afterwards so that the section is
19190 written out as normal. */
19191
0a1b45a2 19192static bool
c7b8f16e 19193elf32_arm_write_section (bfd *output_bfd,
8029a119
NC
19194 struct bfd_link_info *link_info,
19195 asection *sec,
e489d0ae
PB
19196 bfd_byte *contents)
19197{
48229727 19198 unsigned int mapcount, errcount;
8e3de13a 19199 _arm_elf_section_data *arm_data;
c7b8f16e 19200 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
e489d0ae 19201 elf32_arm_section_map *map;
c7b8f16e 19202 elf32_vfp11_erratum_list *errnode;
a504d23a 19203 elf32_stm32l4xx_erratum_list *stm32l4xx_errnode;
e489d0ae
PB
19204 bfd_vma ptr;
19205 bfd_vma end;
c7b8f16e 19206 bfd_vma offset = sec->output_section->vma + sec->output_offset;
e489d0ae 19207 bfd_byte tmp;
48229727 19208 unsigned int i;
57e8b36a 19209
4dfe6ac6 19210 if (globals == NULL)
0a1b45a2 19211 return false;
4dfe6ac6 19212
8e3de13a
NC
19213 /* If this section has not been allocated an _arm_elf_section_data
19214 structure then we cannot record anything. */
19215 arm_data = get_arm_elf_section_data (sec);
19216 if (arm_data == NULL)
0a1b45a2 19217 return false;
8e3de13a
NC
19218
19219 mapcount = arm_data->mapcount;
19220 map = arm_data->map;
c7b8f16e
JB
19221 errcount = arm_data->erratumcount;
19222
19223 if (errcount != 0)
19224 {
19225 unsigned int endianflip = bfd_big_endian (output_bfd) ? 3 : 0;
19226
19227 for (errnode = arm_data->erratumlist; errnode != 0;
99059e56
RM
19228 errnode = errnode->next)
19229 {
19230 bfd_vma target = errnode->vma - offset;
19231
19232 switch (errnode->type)
19233 {
19234 case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
19235 {
19236 bfd_vma branch_to_veneer;
19237 /* Original condition code of instruction, plus bit mask for
19238 ARM B instruction. */
19239 unsigned int insn = (errnode->u.b.vfp_insn & 0xf0000000)
19240 | 0x0a000000;
c7b8f16e
JB
19241
19242 /* The instruction is before the label. */
91d6fa6a 19243 target -= 4;
c7b8f16e
JB
19244
19245 /* Above offset included in -4 below. */
19246 branch_to_veneer = errnode->u.b.veneer->vma
99059e56 19247 - errnode->vma - 4;
c7b8f16e
JB
19248
19249 if ((signed) branch_to_veneer < -(1 << 25)
19250 || (signed) branch_to_veneer >= (1 << 25))
871b3ab2 19251 _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
4eca0228 19252 "range"), output_bfd);
c7b8f16e 19253
99059e56
RM
19254 insn |= (branch_to_veneer >> 2) & 0xffffff;
19255 contents[endianflip ^ target] = insn & 0xff;
19256 contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19257 contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19258 contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19259 }
19260 break;
c7b8f16e
JB
19261
19262 case VFP11_ERRATUM_ARM_VENEER:
99059e56
RM
19263 {
19264 bfd_vma branch_from_veneer;
19265 unsigned int insn;
c7b8f16e 19266
99059e56
RM
19267 /* Take size of veneer into account. */
19268 branch_from_veneer = errnode->u.v.branch->vma
19269 - errnode->vma - 12;
c7b8f16e
JB
19270
19271 if ((signed) branch_from_veneer < -(1 << 25)
19272 || (signed) branch_from_veneer >= (1 << 25))
871b3ab2 19273 _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
4eca0228 19274 "range"), output_bfd);
c7b8f16e 19275
99059e56
RM
19276 /* Original instruction. */
19277 insn = errnode->u.v.branch->u.b.vfp_insn;
19278 contents[endianflip ^ target] = insn & 0xff;
19279 contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19280 contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19281 contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19282
19283 /* Branch back to insn after original insn. */
19284 insn = 0xea000000 | ((branch_from_veneer >> 2) & 0xffffff);
19285 contents[endianflip ^ (target + 4)] = insn & 0xff;
19286 contents[endianflip ^ (target + 5)] = (insn >> 8) & 0xff;
19287 contents[endianflip ^ (target + 6)] = (insn >> 16) & 0xff;
19288 contents[endianflip ^ (target + 7)] = (insn >> 24) & 0xff;
19289 }
19290 break;
c7b8f16e 19291
99059e56
RM
19292 default:
19293 abort ();
19294 }
19295 }
c7b8f16e 19296 }
e489d0ae 19297
a504d23a
LA
19298 if (arm_data->stm32l4xx_erratumcount != 0)
19299 {
19300 for (stm32l4xx_errnode = arm_data->stm32l4xx_erratumlist;
19301 stm32l4xx_errnode != 0;
19302 stm32l4xx_errnode = stm32l4xx_errnode->next)
19303 {
19304 bfd_vma target = stm32l4xx_errnode->vma - offset;
19305
19306 switch (stm32l4xx_errnode->type)
19307 {
19308 case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
19309 {
19310 unsigned int insn;
19311 bfd_vma branch_to_veneer =
19312 stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma;
19313
19314 if ((signed) branch_to_veneer < -(1 << 24)
19315 || (signed) branch_to_veneer >= (1 << 24))
19316 {
19317 bfd_vma out_of_range =
19318 ((signed) branch_to_veneer < -(1 << 24)) ?
19319 - branch_to_veneer - (1 << 24) :
19320 ((signed) branch_to_veneer >= (1 << 24)) ?
19321 branch_to_veneer - (1 << 24) : 0;
19322
4eca0228 19323 _bfd_error_handler
2dcf00ce 19324 (_("%pB(%#" PRIx64 "): error: "
90b6238f
AM
19325 "cannot create STM32L4XX veneer; "
19326 "jump out of range by %" PRId64 " bytes; "
19327 "cannot encode branch instruction"),
a504d23a 19328 output_bfd,
2dcf00ce
AM
19329 (uint64_t) (stm32l4xx_errnode->vma - 4),
19330 (int64_t) out_of_range);
a504d23a
LA
19331 continue;
19332 }
19333
19334 insn = create_instruction_branch_absolute
82188b29 19335 (stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma);
a504d23a 19336
a2699ef2
AM
19337 /* The instruction is before the label. */
19338 target -= 4;
19339
a504d23a
LA
19340 put_thumb2_insn (globals, output_bfd,
19341 (bfd_vma) insn, contents + target);
19342 }
19343 break;
19344
19345 case STM32L4XX_ERRATUM_VENEER:
19346 {
82188b29
NC
19347 bfd_byte * veneer;
19348 bfd_byte * veneer_r;
a504d23a
LA
19349 unsigned int insn;
19350
82188b29
NC
19351 veneer = contents + target;
19352 veneer_r = veneer
19353 + stm32l4xx_errnode->u.b.veneer->vma
19354 - stm32l4xx_errnode->vma - 4;
a504d23a
LA
19355
19356 if ((signed) (veneer_r - veneer -
19357 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE >
19358 STM32L4XX_ERRATUM_LDM_VENEER_SIZE ?
19359 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE :
19360 STM32L4XX_ERRATUM_LDM_VENEER_SIZE) < -(1 << 24)
19361 || (signed) (veneer_r - veneer) >= (1 << 24))
19362 {
90b6238f
AM
19363 _bfd_error_handler (_("%pB: error: cannot create STM32L4XX "
19364 "veneer"), output_bfd);
a504d23a
LA
19365 continue;
19366 }
19367
19368 /* Original instruction. */
19369 insn = stm32l4xx_errnode->u.v.branch->u.b.insn;
19370
19371 stm32l4xx_create_replacing_stub
19372 (globals, output_bfd, insn, (void*)veneer_r, (void*)veneer);
19373 }
19374 break;
19375
19376 default:
19377 abort ();
19378 }
19379 }
19380 }
19381
2468f9c9
PB
19382 if (arm_data->elf.this_hdr.sh_type == SHT_ARM_EXIDX)
19383 {
19384 arm_unwind_table_edit *edit_node
99059e56 19385 = arm_data->u.exidx.unwind_edit_list;
2468f9c9 19386 /* Now, sec->size is the size of the section we will write. The original
99059e56 19387 size (before we merged duplicate entries and inserted EXIDX_CANTUNWIND
2468f9c9
PB
19388 markers) was sec->rawsize. (This isn't the case if we perform no
19389 edits, then rawsize will be zero and we should use size). */
21d799b5 19390 bfd_byte *edited_contents = (bfd_byte *) bfd_malloc (sec->size);
2468f9c9
PB
19391 unsigned int input_size = sec->rawsize ? sec->rawsize : sec->size;
19392 unsigned int in_index, out_index;
19393 bfd_vma add_to_offsets = 0;
19394
7a0fb7be 19395 if (edited_contents == NULL)
0a1b45a2 19396 return false;
2468f9c9 19397 for (in_index = 0, out_index = 0; in_index * 8 < input_size || edit_node;)
99059e56 19398 {
2468f9c9
PB
19399 if (edit_node)
19400 {
19401 unsigned int edit_index = edit_node->index;
b38cadfb 19402
2468f9c9 19403 if (in_index < edit_index && in_index * 8 < input_size)
99059e56 19404 {
2468f9c9
PB
19405 copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19406 contents + in_index * 8, add_to_offsets);
19407 out_index++;
19408 in_index++;
19409 }
19410 else if (in_index == edit_index
19411 || (in_index * 8 >= input_size
19412 && edit_index == UINT_MAX))
99059e56 19413 {
2468f9c9
PB
19414 switch (edit_node->type)
19415 {
19416 case DELETE_EXIDX_ENTRY:
19417 in_index++;
19418 add_to_offsets += 8;
19419 break;
b38cadfb 19420
2468f9c9
PB
19421 case INSERT_EXIDX_CANTUNWIND_AT_END:
19422 {
99059e56 19423 asection *text_sec = edit_node->linked_section;
2468f9c9
PB
19424 bfd_vma text_offset = text_sec->output_section->vma
19425 + text_sec->output_offset
19426 + text_sec->size;
19427 bfd_vma exidx_offset = offset + out_index * 8;
99059e56 19428 unsigned long prel31_offset;
2468f9c9
PB
19429
19430 /* Note: this is meant to be equivalent to an
19431 R_ARM_PREL31 relocation. These synthetic
19432 EXIDX_CANTUNWIND markers are not relocated by the
19433 usual BFD method. */
19434 prel31_offset = (text_offset - exidx_offset)
19435 & 0x7ffffffful;
491d01d3
YU
19436 if (bfd_link_relocatable (link_info))
19437 {
19438 /* Here relocation for new EXIDX_CANTUNWIND is
19439 created, so there is no need to
19440 adjust offset by hand. */
19441 prel31_offset = text_sec->output_offset
19442 + text_sec->size;
491d01d3 19443 }
2468f9c9
PB
19444
19445 /* First address we can't unwind. */
19446 bfd_put_32 (output_bfd, prel31_offset,
19447 &edited_contents[out_index * 8]);
19448
19449 /* Code for EXIDX_CANTUNWIND. */
19450 bfd_put_32 (output_bfd, 0x1,
19451 &edited_contents[out_index * 8 + 4]);
19452
19453 out_index++;
19454 add_to_offsets -= 8;
19455 }
19456 break;
19457 }
b38cadfb 19458
2468f9c9
PB
19459 edit_node = edit_node->next;
19460 }
19461 }
19462 else
19463 {
19464 /* No more edits, copy remaining entries verbatim. */
19465 copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19466 contents + in_index * 8, add_to_offsets);
19467 out_index++;
19468 in_index++;
19469 }
19470 }
19471
19472 if (!(sec->flags & SEC_EXCLUDE) && !(sec->flags & SEC_NEVER_LOAD))
19473 bfd_set_section_contents (output_bfd, sec->output_section,
19474 edited_contents,
19475 (file_ptr) sec->output_offset, sec->size);
19476
0a1b45a2 19477 return true;
2468f9c9
PB
19478 }
19479
48229727
JB
19480 /* Fix code to point to Cortex-A8 erratum stubs. */
19481 if (globals->fix_cortex_a8)
19482 {
19483 struct a8_branch_to_stub_data data;
19484
19485 data.writing_section = sec;
19486 data.contents = contents;
19487
a504d23a
LA
19488 bfd_hash_traverse (& globals->stub_hash_table, make_branch_to_a8_stub,
19489 & data);
48229727
JB
19490 }
19491
e489d0ae 19492 if (mapcount == 0)
0a1b45a2 19493 return false;
e489d0ae 19494
c7b8f16e 19495 if (globals->byteswap_code)
e489d0ae 19496 {
c7b8f16e 19497 qsort (map, mapcount, sizeof (* map), elf32_arm_compare_mapping);
57e8b36a 19498
c7b8f16e
JB
19499 ptr = map[0].vma;
19500 for (i = 0; i < mapcount; i++)
99059e56
RM
19501 {
19502 if (i == mapcount - 1)
c7b8f16e 19503 end = sec->size;
99059e56
RM
19504 else
19505 end = map[i + 1].vma;
e489d0ae 19506
99059e56 19507 switch (map[i].type)
e489d0ae 19508 {
c7b8f16e
JB
19509 case 'a':
19510 /* Byte swap code words. */
19511 while (ptr + 3 < end)
99059e56
RM
19512 {
19513 tmp = contents[ptr];
19514 contents[ptr] = contents[ptr + 3];
19515 contents[ptr + 3] = tmp;
19516 tmp = contents[ptr + 1];
19517 contents[ptr + 1] = contents[ptr + 2];
19518 contents[ptr + 2] = tmp;
19519 ptr += 4;
19520 }
c7b8f16e 19521 break;
e489d0ae 19522
c7b8f16e
JB
19523 case 't':
19524 /* Byte swap code halfwords. */
19525 while (ptr + 1 < end)
99059e56
RM
19526 {
19527 tmp = contents[ptr];
19528 contents[ptr] = contents[ptr + 1];
19529 contents[ptr + 1] = tmp;
19530 ptr += 2;
19531 }
c7b8f16e
JB
19532 break;
19533
19534 case 'd':
19535 /* Leave data alone. */
19536 break;
19537 }
99059e56
RM
19538 ptr = end;
19539 }
e489d0ae 19540 }
8e3de13a 19541
93204d3a 19542 free (map);
47b2e99c 19543 arm_data->mapcount = -1;
c7b8f16e 19544 arm_data->mapsize = 0;
8e3de13a 19545 arm_data->map = NULL;
8e3de13a 19546
0a1b45a2 19547 return false;
e489d0ae
PB
19548}
19549
0beaef2b
PB
19550/* Mangle thumb function symbols as we read them in. */
19551
0a1b45a2 19552static bool
0beaef2b
PB
19553elf32_arm_swap_symbol_in (bfd * abfd,
19554 const void *psrc,
19555 const void *pshn,
19556 Elf_Internal_Sym *dst)
19557{
8384fb8f 19558 if (!bfd_elf32_swap_symbol_in (abfd, psrc, pshn, dst))
0a1b45a2 19559 return false;
39d911fc 19560 dst->st_target_internal = 0;
0beaef2b
PB
19561
19562 /* New EABI objects mark thumb function symbols by setting the low bit of
35fc36a8 19563 the address. */
63e1a0fc
PB
19564 if (ELF_ST_TYPE (dst->st_info) == STT_FUNC
19565 || ELF_ST_TYPE (dst->st_info) == STT_GNU_IFUNC)
0beaef2b 19566 {
63e1a0fc
PB
19567 if (dst->st_value & 1)
19568 {
19569 dst->st_value &= ~(bfd_vma) 1;
39d911fc
TP
19570 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal,
19571 ST_BRANCH_TO_THUMB);
63e1a0fc
PB
19572 }
19573 else
39d911fc 19574 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_ARM);
35fc36a8
RS
19575 }
19576 else if (ELF_ST_TYPE (dst->st_info) == STT_ARM_TFUNC)
19577 {
19578 dst->st_info = ELF_ST_INFO (ELF_ST_BIND (dst->st_info), STT_FUNC);
39d911fc 19579 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_THUMB);
0beaef2b 19580 }
35fc36a8 19581 else if (ELF_ST_TYPE (dst->st_info) == STT_SECTION)
39d911fc 19582 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_LONG);
35fc36a8 19583 else
39d911fc 19584 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_UNKNOWN);
35fc36a8 19585
0a1b45a2 19586 return true;
0beaef2b
PB
19587}
19588
19589
19590/* Mangle thumb function symbols as we write them out. */
19591
19592static void
19593elf32_arm_swap_symbol_out (bfd *abfd,
19594 const Elf_Internal_Sym *src,
19595 void *cdst,
19596 void *shndx)
19597{
19598 Elf_Internal_Sym newsym;
19599
19600 /* We convert STT_ARM_TFUNC symbols into STT_FUNC with the low bit
19601 of the address set, as per the new EABI. We do this unconditionally
19602 because objcopy does not set the elf header flags until after
19603 it writes out the symbol table. */
39d911fc 19604 if (ARM_GET_SYM_BRANCH_TYPE (src->st_target_internal) == ST_BRANCH_TO_THUMB)
0beaef2b
PB
19605 {
19606 newsym = *src;
34e77a92
RS
19607 if (ELF_ST_TYPE (src->st_info) != STT_GNU_IFUNC)
19608 newsym.st_info = ELF_ST_INFO (ELF_ST_BIND (src->st_info), STT_FUNC);
0fa3dcad 19609 if (newsym.st_shndx != SHN_UNDEF)
99059e56
RM
19610 {
19611 /* Do this only for defined symbols. At link type, the static
19612 linker will simulate the work of dynamic linker of resolving
19613 symbols and will carry over the thumbness of found symbols to
19614 the output symbol table. It's not clear how it happens, but
19615 the thumbness of undefined symbols can well be different at
19616 runtime, and writing '1' for them will be confusing for users
19617 and possibly for dynamic linker itself.
19618 */
19619 newsym.st_value |= 1;
19620 }
906e58ca 19621
0beaef2b
PB
19622 src = &newsym;
19623 }
19624 bfd_elf32_swap_symbol_out (abfd, src, cdst, shndx);
19625}
19626
b294bdf8
MM
19627/* Add the PT_ARM_EXIDX program header. */
19628
0a1b45a2 19629static bool
906e58ca 19630elf32_arm_modify_segment_map (bfd *abfd,
b294bdf8
MM
19631 struct bfd_link_info *info ATTRIBUTE_UNUSED)
19632{
19633 struct elf_segment_map *m;
19634 asection *sec;
19635
19636 sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19637 if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19638 {
19639 /* If there is already a PT_ARM_EXIDX header, then we do not
19640 want to add another one. This situation arises when running
19641 "strip"; the input binary already has the header. */
12bd6957 19642 m = elf_seg_map (abfd);
b294bdf8
MM
19643 while (m && m->p_type != PT_ARM_EXIDX)
19644 m = m->next;
19645 if (!m)
19646 {
21d799b5 19647 m = (struct elf_segment_map *)
99059e56 19648 bfd_zalloc (abfd, sizeof (struct elf_segment_map));
b294bdf8 19649 if (m == NULL)
0a1b45a2 19650 return false;
b294bdf8
MM
19651 m->p_type = PT_ARM_EXIDX;
19652 m->count = 1;
19653 m->sections[0] = sec;
19654
12bd6957
AM
19655 m->next = elf_seg_map (abfd);
19656 elf_seg_map (abfd) = m;
b294bdf8
MM
19657 }
19658 }
19659
0a1b45a2 19660 return true;
b294bdf8
MM
19661}
19662
19663/* We may add a PT_ARM_EXIDX program header. */
19664
19665static int
a6b96beb
AM
19666elf32_arm_additional_program_headers (bfd *abfd,
19667 struct bfd_link_info *info ATTRIBUTE_UNUSED)
b294bdf8
MM
19668{
19669 asection *sec;
19670
19671 sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19672 if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19673 return 1;
19674 else
19675 return 0;
19676}
19677
34e77a92
RS
19678/* Hook called by the linker routine which adds symbols from an object
19679 file. */
19680
0a1b45a2 19681static bool
34e77a92
RS
19682elf32_arm_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
19683 Elf_Internal_Sym *sym, const char **namep,
19684 flagword *flagsp, asection **secp, bfd_vma *valp)
19685{
c792917c 19686 if (elf32_arm_hash_table (info) == NULL)
0a1b45a2 19687 return false;
c792917c 19688
90c14f0c 19689 if (elf32_arm_hash_table (info)->root.target_os == is_vxworks
34e77a92
RS
19690 && !elf_vxworks_add_symbol_hook (abfd, info, sym, namep,
19691 flagsp, secp, valp))
0a1b45a2 19692 return false;
34e77a92 19693
0a1b45a2 19694 return true;
34e77a92
RS
19695}
19696
0beaef2b 19697/* We use this to override swap_symbol_in and swap_symbol_out. */
906e58ca
NC
19698const struct elf_size_info elf32_arm_size_info =
19699{
0beaef2b
PB
19700 sizeof (Elf32_External_Ehdr),
19701 sizeof (Elf32_External_Phdr),
19702 sizeof (Elf32_External_Shdr),
19703 sizeof (Elf32_External_Rel),
19704 sizeof (Elf32_External_Rela),
19705 sizeof (Elf32_External_Sym),
19706 sizeof (Elf32_External_Dyn),
19707 sizeof (Elf_External_Note),
19708 4,
19709 1,
19710 32, 2,
19711 ELFCLASS32, EV_CURRENT,
19712 bfd_elf32_write_out_phdrs,
19713 bfd_elf32_write_shdrs_and_ehdr,
1489a3a0 19714 bfd_elf32_checksum_contents,
0beaef2b
PB
19715 bfd_elf32_write_relocs,
19716 elf32_arm_swap_symbol_in,
19717 elf32_arm_swap_symbol_out,
19718 bfd_elf32_slurp_reloc_table,
19719 bfd_elf32_slurp_symbol_table,
19720 bfd_elf32_swap_dyn_in,
19721 bfd_elf32_swap_dyn_out,
19722 bfd_elf32_swap_reloc_in,
19723 bfd_elf32_swap_reloc_out,
19724 bfd_elf32_swap_reloca_in,
19725 bfd_elf32_swap_reloca_out
19726};
19727
685e70ae
VK
19728static bfd_vma
19729read_code32 (const bfd *abfd, const bfd_byte *addr)
19730{
19731 /* V7 BE8 code is always little endian. */
19732 if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19733 return bfd_getl32 (addr);
19734
19735 return bfd_get_32 (abfd, addr);
19736}
19737
19738static bfd_vma
19739read_code16 (const bfd *abfd, const bfd_byte *addr)
19740{
19741 /* V7 BE8 code is always little endian. */
19742 if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19743 return bfd_getl16 (addr);
19744
19745 return bfd_get_16 (abfd, addr);
19746}
19747
6a631e86
YG
19748/* Return size of plt0 entry starting at ADDR
19749 or (bfd_vma) -1 if size can not be determined. */
19750
19751static bfd_vma
19752elf32_arm_plt0_size (const bfd *abfd, const bfd_byte *addr)
19753{
19754 bfd_vma first_word;
19755 bfd_vma plt0_size;
19756
685e70ae 19757 first_word = read_code32 (abfd, addr);
6a631e86
YG
19758
19759 if (first_word == elf32_arm_plt0_entry[0])
19760 plt0_size = 4 * ARRAY_SIZE (elf32_arm_plt0_entry);
19761 else if (first_word == elf32_thumb2_plt0_entry[0])
19762 plt0_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
19763 else
19764 /* We don't yet handle this PLT format. */
19765 return (bfd_vma) -1;
19766
19767 return plt0_size;
19768}
19769
19770/* Return size of plt entry starting at offset OFFSET
19771 of plt section located at address START
19772 or (bfd_vma) -1 if size can not be determined. */
19773
19774static bfd_vma
19775elf32_arm_plt_size (const bfd *abfd, const bfd_byte *start, bfd_vma offset)
19776{
19777 bfd_vma first_insn;
19778 bfd_vma plt_size = 0;
19779 const bfd_byte *addr = start + offset;
19780
19781 /* PLT entry size if fixed on Thumb-only platforms. */
685e70ae 19782 if (read_code32 (abfd, start) == elf32_thumb2_plt0_entry[0])
6a631e86
YG
19783 return 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
19784
19785 /* Respect Thumb stub if necessary. */
685e70ae 19786 if (read_code16 (abfd, addr) == elf32_arm_plt_thumb_stub[0])
6a631e86
YG
19787 {
19788 plt_size += 2 * ARRAY_SIZE(elf32_arm_plt_thumb_stub);
19789 }
19790
19791 /* Strip immediate from first add. */
685e70ae 19792 first_insn = read_code32 (abfd, addr + plt_size) & 0xffffff00;
6a631e86
YG
19793
19794#ifdef FOUR_WORD_PLT
19795 if (first_insn == elf32_arm_plt_entry[0])
19796 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry);
19797#else
19798 if (first_insn == elf32_arm_plt_entry_long[0])
19799 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_long);
19800 else if (first_insn == elf32_arm_plt_entry_short[0])
19801 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_short);
19802#endif
19803 else
19804 /* We don't yet handle this PLT format. */
19805 return (bfd_vma) -1;
19806
19807 return plt_size;
19808}
19809
19810/* Implementation is shamelessly borrowed from _bfd_elf_get_synthetic_symtab. */
19811
19812static long
19813elf32_arm_get_synthetic_symtab (bfd *abfd,
19814 long symcount ATTRIBUTE_UNUSED,
19815 asymbol **syms ATTRIBUTE_UNUSED,
19816 long dynsymcount,
19817 asymbol **dynsyms,
19818 asymbol **ret)
19819{
19820 asection *relplt;
19821 asymbol *s;
19822 arelent *p;
19823 long count, i, n;
19824 size_t size;
19825 Elf_Internal_Shdr *hdr;
19826 char *names;
19827 asection *plt;
19828 bfd_vma offset;
19829 bfd_byte *data;
19830
19831 *ret = NULL;
19832
19833 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
19834 return 0;
19835
19836 if (dynsymcount <= 0)
19837 return 0;
19838
19839 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
19840 if (relplt == NULL)
19841 return 0;
19842
19843 hdr = &elf_section_data (relplt)->this_hdr;
19844 if (hdr->sh_link != elf_dynsymtab (abfd)
19845 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
19846 return 0;
19847
19848 plt = bfd_get_section_by_name (abfd, ".plt");
19849 if (plt == NULL)
19850 return 0;
19851
0a1b45a2 19852 if (!elf32_arm_size_info.slurp_reloc_table (abfd, relplt, dynsyms, true))
6a631e86
YG
19853 return -1;
19854
19855 data = plt->contents;
19856 if (data == NULL)
19857 {
19858 if (!bfd_get_full_section_contents(abfd, (asection *) plt, &data) || data == NULL)
19859 return -1;
19860 bfd_cache_section_contents((asection *) plt, data);
19861 }
19862
19863 count = relplt->size / hdr->sh_entsize;
19864 size = count * sizeof (asymbol);
19865 p = relplt->relocation;
19866 for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
19867 {
19868 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
19869 if (p->addend != 0)
19870 size += sizeof ("+0x") - 1 + 8;
19871 }
19872
19873 s = *ret = (asymbol *) bfd_malloc (size);
19874 if (s == NULL)
19875 return -1;
19876
19877 offset = elf32_arm_plt0_size (abfd, data);
19878 if (offset == (bfd_vma) -1)
19879 return -1;
19880
19881 names = (char *) (s + count);
19882 p = relplt->relocation;
19883 n = 0;
19884 for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
19885 {
19886 size_t len;
19887
19888 bfd_vma plt_size = elf32_arm_plt_size (abfd, data, offset);
19889 if (plt_size == (bfd_vma) -1)
19890 break;
19891
19892 *s = **p->sym_ptr_ptr;
19893 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
19894 we are defining a symbol, ensure one of them is set. */
19895 if ((s->flags & BSF_LOCAL) == 0)
19896 s->flags |= BSF_GLOBAL;
19897 s->flags |= BSF_SYNTHETIC;
19898 s->section = plt;
19899 s->value = offset;
19900 s->name = names;
19901 s->udata.p = NULL;
19902 len = strlen ((*p->sym_ptr_ptr)->name);
19903 memcpy (names, (*p->sym_ptr_ptr)->name, len);
19904 names += len;
19905 if (p->addend != 0)
19906 {
19907 char buf[30], *a;
19908
19909 memcpy (names, "+0x", sizeof ("+0x") - 1);
19910 names += sizeof ("+0x") - 1;
19911 bfd_sprintf_vma (abfd, buf, p->addend);
19912 for (a = buf; *a == '0'; ++a)
19913 ;
19914 len = strlen (a);
19915 memcpy (names, a, len);
19916 names += len;
19917 }
19918 memcpy (names, "@plt", sizeof ("@plt"));
19919 names += sizeof ("@plt");
19920 ++s, ++n;
19921 offset += plt_size;
19922 }
19923
19924 return n;
19925}
19926
0a1b45a2 19927static bool
8c803a2d 19928elf32_arm_section_flags (const Elf_Internal_Shdr *hdr)
ac4c9b04 19929{
f0728ee3 19930 if (hdr->sh_flags & SHF_ARM_PURECODE)
8c803a2d 19931 hdr->bfd_section->flags |= SEC_ELF_PURECODE;
0a1b45a2 19932 return true;
ac4c9b04
MG
19933}
19934
19935static flagword
19936elf32_arm_lookup_section_flags (char *flag_name)
19937{
f0728ee3
AV
19938 if (!strcmp (flag_name, "SHF_ARM_PURECODE"))
19939 return SHF_ARM_PURECODE;
ac4c9b04
MG
19940
19941 return SEC_NO_FLAGS;
19942}
19943
491d01d3
YU
19944static unsigned int
19945elf32_arm_count_additional_relocs (asection *sec)
19946{
19947 struct _arm_elf_section_data *arm_data;
19948 arm_data = get_arm_elf_section_data (sec);
5025eb7c 19949
6342be70 19950 return arm_data == NULL ? 0 : arm_data->additional_reloc_count;
491d01d3
YU
19951}
19952
5522f910 19953/* Called to set the sh_flags, sh_link and sh_info fields of OSECTION which
9eaff861 19954 has a type >= SHT_LOOS. Returns TRUE if these fields were initialised
5522f910
NC
19955 FALSE otherwise. ISECTION is the best guess matching section from the
19956 input bfd IBFD, but it might be NULL. */
19957
0a1b45a2 19958static bool
5522f910
NC
19959elf32_arm_copy_special_section_fields (const bfd *ibfd ATTRIBUTE_UNUSED,
19960 bfd *obfd ATTRIBUTE_UNUSED,
19961 const Elf_Internal_Shdr *isection ATTRIBUTE_UNUSED,
19962 Elf_Internal_Shdr *osection)
19963{
19964 switch (osection->sh_type)
19965 {
19966 case SHT_ARM_EXIDX:
19967 {
19968 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
19969 Elf_Internal_Shdr **iheaders = elf_elfsections (ibfd);
19970 unsigned i = 0;
19971
19972 osection->sh_flags = SHF_ALLOC | SHF_LINK_ORDER;
19973 osection->sh_info = 0;
19974
19975 /* The sh_link field must be set to the text section associated with
19976 this index section. Unfortunately the ARM EHABI does not specify
19977 exactly how to determine this association. Our caller does try
19978 to match up OSECTION with its corresponding input section however
19979 so that is a good first guess. */
19980 if (isection != NULL
19981 && osection->bfd_section != NULL
19982 && isection->bfd_section != NULL
19983 && isection->bfd_section->output_section != NULL
19984 && isection->bfd_section->output_section == osection->bfd_section
19985 && iheaders != NULL
19986 && isection->sh_link > 0
19987 && isection->sh_link < elf_numsections (ibfd)
19988 && iheaders[isection->sh_link]->bfd_section != NULL
19989 && iheaders[isection->sh_link]->bfd_section->output_section != NULL
19990 )
19991 {
19992 for (i = elf_numsections (obfd); i-- > 0;)
19993 if (oheaders[i]->bfd_section
19994 == iheaders[isection->sh_link]->bfd_section->output_section)
19995 break;
19996 }
9eaff861 19997
5522f910
NC
19998 if (i == 0)
19999 {
20000 /* Failing that we have to find a matching section ourselves. If
20001 we had the output section name available we could compare that
20002 with input section names. Unfortunately we don't. So instead
20003 we use a simple heuristic and look for the nearest executable
20004 section before this one. */
20005 for (i = elf_numsections (obfd); i-- > 0;)
20006 if (oheaders[i] == osection)
20007 break;
20008 if (i == 0)
20009 break;
20010
20011 while (i-- > 0)
20012 if (oheaders[i]->sh_type == SHT_PROGBITS
20013 && (oheaders[i]->sh_flags & (SHF_ALLOC | SHF_EXECINSTR))
20014 == (SHF_ALLOC | SHF_EXECINSTR))
20015 break;
20016 }
20017
20018 if (i)
20019 {
20020 osection->sh_link = i;
20021 /* If the text section was part of a group
20022 then the index section should be too. */
20023 if (oheaders[i]->sh_flags & SHF_GROUP)
20024 osection->sh_flags |= SHF_GROUP;
0a1b45a2 20025 return true;
5522f910
NC
20026 }
20027 }
20028 break;
20029
20030 case SHT_ARM_PREEMPTMAP:
20031 osection->sh_flags = SHF_ALLOC;
20032 break;
20033
20034 case SHT_ARM_ATTRIBUTES:
20035 case SHT_ARM_DEBUGOVERLAY:
20036 case SHT_ARM_OVERLAYSECTION:
20037 default:
20038 break;
20039 }
20040
0a1b45a2 20041 return false;
5522f910
NC
20042}
20043
d691934d
NC
20044/* Returns TRUE if NAME is an ARM mapping symbol.
20045 Traditionally the symbols $a, $d and $t have been used.
20046 The ARM ELF standard also defines $x (for A64 code). It also allows a
20047 period initiated suffix to be added to the symbol: "$[adtx]\.[:sym_char]+".
20048 Other tools might also produce $b (Thumb BL), $f, $p, $m and $v, but we do
20049 not support them here. $t.x indicates the start of ThumbEE instructions. */
20050
0a1b45a2 20051static bool
d691934d
NC
20052is_arm_mapping_symbol (const char * name)
20053{
20054 return name != NULL /* Paranoia. */
20055 && name[0] == '$' /* Note: if objcopy --prefix-symbols has been used then
20056 the mapping symbols could have acquired a prefix.
20057 We do not support this here, since such symbols no
20058 longer conform to the ARM ELF ABI. */
20059 && (name[1] == 'a' || name[1] == 'd' || name[1] == 't' || name[1] == 'x')
20060 && (name[2] == 0 || name[2] == '.');
20061 /* FIXME: Strictly speaking the symbol is only a valid mapping symbol if
20062 any characters that follow the period are legal characters for the body
20063 of a symbol's name. For now we just assume that this is the case. */
20064}
20065
fca2a38f
NC
20066/* Make sure that mapping symbols in object files are not removed via the
20067 "strip --strip-unneeded" tool. These symbols are needed in order to
20068 correctly generate interworking veneers, and for byte swapping code
20069 regions. Once an object file has been linked, it is safe to remove the
20070 symbols as they will no longer be needed. */
20071
20072static void
20073elf32_arm_backend_symbol_processing (bfd *abfd, asymbol *sym)
20074{
20075 if (((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
fca2a38f 20076 && sym->section != bfd_abs_section_ptr
d691934d 20077 && is_arm_mapping_symbol (sym->name))
fca2a38f
NC
20078 sym->flags |= BSF_KEEP;
20079}
20080
5522f910
NC
20081#undef elf_backend_copy_special_section_fields
20082#define elf_backend_copy_special_section_fields elf32_arm_copy_special_section_fields
20083
252b5132 20084#define ELF_ARCH bfd_arch_arm
ae95ffa6 20085#define ELF_TARGET_ID ARM_ELF_DATA
252b5132 20086#define ELF_MACHINE_CODE EM_ARM
d0facd1b
NC
20087#ifdef __QNXTARGET__
20088#define ELF_MAXPAGESIZE 0x1000
20089#else
7572ca89 20090#define ELF_MAXPAGESIZE 0x10000
d0facd1b 20091#endif
b1342370 20092#define ELF_MINPAGESIZE 0x1000
24718e3b 20093#define ELF_COMMONPAGESIZE 0x1000
252b5132 20094
07d6d2b8 20095#define bfd_elf32_mkobject elf32_arm_mkobject
ba93b8ac 20096
99e4ae17
AJ
20097#define bfd_elf32_bfd_copy_private_bfd_data elf32_arm_copy_private_bfd_data
20098#define bfd_elf32_bfd_merge_private_bfd_data elf32_arm_merge_private_bfd_data
252b5132
RH
20099#define bfd_elf32_bfd_set_private_flags elf32_arm_set_private_flags
20100#define bfd_elf32_bfd_print_private_bfd_data elf32_arm_print_private_bfd_data
07d6d2b8 20101#define bfd_elf32_bfd_link_hash_table_create elf32_arm_link_hash_table_create
dc810e39 20102#define bfd_elf32_bfd_reloc_type_lookup elf32_arm_reloc_type_lookup
b38cadfb 20103#define bfd_elf32_bfd_reloc_name_lookup elf32_arm_reloc_name_lookup
07d6d2b8 20104#define bfd_elf32_find_inliner_info elf32_arm_find_inliner_info
e489d0ae 20105#define bfd_elf32_new_section_hook elf32_arm_new_section_hook
3c9458e9 20106#define bfd_elf32_bfd_is_target_special_symbol elf32_arm_is_target_special_symbol
3e6b1042 20107#define bfd_elf32_bfd_final_link elf32_arm_final_link
07d6d2b8 20108#define bfd_elf32_get_synthetic_symtab elf32_arm_get_synthetic_symtab
252b5132 20109
07d6d2b8 20110#define elf_backend_get_symbol_type elf32_arm_get_symbol_type
e7679060 20111#define elf_backend_maybe_function_sym elf32_arm_maybe_function_sym
07d6d2b8 20112#define elf_backend_gc_mark_hook elf32_arm_gc_mark_hook
6a5bb875 20113#define elf_backend_gc_mark_extra_sections elf32_arm_gc_mark_extra_sections
07d6d2b8 20114#define elf_backend_check_relocs elf32_arm_check_relocs
9eaff861 20115#define elf_backend_update_relocs elf32_arm_update_relocs
dc810e39 20116#define elf_backend_relocate_section elf32_arm_relocate_section
e489d0ae 20117#define elf_backend_write_section elf32_arm_write_section
252b5132 20118#define elf_backend_adjust_dynamic_symbol elf32_arm_adjust_dynamic_symbol
07d6d2b8 20119#define elf_backend_create_dynamic_sections elf32_arm_create_dynamic_sections
252b5132
RH
20120#define elf_backend_finish_dynamic_symbol elf32_arm_finish_dynamic_symbol
20121#define elf_backend_finish_dynamic_sections elf32_arm_finish_dynamic_sections
20122#define elf_backend_size_dynamic_sections elf32_arm_size_dynamic_sections
0855e32b 20123#define elf_backend_always_size_sections elf32_arm_always_size_sections
74541ad4 20124#define elf_backend_init_index_section _bfd_elf_init_2_index_sections
ed7e9d0b 20125#define elf_backend_init_file_header elf32_arm_init_file_header
99e4ae17 20126#define elf_backend_reloc_type_class elf32_arm_reloc_type_class
c178919b 20127#define elf_backend_object_p elf32_arm_object_p
07d6d2b8
AM
20128#define elf_backend_fake_sections elf32_arm_fake_sections
20129#define elf_backend_section_from_shdr elf32_arm_section_from_shdr
20130#define elf_backend_final_write_processing elf32_arm_final_write_processing
20131#define elf_backend_copy_indirect_symbol elf32_arm_copy_indirect_symbol
0beaef2b 20132#define elf_backend_size_info elf32_arm_size_info
b294bdf8 20133#define elf_backend_modify_segment_map elf32_arm_modify_segment_map
07d6d2b8
AM
20134#define elf_backend_additional_program_headers elf32_arm_additional_program_headers
20135#define elf_backend_output_arch_local_syms elf32_arm_output_arch_local_syms
54ddd295 20136#define elf_backend_filter_implib_symbols elf32_arm_filter_implib_symbols
07d6d2b8 20137#define elf_backend_begin_write_processing elf32_arm_begin_write_processing
34e77a92 20138#define elf_backend_add_symbol_hook elf32_arm_add_symbol_hook
491d01d3 20139#define elf_backend_count_additional_relocs elf32_arm_count_additional_relocs
fca2a38f 20140#define elf_backend_symbol_processing elf32_arm_backend_symbol_processing
906e58ca
NC
20141
20142#define elf_backend_can_refcount 1
20143#define elf_backend_can_gc_sections 1
20144#define elf_backend_plt_readonly 1
20145#define elf_backend_want_got_plt 1
20146#define elf_backend_want_plt_sym 0
5474d94f 20147#define elf_backend_want_dynrelro 1
906e58ca
NC
20148#define elf_backend_may_use_rel_p 1
20149#define elf_backend_may_use_rela_p 0
4e7fd91e 20150#define elf_backend_default_use_rela_p 0
64f52338 20151#define elf_backend_dtrel_excludes_plt 1
252b5132 20152
04f7c78d 20153#define elf_backend_got_header_size 12
b68a20d6 20154#define elf_backend_extern_protected_data 1
04f7c78d 20155
07d6d2b8 20156#undef elf_backend_obj_attrs_vendor
906e58ca 20157#define elf_backend_obj_attrs_vendor "aeabi"
07d6d2b8 20158#undef elf_backend_obj_attrs_section
906e58ca 20159#define elf_backend_obj_attrs_section ".ARM.attributes"
07d6d2b8 20160#undef elf_backend_obj_attrs_arg_type
906e58ca 20161#define elf_backend_obj_attrs_arg_type elf32_arm_obj_attrs_arg_type
07d6d2b8 20162#undef elf_backend_obj_attrs_section_type
104d59d1 20163#define elf_backend_obj_attrs_section_type SHT_ARM_ATTRIBUTES
b38cadfb 20164#define elf_backend_obj_attrs_order elf32_arm_obj_attrs_order
07d6d2b8 20165#define elf_backend_obj_attrs_handle_unknown elf32_arm_obj_attrs_handle_unknown
104d59d1 20166
07d6d2b8 20167#undef elf_backend_section_flags
ac4c9b04 20168#define elf_backend_section_flags elf32_arm_section_flags
07d6d2b8
AM
20169#undef elf_backend_lookup_section_flags_hook
20170#define elf_backend_lookup_section_flags_hook elf32_arm_lookup_section_flags
ac4c9b04 20171
0a1b45a2 20172#define elf_backend_linux_prpsinfo32_ugid16 true
a2f63b2e 20173
252b5132 20174#include "elf32-target.h"
7f266840 20175
b38cadfb
NC
20176/* Native Client targets. */
20177
20178#undef TARGET_LITTLE_SYM
6d00b590 20179#define TARGET_LITTLE_SYM arm_elf32_nacl_le_vec
b38cadfb
NC
20180#undef TARGET_LITTLE_NAME
20181#define TARGET_LITTLE_NAME "elf32-littlearm-nacl"
20182#undef TARGET_BIG_SYM
6d00b590 20183#define TARGET_BIG_SYM arm_elf32_nacl_be_vec
b38cadfb
NC
20184#undef TARGET_BIG_NAME
20185#define TARGET_BIG_NAME "elf32-bigarm-nacl"
20186
20187/* Like elf32_arm_link_hash_table_create -- but overrides
20188 appropriately for NaCl. */
20189
20190static struct bfd_link_hash_table *
20191elf32_arm_nacl_link_hash_table_create (bfd *abfd)
20192{
20193 struct bfd_link_hash_table *ret;
20194
20195 ret = elf32_arm_link_hash_table_create (abfd);
20196 if (ret)
20197 {
20198 struct elf32_arm_link_hash_table *htab
20199 = (struct elf32_arm_link_hash_table *) ret;
20200
b38cadfb
NC
20201 htab->plt_header_size = 4 * ARRAY_SIZE (elf32_arm_nacl_plt0_entry);
20202 htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_arm_nacl_plt_entry);
20203 }
20204 return ret;
20205}
20206
20207/* Since NaCl doesn't use the ARM-specific unwind format, we don't
20208 really need to use elf32_arm_modify_segment_map. But we do it
20209 anyway just to reduce gratuitous differences with the stock ARM backend. */
20210
0a1b45a2 20211static bool
b38cadfb
NC
20212elf32_arm_nacl_modify_segment_map (bfd *abfd, struct bfd_link_info *info)
20213{
20214 return (elf32_arm_modify_segment_map (abfd, info)
20215 && nacl_modify_segment_map (abfd, info));
20216}
20217
0a1b45a2 20218static bool
cc364be6 20219elf32_arm_nacl_final_write_processing (bfd *abfd)
887badb3 20220{
cc364be6
AM
20221 arm_final_write_processing (abfd);
20222 return nacl_final_write_processing (abfd);
887badb3
RM
20223}
20224
6a631e86
YG
20225static bfd_vma
20226elf32_arm_nacl_plt_sym_val (bfd_vma i, const asection *plt,
20227 const arelent *rel ATTRIBUTE_UNUSED)
20228{
20229 return plt->vma
20230 + 4 * (ARRAY_SIZE (elf32_arm_nacl_plt0_entry) +
20231 i * ARRAY_SIZE (elf32_arm_nacl_plt_entry));
20232}
887badb3 20233
b38cadfb 20234#undef elf32_bed
6a631e86 20235#define elf32_bed elf32_arm_nacl_bed
b38cadfb
NC
20236#undef bfd_elf32_bfd_link_hash_table_create
20237#define bfd_elf32_bfd_link_hash_table_create \
20238 elf32_arm_nacl_link_hash_table_create
20239#undef elf_backend_plt_alignment
6a631e86 20240#define elf_backend_plt_alignment 4
b38cadfb
NC
20241#undef elf_backend_modify_segment_map
20242#define elf_backend_modify_segment_map elf32_arm_nacl_modify_segment_map
6d6c25c8
AM
20243#undef elf_backend_modify_headers
20244#define elf_backend_modify_headers nacl_modify_headers
887badb3
RM
20245#undef elf_backend_final_write_processing
20246#define elf_backend_final_write_processing elf32_arm_nacl_final_write_processing
6a631e86
YG
20247#undef bfd_elf32_get_synthetic_symtab
20248#undef elf_backend_plt_sym_val
20249#define elf_backend_plt_sym_val elf32_arm_nacl_plt_sym_val
5522f910 20250#undef elf_backend_copy_special_section_fields
b38cadfb 20251
887badb3
RM
20252#undef ELF_MINPAGESIZE
20253#undef ELF_COMMONPAGESIZE
20254
90c14f0c
L
20255#undef ELF_TARGET_OS
20256#define ELF_TARGET_OS is_nacl
b38cadfb
NC
20257
20258#include "elf32-target.h"
20259
20260/* Reset to defaults. */
20261#undef elf_backend_plt_alignment
20262#undef elf_backend_modify_segment_map
20263#define elf_backend_modify_segment_map elf32_arm_modify_segment_map
6d6c25c8 20264#undef elf_backend_modify_headers
887badb3
RM
20265#undef elf_backend_final_write_processing
20266#define elf_backend_final_write_processing elf32_arm_final_write_processing
20267#undef ELF_MINPAGESIZE
20268#define ELF_MINPAGESIZE 0x1000
20269#undef ELF_COMMONPAGESIZE
20270#define ELF_COMMONPAGESIZE 0x1000
20271
b38cadfb 20272
617a5ada
CL
20273/* FDPIC Targets. */
20274
20275#undef TARGET_LITTLE_SYM
20276#define TARGET_LITTLE_SYM arm_elf32_fdpic_le_vec
20277#undef TARGET_LITTLE_NAME
20278#define TARGET_LITTLE_NAME "elf32-littlearm-fdpic"
20279#undef TARGET_BIG_SYM
20280#define TARGET_BIG_SYM arm_elf32_fdpic_be_vec
20281#undef TARGET_BIG_NAME
20282#define TARGET_BIG_NAME "elf32-bigarm-fdpic"
20283#undef elf_match_priority
20284#define elf_match_priority 128
18a20338
CL
20285#undef ELF_OSABI
20286#define ELF_OSABI ELFOSABI_ARM_FDPIC
617a5ada
CL
20287
20288/* Like elf32_arm_link_hash_table_create -- but overrides
20289 appropriately for FDPIC. */
20290
20291static struct bfd_link_hash_table *
20292elf32_arm_fdpic_link_hash_table_create (bfd *abfd)
20293{
20294 struct bfd_link_hash_table *ret;
20295
20296 ret = elf32_arm_link_hash_table_create (abfd);
20297 if (ret)
20298 {
20299 struct elf32_arm_link_hash_table *htab = (struct elf32_arm_link_hash_table *) ret;
20300
20301 htab->fdpic_p = 1;
20302 }
20303 return ret;
20304}
20305
e8b09b87
CL
20306/* We need dynamic symbols for every section, since segments can
20307 relocate independently. */
0a1b45a2 20308static bool
e8b09b87
CL
20309elf32_arm_fdpic_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
20310 struct bfd_link_info *info
20311 ATTRIBUTE_UNUSED,
20312 asection *p ATTRIBUTE_UNUSED)
20313{
20314 switch (elf_section_data (p)->this_hdr.sh_type)
20315 {
20316 case SHT_PROGBITS:
20317 case SHT_NOBITS:
20318 /* If sh_type is yet undecided, assume it could be
20319 SHT_PROGBITS/SHT_NOBITS. */
20320 case SHT_NULL:
0a1b45a2 20321 return false;
e8b09b87
CL
20322
20323 /* There shouldn't be section relative relocations
20324 against any other section. */
20325 default:
0a1b45a2 20326 return true;
e8b09b87
CL
20327 }
20328}
20329
617a5ada
CL
20330#undef elf32_bed
20331#define elf32_bed elf32_arm_fdpic_bed
20332
20333#undef bfd_elf32_bfd_link_hash_table_create
4b24dd1a 20334#define bfd_elf32_bfd_link_hash_table_create elf32_arm_fdpic_link_hash_table_create
617a5ada 20335
e8b09b87
CL
20336#undef elf_backend_omit_section_dynsym
20337#define elf_backend_omit_section_dynsym elf32_arm_fdpic_omit_section_dynsym
20338
90c14f0c
L
20339#undef ELF_TARGET_OS
20340
617a5ada 20341#include "elf32-target.h"
e8b09b87 20342
617a5ada 20343#undef elf_match_priority
18a20338 20344#undef ELF_OSABI
e8b09b87 20345#undef elf_backend_omit_section_dynsym
617a5ada 20346
906e58ca 20347/* VxWorks Targets. */
4e7fd91e 20348
07d6d2b8
AM
20349#undef TARGET_LITTLE_SYM
20350#define TARGET_LITTLE_SYM arm_elf32_vxworks_le_vec
20351#undef TARGET_LITTLE_NAME
20352#define TARGET_LITTLE_NAME "elf32-littlearm-vxworks"
20353#undef TARGET_BIG_SYM
20354#define TARGET_BIG_SYM arm_elf32_vxworks_be_vec
20355#undef TARGET_BIG_NAME
20356#define TARGET_BIG_NAME "elf32-bigarm-vxworks"
4e7fd91e
PB
20357
20358/* Like elf32_arm_link_hash_table_create -- but overrides
20359 appropriately for VxWorks. */
906e58ca 20360
4e7fd91e
PB
20361static struct bfd_link_hash_table *
20362elf32_arm_vxworks_link_hash_table_create (bfd *abfd)
20363{
20364 struct bfd_link_hash_table *ret;
20365
20366 ret = elf32_arm_link_hash_table_create (abfd);
20367 if (ret)
20368 {
20369 struct elf32_arm_link_hash_table *htab
00a97672 20370 = (struct elf32_arm_link_hash_table *) ret;
4e7fd91e
PB
20371 htab->use_rel = 0;
20372 }
20373 return ret;
906e58ca 20374}
4e7fd91e 20375
0a1b45a2 20376static bool
cc364be6 20377elf32_arm_vxworks_final_write_processing (bfd *abfd)
00a97672 20378{
cc364be6
AM
20379 arm_final_write_processing (abfd);
20380 return elf_vxworks_final_write_processing (abfd);
00a97672
RS
20381}
20382
906e58ca 20383#undef elf32_bed
4e7fd91e
PB
20384#define elf32_bed elf32_arm_vxworks_bed
20385
906e58ca
NC
20386#undef bfd_elf32_bfd_link_hash_table_create
20387#define bfd_elf32_bfd_link_hash_table_create elf32_arm_vxworks_link_hash_table_create
906e58ca
NC
20388#undef elf_backend_final_write_processing
20389#define elf_backend_final_write_processing elf32_arm_vxworks_final_write_processing
20390#undef elf_backend_emit_relocs
9eaff861 20391#define elf_backend_emit_relocs elf_vxworks_emit_relocs
4e7fd91e 20392
906e58ca 20393#undef elf_backend_may_use_rel_p
00a97672 20394#define elf_backend_may_use_rel_p 0
906e58ca 20395#undef elf_backend_may_use_rela_p
00a97672 20396#define elf_backend_may_use_rela_p 1
906e58ca 20397#undef elf_backend_default_use_rela_p
00a97672 20398#define elf_backend_default_use_rela_p 1
906e58ca 20399#undef elf_backend_want_plt_sym
00a97672 20400#define elf_backend_want_plt_sym 1
906e58ca 20401#undef ELF_MAXPAGESIZE
00a97672 20402#define ELF_MAXPAGESIZE 0x1000
90c14f0c
L
20403#undef ELF_TARGET_OS
20404#define ELF_TARGET_OS is_vxworks
4e7fd91e
PB
20405
20406#include "elf32-target.h"
20407
20408
21d799b5
NC
20409/* Merge backend specific data from an object file to the output
20410 object file when linking. */
20411
0a1b45a2 20412static bool
50e03d47 20413elf32_arm_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
21d799b5 20414{
50e03d47 20415 bfd *obfd = info->output_bfd;
21d799b5
NC
20416 flagword out_flags;
20417 flagword in_flags;
0a1b45a2 20418 bool flags_compatible = true;
21d799b5
NC
20419 asection *sec;
20420
cc643b88 20421 /* Check if we have the same endianness. */
50e03d47 20422 if (! _bfd_generic_verify_endian_match (ibfd, info))
0a1b45a2 20423 return false;
21d799b5
NC
20424
20425 if (! is_arm_elf (ibfd) || ! is_arm_elf (obfd))
0a1b45a2 20426 return true;
21d799b5 20427
50e03d47 20428 if (!elf32_arm_merge_eabi_attributes (ibfd, info))
0a1b45a2 20429 return false;
21d799b5
NC
20430
20431 /* The input BFD must have had its flags initialised. */
20432 /* The following seems bogus to me -- The flags are initialized in
20433 the assembler but I don't think an elf_flags_init field is
20434 written into the object. */
20435 /* BFD_ASSERT (elf_flags_init (ibfd)); */
20436
20437 in_flags = elf_elfheader (ibfd)->e_flags;
20438 out_flags = elf_elfheader (obfd)->e_flags;
20439
20440 /* In theory there is no reason why we couldn't handle this. However
20441 in practice it isn't even close to working and there is no real
20442 reason to want it. */
20443 if (EF_ARM_EABI_VERSION (in_flags) >= EF_ARM_EABI_VER4
20444 && !(ibfd->flags & DYNAMIC)
20445 && (in_flags & EF_ARM_BE8))
20446 {
871b3ab2 20447 _bfd_error_handler (_("error: %pB is already in final BE8 format"),
21d799b5 20448 ibfd);
0a1b45a2 20449 return false;
21d799b5
NC
20450 }
20451
20452 if (!elf_flags_init (obfd))
20453 {
20454 /* If the input is the default architecture and had the default
20455 flags then do not bother setting the flags for the output
20456 architecture, instead allow future merges to do this. If no
20457 future merges ever set these flags then they will retain their
99059e56
RM
20458 uninitialised values, which surprise surprise, correspond
20459 to the default values. */
21d799b5
NC
20460 if (bfd_get_arch_info (ibfd)->the_default
20461 && elf_elfheader (ibfd)->e_flags == 0)
0a1b45a2 20462 return true;
21d799b5 20463
0a1b45a2 20464 elf_flags_init (obfd) = true;
21d799b5
NC
20465 elf_elfheader (obfd)->e_flags = in_flags;
20466
20467 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
20468 && bfd_get_arch_info (obfd)->the_default)
20469 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), bfd_get_mach (ibfd));
20470
0a1b45a2 20471 return true;
21d799b5
NC
20472 }
20473
20474 /* Determine what should happen if the input ARM architecture
20475 does not match the output ARM architecture. */
20476 if (! bfd_arm_merge_machines (ibfd, obfd))
0a1b45a2 20477 return false;
21d799b5
NC
20478
20479 /* Identical flags must be compatible. */
20480 if (in_flags == out_flags)
0a1b45a2 20481 return true;
21d799b5
NC
20482
20483 /* Check to see if the input BFD actually contains any sections. If
20484 not, its flags may not have been initialised either, but it
20485 cannot actually cause any incompatiblity. Do not short-circuit
20486 dynamic objects; their section list may be emptied by
20487 elf_link_add_object_symbols.
20488
20489 Also check to see if there are no code sections in the input.
20490 In this case there is no need to check for code specific flags.
20491 XXX - do we need to worry about floating-point format compatability
20492 in data sections ? */
20493 if (!(ibfd->flags & DYNAMIC))
20494 {
0a1b45a2
AM
20495 bool null_input_bfd = true;
20496 bool only_data_sections = true;
21d799b5
NC
20497
20498 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
20499 {
20500 /* Ignore synthetic glue sections. */
20501 if (strcmp (sec->name, ".glue_7")
20502 && strcmp (sec->name, ".glue_7t"))
20503 {
fd361982 20504 if ((bfd_section_flags (sec)
21d799b5
NC
20505 & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
20506 == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
0a1b45a2 20507 only_data_sections = false;
21d799b5 20508
0a1b45a2 20509 null_input_bfd = false;
21d799b5
NC
20510 break;
20511 }
20512 }
20513
20514 if (null_input_bfd || only_data_sections)
0a1b45a2 20515 return true;
21d799b5
NC
20516 }
20517
20518 /* Complain about various flag mismatches. */
20519 if (!elf32_arm_versions_compatible (EF_ARM_EABI_VERSION (in_flags),
20520 EF_ARM_EABI_VERSION (out_flags)))
20521 {
20522 _bfd_error_handler
90b6238f 20523 (_("error: source object %pB has EABI version %d, but target %pB has EABI version %d"),
c08bb8dd
AM
20524 ibfd, (in_flags & EF_ARM_EABIMASK) >> 24,
20525 obfd, (out_flags & EF_ARM_EABIMASK) >> 24);
0a1b45a2 20526 return false;
21d799b5
NC
20527 }
20528
20529 /* Not sure what needs to be checked for EABI versions >= 1. */
20530 /* VxWorks libraries do not use these flags. */
20531 if (get_elf_backend_data (obfd) != &elf32_arm_vxworks_bed
20532 && get_elf_backend_data (ibfd) != &elf32_arm_vxworks_bed
20533 && EF_ARM_EABI_VERSION (in_flags) == EF_ARM_EABI_UNKNOWN)
20534 {
20535 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
20536 {
20537 _bfd_error_handler
871b3ab2 20538 (_("error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d"),
c08bb8dd
AM
20539 ibfd, in_flags & EF_ARM_APCS_26 ? 26 : 32,
20540 obfd, out_flags & EF_ARM_APCS_26 ? 26 : 32);
0a1b45a2 20541 flags_compatible = false;
21d799b5
NC
20542 }
20543
20544 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
20545 {
20546 if (in_flags & EF_ARM_APCS_FLOAT)
20547 _bfd_error_handler
871b3ab2 20548 (_("error: %pB passes floats in float registers, whereas %pB passes them in integer registers"),
21d799b5
NC
20549 ibfd, obfd);
20550 else
20551 _bfd_error_handler
871b3ab2 20552 (_("error: %pB passes floats in integer registers, whereas %pB passes them in float registers"),
21d799b5
NC
20553 ibfd, obfd);
20554
0a1b45a2 20555 flags_compatible = false;
21d799b5
NC
20556 }
20557
20558 if ((in_flags & EF_ARM_VFP_FLOAT) != (out_flags & EF_ARM_VFP_FLOAT))
20559 {
20560 if (in_flags & EF_ARM_VFP_FLOAT)
20561 _bfd_error_handler
90b6238f
AM
20562 (_("error: %pB uses %s instructions, whereas %pB does not"),
20563 ibfd, "VFP", obfd);
21d799b5
NC
20564 else
20565 _bfd_error_handler
90b6238f
AM
20566 (_("error: %pB uses %s instructions, whereas %pB does not"),
20567 ibfd, "FPA", obfd);
21d799b5 20568
0a1b45a2 20569 flags_compatible = false;
21d799b5
NC
20570 }
20571
20572 if ((in_flags & EF_ARM_MAVERICK_FLOAT) != (out_flags & EF_ARM_MAVERICK_FLOAT))
20573 {
20574 if (in_flags & EF_ARM_MAVERICK_FLOAT)
20575 _bfd_error_handler
90b6238f
AM
20576 (_("error: %pB uses %s instructions, whereas %pB does not"),
20577 ibfd, "Maverick", obfd);
21d799b5
NC
20578 else
20579 _bfd_error_handler
90b6238f
AM
20580 (_("error: %pB does not use %s instructions, whereas %pB does"),
20581 ibfd, "Maverick", obfd);
21d799b5 20582
0a1b45a2 20583 flags_compatible = false;
21d799b5
NC
20584 }
20585
20586#ifdef EF_ARM_SOFT_FLOAT
20587 if ((in_flags & EF_ARM_SOFT_FLOAT) != (out_flags & EF_ARM_SOFT_FLOAT))
20588 {
20589 /* We can allow interworking between code that is VFP format
20590 layout, and uses either soft float or integer regs for
20591 passing floating point arguments and results. We already
20592 know that the APCS_FLOAT flags match; similarly for VFP
20593 flags. */
20594 if ((in_flags & EF_ARM_APCS_FLOAT) != 0
20595 || (in_flags & EF_ARM_VFP_FLOAT) == 0)
20596 {
20597 if (in_flags & EF_ARM_SOFT_FLOAT)
20598 _bfd_error_handler
871b3ab2 20599 (_("error: %pB uses software FP, whereas %pB uses hardware FP"),
21d799b5
NC
20600 ibfd, obfd);
20601 else
20602 _bfd_error_handler
871b3ab2 20603 (_("error: %pB uses hardware FP, whereas %pB uses software FP"),
21d799b5
NC
20604 ibfd, obfd);
20605
0a1b45a2 20606 flags_compatible = false;
21d799b5
NC
20607 }
20608 }
20609#endif
20610
20611 /* Interworking mismatch is only a warning. */
20612 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
20613 {
20614 if (in_flags & EF_ARM_INTERWORK)
20615 {
20616 _bfd_error_handler
90b6238f 20617 (_("warning: %pB supports interworking, whereas %pB does not"),
21d799b5
NC
20618 ibfd, obfd);
20619 }
20620 else
20621 {
20622 _bfd_error_handler
90b6238f 20623 (_("warning: %pB does not support interworking, whereas %pB does"),
21d799b5
NC
20624 ibfd, obfd);
20625 }
20626 }
20627 }
20628
20629 return flags_compatible;
20630}
This page took 3.191395 seconds and 4 git commands to generate.