Automatic date update in version.in
[binutils-gdb.git] / bfd / elf32-arm.c
1 /* 32-bit ELF support for ARM
2 Copyright (C) 1998-2020 Free Software Foundation, Inc.
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
8 the Free Software Foundation; either version 3 of the License, or
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
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
20
21 #include "sysdep.h"
22 #include <limits.h>
23
24 #include "bfd.h"
25 #include "libiberty.h"
26 #include "libbfd.h"
27 #include "elf-bfd.h"
28 #include "elf-nacl.h"
29 #include "elf-vxworks.h"
30 #include "elf/arm.h"
31 #include "elf32-arm.h"
32 #include "cpu-arm.h"
33
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
60 #define elf_info_to_howto NULL
61 #define elf_info_to_howto_rel elf32_arm_info_to_howto
62
63 #define ARM_ELF_ABI_VERSION 0
64 #define ARM_ELF_OS_ABI_VERSION ELFOSABI_ARM
65
66 /* The Adjusted Place, as defined by AAELF. */
67 #define Pa(X) ((X) & 0xfffffffc)
68
69 static bfd_boolean elf32_arm_write_section (bfd *output_bfd,
70 struct bfd_link_info *link_info,
71 asection *sec,
72 bfd_byte *contents);
73
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
78 static reloc_howto_type elf32_arm_howto_table_1[] =
79 {
80 /* No relocation. */
81 HOWTO (R_ARM_NONE, /* type */
82 0, /* rightshift */
83 3, /* size (0 = byte, 1 = short, 2 = long) */
84 0, /* bitsize */
85 FALSE, /* pc_relative */
86 0, /* bitpos */
87 complain_overflow_dont,/* complain_on_overflow */
88 bfd_elf_generic_reloc, /* special_function */
89 "R_ARM_NONE", /* name */
90 FALSE, /* partial_inplace */
91 0, /* src_mask */
92 0, /* dst_mask */
93 FALSE), /* pcrel_offset */
94
95 HOWTO (R_ARM_PC24, /* type */
96 2, /* rightshift */
97 2, /* size (0 = byte, 1 = short, 2 = long) */
98 24, /* bitsize */
99 TRUE, /* pc_relative */
100 0, /* bitpos */
101 complain_overflow_signed,/* complain_on_overflow */
102 bfd_elf_generic_reloc, /* special_function */
103 "R_ARM_PC24", /* name */
104 FALSE, /* partial_inplace */
105 0x00ffffff, /* src_mask */
106 0x00ffffff, /* dst_mask */
107 TRUE), /* pcrel_offset */
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 */
114 FALSE, /* pc_relative */
115 0, /* bitpos */
116 complain_overflow_bitfield,/* complain_on_overflow */
117 bfd_elf_generic_reloc, /* special_function */
118 "R_ARM_ABS32", /* name */
119 FALSE, /* partial_inplace */
120 0xffffffff, /* src_mask */
121 0xffffffff, /* dst_mask */
122 FALSE), /* pcrel_offset */
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 */
129 TRUE, /* pc_relative */
130 0, /* bitpos */
131 complain_overflow_bitfield,/* complain_on_overflow */
132 bfd_elf_generic_reloc, /* special_function */
133 "R_ARM_REL32", /* name */
134 FALSE, /* partial_inplace */
135 0xffffffff, /* src_mask */
136 0xffffffff, /* dst_mask */
137 TRUE), /* pcrel_offset */
138
139 /* 8 bit absolute - R_ARM_LDR_PC_G0 in AAELF */
140 HOWTO (R_ARM_LDR_PC_G0, /* type */
141 0, /* rightshift */
142 0, /* size (0 = byte, 1 = short, 2 = long) */
143 32, /* bitsize */
144 TRUE, /* pc_relative */
145 0, /* bitpos */
146 complain_overflow_dont,/* complain_on_overflow */
147 bfd_elf_generic_reloc, /* special_function */
148 "R_ARM_LDR_PC_G0", /* name */
149 FALSE, /* partial_inplace */
150 0xffffffff, /* src_mask */
151 0xffffffff, /* dst_mask */
152 TRUE), /* pcrel_offset */
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 */
159 FALSE, /* pc_relative */
160 0, /* bitpos */
161 complain_overflow_bitfield,/* complain_on_overflow */
162 bfd_elf_generic_reloc, /* special_function */
163 "R_ARM_ABS16", /* name */
164 FALSE, /* partial_inplace */
165 0x0000ffff, /* src_mask */
166 0x0000ffff, /* dst_mask */
167 FALSE), /* pcrel_offset */
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 */
174 FALSE, /* pc_relative */
175 0, /* bitpos */
176 complain_overflow_bitfield,/* complain_on_overflow */
177 bfd_elf_generic_reloc, /* special_function */
178 "R_ARM_ABS12", /* name */
179 FALSE, /* partial_inplace */
180 0x00000fff, /* src_mask */
181 0x00000fff, /* dst_mask */
182 FALSE), /* pcrel_offset */
183
184 HOWTO (R_ARM_THM_ABS5, /* type */
185 6, /* rightshift */
186 1, /* size (0 = byte, 1 = short, 2 = long) */
187 5, /* bitsize */
188 FALSE, /* pc_relative */
189 0, /* bitpos */
190 complain_overflow_bitfield,/* complain_on_overflow */
191 bfd_elf_generic_reloc, /* special_function */
192 "R_ARM_THM_ABS5", /* name */
193 FALSE, /* partial_inplace */
194 0x000007e0, /* src_mask */
195 0x000007e0, /* dst_mask */
196 FALSE), /* pcrel_offset */
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 */
203 FALSE, /* pc_relative */
204 0, /* bitpos */
205 complain_overflow_bitfield,/* complain_on_overflow */
206 bfd_elf_generic_reloc, /* special_function */
207 "R_ARM_ABS8", /* name */
208 FALSE, /* partial_inplace */
209 0x000000ff, /* src_mask */
210 0x000000ff, /* dst_mask */
211 FALSE), /* pcrel_offset */
212
213 HOWTO (R_ARM_SBREL32, /* type */
214 0, /* rightshift */
215 2, /* size (0 = byte, 1 = short, 2 = long) */
216 32, /* bitsize */
217 FALSE, /* pc_relative */
218 0, /* bitpos */
219 complain_overflow_dont,/* complain_on_overflow */
220 bfd_elf_generic_reloc, /* special_function */
221 "R_ARM_SBREL32", /* name */
222 FALSE, /* partial_inplace */
223 0xffffffff, /* src_mask */
224 0xffffffff, /* dst_mask */
225 FALSE), /* pcrel_offset */
226
227 HOWTO (R_ARM_THM_CALL, /* type */
228 1, /* rightshift */
229 2, /* size (0 = byte, 1 = short, 2 = long) */
230 24, /* bitsize */
231 TRUE, /* pc_relative */
232 0, /* bitpos */
233 complain_overflow_signed,/* complain_on_overflow */
234 bfd_elf_generic_reloc, /* special_function */
235 "R_ARM_THM_CALL", /* name */
236 FALSE, /* partial_inplace */
237 0x07ff2fff, /* src_mask */
238 0x07ff2fff, /* dst_mask */
239 TRUE), /* pcrel_offset */
240
241 HOWTO (R_ARM_THM_PC8, /* type */
242 1, /* rightshift */
243 1, /* size (0 = byte, 1 = short, 2 = long) */
244 8, /* bitsize */
245 TRUE, /* pc_relative */
246 0, /* bitpos */
247 complain_overflow_signed,/* complain_on_overflow */
248 bfd_elf_generic_reloc, /* special_function */
249 "R_ARM_THM_PC8", /* name */
250 FALSE, /* partial_inplace */
251 0x000000ff, /* src_mask */
252 0x000000ff, /* dst_mask */
253 TRUE), /* pcrel_offset */
254
255 HOWTO (R_ARM_BREL_ADJ, /* type */
256 1, /* rightshift */
257 1, /* size (0 = byte, 1 = short, 2 = long) */
258 32, /* bitsize */
259 FALSE, /* pc_relative */
260 0, /* bitpos */
261 complain_overflow_signed,/* complain_on_overflow */
262 bfd_elf_generic_reloc, /* special_function */
263 "R_ARM_BREL_ADJ", /* name */
264 FALSE, /* partial_inplace */
265 0xffffffff, /* src_mask */
266 0xffffffff, /* dst_mask */
267 FALSE), /* pcrel_offset */
268
269 HOWTO (R_ARM_TLS_DESC, /* type */
270 0, /* rightshift */
271 2, /* size (0 = byte, 1 = short, 2 = long) */
272 32, /* bitsize */
273 FALSE, /* pc_relative */
274 0, /* bitpos */
275 complain_overflow_bitfield,/* complain_on_overflow */
276 bfd_elf_generic_reloc, /* special_function */
277 "R_ARM_TLS_DESC", /* name */
278 FALSE, /* partial_inplace */
279 0xffffffff, /* src_mask */
280 0xffffffff, /* dst_mask */
281 FALSE), /* pcrel_offset */
282
283 HOWTO (R_ARM_THM_SWI8, /* type */
284 0, /* rightshift */
285 0, /* size (0 = byte, 1 = short, 2 = long) */
286 0, /* bitsize */
287 FALSE, /* pc_relative */
288 0, /* bitpos */
289 complain_overflow_signed,/* complain_on_overflow */
290 bfd_elf_generic_reloc, /* special_function */
291 "R_ARM_SWI8", /* name */
292 FALSE, /* partial_inplace */
293 0x00000000, /* src_mask */
294 0x00000000, /* dst_mask */
295 FALSE), /* pcrel_offset */
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) */
301 24, /* bitsize */
302 TRUE, /* pc_relative */
303 0, /* bitpos */
304 complain_overflow_signed,/* complain_on_overflow */
305 bfd_elf_generic_reloc, /* special_function */
306 "R_ARM_XPC25", /* name */
307 FALSE, /* partial_inplace */
308 0x00ffffff, /* src_mask */
309 0x00ffffff, /* dst_mask */
310 TRUE), /* pcrel_offset */
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) */
316 24, /* bitsize */
317 TRUE, /* pc_relative */
318 0, /* bitpos */
319 complain_overflow_signed,/* complain_on_overflow */
320 bfd_elf_generic_reloc, /* special_function */
321 "R_ARM_THM_XPC22", /* name */
322 FALSE, /* partial_inplace */
323 0x07ff2fff, /* src_mask */
324 0x07ff2fff, /* dst_mask */
325 TRUE), /* pcrel_offset */
326
327 /* Dynamic TLS relocations. */
328
329 HOWTO (R_ARM_TLS_DTPMOD32, /* type */
330 0, /* rightshift */
331 2, /* size (0 = byte, 1 = short, 2 = long) */
332 32, /* bitsize */
333 FALSE, /* pc_relative */
334 0, /* bitpos */
335 complain_overflow_bitfield,/* complain_on_overflow */
336 bfd_elf_generic_reloc, /* special_function */
337 "R_ARM_TLS_DTPMOD32", /* name */
338 TRUE, /* partial_inplace */
339 0xffffffff, /* src_mask */
340 0xffffffff, /* dst_mask */
341 FALSE), /* pcrel_offset */
342
343 HOWTO (R_ARM_TLS_DTPOFF32, /* type */
344 0, /* rightshift */
345 2, /* size (0 = byte, 1 = short, 2 = long) */
346 32, /* bitsize */
347 FALSE, /* pc_relative */
348 0, /* bitpos */
349 complain_overflow_bitfield,/* complain_on_overflow */
350 bfd_elf_generic_reloc, /* special_function */
351 "R_ARM_TLS_DTPOFF32", /* name */
352 TRUE, /* partial_inplace */
353 0xffffffff, /* src_mask */
354 0xffffffff, /* dst_mask */
355 FALSE), /* pcrel_offset */
356
357 HOWTO (R_ARM_TLS_TPOFF32, /* type */
358 0, /* rightshift */
359 2, /* size (0 = byte, 1 = short, 2 = long) */
360 32, /* bitsize */
361 FALSE, /* pc_relative */
362 0, /* bitpos */
363 complain_overflow_bitfield,/* complain_on_overflow */
364 bfd_elf_generic_reloc, /* special_function */
365 "R_ARM_TLS_TPOFF32", /* name */
366 TRUE, /* partial_inplace */
367 0xffffffff, /* src_mask */
368 0xffffffff, /* dst_mask */
369 FALSE), /* pcrel_offset */
370
371 /* Relocs used in ARM Linux */
372
373 HOWTO (R_ARM_COPY, /* type */
374 0, /* rightshift */
375 2, /* size (0 = byte, 1 = short, 2 = long) */
376 32, /* bitsize */
377 FALSE, /* pc_relative */
378 0, /* bitpos */
379 complain_overflow_bitfield,/* complain_on_overflow */
380 bfd_elf_generic_reloc, /* special_function */
381 "R_ARM_COPY", /* name */
382 TRUE, /* partial_inplace */
383 0xffffffff, /* src_mask */
384 0xffffffff, /* dst_mask */
385 FALSE), /* pcrel_offset */
386
387 HOWTO (R_ARM_GLOB_DAT, /* type */
388 0, /* rightshift */
389 2, /* size (0 = byte, 1 = short, 2 = long) */
390 32, /* bitsize */
391 FALSE, /* pc_relative */
392 0, /* bitpos */
393 complain_overflow_bitfield,/* complain_on_overflow */
394 bfd_elf_generic_reloc, /* special_function */
395 "R_ARM_GLOB_DAT", /* name */
396 TRUE, /* partial_inplace */
397 0xffffffff, /* src_mask */
398 0xffffffff, /* dst_mask */
399 FALSE), /* pcrel_offset */
400
401 HOWTO (R_ARM_JUMP_SLOT, /* type */
402 0, /* rightshift */
403 2, /* size (0 = byte, 1 = short, 2 = long) */
404 32, /* bitsize */
405 FALSE, /* pc_relative */
406 0, /* bitpos */
407 complain_overflow_bitfield,/* complain_on_overflow */
408 bfd_elf_generic_reloc, /* special_function */
409 "R_ARM_JUMP_SLOT", /* name */
410 TRUE, /* partial_inplace */
411 0xffffffff, /* src_mask */
412 0xffffffff, /* dst_mask */
413 FALSE), /* pcrel_offset */
414
415 HOWTO (R_ARM_RELATIVE, /* type */
416 0, /* rightshift */
417 2, /* size (0 = byte, 1 = short, 2 = long) */
418 32, /* bitsize */
419 FALSE, /* pc_relative */
420 0, /* bitpos */
421 complain_overflow_bitfield,/* complain_on_overflow */
422 bfd_elf_generic_reloc, /* special_function */
423 "R_ARM_RELATIVE", /* name */
424 TRUE, /* partial_inplace */
425 0xffffffff, /* src_mask */
426 0xffffffff, /* dst_mask */
427 FALSE), /* pcrel_offset */
428
429 HOWTO (R_ARM_GOTOFF32, /* type */
430 0, /* rightshift */
431 2, /* size (0 = byte, 1 = short, 2 = long) */
432 32, /* bitsize */
433 FALSE, /* pc_relative */
434 0, /* bitpos */
435 complain_overflow_bitfield,/* complain_on_overflow */
436 bfd_elf_generic_reloc, /* special_function */
437 "R_ARM_GOTOFF32", /* name */
438 TRUE, /* partial_inplace */
439 0xffffffff, /* src_mask */
440 0xffffffff, /* dst_mask */
441 FALSE), /* pcrel_offset */
442
443 HOWTO (R_ARM_GOTPC, /* type */
444 0, /* rightshift */
445 2, /* size (0 = byte, 1 = short, 2 = long) */
446 32, /* bitsize */
447 TRUE, /* pc_relative */
448 0, /* bitpos */
449 complain_overflow_bitfield,/* complain_on_overflow */
450 bfd_elf_generic_reloc, /* special_function */
451 "R_ARM_GOTPC", /* name */
452 TRUE, /* partial_inplace */
453 0xffffffff, /* src_mask */
454 0xffffffff, /* dst_mask */
455 TRUE), /* pcrel_offset */
456
457 HOWTO (R_ARM_GOT32, /* type */
458 0, /* rightshift */
459 2, /* size (0 = byte, 1 = short, 2 = long) */
460 32, /* bitsize */
461 FALSE, /* pc_relative */
462 0, /* bitpos */
463 complain_overflow_bitfield,/* complain_on_overflow */
464 bfd_elf_generic_reloc, /* special_function */
465 "R_ARM_GOT32", /* name */
466 TRUE, /* partial_inplace */
467 0xffffffff, /* src_mask */
468 0xffffffff, /* dst_mask */
469 FALSE), /* pcrel_offset */
470
471 HOWTO (R_ARM_PLT32, /* type */
472 2, /* rightshift */
473 2, /* size (0 = byte, 1 = short, 2 = long) */
474 24, /* bitsize */
475 TRUE, /* pc_relative */
476 0, /* bitpos */
477 complain_overflow_bitfield,/* complain_on_overflow */
478 bfd_elf_generic_reloc, /* special_function */
479 "R_ARM_PLT32", /* name */
480 FALSE, /* partial_inplace */
481 0x00ffffff, /* src_mask */
482 0x00ffffff, /* dst_mask */
483 TRUE), /* pcrel_offset */
484
485 HOWTO (R_ARM_CALL, /* type */
486 2, /* rightshift */
487 2, /* size (0 = byte, 1 = short, 2 = long) */
488 24, /* bitsize */
489 TRUE, /* pc_relative */
490 0, /* bitpos */
491 complain_overflow_signed,/* complain_on_overflow */
492 bfd_elf_generic_reloc, /* special_function */
493 "R_ARM_CALL", /* name */
494 FALSE, /* partial_inplace */
495 0x00ffffff, /* src_mask */
496 0x00ffffff, /* dst_mask */
497 TRUE), /* pcrel_offset */
498
499 HOWTO (R_ARM_JUMP24, /* type */
500 2, /* rightshift */
501 2, /* size (0 = byte, 1 = short, 2 = long) */
502 24, /* bitsize */
503 TRUE, /* pc_relative */
504 0, /* bitpos */
505 complain_overflow_signed,/* complain_on_overflow */
506 bfd_elf_generic_reloc, /* special_function */
507 "R_ARM_JUMP24", /* name */
508 FALSE, /* partial_inplace */
509 0x00ffffff, /* src_mask */
510 0x00ffffff, /* dst_mask */
511 TRUE), /* pcrel_offset */
512
513 HOWTO (R_ARM_THM_JUMP24, /* type */
514 1, /* rightshift */
515 2, /* size (0 = byte, 1 = short, 2 = long) */
516 24, /* bitsize */
517 TRUE, /* pc_relative */
518 0, /* bitpos */
519 complain_overflow_signed,/* complain_on_overflow */
520 bfd_elf_generic_reloc, /* special_function */
521 "R_ARM_THM_JUMP24", /* name */
522 FALSE, /* partial_inplace */
523 0x07ff2fff, /* src_mask */
524 0x07ff2fff, /* dst_mask */
525 TRUE), /* pcrel_offset */
526
527 HOWTO (R_ARM_BASE_ABS, /* type */
528 0, /* rightshift */
529 2, /* size (0 = byte, 1 = short, 2 = long) */
530 32, /* bitsize */
531 FALSE, /* pc_relative */
532 0, /* bitpos */
533 complain_overflow_dont,/* complain_on_overflow */
534 bfd_elf_generic_reloc, /* special_function */
535 "R_ARM_BASE_ABS", /* name */
536 FALSE, /* partial_inplace */
537 0xffffffff, /* src_mask */
538 0xffffffff, /* dst_mask */
539 FALSE), /* pcrel_offset */
540
541 HOWTO (R_ARM_ALU_PCREL7_0, /* type */
542 0, /* rightshift */
543 2, /* size (0 = byte, 1 = short, 2 = long) */
544 12, /* bitsize */
545 TRUE, /* pc_relative */
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 */
550 FALSE, /* partial_inplace */
551 0x00000fff, /* src_mask */
552 0x00000fff, /* dst_mask */
553 TRUE), /* pcrel_offset */
554
555 HOWTO (R_ARM_ALU_PCREL15_8, /* type */
556 0, /* rightshift */
557 2, /* size (0 = byte, 1 = short, 2 = long) */
558 12, /* bitsize */
559 TRUE, /* pc_relative */
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 */
564 FALSE, /* partial_inplace */
565 0x00000fff, /* src_mask */
566 0x00000fff, /* dst_mask */
567 TRUE), /* pcrel_offset */
568
569 HOWTO (R_ARM_ALU_PCREL23_15, /* type */
570 0, /* rightshift */
571 2, /* size (0 = byte, 1 = short, 2 = long) */
572 12, /* bitsize */
573 TRUE, /* pc_relative */
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 */
578 FALSE, /* partial_inplace */
579 0x00000fff, /* src_mask */
580 0x00000fff, /* dst_mask */
581 TRUE), /* pcrel_offset */
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 */
587 FALSE, /* pc_relative */
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 */
592 FALSE, /* partial_inplace */
593 0x00000fff, /* src_mask */
594 0x00000fff, /* dst_mask */
595 FALSE), /* pcrel_offset */
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 */
601 FALSE, /* pc_relative */
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 */
606 FALSE, /* partial_inplace */
607 0x000ff000, /* src_mask */
608 0x000ff000, /* dst_mask */
609 FALSE), /* pcrel_offset */
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 */
615 FALSE, /* pc_relative */
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 */
620 FALSE, /* partial_inplace */
621 0x0ff00000, /* src_mask */
622 0x0ff00000, /* dst_mask */
623 FALSE), /* pcrel_offset */
624
625 HOWTO (R_ARM_TARGET1, /* type */
626 0, /* rightshift */
627 2, /* size (0 = byte, 1 = short, 2 = long) */
628 32, /* bitsize */
629 FALSE, /* pc_relative */
630 0, /* bitpos */
631 complain_overflow_dont,/* complain_on_overflow */
632 bfd_elf_generic_reloc, /* special_function */
633 "R_ARM_TARGET1", /* name */
634 FALSE, /* partial_inplace */
635 0xffffffff, /* src_mask */
636 0xffffffff, /* dst_mask */
637 FALSE), /* pcrel_offset */
638
639 HOWTO (R_ARM_ROSEGREL32, /* type */
640 0, /* rightshift */
641 2, /* size (0 = byte, 1 = short, 2 = long) */
642 32, /* bitsize */
643 FALSE, /* pc_relative */
644 0, /* bitpos */
645 complain_overflow_dont,/* complain_on_overflow */
646 bfd_elf_generic_reloc, /* special_function */
647 "R_ARM_ROSEGREL32", /* name */
648 FALSE, /* partial_inplace */
649 0xffffffff, /* src_mask */
650 0xffffffff, /* dst_mask */
651 FALSE), /* pcrel_offset */
652
653 HOWTO (R_ARM_V4BX, /* type */
654 0, /* rightshift */
655 2, /* size (0 = byte, 1 = short, 2 = long) */
656 32, /* bitsize */
657 FALSE, /* pc_relative */
658 0, /* bitpos */
659 complain_overflow_dont,/* complain_on_overflow */
660 bfd_elf_generic_reloc, /* special_function */
661 "R_ARM_V4BX", /* name */
662 FALSE, /* partial_inplace */
663 0xffffffff, /* src_mask */
664 0xffffffff, /* dst_mask */
665 FALSE), /* pcrel_offset */
666
667 HOWTO (R_ARM_TARGET2, /* type */
668 0, /* rightshift */
669 2, /* size (0 = byte, 1 = short, 2 = long) */
670 32, /* bitsize */
671 FALSE, /* pc_relative */
672 0, /* bitpos */
673 complain_overflow_signed,/* complain_on_overflow */
674 bfd_elf_generic_reloc, /* special_function */
675 "R_ARM_TARGET2", /* name */
676 FALSE, /* partial_inplace */
677 0xffffffff, /* src_mask */
678 0xffffffff, /* dst_mask */
679 TRUE), /* pcrel_offset */
680
681 HOWTO (R_ARM_PREL31, /* type */
682 0, /* rightshift */
683 2, /* size (0 = byte, 1 = short, 2 = long) */
684 31, /* bitsize */
685 TRUE, /* pc_relative */
686 0, /* bitpos */
687 complain_overflow_signed,/* complain_on_overflow */
688 bfd_elf_generic_reloc, /* special_function */
689 "R_ARM_PREL31", /* name */
690 FALSE, /* partial_inplace */
691 0x7fffffff, /* src_mask */
692 0x7fffffff, /* dst_mask */
693 TRUE), /* pcrel_offset */
694
695 HOWTO (R_ARM_MOVW_ABS_NC, /* type */
696 0, /* rightshift */
697 2, /* size (0 = byte, 1 = short, 2 = long) */
698 16, /* bitsize */
699 FALSE, /* pc_relative */
700 0, /* bitpos */
701 complain_overflow_dont,/* complain_on_overflow */
702 bfd_elf_generic_reloc, /* special_function */
703 "R_ARM_MOVW_ABS_NC", /* name */
704 FALSE, /* partial_inplace */
705 0x000f0fff, /* src_mask */
706 0x000f0fff, /* dst_mask */
707 FALSE), /* pcrel_offset */
708
709 HOWTO (R_ARM_MOVT_ABS, /* type */
710 0, /* rightshift */
711 2, /* size (0 = byte, 1 = short, 2 = long) */
712 16, /* bitsize */
713 FALSE, /* pc_relative */
714 0, /* bitpos */
715 complain_overflow_bitfield,/* complain_on_overflow */
716 bfd_elf_generic_reloc, /* special_function */
717 "R_ARM_MOVT_ABS", /* name */
718 FALSE, /* partial_inplace */
719 0x000f0fff, /* src_mask */
720 0x000f0fff, /* dst_mask */
721 FALSE), /* pcrel_offset */
722
723 HOWTO (R_ARM_MOVW_PREL_NC, /* type */
724 0, /* rightshift */
725 2, /* size (0 = byte, 1 = short, 2 = long) */
726 16, /* bitsize */
727 TRUE, /* pc_relative */
728 0, /* bitpos */
729 complain_overflow_dont,/* complain_on_overflow */
730 bfd_elf_generic_reloc, /* special_function */
731 "R_ARM_MOVW_PREL_NC", /* name */
732 FALSE, /* partial_inplace */
733 0x000f0fff, /* src_mask */
734 0x000f0fff, /* dst_mask */
735 TRUE), /* pcrel_offset */
736
737 HOWTO (R_ARM_MOVT_PREL, /* type */
738 0, /* rightshift */
739 2, /* size (0 = byte, 1 = short, 2 = long) */
740 16, /* bitsize */
741 TRUE, /* pc_relative */
742 0, /* bitpos */
743 complain_overflow_bitfield,/* complain_on_overflow */
744 bfd_elf_generic_reloc, /* special_function */
745 "R_ARM_MOVT_PREL", /* name */
746 FALSE, /* partial_inplace */
747 0x000f0fff, /* src_mask */
748 0x000f0fff, /* dst_mask */
749 TRUE), /* pcrel_offset */
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 */
755 FALSE, /* pc_relative */
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 */
760 FALSE, /* partial_inplace */
761 0x040f70ff, /* src_mask */
762 0x040f70ff, /* dst_mask */
763 FALSE), /* pcrel_offset */
764
765 HOWTO (R_ARM_THM_MOVT_ABS, /* type */
766 0, /* rightshift */
767 2, /* size (0 = byte, 1 = short, 2 = long) */
768 16, /* bitsize */
769 FALSE, /* pc_relative */
770 0, /* bitpos */
771 complain_overflow_bitfield,/* complain_on_overflow */
772 bfd_elf_generic_reloc, /* special_function */
773 "R_ARM_THM_MOVT_ABS", /* name */
774 FALSE, /* partial_inplace */
775 0x040f70ff, /* src_mask */
776 0x040f70ff, /* dst_mask */
777 FALSE), /* pcrel_offset */
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 */
783 TRUE, /* pc_relative */
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 */
788 FALSE, /* partial_inplace */
789 0x040f70ff, /* src_mask */
790 0x040f70ff, /* dst_mask */
791 TRUE), /* pcrel_offset */
792
793 HOWTO (R_ARM_THM_MOVT_PREL, /* type */
794 0, /* rightshift */
795 2, /* size (0 = byte, 1 = short, 2 = long) */
796 16, /* bitsize */
797 TRUE, /* pc_relative */
798 0, /* bitpos */
799 complain_overflow_bitfield,/* complain_on_overflow */
800 bfd_elf_generic_reloc, /* special_function */
801 "R_ARM_THM_MOVT_PREL", /* name */
802 FALSE, /* partial_inplace */
803 0x040f70ff, /* src_mask */
804 0x040f70ff, /* dst_mask */
805 TRUE), /* pcrel_offset */
806
807 HOWTO (R_ARM_THM_JUMP19, /* type */
808 1, /* rightshift */
809 2, /* size (0 = byte, 1 = short, 2 = long) */
810 19, /* bitsize */
811 TRUE, /* pc_relative */
812 0, /* bitpos */
813 complain_overflow_signed,/* complain_on_overflow */
814 bfd_elf_generic_reloc, /* special_function */
815 "R_ARM_THM_JUMP19", /* name */
816 FALSE, /* partial_inplace */
817 0x043f2fff, /* src_mask */
818 0x043f2fff, /* dst_mask */
819 TRUE), /* pcrel_offset */
820
821 HOWTO (R_ARM_THM_JUMP6, /* type */
822 1, /* rightshift */
823 1, /* size (0 = byte, 1 = short, 2 = long) */
824 6, /* bitsize */
825 TRUE, /* pc_relative */
826 0, /* bitpos */
827 complain_overflow_unsigned,/* complain_on_overflow */
828 bfd_elf_generic_reloc, /* special_function */
829 "R_ARM_THM_JUMP6", /* name */
830 FALSE, /* partial_inplace */
831 0x02f8, /* src_mask */
832 0x02f8, /* dst_mask */
833 TRUE), /* pcrel_offset */
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 */
842 TRUE, /* pc_relative */
843 0, /* bitpos */
844 complain_overflow_dont,/* complain_on_overflow */
845 bfd_elf_generic_reloc, /* special_function */
846 "R_ARM_THM_ALU_PREL_11_0",/* name */
847 FALSE, /* partial_inplace */
848 0xffffffff, /* src_mask */
849 0xffffffff, /* dst_mask */
850 TRUE), /* pcrel_offset */
851
852 HOWTO (R_ARM_THM_PC12, /* type */
853 0, /* rightshift */
854 2, /* size (0 = byte, 1 = short, 2 = long) */
855 13, /* bitsize */
856 TRUE, /* pc_relative */
857 0, /* bitpos */
858 complain_overflow_dont,/* complain_on_overflow */
859 bfd_elf_generic_reloc, /* special_function */
860 "R_ARM_THM_PC12", /* name */
861 FALSE, /* partial_inplace */
862 0xffffffff, /* src_mask */
863 0xffffffff, /* dst_mask */
864 TRUE), /* pcrel_offset */
865
866 HOWTO (R_ARM_ABS32_NOI, /* type */
867 0, /* rightshift */
868 2, /* size (0 = byte, 1 = short, 2 = long) */
869 32, /* bitsize */
870 FALSE, /* pc_relative */
871 0, /* bitpos */
872 complain_overflow_dont,/* complain_on_overflow */
873 bfd_elf_generic_reloc, /* special_function */
874 "R_ARM_ABS32_NOI", /* name */
875 FALSE, /* partial_inplace */
876 0xffffffff, /* src_mask */
877 0xffffffff, /* dst_mask */
878 FALSE), /* pcrel_offset */
879
880 HOWTO (R_ARM_REL32_NOI, /* type */
881 0, /* rightshift */
882 2, /* size (0 = byte, 1 = short, 2 = long) */
883 32, /* bitsize */
884 TRUE, /* pc_relative */
885 0, /* bitpos */
886 complain_overflow_dont,/* complain_on_overflow */
887 bfd_elf_generic_reloc, /* special_function */
888 "R_ARM_REL32_NOI", /* name */
889 FALSE, /* partial_inplace */
890 0xffffffff, /* src_mask */
891 0xffffffff, /* dst_mask */
892 FALSE), /* pcrel_offset */
893
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 */
900 TRUE, /* pc_relative */
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 */
905 FALSE, /* partial_inplace */
906 0xffffffff, /* src_mask */
907 0xffffffff, /* dst_mask */
908 TRUE), /* pcrel_offset */
909
910 HOWTO (R_ARM_ALU_PC_G0, /* type */
911 0, /* rightshift */
912 2, /* size (0 = byte, 1 = short, 2 = long) */
913 32, /* bitsize */
914 TRUE, /* pc_relative */
915 0, /* bitpos */
916 complain_overflow_dont,/* complain_on_overflow */
917 bfd_elf_generic_reloc, /* special_function */
918 "R_ARM_ALU_PC_G0", /* name */
919 FALSE, /* partial_inplace */
920 0xffffffff, /* src_mask */
921 0xffffffff, /* dst_mask */
922 TRUE), /* pcrel_offset */
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 */
928 TRUE, /* pc_relative */
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 */
933 FALSE, /* partial_inplace */
934 0xffffffff, /* src_mask */
935 0xffffffff, /* dst_mask */
936 TRUE), /* pcrel_offset */
937
938 HOWTO (R_ARM_ALU_PC_G1, /* type */
939 0, /* rightshift */
940 2, /* size (0 = byte, 1 = short, 2 = long) */
941 32, /* bitsize */
942 TRUE, /* pc_relative */
943 0, /* bitpos */
944 complain_overflow_dont,/* complain_on_overflow */
945 bfd_elf_generic_reloc, /* special_function */
946 "R_ARM_ALU_PC_G1", /* name */
947 FALSE, /* partial_inplace */
948 0xffffffff, /* src_mask */
949 0xffffffff, /* dst_mask */
950 TRUE), /* pcrel_offset */
951
952 HOWTO (R_ARM_ALU_PC_G2, /* type */
953 0, /* rightshift */
954 2, /* size (0 = byte, 1 = short, 2 = long) */
955 32, /* bitsize */
956 TRUE, /* pc_relative */
957 0, /* bitpos */
958 complain_overflow_dont,/* complain_on_overflow */
959 bfd_elf_generic_reloc, /* special_function */
960 "R_ARM_ALU_PC_G2", /* name */
961 FALSE, /* partial_inplace */
962 0xffffffff, /* src_mask */
963 0xffffffff, /* dst_mask */
964 TRUE), /* pcrel_offset */
965
966 HOWTO (R_ARM_LDR_PC_G1, /* type */
967 0, /* rightshift */
968 2, /* size (0 = byte, 1 = short, 2 = long) */
969 32, /* bitsize */
970 TRUE, /* pc_relative */
971 0, /* bitpos */
972 complain_overflow_dont,/* complain_on_overflow */
973 bfd_elf_generic_reloc, /* special_function */
974 "R_ARM_LDR_PC_G1", /* name */
975 FALSE, /* partial_inplace */
976 0xffffffff, /* src_mask */
977 0xffffffff, /* dst_mask */
978 TRUE), /* pcrel_offset */
979
980 HOWTO (R_ARM_LDR_PC_G2, /* type */
981 0, /* rightshift */
982 2, /* size (0 = byte, 1 = short, 2 = long) */
983 32, /* bitsize */
984 TRUE, /* pc_relative */
985 0, /* bitpos */
986 complain_overflow_dont,/* complain_on_overflow */
987 bfd_elf_generic_reloc, /* special_function */
988 "R_ARM_LDR_PC_G2", /* name */
989 FALSE, /* partial_inplace */
990 0xffffffff, /* src_mask */
991 0xffffffff, /* dst_mask */
992 TRUE), /* pcrel_offset */
993
994 HOWTO (R_ARM_LDRS_PC_G0, /* type */
995 0, /* rightshift */
996 2, /* size (0 = byte, 1 = short, 2 = long) */
997 32, /* bitsize */
998 TRUE, /* pc_relative */
999 0, /* bitpos */
1000 complain_overflow_dont,/* complain_on_overflow */
1001 bfd_elf_generic_reloc, /* special_function */
1002 "R_ARM_LDRS_PC_G0", /* name */
1003 FALSE, /* partial_inplace */
1004 0xffffffff, /* src_mask */
1005 0xffffffff, /* dst_mask */
1006 TRUE), /* pcrel_offset */
1007
1008 HOWTO (R_ARM_LDRS_PC_G1, /* type */
1009 0, /* rightshift */
1010 2, /* size (0 = byte, 1 = short, 2 = long) */
1011 32, /* bitsize */
1012 TRUE, /* pc_relative */
1013 0, /* bitpos */
1014 complain_overflow_dont,/* complain_on_overflow */
1015 bfd_elf_generic_reloc, /* special_function */
1016 "R_ARM_LDRS_PC_G1", /* name */
1017 FALSE, /* partial_inplace */
1018 0xffffffff, /* src_mask */
1019 0xffffffff, /* dst_mask */
1020 TRUE), /* pcrel_offset */
1021
1022 HOWTO (R_ARM_LDRS_PC_G2, /* type */
1023 0, /* rightshift */
1024 2, /* size (0 = byte, 1 = short, 2 = long) */
1025 32, /* bitsize */
1026 TRUE, /* pc_relative */
1027 0, /* bitpos */
1028 complain_overflow_dont,/* complain_on_overflow */
1029 bfd_elf_generic_reloc, /* special_function */
1030 "R_ARM_LDRS_PC_G2", /* name */
1031 FALSE, /* partial_inplace */
1032 0xffffffff, /* src_mask */
1033 0xffffffff, /* dst_mask */
1034 TRUE), /* pcrel_offset */
1035
1036 HOWTO (R_ARM_LDC_PC_G0, /* type */
1037 0, /* rightshift */
1038 2, /* size (0 = byte, 1 = short, 2 = long) */
1039 32, /* bitsize */
1040 TRUE, /* pc_relative */
1041 0, /* bitpos */
1042 complain_overflow_dont,/* complain_on_overflow */
1043 bfd_elf_generic_reloc, /* special_function */
1044 "R_ARM_LDC_PC_G0", /* name */
1045 FALSE, /* partial_inplace */
1046 0xffffffff, /* src_mask */
1047 0xffffffff, /* dst_mask */
1048 TRUE), /* pcrel_offset */
1049
1050 HOWTO (R_ARM_LDC_PC_G1, /* type */
1051 0, /* rightshift */
1052 2, /* size (0 = byte, 1 = short, 2 = long) */
1053 32, /* bitsize */
1054 TRUE, /* pc_relative */
1055 0, /* bitpos */
1056 complain_overflow_dont,/* complain_on_overflow */
1057 bfd_elf_generic_reloc, /* special_function */
1058 "R_ARM_LDC_PC_G1", /* name */
1059 FALSE, /* partial_inplace */
1060 0xffffffff, /* src_mask */
1061 0xffffffff, /* dst_mask */
1062 TRUE), /* pcrel_offset */
1063
1064 HOWTO (R_ARM_LDC_PC_G2, /* type */
1065 0, /* rightshift */
1066 2, /* size (0 = byte, 1 = short, 2 = long) */
1067 32, /* bitsize */
1068 TRUE, /* pc_relative */
1069 0, /* bitpos */
1070 complain_overflow_dont,/* complain_on_overflow */
1071 bfd_elf_generic_reloc, /* special_function */
1072 "R_ARM_LDC_PC_G2", /* name */
1073 FALSE, /* partial_inplace */
1074 0xffffffff, /* src_mask */
1075 0xffffffff, /* dst_mask */
1076 TRUE), /* pcrel_offset */
1077
1078 HOWTO (R_ARM_ALU_SB_G0_NC, /* type */
1079 0, /* rightshift */
1080 2, /* size (0 = byte, 1 = short, 2 = long) */
1081 32, /* bitsize */
1082 TRUE, /* pc_relative */
1083 0, /* bitpos */
1084 complain_overflow_dont,/* complain_on_overflow */
1085 bfd_elf_generic_reloc, /* special_function */
1086 "R_ARM_ALU_SB_G0_NC", /* name */
1087 FALSE, /* partial_inplace */
1088 0xffffffff, /* src_mask */
1089 0xffffffff, /* dst_mask */
1090 TRUE), /* pcrel_offset */
1091
1092 HOWTO (R_ARM_ALU_SB_G0, /* type */
1093 0, /* rightshift */
1094 2, /* size (0 = byte, 1 = short, 2 = long) */
1095 32, /* bitsize */
1096 TRUE, /* pc_relative */
1097 0, /* bitpos */
1098 complain_overflow_dont,/* complain_on_overflow */
1099 bfd_elf_generic_reloc, /* special_function */
1100 "R_ARM_ALU_SB_G0", /* name */
1101 FALSE, /* partial_inplace */
1102 0xffffffff, /* src_mask */
1103 0xffffffff, /* dst_mask */
1104 TRUE), /* pcrel_offset */
1105
1106 HOWTO (R_ARM_ALU_SB_G1_NC, /* type */
1107 0, /* rightshift */
1108 2, /* size (0 = byte, 1 = short, 2 = long) */
1109 32, /* bitsize */
1110 TRUE, /* pc_relative */
1111 0, /* bitpos */
1112 complain_overflow_dont,/* complain_on_overflow */
1113 bfd_elf_generic_reloc, /* special_function */
1114 "R_ARM_ALU_SB_G1_NC", /* name */
1115 FALSE, /* partial_inplace */
1116 0xffffffff, /* src_mask */
1117 0xffffffff, /* dst_mask */
1118 TRUE), /* pcrel_offset */
1119
1120 HOWTO (R_ARM_ALU_SB_G1, /* type */
1121 0, /* rightshift */
1122 2, /* size (0 = byte, 1 = short, 2 = long) */
1123 32, /* bitsize */
1124 TRUE, /* pc_relative */
1125 0, /* bitpos */
1126 complain_overflow_dont,/* complain_on_overflow */
1127 bfd_elf_generic_reloc, /* special_function */
1128 "R_ARM_ALU_SB_G1", /* name */
1129 FALSE, /* partial_inplace */
1130 0xffffffff, /* src_mask */
1131 0xffffffff, /* dst_mask */
1132 TRUE), /* pcrel_offset */
1133
1134 HOWTO (R_ARM_ALU_SB_G2, /* type */
1135 0, /* rightshift */
1136 2, /* size (0 = byte, 1 = short, 2 = long) */
1137 32, /* bitsize */
1138 TRUE, /* pc_relative */
1139 0, /* bitpos */
1140 complain_overflow_dont,/* complain_on_overflow */
1141 bfd_elf_generic_reloc, /* special_function */
1142 "R_ARM_ALU_SB_G2", /* name */
1143 FALSE, /* partial_inplace */
1144 0xffffffff, /* src_mask */
1145 0xffffffff, /* dst_mask */
1146 TRUE), /* pcrel_offset */
1147
1148 HOWTO (R_ARM_LDR_SB_G0, /* type */
1149 0, /* rightshift */
1150 2, /* size (0 = byte, 1 = short, 2 = long) */
1151 32, /* bitsize */
1152 TRUE, /* pc_relative */
1153 0, /* bitpos */
1154 complain_overflow_dont,/* complain_on_overflow */
1155 bfd_elf_generic_reloc, /* special_function */
1156 "R_ARM_LDR_SB_G0", /* name */
1157 FALSE, /* partial_inplace */
1158 0xffffffff, /* src_mask */
1159 0xffffffff, /* dst_mask */
1160 TRUE), /* pcrel_offset */
1161
1162 HOWTO (R_ARM_LDR_SB_G1, /* type */
1163 0, /* rightshift */
1164 2, /* size (0 = byte, 1 = short, 2 = long) */
1165 32, /* bitsize */
1166 TRUE, /* pc_relative */
1167 0, /* bitpos */
1168 complain_overflow_dont,/* complain_on_overflow */
1169 bfd_elf_generic_reloc, /* special_function */
1170 "R_ARM_LDR_SB_G1", /* name */
1171 FALSE, /* partial_inplace */
1172 0xffffffff, /* src_mask */
1173 0xffffffff, /* dst_mask */
1174 TRUE), /* pcrel_offset */
1175
1176 HOWTO (R_ARM_LDR_SB_G2, /* type */
1177 0, /* rightshift */
1178 2, /* size (0 = byte, 1 = short, 2 = long) */
1179 32, /* bitsize */
1180 TRUE, /* pc_relative */
1181 0, /* bitpos */
1182 complain_overflow_dont,/* complain_on_overflow */
1183 bfd_elf_generic_reloc, /* special_function */
1184 "R_ARM_LDR_SB_G2", /* name */
1185 FALSE, /* partial_inplace */
1186 0xffffffff, /* src_mask */
1187 0xffffffff, /* dst_mask */
1188 TRUE), /* pcrel_offset */
1189
1190 HOWTO (R_ARM_LDRS_SB_G0, /* type */
1191 0, /* rightshift */
1192 2, /* size (0 = byte, 1 = short, 2 = long) */
1193 32, /* bitsize */
1194 TRUE, /* pc_relative */
1195 0, /* bitpos */
1196 complain_overflow_dont,/* complain_on_overflow */
1197 bfd_elf_generic_reloc, /* special_function */
1198 "R_ARM_LDRS_SB_G0", /* name */
1199 FALSE, /* partial_inplace */
1200 0xffffffff, /* src_mask */
1201 0xffffffff, /* dst_mask */
1202 TRUE), /* pcrel_offset */
1203
1204 HOWTO (R_ARM_LDRS_SB_G1, /* type */
1205 0, /* rightshift */
1206 2, /* size (0 = byte, 1 = short, 2 = long) */
1207 32, /* bitsize */
1208 TRUE, /* pc_relative */
1209 0, /* bitpos */
1210 complain_overflow_dont,/* complain_on_overflow */
1211 bfd_elf_generic_reloc, /* special_function */
1212 "R_ARM_LDRS_SB_G1", /* name */
1213 FALSE, /* partial_inplace */
1214 0xffffffff, /* src_mask */
1215 0xffffffff, /* dst_mask */
1216 TRUE), /* pcrel_offset */
1217
1218 HOWTO (R_ARM_LDRS_SB_G2, /* type */
1219 0, /* rightshift */
1220 2, /* size (0 = byte, 1 = short, 2 = long) */
1221 32, /* bitsize */
1222 TRUE, /* pc_relative */
1223 0, /* bitpos */
1224 complain_overflow_dont,/* complain_on_overflow */
1225 bfd_elf_generic_reloc, /* special_function */
1226 "R_ARM_LDRS_SB_G2", /* name */
1227 FALSE, /* partial_inplace */
1228 0xffffffff, /* src_mask */
1229 0xffffffff, /* dst_mask */
1230 TRUE), /* pcrel_offset */
1231
1232 HOWTO (R_ARM_LDC_SB_G0, /* type */
1233 0, /* rightshift */
1234 2, /* size (0 = byte, 1 = short, 2 = long) */
1235 32, /* bitsize */
1236 TRUE, /* pc_relative */
1237 0, /* bitpos */
1238 complain_overflow_dont,/* complain_on_overflow */
1239 bfd_elf_generic_reloc, /* special_function */
1240 "R_ARM_LDC_SB_G0", /* name */
1241 FALSE, /* partial_inplace */
1242 0xffffffff, /* src_mask */
1243 0xffffffff, /* dst_mask */
1244 TRUE), /* pcrel_offset */
1245
1246 HOWTO (R_ARM_LDC_SB_G1, /* type */
1247 0, /* rightshift */
1248 2, /* size (0 = byte, 1 = short, 2 = long) */
1249 32, /* bitsize */
1250 TRUE, /* pc_relative */
1251 0, /* bitpos */
1252 complain_overflow_dont,/* complain_on_overflow */
1253 bfd_elf_generic_reloc, /* special_function */
1254 "R_ARM_LDC_SB_G1", /* name */
1255 FALSE, /* partial_inplace */
1256 0xffffffff, /* src_mask */
1257 0xffffffff, /* dst_mask */
1258 TRUE), /* pcrel_offset */
1259
1260 HOWTO (R_ARM_LDC_SB_G2, /* type */
1261 0, /* rightshift */
1262 2, /* size (0 = byte, 1 = short, 2 = long) */
1263 32, /* bitsize */
1264 TRUE, /* pc_relative */
1265 0, /* bitpos */
1266 complain_overflow_dont,/* complain_on_overflow */
1267 bfd_elf_generic_reloc, /* special_function */
1268 "R_ARM_LDC_SB_G2", /* name */
1269 FALSE, /* partial_inplace */
1270 0xffffffff, /* src_mask */
1271 0xffffffff, /* dst_mask */
1272 TRUE), /* pcrel_offset */
1273
1274 /* End of group relocations. */
1275
1276 HOWTO (R_ARM_MOVW_BREL_NC, /* type */
1277 0, /* rightshift */
1278 2, /* size (0 = byte, 1 = short, 2 = long) */
1279 16, /* bitsize */
1280 FALSE, /* pc_relative */
1281 0, /* bitpos */
1282 complain_overflow_dont,/* complain_on_overflow */
1283 bfd_elf_generic_reloc, /* special_function */
1284 "R_ARM_MOVW_BREL_NC", /* name */
1285 FALSE, /* partial_inplace */
1286 0x0000ffff, /* src_mask */
1287 0x0000ffff, /* dst_mask */
1288 FALSE), /* pcrel_offset */
1289
1290 HOWTO (R_ARM_MOVT_BREL, /* type */
1291 0, /* rightshift */
1292 2, /* size (0 = byte, 1 = short, 2 = long) */
1293 16, /* bitsize */
1294 FALSE, /* pc_relative */
1295 0, /* bitpos */
1296 complain_overflow_bitfield,/* complain_on_overflow */
1297 bfd_elf_generic_reloc, /* special_function */
1298 "R_ARM_MOVT_BREL", /* name */
1299 FALSE, /* partial_inplace */
1300 0x0000ffff, /* src_mask */
1301 0x0000ffff, /* dst_mask */
1302 FALSE), /* pcrel_offset */
1303
1304 HOWTO (R_ARM_MOVW_BREL, /* type */
1305 0, /* rightshift */
1306 2, /* size (0 = byte, 1 = short, 2 = long) */
1307 16, /* bitsize */
1308 FALSE, /* pc_relative */
1309 0, /* bitpos */
1310 complain_overflow_dont,/* complain_on_overflow */
1311 bfd_elf_generic_reloc, /* special_function */
1312 "R_ARM_MOVW_BREL", /* name */
1313 FALSE, /* partial_inplace */
1314 0x0000ffff, /* src_mask */
1315 0x0000ffff, /* dst_mask */
1316 FALSE), /* pcrel_offset */
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 */
1322 FALSE, /* pc_relative */
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 */
1327 FALSE, /* partial_inplace */
1328 0x040f70ff, /* src_mask */
1329 0x040f70ff, /* dst_mask */
1330 FALSE), /* pcrel_offset */
1331
1332 HOWTO (R_ARM_THM_MOVT_BREL, /* type */
1333 0, /* rightshift */
1334 2, /* size (0 = byte, 1 = short, 2 = long) */
1335 16, /* bitsize */
1336 FALSE, /* pc_relative */
1337 0, /* bitpos */
1338 complain_overflow_bitfield,/* complain_on_overflow */
1339 bfd_elf_generic_reloc, /* special_function */
1340 "R_ARM_THM_MOVT_BREL", /* name */
1341 FALSE, /* partial_inplace */
1342 0x040f70ff, /* src_mask */
1343 0x040f70ff, /* dst_mask */
1344 FALSE), /* pcrel_offset */
1345
1346 HOWTO (R_ARM_THM_MOVW_BREL, /* type */
1347 0, /* rightshift */
1348 2, /* size (0 = byte, 1 = short, 2 = long) */
1349 16, /* bitsize */
1350 FALSE, /* pc_relative */
1351 0, /* bitpos */
1352 complain_overflow_dont,/* complain_on_overflow */
1353 bfd_elf_generic_reloc, /* special_function */
1354 "R_ARM_THM_MOVW_BREL", /* name */
1355 FALSE, /* partial_inplace */
1356 0x040f70ff, /* src_mask */
1357 0x040f70ff, /* dst_mask */
1358 FALSE), /* pcrel_offset */
1359
1360 HOWTO (R_ARM_TLS_GOTDESC, /* type */
1361 0, /* rightshift */
1362 2, /* size (0 = byte, 1 = short, 2 = long) */
1363 32, /* bitsize */
1364 FALSE, /* pc_relative */
1365 0, /* bitpos */
1366 complain_overflow_bitfield,/* complain_on_overflow */
1367 NULL, /* special_function */
1368 "R_ARM_TLS_GOTDESC", /* name */
1369 TRUE, /* partial_inplace */
1370 0xffffffff, /* src_mask */
1371 0xffffffff, /* dst_mask */
1372 FALSE), /* pcrel_offset */
1373
1374 HOWTO (R_ARM_TLS_CALL, /* type */
1375 0, /* rightshift */
1376 2, /* size (0 = byte, 1 = short, 2 = long) */
1377 24, /* bitsize */
1378 FALSE, /* pc_relative */
1379 0, /* bitpos */
1380 complain_overflow_dont,/* complain_on_overflow */
1381 bfd_elf_generic_reloc, /* special_function */
1382 "R_ARM_TLS_CALL", /* name */
1383 FALSE, /* partial_inplace */
1384 0x00ffffff, /* src_mask */
1385 0x00ffffff, /* dst_mask */
1386 FALSE), /* pcrel_offset */
1387
1388 HOWTO (R_ARM_TLS_DESCSEQ, /* type */
1389 0, /* rightshift */
1390 2, /* size (0 = byte, 1 = short, 2 = long) */
1391 0, /* bitsize */
1392 FALSE, /* pc_relative */
1393 0, /* bitpos */
1394 complain_overflow_bitfield,/* complain_on_overflow */
1395 bfd_elf_generic_reloc, /* special_function */
1396 "R_ARM_TLS_DESCSEQ", /* name */
1397 FALSE, /* partial_inplace */
1398 0x00000000, /* src_mask */
1399 0x00000000, /* dst_mask */
1400 FALSE), /* pcrel_offset */
1401
1402 HOWTO (R_ARM_THM_TLS_CALL, /* type */
1403 0, /* rightshift */
1404 2, /* size (0 = byte, 1 = short, 2 = long) */
1405 24, /* bitsize */
1406 FALSE, /* pc_relative */
1407 0, /* bitpos */
1408 complain_overflow_dont,/* complain_on_overflow */
1409 bfd_elf_generic_reloc, /* special_function */
1410 "R_ARM_THM_TLS_CALL", /* name */
1411 FALSE, /* partial_inplace */
1412 0x07ff07ff, /* src_mask */
1413 0x07ff07ff, /* dst_mask */
1414 FALSE), /* pcrel_offset */
1415
1416 HOWTO (R_ARM_PLT32_ABS, /* type */
1417 0, /* rightshift */
1418 2, /* size (0 = byte, 1 = short, 2 = long) */
1419 32, /* bitsize */
1420 FALSE, /* pc_relative */
1421 0, /* bitpos */
1422 complain_overflow_dont,/* complain_on_overflow */
1423 bfd_elf_generic_reloc, /* special_function */
1424 "R_ARM_PLT32_ABS", /* name */
1425 FALSE, /* partial_inplace */
1426 0xffffffff, /* src_mask */
1427 0xffffffff, /* dst_mask */
1428 FALSE), /* pcrel_offset */
1429
1430 HOWTO (R_ARM_GOT_ABS, /* type */
1431 0, /* rightshift */
1432 2, /* size (0 = byte, 1 = short, 2 = long) */
1433 32, /* bitsize */
1434 FALSE, /* pc_relative */
1435 0, /* bitpos */
1436 complain_overflow_dont,/* complain_on_overflow */
1437 bfd_elf_generic_reloc, /* special_function */
1438 "R_ARM_GOT_ABS", /* name */
1439 FALSE, /* partial_inplace */
1440 0xffffffff, /* src_mask */
1441 0xffffffff, /* dst_mask */
1442 FALSE), /* pcrel_offset */
1443
1444 HOWTO (R_ARM_GOT_PREL, /* type */
1445 0, /* rightshift */
1446 2, /* size (0 = byte, 1 = short, 2 = long) */
1447 32, /* bitsize */
1448 TRUE, /* pc_relative */
1449 0, /* bitpos */
1450 complain_overflow_dont, /* complain_on_overflow */
1451 bfd_elf_generic_reloc, /* special_function */
1452 "R_ARM_GOT_PREL", /* name */
1453 FALSE, /* partial_inplace */
1454 0xffffffff, /* src_mask */
1455 0xffffffff, /* dst_mask */
1456 TRUE), /* pcrel_offset */
1457
1458 HOWTO (R_ARM_GOT_BREL12, /* type */
1459 0, /* rightshift */
1460 2, /* size (0 = byte, 1 = short, 2 = long) */
1461 12, /* bitsize */
1462 FALSE, /* pc_relative */
1463 0, /* bitpos */
1464 complain_overflow_bitfield,/* complain_on_overflow */
1465 bfd_elf_generic_reloc, /* special_function */
1466 "R_ARM_GOT_BREL12", /* name */
1467 FALSE, /* partial_inplace */
1468 0x00000fff, /* src_mask */
1469 0x00000fff, /* dst_mask */
1470 FALSE), /* pcrel_offset */
1471
1472 HOWTO (R_ARM_GOTOFF12, /* type */
1473 0, /* rightshift */
1474 2, /* size (0 = byte, 1 = short, 2 = long) */
1475 12, /* bitsize */
1476 FALSE, /* pc_relative */
1477 0, /* bitpos */
1478 complain_overflow_bitfield,/* complain_on_overflow */
1479 bfd_elf_generic_reloc, /* special_function */
1480 "R_ARM_GOTOFF12", /* name */
1481 FALSE, /* partial_inplace */
1482 0x00000fff, /* src_mask */
1483 0x00000fff, /* dst_mask */
1484 FALSE), /* pcrel_offset */
1485
1486 EMPTY_HOWTO (R_ARM_GOTRELAX), /* reserved for future GOT-load optimizations */
1487
1488 /* GNU extension to record C++ vtable member usage */
1489 HOWTO (R_ARM_GNU_VTENTRY, /* type */
1490 0, /* rightshift */
1491 2, /* size (0 = byte, 1 = short, 2 = long) */
1492 0, /* bitsize */
1493 FALSE, /* pc_relative */
1494 0, /* bitpos */
1495 complain_overflow_dont, /* complain_on_overflow */
1496 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
1497 "R_ARM_GNU_VTENTRY", /* name */
1498 FALSE, /* partial_inplace */
1499 0, /* src_mask */
1500 0, /* dst_mask */
1501 FALSE), /* pcrel_offset */
1502
1503 /* GNU extension to record C++ vtable hierarchy */
1504 HOWTO (R_ARM_GNU_VTINHERIT, /* type */
1505 0, /* rightshift */
1506 2, /* size (0 = byte, 1 = short, 2 = long) */
1507 0, /* bitsize */
1508 FALSE, /* pc_relative */
1509 0, /* bitpos */
1510 complain_overflow_dont, /* complain_on_overflow */
1511 NULL, /* special_function */
1512 "R_ARM_GNU_VTINHERIT", /* name */
1513 FALSE, /* partial_inplace */
1514 0, /* src_mask */
1515 0, /* dst_mask */
1516 FALSE), /* pcrel_offset */
1517
1518 HOWTO (R_ARM_THM_JUMP11, /* type */
1519 1, /* rightshift */
1520 1, /* size (0 = byte, 1 = short, 2 = long) */
1521 11, /* bitsize */
1522 TRUE, /* pc_relative */
1523 0, /* bitpos */
1524 complain_overflow_signed, /* complain_on_overflow */
1525 bfd_elf_generic_reloc, /* special_function */
1526 "R_ARM_THM_JUMP11", /* name */
1527 FALSE, /* partial_inplace */
1528 0x000007ff, /* src_mask */
1529 0x000007ff, /* dst_mask */
1530 TRUE), /* pcrel_offset */
1531
1532 HOWTO (R_ARM_THM_JUMP8, /* type */
1533 1, /* rightshift */
1534 1, /* size (0 = byte, 1 = short, 2 = long) */
1535 8, /* bitsize */
1536 TRUE, /* pc_relative */
1537 0, /* bitpos */
1538 complain_overflow_signed, /* complain_on_overflow */
1539 bfd_elf_generic_reloc, /* special_function */
1540 "R_ARM_THM_JUMP8", /* name */
1541 FALSE, /* partial_inplace */
1542 0x000000ff, /* src_mask */
1543 0x000000ff, /* dst_mask */
1544 TRUE), /* pcrel_offset */
1545
1546 /* TLS relocations */
1547 HOWTO (R_ARM_TLS_GD32, /* type */
1548 0, /* rightshift */
1549 2, /* size (0 = byte, 1 = short, 2 = long) */
1550 32, /* bitsize */
1551 FALSE, /* pc_relative */
1552 0, /* bitpos */
1553 complain_overflow_bitfield,/* complain_on_overflow */
1554 NULL, /* special_function */
1555 "R_ARM_TLS_GD32", /* name */
1556 TRUE, /* partial_inplace */
1557 0xffffffff, /* src_mask */
1558 0xffffffff, /* dst_mask */
1559 FALSE), /* pcrel_offset */
1560
1561 HOWTO (R_ARM_TLS_LDM32, /* type */
1562 0, /* rightshift */
1563 2, /* size (0 = byte, 1 = short, 2 = long) */
1564 32, /* bitsize */
1565 FALSE, /* pc_relative */
1566 0, /* bitpos */
1567 complain_overflow_bitfield,/* complain_on_overflow */
1568 bfd_elf_generic_reloc, /* special_function */
1569 "R_ARM_TLS_LDM32", /* name */
1570 TRUE, /* partial_inplace */
1571 0xffffffff, /* src_mask */
1572 0xffffffff, /* dst_mask */
1573 FALSE), /* pcrel_offset */
1574
1575 HOWTO (R_ARM_TLS_LDO32, /* type */
1576 0, /* rightshift */
1577 2, /* size (0 = byte, 1 = short, 2 = long) */
1578 32, /* bitsize */
1579 FALSE, /* pc_relative */
1580 0, /* bitpos */
1581 complain_overflow_bitfield,/* complain_on_overflow */
1582 bfd_elf_generic_reloc, /* special_function */
1583 "R_ARM_TLS_LDO32", /* name */
1584 TRUE, /* partial_inplace */
1585 0xffffffff, /* src_mask */
1586 0xffffffff, /* dst_mask */
1587 FALSE), /* pcrel_offset */
1588
1589 HOWTO (R_ARM_TLS_IE32, /* type */
1590 0, /* rightshift */
1591 2, /* size (0 = byte, 1 = short, 2 = long) */
1592 32, /* bitsize */
1593 FALSE, /* pc_relative */
1594 0, /* bitpos */
1595 complain_overflow_bitfield,/* complain_on_overflow */
1596 NULL, /* special_function */
1597 "R_ARM_TLS_IE32", /* name */
1598 TRUE, /* partial_inplace */
1599 0xffffffff, /* src_mask */
1600 0xffffffff, /* dst_mask */
1601 FALSE), /* pcrel_offset */
1602
1603 HOWTO (R_ARM_TLS_LE32, /* type */
1604 0, /* rightshift */
1605 2, /* size (0 = byte, 1 = short, 2 = long) */
1606 32, /* bitsize */
1607 FALSE, /* pc_relative */
1608 0, /* bitpos */
1609 complain_overflow_bitfield,/* complain_on_overflow */
1610 NULL, /* special_function */
1611 "R_ARM_TLS_LE32", /* name */
1612 TRUE, /* partial_inplace */
1613 0xffffffff, /* src_mask */
1614 0xffffffff, /* dst_mask */
1615 FALSE), /* pcrel_offset */
1616
1617 HOWTO (R_ARM_TLS_LDO12, /* type */
1618 0, /* rightshift */
1619 2, /* size (0 = byte, 1 = short, 2 = long) */
1620 12, /* bitsize */
1621 FALSE, /* pc_relative */
1622 0, /* bitpos */
1623 complain_overflow_bitfield,/* complain_on_overflow */
1624 bfd_elf_generic_reloc, /* special_function */
1625 "R_ARM_TLS_LDO12", /* name */
1626 FALSE, /* partial_inplace */
1627 0x00000fff, /* src_mask */
1628 0x00000fff, /* dst_mask */
1629 FALSE), /* pcrel_offset */
1630
1631 HOWTO (R_ARM_TLS_LE12, /* type */
1632 0, /* rightshift */
1633 2, /* size (0 = byte, 1 = short, 2 = long) */
1634 12, /* bitsize */
1635 FALSE, /* pc_relative */
1636 0, /* bitpos */
1637 complain_overflow_bitfield,/* complain_on_overflow */
1638 bfd_elf_generic_reloc, /* special_function */
1639 "R_ARM_TLS_LE12", /* name */
1640 FALSE, /* partial_inplace */
1641 0x00000fff, /* src_mask */
1642 0x00000fff, /* dst_mask */
1643 FALSE), /* pcrel_offset */
1644
1645 HOWTO (R_ARM_TLS_IE12GP, /* type */
1646 0, /* rightshift */
1647 2, /* size (0 = byte, 1 = short, 2 = long) */
1648 12, /* bitsize */
1649 FALSE, /* pc_relative */
1650 0, /* bitpos */
1651 complain_overflow_bitfield,/* complain_on_overflow */
1652 bfd_elf_generic_reloc, /* special_function */
1653 "R_ARM_TLS_IE12GP", /* name */
1654 FALSE, /* partial_inplace */
1655 0x00000fff, /* src_mask */
1656 0x00000fff, /* dst_mask */
1657 FALSE), /* pcrel_offset */
1658
1659 /* 112-127 private relocations. */
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),
1676
1677 /* R_ARM_ME_TOO, obsolete. */
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 */
1684 FALSE, /* pc_relative */
1685 0, /* bitpos */
1686 complain_overflow_bitfield,/* complain_on_overflow */
1687 bfd_elf_generic_reloc, /* special_function */
1688 "R_ARM_THM_TLS_DESCSEQ",/* name */
1689 FALSE, /* partial_inplace */
1690 0x00000000, /* src_mask */
1691 0x00000000, /* dst_mask */
1692 FALSE), /* pcrel_offset */
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. */
1699 FALSE, /* pc_relative. */
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. */
1704 FALSE, /* partial_inplace. */
1705 0x00000000, /* src_mask. */
1706 0x00000000, /* dst_mask. */
1707 FALSE), /* pcrel_offset. */
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. */
1712 FALSE, /* pc_relative. */
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. */
1717 FALSE, /* partial_inplace. */
1718 0x00000000, /* src_mask. */
1719 0x00000000, /* dst_mask. */
1720 FALSE), /* pcrel_offset. */
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. */
1725 FALSE, /* pc_relative. */
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. */
1730 FALSE, /* partial_inplace. */
1731 0x00000000, /* src_mask. */
1732 0x00000000, /* dst_mask. */
1733 FALSE), /* pcrel_offset. */
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. */
1738 FALSE, /* pc_relative. */
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. */
1743 FALSE, /* partial_inplace. */
1744 0x00000000, /* src_mask. */
1745 0x00000000, /* dst_mask. */
1746 FALSE), /* pcrel_offset. */
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. */
1752 TRUE, /* pc_relative. */
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. */
1757 FALSE, /* partial_inplace. */
1758 0x001f0ffe, /* src_mask. */
1759 0x001f0ffe, /* dst_mask. */
1760 TRUE), /* pcrel_offset. */
1761 HOWTO (R_ARM_THM_BF12, /* type. */
1762 0, /* rightshift. */
1763 1, /* size (0 = byte, 1 = short, 2 = long). */
1764 12, /* bitsize. */
1765 TRUE, /* pc_relative. */
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. */
1770 FALSE, /* partial_inplace. */
1771 0x00010ffe, /* src_mask. */
1772 0x00010ffe, /* dst_mask. */
1773 TRUE), /* pcrel_offset. */
1774 HOWTO (R_ARM_THM_BF18, /* type. */
1775 0, /* rightshift. */
1776 1, /* size (0 = byte, 1 = short, 2 = long). */
1777 18, /* bitsize. */
1778 TRUE, /* pc_relative. */
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. */
1783 FALSE, /* partial_inplace. */
1784 0x007f0ffe, /* src_mask. */
1785 0x007f0ffe, /* dst_mask. */
1786 TRUE), /* pcrel_offset. */
1787 };
1788
1789 /* 160 onwards: */
1790 static reloc_howto_type elf32_arm_howto_table_2[8] =
1791 {
1792 HOWTO (R_ARM_IRELATIVE, /* type */
1793 0, /* rightshift */
1794 2, /* size (0 = byte, 1 = short, 2 = long) */
1795 32, /* bitsize */
1796 FALSE, /* pc_relative */
1797 0, /* bitpos */
1798 complain_overflow_bitfield,/* complain_on_overflow */
1799 bfd_elf_generic_reloc, /* special_function */
1800 "R_ARM_IRELATIVE", /* name */
1801 TRUE, /* partial_inplace */
1802 0xffffffff, /* src_mask */
1803 0xffffffff, /* dst_mask */
1804 FALSE), /* pcrel_offset */
1805 HOWTO (R_ARM_GOTFUNCDESC, /* type */
1806 0, /* rightshift */
1807 2, /* size (0 = byte, 1 = short, 2 = long) */
1808 32, /* bitsize */
1809 FALSE, /* pc_relative */
1810 0, /* bitpos */
1811 complain_overflow_bitfield,/* complain_on_overflow */
1812 bfd_elf_generic_reloc, /* special_function */
1813 "R_ARM_GOTFUNCDESC", /* name */
1814 FALSE, /* partial_inplace */
1815 0, /* src_mask */
1816 0xffffffff, /* dst_mask */
1817 FALSE), /* pcrel_offset */
1818 HOWTO (R_ARM_GOTOFFFUNCDESC, /* type */
1819 0, /* rightshift */
1820 2, /* size (0 = byte, 1 = short, 2 = long) */
1821 32, /* bitsize */
1822 FALSE, /* pc_relative */
1823 0, /* bitpos */
1824 complain_overflow_bitfield,/* complain_on_overflow */
1825 bfd_elf_generic_reloc, /* special_function */
1826 "R_ARM_GOTOFFFUNCDESC",/* name */
1827 FALSE, /* partial_inplace */
1828 0, /* src_mask */
1829 0xffffffff, /* dst_mask */
1830 FALSE), /* pcrel_offset */
1831 HOWTO (R_ARM_FUNCDESC, /* type */
1832 0, /* rightshift */
1833 2, /* size (0 = byte, 1 = short, 2 = long) */
1834 32, /* bitsize */
1835 FALSE, /* pc_relative */
1836 0, /* bitpos */
1837 complain_overflow_bitfield,/* complain_on_overflow */
1838 bfd_elf_generic_reloc, /* special_function */
1839 "R_ARM_FUNCDESC", /* name */
1840 FALSE, /* partial_inplace */
1841 0, /* src_mask */
1842 0xffffffff, /* dst_mask */
1843 FALSE), /* pcrel_offset */
1844 HOWTO (R_ARM_FUNCDESC_VALUE, /* type */
1845 0, /* rightshift */
1846 2, /* size (0 = byte, 1 = short, 2 = long) */
1847 64, /* bitsize */
1848 FALSE, /* pc_relative */
1849 0, /* bitpos */
1850 complain_overflow_bitfield,/* complain_on_overflow */
1851 bfd_elf_generic_reloc, /* special_function */
1852 "R_ARM_FUNCDESC_VALUE",/* name */
1853 FALSE, /* partial_inplace */
1854 0, /* src_mask */
1855 0xffffffff, /* dst_mask */
1856 FALSE), /* pcrel_offset */
1857 HOWTO (R_ARM_TLS_GD32_FDPIC, /* type */
1858 0, /* rightshift */
1859 2, /* size (0 = byte, 1 = short, 2 = long) */
1860 32, /* bitsize */
1861 FALSE, /* pc_relative */
1862 0, /* bitpos */
1863 complain_overflow_bitfield,/* complain_on_overflow */
1864 bfd_elf_generic_reloc, /* special_function */
1865 "R_ARM_TLS_GD32_FDPIC",/* name */
1866 FALSE, /* partial_inplace */
1867 0, /* src_mask */
1868 0xffffffff, /* dst_mask */
1869 FALSE), /* pcrel_offset */
1870 HOWTO (R_ARM_TLS_LDM32_FDPIC, /* type */
1871 0, /* rightshift */
1872 2, /* size (0 = byte, 1 = short, 2 = long) */
1873 32, /* bitsize */
1874 FALSE, /* pc_relative */
1875 0, /* bitpos */
1876 complain_overflow_bitfield,/* complain_on_overflow */
1877 bfd_elf_generic_reloc, /* special_function */
1878 "R_ARM_TLS_LDM32_FDPIC",/* name */
1879 FALSE, /* partial_inplace */
1880 0, /* src_mask */
1881 0xffffffff, /* dst_mask */
1882 FALSE), /* pcrel_offset */
1883 HOWTO (R_ARM_TLS_IE32_FDPIC, /* type */
1884 0, /* rightshift */
1885 2, /* size (0 = byte, 1 = short, 2 = long) */
1886 32, /* bitsize */
1887 FALSE, /* pc_relative */
1888 0, /* bitpos */
1889 complain_overflow_bitfield,/* complain_on_overflow */
1890 bfd_elf_generic_reloc, /* special_function */
1891 "R_ARM_TLS_IE32_FDPIC",/* name */
1892 FALSE, /* partial_inplace */
1893 0, /* src_mask */
1894 0xffffffff, /* dst_mask */
1895 FALSE), /* pcrel_offset */
1896 };
1897
1898 /* 249-255 extended, currently unused, relocations: */
1899 static reloc_howto_type elf32_arm_howto_table_3[4] =
1900 {
1901 HOWTO (R_ARM_RREL32, /* type */
1902 0, /* rightshift */
1903 0, /* size (0 = byte, 1 = short, 2 = long) */
1904 0, /* bitsize */
1905 FALSE, /* pc_relative */
1906 0, /* bitpos */
1907 complain_overflow_dont,/* complain_on_overflow */
1908 bfd_elf_generic_reloc, /* special_function */
1909 "R_ARM_RREL32", /* name */
1910 FALSE, /* partial_inplace */
1911 0, /* src_mask */
1912 0, /* dst_mask */
1913 FALSE), /* pcrel_offset */
1914
1915 HOWTO (R_ARM_RABS32, /* type */
1916 0, /* rightshift */
1917 0, /* size (0 = byte, 1 = short, 2 = long) */
1918 0, /* bitsize */
1919 FALSE, /* pc_relative */
1920 0, /* bitpos */
1921 complain_overflow_dont,/* complain_on_overflow */
1922 bfd_elf_generic_reloc, /* special_function */
1923 "R_ARM_RABS32", /* name */
1924 FALSE, /* partial_inplace */
1925 0, /* src_mask */
1926 0, /* dst_mask */
1927 FALSE), /* pcrel_offset */
1928
1929 HOWTO (R_ARM_RPC24, /* type */
1930 0, /* rightshift */
1931 0, /* size (0 = byte, 1 = short, 2 = long) */
1932 0, /* bitsize */
1933 FALSE, /* pc_relative */
1934 0, /* bitpos */
1935 complain_overflow_dont,/* complain_on_overflow */
1936 bfd_elf_generic_reloc, /* special_function */
1937 "R_ARM_RPC24", /* name */
1938 FALSE, /* partial_inplace */
1939 0, /* src_mask */
1940 0, /* dst_mask */
1941 FALSE), /* pcrel_offset */
1942
1943 HOWTO (R_ARM_RBASE, /* type */
1944 0, /* rightshift */
1945 0, /* size (0 = byte, 1 = short, 2 = long) */
1946 0, /* bitsize */
1947 FALSE, /* pc_relative */
1948 0, /* bitpos */
1949 complain_overflow_dont,/* complain_on_overflow */
1950 bfd_elf_generic_reloc, /* special_function */
1951 "R_ARM_RBASE", /* name */
1952 FALSE, /* partial_inplace */
1953 0, /* src_mask */
1954 0, /* dst_mask */
1955 FALSE) /* pcrel_offset */
1956 };
1957
1958 static reloc_howto_type *
1959 elf32_arm_howto_from_type (unsigned int r_type)
1960 {
1961 if (r_type < ARRAY_SIZE (elf32_arm_howto_table_1))
1962 return &elf32_arm_howto_table_1[r_type];
1963
1964 if (r_type >= R_ARM_IRELATIVE
1965 && r_type < R_ARM_IRELATIVE + ARRAY_SIZE (elf32_arm_howto_table_2))
1966 return &elf32_arm_howto_table_2[r_type - R_ARM_IRELATIVE];
1967
1968 if (r_type >= R_ARM_RREL32
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];
1971
1972 return NULL;
1973 }
1974
1975 static bfd_boolean
1976 elf32_arm_info_to_howto (bfd * abfd, arelent * bfd_reloc,
1977 Elf_Internal_Rela * elf_reloc)
1978 {
1979 unsigned int r_type;
1980
1981 r_type = ELF32_R_TYPE (elf_reloc->r_info);
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);
1988 return FALSE;
1989 }
1990 return TRUE;
1991 }
1992
1993 struct elf32_arm_reloc_map
1994 {
1995 bfd_reloc_code_real_type bfd_reloc_val;
1996 unsigned char elf_reloc_val;
1997 };
1998
1999 /* All entries in this list must also be present in elf32_arm_howto_table. */
2000 static const struct elf32_arm_reloc_map elf32_arm_reloc_map[] =
2001 {
2002 {BFD_RELOC_NONE, R_ARM_NONE},
2003 {BFD_RELOC_ARM_PCREL_BRANCH, R_ARM_PC24},
2004 {BFD_RELOC_ARM_PCREL_CALL, R_ARM_CALL},
2005 {BFD_RELOC_ARM_PCREL_JUMP, R_ARM_JUMP24},
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},
2013 {BFD_RELOC_ARM_THUMB_OFFSET, R_ARM_THM_ABS5},
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},
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},
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},
2032 {BFD_RELOC_ARM_TARGET2, R_ARM_TARGET2},
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},
2036 {BFD_RELOC_ARM_THM_TLS_CALL, R_ARM_THM_TLS_CALL},
2037 {BFD_RELOC_ARM_TLS_DESCSEQ, R_ARM_TLS_DESCSEQ},
2038 {BFD_RELOC_ARM_THM_TLS_DESCSEQ, R_ARM_THM_TLS_DESCSEQ},
2039 {BFD_RELOC_ARM_TLS_DESC, R_ARM_TLS_DESC},
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},
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},
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},
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},
2056 {BFD_RELOC_VTABLE_INHERIT, R_ARM_GNU_VTINHERIT},
2057 {BFD_RELOC_VTABLE_ENTRY, R_ARM_GNU_VTENTRY},
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},
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},
2093 {BFD_RELOC_ARM_LDC_SB_G2, R_ARM_LDC_SB_G2},
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},
2098 {BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC, R_ARM_THM_ALU_ABS_G0_NC},
2099 {BFD_RELOC_ARM_THUMB_BF17, R_ARM_THM_BF16},
2100 {BFD_RELOC_ARM_THUMB_BF13, R_ARM_THM_BF12},
2101 {BFD_RELOC_ARM_THUMB_BF19, R_ARM_THM_BF18}
2102 };
2103
2104 static reloc_howto_type *
2105 elf32_arm_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2106 bfd_reloc_code_real_type code)
2107 {
2108 unsigned int i;
2109
2110 for (i = 0; i < ARRAY_SIZE (elf32_arm_reloc_map); i ++)
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);
2113
2114 return NULL;
2115 }
2116
2117 static reloc_howto_type *
2118 elf32_arm_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2119 const char *r_name)
2120 {
2121 unsigned int i;
2122
2123 for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_1); i++)
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
2128 for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_2); i++)
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
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
2138 return NULL;
2139 }
2140
2141 /* Support for core dump NOTE sections. */
2142
2143 static bfd_boolean
2144 elf32_arm_nabi_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
2145 {
2146 int offset;
2147 size_t size;
2148
2149 switch (note->descsz)
2150 {
2151 default:
2152 return FALSE;
2153
2154 case 148: /* Linux/ARM 32-bit. */
2155 /* pr_cursig */
2156 elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
2157
2158 /* pr_pid */
2159 elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
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
2173 static bfd_boolean
2174 elf32_arm_nabi_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
2175 {
2176 switch (note->descsz)
2177 {
2178 default:
2179 return FALSE;
2180
2181 case 124: /* Linux/ARM elf_prpsinfo. */
2182 elf_tdata (abfd)->core->pid
2183 = bfd_get_32 (abfd, note->descdata + 12);
2184 elf_tdata (abfd)->core->program
2185 = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
2186 elf_tdata (abfd)->core->command
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. */
2193 {
2194 char *command = elf_tdata (abfd)->core->command;
2195 int n = strlen (command);
2196
2197 if (0 < n && command[n - 1] == ' ')
2198 command[n - 1] = '\0';
2199 }
2200
2201 return TRUE;
2202 }
2203
2204 static char *
2205 elf32_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 {
2215 char data[124] ATTRIBUTE_NONSTRING;
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);
2221 #if GCC_VERSION == 8000 || GCC_VERSION == 8001
2222 DIAGNOSTIC_PUSH;
2223 /* GCC 8.0 and 8.1 warn about 80 equals destination size with
2224 -Wstringop-truncation:
2225 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85643
2226 */
2227 DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION;
2228 #endif
2229 strncpy (data + 44, va_arg (ap, const char *), 80);
2230 #if GCC_VERSION == 8000 || GCC_VERSION == 8001
2231 DIAGNOSTIC_POP;
2232 #endif
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
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"
2267
2268 #define elf_backend_grok_prstatus elf32_arm_nabi_grok_prstatus
2269 #define elf_backend_grok_psinfo elf32_arm_nabi_grok_psinfo
2270 #define elf_backend_write_core_note elf32_arm_nabi_write_core_note
2271
2272 typedef unsigned long int insn32;
2273 typedef unsigned short int insn16;
2274
2275 /* In lieu of proper flags, assume all EABIv4 or later objects are
2276 interworkable. */
2277 #define INTERWORK_FLAG(abfd) \
2278 (EF_ARM_EABI_VERSION (elf_elfheader (abfd)->e_flags) >= EF_ARM_EABI_VER4 \
2279 || (elf_elfheader (abfd)->e_flags & EF_ARM_INTERWORK) \
2280 || ((abfd)->flags & BFD_LINKER_CREATED))
2281
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
2285 name can be changed. The only requirement is the %s be present. */
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
2292 #define VFP11_ERRATUM_VENEER_SECTION_NAME ".vfp11_veneer"
2293 #define VFP11_ERRATUM_VENEER_ENTRY_NAME "__vfp11_veneer_%x"
2294
2295 #define STM32L4XX_ERRATUM_VENEER_SECTION_NAME ".text.stm32l4xx_veneer"
2296 #define STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "__stm32l4xx_veneer_%x"
2297
2298 #define ARM_BX_GLUE_SECTION_NAME ".v4_bx"
2299 #define ARM_BX_GLUE_ENTRY_NAME "__bx_r%d"
2300
2301 #define STUB_ENTRY_NAME "__%s_veneer"
2302
2303 #define CMSE_PREFIX "__acle_se_"
2304
2305 #define CMSE_STUB_NAME ".gnu.sgstubs"
2306
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
2311 /* FDPIC default stack size. */
2312 #define DEFAULT_STACK_SIZE 0x8000
2313
2314 static const unsigned long tls_trampoline [] =
2315 {
2316 0xe08e0000, /* add r0, lr, r0 */
2317 0xe5901004, /* ldr r1, [r0,#4] */
2318 0xe12fff11, /* bx r1 */
2319 };
2320
2321 static const unsigned long dl_tlsdesc_lazy_trampoline [] =
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
2330 + dl_tlsdesc_lazy_resolver(GOT) */
2331 0x00000018, /* 4: .word _GLOBAL_OFFSET_TABLE_ - 2b - 8 */
2332 };
2333
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
2339 /* ARM FDPIC PLT entry. */
2340 /* The last 5 words contain PLT lazy fragment code and data. */
2341 static 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
2355 /* Thumb FDPIC PLT entry. */
2356 /* The last 5 words contain PLT lazy fragment code and data. */
2357 static 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
2371 #ifdef FOUR_WORD_PLT
2372
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
2375 called before the relocation has been set up calls the dynamic
2376 linker first. */
2377 static const bfd_vma elf32_arm_plt0_entry [] =
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 };
2384
2385 /* Subsequent entries in a procedure linkage table look like
2386 this. */
2387 static const bfd_vma elf32_arm_plt_entry [] =
2388 {
2389 0xe28fc600, /* add ip, pc, #NN */
2390 0xe28cca00, /* add ip, ip, #NN */
2391 0xe5bcf000, /* ldr pc, [ip, #NN]! */
2392 0x00000000, /* unused */
2393 };
2394
2395 #else /* not FOUR_WORD_PLT */
2396
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. */
2401 static const bfd_vma elf32_arm_plt0_entry [] =
2402 {
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] - . */
2408 };
2409
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. */
2412 static const bfd_vma elf32_arm_plt_entry_short [] =
2413 {
2414 0xe28fc600, /* add ip, pc, #0xNN00000 */
2415 0xe28cca00, /* add ip, ip, #0xNN000 */
2416 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
2417 };
2418
2419 /* When explicitly asked, we'll use this "long" entry format
2420 which can cope with arbitrary displacements. */
2421 static const bfd_vma elf32_arm_plt_entry_long [] =
2422 {
2423 0xe28fc200, /* add ip, pc, #0xN0000000 */
2424 0xe28cc600, /* add ip, ip, #0xNN00000 */
2425 0xe28cca00, /* add ip, ip, #0xNN000 */
2426 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
2427 };
2428
2429 static bfd_boolean elf32_arm_use_long_plt_entry = FALSE;
2430
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. */
2436 static 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. */
2440 0xf8dfb500, /* push {lr} */
2441 0x44fee008, /* ldr.w lr, [pc, #8] */
2442 /* add lr, pc */
2443 0xff08f85e, /* ldr.w pc, [lr, #8]! */
2444 0x00000000, /* &GOT[0] - . */
2445 };
2446
2447 /* Subsequent entries in a procedure linkage table for thumb only target
2448 look like this. */
2449 static 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. */
2453 0x0c00f240, /* movw ip, #0xNNNN */
2454 0x0c00f2c0, /* movt ip, #0xNNNN */
2455 0xf8dc44fc, /* add ip, pc */
2456 0xe7fcf000 /* ldr.w pc, [ip] */
2457 /* b .-4 */
2458 };
2459
2460 /* The format of the first entry in the procedure linkage table
2461 for a VxWorks executable. */
2462 static const bfd_vma elf32_arm_vxworks_exec_plt0_entry[] =
2463 {
2464 0xe52dc008, /* str ip,[sp,#-8]! */
2465 0xe59fc000, /* ldr ip,[pc] */
2466 0xe59cf008, /* ldr pc,[ip,#8] */
2467 0x00000000, /* .long _GLOBAL_OFFSET_TABLE_ */
2468 };
2469
2470 /* The format of subsequent entries in a VxWorks executable. */
2471 static const bfd_vma elf32_arm_vxworks_exec_plt_entry[] =
2472 {
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) */
2479 };
2480
2481 /* The format of entries in a VxWorks shared library. */
2482 static const bfd_vma elf32_arm_vxworks_shared_plt_entry[] =
2483 {
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) */
2490 };
2491
2492 /* An initial stub used if the PLT entry is referenced from Thumb code. */
2493 #define PLT_THUMB_STUB_SIZE 4
2494 static const bfd_vma elf32_arm_plt_thumb_stub [] =
2495 {
2496 0x4778, /* bx pc */
2497 0xe7fd /* b .-2 */
2498 };
2499
2500 /* The entries in a PLT when using a DLL-based target with multiple
2501 address spaces. */
2502 static const bfd_vma elf32_arm_symbian_plt_entry [] =
2503 {
2504 0xe51ff004, /* ldr pc, [pc, #-4] */
2505 0x00000000, /* dcd R_ARM_GLOB_DAT(X) */
2506 };
2507
2508 /* The first entry in a procedure linkage table looks like
2509 this. It is set up so that any shared library function that is
2510 called before the relocation has been set up calls the dynamic
2511 linker first. */
2512 static const bfd_vma elf32_arm_nacl_plt0_entry [] =
2513 {
2514 /* First bundle: */
2515 0xe300c000, /* movw ip, #:lower16:&GOT[2]-.+8 */
2516 0xe340c000, /* movt ip, #:upper16:&GOT[2]-.+8 */
2517 0xe08cc00f, /* add ip, ip, pc */
2518 0xe52dc008, /* str ip, [sp, #-8]! */
2519 /* Second bundle: */
2520 0xe3ccc103, /* bic ip, ip, #0xc0000000 */
2521 0xe59cc000, /* ldr ip, [ip] */
2522 0xe3ccc13f, /* bic ip, ip, #0xc000000f */
2523 0xe12fff1c, /* bx ip */
2524 /* Third bundle: */
2525 0xe320f000, /* nop */
2526 0xe320f000, /* nop */
2527 0xe320f000, /* nop */
2528 /* .Lplt_tail: */
2529 0xe50dc004, /* str ip, [sp, #-4] */
2530 /* Fourth bundle: */
2531 0xe3ccc103, /* bic ip, ip, #0xc0000000 */
2532 0xe59cc000, /* ldr ip, [ip] */
2533 0xe3ccc13f, /* bic ip, ip, #0xc000000f */
2534 0xe12fff1c, /* bx ip */
2535 };
2536 #define ARM_NACL_PLT_TAIL_OFFSET (11 * 4)
2537
2538 /* Subsequent entries in a procedure linkage table look like this. */
2539 static const bfd_vma elf32_arm_nacl_plt_entry [] =
2540 {
2541 0xe300c000, /* movw ip, #:lower16:&GOT[n]-.+8 */
2542 0xe340c000, /* movt ip, #:upper16:&GOT[n]-.+8 */
2543 0xe08cc00f, /* add ip, ip, pc */
2544 0xea000000, /* b .Lplt_tail */
2545 };
2546
2547 #define ARM_MAX_FWD_BRANCH_OFFSET ((((1 << 23) - 1) << 2) + 8)
2548 #define ARM_MAX_BWD_BRANCH_OFFSET ((-((1 << 23) << 2)) + 8)
2549 #define THM_MAX_FWD_BRANCH_OFFSET ((1 << 22) -2 + 4)
2550 #define THM_MAX_BWD_BRANCH_OFFSET (-(1 << 22) + 4)
2551 #define THM2_MAX_FWD_BRANCH_OFFSET (((1 << 24) - 2) + 4)
2552 #define THM2_MAX_BWD_BRANCH_OFFSET (-(1 << 24) + 4)
2553 #define THM2_MAX_FWD_COND_BRANCH_OFFSET (((1 << 20) -2) + 4)
2554 #define THM2_MAX_BWD_COND_BRANCH_OFFSET (-(1 << 20) + 4)
2555
2556 enum stub_insn_type
2557 {
2558 THUMB16_TYPE = 1,
2559 THUMB32_TYPE,
2560 ARM_TYPE,
2561 DATA_TYPE
2562 };
2563
2564 #define THUMB16_INSN(X) {(X), THUMB16_TYPE, R_ARM_NONE, 0}
2565 /* A bit of a hack. A Thumb conditional branch, in which the proper condition
2566 is inserted in arm_build_one_stub(). */
2567 #define THUMB16_BCOND_INSN(X) {(X), THUMB16_TYPE, R_ARM_NONE, 1}
2568 #define THUMB32_INSN(X) {(X), THUMB32_TYPE, R_ARM_NONE, 0}
2569 #define THUMB32_MOVT(X) {(X), THUMB32_TYPE, R_ARM_THM_MOVT_ABS, 0}
2570 #define THUMB32_MOVW(X) {(X), THUMB32_TYPE, R_ARM_THM_MOVW_ABS_NC, 0}
2571 #define THUMB32_B_INSN(X, Z) {(X), THUMB32_TYPE, R_ARM_THM_JUMP24, (Z)}
2572 #define ARM_INSN(X) {(X), ARM_TYPE, R_ARM_NONE, 0}
2573 #define ARM_REL_INSN(X, Z) {(X), ARM_TYPE, R_ARM_JUMP24, (Z)}
2574 #define DATA_WORD(X,Y,Z) {(X), DATA_TYPE, (Y), (Z)}
2575
2576 typedef struct
2577 {
2578 bfd_vma data;
2579 enum stub_insn_type type;
2580 unsigned int r_type;
2581 int reloc_addend;
2582 } insn_sequence;
2583
2584 /* See note [Thumb nop sequence] when adding a veneer. */
2585
2586 /* Arm/Thumb -> Arm/Thumb long branch stub. On V5T and above, use blx
2587 to reach the stub if necessary. */
2588 static const insn_sequence elf32_arm_stub_long_branch_any_any[] =
2589 {
2590 ARM_INSN (0xe51ff004), /* ldr pc, [pc, #-4] */
2591 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2592 };
2593
2594 /* V4T Arm -> Thumb long branch stub. Used on V4T where blx is not
2595 available. */
2596 static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb[] =
2597 {
2598 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2599 ARM_INSN (0xe12fff1c), /* bx ip */
2600 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2601 };
2602
2603 /* Thumb -> Thumb long branch stub. Used on M-profile architectures. */
2604 static const insn_sequence elf32_arm_stub_long_branch_thumb_only[] =
2605 {
2606 THUMB16_INSN (0xb401), /* push {r0} */
2607 THUMB16_INSN (0x4802), /* ldr r0, [pc, #8] */
2608 THUMB16_INSN (0x4684), /* mov ip, r0 */
2609 THUMB16_INSN (0xbc01), /* pop {r0} */
2610 THUMB16_INSN (0x4760), /* bx ip */
2611 THUMB16_INSN (0xbf00), /* nop */
2612 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2613 };
2614
2615 /* Thumb -> Thumb long branch stub in thumb2 encoding. Used on armv7. */
2616 static const insn_sequence elf32_arm_stub_long_branch_thumb2_only[] =
2617 {
2618 THUMB32_INSN (0xf85ff000), /* ldr.w pc, [pc, #-0] */
2619 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(x) */
2620 };
2621
2622 /* Thumb -> Thumb long branch stub. Used for PureCode sections on Thumb2
2623 M-profile architectures. */
2624 static const insn_sequence elf32_arm_stub_long_branch_thumb2_only_pure[] =
2625 {
2626 THUMB32_MOVW (0xf2400c00), /* mov.w ip, R_ARM_MOVW_ABS_NC */
2627 THUMB32_MOVT (0xf2c00c00), /* movt ip, R_ARM_MOVT_ABS << 16 */
2628 THUMB16_INSN (0x4760), /* bx ip */
2629 };
2630
2631 /* V4T Thumb -> Thumb long branch stub. Using the stack is not
2632 allowed. */
2633 static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb[] =
2634 {
2635 THUMB16_INSN (0x4778), /* bx pc */
2636 THUMB16_INSN (0xe7fd), /* b .-2 */
2637 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2638 ARM_INSN (0xe12fff1c), /* bx ip */
2639 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2640 };
2641
2642 /* V4T Thumb -> ARM long branch stub. Used on V4T where blx is not
2643 available. */
2644 static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm[] =
2645 {
2646 THUMB16_INSN (0x4778), /* bx pc */
2647 THUMB16_INSN (0xe7fd), /* b .-2 */
2648 ARM_INSN (0xe51ff004), /* ldr pc, [pc, #-4] */
2649 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2650 };
2651
2652 /* V4T Thumb -> ARM short branch stub. Shorter variant of the above
2653 one, when the destination is close enough. */
2654 static const insn_sequence elf32_arm_stub_short_branch_v4t_thumb_arm[] =
2655 {
2656 THUMB16_INSN (0x4778), /* bx pc */
2657 THUMB16_INSN (0xe7fd), /* b .-2 */
2658 ARM_REL_INSN (0xea000000, -8), /* b (X-8) */
2659 };
2660
2661 /* ARM/Thumb -> ARM long branch stub, PIC. On V5T and above, use
2662 blx to reach the stub if necessary. */
2663 static const insn_sequence elf32_arm_stub_long_branch_any_arm_pic[] =
2664 {
2665 ARM_INSN (0xe59fc000), /* ldr ip, [pc] */
2666 ARM_INSN (0xe08ff00c), /* add pc, pc, ip */
2667 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X-4) */
2668 };
2669
2670 /* ARM/Thumb -> Thumb long branch stub, PIC. On V5T and above, use
2671 blx to reach the stub if necessary. We can not add into pc;
2672 it is not guaranteed to mode switch (different in ARMv6 and
2673 ARMv7). */
2674 static const insn_sequence elf32_arm_stub_long_branch_any_thumb_pic[] =
2675 {
2676 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2677 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2678 ARM_INSN (0xe12fff1c), /* bx ip */
2679 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2680 };
2681
2682 /* V4T ARM -> ARM long branch stub, PIC. */
2683 static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb_pic[] =
2684 {
2685 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2686 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2687 ARM_INSN (0xe12fff1c), /* bx ip */
2688 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2689 };
2690
2691 /* V4T Thumb -> ARM long branch stub, PIC. */
2692 static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm_pic[] =
2693 {
2694 THUMB16_INSN (0x4778), /* bx pc */
2695 THUMB16_INSN (0xe7fd), /* b .-2 */
2696 ARM_INSN (0xe59fc000), /* ldr ip, [pc, #0] */
2697 ARM_INSN (0xe08cf00f), /* add pc, ip, pc */
2698 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X) */
2699 };
2700
2701 /* Thumb -> Thumb long branch stub, PIC. Used on M-profile
2702 architectures. */
2703 static const insn_sequence elf32_arm_stub_long_branch_thumb_only_pic[] =
2704 {
2705 THUMB16_INSN (0xb401), /* push {r0} */
2706 THUMB16_INSN (0x4802), /* ldr r0, [pc, #8] */
2707 THUMB16_INSN (0x46fc), /* mov ip, pc */
2708 THUMB16_INSN (0x4484), /* add ip, r0 */
2709 THUMB16_INSN (0xbc01), /* pop {r0} */
2710 THUMB16_INSN (0x4760), /* bx ip */
2711 DATA_WORD (0, R_ARM_REL32, 4), /* dcd R_ARM_REL32(X) */
2712 };
2713
2714 /* V4T Thumb -> Thumb long branch stub, PIC. Using the stack is not
2715 allowed. */
2716 static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb_pic[] =
2717 {
2718 THUMB16_INSN (0x4778), /* bx pc */
2719 THUMB16_INSN (0xe7fd), /* b .-2 */
2720 ARM_INSN (0xe59fc004), /* ldr ip, [pc, #4] */
2721 ARM_INSN (0xe08fc00c), /* add ip, pc, ip */
2722 ARM_INSN (0xe12fff1c), /* bx ip */
2723 DATA_WORD (0, R_ARM_REL32, 0), /* dcd R_ARM_REL32(X) */
2724 };
2725
2726 /* Thumb2/ARM -> TLS trampoline. Lowest common denominator, which is a
2727 long PIC stub. We can use r1 as a scratch -- and cannot use ip. */
2728 static const insn_sequence elf32_arm_stub_long_branch_any_tls_pic[] =
2729 {
2730 ARM_INSN (0xe59f1000), /* ldr r1, [pc] */
2731 ARM_INSN (0xe08ff001), /* add pc, pc, r1 */
2732 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X-4) */
2733 };
2734
2735 /* V4T Thumb -> TLS trampoline. lowest common denominator, which is a
2736 long PIC stub. We can use r1 as a scratch -- and cannot use ip. */
2737 static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_tls_pic[] =
2738 {
2739 THUMB16_INSN (0x4778), /* bx pc */
2740 THUMB16_INSN (0xe7fd), /* b .-2 */
2741 ARM_INSN (0xe59f1000), /* ldr r1, [pc, #0] */
2742 ARM_INSN (0xe081f00f), /* add pc, r1, pc */
2743 DATA_WORD (0, R_ARM_REL32, -4), /* dcd R_ARM_REL32(X) */
2744 };
2745
2746 /* NaCl ARM -> ARM long branch stub. */
2747 static const insn_sequence elf32_arm_stub_long_branch_arm_nacl[] =
2748 {
2749 ARM_INSN (0xe59fc00c), /* ldr ip, [pc, #12] */
2750 ARM_INSN (0xe3ccc13f), /* bic ip, ip, #0xc000000f */
2751 ARM_INSN (0xe12fff1c), /* bx ip */
2752 ARM_INSN (0xe320f000), /* nop */
2753 ARM_INSN (0xe125be70), /* bkpt 0x5be0 */
2754 DATA_WORD (0, R_ARM_ABS32, 0), /* dcd R_ARM_ABS32(X) */
2755 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2756 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2757 };
2758
2759 /* NaCl ARM -> ARM long branch stub, PIC. */
2760 static const insn_sequence elf32_arm_stub_long_branch_arm_nacl_pic[] =
2761 {
2762 ARM_INSN (0xe59fc00c), /* ldr ip, [pc, #12] */
2763 ARM_INSN (0xe08cc00f), /* add ip, ip, pc */
2764 ARM_INSN (0xe3ccc13f), /* bic ip, ip, #0xc000000f */
2765 ARM_INSN (0xe12fff1c), /* bx ip */
2766 ARM_INSN (0xe125be70), /* bkpt 0x5be0 */
2767 DATA_WORD (0, R_ARM_REL32, 8), /* dcd R_ARM_REL32(X+8) */
2768 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2769 DATA_WORD (0, R_ARM_NONE, 0), /* .word 0 */
2770 };
2771
2772 /* Stub used for transition to secure state (aka SG veneer). */
2773 static const insn_sequence elf32_arm_stub_cmse_branch_thumb_only[] =
2774 {
2775 THUMB32_INSN (0xe97fe97f), /* sg. */
2776 THUMB32_B_INSN (0xf000b800, -4), /* b.w original_branch_dest. */
2777 };
2778
2779
2780 /* Cortex-A8 erratum-workaround stubs. */
2781
2782 /* Stub used for conditional branches (which may be beyond +/-1MB away, so we
2783 can't use a conditional branch to reach this stub). */
2784
2785 static const insn_sequence elf32_arm_stub_a8_veneer_b_cond[] =
2786 {
2787 THUMB16_BCOND_INSN (0xd001), /* b<cond>.n true. */
2788 THUMB32_B_INSN (0xf000b800, -4), /* b.w insn_after_original_branch. */
2789 THUMB32_B_INSN (0xf000b800, -4) /* true: b.w original_branch_dest. */
2790 };
2791
2792 /* Stub used for b.w and bl.w instructions. */
2793
2794 static const insn_sequence elf32_arm_stub_a8_veneer_b[] =
2795 {
2796 THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest. */
2797 };
2798
2799 static const insn_sequence elf32_arm_stub_a8_veneer_bl[] =
2800 {
2801 THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest. */
2802 };
2803
2804 /* Stub used for Thumb-2 blx.w instructions. We modified the original blx.w
2805 instruction (which switches to ARM mode) to point to this stub. Jump to the
2806 real destination using an ARM-mode branch. */
2807
2808 static const insn_sequence elf32_arm_stub_a8_veneer_blx[] =
2809 {
2810 ARM_REL_INSN (0xea000000, -8) /* b original_branch_dest. */
2811 };
2812
2813 /* For each section group there can be a specially created linker section
2814 to hold the stubs for that group. The name of the stub section is based
2815 upon the name of another section within that group with the suffix below
2816 applied.
2817
2818 PR 13049: STUB_SUFFIX used to be ".stub", but this allowed the user to
2819 create what appeared to be a linker stub section when it actually
2820 contained user code/data. For example, consider this fragment:
2821
2822 const char * stubborn_problems[] = { "np" };
2823
2824 If this is compiled with "-fPIC -fdata-sections" then gcc produces a
2825 section called:
2826
2827 .data.rel.local.stubborn_problems
2828
2829 This then causes problems in arm32_arm_build_stubs() as it triggers:
2830
2831 // Ignore non-stub sections.
2832 if (!strstr (stub_sec->name, STUB_SUFFIX))
2833 continue;
2834
2835 And so the section would be ignored instead of being processed. Hence
2836 the change in definition of STUB_SUFFIX to a name that cannot be a valid
2837 C identifier. */
2838 #define STUB_SUFFIX ".__stub"
2839
2840 /* One entry per long/short branch stub defined above. */
2841 #define DEF_STUBS \
2842 DEF_STUB(long_branch_any_any) \
2843 DEF_STUB(long_branch_v4t_arm_thumb) \
2844 DEF_STUB(long_branch_thumb_only) \
2845 DEF_STUB(long_branch_v4t_thumb_thumb) \
2846 DEF_STUB(long_branch_v4t_thumb_arm) \
2847 DEF_STUB(short_branch_v4t_thumb_arm) \
2848 DEF_STUB(long_branch_any_arm_pic) \
2849 DEF_STUB(long_branch_any_thumb_pic) \
2850 DEF_STUB(long_branch_v4t_thumb_thumb_pic) \
2851 DEF_STUB(long_branch_v4t_arm_thumb_pic) \
2852 DEF_STUB(long_branch_v4t_thumb_arm_pic) \
2853 DEF_STUB(long_branch_thumb_only_pic) \
2854 DEF_STUB(long_branch_any_tls_pic) \
2855 DEF_STUB(long_branch_v4t_thumb_tls_pic) \
2856 DEF_STUB(long_branch_arm_nacl) \
2857 DEF_STUB(long_branch_arm_nacl_pic) \
2858 DEF_STUB(cmse_branch_thumb_only) \
2859 DEF_STUB(a8_veneer_b_cond) \
2860 DEF_STUB(a8_veneer_b) \
2861 DEF_STUB(a8_veneer_bl) \
2862 DEF_STUB(a8_veneer_blx) \
2863 DEF_STUB(long_branch_thumb2_only) \
2864 DEF_STUB(long_branch_thumb2_only_pure)
2865
2866 #define DEF_STUB(x) arm_stub_##x,
2867 enum elf32_arm_stub_type
2868 {
2869 arm_stub_none,
2870 DEF_STUBS
2871 max_stub_type
2872 };
2873 #undef DEF_STUB
2874
2875 /* Note the first a8_veneer type. */
2876 const unsigned arm_stub_a8_veneer_lwm = arm_stub_a8_veneer_b_cond;
2877
2878 typedef struct
2879 {
2880 const insn_sequence* template_sequence;
2881 int template_size;
2882 } stub_def;
2883
2884 #define DEF_STUB(x) {elf32_arm_stub_##x, ARRAY_SIZE(elf32_arm_stub_##x)},
2885 static const stub_def stub_definitions[] =
2886 {
2887 {NULL, 0},
2888 DEF_STUBS
2889 };
2890
2891 struct elf32_arm_stub_hash_entry
2892 {
2893 /* Base hash table entry structure. */
2894 struct bfd_hash_entry root;
2895
2896 /* The stub section. */
2897 asection *stub_sec;
2898
2899 /* Offset within stub_sec of the beginning of this stub. */
2900 bfd_vma stub_offset;
2901
2902 /* Given the symbol's value and its section we can determine its final
2903 value when building the stubs (so the stub knows where to jump). */
2904 bfd_vma target_value;
2905 asection *target_section;
2906
2907 /* Same as above but for the source of the branch to the stub. Used for
2908 Cortex-A8 erratum workaround to patch it to branch to the stub. As
2909 such, source section does not need to be recorded since Cortex-A8 erratum
2910 workaround stubs are only generated when both source and target are in the
2911 same section. */
2912 bfd_vma source_value;
2913
2914 /* The instruction which caused this stub to be generated (only valid for
2915 Cortex-A8 erratum workaround stubs at present). */
2916 unsigned long orig_insn;
2917
2918 /* The stub type. */
2919 enum elf32_arm_stub_type stub_type;
2920 /* Its encoding size in bytes. */
2921 int stub_size;
2922 /* Its template. */
2923 const insn_sequence *stub_template;
2924 /* The size of the template (number of entries). */
2925 int stub_template_size;
2926
2927 /* The symbol table entry, if any, that this was derived from. */
2928 struct elf32_arm_link_hash_entry *h;
2929
2930 /* Type of branch. */
2931 enum arm_st_branch_type branch_type;
2932
2933 /* Where this stub is being called from, or, in the case of combined
2934 stub sections, the first input section in the group. */
2935 asection *id_sec;
2936
2937 /* The name for the local symbol at the start of this stub. The
2938 stub name in the hash table has to be unique; this does not, so
2939 it can be friendlier. */
2940 char *output_name;
2941 };
2942
2943 /* Used to build a map of a section. This is required for mixed-endian
2944 code/data. */
2945
2946 typedef struct elf32_elf_section_map
2947 {
2948 bfd_vma vma;
2949 char type;
2950 }
2951 elf32_arm_section_map;
2952
2953 /* Information about a VFP11 erratum veneer, or a branch to such a veneer. */
2954
2955 typedef enum
2956 {
2957 VFP11_ERRATUM_BRANCH_TO_ARM_VENEER,
2958 VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER,
2959 VFP11_ERRATUM_ARM_VENEER,
2960 VFP11_ERRATUM_THUMB_VENEER
2961 }
2962 elf32_vfp11_erratum_type;
2963
2964 typedef struct elf32_vfp11_erratum_list
2965 {
2966 struct elf32_vfp11_erratum_list *next;
2967 bfd_vma vma;
2968 union
2969 {
2970 struct
2971 {
2972 struct elf32_vfp11_erratum_list *veneer;
2973 unsigned int vfp_insn;
2974 } b;
2975 struct
2976 {
2977 struct elf32_vfp11_erratum_list *branch;
2978 unsigned int id;
2979 } v;
2980 } u;
2981 elf32_vfp11_erratum_type type;
2982 }
2983 elf32_vfp11_erratum_list;
2984
2985 /* Information about a STM32L4XX erratum veneer, or a branch to such a
2986 veneer. */
2987 typedef enum
2988 {
2989 STM32L4XX_ERRATUM_BRANCH_TO_VENEER,
2990 STM32L4XX_ERRATUM_VENEER
2991 }
2992 elf32_stm32l4xx_erratum_type;
2993
2994 typedef struct elf32_stm32l4xx_erratum_list
2995 {
2996 struct elf32_stm32l4xx_erratum_list *next;
2997 bfd_vma vma;
2998 union
2999 {
3000 struct
3001 {
3002 struct elf32_stm32l4xx_erratum_list *veneer;
3003 unsigned int insn;
3004 } b;
3005 struct
3006 {
3007 struct elf32_stm32l4xx_erratum_list *branch;
3008 unsigned int id;
3009 } v;
3010 } u;
3011 elf32_stm32l4xx_erratum_type type;
3012 }
3013 elf32_stm32l4xx_erratum_list;
3014
3015 typedef enum
3016 {
3017 DELETE_EXIDX_ENTRY,
3018 INSERT_EXIDX_CANTUNWIND_AT_END
3019 }
3020 arm_unwind_edit_type;
3021
3022 /* A (sorted) list of edits to apply to an unwind table. */
3023 typedef struct arm_unwind_table_edit
3024 {
3025 arm_unwind_edit_type type;
3026 /* Note: we sometimes want to insert an unwind entry corresponding to a
3027 section different from the one we're currently writing out, so record the
3028 (text) section this edit relates to here. */
3029 asection *linked_section;
3030 unsigned int index;
3031 struct arm_unwind_table_edit *next;
3032 }
3033 arm_unwind_table_edit;
3034
3035 typedef struct _arm_elf_section_data
3036 {
3037 /* Information about mapping symbols. */
3038 struct bfd_elf_section_data elf;
3039 unsigned int mapcount;
3040 unsigned int mapsize;
3041 elf32_arm_section_map *map;
3042 /* Information about CPU errata. */
3043 unsigned int erratumcount;
3044 elf32_vfp11_erratum_list *erratumlist;
3045 unsigned int stm32l4xx_erratumcount;
3046 elf32_stm32l4xx_erratum_list *stm32l4xx_erratumlist;
3047 unsigned int additional_reloc_count;
3048 /* Information about unwind tables. */
3049 union
3050 {
3051 /* Unwind info attached to a text section. */
3052 struct
3053 {
3054 asection *arm_exidx_sec;
3055 } text;
3056
3057 /* Unwind info attached to an .ARM.exidx section. */
3058 struct
3059 {
3060 arm_unwind_table_edit *unwind_edit_list;
3061 arm_unwind_table_edit *unwind_edit_tail;
3062 } exidx;
3063 } u;
3064 }
3065 _arm_elf_section_data;
3066
3067 #define elf32_arm_section_data(sec) \
3068 ((_arm_elf_section_data *) elf_section_data (sec))
3069
3070 /* A fix which might be required for Cortex-A8 Thumb-2 branch/TLB erratum.
3071 These fixes are subject to a relaxation procedure (in elf32_arm_size_stubs),
3072 so may be created multiple times: we use an array of these entries whilst
3073 relaxing which we can refresh easily, then create stubs for each potentially
3074 erratum-triggering instruction once we've settled on a solution. */
3075
3076 struct a8_erratum_fix
3077 {
3078 bfd *input_bfd;
3079 asection *section;
3080 bfd_vma offset;
3081 bfd_vma target_offset;
3082 unsigned long orig_insn;
3083 char *stub_name;
3084 enum elf32_arm_stub_type stub_type;
3085 enum arm_st_branch_type branch_type;
3086 };
3087
3088 /* A table of relocs applied to branches which might trigger Cortex-A8
3089 erratum. */
3090
3091 struct a8_erratum_reloc
3092 {
3093 bfd_vma from;
3094 bfd_vma destination;
3095 struct elf32_arm_link_hash_entry *hash;
3096 const char *sym_name;
3097 unsigned int r_type;
3098 enum arm_st_branch_type branch_type;
3099 bfd_boolean non_a8_stub;
3100 };
3101
3102 /* The size of the thread control block. */
3103 #define TCB_SIZE 8
3104
3105 /* ARM-specific information about a PLT entry, over and above the usual
3106 gotplt_union. */
3107 struct arm_plt_info
3108 {
3109 /* We reference count Thumb references to a PLT entry separately,
3110 so that we can emit the Thumb trampoline only if needed. */
3111 bfd_signed_vma thumb_refcount;
3112
3113 /* Some references from Thumb code may be eliminated by BL->BLX
3114 conversion, so record them separately. */
3115 bfd_signed_vma maybe_thumb_refcount;
3116
3117 /* How many of the recorded PLT accesses were from non-call relocations.
3118 This information is useful when deciding whether anything takes the
3119 address of an STT_GNU_IFUNC PLT. A value of 0 means that all
3120 non-call references to the function should resolve directly to the
3121 real runtime target. */
3122 unsigned int noncall_refcount;
3123
3124 /* Since PLT entries have variable size if the Thumb prologue is
3125 used, we need to record the index into .got.plt instead of
3126 recomputing it from the PLT offset. */
3127 bfd_signed_vma got_offset;
3128 };
3129
3130 /* Information about an .iplt entry for a local STT_GNU_IFUNC symbol. */
3131 struct arm_local_iplt_info
3132 {
3133 /* The information that is usually found in the generic ELF part of
3134 the hash table entry. */
3135 union gotplt_union root;
3136
3137 /* The information that is usually found in the ARM-specific part of
3138 the hash table entry. */
3139 struct arm_plt_info arm;
3140
3141 /* A list of all potential dynamic relocations against this symbol. */
3142 struct elf_dyn_relocs *dyn_relocs;
3143 };
3144
3145 /* Structure to handle FDPIC support for local functions. */
3146 struct fdpic_local {
3147 unsigned int funcdesc_cnt;
3148 unsigned int gotofffuncdesc_cnt;
3149 int funcdesc_offset;
3150 };
3151
3152 struct elf_arm_obj_tdata
3153 {
3154 struct elf_obj_tdata root;
3155
3156 /* tls_type for each local got entry. */
3157 char *local_got_tls_type;
3158
3159 /* GOTPLT entries for TLS descriptors. */
3160 bfd_vma *local_tlsdesc_gotent;
3161
3162 /* Information for local symbols that need entries in .iplt. */
3163 struct arm_local_iplt_info **local_iplt;
3164
3165 /* Zero to warn when linking objects with incompatible enum sizes. */
3166 int no_enum_size_warning;
3167
3168 /* Zero to warn when linking objects with incompatible wchar_t sizes. */
3169 int no_wchar_size_warning;
3170
3171 /* Maintains FDPIC counters and funcdesc info. */
3172 struct fdpic_local *local_fdpic_cnts;
3173 };
3174
3175 #define elf_arm_tdata(bfd) \
3176 ((struct elf_arm_obj_tdata *) (bfd)->tdata.any)
3177
3178 #define elf32_arm_local_got_tls_type(bfd) \
3179 (elf_arm_tdata (bfd)->local_got_tls_type)
3180
3181 #define elf32_arm_local_tlsdesc_gotent(bfd) \
3182 (elf_arm_tdata (bfd)->local_tlsdesc_gotent)
3183
3184 #define elf32_arm_local_iplt(bfd) \
3185 (elf_arm_tdata (bfd)->local_iplt)
3186
3187 #define elf32_arm_local_fdpic_cnts(bfd) \
3188 (elf_arm_tdata (bfd)->local_fdpic_cnts)
3189
3190 #define is_arm_elf(bfd) \
3191 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
3192 && elf_tdata (bfd) != NULL \
3193 && elf_object_id (bfd) == ARM_ELF_DATA)
3194
3195 static bfd_boolean
3196 elf32_arm_mkobject (bfd *abfd)
3197 {
3198 return bfd_elf_allocate_object (abfd, sizeof (struct elf_arm_obj_tdata),
3199 ARM_ELF_DATA);
3200 }
3201
3202 #define elf32_arm_hash_entry(ent) ((struct elf32_arm_link_hash_entry *)(ent))
3203
3204 /* Structure to handle FDPIC support for extern functions. */
3205 struct fdpic_global {
3206 unsigned int gotofffuncdesc_cnt;
3207 unsigned int gotfuncdesc_cnt;
3208 unsigned int funcdesc_cnt;
3209 int funcdesc_offset;
3210 int gotfuncdesc_offset;
3211 };
3212
3213 /* Arm ELF linker hash entry. */
3214 struct elf32_arm_link_hash_entry
3215 {
3216 struct elf_link_hash_entry root;
3217
3218 /* ARM-specific PLT information. */
3219 struct arm_plt_info plt;
3220
3221 #define GOT_UNKNOWN 0
3222 #define GOT_NORMAL 1
3223 #define GOT_TLS_GD 2
3224 #define GOT_TLS_IE 4
3225 #define GOT_TLS_GDESC 8
3226 #define GOT_TLS_GD_ANY_P(type) ((type & GOT_TLS_GD) || (type & GOT_TLS_GDESC))
3227 unsigned int tls_type : 8;
3228
3229 /* True if the symbol's PLT entry is in .iplt rather than .plt. */
3230 unsigned int is_iplt : 1;
3231
3232 unsigned int unused : 23;
3233
3234 /* Offset of the GOTPLT entry reserved for the TLS descriptor,
3235 starting at the end of the jump table. */
3236 bfd_vma tlsdesc_got;
3237
3238 /* The symbol marking the real symbol location for exported thumb
3239 symbols with Arm stubs. */
3240 struct elf_link_hash_entry *export_glue;
3241
3242 /* A pointer to the most recently used stub hash entry against this
3243 symbol. */
3244 struct elf32_arm_stub_hash_entry *stub_cache;
3245
3246 /* Counter for FDPIC relocations against this symbol. */
3247 struct fdpic_global fdpic_cnts;
3248 };
3249
3250 /* Traverse an arm ELF linker hash table. */
3251 #define elf32_arm_link_hash_traverse(table, func, info) \
3252 (elf_link_hash_traverse \
3253 (&(table)->root, \
3254 (bfd_boolean (*) (struct elf_link_hash_entry *, void *)) (func), \
3255 (info)))
3256
3257 /* Get the ARM elf linker hash table from a link_info structure. */
3258 #define elf32_arm_hash_table(info) \
3259 (elf_hash_table_id ((struct elf_link_hash_table *) ((info)->hash)) \
3260 == ARM_ELF_DATA ? ((struct elf32_arm_link_hash_table *) ((info)->hash)) : NULL)
3261
3262 #define arm_stub_hash_lookup(table, string, create, copy) \
3263 ((struct elf32_arm_stub_hash_entry *) \
3264 bfd_hash_lookup ((table), (string), (create), (copy)))
3265
3266 /* Array to keep track of which stub sections have been created, and
3267 information on stub grouping. */
3268 struct map_stub
3269 {
3270 /* This is the section to which stubs in the group will be
3271 attached. */
3272 asection *link_sec;
3273 /* The stub section. */
3274 asection *stub_sec;
3275 };
3276
3277 #define elf32_arm_compute_jump_table_size(htab) \
3278 ((htab)->next_tls_desc_index * 4)
3279
3280 /* ARM ELF linker hash table. */
3281 struct elf32_arm_link_hash_table
3282 {
3283 /* The main hash table. */
3284 struct elf_link_hash_table root;
3285
3286 /* The size in bytes of the section containing the Thumb-to-ARM glue. */
3287 bfd_size_type thumb_glue_size;
3288
3289 /* The size in bytes of the section containing the ARM-to-Thumb glue. */
3290 bfd_size_type arm_glue_size;
3291
3292 /* The size in bytes of section containing the ARMv4 BX veneers. */
3293 bfd_size_type bx_glue_size;
3294
3295 /* Offsets of ARMv4 BX veneers. Bit1 set if present, and Bit0 set when
3296 veneer has been populated. */
3297 bfd_vma bx_glue_offset[15];
3298
3299 /* The size in bytes of the section containing glue for VFP11 erratum
3300 veneers. */
3301 bfd_size_type vfp11_erratum_glue_size;
3302
3303 /* The size in bytes of the section containing glue for STM32L4XX erratum
3304 veneers. */
3305 bfd_size_type stm32l4xx_erratum_glue_size;
3306
3307 /* A table of fix locations for Cortex-A8 Thumb-2 branch/TLB erratum. This
3308 holds Cortex-A8 erratum fix locations between elf32_arm_size_stubs() and
3309 elf32_arm_write_section(). */
3310 struct a8_erratum_fix *a8_erratum_fixes;
3311 unsigned int num_a8_erratum_fixes;
3312
3313 /* An arbitrary input BFD chosen to hold the glue sections. */
3314 bfd * bfd_of_glue_owner;
3315
3316 /* Nonzero to output a BE8 image. */
3317 int byteswap_code;
3318
3319 /* Zero if R_ARM_TARGET1 means R_ARM_ABS32.
3320 Nonzero if R_ARM_TARGET1 means R_ARM_REL32. */
3321 int target1_is_rel;
3322
3323 /* The relocation to use for R_ARM_TARGET2 relocations. */
3324 int target2_reloc;
3325
3326 /* 0 = Ignore R_ARM_V4BX.
3327 1 = Convert BX to MOV PC.
3328 2 = Generate v4 interworing stubs. */
3329 int fix_v4bx;
3330
3331 /* Whether we should fix the Cortex-A8 Thumb-2 branch/TLB erratum. */
3332 int fix_cortex_a8;
3333
3334 /* Whether we should fix the ARM1176 BLX immediate issue. */
3335 int fix_arm1176;
3336
3337 /* Nonzero if the ARM/Thumb BLX instructions are available for use. */
3338 int use_blx;
3339
3340 /* What sort of code sequences we should look for which may trigger the
3341 VFP11 denorm erratum. */
3342 bfd_arm_vfp11_fix vfp11_fix;
3343
3344 /* Global counter for the number of fixes we have emitted. */
3345 int num_vfp11_fixes;
3346
3347 /* What sort of code sequences we should look for which may trigger the
3348 STM32L4XX erratum. */
3349 bfd_arm_stm32l4xx_fix stm32l4xx_fix;
3350
3351 /* Global counter for the number of fixes we have emitted. */
3352 int num_stm32l4xx_fixes;
3353
3354 /* Nonzero to force PIC branch veneers. */
3355 int pic_veneer;
3356
3357 /* The number of bytes in the initial entry in the PLT. */
3358 bfd_size_type plt_header_size;
3359
3360 /* The number of bytes in the subsequent PLT etries. */
3361 bfd_size_type plt_entry_size;
3362
3363 /* True if the target uses REL relocations. */
3364 bfd_boolean use_rel;
3365
3366 /* Nonzero if import library must be a secure gateway import library
3367 as per ARMv8-M Security Extensions. */
3368 int cmse_implib;
3369
3370 /* The import library whose symbols' address must remain stable in
3371 the import library generated. */
3372 bfd *in_implib_bfd;
3373
3374 /* The index of the next unused R_ARM_TLS_DESC slot in .rel.plt. */
3375 bfd_vma next_tls_desc_index;
3376
3377 /* How many R_ARM_TLS_DESC relocations were generated so far. */
3378 bfd_vma num_tls_desc;
3379
3380 /* The (unloaded but important) VxWorks .rela.plt.unloaded section. */
3381 asection *srelplt2;
3382
3383 /* Offset in .plt section of tls_arm_trampoline. */
3384 bfd_vma tls_trampoline;
3385
3386 /* Data for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations. */
3387 union
3388 {
3389 bfd_signed_vma refcount;
3390 bfd_vma offset;
3391 } tls_ldm_got;
3392
3393 /* For convenience in allocate_dynrelocs. */
3394 bfd * obfd;
3395
3396 /* The amount of space used by the reserved portion of the sgotplt
3397 section, plus whatever space is used by the jump slots. */
3398 bfd_vma sgotplt_jump_table_size;
3399
3400 /* The stub hash table. */
3401 struct bfd_hash_table stub_hash_table;
3402
3403 /* Linker stub bfd. */
3404 bfd *stub_bfd;
3405
3406 /* Linker call-backs. */
3407 asection * (*add_stub_section) (const char *, asection *, asection *,
3408 unsigned int);
3409 void (*layout_sections_again) (void);
3410
3411 /* Array to keep track of which stub sections have been created, and
3412 information on stub grouping. */
3413 struct map_stub *stub_group;
3414
3415 /* Input stub section holding secure gateway veneers. */
3416 asection *cmse_stub_sec;
3417
3418 /* Offset in cmse_stub_sec where new SG veneers (not in input import library)
3419 start to be allocated. */
3420 bfd_vma new_cmse_stub_offset;
3421
3422 /* Number of elements in stub_group. */
3423 unsigned int top_id;
3424
3425 /* Assorted information used by elf32_arm_size_stubs. */
3426 unsigned int bfd_count;
3427 unsigned int top_index;
3428 asection **input_list;
3429
3430 /* True if the target system uses FDPIC. */
3431 int fdpic_p;
3432
3433 /* Fixup section. Used for FDPIC. */
3434 asection *srofixup;
3435 };
3436
3437 /* Add an FDPIC read-only fixup. */
3438 static void
3439 arm_elf_add_rofixup (bfd *output_bfd, asection *srofixup, bfd_vma offset)
3440 {
3441 bfd_vma fixup_offset;
3442
3443 fixup_offset = srofixup->reloc_count++ * 4;
3444 BFD_ASSERT (fixup_offset < srofixup->size);
3445 bfd_put_32 (output_bfd, offset, srofixup->contents + fixup_offset);
3446 }
3447
3448 static inline int
3449 ctz (unsigned int mask)
3450 {
3451 #if GCC_VERSION >= 3004
3452 return __builtin_ctz (mask);
3453 #else
3454 unsigned int i;
3455
3456 for (i = 0; i < 8 * sizeof (mask); i++)
3457 {
3458 if (mask & 0x1)
3459 break;
3460 mask = (mask >> 1);
3461 }
3462 return i;
3463 #endif
3464 }
3465
3466 static inline int
3467 elf32_arm_popcount (unsigned int mask)
3468 {
3469 #if GCC_VERSION >= 3004
3470 return __builtin_popcount (mask);
3471 #else
3472 unsigned int i;
3473 int sum = 0;
3474
3475 for (i = 0; i < 8 * sizeof (mask); i++)
3476 {
3477 if (mask & 0x1)
3478 sum++;
3479 mask = (mask >> 1);
3480 }
3481 return sum;
3482 #endif
3483 }
3484
3485 static void elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
3486 asection *sreloc, Elf_Internal_Rela *rel);
3487
3488 static void
3489 arm_elf_fill_funcdesc(bfd *output_bfd,
3490 struct bfd_link_info *info,
3491 int *funcdesc_offset,
3492 int dynindx,
3493 int offset,
3494 bfd_vma addr,
3495 bfd_vma dynreloc_value,
3496 bfd_vma seg)
3497 {
3498 if ((*funcdesc_offset & 1) == 0)
3499 {
3500 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
3501 asection *sgot = globals->root.sgot;
3502
3503 if (bfd_link_pic(info))
3504 {
3505 asection *srelgot = globals->root.srelgot;
3506 Elf_Internal_Rela outrel;
3507
3508 outrel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
3509 outrel.r_offset = sgot->output_section->vma + sgot->output_offset + offset;
3510 outrel.r_addend = 0;
3511
3512 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
3513 bfd_put_32 (output_bfd, addr, sgot->contents + offset);
3514 bfd_put_32 (output_bfd, seg, sgot->contents + offset + 4);
3515 }
3516 else
3517 {
3518 struct elf_link_hash_entry *hgot = globals->root.hgot;
3519 bfd_vma got_value = hgot->root.u.def.value
3520 + hgot->root.u.def.section->output_section->vma
3521 + hgot->root.u.def.section->output_offset;
3522
3523 arm_elf_add_rofixup(output_bfd, globals->srofixup,
3524 sgot->output_section->vma + sgot->output_offset
3525 + offset);
3526 arm_elf_add_rofixup(output_bfd, globals->srofixup,
3527 sgot->output_section->vma + sgot->output_offset
3528 + offset + 4);
3529 bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + offset);
3530 bfd_put_32 (output_bfd, got_value, sgot->contents + offset + 4);
3531 }
3532 *funcdesc_offset |= 1;
3533 }
3534 }
3535
3536 /* Create an entry in an ARM ELF linker hash table. */
3537
3538 static struct bfd_hash_entry *
3539 elf32_arm_link_hash_newfunc (struct bfd_hash_entry * entry,
3540 struct bfd_hash_table * table,
3541 const char * string)
3542 {
3543 struct elf32_arm_link_hash_entry * ret =
3544 (struct elf32_arm_link_hash_entry *) entry;
3545
3546 /* Allocate the structure if it has not already been allocated by a
3547 subclass. */
3548 if (ret == NULL)
3549 ret = (struct elf32_arm_link_hash_entry *)
3550 bfd_hash_allocate (table, sizeof (struct elf32_arm_link_hash_entry));
3551 if (ret == NULL)
3552 return (struct bfd_hash_entry *) ret;
3553
3554 /* Call the allocation method of the superclass. */
3555 ret = ((struct elf32_arm_link_hash_entry *)
3556 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3557 table, string));
3558 if (ret != NULL)
3559 {
3560 ret->tls_type = GOT_UNKNOWN;
3561 ret->tlsdesc_got = (bfd_vma) -1;
3562 ret->plt.thumb_refcount = 0;
3563 ret->plt.maybe_thumb_refcount = 0;
3564 ret->plt.noncall_refcount = 0;
3565 ret->plt.got_offset = -1;
3566 ret->is_iplt = FALSE;
3567 ret->export_glue = NULL;
3568
3569 ret->stub_cache = NULL;
3570
3571 ret->fdpic_cnts.gotofffuncdesc_cnt = 0;
3572 ret->fdpic_cnts.gotfuncdesc_cnt = 0;
3573 ret->fdpic_cnts.funcdesc_cnt = 0;
3574 ret->fdpic_cnts.funcdesc_offset = -1;
3575 ret->fdpic_cnts.gotfuncdesc_offset = -1;
3576 }
3577
3578 return (struct bfd_hash_entry *) ret;
3579 }
3580
3581 /* Ensure that we have allocated bookkeeping structures for ABFD's local
3582 symbols. */
3583
3584 static bfd_boolean
3585 elf32_arm_allocate_local_sym_info (bfd *abfd)
3586 {
3587 if (elf_local_got_refcounts (abfd) == NULL)
3588 {
3589 bfd_size_type num_syms;
3590 bfd_size_type size;
3591 char *data;
3592
3593 num_syms = elf_tdata (abfd)->symtab_hdr.sh_info;
3594 size = num_syms * (sizeof (bfd_signed_vma)
3595 + sizeof (struct arm_local_iplt_info *)
3596 + sizeof (bfd_vma)
3597 + sizeof (char)
3598 + sizeof (struct fdpic_local));
3599 data = bfd_zalloc (abfd, size);
3600 if (data == NULL)
3601 return FALSE;
3602
3603 elf32_arm_local_fdpic_cnts (abfd) = (struct fdpic_local *) data;
3604 data += num_syms * sizeof (struct fdpic_local);
3605
3606 elf_local_got_refcounts (abfd) = (bfd_signed_vma *) data;
3607 data += num_syms * sizeof (bfd_signed_vma);
3608
3609 elf32_arm_local_iplt (abfd) = (struct arm_local_iplt_info **) data;
3610 data += num_syms * sizeof (struct arm_local_iplt_info *);
3611
3612 elf32_arm_local_tlsdesc_gotent (abfd) = (bfd_vma *) data;
3613 data += num_syms * sizeof (bfd_vma);
3614
3615 elf32_arm_local_got_tls_type (abfd) = data;
3616 }
3617 return TRUE;
3618 }
3619
3620 /* Return the .iplt information for local symbol R_SYMNDX, which belongs
3621 to input bfd ABFD. Create the information if it doesn't already exist.
3622 Return null if an allocation fails. */
3623
3624 static struct arm_local_iplt_info *
3625 elf32_arm_create_local_iplt (bfd *abfd, unsigned long r_symndx)
3626 {
3627 struct arm_local_iplt_info **ptr;
3628
3629 if (!elf32_arm_allocate_local_sym_info (abfd))
3630 return NULL;
3631
3632 BFD_ASSERT (r_symndx < elf_tdata (abfd)->symtab_hdr.sh_info);
3633 ptr = &elf32_arm_local_iplt (abfd)[r_symndx];
3634 if (*ptr == NULL)
3635 *ptr = bfd_zalloc (abfd, sizeof (**ptr));
3636 return *ptr;
3637 }
3638
3639 /* Try to obtain PLT information for the symbol with index R_SYMNDX
3640 in ABFD's symbol table. If the symbol is global, H points to its
3641 hash table entry, otherwise H is null.
3642
3643 Return true if the symbol does have PLT information. When returning
3644 true, point *ROOT_PLT at the target-independent reference count/offset
3645 union and *ARM_PLT at the ARM-specific information. */
3646
3647 static bfd_boolean
3648 elf32_arm_get_plt_info (bfd *abfd, struct elf32_arm_link_hash_table *globals,
3649 struct elf32_arm_link_hash_entry *h,
3650 unsigned long r_symndx, union gotplt_union **root_plt,
3651 struct arm_plt_info **arm_plt)
3652 {
3653 struct arm_local_iplt_info *local_iplt;
3654
3655 if (globals->root.splt == NULL && globals->root.iplt == NULL)
3656 return FALSE;
3657
3658 if (h != NULL)
3659 {
3660 *root_plt = &h->root.plt;
3661 *arm_plt = &h->plt;
3662 return TRUE;
3663 }
3664
3665 if (elf32_arm_local_iplt (abfd) == NULL)
3666 return FALSE;
3667
3668 local_iplt = elf32_arm_local_iplt (abfd)[r_symndx];
3669 if (local_iplt == NULL)
3670 return FALSE;
3671
3672 *root_plt = &local_iplt->root;
3673 *arm_plt = &local_iplt->arm;
3674 return TRUE;
3675 }
3676
3677 static bfd_boolean using_thumb_only (struct elf32_arm_link_hash_table *globals);
3678
3679 /* Return true if the PLT described by ARM_PLT requires a Thumb stub
3680 before it. */
3681
3682 static bfd_boolean
3683 elf32_arm_plt_needs_thumb_stub_p (struct bfd_link_info *info,
3684 struct arm_plt_info *arm_plt)
3685 {
3686 struct elf32_arm_link_hash_table *htab;
3687
3688 htab = elf32_arm_hash_table (info);
3689
3690 return (!using_thumb_only(htab) && (arm_plt->thumb_refcount != 0
3691 || (!htab->use_blx && arm_plt->maybe_thumb_refcount != 0)));
3692 }
3693
3694 /* Return a pointer to the head of the dynamic reloc list that should
3695 be used for local symbol ISYM, which is symbol number R_SYMNDX in
3696 ABFD's symbol table. Return null if an error occurs. */
3697
3698 static struct elf_dyn_relocs **
3699 elf32_arm_get_local_dynreloc_list (bfd *abfd, unsigned long r_symndx,
3700 Elf_Internal_Sym *isym)
3701 {
3702 if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
3703 {
3704 struct arm_local_iplt_info *local_iplt;
3705
3706 local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
3707 if (local_iplt == NULL)
3708 return NULL;
3709 return &local_iplt->dyn_relocs;
3710 }
3711 else
3712 {
3713 /* Track dynamic relocs needed for local syms too.
3714 We really need local syms available to do this
3715 easily. Oh well. */
3716 asection *s;
3717 void *vpp;
3718
3719 s = bfd_section_from_elf_index (abfd, isym->st_shndx);
3720 if (s == NULL)
3721 abort ();
3722
3723 vpp = &elf_section_data (s)->local_dynrel;
3724 return (struct elf_dyn_relocs **) vpp;
3725 }
3726 }
3727
3728 /* Initialize an entry in the stub hash table. */
3729
3730 static struct bfd_hash_entry *
3731 stub_hash_newfunc (struct bfd_hash_entry *entry,
3732 struct bfd_hash_table *table,
3733 const char *string)
3734 {
3735 /* Allocate the structure if it has not already been allocated by a
3736 subclass. */
3737 if (entry == NULL)
3738 {
3739 entry = (struct bfd_hash_entry *)
3740 bfd_hash_allocate (table, sizeof (struct elf32_arm_stub_hash_entry));
3741 if (entry == NULL)
3742 return entry;
3743 }
3744
3745 /* Call the allocation method of the superclass. */
3746 entry = bfd_hash_newfunc (entry, table, string);
3747 if (entry != NULL)
3748 {
3749 struct elf32_arm_stub_hash_entry *eh;
3750
3751 /* Initialize the local fields. */
3752 eh = (struct elf32_arm_stub_hash_entry *) entry;
3753 eh->stub_sec = NULL;
3754 eh->stub_offset = (bfd_vma) -1;
3755 eh->source_value = 0;
3756 eh->target_value = 0;
3757 eh->target_section = NULL;
3758 eh->orig_insn = 0;
3759 eh->stub_type = arm_stub_none;
3760 eh->stub_size = 0;
3761 eh->stub_template = NULL;
3762 eh->stub_template_size = -1;
3763 eh->h = NULL;
3764 eh->id_sec = NULL;
3765 eh->output_name = NULL;
3766 }
3767
3768 return entry;
3769 }
3770
3771 /* Create .got, .gotplt, and .rel(a).got sections in DYNOBJ, and set up
3772 shortcuts to them in our hash table. */
3773
3774 static bfd_boolean
3775 create_got_section (bfd *dynobj, struct bfd_link_info *info)
3776 {
3777 struct elf32_arm_link_hash_table *htab;
3778
3779 htab = elf32_arm_hash_table (info);
3780 if (htab == NULL)
3781 return FALSE;
3782
3783 /* BPABI objects never have a GOT, or associated sections. */
3784 if (htab->root.target_os == is_symbian)
3785 return TRUE;
3786
3787 if (! _bfd_elf_create_got_section (dynobj, info))
3788 return FALSE;
3789
3790 /* Also create .rofixup. */
3791 if (htab->fdpic_p)
3792 {
3793 htab->srofixup = bfd_make_section_with_flags (dynobj, ".rofixup",
3794 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
3795 | SEC_IN_MEMORY | SEC_LINKER_CREATED | SEC_READONLY));
3796 if (htab->srofixup == NULL
3797 || !bfd_set_section_alignment (htab->srofixup, 2))
3798 return FALSE;
3799 }
3800
3801 return TRUE;
3802 }
3803
3804 /* Create the .iplt, .rel(a).iplt and .igot.plt sections. */
3805
3806 static bfd_boolean
3807 create_ifunc_sections (struct bfd_link_info *info)
3808 {
3809 struct elf32_arm_link_hash_table *htab;
3810 const struct elf_backend_data *bed;
3811 bfd *dynobj;
3812 asection *s;
3813 flagword flags;
3814
3815 htab = elf32_arm_hash_table (info);
3816 dynobj = htab->root.dynobj;
3817 bed = get_elf_backend_data (dynobj);
3818 flags = bed->dynamic_sec_flags;
3819
3820 if (htab->root.iplt == NULL)
3821 {
3822 s = bfd_make_section_anyway_with_flags (dynobj, ".iplt",
3823 flags | SEC_READONLY | SEC_CODE);
3824 if (s == NULL
3825 || !bfd_set_section_alignment (s, bed->plt_alignment))
3826 return FALSE;
3827 htab->root.iplt = s;
3828 }
3829
3830 if (htab->root.irelplt == NULL)
3831 {
3832 s = bfd_make_section_anyway_with_flags (dynobj,
3833 RELOC_SECTION (htab, ".iplt"),
3834 flags | SEC_READONLY);
3835 if (s == NULL
3836 || !bfd_set_section_alignment (s, bed->s->log_file_align))
3837 return FALSE;
3838 htab->root.irelplt = s;
3839 }
3840
3841 if (htab->root.igotplt == NULL)
3842 {
3843 s = bfd_make_section_anyway_with_flags (dynobj, ".igot.plt", flags);
3844 if (s == NULL
3845 || !bfd_set_section_alignment (s, bed->s->log_file_align))
3846 return FALSE;
3847 htab->root.igotplt = s;
3848 }
3849 return TRUE;
3850 }
3851
3852 /* Determine if we're dealing with a Thumb only architecture. */
3853
3854 static bfd_boolean
3855 using_thumb_only (struct elf32_arm_link_hash_table *globals)
3856 {
3857 int arch;
3858 int profile = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3859 Tag_CPU_arch_profile);
3860
3861 if (profile)
3862 return profile == 'M';
3863
3864 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3865
3866 /* Force return logic to be reviewed for each new architecture. */
3867 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
3868
3869 if (arch == TAG_CPU_ARCH_V6_M
3870 || arch == TAG_CPU_ARCH_V6S_M
3871 || arch == TAG_CPU_ARCH_V7E_M
3872 || arch == TAG_CPU_ARCH_V8M_BASE
3873 || arch == TAG_CPU_ARCH_V8M_MAIN
3874 || arch == TAG_CPU_ARCH_V8_1M_MAIN)
3875 return TRUE;
3876
3877 return FALSE;
3878 }
3879
3880 /* Determine if we're dealing with a Thumb-2 object. */
3881
3882 static bfd_boolean
3883 using_thumb2 (struct elf32_arm_link_hash_table *globals)
3884 {
3885 int arch;
3886 int thumb_isa = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3887 Tag_THUMB_ISA_use);
3888
3889 if (thumb_isa)
3890 return thumb_isa == 2;
3891
3892 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3893
3894 /* Force return logic to be reviewed for each new architecture. */
3895 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
3896
3897 return (arch == TAG_CPU_ARCH_V6T2
3898 || arch == TAG_CPU_ARCH_V7
3899 || arch == TAG_CPU_ARCH_V7E_M
3900 || arch == TAG_CPU_ARCH_V8
3901 || arch == TAG_CPU_ARCH_V8R
3902 || arch == TAG_CPU_ARCH_V8M_MAIN
3903 || arch == TAG_CPU_ARCH_V8_1M_MAIN);
3904 }
3905
3906 /* Determine whether Thumb-2 BL instruction is available. */
3907
3908 static bfd_boolean
3909 using_thumb2_bl (struct elf32_arm_link_hash_table *globals)
3910 {
3911 int arch =
3912 bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3913
3914 /* Force return logic to be reviewed for each new architecture. */
3915 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
3916
3917 /* Architecture was introduced after ARMv6T2 (eg. ARMv6-M). */
3918 return (arch == TAG_CPU_ARCH_V6T2
3919 || arch >= TAG_CPU_ARCH_V7);
3920 }
3921
3922 /* Create .plt, .rel(a).plt, .got, .got.plt, .rel(a).got, .dynbss, and
3923 .rel(a).bss sections in DYNOBJ, and set up shortcuts to them in our
3924 hash table. */
3925
3926 static bfd_boolean
3927 elf32_arm_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
3928 {
3929 struct elf32_arm_link_hash_table *htab;
3930
3931 htab = elf32_arm_hash_table (info);
3932 if (htab == NULL)
3933 return FALSE;
3934
3935 if (!htab->root.sgot && !create_got_section (dynobj, info))
3936 return FALSE;
3937
3938 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
3939 return FALSE;
3940
3941 if (htab->root.target_os == is_vxworks)
3942 {
3943 if (!elf_vxworks_create_dynamic_sections (dynobj, info, &htab->srelplt2))
3944 return FALSE;
3945
3946 if (bfd_link_pic (info))
3947 {
3948 htab->plt_header_size = 0;
3949 htab->plt_entry_size
3950 = 4 * ARRAY_SIZE (elf32_arm_vxworks_shared_plt_entry);
3951 }
3952 else
3953 {
3954 htab->plt_header_size
3955 = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt0_entry);
3956 htab->plt_entry_size
3957 = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt_entry);
3958 }
3959
3960 if (elf_elfheader (dynobj))
3961 elf_elfheader (dynobj)->e_ident[EI_CLASS] = ELFCLASS32;
3962 }
3963 else
3964 {
3965 /* PR ld/16017
3966 Test for thumb only architectures. Note - we cannot just call
3967 using_thumb_only() as the attributes in the output bfd have not been
3968 initialised at this point, so instead we use the input bfd. */
3969 bfd * saved_obfd = htab->obfd;
3970
3971 htab->obfd = dynobj;
3972 if (using_thumb_only (htab))
3973 {
3974 htab->plt_header_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
3975 htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
3976 }
3977 htab->obfd = saved_obfd;
3978 }
3979
3980 if (htab->fdpic_p) {
3981 htab->plt_header_size = 0;
3982 if (info->flags & DF_BIND_NOW)
3983 htab->plt_entry_size = 4 * (ARRAY_SIZE(elf32_arm_fdpic_plt_entry) - 5);
3984 else
3985 htab->plt_entry_size = 4 * ARRAY_SIZE(elf32_arm_fdpic_plt_entry);
3986 }
3987
3988 if (!htab->root.splt
3989 || !htab->root.srelplt
3990 || !htab->root.sdynbss
3991 || (!bfd_link_pic (info) && !htab->root.srelbss))
3992 abort ();
3993
3994 return TRUE;
3995 }
3996
3997 /* Copy the extra info we tack onto an elf_link_hash_entry. */
3998
3999 static void
4000 elf32_arm_copy_indirect_symbol (struct bfd_link_info *info,
4001 struct elf_link_hash_entry *dir,
4002 struct elf_link_hash_entry *ind)
4003 {
4004 struct elf32_arm_link_hash_entry *edir, *eind;
4005
4006 edir = (struct elf32_arm_link_hash_entry *) dir;
4007 eind = (struct elf32_arm_link_hash_entry *) ind;
4008
4009 if (ind->root.type == bfd_link_hash_indirect)
4010 {
4011 /* Copy over PLT info. */
4012 edir->plt.thumb_refcount += eind->plt.thumb_refcount;
4013 eind->plt.thumb_refcount = 0;
4014 edir->plt.maybe_thumb_refcount += eind->plt.maybe_thumb_refcount;
4015 eind->plt.maybe_thumb_refcount = 0;
4016 edir->plt.noncall_refcount += eind->plt.noncall_refcount;
4017 eind->plt.noncall_refcount = 0;
4018
4019 /* Copy FDPIC counters. */
4020 edir->fdpic_cnts.gotofffuncdesc_cnt += eind->fdpic_cnts.gotofffuncdesc_cnt;
4021 edir->fdpic_cnts.gotfuncdesc_cnt += eind->fdpic_cnts.gotfuncdesc_cnt;
4022 edir->fdpic_cnts.funcdesc_cnt += eind->fdpic_cnts.funcdesc_cnt;
4023
4024 /* We should only allocate a function to .iplt once the final
4025 symbol information is known. */
4026 BFD_ASSERT (!eind->is_iplt);
4027
4028 if (dir->got.refcount <= 0)
4029 {
4030 edir->tls_type = eind->tls_type;
4031 eind->tls_type = GOT_UNKNOWN;
4032 }
4033 }
4034
4035 _bfd_elf_link_hash_copy_indirect (info, dir, ind);
4036 }
4037
4038 /* Destroy an ARM elf linker hash table. */
4039
4040 static void
4041 elf32_arm_link_hash_table_free (bfd *obfd)
4042 {
4043 struct elf32_arm_link_hash_table *ret
4044 = (struct elf32_arm_link_hash_table *) obfd->link.hash;
4045
4046 bfd_hash_table_free (&ret->stub_hash_table);
4047 _bfd_elf_link_hash_table_free (obfd);
4048 }
4049
4050 /* Create an ARM elf linker hash table. */
4051
4052 static struct bfd_link_hash_table *
4053 elf32_arm_link_hash_table_create (bfd *abfd)
4054 {
4055 struct elf32_arm_link_hash_table *ret;
4056 size_t amt = sizeof (struct elf32_arm_link_hash_table);
4057
4058 ret = (struct elf32_arm_link_hash_table *) bfd_zmalloc (amt);
4059 if (ret == NULL)
4060 return NULL;
4061
4062 if (!_bfd_elf_link_hash_table_init (& ret->root, abfd,
4063 elf32_arm_link_hash_newfunc,
4064 sizeof (struct elf32_arm_link_hash_entry),
4065 ARM_ELF_DATA))
4066 {
4067 free (ret);
4068 return NULL;
4069 }
4070
4071 ret->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
4072 ret->stm32l4xx_fix = BFD_ARM_STM32L4XX_FIX_NONE;
4073 #ifdef FOUR_WORD_PLT
4074 ret->plt_header_size = 16;
4075 ret->plt_entry_size = 16;
4076 #else
4077 ret->plt_header_size = 20;
4078 ret->plt_entry_size = elf32_arm_use_long_plt_entry ? 16 : 12;
4079 #endif
4080 ret->use_rel = TRUE;
4081 ret->obfd = abfd;
4082 ret->fdpic_p = 0;
4083
4084 if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc,
4085 sizeof (struct elf32_arm_stub_hash_entry)))
4086 {
4087 _bfd_elf_link_hash_table_free (abfd);
4088 return NULL;
4089 }
4090 ret->root.root.hash_table_free = elf32_arm_link_hash_table_free;
4091
4092 return &ret->root.root;
4093 }
4094
4095 /* Determine what kind of NOPs are available. */
4096
4097 static bfd_boolean
4098 arch_has_arm_nop (struct elf32_arm_link_hash_table *globals)
4099 {
4100 const int arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
4101 Tag_CPU_arch);
4102
4103 /* Force return logic to be reviewed for each new architecture. */
4104 BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
4105
4106 return (arch == TAG_CPU_ARCH_V6T2
4107 || arch == TAG_CPU_ARCH_V6K
4108 || arch == TAG_CPU_ARCH_V7
4109 || arch == TAG_CPU_ARCH_V8
4110 || arch == TAG_CPU_ARCH_V8R);
4111 }
4112
4113 static bfd_boolean
4114 arm_stub_is_thumb (enum elf32_arm_stub_type stub_type)
4115 {
4116 switch (stub_type)
4117 {
4118 case arm_stub_long_branch_thumb_only:
4119 case arm_stub_long_branch_thumb2_only:
4120 case arm_stub_long_branch_thumb2_only_pure:
4121 case arm_stub_long_branch_v4t_thumb_arm:
4122 case arm_stub_short_branch_v4t_thumb_arm:
4123 case arm_stub_long_branch_v4t_thumb_arm_pic:
4124 case arm_stub_long_branch_v4t_thumb_tls_pic:
4125 case arm_stub_long_branch_thumb_only_pic:
4126 case arm_stub_cmse_branch_thumb_only:
4127 return TRUE;
4128 case arm_stub_none:
4129 BFD_FAIL ();
4130 return FALSE;
4131 break;
4132 default:
4133 return FALSE;
4134 }
4135 }
4136
4137 /* Determine the type of stub needed, if any, for a call. */
4138
4139 static enum elf32_arm_stub_type
4140 arm_type_of_stub (struct bfd_link_info *info,
4141 asection *input_sec,
4142 const Elf_Internal_Rela *rel,
4143 unsigned char st_type,
4144 enum arm_st_branch_type *actual_branch_type,
4145 struct elf32_arm_link_hash_entry *hash,
4146 bfd_vma destination,
4147 asection *sym_sec,
4148 bfd *input_bfd,
4149 const char *name)
4150 {
4151 bfd_vma location;
4152 bfd_signed_vma branch_offset;
4153 unsigned int r_type;
4154 struct elf32_arm_link_hash_table * globals;
4155 bfd_boolean thumb2, thumb2_bl, thumb_only;
4156 enum elf32_arm_stub_type stub_type = arm_stub_none;
4157 int use_plt = 0;
4158 enum arm_st_branch_type branch_type = *actual_branch_type;
4159 union gotplt_union *root_plt;
4160 struct arm_plt_info *arm_plt;
4161 int arch;
4162 int thumb2_movw;
4163
4164 if (branch_type == ST_BRANCH_LONG)
4165 return stub_type;
4166
4167 globals = elf32_arm_hash_table (info);
4168 if (globals == NULL)
4169 return stub_type;
4170
4171 thumb_only = using_thumb_only (globals);
4172 thumb2 = using_thumb2 (globals);
4173 thumb2_bl = using_thumb2_bl (globals);
4174
4175 arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
4176
4177 /* True for architectures that implement the thumb2 movw instruction. */
4178 thumb2_movw = thumb2 || (arch == TAG_CPU_ARCH_V8M_BASE);
4179
4180 /* Determine where the call point is. */
4181 location = (input_sec->output_offset
4182 + input_sec->output_section->vma
4183 + rel->r_offset);
4184
4185 r_type = ELF32_R_TYPE (rel->r_info);
4186
4187 /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we
4188 are considering a function call relocation. */
4189 if (thumb_only && (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
4190 || r_type == R_ARM_THM_JUMP19)
4191 && branch_type == ST_BRANCH_TO_ARM)
4192 branch_type = ST_BRANCH_TO_THUMB;
4193
4194 /* For TLS call relocs, it is the caller's responsibility to provide
4195 the address of the appropriate trampoline. */
4196 if (r_type != R_ARM_TLS_CALL
4197 && r_type != R_ARM_THM_TLS_CALL
4198 && elf32_arm_get_plt_info (input_bfd, globals, hash,
4199 ELF32_R_SYM (rel->r_info), &root_plt,
4200 &arm_plt)
4201 && root_plt->offset != (bfd_vma) -1)
4202 {
4203 asection *splt;
4204
4205 if (hash == NULL || hash->is_iplt)
4206 splt = globals->root.iplt;
4207 else
4208 splt = globals->root.splt;
4209 if (splt != NULL)
4210 {
4211 use_plt = 1;
4212
4213 /* Note when dealing with PLT entries: the main PLT stub is in
4214 ARM mode, so if the branch is in Thumb mode, another
4215 Thumb->ARM stub will be inserted later just before the ARM
4216 PLT stub. If a long branch stub is needed, we'll add a
4217 Thumb->Arm one and branch directly to the ARM PLT entry.
4218 Here, we have to check if a pre-PLT Thumb->ARM stub
4219 is needed and if it will be close enough. */
4220
4221 destination = (splt->output_section->vma
4222 + splt->output_offset
4223 + root_plt->offset);
4224 st_type = STT_FUNC;
4225
4226 /* Thumb branch/call to PLT: it can become a branch to ARM
4227 or to Thumb. We must perform the same checks and
4228 corrections as in elf32_arm_final_link_relocate. */
4229 if ((r_type == R_ARM_THM_CALL)
4230 || (r_type == R_ARM_THM_JUMP24))
4231 {
4232 if (globals->use_blx
4233 && r_type == R_ARM_THM_CALL
4234 && !thumb_only)
4235 {
4236 /* If the Thumb BLX instruction is available, convert
4237 the BL to a BLX instruction to call the ARM-mode
4238 PLT entry. */
4239 branch_type = ST_BRANCH_TO_ARM;
4240 }
4241 else
4242 {
4243 if (!thumb_only)
4244 /* Target the Thumb stub before the ARM PLT entry. */
4245 destination -= PLT_THUMB_STUB_SIZE;
4246 branch_type = ST_BRANCH_TO_THUMB;
4247 }
4248 }
4249 else
4250 {
4251 branch_type = ST_BRANCH_TO_ARM;
4252 }
4253 }
4254 }
4255 /* Calls to STT_GNU_IFUNC symbols should go through a PLT. */
4256 BFD_ASSERT (st_type != STT_GNU_IFUNC);
4257
4258 branch_offset = (bfd_signed_vma)(destination - location);
4259
4260 if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
4261 || r_type == R_ARM_THM_TLS_CALL || r_type == R_ARM_THM_JUMP19)
4262 {
4263 /* Handle cases where:
4264 - this call goes too far (different Thumb/Thumb2 max
4265 distance)
4266 - it's a Thumb->Arm call and blx is not available, or it's a
4267 Thumb->Arm branch (not bl). A stub is needed in this case,
4268 but only if this call is not through a PLT entry. Indeed,
4269 PLT stubs handle mode switching already. */
4270 if ((!thumb2_bl
4271 && (branch_offset > THM_MAX_FWD_BRANCH_OFFSET
4272 || (branch_offset < THM_MAX_BWD_BRANCH_OFFSET)))
4273 || (thumb2_bl
4274 && (branch_offset > THM2_MAX_FWD_BRANCH_OFFSET
4275 || (branch_offset < THM2_MAX_BWD_BRANCH_OFFSET)))
4276 || (thumb2
4277 && (branch_offset > THM2_MAX_FWD_COND_BRANCH_OFFSET
4278 || (branch_offset < THM2_MAX_BWD_COND_BRANCH_OFFSET))
4279 && (r_type == R_ARM_THM_JUMP19))
4280 || (branch_type == ST_BRANCH_TO_ARM
4281 && (((r_type == R_ARM_THM_CALL
4282 || r_type == R_ARM_THM_TLS_CALL) && !globals->use_blx)
4283 || (r_type == R_ARM_THM_JUMP24)
4284 || (r_type == R_ARM_THM_JUMP19))
4285 && !use_plt))
4286 {
4287 /* If we need to insert a Thumb-Thumb long branch stub to a
4288 PLT, use one that branches directly to the ARM PLT
4289 stub. If we pretended we'd use the pre-PLT Thumb->ARM
4290 stub, undo this now. */
4291 if ((branch_type == ST_BRANCH_TO_THUMB) && use_plt && !thumb_only)
4292 {
4293 branch_type = ST_BRANCH_TO_ARM;
4294 branch_offset += PLT_THUMB_STUB_SIZE;
4295 }
4296
4297 if (branch_type == ST_BRANCH_TO_THUMB)
4298 {
4299 /* Thumb to thumb. */
4300 if (!thumb_only)
4301 {
4302 if (input_sec->flags & SEC_ELF_PURECODE)
4303 _bfd_error_handler
4304 (_("%pB(%pA): warning: long branch veneers used in"
4305 " section with SHF_ARM_PURECODE section"
4306 " attribute is only supported for M-profile"
4307 " targets that implement the movw instruction"),
4308 input_bfd, input_sec);
4309
4310 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4311 /* PIC stubs. */
4312 ? ((globals->use_blx
4313 && (r_type == R_ARM_THM_CALL))
4314 /* V5T and above. Stub starts with ARM code, so
4315 we must be able to switch mode before
4316 reaching it, which is only possible for 'bl'
4317 (ie R_ARM_THM_CALL relocation). */
4318 ? arm_stub_long_branch_any_thumb_pic
4319 /* On V4T, use Thumb code only. */
4320 : arm_stub_long_branch_v4t_thumb_thumb_pic)
4321
4322 /* non-PIC stubs. */
4323 : ((globals->use_blx
4324 && (r_type == R_ARM_THM_CALL))
4325 /* V5T and above. */
4326 ? arm_stub_long_branch_any_any
4327 /* V4T. */
4328 : arm_stub_long_branch_v4t_thumb_thumb);
4329 }
4330 else
4331 {
4332 if (thumb2_movw && (input_sec->flags & SEC_ELF_PURECODE))
4333 stub_type = arm_stub_long_branch_thumb2_only_pure;
4334 else
4335 {
4336 if (input_sec->flags & SEC_ELF_PURECODE)
4337 _bfd_error_handler
4338 (_("%pB(%pA): warning: long branch veneers used in"
4339 " section with SHF_ARM_PURECODE section"
4340 " attribute is only supported for M-profile"
4341 " targets that implement the movw instruction"),
4342 input_bfd, input_sec);
4343
4344 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4345 /* PIC stub. */
4346 ? arm_stub_long_branch_thumb_only_pic
4347 /* non-PIC stub. */
4348 : (thumb2 ? arm_stub_long_branch_thumb2_only
4349 : arm_stub_long_branch_thumb_only);
4350 }
4351 }
4352 }
4353 else
4354 {
4355 if (input_sec->flags & SEC_ELF_PURECODE)
4356 _bfd_error_handler
4357 (_("%pB(%pA): warning: long branch veneers used in"
4358 " section with SHF_ARM_PURECODE section"
4359 " attribute is only supported" " for M-profile"
4360 " targets that implement the movw instruction"),
4361 input_bfd, input_sec);
4362
4363 /* Thumb to arm. */
4364 if (sym_sec != NULL
4365 && sym_sec->owner != NULL
4366 && !INTERWORK_FLAG (sym_sec->owner))
4367 {
4368 _bfd_error_handler
4369 (_("%pB(%s): warning: interworking not enabled;"
4370 " first occurrence: %pB: %s call to %s"),
4371 sym_sec->owner, name, input_bfd, "Thumb", "ARM");
4372 }
4373
4374 stub_type =
4375 (bfd_link_pic (info) | globals->pic_veneer)
4376 /* PIC stubs. */
4377 ? (r_type == R_ARM_THM_TLS_CALL
4378 /* TLS PIC stubs. */
4379 ? (globals->use_blx ? arm_stub_long_branch_any_tls_pic
4380 : arm_stub_long_branch_v4t_thumb_tls_pic)
4381 : ((globals->use_blx && r_type == R_ARM_THM_CALL)
4382 /* V5T PIC and above. */
4383 ? arm_stub_long_branch_any_arm_pic
4384 /* V4T PIC stub. */
4385 : arm_stub_long_branch_v4t_thumb_arm_pic))
4386
4387 /* non-PIC stubs. */
4388 : ((globals->use_blx && r_type == R_ARM_THM_CALL)
4389 /* V5T and above. */
4390 ? arm_stub_long_branch_any_any
4391 /* V4T. */
4392 : arm_stub_long_branch_v4t_thumb_arm);
4393
4394 /* Handle v4t short branches. */
4395 if ((stub_type == arm_stub_long_branch_v4t_thumb_arm)
4396 && (branch_offset <= THM_MAX_FWD_BRANCH_OFFSET)
4397 && (branch_offset >= THM_MAX_BWD_BRANCH_OFFSET))
4398 stub_type = arm_stub_short_branch_v4t_thumb_arm;
4399 }
4400 }
4401 }
4402 else if (r_type == R_ARM_CALL
4403 || r_type == R_ARM_JUMP24
4404 || r_type == R_ARM_PLT32
4405 || r_type == R_ARM_TLS_CALL)
4406 {
4407 if (input_sec->flags & SEC_ELF_PURECODE)
4408 _bfd_error_handler
4409 (_("%pB(%pA): warning: long branch veneers used in"
4410 " section with SHF_ARM_PURECODE section"
4411 " attribute is only supported for M-profile"
4412 " targets that implement the movw instruction"),
4413 input_bfd, input_sec);
4414 if (branch_type == ST_BRANCH_TO_THUMB)
4415 {
4416 /* Arm to thumb. */
4417
4418 if (sym_sec != NULL
4419 && sym_sec->owner != NULL
4420 && !INTERWORK_FLAG (sym_sec->owner))
4421 {
4422 _bfd_error_handler
4423 (_("%pB(%s): warning: interworking not enabled;"
4424 " first occurrence: %pB: %s call to %s"),
4425 sym_sec->owner, name, input_bfd, "ARM", "Thumb");
4426 }
4427
4428 /* We have an extra 2-bytes reach because of
4429 the mode change (bit 24 (H) of BLX encoding). */
4430 if (branch_offset > (ARM_MAX_FWD_BRANCH_OFFSET + 2)
4431 || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET)
4432 || (r_type == R_ARM_CALL && !globals->use_blx)
4433 || (r_type == R_ARM_JUMP24)
4434 || (r_type == R_ARM_PLT32))
4435 {
4436 stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4437 /* PIC stubs. */
4438 ? ((globals->use_blx)
4439 /* V5T and above. */
4440 ? arm_stub_long_branch_any_thumb_pic
4441 /* V4T stub. */
4442 : arm_stub_long_branch_v4t_arm_thumb_pic)
4443
4444 /* non-PIC stubs. */
4445 : ((globals->use_blx)
4446 /* V5T and above. */
4447 ? arm_stub_long_branch_any_any
4448 /* V4T. */
4449 : arm_stub_long_branch_v4t_arm_thumb);
4450 }
4451 }
4452 else
4453 {
4454 /* Arm to arm. */
4455 if (branch_offset > ARM_MAX_FWD_BRANCH_OFFSET
4456 || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET))
4457 {
4458 stub_type =
4459 (bfd_link_pic (info) | globals->pic_veneer)
4460 /* PIC stubs. */
4461 ? (r_type == R_ARM_TLS_CALL
4462 /* TLS PIC Stub. */
4463 ? arm_stub_long_branch_any_tls_pic
4464 : (globals->root.target_os == is_nacl
4465 ? arm_stub_long_branch_arm_nacl_pic
4466 : arm_stub_long_branch_any_arm_pic))
4467 /* non-PIC stubs. */
4468 : (globals->root.target_os == is_nacl
4469 ? arm_stub_long_branch_arm_nacl
4470 : arm_stub_long_branch_any_any);
4471 }
4472 }
4473 }
4474
4475 /* If a stub is needed, record the actual destination type. */
4476 if (stub_type != arm_stub_none)
4477 *actual_branch_type = branch_type;
4478
4479 return stub_type;
4480 }
4481
4482 /* Build a name for an entry in the stub hash table. */
4483
4484 static char *
4485 elf32_arm_stub_name (const asection *input_section,
4486 const asection *sym_sec,
4487 const struct elf32_arm_link_hash_entry *hash,
4488 const Elf_Internal_Rela *rel,
4489 enum elf32_arm_stub_type stub_type)
4490 {
4491 char *stub_name;
4492 bfd_size_type len;
4493
4494 if (hash)
4495 {
4496 len = 8 + 1 + strlen (hash->root.root.root.string) + 1 + 8 + 1 + 2 + 1;
4497 stub_name = (char *) bfd_malloc (len);
4498 if (stub_name != NULL)
4499 sprintf (stub_name, "%08x_%s+%x_%d",
4500 input_section->id & 0xffffffff,
4501 hash->root.root.root.string,
4502 (int) rel->r_addend & 0xffffffff,
4503 (int) stub_type);
4504 }
4505 else
4506 {
4507 len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1 + 2 + 1;
4508 stub_name = (char *) bfd_malloc (len);
4509 if (stub_name != NULL)
4510 sprintf (stub_name, "%08x_%x:%x+%x_%d",
4511 input_section->id & 0xffffffff,
4512 sym_sec->id & 0xffffffff,
4513 ELF32_R_TYPE (rel->r_info) == R_ARM_TLS_CALL
4514 || ELF32_R_TYPE (rel->r_info) == R_ARM_THM_TLS_CALL
4515 ? 0 : (int) ELF32_R_SYM (rel->r_info) & 0xffffffff,
4516 (int) rel->r_addend & 0xffffffff,
4517 (int) stub_type);
4518 }
4519
4520 return stub_name;
4521 }
4522
4523 /* Look up an entry in the stub hash. Stub entries are cached because
4524 creating the stub name takes a bit of time. */
4525
4526 static struct elf32_arm_stub_hash_entry *
4527 elf32_arm_get_stub_entry (const asection *input_section,
4528 const asection *sym_sec,
4529 struct elf_link_hash_entry *hash,
4530 const Elf_Internal_Rela *rel,
4531 struct elf32_arm_link_hash_table *htab,
4532 enum elf32_arm_stub_type stub_type)
4533 {
4534 struct elf32_arm_stub_hash_entry *stub_entry;
4535 struct elf32_arm_link_hash_entry *h = (struct elf32_arm_link_hash_entry *) hash;
4536 const asection *id_sec;
4537
4538 if ((input_section->flags & SEC_CODE) == 0)
4539 return NULL;
4540
4541 /* If the input section is the CMSE stubs one and it needs a long
4542 branch stub to reach it's final destination, give up with an
4543 error message: this is not supported. See PR ld/24709. */
4544 if (!strncmp (input_section->name, CMSE_STUB_NAME, strlen(CMSE_STUB_NAME)))
4545 {
4546 bfd *output_bfd = htab->obfd;
4547 asection *out_sec = bfd_get_section_by_name (output_bfd, CMSE_STUB_NAME);
4548
4549 _bfd_error_handler (_("ERROR: CMSE stub (%s section) too far "
4550 "(%#" PRIx64 ") from destination (%#" PRIx64 ")"),
4551 CMSE_STUB_NAME,
4552 (uint64_t)out_sec->output_section->vma
4553 + out_sec->output_offset,
4554 (uint64_t)sym_sec->output_section->vma
4555 + sym_sec->output_offset
4556 + h->root.root.u.def.value);
4557 /* Exit, rather than leave incompletely processed
4558 relocations. */
4559 xexit(1);
4560 }
4561
4562 /* If this input section is part of a group of sections sharing one
4563 stub section, then use the id of the first section in the group.
4564 Stub names need to include a section id, as there may well be
4565 more than one stub used to reach say, printf, and we need to
4566 distinguish between them. */
4567 BFD_ASSERT (input_section->id <= htab->top_id);
4568 id_sec = htab->stub_group[input_section->id].link_sec;
4569
4570 if (h != NULL && h->stub_cache != NULL
4571 && h->stub_cache->h == h
4572 && h->stub_cache->id_sec == id_sec
4573 && h->stub_cache->stub_type == stub_type)
4574 {
4575 stub_entry = h->stub_cache;
4576 }
4577 else
4578 {
4579 char *stub_name;
4580
4581 stub_name = elf32_arm_stub_name (id_sec, sym_sec, h, rel, stub_type);
4582 if (stub_name == NULL)
4583 return NULL;
4584
4585 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table,
4586 stub_name, FALSE, FALSE);
4587 if (h != NULL)
4588 h->stub_cache = stub_entry;
4589
4590 free (stub_name);
4591 }
4592
4593 return stub_entry;
4594 }
4595
4596 /* Whether veneers of type STUB_TYPE require to be in a dedicated output
4597 section. */
4598
4599 static bfd_boolean
4600 arm_dedicated_stub_output_section_required (enum elf32_arm_stub_type stub_type)
4601 {
4602 if (stub_type >= max_stub_type)
4603 abort (); /* Should be unreachable. */
4604
4605 switch (stub_type)
4606 {
4607 case arm_stub_cmse_branch_thumb_only:
4608 return TRUE;
4609
4610 default:
4611 return FALSE;
4612 }
4613
4614 abort (); /* Should be unreachable. */
4615 }
4616
4617 /* Required alignment (as a power of 2) for the dedicated section holding
4618 veneers of type STUB_TYPE, or 0 if veneers of this type are interspersed
4619 with input sections. */
4620
4621 static int
4622 arm_dedicated_stub_output_section_required_alignment
4623 (enum elf32_arm_stub_type stub_type)
4624 {
4625 if (stub_type >= max_stub_type)
4626 abort (); /* Should be unreachable. */
4627
4628 switch (stub_type)
4629 {
4630 /* Vectors of Secure Gateway veneers must be aligned on 32byte
4631 boundary. */
4632 case arm_stub_cmse_branch_thumb_only:
4633 return 5;
4634
4635 default:
4636 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4637 return 0;
4638 }
4639
4640 abort (); /* Should be unreachable. */
4641 }
4642
4643 /* Name of the dedicated output section to put veneers of type STUB_TYPE, or
4644 NULL if veneers of this type are interspersed with input sections. */
4645
4646 static const char *
4647 arm_dedicated_stub_output_section_name (enum elf32_arm_stub_type stub_type)
4648 {
4649 if (stub_type >= max_stub_type)
4650 abort (); /* Should be unreachable. */
4651
4652 switch (stub_type)
4653 {
4654 case arm_stub_cmse_branch_thumb_only:
4655 return CMSE_STUB_NAME;
4656
4657 default:
4658 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4659 return NULL;
4660 }
4661
4662 abort (); /* Should be unreachable. */
4663 }
4664
4665 /* If veneers of type STUB_TYPE should go in a dedicated output section,
4666 returns the address of the hash table field in HTAB holding a pointer to the
4667 corresponding input section. Otherwise, returns NULL. */
4668
4669 static asection **
4670 arm_dedicated_stub_input_section_ptr (struct elf32_arm_link_hash_table *htab,
4671 enum elf32_arm_stub_type stub_type)
4672 {
4673 if (stub_type >= max_stub_type)
4674 abort (); /* Should be unreachable. */
4675
4676 switch (stub_type)
4677 {
4678 case arm_stub_cmse_branch_thumb_only:
4679 return &htab->cmse_stub_sec;
4680
4681 default:
4682 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4683 return NULL;
4684 }
4685
4686 abort (); /* Should be unreachable. */
4687 }
4688
4689 /* Find or create a stub section to contain a stub of type STUB_TYPE. SECTION
4690 is the section that branch into veneer and can be NULL if stub should go in
4691 a dedicated output section. Returns a pointer to the stub section, and the
4692 section to which the stub section will be attached (in *LINK_SEC_P).
4693 LINK_SEC_P may be NULL. */
4694
4695 static asection *
4696 elf32_arm_create_or_find_stub_sec (asection **link_sec_p, asection *section,
4697 struct elf32_arm_link_hash_table *htab,
4698 enum elf32_arm_stub_type stub_type)
4699 {
4700 asection *link_sec, *out_sec, **stub_sec_p;
4701 const char *stub_sec_prefix;
4702 bfd_boolean dedicated_output_section =
4703 arm_dedicated_stub_output_section_required (stub_type);
4704 int align;
4705
4706 if (dedicated_output_section)
4707 {
4708 bfd *output_bfd = htab->obfd;
4709 const char *out_sec_name =
4710 arm_dedicated_stub_output_section_name (stub_type);
4711 link_sec = NULL;
4712 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
4713 stub_sec_prefix = out_sec_name;
4714 align = arm_dedicated_stub_output_section_required_alignment (stub_type);
4715 out_sec = bfd_get_section_by_name (output_bfd, out_sec_name);
4716 if (out_sec == NULL)
4717 {
4718 _bfd_error_handler (_("no address assigned to the veneers output "
4719 "section %s"), out_sec_name);
4720 return NULL;
4721 }
4722 }
4723 else
4724 {
4725 BFD_ASSERT (section->id <= htab->top_id);
4726 link_sec = htab->stub_group[section->id].link_sec;
4727 BFD_ASSERT (link_sec != NULL);
4728 stub_sec_p = &htab->stub_group[section->id].stub_sec;
4729 if (*stub_sec_p == NULL)
4730 stub_sec_p = &htab->stub_group[link_sec->id].stub_sec;
4731 stub_sec_prefix = link_sec->name;
4732 out_sec = link_sec->output_section;
4733 align = htab->root.target_os == is_nacl ? 4 : 3;
4734 }
4735
4736 if (*stub_sec_p == NULL)
4737 {
4738 size_t namelen;
4739 bfd_size_type len;
4740 char *s_name;
4741
4742 namelen = strlen (stub_sec_prefix);
4743 len = namelen + sizeof (STUB_SUFFIX);
4744 s_name = (char *) bfd_alloc (htab->stub_bfd, len);
4745 if (s_name == NULL)
4746 return NULL;
4747
4748 memcpy (s_name, stub_sec_prefix, namelen);
4749 memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
4750 *stub_sec_p = (*htab->add_stub_section) (s_name, out_sec, link_sec,
4751 align);
4752 if (*stub_sec_p == NULL)
4753 return NULL;
4754
4755 out_sec->flags |= SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
4756 | SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY
4757 | SEC_KEEP;
4758 }
4759
4760 if (!dedicated_output_section)
4761 htab->stub_group[section->id].stub_sec = *stub_sec_p;
4762
4763 if (link_sec_p)
4764 *link_sec_p = link_sec;
4765
4766 return *stub_sec_p;
4767 }
4768
4769 /* Add a new stub entry to the stub hash. Not all fields of the new
4770 stub entry are initialised. */
4771
4772 static struct elf32_arm_stub_hash_entry *
4773 elf32_arm_add_stub (const char *stub_name, asection *section,
4774 struct elf32_arm_link_hash_table *htab,
4775 enum elf32_arm_stub_type stub_type)
4776 {
4777 asection *link_sec;
4778 asection *stub_sec;
4779 struct elf32_arm_stub_hash_entry *stub_entry;
4780
4781 stub_sec = elf32_arm_create_or_find_stub_sec (&link_sec, section, htab,
4782 stub_type);
4783 if (stub_sec == NULL)
4784 return NULL;
4785
4786 /* Enter this entry into the linker stub hash table. */
4787 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
4788 TRUE, FALSE);
4789 if (stub_entry == NULL)
4790 {
4791 if (section == NULL)
4792 section = stub_sec;
4793 _bfd_error_handler (_("%pB: cannot create stub entry %s"),
4794 section->owner, stub_name);
4795 return NULL;
4796 }
4797
4798 stub_entry->stub_sec = stub_sec;
4799 stub_entry->stub_offset = (bfd_vma) -1;
4800 stub_entry->id_sec = link_sec;
4801
4802 return stub_entry;
4803 }
4804
4805 /* Store an Arm insn into an output section not processed by
4806 elf32_arm_write_section. */
4807
4808 static void
4809 put_arm_insn (struct elf32_arm_link_hash_table * htab,
4810 bfd * output_bfd, bfd_vma val, void * ptr)
4811 {
4812 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4813 bfd_putl32 (val, ptr);
4814 else
4815 bfd_putb32 (val, ptr);
4816 }
4817
4818 /* Store a 16-bit Thumb insn into an output section not processed by
4819 elf32_arm_write_section. */
4820
4821 static void
4822 put_thumb_insn (struct elf32_arm_link_hash_table * htab,
4823 bfd * output_bfd, bfd_vma val, void * ptr)
4824 {
4825 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4826 bfd_putl16 (val, ptr);
4827 else
4828 bfd_putb16 (val, ptr);
4829 }
4830
4831 /* Store a Thumb2 insn into an output section not processed by
4832 elf32_arm_write_section. */
4833
4834 static void
4835 put_thumb2_insn (struct elf32_arm_link_hash_table * htab,
4836 bfd * output_bfd, bfd_vma val, bfd_byte * ptr)
4837 {
4838 /* T2 instructions are 16-bit streamed. */
4839 if (htab->byteswap_code != bfd_little_endian (output_bfd))
4840 {
4841 bfd_putl16 ((val >> 16) & 0xffff, ptr);
4842 bfd_putl16 ((val & 0xffff), ptr + 2);
4843 }
4844 else
4845 {
4846 bfd_putb16 ((val >> 16) & 0xffff, ptr);
4847 bfd_putb16 ((val & 0xffff), ptr + 2);
4848 }
4849 }
4850
4851 /* If it's possible to change R_TYPE to a more efficient access
4852 model, return the new reloc type. */
4853
4854 static unsigned
4855 elf32_arm_tls_transition (struct bfd_link_info *info, int r_type,
4856 struct elf_link_hash_entry *h)
4857 {
4858 int is_local = (h == NULL);
4859
4860 if (bfd_link_dll (info)
4861 || (h && h->root.type == bfd_link_hash_undefweak))
4862 return r_type;
4863
4864 /* We do not support relaxations for Old TLS models. */
4865 switch (r_type)
4866 {
4867 case R_ARM_TLS_GOTDESC:
4868 case R_ARM_TLS_CALL:
4869 case R_ARM_THM_TLS_CALL:
4870 case R_ARM_TLS_DESCSEQ:
4871 case R_ARM_THM_TLS_DESCSEQ:
4872 return is_local ? R_ARM_TLS_LE32 : R_ARM_TLS_IE32;
4873 }
4874
4875 return r_type;
4876 }
4877
4878 static bfd_reloc_status_type elf32_arm_final_link_relocate
4879 (reloc_howto_type *, bfd *, bfd *, asection *, bfd_byte *,
4880 Elf_Internal_Rela *, bfd_vma, struct bfd_link_info *, asection *,
4881 const char *, unsigned char, enum arm_st_branch_type,
4882 struct elf_link_hash_entry *, bfd_boolean *, char **);
4883
4884 static unsigned int
4885 arm_stub_required_alignment (enum elf32_arm_stub_type stub_type)
4886 {
4887 switch (stub_type)
4888 {
4889 case arm_stub_a8_veneer_b_cond:
4890 case arm_stub_a8_veneer_b:
4891 case arm_stub_a8_veneer_bl:
4892 return 2;
4893
4894 case arm_stub_long_branch_any_any:
4895 case arm_stub_long_branch_v4t_arm_thumb:
4896 case arm_stub_long_branch_thumb_only:
4897 case arm_stub_long_branch_thumb2_only:
4898 case arm_stub_long_branch_thumb2_only_pure:
4899 case arm_stub_long_branch_v4t_thumb_thumb:
4900 case arm_stub_long_branch_v4t_thumb_arm:
4901 case arm_stub_short_branch_v4t_thumb_arm:
4902 case arm_stub_long_branch_any_arm_pic:
4903 case arm_stub_long_branch_any_thumb_pic:
4904 case arm_stub_long_branch_v4t_thumb_thumb_pic:
4905 case arm_stub_long_branch_v4t_arm_thumb_pic:
4906 case arm_stub_long_branch_v4t_thumb_arm_pic:
4907 case arm_stub_long_branch_thumb_only_pic:
4908 case arm_stub_long_branch_any_tls_pic:
4909 case arm_stub_long_branch_v4t_thumb_tls_pic:
4910 case arm_stub_cmse_branch_thumb_only:
4911 case arm_stub_a8_veneer_blx:
4912 return 4;
4913
4914 case arm_stub_long_branch_arm_nacl:
4915 case arm_stub_long_branch_arm_nacl_pic:
4916 return 16;
4917
4918 default:
4919 abort (); /* Should be unreachable. */
4920 }
4921 }
4922
4923 /* Returns whether stubs of type STUB_TYPE take over the symbol they are
4924 veneering (TRUE) or have their own symbol (FALSE). */
4925
4926 static bfd_boolean
4927 arm_stub_sym_claimed (enum elf32_arm_stub_type stub_type)
4928 {
4929 if (stub_type >= max_stub_type)
4930 abort (); /* Should be unreachable. */
4931
4932 switch (stub_type)
4933 {
4934 case arm_stub_cmse_branch_thumb_only:
4935 return TRUE;
4936
4937 default:
4938 return FALSE;
4939 }
4940
4941 abort (); /* Should be unreachable. */
4942 }
4943
4944 /* Returns the padding needed for the dedicated section used stubs of type
4945 STUB_TYPE. */
4946
4947 static int
4948 arm_dedicated_stub_section_padding (enum elf32_arm_stub_type stub_type)
4949 {
4950 if (stub_type >= max_stub_type)
4951 abort (); /* Should be unreachable. */
4952
4953 switch (stub_type)
4954 {
4955 case arm_stub_cmse_branch_thumb_only:
4956 return 32;
4957
4958 default:
4959 return 0;
4960 }
4961
4962 abort (); /* Should be unreachable. */
4963 }
4964
4965 /* If veneers of type STUB_TYPE should go in a dedicated output section,
4966 returns the address of the hash table field in HTAB holding the offset at
4967 which new veneers should be layed out in the stub section. */
4968
4969 static bfd_vma*
4970 arm_new_stubs_start_offset_ptr (struct elf32_arm_link_hash_table *htab,
4971 enum elf32_arm_stub_type stub_type)
4972 {
4973 switch (stub_type)
4974 {
4975 case arm_stub_cmse_branch_thumb_only:
4976 return &htab->new_cmse_stub_offset;
4977
4978 default:
4979 BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4980 return NULL;
4981 }
4982 }
4983
4984 static bfd_boolean
4985 arm_build_one_stub (struct bfd_hash_entry *gen_entry,
4986 void * in_arg)
4987 {
4988 #define MAXRELOCS 3
4989 bfd_boolean removed_sg_veneer;
4990 struct elf32_arm_stub_hash_entry *stub_entry;
4991 struct elf32_arm_link_hash_table *globals;
4992 struct bfd_link_info *info;
4993 asection *stub_sec;
4994 bfd *stub_bfd;
4995 bfd_byte *loc;
4996 bfd_vma sym_value;
4997 int template_size;
4998 int size;
4999 const insn_sequence *template_sequence;
5000 int i;
5001 int stub_reloc_idx[MAXRELOCS] = {-1, -1};
5002 int stub_reloc_offset[MAXRELOCS] = {0, 0};
5003 int nrelocs = 0;
5004 int just_allocated = 0;
5005
5006 /* Massage our args to the form they really have. */
5007 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
5008 info = (struct bfd_link_info *) in_arg;
5009
5010 /* Fail if the target section could not be assigned to an output
5011 section. The user should fix his linker script. */
5012 if (stub_entry->target_section->output_section == NULL
5013 && info->non_contiguous_regions)
5014 info->callbacks->einfo (_("%F%P: Could not assign '%pA' to an output section. "
5015 "Retry without --enable-non-contiguous-regions.\n"),
5016 stub_entry->target_section);
5017
5018 globals = elf32_arm_hash_table (info);
5019 if (globals == NULL)
5020 return FALSE;
5021
5022 stub_sec = stub_entry->stub_sec;
5023
5024 if ((globals->fix_cortex_a8 < 0)
5025 != (arm_stub_required_alignment (stub_entry->stub_type) == 2))
5026 /* We have to do less-strictly-aligned fixes last. */
5027 return TRUE;
5028
5029 /* Assign a slot at the end of section if none assigned yet. */
5030 if (stub_entry->stub_offset == (bfd_vma) -1)
5031 {
5032 stub_entry->stub_offset = stub_sec->size;
5033 just_allocated = 1;
5034 }
5035 loc = stub_sec->contents + stub_entry->stub_offset;
5036
5037 stub_bfd = stub_sec->owner;
5038
5039 /* This is the address of the stub destination. */
5040 sym_value = (stub_entry->target_value
5041 + stub_entry->target_section->output_offset
5042 + stub_entry->target_section->output_section->vma);
5043
5044 template_sequence = stub_entry->stub_template;
5045 template_size = stub_entry->stub_template_size;
5046
5047 size = 0;
5048 for (i = 0; i < template_size; i++)
5049 {
5050 switch (template_sequence[i].type)
5051 {
5052 case THUMB16_TYPE:
5053 {
5054 bfd_vma data = (bfd_vma) template_sequence[i].data;
5055 if (template_sequence[i].reloc_addend != 0)
5056 {
5057 /* We've borrowed the reloc_addend field to mean we should
5058 insert a condition code into this (Thumb-1 branch)
5059 instruction. See THUMB16_BCOND_INSN. */
5060 BFD_ASSERT ((data & 0xff00) == 0xd000);
5061 data |= ((stub_entry->orig_insn >> 22) & 0xf) << 8;
5062 }
5063 bfd_put_16 (stub_bfd, data, loc + size);
5064 size += 2;
5065 }
5066 break;
5067
5068 case THUMB32_TYPE:
5069 bfd_put_16 (stub_bfd,
5070 (template_sequence[i].data >> 16) & 0xffff,
5071 loc + size);
5072 bfd_put_16 (stub_bfd, template_sequence[i].data & 0xffff,
5073 loc + size + 2);
5074 if (template_sequence[i].r_type != R_ARM_NONE)
5075 {
5076 stub_reloc_idx[nrelocs] = i;
5077 stub_reloc_offset[nrelocs++] = size;
5078 }
5079 size += 4;
5080 break;
5081
5082 case ARM_TYPE:
5083 bfd_put_32 (stub_bfd, template_sequence[i].data,
5084 loc + size);
5085 /* Handle cases where the target is encoded within the
5086 instruction. */
5087 if (template_sequence[i].r_type == R_ARM_JUMP24)
5088 {
5089 stub_reloc_idx[nrelocs] = i;
5090 stub_reloc_offset[nrelocs++] = size;
5091 }
5092 size += 4;
5093 break;
5094
5095 case DATA_TYPE:
5096 bfd_put_32 (stub_bfd, template_sequence[i].data, loc + size);
5097 stub_reloc_idx[nrelocs] = i;
5098 stub_reloc_offset[nrelocs++] = size;
5099 size += 4;
5100 break;
5101
5102 default:
5103 BFD_FAIL ();
5104 return FALSE;
5105 }
5106 }
5107
5108 if (just_allocated)
5109 stub_sec->size += size;
5110
5111 /* Stub size has already been computed in arm_size_one_stub. Check
5112 consistency. */
5113 BFD_ASSERT (size == stub_entry->stub_size);
5114
5115 /* Destination is Thumb. Force bit 0 to 1 to reflect this. */
5116 if (stub_entry->branch_type == ST_BRANCH_TO_THUMB)
5117 sym_value |= 1;
5118
5119 /* Assume non empty slots have at least one and at most MAXRELOCS entries
5120 to relocate in each stub. */
5121 removed_sg_veneer =
5122 (size == 0 && stub_entry->stub_type == arm_stub_cmse_branch_thumb_only);
5123 BFD_ASSERT (removed_sg_veneer || (nrelocs != 0 && nrelocs <= MAXRELOCS));
5124
5125 for (i = 0; i < nrelocs; i++)
5126 {
5127 Elf_Internal_Rela rel;
5128 bfd_boolean unresolved_reloc;
5129 char *error_message;
5130 bfd_vma points_to =
5131 sym_value + template_sequence[stub_reloc_idx[i]].reloc_addend;
5132
5133 rel.r_offset = stub_entry->stub_offset + stub_reloc_offset[i];
5134 rel.r_info = ELF32_R_INFO (0,
5135 template_sequence[stub_reloc_idx[i]].r_type);
5136 rel.r_addend = 0;
5137
5138 if (stub_entry->stub_type == arm_stub_a8_veneer_b_cond && i == 0)
5139 /* The first relocation in the elf32_arm_stub_a8_veneer_b_cond[]
5140 template should refer back to the instruction after the original
5141 branch. We use target_section as Cortex-A8 erratum workaround stubs
5142 are only generated when both source and target are in the same
5143 section. */
5144 points_to = stub_entry->target_section->output_section->vma
5145 + stub_entry->target_section->output_offset
5146 + stub_entry->source_value;
5147
5148 elf32_arm_final_link_relocate (elf32_arm_howto_from_type
5149 (template_sequence[stub_reloc_idx[i]].r_type),
5150 stub_bfd, info->output_bfd, stub_sec, stub_sec->contents, &rel,
5151 points_to, info, stub_entry->target_section, "", STT_FUNC,
5152 stub_entry->branch_type,
5153 (struct elf_link_hash_entry *) stub_entry->h, &unresolved_reloc,
5154 &error_message);
5155 }
5156
5157 return TRUE;
5158 #undef MAXRELOCS
5159 }
5160
5161 /* Calculate the template, template size and instruction size for a stub.
5162 Return value is the instruction size. */
5163
5164 static unsigned int
5165 find_stub_size_and_template (enum elf32_arm_stub_type stub_type,
5166 const insn_sequence **stub_template,
5167 int *stub_template_size)
5168 {
5169 const insn_sequence *template_sequence = NULL;
5170 int template_size = 0, i;
5171 unsigned int size;
5172
5173 template_sequence = stub_definitions[stub_type].template_sequence;
5174 if (stub_template)
5175 *stub_template = template_sequence;
5176
5177 template_size = stub_definitions[stub_type].template_size;
5178 if (stub_template_size)
5179 *stub_template_size = template_size;
5180
5181 size = 0;
5182 for (i = 0; i < template_size; i++)
5183 {
5184 switch (template_sequence[i].type)
5185 {
5186 case THUMB16_TYPE:
5187 size += 2;
5188 break;
5189
5190 case ARM_TYPE:
5191 case THUMB32_TYPE:
5192 case DATA_TYPE:
5193 size += 4;
5194 break;
5195
5196 default:
5197 BFD_FAIL ();
5198 return 0;
5199 }
5200 }
5201
5202 return size;
5203 }
5204
5205 /* As above, but don't actually build the stub. Just bump offset so
5206 we know stub section sizes. */
5207
5208 static bfd_boolean
5209 arm_size_one_stub (struct bfd_hash_entry *gen_entry,
5210 void *in_arg ATTRIBUTE_UNUSED)
5211 {
5212 struct elf32_arm_stub_hash_entry *stub_entry;
5213 const insn_sequence *template_sequence;
5214 int template_size, size;
5215
5216 /* Massage our args to the form they really have. */
5217 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
5218
5219 BFD_ASSERT((stub_entry->stub_type > arm_stub_none)
5220 && stub_entry->stub_type < ARRAY_SIZE(stub_definitions));
5221
5222 size = find_stub_size_and_template (stub_entry->stub_type, &template_sequence,
5223 &template_size);
5224
5225 /* Initialized to -1. Null size indicates an empty slot full of zeros. */
5226 if (stub_entry->stub_template_size)
5227 {
5228 stub_entry->stub_size = size;
5229 stub_entry->stub_template = template_sequence;
5230 stub_entry->stub_template_size = template_size;
5231 }
5232
5233 /* Already accounted for. */
5234 if (stub_entry->stub_offset != (bfd_vma) -1)
5235 return TRUE;
5236
5237 size = (size + 7) & ~7;
5238 stub_entry->stub_sec->size += size;
5239
5240 return TRUE;
5241 }
5242
5243 /* External entry points for sizing and building linker stubs. */
5244
5245 /* Set up various things so that we can make a list of input sections
5246 for each output section included in the link. Returns -1 on error,
5247 0 when no stubs will be needed, and 1 on success. */
5248
5249 int
5250 elf32_arm_setup_section_lists (bfd *output_bfd,
5251 struct bfd_link_info *info)
5252 {
5253 bfd *input_bfd;
5254 unsigned int bfd_count;
5255 unsigned int top_id, top_index;
5256 asection *section;
5257 asection **input_list, **list;
5258 size_t amt;
5259 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5260
5261 if (htab == NULL)
5262 return 0;
5263 if (! is_elf_hash_table (htab))
5264 return 0;
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;
5269 input_bfd = input_bfd->link.next)
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);
5283 htab->stub_group = (struct map_stub *) bfd_zmalloc (amt);
5284 if (htab->stub_group == NULL)
5285 return -1;
5286 htab->top_id = top_id;
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);
5301 input_list = (asection **) bfd_malloc (amt);
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
5329 void
5330 elf32_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
5335 if (htab == NULL)
5336 return;
5337
5338 if (isec->output_section->index <= htab->top_index)
5339 {
5340 asection **list = htab->input_list + isec->output_section->index;
5341
5342 if (*list != bfd_abs_section_ptr && (isec->flags & SEC_CODE) != 0)
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,
5347 which we reverse later. */
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
5356 put all .init* and .fini* stubs at the end of the .init or
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
5361 static void
5362 group_sections (struct elf32_arm_link_hash_table *htab,
5363 bfd_size_type stub_group_size,
5364 bfd_boolean stubs_always_after_branch)
5365 {
5366 asection **list = htab->input_list;
5367
5368 do
5369 {
5370 asection *tail = *list;
5371 asection *head;
5372
5373 if (tail == bfd_abs_section_ptr)
5374 continue;
5375
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
5381 head = NULL;
5382 while (tail != NULL)
5383 {
5384 /* Pop from tail. */
5385 asection *item = tail;
5386 tail = PREV_SEC (item);
5387
5388 /* Push on head. */
5389 NEXT_SEC (item) = head;
5390 head = item;
5391 }
5392
5393 while (head != NULL)
5394 {
5395 asection *curr;
5396 asection *next;
5397 bfd_vma stub_group_start = head->output_offset;
5398 bfd_vma end_of_next;
5399
5400 curr = head;
5401 while (NEXT_SEC (curr) != NULL)
5402 {
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. */
5407 break;
5408 /* Add NEXT to the group. */
5409 curr = next;
5410 }
5411
5412 /* OK, the size from the start to the start of CURR is less
5413 than stub_group_size and thus can be handled by one stub
5414 section. (Or the head section is itself larger than
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
5418 section size. */
5419 do
5420 {
5421 next = NEXT_SEC (head);
5422 /* Set up this stub group. */
5423 htab->stub_group[head->id].link_sec = curr;
5424 }
5425 while (head != curr && (head = next) != NULL);
5426
5427 /* But wait, there's more! Input sections up to stub_group_size
5428 bytes after the stub section can be handled by it too. */
5429 if (!stubs_always_after_branch)
5430 {
5431 stub_group_start = curr->output_offset + curr->size;
5432
5433 while (next != NULL)
5434 {
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. */
5438 break;
5439 /* Add NEXT to the stub group. */
5440 head = next;
5441 next = NEXT_SEC (head);
5442 htab->stub_group[head->id].link_sec = curr;
5443 }
5444 }
5445 head = next;
5446 }
5447 }
5448 while (list++ != htab->input_list + htab->top_index);
5449
5450 free (htab->input_list);
5451 #undef PREV_SEC
5452 #undef NEXT_SEC
5453 }
5454
5455 /* Comparison function for sorting/searching relocations relating to Cortex-A8
5456 erratum fix. */
5457
5458 static int
5459 a8_reloc_compare (const void *a, const void *b)
5460 {
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;
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
5472 static 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,
5477 NUM_A8_FIXES_P, A8_FIX_TABLE_SIZE_P. Returns true if an error occurs, false
5478 otherwise. */
5479
5480 static bfd_boolean
5481 cortex_a8_erratum_scan (bfd *input_bfd,
5482 struct bfd_link_info *info,
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,
5487 unsigned int num_a8_relocs,
5488 unsigned prev_num_a8_fixes,
5489 bfd_boolean *stub_changed_p)
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
5497 if (htab == NULL)
5498 return FALSE;
5499
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
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;
5515
5516 base_vma = section->output_section->vma + section->output_offset;
5517
5518 if (elf_section_data (section)->this_hdr.contents != NULL)
5519 contents = elf_section_data (section)->this_hdr.contents;
5520 else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
5521 return TRUE;
5522
5523 sec_data = elf32_arm_section_data (section);
5524
5525 for (span = 0; span < sec_data->mapcount; span++)
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;
5532 bfd_boolean last_was_32bit = FALSE, last_was_branch = FALSE;
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)
5539 == ((base_vma + span_end) & ~0xfff))
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]);
5552 bfd_boolean insn_32bit = FALSE, is_blx = FALSE, is_b = FALSE;
5553 bfd_boolean is_bl = FALSE, is_bcc = FALSE, is_32bit_branch;
5554
5555 if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
5556 insn_32bit = TRUE;
5557
5558 if (insn_32bit)
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;
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;
5575
5576 if (((base_vma + i) & 0xfff) == 0xffe
5577 && insn_32bit
5578 && is_32bit_branch
5579 && last_was_32bit
5580 && ! last_was_branch)
5581 {
5582 bfd_signed_vma offset = 0;
5583 bfd_boolean force_target_arm = FALSE;
5584 bfd_boolean force_target_thumb = FALSE;
5585 bfd_vma target;
5586 enum elf32_arm_stub_type stub_type = arm_stub_none;
5587 struct a8_erratum_reloc key, *found;
5588 bfd_boolean use_plt = FALSE;
5589
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);
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
5602 function, only if there is glue or not. */
5603 entry = find_thumb_glue (info, found->sym_name,
5604 &error_message);
5605
5606 if (entry)
5607 found->non_a8_stub = TRUE;
5608
5609 /* Keep a simpler condition, for the sake of clarity. */
5610 if (htab->root.splt != NULL && found->hash != NULL
5611 && found->hash->root.plt.offset != (bfd_vma) -1)
5612 use_plt = TRUE;
5613
5614 if (found->r_type == R_ARM_THM_CALL)
5615 {
5616 if (found->branch_type == ST_BRANCH_TO_ARM
5617 || use_plt)
5618 force_target_arm = TRUE;
5619 else
5620 force_target_thumb = TRUE;
5621 }
5622 }
5623
5624 /* Check if we have an offending branch instruction. */
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 ;
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;
5669
5670 /* The original instruction is a BL, but the target is
5671 an ARM instruction. If we were not making a stub,
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;
5678 is_blx = TRUE;
5679 is_bl = FALSE;
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;
5688 is_blx = FALSE;
5689 is_bl = TRUE;
5690 }
5691
5692 if (is_blx)
5693 pc_for_insn &= ~ ((bfd_vma) 3);
5694
5695 /* If we found a relocation, use the proper destination,
5696 not the offset in the (unrelocated) instruction.
5697 Note this is always done if we switched the stub type
5698 above. */
5699 if (found)
5700 offset =
5701 (bfd_signed_vma) (found->destination - pc_for_insn);
5702
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;
5708
5709 target = pc_for_insn + offset;
5710
5711 /* The BLX stub is ARM-mode code. Adjust the offset to
5712 take the different PC value (+8 instead of +4) into
5713 account. */
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 }
5729
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;
5742 *stub_changed_p = TRUE;
5743 }
5744 }
5745
5746 if (!stub_name)
5747 {
5748 stub_name = (char *) bfd_malloc (8 + 1 + 8 + 1);
5749 if (stub_name != NULL)
5750 sprintf (stub_name, "%x:%x", section->id, i);
5751 }
5752
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;
5756 a8_fixes[num_a8_fixes].target_offset =
5757 target - base_vma;
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 =
5762 is_blx ? ST_BRANCH_TO_ARM : ST_BRANCH_TO_THUMB;
5763
5764 num_a8_fixes++;
5765 }
5766 }
5767 }
5768
5769 i += insn_32bit ? 4 : 2;
5770 last_was_32bit = insn_32bit;
5771 last_was_branch = is_32bit_branch;
5772 }
5773 }
5774
5775 if (elf_section_data (section)->this_hdr.contents == NULL)
5776 free (contents);
5777 }
5778
5779 *a8_fixes_p = a8_fixes;
5780 *num_a8_fixes_p = num_a8_fixes;
5781 *a8_fix_table_size_p = a8_fix_table_size;
5782
5783 return FALSE;
5784 }
5785
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
5800 Returns the stub that was created or updated, or NULL if an error
5801 occurred. */
5802
5803 static struct elf32_arm_stub_hash_entry *
5804 elf32_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,
5809 bfd_boolean *new_stub)
5810 {
5811 const asection *id_sec;
5812 char *stub_name;
5813 struct elf32_arm_stub_hash_entry *stub_entry;
5814 unsigned int r_type;
5815 bfd_boolean sym_claimed = arm_stub_sym_claimed (stub_type);
5816
5817 BFD_ASSERT (stub_type != arm_stub_none);
5818 *new_stub = FALSE;
5819
5820 if (sym_claimed)
5821 stub_name = sym_name;
5822 else
5823 {
5824 BFD_ASSERT (irela);
5825 BFD_ASSERT (section);
5826 BFD_ASSERT (section->id <= htab->top_id);
5827
5828 /* Support for grouping stub sections. */
5829 id_sec = htab->stub_group[section->id].link_sec;
5830
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)
5835 return NULL;
5836 }
5837
5838 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name, FALSE,
5839 FALSE);
5840 /* The proper stub has already been created, just update its value. */
5841 if (stub_entry != NULL)
5842 {
5843 if (!sym_claimed)
5844 free (stub_name);
5845 stub_entry->target_value = sym_value;
5846 return stub_entry;
5847 }
5848
5849 stub_entry = elf32_arm_add_stub (stub_name, section, htab, stub_type);
5850 if (stub_entry == NULL)
5851 {
5852 if (!sym_claimed)
5853 free (stub_name);
5854 return NULL;
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
5863 if (sym_claimed)
5864 stub_entry->output_name = sym_name;
5865 else
5866 {
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);
5875 return NULL;
5876 }
5877
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 }
5893
5894 *new_stub = TRUE;
5895 return stub_entry;
5896 }
5897
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.
5914 *CMSE_STUB_CREATED is increased by the number of secure gateway veneer
5915 created.
5916
5917 The return value gives whether a stub failed to be allocated. */
5918
5919 static bfd_boolean
5920 cmse_scan (bfd *input_bfd, struct elf32_arm_link_hash_table *htab,
5921 obj_attribute *out_attr, struct elf_link_hash_entry **sym_hashes,
5922 int *cmse_stub_created)
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;
5933 struct elf32_arm_stub_hash_entry *stub_entry;
5934 bfd_boolean is_v8m, new_stub, cmse_invalid, ret = TRUE;
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)
5949 return FALSE;
5950
5951 /* Scan symbols. */
5952 for (i = 0; i < sym_count; i++)
5953 {
5954 cmse_invalid = FALSE;
5955
5956 if (i < ext_start)
5957 {
5958 cmse_sym = &local_syms[i];
5959 sym_name = bfd_elf_string_from_elf_section (input_bfd,
5960 symtab_hdr->sh_link,
5961 cmse_sym->st_name);
5962 if (!sym_name || !CONST_STRNEQ (sym_name, CMSE_PREFIX))
5963 continue;
5964
5965 /* Special symbol with local binding. */
5966 cmse_invalid = TRUE;
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;
5972 if (!CONST_STRNEQ (sym_name, CMSE_PREFIX))
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)
5979 cmse_invalid = TRUE;
5980 }
5981
5982 if (!is_v8m)
5983 {
5984 _bfd_error_handler (_("%pB: special symbol `%s' only allowed for "
5985 "ARMv8-M architecture or later"),
5986 input_bfd, sym_name);
5987 is_v8m = TRUE; /* Avoid multiple warning. */
5988 ret = FALSE;
5989 }
5990
5991 if (cmse_invalid)
5992 {
5993 _bfd_error_handler (_("%pB: invalid special symbol `%s'; it must be"
5994 " a global or weak function symbol"),
5995 input_bfd, sym_name);
5996 ret = FALSE;
5997 if (i < ext_start)
5998 continue;
5999 }
6000
6001 sym_name += strlen (CMSE_PREFIX);
6002 hash = (struct elf32_arm_link_hash_entry *)
6003 elf_link_hash_lookup (&(htab)->root, sym_name, FALSE, FALSE, TRUE);
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 {
6031 _bfd_error_handler
6032 (_("%pB: invalid standard symbol `%s'; it must be "
6033 "a global or weak function symbol"),
6034 input_bfd, sym_name);
6035 }
6036 else
6037 _bfd_error_handler
6038 (_("%pB: absent standard symbol `%s'"), input_bfd, sym_name);
6039 ret = FALSE;
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 {
6049 _bfd_error_handler
6050 (_("%pB: `%s' and its special symbol are in different sections"),
6051 input_bfd, sym_name);
6052 ret = FALSE;
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 {
6061 _bfd_error_handler
6062 (_("%pB: entry function `%s' not output"), input_bfd, sym_name);
6063 continue;
6064 }
6065
6066 if (hash->root.size == 0)
6067 {
6068 _bfd_error_handler
6069 (_("%pB: entry function `%s' is empty"), input_bfd, sym_name);
6070 ret = FALSE;
6071 }
6072
6073 if (!ret)
6074 continue;
6075 branch_type = ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
6076 stub_entry
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
6081 if (stub_entry == NULL)
6082 ret = FALSE;
6083 else
6084 {
6085 BFD_ASSERT (new_stub);
6086 (*cmse_stub_created)++;
6087 }
6088 }
6089
6090 if (!symtab_hdr->contents)
6091 free (local_syms);
6092 return ret;
6093 }
6094
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
6099 static bfd_boolean
6100 cmse_entry_fct_p (struct elf32_arm_link_hash_entry *hash)
6101 {
6102 bfd_byte contents[4];
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)
6111 return FALSE;
6112 if (hash->root.type != STT_FUNC)
6113 return FALSE;
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;
6119 if (!bfd_get_section_contents (abfd, section, contents, offset,
6120 sizeof (contents)))
6121 return FALSE;
6122
6123 first_insn = bfd_get_32 (abfd, contents);
6124
6125 /* Starts by SG instruction. */
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
6133 static bfd_boolean
6134 arm_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)
6144 return TRUE;
6145
6146 if (stub_entry->stub_type != arm_stub_cmse_branch_thumb_only)
6147 return TRUE;
6148
6149 if (stub_entry->stub_offset == (bfd_vma) -1)
6150 _bfd_error_handler (" %s", stub_entry->output_name);
6151
6152 return TRUE;
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
6168 static bfd_boolean
6169 set_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;
6179 bfd_boolean ret = TRUE;
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)
6193 return TRUE;
6194
6195 in_implib_bfd = htab->in_implib_bfd;
6196 if (!htab->cmse_implib)
6197 {
6198 _bfd_error_handler (_("%pB: --in-implib only supported for Secure "
6199 "Gateway import libraries"), in_implib_bfd);
6200 return FALSE;
6201 }
6202
6203 /* Get symbol table size. */
6204 symsize = bfd_get_symtab_upper_bound (in_implib_bfd);
6205 if (symsize < 0)
6206 return FALSE;
6207
6208 /* Read in the input secure gateway import library's symbol table. */
6209 sympp = (asymbol **) bfd_malloc (symsize);
6210 if (sympp == NULL)
6211 return FALSE;
6212
6213 symcount = bfd_canonicalize_symtab (in_implib_bfd, sympp);
6214 if (symcount < 0)
6215 {
6216 ret = FALSE;
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 {
6247 _bfd_error_handler (_("%pB: invalid import library entry: `%s'; "
6248 "symbol should be absolute, global and "
6249 "refer to Thumb functions"),
6250 in_implib_bfd, sym_name);
6251 ret = FALSE;
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,
6258 FALSE, FALSE);
6259 hash = (struct elf32_arm_link_hash_entry *)
6260 elf_link_hash_lookup (&(htab)->root, sym_name, FALSE, FALSE, TRUE);
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 {
6266 bfd_boolean new_stub;
6267
6268 _bfd_error_handler
6269 (_("entry function `%s' disappeared from secure code"), sym_name);
6270 hash = (struct elf32_arm_link_hash_entry *)
6271 elf_link_hash_lookup (&(htab)->root, sym_name, TRUE, TRUE, TRUE);
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)
6278 ret = FALSE;
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 {
6293 _bfd_error_handler (_("`%s' refers to a non entry function"),
6294 sym_name);
6295 ret = FALSE;
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))
6307 _bfd_error_handler
6308 (_("%pB: visibility of symbol `%s' has changed"), in_implib_bfd,
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 {
6317 _bfd_error_handler (_("%pB: incorrect size for symbol `%s'"),
6318 in_implib_bfd, sym_name);
6319 ret = FALSE;
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;
6329 ret = FALSE;
6330 }
6331
6332 /* Complain if stub offset not a multiple of stub size. */
6333 if (stub_offset % cmse_stub_size)
6334 {
6335 _bfd_error_handler
6336 (_("offset of veneer for entry function `%s' not a multiple of "
6337 "its size"), sym_name);
6338 ret = FALSE;
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);
6355 _bfd_error_handler
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 {
6363 _bfd_error_handler
6364 (_("start address of `%s' is different from previous link"),
6365 out_sec_name);
6366 ret = FALSE;
6367 }
6368
6369 free_sym_buf:
6370 free (sympp);
6371 return ret;
6372 }
6373
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
6380 bfd_boolean
6381 elf32_arm_size_stubs (bfd *output_bfd,
6382 bfd *stub_bfd,
6383 struct bfd_link_info *info,
6384 bfd_signed_vma group_size,
6385 asection * (*add_stub_section) (const char *, asection *,
6386 asection *,
6387 unsigned int),
6388 void (*layout_sections_again) (void))
6389 {
6390 bfd_boolean ret = TRUE;
6391 obj_attribute *out_attr;
6392 int cmse_stub_created = 0;
6393 bfd_size_type stub_group_size;
6394 bfd_boolean m_profile, stubs_always_after_branch, first_veneer_scan = TRUE;
6395 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
6396 struct a8_erratum_fix *a8_fixes = NULL;
6397 unsigned int num_a8_fixes = 0, a8_fix_table_size = 10;
6398 struct a8_erratum_reloc *a8_relocs = NULL;
6399 unsigned int num_a8_relocs = 0, a8_reloc_table_size = 10, i;
6400
6401 if (htab == NULL)
6402 return FALSE;
6403
6404 if (htab->fix_cortex_a8)
6405 {
6406 a8_fixes = (struct a8_erratum_fix *)
6407 bfd_zmalloc (sizeof (struct a8_erratum_fix) * a8_fix_table_size);
6408 a8_relocs = (struct a8_erratum_reloc *)
6409 bfd_zmalloc (sizeof (struct a8_erratum_reloc) * a8_reloc_table_size);
6410 }
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;
6421 stubs_always_after_branch = group_size < 0;
6422
6423 out_attr = elf_known_obj_attributes_proc (output_bfd);
6424 m_profile = out_attr[Tag_CPU_arch_profile].i == 'M';
6425
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
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
6451 group_sections (htab, stub_group_size, stubs_always_after_branch);
6452
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
6463 while (1)
6464 {
6465 bfd *input_bfd;
6466 unsigned int bfd_indx;
6467 asection *stub_sec;
6468 enum elf32_arm_stub_type stub_type;
6469 bfd_boolean stub_changed = FALSE;
6470 unsigned prev_num_a8_fixes = num_a8_fixes;
6471
6472 num_a8_fixes = 0;
6473 for (input_bfd = info->input_bfds, bfd_indx = 0;
6474 input_bfd != NULL;
6475 input_bfd = input_bfd->link.next, bfd_indx++)
6476 {
6477 Elf_Internal_Shdr *symtab_hdr;
6478 asection *section;
6479 Elf_Internal_Sym *local_syms = NULL;
6480
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))
6486 continue;
6487
6488 num_a8_relocs = 0;
6489
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
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,
6503 &cmse_stub_created))
6504 goto error_ret_free_local;
6505
6506 if (cmse_stub_created != 0)
6507 stub_changed = TRUE;
6508 }
6509
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;
6543 asection *sym_sec;
6544 bfd_vma sym_value;
6545 bfd_vma destination;
6546 struct elf32_arm_link_hash_entry *hash;
6547 const char *sym_name;
6548 unsigned char st_type;
6549 enum arm_st_branch_type branch_type;
6550 bfd_boolean created_stub = FALSE;
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);
6561 /* Fall through. */
6562 error_ret_free_local:
6563 if (symtab_hdr->contents != (unsigned char *) local_syms)
6564 free (local_syms);
6565 return FALSE;
6566 }
6567
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]);
6573
6574 /* Only look for stubs on branch instructions, or
6575 non-relaxed TLSCALL */
6576 if ((r_type != (unsigned int) R_ARM_CALL)
6577 && (r_type != (unsigned int) R_ARM_THM_CALL)
6578 && (r_type != (unsigned int) R_ARM_JUMP24)
6579 && (r_type != (unsigned int) R_ARM_THM_JUMP19)
6580 && (r_type != (unsigned int) R_ARM_THM_XPC22)
6581 && (r_type != (unsigned int) R_ARM_THM_JUMP24)
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)
6585 && r_type == elf32_arm_tls_transition
6586 (info, r_type, &hash->root)
6587 && ((hash ? hash->tls_type
6588 : (elf32_arm_local_got_tls_type
6589 (input_bfd)[r_indx]))
6590 & GOT_TLS_GDESC) != 0))
6591 continue;
6592
6593 /* Now determine the call target, its name, value,
6594 section. */
6595 sym_sec = NULL;
6596 sym_value = 0;
6597 destination = 0;
6598 sym_name = NULL;
6599
6600 if (r_type == (unsigned int) R_ARM_TLS_CALL
6601 || r_type == (unsigned int) R_ARM_THM_TLS_CALL)
6602 {
6603 /* A non-relaxed TLS call. The target is the
6604 plt-resident trampoline and nothing to do
6605 with the symbol. */
6606 BFD_ASSERT (htab->tls_trampoline > 0);
6607 sym_sec = htab->root.splt;
6608 sym_value = htab->tls_trampoline;
6609 hash = 0;
6610 st_type = STT_FUNC;
6611 branch_type = ST_BRANCH_TO_ARM;
6612 }
6613 else if (!hash)
6614 {
6615 /* It's a local symbol. */
6616 Elf_Internal_Sym *sym;
6617
6618 if (local_syms == NULL)
6619 {
6620 local_syms
6621 = (Elf_Internal_Sym *) symtab_hdr->contents;
6622 if (local_syms == NULL)
6623 local_syms
6624 = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
6625 symtab_hdr->sh_info, 0,
6626 NULL, NULL, NULL);
6627 if (local_syms == NULL)
6628 goto error_ret_free_internal;
6629 }
6630
6631 sym = local_syms + r_indx;
6632 if (sym->st_shndx == SHN_UNDEF)
6633 sym_sec = bfd_und_section_ptr;
6634 else if (sym->st_shndx == SHN_ABS)
6635 sym_sec = bfd_abs_section_ptr;
6636 else if (sym->st_shndx == SHN_COMMON)
6637 sym_sec = bfd_com_section_ptr;
6638 else
6639 sym_sec =
6640 bfd_section_from_elf_index (input_bfd, sym->st_shndx);
6641
6642 if (!sym_sec)
6643 /* This is an undefined symbol. It can never
6644 be resolved. */
6645 continue;
6646
6647 if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
6648 sym_value = sym->st_value;
6649 destination = (sym_value + irela->r_addend
6650 + sym_sec->output_offset
6651 + sym_sec->output_section->vma);
6652 st_type = ELF_ST_TYPE (sym->st_info);
6653 branch_type =
6654 ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
6655 sym_name
6656 = bfd_elf_string_from_elf_section (input_bfd,
6657 symtab_hdr->sh_link,
6658 sym->st_name);
6659 }
6660 else
6661 {
6662 /* It's an external symbol. */
6663 while (hash->root.root.type == bfd_link_hash_indirect
6664 || hash->root.root.type == bfd_link_hash_warning)
6665 hash = ((struct elf32_arm_link_hash_entry *)
6666 hash->root.root.u.i.link);
6667
6668 if (hash->root.root.type == bfd_link_hash_defined
6669 || hash->root.root.type == bfd_link_hash_defweak)
6670 {
6671 sym_sec = hash->root.root.u.def.section;
6672 sym_value = hash->root.root.u.def.value;
6673
6674 struct elf32_arm_link_hash_table *globals =
6675 elf32_arm_hash_table (info);
6676
6677 /* For a destination in a shared library,
6678 use the PLT stub as target address to
6679 decide whether a branch stub is
6680 needed. */
6681 if (globals != NULL
6682 && globals->root.splt != NULL
6683 && hash != NULL
6684 && hash->root.plt.offset != (bfd_vma) -1)
6685 {
6686 sym_sec = globals->root.splt;
6687 sym_value = hash->root.plt.offset;
6688 if (sym_sec->output_section != NULL)
6689 destination = (sym_value
6690 + sym_sec->output_offset
6691 + sym_sec->output_section->vma);
6692 }
6693 else if (sym_sec->output_section != NULL)
6694 destination = (sym_value + irela->r_addend
6695 + sym_sec->output_offset
6696 + sym_sec->output_section->vma);
6697 }
6698 else if ((hash->root.root.type == bfd_link_hash_undefined)
6699 || (hash->root.root.type == bfd_link_hash_undefweak))
6700 {
6701 /* For a shared library, use the PLT stub as
6702 target address to decide whether a long
6703 branch stub is needed.
6704 For absolute code, they cannot be handled. */
6705 struct elf32_arm_link_hash_table *globals =
6706 elf32_arm_hash_table (info);
6707
6708 if (globals != NULL
6709 && globals->root.splt != NULL
6710 && hash != NULL
6711 && hash->root.plt.offset != (bfd_vma) -1)
6712 {
6713 sym_sec = globals->root.splt;
6714 sym_value = hash->root.plt.offset;
6715 if (sym_sec->output_section != NULL)
6716 destination = (sym_value
6717 + sym_sec->output_offset
6718 + sym_sec->output_section->vma);
6719 }
6720 else
6721 continue;
6722 }
6723 else
6724 {
6725 bfd_set_error (bfd_error_bad_value);
6726 goto error_ret_free_internal;
6727 }
6728 st_type = hash->root.type;
6729 branch_type =
6730 ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
6731 sym_name = hash->root.root.root.string;
6732 }
6733
6734 do
6735 {
6736 bfd_boolean new_stub;
6737 struct elf32_arm_stub_hash_entry *stub_entry;
6738
6739 /* Determine what (if any) linker stub is needed. */
6740 stub_type = arm_type_of_stub (info, section, irela,
6741 st_type, &branch_type,
6742 hash, destination, sym_sec,
6743 input_bfd, sym_name);
6744 if (stub_type == arm_stub_none)
6745 break;
6746
6747 /* We've either created a stub for this reloc already,
6748 or we are about to. */
6749 stub_entry =
6750 elf32_arm_create_stub (htab, stub_type, section, irela,
6751 sym_sec, hash,
6752 (char *) sym_name, sym_value,
6753 branch_type, &new_stub);
6754
6755 created_stub = stub_entry != NULL;
6756 if (!created_stub)
6757 goto error_ret_free_internal;
6758 else if (!new_stub)
6759 break;
6760 else
6761 stub_changed = TRUE;
6762 }
6763 while (0);
6764
6765 /* Look for relocations which might trigger Cortex-A8
6766 erratum. */
6767 if (htab->fix_cortex_a8
6768 && (r_type == (unsigned int) R_ARM_THM_JUMP24
6769 || r_type == (unsigned int) R_ARM_THM_JUMP19
6770 || r_type == (unsigned int) R_ARM_THM_CALL
6771 || r_type == (unsigned int) R_ARM_THM_XPC22))
6772 {
6773 bfd_vma from = section->output_section->vma
6774 + section->output_offset
6775 + irela->r_offset;
6776
6777 if ((from & 0xfff) == 0xffe)
6778 {
6779 /* Found a candidate. Note we haven't checked the
6780 destination is within 4K here: if we do so (and
6781 don't create an entry in a8_relocs) we can't tell
6782 that a branch should have been relocated when
6783 scanning later. */
6784 if (num_a8_relocs == a8_reloc_table_size)
6785 {
6786 a8_reloc_table_size *= 2;
6787 a8_relocs = (struct a8_erratum_reloc *)
6788 bfd_realloc (a8_relocs,
6789 sizeof (struct a8_erratum_reloc)
6790 * a8_reloc_table_size);
6791 }
6792
6793 a8_relocs[num_a8_relocs].from = from;
6794 a8_relocs[num_a8_relocs].destination = destination;
6795 a8_relocs[num_a8_relocs].r_type = r_type;
6796 a8_relocs[num_a8_relocs].branch_type = branch_type;
6797 a8_relocs[num_a8_relocs].sym_name = sym_name;
6798 a8_relocs[num_a8_relocs].non_a8_stub = created_stub;
6799 a8_relocs[num_a8_relocs].hash = hash;
6800
6801 num_a8_relocs++;
6802 }
6803 }
6804 }
6805
6806 /* We're done with the internal relocs, free them. */
6807 if (elf_section_data (section)->relocs == NULL)
6808 free (internal_relocs);
6809 }
6810
6811 if (htab->fix_cortex_a8)
6812 {
6813 /* Sort relocs which might apply to Cortex-A8 erratum. */
6814 qsort (a8_relocs, num_a8_relocs,
6815 sizeof (struct a8_erratum_reloc),
6816 &a8_reloc_compare);
6817
6818 /* Scan for branches which might trigger Cortex-A8 erratum. */
6819 if (cortex_a8_erratum_scan (input_bfd, info, &a8_fixes,
6820 &num_a8_fixes, &a8_fix_table_size,
6821 a8_relocs, num_a8_relocs,
6822 prev_num_a8_fixes, &stub_changed)
6823 != 0)
6824 goto error_ret_free_local;
6825 }
6826
6827 if (local_syms != NULL
6828 && symtab_hdr->contents != (unsigned char *) local_syms)
6829 {
6830 if (!info->keep_memory)
6831 free (local_syms);
6832 else
6833 symtab_hdr->contents = (unsigned char *) local_syms;
6834 }
6835 }
6836
6837 if (first_veneer_scan
6838 && !set_cmse_veneer_addr_from_implib (info, htab,
6839 &cmse_stub_created))
6840 ret = FALSE;
6841
6842 if (prev_num_a8_fixes != num_a8_fixes)
6843 stub_changed = TRUE;
6844
6845 if (!stub_changed)
6846 break;
6847
6848 /* OK, we've added some stubs. Find out the new size of the
6849 stub sections. */
6850 for (stub_sec = htab->stub_bfd->sections;
6851 stub_sec != NULL;
6852 stub_sec = stub_sec->next)
6853 {
6854 /* Ignore non-stub sections. */
6855 if (!strstr (stub_sec->name, STUB_SUFFIX))
6856 continue;
6857
6858 stub_sec->size = 0;
6859 }
6860
6861 /* Add new SG veneers after those already in the input import
6862 library. */
6863 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6864 stub_type++)
6865 {
6866 bfd_vma *start_offset_p;
6867 asection **stub_sec_p;
6868
6869 start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
6870 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6871 if (start_offset_p == NULL)
6872 continue;
6873
6874 BFD_ASSERT (stub_sec_p != NULL);
6875 if (*stub_sec_p != NULL)
6876 (*stub_sec_p)->size = *start_offset_p;
6877 }
6878
6879 /* Compute stub section size, considering padding. */
6880 bfd_hash_traverse (&htab->stub_hash_table, arm_size_one_stub, htab);
6881 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6882 stub_type++)
6883 {
6884 int size, padding;
6885 asection **stub_sec_p;
6886
6887 padding = arm_dedicated_stub_section_padding (stub_type);
6888 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6889 /* Skip if no stub input section or no stub section padding
6890 required. */
6891 if ((stub_sec_p != NULL && *stub_sec_p == NULL) || padding == 0)
6892 continue;
6893 /* Stub section padding required but no dedicated section. */
6894 BFD_ASSERT (stub_sec_p);
6895
6896 size = (*stub_sec_p)->size;
6897 size = (size + padding - 1) & ~(padding - 1);
6898 (*stub_sec_p)->size = size;
6899 }
6900
6901 /* Add Cortex-A8 erratum veneers to stub section sizes too. */
6902 if (htab->fix_cortex_a8)
6903 for (i = 0; i < num_a8_fixes; i++)
6904 {
6905 stub_sec = elf32_arm_create_or_find_stub_sec (NULL,
6906 a8_fixes[i].section, htab, a8_fixes[i].stub_type);
6907
6908 if (stub_sec == NULL)
6909 return FALSE;
6910
6911 stub_sec->size
6912 += find_stub_size_and_template (a8_fixes[i].stub_type, NULL,
6913 NULL);
6914 }
6915
6916
6917 /* Ask the linker to do its stuff. */
6918 (*htab->layout_sections_again) ();
6919 first_veneer_scan = FALSE;
6920 }
6921
6922 /* Add stubs for Cortex-A8 erratum fixes now. */
6923 if (htab->fix_cortex_a8)
6924 {
6925 for (i = 0; i < num_a8_fixes; i++)
6926 {
6927 struct elf32_arm_stub_hash_entry *stub_entry;
6928 char *stub_name = a8_fixes[i].stub_name;
6929 asection *section = a8_fixes[i].section;
6930 unsigned int section_id = a8_fixes[i].section->id;
6931 asection *link_sec = htab->stub_group[section_id].link_sec;
6932 asection *stub_sec = htab->stub_group[section_id].stub_sec;
6933 const insn_sequence *template_sequence;
6934 int template_size, size = 0;
6935
6936 stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
6937 TRUE, FALSE);
6938 if (stub_entry == NULL)
6939 {
6940 _bfd_error_handler (_("%pB: cannot create stub entry %s"),
6941 section->owner, stub_name);
6942 return FALSE;
6943 }
6944
6945 stub_entry->stub_sec = stub_sec;
6946 stub_entry->stub_offset = (bfd_vma) -1;
6947 stub_entry->id_sec = link_sec;
6948 stub_entry->stub_type = a8_fixes[i].stub_type;
6949 stub_entry->source_value = a8_fixes[i].offset;
6950 stub_entry->target_section = a8_fixes[i].section;
6951 stub_entry->target_value = a8_fixes[i].target_offset;
6952 stub_entry->orig_insn = a8_fixes[i].orig_insn;
6953 stub_entry->branch_type = a8_fixes[i].branch_type;
6954
6955 size = find_stub_size_and_template (a8_fixes[i].stub_type,
6956 &template_sequence,
6957 &template_size);
6958
6959 stub_entry->stub_size = size;
6960 stub_entry->stub_template = template_sequence;
6961 stub_entry->stub_template_size = template_size;
6962 }
6963
6964 /* Stash the Cortex-A8 erratum fix array for use later in
6965 elf32_arm_write_section(). */
6966 htab->a8_erratum_fixes = a8_fixes;
6967 htab->num_a8_erratum_fixes = num_a8_fixes;
6968 }
6969 else
6970 {
6971 htab->a8_erratum_fixes = NULL;
6972 htab->num_a8_erratum_fixes = 0;
6973 }
6974 return ret;
6975 }
6976
6977 /* Build all the stubs associated with the current output file. The
6978 stubs are kept in a hash table attached to the main linker hash
6979 table. We also set up the .plt entries for statically linked PIC
6980 functions here. This function is called via arm_elf_finish in the
6981 linker. */
6982
6983 bfd_boolean
6984 elf32_arm_build_stubs (struct bfd_link_info *info)
6985 {
6986 asection *stub_sec;
6987 struct bfd_hash_table *table;
6988 enum elf32_arm_stub_type stub_type;
6989 struct elf32_arm_link_hash_table *htab;
6990
6991 htab = elf32_arm_hash_table (info);
6992 if (htab == NULL)
6993 return FALSE;
6994
6995 for (stub_sec = htab->stub_bfd->sections;
6996 stub_sec != NULL;
6997 stub_sec = stub_sec->next)
6998 {
6999 bfd_size_type size;
7000
7001 /* Ignore non-stub sections. */
7002 if (!strstr (stub_sec->name, STUB_SUFFIX))
7003 continue;
7004
7005 /* Allocate memory to hold the linker stubs. Zeroing the stub sections
7006 must at least be done for stub section requiring padding and for SG
7007 veneers to ensure that a non secure code branching to a removed SG
7008 veneer causes an error. */
7009 size = stub_sec->size;
7010 stub_sec->contents = (unsigned char *) bfd_zalloc (htab->stub_bfd, size);
7011 if (stub_sec->contents == NULL && size != 0)
7012 return FALSE;
7013
7014 stub_sec->size = 0;
7015 }
7016
7017 /* Add new SG veneers after those already in the input import library. */
7018 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7019 {
7020 bfd_vma *start_offset_p;
7021 asection **stub_sec_p;
7022
7023 start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
7024 stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
7025 if (start_offset_p == NULL)
7026 continue;
7027
7028 BFD_ASSERT (stub_sec_p != NULL);
7029 if (*stub_sec_p != NULL)
7030 (*stub_sec_p)->size = *start_offset_p;
7031 }
7032
7033 /* Build the stubs as directed by the stub hash table. */
7034 table = &htab->stub_hash_table;
7035 bfd_hash_traverse (table, arm_build_one_stub, info);
7036 if (htab->fix_cortex_a8)
7037 {
7038 /* Place the cortex a8 stubs last. */
7039 htab->fix_cortex_a8 = -1;
7040 bfd_hash_traverse (table, arm_build_one_stub, info);
7041 }
7042
7043 return TRUE;
7044 }
7045
7046 /* Locate the Thumb encoded calling stub for NAME. */
7047
7048 static struct elf_link_hash_entry *
7049 find_thumb_glue (struct bfd_link_info *link_info,
7050 const char *name,
7051 char **error_message)
7052 {
7053 char *tmp_name;
7054 struct elf_link_hash_entry *hash;
7055 struct elf32_arm_link_hash_table *hash_table;
7056
7057 /* We need a pointer to the armelf specific hash table. */
7058 hash_table = elf32_arm_hash_table (link_info);
7059 if (hash_table == NULL)
7060 return NULL;
7061
7062 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7063 + strlen (THUMB2ARM_GLUE_ENTRY_NAME) + 1);
7064
7065 BFD_ASSERT (tmp_name);
7066
7067 sprintf (tmp_name, THUMB2ARM_GLUE_ENTRY_NAME, name);
7068
7069 hash = elf_link_hash_lookup
7070 (&(hash_table)->root, tmp_name, FALSE, FALSE, TRUE);
7071
7072 if (hash == NULL
7073 && asprintf (error_message, _("unable to find %s glue '%s' for '%s'"),
7074 "Thumb", tmp_name, name) == -1)
7075 *error_message = (char *) bfd_errmsg (bfd_error_system_call);
7076
7077 free (tmp_name);
7078
7079 return hash;
7080 }
7081
7082 /* Locate the ARM encoded calling stub for NAME. */
7083
7084 static struct elf_link_hash_entry *
7085 find_arm_glue (struct bfd_link_info *link_info,
7086 const char *name,
7087 char **error_message)
7088 {
7089 char *tmp_name;
7090 struct elf_link_hash_entry *myh;
7091 struct elf32_arm_link_hash_table *hash_table;
7092
7093 /* We need a pointer to the elfarm specific hash table. */
7094 hash_table = elf32_arm_hash_table (link_info);
7095 if (hash_table == NULL)
7096 return NULL;
7097
7098 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7099 + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
7100 BFD_ASSERT (tmp_name);
7101
7102 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7103
7104 myh = elf_link_hash_lookup
7105 (&(hash_table)->root, tmp_name, FALSE, FALSE, TRUE);
7106
7107 if (myh == NULL
7108 && asprintf (error_message, _("unable to find %s glue '%s' for '%s'"),
7109 "ARM", tmp_name, name) == -1)
7110 *error_message = (char *) bfd_errmsg (bfd_error_system_call);
7111
7112 free (tmp_name);
7113
7114 return myh;
7115 }
7116
7117 /* ARM->Thumb glue (static images):
7118
7119 .arm
7120 __func_from_arm:
7121 ldr r12, __func_addr
7122 bx r12
7123 __func_addr:
7124 .word func @ behave as if you saw a ARM_32 reloc.
7125
7126 (v5t static images)
7127 .arm
7128 __func_from_arm:
7129 ldr pc, __func_addr
7130 __func_addr:
7131 .word func @ behave as if you saw a ARM_32 reloc.
7132
7133 (relocatable images)
7134 .arm
7135 __func_from_arm:
7136 ldr r12, __func_offset
7137 add r12, r12, pc
7138 bx r12
7139 __func_offset:
7140 .word func - . */
7141
7142 #define ARM2THUMB_STATIC_GLUE_SIZE 12
7143 static const insn32 a2t1_ldr_insn = 0xe59fc000;
7144 static const insn32 a2t2_bx_r12_insn = 0xe12fff1c;
7145 static const insn32 a2t3_func_addr_insn = 0x00000001;
7146
7147 #define ARM2THUMB_V5_STATIC_GLUE_SIZE 8
7148 static const insn32 a2t1v5_ldr_insn = 0xe51ff004;
7149 static const insn32 a2t2v5_func_addr_insn = 0x00000001;
7150
7151 #define ARM2THUMB_PIC_GLUE_SIZE 16
7152 static const insn32 a2t1p_ldr_insn = 0xe59fc004;
7153 static const insn32 a2t2p_add_pc_insn = 0xe08cc00f;
7154 static const insn32 a2t3p_bx_r12_insn = 0xe12fff1c;
7155
7156 /* Thumb->ARM: Thumb->(non-interworking aware) ARM
7157
7158 .thumb .thumb
7159 .align 2 .align 2
7160 __func_from_thumb: __func_from_thumb:
7161 bx pc push {r6, lr}
7162 nop ldr r6, __func_addr
7163 .arm mov lr, pc
7164 b func bx r6
7165 .arm
7166 ;; back_to_thumb
7167 ldmia r13! {r6, lr}
7168 bx lr
7169 __func_addr:
7170 .word func */
7171
7172 #define THUMB2ARM_GLUE_SIZE 8
7173 static const insn16 t2a1_bx_pc_insn = 0x4778;
7174 static const insn16 t2a2_noop_insn = 0x46c0;
7175 static const insn32 t2a3_b_insn = 0xea000000;
7176
7177 #define VFP11_ERRATUM_VENEER_SIZE 8
7178 #define STM32L4XX_ERRATUM_LDM_VENEER_SIZE 16
7179 #define STM32L4XX_ERRATUM_VLDM_VENEER_SIZE 24
7180
7181 #define ARM_BX_VENEER_SIZE 12
7182 static const insn32 armbx1_tst_insn = 0xe3100001;
7183 static const insn32 armbx2_moveq_insn = 0x01a0f000;
7184 static const insn32 armbx3_bx_insn = 0xe12fff10;
7185
7186 #ifndef ELFARM_NABI_C_INCLUDED
7187 static void
7188 arm_allocate_glue_section_space (bfd * abfd, bfd_size_type size, const char * name)
7189 {
7190 asection * s;
7191 bfd_byte * contents;
7192
7193 if (size == 0)
7194 {
7195 /* Do not include empty glue sections in the output. */
7196 if (abfd != NULL)
7197 {
7198 s = bfd_get_linker_section (abfd, name);
7199 if (s != NULL)
7200 s->flags |= SEC_EXCLUDE;
7201 }
7202 return;
7203 }
7204
7205 BFD_ASSERT (abfd != NULL);
7206
7207 s = bfd_get_linker_section (abfd, name);
7208 BFD_ASSERT (s != NULL);
7209
7210 contents = (bfd_byte *) bfd_zalloc (abfd, size);
7211
7212 BFD_ASSERT (s->size == size);
7213 s->contents = contents;
7214 }
7215
7216 bfd_boolean
7217 bfd_elf32_arm_allocate_interworking_sections (struct bfd_link_info * info)
7218 {
7219 struct elf32_arm_link_hash_table * globals;
7220
7221 globals = elf32_arm_hash_table (info);
7222 BFD_ASSERT (globals != NULL);
7223
7224 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7225 globals->arm_glue_size,
7226 ARM2THUMB_GLUE_SECTION_NAME);
7227
7228 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7229 globals->thumb_glue_size,
7230 THUMB2ARM_GLUE_SECTION_NAME);
7231
7232 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7233 globals->vfp11_erratum_glue_size,
7234 VFP11_ERRATUM_VENEER_SECTION_NAME);
7235
7236 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7237 globals->stm32l4xx_erratum_glue_size,
7238 STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7239
7240 arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7241 globals->bx_glue_size,
7242 ARM_BX_GLUE_SECTION_NAME);
7243
7244 return TRUE;
7245 }
7246
7247 /* Allocate space and symbols for calling a Thumb function from Arm mode.
7248 returns the symbol identifying the stub. */
7249
7250 static struct elf_link_hash_entry *
7251 record_arm_to_thumb_glue (struct bfd_link_info * link_info,
7252 struct elf_link_hash_entry * h)
7253 {
7254 const char * name = h->root.root.string;
7255 asection * s;
7256 char * tmp_name;
7257 struct elf_link_hash_entry * myh;
7258 struct bfd_link_hash_entry * bh;
7259 struct elf32_arm_link_hash_table * globals;
7260 bfd_vma val;
7261 bfd_size_type size;
7262
7263 globals = elf32_arm_hash_table (link_info);
7264 BFD_ASSERT (globals != NULL);
7265 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7266
7267 s = bfd_get_linker_section
7268 (globals->bfd_of_glue_owner, ARM2THUMB_GLUE_SECTION_NAME);
7269
7270 BFD_ASSERT (s != NULL);
7271
7272 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7273 + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
7274 BFD_ASSERT (tmp_name);
7275
7276 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7277
7278 myh = elf_link_hash_lookup
7279 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
7280
7281 if (myh != NULL)
7282 {
7283 /* We've already seen this guy. */
7284 free (tmp_name);
7285 return myh;
7286 }
7287
7288 /* The only trick here is using hash_table->arm_glue_size as the value.
7289 Even though the section isn't allocated yet, this is where we will be
7290 putting it. The +1 on the value marks that the stub has not been
7291 output yet - not that it is a Thumb function. */
7292 bh = NULL;
7293 val = globals->arm_glue_size + 1;
7294 _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
7295 tmp_name, BSF_GLOBAL, s, val,
7296 NULL, TRUE, FALSE, &bh);
7297
7298 myh = (struct elf_link_hash_entry *) bh;
7299 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7300 myh->forced_local = 1;
7301
7302 free (tmp_name);
7303
7304 if (bfd_link_pic (link_info)
7305 || globals->root.is_relocatable_executable
7306 || globals->pic_veneer)
7307 size = ARM2THUMB_PIC_GLUE_SIZE;
7308 else if (globals->use_blx)
7309 size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
7310 else
7311 size = ARM2THUMB_STATIC_GLUE_SIZE;
7312
7313 s->size += size;
7314 globals->arm_glue_size += size;
7315
7316 return myh;
7317 }
7318
7319 /* Allocate space for ARMv4 BX veneers. */
7320
7321 static void
7322 record_arm_bx_glue (struct bfd_link_info * link_info, int reg)
7323 {
7324 asection * s;
7325 struct elf32_arm_link_hash_table *globals;
7326 char *tmp_name;
7327 struct elf_link_hash_entry *myh;
7328 struct bfd_link_hash_entry *bh;
7329 bfd_vma val;
7330
7331 /* BX PC does not need a veneer. */
7332 if (reg == 15)
7333 return;
7334
7335 globals = elf32_arm_hash_table (link_info);
7336 BFD_ASSERT (globals != NULL);
7337 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7338
7339 /* Check if this veneer has already been allocated. */
7340 if (globals->bx_glue_offset[reg])
7341 return;
7342
7343 s = bfd_get_linker_section
7344 (globals->bfd_of_glue_owner, ARM_BX_GLUE_SECTION_NAME);
7345
7346 BFD_ASSERT (s != NULL);
7347
7348 /* Add symbol for veneer. */
7349 tmp_name = (char *)
7350 bfd_malloc ((bfd_size_type) strlen (ARM_BX_GLUE_ENTRY_NAME) + 1);
7351 BFD_ASSERT (tmp_name);
7352
7353 sprintf (tmp_name, ARM_BX_GLUE_ENTRY_NAME, reg);
7354
7355 myh = elf_link_hash_lookup
7356 (&(globals)->root, tmp_name, FALSE, FALSE, FALSE);
7357
7358 BFD_ASSERT (myh == NULL);
7359
7360 bh = NULL;
7361 val = globals->bx_glue_size;
7362 _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
7363 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7364 NULL, TRUE, FALSE, &bh);
7365
7366 myh = (struct elf_link_hash_entry *) bh;
7367 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7368 myh->forced_local = 1;
7369
7370 s->size += ARM_BX_VENEER_SIZE;
7371 globals->bx_glue_offset[reg] = globals->bx_glue_size | 2;
7372 globals->bx_glue_size += ARM_BX_VENEER_SIZE;
7373 }
7374
7375
7376 /* Add an entry to the code/data map for section SEC. */
7377
7378 static void
7379 elf32_arm_section_map_add (asection *sec, char type, bfd_vma vma)
7380 {
7381 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
7382 unsigned int newidx;
7383
7384 if (sec_data->map == NULL)
7385 {
7386 sec_data->map = (elf32_arm_section_map *)
7387 bfd_malloc (sizeof (elf32_arm_section_map));
7388 sec_data->mapcount = 0;
7389 sec_data->mapsize = 1;
7390 }
7391
7392 newidx = sec_data->mapcount++;
7393
7394 if (sec_data->mapcount > sec_data->mapsize)
7395 {
7396 sec_data->mapsize *= 2;
7397 sec_data->map = (elf32_arm_section_map *)
7398 bfd_realloc_or_free (sec_data->map, sec_data->mapsize
7399 * sizeof (elf32_arm_section_map));
7400 }
7401
7402 if (sec_data->map)
7403 {
7404 sec_data->map[newidx].vma = vma;
7405 sec_data->map[newidx].type = type;
7406 }
7407 }
7408
7409
7410 /* Record information about a VFP11 denorm-erratum veneer. Only ARM-mode
7411 veneers are handled for now. */
7412
7413 static bfd_vma
7414 record_vfp11_erratum_veneer (struct bfd_link_info *link_info,
7415 elf32_vfp11_erratum_list *branch,
7416 bfd *branch_bfd,
7417 asection *branch_sec,
7418 unsigned int offset)
7419 {
7420 asection *s;
7421 struct elf32_arm_link_hash_table *hash_table;
7422 char *tmp_name;
7423 struct elf_link_hash_entry *myh;
7424 struct bfd_link_hash_entry *bh;
7425 bfd_vma val;
7426 struct _arm_elf_section_data *sec_data;
7427 elf32_vfp11_erratum_list *newerr;
7428
7429 hash_table = elf32_arm_hash_table (link_info);
7430 BFD_ASSERT (hash_table != NULL);
7431 BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
7432
7433 s = bfd_get_linker_section
7434 (hash_table->bfd_of_glue_owner, VFP11_ERRATUM_VENEER_SECTION_NAME);
7435
7436 sec_data = elf32_arm_section_data (s);
7437
7438 BFD_ASSERT (s != NULL);
7439
7440 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
7441 (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
7442 BFD_ASSERT (tmp_name);
7443
7444 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
7445 hash_table->num_vfp11_fixes);
7446
7447 myh = elf_link_hash_lookup
7448 (&(hash_table)->root, tmp_name, FALSE, FALSE, FALSE);
7449
7450 BFD_ASSERT (myh == NULL);
7451
7452 bh = NULL;
7453 val = hash_table->vfp11_erratum_glue_size;
7454 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
7455 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7456 NULL, TRUE, FALSE, &bh);
7457
7458 myh = (struct elf_link_hash_entry *) bh;
7459 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7460 myh->forced_local = 1;
7461
7462 /* Link veneer back to calling location. */
7463 sec_data->erratumcount += 1;
7464 newerr = (elf32_vfp11_erratum_list *)
7465 bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
7466
7467 newerr->type = VFP11_ERRATUM_ARM_VENEER;
7468 newerr->vma = -1;
7469 newerr->u.v.branch = branch;
7470 newerr->u.v.id = hash_table->num_vfp11_fixes;
7471 branch->u.b.veneer = newerr;
7472
7473 newerr->next = sec_data->erratumlist;
7474 sec_data->erratumlist = newerr;
7475
7476 /* A symbol for the return from the veneer. */
7477 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
7478 hash_table->num_vfp11_fixes);
7479
7480 myh = elf_link_hash_lookup
7481 (&(hash_table)->root, tmp_name, FALSE, FALSE, FALSE);
7482
7483 if (myh != NULL)
7484 abort ();
7485
7486 bh = NULL;
7487 val = offset + 4;
7488 _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
7489 branch_sec, val, NULL, TRUE, FALSE, &bh);
7490
7491 myh = (struct elf_link_hash_entry *) bh;
7492 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7493 myh->forced_local = 1;
7494
7495 free (tmp_name);
7496
7497 /* Generate a mapping symbol for the veneer section, and explicitly add an
7498 entry for that symbol to the code/data map for the section. */
7499 if (hash_table->vfp11_erratum_glue_size == 0)
7500 {
7501 bh = NULL;
7502 /* FIXME: Creates an ARM symbol. Thumb mode will need attention if it
7503 ever requires this erratum fix. */
7504 _bfd_generic_link_add_one_symbol (link_info,
7505 hash_table->bfd_of_glue_owner, "$a",
7506 BSF_LOCAL, s, 0, NULL,
7507 TRUE, FALSE, &bh);
7508
7509 myh = (struct elf_link_hash_entry *) bh;
7510 myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7511 myh->forced_local = 1;
7512
7513 /* The elf32_arm_init_maps function only cares about symbols from input
7514 BFDs. We must make a note of this generated mapping symbol
7515 ourselves so that code byteswapping works properly in
7516 elf32_arm_write_section. */
7517 elf32_arm_section_map_add (s, 'a', 0);
7518 }
7519
7520 s->size += VFP11_ERRATUM_VENEER_SIZE;
7521 hash_table->vfp11_erratum_glue_size += VFP11_ERRATUM_VENEER_SIZE;
7522 hash_table->num_vfp11_fixes++;
7523
7524 /* The offset of the veneer. */
7525 return val;
7526 }
7527
7528 /* Record information about a STM32L4XX STM erratum veneer. Only THUMB-mode
7529 veneers need to be handled because used only in Cortex-M. */
7530
7531 static bfd_vma
7532 record_stm32l4xx_erratum_veneer (struct bfd_link_info *link_info,
7533 elf32_stm32l4xx_erratum_list *branch,
7534 bfd *branch_bfd,
7535 asection *branch_sec,
7536 unsigned int offset,
7537 bfd_size_type veneer_size)
7538 {
7539 asection *s;
7540 struct elf32_arm_link_hash_table *hash_table;
7541 char *tmp_name;
7542 struct elf_link_hash_entry *myh;
7543 struct bfd_link_hash_entry *bh;
7544 bfd_vma val;
7545 struct _arm_elf_section_data *sec_data;
7546 elf32_stm32l4xx_erratum_list *newerr;
7547
7548 hash_table = elf32_arm_hash_table (link_info);
7549 BFD_ASSERT (hash_table != NULL);
7550 BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
7551
7552 s = bfd_get_linker_section
7553 (hash_table->bfd_of_glue_owner, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7554
7555 BFD_ASSERT (s != NULL);
7556
7557 sec_data = elf32_arm_section_data (s);
7558
7559 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
7560 (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
7561 BFD_ASSERT (tmp_name);
7562
7563 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
7564 hash_table->num_stm32l4xx_fixes);
7565
7566 myh = elf_link_hash_lookup
7567 (&(hash_table)->root, tmp_name, FALSE, FALSE, FALSE);
7568
7569 BFD_ASSERT (myh == NULL);
7570
7571 bh = NULL;
7572 val = hash_table->stm32l4xx_erratum_glue_size;
7573 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
7574 tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7575 NULL, TRUE, FALSE, &bh);
7576
7577 myh = (struct elf_link_hash_entry *) bh;
7578 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7579 myh->forced_local = 1;
7580
7581 /* Link veneer back to calling location. */
7582 sec_data->stm32l4xx_erratumcount += 1;
7583 newerr = (elf32_stm32l4xx_erratum_list *)
7584 bfd_zmalloc (sizeof (elf32_stm32l4xx_erratum_list));
7585
7586 newerr->type = STM32L4XX_ERRATUM_VENEER;
7587 newerr->vma = -1;
7588 newerr->u.v.branch = branch;
7589 newerr->u.v.id = hash_table->num_stm32l4xx_fixes;
7590 branch->u.b.veneer = newerr;
7591
7592 newerr->next = sec_data->stm32l4xx_erratumlist;
7593 sec_data->stm32l4xx_erratumlist = newerr;
7594
7595 /* A symbol for the return from the veneer. */
7596 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
7597 hash_table->num_stm32l4xx_fixes);
7598
7599 myh = elf_link_hash_lookup
7600 (&(hash_table)->root, tmp_name, FALSE, FALSE, FALSE);
7601
7602 if (myh != NULL)
7603 abort ();
7604
7605 bh = NULL;
7606 val = offset + 4;
7607 _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
7608 branch_sec, val, NULL, TRUE, FALSE, &bh);
7609
7610 myh = (struct elf_link_hash_entry *) bh;
7611 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7612 myh->forced_local = 1;
7613
7614 free (tmp_name);
7615
7616 /* Generate a mapping symbol for the veneer section, and explicitly add an
7617 entry for that symbol to the code/data map for the section. */
7618 if (hash_table->stm32l4xx_erratum_glue_size == 0)
7619 {
7620 bh = NULL;
7621 /* Creates a THUMB symbol since there is no other choice. */
7622 _bfd_generic_link_add_one_symbol (link_info,
7623 hash_table->bfd_of_glue_owner, "$t",
7624 BSF_LOCAL, s, 0, NULL,
7625 TRUE, FALSE, &bh);
7626
7627 myh = (struct elf_link_hash_entry *) bh;
7628 myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7629 myh->forced_local = 1;
7630
7631 /* The elf32_arm_init_maps function only cares about symbols from input
7632 BFDs. We must make a note of this generated mapping symbol
7633 ourselves so that code byteswapping works properly in
7634 elf32_arm_write_section. */
7635 elf32_arm_section_map_add (s, 't', 0);
7636 }
7637
7638 s->size += veneer_size;
7639 hash_table->stm32l4xx_erratum_glue_size += veneer_size;
7640 hash_table->num_stm32l4xx_fixes++;
7641
7642 /* The offset of the veneer. */
7643 return val;
7644 }
7645
7646 #define ARM_GLUE_SECTION_FLAGS \
7647 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_CODE \
7648 | SEC_READONLY | SEC_LINKER_CREATED)
7649
7650 /* Create a fake section for use by the ARM backend of the linker. */
7651
7652 static bfd_boolean
7653 arm_make_glue_section (bfd * abfd, const char * name)
7654 {
7655 asection * sec;
7656
7657 sec = bfd_get_linker_section (abfd, name);
7658 if (sec != NULL)
7659 /* Already made. */
7660 return TRUE;
7661
7662 sec = bfd_make_section_anyway_with_flags (abfd, name, ARM_GLUE_SECTION_FLAGS);
7663
7664 if (sec == NULL
7665 || !bfd_set_section_alignment (sec, 2))
7666 return FALSE;
7667
7668 /* Set the gc mark to prevent the section from being removed by garbage
7669 collection, despite the fact that no relocs refer to this section. */
7670 sec->gc_mark = 1;
7671
7672 return TRUE;
7673 }
7674
7675 /* Set size of .plt entries. This function is called from the
7676 linker scripts in ld/emultempl/{armelf}.em. */
7677
7678 void
7679 bfd_elf32_arm_use_long_plt (void)
7680 {
7681 elf32_arm_use_long_plt_entry = TRUE;
7682 }
7683
7684 /* Add the glue sections to ABFD. This function is called from the
7685 linker scripts in ld/emultempl/{armelf}.em. */
7686
7687 bfd_boolean
7688 bfd_elf32_arm_add_glue_sections_to_bfd (bfd *abfd,
7689 struct bfd_link_info *info)
7690 {
7691 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
7692 bfd_boolean dostm32l4xx = globals
7693 && globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE;
7694 bfd_boolean addglue;
7695
7696 /* If we are only performing a partial
7697 link do not bother adding the glue. */
7698 if (bfd_link_relocatable (info))
7699 return TRUE;
7700
7701 addglue = arm_make_glue_section (abfd, ARM2THUMB_GLUE_SECTION_NAME)
7702 && arm_make_glue_section (abfd, THUMB2ARM_GLUE_SECTION_NAME)
7703 && arm_make_glue_section (abfd, VFP11_ERRATUM_VENEER_SECTION_NAME)
7704 && arm_make_glue_section (abfd, ARM_BX_GLUE_SECTION_NAME);
7705
7706 if (!dostm32l4xx)
7707 return addglue;
7708
7709 return addglue
7710 && arm_make_glue_section (abfd, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7711 }
7712
7713 /* Mark output sections of veneers needing a dedicated one with SEC_KEEP. This
7714 ensures they are not marked for deletion by
7715 strip_excluded_output_sections () when veneers are going to be created
7716 later. Not doing so would trigger assert on empty section size in
7717 lang_size_sections_1 (). */
7718
7719 void
7720 bfd_elf32_arm_keep_private_stub_output_sections (struct bfd_link_info *info)
7721 {
7722 enum elf32_arm_stub_type stub_type;
7723
7724 /* If we are only performing a partial
7725 link do not bother adding the glue. */
7726 if (bfd_link_relocatable (info))
7727 return;
7728
7729 for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7730 {
7731 asection *out_sec;
7732 const char *out_sec_name;
7733
7734 if (!arm_dedicated_stub_output_section_required (stub_type))
7735 continue;
7736
7737 out_sec_name = arm_dedicated_stub_output_section_name (stub_type);
7738 out_sec = bfd_get_section_by_name (info->output_bfd, out_sec_name);
7739 if (out_sec != NULL)
7740 out_sec->flags |= SEC_KEEP;
7741 }
7742 }
7743
7744 /* Select a BFD to be used to hold the sections used by the glue code.
7745 This function is called from the linker scripts in ld/emultempl/
7746 {armelf/pe}.em. */
7747
7748 bfd_boolean
7749 bfd_elf32_arm_get_bfd_for_interworking (bfd *abfd, struct bfd_link_info *info)
7750 {
7751 struct elf32_arm_link_hash_table *globals;
7752
7753 /* If we are only performing a partial link
7754 do not bother getting a bfd to hold the glue. */
7755 if (bfd_link_relocatable (info))
7756 return TRUE;
7757
7758 /* Make sure we don't attach the glue sections to a dynamic object. */
7759 BFD_ASSERT (!(abfd->flags & DYNAMIC));
7760
7761 globals = elf32_arm_hash_table (info);
7762 BFD_ASSERT (globals != NULL);
7763
7764 if (globals->bfd_of_glue_owner != NULL)
7765 return TRUE;
7766
7767 /* Save the bfd for later use. */
7768 globals->bfd_of_glue_owner = abfd;
7769
7770 return TRUE;
7771 }
7772
7773 static void
7774 check_use_blx (struct elf32_arm_link_hash_table *globals)
7775 {
7776 int cpu_arch;
7777
7778 cpu_arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
7779 Tag_CPU_arch);
7780
7781 if (globals->fix_arm1176)
7782 {
7783 if (cpu_arch == TAG_CPU_ARCH_V6T2 || cpu_arch > TAG_CPU_ARCH_V6K)
7784 globals->use_blx = 1;
7785 }
7786 else
7787 {
7788 if (cpu_arch > TAG_CPU_ARCH_V4T)
7789 globals->use_blx = 1;
7790 }
7791 }
7792
7793 bfd_boolean
7794 bfd_elf32_arm_process_before_allocation (bfd *abfd,
7795 struct bfd_link_info *link_info)
7796 {
7797 Elf_Internal_Shdr *symtab_hdr;
7798 Elf_Internal_Rela *internal_relocs = NULL;
7799 Elf_Internal_Rela *irel, *irelend;
7800 bfd_byte *contents = NULL;
7801
7802 asection *sec;
7803 struct elf32_arm_link_hash_table *globals;
7804
7805 /* If we are only performing a partial link do not bother
7806 to construct any glue. */
7807 if (bfd_link_relocatable (link_info))
7808 return TRUE;
7809
7810 /* Here we have a bfd that is to be included on the link. We have a
7811 hook to do reloc rummaging, before section sizes are nailed down. */
7812 globals = elf32_arm_hash_table (link_info);
7813 BFD_ASSERT (globals != NULL);
7814
7815 check_use_blx (globals);
7816
7817 if (globals->byteswap_code && !bfd_big_endian (abfd))
7818 {
7819 _bfd_error_handler (_("%pB: BE8 images only valid in big-endian mode"),
7820 abfd);
7821 return FALSE;
7822 }
7823
7824 /* PR 5398: If we have not decided to include any loadable sections in
7825 the output then we will not have a glue owner bfd. This is OK, it
7826 just means that there is nothing else for us to do here. */
7827 if (globals->bfd_of_glue_owner == NULL)
7828 return TRUE;
7829
7830 /* Rummage around all the relocs and map the glue vectors. */
7831 sec = abfd->sections;
7832
7833 if (sec == NULL)
7834 return TRUE;
7835
7836 for (; sec != NULL; sec = sec->next)
7837 {
7838 if (sec->reloc_count == 0)
7839 continue;
7840
7841 if ((sec->flags & SEC_EXCLUDE) != 0)
7842 continue;
7843
7844 symtab_hdr = & elf_symtab_hdr (abfd);
7845
7846 /* Load the relocs. */
7847 internal_relocs
7848 = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, FALSE);
7849
7850 if (internal_relocs == NULL)
7851 goto error_return;
7852
7853 irelend = internal_relocs + sec->reloc_count;
7854 for (irel = internal_relocs; irel < irelend; irel++)
7855 {
7856 long r_type;
7857 unsigned long r_index;
7858
7859 struct elf_link_hash_entry *h;
7860
7861 r_type = ELF32_R_TYPE (irel->r_info);
7862 r_index = ELF32_R_SYM (irel->r_info);
7863
7864 /* These are the only relocation types we care about. */
7865 if ( r_type != R_ARM_PC24
7866 && (r_type != R_ARM_V4BX || globals->fix_v4bx < 2))
7867 continue;
7868
7869 /* Get the section contents if we haven't done so already. */
7870 if (contents == NULL)
7871 {
7872 /* Get cached copy if it exists. */
7873 if (elf_section_data (sec)->this_hdr.contents != NULL)
7874 contents = elf_section_data (sec)->this_hdr.contents;
7875 else
7876 {
7877 /* Go get them off disk. */
7878 if (! bfd_malloc_and_get_section (abfd, sec, &contents))
7879 goto error_return;
7880 }
7881 }
7882
7883 if (r_type == R_ARM_V4BX)
7884 {
7885 int reg;
7886
7887 reg = bfd_get_32 (abfd, contents + irel->r_offset) & 0xf;
7888 record_arm_bx_glue (link_info, reg);
7889 continue;
7890 }
7891
7892 /* If the relocation is not against a symbol it cannot concern us. */
7893 h = NULL;
7894
7895 /* We don't care about local symbols. */
7896 if (r_index < symtab_hdr->sh_info)
7897 continue;
7898
7899 /* This is an external symbol. */
7900 r_index -= symtab_hdr->sh_info;
7901 h = (struct elf_link_hash_entry *)
7902 elf_sym_hashes (abfd)[r_index];
7903
7904 /* If the relocation is against a static symbol it must be within
7905 the current section and so cannot be a cross ARM/Thumb relocation. */
7906 if (h == NULL)
7907 continue;
7908
7909 /* If the call will go through a PLT entry then we do not need
7910 glue. */
7911 if (globals->root.splt != NULL && h->plt.offset != (bfd_vma) -1)
7912 continue;
7913
7914 switch (r_type)
7915 {
7916 case R_ARM_PC24:
7917 /* This one is a call from arm code. We need to look up
7918 the target of the call. If it is a thumb target, we
7919 insert glue. */
7920 if (ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
7921 == ST_BRANCH_TO_THUMB)
7922 record_arm_to_thumb_glue (link_info, h);
7923 break;
7924
7925 default:
7926 abort ();
7927 }
7928 }
7929
7930 if (elf_section_data (sec)->this_hdr.contents != contents)
7931 free (contents);
7932 contents = NULL;
7933
7934 if (elf_section_data (sec)->relocs != internal_relocs)
7935 free (internal_relocs);
7936 internal_relocs = NULL;
7937 }
7938
7939 return TRUE;
7940
7941 error_return:
7942 if (elf_section_data (sec)->this_hdr.contents != contents)
7943 free (contents);
7944 if (elf_section_data (sec)->relocs != internal_relocs)
7945 free (internal_relocs);
7946
7947 return FALSE;
7948 }
7949 #endif
7950
7951
7952 /* Initialise maps of ARM/Thumb/data for input BFDs. */
7953
7954 void
7955 bfd_elf32_arm_init_maps (bfd *abfd)
7956 {
7957 Elf_Internal_Sym *isymbuf;
7958 Elf_Internal_Shdr *hdr;
7959 unsigned int i, localsyms;
7960
7961 /* PR 7093: Make sure that we are dealing with an arm elf binary. */
7962 if (! is_arm_elf (abfd))
7963 return;
7964
7965 if ((abfd->flags & DYNAMIC) != 0)
7966 return;
7967
7968 hdr = & elf_symtab_hdr (abfd);
7969 localsyms = hdr->sh_info;
7970
7971 /* Obtain a buffer full of symbols for this BFD. The hdr->sh_info field
7972 should contain the number of local symbols, which should come before any
7973 global symbols. Mapping symbols are always local. */
7974 isymbuf = bfd_elf_get_elf_syms (abfd, hdr, localsyms, 0, NULL, NULL,
7975 NULL);
7976
7977 /* No internal symbols read? Skip this BFD. */
7978 if (isymbuf == NULL)
7979 return;
7980
7981 for (i = 0; i < localsyms; i++)
7982 {
7983 Elf_Internal_Sym *isym = &isymbuf[i];
7984 asection *sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
7985 const char *name;
7986
7987 if (sec != NULL
7988 && ELF_ST_BIND (isym->st_info) == STB_LOCAL)
7989 {
7990 name = bfd_elf_string_from_elf_section (abfd,
7991 hdr->sh_link, isym->st_name);
7992
7993 if (bfd_is_arm_special_symbol_name (name,
7994 BFD_ARM_SPECIAL_SYM_TYPE_MAP))
7995 elf32_arm_section_map_add (sec, name[1], isym->st_value);
7996 }
7997 }
7998 }
7999
8000
8001 /* Auto-select enabling of Cortex-A8 erratum fix if the user didn't explicitly
8002 say what they wanted. */
8003
8004 void
8005 bfd_elf32_arm_set_cortex_a8_fix (bfd *obfd, struct bfd_link_info *link_info)
8006 {
8007 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8008 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8009
8010 if (globals == NULL)
8011 return;
8012
8013 if (globals->fix_cortex_a8 == -1)
8014 {
8015 /* Turn on Cortex-A8 erratum workaround for ARMv7-A. */
8016 if (out_attr[Tag_CPU_arch].i == TAG_CPU_ARCH_V7
8017 && (out_attr[Tag_CPU_arch_profile].i == 'A'
8018 || out_attr[Tag_CPU_arch_profile].i == 0))
8019 globals->fix_cortex_a8 = 1;
8020 else
8021 globals->fix_cortex_a8 = 0;
8022 }
8023 }
8024
8025
8026 void
8027 bfd_elf32_arm_set_vfp11_fix (bfd *obfd, struct bfd_link_info *link_info)
8028 {
8029 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8030 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8031
8032 if (globals == NULL)
8033 return;
8034 /* We assume that ARMv7+ does not need the VFP11 denorm erratum fix. */
8035 if (out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V7)
8036 {
8037 switch (globals->vfp11_fix)
8038 {
8039 case BFD_ARM_VFP11_FIX_DEFAULT:
8040 case BFD_ARM_VFP11_FIX_NONE:
8041 globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8042 break;
8043
8044 default:
8045 /* Give a warning, but do as the user requests anyway. */
8046 _bfd_error_handler (_("%pB: warning: selected VFP11 erratum "
8047 "workaround is not necessary for target architecture"), obfd);
8048 }
8049 }
8050 else if (globals->vfp11_fix == BFD_ARM_VFP11_FIX_DEFAULT)
8051 /* For earlier architectures, we might need the workaround, but do not
8052 enable it by default. If users is running with broken hardware, they
8053 must enable the erratum fix explicitly. */
8054 globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8055 }
8056
8057 void
8058 bfd_elf32_arm_set_stm32l4xx_fix (bfd *obfd, struct bfd_link_info *link_info)
8059 {
8060 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8061 obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8062
8063 if (globals == NULL)
8064 return;
8065
8066 /* We assume only Cortex-M4 may require the fix. */
8067 if (out_attr[Tag_CPU_arch].i != TAG_CPU_ARCH_V7E_M
8068 || out_attr[Tag_CPU_arch_profile].i != 'M')
8069 {
8070 if (globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE)
8071 /* Give a warning, but do as the user requests anyway. */
8072 _bfd_error_handler
8073 (_("%pB: warning: selected STM32L4XX erratum "
8074 "workaround is not necessary for target architecture"), obfd);
8075 }
8076 }
8077
8078 enum bfd_arm_vfp11_pipe
8079 {
8080 VFP11_FMAC,
8081 VFP11_LS,
8082 VFP11_DS,
8083 VFP11_BAD
8084 };
8085
8086 /* Return a VFP register number. This is encoded as RX:X for single-precision
8087 registers, or X:RX for double-precision registers, where RX is the group of
8088 four bits in the instruction encoding and X is the single extension bit.
8089 RX and X fields are specified using their lowest (starting) bit. The return
8090 value is:
8091
8092 0...31: single-precision registers s0...s31
8093 32...63: double-precision registers d0...d31.
8094
8095 Although X should be zero for VFP11 (encoding d0...d15 only), we might
8096 encounter VFP3 instructions, so we allow the full range for DP registers. */
8097
8098 static unsigned int
8099 bfd_arm_vfp11_regno (unsigned int insn, bfd_boolean is_double, unsigned int rx,
8100 unsigned int x)
8101 {
8102 if (is_double)
8103 return (((insn >> rx) & 0xf) | (((insn >> x) & 1) << 4)) + 32;
8104 else
8105 return (((insn >> rx) & 0xf) << 1) | ((insn >> x) & 1);
8106 }
8107
8108 /* Set bits in *WMASK according to a register number REG as encoded by
8109 bfd_arm_vfp11_regno(). Ignore d16-d31. */
8110
8111 static void
8112 bfd_arm_vfp11_write_mask (unsigned int *wmask, unsigned int reg)
8113 {
8114 if (reg < 32)
8115 *wmask |= 1 << reg;
8116 else if (reg < 48)
8117 *wmask |= 3 << ((reg - 32) * 2);
8118 }
8119
8120 /* Return TRUE if WMASK overwrites anything in REGS. */
8121
8122 static bfd_boolean
8123 bfd_arm_vfp11_antidependency (unsigned int wmask, int *regs, int numregs)
8124 {
8125 int i;
8126
8127 for (i = 0; i < numregs; i++)
8128 {
8129 unsigned int reg = regs[i];
8130
8131 if (reg < 32 && (wmask & (1 << reg)) != 0)
8132 return TRUE;
8133
8134 reg -= 32;
8135
8136 if (reg >= 16)
8137 continue;
8138
8139 if ((wmask & (3 << (reg * 2))) != 0)
8140 return TRUE;
8141 }
8142
8143 return FALSE;
8144 }
8145
8146 /* In this function, we're interested in two things: finding input registers
8147 for VFP data-processing instructions, and finding the set of registers which
8148 arbitrary VFP instructions may write to. We use a 32-bit unsigned int to
8149 hold the written set, so FLDM etc. are easy to deal with (we're only
8150 interested in 32 SP registers or 16 dp registers, due to the VFP version
8151 implemented by the chip in question). DP registers are marked by setting
8152 both SP registers in the write mask). */
8153
8154 static enum bfd_arm_vfp11_pipe
8155 bfd_arm_vfp11_insn_decode (unsigned int insn, unsigned int *destmask, int *regs,
8156 int *numregs)
8157 {
8158 enum bfd_arm_vfp11_pipe vpipe = VFP11_BAD;
8159 bfd_boolean is_double = ((insn & 0xf00) == 0xb00) ? 1 : 0;
8160
8161 if ((insn & 0x0f000e10) == 0x0e000a00) /* A data-processing insn. */
8162 {
8163 unsigned int pqrs;
8164 unsigned int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8165 unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
8166
8167 pqrs = ((insn & 0x00800000) >> 20)
8168 | ((insn & 0x00300000) >> 19)
8169 | ((insn & 0x00000040) >> 6);
8170
8171 switch (pqrs)
8172 {
8173 case 0: /* fmac[sd]. */
8174 case 1: /* fnmac[sd]. */
8175 case 2: /* fmsc[sd]. */
8176 case 3: /* fnmsc[sd]. */
8177 vpipe = VFP11_FMAC;
8178 bfd_arm_vfp11_write_mask (destmask, fd);
8179 regs[0] = fd;
8180 regs[1] = bfd_arm_vfp11_regno (insn, is_double, 16, 7); /* Fn. */
8181 regs[2] = fm;
8182 *numregs = 3;
8183 break;
8184
8185 case 4: /* fmul[sd]. */
8186 case 5: /* fnmul[sd]. */
8187 case 6: /* fadd[sd]. */
8188 case 7: /* fsub[sd]. */
8189 vpipe = VFP11_FMAC;
8190 goto vfp_binop;
8191
8192 case 8: /* fdiv[sd]. */
8193 vpipe = VFP11_DS;
8194 vfp_binop:
8195 bfd_arm_vfp11_write_mask (destmask, fd);
8196 regs[0] = bfd_arm_vfp11_regno (insn, is_double, 16, 7); /* Fn. */
8197 regs[1] = fm;
8198 *numregs = 2;
8199 break;
8200
8201 case 15: /* extended opcode. */
8202 {
8203 unsigned int extn = ((insn >> 15) & 0x1e)
8204 | ((insn >> 7) & 1);
8205
8206 switch (extn)
8207 {
8208 case 0: /* fcpy[sd]. */
8209 case 1: /* fabs[sd]. */
8210 case 2: /* fneg[sd]. */
8211 case 8: /* fcmp[sd]. */
8212 case 9: /* fcmpe[sd]. */
8213 case 10: /* fcmpz[sd]. */
8214 case 11: /* fcmpez[sd]. */
8215 case 16: /* fuito[sd]. */
8216 case 17: /* fsito[sd]. */
8217 case 24: /* ftoui[sd]. */
8218 case 25: /* ftouiz[sd]. */
8219 case 26: /* ftosi[sd]. */
8220 case 27: /* ftosiz[sd]. */
8221 /* These instructions will not bounce due to underflow. */
8222 *numregs = 0;
8223 vpipe = VFP11_FMAC;
8224 break;
8225
8226 case 3: /* fsqrt[sd]. */
8227 /* fsqrt cannot underflow, but it can (perhaps) overwrite
8228 registers to cause the erratum in previous instructions. */
8229 bfd_arm_vfp11_write_mask (destmask, fd);
8230 vpipe = VFP11_DS;
8231 break;
8232
8233 case 15: /* fcvt{ds,sd}. */
8234 {
8235 int rnum = 0;
8236
8237 bfd_arm_vfp11_write_mask (destmask, fd);
8238
8239 /* Only FCVTSD can underflow. */
8240 if ((insn & 0x100) != 0)
8241 regs[rnum++] = fm;
8242
8243 *numregs = rnum;
8244
8245 vpipe = VFP11_FMAC;
8246 }
8247 break;
8248
8249 default:
8250 return VFP11_BAD;
8251 }
8252 }
8253 break;
8254
8255 default:
8256 return VFP11_BAD;
8257 }
8258 }
8259 /* Two-register transfer. */
8260 else if ((insn & 0x0fe00ed0) == 0x0c400a10)
8261 {
8262 unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
8263
8264 if ((insn & 0x100000) == 0)
8265 {
8266 if (is_double)
8267 bfd_arm_vfp11_write_mask (destmask, fm);
8268 else
8269 {
8270 bfd_arm_vfp11_write_mask (destmask, fm);
8271 bfd_arm_vfp11_write_mask (destmask, fm + 1);
8272 }
8273 }
8274
8275 vpipe = VFP11_LS;
8276 }
8277 else if ((insn & 0x0e100e00) == 0x0c100a00) /* A load insn. */
8278 {
8279 int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8280 unsigned int puw = ((insn >> 21) & 0x1) | (((insn >> 23) & 3) << 1);
8281
8282 switch (puw)
8283 {
8284 case 0: /* Two-reg transfer. We should catch these above. */
8285 abort ();
8286
8287 case 2: /* fldm[sdx]. */
8288 case 3:
8289 case 5:
8290 {
8291 unsigned int i, offset = insn & 0xff;
8292
8293 if (is_double)
8294 offset >>= 1;
8295
8296 for (i = fd; i < fd + offset; i++)
8297 bfd_arm_vfp11_write_mask (destmask, i);
8298 }
8299 break;
8300
8301 case 4: /* fld[sd]. */
8302 case 6:
8303 bfd_arm_vfp11_write_mask (destmask, fd);
8304 break;
8305
8306 default:
8307 return VFP11_BAD;
8308 }
8309
8310 vpipe = VFP11_LS;
8311 }
8312 /* Single-register transfer. Note L==0. */
8313 else if ((insn & 0x0f100e10) == 0x0e000a10)
8314 {
8315 unsigned int opcode = (insn >> 21) & 7;
8316 unsigned int fn = bfd_arm_vfp11_regno (insn, is_double, 16, 7);
8317
8318 switch (opcode)
8319 {
8320 case 0: /* fmsr/fmdlr. */
8321 case 1: /* fmdhr. */
8322 /* Mark fmdhr and fmdlr as writing to the whole of the DP
8323 destination register. I don't know if this is exactly right,
8324 but it is the conservative choice. */
8325 bfd_arm_vfp11_write_mask (destmask, fn);
8326 break;
8327
8328 case 7: /* fmxr. */
8329 break;
8330 }
8331
8332 vpipe = VFP11_LS;
8333 }
8334
8335 return vpipe;
8336 }
8337
8338
8339 static int elf32_arm_compare_mapping (const void * a, const void * b);
8340
8341
8342 /* Look for potentially-troublesome code sequences which might trigger the
8343 VFP11 denormal/antidependency erratum. See, e.g., the ARM1136 errata sheet
8344 (available from ARM) for details of the erratum. A short version is
8345 described in ld.texinfo. */
8346
8347 bfd_boolean
8348 bfd_elf32_arm_vfp11_erratum_scan (bfd *abfd, struct bfd_link_info *link_info)
8349 {
8350 asection *sec;
8351 bfd_byte *contents = NULL;
8352 int state = 0;
8353 int regs[3], numregs = 0;
8354 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8355 int use_vector = (globals->vfp11_fix == BFD_ARM_VFP11_FIX_VECTOR);
8356
8357 if (globals == NULL)
8358 return FALSE;
8359
8360 /* We use a simple FSM to match troublesome VFP11 instruction sequences.
8361 The states transition as follows:
8362
8363 0 -> 1 (vector) or 0 -> 2 (scalar)
8364 A VFP FMAC-pipeline instruction has been seen. Fill
8365 regs[0]..regs[numregs-1] with its input operands. Remember this
8366 instruction in 'first_fmac'.
8367
8368 1 -> 2
8369 Any instruction, except for a VFP instruction which overwrites
8370 regs[*].
8371
8372 1 -> 3 [ -> 0 ] or
8373 2 -> 3 [ -> 0 ]
8374 A VFP instruction has been seen which overwrites any of regs[*].
8375 We must make a veneer! Reset state to 0 before examining next
8376 instruction.
8377
8378 2 -> 0
8379 If we fail to match anything in state 2, reset to state 0 and reset
8380 the instruction pointer to the instruction after 'first_fmac'.
8381
8382 If the VFP11 vector mode is in use, there must be at least two unrelated
8383 instructions between anti-dependent VFP11 instructions to properly avoid
8384 triggering the erratum, hence the use of the extra state 1. */
8385
8386 /* If we are only performing a partial link do not bother
8387 to construct any glue. */
8388 if (bfd_link_relocatable (link_info))
8389 return TRUE;
8390
8391 /* Skip if this bfd does not correspond to an ELF image. */
8392 if (! is_arm_elf (abfd))
8393 return TRUE;
8394
8395 /* We should have chosen a fix type by the time we get here. */
8396 BFD_ASSERT (globals->vfp11_fix != BFD_ARM_VFP11_FIX_DEFAULT);
8397
8398 if (globals->vfp11_fix == BFD_ARM_VFP11_FIX_NONE)
8399 return TRUE;
8400
8401 /* Skip this BFD if it corresponds to an executable or dynamic object. */
8402 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
8403 return TRUE;
8404
8405 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8406 {
8407 unsigned int i, span, first_fmac = 0, veneer_of_insn = 0;
8408 struct _arm_elf_section_data *sec_data;
8409
8410 /* If we don't have executable progbits, we're not interested in this
8411 section. Also skip if section is to be excluded. */
8412 if (elf_section_type (sec) != SHT_PROGBITS
8413 || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8414 || (sec->flags & SEC_EXCLUDE) != 0
8415 || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8416 || sec->output_section == bfd_abs_section_ptr
8417 || strcmp (sec->name, VFP11_ERRATUM_VENEER_SECTION_NAME) == 0)
8418 continue;
8419
8420 sec_data = elf32_arm_section_data (sec);
8421
8422 if (sec_data->mapcount == 0)
8423 continue;
8424
8425 if (elf_section_data (sec)->this_hdr.contents != NULL)
8426 contents = elf_section_data (sec)->this_hdr.contents;
8427 else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8428 goto error_return;
8429
8430 qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8431 elf32_arm_compare_mapping);
8432
8433 for (span = 0; span < sec_data->mapcount; span++)
8434 {
8435 unsigned int span_start = sec_data->map[span].vma;
8436 unsigned int span_end = (span == sec_data->mapcount - 1)
8437 ? sec->size : sec_data->map[span + 1].vma;
8438 char span_type = sec_data->map[span].type;
8439
8440 /* FIXME: Only ARM mode is supported at present. We may need to
8441 support Thumb-2 mode also at some point. */
8442 if (span_type != 'a')
8443 continue;
8444
8445 for (i = span_start; i < span_end;)
8446 {
8447 unsigned int next_i = i + 4;
8448 unsigned int insn = bfd_big_endian (abfd)
8449 ? (((unsigned) contents[i] << 24)
8450 | (contents[i + 1] << 16)
8451 | (contents[i + 2] << 8)
8452 | contents[i + 3])
8453 : (((unsigned) contents[i + 3] << 24)
8454 | (contents[i + 2] << 16)
8455 | (contents[i + 1] << 8)
8456 | contents[i]);
8457 unsigned int writemask = 0;
8458 enum bfd_arm_vfp11_pipe vpipe;
8459
8460 switch (state)
8461 {
8462 case 0:
8463 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask, regs,
8464 &numregs);
8465 /* I'm assuming the VFP11 erratum can trigger with denorm
8466 operands on either the FMAC or the DS pipeline. This might
8467 lead to slightly overenthusiastic veneer insertion. */
8468 if (vpipe == VFP11_FMAC || vpipe == VFP11_DS)
8469 {
8470 state = use_vector ? 1 : 2;
8471 first_fmac = i;
8472 veneer_of_insn = insn;
8473 }
8474 break;
8475
8476 case 1:
8477 {
8478 int other_regs[3], other_numregs;
8479 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
8480 other_regs,
8481 &other_numregs);
8482 if (vpipe != VFP11_BAD
8483 && bfd_arm_vfp11_antidependency (writemask, regs,
8484 numregs))
8485 state = 3;
8486 else
8487 state = 2;
8488 }
8489 break;
8490
8491 case 2:
8492 {
8493 int other_regs[3], other_numregs;
8494 vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
8495 other_regs,
8496 &other_numregs);
8497 if (vpipe != VFP11_BAD
8498 && bfd_arm_vfp11_antidependency (writemask, regs,
8499 numregs))
8500 state = 3;
8501 else
8502 {
8503 state = 0;
8504 next_i = first_fmac + 4;
8505 }
8506 }
8507 break;
8508
8509 case 3:
8510 abort (); /* Should be unreachable. */
8511 }
8512
8513 if (state == 3)
8514 {
8515 elf32_vfp11_erratum_list *newerr =(elf32_vfp11_erratum_list *)
8516 bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
8517
8518 elf32_arm_section_data (sec)->erratumcount += 1;
8519
8520 newerr->u.b.vfp_insn = veneer_of_insn;
8521
8522 switch (span_type)
8523 {
8524 case 'a':
8525 newerr->type = VFP11_ERRATUM_BRANCH_TO_ARM_VENEER;
8526 break;
8527
8528 default:
8529 abort ();
8530 }
8531
8532 record_vfp11_erratum_veneer (link_info, newerr, abfd, sec,
8533 first_fmac);
8534
8535 newerr->vma = -1;
8536
8537 newerr->next = sec_data->erratumlist;
8538 sec_data->erratumlist = newerr;
8539
8540 state = 0;
8541 }
8542
8543 i = next_i;
8544 }
8545 }
8546
8547 if (elf_section_data (sec)->this_hdr.contents != contents)
8548 free (contents);
8549 contents = NULL;
8550 }
8551
8552 return TRUE;
8553
8554 error_return:
8555 if (elf_section_data (sec)->this_hdr.contents != contents)
8556 free (contents);
8557
8558 return FALSE;
8559 }
8560
8561 /* Find virtual-memory addresses for VFP11 erratum veneers and return locations
8562 after sections have been laid out, using specially-named symbols. */
8563
8564 void
8565 bfd_elf32_arm_vfp11_fix_veneer_locations (bfd *abfd,
8566 struct bfd_link_info *link_info)
8567 {
8568 asection *sec;
8569 struct elf32_arm_link_hash_table *globals;
8570 char *tmp_name;
8571
8572 if (bfd_link_relocatable (link_info))
8573 return;
8574
8575 /* Skip if this bfd does not correspond to an ELF image. */
8576 if (! is_arm_elf (abfd))
8577 return;
8578
8579 globals = elf32_arm_hash_table (link_info);
8580 if (globals == NULL)
8581 return;
8582
8583 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
8584 (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
8585 BFD_ASSERT (tmp_name);
8586
8587 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8588 {
8589 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8590 elf32_vfp11_erratum_list *errnode = sec_data->erratumlist;
8591
8592 for (; errnode != NULL; errnode = errnode->next)
8593 {
8594 struct elf_link_hash_entry *myh;
8595 bfd_vma vma;
8596
8597 switch (errnode->type)
8598 {
8599 case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
8600 case VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER:
8601 /* Find veneer symbol. */
8602 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
8603 errnode->u.b.veneer->u.v.id);
8604
8605 myh = elf_link_hash_lookup
8606 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
8607
8608 if (myh == NULL)
8609 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8610 abfd, "VFP11", tmp_name);
8611
8612 vma = myh->root.u.def.section->output_section->vma
8613 + myh->root.u.def.section->output_offset
8614 + myh->root.u.def.value;
8615
8616 errnode->u.b.veneer->vma = vma;
8617 break;
8618
8619 case VFP11_ERRATUM_ARM_VENEER:
8620 case VFP11_ERRATUM_THUMB_VENEER:
8621 /* Find return location. */
8622 sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
8623 errnode->u.v.id);
8624
8625 myh = elf_link_hash_lookup
8626 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
8627
8628 if (myh == NULL)
8629 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8630 abfd, "VFP11", tmp_name);
8631
8632 vma = myh->root.u.def.section->output_section->vma
8633 + myh->root.u.def.section->output_offset
8634 + myh->root.u.def.value;
8635
8636 errnode->u.v.branch->vma = vma;
8637 break;
8638
8639 default:
8640 abort ();
8641 }
8642 }
8643 }
8644
8645 free (tmp_name);
8646 }
8647
8648 /* Find virtual-memory addresses for STM32L4XX erratum veneers and
8649 return locations after sections have been laid out, using
8650 specially-named symbols. */
8651
8652 void
8653 bfd_elf32_arm_stm32l4xx_fix_veneer_locations (bfd *abfd,
8654 struct bfd_link_info *link_info)
8655 {
8656 asection *sec;
8657 struct elf32_arm_link_hash_table *globals;
8658 char *tmp_name;
8659
8660 if (bfd_link_relocatable (link_info))
8661 return;
8662
8663 /* Skip if this bfd does not correspond to an ELF image. */
8664 if (! is_arm_elf (abfd))
8665 return;
8666
8667 globals = elf32_arm_hash_table (link_info);
8668 if (globals == NULL)
8669 return;
8670
8671 tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
8672 (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
8673 BFD_ASSERT (tmp_name);
8674
8675 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8676 {
8677 struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8678 elf32_stm32l4xx_erratum_list *errnode = sec_data->stm32l4xx_erratumlist;
8679
8680 for (; errnode != NULL; errnode = errnode->next)
8681 {
8682 struct elf_link_hash_entry *myh;
8683 bfd_vma vma;
8684
8685 switch (errnode->type)
8686 {
8687 case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
8688 /* Find veneer symbol. */
8689 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
8690 errnode->u.b.veneer->u.v.id);
8691
8692 myh = elf_link_hash_lookup
8693 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
8694
8695 if (myh == NULL)
8696 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8697 abfd, "STM32L4XX", tmp_name);
8698
8699 vma = myh->root.u.def.section->output_section->vma
8700 + myh->root.u.def.section->output_offset
8701 + myh->root.u.def.value;
8702
8703 errnode->u.b.veneer->vma = vma;
8704 break;
8705
8706 case STM32L4XX_ERRATUM_VENEER:
8707 /* Find return location. */
8708 sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
8709 errnode->u.v.id);
8710
8711 myh = elf_link_hash_lookup
8712 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
8713
8714 if (myh == NULL)
8715 _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8716 abfd, "STM32L4XX", tmp_name);
8717
8718 vma = myh->root.u.def.section->output_section->vma
8719 + myh->root.u.def.section->output_offset
8720 + myh->root.u.def.value;
8721
8722 errnode->u.v.branch->vma = vma;
8723 break;
8724
8725 default:
8726 abort ();
8727 }
8728 }
8729 }
8730
8731 free (tmp_name);
8732 }
8733
8734 static inline bfd_boolean
8735 is_thumb2_ldmia (const insn32 insn)
8736 {
8737 /* Encoding T2: LDM<c>.W <Rn>{!},<registers>
8738 1110 - 1000 - 10W1 - rrrr - PM (0) l - llll - llll - llll. */
8739 return (insn & 0xffd02000) == 0xe8900000;
8740 }
8741
8742 static inline bfd_boolean
8743 is_thumb2_ldmdb (const insn32 insn)
8744 {
8745 /* Encoding T1: LDMDB<c> <Rn>{!},<registers>
8746 1110 - 1001 - 00W1 - rrrr - PM (0) l - llll - llll - llll. */
8747 return (insn & 0xffd02000) == 0xe9100000;
8748 }
8749
8750 static inline bfd_boolean
8751 is_thumb2_vldm (const insn32 insn)
8752 {
8753 /* A6.5 Extension register load or store instruction
8754 A7.7.229
8755 We look for SP 32-bit and DP 64-bit registers.
8756 Encoding T1 VLDM{mode}<c> <Rn>{!}, <list>
8757 <list> is consecutive 64-bit registers
8758 1110 - 110P - UDW1 - rrrr - vvvv - 1011 - iiii - iiii
8759 Encoding T2 VLDM{mode}<c> <Rn>{!}, <list>
8760 <list> is consecutive 32-bit registers
8761 1110 - 110P - UDW1 - rrrr - vvvv - 1010 - iiii - iiii
8762 if P==0 && U==1 && W==1 && Rn=1101 VPOP
8763 if PUW=010 || PUW=011 || PUW=101 VLDM. */
8764 return
8765 (((insn & 0xfe100f00) == 0xec100b00) ||
8766 ((insn & 0xfe100f00) == 0xec100a00))
8767 && /* (IA without !). */
8768 (((((insn << 7) >> 28) & 0xd) == 0x4)
8769 /* (IA with !), includes VPOP (when reg number is SP). */
8770 || ((((insn << 7) >> 28) & 0xd) == 0x5)
8771 /* (DB with !). */
8772 || ((((insn << 7) >> 28) & 0xd) == 0x9));
8773 }
8774
8775 /* STM STM32L4XX erratum : This function assumes that it receives an LDM or
8776 VLDM opcode and:
8777 - computes the number and the mode of memory accesses
8778 - decides if the replacement should be done:
8779 . replaces only if > 8-word accesses
8780 . or (testing purposes only) replaces all accesses. */
8781
8782 static bfd_boolean
8783 stm32l4xx_need_create_replacing_stub (const insn32 insn,
8784 bfd_arm_stm32l4xx_fix stm32l4xx_fix)
8785 {
8786 int nb_words = 0;
8787
8788 /* The field encoding the register list is the same for both LDMIA
8789 and LDMDB encodings. */
8790 if (is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn))
8791 nb_words = elf32_arm_popcount (insn & 0x0000ffff);
8792 else if (is_thumb2_vldm (insn))
8793 nb_words = (insn & 0xff);
8794
8795 /* DEFAULT mode accounts for the real bug condition situation,
8796 ALL mode inserts stubs for each LDM/VLDM instruction (testing). */
8797 return
8798 (stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_DEFAULT) ? nb_words > 8 :
8799 (stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_ALL) ? TRUE : FALSE;
8800 }
8801
8802 /* Look for potentially-troublesome code sequences which might trigger
8803 the STM STM32L4XX erratum. */
8804
8805 bfd_boolean
8806 bfd_elf32_arm_stm32l4xx_erratum_scan (bfd *abfd,
8807 struct bfd_link_info *link_info)
8808 {
8809 asection *sec;
8810 bfd_byte *contents = NULL;
8811 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8812
8813 if (globals == NULL)
8814 return FALSE;
8815
8816 /* If we are only performing a partial link do not bother
8817 to construct any glue. */
8818 if (bfd_link_relocatable (link_info))
8819 return TRUE;
8820
8821 /* Skip if this bfd does not correspond to an ELF image. */
8822 if (! is_arm_elf (abfd))
8823 return TRUE;
8824
8825 if (globals->stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_NONE)
8826 return TRUE;
8827
8828 /* Skip this BFD if it corresponds to an executable or dynamic object. */
8829 if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
8830 return TRUE;
8831
8832 for (sec = abfd->sections; sec != NULL; sec = sec->next)
8833 {
8834 unsigned int i, span;
8835 struct _arm_elf_section_data *sec_data;
8836
8837 /* If we don't have executable progbits, we're not interested in this
8838 section. Also skip if section is to be excluded. */
8839 if (elf_section_type (sec) != SHT_PROGBITS
8840 || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8841 || (sec->flags & SEC_EXCLUDE) != 0
8842 || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8843 || sec->output_section == bfd_abs_section_ptr
8844 || strcmp (sec->name, STM32L4XX_ERRATUM_VENEER_SECTION_NAME) == 0)
8845 continue;
8846
8847 sec_data = elf32_arm_section_data (sec);
8848
8849 if (sec_data->mapcount == 0)
8850 continue;
8851
8852 if (elf_section_data (sec)->this_hdr.contents != NULL)
8853 contents = elf_section_data (sec)->this_hdr.contents;
8854 else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8855 goto error_return;
8856
8857 qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8858 elf32_arm_compare_mapping);
8859
8860 for (span = 0; span < sec_data->mapcount; span++)
8861 {
8862 unsigned int span_start = sec_data->map[span].vma;
8863 unsigned int span_end = (span == sec_data->mapcount - 1)
8864 ? sec->size : sec_data->map[span + 1].vma;
8865 char span_type = sec_data->map[span].type;
8866 int itblock_current_pos = 0;
8867
8868 /* Only Thumb2 mode need be supported with this CM4 specific
8869 code, we should not encounter any arm mode eg span_type
8870 != 'a'. */
8871 if (span_type != 't')
8872 continue;
8873
8874 for (i = span_start; i < span_end;)
8875 {
8876 unsigned int insn = bfd_get_16 (abfd, &contents[i]);
8877 bfd_boolean insn_32bit = FALSE;
8878 bfd_boolean is_ldm = FALSE;
8879 bfd_boolean is_vldm = FALSE;
8880 bfd_boolean is_not_last_in_it_block = FALSE;
8881
8882 /* The first 16-bits of all 32-bit thumb2 instructions start
8883 with opcode[15..13]=0b111 and the encoded op1 can be anything
8884 except opcode[12..11]!=0b00.
8885 See 32-bit Thumb instruction encoding. */
8886 if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
8887 insn_32bit = TRUE;
8888
8889 /* Compute the predicate that tells if the instruction
8890 is concerned by the IT block
8891 - Creates an error if there is a ldm that is not
8892 last in the IT block thus cannot be replaced
8893 - Otherwise we can create a branch at the end of the
8894 IT block, it will be controlled naturally by IT
8895 with the proper pseudo-predicate
8896 - So the only interesting predicate is the one that
8897 tells that we are not on the last item of an IT
8898 block. */
8899 if (itblock_current_pos != 0)
8900 is_not_last_in_it_block = !!--itblock_current_pos;
8901
8902 if (insn_32bit)
8903 {
8904 /* Load the rest of the insn (in manual-friendly order). */
8905 insn = (insn << 16) | bfd_get_16 (abfd, &contents[i + 2]);
8906 is_ldm = is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn);
8907 is_vldm = is_thumb2_vldm (insn);
8908
8909 /* Veneers are created for (v)ldm depending on
8910 option flags and memory accesses conditions; but
8911 if the instruction is not the last instruction of
8912 an IT block, we cannot create a jump there, so we
8913 bail out. */
8914 if ((is_ldm || is_vldm)
8915 && stm32l4xx_need_create_replacing_stub
8916 (insn, globals->stm32l4xx_fix))
8917 {
8918 if (is_not_last_in_it_block)
8919 {
8920 _bfd_error_handler
8921 /* xgettext:c-format */
8922 (_("%pB(%pA+%#x): error: multiple load detected"
8923 " in non-last IT block instruction:"
8924 " STM32L4XX veneer cannot be generated; "
8925 "use gcc option -mrestrict-it to generate"
8926 " only one instruction per IT block"),
8927 abfd, sec, i);
8928 }
8929 else
8930 {
8931 elf32_stm32l4xx_erratum_list *newerr =
8932 (elf32_stm32l4xx_erratum_list *)
8933 bfd_zmalloc
8934 (sizeof (elf32_stm32l4xx_erratum_list));
8935
8936 elf32_arm_section_data (sec)
8937 ->stm32l4xx_erratumcount += 1;
8938 newerr->u.b.insn = insn;
8939 /* We create only thumb branches. */
8940 newerr->type =
8941 STM32L4XX_ERRATUM_BRANCH_TO_VENEER;
8942 record_stm32l4xx_erratum_veneer
8943 (link_info, newerr, abfd, sec,
8944 i,
8945 is_ldm ?
8946 STM32L4XX_ERRATUM_LDM_VENEER_SIZE:
8947 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
8948 newerr->vma = -1;
8949 newerr->next = sec_data->stm32l4xx_erratumlist;
8950 sec_data->stm32l4xx_erratumlist = newerr;
8951 }
8952 }
8953 }
8954 else
8955 {
8956 /* A7.7.37 IT p208
8957 IT blocks are only encoded in T1
8958 Encoding T1: IT{x{y{z}}} <firstcond>
8959 1 0 1 1 - 1 1 1 1 - firstcond - mask
8960 if mask = '0000' then see 'related encodings'
8961 We don't deal with UNPREDICTABLE, just ignore these.
8962 There can be no nested IT blocks so an IT block
8963 is naturally a new one for which it is worth
8964 computing its size. */
8965 bfd_boolean is_newitblock = ((insn & 0xff00) == 0xbf00)
8966 && ((insn & 0x000f) != 0x0000);
8967 /* If we have a new IT block we compute its size. */
8968 if (is_newitblock)
8969 {
8970 /* Compute the number of instructions controlled
8971 by the IT block, it will be used to decide
8972 whether we are inside an IT block or not. */
8973 unsigned int mask = insn & 0x000f;
8974 itblock_current_pos = 4 - ctz (mask);
8975 }
8976 }
8977
8978 i += insn_32bit ? 4 : 2;
8979 }
8980 }
8981
8982 if (elf_section_data (sec)->this_hdr.contents != contents)
8983 free (contents);
8984 contents = NULL;
8985 }
8986
8987 return TRUE;
8988
8989 error_return:
8990 if (elf_section_data (sec)->this_hdr.contents != contents)
8991 free (contents);
8992
8993 return FALSE;
8994 }
8995
8996 /* Set target relocation values needed during linking. */
8997
8998 void
8999 bfd_elf32_arm_set_target_params (struct bfd *output_bfd,
9000 struct bfd_link_info *link_info,
9001 struct elf32_arm_params *params)
9002 {
9003 struct elf32_arm_link_hash_table *globals;
9004
9005 globals = elf32_arm_hash_table (link_info);
9006 if (globals == NULL)
9007 return;
9008
9009 globals->target1_is_rel = params->target1_is_rel;
9010 if (globals->fdpic_p)
9011 globals->target2_reloc = R_ARM_GOT32;
9012 else if (strcmp (params->target2_type, "rel") == 0)
9013 globals->target2_reloc = R_ARM_REL32;
9014 else if (strcmp (params->target2_type, "abs") == 0)
9015 globals->target2_reloc = R_ARM_ABS32;
9016 else if (strcmp (params->target2_type, "got-rel") == 0)
9017 globals->target2_reloc = R_ARM_GOT_PREL;
9018 else
9019 {
9020 _bfd_error_handler (_("invalid TARGET2 relocation type '%s'"),
9021 params->target2_type);
9022 }
9023 globals->fix_v4bx = params->fix_v4bx;
9024 globals->use_blx |= params->use_blx;
9025 globals->vfp11_fix = params->vfp11_denorm_fix;
9026 globals->stm32l4xx_fix = params->stm32l4xx_fix;
9027 if (globals->fdpic_p)
9028 globals->pic_veneer = 1;
9029 else
9030 globals->pic_veneer = params->pic_veneer;
9031 globals->fix_cortex_a8 = params->fix_cortex_a8;
9032 globals->fix_arm1176 = params->fix_arm1176;
9033 globals->cmse_implib = params->cmse_implib;
9034 globals->in_implib_bfd = params->in_implib_bfd;
9035
9036 BFD_ASSERT (is_arm_elf (output_bfd));
9037 elf_arm_tdata (output_bfd)->no_enum_size_warning
9038 = params->no_enum_size_warning;
9039 elf_arm_tdata (output_bfd)->no_wchar_size_warning
9040 = params->no_wchar_size_warning;
9041 }
9042
9043 /* Replace the target offset of a Thumb bl or b.w instruction. */
9044
9045 static void
9046 insert_thumb_branch (bfd *abfd, long int offset, bfd_byte *insn)
9047 {
9048 bfd_vma upper;
9049 bfd_vma lower;
9050 int reloc_sign;
9051
9052 BFD_ASSERT ((offset & 1) == 0);
9053
9054 upper = bfd_get_16 (abfd, insn);
9055 lower = bfd_get_16 (abfd, insn + 2);
9056 reloc_sign = (offset < 0) ? 1 : 0;
9057 upper = (upper & ~(bfd_vma) 0x7ff)
9058 | ((offset >> 12) & 0x3ff)
9059 | (reloc_sign << 10);
9060 lower = (lower & ~(bfd_vma) 0x2fff)
9061 | (((!((offset >> 23) & 1)) ^ reloc_sign) << 13)
9062 | (((!((offset >> 22) & 1)) ^ reloc_sign) << 11)
9063 | ((offset >> 1) & 0x7ff);
9064 bfd_put_16 (abfd, upper, insn);
9065 bfd_put_16 (abfd, lower, insn + 2);
9066 }
9067
9068 /* Thumb code calling an ARM function. */
9069
9070 static int
9071 elf32_thumb_to_arm_stub (struct bfd_link_info * info,
9072 const char * name,
9073 bfd * input_bfd,
9074 bfd * output_bfd,
9075 asection * input_section,
9076 bfd_byte * hit_data,
9077 asection * sym_sec,
9078 bfd_vma offset,
9079 bfd_signed_vma addend,
9080 bfd_vma val,
9081 char **error_message)
9082 {
9083 asection * s = 0;
9084 bfd_vma my_offset;
9085 long int ret_offset;
9086 struct elf_link_hash_entry * myh;
9087 struct elf32_arm_link_hash_table * globals;
9088
9089 myh = find_thumb_glue (info, name, error_message);
9090 if (myh == NULL)
9091 return FALSE;
9092
9093 globals = elf32_arm_hash_table (info);
9094 BFD_ASSERT (globals != NULL);
9095 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9096
9097 my_offset = myh->root.u.def.value;
9098
9099 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9100 THUMB2ARM_GLUE_SECTION_NAME);
9101
9102 BFD_ASSERT (s != NULL);
9103 BFD_ASSERT (s->contents != NULL);
9104 BFD_ASSERT (s->output_section != NULL);
9105
9106 if ((my_offset & 0x01) == 0x01)
9107 {
9108 if (sym_sec != NULL
9109 && sym_sec->owner != NULL
9110 && !INTERWORK_FLAG (sym_sec->owner))
9111 {
9112 _bfd_error_handler
9113 (_("%pB(%s): warning: interworking not enabled;"
9114 " first occurrence: %pB: %s call to %s"),
9115 sym_sec->owner, name, input_bfd, "Thumb", "ARM");
9116
9117 return FALSE;
9118 }
9119
9120 --my_offset;
9121 myh->root.u.def.value = my_offset;
9122
9123 put_thumb_insn (globals, output_bfd, (bfd_vma) t2a1_bx_pc_insn,
9124 s->contents + my_offset);
9125
9126 put_thumb_insn (globals, output_bfd, (bfd_vma) t2a2_noop_insn,
9127 s->contents + my_offset + 2);
9128
9129 ret_offset =
9130 /* Address of destination of the stub. */
9131 ((bfd_signed_vma) val)
9132 - ((bfd_signed_vma)
9133 /* Offset from the start of the current section
9134 to the start of the stubs. */
9135 (s->output_offset
9136 /* Offset of the start of this stub from the start of the stubs. */
9137 + my_offset
9138 /* Address of the start of the current section. */
9139 + s->output_section->vma)
9140 /* The branch instruction is 4 bytes into the stub. */
9141 + 4
9142 /* ARM branches work from the pc of the instruction + 8. */
9143 + 8);
9144
9145 put_arm_insn (globals, output_bfd,
9146 (bfd_vma) t2a3_b_insn | ((ret_offset >> 2) & 0x00FFFFFF),
9147 s->contents + my_offset + 4);
9148 }
9149
9150 BFD_ASSERT (my_offset <= globals->thumb_glue_size);
9151
9152 /* Now go back and fix up the original BL insn to point to here. */
9153 ret_offset =
9154 /* Address of where the stub is located. */
9155 (s->output_section->vma + s->output_offset + my_offset)
9156 /* Address of where the BL is located. */
9157 - (input_section->output_section->vma + input_section->output_offset
9158 + offset)
9159 /* Addend in the relocation. */
9160 - addend
9161 /* Biassing for PC-relative addressing. */
9162 - 8;
9163
9164 insert_thumb_branch (input_bfd, ret_offset, hit_data - input_section->vma);
9165
9166 return TRUE;
9167 }
9168
9169 /* Populate an Arm to Thumb stub. Returns the stub symbol. */
9170
9171 static struct elf_link_hash_entry *
9172 elf32_arm_create_thumb_stub (struct bfd_link_info * info,
9173 const char * name,
9174 bfd * input_bfd,
9175 bfd * output_bfd,
9176 asection * sym_sec,
9177 bfd_vma val,
9178 asection * s,
9179 char ** error_message)
9180 {
9181 bfd_vma my_offset;
9182 long int ret_offset;
9183 struct elf_link_hash_entry * myh;
9184 struct elf32_arm_link_hash_table * globals;
9185
9186 myh = find_arm_glue (info, name, error_message);
9187 if (myh == NULL)
9188 return NULL;
9189
9190 globals = elf32_arm_hash_table (info);
9191 BFD_ASSERT (globals != NULL);
9192 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9193
9194 my_offset = myh->root.u.def.value;
9195
9196 if ((my_offset & 0x01) == 0x01)
9197 {
9198 if (sym_sec != NULL
9199 && sym_sec->owner != NULL
9200 && !INTERWORK_FLAG (sym_sec->owner))
9201 {
9202 _bfd_error_handler
9203 (_("%pB(%s): warning: interworking not enabled;"
9204 " first occurrence: %pB: %s call to %s"),
9205 sym_sec->owner, name, input_bfd, "ARM", "Thumb");
9206 }
9207
9208 --my_offset;
9209 myh->root.u.def.value = my_offset;
9210
9211 if (bfd_link_pic (info)
9212 || globals->root.is_relocatable_executable
9213 || globals->pic_veneer)
9214 {
9215 /* For relocatable objects we can't use absolute addresses,
9216 so construct the address from a relative offset. */
9217 /* TODO: If the offset is small it's probably worth
9218 constructing the address with adds. */
9219 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1p_ldr_insn,
9220 s->contents + my_offset);
9221 put_arm_insn (globals, output_bfd, (bfd_vma) a2t2p_add_pc_insn,
9222 s->contents + my_offset + 4);
9223 put_arm_insn (globals, output_bfd, (bfd_vma) a2t3p_bx_r12_insn,
9224 s->contents + my_offset + 8);
9225 /* Adjust the offset by 4 for the position of the add,
9226 and 8 for the pipeline offset. */
9227 ret_offset = (val - (s->output_offset
9228 + s->output_section->vma
9229 + my_offset + 12))
9230 | 1;
9231 bfd_put_32 (output_bfd, ret_offset,
9232 s->contents + my_offset + 12);
9233 }
9234 else if (globals->use_blx)
9235 {
9236 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1v5_ldr_insn,
9237 s->contents + my_offset);
9238
9239 /* It's a thumb address. Add the low order bit. */
9240 bfd_put_32 (output_bfd, val | a2t2v5_func_addr_insn,
9241 s->contents + my_offset + 4);
9242 }
9243 else
9244 {
9245 put_arm_insn (globals, output_bfd, (bfd_vma) a2t1_ldr_insn,
9246 s->contents + my_offset);
9247
9248 put_arm_insn (globals, output_bfd, (bfd_vma) a2t2_bx_r12_insn,
9249 s->contents + my_offset + 4);
9250
9251 /* It's a thumb address. Add the low order bit. */
9252 bfd_put_32 (output_bfd, val | a2t3_func_addr_insn,
9253 s->contents + my_offset + 8);
9254
9255 my_offset += 12;
9256 }
9257 }
9258
9259 BFD_ASSERT (my_offset <= globals->arm_glue_size);
9260
9261 return myh;
9262 }
9263
9264 /* Arm code calling a Thumb function. */
9265
9266 static int
9267 elf32_arm_to_thumb_stub (struct bfd_link_info * info,
9268 const char * name,
9269 bfd * input_bfd,
9270 bfd * output_bfd,
9271 asection * input_section,
9272 bfd_byte * hit_data,
9273 asection * sym_sec,
9274 bfd_vma offset,
9275 bfd_signed_vma addend,
9276 bfd_vma val,
9277 char **error_message)
9278 {
9279 unsigned long int tmp;
9280 bfd_vma my_offset;
9281 asection * s;
9282 long int ret_offset;
9283 struct elf_link_hash_entry * myh;
9284 struct elf32_arm_link_hash_table * globals;
9285
9286 globals = elf32_arm_hash_table (info);
9287 BFD_ASSERT (globals != NULL);
9288 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9289
9290 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9291 ARM2THUMB_GLUE_SECTION_NAME);
9292 BFD_ASSERT (s != NULL);
9293 BFD_ASSERT (s->contents != NULL);
9294 BFD_ASSERT (s->output_section != NULL);
9295
9296 myh = elf32_arm_create_thumb_stub (info, name, input_bfd, output_bfd,
9297 sym_sec, val, s, error_message);
9298 if (!myh)
9299 return FALSE;
9300
9301 my_offset = myh->root.u.def.value;
9302 tmp = bfd_get_32 (input_bfd, hit_data);
9303 tmp = tmp & 0xFF000000;
9304
9305 /* Somehow these are both 4 too far, so subtract 8. */
9306 ret_offset = (s->output_offset
9307 + my_offset
9308 + s->output_section->vma
9309 - (input_section->output_offset
9310 + input_section->output_section->vma
9311 + offset + addend)
9312 - 8);
9313
9314 tmp = tmp | ((ret_offset >> 2) & 0x00FFFFFF);
9315
9316 bfd_put_32 (output_bfd, (bfd_vma) tmp, hit_data - input_section->vma);
9317
9318 return TRUE;
9319 }
9320
9321 /* Populate Arm stub for an exported Thumb function. */
9322
9323 static bfd_boolean
9324 elf32_arm_to_thumb_export_stub (struct elf_link_hash_entry *h, void * inf)
9325 {
9326 struct bfd_link_info * info = (struct bfd_link_info *) inf;
9327 asection * s;
9328 struct elf_link_hash_entry * myh;
9329 struct elf32_arm_link_hash_entry *eh;
9330 struct elf32_arm_link_hash_table * globals;
9331 asection *sec;
9332 bfd_vma val;
9333 char *error_message;
9334
9335 eh = elf32_arm_hash_entry (h);
9336 /* Allocate stubs for exported Thumb functions on v4t. */
9337 if (eh->export_glue == NULL)
9338 return TRUE;
9339
9340 globals = elf32_arm_hash_table (info);
9341 BFD_ASSERT (globals != NULL);
9342 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9343
9344 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9345 ARM2THUMB_GLUE_SECTION_NAME);
9346 BFD_ASSERT (s != NULL);
9347 BFD_ASSERT (s->contents != NULL);
9348 BFD_ASSERT (s->output_section != NULL);
9349
9350 sec = eh->export_glue->root.u.def.section;
9351
9352 BFD_ASSERT (sec->output_section != NULL);
9353
9354 val = eh->export_glue->root.u.def.value + sec->output_offset
9355 + sec->output_section->vma;
9356
9357 myh = elf32_arm_create_thumb_stub (info, h->root.root.string,
9358 h->root.u.def.section->owner,
9359 globals->obfd, sec, val, s,
9360 &error_message);
9361 BFD_ASSERT (myh);
9362 return TRUE;
9363 }
9364
9365 /* Populate ARMv4 BX veneers. Returns the absolute adress of the veneer. */
9366
9367 static bfd_vma
9368 elf32_arm_bx_glue (struct bfd_link_info * info, int reg)
9369 {
9370 bfd_byte *p;
9371 bfd_vma glue_addr;
9372 asection *s;
9373 struct elf32_arm_link_hash_table *globals;
9374
9375 globals = elf32_arm_hash_table (info);
9376 BFD_ASSERT (globals != NULL);
9377 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9378
9379 s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9380 ARM_BX_GLUE_SECTION_NAME);
9381 BFD_ASSERT (s != NULL);
9382 BFD_ASSERT (s->contents != NULL);
9383 BFD_ASSERT (s->output_section != NULL);
9384
9385 BFD_ASSERT (globals->bx_glue_offset[reg] & 2);
9386
9387 glue_addr = globals->bx_glue_offset[reg] & ~(bfd_vma)3;
9388
9389 if ((globals->bx_glue_offset[reg] & 1) == 0)
9390 {
9391 p = s->contents + glue_addr;
9392 bfd_put_32 (globals->obfd, armbx1_tst_insn + (reg << 16), p);
9393 bfd_put_32 (globals->obfd, armbx2_moveq_insn + reg, p + 4);
9394 bfd_put_32 (globals->obfd, armbx3_bx_insn + reg, p + 8);
9395 globals->bx_glue_offset[reg] |= 1;
9396 }
9397
9398 return glue_addr + s->output_section->vma + s->output_offset;
9399 }
9400
9401 /* Generate Arm stubs for exported Thumb symbols. */
9402 static void
9403 elf32_arm_begin_write_processing (bfd *abfd ATTRIBUTE_UNUSED,
9404 struct bfd_link_info *link_info)
9405 {
9406 struct elf32_arm_link_hash_table * globals;
9407
9408 if (link_info == NULL)
9409 /* Ignore this if we are not called by the ELF backend linker. */
9410 return;
9411
9412 globals = elf32_arm_hash_table (link_info);
9413 if (globals == NULL)
9414 return;
9415
9416 /* If blx is available then exported Thumb symbols are OK and there is
9417 nothing to do. */
9418 if (globals->use_blx)
9419 return;
9420
9421 elf_link_hash_traverse (&globals->root, elf32_arm_to_thumb_export_stub,
9422 link_info);
9423 }
9424
9425 /* Reserve space for COUNT dynamic relocations in relocation selection
9426 SRELOC. */
9427
9428 static void
9429 elf32_arm_allocate_dynrelocs (struct bfd_link_info *info, asection *sreloc,
9430 bfd_size_type count)
9431 {
9432 struct elf32_arm_link_hash_table *htab;
9433
9434 htab = elf32_arm_hash_table (info);
9435 BFD_ASSERT (htab->root.dynamic_sections_created);
9436 if (sreloc == NULL)
9437 abort ();
9438 sreloc->size += RELOC_SIZE (htab) * count;
9439 }
9440
9441 /* Reserve space for COUNT R_ARM_IRELATIVE relocations. If the link is
9442 dynamic, the relocations should go in SRELOC, otherwise they should
9443 go in the special .rel.iplt section. */
9444
9445 static void
9446 elf32_arm_allocate_irelocs (struct bfd_link_info *info, asection *sreloc,
9447 bfd_size_type count)
9448 {
9449 struct elf32_arm_link_hash_table *htab;
9450
9451 htab = elf32_arm_hash_table (info);
9452 if (!htab->root.dynamic_sections_created)
9453 htab->root.irelplt->size += RELOC_SIZE (htab) * count;
9454 else
9455 {
9456 BFD_ASSERT (sreloc != NULL);
9457 sreloc->size += RELOC_SIZE (htab) * count;
9458 }
9459 }
9460
9461 /* Add relocation REL to the end of relocation section SRELOC. */
9462
9463 static void
9464 elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
9465 asection *sreloc, Elf_Internal_Rela *rel)
9466 {
9467 bfd_byte *loc;
9468 struct elf32_arm_link_hash_table *htab;
9469
9470 htab = elf32_arm_hash_table (info);
9471 if (!htab->root.dynamic_sections_created
9472 && ELF32_R_TYPE (rel->r_info) == R_ARM_IRELATIVE)
9473 sreloc = htab->root.irelplt;
9474 if (sreloc == NULL)
9475 abort ();
9476 loc = sreloc->contents;
9477 loc += sreloc->reloc_count++ * RELOC_SIZE (htab);
9478 if (sreloc->reloc_count * RELOC_SIZE (htab) > sreloc->size)
9479 abort ();
9480 SWAP_RELOC_OUT (htab) (output_bfd, rel, loc);
9481 }
9482
9483 /* Allocate room for a PLT entry described by ROOT_PLT and ARM_PLT.
9484 IS_IPLT_ENTRY says whether the entry belongs to .iplt rather than
9485 to .plt. */
9486
9487 static void
9488 elf32_arm_allocate_plt_entry (struct bfd_link_info *info,
9489 bfd_boolean is_iplt_entry,
9490 union gotplt_union *root_plt,
9491 struct arm_plt_info *arm_plt)
9492 {
9493 struct elf32_arm_link_hash_table *htab;
9494 asection *splt;
9495 asection *sgotplt;
9496
9497 htab = elf32_arm_hash_table (info);
9498
9499 if (is_iplt_entry)
9500 {
9501 splt = htab->root.iplt;
9502 sgotplt = htab->root.igotplt;
9503
9504 /* NaCl uses a special first entry in .iplt too. */
9505 if (htab->root.target_os == is_nacl && splt->size == 0)
9506 splt->size += htab->plt_header_size;
9507
9508 /* Allocate room for an R_ARM_IRELATIVE relocation in .rel.iplt. */
9509 elf32_arm_allocate_irelocs (info, htab->root.irelplt, 1);
9510 }
9511 else
9512 {
9513 splt = htab->root.splt;
9514 sgotplt = htab->root.sgotplt;
9515
9516 if (htab->fdpic_p)
9517 {
9518 /* Allocate room for R_ARM_FUNCDESC_VALUE. */
9519 /* For lazy binding, relocations will be put into .rel.plt, in
9520 .rel.got otherwise. */
9521 /* FIXME: today we don't support lazy binding so put it in .rel.got */
9522 if (info->flags & DF_BIND_NOW)
9523 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
9524 else
9525 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9526 }
9527 else
9528 {
9529 /* Allocate room for an R_JUMP_SLOT relocation in .rel.plt. */
9530 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9531 }
9532
9533 /* If this is the first .plt entry, make room for the special
9534 first entry. */
9535 if (splt->size == 0)
9536 splt->size += htab->plt_header_size;
9537
9538 htab->next_tls_desc_index++;
9539 }
9540
9541 /* Allocate the PLT entry itself, including any leading Thumb stub. */
9542 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9543 splt->size += PLT_THUMB_STUB_SIZE;
9544 root_plt->offset = splt->size;
9545 splt->size += htab->plt_entry_size;
9546
9547 if (htab->root.target_os != is_symbian)
9548 {
9549 /* We also need to make an entry in the .got.plt section, which
9550 will be placed in the .got section by the linker script. */
9551 if (is_iplt_entry)
9552 arm_plt->got_offset = sgotplt->size;
9553 else
9554 arm_plt->got_offset = sgotplt->size - 8 * htab->num_tls_desc;
9555 if (htab->fdpic_p)
9556 /* Function descriptor takes 64 bits in GOT. */
9557 sgotplt->size += 8;
9558 else
9559 sgotplt->size += 4;
9560 }
9561 }
9562
9563 static bfd_vma
9564 arm_movw_immediate (bfd_vma value)
9565 {
9566 return (value & 0x00000fff) | ((value & 0x0000f000) << 4);
9567 }
9568
9569 static bfd_vma
9570 arm_movt_immediate (bfd_vma value)
9571 {
9572 return ((value & 0x0fff0000) >> 16) | ((value & 0xf0000000) >> 12);
9573 }
9574
9575 /* Fill in a PLT entry and its associated GOT slot. If DYNINDX == -1,
9576 the entry lives in .iplt and resolves to (*SYM_VALUE)().
9577 Otherwise, DYNINDX is the index of the symbol in the dynamic
9578 symbol table and SYM_VALUE is undefined.
9579
9580 ROOT_PLT points to the offset of the PLT entry from the start of its
9581 section (.iplt or .plt). ARM_PLT points to the symbol's ARM-specific
9582 bookkeeping information.
9583
9584 Returns FALSE if there was a problem. */
9585
9586 static bfd_boolean
9587 elf32_arm_populate_plt_entry (bfd *output_bfd, struct bfd_link_info *info,
9588 union gotplt_union *root_plt,
9589 struct arm_plt_info *arm_plt,
9590 int dynindx, bfd_vma sym_value)
9591 {
9592 struct elf32_arm_link_hash_table *htab;
9593 asection *sgot;
9594 asection *splt;
9595 asection *srel;
9596 bfd_byte *loc;
9597 bfd_vma plt_index;
9598 Elf_Internal_Rela rel;
9599 bfd_vma plt_header_size;
9600 bfd_vma got_header_size;
9601
9602 htab = elf32_arm_hash_table (info);
9603
9604 /* Pick the appropriate sections and sizes. */
9605 if (dynindx == -1)
9606 {
9607 splt = htab->root.iplt;
9608 sgot = htab->root.igotplt;
9609 srel = htab->root.irelplt;
9610
9611 /* There are no reserved entries in .igot.plt, and no special
9612 first entry in .iplt. */
9613 got_header_size = 0;
9614 plt_header_size = 0;
9615 }
9616 else
9617 {
9618 splt = htab->root.splt;
9619 sgot = htab->root.sgotplt;
9620 srel = htab->root.srelplt;
9621
9622 got_header_size = get_elf_backend_data (output_bfd)->got_header_size;
9623 plt_header_size = htab->plt_header_size;
9624 }
9625 BFD_ASSERT (splt != NULL && srel != NULL);
9626
9627 /* Fill in the entry in the procedure linkage table. */
9628 if (htab->root.target_os == is_symbian)
9629 {
9630 BFD_ASSERT (dynindx >= 0);
9631 put_arm_insn (htab, output_bfd,
9632 elf32_arm_symbian_plt_entry[0],
9633 splt->contents + root_plt->offset);
9634 bfd_put_32 (output_bfd,
9635 elf32_arm_symbian_plt_entry[1],
9636 splt->contents + root_plt->offset + 4);
9637
9638 /* Fill in the entry in the .rel.plt section. */
9639 rel.r_offset = (splt->output_section->vma
9640 + splt->output_offset
9641 + root_plt->offset + 4);
9642 rel.r_info = ELF32_R_INFO (dynindx, R_ARM_GLOB_DAT);
9643
9644 /* Get the index in the procedure linkage table which
9645 corresponds to this symbol. This is the index of this symbol
9646 in all the symbols for which we are making plt entries. The
9647 first entry in the procedure linkage table is reserved. */
9648 plt_index = ((root_plt->offset - plt_header_size)
9649 / htab->plt_entry_size);
9650 }
9651 else
9652 {
9653 bfd_vma got_offset, got_address, plt_address;
9654 bfd_vma got_displacement, initial_got_entry;
9655 bfd_byte * ptr;
9656
9657 BFD_ASSERT (sgot != NULL);
9658
9659 /* Get the offset into the .(i)got.plt table of the entry that
9660 corresponds to this function. */
9661 got_offset = (arm_plt->got_offset & -2);
9662
9663 /* Get the index in the procedure linkage table which
9664 corresponds to this symbol. This is the index of this symbol
9665 in all the symbols for which we are making plt entries.
9666 After the reserved .got.plt entries, all symbols appear in
9667 the same order as in .plt. */
9668 if (htab->fdpic_p)
9669 /* Function descriptor takes 8 bytes. */
9670 plt_index = (got_offset - got_header_size) / 8;
9671 else
9672 plt_index = (got_offset - got_header_size) / 4;
9673
9674 /* Calculate the address of the GOT entry. */
9675 got_address = (sgot->output_section->vma
9676 + sgot->output_offset
9677 + got_offset);
9678
9679 /* ...and the address of the PLT entry. */
9680 plt_address = (splt->output_section->vma
9681 + splt->output_offset
9682 + root_plt->offset);
9683
9684 ptr = splt->contents + root_plt->offset;
9685 if (htab->root.target_os == is_vxworks && bfd_link_pic (info))
9686 {
9687 unsigned int i;
9688 bfd_vma val;
9689
9690 for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9691 {
9692 val = elf32_arm_vxworks_shared_plt_entry[i];
9693 if (i == 2)
9694 val |= got_address - sgot->output_section->vma;
9695 if (i == 5)
9696 val |= plt_index * RELOC_SIZE (htab);
9697 if (i == 2 || i == 5)
9698 bfd_put_32 (output_bfd, val, ptr);
9699 else
9700 put_arm_insn (htab, output_bfd, val, ptr);
9701 }
9702 }
9703 else if (htab->root.target_os == is_vxworks)
9704 {
9705 unsigned int i;
9706 bfd_vma val;
9707
9708 for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9709 {
9710 val = elf32_arm_vxworks_exec_plt_entry[i];
9711 if (i == 2)
9712 val |= got_address;
9713 if (i == 4)
9714 val |= 0xffffff & -((root_plt->offset + i * 4 + 8) >> 2);
9715 if (i == 5)
9716 val |= plt_index * RELOC_SIZE (htab);
9717 if (i == 2 || i == 5)
9718 bfd_put_32 (output_bfd, val, ptr);
9719 else
9720 put_arm_insn (htab, output_bfd, val, ptr);
9721 }
9722
9723 loc = (htab->srelplt2->contents
9724 + (plt_index * 2 + 1) * RELOC_SIZE (htab));
9725
9726 /* Create the .rela.plt.unloaded R_ARM_ABS32 relocation
9727 referencing the GOT for this PLT entry. */
9728 rel.r_offset = plt_address + 8;
9729 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
9730 rel.r_addend = got_offset;
9731 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9732 loc += RELOC_SIZE (htab);
9733
9734 /* Create the R_ARM_ABS32 relocation referencing the
9735 beginning of the PLT for this GOT entry. */
9736 rel.r_offset = got_address;
9737 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
9738 rel.r_addend = 0;
9739 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9740 }
9741 else if (htab->root.target_os == is_nacl)
9742 {
9743 /* Calculate the displacement between the PLT slot and the
9744 common tail that's part of the special initial PLT slot. */
9745 int32_t tail_displacement
9746 = ((splt->output_section->vma + splt->output_offset
9747 + ARM_NACL_PLT_TAIL_OFFSET)
9748 - (plt_address + htab->plt_entry_size + 4));
9749 BFD_ASSERT ((tail_displacement & 3) == 0);
9750 tail_displacement >>= 2;
9751
9752 BFD_ASSERT ((tail_displacement & 0xff000000) == 0
9753 || (-tail_displacement & 0xff000000) == 0);
9754
9755 /* Calculate the displacement between the PLT slot and the entry
9756 in the GOT. The offset accounts for the value produced by
9757 adding to pc in the penultimate instruction of the PLT stub. */
9758 got_displacement = (got_address
9759 - (plt_address + htab->plt_entry_size));
9760
9761 /* NaCl does not support interworking at all. */
9762 BFD_ASSERT (!elf32_arm_plt_needs_thumb_stub_p (info, arm_plt));
9763
9764 put_arm_insn (htab, output_bfd,
9765 elf32_arm_nacl_plt_entry[0]
9766 | arm_movw_immediate (got_displacement),
9767 ptr + 0);
9768 put_arm_insn (htab, output_bfd,
9769 elf32_arm_nacl_plt_entry[1]
9770 | arm_movt_immediate (got_displacement),
9771 ptr + 4);
9772 put_arm_insn (htab, output_bfd,
9773 elf32_arm_nacl_plt_entry[2],
9774 ptr + 8);
9775 put_arm_insn (htab, output_bfd,
9776 elf32_arm_nacl_plt_entry[3]
9777 | (tail_displacement & 0x00ffffff),
9778 ptr + 12);
9779 }
9780 else if (htab->fdpic_p)
9781 {
9782 const bfd_vma *plt_entry = using_thumb_only(htab)
9783 ? elf32_arm_fdpic_thumb_plt_entry
9784 : elf32_arm_fdpic_plt_entry;
9785
9786 /* Fill-up Thumb stub if needed. */
9787 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9788 {
9789 put_thumb_insn (htab, output_bfd,
9790 elf32_arm_plt_thumb_stub[0], ptr - 4);
9791 put_thumb_insn (htab, output_bfd,
9792 elf32_arm_plt_thumb_stub[1], ptr - 2);
9793 }
9794 /* As we are using 32 bit instructions even for the Thumb
9795 version, we have to use 'put_arm_insn' instead of
9796 'put_thumb_insn'. */
9797 put_arm_insn(htab, output_bfd, plt_entry[0], ptr + 0);
9798 put_arm_insn(htab, output_bfd, plt_entry[1], ptr + 4);
9799 put_arm_insn(htab, output_bfd, plt_entry[2], ptr + 8);
9800 put_arm_insn(htab, output_bfd, plt_entry[3], ptr + 12);
9801 bfd_put_32 (output_bfd, got_offset, ptr + 16);
9802
9803 if (!(info->flags & DF_BIND_NOW))
9804 {
9805 /* funcdesc_value_reloc_offset. */
9806 bfd_put_32 (output_bfd,
9807 htab->root.srelplt->reloc_count * RELOC_SIZE (htab),
9808 ptr + 20);
9809 put_arm_insn(htab, output_bfd, plt_entry[6], ptr + 24);
9810 put_arm_insn(htab, output_bfd, plt_entry[7], ptr + 28);
9811 put_arm_insn(htab, output_bfd, plt_entry[8], ptr + 32);
9812 put_arm_insn(htab, output_bfd, plt_entry[9], ptr + 36);
9813 }
9814 }
9815 else if (using_thumb_only (htab))
9816 {
9817 /* PR ld/16017: Generate thumb only PLT entries. */
9818 if (!using_thumb2 (htab))
9819 {
9820 /* FIXME: We ought to be able to generate thumb-1 PLT
9821 instructions... */
9822 _bfd_error_handler (_("%pB: warning: thumb-1 mode PLT generation not currently supported"),
9823 output_bfd);
9824 return FALSE;
9825 }
9826
9827 /* Calculate the displacement between the PLT slot and the entry in
9828 the GOT. The 12-byte offset accounts for the value produced by
9829 adding to pc in the 3rd instruction of the PLT stub. */
9830 got_displacement = got_address - (plt_address + 12);
9831
9832 /* As we are using 32 bit instructions we have to use 'put_arm_insn'
9833 instead of 'put_thumb_insn'. */
9834 put_arm_insn (htab, output_bfd,
9835 elf32_thumb2_plt_entry[0]
9836 | ((got_displacement & 0x000000ff) << 16)
9837 | ((got_displacement & 0x00000700) << 20)
9838 | ((got_displacement & 0x00000800) >> 1)
9839 | ((got_displacement & 0x0000f000) >> 12),
9840 ptr + 0);
9841 put_arm_insn (htab, output_bfd,
9842 elf32_thumb2_plt_entry[1]
9843 | ((got_displacement & 0x00ff0000) )
9844 | ((got_displacement & 0x07000000) << 4)
9845 | ((got_displacement & 0x08000000) >> 17)
9846 | ((got_displacement & 0xf0000000) >> 28),
9847 ptr + 4);
9848 put_arm_insn (htab, output_bfd,
9849 elf32_thumb2_plt_entry[2],
9850 ptr + 8);
9851 put_arm_insn (htab, output_bfd,
9852 elf32_thumb2_plt_entry[3],
9853 ptr + 12);
9854 }
9855 else
9856 {
9857 /* Calculate the displacement between the PLT slot and the
9858 entry in the GOT. The eight-byte offset accounts for the
9859 value produced by adding to pc in the first instruction
9860 of the PLT stub. */
9861 got_displacement = got_address - (plt_address + 8);
9862
9863 if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9864 {
9865 put_thumb_insn (htab, output_bfd,
9866 elf32_arm_plt_thumb_stub[0], ptr - 4);
9867 put_thumb_insn (htab, output_bfd,
9868 elf32_arm_plt_thumb_stub[1], ptr - 2);
9869 }
9870
9871 if (!elf32_arm_use_long_plt_entry)
9872 {
9873 BFD_ASSERT ((got_displacement & 0xf0000000) == 0);
9874
9875 put_arm_insn (htab, output_bfd,
9876 elf32_arm_plt_entry_short[0]
9877 | ((got_displacement & 0x0ff00000) >> 20),
9878 ptr + 0);
9879 put_arm_insn (htab, output_bfd,
9880 elf32_arm_plt_entry_short[1]
9881 | ((got_displacement & 0x000ff000) >> 12),
9882 ptr+ 4);
9883 put_arm_insn (htab, output_bfd,
9884 elf32_arm_plt_entry_short[2]
9885 | (got_displacement & 0x00000fff),
9886 ptr + 8);
9887 #ifdef FOUR_WORD_PLT
9888 bfd_put_32 (output_bfd, elf32_arm_plt_entry_short[3], ptr + 12);
9889 #endif
9890 }
9891 else
9892 {
9893 put_arm_insn (htab, output_bfd,
9894 elf32_arm_plt_entry_long[0]
9895 | ((got_displacement & 0xf0000000) >> 28),
9896 ptr + 0);
9897 put_arm_insn (htab, output_bfd,
9898 elf32_arm_plt_entry_long[1]
9899 | ((got_displacement & 0x0ff00000) >> 20),
9900 ptr + 4);
9901 put_arm_insn (htab, output_bfd,
9902 elf32_arm_plt_entry_long[2]
9903 | ((got_displacement & 0x000ff000) >> 12),
9904 ptr+ 8);
9905 put_arm_insn (htab, output_bfd,
9906 elf32_arm_plt_entry_long[3]
9907 | (got_displacement & 0x00000fff),
9908 ptr + 12);
9909 }
9910 }
9911
9912 /* Fill in the entry in the .rel(a).(i)plt section. */
9913 rel.r_offset = got_address;
9914 rel.r_addend = 0;
9915 if (dynindx == -1)
9916 {
9917 /* .igot.plt entries use IRELATIVE relocations against SYM_VALUE.
9918 The dynamic linker or static executable then calls SYM_VALUE
9919 to determine the correct run-time value of the .igot.plt entry. */
9920 rel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
9921 initial_got_entry = sym_value;
9922 }
9923 else
9924 {
9925 /* For FDPIC we will have to resolve a R_ARM_FUNCDESC_VALUE
9926 used by PLT entry. */
9927 if (htab->fdpic_p)
9928 {
9929 rel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
9930 initial_got_entry = 0;
9931 }
9932 else
9933 {
9934 rel.r_info = ELF32_R_INFO (dynindx, R_ARM_JUMP_SLOT);
9935 initial_got_entry = (splt->output_section->vma
9936 + splt->output_offset);
9937
9938 /* PR ld/16017
9939 When thumb only we need to set the LSB for any address that
9940 will be used with an interworking branch instruction. */
9941 if (using_thumb_only (htab))
9942 initial_got_entry |= 1;
9943 }
9944 }
9945
9946 /* Fill in the entry in the global offset table. */
9947 bfd_put_32 (output_bfd, initial_got_entry,
9948 sgot->contents + got_offset);
9949
9950 if (htab->fdpic_p && !(info->flags & DF_BIND_NOW))
9951 {
9952 /* Setup initial funcdesc value. */
9953 /* FIXME: we don't support lazy binding because there is a
9954 race condition between both words getting written and
9955 some other thread attempting to read them. The ARM
9956 architecture does not have an atomic 64 bit load/store
9957 instruction that could be used to prevent it; it is
9958 recommended that threaded FDPIC applications run with the
9959 LD_BIND_NOW environment variable set. */
9960 bfd_put_32(output_bfd, plt_address + 0x18,
9961 sgot->contents + got_offset);
9962 bfd_put_32(output_bfd, -1 /*TODO*/,
9963 sgot->contents + got_offset + 4);
9964 }
9965 }
9966
9967 if (dynindx == -1)
9968 elf32_arm_add_dynreloc (output_bfd, info, srel, &rel);
9969 else
9970 {
9971 if (htab->fdpic_p)
9972 {
9973 /* For FDPIC we put PLT relocationss into .rel.got when not
9974 lazy binding otherwise we put them in .rel.plt. For now,
9975 we don't support lazy binding so put it in .rel.got. */
9976 if (info->flags & DF_BIND_NOW)
9977 elf32_arm_add_dynreloc(output_bfd, info, htab->root.srelgot, &rel);
9978 else
9979 elf32_arm_add_dynreloc(output_bfd, info, htab->root.srelplt, &rel);
9980 }
9981 else
9982 {
9983 loc = srel->contents + plt_index * RELOC_SIZE (htab);
9984 SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9985 }
9986 }
9987
9988 return TRUE;
9989 }
9990
9991 /* Some relocations map to different relocations depending on the
9992 target. Return the real relocation. */
9993
9994 static int
9995 arm_real_reloc_type (struct elf32_arm_link_hash_table * globals,
9996 int r_type)
9997 {
9998 switch (r_type)
9999 {
10000 case R_ARM_TARGET1:
10001 if (globals->target1_is_rel)
10002 return R_ARM_REL32;
10003 else
10004 return R_ARM_ABS32;
10005
10006 case R_ARM_TARGET2:
10007 return globals->target2_reloc;
10008
10009 default:
10010 return r_type;
10011 }
10012 }
10013
10014 /* Return the base VMA address which should be subtracted from real addresses
10015 when resolving @dtpoff relocation.
10016 This is PT_TLS segment p_vaddr. */
10017
10018 static bfd_vma
10019 dtpoff_base (struct bfd_link_info *info)
10020 {
10021 /* If tls_sec is NULL, we should have signalled an error already. */
10022 if (elf_hash_table (info)->tls_sec == NULL)
10023 return 0;
10024 return elf_hash_table (info)->tls_sec->vma;
10025 }
10026
10027 /* Return the relocation value for @tpoff relocation
10028 if STT_TLS virtual address is ADDRESS. */
10029
10030 static bfd_vma
10031 tpoff (struct bfd_link_info *info, bfd_vma address)
10032 {
10033 struct elf_link_hash_table *htab = elf_hash_table (info);
10034 bfd_vma base;
10035
10036 /* If tls_sec is NULL, we should have signalled an error already. */
10037 if (htab->tls_sec == NULL)
10038 return 0;
10039 base = align_power ((bfd_vma) TCB_SIZE, htab->tls_sec->alignment_power);
10040 return address - htab->tls_sec->vma + base;
10041 }
10042
10043 /* Perform an R_ARM_ABS12 relocation on the field pointed to by DATA.
10044 VALUE is the relocation value. */
10045
10046 static bfd_reloc_status_type
10047 elf32_arm_abs12_reloc (bfd *abfd, void *data, bfd_vma value)
10048 {
10049 if (value > 0xfff)
10050 return bfd_reloc_overflow;
10051
10052 value |= bfd_get_32 (abfd, data) & 0xfffff000;
10053 bfd_put_32 (abfd, value, data);
10054 return bfd_reloc_ok;
10055 }
10056
10057 /* Handle TLS relaxations. Relaxing is possible for symbols that use
10058 R_ARM_GOTDESC, R_ARM_{,THM_}TLS_CALL or
10059 R_ARM_{,THM_}TLS_DESCSEQ relocations, during a static link.
10060
10061 Return bfd_reloc_ok if we're done, bfd_reloc_continue if the caller
10062 is to then call final_link_relocate. Return other values in the
10063 case of error.
10064
10065 FIXME:When --emit-relocs is in effect, we'll emit relocs describing
10066 the pre-relaxed code. It would be nice if the relocs were updated
10067 to match the optimization. */
10068
10069 static bfd_reloc_status_type
10070 elf32_arm_tls_relax (struct elf32_arm_link_hash_table *globals,
10071 bfd *input_bfd, asection *input_sec, bfd_byte *contents,
10072 Elf_Internal_Rela *rel, unsigned long is_local)
10073 {
10074 unsigned long insn;
10075
10076 switch (ELF32_R_TYPE (rel->r_info))
10077 {
10078 default:
10079 return bfd_reloc_notsupported;
10080
10081 case R_ARM_TLS_GOTDESC:
10082 if (is_local)
10083 insn = 0;
10084 else
10085 {
10086 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
10087 if (insn & 1)
10088 insn -= 5; /* THUMB */
10089 else
10090 insn -= 8; /* ARM */
10091 }
10092 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10093 return bfd_reloc_continue;
10094
10095 case R_ARM_THM_TLS_DESCSEQ:
10096 /* Thumb insn. */
10097 insn = bfd_get_16 (input_bfd, contents + rel->r_offset);
10098 if ((insn & 0xff78) == 0x4478) /* add rx, pc */
10099 {
10100 if (is_local)
10101 /* nop */
10102 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10103 }
10104 else if ((insn & 0xffc0) == 0x6840) /* ldr rx,[ry,#4] */
10105 {
10106 if (is_local)
10107 /* nop */
10108 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10109 else
10110 /* ldr rx,[ry] */
10111 bfd_put_16 (input_bfd, insn & 0xf83f, contents + rel->r_offset);
10112 }
10113 else if ((insn & 0xff87) == 0x4780) /* blx rx */
10114 {
10115 if (is_local)
10116 /* nop */
10117 bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10118 else
10119 /* mov r0, rx */
10120 bfd_put_16 (input_bfd, 0x4600 | (insn & 0x78),
10121 contents + rel->r_offset);
10122 }
10123 else
10124 {
10125 if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
10126 /* It's a 32 bit instruction, fetch the rest of it for
10127 error generation. */
10128 insn = (insn << 16)
10129 | bfd_get_16 (input_bfd, contents + rel->r_offset + 2);
10130 _bfd_error_handler
10131 /* xgettext:c-format */
10132 (_("%pB(%pA+%#" PRIx64 "): "
10133 "unexpected %s instruction '%#lx' in TLS trampoline"),
10134 input_bfd, input_sec, (uint64_t) rel->r_offset,
10135 "Thumb", insn);
10136 return bfd_reloc_notsupported;
10137 }
10138 break;
10139
10140 case R_ARM_TLS_DESCSEQ:
10141 /* arm insn. */
10142 insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
10143 if ((insn & 0xffff0ff0) == 0xe08f0000) /* add rx,pc,ry */
10144 {
10145 if (is_local)
10146 /* mov rx, ry */
10147 bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xffff),
10148 contents + rel->r_offset);
10149 }
10150 else if ((insn & 0xfff00fff) == 0xe5900004) /* ldr rx,[ry,#4]*/
10151 {
10152 if (is_local)
10153 /* nop */
10154 bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10155 else
10156 /* ldr rx,[ry] */
10157 bfd_put_32 (input_bfd, insn & 0xfffff000,
10158 contents + rel->r_offset);
10159 }
10160 else if ((insn & 0xfffffff0) == 0xe12fff30) /* blx rx */
10161 {
10162 if (is_local)
10163 /* nop */
10164 bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10165 else
10166 /* mov r0, rx */
10167 bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xf),
10168 contents + rel->r_offset);
10169 }
10170 else
10171 {
10172 _bfd_error_handler
10173 /* xgettext:c-format */
10174 (_("%pB(%pA+%#" PRIx64 "): "
10175 "unexpected %s instruction '%#lx' in TLS trampoline"),
10176 input_bfd, input_sec, (uint64_t) rel->r_offset,
10177 "ARM", insn);
10178 return bfd_reloc_notsupported;
10179 }
10180 break;
10181
10182 case R_ARM_TLS_CALL:
10183 /* GD->IE relaxation, turn the instruction into 'nop' or
10184 'ldr r0, [pc,r0]' */
10185 insn = is_local ? 0xe1a00000 : 0xe79f0000;
10186 bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10187 break;
10188
10189 case R_ARM_THM_TLS_CALL:
10190 /* GD->IE relaxation. */
10191 if (!is_local)
10192 /* add r0,pc; ldr r0, [r0] */
10193 insn = 0x44786800;
10194 else if (using_thumb2 (globals))
10195 /* nop.w */
10196 insn = 0xf3af8000;
10197 else
10198 /* nop; nop */
10199 insn = 0xbf00bf00;
10200
10201 bfd_put_16 (input_bfd, insn >> 16, contents + rel->r_offset);
10202 bfd_put_16 (input_bfd, insn & 0xffff, contents + rel->r_offset + 2);
10203 break;
10204 }
10205 return bfd_reloc_ok;
10206 }
10207
10208 /* For a given value of n, calculate the value of G_n as required to
10209 deal with group relocations. We return it in the form of an
10210 encoded constant-and-rotation, together with the final residual. If n is
10211 specified as less than zero, then final_residual is filled with the
10212 input value and no further action is performed. */
10213
10214 static bfd_vma
10215 calculate_group_reloc_mask (bfd_vma value, int n, bfd_vma *final_residual)
10216 {
10217 int current_n;
10218 bfd_vma g_n;
10219 bfd_vma encoded_g_n = 0;
10220 bfd_vma residual = value; /* Also known as Y_n. */
10221
10222 for (current_n = 0; current_n <= n; current_n++)
10223 {
10224 int shift;
10225
10226 /* Calculate which part of the value to mask. */
10227 if (residual == 0)
10228 shift = 0;
10229 else
10230 {
10231 int msb;
10232
10233 /* Determine the most significant bit in the residual and
10234 align the resulting value to a 2-bit boundary. */
10235 for (msb = 30; msb >= 0; msb -= 2)
10236 if (residual & (3 << msb))
10237 break;
10238
10239 /* The desired shift is now (msb - 6), or zero, whichever
10240 is the greater. */
10241 shift = msb - 6;
10242 if (shift < 0)
10243 shift = 0;
10244 }
10245
10246 /* Calculate g_n in 32-bit as well as encoded constant+rotation form. */
10247 g_n = residual & (0xff << shift);
10248 encoded_g_n = (g_n >> shift)
10249 | ((g_n <= 0xff ? 0 : (32 - shift) / 2) << 8);
10250
10251 /* Calculate the residual for the next time around. */
10252 residual &= ~g_n;
10253 }
10254
10255 *final_residual = residual;
10256
10257 return encoded_g_n;
10258 }
10259
10260 /* Given an ARM instruction, determine whether it is an ADD or a SUB.
10261 Returns 1 if it is an ADD, -1 if it is a SUB, and 0 otherwise. */
10262
10263 static int
10264 identify_add_or_sub (bfd_vma insn)
10265 {
10266 int opcode = insn & 0x1e00000;
10267
10268 if (opcode == 1 << 23) /* ADD */
10269 return 1;
10270
10271 if (opcode == 1 << 22) /* SUB */
10272 return -1;
10273
10274 return 0;
10275 }
10276
10277 /* Perform a relocation as part of a final link. */
10278
10279 static bfd_reloc_status_type
10280 elf32_arm_final_link_relocate (reloc_howto_type * howto,
10281 bfd * input_bfd,
10282 bfd * output_bfd,
10283 asection * input_section,
10284 bfd_byte * contents,
10285 Elf_Internal_Rela * rel,
10286 bfd_vma value,
10287 struct bfd_link_info * info,
10288 asection * sym_sec,
10289 const char * sym_name,
10290 unsigned char st_type,
10291 enum arm_st_branch_type branch_type,
10292 struct elf_link_hash_entry * h,
10293 bfd_boolean * unresolved_reloc_p,
10294 char ** error_message)
10295 {
10296 unsigned long r_type = howto->type;
10297 unsigned long r_symndx;
10298 bfd_byte * hit_data = contents + rel->r_offset;
10299 bfd_vma * local_got_offsets;
10300 bfd_vma * local_tlsdesc_gotents;
10301 asection * sgot;
10302 asection * splt;
10303 asection * sreloc = NULL;
10304 asection * srelgot;
10305 bfd_vma addend;
10306 bfd_signed_vma signed_addend;
10307 unsigned char dynreloc_st_type;
10308 bfd_vma dynreloc_value;
10309 struct elf32_arm_link_hash_table * globals;
10310 struct elf32_arm_link_hash_entry *eh;
10311 union gotplt_union *root_plt;
10312 struct arm_plt_info *arm_plt;
10313 bfd_vma plt_offset;
10314 bfd_vma gotplt_offset;
10315 bfd_boolean has_iplt_entry;
10316 bfd_boolean resolved_to_zero;
10317
10318 globals = elf32_arm_hash_table (info);
10319 if (globals == NULL)
10320 return bfd_reloc_notsupported;
10321
10322 BFD_ASSERT (is_arm_elf (input_bfd));
10323 BFD_ASSERT (howto != NULL);
10324
10325 /* Some relocation types map to different relocations depending on the
10326 target. We pick the right one here. */
10327 r_type = arm_real_reloc_type (globals, r_type);
10328
10329 /* It is possible to have linker relaxations on some TLS access
10330 models. Update our information here. */
10331 r_type = elf32_arm_tls_transition (info, r_type, h);
10332
10333 if (r_type != howto->type)
10334 howto = elf32_arm_howto_from_type (r_type);
10335
10336 eh = (struct elf32_arm_link_hash_entry *) h;
10337 sgot = globals->root.sgot;
10338 local_got_offsets = elf_local_got_offsets (input_bfd);
10339 local_tlsdesc_gotents = elf32_arm_local_tlsdesc_gotent (input_bfd);
10340
10341 if (globals->root.dynamic_sections_created)
10342 srelgot = globals->root.srelgot;
10343 else
10344 srelgot = NULL;
10345
10346 r_symndx = ELF32_R_SYM (rel->r_info);
10347
10348 if (globals->use_rel)
10349 {
10350 addend = bfd_get_32 (input_bfd, hit_data) & howto->src_mask;
10351
10352 if (addend & ((howto->src_mask + 1) >> 1))
10353 {
10354 signed_addend = -1;
10355 signed_addend &= ~ howto->src_mask;
10356 signed_addend |= addend;
10357 }
10358 else
10359 signed_addend = addend;
10360 }
10361 else
10362 addend = signed_addend = rel->r_addend;
10363
10364 /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we
10365 are resolving a function call relocation. */
10366 if (using_thumb_only (globals)
10367 && (r_type == R_ARM_THM_CALL
10368 || r_type == R_ARM_THM_JUMP24)
10369 && branch_type == ST_BRANCH_TO_ARM)
10370 branch_type = ST_BRANCH_TO_THUMB;
10371
10372 /* Record the symbol information that should be used in dynamic
10373 relocations. */
10374 dynreloc_st_type = st_type;
10375 dynreloc_value = value;
10376 if (branch_type == ST_BRANCH_TO_THUMB)
10377 dynreloc_value |= 1;
10378
10379 /* Find out whether the symbol has a PLT. Set ST_VALUE, BRANCH_TYPE and
10380 VALUE appropriately for relocations that we resolve at link time. */
10381 has_iplt_entry = FALSE;
10382 if (elf32_arm_get_plt_info (input_bfd, globals, eh, r_symndx, &root_plt,
10383 &arm_plt)
10384 && root_plt->offset != (bfd_vma) -1)
10385 {
10386 plt_offset = root_plt->offset;
10387 gotplt_offset = arm_plt->got_offset;
10388
10389 if (h == NULL || eh->is_iplt)
10390 {
10391 has_iplt_entry = TRUE;
10392 splt = globals->root.iplt;
10393
10394 /* Populate .iplt entries here, because not all of them will
10395 be seen by finish_dynamic_symbol. The lower bit is set if
10396 we have already populated the entry. */
10397 if (plt_offset & 1)
10398 plt_offset--;
10399 else
10400 {
10401 if (elf32_arm_populate_plt_entry (output_bfd, info, root_plt, arm_plt,
10402 -1, dynreloc_value))
10403 root_plt->offset |= 1;
10404 else
10405 return bfd_reloc_notsupported;
10406 }
10407
10408 /* Static relocations always resolve to the .iplt entry. */
10409 st_type = STT_FUNC;
10410 value = (splt->output_section->vma
10411 + splt->output_offset
10412 + plt_offset);
10413 branch_type = ST_BRANCH_TO_ARM;
10414
10415 /* If there are non-call relocations that resolve to the .iplt
10416 entry, then all dynamic ones must too. */
10417 if (arm_plt->noncall_refcount != 0)
10418 {
10419 dynreloc_st_type = st_type;
10420 dynreloc_value = value;
10421 }
10422 }
10423 else
10424 /* We populate the .plt entry in finish_dynamic_symbol. */
10425 splt = globals->root.splt;
10426 }
10427 else
10428 {
10429 splt = NULL;
10430 plt_offset = (bfd_vma) -1;
10431 gotplt_offset = (bfd_vma) -1;
10432 }
10433
10434 resolved_to_zero = (h != NULL
10435 && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
10436
10437 switch (r_type)
10438 {
10439 case R_ARM_NONE:
10440 /* We don't need to find a value for this symbol. It's just a
10441 marker. */
10442 *unresolved_reloc_p = FALSE;
10443 return bfd_reloc_ok;
10444
10445 case R_ARM_ABS12:
10446 if (globals->root.target_os != is_vxworks)
10447 return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
10448 /* Fall through. */
10449
10450 case R_ARM_PC24:
10451 case R_ARM_ABS32:
10452 case R_ARM_ABS32_NOI:
10453 case R_ARM_REL32:
10454 case R_ARM_REL32_NOI:
10455 case R_ARM_CALL:
10456 case R_ARM_JUMP24:
10457 case R_ARM_XPC25:
10458 case R_ARM_PREL31:
10459 case R_ARM_PLT32:
10460 /* Handle relocations which should use the PLT entry. ABS32/REL32
10461 will use the symbol's value, which may point to a PLT entry, but we
10462 don't need to handle that here. If we created a PLT entry, all
10463 branches in this object should go to it, except if the PLT is too
10464 far away, in which case a long branch stub should be inserted. */
10465 if ((r_type != R_ARM_ABS32 && r_type != R_ARM_REL32
10466 && r_type != R_ARM_ABS32_NOI && r_type != R_ARM_REL32_NOI
10467 && r_type != R_ARM_CALL
10468 && r_type != R_ARM_JUMP24
10469 && r_type != R_ARM_PLT32)
10470 && plt_offset != (bfd_vma) -1)
10471 {
10472 /* If we've created a .plt section, and assigned a PLT entry
10473 to this function, it must either be a STT_GNU_IFUNC reference
10474 or not be known to bind locally. In other cases, we should
10475 have cleared the PLT entry by now. */
10476 BFD_ASSERT (has_iplt_entry || !SYMBOL_CALLS_LOCAL (info, h));
10477
10478 value = (splt->output_section->vma
10479 + splt->output_offset
10480 + plt_offset);
10481 *unresolved_reloc_p = FALSE;
10482 return _bfd_final_link_relocate (howto, input_bfd, input_section,
10483 contents, rel->r_offset, value,
10484 rel->r_addend);
10485 }
10486
10487 /* When generating a shared object or relocatable executable, these
10488 relocations are copied into the output file to be resolved at
10489 run time. */
10490 if ((bfd_link_pic (info)
10491 || globals->root.is_relocatable_executable
10492 || globals->fdpic_p)
10493 && (input_section->flags & SEC_ALLOC)
10494 && !(globals->root.target_os == is_vxworks
10495 && strcmp (input_section->output_section->name,
10496 ".tls_vars") == 0)
10497 && ((r_type != R_ARM_REL32 && r_type != R_ARM_REL32_NOI)
10498 || !SYMBOL_CALLS_LOCAL (info, h))
10499 && !(input_bfd == globals->stub_bfd
10500 && strstr (input_section->name, STUB_SUFFIX))
10501 && (h == NULL
10502 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
10503 && !resolved_to_zero)
10504 || h->root.type != bfd_link_hash_undefweak)
10505 && r_type != R_ARM_PC24
10506 && r_type != R_ARM_CALL
10507 && r_type != R_ARM_JUMP24
10508 && r_type != R_ARM_PREL31
10509 && r_type != R_ARM_PLT32)
10510 {
10511 Elf_Internal_Rela outrel;
10512 bfd_boolean skip, relocate;
10513 int isrofixup = 0;
10514
10515 if ((r_type == R_ARM_REL32 || r_type == R_ARM_REL32_NOI)
10516 && !h->def_regular)
10517 {
10518 char *v = _("shared object");
10519
10520 if (bfd_link_executable (info))
10521 v = _("PIE executable");
10522
10523 _bfd_error_handler
10524 (_("%pB: relocation %s against external or undefined symbol `%s'"
10525 " can not be used when making a %s; recompile with -fPIC"), input_bfd,
10526 elf32_arm_howto_table_1[r_type].name, h->root.root.string, v);
10527 return bfd_reloc_notsupported;
10528 }
10529
10530 *unresolved_reloc_p = FALSE;
10531
10532 if (sreloc == NULL && globals->root.dynamic_sections_created)
10533 {
10534 sreloc = _bfd_elf_get_dynamic_reloc_section (input_bfd, input_section,
10535 ! globals->use_rel);
10536
10537 if (sreloc == NULL)
10538 return bfd_reloc_notsupported;
10539 }
10540
10541 skip = FALSE;
10542 relocate = FALSE;
10543
10544 outrel.r_addend = addend;
10545 outrel.r_offset =
10546 _bfd_elf_section_offset (output_bfd, info, input_section,
10547 rel->r_offset);
10548 if (outrel.r_offset == (bfd_vma) -1)
10549 skip = TRUE;
10550 else if (outrel.r_offset == (bfd_vma) -2)
10551 skip = TRUE, relocate = TRUE;
10552 outrel.r_offset += (input_section->output_section->vma
10553 + input_section->output_offset);
10554
10555 if (skip)
10556 memset (&outrel, 0, sizeof outrel);
10557 else if (h != NULL
10558 && h->dynindx != -1
10559 && (!bfd_link_pic (info)
10560 || !(bfd_link_pie (info)
10561 || SYMBOLIC_BIND (info, h))
10562 || !h->def_regular))
10563 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
10564 else
10565 {
10566 int symbol;
10567
10568 /* This symbol is local, or marked to become local. */
10569 BFD_ASSERT (r_type == R_ARM_ABS32 || r_type == R_ARM_ABS32_NOI
10570 || (globals->fdpic_p && !bfd_link_pic(info)));
10571 if (globals->root.target_os == is_symbian)
10572 {
10573 asection *osec;
10574
10575 /* On Symbian OS, the data segment and text segement
10576 can be relocated independently. Therefore, we
10577 must indicate the segment to which this
10578 relocation is relative. The BPABI allows us to
10579 use any symbol in the right segment; we just use
10580 the section symbol as it is convenient. (We
10581 cannot use the symbol given by "h" directly as it
10582 will not appear in the dynamic symbol table.)
10583
10584 Note that the dynamic linker ignores the section
10585 symbol value, so we don't subtract osec->vma
10586 from the emitted reloc addend. */
10587 if (sym_sec)
10588 osec = sym_sec->output_section;
10589 else
10590 osec = input_section->output_section;
10591 symbol = elf_section_data (osec)->dynindx;
10592 if (symbol == 0)
10593 {
10594 struct elf_link_hash_table *htab = elf_hash_table (info);
10595
10596 if ((osec->flags & SEC_READONLY) == 0
10597 && htab->data_index_section != NULL)
10598 osec = htab->data_index_section;
10599 else
10600 osec = htab->text_index_section;
10601 symbol = elf_section_data (osec)->dynindx;
10602 }
10603 BFD_ASSERT (symbol != 0);
10604 }
10605 else
10606 /* On SVR4-ish systems, the dynamic loader cannot
10607 relocate the text and data segments independently,
10608 so the symbol does not matter. */
10609 symbol = 0;
10610 if (dynreloc_st_type == STT_GNU_IFUNC)
10611 /* We have an STT_GNU_IFUNC symbol that doesn't resolve
10612 to the .iplt entry. Instead, every non-call reference
10613 must use an R_ARM_IRELATIVE relocation to obtain the
10614 correct run-time address. */
10615 outrel.r_info = ELF32_R_INFO (symbol, R_ARM_IRELATIVE);
10616 else if (globals->fdpic_p && !bfd_link_pic(info))
10617 isrofixup = 1;
10618 else
10619 outrel.r_info = ELF32_R_INFO (symbol, R_ARM_RELATIVE);
10620 if (globals->use_rel)
10621 relocate = TRUE;
10622 else
10623 outrel.r_addend += dynreloc_value;
10624 }
10625
10626 if (isrofixup)
10627 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
10628 else
10629 elf32_arm_add_dynreloc (output_bfd, info, sreloc, &outrel);
10630
10631 /* If this reloc is against an external symbol, we do not want to
10632 fiddle with the addend. Otherwise, we need to include the symbol
10633 value so that it becomes an addend for the dynamic reloc. */
10634 if (! relocate)
10635 return bfd_reloc_ok;
10636
10637 return _bfd_final_link_relocate (howto, input_bfd, input_section,
10638 contents, rel->r_offset,
10639 dynreloc_value, (bfd_vma) 0);
10640 }
10641 else switch (r_type)
10642 {
10643 case R_ARM_ABS12:
10644 return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
10645
10646 case R_ARM_XPC25: /* Arm BLX instruction. */
10647 case R_ARM_CALL:
10648 case R_ARM_JUMP24:
10649 case R_ARM_PC24: /* Arm B/BL instruction. */
10650 case R_ARM_PLT32:
10651 {
10652 struct elf32_arm_stub_hash_entry *stub_entry = NULL;
10653
10654 if (r_type == R_ARM_XPC25)
10655 {
10656 /* Check for Arm calling Arm function. */
10657 /* FIXME: Should we translate the instruction into a BL
10658 instruction instead ? */
10659 if (branch_type != ST_BRANCH_TO_THUMB)
10660 _bfd_error_handler
10661 (_("\%pB: warning: %s BLX instruction targets"
10662 " %s function '%s'"),
10663 input_bfd, "ARM",
10664 "ARM", h ? h->root.root.string : "(local)");
10665 }
10666 else if (r_type == R_ARM_PC24)
10667 {
10668 /* Check for Arm calling Thumb function. */
10669 if (branch_type == ST_BRANCH_TO_THUMB)
10670 {
10671 if (elf32_arm_to_thumb_stub (info, sym_name, input_bfd,
10672 output_bfd, input_section,
10673 hit_data, sym_sec, rel->r_offset,
10674 signed_addend, value,
10675 error_message))
10676 return bfd_reloc_ok;
10677 else
10678 return bfd_reloc_dangerous;
10679 }
10680 }
10681
10682 /* Check if a stub has to be inserted because the
10683 destination is too far or we are changing mode. */
10684 if ( r_type == R_ARM_CALL
10685 || r_type == R_ARM_JUMP24
10686 || r_type == R_ARM_PLT32)
10687 {
10688 enum elf32_arm_stub_type stub_type = arm_stub_none;
10689 struct elf32_arm_link_hash_entry *hash;
10690
10691 hash = (struct elf32_arm_link_hash_entry *) h;
10692 stub_type = arm_type_of_stub (info, input_section, rel,
10693 st_type, &branch_type,
10694 hash, value, sym_sec,
10695 input_bfd, sym_name);
10696
10697 if (stub_type != arm_stub_none)
10698 {
10699 /* The target is out of reach, so redirect the
10700 branch to the local stub for this function. */
10701 stub_entry = elf32_arm_get_stub_entry (input_section,
10702 sym_sec, h,
10703 rel, globals,
10704 stub_type);
10705 {
10706 if (stub_entry != NULL)
10707 value = (stub_entry->stub_offset
10708 + stub_entry->stub_sec->output_offset
10709 + stub_entry->stub_sec->output_section->vma);
10710
10711 if (plt_offset != (bfd_vma) -1)
10712 *unresolved_reloc_p = FALSE;
10713 }
10714 }
10715 else
10716 {
10717 /* If the call goes through a PLT entry, make sure to
10718 check distance to the right destination address. */
10719 if (plt_offset != (bfd_vma) -1)
10720 {
10721 value = (splt->output_section->vma
10722 + splt->output_offset
10723 + plt_offset);
10724 *unresolved_reloc_p = FALSE;
10725 /* The PLT entry is in ARM mode, regardless of the
10726 target function. */
10727 branch_type = ST_BRANCH_TO_ARM;
10728 }
10729 }
10730 }
10731
10732 /* The ARM ELF ABI says that this reloc is computed as: S - P + A
10733 where:
10734 S is the address of the symbol in the relocation.
10735 P is address of the instruction being relocated.
10736 A is the addend (extracted from the instruction) in bytes.
10737
10738 S is held in 'value'.
10739 P is the base address of the section containing the
10740 instruction plus the offset of the reloc into that
10741 section, ie:
10742 (input_section->output_section->vma +
10743 input_section->output_offset +
10744 rel->r_offset).
10745 A is the addend, converted into bytes, ie:
10746 (signed_addend * 4)
10747
10748 Note: None of these operations have knowledge of the pipeline
10749 size of the processor, thus it is up to the assembler to
10750 encode this information into the addend. */
10751 value -= (input_section->output_section->vma
10752 + input_section->output_offset);
10753 value -= rel->r_offset;
10754 if (globals->use_rel)
10755 value += (signed_addend << howto->size);
10756 else
10757 /* RELA addends do not have to be adjusted by howto->size. */
10758 value += signed_addend;
10759
10760 signed_addend = value;
10761 signed_addend >>= howto->rightshift;
10762
10763 /* A branch to an undefined weak symbol is turned into a jump to
10764 the next instruction unless a PLT entry will be created.
10765 Do the same for local undefined symbols (but not for STN_UNDEF).
10766 The jump to the next instruction is optimized as a NOP depending
10767 on the architecture. */
10768 if (h ? (h->root.type == bfd_link_hash_undefweak
10769 && plt_offset == (bfd_vma) -1)
10770 : r_symndx != STN_UNDEF && bfd_is_und_section (sym_sec))
10771 {
10772 value = (bfd_get_32 (input_bfd, hit_data) & 0xf0000000);
10773
10774 if (arch_has_arm_nop (globals))
10775 value |= 0x0320f000;
10776 else
10777 value |= 0x01a00000; /* Using pre-UAL nop: mov r0, r0. */
10778 }
10779 else
10780 {
10781 /* Perform a signed range check. */
10782 if ( signed_addend > ((bfd_signed_vma) (howto->dst_mask >> 1))
10783 || signed_addend < - ((bfd_signed_vma) ((howto->dst_mask + 1) >> 1)))
10784 return bfd_reloc_overflow;
10785
10786 addend = (value & 2);
10787
10788 value = (signed_addend & howto->dst_mask)
10789 | (bfd_get_32 (input_bfd, hit_data) & (~ howto->dst_mask));
10790
10791 if (r_type == R_ARM_CALL)
10792 {
10793 /* Set the H bit in the BLX instruction. */
10794 if (branch_type == ST_BRANCH_TO_THUMB)
10795 {
10796 if (addend)
10797 value |= (1 << 24);
10798 else
10799 value &= ~(bfd_vma)(1 << 24);
10800 }
10801
10802 /* Select the correct instruction (BL or BLX). */
10803 /* Only if we are not handling a BL to a stub. In this
10804 case, mode switching is performed by the stub. */
10805 if (branch_type == ST_BRANCH_TO_THUMB && !stub_entry)
10806 value |= (1 << 28);
10807 else if (stub_entry || branch_type != ST_BRANCH_UNKNOWN)
10808 {
10809 value &= ~(bfd_vma)(1 << 28);
10810 value |= (1 << 24);
10811 }
10812 }
10813 }
10814 }
10815 break;
10816
10817 case R_ARM_ABS32:
10818 value += addend;
10819 if (branch_type == ST_BRANCH_TO_THUMB)
10820 value |= 1;
10821 break;
10822
10823 case R_ARM_ABS32_NOI:
10824 value += addend;
10825 break;
10826
10827 case R_ARM_REL32:
10828 value += addend;
10829 if (branch_type == ST_BRANCH_TO_THUMB)
10830 value |= 1;
10831 value -= (input_section->output_section->vma
10832 + input_section->output_offset + rel->r_offset);
10833 break;
10834
10835 case R_ARM_REL32_NOI:
10836 value += addend;
10837 value -= (input_section->output_section->vma
10838 + input_section->output_offset + rel->r_offset);
10839 break;
10840
10841 case R_ARM_PREL31:
10842 value -= (input_section->output_section->vma
10843 + input_section->output_offset + rel->r_offset);
10844 value += signed_addend;
10845 if (! h || h->root.type != bfd_link_hash_undefweak)
10846 {
10847 /* Check for overflow. */
10848 if ((value ^ (value >> 1)) & (1 << 30))
10849 return bfd_reloc_overflow;
10850 }
10851 value &= 0x7fffffff;
10852 value |= (bfd_get_32 (input_bfd, hit_data) & 0x80000000);
10853 if (branch_type == ST_BRANCH_TO_THUMB)
10854 value |= 1;
10855 break;
10856 }
10857
10858 bfd_put_32 (input_bfd, value, hit_data);
10859 return bfd_reloc_ok;
10860
10861 case R_ARM_ABS8:
10862 /* PR 16202: Refectch the addend using the correct size. */
10863 if (globals->use_rel)
10864 addend = bfd_get_8 (input_bfd, hit_data);
10865 value += addend;
10866
10867 /* There is no way to tell whether the user intended to use a signed or
10868 unsigned addend. When checking for overflow we accept either,
10869 as specified by the AAELF. */
10870 if ((long) value > 0xff || (long) value < -0x80)
10871 return bfd_reloc_overflow;
10872
10873 bfd_put_8 (input_bfd, value, hit_data);
10874 return bfd_reloc_ok;
10875
10876 case R_ARM_ABS16:
10877 /* PR 16202: Refectch the addend using the correct size. */
10878 if (globals->use_rel)
10879 addend = bfd_get_16 (input_bfd, hit_data);
10880 value += addend;
10881
10882 /* See comment for R_ARM_ABS8. */
10883 if ((long) value > 0xffff || (long) value < -0x8000)
10884 return bfd_reloc_overflow;
10885
10886 bfd_put_16 (input_bfd, value, hit_data);
10887 return bfd_reloc_ok;
10888
10889 case R_ARM_THM_ABS5:
10890 /* Support ldr and str instructions for the thumb. */
10891 if (globals->use_rel)
10892 {
10893 /* Need to refetch addend. */
10894 addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
10895 /* ??? Need to determine shift amount from operand size. */
10896 addend >>= howto->rightshift;
10897 }
10898 value += addend;
10899
10900 /* ??? Isn't value unsigned? */
10901 if ((long) value > 0x1f || (long) value < -0x10)
10902 return bfd_reloc_overflow;
10903
10904 /* ??? Value needs to be properly shifted into place first. */
10905 value |= bfd_get_16 (input_bfd, hit_data) & 0xf83f;
10906 bfd_put_16 (input_bfd, value, hit_data);
10907 return bfd_reloc_ok;
10908
10909 case R_ARM_THM_ALU_PREL_11_0:
10910 /* Corresponds to: addw.w reg, pc, #offset (and similarly for subw). */
10911 {
10912 bfd_vma insn;
10913 bfd_signed_vma relocation;
10914
10915 insn = (bfd_get_16 (input_bfd, hit_data) << 16)
10916 | bfd_get_16 (input_bfd, hit_data + 2);
10917
10918 if (globals->use_rel)
10919 {
10920 signed_addend = (insn & 0xff) | ((insn & 0x7000) >> 4)
10921 | ((insn & (1 << 26)) >> 15);
10922 if (insn & 0xf00000)
10923 signed_addend = -signed_addend;
10924 }
10925
10926 relocation = value + signed_addend;
10927 relocation -= Pa (input_section->output_section->vma
10928 + input_section->output_offset
10929 + rel->r_offset);
10930
10931 /* PR 21523: Use an absolute value. The user of this reloc will
10932 have already selected an ADD or SUB insn appropriately. */
10933 value = llabs (relocation);
10934
10935 if (value >= 0x1000)
10936 return bfd_reloc_overflow;
10937
10938 /* Destination is Thumb. Force bit 0 to 1 to reflect this. */
10939 if (branch_type == ST_BRANCH_TO_THUMB)
10940 value |= 1;
10941
10942 insn = (insn & 0xfb0f8f00) | (value & 0xff)
10943 | ((value & 0x700) << 4)
10944 | ((value & 0x800) << 15);
10945 if (relocation < 0)
10946 insn |= 0xa00000;
10947
10948 bfd_put_16 (input_bfd, insn >> 16, hit_data);
10949 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
10950
10951 return bfd_reloc_ok;
10952 }
10953
10954 case R_ARM_THM_PC8:
10955 /* PR 10073: This reloc is not generated by the GNU toolchain,
10956 but it is supported for compatibility with third party libraries
10957 generated by other compilers, specifically the ARM/IAR. */
10958 {
10959 bfd_vma insn;
10960 bfd_signed_vma relocation;
10961
10962 insn = bfd_get_16 (input_bfd, hit_data);
10963
10964 if (globals->use_rel)
10965 addend = ((((insn & 0x00ff) << 2) + 4) & 0x3ff) -4;
10966
10967 relocation = value + addend;
10968 relocation -= Pa (input_section->output_section->vma
10969 + input_section->output_offset
10970 + rel->r_offset);
10971
10972 value = relocation;
10973
10974 /* We do not check for overflow of this reloc. Although strictly
10975 speaking this is incorrect, it appears to be necessary in order
10976 to work with IAR generated relocs. Since GCC and GAS do not
10977 generate R_ARM_THM_PC8 relocs, the lack of a check should not be
10978 a problem for them. */
10979 value &= 0x3fc;
10980
10981 insn = (insn & 0xff00) | (value >> 2);
10982
10983 bfd_put_16 (input_bfd, insn, hit_data);
10984
10985 return bfd_reloc_ok;
10986 }
10987
10988 case R_ARM_THM_PC12:
10989 /* Corresponds to: ldr.w reg, [pc, #offset]. */
10990 {
10991 bfd_vma insn;
10992 bfd_signed_vma relocation;
10993
10994 insn = (bfd_get_16 (input_bfd, hit_data) << 16)
10995 | bfd_get_16 (input_bfd, hit_data + 2);
10996
10997 if (globals->use_rel)
10998 {
10999 signed_addend = insn & 0xfff;
11000 if (!(insn & (1 << 23)))
11001 signed_addend = -signed_addend;
11002 }
11003
11004 relocation = value + signed_addend;
11005 relocation -= Pa (input_section->output_section->vma
11006 + input_section->output_offset
11007 + rel->r_offset);
11008
11009 value = relocation;
11010
11011 if (value >= 0x1000)
11012 return bfd_reloc_overflow;
11013
11014 insn = (insn & 0xff7ff000) | value;
11015 if (relocation >= 0)
11016 insn |= (1 << 23);
11017
11018 bfd_put_16 (input_bfd, insn >> 16, hit_data);
11019 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
11020
11021 return bfd_reloc_ok;
11022 }
11023
11024 case R_ARM_THM_XPC22:
11025 case R_ARM_THM_CALL:
11026 case R_ARM_THM_JUMP24:
11027 /* Thumb BL (branch long instruction). */
11028 {
11029 bfd_vma relocation;
11030 bfd_vma reloc_sign;
11031 bfd_boolean overflow = FALSE;
11032 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
11033 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
11034 bfd_signed_vma reloc_signed_max;
11035 bfd_signed_vma reloc_signed_min;
11036 bfd_vma check;
11037 bfd_signed_vma signed_check;
11038 int bitsize;
11039 const int thumb2 = using_thumb2 (globals);
11040 const int thumb2_bl = using_thumb2_bl (globals);
11041
11042 /* A branch to an undefined weak symbol is turned into a jump to
11043 the next instruction unless a PLT entry will be created.
11044 The jump to the next instruction is optimized as a NOP.W for
11045 Thumb-2 enabled architectures. */
11046 if (h && h->root.type == bfd_link_hash_undefweak
11047 && plt_offset == (bfd_vma) -1)
11048 {
11049 if (thumb2)
11050 {
11051 bfd_put_16 (input_bfd, 0xf3af, hit_data);
11052 bfd_put_16 (input_bfd, 0x8000, hit_data + 2);
11053 }
11054 else
11055 {
11056 bfd_put_16 (input_bfd, 0xe000, hit_data);
11057 bfd_put_16 (input_bfd, 0xbf00, hit_data + 2);
11058 }
11059 return bfd_reloc_ok;
11060 }
11061
11062 /* Fetch the addend. We use the Thumb-2 encoding (backwards compatible
11063 with Thumb-1) involving the J1 and J2 bits. */
11064 if (globals->use_rel)
11065 {
11066 bfd_vma s = (upper_insn & (1 << 10)) >> 10;
11067 bfd_vma upper = upper_insn & 0x3ff;
11068 bfd_vma lower = lower_insn & 0x7ff;
11069 bfd_vma j1 = (lower_insn & (1 << 13)) >> 13;
11070 bfd_vma j2 = (lower_insn & (1 << 11)) >> 11;
11071 bfd_vma i1 = j1 ^ s ? 0 : 1;
11072 bfd_vma i2 = j2 ^ s ? 0 : 1;
11073
11074 addend = (i1 << 23) | (i2 << 22) | (upper << 12) | (lower << 1);
11075 /* Sign extend. */
11076 addend = (addend | ((s ? 0 : 1) << 24)) - (1 << 24);
11077
11078 signed_addend = addend;
11079 }
11080
11081 if (r_type == R_ARM_THM_XPC22)
11082 {
11083 /* Check for Thumb to Thumb call. */
11084 /* FIXME: Should we translate the instruction into a BL
11085 instruction instead ? */
11086 if (branch_type == ST_BRANCH_TO_THUMB)
11087 _bfd_error_handler
11088 (_("%pB: warning: %s BLX instruction targets"
11089 " %s function '%s'"),
11090 input_bfd, "Thumb",
11091 "Thumb", h ? h->root.root.string : "(local)");
11092 }
11093 else
11094 {
11095 /* If it is not a call to Thumb, assume call to Arm.
11096 If it is a call relative to a section name, then it is not a
11097 function call at all, but rather a long jump. Calls through
11098 the PLT do not require stubs. */
11099 if (branch_type == ST_BRANCH_TO_ARM && plt_offset == (bfd_vma) -1)
11100 {
11101 if (globals->use_blx && r_type == R_ARM_THM_CALL)
11102 {
11103 /* Convert BL to BLX. */
11104 lower_insn = (lower_insn & ~0x1000) | 0x0800;
11105 }
11106 else if (( r_type != R_ARM_THM_CALL)
11107 && (r_type != R_ARM_THM_JUMP24))
11108 {
11109 if (elf32_thumb_to_arm_stub
11110 (info, sym_name, input_bfd, output_bfd, input_section,
11111 hit_data, sym_sec, rel->r_offset, signed_addend, value,
11112 error_message))
11113 return bfd_reloc_ok;
11114 else
11115 return bfd_reloc_dangerous;
11116 }
11117 }
11118 else if (branch_type == ST_BRANCH_TO_THUMB
11119 && globals->use_blx
11120 && r_type == R_ARM_THM_CALL)
11121 {
11122 /* Make sure this is a BL. */
11123 lower_insn |= 0x1800;
11124 }
11125 }
11126
11127 enum elf32_arm_stub_type stub_type = arm_stub_none;
11128 if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24)
11129 {
11130 /* Check if a stub has to be inserted because the destination
11131 is too far. */
11132 struct elf32_arm_stub_hash_entry *stub_entry;
11133 struct elf32_arm_link_hash_entry *hash;
11134
11135 hash = (struct elf32_arm_link_hash_entry *) h;
11136
11137 stub_type = arm_type_of_stub (info, input_section, rel,
11138 st_type, &branch_type,
11139 hash, value, sym_sec,
11140 input_bfd, sym_name);
11141
11142 if (stub_type != arm_stub_none)
11143 {
11144 /* The target is out of reach or we are changing modes, so
11145 redirect the branch to the local stub for this
11146 function. */
11147 stub_entry = elf32_arm_get_stub_entry (input_section,
11148 sym_sec, h,
11149 rel, globals,
11150 stub_type);
11151 if (stub_entry != NULL)
11152 {
11153 value = (stub_entry->stub_offset
11154 + stub_entry->stub_sec->output_offset
11155 + stub_entry->stub_sec->output_section->vma);
11156
11157 if (plt_offset != (bfd_vma) -1)
11158 *unresolved_reloc_p = FALSE;
11159 }
11160
11161 /* If this call becomes a call to Arm, force BLX. */
11162 if (globals->use_blx && (r_type == R_ARM_THM_CALL))
11163 {
11164 if ((stub_entry
11165 && !arm_stub_is_thumb (stub_entry->stub_type))
11166 || branch_type != ST_BRANCH_TO_THUMB)
11167 lower_insn = (lower_insn & ~0x1000) | 0x0800;
11168 }
11169 }
11170 }
11171
11172 /* Handle calls via the PLT. */
11173 if (stub_type == arm_stub_none && plt_offset != (bfd_vma) -1)
11174 {
11175 value = (splt->output_section->vma
11176 + splt->output_offset
11177 + plt_offset);
11178
11179 if (globals->use_blx
11180 && r_type == R_ARM_THM_CALL
11181 && ! using_thumb_only (globals))
11182 {
11183 /* If the Thumb BLX instruction is available, convert
11184 the BL to a BLX instruction to call the ARM-mode
11185 PLT entry. */
11186 lower_insn = (lower_insn & ~0x1000) | 0x0800;
11187 branch_type = ST_BRANCH_TO_ARM;
11188 }
11189 else
11190 {
11191 if (! using_thumb_only (globals))
11192 /* Target the Thumb stub before the ARM PLT entry. */
11193 value -= PLT_THUMB_STUB_SIZE;
11194 branch_type = ST_BRANCH_TO_THUMB;
11195 }
11196 *unresolved_reloc_p = FALSE;
11197 }
11198
11199 relocation = value + signed_addend;
11200
11201 relocation -= (input_section->output_section->vma
11202 + input_section->output_offset
11203 + rel->r_offset);
11204
11205 check = relocation >> howto->rightshift;
11206
11207 /* If this is a signed value, the rightshift just dropped
11208 leading 1 bits (assuming twos complement). */
11209 if ((bfd_signed_vma) relocation >= 0)
11210 signed_check = check;
11211 else
11212 signed_check = check | ~((bfd_vma) -1 >> howto->rightshift);
11213
11214 /* Calculate the permissable maximum and minimum values for
11215 this relocation according to whether we're relocating for
11216 Thumb-2 or not. */
11217 bitsize = howto->bitsize;
11218 if (!thumb2_bl)
11219 bitsize -= 2;
11220 reloc_signed_max = (1 << (bitsize - 1)) - 1;
11221 reloc_signed_min = ~reloc_signed_max;
11222
11223 /* Assumes two's complement. */
11224 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11225 overflow = TRUE;
11226
11227 if ((lower_insn & 0x5000) == 0x4000)
11228 /* For a BLX instruction, make sure that the relocation is rounded up
11229 to a word boundary. This follows the semantics of the instruction
11230 which specifies that bit 1 of the target address will come from bit
11231 1 of the base address. */
11232 relocation = (relocation + 2) & ~ 3;
11233
11234 /* Put RELOCATION back into the insn. Assumes two's complement.
11235 We use the Thumb-2 encoding, which is safe even if dealing with
11236 a Thumb-1 instruction by virtue of our overflow check above. */
11237 reloc_sign = (signed_check < 0) ? 1 : 0;
11238 upper_insn = (upper_insn & ~(bfd_vma) 0x7ff)
11239 | ((relocation >> 12) & 0x3ff)
11240 | (reloc_sign << 10);
11241 lower_insn = (lower_insn & ~(bfd_vma) 0x2fff)
11242 | (((!((relocation >> 23) & 1)) ^ reloc_sign) << 13)
11243 | (((!((relocation >> 22) & 1)) ^ reloc_sign) << 11)
11244 | ((relocation >> 1) & 0x7ff);
11245
11246 /* Put the relocated value back in the object file: */
11247 bfd_put_16 (input_bfd, upper_insn, hit_data);
11248 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11249
11250 return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11251 }
11252 break;
11253
11254 case R_ARM_THM_JUMP19:
11255 /* Thumb32 conditional branch instruction. */
11256 {
11257 bfd_vma relocation;
11258 bfd_boolean overflow = FALSE;
11259 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
11260 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
11261 bfd_signed_vma reloc_signed_max = 0xffffe;
11262 bfd_signed_vma reloc_signed_min = -0x100000;
11263 bfd_signed_vma signed_check;
11264 enum elf32_arm_stub_type stub_type = arm_stub_none;
11265 struct elf32_arm_stub_hash_entry *stub_entry;
11266 struct elf32_arm_link_hash_entry *hash;
11267
11268 /* Need to refetch the addend, reconstruct the top three bits,
11269 and squish the two 11 bit pieces together. */
11270 if (globals->use_rel)
11271 {
11272 bfd_vma S = (upper_insn & 0x0400) >> 10;
11273 bfd_vma upper = (upper_insn & 0x003f);
11274 bfd_vma J1 = (lower_insn & 0x2000) >> 13;
11275 bfd_vma J2 = (lower_insn & 0x0800) >> 11;
11276 bfd_vma lower = (lower_insn & 0x07ff);
11277
11278 upper |= J1 << 6;
11279 upper |= J2 << 7;
11280 upper |= (!S) << 8;
11281 upper -= 0x0100; /* Sign extend. */
11282
11283 addend = (upper << 12) | (lower << 1);
11284 signed_addend = addend;
11285 }
11286
11287 /* Handle calls via the PLT. */
11288 if (plt_offset != (bfd_vma) -1)
11289 {
11290 value = (splt->output_section->vma
11291 + splt->output_offset
11292 + plt_offset);
11293 /* Target the Thumb stub before the ARM PLT entry. */
11294 value -= PLT_THUMB_STUB_SIZE;
11295 *unresolved_reloc_p = FALSE;
11296 }
11297
11298 hash = (struct elf32_arm_link_hash_entry *)h;
11299
11300 stub_type = arm_type_of_stub (info, input_section, rel,
11301 st_type, &branch_type,
11302 hash, value, sym_sec,
11303 input_bfd, sym_name);
11304 if (stub_type != arm_stub_none)
11305 {
11306 stub_entry = elf32_arm_get_stub_entry (input_section,
11307 sym_sec, h,
11308 rel, globals,
11309 stub_type);
11310 if (stub_entry != NULL)
11311 {
11312 value = (stub_entry->stub_offset
11313 + stub_entry->stub_sec->output_offset
11314 + stub_entry->stub_sec->output_section->vma);
11315 }
11316 }
11317
11318 relocation = value + signed_addend;
11319 relocation -= (input_section->output_section->vma
11320 + input_section->output_offset
11321 + rel->r_offset);
11322 signed_check = (bfd_signed_vma) relocation;
11323
11324 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11325 overflow = TRUE;
11326
11327 /* Put RELOCATION back into the insn. */
11328 {
11329 bfd_vma S = (relocation & 0x00100000) >> 20;
11330 bfd_vma J2 = (relocation & 0x00080000) >> 19;
11331 bfd_vma J1 = (relocation & 0x00040000) >> 18;
11332 bfd_vma hi = (relocation & 0x0003f000) >> 12;
11333 bfd_vma lo = (relocation & 0x00000ffe) >> 1;
11334
11335 upper_insn = (upper_insn & 0xfbc0) | (S << 10) | hi;
11336 lower_insn = (lower_insn & 0xd000) | (J1 << 13) | (J2 << 11) | lo;
11337 }
11338
11339 /* Put the relocated value back in the object file: */
11340 bfd_put_16 (input_bfd, upper_insn, hit_data);
11341 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11342
11343 return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11344 }
11345
11346 case R_ARM_THM_JUMP11:
11347 case R_ARM_THM_JUMP8:
11348 case R_ARM_THM_JUMP6:
11349 /* Thumb B (branch) instruction). */
11350 {
11351 bfd_signed_vma relocation;
11352 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1;
11353 bfd_signed_vma reloc_signed_min = ~ reloc_signed_max;
11354 bfd_signed_vma signed_check;
11355
11356 /* CZB cannot jump backward. */
11357 if (r_type == R_ARM_THM_JUMP6)
11358 reloc_signed_min = 0;
11359
11360 if (globals->use_rel)
11361 {
11362 /* Need to refetch addend. */
11363 addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
11364 if (addend & ((howto->src_mask + 1) >> 1))
11365 {
11366 signed_addend = -1;
11367 signed_addend &= ~ howto->src_mask;
11368 signed_addend |= addend;
11369 }
11370 else
11371 signed_addend = addend;
11372 /* The value in the insn has been right shifted. We need to
11373 undo this, so that we can perform the address calculation
11374 in terms of bytes. */
11375 signed_addend <<= howto->rightshift;
11376 }
11377 relocation = value + signed_addend;
11378
11379 relocation -= (input_section->output_section->vma
11380 + input_section->output_offset
11381 + rel->r_offset);
11382
11383 relocation >>= howto->rightshift;
11384 signed_check = relocation;
11385
11386 if (r_type == R_ARM_THM_JUMP6)
11387 relocation = ((relocation & 0x0020) << 4) | ((relocation & 0x001f) << 3);
11388 else
11389 relocation &= howto->dst_mask;
11390 relocation |= (bfd_get_16 (input_bfd, hit_data) & (~ howto->dst_mask));
11391
11392 bfd_put_16 (input_bfd, relocation, hit_data);
11393
11394 /* Assumes two's complement. */
11395 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11396 return bfd_reloc_overflow;
11397
11398 return bfd_reloc_ok;
11399 }
11400
11401 case R_ARM_ALU_PCREL7_0:
11402 case R_ARM_ALU_PCREL15_8:
11403 case R_ARM_ALU_PCREL23_15:
11404 {
11405 bfd_vma insn;
11406 bfd_vma relocation;
11407
11408 insn = bfd_get_32 (input_bfd, hit_data);
11409 if (globals->use_rel)
11410 {
11411 /* Extract the addend. */
11412 addend = (insn & 0xff) << ((insn & 0xf00) >> 7);
11413 signed_addend = addend;
11414 }
11415 relocation = value + signed_addend;
11416
11417 relocation -= (input_section->output_section->vma
11418 + input_section->output_offset
11419 + rel->r_offset);
11420 insn = (insn & ~0xfff)
11421 | ((howto->bitpos << 7) & 0xf00)
11422 | ((relocation >> howto->bitpos) & 0xff);
11423 bfd_put_32 (input_bfd, value, hit_data);
11424 }
11425 return bfd_reloc_ok;
11426
11427 case R_ARM_GNU_VTINHERIT:
11428 case R_ARM_GNU_VTENTRY:
11429 return bfd_reloc_ok;
11430
11431 case R_ARM_GOTOFF32:
11432 /* Relocation is relative to the start of the
11433 global offset table. */
11434
11435 BFD_ASSERT (sgot != NULL);
11436 if (sgot == NULL)
11437 return bfd_reloc_notsupported;
11438
11439 /* If we are addressing a Thumb function, we need to adjust the
11440 address by one, so that attempts to call the function pointer will
11441 correctly interpret it as Thumb code. */
11442 if (branch_type == ST_BRANCH_TO_THUMB)
11443 value += 1;
11444
11445 /* Note that sgot->output_offset is not involved in this
11446 calculation. We always want the start of .got. If we
11447 define _GLOBAL_OFFSET_TABLE in a different way, as is
11448 permitted by the ABI, we might have to change this
11449 calculation. */
11450 value -= sgot->output_section->vma;
11451 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11452 contents, rel->r_offset, value,
11453 rel->r_addend);
11454
11455 case R_ARM_GOTPC:
11456 /* Use global offset table as symbol value. */
11457 BFD_ASSERT (sgot != NULL);
11458
11459 if (sgot == NULL)
11460 return bfd_reloc_notsupported;
11461
11462 *unresolved_reloc_p = FALSE;
11463 value = sgot->output_section->vma;
11464 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11465 contents, rel->r_offset, value,
11466 rel->r_addend);
11467
11468 case R_ARM_GOT32:
11469 case R_ARM_GOT_PREL:
11470 /* Relocation is to the entry for this symbol in the
11471 global offset table. */
11472 if (sgot == NULL)
11473 return bfd_reloc_notsupported;
11474
11475 if (dynreloc_st_type == STT_GNU_IFUNC
11476 && plt_offset != (bfd_vma) -1
11477 && (h == NULL || SYMBOL_REFERENCES_LOCAL (info, h)))
11478 {
11479 /* We have a relocation against a locally-binding STT_GNU_IFUNC
11480 symbol, and the relocation resolves directly to the runtime
11481 target rather than to the .iplt entry. This means that any
11482 .got entry would be the same value as the .igot.plt entry,
11483 so there's no point creating both. */
11484 sgot = globals->root.igotplt;
11485 value = sgot->output_offset + gotplt_offset;
11486 }
11487 else if (h != NULL)
11488 {
11489 bfd_vma off;
11490
11491 off = h->got.offset;
11492 BFD_ASSERT (off != (bfd_vma) -1);
11493 if ((off & 1) != 0)
11494 {
11495 /* We have already processsed one GOT relocation against
11496 this symbol. */
11497 off &= ~1;
11498 if (globals->root.dynamic_sections_created
11499 && !SYMBOL_REFERENCES_LOCAL (info, h))
11500 *unresolved_reloc_p = FALSE;
11501 }
11502 else
11503 {
11504 Elf_Internal_Rela outrel;
11505 int isrofixup = 0;
11506
11507 if (((h->dynindx != -1) || globals->fdpic_p)
11508 && !SYMBOL_REFERENCES_LOCAL (info, h))
11509 {
11510 /* If the symbol doesn't resolve locally in a static
11511 object, we have an undefined reference. If the
11512 symbol doesn't resolve locally in a dynamic object,
11513 it should be resolved by the dynamic linker. */
11514 if (globals->root.dynamic_sections_created)
11515 {
11516 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_GLOB_DAT);
11517 *unresolved_reloc_p = FALSE;
11518 }
11519 else
11520 outrel.r_info = 0;
11521 outrel.r_addend = 0;
11522 }
11523 else
11524 {
11525 if (dynreloc_st_type == STT_GNU_IFUNC)
11526 outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
11527 else if (bfd_link_pic (info)
11528 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
11529 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11530 else
11531 {
11532 outrel.r_info = 0;
11533 if (globals->fdpic_p)
11534 isrofixup = 1;
11535 }
11536 outrel.r_addend = dynreloc_value;
11537 }
11538
11539 /* The GOT entry is initialized to zero by default.
11540 See if we should install a different value. */
11541 if (outrel.r_addend != 0
11542 && (globals->use_rel || outrel.r_info == 0))
11543 {
11544 bfd_put_32 (output_bfd, outrel.r_addend,
11545 sgot->contents + off);
11546 outrel.r_addend = 0;
11547 }
11548
11549 if (isrofixup)
11550 arm_elf_add_rofixup (output_bfd,
11551 elf32_arm_hash_table(info)->srofixup,
11552 sgot->output_section->vma
11553 + sgot->output_offset + off);
11554
11555 else if (outrel.r_info != 0)
11556 {
11557 outrel.r_offset = (sgot->output_section->vma
11558 + sgot->output_offset
11559 + off);
11560 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11561 }
11562
11563 h->got.offset |= 1;
11564 }
11565 value = sgot->output_offset + off;
11566 }
11567 else
11568 {
11569 bfd_vma off;
11570
11571 BFD_ASSERT (local_got_offsets != NULL
11572 && local_got_offsets[r_symndx] != (bfd_vma) -1);
11573
11574 off = local_got_offsets[r_symndx];
11575
11576 /* The offset must always be a multiple of 4. We use the
11577 least significant bit to record whether we have already
11578 generated the necessary reloc. */
11579 if ((off & 1) != 0)
11580 off &= ~1;
11581 else
11582 {
11583 Elf_Internal_Rela outrel;
11584 int isrofixup = 0;
11585
11586 if (dynreloc_st_type == STT_GNU_IFUNC)
11587 outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
11588 else if (bfd_link_pic (info))
11589 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11590 else
11591 {
11592 outrel.r_info = 0;
11593 if (globals->fdpic_p)
11594 isrofixup = 1;
11595 }
11596
11597 /* The GOT entry is initialized to zero by default.
11598 See if we should install a different value. */
11599 if (globals->use_rel || outrel.r_info == 0)
11600 bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + off);
11601
11602 if (isrofixup)
11603 arm_elf_add_rofixup (output_bfd,
11604 globals->srofixup,
11605 sgot->output_section->vma
11606 + sgot->output_offset + off);
11607
11608 else if (outrel.r_info != 0)
11609 {
11610 outrel.r_addend = addend + dynreloc_value;
11611 outrel.r_offset = (sgot->output_section->vma
11612 + sgot->output_offset
11613 + off);
11614 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11615 }
11616
11617 local_got_offsets[r_symndx] |= 1;
11618 }
11619
11620 value = sgot->output_offset + off;
11621 }
11622 if (r_type != R_ARM_GOT32)
11623 value += sgot->output_section->vma;
11624
11625 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11626 contents, rel->r_offset, value,
11627 rel->r_addend);
11628
11629 case R_ARM_TLS_LDO32:
11630 value = value - dtpoff_base (info);
11631
11632 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11633 contents, rel->r_offset, value,
11634 rel->r_addend);
11635
11636 case R_ARM_TLS_LDM32:
11637 case R_ARM_TLS_LDM32_FDPIC:
11638 {
11639 bfd_vma off;
11640
11641 if (sgot == NULL)
11642 abort ();
11643
11644 off = globals->tls_ldm_got.offset;
11645
11646 if ((off & 1) != 0)
11647 off &= ~1;
11648 else
11649 {
11650 /* If we don't know the module number, create a relocation
11651 for it. */
11652 if (bfd_link_dll (info))
11653 {
11654 Elf_Internal_Rela outrel;
11655
11656 if (srelgot == NULL)
11657 abort ();
11658
11659 outrel.r_addend = 0;
11660 outrel.r_offset = (sgot->output_section->vma
11661 + sgot->output_offset + off);
11662 outrel.r_info = ELF32_R_INFO (0, R_ARM_TLS_DTPMOD32);
11663
11664 if (globals->use_rel)
11665 bfd_put_32 (output_bfd, outrel.r_addend,
11666 sgot->contents + off);
11667
11668 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11669 }
11670 else
11671 bfd_put_32 (output_bfd, 1, sgot->contents + off);
11672
11673 globals->tls_ldm_got.offset |= 1;
11674 }
11675
11676 if (r_type == R_ARM_TLS_LDM32_FDPIC)
11677 {
11678 bfd_put_32(output_bfd,
11679 globals->root.sgot->output_offset + off,
11680 contents + rel->r_offset);
11681
11682 return bfd_reloc_ok;
11683 }
11684 else
11685 {
11686 value = sgot->output_section->vma + sgot->output_offset + off
11687 - (input_section->output_section->vma
11688 + input_section->output_offset + rel->r_offset);
11689
11690 return _bfd_final_link_relocate (howto, input_bfd, input_section,
11691 contents, rel->r_offset, value,
11692 rel->r_addend);
11693 }
11694 }
11695
11696 case R_ARM_TLS_CALL:
11697 case R_ARM_THM_TLS_CALL:
11698 case R_ARM_TLS_GD32:
11699 case R_ARM_TLS_GD32_FDPIC:
11700 case R_ARM_TLS_IE32:
11701 case R_ARM_TLS_IE32_FDPIC:
11702 case R_ARM_TLS_GOTDESC:
11703 case R_ARM_TLS_DESCSEQ:
11704 case R_ARM_THM_TLS_DESCSEQ:
11705 {
11706 bfd_vma off, offplt;
11707 int indx = 0;
11708 char tls_type;
11709
11710 BFD_ASSERT (sgot != NULL);
11711
11712 if (h != NULL)
11713 {
11714 bfd_boolean dyn;
11715 dyn = globals->root.dynamic_sections_created;
11716 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
11717 bfd_link_pic (info),
11718 h)
11719 && (!bfd_link_pic (info)
11720 || !SYMBOL_REFERENCES_LOCAL (info, h)))
11721 {
11722 *unresolved_reloc_p = FALSE;
11723 indx = h->dynindx;
11724 }
11725 off = h->got.offset;
11726 offplt = elf32_arm_hash_entry (h)->tlsdesc_got;
11727 tls_type = ((struct elf32_arm_link_hash_entry *) h)->tls_type;
11728 }
11729 else
11730 {
11731 BFD_ASSERT (local_got_offsets != NULL);
11732 off = local_got_offsets[r_symndx];
11733 offplt = local_tlsdesc_gotents[r_symndx];
11734 tls_type = elf32_arm_local_got_tls_type (input_bfd)[r_symndx];
11735 }
11736
11737 /* Linker relaxations happens from one of the
11738 R_ARM_{GOTDESC,CALL,DESCSEQ} relocations to IE or LE. */
11739 if (ELF32_R_TYPE(rel->r_info) != r_type)
11740 tls_type = GOT_TLS_IE;
11741
11742 BFD_ASSERT (tls_type != GOT_UNKNOWN);
11743
11744 if ((off & 1) != 0)
11745 off &= ~1;
11746 else
11747 {
11748 bfd_boolean need_relocs = FALSE;
11749 Elf_Internal_Rela outrel;
11750 int cur_off = off;
11751
11752 /* The GOT entries have not been initialized yet. Do it
11753 now, and emit any relocations. If both an IE GOT and a
11754 GD GOT are necessary, we emit the GD first. */
11755
11756 if ((bfd_link_dll (info) || indx != 0)
11757 && (h == NULL
11758 || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
11759 && !resolved_to_zero)
11760 || h->root.type != bfd_link_hash_undefweak))
11761 {
11762 need_relocs = TRUE;
11763 BFD_ASSERT (srelgot != NULL);
11764 }
11765
11766 if (tls_type & GOT_TLS_GDESC)
11767 {
11768 bfd_byte *loc;
11769
11770 /* We should have relaxed, unless this is an undefined
11771 weak symbol. */
11772 BFD_ASSERT ((h && (h->root.type == bfd_link_hash_undefweak))
11773 || bfd_link_dll (info));
11774 BFD_ASSERT (globals->sgotplt_jump_table_size + offplt + 8
11775 <= globals->root.sgotplt->size);
11776
11777 outrel.r_addend = 0;
11778 outrel.r_offset = (globals->root.sgotplt->output_section->vma
11779 + globals->root.sgotplt->output_offset
11780 + offplt
11781 + globals->sgotplt_jump_table_size);
11782
11783 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DESC);
11784 sreloc = globals->root.srelplt;
11785 loc = sreloc->contents;
11786 loc += globals->next_tls_desc_index++ * RELOC_SIZE (globals);
11787 BFD_ASSERT (loc + RELOC_SIZE (globals)
11788 <= sreloc->contents + sreloc->size);
11789
11790 SWAP_RELOC_OUT (globals) (output_bfd, &outrel, loc);
11791
11792 /* For globals, the first word in the relocation gets
11793 the relocation index and the top bit set, or zero,
11794 if we're binding now. For locals, it gets the
11795 symbol's offset in the tls section. */
11796 bfd_put_32 (output_bfd,
11797 !h ? value - elf_hash_table (info)->tls_sec->vma
11798 : info->flags & DF_BIND_NOW ? 0
11799 : 0x80000000 | ELF32_R_SYM (outrel.r_info),
11800 globals->root.sgotplt->contents + offplt
11801 + globals->sgotplt_jump_table_size);
11802
11803 /* Second word in the relocation is always zero. */
11804 bfd_put_32 (output_bfd, 0,
11805 globals->root.sgotplt->contents + offplt
11806 + globals->sgotplt_jump_table_size + 4);
11807 }
11808 if (tls_type & GOT_TLS_GD)
11809 {
11810 if (need_relocs)
11811 {
11812 outrel.r_addend = 0;
11813 outrel.r_offset = (sgot->output_section->vma
11814 + sgot->output_offset
11815 + cur_off);
11816 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DTPMOD32);
11817
11818 if (globals->use_rel)
11819 bfd_put_32 (output_bfd, outrel.r_addend,
11820 sgot->contents + cur_off);
11821
11822 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11823
11824 if (indx == 0)
11825 bfd_put_32 (output_bfd, value - dtpoff_base (info),
11826 sgot->contents + cur_off + 4);
11827 else
11828 {
11829 outrel.r_addend = 0;
11830 outrel.r_info = ELF32_R_INFO (indx,
11831 R_ARM_TLS_DTPOFF32);
11832 outrel.r_offset += 4;
11833
11834 if (globals->use_rel)
11835 bfd_put_32 (output_bfd, outrel.r_addend,
11836 sgot->contents + cur_off + 4);
11837
11838 elf32_arm_add_dynreloc (output_bfd, info,
11839 srelgot, &outrel);
11840 }
11841 }
11842 else
11843 {
11844 /* If we are not emitting relocations for a
11845 general dynamic reference, then we must be in a
11846 static link or an executable link with the
11847 symbol binding locally. Mark it as belonging
11848 to module 1, the executable. */
11849 bfd_put_32 (output_bfd, 1,
11850 sgot->contents + cur_off);
11851 bfd_put_32 (output_bfd, value - dtpoff_base (info),
11852 sgot->contents + cur_off + 4);
11853 }
11854
11855 cur_off += 8;
11856 }
11857
11858 if (tls_type & GOT_TLS_IE)
11859 {
11860 if (need_relocs)
11861 {
11862 if (indx == 0)
11863 outrel.r_addend = value - dtpoff_base (info);
11864 else
11865 outrel.r_addend = 0;
11866 outrel.r_offset = (sgot->output_section->vma
11867 + sgot->output_offset
11868 + cur_off);
11869 outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_TPOFF32);
11870
11871 if (globals->use_rel)
11872 bfd_put_32 (output_bfd, outrel.r_addend,
11873 sgot->contents + cur_off);
11874
11875 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11876 }
11877 else
11878 bfd_put_32 (output_bfd, tpoff (info, value),
11879 sgot->contents + cur_off);
11880 cur_off += 4;
11881 }
11882
11883 if (h != NULL)
11884 h->got.offset |= 1;
11885 else
11886 local_got_offsets[r_symndx] |= 1;
11887 }
11888
11889 if ((tls_type & GOT_TLS_GD) && r_type != R_ARM_TLS_GD32 && r_type != R_ARM_TLS_GD32_FDPIC)
11890 off += 8;
11891 else if (tls_type & GOT_TLS_GDESC)
11892 off = offplt;
11893
11894 if (ELF32_R_TYPE(rel->r_info) == R_ARM_TLS_CALL
11895 || ELF32_R_TYPE(rel->r_info) == R_ARM_THM_TLS_CALL)
11896 {
11897 bfd_signed_vma offset;
11898 /* TLS stubs are arm mode. The original symbol is a
11899 data object, so branch_type is bogus. */
11900 branch_type = ST_BRANCH_TO_ARM;
11901 enum elf32_arm_stub_type stub_type
11902 = arm_type_of_stub (info, input_section, rel,
11903 st_type, &branch_type,
11904 (struct elf32_arm_link_hash_entry *)h,
11905 globals->tls_trampoline, globals->root.splt,
11906 input_bfd, sym_name);
11907
11908 if (stub_type != arm_stub_none)
11909 {
11910 struct elf32_arm_stub_hash_entry *stub_entry
11911 = elf32_arm_get_stub_entry
11912 (input_section, globals->root.splt, 0, rel,
11913 globals, stub_type);
11914 offset = (stub_entry->stub_offset
11915 + stub_entry->stub_sec->output_offset
11916 + stub_entry->stub_sec->output_section->vma);
11917 }
11918 else
11919 offset = (globals->root.splt->output_section->vma
11920 + globals->root.splt->output_offset
11921 + globals->tls_trampoline);
11922
11923 if (ELF32_R_TYPE(rel->r_info) == R_ARM_TLS_CALL)
11924 {
11925 unsigned long inst;
11926
11927 offset -= (input_section->output_section->vma
11928 + input_section->output_offset
11929 + rel->r_offset + 8);
11930
11931 inst = offset >> 2;
11932 inst &= 0x00ffffff;
11933 value = inst | (globals->use_blx ? 0xfa000000 : 0xeb000000);
11934 }
11935 else
11936 {
11937 /* Thumb blx encodes the offset in a complicated
11938 fashion. */
11939 unsigned upper_insn, lower_insn;
11940 unsigned neg;
11941
11942 offset -= (input_section->output_section->vma
11943 + input_section->output_offset
11944 + rel->r_offset + 4);
11945
11946 if (stub_type != arm_stub_none
11947 && arm_stub_is_thumb (stub_type))
11948 {
11949 lower_insn = 0xd000;
11950 }
11951 else
11952 {
11953 lower_insn = 0xc000;
11954 /* Round up the offset to a word boundary. */
11955 offset = (offset + 2) & ~2;
11956 }
11957
11958 neg = offset < 0;
11959 upper_insn = (0xf000
11960 | ((offset >> 12) & 0x3ff)
11961 | (neg << 10));
11962 lower_insn |= (((!((offset >> 23) & 1)) ^ neg) << 13)
11963 | (((!((offset >> 22) & 1)) ^ neg) << 11)
11964 | ((offset >> 1) & 0x7ff);
11965 bfd_put_16 (input_bfd, upper_insn, hit_data);
11966 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11967 return bfd_reloc_ok;
11968 }
11969 }
11970 /* These relocations needs special care, as besides the fact
11971 they point somewhere in .gotplt, the addend must be
11972 adjusted accordingly depending on the type of instruction
11973 we refer to. */
11974 else if ((r_type == R_ARM_TLS_GOTDESC) && (tls_type & GOT_TLS_GDESC))
11975 {
11976 unsigned long data, insn;
11977 unsigned thumb;
11978
11979 data = bfd_get_signed_32 (input_bfd, hit_data);
11980 thumb = data & 1;
11981 data &= ~1ul;
11982
11983 if (thumb)
11984 {
11985 insn = bfd_get_16 (input_bfd, contents + rel->r_offset - data);
11986 if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
11987 insn = (insn << 16)
11988 | bfd_get_16 (input_bfd,
11989 contents + rel->r_offset - data + 2);
11990 if ((insn & 0xf800c000) == 0xf000c000)
11991 /* bl/blx */
11992 value = -6;
11993 else if ((insn & 0xffffff00) == 0x4400)
11994 /* add */
11995 value = -5;
11996 else
11997 {
11998 _bfd_error_handler
11999 /* xgettext:c-format */
12000 (_("%pB(%pA+%#" PRIx64 "): "
12001 "unexpected %s instruction '%#lx' "
12002 "referenced by TLS_GOTDESC"),
12003 input_bfd, input_section, (uint64_t) rel->r_offset,
12004 "Thumb", insn);
12005 return bfd_reloc_notsupported;
12006 }
12007 }
12008 else
12009 {
12010 insn = bfd_get_32 (input_bfd, contents + rel->r_offset - data);
12011
12012 switch (insn >> 24)
12013 {
12014 case 0xeb: /* bl */
12015 case 0xfa: /* blx */
12016 value = -4;
12017 break;
12018
12019 case 0xe0: /* add */
12020 value = -8;
12021 break;
12022
12023 default:
12024 _bfd_error_handler
12025 /* xgettext:c-format */
12026 (_("%pB(%pA+%#" PRIx64 "): "
12027 "unexpected %s instruction '%#lx' "
12028 "referenced by TLS_GOTDESC"),
12029 input_bfd, input_section, (uint64_t) rel->r_offset,
12030 "ARM", insn);
12031 return bfd_reloc_notsupported;
12032 }
12033 }
12034
12035 value += ((globals->root.sgotplt->output_section->vma
12036 + globals->root.sgotplt->output_offset + off)
12037 - (input_section->output_section->vma
12038 + input_section->output_offset
12039 + rel->r_offset)
12040 + globals->sgotplt_jump_table_size);
12041 }
12042 else
12043 value = ((globals->root.sgot->output_section->vma
12044 + globals->root.sgot->output_offset + off)
12045 - (input_section->output_section->vma
12046 + input_section->output_offset + rel->r_offset));
12047
12048 if (globals->fdpic_p && (r_type == R_ARM_TLS_GD32_FDPIC ||
12049 r_type == R_ARM_TLS_IE32_FDPIC))
12050 {
12051 /* For FDPIC relocations, resolve to the offset of the GOT
12052 entry from the start of GOT. */
12053 bfd_put_32(output_bfd,
12054 globals->root.sgot->output_offset + off,
12055 contents + rel->r_offset);
12056
12057 return bfd_reloc_ok;
12058 }
12059 else
12060 {
12061 return _bfd_final_link_relocate (howto, input_bfd, input_section,
12062 contents, rel->r_offset, value,
12063 rel->r_addend);
12064 }
12065 }
12066
12067 case R_ARM_TLS_LE32:
12068 if (bfd_link_dll (info))
12069 {
12070 _bfd_error_handler
12071 /* xgettext:c-format */
12072 (_("%pB(%pA+%#" PRIx64 "): %s relocation not permitted "
12073 "in shared object"),
12074 input_bfd, input_section, (uint64_t) rel->r_offset, howto->name);
12075 return bfd_reloc_notsupported;
12076 }
12077 else
12078 value = tpoff (info, value);
12079
12080 return _bfd_final_link_relocate (howto, input_bfd, input_section,
12081 contents, rel->r_offset, value,
12082 rel->r_addend);
12083
12084 case R_ARM_V4BX:
12085 if (globals->fix_v4bx)
12086 {
12087 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12088
12089 /* Ensure that we have a BX instruction. */
12090 BFD_ASSERT ((insn & 0x0ffffff0) == 0x012fff10);
12091
12092 if (globals->fix_v4bx == 2 && (insn & 0xf) != 0xf)
12093 {
12094 /* Branch to veneer. */
12095 bfd_vma glue_addr;
12096 glue_addr = elf32_arm_bx_glue (info, insn & 0xf);
12097 glue_addr -= input_section->output_section->vma
12098 + input_section->output_offset
12099 + rel->r_offset + 8;
12100 insn = (insn & 0xf0000000) | 0x0a000000
12101 | ((glue_addr >> 2) & 0x00ffffff);
12102 }
12103 else
12104 {
12105 /* Preserve Rm (lowest four bits) and the condition code
12106 (highest four bits). Other bits encode MOV PC,Rm. */
12107 insn = (insn & 0xf000000f) | 0x01a0f000;
12108 }
12109
12110 bfd_put_32 (input_bfd, insn, hit_data);
12111 }
12112 return bfd_reloc_ok;
12113
12114 case R_ARM_MOVW_ABS_NC:
12115 case R_ARM_MOVT_ABS:
12116 case R_ARM_MOVW_PREL_NC:
12117 case R_ARM_MOVT_PREL:
12118 /* Until we properly support segment-base-relative addressing then
12119 we assume the segment base to be zero, as for the group relocations.
12120 Thus R_ARM_MOVW_BREL_NC has the same semantics as R_ARM_MOVW_ABS_NC
12121 and R_ARM_MOVT_BREL has the same semantics as R_ARM_MOVT_ABS. */
12122 case R_ARM_MOVW_BREL_NC:
12123 case R_ARM_MOVW_BREL:
12124 case R_ARM_MOVT_BREL:
12125 {
12126 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12127
12128 if (globals->use_rel)
12129 {
12130 addend = ((insn >> 4) & 0xf000) | (insn & 0xfff);
12131 signed_addend = (addend ^ 0x8000) - 0x8000;
12132 }
12133
12134 value += signed_addend;
12135
12136 if (r_type == R_ARM_MOVW_PREL_NC || r_type == R_ARM_MOVT_PREL)
12137 value -= (input_section->output_section->vma
12138 + input_section->output_offset + rel->r_offset);
12139
12140 if (r_type == R_ARM_MOVW_BREL && value >= 0x10000)
12141 return bfd_reloc_overflow;
12142
12143 if (branch_type == ST_BRANCH_TO_THUMB)
12144 value |= 1;
12145
12146 if (r_type == R_ARM_MOVT_ABS || r_type == R_ARM_MOVT_PREL
12147 || r_type == R_ARM_MOVT_BREL)
12148 value >>= 16;
12149
12150 insn &= 0xfff0f000;
12151 insn |= value & 0xfff;
12152 insn |= (value & 0xf000) << 4;
12153 bfd_put_32 (input_bfd, insn, hit_data);
12154 }
12155 return bfd_reloc_ok;
12156
12157 case R_ARM_THM_MOVW_ABS_NC:
12158 case R_ARM_THM_MOVT_ABS:
12159 case R_ARM_THM_MOVW_PREL_NC:
12160 case R_ARM_THM_MOVT_PREL:
12161 /* Until we properly support segment-base-relative addressing then
12162 we assume the segment base to be zero, as for the above relocations.
12163 Thus R_ARM_THM_MOVW_BREL_NC has the same semantics as
12164 R_ARM_THM_MOVW_ABS_NC and R_ARM_THM_MOVT_BREL has the same semantics
12165 as R_ARM_THM_MOVT_ABS. */
12166 case R_ARM_THM_MOVW_BREL_NC:
12167 case R_ARM_THM_MOVW_BREL:
12168 case R_ARM_THM_MOVT_BREL:
12169 {
12170 bfd_vma insn;
12171
12172 insn = bfd_get_16 (input_bfd, hit_data) << 16;
12173 insn |= bfd_get_16 (input_bfd, hit_data + 2);
12174
12175 if (globals->use_rel)
12176 {
12177 addend = ((insn >> 4) & 0xf000)
12178 | ((insn >> 15) & 0x0800)
12179 | ((insn >> 4) & 0x0700)
12180 | (insn & 0x00ff);
12181 signed_addend = (addend ^ 0x8000) - 0x8000;
12182 }
12183
12184 value += signed_addend;
12185
12186 if (r_type == R_ARM_THM_MOVW_PREL_NC || r_type == R_ARM_THM_MOVT_PREL)
12187 value -= (input_section->output_section->vma
12188 + input_section->output_offset + rel->r_offset);
12189
12190 if (r_type == R_ARM_THM_MOVW_BREL && value >= 0x10000)
12191 return bfd_reloc_overflow;
12192
12193 if (branch_type == ST_BRANCH_TO_THUMB)
12194 value |= 1;
12195
12196 if (r_type == R_ARM_THM_MOVT_ABS || r_type == R_ARM_THM_MOVT_PREL
12197 || r_type == R_ARM_THM_MOVT_BREL)
12198 value >>= 16;
12199
12200 insn &= 0xfbf08f00;
12201 insn |= (value & 0xf000) << 4;
12202 insn |= (value & 0x0800) << 15;
12203 insn |= (value & 0x0700) << 4;
12204 insn |= (value & 0x00ff);
12205
12206 bfd_put_16 (input_bfd, insn >> 16, hit_data);
12207 bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
12208 }
12209 return bfd_reloc_ok;
12210
12211 case R_ARM_ALU_PC_G0_NC:
12212 case R_ARM_ALU_PC_G1_NC:
12213 case R_ARM_ALU_PC_G0:
12214 case R_ARM_ALU_PC_G1:
12215 case R_ARM_ALU_PC_G2:
12216 case R_ARM_ALU_SB_G0_NC:
12217 case R_ARM_ALU_SB_G1_NC:
12218 case R_ARM_ALU_SB_G0:
12219 case R_ARM_ALU_SB_G1:
12220 case R_ARM_ALU_SB_G2:
12221 {
12222 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12223 bfd_vma pc = input_section->output_section->vma
12224 + input_section->output_offset + rel->r_offset;
12225 /* sb is the origin of the *segment* containing the symbol. */
12226 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12227 bfd_vma residual;
12228 bfd_vma g_n;
12229 bfd_signed_vma signed_value;
12230 int group = 0;
12231
12232 /* Determine which group of bits to select. */
12233 switch (r_type)
12234 {
12235 case R_ARM_ALU_PC_G0_NC:
12236 case R_ARM_ALU_PC_G0:
12237 case R_ARM_ALU_SB_G0_NC:
12238 case R_ARM_ALU_SB_G0:
12239 group = 0;
12240 break;
12241
12242 case R_ARM_ALU_PC_G1_NC:
12243 case R_ARM_ALU_PC_G1:
12244 case R_ARM_ALU_SB_G1_NC:
12245 case R_ARM_ALU_SB_G1:
12246 group = 1;
12247 break;
12248
12249 case R_ARM_ALU_PC_G2:
12250 case R_ARM_ALU_SB_G2:
12251 group = 2;
12252 break;
12253
12254 default:
12255 abort ();
12256 }
12257
12258 /* If REL, extract the addend from the insn. If RELA, it will
12259 have already been fetched for us. */
12260 if (globals->use_rel)
12261 {
12262 int negative;
12263 bfd_vma constant = insn & 0xff;
12264 bfd_vma rotation = (insn & 0xf00) >> 8;
12265
12266 if (rotation == 0)
12267 signed_addend = constant;
12268 else
12269 {
12270 /* Compensate for the fact that in the instruction, the
12271 rotation is stored in multiples of 2 bits. */
12272 rotation *= 2;
12273
12274 /* Rotate "constant" right by "rotation" bits. */
12275 signed_addend = (constant >> rotation) |
12276 (constant << (8 * sizeof (bfd_vma) - rotation));
12277 }
12278
12279 /* Determine if the instruction is an ADD or a SUB.
12280 (For REL, this determines the sign of the addend.) */
12281 negative = identify_add_or_sub (insn);
12282 if (negative == 0)
12283 {
12284 _bfd_error_handler
12285 /* xgettext:c-format */
12286 (_("%pB(%pA+%#" PRIx64 "): only ADD or SUB instructions "
12287 "are allowed for ALU group relocations"),
12288 input_bfd, input_section, (uint64_t) rel->r_offset);
12289 return bfd_reloc_overflow;
12290 }
12291
12292 signed_addend *= negative;
12293 }
12294
12295 /* Compute the value (X) to go in the place. */
12296 if (r_type == R_ARM_ALU_PC_G0_NC
12297 || r_type == R_ARM_ALU_PC_G1_NC
12298 || r_type == R_ARM_ALU_PC_G0
12299 || r_type == R_ARM_ALU_PC_G1
12300 || r_type == R_ARM_ALU_PC_G2)
12301 /* PC relative. */
12302 signed_value = value - pc + signed_addend;
12303 else
12304 /* Section base relative. */
12305 signed_value = value - sb + signed_addend;
12306
12307 /* If the target symbol is a Thumb function, then set the
12308 Thumb bit in the address. */
12309 if (branch_type == ST_BRANCH_TO_THUMB)
12310 signed_value |= 1;
12311
12312 /* Calculate the value of the relevant G_n, in encoded
12313 constant-with-rotation format. */
12314 g_n = calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12315 group, &residual);
12316
12317 /* Check for overflow if required. */
12318 if ((r_type == R_ARM_ALU_PC_G0
12319 || r_type == R_ARM_ALU_PC_G1
12320 || r_type == R_ARM_ALU_PC_G2
12321 || r_type == R_ARM_ALU_SB_G0
12322 || r_type == R_ARM_ALU_SB_G1
12323 || r_type == R_ARM_ALU_SB_G2) && residual != 0)
12324 {
12325 _bfd_error_handler
12326 /* xgettext:c-format */
12327 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12328 "splitting %#" PRIx64 " for group relocation %s"),
12329 input_bfd, input_section, (uint64_t) rel->r_offset,
12330 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12331 howto->name);
12332 return bfd_reloc_overflow;
12333 }
12334
12335 /* Mask out the value and the ADD/SUB part of the opcode; take care
12336 not to destroy the S bit. */
12337 insn &= 0xff1ff000;
12338
12339 /* Set the opcode according to whether the value to go in the
12340 place is negative. */
12341 if (signed_value < 0)
12342 insn |= 1 << 22;
12343 else
12344 insn |= 1 << 23;
12345
12346 /* Encode the offset. */
12347 insn |= g_n;
12348
12349 bfd_put_32 (input_bfd, insn, hit_data);
12350 }
12351 return bfd_reloc_ok;
12352
12353 case R_ARM_LDR_PC_G0:
12354 case R_ARM_LDR_PC_G1:
12355 case R_ARM_LDR_PC_G2:
12356 case R_ARM_LDR_SB_G0:
12357 case R_ARM_LDR_SB_G1:
12358 case R_ARM_LDR_SB_G2:
12359 {
12360 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12361 bfd_vma pc = input_section->output_section->vma
12362 + input_section->output_offset + rel->r_offset;
12363 /* sb is the origin of the *segment* containing the symbol. */
12364 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12365 bfd_vma residual;
12366 bfd_signed_vma signed_value;
12367 int group = 0;
12368
12369 /* Determine which groups of bits to calculate. */
12370 switch (r_type)
12371 {
12372 case R_ARM_LDR_PC_G0:
12373 case R_ARM_LDR_SB_G0:
12374 group = 0;
12375 break;
12376
12377 case R_ARM_LDR_PC_G1:
12378 case R_ARM_LDR_SB_G1:
12379 group = 1;
12380 break;
12381
12382 case R_ARM_LDR_PC_G2:
12383 case R_ARM_LDR_SB_G2:
12384 group = 2;
12385 break;
12386
12387 default:
12388 abort ();
12389 }
12390
12391 /* If REL, extract the addend from the insn. If RELA, it will
12392 have already been fetched for us. */
12393 if (globals->use_rel)
12394 {
12395 int negative = (insn & (1 << 23)) ? 1 : -1;
12396 signed_addend = negative * (insn & 0xfff);
12397 }
12398
12399 /* Compute the value (X) to go in the place. */
12400 if (r_type == R_ARM_LDR_PC_G0
12401 || r_type == R_ARM_LDR_PC_G1
12402 || r_type == R_ARM_LDR_PC_G2)
12403 /* PC relative. */
12404 signed_value = value - pc + signed_addend;
12405 else
12406 /* Section base relative. */
12407 signed_value = value - sb + signed_addend;
12408
12409 /* Calculate the value of the relevant G_{n-1} to obtain
12410 the residual at that stage. */
12411 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12412 group - 1, &residual);
12413
12414 /* Check for overflow. */
12415 if (residual >= 0x1000)
12416 {
12417 _bfd_error_handler
12418 /* xgettext:c-format */
12419 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12420 "splitting %#" PRIx64 " for group relocation %s"),
12421 input_bfd, input_section, (uint64_t) rel->r_offset,
12422 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12423 howto->name);
12424 return bfd_reloc_overflow;
12425 }
12426
12427 /* Mask out the value and U bit. */
12428 insn &= 0xff7ff000;
12429
12430 /* Set the U bit if the value to go in the place is non-negative. */
12431 if (signed_value >= 0)
12432 insn |= 1 << 23;
12433
12434 /* Encode the offset. */
12435 insn |= residual;
12436
12437 bfd_put_32 (input_bfd, insn, hit_data);
12438 }
12439 return bfd_reloc_ok;
12440
12441 case R_ARM_LDRS_PC_G0:
12442 case R_ARM_LDRS_PC_G1:
12443 case R_ARM_LDRS_PC_G2:
12444 case R_ARM_LDRS_SB_G0:
12445 case R_ARM_LDRS_SB_G1:
12446 case R_ARM_LDRS_SB_G2:
12447 {
12448 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12449 bfd_vma pc = input_section->output_section->vma
12450 + input_section->output_offset + rel->r_offset;
12451 /* sb is the origin of the *segment* containing the symbol. */
12452 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12453 bfd_vma residual;
12454 bfd_signed_vma signed_value;
12455 int group = 0;
12456
12457 /* Determine which groups of bits to calculate. */
12458 switch (r_type)
12459 {
12460 case R_ARM_LDRS_PC_G0:
12461 case R_ARM_LDRS_SB_G0:
12462 group = 0;
12463 break;
12464
12465 case R_ARM_LDRS_PC_G1:
12466 case R_ARM_LDRS_SB_G1:
12467 group = 1;
12468 break;
12469
12470 case R_ARM_LDRS_PC_G2:
12471 case R_ARM_LDRS_SB_G2:
12472 group = 2;
12473 break;
12474
12475 default:
12476 abort ();
12477 }
12478
12479 /* If REL, extract the addend from the insn. If RELA, it will
12480 have already been fetched for us. */
12481 if (globals->use_rel)
12482 {
12483 int negative = (insn & (1 << 23)) ? 1 : -1;
12484 signed_addend = negative * (((insn & 0xf00) >> 4) + (insn & 0xf));
12485 }
12486
12487 /* Compute the value (X) to go in the place. */
12488 if (r_type == R_ARM_LDRS_PC_G0
12489 || r_type == R_ARM_LDRS_PC_G1
12490 || r_type == R_ARM_LDRS_PC_G2)
12491 /* PC relative. */
12492 signed_value = value - pc + signed_addend;
12493 else
12494 /* Section base relative. */
12495 signed_value = value - sb + signed_addend;
12496
12497 /* Calculate the value of the relevant G_{n-1} to obtain
12498 the residual at that stage. */
12499 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12500 group - 1, &residual);
12501
12502 /* Check for overflow. */
12503 if (residual >= 0x100)
12504 {
12505 _bfd_error_handler
12506 /* xgettext:c-format */
12507 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12508 "splitting %#" PRIx64 " for group relocation %s"),
12509 input_bfd, input_section, (uint64_t) rel->r_offset,
12510 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12511 howto->name);
12512 return bfd_reloc_overflow;
12513 }
12514
12515 /* Mask out the value and U bit. */
12516 insn &= 0xff7ff0f0;
12517
12518 /* Set the U bit if the value to go in the place is non-negative. */
12519 if (signed_value >= 0)
12520 insn |= 1 << 23;
12521
12522 /* Encode the offset. */
12523 insn |= ((residual & 0xf0) << 4) | (residual & 0xf);
12524
12525 bfd_put_32 (input_bfd, insn, hit_data);
12526 }
12527 return bfd_reloc_ok;
12528
12529 case R_ARM_LDC_PC_G0:
12530 case R_ARM_LDC_PC_G1:
12531 case R_ARM_LDC_PC_G2:
12532 case R_ARM_LDC_SB_G0:
12533 case R_ARM_LDC_SB_G1:
12534 case R_ARM_LDC_SB_G2:
12535 {
12536 bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12537 bfd_vma pc = input_section->output_section->vma
12538 + input_section->output_offset + rel->r_offset;
12539 /* sb is the origin of the *segment* containing the symbol. */
12540 bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12541 bfd_vma residual;
12542 bfd_signed_vma signed_value;
12543 int group = 0;
12544
12545 /* Determine which groups of bits to calculate. */
12546 switch (r_type)
12547 {
12548 case R_ARM_LDC_PC_G0:
12549 case R_ARM_LDC_SB_G0:
12550 group = 0;
12551 break;
12552
12553 case R_ARM_LDC_PC_G1:
12554 case R_ARM_LDC_SB_G1:
12555 group = 1;
12556 break;
12557
12558 case R_ARM_LDC_PC_G2:
12559 case R_ARM_LDC_SB_G2:
12560 group = 2;
12561 break;
12562
12563 default:
12564 abort ();
12565 }
12566
12567 /* If REL, extract the addend from the insn. If RELA, it will
12568 have already been fetched for us. */
12569 if (globals->use_rel)
12570 {
12571 int negative = (insn & (1 << 23)) ? 1 : -1;
12572 signed_addend = negative * ((insn & 0xff) << 2);
12573 }
12574
12575 /* Compute the value (X) to go in the place. */
12576 if (r_type == R_ARM_LDC_PC_G0
12577 || r_type == R_ARM_LDC_PC_G1
12578 || r_type == R_ARM_LDC_PC_G2)
12579 /* PC relative. */
12580 signed_value = value - pc + signed_addend;
12581 else
12582 /* Section base relative. */
12583 signed_value = value - sb + signed_addend;
12584
12585 /* Calculate the value of the relevant G_{n-1} to obtain
12586 the residual at that stage. */
12587 calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12588 group - 1, &residual);
12589
12590 /* Check for overflow. (The absolute value to go in the place must be
12591 divisible by four and, after having been divided by four, must
12592 fit in eight bits.) */
12593 if ((residual & 0x3) != 0 || residual >= 0x400)
12594 {
12595 _bfd_error_handler
12596 /* xgettext:c-format */
12597 (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12598 "splitting %#" PRIx64 " for group relocation %s"),
12599 input_bfd, input_section, (uint64_t) rel->r_offset,
12600 (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12601 howto->name);
12602 return bfd_reloc_overflow;
12603 }
12604
12605 /* Mask out the value and U bit. */
12606 insn &= 0xff7fff00;
12607
12608 /* Set the U bit if the value to go in the place is non-negative. */
12609 if (signed_value >= 0)
12610 insn |= 1 << 23;
12611
12612 /* Encode the offset. */
12613 insn |= residual >> 2;
12614
12615 bfd_put_32 (input_bfd, insn, hit_data);
12616 }
12617 return bfd_reloc_ok;
12618
12619 case R_ARM_THM_ALU_ABS_G0_NC:
12620 case R_ARM_THM_ALU_ABS_G1_NC:
12621 case R_ARM_THM_ALU_ABS_G2_NC:
12622 case R_ARM_THM_ALU_ABS_G3_NC:
12623 {
12624 const int shift_array[4] = {0, 8, 16, 24};
12625 bfd_vma insn = bfd_get_16 (input_bfd, hit_data);
12626 bfd_vma addr = value;
12627 int shift = shift_array[r_type - R_ARM_THM_ALU_ABS_G0_NC];
12628
12629 /* Compute address. */
12630 if (globals->use_rel)
12631 signed_addend = insn & 0xff;
12632 addr += signed_addend;
12633 if (branch_type == ST_BRANCH_TO_THUMB)
12634 addr |= 1;
12635 /* Clean imm8 insn. */
12636 insn &= 0xff00;
12637 /* And update with correct part of address. */
12638 insn |= (addr >> shift) & 0xff;
12639 /* Update insn. */
12640 bfd_put_16 (input_bfd, insn, hit_data);
12641 }
12642
12643 *unresolved_reloc_p = FALSE;
12644 return bfd_reloc_ok;
12645
12646 case R_ARM_GOTOFFFUNCDESC:
12647 {
12648 if (h == NULL)
12649 {
12650 struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts(input_bfd);
12651 int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12652 int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12653 bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12654 bfd_vma seg = -1;
12655
12656 if (bfd_link_pic(info) && dynindx == 0)
12657 abort();
12658
12659 /* Resolve relocation. */
12660 bfd_put_32(output_bfd, (offset + sgot->output_offset)
12661 , contents + rel->r_offset);
12662 /* Emit R_ARM_FUNCDESC_VALUE or two fixups on funcdesc if
12663 not done yet. */
12664 arm_elf_fill_funcdesc(output_bfd, info,
12665 &local_fdpic_cnts[r_symndx].funcdesc_offset,
12666 dynindx, offset, addr, dynreloc_value, seg);
12667 }
12668 else
12669 {
12670 int dynindx;
12671 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12672 bfd_vma addr;
12673 bfd_vma seg = -1;
12674
12675 /* For static binaries, sym_sec can be null. */
12676 if (sym_sec)
12677 {
12678 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12679 addr = dynreloc_value - sym_sec->output_section->vma;
12680 }
12681 else
12682 {
12683 dynindx = 0;
12684 addr = 0;
12685 }
12686
12687 if (bfd_link_pic(info) && dynindx == 0)
12688 abort();
12689
12690 /* This case cannot occur since funcdesc is allocated by
12691 the dynamic loader so we cannot resolve the relocation. */
12692 if (h->dynindx != -1)
12693 abort();
12694
12695 /* Resolve relocation. */
12696 bfd_put_32(output_bfd, (offset + sgot->output_offset),
12697 contents + rel->r_offset);
12698 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12699 arm_elf_fill_funcdesc(output_bfd, info,
12700 &eh->fdpic_cnts.funcdesc_offset,
12701 dynindx, offset, addr, dynreloc_value, seg);
12702 }
12703 }
12704 *unresolved_reloc_p = FALSE;
12705 return bfd_reloc_ok;
12706
12707 case R_ARM_GOTFUNCDESC:
12708 {
12709 if (h != NULL)
12710 {
12711 Elf_Internal_Rela outrel;
12712
12713 /* Resolve relocation. */
12714 bfd_put_32(output_bfd, ((eh->fdpic_cnts.gotfuncdesc_offset & ~1)
12715 + sgot->output_offset),
12716 contents + rel->r_offset);
12717 /* Add funcdesc and associated R_ARM_FUNCDESC_VALUE. */
12718 if(h->dynindx == -1)
12719 {
12720 int dynindx;
12721 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12722 bfd_vma addr;
12723 bfd_vma seg = -1;
12724
12725 /* For static binaries sym_sec can be null. */
12726 if (sym_sec)
12727 {
12728 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12729 addr = dynreloc_value - sym_sec->output_section->vma;
12730 }
12731 else
12732 {
12733 dynindx = 0;
12734 addr = 0;
12735 }
12736
12737 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12738 arm_elf_fill_funcdesc(output_bfd, info,
12739 &eh->fdpic_cnts.funcdesc_offset,
12740 dynindx, offset, addr, dynreloc_value, seg);
12741 }
12742
12743 /* Add a dynamic relocation on GOT entry if not already done. */
12744 if ((eh->fdpic_cnts.gotfuncdesc_offset & 1) == 0)
12745 {
12746 if (h->dynindx == -1)
12747 {
12748 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12749 if (h->root.type == bfd_link_hash_undefweak)
12750 bfd_put_32(output_bfd, 0, sgot->contents
12751 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12752 else
12753 bfd_put_32(output_bfd, sgot->output_section->vma
12754 + sgot->output_offset
12755 + (eh->fdpic_cnts.funcdesc_offset & ~1),
12756 sgot->contents
12757 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12758 }
12759 else
12760 {
12761 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12762 }
12763 outrel.r_offset = sgot->output_section->vma
12764 + sgot->output_offset
12765 + (eh->fdpic_cnts.gotfuncdesc_offset & ~1);
12766 outrel.r_addend = 0;
12767 if (h->dynindx == -1 && !bfd_link_pic(info))
12768 if (h->root.type == bfd_link_hash_undefweak)
12769 arm_elf_add_rofixup(output_bfd, globals->srofixup, -1);
12770 else
12771 arm_elf_add_rofixup(output_bfd, globals->srofixup,
12772 outrel.r_offset);
12773 else
12774 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12775 eh->fdpic_cnts.gotfuncdesc_offset |= 1;
12776 }
12777 }
12778 else
12779 {
12780 /* Such relocation on static function should not have been
12781 emitted by the compiler. */
12782 abort();
12783 }
12784 }
12785 *unresolved_reloc_p = FALSE;
12786 return bfd_reloc_ok;
12787
12788 case R_ARM_FUNCDESC:
12789 {
12790 if (h == NULL)
12791 {
12792 struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts(input_bfd);
12793 Elf_Internal_Rela outrel;
12794 int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12795 int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12796 bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12797 bfd_vma seg = -1;
12798
12799 if (bfd_link_pic(info) && dynindx == 0)
12800 abort();
12801
12802 /* Replace static FUNCDESC relocation with a
12803 R_ARM_RELATIVE dynamic relocation or with a rofixup for
12804 executable. */
12805 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12806 outrel.r_offset = input_section->output_section->vma
12807 + input_section->output_offset + rel->r_offset;
12808 outrel.r_addend = 0;
12809 if (bfd_link_pic(info))
12810 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12811 else
12812 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
12813
12814 bfd_put_32 (input_bfd, sgot->output_section->vma
12815 + sgot->output_offset + offset, hit_data);
12816
12817 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12818 arm_elf_fill_funcdesc(output_bfd, info,
12819 &local_fdpic_cnts[r_symndx].funcdesc_offset,
12820 dynindx, offset, addr, dynreloc_value, seg);
12821 }
12822 else
12823 {
12824 if (h->dynindx == -1)
12825 {
12826 int dynindx;
12827 int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12828 bfd_vma addr;
12829 bfd_vma seg = -1;
12830 Elf_Internal_Rela outrel;
12831
12832 /* For static binaries sym_sec can be null. */
12833 if (sym_sec)
12834 {
12835 dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12836 addr = dynreloc_value - sym_sec->output_section->vma;
12837 }
12838 else
12839 {
12840 dynindx = 0;
12841 addr = 0;
12842 }
12843
12844 if (bfd_link_pic(info) && dynindx == 0)
12845 abort();
12846
12847 /* Replace static FUNCDESC relocation with a
12848 R_ARM_RELATIVE dynamic relocation. */
12849 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12850 outrel.r_offset = input_section->output_section->vma
12851 + input_section->output_offset + rel->r_offset;
12852 outrel.r_addend = 0;
12853 if (bfd_link_pic(info))
12854 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12855 else
12856 arm_elf_add_rofixup(output_bfd, globals->srofixup, outrel.r_offset);
12857
12858 bfd_put_32 (input_bfd, sgot->output_section->vma
12859 + sgot->output_offset + offset, hit_data);
12860
12861 /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet. */
12862 arm_elf_fill_funcdesc(output_bfd, info,
12863 &eh->fdpic_cnts.funcdesc_offset,
12864 dynindx, offset, addr, dynreloc_value, seg);
12865 }
12866 else
12867 {
12868 Elf_Internal_Rela outrel;
12869
12870 /* Add a dynamic relocation. */
12871 outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12872 outrel.r_offset = input_section->output_section->vma
12873 + input_section->output_offset + rel->r_offset;
12874 outrel.r_addend = 0;
12875 elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12876 }
12877 }
12878 }
12879 *unresolved_reloc_p = FALSE;
12880 return bfd_reloc_ok;
12881
12882 case R_ARM_THM_BF16:
12883 {
12884 bfd_vma relocation;
12885 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12886 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12887
12888 if (globals->use_rel)
12889 {
12890 bfd_vma immA = (upper_insn & 0x001f);
12891 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12892 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12893 addend = (immA << 12);
12894 addend |= (immB << 2);
12895 addend |= (immC << 1);
12896 addend |= 1;
12897 /* Sign extend. */
12898 signed_addend = (addend & 0x10000) ? addend - (1 << 17) : addend;
12899 }
12900
12901 relocation = value + signed_addend;
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 & 0x0001f000) >> 12;
12909 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12910 bfd_vma immC = (relocation & 0x00000002) >> 1;
12911
12912 upper_insn = (upper_insn & 0xffe0) | 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
12923 case R_ARM_THM_BF12:
12924 {
12925 bfd_vma relocation;
12926 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12927 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12928
12929 if (globals->use_rel)
12930 {
12931 bfd_vma immA = (upper_insn & 0x0001);
12932 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12933 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12934 addend = (immA << 12);
12935 addend |= (immB << 2);
12936 addend |= (immC << 1);
12937 addend |= 1;
12938 /* Sign extend. */
12939 addend = (addend & 0x1000) ? addend - (1 << 13) : addend;
12940 signed_addend = addend;
12941 }
12942
12943 relocation = value + signed_addend;
12944 relocation -= (input_section->output_section->vma
12945 + input_section->output_offset
12946 + rel->r_offset);
12947
12948 /* Put RELOCATION back into the insn. */
12949 {
12950 bfd_vma immA = (relocation & 0x00001000) >> 12;
12951 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12952 bfd_vma immC = (relocation & 0x00000002) >> 1;
12953
12954 upper_insn = (upper_insn & 0xfffe) | immA;
12955 lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12956 }
12957
12958 /* Put the relocated value back in the object file: */
12959 bfd_put_16 (input_bfd, upper_insn, hit_data);
12960 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12961
12962 return bfd_reloc_ok;
12963 }
12964
12965 case R_ARM_THM_BF18:
12966 {
12967 bfd_vma relocation;
12968 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12969 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12970
12971 if (globals->use_rel)
12972 {
12973 bfd_vma immA = (upper_insn & 0x007f);
12974 bfd_vma immB = (lower_insn & 0x07fe) >> 1;
12975 bfd_vma immC = (lower_insn & 0x0800) >> 11;
12976 addend = (immA << 12);
12977 addend |= (immB << 2);
12978 addend |= (immC << 1);
12979 addend |= 1;
12980 /* Sign extend. */
12981 addend = (addend & 0x40000) ? addend - (1 << 19) : addend;
12982 signed_addend = addend;
12983 }
12984
12985 relocation = value + signed_addend;
12986 relocation -= (input_section->output_section->vma
12987 + input_section->output_offset
12988 + rel->r_offset);
12989
12990 /* Put RELOCATION back into the insn. */
12991 {
12992 bfd_vma immA = (relocation & 0x0007f000) >> 12;
12993 bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12994 bfd_vma immC = (relocation & 0x00000002) >> 1;
12995
12996 upper_insn = (upper_insn & 0xff80) | immA;
12997 lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12998 }
12999
13000 /* Put the relocated value back in the object file: */
13001 bfd_put_16 (input_bfd, upper_insn, hit_data);
13002 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
13003
13004 return bfd_reloc_ok;
13005 }
13006
13007 default:
13008 return bfd_reloc_notsupported;
13009 }
13010 }
13011
13012 /* Add INCREMENT to the reloc (of type HOWTO) at ADDRESS. */
13013 static void
13014 arm_add_to_rel (bfd * abfd,
13015 bfd_byte * address,
13016 reloc_howto_type * howto,
13017 bfd_signed_vma increment)
13018 {
13019 bfd_signed_vma addend;
13020
13021 if (howto->type == R_ARM_THM_CALL
13022 || howto->type == R_ARM_THM_JUMP24)
13023 {
13024 int upper_insn, lower_insn;
13025 int upper, lower;
13026
13027 upper_insn = bfd_get_16 (abfd, address);
13028 lower_insn = bfd_get_16 (abfd, address + 2);
13029 upper = upper_insn & 0x7ff;
13030 lower = lower_insn & 0x7ff;
13031
13032 addend = (upper << 12) | (lower << 1);
13033 addend += increment;
13034 addend >>= 1;
13035
13036 upper_insn = (upper_insn & 0xf800) | ((addend >> 11) & 0x7ff);
13037 lower_insn = (lower_insn & 0xf800) | (addend & 0x7ff);
13038
13039 bfd_put_16 (abfd, (bfd_vma) upper_insn, address);
13040 bfd_put_16 (abfd, (bfd_vma) lower_insn, address + 2);
13041 }
13042 else
13043 {
13044 bfd_vma contents;
13045
13046 contents = bfd_get_32 (abfd, address);
13047
13048 /* Get the (signed) value from the instruction. */
13049 addend = contents & howto->src_mask;
13050 if (addend & ((howto->src_mask + 1) >> 1))
13051 {
13052 bfd_signed_vma mask;
13053
13054 mask = -1;
13055 mask &= ~ howto->src_mask;
13056 addend |= mask;
13057 }
13058
13059 /* Add in the increment, (which is a byte value). */
13060 switch (howto->type)
13061 {
13062 default:
13063 addend += increment;
13064 break;
13065
13066 case R_ARM_PC24:
13067 case R_ARM_PLT32:
13068 case R_ARM_CALL:
13069 case R_ARM_JUMP24:
13070 addend <<= howto->size;
13071 addend += increment;
13072
13073 /* Should we check for overflow here ? */
13074
13075 /* Drop any undesired bits. */
13076 addend >>= howto->rightshift;
13077 break;
13078 }
13079
13080 contents = (contents & ~ howto->dst_mask) | (addend & howto->dst_mask);
13081
13082 bfd_put_32 (abfd, contents, address);
13083 }
13084 }
13085
13086 #define IS_ARM_TLS_RELOC(R_TYPE) \
13087 ((R_TYPE) == R_ARM_TLS_GD32 \
13088 || (R_TYPE) == R_ARM_TLS_GD32_FDPIC \
13089 || (R_TYPE) == R_ARM_TLS_LDO32 \
13090 || (R_TYPE) == R_ARM_TLS_LDM32 \
13091 || (R_TYPE) == R_ARM_TLS_LDM32_FDPIC \
13092 || (R_TYPE) == R_ARM_TLS_DTPOFF32 \
13093 || (R_TYPE) == R_ARM_TLS_DTPMOD32 \
13094 || (R_TYPE) == R_ARM_TLS_TPOFF32 \
13095 || (R_TYPE) == R_ARM_TLS_LE32 \
13096 || (R_TYPE) == R_ARM_TLS_IE32 \
13097 || (R_TYPE) == R_ARM_TLS_IE32_FDPIC \
13098 || IS_ARM_TLS_GNU_RELOC (R_TYPE))
13099
13100 /* Specific set of relocations for the gnu tls dialect. */
13101 #define IS_ARM_TLS_GNU_RELOC(R_TYPE) \
13102 ((R_TYPE) == R_ARM_TLS_GOTDESC \
13103 || (R_TYPE) == R_ARM_TLS_CALL \
13104 || (R_TYPE) == R_ARM_THM_TLS_CALL \
13105 || (R_TYPE) == R_ARM_TLS_DESCSEQ \
13106 || (R_TYPE) == R_ARM_THM_TLS_DESCSEQ)
13107
13108 /* Relocate an ARM ELF section. */
13109
13110 static bfd_boolean
13111 elf32_arm_relocate_section (bfd * output_bfd,
13112 struct bfd_link_info * info,
13113 bfd * input_bfd,
13114 asection * input_section,
13115 bfd_byte * contents,
13116 Elf_Internal_Rela * relocs,
13117 Elf_Internal_Sym * local_syms,
13118 asection ** local_sections)
13119 {
13120 Elf_Internal_Shdr *symtab_hdr;
13121 struct elf_link_hash_entry **sym_hashes;
13122 Elf_Internal_Rela *rel;
13123 Elf_Internal_Rela *relend;
13124 const char *name;
13125 struct elf32_arm_link_hash_table * globals;
13126
13127 globals = elf32_arm_hash_table (info);
13128 if (globals == NULL)
13129 return FALSE;
13130
13131 symtab_hdr = & elf_symtab_hdr (input_bfd);
13132 sym_hashes = elf_sym_hashes (input_bfd);
13133
13134 rel = relocs;
13135 relend = relocs + input_section->reloc_count;
13136 for (; rel < relend; rel++)
13137 {
13138 int r_type;
13139 reloc_howto_type * howto;
13140 unsigned long r_symndx;
13141 Elf_Internal_Sym * sym;
13142 asection * sec;
13143 struct elf_link_hash_entry * h;
13144 bfd_vma relocation;
13145 bfd_reloc_status_type r;
13146 arelent bfd_reloc;
13147 char sym_type;
13148 bfd_boolean unresolved_reloc = FALSE;
13149 char *error_message = NULL;
13150
13151 r_symndx = ELF32_R_SYM (rel->r_info);
13152 r_type = ELF32_R_TYPE (rel->r_info);
13153 r_type = arm_real_reloc_type (globals, r_type);
13154
13155 if ( r_type == R_ARM_GNU_VTENTRY
13156 || r_type == R_ARM_GNU_VTINHERIT)
13157 continue;
13158
13159 howto = bfd_reloc.howto = elf32_arm_howto_from_type (r_type);
13160
13161 if (howto == NULL)
13162 return _bfd_unrecognized_reloc (input_bfd, input_section, r_type);
13163
13164 h = NULL;
13165 sym = NULL;
13166 sec = NULL;
13167
13168 if (r_symndx < symtab_hdr->sh_info)
13169 {
13170 sym = local_syms + r_symndx;
13171 sym_type = ELF32_ST_TYPE (sym->st_info);
13172 sec = local_sections[r_symndx];
13173
13174 /* An object file might have a reference to a local
13175 undefined symbol. This is a daft object file, but we
13176 should at least do something about it. V4BX & NONE
13177 relocations do not use the symbol and are explicitly
13178 allowed to use the undefined symbol, so allow those.
13179 Likewise for relocations against STN_UNDEF. */
13180 if (r_type != R_ARM_V4BX
13181 && r_type != R_ARM_NONE
13182 && r_symndx != STN_UNDEF
13183 && bfd_is_und_section (sec)
13184 && ELF_ST_BIND (sym->st_info) != STB_WEAK)
13185 (*info->callbacks->undefined_symbol)
13186 (info, bfd_elf_string_from_elf_section
13187 (input_bfd, symtab_hdr->sh_link, sym->st_name),
13188 input_bfd, input_section,
13189 rel->r_offset, TRUE);
13190
13191 if (globals->use_rel)
13192 {
13193 relocation = (sec->output_section->vma
13194 + sec->output_offset
13195 + sym->st_value);
13196 if (!bfd_link_relocatable (info)
13197 && (sec->flags & SEC_MERGE)
13198 && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13199 {
13200 asection *msec;
13201 bfd_vma addend, value;
13202
13203 switch (r_type)
13204 {
13205 case R_ARM_MOVW_ABS_NC:
13206 case R_ARM_MOVT_ABS:
13207 value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13208 addend = ((value & 0xf0000) >> 4) | (value & 0xfff);
13209 addend = (addend ^ 0x8000) - 0x8000;
13210 break;
13211
13212 case R_ARM_THM_MOVW_ABS_NC:
13213 case R_ARM_THM_MOVT_ABS:
13214 value = bfd_get_16 (input_bfd, contents + rel->r_offset)
13215 << 16;
13216 value |= bfd_get_16 (input_bfd,
13217 contents + rel->r_offset + 2);
13218 addend = ((value & 0xf7000) >> 4) | (value & 0xff)
13219 | ((value & 0x04000000) >> 15);
13220 addend = (addend ^ 0x8000) - 0x8000;
13221 break;
13222
13223 default:
13224 if (howto->rightshift
13225 || (howto->src_mask & (howto->src_mask + 1)))
13226 {
13227 _bfd_error_handler
13228 /* xgettext:c-format */
13229 (_("%pB(%pA+%#" PRIx64 "): "
13230 "%s relocation against SEC_MERGE section"),
13231 input_bfd, input_section,
13232 (uint64_t) rel->r_offset, howto->name);
13233 return FALSE;
13234 }
13235
13236 value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13237
13238 /* Get the (signed) value from the instruction. */
13239 addend = value & howto->src_mask;
13240 if (addend & ((howto->src_mask + 1) >> 1))
13241 {
13242 bfd_signed_vma mask;
13243
13244 mask = -1;
13245 mask &= ~ howto->src_mask;
13246 addend |= mask;
13247 }
13248 break;
13249 }
13250
13251 msec = sec;
13252 addend =
13253 _bfd_elf_rel_local_sym (output_bfd, sym, &msec, addend)
13254 - relocation;
13255 addend += msec->output_section->vma + msec->output_offset;
13256
13257 /* Cases here must match those in the preceding
13258 switch statement. */
13259 switch (r_type)
13260 {
13261 case R_ARM_MOVW_ABS_NC:
13262 case R_ARM_MOVT_ABS:
13263 value = (value & 0xfff0f000) | ((addend & 0xf000) << 4)
13264 | (addend & 0xfff);
13265 bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13266 break;
13267
13268 case R_ARM_THM_MOVW_ABS_NC:
13269 case R_ARM_THM_MOVT_ABS:
13270 value = (value & 0xfbf08f00) | ((addend & 0xf700) << 4)
13271 | (addend & 0xff) | ((addend & 0x0800) << 15);
13272 bfd_put_16 (input_bfd, value >> 16,
13273 contents + rel->r_offset);
13274 bfd_put_16 (input_bfd, value,
13275 contents + rel->r_offset + 2);
13276 break;
13277
13278 default:
13279 value = (value & ~ howto->dst_mask)
13280 | (addend & howto->dst_mask);
13281 bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13282 break;
13283 }
13284 }
13285 }
13286 else
13287 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
13288 }
13289 else
13290 {
13291 bfd_boolean warned, ignored;
13292
13293 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
13294 r_symndx, symtab_hdr, sym_hashes,
13295 h, sec, relocation,
13296 unresolved_reloc, warned, ignored);
13297
13298 sym_type = h->type;
13299 }
13300
13301 if (sec != NULL && discarded_section (sec))
13302 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
13303 rel, 1, relend, howto, 0, contents);
13304
13305 if (bfd_link_relocatable (info))
13306 {
13307 /* This is a relocatable link. We don't have to change
13308 anything, unless the reloc is against a section symbol,
13309 in which case we have to adjust according to where the
13310 section symbol winds up in the output section. */
13311 if (sym != NULL && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13312 {
13313 if (globals->use_rel)
13314 arm_add_to_rel (input_bfd, contents + rel->r_offset,
13315 howto, (bfd_signed_vma) sec->output_offset);
13316 else
13317 rel->r_addend += sec->output_offset;
13318 }
13319 continue;
13320 }
13321
13322 if (h != NULL)
13323 name = h->root.root.string;
13324 else
13325 {
13326 name = (bfd_elf_string_from_elf_section
13327 (input_bfd, symtab_hdr->sh_link, sym->st_name));
13328 if (name == NULL || *name == '\0')
13329 name = bfd_section_name (sec);
13330 }
13331
13332 if (r_symndx != STN_UNDEF
13333 && r_type != R_ARM_NONE
13334 && (h == NULL
13335 || h->root.type == bfd_link_hash_defined
13336 || h->root.type == bfd_link_hash_defweak)
13337 && IS_ARM_TLS_RELOC (r_type) != (sym_type == STT_TLS))
13338 {
13339 _bfd_error_handler
13340 ((sym_type == STT_TLS
13341 /* xgettext:c-format */
13342 ? _("%pB(%pA+%#" PRIx64 "): %s used with TLS symbol %s")
13343 /* xgettext:c-format */
13344 : _("%pB(%pA+%#" PRIx64 "): %s used with non-TLS symbol %s")),
13345 input_bfd,
13346 input_section,
13347 (uint64_t) rel->r_offset,
13348 howto->name,
13349 name);
13350 }
13351
13352 /* We call elf32_arm_final_link_relocate unless we're completely
13353 done, i.e., the relaxation produced the final output we want,
13354 and we won't let anybody mess with it. Also, we have to do
13355 addend adjustments in case of a R_ARM_TLS_GOTDESC relocation
13356 both in relaxed and non-relaxed cases. */
13357 if ((elf32_arm_tls_transition (info, r_type, h) != (unsigned)r_type)
13358 || (IS_ARM_TLS_GNU_RELOC (r_type)
13359 && !((h ? elf32_arm_hash_entry (h)->tls_type :
13360 elf32_arm_local_got_tls_type (input_bfd)[r_symndx])
13361 & GOT_TLS_GDESC)))
13362 {
13363 r = elf32_arm_tls_relax (globals, input_bfd, input_section,
13364 contents, rel, h == NULL);
13365 /* This may have been marked unresolved because it came from
13366 a shared library. But we've just dealt with that. */
13367 unresolved_reloc = 0;
13368 }
13369 else
13370 r = bfd_reloc_continue;
13371
13372 if (r == bfd_reloc_continue)
13373 {
13374 unsigned char branch_type =
13375 h ? ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
13376 : ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
13377
13378 r = elf32_arm_final_link_relocate (howto, input_bfd, output_bfd,
13379 input_section, contents, rel,
13380 relocation, info, sec, name,
13381 sym_type, branch_type, h,
13382 &unresolved_reloc,
13383 &error_message);
13384 }
13385
13386 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
13387 because such sections are not SEC_ALLOC and thus ld.so will
13388 not process them. */
13389 if (unresolved_reloc
13390 && !((input_section->flags & SEC_DEBUGGING) != 0
13391 && h->def_dynamic)
13392 && _bfd_elf_section_offset (output_bfd, info, input_section,
13393 rel->r_offset) != (bfd_vma) -1)
13394 {
13395 _bfd_error_handler
13396 /* xgettext:c-format */
13397 (_("%pB(%pA+%#" PRIx64 "): "
13398 "unresolvable %s relocation against symbol `%s'"),
13399 input_bfd,
13400 input_section,
13401 (uint64_t) rel->r_offset,
13402 howto->name,
13403 h->root.root.string);
13404 return FALSE;
13405 }
13406
13407 if (r != bfd_reloc_ok)
13408 {
13409 switch (r)
13410 {
13411 case bfd_reloc_overflow:
13412 /* If the overflowing reloc was to an undefined symbol,
13413 we have already printed one error message and there
13414 is no point complaining again. */
13415 if (!h || h->root.type != bfd_link_hash_undefined)
13416 (*info->callbacks->reloc_overflow)
13417 (info, (h ? &h->root : NULL), name, howto->name,
13418 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
13419 break;
13420
13421 case bfd_reloc_undefined:
13422 (*info->callbacks->undefined_symbol)
13423 (info, name, input_bfd, input_section, rel->r_offset, TRUE);
13424 break;
13425
13426 case bfd_reloc_outofrange:
13427 error_message = _("out of range");
13428 goto common_error;
13429
13430 case bfd_reloc_notsupported:
13431 error_message = _("unsupported relocation");
13432 goto common_error;
13433
13434 case bfd_reloc_dangerous:
13435 /* error_message should already be set. */
13436 goto common_error;
13437
13438 default:
13439 error_message = _("unknown error");
13440 /* Fall through. */
13441
13442 common_error:
13443 BFD_ASSERT (error_message != NULL);
13444 (*info->callbacks->reloc_dangerous)
13445 (info, error_message, input_bfd, input_section, rel->r_offset);
13446 break;
13447 }
13448 }
13449 }
13450
13451 return TRUE;
13452 }
13453
13454 /* Add a new unwind edit to the list described by HEAD, TAIL. If TINDEX is zero,
13455 adds the edit to the start of the list. (The list must be built in order of
13456 ascending TINDEX: the function's callers are primarily responsible for
13457 maintaining that condition). */
13458
13459 static void
13460 add_unwind_table_edit (arm_unwind_table_edit **head,
13461 arm_unwind_table_edit **tail,
13462 arm_unwind_edit_type type,
13463 asection *linked_section,
13464 unsigned int tindex)
13465 {
13466 arm_unwind_table_edit *new_edit = (arm_unwind_table_edit *)
13467 xmalloc (sizeof (arm_unwind_table_edit));
13468
13469 new_edit->type = type;
13470 new_edit->linked_section = linked_section;
13471 new_edit->index = tindex;
13472
13473 if (tindex > 0)
13474 {
13475 new_edit->next = NULL;
13476
13477 if (*tail)
13478 (*tail)->next = new_edit;
13479
13480 (*tail) = new_edit;
13481
13482 if (!*head)
13483 (*head) = new_edit;
13484 }
13485 else
13486 {
13487 new_edit->next = *head;
13488
13489 if (!*tail)
13490 *tail = new_edit;
13491
13492 *head = new_edit;
13493 }
13494 }
13495
13496 static _arm_elf_section_data *get_arm_elf_section_data (asection *);
13497
13498 /* Increase the size of EXIDX_SEC by ADJUST bytes. ADJUST mau be negative. */
13499 static void
13500 adjust_exidx_size(asection *exidx_sec, int adjust)
13501 {
13502 asection *out_sec;
13503
13504 if (!exidx_sec->rawsize)
13505 exidx_sec->rawsize = exidx_sec->size;
13506
13507 bfd_set_section_size (exidx_sec, exidx_sec->size + adjust);
13508 out_sec = exidx_sec->output_section;
13509 /* Adjust size of output section. */
13510 bfd_set_section_size (out_sec, out_sec->size +adjust);
13511 }
13512
13513 /* Insert an EXIDX_CANTUNWIND marker at the end of a section. */
13514 static void
13515 insert_cantunwind_after(asection *text_sec, asection *exidx_sec)
13516 {
13517 struct _arm_elf_section_data *exidx_arm_data;
13518
13519 exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13520 add_unwind_table_edit (
13521 &exidx_arm_data->u.exidx.unwind_edit_list,
13522 &exidx_arm_data->u.exidx.unwind_edit_tail,
13523 INSERT_EXIDX_CANTUNWIND_AT_END, text_sec, UINT_MAX);
13524
13525 exidx_arm_data->additional_reloc_count++;
13526
13527 adjust_exidx_size(exidx_sec, 8);
13528 }
13529
13530 /* Scan .ARM.exidx tables, and create a list describing edits which should be
13531 made to those tables, such that:
13532
13533 1. Regions without unwind data are marked with EXIDX_CANTUNWIND entries.
13534 2. Duplicate entries are merged together (EXIDX_CANTUNWIND, or unwind
13535 codes which have been inlined into the index).
13536
13537 If MERGE_EXIDX_ENTRIES is false, duplicate entries are not merged.
13538
13539 The edits are applied when the tables are written
13540 (in elf32_arm_write_section). */
13541
13542 bfd_boolean
13543 elf32_arm_fix_exidx_coverage (asection **text_section_order,
13544 unsigned int num_text_sections,
13545 struct bfd_link_info *info,
13546 bfd_boolean merge_exidx_entries)
13547 {
13548 bfd *inp;
13549 unsigned int last_second_word = 0, i;
13550 asection *last_exidx_sec = NULL;
13551 asection *last_text_sec = NULL;
13552 int last_unwind_type = -1;
13553
13554 /* Walk over all EXIDX sections, and create backlinks from the corrsponding
13555 text sections. */
13556 for (inp = info->input_bfds; inp != NULL; inp = inp->link.next)
13557 {
13558 asection *sec;
13559
13560 for (sec = inp->sections; sec != NULL; sec = sec->next)
13561 {
13562 struct bfd_elf_section_data *elf_sec = elf_section_data (sec);
13563 Elf_Internal_Shdr *hdr = &elf_sec->this_hdr;
13564
13565 if (!hdr || hdr->sh_type != SHT_ARM_EXIDX)
13566 continue;
13567
13568 if (elf_sec->linked_to)
13569 {
13570 Elf_Internal_Shdr *linked_hdr
13571 = &elf_section_data (elf_sec->linked_to)->this_hdr;
13572 struct _arm_elf_section_data *linked_sec_arm_data
13573 = get_arm_elf_section_data (linked_hdr->bfd_section);
13574
13575 if (linked_sec_arm_data == NULL)
13576 continue;
13577
13578 /* Link this .ARM.exidx section back from the text section it
13579 describes. */
13580 linked_sec_arm_data->u.text.arm_exidx_sec = sec;
13581 }
13582 }
13583 }
13584
13585 /* Walk all text sections in order of increasing VMA. Eilminate duplicate
13586 index table entries (EXIDX_CANTUNWIND and inlined unwind opcodes),
13587 and add EXIDX_CANTUNWIND entries for sections with no unwind table data. */
13588
13589 for (i = 0; i < num_text_sections; i++)
13590 {
13591 asection *sec = text_section_order[i];
13592 asection *exidx_sec;
13593 struct _arm_elf_section_data *arm_data = get_arm_elf_section_data (sec);
13594 struct _arm_elf_section_data *exidx_arm_data;
13595 bfd_byte *contents = NULL;
13596 int deleted_exidx_bytes = 0;
13597 bfd_vma j;
13598 arm_unwind_table_edit *unwind_edit_head = NULL;
13599 arm_unwind_table_edit *unwind_edit_tail = NULL;
13600 Elf_Internal_Shdr *hdr;
13601 bfd *ibfd;
13602
13603 if (arm_data == NULL)
13604 continue;
13605
13606 exidx_sec = arm_data->u.text.arm_exidx_sec;
13607 if (exidx_sec == NULL)
13608 {
13609 /* Section has no unwind data. */
13610 if (last_unwind_type == 0 || !last_exidx_sec)
13611 continue;
13612
13613 /* Ignore zero sized sections. */
13614 if (sec->size == 0)
13615 continue;
13616
13617 insert_cantunwind_after(last_text_sec, last_exidx_sec);
13618 last_unwind_type = 0;
13619 continue;
13620 }
13621
13622 /* Skip /DISCARD/ sections. */
13623 if (bfd_is_abs_section (exidx_sec->output_section))
13624 continue;
13625
13626 hdr = &elf_section_data (exidx_sec)->this_hdr;
13627 if (hdr->sh_type != SHT_ARM_EXIDX)
13628 continue;
13629
13630 exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13631 if (exidx_arm_data == NULL)
13632 continue;
13633
13634 ibfd = exidx_sec->owner;
13635
13636 if (hdr->contents != NULL)
13637 contents = hdr->contents;
13638 else if (! bfd_malloc_and_get_section (ibfd, exidx_sec, &contents))
13639 /* An error? */
13640 continue;
13641
13642 if (last_unwind_type > 0)
13643 {
13644 unsigned int first_word = bfd_get_32 (ibfd, contents);
13645 /* Add cantunwind if first unwind item does not match section
13646 start. */
13647 if (first_word != sec->vma)
13648 {
13649 insert_cantunwind_after (last_text_sec, last_exidx_sec);
13650 last_unwind_type = 0;
13651 }
13652 }
13653
13654 for (j = 0; j < hdr->sh_size; j += 8)
13655 {
13656 unsigned int second_word = bfd_get_32 (ibfd, contents + j + 4);
13657 int unwind_type;
13658 int elide = 0;
13659
13660 /* An EXIDX_CANTUNWIND entry. */
13661 if (second_word == 1)
13662 {
13663 if (last_unwind_type == 0)
13664 elide = 1;
13665 unwind_type = 0;
13666 }
13667 /* Inlined unwinding data. Merge if equal to previous. */
13668 else if ((second_word & 0x80000000) != 0)
13669 {
13670 if (merge_exidx_entries
13671 && last_second_word == second_word && last_unwind_type == 1)
13672 elide = 1;
13673 unwind_type = 1;
13674 last_second_word = second_word;
13675 }
13676 /* Normal table entry. In theory we could merge these too,
13677 but duplicate entries are likely to be much less common. */
13678 else
13679 unwind_type = 2;
13680
13681 if (elide && !bfd_link_relocatable (info))
13682 {
13683 add_unwind_table_edit (&unwind_edit_head, &unwind_edit_tail,
13684 DELETE_EXIDX_ENTRY, NULL, j / 8);
13685
13686 deleted_exidx_bytes += 8;
13687 }
13688
13689 last_unwind_type = unwind_type;
13690 }
13691
13692 /* Free contents if we allocated it ourselves. */
13693 if (contents != hdr->contents)
13694 free (contents);
13695
13696 /* Record edits to be applied later (in elf32_arm_write_section). */
13697 exidx_arm_data->u.exidx.unwind_edit_list = unwind_edit_head;
13698 exidx_arm_data->u.exidx.unwind_edit_tail = unwind_edit_tail;
13699
13700 if (deleted_exidx_bytes > 0)
13701 adjust_exidx_size(exidx_sec, -deleted_exidx_bytes);
13702
13703 last_exidx_sec = exidx_sec;
13704 last_text_sec = sec;
13705 }
13706
13707 /* Add terminating CANTUNWIND entry. */
13708 if (!bfd_link_relocatable (info) && last_exidx_sec
13709 && last_unwind_type != 0)
13710 insert_cantunwind_after(last_text_sec, last_exidx_sec);
13711
13712 return TRUE;
13713 }
13714
13715 static bfd_boolean
13716 elf32_arm_output_glue_section (struct bfd_link_info *info, bfd *obfd,
13717 bfd *ibfd, const char *name)
13718 {
13719 asection *sec, *osec;
13720
13721 sec = bfd_get_linker_section (ibfd, name);
13722 if (sec == NULL || (sec->flags & SEC_EXCLUDE) != 0)
13723 return TRUE;
13724
13725 osec = sec->output_section;
13726 if (elf32_arm_write_section (obfd, info, sec, sec->contents))
13727 return TRUE;
13728
13729 if (! bfd_set_section_contents (obfd, osec, sec->contents,
13730 sec->output_offset, sec->size))
13731 return FALSE;
13732
13733 return TRUE;
13734 }
13735
13736 static bfd_boolean
13737 elf32_arm_final_link (bfd *abfd, struct bfd_link_info *info)
13738 {
13739 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
13740 asection *sec, *osec;
13741
13742 if (globals == NULL)
13743 return FALSE;
13744
13745 /* Invoke the regular ELF backend linker to do all the work. */
13746 if (!bfd_elf_final_link (abfd, info))
13747 return FALSE;
13748
13749 /* Process stub sections (eg BE8 encoding, ...). */
13750 struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
13751 unsigned int i;
13752 for (i=0; i<htab->top_id; i++)
13753 {
13754 sec = htab->stub_group[i].stub_sec;
13755 /* Only process it once, in its link_sec slot. */
13756 if (sec && i == htab->stub_group[i].link_sec->id)
13757 {
13758 osec = sec->output_section;
13759 elf32_arm_write_section (abfd, info, sec, sec->contents);
13760 if (! bfd_set_section_contents (abfd, osec, sec->contents,
13761 sec->output_offset, sec->size))
13762 return FALSE;
13763 }
13764 }
13765
13766 /* Write out any glue sections now that we have created all the
13767 stubs. */
13768 if (globals->bfd_of_glue_owner != NULL)
13769 {
13770 if (! elf32_arm_output_glue_section (info, abfd,
13771 globals->bfd_of_glue_owner,
13772 ARM2THUMB_GLUE_SECTION_NAME))
13773 return FALSE;
13774
13775 if (! elf32_arm_output_glue_section (info, abfd,
13776 globals->bfd_of_glue_owner,
13777 THUMB2ARM_GLUE_SECTION_NAME))
13778 return FALSE;
13779
13780 if (! elf32_arm_output_glue_section (info, abfd,
13781 globals->bfd_of_glue_owner,
13782 VFP11_ERRATUM_VENEER_SECTION_NAME))
13783 return FALSE;
13784
13785 if (! elf32_arm_output_glue_section (info, abfd,
13786 globals->bfd_of_glue_owner,
13787 STM32L4XX_ERRATUM_VENEER_SECTION_NAME))
13788 return FALSE;
13789
13790 if (! elf32_arm_output_glue_section (info, abfd,
13791 globals->bfd_of_glue_owner,
13792 ARM_BX_GLUE_SECTION_NAME))
13793 return FALSE;
13794 }
13795
13796 return TRUE;
13797 }
13798
13799 /* Return a best guess for the machine number based on the attributes. */
13800
13801 static unsigned int
13802 bfd_arm_get_mach_from_attributes (bfd * abfd)
13803 {
13804 int arch = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_CPU_arch);
13805
13806 switch (arch)
13807 {
13808 case TAG_CPU_ARCH_PRE_V4: return bfd_mach_arm_3M;
13809 case TAG_CPU_ARCH_V4: return bfd_mach_arm_4;
13810 case TAG_CPU_ARCH_V4T: return bfd_mach_arm_4T;
13811 case TAG_CPU_ARCH_V5T: return bfd_mach_arm_5T;
13812
13813 case TAG_CPU_ARCH_V5TE:
13814 {
13815 char * name;
13816
13817 BFD_ASSERT (Tag_CPU_name < NUM_KNOWN_OBJ_ATTRIBUTES);
13818 name = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_CPU_name].s;
13819
13820 if (name)
13821 {
13822 if (strcmp (name, "IWMMXT2") == 0)
13823 return bfd_mach_arm_iWMMXt2;
13824
13825 if (strcmp (name, "IWMMXT") == 0)
13826 return bfd_mach_arm_iWMMXt;
13827
13828 if (strcmp (name, "XSCALE") == 0)
13829 {
13830 int wmmx;
13831
13832 BFD_ASSERT (Tag_WMMX_arch < NUM_KNOWN_OBJ_ATTRIBUTES);
13833 wmmx = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_WMMX_arch].i;
13834 switch (wmmx)
13835 {
13836 case 1: return bfd_mach_arm_iWMMXt;
13837 case 2: return bfd_mach_arm_iWMMXt2;
13838 default: return bfd_mach_arm_XScale;
13839 }
13840 }
13841 }
13842
13843 return bfd_mach_arm_5TE;
13844 }
13845
13846 case TAG_CPU_ARCH_V5TEJ:
13847 return bfd_mach_arm_5TEJ;
13848 case TAG_CPU_ARCH_V6:
13849 return bfd_mach_arm_6;
13850 case TAG_CPU_ARCH_V6KZ:
13851 return bfd_mach_arm_6KZ;
13852 case TAG_CPU_ARCH_V6T2:
13853 return bfd_mach_arm_6T2;
13854 case TAG_CPU_ARCH_V6K:
13855 return bfd_mach_arm_6K;
13856 case TAG_CPU_ARCH_V7:
13857 return bfd_mach_arm_7;
13858 case TAG_CPU_ARCH_V6_M:
13859 return bfd_mach_arm_6M;
13860 case TAG_CPU_ARCH_V6S_M:
13861 return bfd_mach_arm_6SM;
13862 case TAG_CPU_ARCH_V7E_M:
13863 return bfd_mach_arm_7EM;
13864 case TAG_CPU_ARCH_V8:
13865 return bfd_mach_arm_8;
13866 case TAG_CPU_ARCH_V8R:
13867 return bfd_mach_arm_8R;
13868 case TAG_CPU_ARCH_V8M_BASE:
13869 return bfd_mach_arm_8M_BASE;
13870 case TAG_CPU_ARCH_V8M_MAIN:
13871 return bfd_mach_arm_8M_MAIN;
13872 case TAG_CPU_ARCH_V8_1M_MAIN:
13873 return bfd_mach_arm_8_1M_MAIN;
13874
13875 default:
13876 /* Force entry to be added for any new known Tag_CPU_arch value. */
13877 BFD_ASSERT (arch > MAX_TAG_CPU_ARCH);
13878
13879 /* Unknown Tag_CPU_arch value. */
13880 return bfd_mach_arm_unknown;
13881 }
13882 }
13883
13884 /* Set the right machine number. */
13885
13886 static bfd_boolean
13887 elf32_arm_object_p (bfd *abfd)
13888 {
13889 unsigned int mach;
13890
13891 mach = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
13892
13893 if (mach == bfd_mach_arm_unknown)
13894 {
13895 if (elf_elfheader (abfd)->e_flags & EF_ARM_MAVERICK_FLOAT)
13896 mach = bfd_mach_arm_ep9312;
13897 else
13898 mach = bfd_arm_get_mach_from_attributes (abfd);
13899 }
13900
13901 bfd_default_set_arch_mach (abfd, bfd_arch_arm, mach);
13902 return TRUE;
13903 }
13904
13905 /* Function to keep ARM specific flags in the ELF header. */
13906
13907 static bfd_boolean
13908 elf32_arm_set_private_flags (bfd *abfd, flagword flags)
13909 {
13910 if (elf_flags_init (abfd)
13911 && elf_elfheader (abfd)->e_flags != flags)
13912 {
13913 if (EF_ARM_EABI_VERSION (flags) == EF_ARM_EABI_UNKNOWN)
13914 {
13915 if (flags & EF_ARM_INTERWORK)
13916 _bfd_error_handler
13917 (_("warning: not setting interworking flag of %pB since it has already been specified as non-interworking"),
13918 abfd);
13919 else
13920 _bfd_error_handler
13921 (_("warning: clearing the interworking flag of %pB due to outside request"),
13922 abfd);
13923 }
13924 }
13925 else
13926 {
13927 elf_elfheader (abfd)->e_flags = flags;
13928 elf_flags_init (abfd) = TRUE;
13929 }
13930
13931 return TRUE;
13932 }
13933
13934 /* Copy backend specific data from one object module to another. */
13935
13936 static bfd_boolean
13937 elf32_arm_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
13938 {
13939 flagword in_flags;
13940 flagword out_flags;
13941
13942 if (! is_arm_elf (ibfd) || ! is_arm_elf (obfd))
13943 return TRUE;
13944
13945 in_flags = elf_elfheader (ibfd)->e_flags;
13946 out_flags = elf_elfheader (obfd)->e_flags;
13947
13948 if (elf_flags_init (obfd)
13949 && EF_ARM_EABI_VERSION (out_flags) == EF_ARM_EABI_UNKNOWN
13950 && in_flags != out_flags)
13951 {
13952 /* Cannot mix APCS26 and APCS32 code. */
13953 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
13954 return FALSE;
13955
13956 /* Cannot mix float APCS and non-float APCS code. */
13957 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
13958 return FALSE;
13959
13960 /* If the src and dest have different interworking flags
13961 then turn off the interworking bit. */
13962 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
13963 {
13964 if (out_flags & EF_ARM_INTERWORK)
13965 _bfd_error_handler
13966 (_("warning: clearing the interworking flag of %pB because non-interworking code in %pB has been linked with it"),
13967 obfd, ibfd);
13968
13969 in_flags &= ~EF_ARM_INTERWORK;
13970 }
13971
13972 /* Likewise for PIC, though don't warn for this case. */
13973 if ((in_flags & EF_ARM_PIC) != (out_flags & EF_ARM_PIC))
13974 in_flags &= ~EF_ARM_PIC;
13975 }
13976
13977 elf_elfheader (obfd)->e_flags = in_flags;
13978 elf_flags_init (obfd) = TRUE;
13979
13980 return _bfd_elf_copy_private_bfd_data (ibfd, obfd);
13981 }
13982
13983 /* Values for Tag_ABI_PCS_R9_use. */
13984 enum
13985 {
13986 AEABI_R9_V6,
13987 AEABI_R9_SB,
13988 AEABI_R9_TLS,
13989 AEABI_R9_unused
13990 };
13991
13992 /* Values for Tag_ABI_PCS_RW_data. */
13993 enum
13994 {
13995 AEABI_PCS_RW_data_absolute,
13996 AEABI_PCS_RW_data_PCrel,
13997 AEABI_PCS_RW_data_SBrel,
13998 AEABI_PCS_RW_data_unused
13999 };
14000
14001 /* Values for Tag_ABI_enum_size. */
14002 enum
14003 {
14004 AEABI_enum_unused,
14005 AEABI_enum_short,
14006 AEABI_enum_wide,
14007 AEABI_enum_forced_wide
14008 };
14009
14010 /* Determine whether an object attribute tag takes an integer, a
14011 string or both. */
14012
14013 static int
14014 elf32_arm_obj_attrs_arg_type (int tag)
14015 {
14016 if (tag == Tag_compatibility)
14017 return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL;
14018 else if (tag == Tag_nodefaults)
14019 return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_NO_DEFAULT;
14020 else if (tag == Tag_CPU_raw_name || tag == Tag_CPU_name)
14021 return ATTR_TYPE_FLAG_STR_VAL;
14022 else if (tag < 32)
14023 return ATTR_TYPE_FLAG_INT_VAL;
14024 else
14025 return (tag & 1) != 0 ? ATTR_TYPE_FLAG_STR_VAL : ATTR_TYPE_FLAG_INT_VAL;
14026 }
14027
14028 /* The ABI defines that Tag_conformance should be emitted first, and that
14029 Tag_nodefaults should be second (if either is defined). This sets those
14030 two positions, and bumps up the position of all the remaining tags to
14031 compensate. */
14032 static int
14033 elf32_arm_obj_attrs_order (int num)
14034 {
14035 if (num == LEAST_KNOWN_OBJ_ATTRIBUTE)
14036 return Tag_conformance;
14037 if (num == LEAST_KNOWN_OBJ_ATTRIBUTE + 1)
14038 return Tag_nodefaults;
14039 if ((num - 2) < Tag_nodefaults)
14040 return num - 2;
14041 if ((num - 1) < Tag_conformance)
14042 return num - 1;
14043 return num;
14044 }
14045
14046 /* Attribute numbers >=64 (mod 128) can be safely ignored. */
14047 static bfd_boolean
14048 elf32_arm_obj_attrs_handle_unknown (bfd *abfd, int tag)
14049 {
14050 if ((tag & 127) < 64)
14051 {
14052 _bfd_error_handler
14053 (_("%pB: unknown mandatory EABI object attribute %d"),
14054 abfd, tag);
14055 bfd_set_error (bfd_error_bad_value);
14056 return FALSE;
14057 }
14058 else
14059 {
14060 _bfd_error_handler
14061 (_("warning: %pB: unknown EABI object attribute %d"),
14062 abfd, tag);
14063 return TRUE;
14064 }
14065 }
14066
14067 /* Read the architecture from the Tag_also_compatible_with attribute, if any.
14068 Returns -1 if no architecture could be read. */
14069
14070 static int
14071 get_secondary_compatible_arch (bfd *abfd)
14072 {
14073 obj_attribute *attr =
14074 &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
14075
14076 /* Note: the tag and its argument below are uleb128 values, though
14077 currently-defined values fit in one byte for each. */
14078 if (attr->s
14079 && attr->s[0] == Tag_CPU_arch
14080 && (attr->s[1] & 128) != 128
14081 && attr->s[2] == 0)
14082 return attr->s[1];
14083
14084 /* This tag is "safely ignorable", so don't complain if it looks funny. */
14085 return -1;
14086 }
14087
14088 /* Set, or unset, the architecture of the Tag_also_compatible_with attribute.
14089 The tag is removed if ARCH is -1. */
14090
14091 static void
14092 set_secondary_compatible_arch (bfd *abfd, int arch)
14093 {
14094 obj_attribute *attr =
14095 &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
14096
14097 if (arch == -1)
14098 {
14099 attr->s = NULL;
14100 return;
14101 }
14102
14103 /* Note: the tag and its argument below are uleb128 values, though
14104 currently-defined values fit in one byte for each. */
14105 if (!attr->s)
14106 attr->s = (char *) bfd_alloc (abfd, 3);
14107 attr->s[0] = Tag_CPU_arch;
14108 attr->s[1] = arch;
14109 attr->s[2] = '\0';
14110 }
14111
14112 /* Combine two values for Tag_CPU_arch, taking secondary compatibility tags
14113 into account. */
14114
14115 static int
14116 tag_cpu_arch_combine (bfd *ibfd, int oldtag, int *secondary_compat_out,
14117 int newtag, int secondary_compat)
14118 {
14119 #define T(X) TAG_CPU_ARCH_##X
14120 int tagl, tagh, result;
14121 const int v6t2[] =
14122 {
14123 T(V6T2), /* PRE_V4. */
14124 T(V6T2), /* V4. */
14125 T(V6T2), /* V4T. */
14126 T(V6T2), /* V5T. */
14127 T(V6T2), /* V5TE. */
14128 T(V6T2), /* V5TEJ. */
14129 T(V6T2), /* V6. */
14130 T(V7), /* V6KZ. */
14131 T(V6T2) /* V6T2. */
14132 };
14133 const int v6k[] =
14134 {
14135 T(V6K), /* PRE_V4. */
14136 T(V6K), /* V4. */
14137 T(V6K), /* V4T. */
14138 T(V6K), /* V5T. */
14139 T(V6K), /* V5TE. */
14140 T(V6K), /* V5TEJ. */
14141 T(V6K), /* V6. */
14142 T(V6KZ), /* V6KZ. */
14143 T(V7), /* V6T2. */
14144 T(V6K) /* V6K. */
14145 };
14146 const int v7[] =
14147 {
14148 T(V7), /* PRE_V4. */
14149 T(V7), /* V4. */
14150 T(V7), /* V4T. */
14151 T(V7), /* V5T. */
14152 T(V7), /* V5TE. */
14153 T(V7), /* V5TEJ. */
14154 T(V7), /* V6. */
14155 T(V7), /* V6KZ. */
14156 T(V7), /* V6T2. */
14157 T(V7), /* V6K. */
14158 T(V7) /* V7. */
14159 };
14160 const int v6_m[] =
14161 {
14162 -1, /* PRE_V4. */
14163 -1, /* V4. */
14164 T(V6K), /* V4T. */
14165 T(V6K), /* V5T. */
14166 T(V6K), /* V5TE. */
14167 T(V6K), /* V5TEJ. */
14168 T(V6K), /* V6. */
14169 T(V6KZ), /* V6KZ. */
14170 T(V7), /* V6T2. */
14171 T(V6K), /* V6K. */
14172 T(V7), /* V7. */
14173 T(V6_M) /* V6_M. */
14174 };
14175 const int v6s_m[] =
14176 {
14177 -1, /* PRE_V4. */
14178 -1, /* V4. */
14179 T(V6K), /* V4T. */
14180 T(V6K), /* V5T. */
14181 T(V6K), /* V5TE. */
14182 T(V6K), /* V5TEJ. */
14183 T(V6K), /* V6. */
14184 T(V6KZ), /* V6KZ. */
14185 T(V7), /* V6T2. */
14186 T(V6K), /* V6K. */
14187 T(V7), /* V7. */
14188 T(V6S_M), /* V6_M. */
14189 T(V6S_M) /* V6S_M. */
14190 };
14191 const int v7e_m[] =
14192 {
14193 -1, /* PRE_V4. */
14194 -1, /* V4. */
14195 T(V7E_M), /* V4T. */
14196 T(V7E_M), /* V5T. */
14197 T(V7E_M), /* V5TE. */
14198 T(V7E_M), /* V5TEJ. */
14199 T(V7E_M), /* V6. */
14200 T(V7E_M), /* V6KZ. */
14201 T(V7E_M), /* V6T2. */
14202 T(V7E_M), /* V6K. */
14203 T(V7E_M), /* V7. */
14204 T(V7E_M), /* V6_M. */
14205 T(V7E_M), /* V6S_M. */
14206 T(V7E_M) /* V7E_M. */
14207 };
14208 const int v8[] =
14209 {
14210 T(V8), /* PRE_V4. */
14211 T(V8), /* V4. */
14212 T(V8), /* V4T. */
14213 T(V8), /* V5T. */
14214 T(V8), /* V5TE. */
14215 T(V8), /* V5TEJ. */
14216 T(V8), /* V6. */
14217 T(V8), /* V6KZ. */
14218 T(V8), /* V6T2. */
14219 T(V8), /* V6K. */
14220 T(V8), /* V7. */
14221 T(V8), /* V6_M. */
14222 T(V8), /* V6S_M. */
14223 T(V8), /* V7E_M. */
14224 T(V8) /* V8. */
14225 };
14226 const int v8r[] =
14227 {
14228 T(V8R), /* PRE_V4. */
14229 T(V8R), /* V4. */
14230 T(V8R), /* V4T. */
14231 T(V8R), /* V5T. */
14232 T(V8R), /* V5TE. */
14233 T(V8R), /* V5TEJ. */
14234 T(V8R), /* V6. */
14235 T(V8R), /* V6KZ. */
14236 T(V8R), /* V6T2. */
14237 T(V8R), /* V6K. */
14238 T(V8R), /* V7. */
14239 T(V8R), /* V6_M. */
14240 T(V8R), /* V6S_M. */
14241 T(V8R), /* V7E_M. */
14242 T(V8), /* V8. */
14243 T(V8R), /* V8R. */
14244 };
14245 const int v8m_baseline[] =
14246 {
14247 -1, /* PRE_V4. */
14248 -1, /* V4. */
14249 -1, /* V4T. */
14250 -1, /* V5T. */
14251 -1, /* V5TE. */
14252 -1, /* V5TEJ. */
14253 -1, /* V6. */
14254 -1, /* V6KZ. */
14255 -1, /* V6T2. */
14256 -1, /* V6K. */
14257 -1, /* V7. */
14258 T(V8M_BASE), /* V6_M. */
14259 T(V8M_BASE), /* V6S_M. */
14260 -1, /* V7E_M. */
14261 -1, /* V8. */
14262 -1, /* V8R. */
14263 T(V8M_BASE) /* V8-M BASELINE. */
14264 };
14265 const int v8m_mainline[] =
14266 {
14267 -1, /* PRE_V4. */
14268 -1, /* V4. */
14269 -1, /* V4T. */
14270 -1, /* V5T. */
14271 -1, /* V5TE. */
14272 -1, /* V5TEJ. */
14273 -1, /* V6. */
14274 -1, /* V6KZ. */
14275 -1, /* V6T2. */
14276 -1, /* V6K. */
14277 T(V8M_MAIN), /* V7. */
14278 T(V8M_MAIN), /* V6_M. */
14279 T(V8M_MAIN), /* V6S_M. */
14280 T(V8M_MAIN), /* V7E_M. */
14281 -1, /* V8. */
14282 -1, /* V8R. */
14283 T(V8M_MAIN), /* V8-M BASELINE. */
14284 T(V8M_MAIN) /* V8-M MAINLINE. */
14285 };
14286 const int v8_1m_mainline[] =
14287 {
14288 -1, /* PRE_V4. */
14289 -1, /* V4. */
14290 -1, /* V4T. */
14291 -1, /* V5T. */
14292 -1, /* V5TE. */
14293 -1, /* V5TEJ. */
14294 -1, /* V6. */
14295 -1, /* V6KZ. */
14296 -1, /* V6T2. */
14297 -1, /* V6K. */
14298 T(V8_1M_MAIN), /* V7. */
14299 T(V8_1M_MAIN), /* V6_M. */
14300 T(V8_1M_MAIN), /* V6S_M. */
14301 T(V8_1M_MAIN), /* V7E_M. */
14302 -1, /* V8. */
14303 -1, /* V8R. */
14304 T(V8_1M_MAIN), /* V8-M BASELINE. */
14305 T(V8_1M_MAIN), /* V8-M MAINLINE. */
14306 -1, /* Unused (18). */
14307 -1, /* Unused (19). */
14308 -1, /* Unused (20). */
14309 T(V8_1M_MAIN) /* V8.1-M MAINLINE. */
14310 };
14311 const int v4t_plus_v6_m[] =
14312 {
14313 -1, /* PRE_V4. */
14314 -1, /* V4. */
14315 T(V4T), /* V4T. */
14316 T(V5T), /* V5T. */
14317 T(V5TE), /* V5TE. */
14318 T(V5TEJ), /* V5TEJ. */
14319 T(V6), /* V6. */
14320 T(V6KZ), /* V6KZ. */
14321 T(V6T2), /* V6T2. */
14322 T(V6K), /* V6K. */
14323 T(V7), /* V7. */
14324 T(V6_M), /* V6_M. */
14325 T(V6S_M), /* V6S_M. */
14326 T(V7E_M), /* V7E_M. */
14327 T(V8), /* V8. */
14328 -1, /* V8R. */
14329 T(V8M_BASE), /* V8-M BASELINE. */
14330 T(V8M_MAIN), /* V8-M MAINLINE. */
14331 -1, /* Unused (18). */
14332 -1, /* Unused (19). */
14333 -1, /* Unused (20). */
14334 T(V8_1M_MAIN), /* V8.1-M MAINLINE. */
14335 T(V4T_PLUS_V6_M) /* V4T plus V6_M. */
14336 };
14337 const int *comb[] =
14338 {
14339 v6t2,
14340 v6k,
14341 v7,
14342 v6_m,
14343 v6s_m,
14344 v7e_m,
14345 v8,
14346 v8r,
14347 v8m_baseline,
14348 v8m_mainline,
14349 NULL,
14350 NULL,
14351 NULL,
14352 v8_1m_mainline,
14353 /* Pseudo-architecture. */
14354 v4t_plus_v6_m
14355 };
14356
14357 /* Check we've not got a higher architecture than we know about. */
14358
14359 if (oldtag > MAX_TAG_CPU_ARCH || newtag > MAX_TAG_CPU_ARCH)
14360 {
14361 _bfd_error_handler (_("error: %pB: unknown CPU architecture"), ibfd);
14362 return -1;
14363 }
14364
14365 /* Override old tag if we have a Tag_also_compatible_with on the output. */
14366
14367 if ((oldtag == T(V6_M) && *secondary_compat_out == T(V4T))
14368 || (oldtag == T(V4T) && *secondary_compat_out == T(V6_M)))
14369 oldtag = T(V4T_PLUS_V6_M);
14370
14371 /* And override the new tag if we have a Tag_also_compatible_with on the
14372 input. */
14373
14374 if ((newtag == T(V6_M) && secondary_compat == T(V4T))
14375 || (newtag == T(V4T) && secondary_compat == T(V6_M)))
14376 newtag = T(V4T_PLUS_V6_M);
14377
14378 tagl = (oldtag < newtag) ? oldtag : newtag;
14379 result = tagh = (oldtag > newtag) ? oldtag : newtag;
14380
14381 /* Architectures before V6KZ add features monotonically. */
14382 if (tagh <= TAG_CPU_ARCH_V6KZ)
14383 return result;
14384
14385 result = comb[tagh - T(V6T2)] ? comb[tagh - T(V6T2)][tagl] : -1;
14386
14387 /* Use Tag_CPU_arch == V4T and Tag_also_compatible_with (Tag_CPU_arch V6_M)
14388 as the canonical version. */
14389 if (result == T(V4T_PLUS_V6_M))
14390 {
14391 result = T(V4T);
14392 *secondary_compat_out = T(V6_M);
14393 }
14394 else
14395 *secondary_compat_out = -1;
14396
14397 if (result == -1)
14398 {
14399 _bfd_error_handler (_("error: %pB: conflicting CPU architectures %d/%d"),
14400 ibfd, oldtag, newtag);
14401 return -1;
14402 }
14403
14404 return result;
14405 #undef T
14406 }
14407
14408 /* Query attributes object to see if integer divide instructions may be
14409 present in an object. */
14410 static bfd_boolean
14411 elf32_arm_attributes_accept_div (const obj_attribute *attr)
14412 {
14413 int arch = attr[Tag_CPU_arch].i;
14414 int profile = attr[Tag_CPU_arch_profile].i;
14415
14416 switch (attr[Tag_DIV_use].i)
14417 {
14418 case 0:
14419 /* Integer divide allowed if instruction contained in archetecture. */
14420 if (arch == TAG_CPU_ARCH_V7 && (profile == 'R' || profile == 'M'))
14421 return TRUE;
14422 else if (arch >= TAG_CPU_ARCH_V7E_M)
14423 return TRUE;
14424 else
14425 return FALSE;
14426
14427 case 1:
14428 /* Integer divide explicitly prohibited. */
14429 return FALSE;
14430
14431 default:
14432 /* Unrecognised case - treat as allowing divide everywhere. */
14433 case 2:
14434 /* Integer divide allowed in ARM state. */
14435 return TRUE;
14436 }
14437 }
14438
14439 /* Query attributes object to see if integer divide instructions are
14440 forbidden to be in the object. This is not the inverse of
14441 elf32_arm_attributes_accept_div. */
14442 static bfd_boolean
14443 elf32_arm_attributes_forbid_div (const obj_attribute *attr)
14444 {
14445 return attr[Tag_DIV_use].i == 1;
14446 }
14447
14448 /* Merge EABI object attributes from IBFD into OBFD. Raise an error if there
14449 are conflicting attributes. */
14450
14451 static bfd_boolean
14452 elf32_arm_merge_eabi_attributes (bfd *ibfd, struct bfd_link_info *info)
14453 {
14454 bfd *obfd = info->output_bfd;
14455 obj_attribute *in_attr;
14456 obj_attribute *out_attr;
14457 /* Some tags have 0 = don't care, 1 = strong requirement,
14458 2 = weak requirement. */
14459 static const int order_021[3] = {0, 2, 1};
14460 int i;
14461 bfd_boolean result = TRUE;
14462 const char *sec_name = get_elf_backend_data (ibfd)->obj_attrs_section;
14463
14464 /* Skip the linker stubs file. This preserves previous behavior
14465 of accepting unknown attributes in the first input file - but
14466 is that a bug? */
14467 if (ibfd->flags & BFD_LINKER_CREATED)
14468 return TRUE;
14469
14470 /* Skip any input that hasn't attribute section.
14471 This enables to link object files without attribute section with
14472 any others. */
14473 if (bfd_get_section_by_name (ibfd, sec_name) == NULL)
14474 return TRUE;
14475
14476 if (!elf_known_obj_attributes_proc (obfd)[0].i)
14477 {
14478 /* This is the first object. Copy the attributes. */
14479 _bfd_elf_copy_obj_attributes (ibfd, obfd);
14480
14481 out_attr = elf_known_obj_attributes_proc (obfd);
14482
14483 /* Use the Tag_null value to indicate the attributes have been
14484 initialized. */
14485 out_attr[0].i = 1;
14486
14487 /* We do not output objects with Tag_MPextension_use_legacy - we move
14488 the attribute's value to Tag_MPextension_use. */
14489 if (out_attr[Tag_MPextension_use_legacy].i != 0)
14490 {
14491 if (out_attr[Tag_MPextension_use].i != 0
14492 && out_attr[Tag_MPextension_use_legacy].i
14493 != out_attr[Tag_MPextension_use].i)
14494 {
14495 _bfd_error_handler
14496 (_("Error: %pB has both the current and legacy "
14497 "Tag_MPextension_use attributes"), ibfd);
14498 result = FALSE;
14499 }
14500
14501 out_attr[Tag_MPextension_use] =
14502 out_attr[Tag_MPextension_use_legacy];
14503 out_attr[Tag_MPextension_use_legacy].type = 0;
14504 out_attr[Tag_MPextension_use_legacy].i = 0;
14505 }
14506
14507 return result;
14508 }
14509
14510 in_attr = elf_known_obj_attributes_proc (ibfd);
14511 out_attr = elf_known_obj_attributes_proc (obfd);
14512 /* This needs to happen before Tag_ABI_FP_number_model is merged. */
14513 if (in_attr[Tag_ABI_VFP_args].i != out_attr[Tag_ABI_VFP_args].i)
14514 {
14515 /* Ignore mismatches if the object doesn't use floating point or is
14516 floating point ABI independent. */
14517 if (out_attr[Tag_ABI_FP_number_model].i == AEABI_FP_number_model_none
14518 || (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14519 && out_attr[Tag_ABI_VFP_args].i == AEABI_VFP_args_compatible))
14520 out_attr[Tag_ABI_VFP_args].i = in_attr[Tag_ABI_VFP_args].i;
14521 else if (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14522 && in_attr[Tag_ABI_VFP_args].i != AEABI_VFP_args_compatible)
14523 {
14524 _bfd_error_handler
14525 (_("error: %pB uses VFP register arguments, %pB does not"),
14526 in_attr[Tag_ABI_VFP_args].i ? ibfd : obfd,
14527 in_attr[Tag_ABI_VFP_args].i ? obfd : ibfd);
14528 result = FALSE;
14529 }
14530 }
14531
14532 for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
14533 {
14534 /* Merge this attribute with existing attributes. */
14535 switch (i)
14536 {
14537 case Tag_CPU_raw_name:
14538 case Tag_CPU_name:
14539 /* These are merged after Tag_CPU_arch. */
14540 break;
14541
14542 case Tag_ABI_optimization_goals:
14543 case Tag_ABI_FP_optimization_goals:
14544 /* Use the first value seen. */
14545 break;
14546
14547 case Tag_CPU_arch:
14548 {
14549 int secondary_compat = -1, secondary_compat_out = -1;
14550 unsigned int saved_out_attr = out_attr[i].i;
14551 int arch_attr;
14552 static const char *name_table[] =
14553 {
14554 /* These aren't real CPU names, but we can't guess
14555 that from the architecture version alone. */
14556 "Pre v4",
14557 "ARM v4",
14558 "ARM v4T",
14559 "ARM v5T",
14560 "ARM v5TE",
14561 "ARM v5TEJ",
14562 "ARM v6",
14563 "ARM v6KZ",
14564 "ARM v6T2",
14565 "ARM v6K",
14566 "ARM v7",
14567 "ARM v6-M",
14568 "ARM v6S-M",
14569 "ARM v8",
14570 "",
14571 "ARM v8-M.baseline",
14572 "ARM v8-M.mainline",
14573 };
14574
14575 /* Merge Tag_CPU_arch and Tag_also_compatible_with. */
14576 secondary_compat = get_secondary_compatible_arch (ibfd);
14577 secondary_compat_out = get_secondary_compatible_arch (obfd);
14578 arch_attr = tag_cpu_arch_combine (ibfd, out_attr[i].i,
14579 &secondary_compat_out,
14580 in_attr[i].i,
14581 secondary_compat);
14582
14583 /* Return with error if failed to merge. */
14584 if (arch_attr == -1)
14585 return FALSE;
14586
14587 out_attr[i].i = arch_attr;
14588
14589 set_secondary_compatible_arch (obfd, secondary_compat_out);
14590
14591 /* Merge Tag_CPU_name and Tag_CPU_raw_name. */
14592 if (out_attr[i].i == saved_out_attr)
14593 ; /* Leave the names alone. */
14594 else if (out_attr[i].i == in_attr[i].i)
14595 {
14596 /* The output architecture has been changed to match the
14597 input architecture. Use the input names. */
14598 out_attr[Tag_CPU_name].s = in_attr[Tag_CPU_name].s
14599 ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_name].s)
14600 : NULL;
14601 out_attr[Tag_CPU_raw_name].s = in_attr[Tag_CPU_raw_name].s
14602 ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_raw_name].s)
14603 : NULL;
14604 }
14605 else
14606 {
14607 out_attr[Tag_CPU_name].s = NULL;
14608 out_attr[Tag_CPU_raw_name].s = NULL;
14609 }
14610
14611 /* If we still don't have a value for Tag_CPU_name,
14612 make one up now. Tag_CPU_raw_name remains blank. */
14613 if (out_attr[Tag_CPU_name].s == NULL
14614 && out_attr[i].i < ARRAY_SIZE (name_table))
14615 out_attr[Tag_CPU_name].s =
14616 _bfd_elf_attr_strdup (obfd, name_table[out_attr[i].i]);
14617 }
14618 break;
14619
14620 case Tag_ARM_ISA_use:
14621 case Tag_THUMB_ISA_use:
14622 case Tag_WMMX_arch:
14623 case Tag_Advanced_SIMD_arch:
14624 /* ??? Do Advanced_SIMD (NEON) and WMMX conflict? */
14625 case Tag_ABI_FP_rounding:
14626 case Tag_ABI_FP_exceptions:
14627 case Tag_ABI_FP_user_exceptions:
14628 case Tag_ABI_FP_number_model:
14629 case Tag_FP_HP_extension:
14630 case Tag_CPU_unaligned_access:
14631 case Tag_T2EE_use:
14632 case Tag_MPextension_use:
14633 case Tag_MVE_arch:
14634 /* Use the largest value specified. */
14635 if (in_attr[i].i > out_attr[i].i)
14636 out_attr[i].i = in_attr[i].i;
14637 break;
14638
14639 case Tag_ABI_align_preserved:
14640 case Tag_ABI_PCS_RO_data:
14641 /* Use the smallest value specified. */
14642 if (in_attr[i].i < out_attr[i].i)
14643 out_attr[i].i = in_attr[i].i;
14644 break;
14645
14646 case Tag_ABI_align_needed:
14647 if ((in_attr[i].i > 0 || out_attr[i].i > 0)
14648 && (in_attr[Tag_ABI_align_preserved].i == 0
14649 || out_attr[Tag_ABI_align_preserved].i == 0))
14650 {
14651 /* This error message should be enabled once all non-conformant
14652 binaries in the toolchain have had the attributes set
14653 properly.
14654 _bfd_error_handler
14655 (_("error: %pB: 8-byte data alignment conflicts with %pB"),
14656 obfd, ibfd);
14657 result = FALSE; */
14658 }
14659 /* Fall through. */
14660 case Tag_ABI_FP_denormal:
14661 case Tag_ABI_PCS_GOT_use:
14662 /* Use the "greatest" from the sequence 0, 2, 1, or the largest
14663 value if greater than 2 (for future-proofing). */
14664 if ((in_attr[i].i > 2 && in_attr[i].i > out_attr[i].i)
14665 || (in_attr[i].i <= 2 && out_attr[i].i <= 2
14666 && order_021[in_attr[i].i] > order_021[out_attr[i].i]))
14667 out_attr[i].i = in_attr[i].i;
14668 break;
14669
14670 case Tag_Virtualization_use:
14671 /* The virtualization tag effectively stores two bits of
14672 information: the intended use of TrustZone (in bit 0), and the
14673 intended use of Virtualization (in bit 1). */
14674 if (out_attr[i].i == 0)
14675 out_attr[i].i = in_attr[i].i;
14676 else if (in_attr[i].i != 0
14677 && in_attr[i].i != out_attr[i].i)
14678 {
14679 if (in_attr[i].i <= 3 && out_attr[i].i <= 3)
14680 out_attr[i].i = 3;
14681 else
14682 {
14683 _bfd_error_handler
14684 (_("error: %pB: unable to merge virtualization attributes "
14685 "with %pB"),
14686 obfd, ibfd);
14687 result = FALSE;
14688 }
14689 }
14690 break;
14691
14692 case Tag_CPU_arch_profile:
14693 if (out_attr[i].i != in_attr[i].i)
14694 {
14695 /* 0 will merge with anything.
14696 'A' and 'S' merge to 'A'.
14697 'R' and 'S' merge to 'R'.
14698 'M' and 'A|R|S' is an error. */
14699 if (out_attr[i].i == 0
14700 || (out_attr[i].i == 'S'
14701 && (in_attr[i].i == 'A' || in_attr[i].i == 'R')))
14702 out_attr[i].i = in_attr[i].i;
14703 else if (in_attr[i].i == 0
14704 || (in_attr[i].i == 'S'
14705 && (out_attr[i].i == 'A' || out_attr[i].i == 'R')))
14706 ; /* Do nothing. */
14707 else
14708 {
14709 _bfd_error_handler
14710 (_("error: %pB: conflicting architecture profiles %c/%c"),
14711 ibfd,
14712 in_attr[i].i ? in_attr[i].i : '0',
14713 out_attr[i].i ? out_attr[i].i : '0');
14714 result = FALSE;
14715 }
14716 }
14717 break;
14718
14719 case Tag_DSP_extension:
14720 /* No need to change output value if any of:
14721 - pre (<=) ARMv5T input architecture (do not have DSP)
14722 - M input profile not ARMv7E-M and do not have DSP. */
14723 if (in_attr[Tag_CPU_arch].i <= 3
14724 || (in_attr[Tag_CPU_arch_profile].i == 'M'
14725 && in_attr[Tag_CPU_arch].i != 13
14726 && in_attr[i].i == 0))
14727 ; /* Do nothing. */
14728 /* Output value should be 0 if DSP part of architecture, ie.
14729 - post (>=) ARMv5te architecture output
14730 - A, R or S profile output or ARMv7E-M output architecture. */
14731 else if (out_attr[Tag_CPU_arch].i >= 4
14732 && (out_attr[Tag_CPU_arch_profile].i == 'A'
14733 || out_attr[Tag_CPU_arch_profile].i == 'R'
14734 || out_attr[Tag_CPU_arch_profile].i == 'S'
14735 || out_attr[Tag_CPU_arch].i == 13))
14736 out_attr[i].i = 0;
14737 /* Otherwise, DSP instructions are added and not part of output
14738 architecture. */
14739 else
14740 out_attr[i].i = 1;
14741 break;
14742
14743 case Tag_FP_arch:
14744 {
14745 /* Tag_ABI_HardFP_use is handled along with Tag_FP_arch since
14746 the meaning of Tag_ABI_HardFP_use depends on Tag_FP_arch
14747 when it's 0. It might mean absence of FP hardware if
14748 Tag_FP_arch is zero. */
14749
14750 #define VFP_VERSION_COUNT 9
14751 static const struct
14752 {
14753 int ver;
14754 int regs;
14755 } vfp_versions[VFP_VERSION_COUNT] =
14756 {
14757 {0, 0},
14758 {1, 16},
14759 {2, 16},
14760 {3, 32},
14761 {3, 16},
14762 {4, 32},
14763 {4, 16},
14764 {8, 32},
14765 {8, 16}
14766 };
14767 int ver;
14768 int regs;
14769 int newval;
14770
14771 /* If the output has no requirement about FP hardware,
14772 follow the requirement of the input. */
14773 if (out_attr[i].i == 0)
14774 {
14775 /* This assert is still reasonable, we shouldn't
14776 produce the suspicious build attribute
14777 combination (See below for in_attr). */
14778 BFD_ASSERT (out_attr[Tag_ABI_HardFP_use].i == 0);
14779 out_attr[i].i = in_attr[i].i;
14780 out_attr[Tag_ABI_HardFP_use].i
14781 = in_attr[Tag_ABI_HardFP_use].i;
14782 break;
14783 }
14784 /* If the input has no requirement about FP hardware, do
14785 nothing. */
14786 else if (in_attr[i].i == 0)
14787 {
14788 /* We used to assert that Tag_ABI_HardFP_use was
14789 zero here, but we should never assert when
14790 consuming an object file that has suspicious
14791 build attributes. The single precision variant
14792 of 'no FP architecture' is still 'no FP
14793 architecture', so we just ignore the tag in this
14794 case. */
14795 break;
14796 }
14797
14798 /* Both the input and the output have nonzero Tag_FP_arch.
14799 So Tag_ABI_HardFP_use is implied by Tag_FP_arch when it's zero. */
14800
14801 /* If both the input and the output have zero Tag_ABI_HardFP_use,
14802 do nothing. */
14803 if (in_attr[Tag_ABI_HardFP_use].i == 0
14804 && out_attr[Tag_ABI_HardFP_use].i == 0)
14805 ;
14806 /* If the input and the output have different Tag_ABI_HardFP_use,
14807 the combination of them is 0 (implied by Tag_FP_arch). */
14808 else if (in_attr[Tag_ABI_HardFP_use].i
14809 != out_attr[Tag_ABI_HardFP_use].i)
14810 out_attr[Tag_ABI_HardFP_use].i = 0;
14811
14812 /* Now we can handle Tag_FP_arch. */
14813
14814 /* Values of VFP_VERSION_COUNT or more aren't defined, so just
14815 pick the biggest. */
14816 if (in_attr[i].i >= VFP_VERSION_COUNT
14817 && in_attr[i].i > out_attr[i].i)
14818 {
14819 out_attr[i] = in_attr[i];
14820 break;
14821 }
14822 /* The output uses the superset of input features
14823 (ISA version) and registers. */
14824 ver = vfp_versions[in_attr[i].i].ver;
14825 if (ver < vfp_versions[out_attr[i].i].ver)
14826 ver = vfp_versions[out_attr[i].i].ver;
14827 regs = vfp_versions[in_attr[i].i].regs;
14828 if (regs < vfp_versions[out_attr[i].i].regs)
14829 regs = vfp_versions[out_attr[i].i].regs;
14830 /* This assumes all possible supersets are also a valid
14831 options. */
14832 for (newval = VFP_VERSION_COUNT - 1; newval > 0; newval--)
14833 {
14834 if (regs == vfp_versions[newval].regs
14835 && ver == vfp_versions[newval].ver)
14836 break;
14837 }
14838 out_attr[i].i = newval;
14839 }
14840 break;
14841 case Tag_PCS_config:
14842 if (out_attr[i].i == 0)
14843 out_attr[i].i = in_attr[i].i;
14844 else if (in_attr[i].i != 0 && out_attr[i].i != in_attr[i].i)
14845 {
14846 /* It's sometimes ok to mix different configs, so this is only
14847 a warning. */
14848 _bfd_error_handler
14849 (_("warning: %pB: conflicting platform configuration"), ibfd);
14850 }
14851 break;
14852 case Tag_ABI_PCS_R9_use:
14853 if (in_attr[i].i != out_attr[i].i
14854 && out_attr[i].i != AEABI_R9_unused
14855 && in_attr[i].i != AEABI_R9_unused)
14856 {
14857 _bfd_error_handler
14858 (_("error: %pB: conflicting use of R9"), ibfd);
14859 result = FALSE;
14860 }
14861 if (out_attr[i].i == AEABI_R9_unused)
14862 out_attr[i].i = in_attr[i].i;
14863 break;
14864 case Tag_ABI_PCS_RW_data:
14865 if (in_attr[i].i == AEABI_PCS_RW_data_SBrel
14866 && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_SB
14867 && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_unused)
14868 {
14869 _bfd_error_handler
14870 (_("error: %pB: SB relative addressing conflicts with use of R9"),
14871 ibfd);
14872 result = FALSE;
14873 }
14874 /* Use the smallest value specified. */
14875 if (in_attr[i].i < out_attr[i].i)
14876 out_attr[i].i = in_attr[i].i;
14877 break;
14878 case Tag_ABI_PCS_wchar_t:
14879 if (out_attr[i].i && in_attr[i].i && out_attr[i].i != in_attr[i].i
14880 && !elf_arm_tdata (obfd)->no_wchar_size_warning)
14881 {
14882 _bfd_error_handler
14883 (_("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"),
14884 ibfd, in_attr[i].i, out_attr[i].i);
14885 }
14886 else if (in_attr[i].i && !out_attr[i].i)
14887 out_attr[i].i = in_attr[i].i;
14888 break;
14889 case Tag_ABI_enum_size:
14890 if (in_attr[i].i != AEABI_enum_unused)
14891 {
14892 if (out_attr[i].i == AEABI_enum_unused
14893 || out_attr[i].i == AEABI_enum_forced_wide)
14894 {
14895 /* The existing object is compatible with anything.
14896 Use whatever requirements the new object has. */
14897 out_attr[i].i = in_attr[i].i;
14898 }
14899 else if (in_attr[i].i != AEABI_enum_forced_wide
14900 && out_attr[i].i != in_attr[i].i
14901 && !elf_arm_tdata (obfd)->no_enum_size_warning)
14902 {
14903 static const char *aeabi_enum_names[] =
14904 { "", "variable-size", "32-bit", "" };
14905 const char *in_name =
14906 in_attr[i].i < ARRAY_SIZE(aeabi_enum_names)
14907 ? aeabi_enum_names[in_attr[i].i]
14908 : "<unknown>";
14909 const char *out_name =
14910 out_attr[i].i < ARRAY_SIZE(aeabi_enum_names)
14911 ? aeabi_enum_names[out_attr[i].i]
14912 : "<unknown>";
14913 _bfd_error_handler
14914 (_("warning: %pB uses %s enums yet the output is to use %s enums; use of enum values across objects may fail"),
14915 ibfd, in_name, out_name);
14916 }
14917 }
14918 break;
14919 case Tag_ABI_VFP_args:
14920 /* Aready done. */
14921 break;
14922 case Tag_ABI_WMMX_args:
14923 if (in_attr[i].i != out_attr[i].i)
14924 {
14925 _bfd_error_handler
14926 (_("error: %pB uses iWMMXt register arguments, %pB does not"),
14927 ibfd, obfd);
14928 result = FALSE;
14929 }
14930 break;
14931 case Tag_compatibility:
14932 /* Merged in target-independent code. */
14933 break;
14934 case Tag_ABI_HardFP_use:
14935 /* This is handled along with Tag_FP_arch. */
14936 break;
14937 case Tag_ABI_FP_16bit_format:
14938 if (in_attr[i].i != 0 && out_attr[i].i != 0)
14939 {
14940 if (in_attr[i].i != out_attr[i].i)
14941 {
14942 _bfd_error_handler
14943 (_("error: fp16 format mismatch between %pB and %pB"),
14944 ibfd, obfd);
14945 result = FALSE;
14946 }
14947 }
14948 if (in_attr[i].i != 0)
14949 out_attr[i].i = in_attr[i].i;
14950 break;
14951
14952 case Tag_DIV_use:
14953 /* A value of zero on input means that the divide instruction may
14954 be used if available in the base architecture as specified via
14955 Tag_CPU_arch and Tag_CPU_arch_profile. A value of 1 means that
14956 the user did not want divide instructions. A value of 2
14957 explicitly means that divide instructions were allowed in ARM
14958 and Thumb state. */
14959 if (in_attr[i].i == out_attr[i].i)
14960 /* Do nothing. */ ;
14961 else if (elf32_arm_attributes_forbid_div (in_attr)
14962 && !elf32_arm_attributes_accept_div (out_attr))
14963 out_attr[i].i = 1;
14964 else if (elf32_arm_attributes_forbid_div (out_attr)
14965 && elf32_arm_attributes_accept_div (in_attr))
14966 out_attr[i].i = in_attr[i].i;
14967 else if (in_attr[i].i == 2)
14968 out_attr[i].i = in_attr[i].i;
14969 break;
14970
14971 case Tag_MPextension_use_legacy:
14972 /* We don't output objects with Tag_MPextension_use_legacy - we
14973 move the value to Tag_MPextension_use. */
14974 if (in_attr[i].i != 0 && in_attr[Tag_MPextension_use].i != 0)
14975 {
14976 if (in_attr[Tag_MPextension_use].i != in_attr[i].i)
14977 {
14978 _bfd_error_handler
14979 (_("%pB has both the current and legacy "
14980 "Tag_MPextension_use attributes"),
14981 ibfd);
14982 result = FALSE;
14983 }
14984 }
14985
14986 if (in_attr[i].i > out_attr[Tag_MPextension_use].i)
14987 out_attr[Tag_MPextension_use] = in_attr[i];
14988
14989 break;
14990
14991 case Tag_nodefaults:
14992 /* This tag is set if it exists, but the value is unused (and is
14993 typically zero). We don't actually need to do anything here -
14994 the merge happens automatically when the type flags are merged
14995 below. */
14996 break;
14997 case Tag_also_compatible_with:
14998 /* Already done in Tag_CPU_arch. */
14999 break;
15000 case Tag_conformance:
15001 /* Keep the attribute if it matches. Throw it away otherwise.
15002 No attribute means no claim to conform. */
15003 if (!in_attr[i].s || !out_attr[i].s
15004 || strcmp (in_attr[i].s, out_attr[i].s) != 0)
15005 out_attr[i].s = NULL;
15006 break;
15007
15008 default:
15009 result
15010 = result && _bfd_elf_merge_unknown_attribute_low (ibfd, obfd, i);
15011 }
15012
15013 /* If out_attr was copied from in_attr then it won't have a type yet. */
15014 if (in_attr[i].type && !out_attr[i].type)
15015 out_attr[i].type = in_attr[i].type;
15016 }
15017
15018 /* Merge Tag_compatibility attributes and any common GNU ones. */
15019 if (!_bfd_elf_merge_object_attributes (ibfd, info))
15020 return FALSE;
15021
15022 /* Check for any attributes not known on ARM. */
15023 result &= _bfd_elf_merge_unknown_attribute_list (ibfd, obfd);
15024
15025 return result;
15026 }
15027
15028
15029 /* Return TRUE if the two EABI versions are incompatible. */
15030
15031 static bfd_boolean
15032 elf32_arm_versions_compatible (unsigned iver, unsigned over)
15033 {
15034 /* v4 and v5 are the same spec before and after it was released,
15035 so allow mixing them. */
15036 if ((iver == EF_ARM_EABI_VER4 && over == EF_ARM_EABI_VER5)
15037 || (iver == EF_ARM_EABI_VER5 && over == EF_ARM_EABI_VER4))
15038 return TRUE;
15039
15040 return (iver == over);
15041 }
15042
15043 /* Merge backend specific data from an object file to the output
15044 object file when linking. */
15045
15046 static bfd_boolean
15047 elf32_arm_merge_private_bfd_data (bfd *, struct bfd_link_info *);
15048
15049 /* Display the flags field. */
15050
15051 static bfd_boolean
15052 elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
15053 {
15054 FILE * file = (FILE *) ptr;
15055 unsigned long flags;
15056
15057 BFD_ASSERT (abfd != NULL && ptr != NULL);
15058
15059 /* Print normal ELF private data. */
15060 _bfd_elf_print_private_bfd_data (abfd, ptr);
15061
15062 flags = elf_elfheader (abfd)->e_flags;
15063 /* Ignore init flag - it may not be set, despite the flags field
15064 containing valid data. */
15065
15066 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
15067
15068 switch (EF_ARM_EABI_VERSION (flags))
15069 {
15070 case EF_ARM_EABI_UNKNOWN:
15071 /* The following flag bits are GNU extensions and not part of the
15072 official ARM ELF extended ABI. Hence they are only decoded if
15073 the EABI version is not set. */
15074 if (flags & EF_ARM_INTERWORK)
15075 fprintf (file, _(" [interworking enabled]"));
15076
15077 if (flags & EF_ARM_APCS_26)
15078 fprintf (file, " [APCS-26]");
15079 else
15080 fprintf (file, " [APCS-32]");
15081
15082 if (flags & EF_ARM_VFP_FLOAT)
15083 fprintf (file, _(" [VFP float format]"));
15084 else if (flags & EF_ARM_MAVERICK_FLOAT)
15085 fprintf (file, _(" [Maverick float format]"));
15086 else
15087 fprintf (file, _(" [FPA float format]"));
15088
15089 if (flags & EF_ARM_APCS_FLOAT)
15090 fprintf (file, _(" [floats passed in float registers]"));
15091
15092 if (flags & EF_ARM_PIC)
15093 fprintf (file, _(" [position independent]"));
15094
15095 if (flags & EF_ARM_NEW_ABI)
15096 fprintf (file, _(" [new ABI]"));
15097
15098 if (flags & EF_ARM_OLD_ABI)
15099 fprintf (file, _(" [old ABI]"));
15100
15101 if (flags & EF_ARM_SOFT_FLOAT)
15102 fprintf (file, _(" [software FP]"));
15103
15104 flags &= ~(EF_ARM_INTERWORK | EF_ARM_APCS_26 | EF_ARM_APCS_FLOAT
15105 | EF_ARM_PIC | EF_ARM_NEW_ABI | EF_ARM_OLD_ABI
15106 | EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT
15107 | EF_ARM_MAVERICK_FLOAT);
15108 break;
15109
15110 case EF_ARM_EABI_VER1:
15111 fprintf (file, _(" [Version1 EABI]"));
15112
15113 if (flags & EF_ARM_SYMSARESORTED)
15114 fprintf (file, _(" [sorted symbol table]"));
15115 else
15116 fprintf (file, _(" [unsorted symbol table]"));
15117
15118 flags &= ~ EF_ARM_SYMSARESORTED;
15119 break;
15120
15121 case EF_ARM_EABI_VER2:
15122 fprintf (file, _(" [Version2 EABI]"));
15123
15124 if (flags & EF_ARM_SYMSARESORTED)
15125 fprintf (file, _(" [sorted symbol table]"));
15126 else
15127 fprintf (file, _(" [unsorted symbol table]"));
15128
15129 if (flags & EF_ARM_DYNSYMSUSESEGIDX)
15130 fprintf (file, _(" [dynamic symbols use segment index]"));
15131
15132 if (flags & EF_ARM_MAPSYMSFIRST)
15133 fprintf (file, _(" [mapping symbols precede others]"));
15134
15135 flags &= ~(EF_ARM_SYMSARESORTED | EF_ARM_DYNSYMSUSESEGIDX
15136 | EF_ARM_MAPSYMSFIRST);
15137 break;
15138
15139 case EF_ARM_EABI_VER3:
15140 fprintf (file, _(" [Version3 EABI]"));
15141 break;
15142
15143 case EF_ARM_EABI_VER4:
15144 fprintf (file, _(" [Version4 EABI]"));
15145 goto eabi;
15146
15147 case EF_ARM_EABI_VER5:
15148 fprintf (file, _(" [Version5 EABI]"));
15149
15150 if (flags & EF_ARM_ABI_FLOAT_SOFT)
15151 fprintf (file, _(" [soft-float ABI]"));
15152
15153 if (flags & EF_ARM_ABI_FLOAT_HARD)
15154 fprintf (file, _(" [hard-float ABI]"));
15155
15156 flags &= ~(EF_ARM_ABI_FLOAT_SOFT | EF_ARM_ABI_FLOAT_HARD);
15157
15158 eabi:
15159 if (flags & EF_ARM_BE8)
15160 fprintf (file, _(" [BE8]"));
15161
15162 if (flags & EF_ARM_LE8)
15163 fprintf (file, _(" [LE8]"));
15164
15165 flags &= ~(EF_ARM_LE8 | EF_ARM_BE8);
15166 break;
15167
15168 default:
15169 fprintf (file, _(" <EABI version unrecognised>"));
15170 break;
15171 }
15172
15173 flags &= ~ EF_ARM_EABIMASK;
15174
15175 if (flags & EF_ARM_RELEXEC)
15176 fprintf (file, _(" [relocatable executable]"));
15177
15178 if (flags & EF_ARM_PIC)
15179 fprintf (file, _(" [position independent]"));
15180
15181 if (elf_elfheader (abfd)->e_ident[EI_OSABI] == ELFOSABI_ARM_FDPIC)
15182 fprintf (file, _(" [FDPIC ABI supplement]"));
15183
15184 flags &= ~ (EF_ARM_RELEXEC | EF_ARM_PIC);
15185
15186 if (flags)
15187 fprintf (file, _("<Unrecognised flag bits set>"));
15188
15189 fputc ('\n', file);
15190
15191 return TRUE;
15192 }
15193
15194 static int
15195 elf32_arm_get_symbol_type (Elf_Internal_Sym * elf_sym, int type)
15196 {
15197 switch (ELF_ST_TYPE (elf_sym->st_info))
15198 {
15199 case STT_ARM_TFUNC:
15200 return ELF_ST_TYPE (elf_sym->st_info);
15201
15202 case STT_ARM_16BIT:
15203 /* If the symbol is not an object, return the STT_ARM_16BIT flag.
15204 This allows us to distinguish between data used by Thumb instructions
15205 and non-data (which is probably code) inside Thumb regions of an
15206 executable. */
15207 if (type != STT_OBJECT && type != STT_TLS)
15208 return ELF_ST_TYPE (elf_sym->st_info);
15209 break;
15210
15211 default:
15212 break;
15213 }
15214
15215 return type;
15216 }
15217
15218 static asection *
15219 elf32_arm_gc_mark_hook (asection *sec,
15220 struct bfd_link_info *info,
15221 Elf_Internal_Rela *rel,
15222 struct elf_link_hash_entry *h,
15223 Elf_Internal_Sym *sym)
15224 {
15225 if (h != NULL)
15226 switch (ELF32_R_TYPE (rel->r_info))
15227 {
15228 case R_ARM_GNU_VTINHERIT:
15229 case R_ARM_GNU_VTENTRY:
15230 return NULL;
15231 }
15232
15233 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
15234 }
15235
15236 /* Look through the relocs for a section during the first phase. */
15237
15238 static bfd_boolean
15239 elf32_arm_check_relocs (bfd *abfd, struct bfd_link_info *info,
15240 asection *sec, const Elf_Internal_Rela *relocs)
15241 {
15242 Elf_Internal_Shdr *symtab_hdr;
15243 struct elf_link_hash_entry **sym_hashes;
15244 const Elf_Internal_Rela *rel;
15245 const Elf_Internal_Rela *rel_end;
15246 bfd *dynobj;
15247 asection *sreloc;
15248 struct elf32_arm_link_hash_table *htab;
15249 bfd_boolean call_reloc_p;
15250 bfd_boolean may_become_dynamic_p;
15251 bfd_boolean may_need_local_target_p;
15252 unsigned long nsyms;
15253
15254 if (bfd_link_relocatable (info))
15255 return TRUE;
15256
15257 BFD_ASSERT (is_arm_elf (abfd));
15258
15259 htab = elf32_arm_hash_table (info);
15260 if (htab == NULL)
15261 return FALSE;
15262
15263 sreloc = NULL;
15264
15265 /* Create dynamic sections for relocatable executables so that we can
15266 copy relocations. */
15267 if (htab->root.is_relocatable_executable
15268 && ! htab->root.dynamic_sections_created)
15269 {
15270 if (! _bfd_elf_link_create_dynamic_sections (abfd, info))
15271 return FALSE;
15272 }
15273
15274 if (htab->root.dynobj == NULL)
15275 htab->root.dynobj = abfd;
15276 if (!create_ifunc_sections (info))
15277 return FALSE;
15278
15279 dynobj = htab->root.dynobj;
15280
15281 symtab_hdr = & elf_symtab_hdr (abfd);
15282 sym_hashes = elf_sym_hashes (abfd);
15283 nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
15284
15285 rel_end = relocs + sec->reloc_count;
15286 for (rel = relocs; rel < rel_end; rel++)
15287 {
15288 Elf_Internal_Sym *isym;
15289 struct elf_link_hash_entry *h;
15290 struct elf32_arm_link_hash_entry *eh;
15291 unsigned int r_symndx;
15292 int r_type;
15293
15294 r_symndx = ELF32_R_SYM (rel->r_info);
15295 r_type = ELF32_R_TYPE (rel->r_info);
15296 r_type = arm_real_reloc_type (htab, r_type);
15297
15298 if (r_symndx >= nsyms
15299 /* PR 9934: It is possible to have relocations that do not
15300 refer to symbols, thus it is also possible to have an
15301 object file containing relocations but no symbol table. */
15302 && (r_symndx > STN_UNDEF || nsyms > 0))
15303 {
15304 _bfd_error_handler (_("%pB: bad symbol index: %d"), abfd,
15305 r_symndx);
15306 return FALSE;
15307 }
15308
15309 h = NULL;
15310 isym = NULL;
15311 if (nsyms > 0)
15312 {
15313 if (r_symndx < symtab_hdr->sh_info)
15314 {
15315 /* A local symbol. */
15316 isym = bfd_sym_from_r_symndx (&htab->root.sym_cache,
15317 abfd, r_symndx);
15318 if (isym == NULL)
15319 return FALSE;
15320 }
15321 else
15322 {
15323 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
15324 while (h->root.type == bfd_link_hash_indirect
15325 || h->root.type == bfd_link_hash_warning)
15326 h = (struct elf_link_hash_entry *) h->root.u.i.link;
15327 }
15328 }
15329
15330 eh = (struct elf32_arm_link_hash_entry *) h;
15331
15332 call_reloc_p = FALSE;
15333 may_become_dynamic_p = FALSE;
15334 may_need_local_target_p = FALSE;
15335
15336 /* Could be done earlier, if h were already available. */
15337 r_type = elf32_arm_tls_transition (info, r_type, h);
15338 switch (r_type)
15339 {
15340 case R_ARM_GOTOFFFUNCDESC:
15341 {
15342 if (h == NULL)
15343 {
15344 if (!elf32_arm_allocate_local_sym_info (abfd))
15345 return FALSE;
15346 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].gotofffuncdesc_cnt += 1;
15347 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_offset = -1;
15348 }
15349 else
15350 {
15351 eh->fdpic_cnts.gotofffuncdesc_cnt++;
15352 }
15353 }
15354 break;
15355
15356 case R_ARM_GOTFUNCDESC:
15357 {
15358 if (h == NULL)
15359 {
15360 /* Such a relocation is not supposed to be generated
15361 by gcc on a static function. */
15362 /* Anyway if needed it could be handled. */
15363 abort();
15364 }
15365 else
15366 {
15367 eh->fdpic_cnts.gotfuncdesc_cnt++;
15368 }
15369 }
15370 break;
15371
15372 case R_ARM_FUNCDESC:
15373 {
15374 if (h == NULL)
15375 {
15376 if (!elf32_arm_allocate_local_sym_info (abfd))
15377 return FALSE;
15378 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_cnt += 1;
15379 elf32_arm_local_fdpic_cnts(abfd)[r_symndx].funcdesc_offset = -1;
15380 }
15381 else
15382 {
15383 eh->fdpic_cnts.funcdesc_cnt++;
15384 }
15385 }
15386 break;
15387
15388 case R_ARM_GOT32:
15389 case R_ARM_GOT_PREL:
15390 case R_ARM_TLS_GD32:
15391 case R_ARM_TLS_GD32_FDPIC:
15392 case R_ARM_TLS_IE32:
15393 case R_ARM_TLS_IE32_FDPIC:
15394 case R_ARM_TLS_GOTDESC:
15395 case R_ARM_TLS_DESCSEQ:
15396 case R_ARM_THM_TLS_DESCSEQ:
15397 case R_ARM_TLS_CALL:
15398 case R_ARM_THM_TLS_CALL:
15399 /* This symbol requires a global offset table entry. */
15400 {
15401 int tls_type, old_tls_type;
15402
15403 switch (r_type)
15404 {
15405 case R_ARM_TLS_GD32: tls_type = GOT_TLS_GD; break;
15406 case R_ARM_TLS_GD32_FDPIC: tls_type = GOT_TLS_GD; break;
15407
15408 case R_ARM_TLS_IE32: tls_type = GOT_TLS_IE; break;
15409 case R_ARM_TLS_IE32_FDPIC: tls_type = GOT_TLS_IE; break;
15410
15411 case R_ARM_TLS_GOTDESC:
15412 case R_ARM_TLS_CALL: case R_ARM_THM_TLS_CALL:
15413 case R_ARM_TLS_DESCSEQ: case R_ARM_THM_TLS_DESCSEQ:
15414 tls_type = GOT_TLS_GDESC; break;
15415
15416 default: tls_type = GOT_NORMAL; break;
15417 }
15418
15419 if (!bfd_link_executable (info) && (tls_type & GOT_TLS_IE))
15420 info->flags |= DF_STATIC_TLS;
15421
15422 if (h != NULL)
15423 {
15424 h->got.refcount++;
15425 old_tls_type = elf32_arm_hash_entry (h)->tls_type;
15426 }
15427 else
15428 {
15429 /* This is a global offset table entry for a local symbol. */
15430 if (!elf32_arm_allocate_local_sym_info (abfd))
15431 return FALSE;
15432 elf_local_got_refcounts (abfd)[r_symndx] += 1;
15433 old_tls_type = elf32_arm_local_got_tls_type (abfd) [r_symndx];
15434 }
15435
15436 /* If a variable is accessed with both tls methods, two
15437 slots may be created. */
15438 if (GOT_TLS_GD_ANY_P (old_tls_type)
15439 && GOT_TLS_GD_ANY_P (tls_type))
15440 tls_type |= old_tls_type;
15441
15442 /* We will already have issued an error message if there
15443 is a TLS/non-TLS mismatch, based on the symbol
15444 type. So just combine any TLS types needed. */
15445 if (old_tls_type != GOT_UNKNOWN && old_tls_type != GOT_NORMAL
15446 && tls_type != GOT_NORMAL)
15447 tls_type |= old_tls_type;
15448
15449 /* If the symbol is accessed in both IE and GDESC
15450 method, we're able to relax. Turn off the GDESC flag,
15451 without messing up with any other kind of tls types
15452 that may be involved. */
15453 if ((tls_type & GOT_TLS_IE) && (tls_type & GOT_TLS_GDESC))
15454 tls_type &= ~GOT_TLS_GDESC;
15455
15456 if (old_tls_type != tls_type)
15457 {
15458 if (h != NULL)
15459 elf32_arm_hash_entry (h)->tls_type = tls_type;
15460 else
15461 elf32_arm_local_got_tls_type (abfd) [r_symndx] = tls_type;
15462 }
15463 }
15464 /* Fall through. */
15465
15466 case R_ARM_TLS_LDM32:
15467 case R_ARM_TLS_LDM32_FDPIC:
15468 if (r_type == R_ARM_TLS_LDM32 || r_type == R_ARM_TLS_LDM32_FDPIC)
15469 htab->tls_ldm_got.refcount++;
15470 /* Fall through. */
15471
15472 case R_ARM_GOTOFF32:
15473 case R_ARM_GOTPC:
15474 if (htab->root.sgot == NULL
15475 && !create_got_section (htab->root.dynobj, info))
15476 return FALSE;
15477 break;
15478
15479 case R_ARM_PC24:
15480 case R_ARM_PLT32:
15481 case R_ARM_CALL:
15482 case R_ARM_JUMP24:
15483 case R_ARM_PREL31:
15484 case R_ARM_THM_CALL:
15485 case R_ARM_THM_JUMP24:
15486 case R_ARM_THM_JUMP19:
15487 call_reloc_p = TRUE;
15488 may_need_local_target_p = TRUE;
15489 break;
15490
15491 case R_ARM_ABS12:
15492 /* VxWorks uses dynamic R_ARM_ABS12 relocations for
15493 ldr __GOTT_INDEX__ offsets. */
15494 if (htab->root.target_os != is_vxworks)
15495 {
15496 may_need_local_target_p = TRUE;
15497 break;
15498 }
15499 else goto jump_over;
15500
15501 /* Fall through. */
15502
15503 case R_ARM_MOVW_ABS_NC:
15504 case R_ARM_MOVT_ABS:
15505 case R_ARM_THM_MOVW_ABS_NC:
15506 case R_ARM_THM_MOVT_ABS:
15507 if (bfd_link_pic (info))
15508 {
15509 _bfd_error_handler
15510 (_("%pB: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
15511 abfd, elf32_arm_howto_table_1[r_type].name,
15512 (h) ? h->root.root.string : "a local symbol");
15513 bfd_set_error (bfd_error_bad_value);
15514 return FALSE;
15515 }
15516
15517 /* Fall through. */
15518 case R_ARM_ABS32:
15519 case R_ARM_ABS32_NOI:
15520 jump_over:
15521 if (h != NULL && bfd_link_executable (info))
15522 {
15523 h->pointer_equality_needed = 1;
15524 }
15525 /* Fall through. */
15526 case R_ARM_REL32:
15527 case R_ARM_REL32_NOI:
15528 case R_ARM_MOVW_PREL_NC:
15529 case R_ARM_MOVT_PREL:
15530 case R_ARM_THM_MOVW_PREL_NC:
15531 case R_ARM_THM_MOVT_PREL:
15532
15533 /* Should the interworking branches be listed here? */
15534 if ((bfd_link_pic (info) || htab->root.is_relocatable_executable
15535 || htab->fdpic_p)
15536 && (sec->flags & SEC_ALLOC) != 0)
15537 {
15538 if (h == NULL
15539 && elf32_arm_howto_from_type (r_type)->pc_relative)
15540 {
15541 /* In shared libraries and relocatable executables,
15542 we treat local relative references as calls;
15543 see the related SYMBOL_CALLS_LOCAL code in
15544 allocate_dynrelocs. */
15545 call_reloc_p = TRUE;
15546 may_need_local_target_p = TRUE;
15547 }
15548 else
15549 /* We are creating a shared library or relocatable
15550 executable, and this is a reloc against a global symbol,
15551 or a non-PC-relative reloc against a local symbol.
15552 We may need to copy the reloc into the output. */
15553 may_become_dynamic_p = TRUE;
15554 }
15555 else
15556 may_need_local_target_p = TRUE;
15557 break;
15558
15559 /* This relocation describes the C++ object vtable hierarchy.
15560 Reconstruct it for later use during GC. */
15561 case R_ARM_GNU_VTINHERIT:
15562 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
15563 return FALSE;
15564 break;
15565
15566 /* This relocation describes which C++ vtable entries are actually
15567 used. Record for later use during GC. */
15568 case R_ARM_GNU_VTENTRY:
15569 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
15570 return FALSE;
15571 break;
15572 }
15573
15574 if (h != NULL)
15575 {
15576 if (call_reloc_p)
15577 /* We may need a .plt entry if the function this reloc
15578 refers to is in a different object, regardless of the
15579 symbol's type. We can't tell for sure yet, because
15580 something later might force the symbol local. */
15581 h->needs_plt = 1;
15582 else if (may_need_local_target_p)
15583 /* If this reloc is in a read-only section, we might
15584 need a copy reloc. We can't check reliably at this
15585 stage whether the section is read-only, as input
15586 sections have not yet been mapped to output sections.
15587 Tentatively set the flag for now, and correct in
15588 adjust_dynamic_symbol. */
15589 h->non_got_ref = 1;
15590 }
15591
15592 if (may_need_local_target_p
15593 && (h != NULL || ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC))
15594 {
15595 union gotplt_union *root_plt;
15596 struct arm_plt_info *arm_plt;
15597 struct arm_local_iplt_info *local_iplt;
15598
15599 if (h != NULL)
15600 {
15601 root_plt = &h->plt;
15602 arm_plt = &eh->plt;
15603 }
15604 else
15605 {
15606 local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
15607 if (local_iplt == NULL)
15608 return FALSE;
15609 root_plt = &local_iplt->root;
15610 arm_plt = &local_iplt->arm;
15611 }
15612
15613 /* If the symbol is a function that doesn't bind locally,
15614 this relocation will need a PLT entry. */
15615 if (root_plt->refcount != -1)
15616 root_plt->refcount += 1;
15617
15618 if (!call_reloc_p)
15619 arm_plt->noncall_refcount++;
15620
15621 /* It's too early to use htab->use_blx here, so we have to
15622 record possible blx references separately from
15623 relocs that definitely need a thumb stub. */
15624
15625 if (r_type == R_ARM_THM_CALL)
15626 arm_plt->maybe_thumb_refcount += 1;
15627
15628 if (r_type == R_ARM_THM_JUMP24
15629 || r_type == R_ARM_THM_JUMP19)
15630 arm_plt->thumb_refcount += 1;
15631 }
15632
15633 if (may_become_dynamic_p)
15634 {
15635 struct elf_dyn_relocs *p, **head;
15636
15637 /* Create a reloc section in dynobj. */
15638 if (sreloc == NULL)
15639 {
15640 sreloc = _bfd_elf_make_dynamic_reloc_section
15641 (sec, dynobj, 2, abfd, ! htab->use_rel);
15642
15643 if (sreloc == NULL)
15644 return FALSE;
15645
15646 /* BPABI objects never have dynamic relocations mapped. */
15647 if (htab->root.target_os == is_symbian)
15648 {
15649 flagword flags;
15650
15651 flags = bfd_section_flags (sreloc);
15652 flags &= ~(SEC_LOAD | SEC_ALLOC);
15653 bfd_set_section_flags (sreloc, flags);
15654 }
15655 }
15656
15657 /* If this is a global symbol, count the number of
15658 relocations we need for this symbol. */
15659 if (h != NULL)
15660 head = &h->dyn_relocs;
15661 else
15662 {
15663 head = elf32_arm_get_local_dynreloc_list (abfd, r_symndx, isym);
15664 if (head == NULL)
15665 return FALSE;
15666 }
15667
15668 p = *head;
15669 if (p == NULL || p->sec != sec)
15670 {
15671 size_t amt = sizeof *p;
15672
15673 p = (struct elf_dyn_relocs *) bfd_alloc (htab->root.dynobj, amt);
15674 if (p == NULL)
15675 return FALSE;
15676 p->next = *head;
15677 *head = p;
15678 p->sec = sec;
15679 p->count = 0;
15680 p->pc_count = 0;
15681 }
15682
15683 if (elf32_arm_howto_from_type (r_type)->pc_relative)
15684 p->pc_count += 1;
15685 p->count += 1;
15686 if (h == NULL && htab->fdpic_p && !bfd_link_pic(info)
15687 && r_type != R_ARM_ABS32 && r_type != R_ARM_ABS32_NOI) {
15688 /* Here we only support R_ARM_ABS32 and R_ARM_ABS32_NOI
15689 that will become rofixup. */
15690 /* This is due to the fact that we suppose all will become rofixup. */
15691 fprintf(stderr, "FDPIC does not yet support %d relocation to become dynamic for executable\n", r_type);
15692 _bfd_error_handler
15693 (_("FDPIC does not yet support %s relocation"
15694 " to become dynamic for executable"),
15695 elf32_arm_howto_table_1[r_type].name);
15696 abort();
15697 }
15698 }
15699 }
15700
15701 return TRUE;
15702 }
15703
15704 static void
15705 elf32_arm_update_relocs (asection *o,
15706 struct bfd_elf_section_reloc_data *reldata)
15707 {
15708 void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
15709 void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
15710 const struct elf_backend_data *bed;
15711 _arm_elf_section_data *eado;
15712 struct bfd_link_order *p;
15713 bfd_byte *erela_head, *erela;
15714 Elf_Internal_Rela *irela_head, *irela;
15715 Elf_Internal_Shdr *rel_hdr;
15716 bfd *abfd;
15717 unsigned int count;
15718
15719 eado = get_arm_elf_section_data (o);
15720
15721 if (!eado || eado->elf.this_hdr.sh_type != SHT_ARM_EXIDX)
15722 return;
15723
15724 abfd = o->owner;
15725 bed = get_elf_backend_data (abfd);
15726 rel_hdr = reldata->hdr;
15727
15728 if (rel_hdr->sh_entsize == bed->s->sizeof_rel)
15729 {
15730 swap_in = bed->s->swap_reloc_in;
15731 swap_out = bed->s->swap_reloc_out;
15732 }
15733 else if (rel_hdr->sh_entsize == bed->s->sizeof_rela)
15734 {
15735 swap_in = bed->s->swap_reloca_in;
15736 swap_out = bed->s->swap_reloca_out;
15737 }
15738 else
15739 abort ();
15740
15741 erela_head = rel_hdr->contents;
15742 irela_head = (Elf_Internal_Rela *) bfd_zmalloc
15743 ((NUM_SHDR_ENTRIES (rel_hdr) + 1) * sizeof (*irela_head));
15744
15745 erela = erela_head;
15746 irela = irela_head;
15747 count = 0;
15748
15749 for (p = o->map_head.link_order; p; p = p->next)
15750 {
15751 if (p->type == bfd_section_reloc_link_order
15752 || p->type == bfd_symbol_reloc_link_order)
15753 {
15754 (*swap_in) (abfd, erela, irela);
15755 erela += rel_hdr->sh_entsize;
15756 irela++;
15757 count++;
15758 }
15759 else if (p->type == bfd_indirect_link_order)
15760 {
15761 struct bfd_elf_section_reloc_data *input_reldata;
15762 arm_unwind_table_edit *edit_list, *edit_tail;
15763 _arm_elf_section_data *eadi;
15764 bfd_size_type j;
15765 bfd_vma offset;
15766 asection *i;
15767
15768 i = p->u.indirect.section;
15769
15770 eadi = get_arm_elf_section_data (i);
15771 edit_list = eadi->u.exidx.unwind_edit_list;
15772 edit_tail = eadi->u.exidx.unwind_edit_tail;
15773 offset = i->output_offset;
15774
15775 if (eadi->elf.rel.hdr &&
15776 eadi->elf.rel.hdr->sh_entsize == rel_hdr->sh_entsize)
15777 input_reldata = &eadi->elf.rel;
15778 else if (eadi->elf.rela.hdr &&
15779 eadi->elf.rela.hdr->sh_entsize == rel_hdr->sh_entsize)
15780 input_reldata = &eadi->elf.rela;
15781 else
15782 abort ();
15783
15784 if (edit_list)
15785 {
15786 for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15787 {
15788 arm_unwind_table_edit *edit_node, *edit_next;
15789 bfd_vma bias;
15790 bfd_vma reloc_index;
15791
15792 (*swap_in) (abfd, erela, irela);
15793 reloc_index = (irela->r_offset - offset) / 8;
15794
15795 bias = 0;
15796 edit_node = edit_list;
15797 for (edit_next = edit_list;
15798 edit_next && edit_next->index <= reloc_index;
15799 edit_next = edit_node->next)
15800 {
15801 bias++;
15802 edit_node = edit_next;
15803 }
15804
15805 if (edit_node->type != DELETE_EXIDX_ENTRY
15806 || edit_node->index != reloc_index)
15807 {
15808 irela->r_offset -= bias * 8;
15809 irela++;
15810 count++;
15811 }
15812
15813 erela += rel_hdr->sh_entsize;
15814 }
15815
15816 if (edit_tail->type == INSERT_EXIDX_CANTUNWIND_AT_END)
15817 {
15818 /* New relocation entity. */
15819 asection *text_sec = edit_tail->linked_section;
15820 asection *text_out = text_sec->output_section;
15821 bfd_vma exidx_offset = offset + i->size - 8;
15822
15823 irela->r_addend = 0;
15824 irela->r_offset = exidx_offset;
15825 irela->r_info = ELF32_R_INFO
15826 (text_out->target_index, R_ARM_PREL31);
15827 irela++;
15828 count++;
15829 }
15830 }
15831 else
15832 {
15833 for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15834 {
15835 (*swap_in) (abfd, erela, irela);
15836 erela += rel_hdr->sh_entsize;
15837 irela++;
15838 }
15839
15840 count += NUM_SHDR_ENTRIES (input_reldata->hdr);
15841 }
15842 }
15843 }
15844
15845 reldata->count = count;
15846 rel_hdr->sh_size = count * rel_hdr->sh_entsize;
15847
15848 erela = erela_head;
15849 irela = irela_head;
15850 while (count > 0)
15851 {
15852 (*swap_out) (abfd, irela, erela);
15853 erela += rel_hdr->sh_entsize;
15854 irela++;
15855 count--;
15856 }
15857
15858 free (irela_head);
15859
15860 /* Hashes are no longer valid. */
15861 free (reldata->hashes);
15862 reldata->hashes = NULL;
15863 }
15864
15865 /* Unwinding tables are not referenced directly. This pass marks them as
15866 required if the corresponding code section is marked. Similarly, ARMv8-M
15867 secure entry functions can only be referenced by SG veneers which are
15868 created after the GC process. They need to be marked in case they reside in
15869 their own section (as would be the case if code was compiled with
15870 -ffunction-sections). */
15871
15872 static bfd_boolean
15873 elf32_arm_gc_mark_extra_sections (struct bfd_link_info *info,
15874 elf_gc_mark_hook_fn gc_mark_hook)
15875 {
15876 bfd *sub;
15877 Elf_Internal_Shdr **elf_shdrp;
15878 asection *cmse_sec;
15879 obj_attribute *out_attr;
15880 Elf_Internal_Shdr *symtab_hdr;
15881 unsigned i, sym_count, ext_start;
15882 const struct elf_backend_data *bed;
15883 struct elf_link_hash_entry **sym_hashes;
15884 struct elf32_arm_link_hash_entry *cmse_hash;
15885 bfd_boolean again, is_v8m, first_bfd_browse = TRUE;
15886 bfd_boolean debug_sec_need_to_be_marked = FALSE;
15887 asection *isec;
15888
15889 _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
15890
15891 out_attr = elf_known_obj_attributes_proc (info->output_bfd);
15892 is_v8m = out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V8M_BASE
15893 && out_attr[Tag_CPU_arch_profile].i == 'M';
15894
15895 /* Marking EH data may cause additional code sections to be marked,
15896 requiring multiple passes. */
15897 again = TRUE;
15898 while (again)
15899 {
15900 again = FALSE;
15901 for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
15902 {
15903 asection *o;
15904
15905 if (! is_arm_elf (sub))
15906 continue;
15907
15908 elf_shdrp = elf_elfsections (sub);
15909 for (o = sub->sections; o != NULL; o = o->next)
15910 {
15911 Elf_Internal_Shdr *hdr;
15912
15913 hdr = &elf_section_data (o)->this_hdr;
15914 if (hdr->sh_type == SHT_ARM_EXIDX
15915 && hdr->sh_link
15916 && hdr->sh_link < elf_numsections (sub)
15917 && !o->gc_mark
15918 && elf_shdrp[hdr->sh_link]->bfd_section->gc_mark)
15919 {
15920 again = TRUE;
15921 if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
15922 return FALSE;
15923 }
15924 }
15925
15926 /* Mark section holding ARMv8-M secure entry functions. We mark all
15927 of them so no need for a second browsing. */
15928 if (is_v8m && first_bfd_browse)
15929 {
15930 sym_hashes = elf_sym_hashes (sub);
15931 bed = get_elf_backend_data (sub);
15932 symtab_hdr = &elf_tdata (sub)->symtab_hdr;
15933 sym_count = symtab_hdr->sh_size / bed->s->sizeof_sym;
15934 ext_start = symtab_hdr->sh_info;
15935
15936 /* Scan symbols. */
15937 for (i = ext_start; i < sym_count; i++)
15938 {
15939 cmse_hash = elf32_arm_hash_entry (sym_hashes[i - ext_start]);
15940
15941 /* Assume it is a special symbol. If not, cmse_scan will
15942 warn about it and user can do something about it. */
15943 if (CONST_STRNEQ (cmse_hash->root.root.root.string,
15944 CMSE_PREFIX))
15945 {
15946 cmse_sec = cmse_hash->root.root.u.def.section;
15947 if (!cmse_sec->gc_mark
15948 && !_bfd_elf_gc_mark (info, cmse_sec, gc_mark_hook))
15949 return FALSE;
15950 /* The debug sections related to these secure entry
15951 functions are marked on enabling below flag. */
15952 debug_sec_need_to_be_marked = TRUE;
15953 }
15954 }
15955
15956 if (debug_sec_need_to_be_marked)
15957 {
15958 /* Looping over all the sections of the object file containing
15959 Armv8-M secure entry functions and marking all the debug
15960 sections. */
15961 for (isec = sub->sections; isec != NULL; isec = isec->next)
15962 {
15963 /* If not a debug sections, skip it. */
15964 if (!isec->gc_mark && (isec->flags & SEC_DEBUGGING))
15965 isec->gc_mark = 1 ;
15966 }
15967 debug_sec_need_to_be_marked = FALSE;
15968 }
15969 }
15970 }
15971 first_bfd_browse = FALSE;
15972 }
15973
15974 return TRUE;
15975 }
15976
15977 /* Treat mapping symbols as special target symbols. */
15978
15979 static bfd_boolean
15980 elf32_arm_is_target_special_symbol (bfd * abfd ATTRIBUTE_UNUSED, asymbol * sym)
15981 {
15982 return bfd_is_arm_special_symbol_name (sym->name,
15983 BFD_ARM_SPECIAL_SYM_TYPE_ANY);
15984 }
15985
15986 /* If the ELF symbol SYM might be a function in SEC, return the
15987 function size and set *CODE_OFF to the function's entry point,
15988 otherwise return zero. */
15989
15990 static bfd_size_type
15991 elf32_arm_maybe_function_sym (const asymbol *sym, asection *sec,
15992 bfd_vma *code_off)
15993 {
15994 bfd_size_type size;
15995
15996 if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
15997 | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
15998 || sym->section != sec)
15999 return 0;
16000
16001 if (!(sym->flags & BSF_SYNTHETIC))
16002 switch (ELF_ST_TYPE (((elf_symbol_type *) sym)->internal_elf_sym.st_info))
16003 {
16004 case STT_FUNC:
16005 case STT_ARM_TFUNC:
16006 case STT_NOTYPE:
16007 break;
16008 default:
16009 return 0;
16010 }
16011
16012 if ((sym->flags & BSF_LOCAL)
16013 && bfd_is_arm_special_symbol_name (sym->name,
16014 BFD_ARM_SPECIAL_SYM_TYPE_ANY))
16015 return 0;
16016
16017 *code_off = sym->value;
16018 size = 0;
16019 if (!(sym->flags & BSF_SYNTHETIC))
16020 size = ((elf_symbol_type *) sym)->internal_elf_sym.st_size;
16021 if (size == 0)
16022 size = 1;
16023 return size;
16024 }
16025
16026 static bfd_boolean
16027 elf32_arm_find_inliner_info (bfd * abfd,
16028 const char ** filename_ptr,
16029 const char ** functionname_ptr,
16030 unsigned int * line_ptr)
16031 {
16032 bfd_boolean found;
16033 found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
16034 functionname_ptr, line_ptr,
16035 & elf_tdata (abfd)->dwarf2_find_line_info);
16036 return found;
16037 }
16038
16039 /* Adjust a symbol defined by a dynamic object and referenced by a
16040 regular object. The current definition is in some section of the
16041 dynamic object, but we're not including those sections. We have to
16042 change the definition to something the rest of the link can
16043 understand. */
16044
16045 static bfd_boolean
16046 elf32_arm_adjust_dynamic_symbol (struct bfd_link_info * info,
16047 struct elf_link_hash_entry * h)
16048 {
16049 bfd * dynobj;
16050 asection *s, *srel;
16051 struct elf32_arm_link_hash_entry * eh;
16052 struct elf32_arm_link_hash_table *globals;
16053
16054 globals = elf32_arm_hash_table (info);
16055 if (globals == NULL)
16056 return FALSE;
16057
16058 dynobj = elf_hash_table (info)->dynobj;
16059
16060 /* Make sure we know what is going on here. */
16061 BFD_ASSERT (dynobj != NULL
16062 && (h->needs_plt
16063 || h->type == STT_GNU_IFUNC
16064 || h->is_weakalias
16065 || (h->def_dynamic
16066 && h->ref_regular
16067 && !h->def_regular)));
16068
16069 eh = (struct elf32_arm_link_hash_entry *) h;
16070
16071 /* If this is a function, put it in the procedure linkage table. We
16072 will fill in the contents of the procedure linkage table later,
16073 when we know the address of the .got section. */
16074 if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
16075 {
16076 /* Calls to STT_GNU_IFUNC symbols always use a PLT, even if the
16077 symbol binds locally. */
16078 if (h->plt.refcount <= 0
16079 || (h->type != STT_GNU_IFUNC
16080 && (SYMBOL_CALLS_LOCAL (info, h)
16081 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
16082 && h->root.type == bfd_link_hash_undefweak))))
16083 {
16084 /* This case can occur if we saw a PLT32 reloc in an input
16085 file, but the symbol was never referred to by a dynamic
16086 object, or if all references were garbage collected. In
16087 such a case, we don't actually need to build a procedure
16088 linkage table, and we can just do a PC24 reloc instead. */
16089 h->plt.offset = (bfd_vma) -1;
16090 eh->plt.thumb_refcount = 0;
16091 eh->plt.maybe_thumb_refcount = 0;
16092 eh->plt.noncall_refcount = 0;
16093 h->needs_plt = 0;
16094 }
16095
16096 return TRUE;
16097 }
16098 else
16099 {
16100 /* It's possible that we incorrectly decided a .plt reloc was
16101 needed for an R_ARM_PC24 or similar reloc to a non-function sym
16102 in check_relocs. We can't decide accurately between function
16103 and non-function syms in check-relocs; Objects loaded later in
16104 the link may change h->type. So fix it now. */
16105 h->plt.offset = (bfd_vma) -1;
16106 eh->plt.thumb_refcount = 0;
16107 eh->plt.maybe_thumb_refcount = 0;
16108 eh->plt.noncall_refcount = 0;
16109 }
16110
16111 /* If this is a weak symbol, and there is a real definition, the
16112 processor independent code will have arranged for us to see the
16113 real definition first, and we can just use the same value. */
16114 if (h->is_weakalias)
16115 {
16116 struct elf_link_hash_entry *def = weakdef (h);
16117 BFD_ASSERT (def->root.type == bfd_link_hash_defined);
16118 h->root.u.def.section = def->root.u.def.section;
16119 h->root.u.def.value = def->root.u.def.value;
16120 return TRUE;
16121 }
16122
16123 /* If there are no non-GOT references, we do not need a copy
16124 relocation. */
16125 if (!h->non_got_ref)
16126 return TRUE;
16127
16128 /* This is a reference to a symbol defined by a dynamic object which
16129 is not a function. */
16130
16131 /* If we are creating a shared library, we must presume that the
16132 only references to the symbol are via the global offset table.
16133 For such cases we need not do anything here; the relocations will
16134 be handled correctly by relocate_section. Relocatable executables
16135 can reference data in shared objects directly, so we don't need to
16136 do anything here. */
16137 if (bfd_link_pic (info) || globals->root.is_relocatable_executable)
16138 return TRUE;
16139
16140 /* We must allocate the symbol in our .dynbss section, which will
16141 become part of the .bss section of the executable. There will be
16142 an entry for this symbol in the .dynsym section. The dynamic
16143 object will contain position independent code, so all references
16144 from the dynamic object to this symbol will go through the global
16145 offset table. The dynamic linker will use the .dynsym entry to
16146 determine the address it must put in the global offset table, so
16147 both the dynamic object and the regular object will refer to the
16148 same memory location for the variable. */
16149 /* If allowed, we must generate a R_ARM_COPY reloc to tell the dynamic
16150 linker to copy the initial value out of the dynamic object and into
16151 the runtime process image. We need to remember the offset into the
16152 .rel(a).bss section we are going to use. */
16153 if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
16154 {
16155 s = globals->root.sdynrelro;
16156 srel = globals->root.sreldynrelro;
16157 }
16158 else
16159 {
16160 s = globals->root.sdynbss;
16161 srel = globals->root.srelbss;
16162 }
16163 if (info->nocopyreloc == 0
16164 && (h->root.u.def.section->flags & SEC_ALLOC) != 0
16165 && h->size != 0)
16166 {
16167 elf32_arm_allocate_dynrelocs (info, srel, 1);
16168 h->needs_copy = 1;
16169 }
16170
16171 return _bfd_elf_adjust_dynamic_copy (info, h, s);
16172 }
16173
16174 /* Allocate space in .plt, .got and associated reloc sections for
16175 dynamic relocs. */
16176
16177 static bfd_boolean
16178 allocate_dynrelocs_for_symbol (struct elf_link_hash_entry *h, void * inf)
16179 {
16180 struct bfd_link_info *info;
16181 struct elf32_arm_link_hash_table *htab;
16182 struct elf32_arm_link_hash_entry *eh;
16183 struct elf_dyn_relocs *p;
16184
16185 if (h->root.type == bfd_link_hash_indirect)
16186 return TRUE;
16187
16188 eh = (struct elf32_arm_link_hash_entry *) h;
16189
16190 info = (struct bfd_link_info *) inf;
16191 htab = elf32_arm_hash_table (info);
16192 if (htab == NULL)
16193 return FALSE;
16194
16195 if ((htab->root.dynamic_sections_created || h->type == STT_GNU_IFUNC)
16196 && h->plt.refcount > 0)
16197 {
16198 /* Make sure this symbol is output as a dynamic symbol.
16199 Undefined weak syms won't yet be marked as dynamic. */
16200 if (h->dynindx == -1 && !h->forced_local
16201 && h->root.type == bfd_link_hash_undefweak)
16202 {
16203 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16204 return FALSE;
16205 }
16206
16207 /* If the call in the PLT entry binds locally, the associated
16208 GOT entry should use an R_ARM_IRELATIVE relocation instead of
16209 the usual R_ARM_JUMP_SLOT. Put it in the .iplt section rather
16210 than the .plt section. */
16211 if (h->type == STT_GNU_IFUNC && SYMBOL_CALLS_LOCAL (info, h))
16212 {
16213 eh->is_iplt = 1;
16214 if (eh->plt.noncall_refcount == 0
16215 && SYMBOL_REFERENCES_LOCAL (info, h))
16216 /* All non-call references can be resolved directly.
16217 This means that they can (and in some cases, must)
16218 resolve directly to the run-time target, rather than
16219 to the PLT. That in turns means that any .got entry
16220 would be equal to the .igot.plt entry, so there's
16221 no point having both. */
16222 h->got.refcount = 0;
16223 }
16224
16225 if (bfd_link_pic (info)
16226 || eh->is_iplt
16227 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
16228 {
16229 elf32_arm_allocate_plt_entry (info, eh->is_iplt, &h->plt, &eh->plt);
16230
16231 /* If this symbol is not defined in a regular file, and we are
16232 not generating a shared library, then set the symbol to this
16233 location in the .plt. This is required to make function
16234 pointers compare as equal between the normal executable and
16235 the shared library. */
16236 if (! bfd_link_pic (info)
16237 && !h->def_regular)
16238 {
16239 h->root.u.def.section = htab->root.splt;
16240 h->root.u.def.value = h->plt.offset;
16241
16242 /* Make sure the function is not marked as Thumb, in case
16243 it is the target of an ABS32 relocation, which will
16244 point to the PLT entry. */
16245 ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
16246 }
16247
16248 /* VxWorks executables have a second set of relocations for
16249 each PLT entry. They go in a separate relocation section,
16250 which is processed by the kernel loader. */
16251 if (htab->root.target_os == is_vxworks && !bfd_link_pic (info))
16252 {
16253 /* There is a relocation for the initial PLT entry:
16254 an R_ARM_32 relocation for _GLOBAL_OFFSET_TABLE_. */
16255 if (h->plt.offset == htab->plt_header_size)
16256 elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 1);
16257
16258 /* There are two extra relocations for each subsequent
16259 PLT entry: an R_ARM_32 relocation for the GOT entry,
16260 and an R_ARM_32 relocation for the PLT entry. */
16261 elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 2);
16262 }
16263 }
16264 else
16265 {
16266 h->plt.offset = (bfd_vma) -1;
16267 h->needs_plt = 0;
16268 }
16269 }
16270 else
16271 {
16272 h->plt.offset = (bfd_vma) -1;
16273 h->needs_plt = 0;
16274 }
16275
16276 eh = (struct elf32_arm_link_hash_entry *) h;
16277 eh->tlsdesc_got = (bfd_vma) -1;
16278
16279 if (h->got.refcount > 0)
16280 {
16281 asection *s;
16282 bfd_boolean dyn;
16283 int tls_type = elf32_arm_hash_entry (h)->tls_type;
16284 int indx;
16285
16286 /* Make sure this symbol is output as a dynamic symbol.
16287 Undefined weak syms won't yet be marked as dynamic. */
16288 if (htab->root.dynamic_sections_created && h->dynindx == -1 && !h->forced_local
16289 && h->root.type == bfd_link_hash_undefweak)
16290 {
16291 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16292 return FALSE;
16293 }
16294
16295 if (htab->root.target_os != is_symbian)
16296 {
16297 s = htab->root.sgot;
16298 h->got.offset = s->size;
16299
16300 if (tls_type == GOT_UNKNOWN)
16301 abort ();
16302
16303 if (tls_type == GOT_NORMAL)
16304 /* Non-TLS symbols need one GOT slot. */
16305 s->size += 4;
16306 else
16307 {
16308 if (tls_type & GOT_TLS_GDESC)
16309 {
16310 /* R_ARM_TLS_DESC needs 2 GOT slots. */
16311 eh->tlsdesc_got
16312 = (htab->root.sgotplt->size
16313 - elf32_arm_compute_jump_table_size (htab));
16314 htab->root.sgotplt->size += 8;
16315 h->got.offset = (bfd_vma) -2;
16316 /* plt.got_offset needs to know there's a TLS_DESC
16317 reloc in the middle of .got.plt. */
16318 htab->num_tls_desc++;
16319 }
16320
16321 if (tls_type & GOT_TLS_GD)
16322 {
16323 /* R_ARM_TLS_GD32 and R_ARM_TLS_GD32_FDPIC need two
16324 consecutive GOT slots. If the symbol is both GD
16325 and GDESC, got.offset may have been
16326 overwritten. */
16327 h->got.offset = s->size;
16328 s->size += 8;
16329 }
16330
16331 if (tls_type & GOT_TLS_IE)
16332 /* R_ARM_TLS_IE32/R_ARM_TLS_IE32_FDPIC need one GOT
16333 slot. */
16334 s->size += 4;
16335 }
16336
16337 dyn = htab->root.dynamic_sections_created;
16338
16339 indx = 0;
16340 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
16341 bfd_link_pic (info),
16342 h)
16343 && (!bfd_link_pic (info)
16344 || !SYMBOL_REFERENCES_LOCAL (info, h)))
16345 indx = h->dynindx;
16346
16347 if (tls_type != GOT_NORMAL
16348 && (bfd_link_dll (info) || indx != 0)
16349 && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
16350 || h->root.type != bfd_link_hash_undefweak))
16351 {
16352 if (tls_type & GOT_TLS_IE)
16353 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16354
16355 if (tls_type & GOT_TLS_GD)
16356 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16357
16358 if (tls_type & GOT_TLS_GDESC)
16359 {
16360 elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
16361 /* GDESC needs a trampoline to jump to. */
16362 htab->tls_trampoline = -1;
16363 }
16364
16365 /* Only GD needs it. GDESC just emits one relocation per
16366 2 entries. */
16367 if ((tls_type & GOT_TLS_GD) && indx != 0)
16368 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16369 }
16370 else if (((indx != -1) || htab->fdpic_p)
16371 && !SYMBOL_REFERENCES_LOCAL (info, h))
16372 {
16373 if (htab->root.dynamic_sections_created)
16374 /* Reserve room for the GOT entry's R_ARM_GLOB_DAT relocation. */
16375 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16376 }
16377 else if (h->type == STT_GNU_IFUNC
16378 && eh->plt.noncall_refcount == 0)
16379 /* No non-call references resolve the STT_GNU_IFUNC's PLT entry;
16380 they all resolve dynamically instead. Reserve room for the
16381 GOT entry's R_ARM_IRELATIVE relocation. */
16382 elf32_arm_allocate_irelocs (info, htab->root.srelgot, 1);
16383 else if (bfd_link_pic (info)
16384 && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
16385 /* Reserve room for the GOT entry's R_ARM_RELATIVE relocation. */
16386 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16387 else if (htab->fdpic_p && tls_type == GOT_NORMAL)
16388 /* Reserve room for rofixup for FDPIC executable. */
16389 /* TLS relocs do not need space since they are completely
16390 resolved. */
16391 htab->srofixup->size += 4;
16392 }
16393 }
16394 else
16395 h->got.offset = (bfd_vma) -1;
16396
16397 /* FDPIC support. */
16398 if (eh->fdpic_cnts.gotofffuncdesc_cnt > 0)
16399 {
16400 /* Symbol musn't be exported. */
16401 if (h->dynindx != -1)
16402 abort();
16403
16404 /* We only allocate one function descriptor with its associated relocation. */
16405 if (eh->fdpic_cnts.funcdesc_offset == -1)
16406 {
16407 asection *s = htab->root.sgot;
16408
16409 eh->fdpic_cnts.funcdesc_offset = s->size;
16410 s->size += 8;
16411 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16412 if (bfd_link_pic(info))
16413 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16414 else
16415 htab->srofixup->size += 8;
16416 }
16417 }
16418
16419 if (eh->fdpic_cnts.gotfuncdesc_cnt > 0)
16420 {
16421 asection *s = htab->root.sgot;
16422
16423 if (htab->root.dynamic_sections_created && h->dynindx == -1
16424 && !h->forced_local)
16425 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16426 return FALSE;
16427
16428 if (h->dynindx == -1)
16429 {
16430 /* We only allocate one function descriptor with its associated relocation. q */
16431 if (eh->fdpic_cnts.funcdesc_offset == -1)
16432 {
16433
16434 eh->fdpic_cnts.funcdesc_offset = s->size;
16435 s->size += 8;
16436 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16437 if (bfd_link_pic(info))
16438 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16439 else
16440 htab->srofixup->size += 8;
16441 }
16442 }
16443
16444 /* Add one entry into the GOT and a R_ARM_FUNCDESC or
16445 R_ARM_RELATIVE/rofixup relocation on it. */
16446 eh->fdpic_cnts.gotfuncdesc_offset = s->size;
16447 s->size += 4;
16448 if (h->dynindx == -1 && !bfd_link_pic(info))
16449 htab->srofixup->size += 4;
16450 else
16451 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16452 }
16453
16454 if (eh->fdpic_cnts.funcdesc_cnt > 0)
16455 {
16456 if (htab->root.dynamic_sections_created && h->dynindx == -1
16457 && !h->forced_local)
16458 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16459 return FALSE;
16460
16461 if (h->dynindx == -1)
16462 {
16463 /* We only allocate one function descriptor with its associated relocation. */
16464 if (eh->fdpic_cnts.funcdesc_offset == -1)
16465 {
16466 asection *s = htab->root.sgot;
16467
16468 eh->fdpic_cnts.funcdesc_offset = s->size;
16469 s->size += 8;
16470 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16471 if (bfd_link_pic(info))
16472 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16473 else
16474 htab->srofixup->size += 8;
16475 }
16476 }
16477 if (h->dynindx == -1 && !bfd_link_pic(info))
16478 {
16479 /* For FDPIC executable we replace R_ARM_RELATIVE with a rofixup. */
16480 htab->srofixup->size += 4 * eh->fdpic_cnts.funcdesc_cnt;
16481 }
16482 else
16483 {
16484 /* Will need one dynamic reloc per reference. will be either
16485 R_ARM_FUNCDESC or R_ARM_RELATIVE for hidden symbols. */
16486 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot,
16487 eh->fdpic_cnts.funcdesc_cnt);
16488 }
16489 }
16490
16491 /* Allocate stubs for exported Thumb functions on v4t. */
16492 if (!htab->use_blx && h->dynindx != -1
16493 && h->def_regular
16494 && ARM_GET_SYM_BRANCH_TYPE (h->target_internal) == ST_BRANCH_TO_THUMB
16495 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
16496 {
16497 struct elf_link_hash_entry * th;
16498 struct bfd_link_hash_entry * bh;
16499 struct elf_link_hash_entry * myh;
16500 char name[1024];
16501 asection *s;
16502 bh = NULL;
16503 /* Create a new symbol to regist the real location of the function. */
16504 s = h->root.u.def.section;
16505 sprintf (name, "__real_%s", h->root.root.string);
16506 _bfd_generic_link_add_one_symbol (info, s->owner,
16507 name, BSF_GLOBAL, s,
16508 h->root.u.def.value,
16509 NULL, TRUE, FALSE, &bh);
16510
16511 myh = (struct elf_link_hash_entry *) bh;
16512 myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
16513 myh->forced_local = 1;
16514 ARM_SET_SYM_BRANCH_TYPE (myh->target_internal, ST_BRANCH_TO_THUMB);
16515 eh->export_glue = myh;
16516 th = record_arm_to_thumb_glue (info, h);
16517 /* Point the symbol at the stub. */
16518 h->type = ELF_ST_INFO (ELF_ST_BIND (h->type), STT_FUNC);
16519 ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
16520 h->root.u.def.section = th->root.u.def.section;
16521 h->root.u.def.value = th->root.u.def.value & ~1;
16522 }
16523
16524 if (h->dyn_relocs == NULL)
16525 return TRUE;
16526
16527 /* In the shared -Bsymbolic case, discard space allocated for
16528 dynamic pc-relative relocs against symbols which turn out to be
16529 defined in regular objects. For the normal shared case, discard
16530 space for pc-relative relocs that have become local due to symbol
16531 visibility changes. */
16532
16533 if (bfd_link_pic (info) || htab->root.is_relocatable_executable || htab->fdpic_p)
16534 {
16535 /* Relocs that use pc_count are PC-relative forms, which will appear
16536 on something like ".long foo - ." or "movw REG, foo - .". We want
16537 calls to protected symbols to resolve directly to the function
16538 rather than going via the plt. If people want function pointer
16539 comparisons to work as expected then they should avoid writing
16540 assembly like ".long foo - .". */
16541 if (SYMBOL_CALLS_LOCAL (info, h))
16542 {
16543 struct elf_dyn_relocs **pp;
16544
16545 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
16546 {
16547 p->count -= p->pc_count;
16548 p->pc_count = 0;
16549 if (p->count == 0)
16550 *pp = p->next;
16551 else
16552 pp = &p->next;
16553 }
16554 }
16555
16556 if (htab->root.target_os == is_vxworks)
16557 {
16558 struct elf_dyn_relocs **pp;
16559
16560 for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
16561 {
16562 if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
16563 *pp = p->next;
16564 else
16565 pp = &p->next;
16566 }
16567 }
16568
16569 /* Also discard relocs on undefined weak syms with non-default
16570 visibility. */
16571 if (h->dyn_relocs != NULL
16572 && h->root.type == bfd_link_hash_undefweak)
16573 {
16574 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
16575 || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
16576 h->dyn_relocs = NULL;
16577
16578 /* Make sure undefined weak symbols are output as a dynamic
16579 symbol in PIEs. */
16580 else if (htab->root.dynamic_sections_created && h->dynindx == -1
16581 && !h->forced_local)
16582 {
16583 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16584 return FALSE;
16585 }
16586 }
16587
16588 else if (htab->root.is_relocatable_executable && h->dynindx == -1
16589 && h->root.type == bfd_link_hash_new)
16590 {
16591 /* Output absolute symbols so that we can create relocations
16592 against them. For normal symbols we output a relocation
16593 against the section that contains them. */
16594 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16595 return FALSE;
16596 }
16597
16598 }
16599 else
16600 {
16601 /* For the non-shared case, discard space for relocs against
16602 symbols which turn out to need copy relocs or are not
16603 dynamic. */
16604
16605 if (!h->non_got_ref
16606 && ((h->def_dynamic
16607 && !h->def_regular)
16608 || (htab->root.dynamic_sections_created
16609 && (h->root.type == bfd_link_hash_undefweak
16610 || h->root.type == bfd_link_hash_undefined))))
16611 {
16612 /* Make sure this symbol is output as a dynamic symbol.
16613 Undefined weak syms won't yet be marked as dynamic. */
16614 if (h->dynindx == -1 && !h->forced_local
16615 && h->root.type == bfd_link_hash_undefweak)
16616 {
16617 if (! bfd_elf_link_record_dynamic_symbol (info, h))
16618 return FALSE;
16619 }
16620
16621 /* If that succeeded, we know we'll be keeping all the
16622 relocs. */
16623 if (h->dynindx != -1)
16624 goto keep;
16625 }
16626
16627 h->dyn_relocs = NULL;
16628
16629 keep: ;
16630 }
16631
16632 /* Finally, allocate space. */
16633 for (p = h->dyn_relocs; p != NULL; p = p->next)
16634 {
16635 asection *sreloc = elf_section_data (p->sec)->sreloc;
16636
16637 if (h->type == STT_GNU_IFUNC
16638 && eh->plt.noncall_refcount == 0
16639 && SYMBOL_REFERENCES_LOCAL (info, h))
16640 elf32_arm_allocate_irelocs (info, sreloc, p->count);
16641 else if (h->dynindx != -1 && (!bfd_link_pic(info) || !info->symbolic || !h->def_regular))
16642 elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
16643 else if (htab->fdpic_p && !bfd_link_pic(info))
16644 htab->srofixup->size += 4 * p->count;
16645 else
16646 elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
16647 }
16648
16649 return TRUE;
16650 }
16651
16652 void
16653 bfd_elf32_arm_set_byteswap_code (struct bfd_link_info *info,
16654 int byteswap_code)
16655 {
16656 struct elf32_arm_link_hash_table *globals;
16657
16658 globals = elf32_arm_hash_table (info);
16659 if (globals == NULL)
16660 return;
16661
16662 globals->byteswap_code = byteswap_code;
16663 }
16664
16665 /* Set the sizes of the dynamic sections. */
16666
16667 static bfd_boolean
16668 elf32_arm_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
16669 struct bfd_link_info * info)
16670 {
16671 bfd * dynobj;
16672 asection * s;
16673 bfd_boolean relocs;
16674 bfd *ibfd;
16675 struct elf32_arm_link_hash_table *htab;
16676
16677 htab = elf32_arm_hash_table (info);
16678 if (htab == NULL)
16679 return FALSE;
16680
16681 dynobj = elf_hash_table (info)->dynobj;
16682 BFD_ASSERT (dynobj != NULL);
16683 check_use_blx (htab);
16684
16685 if (elf_hash_table (info)->dynamic_sections_created)
16686 {
16687 /* Set the contents of the .interp section to the interpreter. */
16688 if (bfd_link_executable (info) && !info->nointerp)
16689 {
16690 s = bfd_get_linker_section (dynobj, ".interp");
16691 BFD_ASSERT (s != NULL);
16692 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
16693 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
16694 }
16695 }
16696
16697 /* Set up .got offsets for local syms, and space for local dynamic
16698 relocs. */
16699 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
16700 {
16701 bfd_signed_vma *local_got;
16702 bfd_signed_vma *end_local_got;
16703 struct arm_local_iplt_info **local_iplt_ptr, *local_iplt;
16704 char *local_tls_type;
16705 bfd_vma *local_tlsdesc_gotent;
16706 bfd_size_type locsymcount;
16707 Elf_Internal_Shdr *symtab_hdr;
16708 asection *srel;
16709 unsigned int symndx;
16710 struct fdpic_local *local_fdpic_cnts;
16711
16712 if (! is_arm_elf (ibfd))
16713 continue;
16714
16715 for (s = ibfd->sections; s != NULL; s = s->next)
16716 {
16717 struct elf_dyn_relocs *p;
16718
16719 for (p = (struct elf_dyn_relocs *)
16720 elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
16721 {
16722 if (!bfd_is_abs_section (p->sec)
16723 && bfd_is_abs_section (p->sec->output_section))
16724 {
16725 /* Input section has been discarded, either because
16726 it is a copy of a linkonce section or due to
16727 linker script /DISCARD/, so we'll be discarding
16728 the relocs too. */
16729 }
16730 else if (htab->root.target_os == is_vxworks
16731 && strcmp (p->sec->output_section->name,
16732 ".tls_vars") == 0)
16733 {
16734 /* Relocations in vxworks .tls_vars sections are
16735 handled specially by the loader. */
16736 }
16737 else if (p->count != 0)
16738 {
16739 srel = elf_section_data (p->sec)->sreloc;
16740 if (htab->fdpic_p && !bfd_link_pic(info))
16741 htab->srofixup->size += 4 * p->count;
16742 else
16743 elf32_arm_allocate_dynrelocs (info, srel, p->count);
16744 if ((p->sec->output_section->flags & SEC_READONLY) != 0)
16745 info->flags |= DF_TEXTREL;
16746 }
16747 }
16748 }
16749
16750 local_got = elf_local_got_refcounts (ibfd);
16751 if (!local_got)
16752 continue;
16753
16754 symtab_hdr = & elf_symtab_hdr (ibfd);
16755 locsymcount = symtab_hdr->sh_info;
16756 end_local_got = local_got + locsymcount;
16757 local_iplt_ptr = elf32_arm_local_iplt (ibfd);
16758 local_tls_type = elf32_arm_local_got_tls_type (ibfd);
16759 local_tlsdesc_gotent = elf32_arm_local_tlsdesc_gotent (ibfd);
16760 local_fdpic_cnts = elf32_arm_local_fdpic_cnts (ibfd);
16761 symndx = 0;
16762 s = htab->root.sgot;
16763 srel = htab->root.srelgot;
16764 for (; local_got < end_local_got;
16765 ++local_got, ++local_iplt_ptr, ++local_tls_type,
16766 ++local_tlsdesc_gotent, ++symndx, ++local_fdpic_cnts)
16767 {
16768 *local_tlsdesc_gotent = (bfd_vma) -1;
16769 local_iplt = *local_iplt_ptr;
16770
16771 /* FDPIC support. */
16772 if (local_fdpic_cnts->gotofffuncdesc_cnt > 0)
16773 {
16774 if (local_fdpic_cnts->funcdesc_offset == -1)
16775 {
16776 local_fdpic_cnts->funcdesc_offset = s->size;
16777 s->size += 8;
16778
16779 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16780 if (bfd_link_pic(info))
16781 elf32_arm_allocate_dynrelocs (info, srel, 1);
16782 else
16783 htab->srofixup->size += 8;
16784 }
16785 }
16786
16787 if (local_fdpic_cnts->funcdesc_cnt > 0)
16788 {
16789 if (local_fdpic_cnts->funcdesc_offset == -1)
16790 {
16791 local_fdpic_cnts->funcdesc_offset = s->size;
16792 s->size += 8;
16793
16794 /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups. */
16795 if (bfd_link_pic(info))
16796 elf32_arm_allocate_dynrelocs (info, srel, 1);
16797 else
16798 htab->srofixup->size += 8;
16799 }
16800
16801 /* We will add n R_ARM_RELATIVE relocations or n rofixups. */
16802 if (bfd_link_pic(info))
16803 elf32_arm_allocate_dynrelocs (info, srel, local_fdpic_cnts->funcdesc_cnt);
16804 else
16805 htab->srofixup->size += 4 * local_fdpic_cnts->funcdesc_cnt;
16806 }
16807
16808 if (local_iplt != NULL)
16809 {
16810 struct elf_dyn_relocs *p;
16811
16812 if (local_iplt->root.refcount > 0)
16813 {
16814 elf32_arm_allocate_plt_entry (info, TRUE,
16815 &local_iplt->root,
16816 &local_iplt->arm);
16817 if (local_iplt->arm.noncall_refcount == 0)
16818 /* All references to the PLT are calls, so all
16819 non-call references can resolve directly to the
16820 run-time target. This means that the .got entry
16821 would be the same as the .igot.plt entry, so there's
16822 no point creating both. */
16823 *local_got = 0;
16824 }
16825 else
16826 {
16827 BFD_ASSERT (local_iplt->arm.noncall_refcount == 0);
16828 local_iplt->root.offset = (bfd_vma) -1;
16829 }
16830
16831 for (p = local_iplt->dyn_relocs; p != NULL; p = p->next)
16832 {
16833 asection *psrel;
16834
16835 psrel = elf_section_data (p->sec)->sreloc;
16836 if (local_iplt->arm.noncall_refcount == 0)
16837 elf32_arm_allocate_irelocs (info, psrel, p->count);
16838 else
16839 elf32_arm_allocate_dynrelocs (info, psrel, p->count);
16840 }
16841 }
16842 if (*local_got > 0)
16843 {
16844 Elf_Internal_Sym *isym;
16845
16846 *local_got = s->size;
16847 if (*local_tls_type & GOT_TLS_GD)
16848 /* TLS_GD relocs need an 8-byte structure in the GOT. */
16849 s->size += 8;
16850 if (*local_tls_type & GOT_TLS_GDESC)
16851 {
16852 *local_tlsdesc_gotent = htab->root.sgotplt->size
16853 - elf32_arm_compute_jump_table_size (htab);
16854 htab->root.sgotplt->size += 8;
16855 *local_got = (bfd_vma) -2;
16856 /* plt.got_offset needs to know there's a TLS_DESC
16857 reloc in the middle of .got.plt. */
16858 htab->num_tls_desc++;
16859 }
16860 if (*local_tls_type & GOT_TLS_IE)
16861 s->size += 4;
16862
16863 if (*local_tls_type & GOT_NORMAL)
16864 {
16865 /* If the symbol is both GD and GDESC, *local_got
16866 may have been overwritten. */
16867 *local_got = s->size;
16868 s->size += 4;
16869 }
16870
16871 isym = bfd_sym_from_r_symndx (&htab->root.sym_cache, ibfd,
16872 symndx);
16873 if (isym == NULL)
16874 return FALSE;
16875
16876 /* If all references to an STT_GNU_IFUNC PLT are calls,
16877 then all non-call references, including this GOT entry,
16878 resolve directly to the run-time target. */
16879 if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
16880 && (local_iplt == NULL
16881 || local_iplt->arm.noncall_refcount == 0))
16882 elf32_arm_allocate_irelocs (info, srel, 1);
16883 else if (bfd_link_pic (info) || output_bfd->flags & DYNAMIC || htab->fdpic_p)
16884 {
16885 if ((bfd_link_pic (info) && !(*local_tls_type & GOT_TLS_GDESC)))
16886 elf32_arm_allocate_dynrelocs (info, srel, 1);
16887 else if (htab->fdpic_p && *local_tls_type & GOT_NORMAL)
16888 htab->srofixup->size += 4;
16889
16890 if ((bfd_link_pic (info) || htab->fdpic_p)
16891 && *local_tls_type & GOT_TLS_GDESC)
16892 {
16893 elf32_arm_allocate_dynrelocs (info,
16894 htab->root.srelplt, 1);
16895 htab->tls_trampoline = -1;
16896 }
16897 }
16898 }
16899 else
16900 *local_got = (bfd_vma) -1;
16901 }
16902 }
16903
16904 if (htab->tls_ldm_got.refcount > 0)
16905 {
16906 /* Allocate two GOT entries and one dynamic relocation (if necessary)
16907 for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations. */
16908 htab->tls_ldm_got.offset = htab->root.sgot->size;
16909 htab->root.sgot->size += 8;
16910 if (bfd_link_pic (info))
16911 elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16912 }
16913 else
16914 htab->tls_ldm_got.offset = -1;
16915
16916 /* At the very end of the .rofixup section is a pointer to the GOT,
16917 reserve space for it. */
16918 if (htab->fdpic_p && htab->srofixup != NULL)
16919 htab->srofixup->size += 4;
16920
16921 /* Allocate global sym .plt and .got entries, and space for global
16922 sym dynamic relocs. */
16923 elf_link_hash_traverse (& htab->root, allocate_dynrelocs_for_symbol, info);
16924
16925 /* Here we rummage through the found bfds to collect glue information. */
16926 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
16927 {
16928 if (! is_arm_elf (ibfd))
16929 continue;
16930
16931 /* Initialise mapping tables for code/data. */
16932 bfd_elf32_arm_init_maps (ibfd);
16933
16934 if (!bfd_elf32_arm_process_before_allocation (ibfd, info)
16935 || !bfd_elf32_arm_vfp11_erratum_scan (ibfd, info)
16936 || !bfd_elf32_arm_stm32l4xx_erratum_scan (ibfd, info))
16937 _bfd_error_handler (_("errors encountered processing file %pB"), ibfd);
16938 }
16939
16940 /* Allocate space for the glue sections now that we've sized them. */
16941 bfd_elf32_arm_allocate_interworking_sections (info);
16942
16943 /* For every jump slot reserved in the sgotplt, reloc_count is
16944 incremented. However, when we reserve space for TLS descriptors,
16945 it's not incremented, so in order to compute the space reserved
16946 for them, it suffices to multiply the reloc count by the jump
16947 slot size. */
16948 if (htab->root.srelplt)
16949 htab->sgotplt_jump_table_size = elf32_arm_compute_jump_table_size(htab);
16950
16951 if (htab->tls_trampoline)
16952 {
16953 if (htab->root.splt->size == 0)
16954 htab->root.splt->size += htab->plt_header_size;
16955
16956 htab->tls_trampoline = htab->root.splt->size;
16957 htab->root.splt->size += htab->plt_entry_size;
16958
16959 /* If we're not using lazy TLS relocations, don't generate the
16960 PLT and GOT entries they require. */
16961 if ((info->flags & DF_BIND_NOW))
16962 htab->root.tlsdesc_plt = 0;
16963 else
16964 {
16965 htab->root.tlsdesc_got = htab->root.sgot->size;
16966 htab->root.sgot->size += 4;
16967
16968 htab->root.tlsdesc_plt = htab->root.splt->size;
16969 htab->root.splt->size += 4 * ARRAY_SIZE (dl_tlsdesc_lazy_trampoline);
16970 }
16971 }
16972
16973 /* The check_relocs and adjust_dynamic_symbol entry points have
16974 determined the sizes of the various dynamic sections. Allocate
16975 memory for them. */
16976 relocs = FALSE;
16977 for (s = dynobj->sections; s != NULL; s = s->next)
16978 {
16979 const char * name;
16980
16981 if ((s->flags & SEC_LINKER_CREATED) == 0)
16982 continue;
16983
16984 /* It's OK to base decisions on the section name, because none
16985 of the dynobj section names depend upon the input files. */
16986 name = bfd_section_name (s);
16987
16988 if (s == htab->root.splt)
16989 {
16990 /* Remember whether there is a PLT. */
16991 ;
16992 }
16993 else if (CONST_STRNEQ (name, ".rel"))
16994 {
16995 if (s->size != 0)
16996 {
16997 /* Remember whether there are any reloc sections other
16998 than .rel(a).plt and .rela.plt.unloaded. */
16999 if (s != htab->root.srelplt && s != htab->srelplt2)
17000 relocs = TRUE;
17001
17002 /* We use the reloc_count field as a counter if we need
17003 to copy relocs into the output file. */
17004 s->reloc_count = 0;
17005 }
17006 }
17007 else if (s != htab->root.sgot
17008 && s != htab->root.sgotplt
17009 && s != htab->root.iplt
17010 && s != htab->root.igotplt
17011 && s != htab->root.sdynbss
17012 && s != htab->root.sdynrelro
17013 && s != htab->srofixup)
17014 {
17015 /* It's not one of our sections, so don't allocate space. */
17016 continue;
17017 }
17018
17019 if (s->size == 0)
17020 {
17021 /* If we don't need this section, strip it from the
17022 output file. This is mostly to handle .rel(a).bss and
17023 .rel(a).plt. We must create both sections in
17024 create_dynamic_sections, because they must be created
17025 before the linker maps input sections to output
17026 sections. The linker does that before
17027 adjust_dynamic_symbol is called, and it is that
17028 function which decides whether anything needs to go
17029 into these sections. */
17030 s->flags |= SEC_EXCLUDE;
17031 continue;
17032 }
17033
17034 if ((s->flags & SEC_HAS_CONTENTS) == 0)
17035 continue;
17036
17037 /* Allocate memory for the section contents. */
17038 s->contents = (unsigned char *) bfd_zalloc (dynobj, s->size);
17039 if (s->contents == NULL)
17040 return FALSE;
17041 }
17042
17043 return _bfd_elf_maybe_vxworks_add_dynamic_tags (output_bfd, info,
17044 relocs);
17045 }
17046
17047 /* Size sections even though they're not dynamic. We use it to setup
17048 _TLS_MODULE_BASE_, if needed. */
17049
17050 static bfd_boolean
17051 elf32_arm_always_size_sections (bfd *output_bfd,
17052 struct bfd_link_info *info)
17053 {
17054 asection *tls_sec;
17055 struct elf32_arm_link_hash_table *htab;
17056
17057 htab = elf32_arm_hash_table (info);
17058
17059 if (bfd_link_relocatable (info))
17060 return TRUE;
17061
17062 tls_sec = elf_hash_table (info)->tls_sec;
17063
17064 if (tls_sec)
17065 {
17066 struct elf_link_hash_entry *tlsbase;
17067
17068 tlsbase = elf_link_hash_lookup
17069 (elf_hash_table (info), "_TLS_MODULE_BASE_", TRUE, TRUE, FALSE);
17070
17071 if (tlsbase)
17072 {
17073 struct bfd_link_hash_entry *bh = NULL;
17074 const struct elf_backend_data *bed
17075 = get_elf_backend_data (output_bfd);
17076
17077 if (!(_bfd_generic_link_add_one_symbol
17078 (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
17079 tls_sec, 0, NULL, FALSE,
17080 bed->collect, &bh)))
17081 return FALSE;
17082
17083 tlsbase->type = STT_TLS;
17084 tlsbase = (struct elf_link_hash_entry *)bh;
17085 tlsbase->def_regular = 1;
17086 tlsbase->other = STV_HIDDEN;
17087 (*bed->elf_backend_hide_symbol) (info, tlsbase, TRUE);
17088 }
17089 }
17090
17091 if (htab->fdpic_p && !bfd_link_relocatable (info)
17092 && !bfd_elf_stack_segment_size (output_bfd, info,
17093 "__stacksize", DEFAULT_STACK_SIZE))
17094 return FALSE;
17095
17096 return TRUE;
17097 }
17098
17099 /* Finish up dynamic symbol handling. We set the contents of various
17100 dynamic sections here. */
17101
17102 static bfd_boolean
17103 elf32_arm_finish_dynamic_symbol (bfd * output_bfd,
17104 struct bfd_link_info * info,
17105 struct elf_link_hash_entry * h,
17106 Elf_Internal_Sym * sym)
17107 {
17108 struct elf32_arm_link_hash_table *htab;
17109 struct elf32_arm_link_hash_entry *eh;
17110
17111 htab = elf32_arm_hash_table (info);
17112 if (htab == NULL)
17113 return FALSE;
17114
17115 eh = (struct elf32_arm_link_hash_entry *) h;
17116
17117 if (h->plt.offset != (bfd_vma) -1)
17118 {
17119 if (!eh->is_iplt)
17120 {
17121 BFD_ASSERT (h->dynindx != -1);
17122 if (! elf32_arm_populate_plt_entry (output_bfd, info, &h->plt, &eh->plt,
17123 h->dynindx, 0))
17124 return FALSE;
17125 }
17126
17127 if (!h->def_regular)
17128 {
17129 /* Mark the symbol as undefined, rather than as defined in
17130 the .plt section. */
17131 sym->st_shndx = SHN_UNDEF;
17132 /* If the symbol is weak we need to clear the value.
17133 Otherwise, the PLT entry would provide a definition for
17134 the symbol even if the symbol wasn't defined anywhere,
17135 and so the symbol would never be NULL. Leave the value if
17136 there were any relocations where pointer equality matters
17137 (this is a clue for the dynamic linker, to make function
17138 pointer comparisons work between an application and shared
17139 library). */
17140 if (!h->ref_regular_nonweak || !h->pointer_equality_needed)
17141 sym->st_value = 0;
17142 }
17143 else if (eh->is_iplt && eh->plt.noncall_refcount != 0)
17144 {
17145 /* At least one non-call relocation references this .iplt entry,
17146 so the .iplt entry is the function's canonical address. */
17147 sym->st_info = ELF_ST_INFO (ELF_ST_BIND (sym->st_info), STT_FUNC);
17148 ARM_SET_SYM_BRANCH_TYPE (sym->st_target_internal, ST_BRANCH_TO_ARM);
17149 sym->st_shndx = (_bfd_elf_section_from_bfd_section
17150 (output_bfd, htab->root.iplt->output_section));
17151 sym->st_value = (h->plt.offset
17152 + htab->root.iplt->output_section->vma
17153 + htab->root.iplt->output_offset);
17154 }
17155 }
17156
17157 if (h->needs_copy)
17158 {
17159 asection * s;
17160 Elf_Internal_Rela rel;
17161
17162 /* This symbol needs a copy reloc. Set it up. */
17163 BFD_ASSERT (h->dynindx != -1
17164 && (h->root.type == bfd_link_hash_defined
17165 || h->root.type == bfd_link_hash_defweak));
17166
17167 rel.r_addend = 0;
17168 rel.r_offset = (h->root.u.def.value
17169 + h->root.u.def.section->output_section->vma
17170 + h->root.u.def.section->output_offset);
17171 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_COPY);
17172 if (h->root.u.def.section == htab->root.sdynrelro)
17173 s = htab->root.sreldynrelro;
17174 else
17175 s = htab->root.srelbss;
17176 elf32_arm_add_dynreloc (output_bfd, info, s, &rel);
17177 }
17178
17179 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. On VxWorks,
17180 and for FDPIC, the _GLOBAL_OFFSET_TABLE_ symbol is not absolute:
17181 it is relative to the ".got" section. */
17182 if (h == htab->root.hdynamic
17183 || (!htab->fdpic_p
17184 && htab->root.target_os != is_vxworks
17185 && h == htab->root.hgot))
17186 sym->st_shndx = SHN_ABS;
17187
17188 return TRUE;
17189 }
17190
17191 static void
17192 arm_put_trampoline (struct elf32_arm_link_hash_table *htab, bfd *output_bfd,
17193 void *contents,
17194 const unsigned long *template, unsigned count)
17195 {
17196 unsigned ix;
17197
17198 for (ix = 0; ix != count; ix++)
17199 {
17200 unsigned long insn = template[ix];
17201
17202 /* Emit mov pc,rx if bx is not permitted. */
17203 if (htab->fix_v4bx == 1 && (insn & 0x0ffffff0) == 0x012fff10)
17204 insn = (insn & 0xf000000f) | 0x01a0f000;
17205 put_arm_insn (htab, output_bfd, insn, (char *)contents + ix*4);
17206 }
17207 }
17208
17209 /* Install the special first PLT entry for elf32-arm-nacl. Unlike
17210 other variants, NaCl needs this entry in a static executable's
17211 .iplt too. When we're handling that case, GOT_DISPLACEMENT is
17212 zero. For .iplt really only the last bundle is useful, and .iplt
17213 could have a shorter first entry, with each individual PLT entry's
17214 relative branch calculated differently so it targets the last
17215 bundle instead of the instruction before it (labelled .Lplt_tail
17216 above). But it's simpler to keep the size and layout of PLT0
17217 consistent with the dynamic case, at the cost of some dead code at
17218 the start of .iplt and the one dead store to the stack at the start
17219 of .Lplt_tail. */
17220 static void
17221 arm_nacl_put_plt0 (struct elf32_arm_link_hash_table *htab, bfd *output_bfd,
17222 asection *plt, bfd_vma got_displacement)
17223 {
17224 unsigned int i;
17225
17226 put_arm_insn (htab, output_bfd,
17227 elf32_arm_nacl_plt0_entry[0]
17228 | arm_movw_immediate (got_displacement),
17229 plt->contents + 0);
17230 put_arm_insn (htab, output_bfd,
17231 elf32_arm_nacl_plt0_entry[1]
17232 | arm_movt_immediate (got_displacement),
17233 plt->contents + 4);
17234
17235 for (i = 2; i < ARRAY_SIZE (elf32_arm_nacl_plt0_entry); ++i)
17236 put_arm_insn (htab, output_bfd,
17237 elf32_arm_nacl_plt0_entry[i],
17238 plt->contents + (i * 4));
17239 }
17240
17241 /* Finish up the dynamic sections. */
17242
17243 static bfd_boolean
17244 elf32_arm_finish_dynamic_sections (bfd * output_bfd, struct bfd_link_info * info)
17245 {
17246 bfd * dynobj;
17247 asection * sgot;
17248 asection * sdyn;
17249 struct elf32_arm_link_hash_table *htab;
17250
17251 htab = elf32_arm_hash_table (info);
17252 if (htab == NULL)
17253 return FALSE;
17254
17255 dynobj = elf_hash_table (info)->dynobj;
17256
17257 sgot = htab->root.sgotplt;
17258 /* A broken linker script might have discarded the dynamic sections.
17259 Catch this here so that we do not seg-fault later on. */
17260 if (sgot != NULL && bfd_is_abs_section (sgot->output_section))
17261 return FALSE;
17262 sdyn = bfd_get_linker_section (dynobj, ".dynamic");
17263
17264 if (elf_hash_table (info)->dynamic_sections_created)
17265 {
17266 asection *splt;
17267 Elf32_External_Dyn *dyncon, *dynconend;
17268
17269 splt = htab->root.splt;
17270 BFD_ASSERT (splt != NULL && sdyn != NULL);
17271 BFD_ASSERT (htab->root.target_os == is_symbian || sgot != NULL);
17272
17273 dyncon = (Elf32_External_Dyn *) sdyn->contents;
17274 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
17275
17276 for (; dyncon < dynconend; dyncon++)
17277 {
17278 Elf_Internal_Dyn dyn;
17279 const char * name;
17280 asection * s;
17281
17282 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
17283
17284 switch (dyn.d_tag)
17285 {
17286 unsigned int type;
17287
17288 default:
17289 if (htab->root.target_os == is_vxworks
17290 && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
17291 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17292 break;
17293
17294 case DT_HASH:
17295 name = ".hash";
17296 goto get_vma_if_bpabi;
17297 case DT_STRTAB:
17298 name = ".dynstr";
17299 goto get_vma_if_bpabi;
17300 case DT_SYMTAB:
17301 name = ".dynsym";
17302 goto get_vma_if_bpabi;
17303 case DT_VERSYM:
17304 name = ".gnu.version";
17305 goto get_vma_if_bpabi;
17306 case DT_VERDEF:
17307 name = ".gnu.version_d";
17308 goto get_vma_if_bpabi;
17309 case DT_VERNEED:
17310 name = ".gnu.version_r";
17311 goto get_vma_if_bpabi;
17312
17313 case DT_PLTGOT:
17314 name = (htab->root.target_os == is_symbian
17315 ? ".got" : ".got.plt");
17316 goto get_vma;
17317 case DT_JMPREL:
17318 name = RELOC_SECTION (htab, ".plt");
17319 get_vma:
17320 s = bfd_get_linker_section (dynobj, name);
17321 if (s == NULL)
17322 {
17323 _bfd_error_handler
17324 (_("could not find section %s"), name);
17325 bfd_set_error (bfd_error_invalid_operation);
17326 return FALSE;
17327 }
17328 if (htab->root.target_os != is_symbian)
17329 dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
17330 else
17331 /* In the BPABI, tags in the PT_DYNAMIC section point
17332 at the file offset, not the memory address, for the
17333 convenience of the post linker. */
17334 dyn.d_un.d_ptr = s->output_section->filepos + s->output_offset;
17335 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17336 break;
17337
17338 get_vma_if_bpabi:
17339 if (htab->root.target_os == is_symbian)
17340 goto get_vma;
17341 break;
17342
17343 case DT_PLTRELSZ:
17344 s = htab->root.srelplt;
17345 BFD_ASSERT (s != NULL);
17346 dyn.d_un.d_val = s->size;
17347 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17348 break;
17349
17350 case DT_RELSZ:
17351 case DT_RELASZ:
17352 case DT_REL:
17353 case DT_RELA:
17354 /* In the BPABI, the DT_REL tag must point at the file
17355 offset, not the VMA, of the first relocation
17356 section. So, we use code similar to that in
17357 elflink.c, but do not check for SHF_ALLOC on the
17358 relocation section, since relocation sections are
17359 never allocated under the BPABI. PLT relocs are also
17360 included. */
17361 if (htab->root.target_os == is_symbian)
17362 {
17363 unsigned int i;
17364 type = ((dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
17365 ? SHT_REL : SHT_RELA);
17366 dyn.d_un.d_val = 0;
17367 for (i = 1; i < elf_numsections (output_bfd); i++)
17368 {
17369 Elf_Internal_Shdr *hdr
17370 = elf_elfsections (output_bfd)[i];
17371 if (hdr->sh_type == type)
17372 {
17373 if (dyn.d_tag == DT_RELSZ
17374 || dyn.d_tag == DT_RELASZ)
17375 dyn.d_un.d_val += hdr->sh_size;
17376 else if ((ufile_ptr) hdr->sh_offset
17377 <= dyn.d_un.d_val - 1)
17378 dyn.d_un.d_val = hdr->sh_offset;
17379 }
17380 }
17381 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17382 }
17383 break;
17384
17385 case DT_TLSDESC_PLT:
17386 s = htab->root.splt;
17387 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
17388 + htab->root.tlsdesc_plt);
17389 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17390 break;
17391
17392 case DT_TLSDESC_GOT:
17393 s = htab->root.sgot;
17394 dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
17395 + htab->root.tlsdesc_got);
17396 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17397 break;
17398
17399 /* Set the bottom bit of DT_INIT/FINI if the
17400 corresponding function is Thumb. */
17401 case DT_INIT:
17402 name = info->init_function;
17403 goto get_sym;
17404 case DT_FINI:
17405 name = info->fini_function;
17406 get_sym:
17407 /* If it wasn't set by elf_bfd_final_link
17408 then there is nothing to adjust. */
17409 if (dyn.d_un.d_val != 0)
17410 {
17411 struct elf_link_hash_entry * eh;
17412
17413 eh = elf_link_hash_lookup (elf_hash_table (info), name,
17414 FALSE, FALSE, TRUE);
17415 if (eh != NULL
17416 && ARM_GET_SYM_BRANCH_TYPE (eh->target_internal)
17417 == ST_BRANCH_TO_THUMB)
17418 {
17419 dyn.d_un.d_val |= 1;
17420 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17421 }
17422 }
17423 break;
17424 }
17425 }
17426
17427 /* Fill in the first entry in the procedure linkage table. */
17428 if (splt->size > 0 && htab->plt_header_size)
17429 {
17430 const bfd_vma *plt0_entry;
17431 bfd_vma got_address, plt_address, got_displacement;
17432
17433 /* Calculate the addresses of the GOT and PLT. */
17434 got_address = sgot->output_section->vma + sgot->output_offset;
17435 plt_address = splt->output_section->vma + splt->output_offset;
17436
17437 if (htab->root.target_os == is_vxworks)
17438 {
17439 /* The VxWorks GOT is relocated by the dynamic linker.
17440 Therefore, we must emit relocations rather than simply
17441 computing the values now. */
17442 Elf_Internal_Rela rel;
17443
17444 plt0_entry = elf32_arm_vxworks_exec_plt0_entry;
17445 put_arm_insn (htab, output_bfd, plt0_entry[0],
17446 splt->contents + 0);
17447 put_arm_insn (htab, output_bfd, plt0_entry[1],
17448 splt->contents + 4);
17449 put_arm_insn (htab, output_bfd, plt0_entry[2],
17450 splt->contents + 8);
17451 bfd_put_32 (output_bfd, got_address, splt->contents + 12);
17452
17453 /* Generate a relocation for _GLOBAL_OFFSET_TABLE_. */
17454 rel.r_offset = plt_address + 12;
17455 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17456 rel.r_addend = 0;
17457 SWAP_RELOC_OUT (htab) (output_bfd, &rel,
17458 htab->srelplt2->contents);
17459 }
17460 else if (htab->root.target_os == is_nacl)
17461 arm_nacl_put_plt0 (htab, output_bfd, splt,
17462 got_address + 8 - (plt_address + 16));
17463 else if (using_thumb_only (htab))
17464 {
17465 got_displacement = got_address - (plt_address + 12);
17466
17467 plt0_entry = elf32_thumb2_plt0_entry;
17468 put_arm_insn (htab, output_bfd, plt0_entry[0],
17469 splt->contents + 0);
17470 put_arm_insn (htab, output_bfd, plt0_entry[1],
17471 splt->contents + 4);
17472 put_arm_insn (htab, output_bfd, plt0_entry[2],
17473 splt->contents + 8);
17474
17475 bfd_put_32 (output_bfd, got_displacement, splt->contents + 12);
17476 }
17477 else
17478 {
17479 got_displacement = got_address - (plt_address + 16);
17480
17481 plt0_entry = elf32_arm_plt0_entry;
17482 put_arm_insn (htab, output_bfd, plt0_entry[0],
17483 splt->contents + 0);
17484 put_arm_insn (htab, output_bfd, plt0_entry[1],
17485 splt->contents + 4);
17486 put_arm_insn (htab, output_bfd, plt0_entry[2],
17487 splt->contents + 8);
17488 put_arm_insn (htab, output_bfd, plt0_entry[3],
17489 splt->contents + 12);
17490
17491 #ifdef FOUR_WORD_PLT
17492 /* The displacement value goes in the otherwise-unused
17493 last word of the second entry. */
17494 bfd_put_32 (output_bfd, got_displacement, splt->contents + 28);
17495 #else
17496 bfd_put_32 (output_bfd, got_displacement, splt->contents + 16);
17497 #endif
17498 }
17499 }
17500
17501 /* UnixWare sets the entsize of .plt to 4, although that doesn't
17502 really seem like the right value. */
17503 if (splt->output_section->owner == output_bfd)
17504 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
17505
17506 if (htab->root.tlsdesc_plt)
17507 {
17508 bfd_vma got_address
17509 = sgot->output_section->vma + sgot->output_offset;
17510 bfd_vma gotplt_address = (htab->root.sgot->output_section->vma
17511 + htab->root.sgot->output_offset);
17512 bfd_vma plt_address
17513 = splt->output_section->vma + splt->output_offset;
17514
17515 arm_put_trampoline (htab, output_bfd,
17516 splt->contents + htab->root.tlsdesc_plt,
17517 dl_tlsdesc_lazy_trampoline, 6);
17518
17519 bfd_put_32 (output_bfd,
17520 gotplt_address + htab->root.tlsdesc_got
17521 - (plt_address + htab->root.tlsdesc_plt)
17522 - dl_tlsdesc_lazy_trampoline[6],
17523 splt->contents + htab->root.tlsdesc_plt + 24);
17524 bfd_put_32 (output_bfd,
17525 got_address - (plt_address + htab->root.tlsdesc_plt)
17526 - dl_tlsdesc_lazy_trampoline[7],
17527 splt->contents + htab->root.tlsdesc_plt + 24 + 4);
17528 }
17529
17530 if (htab->tls_trampoline)
17531 {
17532 arm_put_trampoline (htab, output_bfd,
17533 splt->contents + htab->tls_trampoline,
17534 tls_trampoline, 3);
17535 #ifdef FOUR_WORD_PLT
17536 bfd_put_32 (output_bfd, 0x00000000,
17537 splt->contents + htab->tls_trampoline + 12);
17538 #endif
17539 }
17540
17541 if (htab->root.target_os == is_vxworks
17542 && !bfd_link_pic (info)
17543 && htab->root.splt->size > 0)
17544 {
17545 /* Correct the .rel(a).plt.unloaded relocations. They will have
17546 incorrect symbol indexes. */
17547 int num_plts;
17548 unsigned char *p;
17549
17550 num_plts = ((htab->root.splt->size - htab->plt_header_size)
17551 / htab->plt_entry_size);
17552 p = htab->srelplt2->contents + RELOC_SIZE (htab);
17553
17554 for (; num_plts; num_plts--)
17555 {
17556 Elf_Internal_Rela rel;
17557
17558 SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17559 rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17560 SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17561 p += RELOC_SIZE (htab);
17562
17563 SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17564 rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
17565 SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17566 p += RELOC_SIZE (htab);
17567 }
17568 }
17569 }
17570
17571 if (htab->root.target_os == is_nacl
17572 && htab->root.iplt != NULL
17573 && htab->root.iplt->size > 0)
17574 /* NaCl uses a special first entry in .iplt too. */
17575 arm_nacl_put_plt0 (htab, output_bfd, htab->root.iplt, 0);
17576
17577 /* Fill in the first three entries in the global offset table. */
17578 if (sgot)
17579 {
17580 if (sgot->size > 0)
17581 {
17582 if (sdyn == NULL)
17583 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
17584 else
17585 bfd_put_32 (output_bfd,
17586 sdyn->output_section->vma + sdyn->output_offset,
17587 sgot->contents);
17588 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
17589 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
17590 }
17591
17592 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
17593 }
17594
17595 /* At the very end of the .rofixup section is a pointer to the GOT. */
17596 if (htab->fdpic_p && htab->srofixup != NULL)
17597 {
17598 struct elf_link_hash_entry *hgot = htab->root.hgot;
17599
17600 bfd_vma got_value = hgot->root.u.def.value
17601 + hgot->root.u.def.section->output_section->vma
17602 + hgot->root.u.def.section->output_offset;
17603
17604 arm_elf_add_rofixup(output_bfd, htab->srofixup, got_value);
17605
17606 /* Make sure we allocated and generated the same number of fixups. */
17607 BFD_ASSERT (htab->srofixup->reloc_count * 4 == htab->srofixup->size);
17608 }
17609
17610 return TRUE;
17611 }
17612
17613 static bfd_boolean
17614 elf32_arm_init_file_header (bfd *abfd, struct bfd_link_info *link_info)
17615 {
17616 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
17617 struct elf32_arm_link_hash_table *globals;
17618 struct elf_segment_map *m;
17619
17620 if (!_bfd_elf_init_file_header (abfd, link_info))
17621 return FALSE;
17622
17623 i_ehdrp = elf_elfheader (abfd);
17624
17625 if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_UNKNOWN)
17626 i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_ARM;
17627 i_ehdrp->e_ident[EI_ABIVERSION] = ARM_ELF_ABI_VERSION;
17628
17629 if (link_info)
17630 {
17631 globals = elf32_arm_hash_table (link_info);
17632 if (globals != NULL && globals->byteswap_code)
17633 i_ehdrp->e_flags |= EF_ARM_BE8;
17634
17635 if (globals->fdpic_p)
17636 i_ehdrp->e_ident[EI_OSABI] |= ELFOSABI_ARM_FDPIC;
17637 }
17638
17639 if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_VER5
17640 && ((i_ehdrp->e_type == ET_DYN) || (i_ehdrp->e_type == ET_EXEC)))
17641 {
17642 int abi = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_ABI_VFP_args);
17643 if (abi == AEABI_VFP_args_vfp)
17644 i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_HARD;
17645 else
17646 i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_SOFT;
17647 }
17648
17649 /* Scan segment to set p_flags attribute if it contains only sections with
17650 SHF_ARM_PURECODE flag. */
17651 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
17652 {
17653 unsigned int j;
17654
17655 if (m->count == 0)
17656 continue;
17657 for (j = 0; j < m->count; j++)
17658 {
17659 if (!(elf_section_flags (m->sections[j]) & SHF_ARM_PURECODE))
17660 break;
17661 }
17662 if (j == m->count)
17663 {
17664 m->p_flags = PF_X;
17665 m->p_flags_valid = 1;
17666 }
17667 }
17668 return TRUE;
17669 }
17670
17671 static enum elf_reloc_type_class
17672 elf32_arm_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
17673 const asection *rel_sec ATTRIBUTE_UNUSED,
17674 const Elf_Internal_Rela *rela)
17675 {
17676 switch ((int) ELF32_R_TYPE (rela->r_info))
17677 {
17678 case R_ARM_RELATIVE:
17679 return reloc_class_relative;
17680 case R_ARM_JUMP_SLOT:
17681 return reloc_class_plt;
17682 case R_ARM_COPY:
17683 return reloc_class_copy;
17684 case R_ARM_IRELATIVE:
17685 return reloc_class_ifunc;
17686 default:
17687 return reloc_class_normal;
17688 }
17689 }
17690
17691 static void
17692 arm_final_write_processing (bfd *abfd)
17693 {
17694 bfd_arm_update_notes (abfd, ARM_NOTE_SECTION);
17695 }
17696
17697 static bfd_boolean
17698 elf32_arm_final_write_processing (bfd *abfd)
17699 {
17700 arm_final_write_processing (abfd);
17701 return _bfd_elf_final_write_processing (abfd);
17702 }
17703
17704 /* Return TRUE if this is an unwinding table entry. */
17705
17706 static bfd_boolean
17707 is_arm_elf_unwind_section_name (bfd * abfd ATTRIBUTE_UNUSED, const char * name)
17708 {
17709 return (CONST_STRNEQ (name, ELF_STRING_ARM_unwind)
17710 || CONST_STRNEQ (name, ELF_STRING_ARM_unwind_once));
17711 }
17712
17713
17714 /* Set the type and flags for an ARM section. We do this by
17715 the section name, which is a hack, but ought to work. */
17716
17717 static bfd_boolean
17718 elf32_arm_fake_sections (bfd * abfd, Elf_Internal_Shdr * hdr, asection * sec)
17719 {
17720 const char * name;
17721
17722 name = bfd_section_name (sec);
17723
17724 if (is_arm_elf_unwind_section_name (abfd, name))
17725 {
17726 hdr->sh_type = SHT_ARM_EXIDX;
17727 hdr->sh_flags |= SHF_LINK_ORDER;
17728 }
17729
17730 if (sec->flags & SEC_ELF_PURECODE)
17731 hdr->sh_flags |= SHF_ARM_PURECODE;
17732
17733 return TRUE;
17734 }
17735
17736 /* Handle an ARM specific section when reading an object file. This is
17737 called when bfd_section_from_shdr finds a section with an unknown
17738 type. */
17739
17740 static bfd_boolean
17741 elf32_arm_section_from_shdr (bfd *abfd,
17742 Elf_Internal_Shdr * hdr,
17743 const char *name,
17744 int shindex)
17745 {
17746 /* There ought to be a place to keep ELF backend specific flags, but
17747 at the moment there isn't one. We just keep track of the
17748 sections by their name, instead. Fortunately, the ABI gives
17749 names for all the ARM specific sections, so we will probably get
17750 away with this. */
17751 switch (hdr->sh_type)
17752 {
17753 case SHT_ARM_EXIDX:
17754 case SHT_ARM_PREEMPTMAP:
17755 case SHT_ARM_ATTRIBUTES:
17756 break;
17757
17758 default:
17759 return FALSE;
17760 }
17761
17762 if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
17763 return FALSE;
17764
17765 return TRUE;
17766 }
17767
17768 static _arm_elf_section_data *
17769 get_arm_elf_section_data (asection * sec)
17770 {
17771 if (sec && sec->owner && is_arm_elf (sec->owner))
17772 return elf32_arm_section_data (sec);
17773 else
17774 return NULL;
17775 }
17776
17777 typedef struct
17778 {
17779 void *flaginfo;
17780 struct bfd_link_info *info;
17781 asection *sec;
17782 int sec_shndx;
17783 int (*func) (void *, const char *, Elf_Internal_Sym *,
17784 asection *, struct elf_link_hash_entry *);
17785 } output_arch_syminfo;
17786
17787 enum map_symbol_type
17788 {
17789 ARM_MAP_ARM,
17790 ARM_MAP_THUMB,
17791 ARM_MAP_DATA
17792 };
17793
17794
17795 /* Output a single mapping symbol. */
17796
17797 static bfd_boolean
17798 elf32_arm_output_map_sym (output_arch_syminfo *osi,
17799 enum map_symbol_type type,
17800 bfd_vma offset)
17801 {
17802 static const char *names[3] = {"$a", "$t", "$d"};
17803 Elf_Internal_Sym sym;
17804
17805 sym.st_value = osi->sec->output_section->vma
17806 + osi->sec->output_offset
17807 + offset;
17808 sym.st_size = 0;
17809 sym.st_other = 0;
17810 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
17811 sym.st_shndx = osi->sec_shndx;
17812 sym.st_target_internal = 0;
17813 elf32_arm_section_map_add (osi->sec, names[type][1], offset);
17814 return osi->func (osi->flaginfo, names[type], &sym, osi->sec, NULL) == 1;
17815 }
17816
17817 /* Output mapping symbols for the PLT entry described by ROOT_PLT and ARM_PLT.
17818 IS_IPLT_ENTRY_P says whether the PLT is in .iplt rather than .plt. */
17819
17820 static bfd_boolean
17821 elf32_arm_output_plt_map_1 (output_arch_syminfo *osi,
17822 bfd_boolean is_iplt_entry_p,
17823 union gotplt_union *root_plt,
17824 struct arm_plt_info *arm_plt)
17825 {
17826 struct elf32_arm_link_hash_table *htab;
17827 bfd_vma addr, plt_header_size;
17828
17829 if (root_plt->offset == (bfd_vma) -1)
17830 return TRUE;
17831
17832 htab = elf32_arm_hash_table (osi->info);
17833 if (htab == NULL)
17834 return FALSE;
17835
17836 if (is_iplt_entry_p)
17837 {
17838 osi->sec = htab->root.iplt;
17839 plt_header_size = 0;
17840 }
17841 else
17842 {
17843 osi->sec = htab->root.splt;
17844 plt_header_size = htab->plt_header_size;
17845 }
17846 osi->sec_shndx = (_bfd_elf_section_from_bfd_section
17847 (osi->info->output_bfd, osi->sec->output_section));
17848
17849 addr = root_plt->offset & -2;
17850 if (htab->root.target_os == is_symbian)
17851 {
17852 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17853 return FALSE;
17854 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 4))
17855 return FALSE;
17856 }
17857 else if (htab->root.target_os == is_vxworks)
17858 {
17859 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17860 return FALSE;
17861 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 8))
17862 return FALSE;
17863 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr + 12))
17864 return FALSE;
17865 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 20))
17866 return FALSE;
17867 }
17868 else if (htab->root.target_os == is_nacl)
17869 {
17870 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17871 return FALSE;
17872 }
17873 else if (htab->fdpic_p)
17874 {
17875 enum map_symbol_type type = using_thumb_only(htab)
17876 ? ARM_MAP_THUMB
17877 : ARM_MAP_ARM;
17878
17879 if (elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt))
17880 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
17881 return FALSE;
17882 if (!elf32_arm_output_map_sym (osi, type, addr))
17883 return FALSE;
17884 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 16))
17885 return FALSE;
17886 if (htab->plt_entry_size == 4 * ARRAY_SIZE(elf32_arm_fdpic_plt_entry))
17887 if (!elf32_arm_output_map_sym (osi, type, addr + 24))
17888 return FALSE;
17889 }
17890 else if (using_thumb_only (htab))
17891 {
17892 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr))
17893 return FALSE;
17894 }
17895 else
17896 {
17897 bfd_boolean thumb_stub_p;
17898
17899 thumb_stub_p = elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt);
17900 if (thumb_stub_p)
17901 {
17902 if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
17903 return FALSE;
17904 }
17905 #ifdef FOUR_WORD_PLT
17906 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17907 return FALSE;
17908 if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 12))
17909 return FALSE;
17910 #else
17911 /* A three-word PLT with no Thumb thunk contains only Arm code,
17912 so only need to output a mapping symbol for the first PLT entry and
17913 entries with thumb thunks. */
17914 if (thumb_stub_p || addr == plt_header_size)
17915 {
17916 if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17917 return FALSE;
17918 }
17919 #endif
17920 }
17921
17922 return TRUE;
17923 }
17924
17925 /* Output mapping symbols for PLT entries associated with H. */
17926
17927 static bfd_boolean
17928 elf32_arm_output_plt_map (struct elf_link_hash_entry *h, void *inf)
17929 {
17930 output_arch_syminfo *osi = (output_arch_syminfo *) inf;
17931 struct elf32_arm_link_hash_entry *eh;
17932
17933 if (h->root.type == bfd_link_hash_indirect)
17934 return TRUE;
17935
17936 if (h->root.type == bfd_link_hash_warning)
17937 /* When warning symbols are created, they **replace** the "real"
17938 entry in the hash table, thus we never get to see the real
17939 symbol in a hash traversal. So look at it now. */
17940 h = (struct elf_link_hash_entry *) h->root.u.i.link;
17941
17942 eh = (struct elf32_arm_link_hash_entry *) h;
17943 return elf32_arm_output_plt_map_1 (osi, SYMBOL_CALLS_LOCAL (osi->info, h),
17944 &h->plt, &eh->plt);
17945 }
17946
17947 /* Bind a veneered symbol to its veneer identified by its hash entry
17948 STUB_ENTRY. The veneered location thus loose its symbol. */
17949
17950 static void
17951 arm_stub_claim_sym (struct elf32_arm_stub_hash_entry *stub_entry)
17952 {
17953 struct elf32_arm_link_hash_entry *hash = stub_entry->h;
17954
17955 BFD_ASSERT (hash);
17956 hash->root.root.u.def.section = stub_entry->stub_sec;
17957 hash->root.root.u.def.value = stub_entry->stub_offset;
17958 hash->root.size = stub_entry->stub_size;
17959 }
17960
17961 /* Output a single local symbol for a generated stub. */
17962
17963 static bfd_boolean
17964 elf32_arm_output_stub_sym (output_arch_syminfo *osi, const char *name,
17965 bfd_vma offset, bfd_vma size)
17966 {
17967 Elf_Internal_Sym sym;
17968
17969 sym.st_value = osi->sec->output_section->vma
17970 + osi->sec->output_offset
17971 + offset;
17972 sym.st_size = size;
17973 sym.st_other = 0;
17974 sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
17975 sym.st_shndx = osi->sec_shndx;
17976 sym.st_target_internal = 0;
17977 return osi->func (osi->flaginfo, name, &sym, osi->sec, NULL) == 1;
17978 }
17979
17980 static bfd_boolean
17981 arm_map_one_stub (struct bfd_hash_entry * gen_entry,
17982 void * in_arg)
17983 {
17984 struct elf32_arm_stub_hash_entry *stub_entry;
17985 asection *stub_sec;
17986 bfd_vma addr;
17987 char *stub_name;
17988 output_arch_syminfo *osi;
17989 const insn_sequence *template_sequence;
17990 enum stub_insn_type prev_type;
17991 int size;
17992 int i;
17993 enum map_symbol_type sym_type;
17994
17995 /* Massage our args to the form they really have. */
17996 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
17997 osi = (output_arch_syminfo *) in_arg;
17998
17999 stub_sec = stub_entry->stub_sec;
18000
18001 /* Ensure this stub is attached to the current section being
18002 processed. */
18003 if (stub_sec != osi->sec)
18004 return TRUE;
18005
18006 addr = (bfd_vma) stub_entry->stub_offset;
18007 template_sequence = stub_entry->stub_template;
18008
18009 if (arm_stub_sym_claimed (stub_entry->stub_type))
18010 arm_stub_claim_sym (stub_entry);
18011 else
18012 {
18013 stub_name = stub_entry->output_name;
18014 switch (template_sequence[0].type)
18015 {
18016 case ARM_TYPE:
18017 if (!elf32_arm_output_stub_sym (osi, stub_name, addr,
18018 stub_entry->stub_size))
18019 return FALSE;
18020 break;
18021 case THUMB16_TYPE:
18022 case THUMB32_TYPE:
18023 if (!elf32_arm_output_stub_sym (osi, stub_name, addr | 1,
18024 stub_entry->stub_size))
18025 return FALSE;
18026 break;
18027 default:
18028 BFD_FAIL ();
18029 return 0;
18030 }
18031 }
18032
18033 prev_type = DATA_TYPE;
18034 size = 0;
18035 for (i = 0; i < stub_entry->stub_template_size; i++)
18036 {
18037 switch (template_sequence[i].type)
18038 {
18039 case ARM_TYPE:
18040 sym_type = ARM_MAP_ARM;
18041 break;
18042
18043 case THUMB16_TYPE:
18044 case THUMB32_TYPE:
18045 sym_type = ARM_MAP_THUMB;
18046 break;
18047
18048 case DATA_TYPE:
18049 sym_type = ARM_MAP_DATA;
18050 break;
18051
18052 default:
18053 BFD_FAIL ();
18054 return FALSE;
18055 }
18056
18057 if (template_sequence[i].type != prev_type)
18058 {
18059 prev_type = template_sequence[i].type;
18060 if (!elf32_arm_output_map_sym (osi, sym_type, addr + size))
18061 return FALSE;
18062 }
18063
18064 switch (template_sequence[i].type)
18065 {
18066 case ARM_TYPE:
18067 case THUMB32_TYPE:
18068 size += 4;
18069 break;
18070
18071 case THUMB16_TYPE:
18072 size += 2;
18073 break;
18074
18075 case DATA_TYPE:
18076 size += 4;
18077 break;
18078
18079 default:
18080 BFD_FAIL ();
18081 return FALSE;
18082 }
18083 }
18084
18085 return TRUE;
18086 }
18087
18088 /* Output mapping symbols for linker generated sections,
18089 and for those data-only sections that do not have a
18090 $d. */
18091
18092 static bfd_boolean
18093 elf32_arm_output_arch_local_syms (bfd *output_bfd,
18094 struct bfd_link_info *info,
18095 void *flaginfo,
18096 int (*func) (void *, const char *,
18097 Elf_Internal_Sym *,
18098 asection *,
18099 struct elf_link_hash_entry *))
18100 {
18101 output_arch_syminfo osi;
18102 struct elf32_arm_link_hash_table *htab;
18103 bfd_vma offset;
18104 bfd_size_type size;
18105 bfd *input_bfd;
18106
18107 htab = elf32_arm_hash_table (info);
18108 if (htab == NULL)
18109 return FALSE;
18110
18111 check_use_blx (htab);
18112
18113 osi.flaginfo = flaginfo;
18114 osi.info = info;
18115 osi.func = func;
18116
18117 /* Add a $d mapping symbol to data-only sections that
18118 don't have any mapping symbol. This may result in (harmless) redundant
18119 mapping symbols. */
18120 for (input_bfd = info->input_bfds;
18121 input_bfd != NULL;
18122 input_bfd = input_bfd->link.next)
18123 {
18124 if ((input_bfd->flags & (BFD_LINKER_CREATED | HAS_SYMS)) == HAS_SYMS)
18125 for (osi.sec = input_bfd->sections;
18126 osi.sec != NULL;
18127 osi.sec = osi.sec->next)
18128 {
18129 if (osi.sec->output_section != NULL
18130 && ((osi.sec->output_section->flags & (SEC_ALLOC | SEC_CODE))
18131 != 0)
18132 && (osi.sec->flags & (SEC_HAS_CONTENTS | SEC_LINKER_CREATED))
18133 == SEC_HAS_CONTENTS
18134 && get_arm_elf_section_data (osi.sec) != NULL
18135 && get_arm_elf_section_data (osi.sec)->mapcount == 0
18136 && osi.sec->size > 0
18137 && (osi.sec->flags & SEC_EXCLUDE) == 0)
18138 {
18139 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18140 (output_bfd, osi.sec->output_section);
18141 if (osi.sec_shndx != (int)SHN_BAD)
18142 elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 0);
18143 }
18144 }
18145 }
18146
18147 /* ARM->Thumb glue. */
18148 if (htab->arm_glue_size > 0)
18149 {
18150 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18151 ARM2THUMB_GLUE_SECTION_NAME);
18152
18153 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18154 (output_bfd, osi.sec->output_section);
18155 if (bfd_link_pic (info) || htab->root.is_relocatable_executable
18156 || htab->pic_veneer)
18157 size = ARM2THUMB_PIC_GLUE_SIZE;
18158 else if (htab->use_blx)
18159 size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
18160 else
18161 size = ARM2THUMB_STATIC_GLUE_SIZE;
18162
18163 for (offset = 0; offset < htab->arm_glue_size; offset += size)
18164 {
18165 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset);
18166 elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, offset + size - 4);
18167 }
18168 }
18169
18170 /* Thumb->ARM glue. */
18171 if (htab->thumb_glue_size > 0)
18172 {
18173 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18174 THUMB2ARM_GLUE_SECTION_NAME);
18175
18176 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18177 (output_bfd, osi.sec->output_section);
18178 size = THUMB2ARM_GLUE_SIZE;
18179
18180 for (offset = 0; offset < htab->thumb_glue_size; offset += size)
18181 {
18182 elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, offset);
18183 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset + 4);
18184 }
18185 }
18186
18187 /* ARMv4 BX veneers. */
18188 if (htab->bx_glue_size > 0)
18189 {
18190 osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18191 ARM_BX_GLUE_SECTION_NAME);
18192
18193 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18194 (output_bfd, osi.sec->output_section);
18195
18196 elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0);
18197 }
18198
18199 /* Long calls stubs. */
18200 if (htab->stub_bfd && htab->stub_bfd->sections)
18201 {
18202 asection* stub_sec;
18203
18204 for (stub_sec = htab->stub_bfd->sections;
18205 stub_sec != NULL;
18206 stub_sec = stub_sec->next)
18207 {
18208 /* Ignore non-stub sections. */
18209 if (!strstr (stub_sec->name, STUB_SUFFIX))
18210 continue;
18211
18212 osi.sec = stub_sec;
18213
18214 osi.sec_shndx = _bfd_elf_section_from_bfd_section
18215 (output_bfd, osi.sec->output_section);
18216
18217 bfd_hash_traverse (&htab->stub_hash_table, arm_map_one_stub, &osi);
18218 }
18219 }
18220
18221 /* Finally, output mapping symbols for the PLT. */
18222 if (htab->root.splt && htab->root.splt->size > 0)
18223 {
18224 osi.sec = htab->root.splt;
18225 osi.sec_shndx = (_bfd_elf_section_from_bfd_section
18226 (output_bfd, osi.sec->output_section));
18227
18228 /* Output mapping symbols for the plt header. SymbianOS does not have a
18229 plt header. */
18230 if (htab->root.target_os == is_vxworks)
18231 {
18232 /* VxWorks shared libraries have no PLT header. */
18233 if (!bfd_link_pic (info))
18234 {
18235 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18236 return FALSE;
18237 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
18238 return FALSE;
18239 }
18240 }
18241 else if (htab->root.target_os == is_nacl)
18242 {
18243 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18244 return FALSE;
18245 }
18246 else if (using_thumb_only (htab) && !htab->fdpic_p)
18247 {
18248 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 0))
18249 return FALSE;
18250 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
18251 return FALSE;
18252 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 16))
18253 return FALSE;
18254 }
18255 else if (htab->root.target_os != is_symbian && !htab->fdpic_p)
18256 {
18257 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18258 return FALSE;
18259 #ifndef FOUR_WORD_PLT
18260 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 16))
18261 return FALSE;
18262 #endif
18263 }
18264 }
18265 if (htab->root.target_os == is_nacl
18266 && htab->root.iplt
18267 && htab->root.iplt->size > 0)
18268 {
18269 /* NaCl uses a special first entry in .iplt too. */
18270 osi.sec = htab->root.iplt;
18271 osi.sec_shndx = (_bfd_elf_section_from_bfd_section
18272 (output_bfd, osi.sec->output_section));
18273 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18274 return FALSE;
18275 }
18276 if ((htab->root.splt && htab->root.splt->size > 0)
18277 || (htab->root.iplt && htab->root.iplt->size > 0))
18278 {
18279 elf_link_hash_traverse (&htab->root, elf32_arm_output_plt_map, &osi);
18280 for (input_bfd = info->input_bfds;
18281 input_bfd != NULL;
18282 input_bfd = input_bfd->link.next)
18283 {
18284 struct arm_local_iplt_info **local_iplt;
18285 unsigned int i, num_syms;
18286
18287 local_iplt = elf32_arm_local_iplt (input_bfd);
18288 if (local_iplt != NULL)
18289 {
18290 num_syms = elf_symtab_hdr (input_bfd).sh_info;
18291 for (i = 0; i < num_syms; i++)
18292 if (local_iplt[i] != NULL
18293 && !elf32_arm_output_plt_map_1 (&osi, TRUE,
18294 &local_iplt[i]->root,
18295 &local_iplt[i]->arm))
18296 return FALSE;
18297 }
18298 }
18299 }
18300 if (htab->root.tlsdesc_plt != 0)
18301 {
18302 /* Mapping symbols for the lazy tls trampoline. */
18303 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM,
18304 htab->root.tlsdesc_plt))
18305 return FALSE;
18306
18307 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
18308 htab->root.tlsdesc_plt + 24))
18309 return FALSE;
18310 }
18311 if (htab->tls_trampoline != 0)
18312 {
18313 /* Mapping symbols for the tls trampoline. */
18314 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, htab->tls_trampoline))
18315 return FALSE;
18316 #ifdef FOUR_WORD_PLT
18317 if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
18318 htab->tls_trampoline + 12))
18319 return FALSE;
18320 #endif
18321 }
18322
18323 return TRUE;
18324 }
18325
18326 /* Filter normal symbols of CMSE entry functions of ABFD to include in
18327 the import library. All SYMCOUNT symbols of ABFD can be examined
18328 from their pointers in SYMS. Pointers of symbols to keep should be
18329 stored continuously at the beginning of that array.
18330
18331 Returns the number of symbols to keep. */
18332
18333 static unsigned int
18334 elf32_arm_filter_cmse_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18335 struct bfd_link_info *info,
18336 asymbol **syms, long symcount)
18337 {
18338 size_t maxnamelen;
18339 char *cmse_name;
18340 long src_count, dst_count = 0;
18341 struct elf32_arm_link_hash_table *htab;
18342
18343 htab = elf32_arm_hash_table (info);
18344 if (!htab->stub_bfd || !htab->stub_bfd->sections)
18345 symcount = 0;
18346
18347 maxnamelen = 128;
18348 cmse_name = (char *) bfd_malloc (maxnamelen);
18349 BFD_ASSERT (cmse_name);
18350
18351 for (src_count = 0; src_count < symcount; src_count++)
18352 {
18353 struct elf32_arm_link_hash_entry *cmse_hash;
18354 asymbol *sym;
18355 flagword flags;
18356 char *name;
18357 size_t namelen;
18358
18359 sym = syms[src_count];
18360 flags = sym->flags;
18361 name = (char *) bfd_asymbol_name (sym);
18362
18363 if ((flags & BSF_FUNCTION) != BSF_FUNCTION)
18364 continue;
18365 if (!(flags & (BSF_GLOBAL | BSF_WEAK)))
18366 continue;
18367
18368 namelen = strlen (name) + sizeof (CMSE_PREFIX) + 1;
18369 if (namelen > maxnamelen)
18370 {
18371 cmse_name = (char *)
18372 bfd_realloc (cmse_name, namelen);
18373 maxnamelen = namelen;
18374 }
18375 snprintf (cmse_name, maxnamelen, "%s%s", CMSE_PREFIX, name);
18376 cmse_hash = (struct elf32_arm_link_hash_entry *)
18377 elf_link_hash_lookup (&(htab)->root, cmse_name, FALSE, FALSE, TRUE);
18378
18379 if (!cmse_hash
18380 || (cmse_hash->root.root.type != bfd_link_hash_defined
18381 && cmse_hash->root.root.type != bfd_link_hash_defweak)
18382 || cmse_hash->root.type != STT_FUNC)
18383 continue;
18384
18385 syms[dst_count++] = sym;
18386 }
18387 free (cmse_name);
18388
18389 syms[dst_count] = NULL;
18390
18391 return dst_count;
18392 }
18393
18394 /* Filter symbols of ABFD to include in the import library. All
18395 SYMCOUNT symbols of ABFD can be examined from their pointers in
18396 SYMS. Pointers of symbols to keep should be stored continuously at
18397 the beginning of that array.
18398
18399 Returns the number of symbols to keep. */
18400
18401 static unsigned int
18402 elf32_arm_filter_implib_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18403 struct bfd_link_info *info,
18404 asymbol **syms, long symcount)
18405 {
18406 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
18407
18408 /* Requirement 8 of "ARM v8-M Security Extensions: Requirements on
18409 Development Tools" (ARM-ECM-0359818) mandates Secure Gateway import
18410 library to be a relocatable object file. */
18411 BFD_ASSERT (!(bfd_get_file_flags (info->out_implib_bfd) & EXEC_P));
18412 if (globals->cmse_implib)
18413 return elf32_arm_filter_cmse_symbols (abfd, info, syms, symcount);
18414 else
18415 return _bfd_elf_filter_global_symbols (abfd, info, syms, symcount);
18416 }
18417
18418 /* Allocate target specific section data. */
18419
18420 static bfd_boolean
18421 elf32_arm_new_section_hook (bfd *abfd, asection *sec)
18422 {
18423 if (!sec->used_by_bfd)
18424 {
18425 _arm_elf_section_data *sdata;
18426 size_t amt = sizeof (*sdata);
18427
18428 sdata = (_arm_elf_section_data *) bfd_zalloc (abfd, amt);
18429 if (sdata == NULL)
18430 return FALSE;
18431 sec->used_by_bfd = sdata;
18432 }
18433
18434 return _bfd_elf_new_section_hook (abfd, sec);
18435 }
18436
18437
18438 /* Used to order a list of mapping symbols by address. */
18439
18440 static int
18441 elf32_arm_compare_mapping (const void * a, const void * b)
18442 {
18443 const elf32_arm_section_map *amap = (const elf32_arm_section_map *) a;
18444 const elf32_arm_section_map *bmap = (const elf32_arm_section_map *) b;
18445
18446 if (amap->vma > bmap->vma)
18447 return 1;
18448 else if (amap->vma < bmap->vma)
18449 return -1;
18450 else if (amap->type > bmap->type)
18451 /* Ensure results do not depend on the host qsort for objects with
18452 multiple mapping symbols at the same address by sorting on type
18453 after vma. */
18454 return 1;
18455 else if (amap->type < bmap->type)
18456 return -1;
18457 else
18458 return 0;
18459 }
18460
18461 /* Add OFFSET to lower 31 bits of ADDR, leaving other bits unmodified. */
18462
18463 static unsigned long
18464 offset_prel31 (unsigned long addr, bfd_vma offset)
18465 {
18466 return (addr & ~0x7ffffffful) | ((addr + offset) & 0x7ffffffful);
18467 }
18468
18469 /* Copy an .ARM.exidx table entry, adding OFFSET to (applied) PREL31
18470 relocations. */
18471
18472 static void
18473 copy_exidx_entry (bfd *output_bfd, bfd_byte *to, bfd_byte *from, bfd_vma offset)
18474 {
18475 unsigned long first_word = bfd_get_32 (output_bfd, from);
18476 unsigned long second_word = bfd_get_32 (output_bfd, from + 4);
18477
18478 /* High bit of first word is supposed to be zero. */
18479 if ((first_word & 0x80000000ul) == 0)
18480 first_word = offset_prel31 (first_word, offset);
18481
18482 /* If the high bit of the first word is clear, and the bit pattern is not 0x1
18483 (EXIDX_CANTUNWIND), this is an offset to an .ARM.extab entry. */
18484 if ((second_word != 0x1) && ((second_word & 0x80000000ul) == 0))
18485 second_word = offset_prel31 (second_word, offset);
18486
18487 bfd_put_32 (output_bfd, first_word, to);
18488 bfd_put_32 (output_bfd, second_word, to + 4);
18489 }
18490
18491 /* Data for make_branch_to_a8_stub(). */
18492
18493 struct a8_branch_to_stub_data
18494 {
18495 asection *writing_section;
18496 bfd_byte *contents;
18497 };
18498
18499
18500 /* Helper to insert branches to Cortex-A8 erratum stubs in the right
18501 places for a particular section. */
18502
18503 static bfd_boolean
18504 make_branch_to_a8_stub (struct bfd_hash_entry *gen_entry,
18505 void *in_arg)
18506 {
18507 struct elf32_arm_stub_hash_entry *stub_entry;
18508 struct a8_branch_to_stub_data *data;
18509 bfd_byte *contents;
18510 unsigned long branch_insn;
18511 bfd_vma veneered_insn_loc, veneer_entry_loc;
18512 bfd_signed_vma branch_offset;
18513 bfd *abfd;
18514 unsigned int loc;
18515
18516 stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
18517 data = (struct a8_branch_to_stub_data *) in_arg;
18518
18519 if (stub_entry->target_section != data->writing_section
18520 || stub_entry->stub_type < arm_stub_a8_veneer_lwm)
18521 return TRUE;
18522
18523 contents = data->contents;
18524
18525 /* We use target_section as Cortex-A8 erratum workaround stubs are only
18526 generated when both source and target are in the same section. */
18527 veneered_insn_loc = stub_entry->target_section->output_section->vma
18528 + stub_entry->target_section->output_offset
18529 + stub_entry->source_value;
18530
18531 veneer_entry_loc = stub_entry->stub_sec->output_section->vma
18532 + stub_entry->stub_sec->output_offset
18533 + stub_entry->stub_offset;
18534
18535 if (stub_entry->stub_type == arm_stub_a8_veneer_blx)
18536 veneered_insn_loc &= ~3u;
18537
18538 branch_offset = veneer_entry_loc - veneered_insn_loc - 4;
18539
18540 abfd = stub_entry->target_section->owner;
18541 loc = stub_entry->source_value;
18542
18543 /* We attempt to avoid this condition by setting stubs_always_after_branch
18544 in elf32_arm_size_stubs if we've enabled the Cortex-A8 erratum workaround.
18545 This check is just to be on the safe side... */
18546 if ((veneered_insn_loc & ~0xfff) == (veneer_entry_loc & ~0xfff))
18547 {
18548 _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub is "
18549 "allocated in unsafe location"), abfd);
18550 return FALSE;
18551 }
18552
18553 switch (stub_entry->stub_type)
18554 {
18555 case arm_stub_a8_veneer_b:
18556 case arm_stub_a8_veneer_b_cond:
18557 branch_insn = 0xf0009000;
18558 goto jump24;
18559
18560 case arm_stub_a8_veneer_blx:
18561 branch_insn = 0xf000e800;
18562 goto jump24;
18563
18564 case arm_stub_a8_veneer_bl:
18565 {
18566 unsigned int i1, j1, i2, j2, s;
18567
18568 branch_insn = 0xf000d000;
18569
18570 jump24:
18571 if (branch_offset < -16777216 || branch_offset > 16777214)
18572 {
18573 /* There's not much we can do apart from complain if this
18574 happens. */
18575 _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub out "
18576 "of range (input file too large)"), abfd);
18577 return FALSE;
18578 }
18579
18580 /* i1 = not(j1 eor s), so:
18581 not i1 = j1 eor s
18582 j1 = (not i1) eor s. */
18583
18584 branch_insn |= (branch_offset >> 1) & 0x7ff;
18585 branch_insn |= ((branch_offset >> 12) & 0x3ff) << 16;
18586 i2 = (branch_offset >> 22) & 1;
18587 i1 = (branch_offset >> 23) & 1;
18588 s = (branch_offset >> 24) & 1;
18589 j1 = (!i1) ^ s;
18590 j2 = (!i2) ^ s;
18591 branch_insn |= j2 << 11;
18592 branch_insn |= j1 << 13;
18593 branch_insn |= s << 26;
18594 }
18595 break;
18596
18597 default:
18598 BFD_FAIL ();
18599 return FALSE;
18600 }
18601
18602 bfd_put_16 (abfd, (branch_insn >> 16) & 0xffff, &contents[loc]);
18603 bfd_put_16 (abfd, branch_insn & 0xffff, &contents[loc + 2]);
18604
18605 return TRUE;
18606 }
18607
18608 /* Beginning of stm32l4xx work-around. */
18609
18610 /* Functions encoding instructions necessary for the emission of the
18611 fix-stm32l4xx-629360.
18612 Encoding is extracted from the
18613 ARM (C) Architecture Reference Manual
18614 ARMv7-A and ARMv7-R edition
18615 ARM DDI 0406C.b (ID072512). */
18616
18617 static inline bfd_vma
18618 create_instruction_branch_absolute (int branch_offset)
18619 {
18620 /* A8.8.18 B (A8-334)
18621 B target_address (Encoding T4). */
18622 /* 1111 - 0Sii - iiii - iiii - 10J1 - Jiii - iiii - iiii. */
18623 /* jump offset is: S:I1:I2:imm10:imm11:0. */
18624 /* with : I1 = NOT (J1 EOR S) I2 = NOT (J2 EOR S). */
18625
18626 int s = ((branch_offset & 0x1000000) >> 24);
18627 int j1 = s ^ !((branch_offset & 0x800000) >> 23);
18628 int j2 = s ^ !((branch_offset & 0x400000) >> 22);
18629
18630 if (branch_offset < -(1 << 24) || branch_offset >= (1 << 24))
18631 BFD_ASSERT (0 && "Error: branch out of range. Cannot create branch.");
18632
18633 bfd_vma patched_inst = 0xf0009000
18634 | s << 26 /* S. */
18635 | (((unsigned long) (branch_offset) >> 12) & 0x3ff) << 16 /* imm10. */
18636 | j1 << 13 /* J1. */
18637 | j2 << 11 /* J2. */
18638 | (((unsigned long) (branch_offset) >> 1) & 0x7ff); /* imm11. */
18639
18640 return patched_inst;
18641 }
18642
18643 static inline bfd_vma
18644 create_instruction_ldmia (int base_reg, int wback, int reg_mask)
18645 {
18646 /* A8.8.57 LDM/LDMIA/LDMFD (A8-396)
18647 LDMIA Rn!, {Ra, Rb, Rc, ...} (Encoding T2). */
18648 bfd_vma patched_inst = 0xe8900000
18649 | (/*W=*/wback << 21)
18650 | (base_reg << 16)
18651 | (reg_mask & 0x0000ffff);
18652
18653 return patched_inst;
18654 }
18655
18656 static inline bfd_vma
18657 create_instruction_ldmdb (int base_reg, int wback, int reg_mask)
18658 {
18659 /* A8.8.60 LDMDB/LDMEA (A8-402)
18660 LDMDB Rn!, {Ra, Rb, Rc, ...} (Encoding T1). */
18661 bfd_vma patched_inst = 0xe9100000
18662 | (/*W=*/wback << 21)
18663 | (base_reg << 16)
18664 | (reg_mask & 0x0000ffff);
18665
18666 return patched_inst;
18667 }
18668
18669 static inline bfd_vma
18670 create_instruction_mov (int target_reg, int source_reg)
18671 {
18672 /* A8.8.103 MOV (register) (A8-486)
18673 MOV Rd, Rm (Encoding T1). */
18674 bfd_vma patched_inst = 0x4600
18675 | (target_reg & 0x7)
18676 | ((target_reg & 0x8) >> 3) << 7
18677 | (source_reg << 3);
18678
18679 return patched_inst;
18680 }
18681
18682 static inline bfd_vma
18683 create_instruction_sub (int target_reg, int source_reg, int value)
18684 {
18685 /* A8.8.221 SUB (immediate) (A8-708)
18686 SUB Rd, Rn, #value (Encoding T3). */
18687 bfd_vma patched_inst = 0xf1a00000
18688 | (target_reg << 8)
18689 | (source_reg << 16)
18690 | (/*S=*/0 << 20)
18691 | ((value & 0x800) >> 11) << 26
18692 | ((value & 0x700) >> 8) << 12
18693 | (value & 0x0ff);
18694
18695 return patched_inst;
18696 }
18697
18698 static inline bfd_vma
18699 create_instruction_vldmia (int base_reg, int is_dp, int wback, int num_words,
18700 int first_reg)
18701 {
18702 /* A8.8.332 VLDM (A8-922)
18703 VLMD{MODE} Rn{!}, {list} (Encoding T1 or T2). */
18704 bfd_vma patched_inst = (is_dp ? 0xec900b00 : 0xec900a00)
18705 | (/*W=*/wback << 21)
18706 | (base_reg << 16)
18707 | (num_words & 0x000000ff)
18708 | (((unsigned)first_reg >> 1) & 0x0000000f) << 12
18709 | (first_reg & 0x00000001) << 22;
18710
18711 return patched_inst;
18712 }
18713
18714 static inline bfd_vma
18715 create_instruction_vldmdb (int base_reg, int is_dp, int num_words,
18716 int first_reg)
18717 {
18718 /* A8.8.332 VLDM (A8-922)
18719 VLMD{MODE} Rn!, {} (Encoding T1 or T2). */
18720 bfd_vma patched_inst = (is_dp ? 0xed300b00 : 0xed300a00)
18721 | (base_reg << 16)
18722 | (num_words & 0x000000ff)
18723 | (((unsigned)first_reg >>1 ) & 0x0000000f) << 12
18724 | (first_reg & 0x00000001) << 22;
18725
18726 return patched_inst;
18727 }
18728
18729 static inline bfd_vma
18730 create_instruction_udf_w (int value)
18731 {
18732 /* A8.8.247 UDF (A8-758)
18733 Undefined (Encoding T2). */
18734 bfd_vma patched_inst = 0xf7f0a000
18735 | (value & 0x00000fff)
18736 | (value & 0x000f0000) << 16;
18737
18738 return patched_inst;
18739 }
18740
18741 static inline bfd_vma
18742 create_instruction_udf (int value)
18743 {
18744 /* A8.8.247 UDF (A8-758)
18745 Undefined (Encoding T1). */
18746 bfd_vma patched_inst = 0xde00
18747 | (value & 0xff);
18748
18749 return patched_inst;
18750 }
18751
18752 /* Functions writing an instruction in memory, returning the next
18753 memory position to write to. */
18754
18755 static inline bfd_byte *
18756 push_thumb2_insn32 (struct elf32_arm_link_hash_table * htab,
18757 bfd * output_bfd, bfd_byte *pt, insn32 insn)
18758 {
18759 put_thumb2_insn (htab, output_bfd, insn, pt);
18760 return pt + 4;
18761 }
18762
18763 static inline bfd_byte *
18764 push_thumb2_insn16 (struct elf32_arm_link_hash_table * htab,
18765 bfd * output_bfd, bfd_byte *pt, insn32 insn)
18766 {
18767 put_thumb_insn (htab, output_bfd, insn, pt);
18768 return pt + 2;
18769 }
18770
18771 /* Function filling up a region in memory with T1 and T2 UDFs taking
18772 care of alignment. */
18773
18774 static bfd_byte *
18775 stm32l4xx_fill_stub_udf (struct elf32_arm_link_hash_table * htab,
18776 bfd * output_bfd,
18777 const bfd_byte * const base_stub_contents,
18778 bfd_byte * const from_stub_contents,
18779 const bfd_byte * const end_stub_contents)
18780 {
18781 bfd_byte *current_stub_contents = from_stub_contents;
18782
18783 /* Fill the remaining of the stub with deterministic contents : UDF
18784 instructions.
18785 Check if realignment is needed on modulo 4 frontier using T1, to
18786 further use T2. */
18787 if ((current_stub_contents < end_stub_contents)
18788 && !((current_stub_contents - base_stub_contents) % 2)
18789 && ((current_stub_contents - base_stub_contents) % 4))
18790 current_stub_contents =
18791 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18792 create_instruction_udf (0));
18793
18794 for (; current_stub_contents < end_stub_contents;)
18795 current_stub_contents =
18796 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18797 create_instruction_udf_w (0));
18798
18799 return current_stub_contents;
18800 }
18801
18802 /* Functions writing the stream of instructions equivalent to the
18803 derived sequence for ldmia, ldmdb, vldm respectively. */
18804
18805 static void
18806 stm32l4xx_create_replacing_stub_ldmia (struct elf32_arm_link_hash_table * htab,
18807 bfd * output_bfd,
18808 const insn32 initial_insn,
18809 const bfd_byte *const initial_insn_addr,
18810 bfd_byte *const base_stub_contents)
18811 {
18812 int wback = (initial_insn & 0x00200000) >> 21;
18813 int ri, rn = (initial_insn & 0x000F0000) >> 16;
18814 int insn_all_registers = initial_insn & 0x0000ffff;
18815 int insn_low_registers, insn_high_registers;
18816 int usable_register_mask;
18817 int nb_registers = elf32_arm_popcount (insn_all_registers);
18818 int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18819 int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
18820 bfd_byte *current_stub_contents = base_stub_contents;
18821
18822 BFD_ASSERT (is_thumb2_ldmia (initial_insn));
18823
18824 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18825 smaller than 8 registers load sequences that do not cause the
18826 hardware issue. */
18827 if (nb_registers <= 8)
18828 {
18829 /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}. */
18830 current_stub_contents =
18831 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18832 initial_insn);
18833
18834 /* B initial_insn_addr+4. */
18835 if (!restore_pc)
18836 current_stub_contents =
18837 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18838 create_instruction_branch_absolute
18839 (initial_insn_addr - current_stub_contents));
18840
18841 /* Fill the remaining of the stub with deterministic contents. */
18842 current_stub_contents =
18843 stm32l4xx_fill_stub_udf (htab, output_bfd,
18844 base_stub_contents, current_stub_contents,
18845 base_stub_contents +
18846 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18847
18848 return;
18849 }
18850
18851 /* - reg_list[13] == 0. */
18852 BFD_ASSERT ((insn_all_registers & (1 << 13))==0);
18853
18854 /* - reg_list[14] & reg_list[15] != 1. */
18855 BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18856
18857 /* - if (wback==1) reg_list[rn] == 0. */
18858 BFD_ASSERT (!wback || !restore_rn);
18859
18860 /* - nb_registers > 8. */
18861 BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
18862
18863 /* At this point, LDMxx initial insn loads between 9 and 14 registers. */
18864
18865 /* In the following algorithm, we split this wide LDM using 2 LDM insns:
18866 - One with the 7 lowest registers (register mask 0x007F)
18867 This LDM will finally contain between 2 and 7 registers
18868 - One with the 7 highest registers (register mask 0xDF80)
18869 This ldm will finally contain between 2 and 7 registers. */
18870 insn_low_registers = insn_all_registers & 0x007F;
18871 insn_high_registers = insn_all_registers & 0xDF80;
18872
18873 /* A spare register may be needed during this veneer to temporarily
18874 handle the base register. This register will be restored with the
18875 last LDM operation.
18876 The usable register may be any general purpose register (that
18877 excludes PC, SP, LR : register mask is 0x1FFF). */
18878 usable_register_mask = 0x1FFF;
18879
18880 /* Generate the stub function. */
18881 if (wback)
18882 {
18883 /* LDMIA Rn!, {R-low-register-list} : (Encoding T2). */
18884 current_stub_contents =
18885 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18886 create_instruction_ldmia
18887 (rn, /*wback=*/1, insn_low_registers));
18888
18889 /* LDMIA Rn!, {R-high-register-list} : (Encoding T2). */
18890 current_stub_contents =
18891 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18892 create_instruction_ldmia
18893 (rn, /*wback=*/1, insn_high_registers));
18894 if (!restore_pc)
18895 {
18896 /* B initial_insn_addr+4. */
18897 current_stub_contents =
18898 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18899 create_instruction_branch_absolute
18900 (initial_insn_addr - current_stub_contents));
18901 }
18902 }
18903 else /* if (!wback). */
18904 {
18905 ri = rn;
18906
18907 /* If Rn is not part of the high-register-list, move it there. */
18908 if (!(insn_high_registers & (1 << rn)))
18909 {
18910 /* Choose a Ri in the high-register-list that will be restored. */
18911 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
18912
18913 /* MOV Ri, Rn. */
18914 current_stub_contents =
18915 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18916 create_instruction_mov (ri, rn));
18917 }
18918
18919 /* LDMIA Ri!, {R-low-register-list} : (Encoding T2). */
18920 current_stub_contents =
18921 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18922 create_instruction_ldmia
18923 (ri, /*wback=*/1, insn_low_registers));
18924
18925 /* LDMIA Ri, {R-high-register-list} : (Encoding T2). */
18926 current_stub_contents =
18927 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18928 create_instruction_ldmia
18929 (ri, /*wback=*/0, insn_high_registers));
18930
18931 if (!restore_pc)
18932 {
18933 /* B initial_insn_addr+4. */
18934 current_stub_contents =
18935 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18936 create_instruction_branch_absolute
18937 (initial_insn_addr - current_stub_contents));
18938 }
18939 }
18940
18941 /* Fill the remaining of the stub with deterministic contents. */
18942 current_stub_contents =
18943 stm32l4xx_fill_stub_udf (htab, output_bfd,
18944 base_stub_contents, current_stub_contents,
18945 base_stub_contents +
18946 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18947 }
18948
18949 static void
18950 stm32l4xx_create_replacing_stub_ldmdb (struct elf32_arm_link_hash_table * htab,
18951 bfd * output_bfd,
18952 const insn32 initial_insn,
18953 const bfd_byte *const initial_insn_addr,
18954 bfd_byte *const base_stub_contents)
18955 {
18956 int wback = (initial_insn & 0x00200000) >> 21;
18957 int ri, rn = (initial_insn & 0x000f0000) >> 16;
18958 int insn_all_registers = initial_insn & 0x0000ffff;
18959 int insn_low_registers, insn_high_registers;
18960 int usable_register_mask;
18961 int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18962 int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
18963 int nb_registers = elf32_arm_popcount (insn_all_registers);
18964 bfd_byte *current_stub_contents = base_stub_contents;
18965
18966 BFD_ASSERT (is_thumb2_ldmdb (initial_insn));
18967
18968 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18969 smaller than 8 registers load sequences that do not cause the
18970 hardware issue. */
18971 if (nb_registers <= 8)
18972 {
18973 /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}. */
18974 current_stub_contents =
18975 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18976 initial_insn);
18977
18978 /* B initial_insn_addr+4. */
18979 current_stub_contents =
18980 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18981 create_instruction_branch_absolute
18982 (initial_insn_addr - current_stub_contents));
18983
18984 /* Fill the remaining of the stub with deterministic contents. */
18985 current_stub_contents =
18986 stm32l4xx_fill_stub_udf (htab, output_bfd,
18987 base_stub_contents, current_stub_contents,
18988 base_stub_contents +
18989 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18990
18991 return;
18992 }
18993
18994 /* - reg_list[13] == 0. */
18995 BFD_ASSERT ((insn_all_registers & (1 << 13)) == 0);
18996
18997 /* - reg_list[14] & reg_list[15] != 1. */
18998 BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18999
19000 /* - if (wback==1) reg_list[rn] == 0. */
19001 BFD_ASSERT (!wback || !restore_rn);
19002
19003 /* - nb_registers > 8. */
19004 BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
19005
19006 /* At this point, LDMxx initial insn loads between 9 and 14 registers. */
19007
19008 /* In the following algorithm, we split this wide LDM using 2 LDM insn:
19009 - One with the 7 lowest registers (register mask 0x007F)
19010 This LDM will finally contain between 2 and 7 registers
19011 - One with the 7 highest registers (register mask 0xDF80)
19012 This ldm will finally contain between 2 and 7 registers. */
19013 insn_low_registers = insn_all_registers & 0x007F;
19014 insn_high_registers = insn_all_registers & 0xDF80;
19015
19016 /* A spare register may be needed during this veneer to temporarily
19017 handle the base register. This register will be restored with
19018 the last LDM operation.
19019 The usable register may be any general purpose register (that excludes
19020 PC, SP, LR : register mask is 0x1FFF). */
19021 usable_register_mask = 0x1FFF;
19022
19023 /* Generate the stub function. */
19024 if (!wback && !restore_pc && !restore_rn)
19025 {
19026 /* Choose a Ri in the low-register-list that will be restored. */
19027 ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
19028
19029 /* MOV Ri, Rn. */
19030 current_stub_contents =
19031 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
19032 create_instruction_mov (ri, rn));
19033
19034 /* LDMDB Ri!, {R-high-register-list}. */
19035 current_stub_contents =
19036 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19037 create_instruction_ldmdb
19038 (ri, /*wback=*/1, insn_high_registers));
19039
19040 /* LDMDB Ri, {R-low-register-list}. */
19041 current_stub_contents =
19042 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19043 create_instruction_ldmdb
19044 (ri, /*wback=*/0, insn_low_registers));
19045
19046 /* B initial_insn_addr+4. */
19047 current_stub_contents =
19048 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19049 create_instruction_branch_absolute
19050 (initial_insn_addr - current_stub_contents));
19051 }
19052 else if (wback && !restore_pc && !restore_rn)
19053 {
19054 /* LDMDB Rn!, {R-high-register-list}. */
19055 current_stub_contents =
19056 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19057 create_instruction_ldmdb
19058 (rn, /*wback=*/1, insn_high_registers));
19059
19060 /* LDMDB Rn!, {R-low-register-list}. */
19061 current_stub_contents =
19062 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19063 create_instruction_ldmdb
19064 (rn, /*wback=*/1, insn_low_registers));
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
19070 (initial_insn_addr - current_stub_contents));
19071 }
19072 else if (!wback && restore_pc && !restore_rn)
19073 {
19074 /* Choose a Ri in the high-register-list that will be restored. */
19075 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19076
19077 /* SUB Ri, Rn, #(4*nb_registers). */
19078 current_stub_contents =
19079 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19080 create_instruction_sub (ri, rn, (4 * nb_registers)));
19081
19082 /* LDMIA Ri!, {R-low-register-list}. */
19083 current_stub_contents =
19084 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19085 create_instruction_ldmia
19086 (ri, /*wback=*/1, insn_low_registers));
19087
19088 /* LDMIA Ri, {R-high-register-list}. */
19089 current_stub_contents =
19090 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19091 create_instruction_ldmia
19092 (ri, /*wback=*/0, insn_high_registers));
19093 }
19094 else if (wback && restore_pc && !restore_rn)
19095 {
19096 /* Choose a Ri in the high-register-list that will be restored. */
19097 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19098
19099 /* SUB Rn, Rn, #(4*nb_registers) */
19100 current_stub_contents =
19101 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19102 create_instruction_sub (rn, rn, (4 * nb_registers)));
19103
19104 /* MOV Ri, Rn. */
19105 current_stub_contents =
19106 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
19107 create_instruction_mov (ri, rn));
19108
19109 /* LDMIA Ri!, {R-low-register-list}. */
19110 current_stub_contents =
19111 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19112 create_instruction_ldmia
19113 (ri, /*wback=*/1, insn_low_registers));
19114
19115 /* LDMIA Ri, {R-high-register-list}. */
19116 current_stub_contents =
19117 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19118 create_instruction_ldmia
19119 (ri, /*wback=*/0, insn_high_registers));
19120 }
19121 else if (!wback && !restore_pc && restore_rn)
19122 {
19123 ri = rn;
19124 if (!(insn_low_registers & (1 << rn)))
19125 {
19126 /* Choose a Ri in the low-register-list that will be restored. */
19127 ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
19128
19129 /* MOV Ri, Rn. */
19130 current_stub_contents =
19131 push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
19132 create_instruction_mov (ri, rn));
19133 }
19134
19135 /* LDMDB Ri!, {R-high-register-list}. */
19136 current_stub_contents =
19137 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19138 create_instruction_ldmdb
19139 (ri, /*wback=*/1, insn_high_registers));
19140
19141 /* LDMDB Ri, {R-low-register-list}. */
19142 current_stub_contents =
19143 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19144 create_instruction_ldmdb
19145 (ri, /*wback=*/0, insn_low_registers));
19146
19147 /* B initial_insn_addr+4. */
19148 current_stub_contents =
19149 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19150 create_instruction_branch_absolute
19151 (initial_insn_addr - current_stub_contents));
19152 }
19153 else if (!wback && restore_pc && restore_rn)
19154 {
19155 ri = rn;
19156 if (!(insn_high_registers & (1 << rn)))
19157 {
19158 /* Choose a Ri in the high-register-list that will be restored. */
19159 ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19160 }
19161
19162 /* SUB Ri, Rn, #(4*nb_registers). */
19163 current_stub_contents =
19164 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19165 create_instruction_sub (ri, rn, (4 * nb_registers)));
19166
19167 /* LDMIA Ri!, {R-low-register-list}. */
19168 current_stub_contents =
19169 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19170 create_instruction_ldmia
19171 (ri, /*wback=*/1, insn_low_registers));
19172
19173 /* LDMIA Ri, {R-high-register-list}. */
19174 current_stub_contents =
19175 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19176 create_instruction_ldmia
19177 (ri, /*wback=*/0, insn_high_registers));
19178 }
19179 else if (wback && restore_rn)
19180 {
19181 /* The assembler should not have accepted to encode this. */
19182 BFD_ASSERT (0 && "Cannot patch an instruction that has an "
19183 "undefined behavior.\n");
19184 }
19185
19186 /* Fill the remaining of the stub with deterministic contents. */
19187 current_stub_contents =
19188 stm32l4xx_fill_stub_udf (htab, output_bfd,
19189 base_stub_contents, current_stub_contents,
19190 base_stub_contents +
19191 STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
19192
19193 }
19194
19195 static void
19196 stm32l4xx_create_replacing_stub_vldm (struct elf32_arm_link_hash_table * htab,
19197 bfd * output_bfd,
19198 const insn32 initial_insn,
19199 const bfd_byte *const initial_insn_addr,
19200 bfd_byte *const base_stub_contents)
19201 {
19202 int num_words = initial_insn & 0xff;
19203 bfd_byte *current_stub_contents = base_stub_contents;
19204
19205 BFD_ASSERT (is_thumb2_vldm (initial_insn));
19206
19207 /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
19208 smaller than 8 words load sequences that do not cause the
19209 hardware issue. */
19210 if (num_words <= 8)
19211 {
19212 /* Untouched instruction. */
19213 current_stub_contents =
19214 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19215 initial_insn);
19216
19217 /* B initial_insn_addr+4. */
19218 current_stub_contents =
19219 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19220 create_instruction_branch_absolute
19221 (initial_insn_addr - current_stub_contents));
19222 }
19223 else
19224 {
19225 bfd_boolean is_dp = /* DP encoding. */
19226 (initial_insn & 0xfe100f00) == 0xec100b00;
19227 bfd_boolean is_ia_nobang = /* (IA without !). */
19228 (((initial_insn << 7) >> 28) & 0xd) == 0x4;
19229 bfd_boolean is_ia_bang = /* (IA with !) - includes VPOP. */
19230 (((initial_insn << 7) >> 28) & 0xd) == 0x5;
19231 bfd_boolean is_db_bang = /* (DB with !). */
19232 (((initial_insn << 7) >> 28) & 0xd) == 0x9;
19233 int base_reg = ((unsigned int) initial_insn << 12) >> 28;
19234 /* d = UInt (Vd:D);. */
19235 int first_reg = ((((unsigned int) initial_insn << 16) >> 28) << 1)
19236 | (((unsigned int)initial_insn << 9) >> 31);
19237
19238 /* Compute the number of 8-words chunks needed to split. */
19239 int chunks = (num_words % 8) ? (num_words / 8 + 1) : (num_words / 8);
19240 int chunk;
19241
19242 /* The test coverage has been done assuming the following
19243 hypothesis that exactly one of the previous is_ predicates is
19244 true. */
19245 BFD_ASSERT ( (is_ia_nobang ^ is_ia_bang ^ is_db_bang)
19246 && !(is_ia_nobang & is_ia_bang & is_db_bang));
19247
19248 /* We treat the cutting of the words in one pass for all
19249 cases, then we emit the adjustments:
19250
19251 vldm rx, {...}
19252 -> vldm rx!, {8_words_or_less} for each needed 8_word
19253 -> sub rx, rx, #size (list)
19254
19255 vldm rx!, {...}
19256 -> vldm rx!, {8_words_or_less} for each needed 8_word
19257 This also handles vpop instruction (when rx is sp)
19258
19259 vldmd rx!, {...}
19260 -> vldmb rx!, {8_words_or_less} for each needed 8_word. */
19261 for (chunk = 0; chunk < chunks; ++chunk)
19262 {
19263 bfd_vma new_insn = 0;
19264
19265 if (is_ia_nobang || is_ia_bang)
19266 {
19267 new_insn = create_instruction_vldmia
19268 (base_reg,
19269 is_dp,
19270 /*wback= . */1,
19271 chunks - (chunk + 1) ?
19272 8 : num_words - chunk * 8,
19273 first_reg + chunk * 8);
19274 }
19275 else if (is_db_bang)
19276 {
19277 new_insn = create_instruction_vldmdb
19278 (base_reg,
19279 is_dp,
19280 chunks - (chunk + 1) ?
19281 8 : num_words - chunk * 8,
19282 first_reg + chunk * 8);
19283 }
19284
19285 if (new_insn)
19286 current_stub_contents =
19287 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19288 new_insn);
19289 }
19290
19291 /* Only this case requires the base register compensation
19292 subtract. */
19293 if (is_ia_nobang)
19294 {
19295 current_stub_contents =
19296 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19297 create_instruction_sub
19298 (base_reg, base_reg, 4*num_words));
19299 }
19300
19301 /* B initial_insn_addr+4. */
19302 current_stub_contents =
19303 push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19304 create_instruction_branch_absolute
19305 (initial_insn_addr - current_stub_contents));
19306 }
19307
19308 /* Fill the remaining of the stub with deterministic contents. */
19309 current_stub_contents =
19310 stm32l4xx_fill_stub_udf (htab, output_bfd,
19311 base_stub_contents, current_stub_contents,
19312 base_stub_contents +
19313 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
19314 }
19315
19316 static void
19317 stm32l4xx_create_replacing_stub (struct elf32_arm_link_hash_table * htab,
19318 bfd * output_bfd,
19319 const insn32 wrong_insn,
19320 const bfd_byte *const wrong_insn_addr,
19321 bfd_byte *const stub_contents)
19322 {
19323 if (is_thumb2_ldmia (wrong_insn))
19324 stm32l4xx_create_replacing_stub_ldmia (htab, output_bfd,
19325 wrong_insn, wrong_insn_addr,
19326 stub_contents);
19327 else if (is_thumb2_ldmdb (wrong_insn))
19328 stm32l4xx_create_replacing_stub_ldmdb (htab, output_bfd,
19329 wrong_insn, wrong_insn_addr,
19330 stub_contents);
19331 else if (is_thumb2_vldm (wrong_insn))
19332 stm32l4xx_create_replacing_stub_vldm (htab, output_bfd,
19333 wrong_insn, wrong_insn_addr,
19334 stub_contents);
19335 }
19336
19337 /* End of stm32l4xx work-around. */
19338
19339
19340 /* Do code byteswapping. Return FALSE afterwards so that the section is
19341 written out as normal. */
19342
19343 static bfd_boolean
19344 elf32_arm_write_section (bfd *output_bfd,
19345 struct bfd_link_info *link_info,
19346 asection *sec,
19347 bfd_byte *contents)
19348 {
19349 unsigned int mapcount, errcount;
19350 _arm_elf_section_data *arm_data;
19351 struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
19352 elf32_arm_section_map *map;
19353 elf32_vfp11_erratum_list *errnode;
19354 elf32_stm32l4xx_erratum_list *stm32l4xx_errnode;
19355 bfd_vma ptr;
19356 bfd_vma end;
19357 bfd_vma offset = sec->output_section->vma + sec->output_offset;
19358 bfd_byte tmp;
19359 unsigned int i;
19360
19361 if (globals == NULL)
19362 return FALSE;
19363
19364 /* If this section has not been allocated an _arm_elf_section_data
19365 structure then we cannot record anything. */
19366 arm_data = get_arm_elf_section_data (sec);
19367 if (arm_data == NULL)
19368 return FALSE;
19369
19370 mapcount = arm_data->mapcount;
19371 map = arm_data->map;
19372 errcount = arm_data->erratumcount;
19373
19374 if (errcount != 0)
19375 {
19376 unsigned int endianflip = bfd_big_endian (output_bfd) ? 3 : 0;
19377
19378 for (errnode = arm_data->erratumlist; errnode != 0;
19379 errnode = errnode->next)
19380 {
19381 bfd_vma target = errnode->vma - offset;
19382
19383 switch (errnode->type)
19384 {
19385 case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
19386 {
19387 bfd_vma branch_to_veneer;
19388 /* Original condition code of instruction, plus bit mask for
19389 ARM B instruction. */
19390 unsigned int insn = (errnode->u.b.vfp_insn & 0xf0000000)
19391 | 0x0a000000;
19392
19393 /* The instruction is before the label. */
19394 target -= 4;
19395
19396 /* Above offset included in -4 below. */
19397 branch_to_veneer = errnode->u.b.veneer->vma
19398 - errnode->vma - 4;
19399
19400 if ((signed) branch_to_veneer < -(1 << 25)
19401 || (signed) branch_to_veneer >= (1 << 25))
19402 _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
19403 "range"), output_bfd);
19404
19405 insn |= (branch_to_veneer >> 2) & 0xffffff;
19406 contents[endianflip ^ target] = insn & 0xff;
19407 contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19408 contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19409 contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19410 }
19411 break;
19412
19413 case VFP11_ERRATUM_ARM_VENEER:
19414 {
19415 bfd_vma branch_from_veneer;
19416 unsigned int insn;
19417
19418 /* Take size of veneer into account. */
19419 branch_from_veneer = errnode->u.v.branch->vma
19420 - errnode->vma - 12;
19421
19422 if ((signed) branch_from_veneer < -(1 << 25)
19423 || (signed) branch_from_veneer >= (1 << 25))
19424 _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
19425 "range"), output_bfd);
19426
19427 /* Original instruction. */
19428 insn = errnode->u.v.branch->u.b.vfp_insn;
19429 contents[endianflip ^ target] = insn & 0xff;
19430 contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19431 contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19432 contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19433
19434 /* Branch back to insn after original insn. */
19435 insn = 0xea000000 | ((branch_from_veneer >> 2) & 0xffffff);
19436 contents[endianflip ^ (target + 4)] = insn & 0xff;
19437 contents[endianflip ^ (target + 5)] = (insn >> 8) & 0xff;
19438 contents[endianflip ^ (target + 6)] = (insn >> 16) & 0xff;
19439 contents[endianflip ^ (target + 7)] = (insn >> 24) & 0xff;
19440 }
19441 break;
19442
19443 default:
19444 abort ();
19445 }
19446 }
19447 }
19448
19449 if (arm_data->stm32l4xx_erratumcount != 0)
19450 {
19451 for (stm32l4xx_errnode = arm_data->stm32l4xx_erratumlist;
19452 stm32l4xx_errnode != 0;
19453 stm32l4xx_errnode = stm32l4xx_errnode->next)
19454 {
19455 bfd_vma target = stm32l4xx_errnode->vma - offset;
19456
19457 switch (stm32l4xx_errnode->type)
19458 {
19459 case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
19460 {
19461 unsigned int insn;
19462 bfd_vma branch_to_veneer =
19463 stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma;
19464
19465 if ((signed) branch_to_veneer < -(1 << 24)
19466 || (signed) branch_to_veneer >= (1 << 24))
19467 {
19468 bfd_vma out_of_range =
19469 ((signed) branch_to_veneer < -(1 << 24)) ?
19470 - branch_to_veneer - (1 << 24) :
19471 ((signed) branch_to_veneer >= (1 << 24)) ?
19472 branch_to_veneer - (1 << 24) : 0;
19473
19474 _bfd_error_handler
19475 (_("%pB(%#" PRIx64 "): error: "
19476 "cannot create STM32L4XX veneer; "
19477 "jump out of range by %" PRId64 " bytes; "
19478 "cannot encode branch instruction"),
19479 output_bfd,
19480 (uint64_t) (stm32l4xx_errnode->vma - 4),
19481 (int64_t) out_of_range);
19482 continue;
19483 }
19484
19485 insn = create_instruction_branch_absolute
19486 (stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma);
19487
19488 /* The instruction is before the label. */
19489 target -= 4;
19490
19491 put_thumb2_insn (globals, output_bfd,
19492 (bfd_vma) insn, contents + target);
19493 }
19494 break;
19495
19496 case STM32L4XX_ERRATUM_VENEER:
19497 {
19498 bfd_byte * veneer;
19499 bfd_byte * veneer_r;
19500 unsigned int insn;
19501
19502 veneer = contents + target;
19503 veneer_r = veneer
19504 + stm32l4xx_errnode->u.b.veneer->vma
19505 - stm32l4xx_errnode->vma - 4;
19506
19507 if ((signed) (veneer_r - veneer -
19508 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE >
19509 STM32L4XX_ERRATUM_LDM_VENEER_SIZE ?
19510 STM32L4XX_ERRATUM_VLDM_VENEER_SIZE :
19511 STM32L4XX_ERRATUM_LDM_VENEER_SIZE) < -(1 << 24)
19512 || (signed) (veneer_r - veneer) >= (1 << 24))
19513 {
19514 _bfd_error_handler (_("%pB: error: cannot create STM32L4XX "
19515 "veneer"), output_bfd);
19516 continue;
19517 }
19518
19519 /* Original instruction. */
19520 insn = stm32l4xx_errnode->u.v.branch->u.b.insn;
19521
19522 stm32l4xx_create_replacing_stub
19523 (globals, output_bfd, insn, (void*)veneer_r, (void*)veneer);
19524 }
19525 break;
19526
19527 default:
19528 abort ();
19529 }
19530 }
19531 }
19532
19533 if (arm_data->elf.this_hdr.sh_type == SHT_ARM_EXIDX)
19534 {
19535 arm_unwind_table_edit *edit_node
19536 = arm_data->u.exidx.unwind_edit_list;
19537 /* Now, sec->size is the size of the section we will write. The original
19538 size (before we merged duplicate entries and inserted EXIDX_CANTUNWIND
19539 markers) was sec->rawsize. (This isn't the case if we perform no
19540 edits, then rawsize will be zero and we should use size). */
19541 bfd_byte *edited_contents = (bfd_byte *) bfd_malloc (sec->size);
19542 unsigned int input_size = sec->rawsize ? sec->rawsize : sec->size;
19543 unsigned int in_index, out_index;
19544 bfd_vma add_to_offsets = 0;
19545
19546 if (edited_contents == NULL)
19547 return FALSE;
19548 for (in_index = 0, out_index = 0; in_index * 8 < input_size || edit_node;)
19549 {
19550 if (edit_node)
19551 {
19552 unsigned int edit_index = edit_node->index;
19553
19554 if (in_index < edit_index && in_index * 8 < input_size)
19555 {
19556 copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19557 contents + in_index * 8, add_to_offsets);
19558 out_index++;
19559 in_index++;
19560 }
19561 else if (in_index == edit_index
19562 || (in_index * 8 >= input_size
19563 && edit_index == UINT_MAX))
19564 {
19565 switch (edit_node->type)
19566 {
19567 case DELETE_EXIDX_ENTRY:
19568 in_index++;
19569 add_to_offsets += 8;
19570 break;
19571
19572 case INSERT_EXIDX_CANTUNWIND_AT_END:
19573 {
19574 asection *text_sec = edit_node->linked_section;
19575 bfd_vma text_offset = text_sec->output_section->vma
19576 + text_sec->output_offset
19577 + text_sec->size;
19578 bfd_vma exidx_offset = offset + out_index * 8;
19579 unsigned long prel31_offset;
19580
19581 /* Note: this is meant to be equivalent to an
19582 R_ARM_PREL31 relocation. These synthetic
19583 EXIDX_CANTUNWIND markers are not relocated by the
19584 usual BFD method. */
19585 prel31_offset = (text_offset - exidx_offset)
19586 & 0x7ffffffful;
19587 if (bfd_link_relocatable (link_info))
19588 {
19589 /* Here relocation for new EXIDX_CANTUNWIND is
19590 created, so there is no need to
19591 adjust offset by hand. */
19592 prel31_offset = text_sec->output_offset
19593 + text_sec->size;
19594 }
19595
19596 /* First address we can't unwind. */
19597 bfd_put_32 (output_bfd, prel31_offset,
19598 &edited_contents[out_index * 8]);
19599
19600 /* Code for EXIDX_CANTUNWIND. */
19601 bfd_put_32 (output_bfd, 0x1,
19602 &edited_contents[out_index * 8 + 4]);
19603
19604 out_index++;
19605 add_to_offsets -= 8;
19606 }
19607 break;
19608 }
19609
19610 edit_node = edit_node->next;
19611 }
19612 }
19613 else
19614 {
19615 /* No more edits, copy remaining entries verbatim. */
19616 copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19617 contents + in_index * 8, add_to_offsets);
19618 out_index++;
19619 in_index++;
19620 }
19621 }
19622
19623 if (!(sec->flags & SEC_EXCLUDE) && !(sec->flags & SEC_NEVER_LOAD))
19624 bfd_set_section_contents (output_bfd, sec->output_section,
19625 edited_contents,
19626 (file_ptr) sec->output_offset, sec->size);
19627
19628 return TRUE;
19629 }
19630
19631 /* Fix code to point to Cortex-A8 erratum stubs. */
19632 if (globals->fix_cortex_a8)
19633 {
19634 struct a8_branch_to_stub_data data;
19635
19636 data.writing_section = sec;
19637 data.contents = contents;
19638
19639 bfd_hash_traverse (& globals->stub_hash_table, make_branch_to_a8_stub,
19640 & data);
19641 }
19642
19643 if (mapcount == 0)
19644 return FALSE;
19645
19646 if (globals->byteswap_code)
19647 {
19648 qsort (map, mapcount, sizeof (* map), elf32_arm_compare_mapping);
19649
19650 ptr = map[0].vma;
19651 for (i = 0; i < mapcount; i++)
19652 {
19653 if (i == mapcount - 1)
19654 end = sec->size;
19655 else
19656 end = map[i + 1].vma;
19657
19658 switch (map[i].type)
19659 {
19660 case 'a':
19661 /* Byte swap code words. */
19662 while (ptr + 3 < end)
19663 {
19664 tmp = contents[ptr];
19665 contents[ptr] = contents[ptr + 3];
19666 contents[ptr + 3] = tmp;
19667 tmp = contents[ptr + 1];
19668 contents[ptr + 1] = contents[ptr + 2];
19669 contents[ptr + 2] = tmp;
19670 ptr += 4;
19671 }
19672 break;
19673
19674 case 't':
19675 /* Byte swap code halfwords. */
19676 while (ptr + 1 < end)
19677 {
19678 tmp = contents[ptr];
19679 contents[ptr] = contents[ptr + 1];
19680 contents[ptr + 1] = tmp;
19681 ptr += 2;
19682 }
19683 break;
19684
19685 case 'd':
19686 /* Leave data alone. */
19687 break;
19688 }
19689 ptr = end;
19690 }
19691 }
19692
19693 free (map);
19694 arm_data->mapcount = -1;
19695 arm_data->mapsize = 0;
19696 arm_data->map = NULL;
19697
19698 return FALSE;
19699 }
19700
19701 /* Mangle thumb function symbols as we read them in. */
19702
19703 static bfd_boolean
19704 elf32_arm_swap_symbol_in (bfd * abfd,
19705 const void *psrc,
19706 const void *pshn,
19707 Elf_Internal_Sym *dst)
19708 {
19709 if (!bfd_elf32_swap_symbol_in (abfd, psrc, pshn, dst))
19710 return FALSE;
19711 dst->st_target_internal = 0;
19712
19713 /* New EABI objects mark thumb function symbols by setting the low bit of
19714 the address. */
19715 if (ELF_ST_TYPE (dst->st_info) == STT_FUNC
19716 || ELF_ST_TYPE (dst->st_info) == STT_GNU_IFUNC)
19717 {
19718 if (dst->st_value & 1)
19719 {
19720 dst->st_value &= ~(bfd_vma) 1;
19721 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal,
19722 ST_BRANCH_TO_THUMB);
19723 }
19724 else
19725 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_ARM);
19726 }
19727 else if (ELF_ST_TYPE (dst->st_info) == STT_ARM_TFUNC)
19728 {
19729 dst->st_info = ELF_ST_INFO (ELF_ST_BIND (dst->st_info), STT_FUNC);
19730 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_THUMB);
19731 }
19732 else if (ELF_ST_TYPE (dst->st_info) == STT_SECTION)
19733 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_LONG);
19734 else
19735 ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_UNKNOWN);
19736
19737 return TRUE;
19738 }
19739
19740
19741 /* Mangle thumb function symbols as we write them out. */
19742
19743 static void
19744 elf32_arm_swap_symbol_out (bfd *abfd,
19745 const Elf_Internal_Sym *src,
19746 void *cdst,
19747 void *shndx)
19748 {
19749 Elf_Internal_Sym newsym;
19750
19751 /* We convert STT_ARM_TFUNC symbols into STT_FUNC with the low bit
19752 of the address set, as per the new EABI. We do this unconditionally
19753 because objcopy does not set the elf header flags until after
19754 it writes out the symbol table. */
19755 if (ARM_GET_SYM_BRANCH_TYPE (src->st_target_internal) == ST_BRANCH_TO_THUMB)
19756 {
19757 newsym = *src;
19758 if (ELF_ST_TYPE (src->st_info) != STT_GNU_IFUNC)
19759 newsym.st_info = ELF_ST_INFO (ELF_ST_BIND (src->st_info), STT_FUNC);
19760 if (newsym.st_shndx != SHN_UNDEF)
19761 {
19762 /* Do this only for defined symbols. At link type, the static
19763 linker will simulate the work of dynamic linker of resolving
19764 symbols and will carry over the thumbness of found symbols to
19765 the output symbol table. It's not clear how it happens, but
19766 the thumbness of undefined symbols can well be different at
19767 runtime, and writing '1' for them will be confusing for users
19768 and possibly for dynamic linker itself.
19769 */
19770 newsym.st_value |= 1;
19771 }
19772
19773 src = &newsym;
19774 }
19775 bfd_elf32_swap_symbol_out (abfd, src, cdst, shndx);
19776 }
19777
19778 /* Add the PT_ARM_EXIDX program header. */
19779
19780 static bfd_boolean
19781 elf32_arm_modify_segment_map (bfd *abfd,
19782 struct bfd_link_info *info ATTRIBUTE_UNUSED)
19783 {
19784 struct elf_segment_map *m;
19785 asection *sec;
19786
19787 sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19788 if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19789 {
19790 /* If there is already a PT_ARM_EXIDX header, then we do not
19791 want to add another one. This situation arises when running
19792 "strip"; the input binary already has the header. */
19793 m = elf_seg_map (abfd);
19794 while (m && m->p_type != PT_ARM_EXIDX)
19795 m = m->next;
19796 if (!m)
19797 {
19798 m = (struct elf_segment_map *)
19799 bfd_zalloc (abfd, sizeof (struct elf_segment_map));
19800 if (m == NULL)
19801 return FALSE;
19802 m->p_type = PT_ARM_EXIDX;
19803 m->count = 1;
19804 m->sections[0] = sec;
19805
19806 m->next = elf_seg_map (abfd);
19807 elf_seg_map (abfd) = m;
19808 }
19809 }
19810
19811 return TRUE;
19812 }
19813
19814 /* We may add a PT_ARM_EXIDX program header. */
19815
19816 static int
19817 elf32_arm_additional_program_headers (bfd *abfd,
19818 struct bfd_link_info *info ATTRIBUTE_UNUSED)
19819 {
19820 asection *sec;
19821
19822 sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19823 if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19824 return 1;
19825 else
19826 return 0;
19827 }
19828
19829 /* Hook called by the linker routine which adds symbols from an object
19830 file. */
19831
19832 static bfd_boolean
19833 elf32_arm_add_symbol_hook (bfd *abfd, struct bfd_link_info *info,
19834 Elf_Internal_Sym *sym, const char **namep,
19835 flagword *flagsp, asection **secp, bfd_vma *valp)
19836 {
19837 if (elf32_arm_hash_table (info) == NULL)
19838 return FALSE;
19839
19840 if (elf32_arm_hash_table (info)->root.target_os == is_vxworks
19841 && !elf_vxworks_add_symbol_hook (abfd, info, sym, namep,
19842 flagsp, secp, valp))
19843 return FALSE;
19844
19845 return TRUE;
19846 }
19847
19848 /* We use this to override swap_symbol_in and swap_symbol_out. */
19849 const struct elf_size_info elf32_arm_size_info =
19850 {
19851 sizeof (Elf32_External_Ehdr),
19852 sizeof (Elf32_External_Phdr),
19853 sizeof (Elf32_External_Shdr),
19854 sizeof (Elf32_External_Rel),
19855 sizeof (Elf32_External_Rela),
19856 sizeof (Elf32_External_Sym),
19857 sizeof (Elf32_External_Dyn),
19858 sizeof (Elf_External_Note),
19859 4,
19860 1,
19861 32, 2,
19862 ELFCLASS32, EV_CURRENT,
19863 bfd_elf32_write_out_phdrs,
19864 bfd_elf32_write_shdrs_and_ehdr,
19865 bfd_elf32_checksum_contents,
19866 bfd_elf32_write_relocs,
19867 elf32_arm_swap_symbol_in,
19868 elf32_arm_swap_symbol_out,
19869 bfd_elf32_slurp_reloc_table,
19870 bfd_elf32_slurp_symbol_table,
19871 bfd_elf32_swap_dyn_in,
19872 bfd_elf32_swap_dyn_out,
19873 bfd_elf32_swap_reloc_in,
19874 bfd_elf32_swap_reloc_out,
19875 bfd_elf32_swap_reloca_in,
19876 bfd_elf32_swap_reloca_out
19877 };
19878
19879 static bfd_vma
19880 read_code32 (const bfd *abfd, const bfd_byte *addr)
19881 {
19882 /* V7 BE8 code is always little endian. */
19883 if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19884 return bfd_getl32 (addr);
19885
19886 return bfd_get_32 (abfd, addr);
19887 }
19888
19889 static bfd_vma
19890 read_code16 (const bfd *abfd, const bfd_byte *addr)
19891 {
19892 /* V7 BE8 code is always little endian. */
19893 if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19894 return bfd_getl16 (addr);
19895
19896 return bfd_get_16 (abfd, addr);
19897 }
19898
19899 /* Return size of plt0 entry starting at ADDR
19900 or (bfd_vma) -1 if size can not be determined. */
19901
19902 static bfd_vma
19903 elf32_arm_plt0_size (const bfd *abfd, const bfd_byte *addr)
19904 {
19905 bfd_vma first_word;
19906 bfd_vma plt0_size;
19907
19908 first_word = read_code32 (abfd, addr);
19909
19910 if (first_word == elf32_arm_plt0_entry[0])
19911 plt0_size = 4 * ARRAY_SIZE (elf32_arm_plt0_entry);
19912 else if (first_word == elf32_thumb2_plt0_entry[0])
19913 plt0_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
19914 else
19915 /* We don't yet handle this PLT format. */
19916 return (bfd_vma) -1;
19917
19918 return plt0_size;
19919 }
19920
19921 /* Return size of plt entry starting at offset OFFSET
19922 of plt section located at address START
19923 or (bfd_vma) -1 if size can not be determined. */
19924
19925 static bfd_vma
19926 elf32_arm_plt_size (const bfd *abfd, const bfd_byte *start, bfd_vma offset)
19927 {
19928 bfd_vma first_insn;
19929 bfd_vma plt_size = 0;
19930 const bfd_byte *addr = start + offset;
19931
19932 /* PLT entry size if fixed on Thumb-only platforms. */
19933 if (read_code32 (abfd, start) == elf32_thumb2_plt0_entry[0])
19934 return 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
19935
19936 /* Respect Thumb stub if necessary. */
19937 if (read_code16 (abfd, addr) == elf32_arm_plt_thumb_stub[0])
19938 {
19939 plt_size += 2 * ARRAY_SIZE(elf32_arm_plt_thumb_stub);
19940 }
19941
19942 /* Strip immediate from first add. */
19943 first_insn = read_code32 (abfd, addr + plt_size) & 0xffffff00;
19944
19945 #ifdef FOUR_WORD_PLT
19946 if (first_insn == elf32_arm_plt_entry[0])
19947 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry);
19948 #else
19949 if (first_insn == elf32_arm_plt_entry_long[0])
19950 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_long);
19951 else if (first_insn == elf32_arm_plt_entry_short[0])
19952 plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_short);
19953 #endif
19954 else
19955 /* We don't yet handle this PLT format. */
19956 return (bfd_vma) -1;
19957
19958 return plt_size;
19959 }
19960
19961 /* Implementation is shamelessly borrowed from _bfd_elf_get_synthetic_symtab. */
19962
19963 static long
19964 elf32_arm_get_synthetic_symtab (bfd *abfd,
19965 long symcount ATTRIBUTE_UNUSED,
19966 asymbol **syms ATTRIBUTE_UNUSED,
19967 long dynsymcount,
19968 asymbol **dynsyms,
19969 asymbol **ret)
19970 {
19971 asection *relplt;
19972 asymbol *s;
19973 arelent *p;
19974 long count, i, n;
19975 size_t size;
19976 Elf_Internal_Shdr *hdr;
19977 char *names;
19978 asection *plt;
19979 bfd_vma offset;
19980 bfd_byte *data;
19981
19982 *ret = NULL;
19983
19984 if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
19985 return 0;
19986
19987 if (dynsymcount <= 0)
19988 return 0;
19989
19990 relplt = bfd_get_section_by_name (abfd, ".rel.plt");
19991 if (relplt == NULL)
19992 return 0;
19993
19994 hdr = &elf_section_data (relplt)->this_hdr;
19995 if (hdr->sh_link != elf_dynsymtab (abfd)
19996 || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
19997 return 0;
19998
19999 plt = bfd_get_section_by_name (abfd, ".plt");
20000 if (plt == NULL)
20001 return 0;
20002
20003 if (!elf32_arm_size_info.slurp_reloc_table (abfd, relplt, dynsyms, TRUE))
20004 return -1;
20005
20006 data = plt->contents;
20007 if (data == NULL)
20008 {
20009 if (!bfd_get_full_section_contents(abfd, (asection *) plt, &data) || data == NULL)
20010 return -1;
20011 bfd_cache_section_contents((asection *) plt, data);
20012 }
20013
20014 count = relplt->size / hdr->sh_entsize;
20015 size = count * sizeof (asymbol);
20016 p = relplt->relocation;
20017 for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
20018 {
20019 size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
20020 if (p->addend != 0)
20021 size += sizeof ("+0x") - 1 + 8;
20022 }
20023
20024 s = *ret = (asymbol *) bfd_malloc (size);
20025 if (s == NULL)
20026 return -1;
20027
20028 offset = elf32_arm_plt0_size (abfd, data);
20029 if (offset == (bfd_vma) -1)
20030 return -1;
20031
20032 names = (char *) (s + count);
20033 p = relplt->relocation;
20034 n = 0;
20035 for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
20036 {
20037 size_t len;
20038
20039 bfd_vma plt_size = elf32_arm_plt_size (abfd, data, offset);
20040 if (plt_size == (bfd_vma) -1)
20041 break;
20042
20043 *s = **p->sym_ptr_ptr;
20044 /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set. Since
20045 we are defining a symbol, ensure one of them is set. */
20046 if ((s->flags & BSF_LOCAL) == 0)
20047 s->flags |= BSF_GLOBAL;
20048 s->flags |= BSF_SYNTHETIC;
20049 s->section = plt;
20050 s->value = offset;
20051 s->name = names;
20052 s->udata.p = NULL;
20053 len = strlen ((*p->sym_ptr_ptr)->name);
20054 memcpy (names, (*p->sym_ptr_ptr)->name, len);
20055 names += len;
20056 if (p->addend != 0)
20057 {
20058 char buf[30], *a;
20059
20060 memcpy (names, "+0x", sizeof ("+0x") - 1);
20061 names += sizeof ("+0x") - 1;
20062 bfd_sprintf_vma (abfd, buf, p->addend);
20063 for (a = buf; *a == '0'; ++a)
20064 ;
20065 len = strlen (a);
20066 memcpy (names, a, len);
20067 names += len;
20068 }
20069 memcpy (names, "@plt", sizeof ("@plt"));
20070 names += sizeof ("@plt");
20071 ++s, ++n;
20072 offset += plt_size;
20073 }
20074
20075 return n;
20076 }
20077
20078 static bfd_boolean
20079 elf32_arm_section_flags (const Elf_Internal_Shdr *hdr)
20080 {
20081 if (hdr->sh_flags & SHF_ARM_PURECODE)
20082 hdr->bfd_section->flags |= SEC_ELF_PURECODE;
20083 return TRUE;
20084 }
20085
20086 static flagword
20087 elf32_arm_lookup_section_flags (char *flag_name)
20088 {
20089 if (!strcmp (flag_name, "SHF_ARM_PURECODE"))
20090 return SHF_ARM_PURECODE;
20091
20092 return SEC_NO_FLAGS;
20093 }
20094
20095 static unsigned int
20096 elf32_arm_count_additional_relocs (asection *sec)
20097 {
20098 struct _arm_elf_section_data *arm_data;
20099 arm_data = get_arm_elf_section_data (sec);
20100
20101 return arm_data == NULL ? 0 : arm_data->additional_reloc_count;
20102 }
20103
20104 /* Called to set the sh_flags, sh_link and sh_info fields of OSECTION which
20105 has a type >= SHT_LOOS. Returns TRUE if these fields were initialised
20106 FALSE otherwise. ISECTION is the best guess matching section from the
20107 input bfd IBFD, but it might be NULL. */
20108
20109 static bfd_boolean
20110 elf32_arm_copy_special_section_fields (const bfd *ibfd ATTRIBUTE_UNUSED,
20111 bfd *obfd ATTRIBUTE_UNUSED,
20112 const Elf_Internal_Shdr *isection ATTRIBUTE_UNUSED,
20113 Elf_Internal_Shdr *osection)
20114 {
20115 switch (osection->sh_type)
20116 {
20117 case SHT_ARM_EXIDX:
20118 {
20119 Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
20120 Elf_Internal_Shdr **iheaders = elf_elfsections (ibfd);
20121 unsigned i = 0;
20122
20123 osection->sh_flags = SHF_ALLOC | SHF_LINK_ORDER;
20124 osection->sh_info = 0;
20125
20126 /* The sh_link field must be set to the text section associated with
20127 this index section. Unfortunately the ARM EHABI does not specify
20128 exactly how to determine this association. Our caller does try
20129 to match up OSECTION with its corresponding input section however
20130 so that is a good first guess. */
20131 if (isection != NULL
20132 && osection->bfd_section != NULL
20133 && isection->bfd_section != NULL
20134 && isection->bfd_section->output_section != NULL
20135 && isection->bfd_section->output_section == osection->bfd_section
20136 && iheaders != NULL
20137 && isection->sh_link > 0
20138 && isection->sh_link < elf_numsections (ibfd)
20139 && iheaders[isection->sh_link]->bfd_section != NULL
20140 && iheaders[isection->sh_link]->bfd_section->output_section != NULL
20141 )
20142 {
20143 for (i = elf_numsections (obfd); i-- > 0;)
20144 if (oheaders[i]->bfd_section
20145 == iheaders[isection->sh_link]->bfd_section->output_section)
20146 break;
20147 }
20148
20149 if (i == 0)
20150 {
20151 /* Failing that we have to find a matching section ourselves. If
20152 we had the output section name available we could compare that
20153 with input section names. Unfortunately we don't. So instead
20154 we use a simple heuristic and look for the nearest executable
20155 section before this one. */
20156 for (i = elf_numsections (obfd); i-- > 0;)
20157 if (oheaders[i] == osection)
20158 break;
20159 if (i == 0)
20160 break;
20161
20162 while (i-- > 0)
20163 if (oheaders[i]->sh_type == SHT_PROGBITS
20164 && (oheaders[i]->sh_flags & (SHF_ALLOC | SHF_EXECINSTR))
20165 == (SHF_ALLOC | SHF_EXECINSTR))
20166 break;
20167 }
20168
20169 if (i)
20170 {
20171 osection->sh_link = i;
20172 /* If the text section was part of a group
20173 then the index section should be too. */
20174 if (oheaders[i]->sh_flags & SHF_GROUP)
20175 osection->sh_flags |= SHF_GROUP;
20176 return TRUE;
20177 }
20178 }
20179 break;
20180
20181 case SHT_ARM_PREEMPTMAP:
20182 osection->sh_flags = SHF_ALLOC;
20183 break;
20184
20185 case SHT_ARM_ATTRIBUTES:
20186 case SHT_ARM_DEBUGOVERLAY:
20187 case SHT_ARM_OVERLAYSECTION:
20188 default:
20189 break;
20190 }
20191
20192 return FALSE;
20193 }
20194
20195 /* Returns TRUE if NAME is an ARM mapping symbol.
20196 Traditionally the symbols $a, $d and $t have been used.
20197 The ARM ELF standard also defines $x (for A64 code). It also allows a
20198 period initiated suffix to be added to the symbol: "$[adtx]\.[:sym_char]+".
20199 Other tools might also produce $b (Thumb BL), $f, $p, $m and $v, but we do
20200 not support them here. $t.x indicates the start of ThumbEE instructions. */
20201
20202 static bfd_boolean
20203 is_arm_mapping_symbol (const char * name)
20204 {
20205 return name != NULL /* Paranoia. */
20206 && name[0] == '$' /* Note: if objcopy --prefix-symbols has been used then
20207 the mapping symbols could have acquired a prefix.
20208 We do not support this here, since such symbols no
20209 longer conform to the ARM ELF ABI. */
20210 && (name[1] == 'a' || name[1] == 'd' || name[1] == 't' || name[1] == 'x')
20211 && (name[2] == 0 || name[2] == '.');
20212 /* FIXME: Strictly speaking the symbol is only a valid mapping symbol if
20213 any characters that follow the period are legal characters for the body
20214 of a symbol's name. For now we just assume that this is the case. */
20215 }
20216
20217 /* Make sure that mapping symbols in object files are not removed via the
20218 "strip --strip-unneeded" tool. These symbols are needed in order to
20219 correctly generate interworking veneers, and for byte swapping code
20220 regions. Once an object file has been linked, it is safe to remove the
20221 symbols as they will no longer be needed. */
20222
20223 static void
20224 elf32_arm_backend_symbol_processing (bfd *abfd, asymbol *sym)
20225 {
20226 if (((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
20227 && sym->section != bfd_abs_section_ptr
20228 && is_arm_mapping_symbol (sym->name))
20229 sym->flags |= BSF_KEEP;
20230 }
20231
20232 #undef elf_backend_copy_special_section_fields
20233 #define elf_backend_copy_special_section_fields elf32_arm_copy_special_section_fields
20234
20235 #define ELF_ARCH bfd_arch_arm
20236 #define ELF_TARGET_ID ARM_ELF_DATA
20237 #define ELF_MACHINE_CODE EM_ARM
20238 #ifdef __QNXTARGET__
20239 #define ELF_MAXPAGESIZE 0x1000
20240 #else
20241 #define ELF_MAXPAGESIZE 0x10000
20242 #endif
20243 #define ELF_MINPAGESIZE 0x1000
20244 #define ELF_COMMONPAGESIZE 0x1000
20245
20246 #define bfd_elf32_mkobject elf32_arm_mkobject
20247
20248 #define bfd_elf32_bfd_copy_private_bfd_data elf32_arm_copy_private_bfd_data
20249 #define bfd_elf32_bfd_merge_private_bfd_data elf32_arm_merge_private_bfd_data
20250 #define bfd_elf32_bfd_set_private_flags elf32_arm_set_private_flags
20251 #define bfd_elf32_bfd_print_private_bfd_data elf32_arm_print_private_bfd_data
20252 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_link_hash_table_create
20253 #define bfd_elf32_bfd_reloc_type_lookup elf32_arm_reloc_type_lookup
20254 #define bfd_elf32_bfd_reloc_name_lookup elf32_arm_reloc_name_lookup
20255 #define bfd_elf32_find_inliner_info elf32_arm_find_inliner_info
20256 #define bfd_elf32_new_section_hook elf32_arm_new_section_hook
20257 #define bfd_elf32_bfd_is_target_special_symbol elf32_arm_is_target_special_symbol
20258 #define bfd_elf32_bfd_final_link elf32_arm_final_link
20259 #define bfd_elf32_get_synthetic_symtab elf32_arm_get_synthetic_symtab
20260
20261 #define elf_backend_get_symbol_type elf32_arm_get_symbol_type
20262 #define elf_backend_maybe_function_sym elf32_arm_maybe_function_sym
20263 #define elf_backend_gc_mark_hook elf32_arm_gc_mark_hook
20264 #define elf_backend_gc_mark_extra_sections elf32_arm_gc_mark_extra_sections
20265 #define elf_backend_check_relocs elf32_arm_check_relocs
20266 #define elf_backend_update_relocs elf32_arm_update_relocs
20267 #define elf_backend_relocate_section elf32_arm_relocate_section
20268 #define elf_backend_write_section elf32_arm_write_section
20269 #define elf_backend_adjust_dynamic_symbol elf32_arm_adjust_dynamic_symbol
20270 #define elf_backend_create_dynamic_sections elf32_arm_create_dynamic_sections
20271 #define elf_backend_finish_dynamic_symbol elf32_arm_finish_dynamic_symbol
20272 #define elf_backend_finish_dynamic_sections elf32_arm_finish_dynamic_sections
20273 #define elf_backend_size_dynamic_sections elf32_arm_size_dynamic_sections
20274 #define elf_backend_always_size_sections elf32_arm_always_size_sections
20275 #define elf_backend_init_index_section _bfd_elf_init_2_index_sections
20276 #define elf_backend_init_file_header elf32_arm_init_file_header
20277 #define elf_backend_reloc_type_class elf32_arm_reloc_type_class
20278 #define elf_backend_object_p elf32_arm_object_p
20279 #define elf_backend_fake_sections elf32_arm_fake_sections
20280 #define elf_backend_section_from_shdr elf32_arm_section_from_shdr
20281 #define elf_backend_final_write_processing elf32_arm_final_write_processing
20282 #define elf_backend_copy_indirect_symbol elf32_arm_copy_indirect_symbol
20283 #define elf_backend_size_info elf32_arm_size_info
20284 #define elf_backend_modify_segment_map elf32_arm_modify_segment_map
20285 #define elf_backend_additional_program_headers elf32_arm_additional_program_headers
20286 #define elf_backend_output_arch_local_syms elf32_arm_output_arch_local_syms
20287 #define elf_backend_filter_implib_symbols elf32_arm_filter_implib_symbols
20288 #define elf_backend_begin_write_processing elf32_arm_begin_write_processing
20289 #define elf_backend_add_symbol_hook elf32_arm_add_symbol_hook
20290 #define elf_backend_count_additional_relocs elf32_arm_count_additional_relocs
20291 #define elf_backend_symbol_processing elf32_arm_backend_symbol_processing
20292
20293 #define elf_backend_can_refcount 1
20294 #define elf_backend_can_gc_sections 1
20295 #define elf_backend_plt_readonly 1
20296 #define elf_backend_want_got_plt 1
20297 #define elf_backend_want_plt_sym 0
20298 #define elf_backend_want_dynrelro 1
20299 #define elf_backend_may_use_rel_p 1
20300 #define elf_backend_may_use_rela_p 0
20301 #define elf_backend_default_use_rela_p 0
20302 #define elf_backend_dtrel_excludes_plt 1
20303
20304 #define elf_backend_got_header_size 12
20305 #define elf_backend_extern_protected_data 1
20306
20307 #undef elf_backend_obj_attrs_vendor
20308 #define elf_backend_obj_attrs_vendor "aeabi"
20309 #undef elf_backend_obj_attrs_section
20310 #define elf_backend_obj_attrs_section ".ARM.attributes"
20311 #undef elf_backend_obj_attrs_arg_type
20312 #define elf_backend_obj_attrs_arg_type elf32_arm_obj_attrs_arg_type
20313 #undef elf_backend_obj_attrs_section_type
20314 #define elf_backend_obj_attrs_section_type SHT_ARM_ATTRIBUTES
20315 #define elf_backend_obj_attrs_order elf32_arm_obj_attrs_order
20316 #define elf_backend_obj_attrs_handle_unknown elf32_arm_obj_attrs_handle_unknown
20317
20318 #undef elf_backend_section_flags
20319 #define elf_backend_section_flags elf32_arm_section_flags
20320 #undef elf_backend_lookup_section_flags_hook
20321 #define elf_backend_lookup_section_flags_hook elf32_arm_lookup_section_flags
20322
20323 #define elf_backend_linux_prpsinfo32_ugid16 TRUE
20324
20325 #include "elf32-target.h"
20326
20327 /* Native Client targets. */
20328
20329 #undef TARGET_LITTLE_SYM
20330 #define TARGET_LITTLE_SYM arm_elf32_nacl_le_vec
20331 #undef TARGET_LITTLE_NAME
20332 #define TARGET_LITTLE_NAME "elf32-littlearm-nacl"
20333 #undef TARGET_BIG_SYM
20334 #define TARGET_BIG_SYM arm_elf32_nacl_be_vec
20335 #undef TARGET_BIG_NAME
20336 #define TARGET_BIG_NAME "elf32-bigarm-nacl"
20337
20338 /* Like elf32_arm_link_hash_table_create -- but overrides
20339 appropriately for NaCl. */
20340
20341 static struct bfd_link_hash_table *
20342 elf32_arm_nacl_link_hash_table_create (bfd *abfd)
20343 {
20344 struct bfd_link_hash_table *ret;
20345
20346 ret = elf32_arm_link_hash_table_create (abfd);
20347 if (ret)
20348 {
20349 struct elf32_arm_link_hash_table *htab
20350 = (struct elf32_arm_link_hash_table *) ret;
20351
20352 htab->plt_header_size = 4 * ARRAY_SIZE (elf32_arm_nacl_plt0_entry);
20353 htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_arm_nacl_plt_entry);
20354 }
20355 return ret;
20356 }
20357
20358 /* Since NaCl doesn't use the ARM-specific unwind format, we don't
20359 really need to use elf32_arm_modify_segment_map. But we do it
20360 anyway just to reduce gratuitous differences with the stock ARM backend. */
20361
20362 static bfd_boolean
20363 elf32_arm_nacl_modify_segment_map (bfd *abfd, struct bfd_link_info *info)
20364 {
20365 return (elf32_arm_modify_segment_map (abfd, info)
20366 && nacl_modify_segment_map (abfd, info));
20367 }
20368
20369 static bfd_boolean
20370 elf32_arm_nacl_final_write_processing (bfd *abfd)
20371 {
20372 arm_final_write_processing (abfd);
20373 return nacl_final_write_processing (abfd);
20374 }
20375
20376 static bfd_vma
20377 elf32_arm_nacl_plt_sym_val (bfd_vma i, const asection *plt,
20378 const arelent *rel ATTRIBUTE_UNUSED)
20379 {
20380 return plt->vma
20381 + 4 * (ARRAY_SIZE (elf32_arm_nacl_plt0_entry) +
20382 i * ARRAY_SIZE (elf32_arm_nacl_plt_entry));
20383 }
20384
20385 #undef elf32_bed
20386 #define elf32_bed elf32_arm_nacl_bed
20387 #undef bfd_elf32_bfd_link_hash_table_create
20388 #define bfd_elf32_bfd_link_hash_table_create \
20389 elf32_arm_nacl_link_hash_table_create
20390 #undef elf_backend_plt_alignment
20391 #define elf_backend_plt_alignment 4
20392 #undef elf_backend_modify_segment_map
20393 #define elf_backend_modify_segment_map elf32_arm_nacl_modify_segment_map
20394 #undef elf_backend_modify_headers
20395 #define elf_backend_modify_headers nacl_modify_headers
20396 #undef elf_backend_final_write_processing
20397 #define elf_backend_final_write_processing elf32_arm_nacl_final_write_processing
20398 #undef bfd_elf32_get_synthetic_symtab
20399 #undef elf_backend_plt_sym_val
20400 #define elf_backend_plt_sym_val elf32_arm_nacl_plt_sym_val
20401 #undef elf_backend_copy_special_section_fields
20402
20403 #undef ELF_MINPAGESIZE
20404 #undef ELF_COMMONPAGESIZE
20405
20406 #undef ELF_TARGET_OS
20407 #define ELF_TARGET_OS is_nacl
20408
20409 #include "elf32-target.h"
20410
20411 /* Reset to defaults. */
20412 #undef elf_backend_plt_alignment
20413 #undef elf_backend_modify_segment_map
20414 #define elf_backend_modify_segment_map elf32_arm_modify_segment_map
20415 #undef elf_backend_modify_headers
20416 #undef elf_backend_final_write_processing
20417 #define elf_backend_final_write_processing elf32_arm_final_write_processing
20418 #undef ELF_MINPAGESIZE
20419 #define ELF_MINPAGESIZE 0x1000
20420 #undef ELF_COMMONPAGESIZE
20421 #define ELF_COMMONPAGESIZE 0x1000
20422
20423
20424 /* FDPIC Targets. */
20425
20426 #undef TARGET_LITTLE_SYM
20427 #define TARGET_LITTLE_SYM arm_elf32_fdpic_le_vec
20428 #undef TARGET_LITTLE_NAME
20429 #define TARGET_LITTLE_NAME "elf32-littlearm-fdpic"
20430 #undef TARGET_BIG_SYM
20431 #define TARGET_BIG_SYM arm_elf32_fdpic_be_vec
20432 #undef TARGET_BIG_NAME
20433 #define TARGET_BIG_NAME "elf32-bigarm-fdpic"
20434 #undef elf_match_priority
20435 #define elf_match_priority 128
20436 #undef ELF_OSABI
20437 #define ELF_OSABI ELFOSABI_ARM_FDPIC
20438
20439 /* Like elf32_arm_link_hash_table_create -- but overrides
20440 appropriately for FDPIC. */
20441
20442 static struct bfd_link_hash_table *
20443 elf32_arm_fdpic_link_hash_table_create (bfd *abfd)
20444 {
20445 struct bfd_link_hash_table *ret;
20446
20447 ret = elf32_arm_link_hash_table_create (abfd);
20448 if (ret)
20449 {
20450 struct elf32_arm_link_hash_table *htab = (struct elf32_arm_link_hash_table *) ret;
20451
20452 htab->fdpic_p = 1;
20453 }
20454 return ret;
20455 }
20456
20457 /* We need dynamic symbols for every section, since segments can
20458 relocate independently. */
20459 static bfd_boolean
20460 elf32_arm_fdpic_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
20461 struct bfd_link_info *info
20462 ATTRIBUTE_UNUSED,
20463 asection *p ATTRIBUTE_UNUSED)
20464 {
20465 switch (elf_section_data (p)->this_hdr.sh_type)
20466 {
20467 case SHT_PROGBITS:
20468 case SHT_NOBITS:
20469 /* If sh_type is yet undecided, assume it could be
20470 SHT_PROGBITS/SHT_NOBITS. */
20471 case SHT_NULL:
20472 return FALSE;
20473
20474 /* There shouldn't be section relative relocations
20475 against any other section. */
20476 default:
20477 return TRUE;
20478 }
20479 }
20480
20481 #undef elf32_bed
20482 #define elf32_bed elf32_arm_fdpic_bed
20483
20484 #undef bfd_elf32_bfd_link_hash_table_create
20485 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_fdpic_link_hash_table_create
20486
20487 #undef elf_backend_omit_section_dynsym
20488 #define elf_backend_omit_section_dynsym elf32_arm_fdpic_omit_section_dynsym
20489
20490 #undef ELF_TARGET_OS
20491
20492 #include "elf32-target.h"
20493
20494 #undef elf_match_priority
20495 #undef ELF_OSABI
20496 #undef elf_backend_omit_section_dynsym
20497
20498 /* VxWorks Targets. */
20499
20500 #undef TARGET_LITTLE_SYM
20501 #define TARGET_LITTLE_SYM arm_elf32_vxworks_le_vec
20502 #undef TARGET_LITTLE_NAME
20503 #define TARGET_LITTLE_NAME "elf32-littlearm-vxworks"
20504 #undef TARGET_BIG_SYM
20505 #define TARGET_BIG_SYM arm_elf32_vxworks_be_vec
20506 #undef TARGET_BIG_NAME
20507 #define TARGET_BIG_NAME "elf32-bigarm-vxworks"
20508
20509 /* Like elf32_arm_link_hash_table_create -- but overrides
20510 appropriately for VxWorks. */
20511
20512 static struct bfd_link_hash_table *
20513 elf32_arm_vxworks_link_hash_table_create (bfd *abfd)
20514 {
20515 struct bfd_link_hash_table *ret;
20516
20517 ret = elf32_arm_link_hash_table_create (abfd);
20518 if (ret)
20519 {
20520 struct elf32_arm_link_hash_table *htab
20521 = (struct elf32_arm_link_hash_table *) ret;
20522 htab->use_rel = 0;
20523 }
20524 return ret;
20525 }
20526
20527 static bfd_boolean
20528 elf32_arm_vxworks_final_write_processing (bfd *abfd)
20529 {
20530 arm_final_write_processing (abfd);
20531 return elf_vxworks_final_write_processing (abfd);
20532 }
20533
20534 #undef elf32_bed
20535 #define elf32_bed elf32_arm_vxworks_bed
20536
20537 #undef bfd_elf32_bfd_link_hash_table_create
20538 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_vxworks_link_hash_table_create
20539 #undef elf_backend_final_write_processing
20540 #define elf_backend_final_write_processing elf32_arm_vxworks_final_write_processing
20541 #undef elf_backend_emit_relocs
20542 #define elf_backend_emit_relocs elf_vxworks_emit_relocs
20543
20544 #undef elf_backend_may_use_rel_p
20545 #define elf_backend_may_use_rel_p 0
20546 #undef elf_backend_may_use_rela_p
20547 #define elf_backend_may_use_rela_p 1
20548 #undef elf_backend_default_use_rela_p
20549 #define elf_backend_default_use_rela_p 1
20550 #undef elf_backend_want_plt_sym
20551 #define elf_backend_want_plt_sym 1
20552 #undef ELF_MAXPAGESIZE
20553 #define ELF_MAXPAGESIZE 0x1000
20554 #undef ELF_TARGET_OS
20555 #define ELF_TARGET_OS is_vxworks
20556
20557 #include "elf32-target.h"
20558
20559
20560 /* Merge backend specific data from an object file to the output
20561 object file when linking. */
20562
20563 static bfd_boolean
20564 elf32_arm_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
20565 {
20566 bfd *obfd = info->output_bfd;
20567 flagword out_flags;
20568 flagword in_flags;
20569 bfd_boolean flags_compatible = TRUE;
20570 asection *sec;
20571
20572 /* Check if we have the same endianness. */
20573 if (! _bfd_generic_verify_endian_match (ibfd, info))
20574 return FALSE;
20575
20576 if (! is_arm_elf (ibfd) || ! is_arm_elf (obfd))
20577 return TRUE;
20578
20579 if (!elf32_arm_merge_eabi_attributes (ibfd, info))
20580 return FALSE;
20581
20582 /* The input BFD must have had its flags initialised. */
20583 /* The following seems bogus to me -- The flags are initialized in
20584 the assembler but I don't think an elf_flags_init field is
20585 written into the object. */
20586 /* BFD_ASSERT (elf_flags_init (ibfd)); */
20587
20588 in_flags = elf_elfheader (ibfd)->e_flags;
20589 out_flags = elf_elfheader (obfd)->e_flags;
20590
20591 /* In theory there is no reason why we couldn't handle this. However
20592 in practice it isn't even close to working and there is no real
20593 reason to want it. */
20594 if (EF_ARM_EABI_VERSION (in_flags) >= EF_ARM_EABI_VER4
20595 && !(ibfd->flags & DYNAMIC)
20596 && (in_flags & EF_ARM_BE8))
20597 {
20598 _bfd_error_handler (_("error: %pB is already in final BE8 format"),
20599 ibfd);
20600 return FALSE;
20601 }
20602
20603 if (!elf_flags_init (obfd))
20604 {
20605 /* If the input is the default architecture and had the default
20606 flags then do not bother setting the flags for the output
20607 architecture, instead allow future merges to do this. If no
20608 future merges ever set these flags then they will retain their
20609 uninitialised values, which surprise surprise, correspond
20610 to the default values. */
20611 if (bfd_get_arch_info (ibfd)->the_default
20612 && elf_elfheader (ibfd)->e_flags == 0)
20613 return TRUE;
20614
20615 elf_flags_init (obfd) = TRUE;
20616 elf_elfheader (obfd)->e_flags = in_flags;
20617
20618 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
20619 && bfd_get_arch_info (obfd)->the_default)
20620 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), bfd_get_mach (ibfd));
20621
20622 return TRUE;
20623 }
20624
20625 /* Determine what should happen if the input ARM architecture
20626 does not match the output ARM architecture. */
20627 if (! bfd_arm_merge_machines (ibfd, obfd))
20628 return FALSE;
20629
20630 /* Identical flags must be compatible. */
20631 if (in_flags == out_flags)
20632 return TRUE;
20633
20634 /* Check to see if the input BFD actually contains any sections. If
20635 not, its flags may not have been initialised either, but it
20636 cannot actually cause any incompatiblity. Do not short-circuit
20637 dynamic objects; their section list may be emptied by
20638 elf_link_add_object_symbols.
20639
20640 Also check to see if there are no code sections in the input.
20641 In this case there is no need to check for code specific flags.
20642 XXX - do we need to worry about floating-point format compatability
20643 in data sections ? */
20644 if (!(ibfd->flags & DYNAMIC))
20645 {
20646 bfd_boolean null_input_bfd = TRUE;
20647 bfd_boolean only_data_sections = TRUE;
20648
20649 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
20650 {
20651 /* Ignore synthetic glue sections. */
20652 if (strcmp (sec->name, ".glue_7")
20653 && strcmp (sec->name, ".glue_7t"))
20654 {
20655 if ((bfd_section_flags (sec)
20656 & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
20657 == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
20658 only_data_sections = FALSE;
20659
20660 null_input_bfd = FALSE;
20661 break;
20662 }
20663 }
20664
20665 if (null_input_bfd || only_data_sections)
20666 return TRUE;
20667 }
20668
20669 /* Complain about various flag mismatches. */
20670 if (!elf32_arm_versions_compatible (EF_ARM_EABI_VERSION (in_flags),
20671 EF_ARM_EABI_VERSION (out_flags)))
20672 {
20673 _bfd_error_handler
20674 (_("error: source object %pB has EABI version %d, but target %pB has EABI version %d"),
20675 ibfd, (in_flags & EF_ARM_EABIMASK) >> 24,
20676 obfd, (out_flags & EF_ARM_EABIMASK) >> 24);
20677 return FALSE;
20678 }
20679
20680 /* Not sure what needs to be checked for EABI versions >= 1. */
20681 /* VxWorks libraries do not use these flags. */
20682 if (get_elf_backend_data (obfd) != &elf32_arm_vxworks_bed
20683 && get_elf_backend_data (ibfd) != &elf32_arm_vxworks_bed
20684 && EF_ARM_EABI_VERSION (in_flags) == EF_ARM_EABI_UNKNOWN)
20685 {
20686 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
20687 {
20688 _bfd_error_handler
20689 (_("error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d"),
20690 ibfd, in_flags & EF_ARM_APCS_26 ? 26 : 32,
20691 obfd, out_flags & EF_ARM_APCS_26 ? 26 : 32);
20692 flags_compatible = FALSE;
20693 }
20694
20695 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
20696 {
20697 if (in_flags & EF_ARM_APCS_FLOAT)
20698 _bfd_error_handler
20699 (_("error: %pB passes floats in float registers, whereas %pB passes them in integer registers"),
20700 ibfd, obfd);
20701 else
20702 _bfd_error_handler
20703 (_("error: %pB passes floats in integer registers, whereas %pB passes them in float registers"),
20704 ibfd, obfd);
20705
20706 flags_compatible = FALSE;
20707 }
20708
20709 if ((in_flags & EF_ARM_VFP_FLOAT) != (out_flags & EF_ARM_VFP_FLOAT))
20710 {
20711 if (in_flags & EF_ARM_VFP_FLOAT)
20712 _bfd_error_handler
20713 (_("error: %pB uses %s instructions, whereas %pB does not"),
20714 ibfd, "VFP", obfd);
20715 else
20716 _bfd_error_handler
20717 (_("error: %pB uses %s instructions, whereas %pB does not"),
20718 ibfd, "FPA", obfd);
20719
20720 flags_compatible = FALSE;
20721 }
20722
20723 if ((in_flags & EF_ARM_MAVERICK_FLOAT) != (out_flags & EF_ARM_MAVERICK_FLOAT))
20724 {
20725 if (in_flags & EF_ARM_MAVERICK_FLOAT)
20726 _bfd_error_handler
20727 (_("error: %pB uses %s instructions, whereas %pB does not"),
20728 ibfd, "Maverick", obfd);
20729 else
20730 _bfd_error_handler
20731 (_("error: %pB does not use %s instructions, whereas %pB does"),
20732 ibfd, "Maverick", obfd);
20733
20734 flags_compatible = FALSE;
20735 }
20736
20737 #ifdef EF_ARM_SOFT_FLOAT
20738 if ((in_flags & EF_ARM_SOFT_FLOAT) != (out_flags & EF_ARM_SOFT_FLOAT))
20739 {
20740 /* We can allow interworking between code that is VFP format
20741 layout, and uses either soft float or integer regs for
20742 passing floating point arguments and results. We already
20743 know that the APCS_FLOAT flags match; similarly for VFP
20744 flags. */
20745 if ((in_flags & EF_ARM_APCS_FLOAT) != 0
20746 || (in_flags & EF_ARM_VFP_FLOAT) == 0)
20747 {
20748 if (in_flags & EF_ARM_SOFT_FLOAT)
20749 _bfd_error_handler
20750 (_("error: %pB uses software FP, whereas %pB uses hardware FP"),
20751 ibfd, obfd);
20752 else
20753 _bfd_error_handler
20754 (_("error: %pB uses hardware FP, whereas %pB uses software FP"),
20755 ibfd, obfd);
20756
20757 flags_compatible = FALSE;
20758 }
20759 }
20760 #endif
20761
20762 /* Interworking mismatch is only a warning. */
20763 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
20764 {
20765 if (in_flags & EF_ARM_INTERWORK)
20766 {
20767 _bfd_error_handler
20768 (_("warning: %pB supports interworking, whereas %pB does not"),
20769 ibfd, obfd);
20770 }
20771 else
20772 {
20773 _bfd_error_handler
20774 (_("warning: %pB does not support interworking, whereas %pB does"),
20775 ibfd, obfd);
20776 }
20777 }
20778 }
20779
20780 return flags_compatible;
20781 }
20782
20783
20784 /* Symbian OS Targets. */
20785
20786 #undef TARGET_LITTLE_SYM
20787 #define TARGET_LITTLE_SYM arm_elf32_symbian_le_vec
20788 #undef TARGET_LITTLE_NAME
20789 #define TARGET_LITTLE_NAME "elf32-littlearm-symbian"
20790 #undef TARGET_BIG_SYM
20791 #define TARGET_BIG_SYM arm_elf32_symbian_be_vec
20792 #undef TARGET_BIG_NAME
20793 #define TARGET_BIG_NAME "elf32-bigarm-symbian"
20794
20795 /* Like elf32_arm_link_hash_table_create -- but overrides
20796 appropriately for Symbian OS. */
20797
20798 static struct bfd_link_hash_table *
20799 elf32_arm_symbian_link_hash_table_create (bfd *abfd)
20800 {
20801 struct bfd_link_hash_table *ret;
20802
20803 ret = elf32_arm_link_hash_table_create (abfd);
20804 if (ret)
20805 {
20806 struct elf32_arm_link_hash_table *htab
20807 = (struct elf32_arm_link_hash_table *)ret;
20808 /* There is no PLT header for Symbian OS. */
20809 htab->plt_header_size = 0;
20810 /* The PLT entries are each one instruction and one word. */
20811 htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_arm_symbian_plt_entry);
20812 /* Symbian uses armv5t or above, so use_blx is always true. */
20813 htab->use_blx = 1;
20814 htab->root.is_relocatable_executable = 1;
20815 }
20816 return ret;
20817 }
20818
20819 static const struct bfd_elf_special_section
20820 elf32_arm_symbian_special_sections[] =
20821 {
20822 /* In a BPABI executable, the dynamic linking sections do not go in
20823 the loadable read-only segment. The post-linker may wish to
20824 refer to these sections, but they are not part of the final
20825 program image. */
20826 { STRING_COMMA_LEN (".dynamic"), 0, SHT_DYNAMIC, 0 },
20827 { STRING_COMMA_LEN (".dynstr"), 0, SHT_STRTAB, 0 },
20828 { STRING_COMMA_LEN (".dynsym"), 0, SHT_DYNSYM, 0 },
20829 { STRING_COMMA_LEN (".got"), 0, SHT_PROGBITS, 0 },
20830 { STRING_COMMA_LEN (".hash"), 0, SHT_HASH, 0 },
20831 /* These sections do not need to be writable as the SymbianOS
20832 postlinker will arrange things so that no dynamic relocation is
20833 required. */
20834 { STRING_COMMA_LEN (".init_array"), 0, SHT_INIT_ARRAY, SHF_ALLOC },
20835 { STRING_COMMA_LEN (".fini_array"), 0, SHT_FINI_ARRAY, SHF_ALLOC },
20836 { STRING_COMMA_LEN (".preinit_array"), 0, SHT_PREINIT_ARRAY, SHF_ALLOC },
20837 { NULL, 0, 0, 0, 0 }
20838 };
20839
20840 static void
20841 elf32_arm_symbian_begin_write_processing (bfd *abfd,
20842 struct bfd_link_info *link_info)
20843 {
20844 /* BPABI objects are never loaded directly by an OS kernel; they are
20845 processed by a postlinker first, into an OS-specific format. If
20846 the D_PAGED bit is set on the file, BFD will align segments on
20847 page boundaries, so that an OS can directly map the file. With
20848 BPABI objects, that just results in wasted space. In addition,
20849 because we clear the D_PAGED bit, map_sections_to_segments will
20850 recognize that the program headers should not be mapped into any
20851 loadable segment. */
20852 abfd->flags &= ~D_PAGED;
20853 elf32_arm_begin_write_processing (abfd, link_info);
20854 }
20855
20856 static bfd_boolean
20857 elf32_arm_symbian_modify_segment_map (bfd *abfd,
20858 struct bfd_link_info *info)
20859 {
20860 struct elf_segment_map *m;
20861 asection *dynsec;
20862
20863 /* BPABI shared libraries and executables should have a PT_DYNAMIC
20864 segment. However, because the .dynamic section is not marked
20865 with SEC_LOAD, the generic ELF code will not create such a
20866 segment. */
20867 dynsec = bfd_get_section_by_name (abfd, ".dynamic");
20868 if (dynsec)
20869 {
20870 for (m = elf_seg_map (abfd); m != NULL; m = m->next)
20871 if (m->p_type == PT_DYNAMIC)
20872 break;
20873
20874 if (m == NULL)
20875 {
20876 m = _bfd_elf_make_dynamic_segment (abfd, dynsec);
20877 m->next = elf_seg_map (abfd);
20878 elf_seg_map (abfd) = m;
20879 }
20880 }
20881
20882 /* Also call the generic arm routine. */
20883 return elf32_arm_modify_segment_map (abfd, info);
20884 }
20885
20886 /* Return address for Ith PLT stub in section PLT, for relocation REL
20887 or (bfd_vma) -1 if it should not be included. */
20888
20889 static bfd_vma
20890 elf32_arm_symbian_plt_sym_val (bfd_vma i, const asection *plt,
20891 const arelent *rel ATTRIBUTE_UNUSED)
20892 {
20893 return plt->vma + 4 * ARRAY_SIZE (elf32_arm_symbian_plt_entry) * i;
20894 }
20895
20896 #undef elf32_bed
20897 #define elf32_bed elf32_arm_symbian_bed
20898
20899 /* The dynamic sections are not allocated on SymbianOS; the postlinker
20900 will process them and then discard them. */
20901 #undef ELF_DYNAMIC_SEC_FLAGS
20902 #define ELF_DYNAMIC_SEC_FLAGS \
20903 (SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_LINKER_CREATED)
20904
20905 #undef elf_backend_emit_relocs
20906
20907 #undef bfd_elf32_bfd_link_hash_table_create
20908 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_symbian_link_hash_table_create
20909 #undef elf_backend_special_sections
20910 #define elf_backend_special_sections elf32_arm_symbian_special_sections
20911 #undef elf_backend_begin_write_processing
20912 #define elf_backend_begin_write_processing elf32_arm_symbian_begin_write_processing
20913 #undef elf_backend_final_write_processing
20914 #define elf_backend_final_write_processing elf32_arm_final_write_processing
20915
20916 #undef elf_backend_modify_segment_map
20917 #define elf_backend_modify_segment_map elf32_arm_symbian_modify_segment_map
20918
20919 /* There is no .got section for BPABI objects, and hence no header. */
20920 #undef elf_backend_got_header_size
20921 #define elf_backend_got_header_size 0
20922
20923 /* Similarly, there is no .got.plt section. */
20924 #undef elf_backend_want_got_plt
20925 #define elf_backend_want_got_plt 0
20926
20927 #undef elf_backend_plt_sym_val
20928 #define elf_backend_plt_sym_val elf32_arm_symbian_plt_sym_val
20929
20930 #undef elf_backend_may_use_rel_p
20931 #define elf_backend_may_use_rel_p 1
20932 #undef elf_backend_may_use_rela_p
20933 #define elf_backend_may_use_rela_p 0
20934 #undef elf_backend_default_use_rela_p
20935 #define elf_backend_default_use_rela_p 0
20936 #undef elf_backend_want_plt_sym
20937 #define elf_backend_want_plt_sym 0
20938 #undef elf_backend_dtrel_excludes_plt
20939 #define elf_backend_dtrel_excludes_plt 0
20940 #undef ELF_MAXPAGESIZE
20941 #define ELF_MAXPAGESIZE 0x8000
20942 #undef ELF_TARGET_OS
20943 #define ELF_TARGET_OS is_symbian
20944
20945 #include "elf32-target.h"