Coverage Report

Created: 2026-05-11 07:54

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/bfd/elf32-arm.c
Line
Count
Source
1
/* 32-bit ELF support for ARM
2
   Copyright (C) 1998-2026 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-vxworks.h"
29
#include "elf/arm.h"
30
#include "elf32-arm.h"
31
#include "cpu-arm.h"
32
33
/* Return the relocation section associated with NAME.  HTAB is the
34
   bfd's elf32_arm_link_hash_entry.  */
35
#define RELOC_SECTION(HTAB, NAME) \
36
0
  ((HTAB)->use_rel ? ".rel" NAME : ".rela" NAME)
37
38
/* Return size of a relocation entry.  HTAB is the bfd's
39
   elf32_arm_link_hash_entry.  */
40
#define RELOC_SIZE(HTAB) \
41
0
  ((HTAB)->use_rel \
42
0
   ? sizeof (Elf32_External_Rel) \
43
0
   : sizeof (Elf32_External_Rela))
44
45
/* Return function to swap relocations in.  HTAB is the bfd's
46
   elf32_arm_link_hash_entry.  */
47
#define SWAP_RELOC_IN(HTAB) \
48
0
  ((HTAB)->use_rel \
49
0
   ? bfd_elf32_swap_reloc_in \
50
0
   : bfd_elf32_swap_reloca_in)
51
52
/* Return function to swap relocations out.  HTAB is the bfd's
53
   elf32_arm_link_hash_entry.  */
54
#define SWAP_RELOC_OUT(HTAB) \
55
0
  ((HTAB)->use_rel \
56
0
   ? bfd_elf32_swap_reloc_out \
57
0
   : bfd_elf32_swap_reloca_out)
58
59
#define elf_info_to_howto   NULL
60
#define elf_info_to_howto_rel   elf32_arm_info_to_howto
61
62
0
#define ARM_ELF_ABI_VERSION   0
63
#define ARM_ELF_OS_ABI_VERSION    ELFOSABI_ARM
64
65
/* The Adjusted Place, as defined by AAELF.  */
66
0
#define Pa(X) ((X) & 0xfffffffc)
67
68
static bool elf32_arm_write_section (bfd *output_bfd,
69
             struct bfd_link_info *link_info,
70
             asection *sec,
71
             bfd_byte *contents);
72
73
/* Note: code such as elf32_arm_reloc_type_lookup expect to use e.g.
74
   R_ARM_PC24 as an index into this, and find the R_ARM_PC24 HOWTO
75
   in that slot.  */
76
77
static reloc_howto_type elf32_arm_howto_table_1[] =
78
{
79
  /* No relocation.  */
80
  HOWTO (R_ARM_NONE,    /* type */
81
   0,     /* rightshift */
82
   0,     /* size */
83
   0,     /* bitsize */
84
   false,     /* pc_relative */
85
   0,     /* bitpos */
86
   complain_overflow_dont,/* complain_on_overflow */
87
   bfd_elf_generic_reloc, /* special_function */
88
   "R_ARM_NONE",    /* name */
89
   false,     /* partial_inplace */
90
   0,     /* src_mask */
91
   0,     /* dst_mask */
92
   false),    /* pcrel_offset */
93
94
  HOWTO (R_ARM_PC24,    /* type */
95
   2,     /* rightshift */
96
   4,     /* size */
97
   24,      /* bitsize */
98
   true,      /* pc_relative */
99
   0,     /* bitpos */
100
   complain_overflow_signed,/* complain_on_overflow */
101
   bfd_elf_generic_reloc, /* special_function */
102
   "R_ARM_PC24",    /* name */
103
   false,     /* partial_inplace */
104
   0x00ffffff,    /* src_mask */
105
   0x00ffffff,    /* dst_mask */
106
   true),     /* pcrel_offset */
107
108
  /* 32 bit absolute */
109
  HOWTO (R_ARM_ABS32,   /* type */
110
   0,     /* rightshift */
111
   4,     /* size */
112
   32,      /* bitsize */
113
   false,     /* pc_relative */
114
   0,     /* bitpos */
115
   complain_overflow_bitfield,/* complain_on_overflow */
116
   bfd_elf_generic_reloc, /* special_function */
117
   "R_ARM_ABS32",   /* name */
118
   false,     /* partial_inplace */
119
   0xffffffff,    /* src_mask */
120
   0xffffffff,    /* dst_mask */
121
   false),    /* pcrel_offset */
122
123
  /* standard 32bit pc-relative reloc */
124
  HOWTO (R_ARM_REL32,   /* type */
125
   0,     /* rightshift */
126
   4,     /* size */
127
   32,      /* bitsize */
128
   true,      /* pc_relative */
129
   0,     /* bitpos */
130
   complain_overflow_bitfield,/* complain_on_overflow */
131
   bfd_elf_generic_reloc, /* special_function */
132
   "R_ARM_REL32",   /* name */
133
   false,     /* partial_inplace */
134
   0xffffffff,    /* src_mask */
135
   0xffffffff,    /* dst_mask */
136
   true),     /* pcrel_offset */
137
138
  /* 8 bit absolute - R_ARM_LDR_PC_G0 in AAELF */
139
  HOWTO (R_ARM_LDR_PC_G0, /* type */
140
   0,     /* rightshift */
141
   1,     /* size */
142
   32,      /* bitsize */
143
   true,      /* pc_relative */
144
   0,     /* bitpos */
145
   complain_overflow_dont,/* complain_on_overflow */
146
   bfd_elf_generic_reloc, /* special_function */
147
   "R_ARM_LDR_PC_G0",     /* name */
148
   false,     /* partial_inplace */
149
   0xffffffff,    /* src_mask */
150
   0xffffffff,    /* dst_mask */
151
   true),     /* pcrel_offset */
152
153
   /* 16 bit absolute */
154
  HOWTO (R_ARM_ABS16,   /* type */
155
   0,     /* rightshift */
156
   2,     /* size */
157
   16,      /* bitsize */
158
   false,     /* pc_relative */
159
   0,     /* bitpos */
160
   complain_overflow_bitfield,/* complain_on_overflow */
161
   bfd_elf_generic_reloc, /* special_function */
162
   "R_ARM_ABS16",   /* name */
163
   false,     /* partial_inplace */
164
   0x0000ffff,    /* src_mask */
165
   0x0000ffff,    /* dst_mask */
166
   false),    /* pcrel_offset */
167
168
  /* 12 bit absolute */
169
  HOWTO (R_ARM_ABS12,   /* type */
170
   0,     /* rightshift */
171
   4,     /* size */
172
   12,      /* bitsize */
173
   false,     /* pc_relative */
174
   0,     /* bitpos */
175
   complain_overflow_bitfield,/* complain_on_overflow */
176
   bfd_elf_generic_reloc, /* special_function */
177
   "R_ARM_ABS12",   /* name */
178
   false,     /* partial_inplace */
179
   0x00000fff,    /* src_mask */
180
   0x00000fff,    /* dst_mask */
181
   false),    /* pcrel_offset */
182
183
  HOWTO (R_ARM_THM_ABS5,  /* type */
184
   6,     /* rightshift */
185
   2,     /* size */
186
   5,     /* bitsize */
187
   false,     /* pc_relative */
188
   0,     /* bitpos */
189
   complain_overflow_bitfield,/* complain_on_overflow */
190
   bfd_elf_generic_reloc, /* special_function */
191
   "R_ARM_THM_ABS5",  /* name */
192
   false,     /* partial_inplace */
193
   0x000007e0,    /* src_mask */
194
   0x000007e0,    /* dst_mask */
195
   false),    /* pcrel_offset */
196
197
  /* 8 bit absolute */
198
  HOWTO (R_ARM_ABS8,    /* type */
199
   0,     /* rightshift */
200
   1,     /* size */
201
   8,     /* bitsize */
202
   false,     /* pc_relative */
203
   0,     /* bitpos */
204
   complain_overflow_bitfield,/* complain_on_overflow */
205
   bfd_elf_generic_reloc, /* special_function */
206
   "R_ARM_ABS8",    /* name */
207
   false,     /* partial_inplace */
208
   0x000000ff,    /* src_mask */
209
   0x000000ff,    /* dst_mask */
210
   false),    /* pcrel_offset */
211
212
  HOWTO (R_ARM_SBREL32,   /* type */
213
   0,     /* rightshift */
214
   4,     /* size */
215
   32,      /* bitsize */
216
   false,     /* pc_relative */
217
   0,     /* bitpos */
218
   complain_overflow_dont,/* complain_on_overflow */
219
   bfd_elf_generic_reloc, /* special_function */
220
   "R_ARM_SBREL32", /* name */
221
   false,     /* partial_inplace */
222
   0xffffffff,    /* src_mask */
223
   0xffffffff,    /* dst_mask */
224
   false),    /* pcrel_offset */
225
226
  HOWTO (R_ARM_THM_CALL,  /* type */
227
   1,     /* rightshift */
228
   4,     /* size */
229
   24,      /* bitsize */
230
   true,      /* pc_relative */
231
   0,     /* bitpos */
232
   complain_overflow_signed,/* complain_on_overflow */
233
   bfd_elf_generic_reloc, /* special_function */
234
   "R_ARM_THM_CALL",  /* name */
235
   false,     /* partial_inplace */
236
   0x07ff2fff,    /* src_mask */
237
   0x07ff2fff,    /* dst_mask */
238
   true),     /* pcrel_offset */
239
240
  HOWTO (R_ARM_THM_PC8,   /* type */
241
   1,     /* rightshift */
242
   2,     /* size */
243
   8,     /* bitsize */
244
   true,      /* pc_relative */
245
   0,     /* bitpos */
246
   complain_overflow_signed,/* complain_on_overflow */
247
   bfd_elf_generic_reloc, /* special_function */
248
   "R_ARM_THM_PC8", /* name */
249
   false,     /* partial_inplace */
250
   0x000000ff,    /* src_mask */
251
   0x000000ff,    /* dst_mask */
252
   true),     /* pcrel_offset */
253
254
  HOWTO (R_ARM_BREL_ADJ,  /* type */
255
   1,     /* rightshift */
256
   2,     /* size */
257
   32,      /* bitsize */
258
   false,     /* pc_relative */
259
   0,     /* bitpos */
260
   complain_overflow_signed,/* complain_on_overflow */
261
   bfd_elf_generic_reloc, /* special_function */
262
   "R_ARM_BREL_ADJ",  /* name */
263
   false,     /* partial_inplace */
264
   0xffffffff,    /* src_mask */
265
   0xffffffff,    /* dst_mask */
266
   false),    /* pcrel_offset */
267
268
  HOWTO (R_ARM_TLS_DESC,  /* type */
269
   0,     /* rightshift */
270
   4,     /* size */
271
   32,      /* bitsize */
272
   false,     /* pc_relative */
273
   0,     /* bitpos */
274
   complain_overflow_bitfield,/* complain_on_overflow */
275
   bfd_elf_generic_reloc, /* special_function */
276
   "R_ARM_TLS_DESC",  /* name */
277
   false,     /* partial_inplace */
278
   0xffffffff,    /* src_mask */
279
   0xffffffff,    /* dst_mask */
280
   false),    /* pcrel_offset */
281
282
  HOWTO (R_ARM_THM_SWI8,  /* type */
283
   0,     /* rightshift */
284
   0,     /* size */
285
   0,     /* bitsize */
286
   false,     /* pc_relative */
287
   0,     /* bitpos */
288
   complain_overflow_signed,/* complain_on_overflow */
289
   bfd_elf_generic_reloc, /* special_function */
290
   "R_ARM_SWI8",    /* name */
291
   false,     /* partial_inplace */
292
   0x00000000,    /* src_mask */
293
   0x00000000,    /* dst_mask */
294
   false),    /* pcrel_offset */
295
296
  /* BLX instruction for the ARM.  */
297
  HOWTO (R_ARM_XPC25,   /* type */
298
   2,     /* rightshift */
299
   4,     /* size */
300
   24,      /* bitsize */
301
   true,      /* pc_relative */
302
   0,     /* bitpos */
303
   complain_overflow_signed,/* complain_on_overflow */
304
   bfd_elf_generic_reloc, /* special_function */
305
   "R_ARM_XPC25",   /* name */
306
   false,     /* partial_inplace */
307
   0x00ffffff,    /* src_mask */
308
   0x00ffffff,    /* dst_mask */
309
   true),     /* pcrel_offset */
310
311
  /* BLX instruction for the Thumb.  */
312
  HOWTO (R_ARM_THM_XPC22, /* type */
313
   2,     /* rightshift */
314
   4,     /* size */
315
   24,      /* bitsize */
316
   true,      /* pc_relative */
317
   0,     /* bitpos */
318
   complain_overflow_signed,/* complain_on_overflow */
319
   bfd_elf_generic_reloc, /* special_function */
320
   "R_ARM_THM_XPC22", /* name */
321
   false,     /* partial_inplace */
322
   0x07ff2fff,    /* src_mask */
323
   0x07ff2fff,    /* dst_mask */
324
   true),     /* pcrel_offset */
325
326
  /* Dynamic TLS relocations.  */
327
328
  HOWTO (R_ARM_TLS_DTPMOD32,  /* type */
329
   0,     /* rightshift */
330
   4,     /* size */
331
   32,      /* bitsize */
332
   false,     /* pc_relative */
333
   0,     /* bitpos */
334
   complain_overflow_bitfield,/* complain_on_overflow */
335
   bfd_elf_generic_reloc, /* special_function */
336
   "R_ARM_TLS_DTPMOD32",  /* name */
337
   true,      /* partial_inplace */
338
   0xffffffff,    /* src_mask */
339
   0xffffffff,    /* dst_mask */
340
   false),    /* pcrel_offset */
341
342
  HOWTO (R_ARM_TLS_DTPOFF32,  /* type */
343
   0,     /* rightshift */
344
   4,     /* size */
345
   32,      /* bitsize */
346
   false,     /* pc_relative */
347
   0,     /* bitpos */
348
   complain_overflow_bitfield,/* complain_on_overflow */
349
   bfd_elf_generic_reloc, /* special_function */
350
   "R_ARM_TLS_DTPOFF32",  /* name */
351
   true,      /* partial_inplace */
352
   0xffffffff,    /* src_mask */
353
   0xffffffff,    /* dst_mask */
354
   false),    /* pcrel_offset */
355
356
  HOWTO (R_ARM_TLS_TPOFF32, /* type */
357
   0,     /* rightshift */
358
   4,     /* size */
359
   32,      /* bitsize */
360
   false,     /* pc_relative */
361
   0,     /* bitpos */
362
   complain_overflow_bitfield,/* complain_on_overflow */
363
   bfd_elf_generic_reloc, /* special_function */
364
   "R_ARM_TLS_TPOFF32", /* name */
365
   true,      /* partial_inplace */
366
   0xffffffff,    /* src_mask */
367
   0xffffffff,    /* dst_mask */
368
   false),    /* pcrel_offset */
369
370
  /* Relocs used in ARM Linux */
371
372
  HOWTO (R_ARM_COPY,    /* type */
373
   0,     /* rightshift */
374
   4,     /* size */
375
   32,      /* bitsize */
376
   false,     /* pc_relative */
377
   0,     /* bitpos */
378
   complain_overflow_bitfield,/* complain_on_overflow */
379
   bfd_elf_generic_reloc, /* special_function */
380
   "R_ARM_COPY",    /* name */
381
   true,      /* partial_inplace */
382
   0xffffffff,    /* src_mask */
383
   0xffffffff,    /* dst_mask */
384
   false),    /* pcrel_offset */
385
386
  HOWTO (R_ARM_GLOB_DAT,  /* type */
387
   0,     /* rightshift */
388
   4,     /* size */
389
   32,      /* bitsize */
390
   false,     /* pc_relative */
391
   0,     /* bitpos */
392
   complain_overflow_bitfield,/* complain_on_overflow */
393
   bfd_elf_generic_reloc, /* special_function */
394
   "R_ARM_GLOB_DAT",  /* name */
395
   true,      /* partial_inplace */
396
   0xffffffff,    /* src_mask */
397
   0xffffffff,    /* dst_mask */
398
   false),    /* pcrel_offset */
399
400
  HOWTO (R_ARM_JUMP_SLOT, /* type */
401
   0,     /* rightshift */
402
   4,     /* size */
403
   32,      /* bitsize */
404
   false,     /* pc_relative */
405
   0,     /* bitpos */
406
   complain_overflow_bitfield,/* complain_on_overflow */
407
   bfd_elf_generic_reloc, /* special_function */
408
   "R_ARM_JUMP_SLOT", /* name */
409
   true,      /* partial_inplace */
410
   0xffffffff,    /* src_mask */
411
   0xffffffff,    /* dst_mask */
412
   false),    /* pcrel_offset */
413
414
  HOWTO (R_ARM_RELATIVE,  /* type */
415
   0,     /* rightshift */
416
   4,     /* size */
417
   32,      /* bitsize */
418
   false,     /* pc_relative */
419
   0,     /* bitpos */
420
   complain_overflow_bitfield,/* complain_on_overflow */
421
   bfd_elf_generic_reloc, /* special_function */
422
   "R_ARM_RELATIVE",  /* name */
423
   true,      /* partial_inplace */
424
   0xffffffff,    /* src_mask */
425
   0xffffffff,    /* dst_mask */
426
   false),    /* pcrel_offset */
427
428
  HOWTO (R_ARM_GOTOFF32,  /* type */
429
   0,     /* rightshift */
430
   4,     /* size */
431
   32,      /* bitsize */
432
   false,     /* pc_relative */
433
   0,     /* bitpos */
434
   complain_overflow_bitfield,/* complain_on_overflow */
435
   bfd_elf_generic_reloc, /* special_function */
436
   "R_ARM_GOTOFF32",  /* name */
437
   true,      /* partial_inplace */
438
   0xffffffff,    /* src_mask */
439
   0xffffffff,    /* dst_mask */
440
   false),    /* pcrel_offset */
441
442
  HOWTO (R_ARM_GOTPC,   /* type */
443
   0,     /* rightshift */
444
   4,     /* size */
445
   32,      /* bitsize */
446
   true,      /* pc_relative */
447
   0,     /* bitpos */
448
   complain_overflow_bitfield,/* complain_on_overflow */
449
   bfd_elf_generic_reloc, /* special_function */
450
   "R_ARM_GOTPC",   /* name */
451
   true,      /* partial_inplace */
452
   0xffffffff,    /* src_mask */
453
   0xffffffff,    /* dst_mask */
454
   true),     /* pcrel_offset */
455
456
  HOWTO (R_ARM_GOT32,   /* type */
457
   0,     /* rightshift */
458
   4,     /* size */
459
   32,      /* bitsize */
460
   false,     /* pc_relative */
461
   0,     /* bitpos */
462
   complain_overflow_bitfield,/* complain_on_overflow */
463
   bfd_elf_generic_reloc, /* special_function */
464
   "R_ARM_GOT32",   /* name */
465
   true,      /* partial_inplace */
466
   0xffffffff,    /* src_mask */
467
   0xffffffff,    /* dst_mask */
468
   false),    /* pcrel_offset */
469
470
  HOWTO (R_ARM_PLT32,   /* type */
471
   2,     /* rightshift */
472
   4,     /* size */
473
   24,      /* bitsize */
474
   true,      /* pc_relative */
475
   0,     /* bitpos */
476
   complain_overflow_bitfield,/* complain_on_overflow */
477
   bfd_elf_generic_reloc, /* special_function */
478
   "R_ARM_PLT32",   /* name */
479
   false,     /* partial_inplace */
480
   0x00ffffff,    /* src_mask */
481
   0x00ffffff,    /* dst_mask */
482
   true),     /* pcrel_offset */
483
484
  HOWTO (R_ARM_CALL,    /* type */
485
   2,     /* rightshift */
486
   4,     /* size */
487
   24,      /* bitsize */
488
   true,      /* pc_relative */
489
   0,     /* bitpos */
490
   complain_overflow_signed,/* complain_on_overflow */
491
   bfd_elf_generic_reloc, /* special_function */
492
   "R_ARM_CALL",    /* name */
493
   false,     /* partial_inplace */
494
   0x00ffffff,    /* src_mask */
495
   0x00ffffff,    /* dst_mask */
496
   true),     /* pcrel_offset */
497
498
  HOWTO (R_ARM_JUMP24,    /* type */
499
   2,     /* rightshift */
500
   4,     /* size */
501
   24,      /* bitsize */
502
   true,      /* pc_relative */
503
   0,     /* bitpos */
504
   complain_overflow_signed,/* complain_on_overflow */
505
   bfd_elf_generic_reloc, /* special_function */
506
   "R_ARM_JUMP24",  /* name */
507
   false,     /* partial_inplace */
508
   0x00ffffff,    /* src_mask */
509
   0x00ffffff,    /* dst_mask */
510
   true),     /* pcrel_offset */
511
512
  HOWTO (R_ARM_THM_JUMP24,  /* type */
513
   1,     /* rightshift */
514
   4,     /* size */
515
   24,      /* bitsize */
516
   true,      /* pc_relative */
517
   0,     /* bitpos */
518
   complain_overflow_signed,/* complain_on_overflow */
519
   bfd_elf_generic_reloc, /* special_function */
520
   "R_ARM_THM_JUMP24",  /* name */
521
   false,     /* partial_inplace */
522
   0x07ff2fff,    /* src_mask */
523
   0x07ff2fff,    /* dst_mask */
524
   true),     /* pcrel_offset */
525
526
  HOWTO (R_ARM_BASE_ABS,  /* type */
527
   0,     /* rightshift */
528
   4,     /* size */
529
   32,      /* bitsize */
530
   false,     /* pc_relative */
531
   0,     /* bitpos */
532
   complain_overflow_dont,/* complain_on_overflow */
533
   bfd_elf_generic_reloc, /* special_function */
534
   "R_ARM_BASE_ABS",  /* name */
535
   false,     /* partial_inplace */
536
   0xffffffff,    /* src_mask */
537
   0xffffffff,    /* dst_mask */
538
   false),    /* pcrel_offset */
539
540
  HOWTO (R_ARM_ALU_PCREL7_0,  /* type */
541
   0,     /* rightshift */
542
   4,     /* size */
543
   12,      /* bitsize */
544
   true,      /* pc_relative */
545
   0,     /* bitpos */
546
   complain_overflow_dont,/* complain_on_overflow */
547
   bfd_elf_generic_reloc, /* special_function */
548
   "R_ARM_ALU_PCREL_7_0", /* name */
549
   false,     /* partial_inplace */
550
   0x00000fff,    /* src_mask */
551
   0x00000fff,    /* dst_mask */
552
   true),     /* pcrel_offset */
553
554
  HOWTO (R_ARM_ALU_PCREL15_8, /* type */
555
   0,     /* rightshift */
556
   4,     /* size */
557
   12,      /* bitsize */
558
   true,      /* pc_relative */
559
   8,     /* bitpos */
560
   complain_overflow_dont,/* complain_on_overflow */
561
   bfd_elf_generic_reloc, /* special_function */
562
   "R_ARM_ALU_PCREL_15_8",/* name */
563
   false,     /* partial_inplace */
564
   0x00000fff,    /* src_mask */
565
   0x00000fff,    /* dst_mask */
566
   true),     /* pcrel_offset */
567
568
  HOWTO (R_ARM_ALU_PCREL23_15,  /* type */
569
   0,     /* rightshift */
570
   4,     /* size */
571
   12,      /* bitsize */
572
   true,      /* pc_relative */
573
   16,      /* bitpos */
574
   complain_overflow_dont,/* complain_on_overflow */
575
   bfd_elf_generic_reloc, /* special_function */
576
   "R_ARM_ALU_PCREL_23_15",/* name */
577
   false,     /* partial_inplace */
578
   0x00000fff,    /* src_mask */
579
   0x00000fff,    /* dst_mask */
580
   true),     /* pcrel_offset */
581
582
  HOWTO (R_ARM_LDR_SBREL_11_0,  /* type */
583
   0,     /* rightshift */
584
   4,     /* size */
585
   12,      /* bitsize */
586
   false,     /* pc_relative */
587
   0,     /* bitpos */
588
   complain_overflow_dont,/* complain_on_overflow */
589
   bfd_elf_generic_reloc, /* special_function */
590
   "R_ARM_LDR_SBREL_11_0",/* name */
591
   false,     /* partial_inplace */
592
   0x00000fff,    /* src_mask */
593
   0x00000fff,    /* dst_mask */
594
   false),    /* pcrel_offset */
595
596
  HOWTO (R_ARM_ALU_SBREL_19_12, /* type */
597
   0,     /* rightshift */
598
   4,     /* size */
599
   8,     /* bitsize */
600
   false,     /* pc_relative */
601
   12,      /* bitpos */
602
   complain_overflow_dont,/* complain_on_overflow */
603
   bfd_elf_generic_reloc, /* special_function */
604
   "R_ARM_ALU_SBREL_19_12",/* name */
605
   false,     /* partial_inplace */
606
   0x000ff000,    /* src_mask */
607
   0x000ff000,    /* dst_mask */
608
   false),    /* pcrel_offset */
609
610
  HOWTO (R_ARM_ALU_SBREL_27_20, /* type */
611
   0,     /* rightshift */
612
   4,     /* size */
613
   8,     /* bitsize */
614
   false,     /* pc_relative */
615
   20,      /* bitpos */
616
   complain_overflow_dont,/* complain_on_overflow */
617
   bfd_elf_generic_reloc, /* special_function */
618
   "R_ARM_ALU_SBREL_27_20",/* name */
619
   false,     /* partial_inplace */
620
   0x0ff00000,    /* src_mask */
621
   0x0ff00000,    /* dst_mask */
622
   false),    /* pcrel_offset */
623
624
  HOWTO (R_ARM_TARGET1,   /* type */
625
   0,     /* rightshift */
626
   4,     /* size */
627
   32,      /* bitsize */
628
   false,     /* pc_relative */
629
   0,     /* bitpos */
630
   complain_overflow_dont,/* complain_on_overflow */
631
   bfd_elf_generic_reloc, /* special_function */
632
   "R_ARM_TARGET1", /* name */
633
   false,     /* partial_inplace */
634
   0xffffffff,    /* src_mask */
635
   0xffffffff,    /* dst_mask */
636
   false),    /* pcrel_offset */
637
638
  HOWTO (R_ARM_ROSEGREL32,  /* type */
639
   0,     /* rightshift */
640
   4,     /* size */
641
   32,      /* bitsize */
642
   false,     /* pc_relative */
643
   0,     /* bitpos */
644
   complain_overflow_dont,/* complain_on_overflow */
645
   bfd_elf_generic_reloc, /* special_function */
646
   "R_ARM_ROSEGREL32",  /* name */
647
   false,     /* partial_inplace */
648
   0xffffffff,    /* src_mask */
649
   0xffffffff,    /* dst_mask */
650
   false),    /* pcrel_offset */
651
652
  HOWTO (R_ARM_V4BX,    /* type */
653
   0,     /* rightshift */
654
   4,     /* size */
655
   32,      /* bitsize */
656
   false,     /* pc_relative */
657
   0,     /* bitpos */
658
   complain_overflow_dont,/* complain_on_overflow */
659
   bfd_elf_generic_reloc, /* special_function */
660
   "R_ARM_V4BX",    /* name */
661
   false,     /* partial_inplace */
662
   0xffffffff,    /* src_mask */
663
   0xffffffff,    /* dst_mask */
664
   false),    /* pcrel_offset */
665
666
  HOWTO (R_ARM_TARGET2,   /* type */
667
   0,     /* rightshift */
668
   4,     /* size */
669
   32,      /* bitsize */
670
   false,     /* pc_relative */
671
   0,     /* bitpos */
672
   complain_overflow_signed,/* complain_on_overflow */
673
   bfd_elf_generic_reloc, /* special_function */
674
   "R_ARM_TARGET2", /* name */
675
   false,     /* partial_inplace */
676
   0xffffffff,    /* src_mask */
677
   0xffffffff,    /* dst_mask */
678
   true),     /* pcrel_offset */
679
680
  HOWTO (R_ARM_PREL31,    /* type */
681
   0,     /* rightshift */
682
   4,     /* size */
683
   31,      /* bitsize */
684
   true,      /* pc_relative */
685
   0,     /* bitpos */
686
   complain_overflow_signed,/* complain_on_overflow */
687
   bfd_elf_generic_reloc, /* special_function */
688
   "R_ARM_PREL31",  /* name */
689
   false,     /* partial_inplace */
690
   0x7fffffff,    /* src_mask */
691
   0x7fffffff,    /* dst_mask */
692
   true),     /* pcrel_offset */
693
694
  HOWTO (R_ARM_MOVW_ABS_NC, /* type */
695
   0,     /* rightshift */
696
   4,     /* size */
697
   16,      /* bitsize */
698
   false,     /* pc_relative */
699
   0,     /* bitpos */
700
   complain_overflow_dont,/* complain_on_overflow */
701
   bfd_elf_generic_reloc, /* special_function */
702
   "R_ARM_MOVW_ABS_NC", /* name */
703
   false,     /* partial_inplace */
704
   0x000f0fff,    /* src_mask */
705
   0x000f0fff,    /* dst_mask */
706
   false),    /* pcrel_offset */
707
708
  HOWTO (R_ARM_MOVT_ABS,  /* type */
709
   0,     /* rightshift */
710
   4,     /* size */
711
   16,      /* bitsize */
712
   false,     /* pc_relative */
713
   0,     /* bitpos */
714
   complain_overflow_bitfield,/* complain_on_overflow */
715
   bfd_elf_generic_reloc, /* special_function */
716
   "R_ARM_MOVT_ABS",  /* name */
717
   false,     /* partial_inplace */
718
   0x000f0fff,    /* src_mask */
719
   0x000f0fff,    /* dst_mask */
720
   false),    /* pcrel_offset */
721
722
  HOWTO (R_ARM_MOVW_PREL_NC,  /* type */
723
   0,     /* rightshift */
724
   4,     /* size */
725
   16,      /* bitsize */
726
   true,      /* pc_relative */
727
   0,     /* bitpos */
728
   complain_overflow_dont,/* complain_on_overflow */
729
   bfd_elf_generic_reloc, /* special_function */
730
   "R_ARM_MOVW_PREL_NC",  /* name */
731
   false,     /* partial_inplace */
732
   0x000f0fff,    /* src_mask */
733
   0x000f0fff,    /* dst_mask */
734
   true),     /* pcrel_offset */
735
736
  HOWTO (R_ARM_MOVT_PREL, /* type */
737
   0,     /* rightshift */
738
   4,     /* size */
739
   16,      /* bitsize */
740
   true,      /* pc_relative */
741
   0,     /* bitpos */
742
   complain_overflow_bitfield,/* complain_on_overflow */
743
   bfd_elf_generic_reloc, /* special_function */
744
   "R_ARM_MOVT_PREL", /* name */
745
   false,     /* partial_inplace */
746
   0x000f0fff,    /* src_mask */
747
   0x000f0fff,    /* dst_mask */
748
   true),     /* pcrel_offset */
749
750
  HOWTO (R_ARM_THM_MOVW_ABS_NC, /* type */
751
   0,     /* rightshift */
752
   4,     /* size */
753
   16,      /* bitsize */
754
   false,     /* pc_relative */
755
   0,     /* bitpos */
756
   complain_overflow_dont,/* complain_on_overflow */
757
   bfd_elf_generic_reloc, /* special_function */
758
   "R_ARM_THM_MOVW_ABS_NC",/* name */
759
   false,     /* partial_inplace */
760
   0x040f70ff,    /* src_mask */
761
   0x040f70ff,    /* dst_mask */
762
   false),    /* pcrel_offset */
763
764
  HOWTO (R_ARM_THM_MOVT_ABS,  /* type */
765
   0,     /* rightshift */
766
   4,     /* size */
767
   16,      /* bitsize */
768
   false,     /* pc_relative */
769
   0,     /* bitpos */
770
   complain_overflow_bitfield,/* complain_on_overflow */
771
   bfd_elf_generic_reloc, /* special_function */
772
   "R_ARM_THM_MOVT_ABS",  /* name */
773
   false,     /* partial_inplace */
774
   0x040f70ff,    /* src_mask */
775
   0x040f70ff,    /* dst_mask */
776
   false),    /* pcrel_offset */
777
778
  HOWTO (R_ARM_THM_MOVW_PREL_NC,/* type */
779
   0,     /* rightshift */
780
   4,     /* size */
781
   16,      /* bitsize */
782
   true,      /* pc_relative */
783
   0,     /* bitpos */
784
   complain_overflow_dont,/* complain_on_overflow */
785
   bfd_elf_generic_reloc, /* special_function */
786
   "R_ARM_THM_MOVW_PREL_NC",/* name */
787
   false,     /* partial_inplace */
788
   0x040f70ff,    /* src_mask */
789
   0x040f70ff,    /* dst_mask */
790
   true),     /* pcrel_offset */
791
792
  HOWTO (R_ARM_THM_MOVT_PREL, /* type */
793
   0,     /* rightshift */
794
   4,     /* size */
795
   16,      /* bitsize */
796
   true,      /* pc_relative */
797
   0,     /* bitpos */
798
   complain_overflow_bitfield,/* complain_on_overflow */
799
   bfd_elf_generic_reloc, /* special_function */
800
   "R_ARM_THM_MOVT_PREL", /* name */
801
   false,     /* partial_inplace */
802
   0x040f70ff,    /* src_mask */
803
   0x040f70ff,    /* dst_mask */
804
   true),     /* pcrel_offset */
805
806
  HOWTO (R_ARM_THM_JUMP19,  /* type */
807
   1,     /* rightshift */
808
   4,     /* size */
809
   19,      /* bitsize */
810
   true,      /* pc_relative */
811
   0,     /* bitpos */
812
   complain_overflow_signed,/* complain_on_overflow */
813
   bfd_elf_generic_reloc, /* special_function */
814
   "R_ARM_THM_JUMP19",  /* name */
815
   false,     /* partial_inplace */
816
   0x043f2fff,    /* src_mask */
817
   0x043f2fff,    /* dst_mask */
818
   true),     /* pcrel_offset */
819
820
  HOWTO (R_ARM_THM_JUMP6, /* type */
821
   1,     /* rightshift */
822
   2,     /* size */
823
   6,     /* bitsize */
824
   true,      /* pc_relative */
825
   0,     /* bitpos */
826
   complain_overflow_unsigned,/* complain_on_overflow */
827
   bfd_elf_generic_reloc, /* special_function */
828
   "R_ARM_THM_JUMP6", /* name */
829
   false,     /* partial_inplace */
830
   0x02f8,    /* src_mask */
831
   0x02f8,    /* dst_mask */
832
   true),     /* pcrel_offset */
833
834
  /* These are declared as 13-bit signed relocations because we can
835
     address -4095 .. 4095(base) by altering ADDW to SUBW or vice
836
     versa.  */
837
  HOWTO (R_ARM_THM_ALU_PREL_11_0,/* type */
838
   0,     /* rightshift */
839
   4,     /* size */
840
   13,      /* bitsize */
841
   true,      /* pc_relative */
842
   0,     /* bitpos */
843
   complain_overflow_dont,/* complain_on_overflow */
844
   bfd_elf_generic_reloc, /* special_function */
845
   "R_ARM_THM_ALU_PREL_11_0",/* name */
846
   false,     /* partial_inplace */
847
   0xffffffff,    /* src_mask */
848
   0xffffffff,    /* dst_mask */
849
   true),     /* pcrel_offset */
850
851
  HOWTO (R_ARM_THM_PC12,  /* type */
852
   0,     /* rightshift */
853
   4,     /* size */
854
   13,      /* bitsize */
855
   true,      /* pc_relative */
856
   0,     /* bitpos */
857
   complain_overflow_dont,/* complain_on_overflow */
858
   bfd_elf_generic_reloc, /* special_function */
859
   "R_ARM_THM_PC12",  /* name */
860
   false,     /* partial_inplace */
861
   0xffffffff,    /* src_mask */
862
   0xffffffff,    /* dst_mask */
863
   true),     /* pcrel_offset */
864
865
  HOWTO (R_ARM_ABS32_NOI, /* type */
866
   0,     /* rightshift */
867
   4,     /* size */
868
   32,      /* bitsize */
869
   false,     /* pc_relative */
870
   0,     /* bitpos */
871
   complain_overflow_dont,/* complain_on_overflow */
872
   bfd_elf_generic_reloc, /* special_function */
873
   "R_ARM_ABS32_NOI", /* name */
874
   false,     /* partial_inplace */
875
   0xffffffff,    /* src_mask */
876
   0xffffffff,    /* dst_mask */
877
   false),    /* pcrel_offset */
878
879
  HOWTO (R_ARM_REL32_NOI, /* type */
880
   0,     /* rightshift */
881
   4,     /* size */
882
   32,      /* bitsize */
883
   true,      /* pc_relative */
884
   0,     /* bitpos */
885
   complain_overflow_dont,/* complain_on_overflow */
886
   bfd_elf_generic_reloc, /* special_function */
887
   "R_ARM_REL32_NOI", /* name */
888
   false,     /* partial_inplace */
889
   0xffffffff,    /* src_mask */
890
   0xffffffff,    /* dst_mask */
891
   false),    /* pcrel_offset */
892
893
  /* Group relocations.  */
894
895
  HOWTO (R_ARM_ALU_PC_G0_NC,  /* type */
896
   0,     /* rightshift */
897
   4,     /* size */
898
   32,      /* bitsize */
899
   true,      /* pc_relative */
900
   0,     /* bitpos */
901
   complain_overflow_dont,/* complain_on_overflow */
902
   bfd_elf_generic_reloc, /* special_function */
903
   "R_ARM_ALU_PC_G0_NC",  /* name */
904
   false,     /* partial_inplace */
905
   0xffffffff,    /* src_mask */
906
   0xffffffff,    /* dst_mask */
907
   true),     /* pcrel_offset */
908
909
  HOWTO (R_ARM_ALU_PC_G0, /* type */
910
   0,     /* rightshift */
911
   4,     /* size */
912
   32,      /* bitsize */
913
   true,      /* pc_relative */
914
   0,     /* bitpos */
915
   complain_overflow_dont,/* complain_on_overflow */
916
   bfd_elf_generic_reloc, /* special_function */
917
   "R_ARM_ALU_PC_G0", /* name */
918
   false,     /* partial_inplace */
919
   0xffffffff,    /* src_mask */
920
   0xffffffff,    /* dst_mask */
921
   true),     /* pcrel_offset */
922
923
  HOWTO (R_ARM_ALU_PC_G1_NC,  /* type */
924
   0,     /* rightshift */
925
   4,     /* size */
926
   32,      /* bitsize */
927
   true,      /* pc_relative */
928
   0,     /* bitpos */
929
   complain_overflow_dont,/* complain_on_overflow */
930
   bfd_elf_generic_reloc, /* special_function */
931
   "R_ARM_ALU_PC_G1_NC",  /* name */
932
   false,     /* partial_inplace */
933
   0xffffffff,    /* src_mask */
934
   0xffffffff,    /* dst_mask */
935
   true),     /* pcrel_offset */
936
937
  HOWTO (R_ARM_ALU_PC_G1, /* type */
938
   0,     /* rightshift */
939
   4,     /* size */
940
   32,      /* bitsize */
941
   true,      /* pc_relative */
942
   0,     /* bitpos */
943
   complain_overflow_dont,/* complain_on_overflow */
944
   bfd_elf_generic_reloc, /* special_function */
945
   "R_ARM_ALU_PC_G1", /* name */
946
   false,     /* partial_inplace */
947
   0xffffffff,    /* src_mask */
948
   0xffffffff,    /* dst_mask */
949
   true),     /* pcrel_offset */
950
951
  HOWTO (R_ARM_ALU_PC_G2, /* type */
952
   0,     /* rightshift */
953
   4,     /* size */
954
   32,      /* bitsize */
955
   true,      /* pc_relative */
956
   0,     /* bitpos */
957
   complain_overflow_dont,/* complain_on_overflow */
958
   bfd_elf_generic_reloc, /* special_function */
959
   "R_ARM_ALU_PC_G2", /* name */
960
   false,     /* partial_inplace */
961
   0xffffffff,    /* src_mask */
962
   0xffffffff,    /* dst_mask */
963
   true),     /* pcrel_offset */
964
965
  HOWTO (R_ARM_LDR_PC_G1, /* type */
966
   0,     /* rightshift */
967
   4,     /* size */
968
   32,      /* bitsize */
969
   true,      /* pc_relative */
970
   0,     /* bitpos */
971
   complain_overflow_dont,/* complain_on_overflow */
972
   bfd_elf_generic_reloc, /* special_function */
973
   "R_ARM_LDR_PC_G1", /* name */
974
   false,     /* partial_inplace */
975
   0xffffffff,    /* src_mask */
976
   0xffffffff,    /* dst_mask */
977
   true),     /* pcrel_offset */
978
979
  HOWTO (R_ARM_LDR_PC_G2, /* type */
980
   0,     /* rightshift */
981
   4,     /* size */
982
   32,      /* bitsize */
983
   true,      /* pc_relative */
984
   0,     /* bitpos */
985
   complain_overflow_dont,/* complain_on_overflow */
986
   bfd_elf_generic_reloc, /* special_function */
987
   "R_ARM_LDR_PC_G2", /* name */
988
   false,     /* partial_inplace */
989
   0xffffffff,    /* src_mask */
990
   0xffffffff,    /* dst_mask */
991
   true),     /* pcrel_offset */
992
993
  HOWTO (R_ARM_LDRS_PC_G0,  /* type */
994
   0,     /* rightshift */
995
   4,     /* size */
996
   32,      /* bitsize */
997
   true,      /* pc_relative */
998
   0,     /* bitpos */
999
   complain_overflow_dont,/* complain_on_overflow */
1000
   bfd_elf_generic_reloc, /* special_function */
1001
   "R_ARM_LDRS_PC_G0",  /* name */
1002
   false,     /* partial_inplace */
1003
   0xffffffff,    /* src_mask */
1004
   0xffffffff,    /* dst_mask */
1005
   true),     /* pcrel_offset */
1006
1007
  HOWTO (R_ARM_LDRS_PC_G1,  /* type */
1008
   0,     /* rightshift */
1009
   4,     /* size */
1010
   32,      /* bitsize */
1011
   true,      /* pc_relative */
1012
   0,     /* bitpos */
1013
   complain_overflow_dont,/* complain_on_overflow */
1014
   bfd_elf_generic_reloc, /* special_function */
1015
   "R_ARM_LDRS_PC_G1",  /* name */
1016
   false,     /* partial_inplace */
1017
   0xffffffff,    /* src_mask */
1018
   0xffffffff,    /* dst_mask */
1019
   true),     /* pcrel_offset */
1020
1021
  HOWTO (R_ARM_LDRS_PC_G2,  /* type */
1022
   0,     /* rightshift */
1023
   4,     /* size */
1024
   32,      /* bitsize */
1025
   true,      /* pc_relative */
1026
   0,     /* bitpos */
1027
   complain_overflow_dont,/* complain_on_overflow */
1028
   bfd_elf_generic_reloc, /* special_function */
1029
   "R_ARM_LDRS_PC_G2",  /* name */
1030
   false,     /* partial_inplace */
1031
   0xffffffff,    /* src_mask */
1032
   0xffffffff,    /* dst_mask */
1033
   true),     /* pcrel_offset */
1034
1035
  HOWTO (R_ARM_LDC_PC_G0, /* type */
1036
   0,     /* rightshift */
1037
   4,     /* size */
1038
   32,      /* bitsize */
1039
   true,      /* pc_relative */
1040
   0,     /* bitpos */
1041
   complain_overflow_dont,/* complain_on_overflow */
1042
   bfd_elf_generic_reloc, /* special_function */
1043
   "R_ARM_LDC_PC_G0", /* name */
1044
   false,     /* partial_inplace */
1045
   0xffffffff,    /* src_mask */
1046
   0xffffffff,    /* dst_mask */
1047
   true),     /* pcrel_offset */
1048
1049
  HOWTO (R_ARM_LDC_PC_G1, /* type */
1050
   0,     /* rightshift */
1051
   4,     /* size */
1052
   32,      /* bitsize */
1053
   true,      /* pc_relative */
1054
   0,     /* bitpos */
1055
   complain_overflow_dont,/* complain_on_overflow */
1056
   bfd_elf_generic_reloc, /* special_function */
1057
   "R_ARM_LDC_PC_G1", /* name */
1058
   false,     /* partial_inplace */
1059
   0xffffffff,    /* src_mask */
1060
   0xffffffff,    /* dst_mask */
1061
   true),     /* pcrel_offset */
1062
1063
  HOWTO (R_ARM_LDC_PC_G2, /* type */
1064
   0,     /* rightshift */
1065
   4,     /* size */
1066
   32,      /* bitsize */
1067
   true,      /* pc_relative */
1068
   0,     /* bitpos */
1069
   complain_overflow_dont,/* complain_on_overflow */
1070
   bfd_elf_generic_reloc, /* special_function */
1071
   "R_ARM_LDC_PC_G2", /* name */
1072
   false,     /* partial_inplace */
1073
   0xffffffff,    /* src_mask */
1074
   0xffffffff,    /* dst_mask */
1075
   true),     /* pcrel_offset */
1076
1077
  HOWTO (R_ARM_ALU_SB_G0_NC,  /* type */
1078
   0,     /* rightshift */
1079
   4,     /* size */
1080
   32,      /* bitsize */
1081
   true,      /* pc_relative */
1082
   0,     /* bitpos */
1083
   complain_overflow_dont,/* complain_on_overflow */
1084
   bfd_elf_generic_reloc, /* special_function */
1085
   "R_ARM_ALU_SB_G0_NC",  /* name */
1086
   false,     /* partial_inplace */
1087
   0xffffffff,    /* src_mask */
1088
   0xffffffff,    /* dst_mask */
1089
   true),     /* pcrel_offset */
1090
1091
  HOWTO (R_ARM_ALU_SB_G0, /* type */
1092
   0,     /* rightshift */
1093
   4,     /* size */
1094
   32,      /* bitsize */
1095
   true,      /* pc_relative */
1096
   0,     /* bitpos */
1097
   complain_overflow_dont,/* complain_on_overflow */
1098
   bfd_elf_generic_reloc, /* special_function */
1099
   "R_ARM_ALU_SB_G0", /* name */
1100
   false,     /* partial_inplace */
1101
   0xffffffff,    /* src_mask */
1102
   0xffffffff,    /* dst_mask */
1103
   true),     /* pcrel_offset */
1104
1105
  HOWTO (R_ARM_ALU_SB_G1_NC,  /* type */
1106
   0,     /* rightshift */
1107
   4,     /* size */
1108
   32,      /* bitsize */
1109
   true,      /* pc_relative */
1110
   0,     /* bitpos */
1111
   complain_overflow_dont,/* complain_on_overflow */
1112
   bfd_elf_generic_reloc, /* special_function */
1113
   "R_ARM_ALU_SB_G1_NC",  /* name */
1114
   false,     /* partial_inplace */
1115
   0xffffffff,    /* src_mask */
1116
   0xffffffff,    /* dst_mask */
1117
   true),     /* pcrel_offset */
1118
1119
  HOWTO (R_ARM_ALU_SB_G1, /* type */
1120
   0,     /* rightshift */
1121
   4,     /* size */
1122
   32,      /* bitsize */
1123
   true,      /* pc_relative */
1124
   0,     /* bitpos */
1125
   complain_overflow_dont,/* complain_on_overflow */
1126
   bfd_elf_generic_reloc, /* special_function */
1127
   "R_ARM_ALU_SB_G1", /* name */
1128
   false,     /* partial_inplace */
1129
   0xffffffff,    /* src_mask */
1130
   0xffffffff,    /* dst_mask */
1131
   true),     /* pcrel_offset */
1132
1133
  HOWTO (R_ARM_ALU_SB_G2, /* type */
1134
   0,     /* rightshift */
1135
   4,     /* size */
1136
   32,      /* bitsize */
1137
   true,      /* pc_relative */
1138
   0,     /* bitpos */
1139
   complain_overflow_dont,/* complain_on_overflow */
1140
   bfd_elf_generic_reloc, /* special_function */
1141
   "R_ARM_ALU_SB_G2", /* name */
1142
   false,     /* partial_inplace */
1143
   0xffffffff,    /* src_mask */
1144
   0xffffffff,    /* dst_mask */
1145
   true),     /* pcrel_offset */
1146
1147
  HOWTO (R_ARM_LDR_SB_G0, /* type */
1148
   0,     /* rightshift */
1149
   4,     /* size */
1150
   32,      /* bitsize */
1151
   true,      /* pc_relative */
1152
   0,     /* bitpos */
1153
   complain_overflow_dont,/* complain_on_overflow */
1154
   bfd_elf_generic_reloc, /* special_function */
1155
   "R_ARM_LDR_SB_G0", /* name */
1156
   false,     /* partial_inplace */
1157
   0xffffffff,    /* src_mask */
1158
   0xffffffff,    /* dst_mask */
1159
   true),     /* pcrel_offset */
1160
1161
  HOWTO (R_ARM_LDR_SB_G1, /* type */
1162
   0,     /* rightshift */
1163
   4,     /* size */
1164
   32,      /* bitsize */
1165
   true,      /* pc_relative */
1166
   0,     /* bitpos */
1167
   complain_overflow_dont,/* complain_on_overflow */
1168
   bfd_elf_generic_reloc, /* special_function */
1169
   "R_ARM_LDR_SB_G1", /* name */
1170
   false,     /* partial_inplace */
1171
   0xffffffff,    /* src_mask */
1172
   0xffffffff,    /* dst_mask */
1173
   true),     /* pcrel_offset */
1174
1175
  HOWTO (R_ARM_LDR_SB_G2, /* type */
1176
   0,     /* rightshift */
1177
   4,     /* size */
1178
   32,      /* bitsize */
1179
   true,      /* pc_relative */
1180
   0,     /* bitpos */
1181
   complain_overflow_dont,/* complain_on_overflow */
1182
   bfd_elf_generic_reloc, /* special_function */
1183
   "R_ARM_LDR_SB_G2", /* name */
1184
   false,     /* partial_inplace */
1185
   0xffffffff,    /* src_mask */
1186
   0xffffffff,    /* dst_mask */
1187
   true),     /* pcrel_offset */
1188
1189
  HOWTO (R_ARM_LDRS_SB_G0,  /* type */
1190
   0,     /* rightshift */
1191
   4,     /* size */
1192
   32,      /* bitsize */
1193
   true,      /* pc_relative */
1194
   0,     /* bitpos */
1195
   complain_overflow_dont,/* complain_on_overflow */
1196
   bfd_elf_generic_reloc, /* special_function */
1197
   "R_ARM_LDRS_SB_G0",  /* name */
1198
   false,     /* partial_inplace */
1199
   0xffffffff,    /* src_mask */
1200
   0xffffffff,    /* dst_mask */
1201
   true),     /* pcrel_offset */
1202
1203
  HOWTO (R_ARM_LDRS_SB_G1,  /* type */
1204
   0,     /* rightshift */
1205
   4,     /* size */
1206
   32,      /* bitsize */
1207
   true,      /* pc_relative */
1208
   0,     /* bitpos */
1209
   complain_overflow_dont,/* complain_on_overflow */
1210
   bfd_elf_generic_reloc, /* special_function */
1211
   "R_ARM_LDRS_SB_G1",  /* name */
1212
   false,     /* partial_inplace */
1213
   0xffffffff,    /* src_mask */
1214
   0xffffffff,    /* dst_mask */
1215
   true),     /* pcrel_offset */
1216
1217
  HOWTO (R_ARM_LDRS_SB_G2,  /* type */
1218
   0,     /* rightshift */
1219
   4,     /* size */
1220
   32,      /* bitsize */
1221
   true,      /* pc_relative */
1222
   0,     /* bitpos */
1223
   complain_overflow_dont,/* complain_on_overflow */
1224
   bfd_elf_generic_reloc, /* special_function */
1225
   "R_ARM_LDRS_SB_G2",  /* name */
1226
   false,     /* partial_inplace */
1227
   0xffffffff,    /* src_mask */
1228
   0xffffffff,    /* dst_mask */
1229
   true),     /* pcrel_offset */
1230
1231
  HOWTO (R_ARM_LDC_SB_G0, /* type */
1232
   0,     /* rightshift */
1233
   4,     /* size */
1234
   32,      /* bitsize */
1235
   true,      /* pc_relative */
1236
   0,     /* bitpos */
1237
   complain_overflow_dont,/* complain_on_overflow */
1238
   bfd_elf_generic_reloc, /* special_function */
1239
   "R_ARM_LDC_SB_G0", /* name */
1240
   false,     /* partial_inplace */
1241
   0xffffffff,    /* src_mask */
1242
   0xffffffff,    /* dst_mask */
1243
   true),     /* pcrel_offset */
1244
1245
  HOWTO (R_ARM_LDC_SB_G1, /* type */
1246
   0,     /* rightshift */
1247
   4,     /* size */
1248
   32,      /* bitsize */
1249
   true,      /* pc_relative */
1250
   0,     /* bitpos */
1251
   complain_overflow_dont,/* complain_on_overflow */
1252
   bfd_elf_generic_reloc, /* special_function */
1253
   "R_ARM_LDC_SB_G1", /* name */
1254
   false,     /* partial_inplace */
1255
   0xffffffff,    /* src_mask */
1256
   0xffffffff,    /* dst_mask */
1257
   true),     /* pcrel_offset */
1258
1259
  HOWTO (R_ARM_LDC_SB_G2, /* type */
1260
   0,     /* rightshift */
1261
   4,     /* size */
1262
   32,      /* bitsize */
1263
   true,      /* pc_relative */
1264
   0,     /* bitpos */
1265
   complain_overflow_dont,/* complain_on_overflow */
1266
   bfd_elf_generic_reloc, /* special_function */
1267
   "R_ARM_LDC_SB_G2", /* name */
1268
   false,     /* partial_inplace */
1269
   0xffffffff,    /* src_mask */
1270
   0xffffffff,    /* dst_mask */
1271
   true),     /* pcrel_offset */
1272
1273
  /* End of group relocations.  */
1274
1275
  HOWTO (R_ARM_MOVW_BREL_NC,  /* type */
1276
   0,     /* rightshift */
1277
   4,     /* size */
1278
   16,      /* bitsize */
1279
   false,     /* pc_relative */
1280
   0,     /* bitpos */
1281
   complain_overflow_dont,/* complain_on_overflow */
1282
   bfd_elf_generic_reloc, /* special_function */
1283
   "R_ARM_MOVW_BREL_NC",  /* name */
1284
   false,     /* partial_inplace */
1285
   0x0000ffff,    /* src_mask */
1286
   0x0000ffff,    /* dst_mask */
1287
   false),    /* pcrel_offset */
1288
1289
  HOWTO (R_ARM_MOVT_BREL, /* type */
1290
   0,     /* rightshift */
1291
   4,     /* size */
1292
   16,      /* bitsize */
1293
   false,     /* pc_relative */
1294
   0,     /* bitpos */
1295
   complain_overflow_bitfield,/* complain_on_overflow */
1296
   bfd_elf_generic_reloc, /* special_function */
1297
   "R_ARM_MOVT_BREL", /* name */
1298
   false,     /* partial_inplace */
1299
   0x0000ffff,    /* src_mask */
1300
   0x0000ffff,    /* dst_mask */
1301
   false),    /* pcrel_offset */
1302
1303
  HOWTO (R_ARM_MOVW_BREL, /* type */
1304
   0,     /* rightshift */
1305
   4,     /* size */
1306
   16,      /* bitsize */
1307
   false,     /* pc_relative */
1308
   0,     /* bitpos */
1309
   complain_overflow_dont,/* complain_on_overflow */
1310
   bfd_elf_generic_reloc, /* special_function */
1311
   "R_ARM_MOVW_BREL", /* name */
1312
   false,     /* partial_inplace */
1313
   0x0000ffff,    /* src_mask */
1314
   0x0000ffff,    /* dst_mask */
1315
   false),    /* pcrel_offset */
1316
1317
  HOWTO (R_ARM_THM_MOVW_BREL_NC,/* type */
1318
   0,     /* rightshift */
1319
   4,     /* size */
1320
   16,      /* bitsize */
1321
   false,     /* pc_relative */
1322
   0,     /* bitpos */
1323
   complain_overflow_dont,/* complain_on_overflow */
1324
   bfd_elf_generic_reloc, /* special_function */
1325
   "R_ARM_THM_MOVW_BREL_NC",/* name */
1326
   false,     /* partial_inplace */
1327
   0x040f70ff,    /* src_mask */
1328
   0x040f70ff,    /* dst_mask */
1329
   false),    /* pcrel_offset */
1330
1331
  HOWTO (R_ARM_THM_MOVT_BREL, /* type */
1332
   0,     /* rightshift */
1333
   4,     /* size */
1334
   16,      /* bitsize */
1335
   false,     /* pc_relative */
1336
   0,     /* bitpos */
1337
   complain_overflow_bitfield,/* complain_on_overflow */
1338
   bfd_elf_generic_reloc, /* special_function */
1339
   "R_ARM_THM_MOVT_BREL", /* name */
1340
   false,     /* partial_inplace */
1341
   0x040f70ff,    /* src_mask */
1342
   0x040f70ff,    /* dst_mask */
1343
   false),    /* pcrel_offset */
1344
1345
  HOWTO (R_ARM_THM_MOVW_BREL, /* type */
1346
   0,     /* rightshift */
1347
   4,     /* size */
1348
   16,      /* bitsize */
1349
   false,     /* pc_relative */
1350
   0,     /* bitpos */
1351
   complain_overflow_dont,/* complain_on_overflow */
1352
   bfd_elf_generic_reloc, /* special_function */
1353
   "R_ARM_THM_MOVW_BREL", /* name */
1354
   false,     /* partial_inplace */
1355
   0x040f70ff,    /* src_mask */
1356
   0x040f70ff,    /* dst_mask */
1357
   false),    /* pcrel_offset */
1358
1359
  HOWTO (R_ARM_TLS_GOTDESC, /* type */
1360
   0,     /* rightshift */
1361
   4,     /* size */
1362
   32,      /* bitsize */
1363
   false,     /* pc_relative */
1364
   0,     /* bitpos */
1365
   complain_overflow_bitfield,/* complain_on_overflow */
1366
   NULL,      /* special_function */
1367
   "R_ARM_TLS_GOTDESC", /* name */
1368
   true,      /* partial_inplace */
1369
   0xffffffff,    /* src_mask */
1370
   0xffffffff,    /* dst_mask */
1371
   false),    /* pcrel_offset */
1372
1373
  HOWTO (R_ARM_TLS_CALL,  /* type */
1374
   0,     /* rightshift */
1375
   4,     /* size */
1376
   24,      /* bitsize */
1377
   false,     /* pc_relative */
1378
   0,     /* bitpos */
1379
   complain_overflow_dont,/* complain_on_overflow */
1380
   bfd_elf_generic_reloc, /* special_function */
1381
   "R_ARM_TLS_CALL",  /* name */
1382
   false,     /* partial_inplace */
1383
   0x00ffffff,    /* src_mask */
1384
   0x00ffffff,    /* dst_mask */
1385
   false),    /* pcrel_offset */
1386
1387
  HOWTO (R_ARM_TLS_DESCSEQ, /* type */
1388
   0,     /* rightshift */
1389
   4,     /* size */
1390
   0,     /* bitsize */
1391
   false,     /* pc_relative */
1392
   0,     /* bitpos */
1393
   complain_overflow_dont,/* complain_on_overflow */
1394
   bfd_elf_generic_reloc, /* special_function */
1395
   "R_ARM_TLS_DESCSEQ", /* name */
1396
   false,     /* partial_inplace */
1397
   0x00000000,    /* src_mask */
1398
   0x00000000,    /* dst_mask */
1399
   false),    /* pcrel_offset */
1400
1401
  HOWTO (R_ARM_THM_TLS_CALL,  /* type */
1402
   0,     /* rightshift */
1403
   4,     /* size */
1404
   24,      /* bitsize */
1405
   false,     /* pc_relative */
1406
   0,     /* bitpos */
1407
   complain_overflow_dont,/* complain_on_overflow */
1408
   bfd_elf_generic_reloc, /* special_function */
1409
   "R_ARM_THM_TLS_CALL",  /* name */
1410
   false,     /* partial_inplace */
1411
   0x07ff07ff,    /* src_mask */
1412
   0x07ff07ff,    /* dst_mask */
1413
   false),    /* pcrel_offset */
1414
1415
  HOWTO (R_ARM_PLT32_ABS, /* type */
1416
   0,     /* rightshift */
1417
   4,     /* size */
1418
   32,      /* bitsize */
1419
   false,     /* pc_relative */
1420
   0,     /* bitpos */
1421
   complain_overflow_dont,/* complain_on_overflow */
1422
   bfd_elf_generic_reloc, /* special_function */
1423
   "R_ARM_PLT32_ABS", /* name */
1424
   false,     /* partial_inplace */
1425
   0xffffffff,    /* src_mask */
1426
   0xffffffff,    /* dst_mask */
1427
   false),    /* pcrel_offset */
1428
1429
  HOWTO (R_ARM_GOT_ABS,   /* type */
1430
   0,     /* rightshift */
1431
   4,     /* size */
1432
   32,      /* bitsize */
1433
   false,     /* pc_relative */
1434
   0,     /* bitpos */
1435
   complain_overflow_dont,/* complain_on_overflow */
1436
   bfd_elf_generic_reloc, /* special_function */
1437
   "R_ARM_GOT_ABS", /* name */
1438
   false,     /* partial_inplace */
1439
   0xffffffff,    /* src_mask */
1440
   0xffffffff,    /* dst_mask */
1441
   false),      /* pcrel_offset */
1442
1443
  HOWTO (R_ARM_GOT_PREL,  /* type */
1444
   0,     /* rightshift */
1445
   4,     /* size */
1446
   32,      /* bitsize */
1447
   true,      /* pc_relative */
1448
   0,     /* bitpos */
1449
   complain_overflow_dont,  /* complain_on_overflow */
1450
   bfd_elf_generic_reloc, /* special_function */
1451
   "R_ARM_GOT_PREL",  /* name */
1452
   false,     /* partial_inplace */
1453
   0xffffffff,    /* src_mask */
1454
   0xffffffff,    /* dst_mask */
1455
   true),     /* pcrel_offset */
1456
1457
  HOWTO (R_ARM_GOT_BREL12,  /* type */
1458
   0,     /* rightshift */
1459
   4,     /* size */
1460
   12,      /* bitsize */
1461
   false,     /* pc_relative */
1462
   0,     /* bitpos */
1463
   complain_overflow_bitfield,/* complain_on_overflow */
1464
   bfd_elf_generic_reloc, /* special_function */
1465
   "R_ARM_GOT_BREL12",  /* name */
1466
   false,     /* partial_inplace */
1467
   0x00000fff,    /* src_mask */
1468
   0x00000fff,    /* dst_mask */
1469
   false),    /* pcrel_offset */
1470
1471
  HOWTO (R_ARM_GOTOFF12,  /* type */
1472
   0,     /* rightshift */
1473
   4,     /* size */
1474
   12,      /* bitsize */
1475
   false,     /* pc_relative */
1476
   0,     /* bitpos */
1477
   complain_overflow_bitfield,/* complain_on_overflow */
1478
   bfd_elf_generic_reloc, /* special_function */
1479
   "R_ARM_GOTOFF12",  /* name */
1480
   false,     /* partial_inplace */
1481
   0x00000fff,    /* src_mask */
1482
   0x00000fff,    /* dst_mask */
1483
   false),    /* pcrel_offset */
1484
1485
  EMPTY_HOWTO (R_ARM_GOTRELAX),  /* reserved for future GOT-load optimizations */
1486
1487
  /* GNU extension to record C++ vtable member usage */
1488
  HOWTO (R_ARM_GNU_VTENTRY, /* type */
1489
   0,     /* rightshift */
1490
   4,     /* size */
1491
   0,     /* bitsize */
1492
   false,     /* pc_relative */
1493
   0,     /* bitpos */
1494
   complain_overflow_dont, /* complain_on_overflow */
1495
   _bfd_elf_rel_vtable_reloc_fn,  /* special_function */
1496
   "R_ARM_GNU_VTENTRY", /* name */
1497
   false,     /* partial_inplace */
1498
   0,     /* src_mask */
1499
   0,     /* dst_mask */
1500
   false),    /* pcrel_offset */
1501
1502
  /* GNU extension to record C++ vtable hierarchy */
1503
  HOWTO (R_ARM_GNU_VTINHERIT, /* type */
1504
   0,     /* rightshift */
1505
   4,     /* size */
1506
   0,     /* bitsize */
1507
   false,     /* pc_relative */
1508
   0,     /* bitpos */
1509
   complain_overflow_dont, /* complain_on_overflow */
1510
   NULL,      /* special_function */
1511
   "R_ARM_GNU_VTINHERIT", /* name */
1512
   false,     /* partial_inplace */
1513
   0,     /* src_mask */
1514
   0,     /* dst_mask */
1515
   false),    /* pcrel_offset */
1516
1517
  HOWTO (R_ARM_THM_JUMP11,  /* type */
1518
   1,     /* rightshift */
1519
   2,     /* size */
1520
   11,      /* bitsize */
1521
   true,      /* pc_relative */
1522
   0,     /* bitpos */
1523
   complain_overflow_signed,  /* complain_on_overflow */
1524
   bfd_elf_generic_reloc, /* special_function */
1525
   "R_ARM_THM_JUMP11",  /* name */
1526
   false,     /* partial_inplace */
1527
   0x000007ff,    /* src_mask */
1528
   0x000007ff,    /* dst_mask */
1529
   true),     /* pcrel_offset */
1530
1531
  HOWTO (R_ARM_THM_JUMP8, /* type */
1532
   1,     /* rightshift */
1533
   2,     /* size */
1534
   8,     /* bitsize */
1535
   true,      /* pc_relative */
1536
   0,     /* bitpos */
1537
   complain_overflow_signed,  /* complain_on_overflow */
1538
   bfd_elf_generic_reloc, /* special_function */
1539
   "R_ARM_THM_JUMP8", /* name */
1540
   false,     /* partial_inplace */
1541
   0x000000ff,    /* src_mask */
1542
   0x000000ff,    /* dst_mask */
1543
   true),     /* pcrel_offset */
1544
1545
  /* TLS relocations */
1546
  HOWTO (R_ARM_TLS_GD32,  /* type */
1547
   0,     /* rightshift */
1548
   4,     /* size */
1549
   32,      /* bitsize */
1550
   false,     /* pc_relative */
1551
   0,     /* bitpos */
1552
   complain_overflow_bitfield,/* complain_on_overflow */
1553
   NULL,      /* special_function */
1554
   "R_ARM_TLS_GD32",  /* name */
1555
   true,      /* partial_inplace */
1556
   0xffffffff,    /* src_mask */
1557
   0xffffffff,    /* dst_mask */
1558
   false),    /* pcrel_offset */
1559
1560
  HOWTO (R_ARM_TLS_LDM32, /* type */
1561
   0,     /* rightshift */
1562
   4,     /* size */
1563
   32,      /* bitsize */
1564
   false,     /* pc_relative */
1565
   0,     /* bitpos */
1566
   complain_overflow_bitfield,/* complain_on_overflow */
1567
   bfd_elf_generic_reloc, /* special_function */
1568
   "R_ARM_TLS_LDM32", /* name */
1569
   true,      /* partial_inplace */
1570
   0xffffffff,    /* src_mask */
1571
   0xffffffff,    /* dst_mask */
1572
   false),    /* pcrel_offset */
1573
1574
  HOWTO (R_ARM_TLS_LDO32, /* type */
1575
   0,     /* rightshift */
1576
   4,     /* size */
1577
   32,      /* bitsize */
1578
   false,     /* pc_relative */
1579
   0,     /* bitpos */
1580
   complain_overflow_bitfield,/* complain_on_overflow */
1581
   bfd_elf_generic_reloc, /* special_function */
1582
   "R_ARM_TLS_LDO32", /* name */
1583
   true,      /* partial_inplace */
1584
   0xffffffff,    /* src_mask */
1585
   0xffffffff,    /* dst_mask */
1586
   false),    /* pcrel_offset */
1587
1588
  HOWTO (R_ARM_TLS_IE32,  /* type */
1589
   0,     /* rightshift */
1590
   4,     /* size */
1591
   32,      /* bitsize */
1592
   false,      /* pc_relative */
1593
   0,     /* bitpos */
1594
   complain_overflow_bitfield,/* complain_on_overflow */
1595
   NULL,      /* special_function */
1596
   "R_ARM_TLS_IE32",  /* name */
1597
   true,      /* partial_inplace */
1598
   0xffffffff,    /* src_mask */
1599
   0xffffffff,    /* dst_mask */
1600
   false),    /* pcrel_offset */
1601
1602
  HOWTO (R_ARM_TLS_LE32,  /* type */
1603
   0,     /* rightshift */
1604
   4,     /* size */
1605
   32,      /* bitsize */
1606
   false,     /* pc_relative */
1607
   0,     /* bitpos */
1608
   complain_overflow_bitfield,/* complain_on_overflow */
1609
   NULL,      /* special_function */
1610
   "R_ARM_TLS_LE32",  /* name */
1611
   true,      /* partial_inplace */
1612
   0xffffffff,    /* src_mask */
1613
   0xffffffff,    /* dst_mask */
1614
   false),    /* pcrel_offset */
1615
1616
  HOWTO (R_ARM_TLS_LDO12, /* type */
1617
   0,     /* rightshift */
1618
   4,     /* size */
1619
   12,      /* bitsize */
1620
   false,     /* pc_relative */
1621
   0,     /* bitpos */
1622
   complain_overflow_bitfield,/* complain_on_overflow */
1623
   bfd_elf_generic_reloc, /* special_function */
1624
   "R_ARM_TLS_LDO12", /* name */
1625
   false,     /* partial_inplace */
1626
   0x00000fff,    /* src_mask */
1627
   0x00000fff,    /* dst_mask */
1628
   false),    /* pcrel_offset */
1629
1630
  HOWTO (R_ARM_TLS_LE12,  /* type */
1631
   0,     /* rightshift */
1632
   4,     /* size */
1633
   12,      /* bitsize */
1634
   false,     /* pc_relative */
1635
   0,     /* bitpos */
1636
   complain_overflow_bitfield,/* complain_on_overflow */
1637
   bfd_elf_generic_reloc, /* special_function */
1638
   "R_ARM_TLS_LE12",  /* name */
1639
   false,     /* partial_inplace */
1640
   0x00000fff,    /* src_mask */
1641
   0x00000fff,    /* dst_mask */
1642
   false),    /* pcrel_offset */
1643
1644
  HOWTO (R_ARM_TLS_IE12GP,  /* type */
1645
   0,     /* rightshift */
1646
   4,     /* size */
1647
   12,      /* bitsize */
1648
   false,     /* pc_relative */
1649
   0,     /* bitpos */
1650
   complain_overflow_bitfield,/* complain_on_overflow */
1651
   bfd_elf_generic_reloc, /* special_function */
1652
   "R_ARM_TLS_IE12GP",  /* name */
1653
   false,     /* partial_inplace */
1654
   0x00000fff,    /* src_mask */
1655
   0x00000fff,    /* dst_mask */
1656
   false),    /* pcrel_offset */
1657
1658
  /* 112-127 private relocations.  */
1659
  EMPTY_HOWTO (112),
1660
  EMPTY_HOWTO (113),
1661
  EMPTY_HOWTO (114),
1662
  EMPTY_HOWTO (115),
1663
  EMPTY_HOWTO (116),
1664
  EMPTY_HOWTO (117),
1665
  EMPTY_HOWTO (118),
1666
  EMPTY_HOWTO (119),
1667
  EMPTY_HOWTO (120),
1668
  EMPTY_HOWTO (121),
1669
  EMPTY_HOWTO (122),
1670
  EMPTY_HOWTO (123),
1671
  EMPTY_HOWTO (124),
1672
  EMPTY_HOWTO (125),
1673
  EMPTY_HOWTO (126),
1674
  EMPTY_HOWTO (127),
1675
1676
  /* R_ARM_ME_TOO, obsolete.  */
1677
  EMPTY_HOWTO (128),
1678
1679
  HOWTO (R_ARM_THM_TLS_DESCSEQ, /* type */
1680
   0,     /* rightshift */
1681
   2,     /* size */
1682
   0,     /* bitsize */
1683
   false,     /* pc_relative */
1684
   0,     /* bitpos */
1685
   complain_overflow_dont,/* complain_on_overflow */
1686
   bfd_elf_generic_reloc, /* special_function */
1687
   "R_ARM_THM_TLS_DESCSEQ",/* name */
1688
   false,     /* partial_inplace */
1689
   0x00000000,    /* src_mask */
1690
   0x00000000,    /* dst_mask */
1691
   false),    /* pcrel_offset */
1692
  EMPTY_HOWTO (130),
1693
  EMPTY_HOWTO (131),
1694
  HOWTO (R_ARM_THM_ALU_ABS_G0_NC,/* type.  */
1695
   0,     /* rightshift.  */
1696
   2,     /* size.  */
1697
   16,      /* bitsize.  */
1698
   false,     /* pc_relative.  */
1699
   0,     /* bitpos.  */
1700
   complain_overflow_bitfield,/* complain_on_overflow.  */
1701
   bfd_elf_generic_reloc, /* special_function.  */
1702
   "R_ARM_THM_ALU_ABS_G0_NC",/* name.  */
1703
   false,     /* partial_inplace.  */
1704
   0x00000000,    /* src_mask.  */
1705
   0x00000000,    /* dst_mask.  */
1706
   false),    /* pcrel_offset.  */
1707
  HOWTO (R_ARM_THM_ALU_ABS_G1_NC,/* type.  */
1708
   0,     /* rightshift.  */
1709
   2,     /* size.  */
1710
   16,      /* bitsize.  */
1711
   false,     /* pc_relative.  */
1712
   0,     /* bitpos.  */
1713
   complain_overflow_bitfield,/* complain_on_overflow.  */
1714
   bfd_elf_generic_reloc, /* special_function.  */
1715
   "R_ARM_THM_ALU_ABS_G1_NC",/* name.  */
1716
   false,     /* partial_inplace.  */
1717
   0x00000000,    /* src_mask.  */
1718
   0x00000000,    /* dst_mask.  */
1719
   false),    /* pcrel_offset.  */
1720
  HOWTO (R_ARM_THM_ALU_ABS_G2_NC,/* type.  */
1721
   0,     /* rightshift.  */
1722
   2,     /* size.  */
1723
   16,      /* bitsize.  */
1724
   false,     /* pc_relative.  */
1725
   0,     /* bitpos.  */
1726
   complain_overflow_bitfield,/* complain_on_overflow.  */
1727
   bfd_elf_generic_reloc, /* special_function.  */
1728
   "R_ARM_THM_ALU_ABS_G2_NC",/* name.  */
1729
   false,     /* partial_inplace.  */
1730
   0x00000000,    /* src_mask.  */
1731
   0x00000000,    /* dst_mask.  */
1732
   false),    /* pcrel_offset.  */
1733
  HOWTO (R_ARM_THM_ALU_ABS_G3_NC,/* type.  */
1734
   0,     /* rightshift.  */
1735
   2,     /* size.  */
1736
   16,      /* bitsize.  */
1737
   false,     /* pc_relative.  */
1738
   0,     /* bitpos.  */
1739
   complain_overflow_bitfield,/* complain_on_overflow.  */
1740
   bfd_elf_generic_reloc, /* special_function.  */
1741
   "R_ARM_THM_ALU_ABS_G3_NC",/* name.  */
1742
   false,     /* partial_inplace.  */
1743
   0x00000000,    /* src_mask.  */
1744
   0x00000000,    /* dst_mask.  */
1745
   false),    /* pcrel_offset.  */
1746
  /* Relocations for Armv8.1-M Mainline.  */
1747
  HOWTO (R_ARM_THM_BF16,  /* type.  */
1748
   0,     /* rightshift.  */
1749
   2,     /* size.  */
1750
   16,      /* bitsize.  */
1751
   true,      /* pc_relative.  */
1752
   0,     /* bitpos.  */
1753
   complain_overflow_dont,/* do not complain_on_overflow.  */
1754
   bfd_elf_generic_reloc, /* special_function.  */
1755
   "R_ARM_THM_BF16",  /* name.  */
1756
   false,     /* partial_inplace.  */
1757
   0x001f0ffe,    /* src_mask.  */
1758
   0x001f0ffe,    /* dst_mask.  */
1759
   true),     /* pcrel_offset.  */
1760
  HOWTO (R_ARM_THM_BF12,  /* type.  */
1761
   0,     /* rightshift.  */
1762
   2,     /* size.  */
1763
   12,      /* bitsize.  */
1764
   true,      /* pc_relative.  */
1765
   0,     /* bitpos.  */
1766
   complain_overflow_dont,/* do not complain_on_overflow.  */
1767
   bfd_elf_generic_reloc, /* special_function.  */
1768
   "R_ARM_THM_BF12",  /* name.  */
1769
   false,     /* partial_inplace.  */
1770
   0x00010ffe,    /* src_mask.  */
1771
   0x00010ffe,    /* dst_mask.  */
1772
   true),     /* pcrel_offset.  */
1773
  HOWTO (R_ARM_THM_BF18,  /* type.  */
1774
   0,     /* rightshift.  */
1775
   2,     /* size.  */
1776
   18,      /* bitsize.  */
1777
   true,      /* pc_relative.  */
1778
   0,     /* bitpos.  */
1779
   complain_overflow_dont,/* do not complain_on_overflow.  */
1780
   bfd_elf_generic_reloc, /* special_function.  */
1781
   "R_ARM_THM_BF18",  /* name.  */
1782
   false,     /* partial_inplace.  */
1783
   0x007f0ffe,    /* src_mask.  */
1784
   0x007f0ffe,    /* dst_mask.  */
1785
   true),     /* pcrel_offset.  */
1786
};
1787
1788
/* 160 onwards: */
1789
static reloc_howto_type elf32_arm_howto_table_2[8] =
1790
{
1791
  HOWTO (R_ARM_IRELATIVE, /* type */
1792
   0,     /* rightshift */
1793
   4,     /* size */
1794
   32,      /* bitsize */
1795
   false,     /* pc_relative */
1796
   0,     /* bitpos */
1797
   complain_overflow_bitfield,/* complain_on_overflow */
1798
   bfd_elf_generic_reloc, /* special_function */
1799
   "R_ARM_IRELATIVE", /* name */
1800
   true,      /* partial_inplace */
1801
   0xffffffff,    /* src_mask */
1802
   0xffffffff,    /* dst_mask */
1803
   false),    /* pcrel_offset */
1804
  HOWTO (R_ARM_GOTFUNCDESC, /* type */
1805
   0,     /* rightshift */
1806
   4,     /* size */
1807
   32,      /* bitsize */
1808
   false,     /* pc_relative */
1809
   0,     /* bitpos */
1810
   complain_overflow_bitfield,/* complain_on_overflow */
1811
   bfd_elf_generic_reloc, /* special_function */
1812
   "R_ARM_GOTFUNCDESC", /* name */
1813
   false,     /* partial_inplace */
1814
   0,     /* src_mask */
1815
   0xffffffff,    /* dst_mask */
1816
   false),    /* pcrel_offset */
1817
  HOWTO (R_ARM_GOTOFFFUNCDESC, /* type */
1818
   0,     /* rightshift */
1819
   4,     /* size */
1820
   32,      /* bitsize */
1821
   false,     /* pc_relative */
1822
   0,     /* bitpos */
1823
   complain_overflow_bitfield,/* complain_on_overflow */
1824
   bfd_elf_generic_reloc, /* special_function */
1825
   "R_ARM_GOTOFFFUNCDESC",/* name */
1826
   false,     /* partial_inplace */
1827
   0,     /* src_mask */
1828
   0xffffffff,    /* dst_mask */
1829
   false),    /* pcrel_offset */
1830
  HOWTO (R_ARM_FUNCDESC,  /* type */
1831
   0,     /* rightshift */
1832
   4,     /* size */
1833
   32,      /* bitsize */
1834
   false,     /* pc_relative */
1835
   0,     /* bitpos */
1836
   complain_overflow_bitfield,/* complain_on_overflow */
1837
   bfd_elf_generic_reloc, /* special_function */
1838
   "R_ARM_FUNCDESC",  /* name */
1839
   false,     /* partial_inplace */
1840
   0,     /* src_mask */
1841
   0xffffffff,    /* dst_mask */
1842
   false),    /* pcrel_offset */
1843
  HOWTO (R_ARM_FUNCDESC_VALUE,  /* type */
1844
   0,     /* rightshift */
1845
   4,     /* size */
1846
   64,      /* bitsize */
1847
   false,     /* pc_relative */
1848
   0,     /* bitpos */
1849
   complain_overflow_bitfield,/* complain_on_overflow */
1850
   bfd_elf_generic_reloc, /* special_function */
1851
   "R_ARM_FUNCDESC_VALUE",/* name */
1852
   false,     /* partial_inplace */
1853
   0,     /* src_mask */
1854
   0xffffffff,    /* dst_mask */
1855
   false),    /* pcrel_offset */
1856
  HOWTO (R_ARM_TLS_GD32_FDPIC,  /* type */
1857
   0,     /* rightshift */
1858
   4,     /* size */
1859
   32,      /* bitsize */
1860
   false,     /* pc_relative */
1861
   0,     /* bitpos */
1862
   complain_overflow_bitfield,/* complain_on_overflow */
1863
   bfd_elf_generic_reloc, /* special_function */
1864
   "R_ARM_TLS_GD32_FDPIC",/* name */
1865
   false,     /* partial_inplace */
1866
   0,     /* src_mask */
1867
   0xffffffff,    /* dst_mask */
1868
   false),    /* pcrel_offset */
1869
  HOWTO (R_ARM_TLS_LDM32_FDPIC, /* type */
1870
   0,     /* rightshift */
1871
   4,     /* size */
1872
   32,      /* bitsize */
1873
   false,     /* pc_relative */
1874
   0,     /* bitpos */
1875
   complain_overflow_bitfield,/* complain_on_overflow */
1876
   bfd_elf_generic_reloc, /* special_function */
1877
   "R_ARM_TLS_LDM32_FDPIC",/* name */
1878
   false,     /* partial_inplace */
1879
   0,     /* src_mask */
1880
   0xffffffff,    /* dst_mask */
1881
   false),    /* pcrel_offset */
1882
  HOWTO (R_ARM_TLS_IE32_FDPIC,  /* type */
1883
   0,     /* rightshift */
1884
   4,     /* size */
1885
   32,      /* bitsize */
1886
   false,     /* pc_relative */
1887
   0,     /* bitpos */
1888
   complain_overflow_bitfield,/* complain_on_overflow */
1889
   bfd_elf_generic_reloc, /* special_function */
1890
   "R_ARM_TLS_IE32_FDPIC",/* name */
1891
   false,     /* partial_inplace */
1892
   0,     /* src_mask */
1893
   0xffffffff,    /* dst_mask */
1894
   false),    /* pcrel_offset */
1895
};
1896
1897
/* 249-255 extended, currently unused, relocations:  */
1898
static reloc_howto_type elf32_arm_howto_table_3[4] =
1899
{
1900
  HOWTO (R_ARM_RREL32,    /* type */
1901
   0,     /* rightshift */
1902
   0,     /* size */
1903
   0,     /* bitsize */
1904
   false,     /* pc_relative */
1905
   0,     /* bitpos */
1906
   complain_overflow_dont,/* complain_on_overflow */
1907
   bfd_elf_generic_reloc, /* special_function */
1908
   "R_ARM_RREL32",  /* name */
1909
   false,     /* partial_inplace */
1910
   0,     /* src_mask */
1911
   0,     /* dst_mask */
1912
   false),    /* pcrel_offset */
1913
1914
  HOWTO (R_ARM_RABS32,    /* type */
1915
   0,     /* rightshift */
1916
   0,     /* size */
1917
   0,     /* bitsize */
1918
   false,     /* pc_relative */
1919
   0,     /* bitpos */
1920
   complain_overflow_dont,/* complain_on_overflow */
1921
   bfd_elf_generic_reloc, /* special_function */
1922
   "R_ARM_RABS32",  /* name */
1923
   false,     /* partial_inplace */
1924
   0,     /* src_mask */
1925
   0,     /* dst_mask */
1926
   false),    /* pcrel_offset */
1927
1928
  HOWTO (R_ARM_RPC24,   /* type */
1929
   0,     /* rightshift */
1930
   0,     /* size */
1931
   0,     /* bitsize */
1932
   false,     /* pc_relative */
1933
   0,     /* bitpos */
1934
   complain_overflow_dont,/* complain_on_overflow */
1935
   bfd_elf_generic_reloc, /* special_function */
1936
   "R_ARM_RPC24",   /* name */
1937
   false,     /* partial_inplace */
1938
   0,     /* src_mask */
1939
   0,     /* dst_mask */
1940
   false),    /* pcrel_offset */
1941
1942
  HOWTO (R_ARM_RBASE,   /* type */
1943
   0,     /* rightshift */
1944
   0,     /* size */
1945
   0,     /* bitsize */
1946
   false,     /* pc_relative */
1947
   0,     /* bitpos */
1948
   complain_overflow_dont,/* complain_on_overflow */
1949
   bfd_elf_generic_reloc, /* special_function */
1950
   "R_ARM_RBASE",   /* name */
1951
   false,     /* partial_inplace */
1952
   0,     /* src_mask */
1953
   0,     /* dst_mask */
1954
   false)     /* pcrel_offset */
1955
};
1956
1957
static reloc_howto_type *
1958
elf32_arm_howto_from_type (unsigned int r_type)
1959
0
{
1960
0
  if (r_type < ARRAY_SIZE (elf32_arm_howto_table_1))
1961
0
    return &elf32_arm_howto_table_1[r_type];
1962
1963
0
  if (r_type >= R_ARM_IRELATIVE
1964
0
      && r_type < R_ARM_IRELATIVE + ARRAY_SIZE (elf32_arm_howto_table_2))
1965
0
    return &elf32_arm_howto_table_2[r_type - R_ARM_IRELATIVE];
1966
1967
0
  if (r_type >= R_ARM_RREL32
1968
0
      && r_type < R_ARM_RREL32 + ARRAY_SIZE (elf32_arm_howto_table_3))
1969
0
    return &elf32_arm_howto_table_3[r_type - R_ARM_RREL32];
1970
1971
0
  return NULL;
1972
0
}
1973
1974
static bool
1975
elf32_arm_info_to_howto (bfd * abfd, arelent * bfd_reloc,
1976
       Elf_Internal_Rela * elf_reloc)
1977
0
{
1978
0
  unsigned int r_type;
1979
1980
0
  r_type = ELF32_R_TYPE (elf_reloc->r_info);
1981
0
  if ((bfd_reloc->howto = elf32_arm_howto_from_type (r_type)) == NULL)
1982
0
    {
1983
      /* xgettext:c-format */
1984
0
      _bfd_error_handler (_("%pB: unsupported relocation type %#x"),
1985
0
        abfd, r_type);
1986
0
      bfd_set_error (bfd_error_bad_value);
1987
0
      return false;
1988
0
    }
1989
0
  return true;
1990
0
}
1991
1992
struct elf32_arm_reloc_map
1993
  {
1994
    bfd_reloc_code_real_type  bfd_reloc_val;
1995
    unsigned char       elf_reloc_val;
1996
  };
1997
1998
/* All entries in this list must also be present in elf32_arm_howto_table.  */
1999
static const struct elf32_arm_reloc_map elf32_arm_reloc_map[] =
2000
  {
2001
    {BFD_RELOC_NONE,         R_ARM_NONE},
2002
    {BFD_RELOC_ARM_PCREL_BRANCH,     R_ARM_PC24},
2003
    {BFD_RELOC_ARM_PCREL_CALL,       R_ARM_CALL},
2004
    {BFD_RELOC_ARM_PCREL_JUMP,       R_ARM_JUMP24},
2005
    {BFD_RELOC_ARM_PCREL_BLX,      R_ARM_XPC25},
2006
    {BFD_RELOC_THUMB_PCREL_BLX,      R_ARM_THM_XPC22},
2007
    {BFD_RELOC_32,         R_ARM_ABS32},
2008
    {BFD_RELOC_32_PCREL,       R_ARM_REL32},
2009
    {BFD_RELOC_8,        R_ARM_ABS8},
2010
    {BFD_RELOC_16,         R_ARM_ABS16},
2011
    {BFD_RELOC_ARM_OFFSET_IMM,       R_ARM_ABS12},
2012
    {BFD_RELOC_ARM_THUMB_OFFSET,     R_ARM_THM_ABS5},
2013
    {BFD_RELOC_THUMB_PCREL_BRANCH25, R_ARM_THM_JUMP24},
2014
    {BFD_RELOC_THUMB_PCREL_BRANCH23, R_ARM_THM_CALL},
2015
    {BFD_RELOC_THUMB_PCREL_BRANCH12, R_ARM_THM_JUMP11},
2016
    {BFD_RELOC_THUMB_PCREL_BRANCH20, R_ARM_THM_JUMP19},
2017
    {BFD_RELOC_THUMB_PCREL_BRANCH9,  R_ARM_THM_JUMP8},
2018
    {BFD_RELOC_THUMB_PCREL_BRANCH7,  R_ARM_THM_JUMP6},
2019
    {BFD_RELOC_GLOB_DAT,       R_ARM_GLOB_DAT},
2020
    {BFD_RELOC_JMP_SLOT,       R_ARM_JUMP_SLOT},
2021
    {BFD_RELOC_RELATIVE,       R_ARM_RELATIVE},
2022
    {BFD_RELOC_32_GOTOFF,      R_ARM_GOTOFF32},
2023
    {BFD_RELOC_32_GOT_PCREL,       R_ARM_GOTPC},
2024
    {BFD_RELOC_ARM_GOT_PREL,       R_ARM_GOT_PREL},
2025
    {BFD_RELOC_ARM_GOT32,      R_ARM_GOT32},
2026
    {BFD_RELOC_32_PLT_PCREL,       R_ARM_PLT32},
2027
    {BFD_RELOC_ARM_TARGET1,      R_ARM_TARGET1},
2028
    {BFD_RELOC_ARM_ROSEGREL32,       R_ARM_ROSEGREL32},
2029
    {BFD_RELOC_ARM_SBREL32,      R_ARM_SBREL32},
2030
    {BFD_RELOC_ARM_PREL31,       R_ARM_PREL31},
2031
    {BFD_RELOC_ARM_TARGET2,      R_ARM_TARGET2},
2032
    {BFD_RELOC_ARM_TLS_GOTDESC,      R_ARM_TLS_GOTDESC},
2033
    {BFD_RELOC_ARM_TLS_CALL,       R_ARM_TLS_CALL},
2034
    {BFD_RELOC_ARM_THM_TLS_CALL,     R_ARM_THM_TLS_CALL},
2035
    {BFD_RELOC_ARM_TLS_DESCSEQ,      R_ARM_TLS_DESCSEQ},
2036
    {BFD_RELOC_ARM_THM_TLS_DESCSEQ,  R_ARM_THM_TLS_DESCSEQ},
2037
    {BFD_RELOC_ARM_TLS_DESC,       R_ARM_TLS_DESC},
2038
    {BFD_RELOC_ARM_TLS_GD32,       R_ARM_TLS_GD32},
2039
    {BFD_RELOC_ARM_TLS_LDO32,      R_ARM_TLS_LDO32},
2040
    {BFD_RELOC_ARM_TLS_LDM32,      R_ARM_TLS_LDM32},
2041
    {BFD_RELOC_ARM_TLS_DTPMOD32,     R_ARM_TLS_DTPMOD32},
2042
    {BFD_RELOC_ARM_TLS_DTPOFF32,     R_ARM_TLS_DTPOFF32},
2043
    {BFD_RELOC_ARM_TLS_TPOFF32,      R_ARM_TLS_TPOFF32},
2044
    {BFD_RELOC_ARM_TLS_IE32,       R_ARM_TLS_IE32},
2045
    {BFD_RELOC_ARM_TLS_LE32,       R_ARM_TLS_LE32},
2046
    {BFD_RELOC_IRELATIVE,      R_ARM_IRELATIVE},
2047
    {BFD_RELOC_ARM_GOTFUNCDESC,      R_ARM_GOTFUNCDESC},
2048
    {BFD_RELOC_ARM_GOTOFFFUNCDESC,   R_ARM_GOTOFFFUNCDESC},
2049
    {BFD_RELOC_ARM_FUNCDESC,         R_ARM_FUNCDESC},
2050
    {BFD_RELOC_ARM_FUNCDESC_VALUE,   R_ARM_FUNCDESC_VALUE},
2051
    {BFD_RELOC_ARM_TLS_GD32_FDPIC,   R_ARM_TLS_GD32_FDPIC},
2052
    {BFD_RELOC_ARM_TLS_LDM32_FDPIC,  R_ARM_TLS_LDM32_FDPIC},
2053
    {BFD_RELOC_ARM_TLS_IE32_FDPIC,   R_ARM_TLS_IE32_FDPIC},
2054
    {BFD_RELOC_VTABLE_INHERIT,       R_ARM_GNU_VTINHERIT},
2055
    {BFD_RELOC_VTABLE_ENTRY,       R_ARM_GNU_VTENTRY},
2056
    {BFD_RELOC_ARM_MOVW,       R_ARM_MOVW_ABS_NC},
2057
    {BFD_RELOC_ARM_MOVT,       R_ARM_MOVT_ABS},
2058
    {BFD_RELOC_ARM_MOVW_PCREL,       R_ARM_MOVW_PREL_NC},
2059
    {BFD_RELOC_ARM_MOVT_PCREL,       R_ARM_MOVT_PREL},
2060
    {BFD_RELOC_ARM_THUMB_MOVW,       R_ARM_THM_MOVW_ABS_NC},
2061
    {BFD_RELOC_ARM_THUMB_MOVT,       R_ARM_THM_MOVT_ABS},
2062
    {BFD_RELOC_ARM_THUMB_MOVW_PCREL, R_ARM_THM_MOVW_PREL_NC},
2063
    {BFD_RELOC_ARM_THUMB_MOVT_PCREL, R_ARM_THM_MOVT_PREL},
2064
    {BFD_RELOC_ARM_ALU_PC_G0_NC, R_ARM_ALU_PC_G0_NC},
2065
    {BFD_RELOC_ARM_ALU_PC_G0, R_ARM_ALU_PC_G0},
2066
    {BFD_RELOC_ARM_ALU_PC_G1_NC, R_ARM_ALU_PC_G1_NC},
2067
    {BFD_RELOC_ARM_ALU_PC_G1, R_ARM_ALU_PC_G1},
2068
    {BFD_RELOC_ARM_ALU_PC_G2, R_ARM_ALU_PC_G2},
2069
    {BFD_RELOC_ARM_LDR_PC_G0, R_ARM_LDR_PC_G0},
2070
    {BFD_RELOC_ARM_LDR_PC_G1, R_ARM_LDR_PC_G1},
2071
    {BFD_RELOC_ARM_LDR_PC_G2, R_ARM_LDR_PC_G2},
2072
    {BFD_RELOC_ARM_LDRS_PC_G0, R_ARM_LDRS_PC_G0},
2073
    {BFD_RELOC_ARM_LDRS_PC_G1, R_ARM_LDRS_PC_G1},
2074
    {BFD_RELOC_ARM_LDRS_PC_G2, R_ARM_LDRS_PC_G2},
2075
    {BFD_RELOC_ARM_LDC_PC_G0, R_ARM_LDC_PC_G0},
2076
    {BFD_RELOC_ARM_LDC_PC_G1, R_ARM_LDC_PC_G1},
2077
    {BFD_RELOC_ARM_LDC_PC_G2, R_ARM_LDC_PC_G2},
2078
    {BFD_RELOC_ARM_ALU_SB_G0_NC, R_ARM_ALU_SB_G0_NC},
2079
    {BFD_RELOC_ARM_ALU_SB_G0, R_ARM_ALU_SB_G0},
2080
    {BFD_RELOC_ARM_ALU_SB_G1_NC, R_ARM_ALU_SB_G1_NC},
2081
    {BFD_RELOC_ARM_ALU_SB_G1, R_ARM_ALU_SB_G1},
2082
    {BFD_RELOC_ARM_ALU_SB_G2, R_ARM_ALU_SB_G2},
2083
    {BFD_RELOC_ARM_LDR_SB_G0, R_ARM_LDR_SB_G0},
2084
    {BFD_RELOC_ARM_LDR_SB_G1, R_ARM_LDR_SB_G1},
2085
    {BFD_RELOC_ARM_LDR_SB_G2, R_ARM_LDR_SB_G2},
2086
    {BFD_RELOC_ARM_LDRS_SB_G0, R_ARM_LDRS_SB_G0},
2087
    {BFD_RELOC_ARM_LDRS_SB_G1, R_ARM_LDRS_SB_G1},
2088
    {BFD_RELOC_ARM_LDRS_SB_G2, R_ARM_LDRS_SB_G2},
2089
    {BFD_RELOC_ARM_LDC_SB_G0, R_ARM_LDC_SB_G0},
2090
    {BFD_RELOC_ARM_LDC_SB_G1, R_ARM_LDC_SB_G1},
2091
    {BFD_RELOC_ARM_LDC_SB_G2, R_ARM_LDC_SB_G2},
2092
    {BFD_RELOC_ARM_V4BX,       R_ARM_V4BX},
2093
    {BFD_RELOC_ARM_THUMB_ALU_ABS_G3_NC, R_ARM_THM_ALU_ABS_G3_NC},
2094
    {BFD_RELOC_ARM_THUMB_ALU_ABS_G2_NC, R_ARM_THM_ALU_ABS_G2_NC},
2095
    {BFD_RELOC_ARM_THUMB_ALU_ABS_G1_NC, R_ARM_THM_ALU_ABS_G1_NC},
2096
    {BFD_RELOC_ARM_THUMB_ALU_ABS_G0_NC, R_ARM_THM_ALU_ABS_G0_NC},
2097
    {BFD_RELOC_ARM_THUMB_BF17, R_ARM_THM_BF16},
2098
    {BFD_RELOC_ARM_THUMB_BF13, R_ARM_THM_BF12},
2099
    {BFD_RELOC_ARM_THUMB_BF19, R_ARM_THM_BF18}
2100
  };
2101
2102
static reloc_howto_type *
2103
elf32_arm_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2104
           bfd_reloc_code_real_type code)
2105
0
{
2106
0
  unsigned int i;
2107
2108
0
  for (i = 0; i < ARRAY_SIZE (elf32_arm_reloc_map); i ++)
2109
0
    if (elf32_arm_reloc_map[i].bfd_reloc_val == code)
2110
0
      return elf32_arm_howto_from_type (elf32_arm_reloc_map[i].elf_reloc_val);
2111
2112
0
  return NULL;
2113
0
}
2114
2115
static reloc_howto_type *
2116
elf32_arm_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
2117
           const char *r_name)
2118
0
{
2119
0
  unsigned int i;
2120
2121
0
  for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_1); i++)
2122
0
    if (elf32_arm_howto_table_1[i].name != NULL
2123
0
  && strcasecmp (elf32_arm_howto_table_1[i].name, r_name) == 0)
2124
0
      return &elf32_arm_howto_table_1[i];
2125
2126
0
  for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_2); i++)
2127
0
    if (elf32_arm_howto_table_2[i].name != NULL
2128
0
  && strcasecmp (elf32_arm_howto_table_2[i].name, r_name) == 0)
2129
0
      return &elf32_arm_howto_table_2[i];
2130
2131
0
  for (i = 0; i < ARRAY_SIZE (elf32_arm_howto_table_3); i++)
2132
0
    if (elf32_arm_howto_table_3[i].name != NULL
2133
0
  && strcasecmp (elf32_arm_howto_table_3[i].name, r_name) == 0)
2134
0
      return &elf32_arm_howto_table_3[i];
2135
2136
0
  return NULL;
2137
0
}
2138
2139
/* Support for core dump NOTE sections.  */
2140
2141
static bool
2142
elf32_arm_nabi_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
2143
0
{
2144
0
  int offset;
2145
0
  size_t size;
2146
2147
0
  switch (note->descsz)
2148
0
    {
2149
0
      default:
2150
0
  return false;
2151
2152
0
      case 156:         /* Linux/ARM 32-bit, some pre-v5.9 linux kernels.  */
2153
  /* There's a linux kernel bug for CONFIG_BINFMT_ELF_FDPIC=y
2154
     configurations, fixed by v5.9 linux kernel commit 16aead81018c
2155
     ("take fdpic-related parts of elf_prstatus out").
2156
     The bug causes the FDPIC-specific unsigned long fields
2157
     pr_exec_fdpic_loadmap and pr_interp_fdpic_loadmap to be added to
2158
     struct elf_prstatus in case the FDPIC ABI is not used.
2159
     The two fields are added after pr_reg, so just ignore them.  */
2160
2161
  /* Fall through.  */
2162
0
      case 148:   /* Linux/ARM 32-bit.  */
2163
  /* pr_cursig */
2164
0
  elf_tdata (abfd)->core->signal = bfd_get_16 (abfd, note->descdata + 12);
2165
2166
  /* pr_pid */
2167
0
  elf_tdata (abfd)->core->lwpid = bfd_get_32 (abfd, note->descdata + 24);
2168
2169
  /* pr_reg */
2170
0
  offset = 72;
2171
0
  size = 72;
2172
2173
0
  break;
2174
0
    }
2175
2176
  /* Make a ".reg/999" section.  */
2177
0
  return _bfd_elfcore_make_pseudosection (abfd, ".reg",
2178
0
            size, note->descpos + offset);
2179
0
}
2180
2181
static bool
2182
elf32_arm_nabi_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
2183
0
{
2184
0
  switch (note->descsz)
2185
0
    {
2186
0
      default:
2187
0
  return false;
2188
2189
0
      case 124:   /* Linux/ARM elf_prpsinfo.  */
2190
0
  elf_tdata (abfd)->core->pid
2191
0
   = bfd_get_32 (abfd, note->descdata + 12);
2192
0
  elf_tdata (abfd)->core->program
2193
0
   = _bfd_elfcore_strndup (abfd, note->descdata + 28, 16);
2194
0
  elf_tdata (abfd)->core->command
2195
0
   = _bfd_elfcore_strndup (abfd, note->descdata + 44, 80);
2196
0
    }
2197
2198
  /* Note that for some reason, a spurious space is tacked
2199
     onto the end of the args in some (at least one anyway)
2200
     implementations, so strip it off if it exists.  */
2201
0
  {
2202
0
    char *command = elf_tdata (abfd)->core->command;
2203
0
    int n = strlen (command);
2204
2205
0
    if (0 < n && command[n - 1] == ' ')
2206
0
      command[n - 1] = '\0';
2207
0
  }
2208
2209
0
  return true;
2210
0
}
2211
2212
static char *
2213
elf32_arm_nabi_write_core_note (bfd *abfd, char *buf, int *bufsiz,
2214
        int note_type, ...)
2215
0
{
2216
0
  switch (note_type)
2217
0
    {
2218
0
    default:
2219
0
      return NULL;
2220
2221
0
    case NT_PRPSINFO:
2222
0
      {
2223
0
  char data[124] ATTRIBUTE_NONSTRING;
2224
0
  va_list ap;
2225
2226
0
  va_start (ap, note_type);
2227
0
  memset (data, 0, sizeof (data));
2228
0
  strncpy (data + 28, va_arg (ap, const char *), 16);
2229
#if GCC_VERSION == 8000 || GCC_VERSION == 8001
2230
  DIAGNOSTIC_PUSH;
2231
  /* GCC 8.0 and 8.1 warn about 80 equals destination size with
2232
     -Wstringop-truncation:
2233
     https://gcc.gnu.org/bugzilla/show_bug.cgi?id=85643
2234
   */
2235
  DIAGNOSTIC_IGNORE_STRINGOP_TRUNCATION;
2236
#endif
2237
0
  strncpy (data + 44, va_arg (ap, const char *), 80);
2238
#if GCC_VERSION == 8000 || GCC_VERSION == 8001
2239
  DIAGNOSTIC_POP;
2240
#endif
2241
0
  va_end (ap);
2242
2243
0
  return elfcore_write_note (abfd, buf, bufsiz,
2244
0
           "CORE", note_type, data, sizeof (data));
2245
0
      }
2246
2247
0
    case NT_PRSTATUS:
2248
0
      {
2249
0
  char data[148];
2250
0
  va_list ap;
2251
0
  long pid;
2252
0
  int cursig;
2253
0
  const void *greg;
2254
2255
0
  va_start (ap, note_type);
2256
0
  memset (data, 0, sizeof (data));
2257
0
  pid = va_arg (ap, long);
2258
0
  bfd_put_32 (abfd, pid, data + 24);
2259
0
  cursig = va_arg (ap, int);
2260
0
  bfd_put_16 (abfd, cursig, data + 12);
2261
0
  greg = va_arg (ap, const void *);
2262
0
  memcpy (data + 72, greg, 72);
2263
0
  va_end (ap);
2264
2265
0
  return elfcore_write_note (abfd, buf, bufsiz,
2266
0
           "CORE", note_type, data, sizeof (data));
2267
0
      }
2268
0
    }
2269
0
}
2270
2271
#define TARGET_LITTLE_SYM   arm_elf32_le_vec
2272
#define TARGET_LITTLE_NAME    "elf32-littlearm"
2273
#define TARGET_BIG_SYM      arm_elf32_be_vec
2274
#define TARGET_BIG_NAME     "elf32-bigarm"
2275
2276
#define elf_backend_grok_prstatus elf32_arm_nabi_grok_prstatus
2277
#define elf_backend_grok_psinfo   elf32_arm_nabi_grok_psinfo
2278
#define elf_backend_write_core_note elf32_arm_nabi_write_core_note
2279
2280
typedef unsigned long int insn32;
2281
typedef unsigned short int insn16;
2282
2283
/* In lieu of proper flags, assume all EABIv4 or later objects are
2284
   interworkable.  */
2285
#define INTERWORK_FLAG(abfd)  \
2286
0
  (EF_ARM_EABI_VERSION (elf_elfheader (abfd)->e_flags) >= EF_ARM_EABI_VER4 \
2287
0
  || (elf_elfheader (abfd)->e_flags & EF_ARM_INTERWORK) \
2288
0
  || ((abfd)->flags & BFD_LINKER_CREATED))
2289
2290
/* The linker script knows the section names for placement.
2291
   The entry_names are used to do simple name mangling on the stubs.
2292
   Given a function name, and its type, the stub can be found. The
2293
   name can be changed. The only requirement is the %s be present.  */
2294
0
#define THUMB2ARM_GLUE_SECTION_NAME ".glue_7t"
2295
0
#define THUMB2ARM_GLUE_ENTRY_NAME   "__%s_from_thumb"
2296
2297
0
#define ARM2THUMB_GLUE_SECTION_NAME ".glue_7"
2298
0
#define ARM2THUMB_GLUE_ENTRY_NAME   "__%s_from_arm"
2299
2300
0
#define VFP11_ERRATUM_VENEER_SECTION_NAME ".vfp11_veneer"
2301
0
#define VFP11_ERRATUM_VENEER_ENTRY_NAME   "__vfp11_veneer_%x"
2302
2303
0
#define STM32L4XX_ERRATUM_VENEER_SECTION_NAME ".text.stm32l4xx_veneer"
2304
0
#define STM32L4XX_ERRATUM_VENEER_ENTRY_NAME   "__stm32l4xx_veneer_%x"
2305
2306
0
#define ARM_BX_GLUE_SECTION_NAME ".v4_bx"
2307
0
#define ARM_BX_GLUE_ENTRY_NAME   "__bx_r%d"
2308
2309
0
#define STUB_ENTRY_NAME   "__%s_veneer"
2310
2311
0
#define CMSE_PREFIX "__acle_se_"
2312
2313
0
#define CMSE_STUB_NAME ".gnu.sgstubs"
2314
2315
/* The name of the dynamic interpreter.  This is put in the .interp
2316
   section.  */
2317
0
#define ELF_DYNAMIC_INTERPRETER     "/usr/lib/ld.so.1"
2318
2319
/* FDPIC default stack size.  */
2320
0
#define DEFAULT_STACK_SIZE 0x8000
2321
2322
static const unsigned long tls_trampoline [] =
2323
{
2324
  0xe08e0000,   /* add r0, lr, r0 */
2325
  0xe5901004,   /* ldr r1, [r0,#4] */
2326
  0xe12fff11,   /* bx  r1 */
2327
};
2328
2329
static const unsigned long dl_tlsdesc_lazy_trampoline [] =
2330
{
2331
  0xe52d2004, /*  push    {r2}      */
2332
  0xe59f200c, /*      ldr     r2, [pc, #3f - . - 8] */
2333
  0xe59f100c, /*      ldr     r1, [pc, #4f - . - 8] */
2334
  0xe79f2002, /* 1:   ldr     r2, [pc, r2]    */
2335
  0xe081100f, /* 2:   add     r1, pc      */
2336
  0xe12fff12, /*      bx      r2      */
2337
  0x00000014, /* 3:   .word  _GLOBAL_OFFSET_TABLE_ - 1b - 8
2338
        + dl_tlsdesc_lazy_resolver(GOT)   */
2339
  0x00000018, /* 4:   .word  _GLOBAL_OFFSET_TABLE_ - 2b - 8 */
2340
};
2341
2342
/* NOTE: [Thumb nop sequence]
2343
   When adding code that transitions from Thumb to Arm the instruction that
2344
   should be used for the alignment padding should be 0xe7fd (b .-2) instead of
2345
   a nop for performance reasons.  */
2346
2347
/* ARM FDPIC PLT entry.  */
2348
/* The last 5 words contain PLT lazy fragment code and data.  */
2349
static const bfd_vma elf32_arm_fdpic_plt_entry [] =
2350
  {
2351
    0xe59fc008,    /* ldr     r12, .L1 */
2352
    0xe08cc009,    /* add     r12, r12, r9 */
2353
    0xe59c9004,    /* ldr     r9, [r12, #4] */
2354
    0xe59cf000,    /* ldr     pc, [r12] */
2355
    0x00000000,    /* L1.     .word   foo(GOTOFFFUNCDESC) */
2356
    0x00000000,    /* L1.     .word   foo(funcdesc_value_reloc_offset) */
2357
    0xe51fc00c,    /* ldr     r12, [pc, #-12] */
2358
    0xe92d1000,    /* push    {r12} */
2359
    0xe599c004,    /* ldr     r12, [r9, #4] */
2360
    0xe599f000,    /* ldr     pc, [r9] */
2361
  };
2362
2363
/* Thumb FDPIC PLT entry.  */
2364
/* The last 5 words contain PLT lazy fragment code and data.  */
2365
static const bfd_vma elf32_arm_fdpic_thumb_plt_entry [] =
2366
  {
2367
    0xc00cf8df,    /* ldr.w   r12, .L1 */
2368
    0x0c09eb0c,    /* add.w   r12, r12, r9 */
2369
    0x9004f8dc,    /* ldr.w   r9, [r12, #4] */
2370
    0xf000f8dc,    /* ldr.w   pc, [r12] */
2371
    0x00000000,    /* .L1     .word   foo(GOTOFFFUNCDESC) */
2372
    0x00000000,    /* .L2     .word   foo(funcdesc_value_reloc_offset) */
2373
    0xc008f85f,    /* ldr.w   r12, .L2 */
2374
    0xcd04f84d,    /* push    {r12} */
2375
    0xc004f8d9,    /* ldr.w   r12, [r9, #4] */
2376
    0xf000f8d9,    /* ldr.w   pc, [r9] */
2377
  };
2378
2379
#ifdef FOUR_WORD_PLT
2380
2381
/* The first entry in a procedure linkage table looks like
2382
   this.  It is set up so that any shared library function that is
2383
   called before the relocation has been set up calls the dynamic
2384
   linker first.  */
2385
static const bfd_vma elf32_arm_plt0_entry [] =
2386
{
2387
  0xe52de004,   /* str   lr, [sp, #-4]! */
2388
  0xe59fe010,   /* ldr   lr, [pc, #16]  */
2389
  0xe08fe00e,   /* add   lr, pc, lr     */
2390
  0xe5bef008,   /* ldr   pc, [lr, #8]!  */
2391
};
2392
2393
/* Subsequent entries in a procedure linkage table look like
2394
   this.  */
2395
static const bfd_vma elf32_arm_plt_entry [] =
2396
{
2397
  0xe28fc600,   /* add   ip, pc, #NN  */
2398
  0xe28cca00,   /* add   ip, ip, #NN  */
2399
  0xe5bcf000,   /* ldr   pc, [ip, #NN]! */
2400
  0x00000000,   /* unused   */
2401
};
2402
2403
#else /* not FOUR_WORD_PLT */
2404
2405
/* The first entry in a procedure linkage table looks like
2406
   this.  It is set up so that any shared library function that is
2407
   called before the relocation has been set up calls the dynamic
2408
   linker first.  */
2409
static const bfd_vma elf32_arm_plt0_entry [] =
2410
{
2411
  0xe52de004,   /* str   lr, [sp, #-4]! */
2412
  0xe59fe004,   /* ldr   lr, [pc, #4] */
2413
  0xe08fe00e,   /* add   lr, pc, lr */
2414
  0xe5bef008,   /* ldr   pc, [lr, #8]!  */
2415
  0x00000000,   /* &GOT[0] - .    */
2416
};
2417
2418
/* By default subsequent entries in a procedure linkage table look like
2419
   this. Offsets that don't fit into 28 bits will cause link error.  */
2420
static const bfd_vma elf32_arm_plt_entry_short [] =
2421
{
2422
  0xe28fc600,   /* add   ip, pc, #0xNN00000 */
2423
  0xe28cca00,   /* add   ip, ip, #0xNN000   */
2424
  0xe5bcf000,   /* ldr   pc, [ip, #0xNNN]!  */
2425
};
2426
2427
/* When explicitly asked, we'll use this "long" entry format
2428
   which can cope with arbitrary displacements.  */
2429
static const bfd_vma elf32_arm_plt_entry_long [] =
2430
{
2431
  0xe28fc200,   /* add   ip, pc, #0xN0000000 */
2432
  0xe28cc600,   /* add   ip, ip, #0xNN00000  */
2433
  0xe28cca00,   /* add   ip, ip, #0xNN000    */
2434
  0xe5bcf000,   /* ldr   pc, [ip, #0xNNN]!   */
2435
};
2436
2437
static bool elf32_arm_use_long_plt_entry = false;
2438
2439
#endif /* not FOUR_WORD_PLT */
2440
2441
/* The first entry in a procedure linkage table looks like this.
2442
   It is set up so that any shared library function that is called before the
2443
   relocation has been set up calls the dynamic linker first.  */
2444
static const bfd_vma elf32_thumb2_plt0_entry [] =
2445
{
2446
  /* NOTE: As this is a mixture of 16-bit and 32-bit instructions,
2447
     an instruction maybe encoded to one or two array elements.  */
2448
  0xf8dfb500,   /* push    {lr}    */
2449
  0x44fee008,   /* ldr.w   lr, [pc, #8]  */
2450
      /* add     lr, pc  */
2451
  0xff08f85e,   /* ldr.w   pc, [lr, #8]! */
2452
  0x00000000,   /* &GOT[0] - .     */
2453
};
2454
2455
/* Subsequent entries in a procedure linkage table for thumb only target
2456
   look like this.  */
2457
static const bfd_vma elf32_thumb2_plt_entry [] =
2458
{
2459
  /* NOTE: As this is a mixture of 16-bit and 32-bit instructions,
2460
     an instruction maybe encoded to one or two array elements.  */
2461
  0x0c00f240,   /* movw    ip, #0xNNNN    */
2462
  0x0c00f2c0,   /* movt    ip, #0xNNNN    */
2463
  0xf8dc44fc,   /* add     ip, pc   */
2464
  0xe7fcf000    /* ldr.w   pc, [ip]   */
2465
      /* b      .-4     */
2466
};
2467
2468
/* The format of the first entry in the procedure linkage table
2469
   for a VxWorks executable.  */
2470
static const bfd_vma elf32_arm_vxworks_exec_plt0_entry[] =
2471
{
2472
  0xe52dc008,   /* str    ip,[sp,#-8]!      */
2473
  0xe59fc000,   /* ldr    ip,[pc]     */
2474
  0xe59cf008,   /* ldr    pc,[ip,#8]      */
2475
  0x00000000,   /* .long  _GLOBAL_OFFSET_TABLE_   */
2476
};
2477
2478
/* The format of subsequent entries in a VxWorks executable.  */
2479
static const bfd_vma elf32_arm_vxworks_exec_plt_entry[] =
2480
{
2481
  0xe59fc000,       /* ldr  ip,[pc]     */
2482
  0xe59cf000,       /* ldr  pc,[ip]     */
2483
  0x00000000,       /* .long  @got        */
2484
  0xe59fc000,       /* ldr  ip,[pc]     */
2485
  0xea000000,       /* b  _PLT        */
2486
  0x00000000,       /* .long  @pltindex*sizeof(Elf32_Rela)  */
2487
};
2488
2489
/* The format of entries in a VxWorks shared library.  */
2490
static const bfd_vma elf32_arm_vxworks_shared_plt_entry[] =
2491
{
2492
  0xe59fc000,       /* ldr  ip,[pc]     */
2493
  0xe79cf009,       /* ldr  pc,[ip,r9]      */
2494
  0x00000000,       /* .long  @got        */
2495
  0xe59fc000,       /* ldr  ip,[pc]     */
2496
  0xe599f008,       /* ldr  pc,[r9,#8]      */
2497
  0x00000000,       /* .long  @pltindex*sizeof(Elf32_Rela)  */
2498
};
2499
2500
/* An initial stub used if the PLT entry is referenced from Thumb code.  */
2501
0
#define PLT_THUMB_STUB_SIZE 4
2502
static const bfd_vma elf32_arm_plt_thumb_stub [] =
2503
{
2504
  0x4778,   /* bx pc */
2505
  0xe7fd    /* b .-2 */
2506
};
2507
2508
/* PR 28924:
2509
   There was a bug due to too high values of THM_MAX_FWD_BRANCH_OFFSET and
2510
   THM2_MAX_FWD_BRANCH_OFFSET.  The first macro concerns the case when Thumb-2
2511
   is not available, and second macro when Thumb-2 is available.  Among other
2512
   things, they affect the range of branches represented as BLX instructions
2513
   in Encoding T2 defined in Section A8.8.25 of the ARM Architecture
2514
   Reference Manual ARMv7-A and ARMv7-R edition issue C.d.  Such branches are
2515
   specified there to have a maximum forward offset that is a multiple of 4.
2516
   Previously, the respective values defined here were multiples of 2 but not
2517
   4 and they are included in comments for reference.  */
2518
0
#define ARM_MAX_FWD_BRANCH_OFFSET  ((((1 << 23) - 1) << 2) + 8)
2519
0
#define ARM_MAX_BWD_BRANCH_OFFSET ((-((1 << 23) << 2)) + 8)
2520
0
#define THM_MAX_FWD_BRANCH_OFFSET   ((1 << 22) - 4 + 4)
2521
/* #def THM_MAX_FWD_BRANCH_OFFSET   ((1 << 22) - 2 + 4) */
2522
0
#define THM_MAX_BWD_BRANCH_OFFSET  (-(1 << 22) + 4)
2523
0
#define THM2_MAX_FWD_BRANCH_OFFSET (((1 << 24) - 4) + 4)
2524
/* #def THM2_MAX_FWD_BRANCH_OFFSET (((1 << 24) - 2) + 4) */
2525
0
#define THM2_MAX_BWD_BRANCH_OFFSET (-(1 << 24) + 4)
2526
0
#define THM2_MAX_FWD_COND_BRANCH_OFFSET (((1 << 20) -2) + 4)
2527
0
#define THM2_MAX_BWD_COND_BRANCH_OFFSET (-(1 << 20) + 4)
2528
2529
enum stub_insn_type
2530
{
2531
  THUMB16_TYPE = 1,
2532
  THUMB32_TYPE,
2533
  ARM_TYPE,
2534
  DATA_TYPE
2535
};
2536
2537
#define THUMB16_INSN(X)   {(X), THUMB16_TYPE, R_ARM_NONE, 0}
2538
/* A bit of a hack.  A Thumb conditional branch, in which the proper condition
2539
   is inserted in arm_build_one_stub().  */
2540
#define THUMB16_BCOND_INSN(X) {(X), THUMB16_TYPE, R_ARM_NONE, 1}
2541
#define THUMB32_INSN(X)   {(X), THUMB32_TYPE, R_ARM_NONE, 0}
2542
#define THUMB32_MOVT(X)   {(X), THUMB32_TYPE, R_ARM_THM_MOVT_ABS, 0}
2543
#define THUMB32_MOVW(X)   {(X), THUMB32_TYPE, R_ARM_THM_MOVW_ABS_NC, 0}
2544
#define THUMB32_B_INSN(X, Z)  {(X), THUMB32_TYPE, R_ARM_THM_JUMP24, (Z)}
2545
#define ARM_INSN(X)   {(X), ARM_TYPE, R_ARM_NONE, 0}
2546
#define ARM_REL_INSN(X, Z)  {(X), ARM_TYPE, R_ARM_JUMP24, (Z)}
2547
#define DATA_WORD(X,Y,Z)  {(X), DATA_TYPE, (Y), (Z)}
2548
2549
typedef struct
2550
{
2551
  bfd_vma        data;
2552
  enum stub_insn_type  type;
2553
  unsigned int         r_type;
2554
  int          reloc_addend;
2555
}  insn_sequence;
2556
2557
/* See note [Thumb nop sequence] when adding a veneer.  */
2558
2559
/* Arm/Thumb -> Arm/Thumb long branch stub. On V5T and above, use blx
2560
   to reach the stub if necessary.  */
2561
static const insn_sequence elf32_arm_stub_long_branch_any_any[] =
2562
{
2563
  ARM_INSN (0xe51ff004),      /* ldr   pc, [pc, #-4] */
2564
  DATA_WORD (0, R_ARM_ABS32, 0),    /* dcd   R_ARM_ABS32(X) */
2565
};
2566
2567
/* V4T Arm -> Thumb long branch stub. Used on V4T where blx is not
2568
   available.  */
2569
static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb[] =
2570
{
2571
  ARM_INSN (0xe59fc000),      /* ldr   ip, [pc, #0] */
2572
  ARM_INSN (0xe12fff1c),      /* bx    ip */
2573
  DATA_WORD (0, R_ARM_ABS32, 0),    /* dcd   R_ARM_ABS32(X) */
2574
};
2575
2576
/* Thumb -> Thumb long branch stub. Used on M-profile architectures.  */
2577
static const insn_sequence elf32_arm_stub_long_branch_thumb_only[] =
2578
{
2579
  THUMB16_INSN (0xb401),       /* push {r0} */
2580
  THUMB16_INSN (0x4802),       /* ldr  r0, [pc, #8] */
2581
  THUMB16_INSN (0x4684),       /* mov  ip, r0 */
2582
  THUMB16_INSN (0xbc01),       /* pop  {r0} */
2583
  THUMB16_INSN (0x4760),       /* bx   ip */
2584
  THUMB16_INSN (0xbf00),       /* nop */
2585
  DATA_WORD (0, R_ARM_ABS32, 0),     /* dcd  R_ARM_ABS32(X) */
2586
};
2587
2588
/* Thumb -> Thumb long branch stub in thumb2 encoding.  Used on armv7.  */
2589
static const insn_sequence elf32_arm_stub_long_branch_thumb2_only[] =
2590
{
2591
  THUMB32_INSN (0xf85ff000),       /* ldr.w  pc, [pc, #-0] */
2592
  DATA_WORD (0, R_ARM_ABS32, 0),     /* dcd  R_ARM_ABS32(x) */
2593
};
2594
2595
/* Thumb -> Thumb long branch stub. Used for PureCode sections on Thumb2
2596
   M-profile architectures.  */
2597
static const insn_sequence elf32_arm_stub_long_branch_thumb2_only_pure[] =
2598
{
2599
  THUMB32_MOVW (0xf2400c00),       /* mov.w ip, R_ARM_MOVW_ABS_NC */
2600
  THUMB32_MOVT (0xf2c00c00),       /* movt  ip, R_ARM_MOVT_ABS << 16 */
2601
  THUMB16_INSN (0x4760),       /* bx   ip */
2602
  THUMB16_INSN (0xbf00),       /* nop */
2603
  /* The nop is added to ensure alignment of following stubs in the section.  */
2604
};
2605
2606
/* V4T Thumb -> Thumb long branch stub. Using the stack is not
2607
   allowed.  */
2608
static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb[] =
2609
{
2610
  THUMB16_INSN (0x4778),       /* bx   pc */
2611
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2612
  ARM_INSN (0xe59fc000),       /* ldr  ip, [pc, #0] */
2613
  ARM_INSN (0xe12fff1c),       /* bx   ip */
2614
  DATA_WORD (0, R_ARM_ABS32, 0),     /* dcd  R_ARM_ABS32(X) */
2615
};
2616
2617
/* V4T Thumb -> ARM long branch stub. Used on V4T where blx is not
2618
   available.  */
2619
static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm[] =
2620
{
2621
  THUMB16_INSN (0x4778),       /* bx   pc */
2622
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2623
  ARM_INSN (0xe51ff004),       /* ldr   pc, [pc, #-4] */
2624
  DATA_WORD (0, R_ARM_ABS32, 0),     /* dcd   R_ARM_ABS32(X) */
2625
};
2626
2627
/* V4T Thumb -> ARM short branch stub. Shorter variant of the above
2628
   one, when the destination is close enough.  */
2629
static const insn_sequence elf32_arm_stub_short_branch_v4t_thumb_arm[] =
2630
{
2631
  THUMB16_INSN (0x4778),       /* bx   pc */
2632
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2633
  ARM_REL_INSN (0xea000000, -8),     /* b    (X-8) */
2634
};
2635
2636
/* ARM/Thumb -> ARM long branch stub, PIC.  On V5T and above, use
2637
   blx to reach the stub if necessary.  */
2638
static const insn_sequence elf32_arm_stub_long_branch_any_arm_pic[] =
2639
{
2640
  ARM_INSN (0xe59fc000),       /* ldr   ip, [pc] */
2641
  ARM_INSN (0xe08ff00c),       /* add   pc, pc, ip */
2642
  DATA_WORD (0, R_ARM_REL32, -4),    /* dcd   R_ARM_REL32(X-4) */
2643
};
2644
2645
/* ARM/Thumb -> Thumb long branch stub, PIC.  On V5T and above, use
2646
   blx to reach the stub if necessary.  We can not add into pc;
2647
   it is not guaranteed to mode switch (different in ARMv6 and
2648
   ARMv7).  */
2649
static const insn_sequence elf32_arm_stub_long_branch_any_thumb_pic[] =
2650
{
2651
  ARM_INSN (0xe59fc004),       /* ldr   ip, [pc, #4] */
2652
  ARM_INSN (0xe08fc00c),       /* add   ip, pc, ip */
2653
  ARM_INSN (0xe12fff1c),       /* bx    ip */
2654
  DATA_WORD (0, R_ARM_REL32, 0),     /* dcd   R_ARM_REL32(X) */
2655
};
2656
2657
/* V4T ARM -> ARM long branch stub, PIC.  */
2658
static const insn_sequence elf32_arm_stub_long_branch_v4t_arm_thumb_pic[] =
2659
{
2660
  ARM_INSN (0xe59fc004),       /* ldr   ip, [pc, #4] */
2661
  ARM_INSN (0xe08fc00c),       /* add   ip, pc, ip */
2662
  ARM_INSN (0xe12fff1c),       /* bx    ip */
2663
  DATA_WORD (0, R_ARM_REL32, 0),     /* dcd   R_ARM_REL32(X) */
2664
};
2665
2666
/* V4T Thumb -> ARM long branch stub, PIC.  */
2667
static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_arm_pic[] =
2668
{
2669
  THUMB16_INSN (0x4778),       /* bx   pc */
2670
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2671
  ARM_INSN (0xe59fc000),       /* ldr  ip, [pc, #0] */
2672
  ARM_INSN (0xe08cf00f),       /* add  pc, ip, pc */
2673
  DATA_WORD (0, R_ARM_REL32, -4),     /* dcd  R_ARM_REL32(X) */
2674
};
2675
2676
/* Thumb -> Thumb long branch stub, PIC. Used on M-profile
2677
   architectures.  */
2678
static const insn_sequence elf32_arm_stub_long_branch_thumb_only_pic[] =
2679
{
2680
  THUMB16_INSN (0xb401),       /* push {r0} */
2681
  THUMB16_INSN (0x4802),       /* ldr  r0, [pc, #8] */
2682
  THUMB16_INSN (0x46fc),       /* mov  ip, pc */
2683
  THUMB16_INSN (0x4484),       /* add  ip, r0 */
2684
  THUMB16_INSN (0xbc01),       /* pop  {r0} */
2685
  THUMB16_INSN (0x4760),       /* bx   ip */
2686
  DATA_WORD (0, R_ARM_REL32, 4),     /* dcd  R_ARM_REL32(X) */
2687
};
2688
2689
/* V4T Thumb -> Thumb long branch stub, PIC. Using the stack is not
2690
   allowed.  */
2691
static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_thumb_pic[] =
2692
{
2693
  THUMB16_INSN (0x4778),       /* bx   pc */
2694
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2695
  ARM_INSN (0xe59fc004),       /* ldr  ip, [pc, #4] */
2696
  ARM_INSN (0xe08fc00c),       /* add   ip, pc, ip */
2697
  ARM_INSN (0xe12fff1c),       /* bx   ip */
2698
  DATA_WORD (0, R_ARM_REL32, 0),     /* dcd  R_ARM_REL32(X) */
2699
};
2700
2701
/* Thumb2/ARM -> TLS trampoline.  Lowest common denominator, which is a
2702
   long PIC stub.  We can use r1 as a scratch -- and cannot use ip.  */
2703
static const insn_sequence elf32_arm_stub_long_branch_any_tls_pic[] =
2704
{
2705
  ARM_INSN (0xe59f1000),       /* ldr   r1, [pc] */
2706
  ARM_INSN (0xe08ff001),       /* add   pc, pc, r1 */
2707
  DATA_WORD (0, R_ARM_REL32, -4),    /* dcd   R_ARM_REL32(X-4) */
2708
};
2709
2710
/* V4T Thumb -> TLS trampoline.  lowest common denominator, which is a
2711
   long PIC stub.  We can use r1 as a scratch -- and cannot use ip.  */
2712
static const insn_sequence elf32_arm_stub_long_branch_v4t_thumb_tls_pic[] =
2713
{
2714
  THUMB16_INSN (0x4778),       /* bx   pc */
2715
  THUMB16_INSN (0xe7fd),       /* b   .-2 */
2716
  ARM_INSN (0xe59f1000),       /* ldr  r1, [pc, #0] */
2717
  ARM_INSN (0xe081f00f),       /* add  pc, r1, pc */
2718
  DATA_WORD (0, R_ARM_REL32, -4),    /* dcd  R_ARM_REL32(X) */
2719
};
2720
2721
/* Stub used for transition to secure state (aka SG veneer).  */
2722
static const insn_sequence elf32_arm_stub_cmse_branch_thumb_only[] =
2723
{
2724
  THUMB32_INSN (0xe97fe97f),    /* sg.  */
2725
  THUMB32_B_INSN (0xf000b800, -4),  /* b.w original_branch_dest.  */
2726
};
2727
2728
2729
/* Cortex-A8 erratum-workaround stubs.  */
2730
2731
/* Stub used for conditional branches (which may be beyond +/-1MB away, so we
2732
   can't use a conditional branch to reach this stub).  */
2733
2734
static const insn_sequence elf32_arm_stub_a8_veneer_b_cond[] =
2735
{
2736
  THUMB16_BCOND_INSN (0xd001),         /* b<cond>.n true.  */
2737
  THUMB32_B_INSN (0xf000b800, -4),     /* b.w insn_after_original_branch.  */
2738
  THUMB32_B_INSN (0xf000b800, -4)      /* true: b.w original_branch_dest.  */
2739
};
2740
2741
/* Stub used for b.w and bl.w instructions.  */
2742
2743
static const insn_sequence elf32_arm_stub_a8_veneer_b[] =
2744
{
2745
  THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest.  */
2746
};
2747
2748
static const insn_sequence elf32_arm_stub_a8_veneer_bl[] =
2749
{
2750
  THUMB32_B_INSN (0xf000b800, -4) /* b.w original_branch_dest.  */
2751
};
2752
2753
/* Stub used for Thumb-2 blx.w instructions.  We modified the original blx.w
2754
   instruction (which switches to ARM mode) to point to this stub.  Jump to the
2755
   real destination using an ARM-mode branch.  */
2756
2757
static const insn_sequence elf32_arm_stub_a8_veneer_blx[] =
2758
{
2759
  ARM_REL_INSN (0xea000000, -8) /* b original_branch_dest.  */
2760
};
2761
2762
/* For each section group there can be a specially created linker section
2763
   to hold the stubs for that group.  The name of the stub section is based
2764
   upon the name of another section within that group with the suffix below
2765
   applied.
2766
2767
   PR 13049: STUB_SUFFIX used to be ".stub", but this allowed the user to
2768
   create what appeared to be a linker stub section when it actually
2769
   contained user code/data.  For example, consider this fragment:
2770
2771
     const char * stubborn_problems[] = { "np" };
2772
2773
   If this is compiled with "-fPIC -fdata-sections" then gcc produces a
2774
   section called:
2775
2776
     .data.rel.local.stubborn_problems
2777
2778
   This then causes problems in arm32_arm_build_stubs() as it triggers:
2779
2780
      // Ignore non-stub sections.
2781
      if (!strstr (stub_sec->name, STUB_SUFFIX))
2782
  continue;
2783
2784
   And so the section would be ignored instead of being processed.  Hence
2785
   the change in definition of STUB_SUFFIX to a name that cannot be a valid
2786
   C identifier.  */
2787
0
#define STUB_SUFFIX ".__stub"
2788
2789
/* One entry per long/short branch stub defined above.  */
2790
#define DEF_STUBS \
2791
  DEF_STUB (long_branch_any_any)  \
2792
  DEF_STUB (long_branch_v4t_arm_thumb) \
2793
  DEF_STUB (long_branch_thumb_only) \
2794
  DEF_STUB (long_branch_v4t_thumb_thumb)  \
2795
  DEF_STUB (long_branch_v4t_thumb_arm) \
2796
  DEF_STUB (short_branch_v4t_thumb_arm) \
2797
  DEF_STUB (long_branch_any_arm_pic) \
2798
  DEF_STUB (long_branch_any_thumb_pic) \
2799
  DEF_STUB (long_branch_v4t_thumb_thumb_pic) \
2800
  DEF_STUB (long_branch_v4t_arm_thumb_pic) \
2801
  DEF_STUB (long_branch_v4t_thumb_arm_pic) \
2802
  DEF_STUB (long_branch_thumb_only_pic) \
2803
  DEF_STUB (long_branch_any_tls_pic) \
2804
  DEF_STUB (long_branch_v4t_thumb_tls_pic) \
2805
  DEF_STUB (cmse_branch_thumb_only) \
2806
  DEF_STUB (a8_veneer_b_cond) \
2807
  DEF_STUB (a8_veneer_b) \
2808
  DEF_STUB (a8_veneer_bl) \
2809
  DEF_STUB (a8_veneer_blx) \
2810
  DEF_STUB (long_branch_thumb2_only) \
2811
  DEF_STUB (long_branch_thumb2_only_pure)
2812
2813
#define DEF_STUB(x) arm_stub_##x,
2814
enum elf32_arm_stub_type
2815
{
2816
  arm_stub_none,
2817
  DEF_STUBS
2818
  max_stub_type
2819
};
2820
#undef DEF_STUB
2821
2822
/* Note the first a8_veneer type.  */
2823
const unsigned arm_stub_a8_veneer_lwm = arm_stub_a8_veneer_b_cond;
2824
2825
typedef struct
2826
{
2827
  const insn_sequence* template_sequence;
2828
  int template_size;
2829
} stub_def;
2830
2831
#define DEF_STUB(x) {elf32_arm_stub_##x, ARRAY_SIZE(elf32_arm_stub_##x)},
2832
static const stub_def stub_definitions[] =
2833
{
2834
  {NULL, 0},
2835
  DEF_STUBS
2836
};
2837
2838
struct elf32_arm_stub_hash_entry
2839
{
2840
  /* Base hash table entry structure.  */
2841
  struct bfd_hash_entry root;
2842
2843
  /* The stub section.  */
2844
  asection *stub_sec;
2845
2846
  /* Offset within stub_sec of the beginning of this stub.  */
2847
  bfd_vma stub_offset;
2848
2849
  /* Given the symbol's value and its section we can determine its final
2850
     value when building the stubs (so the stub knows where to jump).  */
2851
  bfd_vma target_value;
2852
  asection *target_section;
2853
2854
  /* Same as above but for the source of the branch to the stub.  Used for
2855
     Cortex-A8 erratum workaround to patch it to branch to the stub.  As
2856
     such, source section does not need to be recorded since Cortex-A8 erratum
2857
     workaround stubs are only generated when both source and target are in the
2858
     same section.  */
2859
  bfd_vma source_value;
2860
2861
  /* The instruction which caused this stub to be generated (only valid for
2862
     Cortex-A8 erratum workaround stubs at present).  */
2863
  unsigned long orig_insn;
2864
2865
  /* The stub type.  */
2866
  enum elf32_arm_stub_type stub_type;
2867
  /* Its encoding size in bytes.  */
2868
  int stub_size;
2869
  /* Its template.  */
2870
  const insn_sequence *stub_template;
2871
  /* The size of the template (number of entries).  */
2872
  int stub_template_size;
2873
2874
  /* The symbol table entry, if any, that this was derived from.  */
2875
  struct elf32_arm_link_hash_entry *h;
2876
2877
  /* Type of branch.  */
2878
  enum arm_st_branch_type branch_type;
2879
2880
  /* Where this stub is being called from, or, in the case of combined
2881
     stub sections, the first input section in the group.  */
2882
  asection *id_sec;
2883
2884
  /* The name for the local symbol at the start of this stub.  The
2885
     stub name in the hash table has to be unique; this does not, so
2886
     it can be friendlier.  */
2887
  char *output_name;
2888
};
2889
2890
/* Used to build a map of a section.  This is required for mixed-endian
2891
   code/data.  */
2892
2893
typedef struct elf32_elf_section_map
2894
{
2895
  bfd_vma vma;
2896
  char type;
2897
}
2898
elf32_arm_section_map;
2899
2900
/* Information about a VFP11 erratum veneer, or a branch to such a veneer.  */
2901
2902
typedef enum
2903
{
2904
  VFP11_ERRATUM_BRANCH_TO_ARM_VENEER,
2905
  VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER,
2906
  VFP11_ERRATUM_ARM_VENEER,
2907
  VFP11_ERRATUM_THUMB_VENEER
2908
}
2909
elf32_vfp11_erratum_type;
2910
2911
typedef struct elf32_vfp11_erratum_list
2912
{
2913
  struct elf32_vfp11_erratum_list *next;
2914
  bfd_vma vma;
2915
  union
2916
  {
2917
    struct
2918
    {
2919
      struct elf32_vfp11_erratum_list *veneer;
2920
      unsigned int vfp_insn;
2921
    } b;
2922
    struct
2923
    {
2924
      struct elf32_vfp11_erratum_list *branch;
2925
      unsigned int id;
2926
    } v;
2927
  } u;
2928
  elf32_vfp11_erratum_type type;
2929
}
2930
elf32_vfp11_erratum_list;
2931
2932
/* Information about a STM32L4XX erratum veneer, or a branch to such a
2933
   veneer.  */
2934
typedef enum
2935
{
2936
  STM32L4XX_ERRATUM_BRANCH_TO_VENEER,
2937
  STM32L4XX_ERRATUM_VENEER
2938
}
2939
elf32_stm32l4xx_erratum_type;
2940
2941
typedef struct elf32_stm32l4xx_erratum_list
2942
{
2943
  struct elf32_stm32l4xx_erratum_list *next;
2944
  bfd_vma vma;
2945
  union
2946
  {
2947
    struct
2948
    {
2949
      struct elf32_stm32l4xx_erratum_list *veneer;
2950
      unsigned int insn;
2951
    } b;
2952
    struct
2953
    {
2954
      struct elf32_stm32l4xx_erratum_list *branch;
2955
      unsigned int id;
2956
    } v;
2957
  } u;
2958
  elf32_stm32l4xx_erratum_type type;
2959
}
2960
elf32_stm32l4xx_erratum_list;
2961
2962
typedef enum
2963
{
2964
  DELETE_EXIDX_ENTRY,
2965
  INSERT_EXIDX_CANTUNWIND_AT_END
2966
}
2967
arm_unwind_edit_type;
2968
2969
/* A (sorted) list of edits to apply to an unwind table.  */
2970
typedef struct arm_unwind_table_edit
2971
{
2972
  arm_unwind_edit_type type;
2973
  /* Note: we sometimes want to insert an unwind entry corresponding to a
2974
     section different from the one we're currently writing out, so record the
2975
     (text) section this edit relates to here.  */
2976
  asection *linked_section;
2977
  unsigned int index;
2978
  struct arm_unwind_table_edit *next;
2979
}
2980
arm_unwind_table_edit;
2981
2982
typedef struct _arm_elf_section_data
2983
{
2984
  /* Information about mapping symbols.  */
2985
  struct bfd_elf_section_data elf;
2986
  unsigned int mapcount;
2987
  unsigned int mapsize;
2988
  elf32_arm_section_map *map;
2989
  /* Information about CPU errata.  */
2990
  unsigned int erratumcount;
2991
  elf32_vfp11_erratum_list *erratumlist;
2992
  unsigned int stm32l4xx_erratumcount;
2993
  elf32_stm32l4xx_erratum_list *stm32l4xx_erratumlist;
2994
  unsigned int additional_reloc_count;
2995
  /* Information about unwind tables.  */
2996
  union
2997
  {
2998
    /* Unwind info attached to a text section.  */
2999
    struct
3000
    {
3001
      asection *arm_exidx_sec;
3002
    } text;
3003
3004
    /* Unwind info attached to an .ARM.exidx section.  */
3005
    struct
3006
    {
3007
      arm_unwind_table_edit *unwind_edit_list;
3008
      arm_unwind_table_edit *unwind_edit_tail;
3009
    } exidx;
3010
  } u;
3011
}
3012
_arm_elf_section_data;
3013
3014
#define elf32_arm_section_data(sec) \
3015
0
  ((_arm_elf_section_data *) elf_section_data (sec))
3016
3017
/* A fix which might be required for Cortex-A8 Thumb-2 branch/TLB erratum.
3018
   These fixes are subject to a relaxation procedure (in elf32_arm_size_stubs),
3019
   so may be created multiple times: we use an array of these entries whilst
3020
   relaxing which we can refresh easily, then create stubs for each potentially
3021
   erratum-triggering instruction once we've settled on a solution.  */
3022
3023
struct a8_erratum_fix
3024
{
3025
  bfd *input_bfd;
3026
  asection *section;
3027
  bfd_vma offset;
3028
  bfd_vma target_offset;
3029
  unsigned long orig_insn;
3030
  char *stub_name;
3031
  enum elf32_arm_stub_type stub_type;
3032
  enum arm_st_branch_type branch_type;
3033
};
3034
3035
/* A table of relocs applied to branches which might trigger Cortex-A8
3036
   erratum.  */
3037
3038
struct a8_erratum_reloc
3039
{
3040
  bfd_vma from;
3041
  bfd_vma destination;
3042
  struct elf32_arm_link_hash_entry *hash;
3043
  const char *sym_name;
3044
  unsigned int r_type;
3045
  enum arm_st_branch_type branch_type;
3046
  bool non_a8_stub;
3047
};
3048
3049
/* The size of the thread control block.  */
3050
#define TCB_SIZE  8
3051
3052
/* ARM-specific information about a PLT entry, over and above the usual
3053
   gotplt_union.  */
3054
struct arm_plt_info
3055
{
3056
  /* We reference count Thumb references to a PLT entry separately,
3057
     so that we can emit the Thumb trampoline only if needed.  */
3058
  bfd_signed_vma thumb_refcount;
3059
3060
  /* Some references from Thumb code may be eliminated by BL->BLX
3061
     conversion, so record them separately.  */
3062
  bfd_signed_vma maybe_thumb_refcount;
3063
3064
  /* How many of the recorded PLT accesses were from non-call relocations.
3065
     This information is useful when deciding whether anything takes the
3066
     address of an STT_GNU_IFUNC PLT.  A value of 0 means that all
3067
     non-call references to the function should resolve directly to the
3068
     real runtime target.  */
3069
  unsigned int noncall_refcount;
3070
3071
  /* Since PLT entries have variable size if the Thumb prologue is
3072
     used, we need to record the index into .got.plt instead of
3073
     recomputing it from the PLT offset.  */
3074
  bfd_signed_vma got_offset;
3075
};
3076
3077
/* Information about an .iplt entry for a local STT_GNU_IFUNC symbol.  */
3078
struct arm_local_iplt_info
3079
{
3080
  /* The information that is usually found in the generic ELF part of
3081
     the hash table entry.  */
3082
  union gotplt_union root;
3083
3084
  /* The information that is usually found in the ARM-specific part of
3085
     the hash table entry.  */
3086
  struct arm_plt_info arm;
3087
3088
  /* A list of all potential dynamic relocations against this symbol.  */
3089
  struct elf_dyn_relocs *dyn_relocs;
3090
};
3091
3092
/* Structure to handle FDPIC support for local functions.  */
3093
struct fdpic_local
3094
{
3095
  unsigned int funcdesc_cnt;
3096
  unsigned int gotofffuncdesc_cnt;
3097
  int funcdesc_offset;
3098
};
3099
3100
struct elf_arm_obj_tdata
3101
{
3102
  struct elf_obj_tdata root;
3103
3104
  /* Zero to warn when linking objects with incompatible enum sizes.  */
3105
  int no_enum_size_warning;
3106
3107
  /* Zero to warn when linking objects with incompatible wchar_t sizes.  */
3108
  int no_wchar_size_warning;
3109
3110
  /* The number of entries in each of the arrays in this strcuture.
3111
     Used to avoid buffer overruns.  */
3112
  bfd_size_type num_entries;
3113
3114
  /* tls_type for each local got entry.  */
3115
  char *local_got_tls_type;
3116
3117
  /* GOTPLT entries for TLS descriptors.  */
3118
  bfd_vma *local_tlsdesc_gotent;
3119
3120
  /* Information for local symbols that need entries in .iplt.  */
3121
  struct arm_local_iplt_info **local_iplt;
3122
3123
  /* Maintains FDPIC counters and funcdesc info.  */
3124
  struct fdpic_local *local_fdpic_cnts;
3125
};
3126
3127
#define elf_arm_tdata(bfd) \
3128
0
  ((struct elf_arm_obj_tdata *) (bfd)->tdata.any)
3129
3130
#define elf32_arm_num_entries(bfd) \
3131
0
  (elf_arm_tdata (bfd)->num_entries)
3132
3133
#define elf32_arm_local_got_tls_type(bfd) \
3134
0
  (elf_arm_tdata (bfd)->local_got_tls_type)
3135
3136
#define elf32_arm_local_tlsdesc_gotent(bfd) \
3137
0
  (elf_arm_tdata (bfd)->local_tlsdesc_gotent)
3138
3139
#define elf32_arm_local_iplt(bfd) \
3140
0
  (elf_arm_tdata (bfd)->local_iplt)
3141
3142
#define elf32_arm_local_fdpic_cnts(bfd) \
3143
0
  (elf_arm_tdata (bfd)->local_fdpic_cnts)
3144
3145
#define is_arm_elf(bfd) \
3146
0
  (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
3147
0
   && elf_tdata (bfd) != NULL \
3148
0
   && elf_object_id (bfd) == ARM_ELF_DATA)
3149
3150
static bool
3151
elf32_arm_mkobject (bfd *abfd)
3152
84.3k
{
3153
84.3k
  return bfd_elf_allocate_object (abfd, sizeof (struct elf_arm_obj_tdata));
3154
84.3k
}
3155
3156
0
#define elf32_arm_hash_entry(ent) ((struct elf32_arm_link_hash_entry *)(ent))
3157
3158
/* Structure to handle FDPIC support for extern functions.  */
3159
struct fdpic_global {
3160
  unsigned int gotofffuncdesc_cnt;
3161
  unsigned int gotfuncdesc_cnt;
3162
  unsigned int funcdesc_cnt;
3163
  int funcdesc_offset;
3164
  int gotfuncdesc_offset;
3165
};
3166
3167
/* Arm ELF linker hash entry.  */
3168
struct elf32_arm_link_hash_entry
3169
{
3170
  struct elf_link_hash_entry root;
3171
3172
  /* ARM-specific PLT information.  */
3173
  struct arm_plt_info plt;
3174
3175
0
#define GOT_UNKNOWN 0
3176
0
#define GOT_NORMAL  1
3177
0
#define GOT_TLS_GD  2
3178
0
#define GOT_TLS_IE  4
3179
0
#define GOT_TLS_GDESC 8
3180
0
#define GOT_TLS_GD_ANY_P(type)  ((type & GOT_TLS_GD) || (type & GOT_TLS_GDESC))
3181
  unsigned int tls_type : 8;
3182
3183
  /* True if the symbol's PLT entry is in .iplt rather than .plt.  */
3184
  unsigned int is_iplt : 1;
3185
3186
  unsigned int unused : 23;
3187
3188
  /* Offset of the GOTPLT entry reserved for the TLS descriptor,
3189
     starting at the end of the jump table.  */
3190
  bfd_vma tlsdesc_got;
3191
3192
  /* The symbol marking the real symbol location for exported thumb
3193
     symbols with Arm stubs.  */
3194
  struct elf_link_hash_entry *export_glue;
3195
3196
  /* A pointer to the most recently used stub hash entry against this
3197
     symbol.  */
3198
  struct elf32_arm_stub_hash_entry *stub_cache;
3199
3200
  /* Counter for FDPIC relocations against this symbol.  */
3201
  struct fdpic_global fdpic_cnts;
3202
};
3203
3204
/* Traverse an arm ELF linker hash table.  */
3205
#define elf32_arm_link_hash_traverse(table, func, info)     \
3206
  (elf_link_hash_traverse           \
3207
   (&(table)->root,             \
3208
    (bool (*) (struct elf_link_hash_entry *, void *)) (func),   \
3209
    (info)))
3210
3211
/* Get the ARM elf linker hash table from a link_info structure.  */
3212
#define elf32_arm_hash_table(p) \
3213
0
  ((is_elf_hash_table ((p)->hash)          \
3214
0
    && elf_hash_table_id (elf_hash_table (p)) == ARM_ELF_DATA)   \
3215
0
   ? (struct elf32_arm_link_hash_table *) (p)->hash : NULL)
3216
3217
#define arm_stub_hash_lookup(table, string, create, copy) \
3218
0
  ((struct elf32_arm_stub_hash_entry *) \
3219
0
   bfd_hash_lookup ((table), (string), (create), (copy)))
3220
3221
/* Array to keep track of which stub sections have been created, and
3222
   information on stub grouping.  */
3223
struct map_stub
3224
{
3225
  /* This is the section to which stubs in the group will be
3226
     attached.  */
3227
  asection *link_sec;
3228
  /* The stub section.  */
3229
  asection *stub_sec;
3230
};
3231
3232
#define elf32_arm_compute_jump_table_size(htab) \
3233
0
  ((htab)->next_tls_desc_index * 4)
3234
3235
/* ARM ELF linker hash table.  */
3236
struct elf32_arm_link_hash_table
3237
{
3238
  /* The main hash table.  */
3239
  struct elf_link_hash_table root;
3240
3241
  /* The size in bytes of the section containing the Thumb-to-ARM glue.  */
3242
  bfd_size_type thumb_glue_size;
3243
3244
  /* The size in bytes of the section containing the ARM-to-Thumb glue.  */
3245
  bfd_size_type arm_glue_size;
3246
3247
  /* The size in bytes of section containing the ARMv4 BX veneers.  */
3248
  bfd_size_type bx_glue_size;
3249
3250
  /* Offsets of ARMv4 BX veneers.  Bit1 set if present, and Bit0 set when
3251
     veneer has been populated.  */
3252
  bfd_vma bx_glue_offset[15];
3253
3254
  /* The size in bytes of the section containing glue for VFP11 erratum
3255
     veneers.  */
3256
  bfd_size_type vfp11_erratum_glue_size;
3257
3258
 /* The size in bytes of the section containing glue for STM32L4XX erratum
3259
     veneers.  */
3260
  bfd_size_type stm32l4xx_erratum_glue_size;
3261
3262
  /* A table of fix locations for Cortex-A8 Thumb-2 branch/TLB erratum.  This
3263
     holds Cortex-A8 erratum fix locations between elf32_arm_size_stubs() and
3264
     elf32_arm_write_section().  */
3265
  struct a8_erratum_fix *a8_erratum_fixes;
3266
  unsigned int num_a8_erratum_fixes;
3267
3268
  /* An arbitrary input BFD chosen to hold the glue sections.  */
3269
  bfd * bfd_of_glue_owner;
3270
3271
  /* Nonzero to output a BE8 image.  */
3272
  int byteswap_code;
3273
3274
  /* Zero if R_ARM_TARGET1 means R_ARM_ABS32.
3275
     Nonzero if R_ARM_TARGET1 means R_ARM_REL32.  */
3276
  int target1_is_rel;
3277
3278
  /* The relocation to use for R_ARM_TARGET2 relocations.  */
3279
  int target2_reloc;
3280
3281
  /* 0 = Ignore R_ARM_V4BX.
3282
     1 = Convert BX to MOV PC.
3283
     2 = Generate v4 interworing stubs.  */
3284
  int fix_v4bx;
3285
3286
  /* Whether we should fix the Cortex-A8 Thumb-2 branch/TLB erratum.  */
3287
  int fix_cortex_a8;
3288
3289
  /* Whether we should fix the ARM1176 BLX immediate issue.  */
3290
  int fix_arm1176;
3291
3292
  /* Nonzero if the ARM/Thumb BLX instructions are available for use.  */
3293
  int use_blx;
3294
3295
  /* What sort of code sequences we should look for which may trigger the
3296
     VFP11 denorm erratum.  */
3297
  bfd_arm_vfp11_fix vfp11_fix;
3298
3299
  /* Global counter for the number of fixes we have emitted.  */
3300
  int num_vfp11_fixes;
3301
3302
  /* What sort of code sequences we should look for which may trigger the
3303
     STM32L4XX erratum.  */
3304
  bfd_arm_stm32l4xx_fix stm32l4xx_fix;
3305
3306
  /* Global counter for the number of fixes we have emitted.  */
3307
  int num_stm32l4xx_fixes;
3308
3309
  /* Nonzero to force PIC branch veneers.  */
3310
  int pic_veneer;
3311
3312
  /* The number of bytes in the initial entry in the PLT.  */
3313
  bfd_size_type plt_header_size;
3314
3315
  /* The number of bytes in the subsequent PLT etries.  */
3316
  bfd_size_type plt_entry_size;
3317
3318
  /* True if the target uses REL relocations.  */
3319
  bool use_rel;
3320
3321
  /* Nonzero if import library must be a secure gateway import library
3322
     as per ARMv8-M Security Extensions.  */
3323
  int cmse_implib;
3324
3325
  /* The import library whose symbols' address must remain stable in
3326
     the import library generated.  */
3327
  bfd *in_implib_bfd;
3328
3329
  /* The index of the next unused R_ARM_TLS_DESC slot in .rel.plt.  */
3330
  bfd_vma next_tls_desc_index;
3331
3332
  /* How many R_ARM_TLS_DESC relocations were generated so far.  */
3333
  bfd_vma num_tls_desc;
3334
3335
  /* The (unloaded but important) VxWorks .rela.plt.unloaded section.  */
3336
  asection *srelplt2;
3337
3338
  /* Offset in .plt section of tls_arm_trampoline.  */
3339
  bfd_vma tls_trampoline;
3340
3341
  /* Data for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations.  */
3342
  union
3343
  {
3344
    bfd_signed_vma refcount;
3345
    bfd_vma offset;
3346
  } tls_ldm_got;
3347
3348
  /* For convenience in allocate_dynrelocs.  */
3349
  bfd * obfd;
3350
3351
  /* The amount of space used by the reserved portion of the sgotplt
3352
     section, plus whatever space is used by the jump slots.  */
3353
  bfd_vma sgotplt_jump_table_size;
3354
3355
  /* The stub hash table.  */
3356
  struct bfd_hash_table stub_hash_table;
3357
3358
  /* Linker stub bfd.  */
3359
  bfd *stub_bfd;
3360
3361
  /* Linker call-backs.  */
3362
  asection * (*add_stub_section) (const char *, asection *, asection *,
3363
          unsigned int);
3364
  void (*layout_sections_again) (void);
3365
3366
  /* Array to keep track of which stub sections have been created, and
3367
     information on stub grouping.  */
3368
  struct map_stub *stub_group;
3369
3370
  /* Input stub section holding secure gateway veneers.  */
3371
  asection *cmse_stub_sec;
3372
3373
  /* Offset in cmse_stub_sec where new SG veneers (not in input import library)
3374
     start to be allocated.  */
3375
  bfd_vma new_cmse_stub_offset;
3376
3377
  /* Number of elements in stub_group.  */
3378
  unsigned int top_id;
3379
3380
  /* Assorted information used by elf32_arm_size_stubs.  */
3381
  unsigned int bfd_count;
3382
  unsigned int top_index;
3383
  asection **input_list;
3384
3385
  /* True if the target system uses FDPIC. */
3386
  int fdpic_p;
3387
3388
  /* Fixup section. Used for FDPIC.  */
3389
  asection *srofixup;
3390
};
3391
3392
/* Add an FDPIC read-only fixup.  */
3393
static void
3394
arm_elf_add_rofixup (bfd *output_bfd, asection *srofixup, bfd_vma offset)
3395
0
{
3396
0
  bfd_vma fixup_offset;
3397
3398
0
  fixup_offset = srofixup->reloc_count++ * 4;
3399
0
  BFD_ASSERT (fixup_offset < srofixup->size);
3400
0
  bfd_put_32 (output_bfd, offset, srofixup->contents + fixup_offset);
3401
0
}
3402
3403
static inline int
3404
ctz (unsigned int mask)
3405
0
{
3406
0
#if GCC_VERSION >= 3004
3407
0
  return __builtin_ctz (mask);
3408
#else
3409
  unsigned int i;
3410
3411
  for (i = 0; i < 8 * sizeof (mask); i++)
3412
    {
3413
      if (mask & 0x1)
3414
  break;
3415
      mask = (mask >> 1);
3416
    }
3417
  return i;
3418
#endif
3419
0
}
3420
3421
static inline int
3422
elf32_arm_popcount (unsigned int mask)
3423
0
{
3424
0
#if GCC_VERSION >= 3004
3425
0
  return __builtin_popcount (mask);
3426
#else
3427
  unsigned int i;
3428
  int sum = 0;
3429
3430
  for (i = 0; i < 8 * sizeof (mask); i++)
3431
    {
3432
      if (mask & 0x1)
3433
  sum++;
3434
      mask = (mask >> 1);
3435
    }
3436
  return sum;
3437
#endif
3438
0
}
3439
3440
static void elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
3441
            asection *sreloc, Elf_Internal_Rela *rel);
3442
3443
static void
3444
arm_elf_fill_funcdesc (bfd *output_bfd,
3445
           struct bfd_link_info *info,
3446
           int *funcdesc_offset,
3447
           int dynindx,
3448
           int offset,
3449
           bfd_vma addr,
3450
           bfd_vma dynreloc_value,
3451
           bfd_vma seg)
3452
0
{
3453
0
  if ((*funcdesc_offset & 1) == 0)
3454
0
    {
3455
0
      struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
3456
0
      asection *sgot = globals->root.sgot;
3457
3458
0
      if (bfd_link_pic (info))
3459
0
  {
3460
0
    asection *srelgot = globals->root.srelgot;
3461
0
    Elf_Internal_Rela outrel;
3462
3463
0
    outrel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
3464
0
    outrel.r_offset = sgot->output_section->vma + sgot->output_offset + offset;
3465
0
    outrel.r_addend = 0;
3466
3467
0
    elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
3468
0
    bfd_put_32 (output_bfd, addr, sgot->contents + offset);
3469
0
    bfd_put_32 (output_bfd, seg, sgot->contents + offset + 4);
3470
0
  }
3471
0
      else
3472
0
  {
3473
0
    struct elf_link_hash_entry *hgot = globals->root.hgot;
3474
0
    bfd_vma got_value = hgot->root.u.def.value
3475
0
      + hgot->root.u.def.section->output_section->vma
3476
0
      + hgot->root.u.def.section->output_offset;
3477
3478
0
    arm_elf_add_rofixup (output_bfd, globals->srofixup,
3479
0
             sgot->output_section->vma + sgot->output_offset
3480
0
             + offset);
3481
0
    arm_elf_add_rofixup (output_bfd, globals->srofixup,
3482
0
             sgot->output_section->vma + sgot->output_offset
3483
0
             + offset + 4);
3484
0
    bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + offset);
3485
0
    bfd_put_32 (output_bfd, got_value, sgot->contents + offset + 4);
3486
0
  }
3487
0
      *funcdesc_offset |= 1;
3488
0
    }
3489
0
}
3490
3491
/* Create an entry in an ARM ELF linker hash table.  */
3492
3493
static struct bfd_hash_entry *
3494
elf32_arm_link_hash_newfunc (struct bfd_hash_entry * entry,
3495
           struct bfd_hash_table * table,
3496
           const char * string)
3497
0
{
3498
0
  struct elf32_arm_link_hash_entry * ret =
3499
0
    (struct elf32_arm_link_hash_entry *) entry;
3500
3501
  /* Allocate the structure if it has not already been allocated by a
3502
     subclass.  */
3503
0
  if (ret == NULL)
3504
0
    ret = (struct elf32_arm_link_hash_entry *)
3505
0
  bfd_hash_allocate (table, sizeof (struct elf32_arm_link_hash_entry));
3506
0
  if (ret == NULL)
3507
0
    return (struct bfd_hash_entry *) ret;
3508
3509
  /* Call the allocation method of the superclass.  */
3510
0
  ret = ((struct elf32_arm_link_hash_entry *)
3511
0
   _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
3512
0
             table, string));
3513
0
  if (ret != NULL)
3514
0
    {
3515
0
      ret->tls_type = GOT_UNKNOWN;
3516
0
      ret->tlsdesc_got = (bfd_vma) -1;
3517
0
      ret->plt.thumb_refcount = 0;
3518
0
      ret->plt.maybe_thumb_refcount = 0;
3519
0
      ret->plt.noncall_refcount = 0;
3520
0
      ret->plt.got_offset = -1;
3521
0
      ret->is_iplt = false;
3522
0
      ret->export_glue = NULL;
3523
3524
0
      ret->stub_cache = NULL;
3525
3526
0
      ret->fdpic_cnts.gotofffuncdesc_cnt = 0;
3527
0
      ret->fdpic_cnts.gotfuncdesc_cnt = 0;
3528
0
      ret->fdpic_cnts.funcdesc_cnt = 0;
3529
0
      ret->fdpic_cnts.funcdesc_offset = -1;
3530
0
      ret->fdpic_cnts.gotfuncdesc_offset = -1;
3531
0
    }
3532
3533
0
  return (struct bfd_hash_entry *) ret;
3534
0
}
3535
3536
/* Ensure that we have allocated bookkeeping structures for ABFD's local
3537
   symbols.  */
3538
3539
static bool
3540
elf32_arm_allocate_local_sym_info (bfd *abfd)
3541
0
{
3542
0
  if (elf_local_got_refcounts (abfd) == NULL)
3543
0
    {
3544
0
      bfd_size_type num_syms;
3545
3546
0
      elf32_arm_num_entries (abfd) = 0;
3547
3548
      /* Whilst it might be tempting to allocate a single block of memory and
3549
   then divide it up amoungst the arrays in the elf_arm_obj_tdata
3550
   structure, this interferes with the work of memory checkers looking
3551
   for buffer overruns.  So allocate each array individually.  */
3552
3553
0
      num_syms = elf_symtab_hdr (abfd).sh_info;
3554
3555
0
      elf_local_got_refcounts (abfd) = bfd_zalloc
3556
0
  (abfd, num_syms * sizeof (* elf_local_got_refcounts (abfd)));
3557
3558
0
      if (elf_local_got_refcounts (abfd) == NULL)
3559
0
  return false;
3560
3561
0
      elf32_arm_local_tlsdesc_gotent (abfd) = bfd_zalloc
3562
0
  (abfd, num_syms * sizeof (* elf32_arm_local_tlsdesc_gotent (abfd)));
3563
3564
0
      if (elf32_arm_local_tlsdesc_gotent (abfd) == NULL)
3565
0
  return false;
3566
3567
0
      elf32_arm_local_iplt (abfd) = bfd_zalloc
3568
0
  (abfd, num_syms * sizeof (* elf32_arm_local_iplt (abfd)));
3569
3570
0
      if (elf32_arm_local_iplt (abfd) == NULL)
3571
0
  return false;
3572
3573
0
      elf32_arm_local_fdpic_cnts (abfd) = bfd_zalloc
3574
0
  (abfd, num_syms * sizeof (* elf32_arm_local_fdpic_cnts (abfd)));
3575
3576
0
      if (elf32_arm_local_fdpic_cnts (abfd) == NULL)
3577
0
  return false;
3578
3579
0
      elf32_arm_local_got_tls_type (abfd) = bfd_zalloc
3580
0
  (abfd, num_syms * sizeof (* elf32_arm_local_got_tls_type (abfd)));
3581
3582
0
      if (elf32_arm_local_got_tls_type (abfd) == NULL)
3583
0
  return false;
3584
3585
0
      elf32_arm_num_entries (abfd) = num_syms;
3586
3587
0
#if GCC_VERSION >= 3000
3588
0
      BFD_ASSERT (__alignof__ (*elf32_arm_local_tlsdesc_gotent (abfd))
3589
0
      <= __alignof__ (*elf_local_got_refcounts (abfd)));
3590
0
      BFD_ASSERT (__alignof__ (*elf32_arm_local_iplt (abfd))
3591
0
      <= __alignof__ (*elf32_arm_local_tlsdesc_gotent (abfd)));
3592
0
      BFD_ASSERT (__alignof__ (*elf32_arm_local_fdpic_cnts (abfd))
3593
0
      <= __alignof__ (*elf32_arm_local_iplt (abfd)));
3594
0
      BFD_ASSERT (__alignof__ (*elf32_arm_local_got_tls_type (abfd))
3595
0
      <= __alignof__ (*elf32_arm_local_fdpic_cnts (abfd)));
3596
0
#endif
3597
0
    }
3598
0
  return true;
3599
0
}
3600
3601
/* Return the .iplt information for local symbol R_SYMNDX, which belongs
3602
   to input bfd ABFD.  Create the information if it doesn't already exist.
3603
   Return null if an allocation fails.  */
3604
3605
static struct arm_local_iplt_info *
3606
elf32_arm_create_local_iplt (bfd *abfd, unsigned long r_symndx)
3607
0
{
3608
0
  struct arm_local_iplt_info **ptr;
3609
3610
0
  if (!elf32_arm_allocate_local_sym_info (abfd))
3611
0
    return NULL;
3612
3613
0
  BFD_ASSERT (r_symndx < elf_symtab_hdr (abfd).sh_info);
3614
0
  BFD_ASSERT (r_symndx < elf32_arm_num_entries (abfd));
3615
0
  ptr = &elf32_arm_local_iplt (abfd)[r_symndx];
3616
0
  if (*ptr == NULL)
3617
0
    *ptr = bfd_zalloc (abfd, sizeof (**ptr));
3618
0
  return *ptr;
3619
0
}
3620
3621
/* Try to obtain PLT information for the symbol with index R_SYMNDX
3622
   in ABFD's symbol table.  If the symbol is global, H points to its
3623
   hash table entry, otherwise H is null.
3624
3625
   Return true if the symbol does have PLT information.  When returning
3626
   true, point *ROOT_PLT at the target-independent reference count/offset
3627
   union and *ARM_PLT at the ARM-specific information.  */
3628
3629
static bool
3630
elf32_arm_get_plt_info (bfd *abfd, struct elf32_arm_link_hash_table *globals,
3631
      struct elf32_arm_link_hash_entry *h,
3632
      unsigned long r_symndx, union gotplt_union **root_plt,
3633
      struct arm_plt_info **arm_plt)
3634
0
{
3635
0
  struct arm_local_iplt_info *local_iplt;
3636
3637
0
  if (globals->root.splt == NULL && globals->root.iplt == NULL)
3638
0
    return false;
3639
3640
0
  if (h != NULL)
3641
0
    {
3642
0
      *root_plt = &h->root.plt;
3643
0
      *arm_plt = &h->plt;
3644
0
      return true;
3645
0
    }
3646
3647
0
  if (elf32_arm_local_iplt (abfd) == NULL)
3648
0
    return false;
3649
3650
0
  if (r_symndx >= elf32_arm_num_entries (abfd))
3651
0
    return false;
3652
3653
0
  local_iplt = elf32_arm_local_iplt (abfd)[r_symndx];
3654
0
  if (local_iplt == NULL)
3655
0
    return false;
3656
3657
0
  *root_plt = &local_iplt->root;
3658
0
  *arm_plt = &local_iplt->arm;
3659
0
  return true;
3660
0
}
3661
3662
static bool using_thumb_only (struct elf32_arm_link_hash_table *globals);
3663
3664
/* Return true if the PLT described by ARM_PLT requires a Thumb stub
3665
   before it.  */
3666
3667
static bool
3668
elf32_arm_plt_needs_thumb_stub_p (struct bfd_link_info *info,
3669
          struct arm_plt_info *arm_plt)
3670
0
{
3671
0
  struct elf32_arm_link_hash_table *htab;
3672
3673
0
  htab = elf32_arm_hash_table (info);
3674
3675
0
  return (!using_thumb_only (htab) && (arm_plt->thumb_refcount != 0
3676
0
    || (!htab->use_blx && arm_plt->maybe_thumb_refcount != 0)));
3677
0
}
3678
3679
/* Return a pointer to the head of the dynamic reloc list that should
3680
   be used for local symbol ISYM, which is symbol number R_SYMNDX in
3681
   ABFD's symbol table.  Return null if an error occurs.  */
3682
3683
static struct elf_dyn_relocs **
3684
elf32_arm_get_local_dynreloc_list (bfd *abfd, unsigned long r_symndx,
3685
           Elf_Internal_Sym *isym)
3686
0
{
3687
0
  if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC)
3688
0
    {
3689
0
      struct arm_local_iplt_info *local_iplt;
3690
3691
0
      local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
3692
0
      if (local_iplt == NULL)
3693
0
  return NULL;
3694
0
      return &local_iplt->dyn_relocs;
3695
0
    }
3696
0
  else
3697
0
    {
3698
      /* Track dynamic relocs needed for local syms too.
3699
   We really need local syms available to do this
3700
   easily.  Oh well.  */
3701
0
      asection *s;
3702
0
      void *vpp;
3703
3704
0
      s = bfd_section_from_elf_index (abfd, isym->st_shndx);
3705
0
      if (s == NULL)
3706
0
  return NULL;
3707
3708
0
      vpp = &elf_section_data (s)->local_dynrel;
3709
0
      return (struct elf_dyn_relocs **) vpp;
3710
0
    }
3711
0
}
3712
3713
/* Initialize an entry in the stub hash table.  */
3714
3715
static struct bfd_hash_entry *
3716
stub_hash_newfunc (struct bfd_hash_entry *entry,
3717
       struct bfd_hash_table *table,
3718
       const char *string)
3719
0
{
3720
  /* Allocate the structure if it has not already been allocated by a
3721
     subclass.  */
3722
0
  if (entry == NULL)
3723
0
    {
3724
0
      entry = (struct bfd_hash_entry *)
3725
0
    bfd_hash_allocate (table, sizeof (struct elf32_arm_stub_hash_entry));
3726
0
      if (entry == NULL)
3727
0
  return entry;
3728
0
    }
3729
3730
  /* Call the allocation method of the superclass.  */
3731
0
  entry = bfd_hash_newfunc (entry, table, string);
3732
0
  if (entry != NULL)
3733
0
    {
3734
0
      struct elf32_arm_stub_hash_entry *eh;
3735
3736
      /* Initialize the local fields.  */
3737
0
      eh = (struct elf32_arm_stub_hash_entry *) entry;
3738
0
      eh->stub_sec = NULL;
3739
0
      eh->stub_offset = (bfd_vma) -1;
3740
0
      eh->source_value = 0;
3741
0
      eh->target_value = 0;
3742
0
      eh->target_section = NULL;
3743
0
      eh->orig_insn = 0;
3744
0
      eh->stub_type = arm_stub_none;
3745
0
      eh->stub_size = 0;
3746
0
      eh->stub_template = NULL;
3747
0
      eh->stub_template_size = -1;
3748
0
      eh->h = NULL;
3749
0
      eh->id_sec = NULL;
3750
0
      eh->output_name = NULL;
3751
0
    }
3752
3753
0
  return entry;
3754
0
}
3755
3756
/* Create .got, .gotplt, and .rel(a).got sections in DYNOBJ, and set up
3757
   shortcuts to them in our hash table.  */
3758
3759
static bool
3760
create_got_section (bfd *dynobj, struct bfd_link_info *info)
3761
0
{
3762
0
  struct elf32_arm_link_hash_table *htab;
3763
3764
0
  htab = elf32_arm_hash_table (info);
3765
0
  if (htab == NULL)
3766
0
    return false;
3767
3768
0
  if (! _bfd_elf_create_got_section (dynobj, info))
3769
0
    return false;
3770
3771
  /* Also create .rofixup.  */
3772
0
  if (htab->fdpic_p)
3773
0
    {
3774
0
      htab->srofixup = bfd_make_section_with_flags (dynobj, ".rofixup",
3775
0
                (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
3776
0
                 | SEC_IN_MEMORY | SEC_LINKER_CREATED | SEC_READONLY));
3777
0
      if (htab->srofixup == NULL
3778
0
    || !bfd_set_section_alignment (htab->srofixup, 2))
3779
0
  return false;
3780
0
    }
3781
3782
0
  return true;
3783
0
}
3784
3785
/* Create the .iplt, .rel(a).iplt and .igot.plt sections.  */
3786
3787
static bool
3788
create_ifunc_sections (struct bfd_link_info *info)
3789
0
{
3790
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
3791
0
  bfd *dynobj = htab->root.dynobj;
3792
0
  elf_backend_data *bed = get_elf_backend_data (dynobj);
3793
0
  asection *s;
3794
0
  flagword flags = bed->dynamic_sec_flags;
3795
3796
0
  if (htab->root.iplt == NULL)
3797
0
    {
3798
0
      s = bfd_make_section_anyway_with_flags (dynobj, ".iplt",
3799
0
                flags | SEC_READONLY | SEC_CODE);
3800
0
      if (s == NULL
3801
0
    || !bfd_set_section_alignment (s, bed->plt_alignment))
3802
0
  return false;
3803
0
      htab->root.iplt = s;
3804
0
    }
3805
3806
0
  if (htab->root.irelplt == NULL)
3807
0
    {
3808
0
      s = bfd_make_section_anyway_with_flags (dynobj,
3809
0
                RELOC_SECTION (htab, ".iplt"),
3810
0
                flags | SEC_READONLY);
3811
0
      if (s == NULL
3812
0
    || !bfd_set_section_alignment (s, bed->s->log_file_align))
3813
0
  return false;
3814
0
      htab->root.irelplt = s;
3815
0
    }
3816
3817
0
  if (htab->root.igotplt == NULL)
3818
0
    {
3819
0
      s = bfd_make_section_anyway_with_flags (dynobj, ".igot.plt", flags);
3820
0
      if (s == NULL
3821
0
    || !bfd_set_section_alignment (s, bed->s->log_file_align))
3822
0
  return false;
3823
0
      htab->root.igotplt = s;
3824
0
    }
3825
0
  return true;
3826
0
}
3827
3828
/* Determine if we're dealing with a Thumb only architecture.  */
3829
3830
static bool
3831
using_thumb_only (struct elf32_arm_link_hash_table *globals)
3832
0
{
3833
0
  int arch;
3834
0
  int profile = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3835
0
            Tag_CPU_arch_profile);
3836
3837
0
  if (profile)
3838
0
    return profile == 'M';
3839
3840
0
  arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3841
3842
  /* Force return logic to be reviewed for each new architecture.  */
3843
0
  BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
3844
3845
0
  if (arch == TAG_CPU_ARCH_V6_M
3846
0
      || arch == TAG_CPU_ARCH_V6S_M
3847
0
      || arch == TAG_CPU_ARCH_V7E_M
3848
0
      || arch == TAG_CPU_ARCH_V8M_BASE
3849
0
      || arch == TAG_CPU_ARCH_V8M_MAIN
3850
0
      || arch == TAG_CPU_ARCH_V8_1M_MAIN)
3851
0
    return true;
3852
3853
0
  return false;
3854
0
}
3855
3856
/* Determine if we're dealing with a Thumb-2 object.  */
3857
3858
static bool
3859
using_thumb2 (struct elf32_arm_link_hash_table *globals)
3860
0
{
3861
0
  int arch;
3862
0
  int thumb_isa = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
3863
0
              Tag_THUMB_ISA_use);
3864
3865
  /* No use of thumb permitted, or a legacy thumb-1/2 definition.  */
3866
0
  if (thumb_isa < 3)
3867
0
    return thumb_isa == 2;
3868
3869
  /* Variant of thumb is described by the architecture tag.  */
3870
0
  arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3871
3872
  /* Force return logic to be reviewed for each new architecture.  */
3873
0
  BFD_ASSERT (arch <= TAG_CPU_ARCH_V8_1M_MAIN);
3874
3875
0
  return (arch == TAG_CPU_ARCH_V6T2
3876
0
    || arch == TAG_CPU_ARCH_V7
3877
0
    || arch == TAG_CPU_ARCH_V7E_M
3878
0
    || arch == TAG_CPU_ARCH_V8
3879
0
    || arch == TAG_CPU_ARCH_V8R
3880
0
    || arch == TAG_CPU_ARCH_V8M_MAIN
3881
0
    || arch == TAG_CPU_ARCH_V8_1M_MAIN);
3882
0
}
3883
3884
/* Determine whether Thumb-2 BL instruction is available.  */
3885
3886
static bool
3887
using_thumb2_bl (struct elf32_arm_link_hash_table *globals)
3888
0
{
3889
0
  int arch =
3890
0
    bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
3891
3892
  /* Force return logic to be reviewed for each new architecture.  */
3893
0
  BFD_ASSERT (arch <= TAG_CPU_ARCH_V9);
3894
3895
  /* Architecture was introduced after ARMv6T2 (eg. ARMv6-M).  */
3896
0
  return (arch == TAG_CPU_ARCH_V6T2
3897
0
    || arch >= TAG_CPU_ARCH_V7);
3898
0
}
3899
3900
/* Create .plt, .rel(a).plt, .got, .got.plt, .rel(a).got, .dynbss, and
3901
   .rel(a).bss sections in DYNOBJ, and set up shortcuts to them in our
3902
   hash table.  */
3903
3904
static bool
3905
elf32_arm_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
3906
0
{
3907
0
  struct elf32_arm_link_hash_table *htab;
3908
3909
0
  htab = elf32_arm_hash_table (info);
3910
0
  if (htab == NULL)
3911
0
    return false;
3912
3913
0
  if (!htab->root.sgot && !create_got_section (dynobj, info))
3914
0
    return false;
3915
3916
0
  if (!_bfd_elf_create_dynamic_sections (dynobj, info))
3917
0
    return false;
3918
3919
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
3920
0
  if (htab->root.target_os == is_vxworks)
3921
0
    {
3922
0
      if (!elf_vxworks_create_dynamic_sections (dynobj, info, &htab->srelplt2))
3923
0
  return false;
3924
3925
0
      if (bfd_link_pic (info))
3926
0
  {
3927
0
    htab->plt_header_size = 0;
3928
0
    htab->plt_entry_size
3929
0
      = 4 * ARRAY_SIZE (elf32_arm_vxworks_shared_plt_entry);
3930
0
  }
3931
0
      else
3932
0
  {
3933
0
    htab->plt_header_size
3934
0
      = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt0_entry);
3935
0
    htab->plt_entry_size
3936
0
      = 4 * ARRAY_SIZE (elf32_arm_vxworks_exec_plt_entry);
3937
0
  }
3938
3939
0
      if (elf_elfheader (dynobj))
3940
0
  elf_elfheader (dynobj)->e_ident[EI_CLASS] = ELFCLASS32;
3941
0
    }
3942
0
  else
3943
0
#endif /* OBJ_MAYBE_ELF_VXWORKS */
3944
0
    {
3945
      /* PR ld/16017
3946
   Test for thumb only architectures.  Note - we cannot just call
3947
   using_thumb_only() as the attributes in the output bfd have not been
3948
   initialised at this point, so instead we use the input bfd.  */
3949
0
      bfd * saved_obfd = htab->obfd;
3950
3951
0
      htab->obfd = dynobj;
3952
0
      if (using_thumb_only (htab))
3953
0
  {
3954
0
    htab->plt_header_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
3955
0
    htab->plt_entry_size  = 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
3956
0
  }
3957
0
      htab->obfd = saved_obfd;
3958
0
    }
3959
3960
0
  if (htab->fdpic_p) {
3961
0
    htab->plt_header_size = 0;
3962
0
    if (info->flags & DF_BIND_NOW)
3963
0
      htab->plt_entry_size = 4 * (ARRAY_SIZE (elf32_arm_fdpic_plt_entry) - 5);
3964
0
    else
3965
0
      htab->plt_entry_size = 4 * ARRAY_SIZE (elf32_arm_fdpic_plt_entry);
3966
0
  }
3967
3968
0
  if (!htab->root.splt
3969
0
      || !htab->root.srelplt
3970
0
      || !htab->root.sdynbss
3971
0
      || (!bfd_link_pic (info) && !htab->root.srelbss))
3972
0
    abort ();
3973
3974
0
  return true;
3975
0
}
3976
3977
/* Copy the extra info we tack onto an elf_link_hash_entry.  */
3978
3979
static void
3980
elf32_arm_copy_indirect_symbol (struct bfd_link_info *info,
3981
        struct elf_link_hash_entry *dir,
3982
        struct elf_link_hash_entry *ind)
3983
0
{
3984
0
  struct elf32_arm_link_hash_entry *edir, *eind;
3985
3986
0
  edir = (struct elf32_arm_link_hash_entry *) dir;
3987
0
  eind = (struct elf32_arm_link_hash_entry *) ind;
3988
3989
0
  if (ind->root.type == bfd_link_hash_indirect)
3990
0
    {
3991
      /* Copy over PLT info.  */
3992
0
      edir->plt.thumb_refcount += eind->plt.thumb_refcount;
3993
0
      eind->plt.thumb_refcount = 0;
3994
0
      edir->plt.maybe_thumb_refcount += eind->plt.maybe_thumb_refcount;
3995
0
      eind->plt.maybe_thumb_refcount = 0;
3996
0
      edir->plt.noncall_refcount += eind->plt.noncall_refcount;
3997
0
      eind->plt.noncall_refcount = 0;
3998
3999
      /* Copy FDPIC counters.  */
4000
0
      edir->fdpic_cnts.gotofffuncdesc_cnt += eind->fdpic_cnts.gotofffuncdesc_cnt;
4001
0
      edir->fdpic_cnts.gotfuncdesc_cnt += eind->fdpic_cnts.gotfuncdesc_cnt;
4002
0
      edir->fdpic_cnts.funcdesc_cnt += eind->fdpic_cnts.funcdesc_cnt;
4003
4004
      /* We should only allocate a function to .iplt once the final
4005
   symbol information is known.  */
4006
0
      BFD_ASSERT (!eind->is_iplt);
4007
4008
0
      if (dir->got.refcount <= 0)
4009
0
  {
4010
0
    edir->tls_type = eind->tls_type;
4011
0
    eind->tls_type = GOT_UNKNOWN;
4012
0
  }
4013
0
    }
4014
4015
0
  _bfd_elf_link_hash_copy_indirect (info, dir, ind);
4016
0
}
4017
4018
/* Destroy an ARM elf linker hash table.  */
4019
4020
static void
4021
elf32_arm_link_hash_table_free (bfd *obfd)
4022
0
{
4023
0
  struct elf32_arm_link_hash_table *ret
4024
0
    = (struct elf32_arm_link_hash_table *) obfd->link.hash;
4025
4026
0
  bfd_hash_table_free (&ret->stub_hash_table);
4027
0
  _bfd_elf_link_hash_table_free (obfd);
4028
0
}
4029
4030
/* Create an ARM elf linker hash table.  */
4031
4032
static struct bfd_link_hash_table *
4033
elf32_arm_link_hash_table_create (bfd *abfd)
4034
0
{
4035
0
  struct elf32_arm_link_hash_table *ret;
4036
0
  size_t amt = sizeof (struct elf32_arm_link_hash_table);
4037
4038
0
  ret = (struct elf32_arm_link_hash_table *) bfd_zmalloc (amt);
4039
0
  if (ret == NULL)
4040
0
    return NULL;
4041
4042
0
  if (!_bfd_elf_link_hash_table_init (& ret->root, abfd,
4043
0
              elf32_arm_link_hash_newfunc,
4044
0
              sizeof (struct elf32_arm_link_hash_entry)))
4045
0
    {
4046
0
      free (ret);
4047
0
      return NULL;
4048
0
    }
4049
4050
0
  ret->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
4051
0
  ret->stm32l4xx_fix = BFD_ARM_STM32L4XX_FIX_NONE;
4052
#ifdef FOUR_WORD_PLT
4053
  ret->plt_header_size = 16;
4054
  ret->plt_entry_size = 16;
4055
#else
4056
0
  ret->plt_header_size = 20;
4057
0
  ret->plt_entry_size = elf32_arm_use_long_plt_entry ? 16 : 12;
4058
0
#endif
4059
0
  ret->use_rel = true;
4060
0
  ret->obfd = abfd;
4061
0
  ret->fdpic_p = 0;
4062
4063
0
  if (!bfd_hash_table_init (&ret->stub_hash_table, stub_hash_newfunc,
4064
0
          sizeof (struct elf32_arm_stub_hash_entry)))
4065
0
    {
4066
0
      _bfd_elf_link_hash_table_free (abfd);
4067
0
      return NULL;
4068
0
    }
4069
0
  ret->root.root.hash_table_free = elf32_arm_link_hash_table_free;
4070
4071
0
  return &ret->root.root;
4072
0
}
4073
4074
/* Determine what kind of NOPs are available.  */
4075
4076
static bool
4077
arch_has_arm_nop (struct elf32_arm_link_hash_table *globals)
4078
0
{
4079
0
  const int arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
4080
0
               Tag_CPU_arch);
4081
4082
  /* Force return logic to be reviewed for each new architecture.  */
4083
0
  BFD_ASSERT (arch <= TAG_CPU_ARCH_V9);
4084
4085
0
  return (arch == TAG_CPU_ARCH_V6T2
4086
0
    || arch == TAG_CPU_ARCH_V6K
4087
0
    || arch == TAG_CPU_ARCH_V7
4088
0
    || arch == TAG_CPU_ARCH_V8
4089
0
    || arch == TAG_CPU_ARCH_V8R
4090
0
    || arch == TAG_CPU_ARCH_V9);
4091
0
}
4092
4093
static bool
4094
arm_stub_is_thumb (enum elf32_arm_stub_type stub_type)
4095
0
{
4096
0
  switch (stub_type)
4097
0
    {
4098
0
    case arm_stub_long_branch_thumb_only:
4099
0
    case arm_stub_long_branch_thumb2_only:
4100
0
    case arm_stub_long_branch_thumb2_only_pure:
4101
0
    case arm_stub_long_branch_v4t_thumb_arm:
4102
0
    case arm_stub_short_branch_v4t_thumb_arm:
4103
0
    case arm_stub_long_branch_v4t_thumb_arm_pic:
4104
0
    case arm_stub_long_branch_v4t_thumb_tls_pic:
4105
0
    case arm_stub_long_branch_thumb_only_pic:
4106
0
    case arm_stub_cmse_branch_thumb_only:
4107
0
      return true;
4108
0
    case arm_stub_none:
4109
0
      BFD_FAIL ();
4110
0
      return false;
4111
0
      break;
4112
0
    default:
4113
0
      return false;
4114
0
    }
4115
0
}
4116
4117
/* Determine the type of stub needed, if any, for a call.  */
4118
4119
static enum elf32_arm_stub_type
4120
arm_type_of_stub (struct bfd_link_info *info,
4121
      asection *input_sec,
4122
      const Elf_Internal_Rela *rel,
4123
      unsigned char st_type,
4124
      enum arm_st_branch_type *actual_branch_type,
4125
      struct elf32_arm_link_hash_entry *hash,
4126
      bfd_vma destination,
4127
      asection *sym_sec,
4128
      bfd *input_bfd,
4129
      const char *name)
4130
0
{
4131
0
  bfd_vma location;
4132
0
  bfd_signed_vma branch_offset;
4133
0
  unsigned int r_type;
4134
0
  struct elf32_arm_link_hash_table * globals;
4135
0
  bool thumb2, thumb2_bl, thumb_only;
4136
0
  enum elf32_arm_stub_type stub_type = arm_stub_none;
4137
0
  int use_plt = 0;
4138
0
  enum arm_st_branch_type branch_type = *actual_branch_type;
4139
0
  union gotplt_union *root_plt;
4140
0
  struct arm_plt_info *arm_plt;
4141
0
  int arch;
4142
0
  int thumb2_movw;
4143
4144
0
  if (branch_type == ST_BRANCH_LONG)
4145
0
    return stub_type;
4146
4147
0
  globals = elf32_arm_hash_table (info);
4148
0
  if (globals == NULL)
4149
0
    return stub_type;
4150
4151
0
  thumb_only = using_thumb_only (globals);
4152
0
  thumb2 = using_thumb2 (globals);
4153
0
  thumb2_bl = using_thumb2_bl (globals);
4154
4155
0
  arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC, Tag_CPU_arch);
4156
4157
  /* True for architectures that implement the thumb2 movw instruction.  */
4158
0
  thumb2_movw = thumb2 || (arch  == TAG_CPU_ARCH_V8M_BASE);
4159
4160
  /* Determine where the call point is.  */
4161
0
  location = (input_sec->output_offset
4162
0
        + input_sec->output_section->vma
4163
0
        + rel->r_offset);
4164
4165
0
  r_type = ELF32_R_TYPE (rel->r_info);
4166
4167
  /* Don't pretend we know what stub to use (if any) when we target a
4168
     Thumb-only target and we don't know the actual destination
4169
     type.  */
4170
0
  if (branch_type == ST_BRANCH_UNKNOWN && thumb_only)
4171
0
    return stub_type;
4172
4173
  /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we
4174
     are considering a function call relocation.  */
4175
0
  if (thumb_only && (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
4176
0
         || r_type == R_ARM_THM_JUMP19)
4177
0
      && branch_type == ST_BRANCH_TO_ARM)
4178
0
    {
4179
0
      if (sym_sec == bfd_abs_section_ptr)
4180
  /* As an exception, assume that absolute symbols are of the
4181
     right kind (Thumb).  They are presumably defined in the
4182
     linker script, where it is not possible to declare them as
4183
     Thumb (and thus are seen as Arm mode). We'll inform the
4184
     user with a warning, though, in
4185
     elf32_arm_final_link_relocate. */
4186
0
  branch_type = ST_BRANCH_TO_THUMB;
4187
0
      else
4188
  /* Otherwise do not silently build a stub, and let the users
4189
     know they have to fix their code.  Indeed, we could decide
4190
     to insert a stub involving Arm code and/or BLX, leading to
4191
     a run-time crash.  */
4192
0
  return stub_type;
4193
0
    }
4194
4195
  /* For TLS call relocs, it is the caller's responsibility to provide
4196
     the address of the appropriate trampoline.  */
4197
0
  if (r_type != R_ARM_TLS_CALL
4198
0
      && r_type != R_ARM_THM_TLS_CALL
4199
0
      && elf32_arm_get_plt_info (input_bfd, globals, hash,
4200
0
         ELF32_R_SYM (rel->r_info), &root_plt,
4201
0
         &arm_plt)
4202
0
      && root_plt->offset != (bfd_vma) -1)
4203
0
    {
4204
0
      asection *splt;
4205
4206
0
      if (hash == NULL || hash->is_iplt)
4207
0
  splt = globals->root.iplt;
4208
0
      else
4209
0
  splt = globals->root.splt;
4210
0
      if (splt != NULL)
4211
0
  {
4212
0
    use_plt = 1;
4213
4214
    /* Note when dealing with PLT entries: the main PLT stub is in
4215
       ARM mode, so if the branch is in Thumb mode, another
4216
       Thumb->ARM stub will be inserted later just before the ARM
4217
       PLT stub. If a long branch stub is needed, we'll add a
4218
       Thumb->Arm one and branch directly to the ARM PLT entry.
4219
       Here, we have to check if a pre-PLT Thumb->ARM stub
4220
       is needed and if it will be close enough.  */
4221
4222
0
    destination = (splt->output_section->vma
4223
0
       + splt->output_offset
4224
0
       + root_plt->offset);
4225
0
    st_type = STT_FUNC;
4226
4227
    /* Thumb branch/call to PLT: it can become a branch to ARM
4228
       or to Thumb. We must perform the same checks and
4229
       corrections as in elf32_arm_final_link_relocate.  */
4230
0
    if ((r_type == R_ARM_THM_CALL)
4231
0
        || (r_type == R_ARM_THM_JUMP24))
4232
0
      {
4233
0
        if (globals->use_blx
4234
0
      && r_type == R_ARM_THM_CALL
4235
0
      && !thumb_only)
4236
0
    {
4237
      /* If the Thumb BLX instruction is available, convert
4238
         the BL to a BLX instruction to call the ARM-mode
4239
         PLT entry.  */
4240
0
      branch_type = ST_BRANCH_TO_ARM;
4241
0
    }
4242
0
        else
4243
0
    {
4244
0
      if (!thumb_only)
4245
        /* Target the Thumb stub before the ARM PLT entry.  */
4246
0
        destination -= PLT_THUMB_STUB_SIZE;
4247
0
      branch_type = ST_BRANCH_TO_THUMB;
4248
0
    }
4249
0
      }
4250
0
    else
4251
0
      {
4252
0
        branch_type = ST_BRANCH_TO_ARM;
4253
0
      }
4254
0
  }
4255
0
    }
4256
  /* Calls to STT_GNU_IFUNC symbols should go through a PLT.  */
4257
0
  BFD_ASSERT (st_type != STT_GNU_IFUNC);
4258
4259
0
  branch_offset = (bfd_signed_vma)(destination - location);
4260
4261
0
  if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24
4262
0
      || r_type == R_ARM_THM_TLS_CALL || r_type == R_ARM_THM_JUMP19)
4263
0
    {
4264
      /* Handle cases where:
4265
   - this call goes too far (different Thumb/Thumb2 max
4266
     distance)
4267
   - it's a Thumb->Arm call and blx is not available, or it's a
4268
     Thumb->Arm branch (not bl). A stub is needed in this case,
4269
     but only if this call is not through a PLT entry. Indeed,
4270
     PLT stubs handle mode switching already.  */
4271
0
      if ((!thumb2_bl
4272
0
      && (branch_offset > THM_MAX_FWD_BRANCH_OFFSET
4273
0
    || (branch_offset < THM_MAX_BWD_BRANCH_OFFSET)))
4274
0
    || (thumb2_bl
4275
0
        && (branch_offset > THM2_MAX_FWD_BRANCH_OFFSET
4276
0
      || (branch_offset < THM2_MAX_BWD_BRANCH_OFFSET)))
4277
0
    || (thumb2
4278
0
        && (branch_offset > THM2_MAX_FWD_COND_BRANCH_OFFSET
4279
0
      || (branch_offset < THM2_MAX_BWD_COND_BRANCH_OFFSET))
4280
0
        && (r_type == R_ARM_THM_JUMP19))
4281
0
    || (branch_type == ST_BRANCH_TO_ARM
4282
0
        && (((r_type == R_ARM_THM_CALL
4283
0
        || r_type == R_ARM_THM_TLS_CALL) && !globals->use_blx)
4284
0
      || (r_type == R_ARM_THM_JUMP24)
4285
0
      || (r_type == R_ARM_THM_JUMP19))
4286
0
        && !use_plt))
4287
0
  {
4288
    /* If we need to insert a Thumb-Thumb long branch stub to a
4289
       PLT, use one that branches directly to the ARM PLT
4290
       stub. If we pretended we'd use the pre-PLT Thumb->ARM
4291
       stub, undo this now.  */
4292
0
    if ((branch_type == ST_BRANCH_TO_THUMB) && use_plt && !thumb_only)
4293
0
      {
4294
0
        branch_type = ST_BRANCH_TO_ARM;
4295
0
        branch_offset += PLT_THUMB_STUB_SIZE;
4296
0
      }
4297
4298
0
    if (branch_type == ST_BRANCH_TO_THUMB)
4299
0
      {
4300
        /* Thumb to thumb.  */
4301
0
        if (!thumb_only)
4302
0
    {
4303
0
      if (input_sec->flags & SEC_ELF_PURECODE)
4304
0
        _bfd_error_handler
4305
0
          (_("%pB(%pA): warning: long branch veneers used in"
4306
0
       " section with SHF_ARM_PURECODE section"
4307
0
       " attribute is only supported for M-profile"
4308
0
       " targets that implement the movw instruction"),
4309
0
           input_bfd, input_sec);
4310
4311
0
      stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4312
        /* PIC stubs.  */
4313
0
        ? ((globals->use_blx
4314
0
      && (r_type == R_ARM_THM_CALL))
4315
           /* V5T and above. Stub starts with ARM code, so
4316
        we must be able to switch mode before
4317
        reaching it, which is only possible for 'bl'
4318
        (ie R_ARM_THM_CALL relocation).  */
4319
0
           ? arm_stub_long_branch_any_thumb_pic
4320
           /* On V4T, use Thumb code only.  */
4321
0
           : arm_stub_long_branch_v4t_thumb_thumb_pic)
4322
4323
        /* non-PIC stubs.  */
4324
0
        : ((globals->use_blx
4325
0
      && (r_type == R_ARM_THM_CALL))
4326
           /* V5T and above.  */
4327
0
           ? arm_stub_long_branch_any_any
4328
           /* V4T.  */
4329
0
           : arm_stub_long_branch_v4t_thumb_thumb);
4330
0
    }
4331
0
        else
4332
0
    {
4333
0
      if (thumb2_movw && (input_sec->flags & SEC_ELF_PURECODE))
4334
0
          stub_type = arm_stub_long_branch_thumb2_only_pure;
4335
0
      else
4336
0
        {
4337
0
          if (input_sec->flags & SEC_ELF_PURECODE)
4338
0
      _bfd_error_handler
4339
0
        (_("%pB(%pA): warning: long branch veneers used in"
4340
0
           " section with SHF_ARM_PURECODE section"
4341
0
           " attribute is only supported for M-profile"
4342
0
           " targets that implement the movw instruction"),
4343
0
         input_bfd, input_sec);
4344
4345
0
          stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4346
      /* PIC stub.  */
4347
0
      ? arm_stub_long_branch_thumb_only_pic
4348
      /* non-PIC stub.  */
4349
0
      : (thumb2 ? arm_stub_long_branch_thumb2_only
4350
0
          : arm_stub_long_branch_thumb_only);
4351
0
        }
4352
0
    }
4353
0
      }
4354
0
    else
4355
0
      {
4356
0
        if (input_sec->flags & SEC_ELF_PURECODE)
4357
0
    _bfd_error_handler
4358
0
      (_("%pB(%pA): warning: long branch veneers used in"
4359
0
         " section with SHF_ARM_PURECODE section"
4360
0
         " attribute is only supported" " for M-profile"
4361
0
         " targets that implement the movw instruction"),
4362
0
       input_bfd, input_sec);
4363
4364
        /* Thumb to arm.  */
4365
0
        if (sym_sec != NULL
4366
0
      && sym_sec->owner != NULL
4367
0
      && !INTERWORK_FLAG (sym_sec->owner))
4368
0
    {
4369
0
      _bfd_error_handler
4370
0
        (_("%pB(%s): warning: interworking not enabled;"
4371
0
           " first occurrence: %pB: %s call to %s"),
4372
0
         sym_sec->owner, name, input_bfd, "Thumb", "ARM");
4373
0
    }
4374
4375
0
        stub_type =
4376
0
    (bfd_link_pic (info) | globals->pic_veneer)
4377
    /* PIC stubs.  */
4378
0
    ? (r_type == R_ARM_THM_TLS_CALL
4379
       /* TLS PIC stubs.  */
4380
0
       ? (globals->use_blx ? arm_stub_long_branch_any_tls_pic
4381
0
          : arm_stub_long_branch_v4t_thumb_tls_pic)
4382
0
       : ((globals->use_blx && r_type == R_ARM_THM_CALL)
4383
          /* V5T PIC and above.  */
4384
0
          ? arm_stub_long_branch_any_arm_pic
4385
          /* V4T PIC stub.  */
4386
0
          : arm_stub_long_branch_v4t_thumb_arm_pic))
4387
4388
    /* non-PIC stubs.  */
4389
0
    : ((globals->use_blx && r_type == R_ARM_THM_CALL)
4390
       /* V5T and above.  */
4391
0
       ? arm_stub_long_branch_any_any
4392
       /* V4T.  */
4393
0
       : arm_stub_long_branch_v4t_thumb_arm);
4394
4395
        /* Handle v4t short branches.  */
4396
0
        if ((stub_type == arm_stub_long_branch_v4t_thumb_arm)
4397
0
      && (branch_offset <= THM_MAX_FWD_BRANCH_OFFSET)
4398
0
      && (branch_offset >= THM_MAX_BWD_BRANCH_OFFSET))
4399
0
    stub_type = arm_stub_short_branch_v4t_thumb_arm;
4400
0
      }
4401
0
  }
4402
0
    }
4403
0
  else if (r_type == R_ARM_CALL
4404
0
     || r_type == R_ARM_JUMP24
4405
0
     || r_type == R_ARM_PLT32
4406
0
     || r_type == R_ARM_TLS_CALL)
4407
0
    {
4408
0
      if (input_sec->flags & SEC_ELF_PURECODE)
4409
0
  _bfd_error_handler
4410
0
    (_("%pB(%pA): warning: long branch veneers used in"
4411
0
       " section with SHF_ARM_PURECODE section"
4412
0
       " attribute is only supported for M-profile"
4413
0
       " targets that implement the movw instruction"),
4414
0
     input_bfd, input_sec);
4415
0
      if (branch_type == ST_BRANCH_TO_THUMB)
4416
0
  {
4417
    /* Arm to thumb.  */
4418
4419
0
    if (sym_sec != NULL
4420
0
        && sym_sec->owner != NULL
4421
0
        && !INTERWORK_FLAG (sym_sec->owner))
4422
0
      {
4423
0
        _bfd_error_handler
4424
0
    (_("%pB(%s): warning: interworking not enabled;"
4425
0
       " first occurrence: %pB: %s call to %s"),
4426
0
     sym_sec->owner, name, input_bfd, "ARM", "Thumb");
4427
0
      }
4428
4429
    /* We have an extra 2-bytes reach because of
4430
       the mode change (bit 24 (H) of BLX encoding).  */
4431
0
    if (branch_offset > (ARM_MAX_FWD_BRANCH_OFFSET + 2)
4432
0
        || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET)
4433
0
        || (r_type == R_ARM_CALL && !globals->use_blx)
4434
0
        || (r_type == R_ARM_JUMP24)
4435
0
        || (r_type == R_ARM_PLT32))
4436
0
      {
4437
0
        stub_type = (bfd_link_pic (info) | globals->pic_veneer)
4438
    /* PIC stubs.  */
4439
0
    ? ((globals->use_blx)
4440
       /* V5T and above.  */
4441
0
       ? arm_stub_long_branch_any_thumb_pic
4442
       /* V4T stub.  */
4443
0
       : arm_stub_long_branch_v4t_arm_thumb_pic)
4444
4445
    /* non-PIC stubs.  */
4446
0
    : ((globals->use_blx)
4447
       /* V5T and above.  */
4448
0
       ? arm_stub_long_branch_any_any
4449
       /* V4T.  */
4450
0
       : arm_stub_long_branch_v4t_arm_thumb);
4451
0
      }
4452
0
  }
4453
0
      else
4454
0
  {
4455
    /* Arm to arm.  */
4456
0
    if (branch_offset > ARM_MAX_FWD_BRANCH_OFFSET
4457
0
        || (branch_offset < ARM_MAX_BWD_BRANCH_OFFSET))
4458
0
      {
4459
0
        stub_type =
4460
0
    (bfd_link_pic (info) | globals->pic_veneer)
4461
    /* PIC stubs.  */
4462
0
    ? (r_type == R_ARM_TLS_CALL
4463
       /* TLS PIC Stub.  */
4464
0
       ? arm_stub_long_branch_any_tls_pic
4465
0
       : arm_stub_long_branch_any_arm_pic)
4466
    /* non-PIC stubs.  */
4467
0
    : arm_stub_long_branch_any_any;
4468
0
      }
4469
0
  }
4470
0
    }
4471
4472
  /* If a stub is needed, record the actual destination type.  */
4473
0
  if (stub_type != arm_stub_none)
4474
0
    *actual_branch_type = branch_type;
4475
4476
0
  return stub_type;
4477
0
}
4478
4479
/* Build a name for an entry in the stub hash table.  */
4480
4481
static char *
4482
elf32_arm_stub_name (const asection *input_section,
4483
         const asection *sym_sec,
4484
         const struct elf32_arm_link_hash_entry *hash,
4485
         const Elf_Internal_Rela *rel,
4486
         enum elf32_arm_stub_type stub_type)
4487
0
{
4488
0
  char *stub_name;
4489
0
  bfd_size_type len;
4490
4491
0
  if (hash)
4492
0
    {
4493
0
      len = 8 + 1 + strlen (hash->root.root.root.string) + 1 + 8 + 1 + 2 + 1;
4494
0
      stub_name = (char *) bfd_malloc (len);
4495
0
      if (stub_name != NULL)
4496
0
  sprintf (stub_name, "%08x_%s+%x_%d",
4497
0
     input_section->id & 0xffffffff,
4498
0
     hash->root.root.root.string,
4499
0
     (int) rel->r_addend & 0xffffffff,
4500
0
     (int) stub_type);
4501
0
    }
4502
0
  else
4503
0
    {
4504
0
      len = 8 + 1 + 8 + 1 + 8 + 1 + 8 + 1 + 2 + 1;
4505
0
      stub_name = (char *) bfd_malloc (len);
4506
0
      if (stub_name != NULL)
4507
0
  sprintf (stub_name, "%08x_%x:%x+%x_%d",
4508
0
     input_section->id & 0xffffffff,
4509
0
     sym_sec->id & 0xffffffff,
4510
0
     ELF32_R_TYPE (rel->r_info) == R_ARM_TLS_CALL
4511
0
     || ELF32_R_TYPE (rel->r_info) == R_ARM_THM_TLS_CALL
4512
0
     ? 0 : (int) ELF32_R_SYM (rel->r_info) & 0xffffffff,
4513
0
     (int) rel->r_addend & 0xffffffff,
4514
0
     (int) stub_type);
4515
0
    }
4516
4517
0
  return stub_name;
4518
0
}
4519
4520
/* Look up an entry in the stub hash.  Stub entries are cached because
4521
   creating the stub name takes a bit of time.  */
4522
4523
static struct elf32_arm_stub_hash_entry *
4524
elf32_arm_get_stub_entry (const asection *input_section,
4525
        const asection *sym_sec,
4526
        struct elf_link_hash_entry *hash,
4527
        const Elf_Internal_Rela *rel,
4528
        struct elf32_arm_link_hash_table *htab,
4529
        enum elf32_arm_stub_type stub_type)
4530
0
{
4531
0
  struct elf32_arm_stub_hash_entry *stub_entry;
4532
0
  struct elf32_arm_link_hash_entry *h = (struct elf32_arm_link_hash_entry *) hash;
4533
0
  const asection *id_sec;
4534
4535
0
  if ((input_section->flags & SEC_CODE) == 0)
4536
0
    return NULL;
4537
4538
  /* If the input section is the CMSE stubs one and it needs a long
4539
     branch stub to reach it's final destination, give up with an
4540
     error message: this is not supported.  See PR ld/24709.  */
4541
0
  if (!strncmp (input_section->name, CMSE_STUB_NAME, strlen (CMSE_STUB_NAME)))
4542
0
    {
4543
0
      bfd *output_bfd = htab->obfd;
4544
0
      asection *out_sec = bfd_get_section_by_name (output_bfd, CMSE_STUB_NAME);
4545
4546
0
      _bfd_error_handler (_("ERROR: CMSE stub (%s section) too far "
4547
0
          "(%#" PRIx64 ") from destination (%#" PRIx64 ")"),
4548
0
        CMSE_STUB_NAME,
4549
0
        (uint64_t)out_sec->output_section->vma
4550
0
          + out_sec->output_offset,
4551
0
        (uint64_t)sym_sec->output_section->vma
4552
0
          + sym_sec->output_offset
4553
0
          + h->root.root.u.def.value);
4554
      /* Exit, rather than leave incompletely processed
4555
   relocations.  */
4556
0
      xexit (1);
4557
0
    }
4558
4559
  /* If this input section is part of a group of sections sharing one
4560
     stub section, then use the id of the first section in the group.
4561
     Stub names need to include a section id, as there may well be
4562
     more than one stub used to reach say, printf, and we need to
4563
     distinguish between them.  */
4564
0
  BFD_ASSERT (input_section->id <= htab->top_id);
4565
0
  id_sec = htab->stub_group[input_section->id].link_sec;
4566
4567
0
  if (h != NULL && h->stub_cache != NULL
4568
0
      && h->stub_cache->h == h
4569
0
      && h->stub_cache->id_sec == id_sec
4570
0
      && h->stub_cache->stub_type == stub_type)
4571
0
    {
4572
0
      stub_entry = h->stub_cache;
4573
0
    }
4574
0
  else
4575
0
    {
4576
0
      char *stub_name;
4577
4578
0
      stub_name = elf32_arm_stub_name (id_sec, sym_sec, h, rel, stub_type);
4579
0
      if (stub_name == NULL)
4580
0
  return NULL;
4581
4582
0
      stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table,
4583
0
          stub_name, false, false);
4584
0
      if (h != NULL)
4585
0
  h->stub_cache = stub_entry;
4586
4587
0
      free (stub_name);
4588
0
    }
4589
4590
0
  return stub_entry;
4591
0
}
4592
4593
/* Whether veneers of type STUB_TYPE require to be in a dedicated output
4594
   section.  */
4595
4596
static bool
4597
arm_dedicated_stub_output_section_required (enum elf32_arm_stub_type stub_type)
4598
0
{
4599
0
  if (stub_type >= max_stub_type)
4600
0
    abort ();  /* Should be unreachable.  */
4601
4602
0
  switch (stub_type)
4603
0
    {
4604
0
    case arm_stub_cmse_branch_thumb_only:
4605
0
      return true;
4606
4607
0
    default:
4608
0
      return false;
4609
0
    }
4610
4611
0
  abort ();  /* Should be unreachable.  */
4612
0
}
4613
4614
/* Required alignment (as a power of 2) for the dedicated section holding
4615
   veneers of type STUB_TYPE, or 0 if veneers of this type are interspersed
4616
   with input sections.  */
4617
4618
static int
4619
arm_dedicated_stub_output_section_required_alignment
4620
  (enum elf32_arm_stub_type stub_type)
4621
0
{
4622
0
  if (stub_type >= max_stub_type)
4623
0
    abort ();  /* Should be unreachable.  */
4624
4625
0
  switch (stub_type)
4626
0
    {
4627
    /* Vectors of Secure Gateway veneers must be aligned on 32byte
4628
       boundary.  */
4629
0
    case arm_stub_cmse_branch_thumb_only:
4630
0
      return 5;
4631
4632
0
    default:
4633
0
      BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4634
0
      return 0;
4635
0
    }
4636
4637
0
  abort ();  /* Should be unreachable.  */
4638
0
}
4639
4640
/* Name of the dedicated output section to put veneers of type STUB_TYPE, or
4641
   NULL if veneers of this type are interspersed with input sections.  */
4642
4643
static const char *
4644
arm_dedicated_stub_output_section_name (enum elf32_arm_stub_type stub_type)
4645
0
{
4646
0
  if (stub_type >= max_stub_type)
4647
0
    abort ();  /* Should be unreachable.  */
4648
4649
0
  switch (stub_type)
4650
0
    {
4651
0
    case arm_stub_cmse_branch_thumb_only:
4652
0
      return CMSE_STUB_NAME;
4653
4654
0
    default:
4655
0
      BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4656
0
      return NULL;
4657
0
    }
4658
4659
0
  abort ();  /* Should be unreachable.  */
4660
0
}
4661
4662
/* If veneers of type STUB_TYPE should go in a dedicated output section,
4663
   returns the address of the hash table field in HTAB holding a pointer to the
4664
   corresponding input section.  Otherwise, returns NULL.  */
4665
4666
static asection **
4667
arm_dedicated_stub_input_section_ptr (struct elf32_arm_link_hash_table *htab,
4668
              enum elf32_arm_stub_type stub_type)
4669
0
{
4670
0
  if (stub_type >= max_stub_type)
4671
0
    abort ();  /* Should be unreachable.  */
4672
4673
0
  switch (stub_type)
4674
0
    {
4675
0
    case arm_stub_cmse_branch_thumb_only:
4676
0
      return &htab->cmse_stub_sec;
4677
4678
0
    default:
4679
0
      BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4680
0
      return NULL;
4681
0
    }
4682
4683
0
  abort ();  /* Should be unreachable.  */
4684
0
}
4685
4686
/* Find or create a stub section to contain a stub of type STUB_TYPE.  SECTION
4687
   is the section that branch into veneer and can be NULL if stub should go in
4688
   a dedicated output section.  Returns a pointer to the stub section, and the
4689
   section to which the stub section will be attached (in *LINK_SEC_P).
4690
   LINK_SEC_P may be NULL.  */
4691
4692
static asection *
4693
elf32_arm_create_or_find_stub_sec (asection **link_sec_p, asection *section,
4694
           struct elf32_arm_link_hash_table *htab,
4695
           enum elf32_arm_stub_type stub_type)
4696
0
{
4697
0
  asection *link_sec, *out_sec, **stub_sec_p;
4698
0
  const char *stub_sec_prefix;
4699
0
  bool dedicated_output_section =
4700
0
    arm_dedicated_stub_output_section_required (stub_type);
4701
0
  int align;
4702
4703
0
  if (dedicated_output_section)
4704
0
    {
4705
0
      bfd *output_bfd = htab->obfd;
4706
0
      const char *out_sec_name =
4707
0
  arm_dedicated_stub_output_section_name (stub_type);
4708
0
      link_sec = NULL;
4709
0
      stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
4710
0
      stub_sec_prefix = out_sec_name;
4711
0
      align = arm_dedicated_stub_output_section_required_alignment (stub_type);
4712
0
      out_sec = bfd_get_section_by_name (output_bfd, out_sec_name);
4713
0
      if (out_sec == NULL)
4714
0
  {
4715
0
    _bfd_error_handler (_("no address assigned to the veneers output "
4716
0
        "section %s"), out_sec_name);
4717
0
    return NULL;
4718
0
  }
4719
0
    }
4720
0
  else
4721
0
    {
4722
0
      BFD_ASSERT (section->id <= htab->top_id);
4723
0
      link_sec = htab->stub_group[section->id].link_sec;
4724
0
      BFD_ASSERT (link_sec != NULL);
4725
0
      stub_sec_p = &htab->stub_group[section->id].stub_sec;
4726
0
      if (*stub_sec_p == NULL)
4727
0
  stub_sec_p = &htab->stub_group[link_sec->id].stub_sec;
4728
0
      stub_sec_prefix = link_sec->name;
4729
0
      out_sec = link_sec->output_section;
4730
0
      align = 3;
4731
0
    }
4732
4733
0
  if (*stub_sec_p == NULL)
4734
0
    {
4735
0
      size_t namelen;
4736
0
      bfd_size_type len;
4737
0
      char *s_name;
4738
4739
0
      namelen = strlen (stub_sec_prefix);
4740
0
      len = namelen + sizeof (STUB_SUFFIX);
4741
0
      s_name = (char *) bfd_alloc (htab->stub_bfd, len);
4742
0
      if (s_name == NULL)
4743
0
  return NULL;
4744
4745
0
      memcpy (s_name, stub_sec_prefix, namelen);
4746
0
      memcpy (s_name + namelen, STUB_SUFFIX, sizeof (STUB_SUFFIX));
4747
0
      *stub_sec_p = (*htab->add_stub_section) (s_name, out_sec, link_sec,
4748
0
                 align);
4749
0
      if (*stub_sec_p == NULL)
4750
0
  return NULL;
4751
4752
0
      out_sec->flags |= SEC_ALLOC | SEC_LOAD | SEC_READONLY | SEC_CODE
4753
0
      | SEC_HAS_CONTENTS | SEC_RELOC | SEC_IN_MEMORY
4754
0
      | SEC_KEEP;
4755
0
    }
4756
4757
0
  if (!dedicated_output_section)
4758
0
    htab->stub_group[section->id].stub_sec = *stub_sec_p;
4759
4760
0
  if (link_sec_p)
4761
0
    *link_sec_p = link_sec;
4762
4763
0
  return *stub_sec_p;
4764
0
}
4765
4766
/* Add a new stub entry to the stub hash.  Not all fields of the new
4767
   stub entry are initialised.  */
4768
4769
static struct elf32_arm_stub_hash_entry *
4770
elf32_arm_add_stub (const char *stub_name, asection *section,
4771
        struct elf32_arm_link_hash_table *htab,
4772
        enum elf32_arm_stub_type stub_type)
4773
0
{
4774
0
  asection *link_sec;
4775
0
  asection *stub_sec;
4776
0
  struct elf32_arm_stub_hash_entry *stub_entry;
4777
4778
0
  stub_sec = elf32_arm_create_or_find_stub_sec (&link_sec, section, htab,
4779
0
            stub_type);
4780
0
  if (stub_sec == NULL)
4781
0
    return NULL;
4782
4783
  /* Enter this entry into the linker stub hash table.  */
4784
0
  stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
4785
0
             true, false);
4786
0
  if (stub_entry == NULL)
4787
0
    {
4788
0
      if (section == NULL)
4789
0
  section = stub_sec;
4790
0
      _bfd_error_handler (_("%pB: cannot create stub entry %s"),
4791
0
        section->owner, stub_name);
4792
0
      return NULL;
4793
0
    }
4794
4795
0
  stub_entry->stub_sec = stub_sec;
4796
0
  stub_entry->stub_offset = (bfd_vma) -1;
4797
0
  stub_entry->id_sec = link_sec;
4798
4799
0
  return stub_entry;
4800
0
}
4801
4802
/* Store an Arm insn into an output section not processed by
4803
   elf32_arm_write_section.  */
4804
4805
static void
4806
put_arm_insn (struct elf32_arm_link_hash_table * htab,
4807
        bfd * output_bfd, bfd_vma val, void * ptr)
4808
0
{
4809
0
  if (htab->byteswap_code != bfd_little_endian (output_bfd))
4810
0
    bfd_putl32 (val, ptr);
4811
0
  else
4812
0
    bfd_putb32 (val, ptr);
4813
0
}
4814
4815
/* Store a 16-bit Thumb insn into an output section not processed by
4816
   elf32_arm_write_section.  */
4817
4818
static void
4819
put_thumb_insn (struct elf32_arm_link_hash_table * htab,
4820
    bfd * output_bfd, bfd_vma val, void * ptr)
4821
0
{
4822
0
  if (htab->byteswap_code != bfd_little_endian (output_bfd))
4823
0
    bfd_putl16 (val, ptr);
4824
0
  else
4825
0
    bfd_putb16 (val, ptr);
4826
0
}
4827
4828
/* Store a Thumb2 insn into an output section not processed by
4829
   elf32_arm_write_section.  */
4830
4831
static void
4832
put_thumb2_insn (struct elf32_arm_link_hash_table * htab,
4833
     bfd * output_bfd, bfd_vma val, bfd_byte * ptr)
4834
0
{
4835
  /* T2 instructions are 16-bit streamed.  */
4836
0
  if (htab->byteswap_code != bfd_little_endian (output_bfd))
4837
0
    {
4838
0
      bfd_putl16 ((val >> 16) & 0xffff, ptr);
4839
0
      bfd_putl16 ((val & 0xffff), ptr + 2);
4840
0
    }
4841
0
  else
4842
0
    {
4843
0
      bfd_putb16 ((val >> 16) & 0xffff, ptr);
4844
0
      bfd_putb16 ((val & 0xffff), ptr + 2);
4845
0
    }
4846
0
}
4847
4848
/* If it's possible to change R_TYPE to a more efficient access
4849
   model, return the new reloc type.  */
4850
4851
static unsigned
4852
elf32_arm_tls_transition (struct bfd_link_info *info, int r_type,
4853
        struct elf_link_hash_entry *h)
4854
0
{
4855
0
  int is_local = (h == NULL);
4856
4857
0
  if (bfd_link_dll (info)
4858
0
      || (h && h->root.type == bfd_link_hash_undefweak))
4859
0
    return r_type;
4860
4861
  /* We do not support relaxations for Old TLS models.  */
4862
0
  switch (r_type)
4863
0
    {
4864
0
    case R_ARM_TLS_GOTDESC:
4865
0
    case R_ARM_TLS_CALL:
4866
0
    case R_ARM_THM_TLS_CALL:
4867
0
    case R_ARM_TLS_DESCSEQ:
4868
0
    case R_ARM_THM_TLS_DESCSEQ:
4869
0
      return is_local ? R_ARM_TLS_LE32 : R_ARM_TLS_IE32;
4870
0
    }
4871
4872
0
  return r_type;
4873
0
}
4874
4875
static bfd_reloc_status_type elf32_arm_final_link_relocate
4876
  (reloc_howto_type *, bfd *, bfd *, asection *, bfd_byte *,
4877
   Elf_Internal_Rela *, bfd_vma, struct bfd_link_info *, asection *,
4878
   const char *, unsigned char, enum arm_st_branch_type,
4879
   struct elf_link_hash_entry *, bool *, char **);
4880
4881
static unsigned int
4882
arm_stub_required_alignment (enum elf32_arm_stub_type stub_type)
4883
0
{
4884
0
  switch (stub_type)
4885
0
    {
4886
0
    case arm_stub_a8_veneer_b_cond:
4887
0
    case arm_stub_a8_veneer_b:
4888
0
    case arm_stub_a8_veneer_bl:
4889
0
      return 2;
4890
4891
0
    case arm_stub_long_branch_any_any:
4892
0
    case arm_stub_long_branch_v4t_arm_thumb:
4893
0
    case arm_stub_long_branch_thumb_only:
4894
0
    case arm_stub_long_branch_thumb2_only:
4895
0
    case arm_stub_long_branch_thumb2_only_pure:
4896
0
    case arm_stub_long_branch_v4t_thumb_thumb:
4897
0
    case arm_stub_long_branch_v4t_thumb_arm:
4898
0
    case arm_stub_short_branch_v4t_thumb_arm:
4899
0
    case arm_stub_long_branch_any_arm_pic:
4900
0
    case arm_stub_long_branch_any_thumb_pic:
4901
0
    case arm_stub_long_branch_v4t_thumb_thumb_pic:
4902
0
    case arm_stub_long_branch_v4t_arm_thumb_pic:
4903
0
    case arm_stub_long_branch_v4t_thumb_arm_pic:
4904
0
    case arm_stub_long_branch_thumb_only_pic:
4905
0
    case arm_stub_long_branch_any_tls_pic:
4906
0
    case arm_stub_long_branch_v4t_thumb_tls_pic:
4907
0
    case arm_stub_cmse_branch_thumb_only:
4908
0
    case arm_stub_a8_veneer_blx:
4909
0
      return 4;
4910
4911
0
    default:
4912
0
      abort ();  /* Should be unreachable.  */
4913
0
    }
4914
0
}
4915
4916
/* Returns whether stubs of type STUB_TYPE take over the symbol they are
4917
   veneering (TRUE) or have their own symbol (FALSE).  */
4918
4919
static bool
4920
arm_stub_sym_claimed (enum elf32_arm_stub_type stub_type)
4921
0
{
4922
0
  if (stub_type >= max_stub_type)
4923
0
    abort ();  /* Should be unreachable.  */
4924
4925
0
  switch (stub_type)
4926
0
    {
4927
0
    case arm_stub_cmse_branch_thumb_only:
4928
0
      return true;
4929
4930
0
    default:
4931
0
      return false;
4932
0
    }
4933
4934
0
  abort ();  /* Should be unreachable.  */
4935
0
}
4936
4937
/* Returns the padding needed for the dedicated section used stubs of type
4938
   STUB_TYPE.  */
4939
4940
static int
4941
arm_dedicated_stub_section_padding (enum elf32_arm_stub_type stub_type)
4942
0
{
4943
0
  if (stub_type >= max_stub_type)
4944
0
    abort ();  /* Should be unreachable.  */
4945
4946
0
  switch (stub_type)
4947
0
    {
4948
0
    case arm_stub_cmse_branch_thumb_only:
4949
0
      return 32;
4950
4951
0
    default:
4952
0
      return 0;
4953
0
    }
4954
4955
0
  abort ();  /* Should be unreachable.  */
4956
0
}
4957
4958
/* If veneers of type STUB_TYPE should go in a dedicated output section,
4959
   returns the address of the hash table field in HTAB holding the offset at
4960
   which new veneers should be layed out in the stub section.  */
4961
4962
static bfd_vma*
4963
arm_new_stubs_start_offset_ptr (struct elf32_arm_link_hash_table *htab,
4964
        enum elf32_arm_stub_type stub_type)
4965
0
{
4966
0
  switch (stub_type)
4967
0
    {
4968
0
    case arm_stub_cmse_branch_thumb_only:
4969
0
      return &htab->new_cmse_stub_offset;
4970
4971
0
    default:
4972
0
      BFD_ASSERT (!arm_dedicated_stub_output_section_required (stub_type));
4973
0
      return NULL;
4974
0
    }
4975
0
}
4976
4977
static bool
4978
arm_build_one_stub (struct bfd_hash_entry *gen_entry,
4979
        void * in_arg)
4980
0
{
4981
0
#define MAXRELOCS 3
4982
0
  bool removed_sg_veneer;
4983
0
  struct elf32_arm_stub_hash_entry *stub_entry;
4984
0
  struct elf32_arm_link_hash_table *globals;
4985
0
  struct bfd_link_info *info;
4986
0
  asection *stub_sec;
4987
0
  bfd *stub_bfd;
4988
0
  bfd_byte *loc;
4989
0
  bfd_vma sym_value;
4990
0
  int template_size;
4991
0
  int size;
4992
0
  const insn_sequence *template_sequence;
4993
0
  int i;
4994
0
  int stub_reloc_idx[MAXRELOCS] = {-1, -1};
4995
0
  int stub_reloc_offset[MAXRELOCS] = {0, 0};
4996
0
  int nrelocs = 0;
4997
0
  int just_allocated = 0;
4998
4999
  /* Massage our args to the form they really have.  */
5000
0
  stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
5001
0
  info = (struct bfd_link_info *) in_arg;
5002
5003
  /* Fail if the target section could not be assigned to an output
5004
     section.  The user should fix his linker script.  */
5005
0
  if (stub_entry->target_section->output_section == NULL
5006
0
      && info->non_contiguous_regions)
5007
0
    info->callbacks->fatal (_("%P: Could not assign `%pA' to an output section. "
5008
0
            "Retry without --enable-non-contiguous-regions.\n"),
5009
0
          stub_entry->target_section);
5010
5011
0
  globals = elf32_arm_hash_table (info);
5012
0
  if (globals == NULL)
5013
0
    return false;
5014
5015
0
  stub_sec = stub_entry->stub_sec;
5016
5017
0
  if ((globals->fix_cortex_a8 < 0)
5018
0
      != (arm_stub_required_alignment (stub_entry->stub_type) == 2))
5019
    /* We have to do less-strictly-aligned fixes last.  */
5020
0
    return true;
5021
5022
  /* Assign a slot at the end of section if none assigned yet.  */
5023
0
  if (stub_entry->stub_offset == (bfd_vma) -1)
5024
0
    {
5025
0
      stub_entry->stub_offset = stub_sec->size;
5026
0
      just_allocated = 1;
5027
0
    }
5028
0
  loc = stub_sec->contents + stub_entry->stub_offset;
5029
5030
0
  stub_bfd = stub_sec->owner;
5031
5032
  /* This is the address of the stub destination.  */
5033
0
  sym_value = (stub_entry->target_value
5034
0
         + stub_entry->target_section->output_offset
5035
0
         + stub_entry->target_section->output_section->vma);
5036
5037
0
  template_sequence = stub_entry->stub_template;
5038
0
  template_size = stub_entry->stub_template_size;
5039
5040
0
  size = 0;
5041
0
  for (i = 0; i < template_size; i++)
5042
0
    {
5043
0
      switch (template_sequence[i].type)
5044
0
  {
5045
0
  case THUMB16_TYPE:
5046
0
    {
5047
0
      bfd_vma data = (bfd_vma) template_sequence[i].data;
5048
0
      if (template_sequence[i].reloc_addend != 0)
5049
0
        {
5050
    /* We've borrowed the reloc_addend field to mean we should
5051
       insert a condition code into this (Thumb-1 branch)
5052
       instruction.  See THUMB16_BCOND_INSN.  */
5053
0
    BFD_ASSERT ((data & 0xff00) == 0xd000);
5054
0
    data |= ((stub_entry->orig_insn >> 22) & 0xf) << 8;
5055
0
        }
5056
0
      bfd_put_16 (stub_bfd, data, loc + size);
5057
0
      size += 2;
5058
0
    }
5059
0
    break;
5060
5061
0
  case THUMB32_TYPE:
5062
0
    bfd_put_16 (stub_bfd,
5063
0
          (template_sequence[i].data >> 16) & 0xffff,
5064
0
          loc + size);
5065
0
    bfd_put_16 (stub_bfd, template_sequence[i].data & 0xffff,
5066
0
          loc + size + 2);
5067
0
    if (template_sequence[i].r_type != R_ARM_NONE)
5068
0
      {
5069
0
        stub_reloc_idx[nrelocs] = i;
5070
0
        stub_reloc_offset[nrelocs++] = size;
5071
0
      }
5072
0
    size += 4;
5073
0
    break;
5074
5075
0
  case ARM_TYPE:
5076
0
    bfd_put_32 (stub_bfd, template_sequence[i].data,
5077
0
          loc + size);
5078
    /* Handle cases where the target is encoded within the
5079
       instruction.  */
5080
0
    if (template_sequence[i].r_type == R_ARM_JUMP24)
5081
0
      {
5082
0
        stub_reloc_idx[nrelocs] = i;
5083
0
        stub_reloc_offset[nrelocs++] = size;
5084
0
      }
5085
0
    size += 4;
5086
0
    break;
5087
5088
0
  case DATA_TYPE:
5089
0
    bfd_put_32 (stub_bfd, template_sequence[i].data, loc + size);
5090
0
    stub_reloc_idx[nrelocs] = i;
5091
0
    stub_reloc_offset[nrelocs++] = size;
5092
0
    size += 4;
5093
0
    break;
5094
5095
0
  default:
5096
0
    BFD_FAIL ();
5097
0
    return false;
5098
0
  }
5099
0
    }
5100
5101
0
  if (just_allocated)
5102
0
    stub_sec->size += size;
5103
5104
  /* Stub size has already been computed in arm_size_one_stub. Check
5105
     consistency.  */
5106
0
  BFD_ASSERT (size == stub_entry->stub_size);
5107
5108
  /* Destination is Thumb. Force bit 0 to 1 to reflect this.  */
5109
0
  if (stub_entry->branch_type == ST_BRANCH_TO_THUMB)
5110
0
    sym_value |= 1;
5111
5112
  /* Assume non empty slots have at least one and at most MAXRELOCS entries
5113
     to relocate in each stub.  */
5114
0
  removed_sg_veneer =
5115
0
    (size == 0 && stub_entry->stub_type == arm_stub_cmse_branch_thumb_only);
5116
0
  BFD_ASSERT (removed_sg_veneer || (nrelocs != 0 && nrelocs <= MAXRELOCS));
5117
5118
0
  for (i = 0; i < nrelocs; i++)
5119
0
    {
5120
0
      Elf_Internal_Rela rel;
5121
0
      bool unresolved_reloc;
5122
0
      char *error_message;
5123
0
      bfd_vma points_to =
5124
0
  sym_value + template_sequence[stub_reloc_idx[i]].reloc_addend;
5125
5126
0
      rel.r_offset = stub_entry->stub_offset + stub_reloc_offset[i];
5127
0
      rel.r_info = ELF32_R_INFO (0,
5128
0
         template_sequence[stub_reloc_idx[i]].r_type);
5129
0
      rel.r_addend = 0;
5130
5131
0
      if (stub_entry->stub_type == arm_stub_a8_veneer_b_cond && i == 0)
5132
  /* The first relocation in the elf32_arm_stub_a8_veneer_b_cond[]
5133
     template should refer back to the instruction after the original
5134
     branch.  We use target_section as Cortex-A8 erratum workaround stubs
5135
     are only generated when both source and target are in the same
5136
     section.  */
5137
0
  points_to = stub_entry->target_section->output_section->vma
5138
0
        + stub_entry->target_section->output_offset
5139
0
        + stub_entry->source_value;
5140
5141
0
      elf32_arm_final_link_relocate (elf32_arm_howto_from_type
5142
0
    (template_sequence[stub_reloc_idx[i]].r_type),
5143
0
     stub_bfd, info->output_bfd, stub_sec, stub_sec->contents, &rel,
5144
0
     points_to, info, stub_entry->target_section, "", STT_FUNC,
5145
0
     stub_entry->branch_type,
5146
0
     (struct elf_link_hash_entry *) stub_entry->h, &unresolved_reloc,
5147
0
     &error_message);
5148
0
    }
5149
5150
0
  return true;
5151
0
#undef MAXRELOCS
5152
0
}
5153
5154
/* Calculate the template, template size and instruction size for a stub.
5155
   Return value is the instruction size.  */
5156
5157
static unsigned int
5158
find_stub_size_and_template (enum elf32_arm_stub_type stub_type,
5159
           const insn_sequence **stub_template,
5160
           int *stub_template_size)
5161
0
{
5162
0
  const insn_sequence *template_sequence = NULL;
5163
0
  int template_size = 0, i;
5164
0
  unsigned int size;
5165
5166
0
  template_sequence = stub_definitions[stub_type].template_sequence;
5167
0
  if (stub_template)
5168
0
    *stub_template = template_sequence;
5169
5170
0
  template_size = stub_definitions[stub_type].template_size;
5171
0
  if (stub_template_size)
5172
0
    *stub_template_size = template_size;
5173
5174
0
  size = 0;
5175
0
  for (i = 0; i < template_size; i++)
5176
0
    {
5177
0
      switch (template_sequence[i].type)
5178
0
  {
5179
0
  case THUMB16_TYPE:
5180
0
    size += 2;
5181
0
    break;
5182
5183
0
  case ARM_TYPE:
5184
0
  case THUMB32_TYPE:
5185
0
  case DATA_TYPE:
5186
0
    size += 4;
5187
0
    break;
5188
5189
0
  default:
5190
0
    BFD_FAIL ();
5191
0
    return 0;
5192
0
  }
5193
0
    }
5194
5195
0
  return size;
5196
0
}
5197
5198
/* As above, but don't actually build the stub.  Just bump offset so
5199
   we know stub section sizes.  */
5200
5201
static bool
5202
arm_size_one_stub (struct bfd_hash_entry *gen_entry,
5203
       void *in_arg ATTRIBUTE_UNUSED)
5204
0
{
5205
0
  struct elf32_arm_stub_hash_entry *stub_entry;
5206
0
  const insn_sequence *template_sequence;
5207
0
  int template_size, size;
5208
5209
  /* Massage our args to the form they really have.  */
5210
0
  stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
5211
5212
0
  BFD_ASSERT ((stub_entry->stub_type > arm_stub_none)
5213
0
        && stub_entry->stub_type < ARRAY_SIZE (stub_definitions));
5214
5215
0
  size = find_stub_size_and_template (stub_entry->stub_type, &template_sequence,
5216
0
              &template_size);
5217
5218
  /* Initialized to -1.  Null size indicates an empty slot full of zeros.  */
5219
0
  if (stub_entry->stub_template_size)
5220
0
    {
5221
0
      stub_entry->stub_size = size;
5222
0
      stub_entry->stub_template = template_sequence;
5223
0
      stub_entry->stub_template_size = template_size;
5224
0
    }
5225
5226
  /* Already accounted for.  */
5227
0
  if (stub_entry->stub_offset != (bfd_vma) -1)
5228
0
    return true;
5229
5230
0
  size = (size + 7) & ~7;
5231
0
  stub_entry->stub_sec->size += size;
5232
5233
0
  return true;
5234
0
}
5235
5236
/* External entry points for sizing and building linker stubs.  */
5237
5238
/* Set up various things so that we can make a list of input sections
5239
   for each output section included in the link.  Returns -1 on error,
5240
   0 when no stubs will be needed, and 1 on success.  */
5241
5242
int
5243
elf32_arm_setup_section_lists (bfd *output_bfd,
5244
             struct bfd_link_info *info)
5245
0
{
5246
0
  bfd *input_bfd;
5247
0
  unsigned int bfd_count;
5248
0
  unsigned int top_id, top_index;
5249
0
  asection *section;
5250
0
  asection **input_list, **list;
5251
0
  size_t amt;
5252
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5253
5254
0
  if (htab == NULL)
5255
0
    return 0;
5256
5257
  /* Count the number of input BFDs and find the top input section id.  */
5258
0
  for (input_bfd = info->input_bfds, bfd_count = 0, top_id = 0;
5259
0
       input_bfd != NULL;
5260
0
       input_bfd = input_bfd->link.next)
5261
0
    {
5262
0
      bfd_count += 1;
5263
0
      for (section = input_bfd->sections;
5264
0
     section != NULL;
5265
0
     section = section->next)
5266
0
  {
5267
0
    if (top_id < section->id)
5268
0
      top_id = section->id;
5269
0
  }
5270
0
    }
5271
0
  htab->bfd_count = bfd_count;
5272
5273
0
  amt = sizeof (struct map_stub) * (top_id + 1);
5274
0
  htab->stub_group = (struct map_stub *) bfd_zmalloc (amt);
5275
0
  if (htab->stub_group == NULL)
5276
0
    return -1;
5277
0
  htab->top_id = top_id;
5278
5279
  /* We can't use output_bfd->section_count here to find the top output
5280
     section index as some sections may have been removed, and
5281
     _bfd_strip_section_from_output doesn't renumber the indices.  */
5282
0
  for (section = output_bfd->sections, top_index = 0;
5283
0
       section != NULL;
5284
0
       section = section->next)
5285
0
    {
5286
0
      if (top_index < section->index)
5287
0
  top_index = section->index;
5288
0
    }
5289
5290
0
  htab->top_index = top_index;
5291
0
  amt = sizeof (asection *) * (top_index + 1);
5292
0
  input_list = (asection **) bfd_malloc (amt);
5293
0
  htab->input_list = input_list;
5294
0
  if (input_list == NULL)
5295
0
    return -1;
5296
5297
  /* For sections we aren't interested in, mark their entries with a
5298
     value we can check later.  */
5299
0
  list = input_list + top_index;
5300
0
  do
5301
0
    *list = bfd_abs_section_ptr;
5302
0
  while (list-- != input_list);
5303
5304
0
  for (section = output_bfd->sections;
5305
0
       section != NULL;
5306
0
       section = section->next)
5307
0
    {
5308
0
      if ((section->flags & SEC_CODE) != 0)
5309
0
  input_list[section->index] = NULL;
5310
0
    }
5311
5312
0
  return 1;
5313
0
}
5314
5315
/* The linker repeatedly calls this function for each input section,
5316
   in the order that input sections are linked into output sections.
5317
   Build lists of input sections to determine groupings between which
5318
   we may insert linker stubs.  */
5319
5320
void
5321
elf32_arm_next_input_section (struct bfd_link_info *info,
5322
            asection *isec)
5323
0
{
5324
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5325
5326
0
  if (htab == NULL)
5327
0
    return;
5328
5329
0
  if (isec->output_section->index <= htab->top_index)
5330
0
    {
5331
0
      asection **list = htab->input_list + isec->output_section->index;
5332
5333
0
      if (*list != bfd_abs_section_ptr && (isec->flags & SEC_CODE) != 0)
5334
0
  {
5335
    /* Steal the link_sec pointer for our list.  */
5336
0
#define PREV_SEC(sec) (htab->stub_group[(sec)->id].link_sec)
5337
    /* This happens to make the list in reverse order,
5338
       which we reverse later.  */
5339
0
    PREV_SEC (isec) = *list;
5340
0
    *list = isec;
5341
0
  }
5342
0
    }
5343
0
}
5344
5345
/* See whether we can group stub sections together.  Grouping stub
5346
   sections may result in fewer stubs.  More importantly, we need to
5347
   put all .init* and .fini* stubs at the end of the .init or
5348
   .fini output sections respectively, because glibc splits the
5349
   _init and _fini functions into multiple parts.  Putting a stub in
5350
   the middle of a function is not a good idea.  */
5351
5352
static void
5353
group_sections (struct elf32_arm_link_hash_table *htab,
5354
    bfd_size_type stub_group_size,
5355
    bool stubs_always_after_branch)
5356
0
{
5357
0
  asection **list = htab->input_list;
5358
5359
0
  do
5360
0
    {
5361
0
      asection *tail = *list;
5362
0
      asection *head;
5363
5364
0
      if (tail == bfd_abs_section_ptr)
5365
0
  continue;
5366
5367
      /* Reverse the list: we must avoid placing stubs at the
5368
   beginning of the section because the beginning of the text
5369
   section may be required for an interrupt vector in bare metal
5370
   code.  */
5371
0
#define NEXT_SEC PREV_SEC
5372
0
      head = NULL;
5373
0
      while (tail != NULL)
5374
0
  {
5375
    /* Pop from tail.  */
5376
0
    asection *item = tail;
5377
0
    tail = PREV_SEC (item);
5378
5379
    /* Push on head.  */
5380
0
    NEXT_SEC (item) = head;
5381
0
    head = item;
5382
0
  }
5383
5384
0
      while (head != NULL)
5385
0
  {
5386
0
    asection *curr;
5387
0
    asection *next;
5388
0
    bfd_vma stub_group_start = head->output_offset;
5389
0
    bfd_vma end_of_next;
5390
5391
0
    curr = head;
5392
0
    while (NEXT_SEC (curr) != NULL)
5393
0
      {
5394
0
        next = NEXT_SEC (curr);
5395
0
        end_of_next = next->output_offset + next->size;
5396
0
        if (end_of_next - stub_group_start >= stub_group_size)
5397
    /* End of NEXT is too far from start, so stop.  */
5398
0
    break;
5399
        /* Add NEXT to the group.  */
5400
0
        curr = next;
5401
0
      }
5402
5403
    /* OK, the size from the start to the start of CURR is less
5404
       than stub_group_size and thus can be handled by one stub
5405
       section.  (Or the head section is itself larger than
5406
       stub_group_size, in which case we may be toast.)
5407
       We should really be keeping track of the total size of
5408
       stubs added here, as stubs contribute to the final output
5409
       section size.  */
5410
0
    do
5411
0
      {
5412
0
        next = NEXT_SEC (head);
5413
        /* Set up this stub group.  */
5414
0
        htab->stub_group[head->id].link_sec = curr;
5415
0
      }
5416
0
    while (head != curr && (head = next) != NULL);
5417
5418
    /* But wait, there's more!  Input sections up to stub_group_size
5419
       bytes after the stub section can be handled by it too.  */
5420
0
    if (!stubs_always_after_branch)
5421
0
      {
5422
0
        stub_group_start = curr->output_offset + curr->size;
5423
5424
0
        while (next != NULL)
5425
0
    {
5426
0
      end_of_next = next->output_offset + next->size;
5427
0
      if (end_of_next - stub_group_start >= stub_group_size)
5428
        /* End of NEXT is too far from stubs, so stop.  */
5429
0
        break;
5430
      /* Add NEXT to the stub group.  */
5431
0
      head = next;
5432
0
      next = NEXT_SEC (head);
5433
0
      htab->stub_group[head->id].link_sec = curr;
5434
0
    }
5435
0
      }
5436
0
    head = next;
5437
0
  }
5438
0
    }
5439
0
  while (list++ != htab->input_list + htab->top_index);
5440
5441
0
  free (htab->input_list);
5442
0
#undef PREV_SEC
5443
0
#undef NEXT_SEC
5444
0
}
5445
5446
/* Comparison function for sorting/searching relocations relating to Cortex-A8
5447
   erratum fix.  */
5448
5449
static int
5450
a8_reloc_compare (const void *a, const void *b)
5451
0
{
5452
0
  const struct a8_erratum_reloc *ra = (const struct a8_erratum_reloc *) a;
5453
0
  const struct a8_erratum_reloc *rb = (const struct a8_erratum_reloc *) b;
5454
5455
0
  if (ra->from < rb->from)
5456
0
    return -1;
5457
0
  else if (ra->from > rb->from)
5458
0
    return 1;
5459
0
  else
5460
0
    return 0;
5461
0
}
5462
5463
static struct elf_link_hash_entry *find_thumb_glue (struct bfd_link_info *,
5464
                const char *, char **);
5465
5466
/* Helper function to scan code for sequences which might trigger the Cortex-A8
5467
   branch/TLB erratum.  Fill in the table described by A8_FIXES_P,
5468
   NUM_A8_FIXES_P, A8_FIX_TABLE_SIZE_P.  Returns true if an error occurs, false
5469
   otherwise.  */
5470
5471
static bool
5472
cortex_a8_erratum_scan (bfd *input_bfd,
5473
      struct bfd_link_info *info,
5474
      struct a8_erratum_fix **a8_fixes_p,
5475
      unsigned int *num_a8_fixes_p,
5476
      unsigned int *a8_fix_table_size_p,
5477
      struct a8_erratum_reloc *a8_relocs,
5478
      unsigned int num_a8_relocs,
5479
      unsigned prev_num_a8_fixes,
5480
      bool *stub_changed_p)
5481
0
{
5482
0
  asection *section;
5483
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
5484
0
  struct a8_erratum_fix *a8_fixes = *a8_fixes_p;
5485
0
  unsigned int num_a8_fixes = *num_a8_fixes_p;
5486
0
  unsigned int a8_fix_table_size = *a8_fix_table_size_p;
5487
5488
0
  if (htab == NULL)
5489
0
    return false;
5490
5491
0
  for (section = input_bfd->sections;
5492
0
       section != NULL;
5493
0
       section = section->next)
5494
0
    {
5495
0
      bfd_byte *contents = NULL;
5496
0
      struct _arm_elf_section_data *sec_data;
5497
0
      unsigned int span;
5498
0
      bfd_vma base_vma;
5499
5500
0
      if (elf_section_type (section) != SHT_PROGBITS
5501
0
    || (elf_section_flags (section) & SHF_EXECINSTR) == 0
5502
0
    || (section->flags & SEC_EXCLUDE) != 0
5503
0
    || (section->sec_info_type == SEC_INFO_TYPE_JUST_SYMS)
5504
0
    || (section->output_section == bfd_abs_section_ptr))
5505
0
  continue;
5506
5507
0
      base_vma = section->output_section->vma + section->output_offset;
5508
5509
0
      if (elf_section_data (section)->this_hdr.contents != NULL)
5510
0
  contents = elf_section_data (section)->this_hdr.contents;
5511
0
      else if (! bfd_malloc_and_get_section (input_bfd, section, &contents))
5512
0
  return true;
5513
5514
0
      sec_data = elf32_arm_section_data (section);
5515
5516
0
      for (span = 0; span < sec_data->mapcount; span++)
5517
0
  {
5518
0
    unsigned int span_start = sec_data->map[span].vma;
5519
0
    unsigned int span_end = (span == sec_data->mapcount - 1)
5520
0
      ? section->size : sec_data->map[span + 1].vma;
5521
0
    unsigned int i;
5522
0
    char span_type = sec_data->map[span].type;
5523
0
    bool last_was_32bit = false, last_was_branch = false;
5524
5525
0
    if (span_type != 't')
5526
0
      continue;
5527
5528
    /* Span is entirely within a single 4KB region: skip scanning.  */
5529
0
    if (((base_vma + span_start) & ~0xfff)
5530
0
        == ((base_vma + span_end) & ~0xfff))
5531
0
      continue;
5532
5533
    /* Scan for 32-bit Thumb-2 branches which span two 4K regions, where:
5534
5535
         * The opcode is BLX.W, BL.W, B.W, Bcc.W
5536
         * The branch target is in the same 4KB region as the
5537
     first half of the branch.
5538
         * The instruction before the branch is a 32-bit
5539
     length non-branch instruction.  */
5540
0
    for (i = span_start; i < span_end;)
5541
0
      {
5542
0
        unsigned int insn = bfd_getl16 (&contents[i]);
5543
0
        bool insn_32bit = false, is_blx = false, is_b = false;
5544
0
        bool is_bl = false, is_bcc = false, is_32bit_branch;
5545
5546
0
        if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
5547
0
    insn_32bit = true;
5548
5549
0
        if (insn_32bit)
5550
0
    {
5551
      /* Load the rest of the insn (in manual-friendly order).  */
5552
0
      insn = (insn << 16) | bfd_getl16 (&contents[i + 2]);
5553
5554
      /* Encoding T4: B<c>.W.  */
5555
0
      is_b = (insn & 0xf800d000) == 0xf0009000;
5556
      /* Encoding T1: BL<c>.W.  */
5557
0
      is_bl = (insn & 0xf800d000) == 0xf000d000;
5558
      /* Encoding T2: BLX<c>.W.  */
5559
0
      is_blx = (insn & 0xf800d000) == 0xf000c000;
5560
      /* Encoding T3: B<c>.W (not permitted in IT block).  */
5561
0
      is_bcc = (insn & 0xf800d000) == 0xf0008000
5562
0
         && (insn & 0x07f00000) != 0x03800000;
5563
0
    }
5564
5565
0
        is_32bit_branch = is_b || is_bl || is_blx || is_bcc;
5566
5567
0
        if (((base_vma + i) & 0xfff) == 0xffe
5568
0
      && insn_32bit
5569
0
      && is_32bit_branch
5570
0
      && last_was_32bit
5571
0
      && ! last_was_branch)
5572
0
    {
5573
0
      bfd_signed_vma offset = 0;
5574
0
      bool force_target_arm = false;
5575
0
      bool force_target_thumb = false;
5576
0
      bfd_vma target;
5577
0
      enum elf32_arm_stub_type stub_type = arm_stub_none;
5578
0
      struct a8_erratum_reloc key, *found;
5579
0
      bool use_plt = false;
5580
5581
0
      key.from = base_vma + i;
5582
0
      found = (struct a8_erratum_reloc *)
5583
0
          bsearch (&key, a8_relocs, num_a8_relocs,
5584
0
             sizeof (struct a8_erratum_reloc),
5585
0
             &a8_reloc_compare);
5586
5587
0
      if (found)
5588
0
        {
5589
0
          char *error_message = NULL;
5590
0
          struct elf_link_hash_entry *entry;
5591
5592
          /* We don't care about the error returned from this
5593
       function, only if there is glue or not.  */
5594
0
          entry = find_thumb_glue (info, found->sym_name,
5595
0
                 &error_message);
5596
5597
0
          if (entry)
5598
0
      found->non_a8_stub = true;
5599
5600
          /* Keep a simpler condition, for the sake of clarity.  */
5601
0
          if (htab->root.splt != NULL && found->hash != NULL
5602
0
        && found->hash->root.plt.offset != (bfd_vma) -1)
5603
0
      use_plt = true;
5604
5605
0
          if (found->r_type == R_ARM_THM_CALL)
5606
0
      {
5607
0
        if (found->branch_type == ST_BRANCH_TO_ARM
5608
0
            || use_plt)
5609
0
          force_target_arm = true;
5610
0
        else
5611
0
          force_target_thumb = true;
5612
0
      }
5613
0
        }
5614
5615
      /* Check if we have an offending branch instruction.  */
5616
5617
0
      if (found && found->non_a8_stub)
5618
        /* We've already made a stub for this instruction, e.g.
5619
           it's a long branch or a Thumb->ARM stub.  Assume that
5620
           stub will suffice to work around the A8 erratum (see
5621
           setting of always_after_branch above).  */
5622
0
        ;
5623
0
      else if (is_bcc)
5624
0
        {
5625
0
          offset = (insn & 0x7ff) << 1;
5626
0
          offset |= (insn & 0x3f0000) >> 4;
5627
0
          offset |= (insn & 0x2000) ? 0x40000 : 0;
5628
0
          offset |= (insn & 0x800) ? 0x80000 : 0;
5629
0
          offset |= (insn & 0x4000000) ? 0x100000 : 0;
5630
0
          if (offset & 0x100000)
5631
0
      offset |= ~ ((bfd_signed_vma) 0xfffff);
5632
0
          stub_type = arm_stub_a8_veneer_b_cond;
5633
0
        }
5634
0
      else if (is_b || is_bl || is_blx)
5635
0
        {
5636
0
          int s = (insn & 0x4000000) != 0;
5637
0
          int j1 = (insn & 0x2000) != 0;
5638
0
          int j2 = (insn & 0x800) != 0;
5639
0
          int i1 = !(j1 ^ s);
5640
0
          int i2 = !(j2 ^ s);
5641
5642
0
          offset = (insn & 0x7ff) << 1;
5643
0
          offset |= (insn & 0x3ff0000) >> 4;
5644
0
          offset |= i2 << 22;
5645
0
          offset |= i1 << 23;
5646
0
          offset |= s << 24;
5647
0
          if (offset & 0x1000000)
5648
0
      offset |= ~ ((bfd_signed_vma) 0xffffff);
5649
5650
0
          if (is_blx)
5651
0
      offset &= ~ ((bfd_signed_vma) 3);
5652
5653
0
          stub_type = is_blx ? arm_stub_a8_veneer_blx :
5654
0
      is_bl ? arm_stub_a8_veneer_bl : arm_stub_a8_veneer_b;
5655
0
        }
5656
5657
0
      if (stub_type != arm_stub_none)
5658
0
        {
5659
0
          bfd_vma pc_for_insn = base_vma + i + 4;
5660
5661
          /* The original instruction is a BL, but the target is
5662
       an ARM instruction.  If we were not making a stub,
5663
       the BL would have been converted to a BLX.  Use the
5664
       BLX stub instead in that case.  */
5665
0
          if (htab->use_blx && force_target_arm
5666
0
        && stub_type == arm_stub_a8_veneer_bl)
5667
0
      {
5668
0
        stub_type = arm_stub_a8_veneer_blx;
5669
0
        is_blx = true;
5670
0
        is_bl = false;
5671
0
      }
5672
          /* Conversely, if the original instruction was
5673
       BLX but the target is Thumb mode, use the BL
5674
       stub.  */
5675
0
          else if (force_target_thumb
5676
0
             && stub_type == arm_stub_a8_veneer_blx)
5677
0
      {
5678
0
        stub_type = arm_stub_a8_veneer_bl;
5679
0
        is_blx = false;
5680
0
        is_bl = true;
5681
0
      }
5682
5683
0
          if (is_blx)
5684
0
      pc_for_insn &= ~ ((bfd_vma) 3);
5685
5686
          /* If we found a relocation, use the proper destination,
5687
       not the offset in the (unrelocated) instruction.
5688
       Note this is always done if we switched the stub type
5689
       above.  */
5690
0
          if (found)
5691
0
      offset =
5692
0
        (bfd_signed_vma) (found->destination - pc_for_insn);
5693
5694
          /* If the stub will use a Thumb-mode branch to a
5695
       PLT target, redirect it to the preceding Thumb
5696
       entry point.  */
5697
0
          if (stub_type != arm_stub_a8_veneer_blx && use_plt)
5698
0
      offset -= PLT_THUMB_STUB_SIZE;
5699
5700
0
          target = pc_for_insn + offset;
5701
5702
          /* The BLX stub is ARM-mode code.  Adjust the offset to
5703
       take the different PC value (+8 instead of +4) into
5704
       account.  */
5705
0
          if (stub_type == arm_stub_a8_veneer_blx)
5706
0
      offset += 4;
5707
5708
0
          if (((base_vma + i) & ~0xfff) == (target & ~0xfff))
5709
0
      {
5710
0
        char *stub_name = NULL;
5711
5712
0
        if (num_a8_fixes == a8_fix_table_size)
5713
0
          {
5714
0
            a8_fix_table_size *= 2;
5715
0
            a8_fixes = (struct a8_erratum_fix *)
5716
0
          bfd_realloc (a8_fixes,
5717
0
                 sizeof (struct a8_erratum_fix)
5718
0
                 * a8_fix_table_size);
5719
0
          }
5720
5721
0
        if (num_a8_fixes < prev_num_a8_fixes)
5722
0
          {
5723
            /* If we're doing a subsequent scan,
5724
         check if we've found the same fix as
5725
         before, and try and reuse the stub
5726
         name.  */
5727
0
            stub_name = a8_fixes[num_a8_fixes].stub_name;
5728
0
            if ((a8_fixes[num_a8_fixes].section != section)
5729
0
          || (a8_fixes[num_a8_fixes].offset != i))
5730
0
        {
5731
0
          free (stub_name);
5732
0
          stub_name = NULL;
5733
0
          *stub_changed_p = true;
5734
0
        }
5735
0
          }
5736
5737
0
        if (!stub_name)
5738
0
          {
5739
0
            stub_name = (char *) bfd_malloc (8 + 1 + 8 + 1);
5740
0
            if (stub_name != NULL)
5741
0
        sprintf (stub_name, "%x:%x", section->id, i);
5742
0
          }
5743
5744
0
        a8_fixes[num_a8_fixes].input_bfd = input_bfd;
5745
0
        a8_fixes[num_a8_fixes].section = section;
5746
0
        a8_fixes[num_a8_fixes].offset = i;
5747
0
        a8_fixes[num_a8_fixes].target_offset =
5748
0
          target - base_vma;
5749
0
        a8_fixes[num_a8_fixes].orig_insn = insn;
5750
0
        a8_fixes[num_a8_fixes].stub_name = stub_name;
5751
0
        a8_fixes[num_a8_fixes].stub_type = stub_type;
5752
0
        a8_fixes[num_a8_fixes].branch_type =
5753
0
          is_blx ? ST_BRANCH_TO_ARM : ST_BRANCH_TO_THUMB;
5754
5755
0
        num_a8_fixes++;
5756
0
      }
5757
0
        }
5758
0
    }
5759
5760
0
        i += insn_32bit ? 4 : 2;
5761
0
        last_was_32bit = insn_32bit;
5762
0
        last_was_branch = is_32bit_branch;
5763
0
      }
5764
0
  }
5765
5766
0
      if (elf_section_data (section)->this_hdr.contents == NULL)
5767
0
  free (contents);
5768
0
    }
5769
5770
0
  *a8_fixes_p = a8_fixes;
5771
0
  *num_a8_fixes_p = num_a8_fixes;
5772
0
  *a8_fix_table_size_p = a8_fix_table_size;
5773
5774
0
  return false;
5775
0
}
5776
5777
/* Create or update a stub entry depending on whether the stub can already be
5778
   found in HTAB.  The stub is identified by:
5779
   - its type STUB_TYPE
5780
   - its source branch (note that several can share the same stub) whose
5781
     section and relocation (if any) are given by SECTION and IRELA
5782
     respectively
5783
   - its target symbol whose input section, hash, name, value and branch type
5784
     are given in SYM_SEC, HASH, SYM_NAME, SYM_VALUE and BRANCH_TYPE
5785
     respectively
5786
5787
   If found, the value of the stub's target symbol is updated from SYM_VALUE
5788
   and *NEW_STUB is set to FALSE.  Otherwise, *NEW_STUB is set to
5789
   TRUE and the stub entry is initialized.
5790
5791
   Returns the stub that was created or updated, or NULL if an error
5792
   occurred.  */
5793
5794
static struct elf32_arm_stub_hash_entry *
5795
elf32_arm_create_stub (struct elf32_arm_link_hash_table *htab,
5796
           enum elf32_arm_stub_type stub_type, asection *section,
5797
           Elf_Internal_Rela *irela, asection *sym_sec,
5798
           struct elf32_arm_link_hash_entry *hash, char *sym_name,
5799
           bfd_vma sym_value, enum arm_st_branch_type branch_type,
5800
           bool *new_stub)
5801
0
{
5802
0
  const asection *id_sec;
5803
0
  char *stub_name;
5804
0
  struct elf32_arm_stub_hash_entry *stub_entry;
5805
0
  unsigned int r_type;
5806
0
  bool sym_claimed = arm_stub_sym_claimed (stub_type);
5807
5808
0
  BFD_ASSERT (stub_type != arm_stub_none);
5809
0
  *new_stub = false;
5810
5811
0
  if (sym_claimed)
5812
0
    stub_name = sym_name;
5813
0
  else
5814
0
    {
5815
0
      BFD_ASSERT (irela);
5816
0
      BFD_ASSERT (section);
5817
0
      BFD_ASSERT (section->id <= htab->top_id);
5818
5819
      /* Support for grouping stub sections.  */
5820
0
      id_sec = htab->stub_group[section->id].link_sec;
5821
5822
      /* Get the name of this stub.  */
5823
0
      stub_name = elf32_arm_stub_name (id_sec, sym_sec, hash, irela,
5824
0
               stub_type);
5825
0
      if (!stub_name)
5826
0
  return NULL;
5827
0
    }
5828
5829
0
  stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name, false,
5830
0
             false);
5831
  /* The proper stub has already been created, just update its value.  */
5832
0
  if (stub_entry != NULL)
5833
0
    {
5834
0
      if (!sym_claimed)
5835
0
  free (stub_name);
5836
0
      stub_entry->target_value = sym_value;
5837
0
      return stub_entry;
5838
0
    }
5839
5840
0
  stub_entry = elf32_arm_add_stub (stub_name, section, htab, stub_type);
5841
0
  if (stub_entry == NULL)
5842
0
    {
5843
0
      if (!sym_claimed)
5844
0
  free (stub_name);
5845
0
      return NULL;
5846
0
    }
5847
5848
0
  stub_entry->target_value = sym_value;
5849
0
  stub_entry->target_section = sym_sec;
5850
0
  stub_entry->stub_type = stub_type;
5851
0
  stub_entry->h = hash;
5852
0
  stub_entry->branch_type = branch_type;
5853
5854
0
  if (sym_claimed)
5855
0
    stub_entry->output_name = sym_name;
5856
0
  else
5857
0
    {
5858
0
      if (sym_name == NULL)
5859
0
  sym_name = "unnamed";
5860
0
      stub_entry->output_name = (char *)
5861
0
  bfd_alloc (htab->stub_bfd, sizeof (THUMB2ARM_GLUE_ENTRY_NAME)
5862
0
           + strlen (sym_name));
5863
0
      if (stub_entry->output_name == NULL)
5864
0
  {
5865
0
    free (stub_name);
5866
0
    return NULL;
5867
0
  }
5868
5869
      /* For historical reasons, use the existing names for ARM-to-Thumb and
5870
   Thumb-to-ARM stubs.  */
5871
0
      r_type = ELF32_R_TYPE (irela->r_info);
5872
0
      if ((r_type == (unsigned int) R_ARM_THM_CALL
5873
0
     || r_type == (unsigned int) R_ARM_THM_JUMP24
5874
0
     || r_type == (unsigned int) R_ARM_THM_JUMP19)
5875
0
    && branch_type == ST_BRANCH_TO_ARM)
5876
0
  sprintf (stub_entry->output_name, THUMB2ARM_GLUE_ENTRY_NAME, sym_name);
5877
0
      else if ((r_type == (unsigned int) R_ARM_CALL
5878
0
    || r_type == (unsigned int) R_ARM_JUMP24)
5879
0
         && branch_type == ST_BRANCH_TO_THUMB)
5880
0
  sprintf (stub_entry->output_name, ARM2THUMB_GLUE_ENTRY_NAME, sym_name);
5881
0
      else
5882
0
  sprintf (stub_entry->output_name, STUB_ENTRY_NAME, sym_name);
5883
0
    }
5884
5885
0
  *new_stub = true;
5886
0
  return stub_entry;
5887
0
}
5888
5889
/* Scan symbols in INPUT_BFD to identify secure entry functions needing a
5890
   gateway veneer to transition from non secure to secure state and create them
5891
   accordingly.
5892
5893
   "ARMv8-M Security Extensions: Requirements on Development Tools" document
5894
   defines the conditions that govern Secure Gateway veneer creation for a
5895
   given symbol <SYM> as follows:
5896
   - it has function type
5897
   - it has non local binding
5898
   - a symbol named __acle_se_<SYM> (called special symbol) exists with the
5899
     same type, binding and value as <SYM> (called normal symbol).
5900
   An entry function can handle secure state transition itself in which case
5901
   its special symbol would have a different value from the normal symbol.
5902
5903
   OUT_ATTR gives the output attributes, SYM_HASHES the symbol index to hash
5904
   entry mapping while HTAB gives the name to hash entry mapping.
5905
   *CMSE_STUB_CREATED is increased by the number of secure gateway veneer
5906
   created.
5907
5908
   The return value gives whether a stub failed to be allocated.  */
5909
5910
static bool
5911
cmse_scan (bfd *input_bfd, struct elf32_arm_link_hash_table *htab,
5912
     obj_attribute *out_attr, struct elf_link_hash_entry **sym_hashes,
5913
     int *cmse_stub_created)
5914
0
{
5915
0
  elf_backend_data *bed = get_elf_backend_data (input_bfd);
5916
0
  Elf_Internal_Shdr *symtab_hdr;
5917
0
  unsigned i, j, sym_count, ext_start;
5918
0
  Elf_Internal_Sym *cmse_sym, *local_syms;
5919
0
  struct elf32_arm_link_hash_entry *hash, *cmse_hash = NULL;
5920
0
  enum arm_st_branch_type branch_type;
5921
0
  char *sym_name, *lsym_name;
5922
0
  bfd_vma sym_value;
5923
0
  asection *section;
5924
0
  struct elf32_arm_stub_hash_entry *stub_entry;
5925
0
  bool is_v8m, new_stub, cmse_invalid, ret = true;
5926
5927
0
  symtab_hdr = &elf_symtab_hdr (input_bfd);
5928
0
  sym_count = symtab_hdr->sh_size / bed->s->sizeof_sym;
5929
0
  ext_start = symtab_hdr->sh_info;
5930
0
  is_v8m = (out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V8M_BASE
5931
0
      && out_attr[Tag_CPU_arch_profile].i == 'M');
5932
5933
0
  local_syms = (Elf_Internal_Sym *) symtab_hdr->contents;
5934
0
  if (local_syms == NULL)
5935
0
    local_syms = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
5936
0
               symtab_hdr->sh_info, 0, NULL, NULL,
5937
0
               NULL);
5938
0
  if (symtab_hdr->sh_info && local_syms == NULL)
5939
0
    return false;
5940
5941
  /* Scan symbols.  */
5942
0
  for (i = 0; i < sym_count; i++)
5943
0
    {
5944
0
      cmse_invalid = false;
5945
5946
0
      if (i < ext_start)
5947
0
  {
5948
0
    cmse_sym = &local_syms[i];
5949
0
    sym_name = bfd_elf_string_from_elf_section (input_bfd,
5950
0
                  symtab_hdr->sh_link,
5951
0
                  cmse_sym->st_name);
5952
0
    if (!sym_name || !startswith (sym_name, CMSE_PREFIX))
5953
0
      continue;
5954
5955
    /* Special symbol with local binding.  */
5956
0
    cmse_invalid = true;
5957
0
  }
5958
0
      else
5959
0
  {
5960
0
    cmse_hash = elf32_arm_hash_entry (sym_hashes[i - ext_start]);
5961
0
    if (cmse_hash == NULL)
5962
0
      continue;
5963
5964
0
    sym_name = (char *) cmse_hash->root.root.root.string;
5965
0
    if (!startswith (sym_name, CMSE_PREFIX))
5966
0
      continue;
5967
5968
    /* Special symbol has incorrect binding or type.  */
5969
0
    if ((cmse_hash->root.root.type != bfd_link_hash_defined
5970
0
         && cmse_hash->root.root.type != bfd_link_hash_defweak)
5971
0
        || cmse_hash->root.type != STT_FUNC)
5972
0
      cmse_invalid = true;
5973
0
  }
5974
5975
0
      if (!is_v8m)
5976
0
  {
5977
0
    _bfd_error_handler (_("%pB: special symbol `%s' only allowed for "
5978
0
        "ARMv8-M architecture or later"),
5979
0
            input_bfd, sym_name);
5980
0
    is_v8m = true; /* Avoid multiple warning.  */
5981
0
    ret = false;
5982
0
  }
5983
5984
0
      if (cmse_invalid)
5985
0
  {
5986
0
    _bfd_error_handler (_("%pB: invalid special symbol `%s'; it must be"
5987
0
        " a global or weak function symbol"),
5988
0
            input_bfd, sym_name);
5989
0
    ret = false;
5990
0
    if (i < ext_start)
5991
0
      continue;
5992
0
  }
5993
5994
0
      sym_name += strlen (CMSE_PREFIX);
5995
0
      hash = (struct elf32_arm_link_hash_entry *)
5996
0
  elf_link_hash_lookup (&(htab)->root, sym_name, false, false, true);
5997
5998
      /* No associated normal symbol or it is neither global nor weak.  */
5999
0
      if (!hash
6000
0
    || (hash->root.root.type != bfd_link_hash_defined
6001
0
        && hash->root.root.type != bfd_link_hash_defweak)
6002
0
    || hash->root.type != STT_FUNC)
6003
0
  {
6004
    /* Initialize here to avoid warning about use of possibly
6005
       uninitialized variable.  */
6006
0
    j = 0;
6007
6008
0
    if (!hash)
6009
0
      {
6010
        /* Searching for a normal symbol with local binding.  */
6011
0
        for (; j < ext_start; j++)
6012
0
    {
6013
0
      lsym_name =
6014
0
        bfd_elf_string_from_elf_section (input_bfd,
6015
0
                 symtab_hdr->sh_link,
6016
0
                 local_syms[j].st_name);
6017
0
      if (!strcmp (sym_name, lsym_name))
6018
0
        break;
6019
0
    }
6020
0
      }
6021
6022
0
    if (hash || j < ext_start)
6023
0
      {
6024
0
        _bfd_error_handler
6025
0
    (_("%pB: invalid standard symbol `%s'; it must be "
6026
0
       "a global or weak function symbol"),
6027
0
     input_bfd, sym_name);
6028
0
      }
6029
0
    else
6030
0
      _bfd_error_handler
6031
0
        (_("%pB: absent standard symbol `%s'"), input_bfd, sym_name);
6032
0
    ret = false;
6033
0
    if (!hash)
6034
0
      continue;
6035
0
  }
6036
6037
0
      sym_value = hash->root.root.u.def.value;
6038
0
      section = hash->root.root.u.def.section;
6039
6040
0
      if (cmse_hash->root.root.u.def.section != section)
6041
0
  {
6042
0
    _bfd_error_handler
6043
0
      (_("%pB: `%s' and its special symbol are in different sections"),
6044
0
       input_bfd, sym_name);
6045
0
    ret = false;
6046
0
  }
6047
0
      if (cmse_hash->root.root.u.def.value != sym_value)
6048
0
  continue; /* Ignore: could be an entry function starting with SG.  */
6049
6050
  /* If this section is a link-once section that will be discarded, then
6051
     don't create any stubs.  */
6052
0
      if (section->output_section == NULL)
6053
0
  {
6054
0
    _bfd_error_handler
6055
0
      (_("%pB: entry function `%s' not output"), input_bfd, sym_name);
6056
0
    continue;
6057
0
  }
6058
6059
0
      if (hash->root.size == 0)
6060
0
  {
6061
0
    _bfd_error_handler
6062
0
      (_("%pB: entry function `%s' is empty"), input_bfd, sym_name);
6063
0
    ret = false;
6064
0
  }
6065
6066
0
      if (!ret)
6067
0
  continue;
6068
0
      branch_type = ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
6069
0
      stub_entry
6070
0
  = elf32_arm_create_stub (htab, arm_stub_cmse_branch_thumb_only,
6071
0
         NULL, NULL, section, hash, sym_name,
6072
0
         sym_value, branch_type, &new_stub);
6073
6074
0
      if (stub_entry == NULL)
6075
0
   ret = false;
6076
0
      else
6077
0
  {
6078
0
    BFD_ASSERT (new_stub);
6079
0
    (*cmse_stub_created)++;
6080
0
  }
6081
0
    }
6082
6083
0
  if (!symtab_hdr->contents)
6084
0
    free (local_syms);
6085
0
  return ret;
6086
0
}
6087
6088
/* Return TRUE iff a symbol identified by its linker HASH entry is a secure
6089
   code entry function, ie can be called from non secure code without using a
6090
   veneer.  */
6091
6092
static bool
6093
cmse_entry_fct_p (struct elf32_arm_link_hash_entry *hash)
6094
0
{
6095
0
  bfd_byte contents[4];
6096
0
  uint32_t first_insn;
6097
0
  asection *section;
6098
0
  file_ptr offset;
6099
0
  bfd *abfd;
6100
6101
  /* Defined symbol of function type.  */
6102
0
  if (hash->root.root.type != bfd_link_hash_defined
6103
0
      && hash->root.root.type != bfd_link_hash_defweak)
6104
0
    return false;
6105
0
  if (hash->root.type != STT_FUNC)
6106
0
    return false;
6107
6108
  /* Read first instruction.  */
6109
0
  section = hash->root.root.u.def.section;
6110
0
  abfd = section->owner;
6111
0
  offset = hash->root.root.u.def.value - section->vma;
6112
0
  if (!bfd_get_section_contents (abfd, section, contents, offset,
6113
0
         sizeof (contents)))
6114
0
    return false;
6115
6116
0
  first_insn = bfd_get_32 (abfd, contents);
6117
6118
  /* Starts by SG instruction.  */
6119
0
  return first_insn == 0xe97fe97f;
6120
0
}
6121
6122
/* Output the name (in symbol table) of the veneer GEN_ENTRY if it is a new
6123
   secure gateway veneers (ie. the veneers was not in the input import library)
6124
   and there is no output import library (GEN_INFO->out_implib_bfd is NULL.  */
6125
6126
static bool
6127
arm_list_new_cmse_stub (struct bfd_hash_entry *gen_entry, void *gen_info)
6128
0
{
6129
0
  struct elf32_arm_stub_hash_entry *stub_entry;
6130
0
  struct bfd_link_info *info;
6131
6132
  /* Massage our args to the form they really have.  */
6133
0
  stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
6134
0
  info = (struct bfd_link_info *) gen_info;
6135
6136
0
  if (info->out_implib_bfd)
6137
0
    return true;
6138
6139
0
  if (stub_entry->stub_type != arm_stub_cmse_branch_thumb_only)
6140
0
    return true;
6141
6142
0
  if (stub_entry->stub_offset == (bfd_vma) -1)
6143
0
    _bfd_error_handler ("  %s", stub_entry->output_name);
6144
6145
0
  return true;
6146
0
}
6147
6148
/* Set offset of each secure gateway veneers so that its address remain
6149
   identical to the one in the input import library referred by
6150
   HTAB->in_implib_bfd.  A warning is issued for veneers that disappeared
6151
   (present in input import library but absent from the executable being
6152
   linked) or if new veneers appeared and there is no output import library
6153
   (INFO->out_implib_bfd is NULL and *CMSE_STUB_CREATED is bigger than the
6154
   number of secure gateway veneers found in the input import library.
6155
6156
   The function returns whether an error occurred.  If no error occurred,
6157
   *CMSE_STUB_CREATED gives the number of SG veneers created by both cmse_scan
6158
   and this function and HTAB->new_cmse_stub_offset is set to the biggest
6159
   veneer observed set for new veneers to be layed out after.  */
6160
6161
static bool
6162
set_cmse_veneer_addr_from_implib (struct bfd_link_info *info,
6163
          struct elf32_arm_link_hash_table *htab,
6164
          int *cmse_stub_created)
6165
0
{
6166
0
  long symsize;
6167
0
  char *sym_name;
6168
0
  flagword flags;
6169
0
  long i, symcount;
6170
0
  bfd *in_implib_bfd;
6171
0
  asection *stub_out_sec;
6172
0
  bool ret = true;
6173
0
  Elf_Internal_Sym *intsym;
6174
0
  const char *out_sec_name;
6175
0
  bfd_size_type cmse_stub_size;
6176
0
  asymbol **sympp = NULL, *sym;
6177
0
  struct elf32_arm_link_hash_entry *hash;
6178
0
  const insn_sequence *cmse_stub_template;
6179
0
  struct elf32_arm_stub_hash_entry *stub_entry;
6180
0
  int cmse_stub_template_size, new_cmse_stubs_created = *cmse_stub_created;
6181
0
  bfd_vma veneer_value, stub_offset, next_cmse_stub_offset;
6182
0
  bfd_vma cmse_stub_array_start = (bfd_vma) -1, cmse_stub_sec_vma = 0;
6183
6184
  /* No input secure gateway import library.  */
6185
0
  if (!htab->in_implib_bfd)
6186
0
    return true;
6187
6188
0
  in_implib_bfd = htab->in_implib_bfd;
6189
0
  if (!htab->cmse_implib)
6190
0
    {
6191
0
      _bfd_error_handler (_("%pB: --in-implib only supported for Secure "
6192
0
          "Gateway import libraries"), in_implib_bfd);
6193
0
      return false;
6194
0
    }
6195
6196
  /* Get symbol table size.  */
6197
0
  symsize = bfd_get_symtab_upper_bound (in_implib_bfd);
6198
0
  if (symsize < 0)
6199
0
    return false;
6200
6201
  /* Read in the input secure gateway import library's symbol table.  */
6202
0
  sympp = (asymbol **) bfd_malloc (symsize);
6203
0
  if (sympp == NULL)
6204
0
    return false;
6205
6206
0
  symcount = bfd_canonicalize_symtab (in_implib_bfd, sympp);
6207
0
  if (symcount < 0)
6208
0
    {
6209
0
      ret = false;
6210
0
      goto free_sym_buf;
6211
0
    }
6212
6213
0
  htab->new_cmse_stub_offset = 0;
6214
0
  cmse_stub_size =
6215
0
    find_stub_size_and_template (arm_stub_cmse_branch_thumb_only,
6216
0
         &cmse_stub_template,
6217
0
         &cmse_stub_template_size);
6218
0
  out_sec_name =
6219
0
    arm_dedicated_stub_output_section_name (arm_stub_cmse_branch_thumb_only);
6220
0
  stub_out_sec =
6221
0
    bfd_get_section_by_name (htab->obfd, out_sec_name);
6222
0
  if (stub_out_sec != NULL)
6223
0
    cmse_stub_sec_vma = stub_out_sec->vma;
6224
6225
  /* Set addresses of veneers mentionned in input secure gateway import
6226
     library's symbol table.  */
6227
0
  for (i = 0; i < symcount; i++)
6228
0
    {
6229
0
      sym = sympp[i];
6230
0
      flags = sym->flags;
6231
0
      sym_name = (char *) bfd_asymbol_name (sym);
6232
0
      intsym = &((elf_symbol_type *) sym)->internal_elf_sym;
6233
6234
0
      if (sym->section != bfd_abs_section_ptr
6235
0
    || !(flags & (BSF_GLOBAL | BSF_WEAK))
6236
0
    || (flags & BSF_FUNCTION) != BSF_FUNCTION
6237
0
    || (ARM_GET_SYM_BRANCH_TYPE (intsym->st_target_internal)
6238
0
        != ST_BRANCH_TO_THUMB))
6239
0
  {
6240
0
    _bfd_error_handler (_("%pB: invalid import library entry: `%s'; "
6241
0
        "symbol should be absolute, global and "
6242
0
        "refer to Thumb functions"),
6243
0
            in_implib_bfd, sym_name);
6244
0
    ret = false;
6245
0
    continue;
6246
0
  }
6247
6248
0
      veneer_value = bfd_asymbol_value (sym);
6249
0
      stub_offset = veneer_value - cmse_stub_sec_vma;
6250
0
      stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, sym_name,
6251
0
           false, false);
6252
0
      hash = (struct elf32_arm_link_hash_entry *)
6253
0
  elf_link_hash_lookup (&(htab)->root, sym_name, false, false, true);
6254
6255
      /* Stub entry should have been created by cmse_scan or the symbol be of
6256
   a secure function callable from non secure code.  */
6257
0
      if (!stub_entry && !hash)
6258
0
  {
6259
0
    bool new_stub;
6260
6261
0
    _bfd_error_handler
6262
0
      (_("entry function `%s' disappeared from secure code"), sym_name);
6263
0
    hash = (struct elf32_arm_link_hash_entry *)
6264
0
      elf_link_hash_lookup (&(htab)->root, sym_name, true, true, true);
6265
0
    stub_entry
6266
0
      = elf32_arm_create_stub (htab, arm_stub_cmse_branch_thumb_only,
6267
0
             NULL, NULL, bfd_abs_section_ptr, hash,
6268
0
             sym_name, veneer_value,
6269
0
             ST_BRANCH_TO_THUMB, &new_stub);
6270
0
    if (stub_entry == NULL)
6271
0
      ret = false;
6272
0
    else
6273
0
    {
6274
0
      BFD_ASSERT (new_stub);
6275
0
      new_cmse_stubs_created++;
6276
0
      (*cmse_stub_created)++;
6277
0
    }
6278
0
    stub_entry->stub_template_size = stub_entry->stub_size = 0;
6279
0
    stub_entry->stub_offset = stub_offset;
6280
0
  }
6281
      /* Symbol found is not callable from non secure code.  */
6282
0
      else if (!stub_entry)
6283
0
  {
6284
0
    if (!cmse_entry_fct_p (hash))
6285
0
      {
6286
0
        _bfd_error_handler (_("`%s' refers to a non entry function"),
6287
0
          sym_name);
6288
0
        ret = false;
6289
0
      }
6290
0
    continue;
6291
0
  }
6292
0
      else
6293
0
  {
6294
    /* Only stubs for SG veneers should have been created.  */
6295
0
    BFD_ASSERT (stub_entry->stub_type == arm_stub_cmse_branch_thumb_only);
6296
6297
    /* Check visibility hasn't changed.  */
6298
0
    if (!!(flags & BSF_GLOBAL)
6299
0
        != (hash->root.root.type == bfd_link_hash_defined))
6300
0
      _bfd_error_handler
6301
0
        (_("%pB: visibility of symbol `%s' has changed"), in_implib_bfd,
6302
0
         sym_name);
6303
6304
0
    stub_entry->stub_offset = stub_offset;
6305
0
  }
6306
6307
      /* Size should match that of a SG veneer.  */
6308
0
      if (intsym->st_size != cmse_stub_size)
6309
0
  {
6310
0
    _bfd_error_handler (_("%pB: incorrect size for symbol `%s'"),
6311
0
            in_implib_bfd, sym_name);
6312
0
    ret = false;
6313
0
  }
6314
6315
      /* Previous veneer address is before current SG veneer section.  */
6316
0
      if (veneer_value < cmse_stub_sec_vma)
6317
0
  {
6318
    /* Avoid offset underflow.  */
6319
0
    if (stub_entry)
6320
0
      stub_entry->stub_offset = 0;
6321
0
    stub_offset = 0;
6322
0
    ret = false;
6323
0
  }
6324
6325
      /* Complain if stub offset not a multiple of stub size.  */
6326
0
      if (stub_offset % cmse_stub_size)
6327
0
  {
6328
0
    _bfd_error_handler
6329
0
      (_("offset of veneer for entry function `%s' not a multiple of "
6330
0
         "its size"), sym_name);
6331
0
    ret = false;
6332
0
  }
6333
6334
0
      if (!ret)
6335
0
  continue;
6336
6337
0
      new_cmse_stubs_created--;
6338
0
      if (veneer_value < cmse_stub_array_start)
6339
0
  cmse_stub_array_start = veneer_value;
6340
0
      next_cmse_stub_offset = stub_offset + ((cmse_stub_size + 7) & ~7);
6341
0
      if (next_cmse_stub_offset > htab->new_cmse_stub_offset)
6342
0
  htab->new_cmse_stub_offset = next_cmse_stub_offset;
6343
0
    }
6344
6345
0
  if (!info->out_implib_bfd && new_cmse_stubs_created != 0)
6346
0
    {
6347
0
      BFD_ASSERT (new_cmse_stubs_created > 0);
6348
0
      _bfd_error_handler
6349
0
  (_("new entry function(s) introduced but no output import library "
6350
0
     "specified:"));
6351
0
      bfd_hash_traverse (&htab->stub_hash_table, arm_list_new_cmse_stub, info);
6352
0
    }
6353
6354
0
  if (cmse_stub_array_start != cmse_stub_sec_vma)
6355
0
    {
6356
0
      _bfd_error_handler
6357
0
  (_("start address of `%s' is different from previous link"),
6358
0
   out_sec_name);
6359
0
      ret = false;
6360
0
    }
6361
6362
0
 free_sym_buf:
6363
0
  free (sympp);
6364
0
  return ret;
6365
0
}
6366
6367
/* Determine and set the size of the stub section for a final link.
6368
6369
   The basic idea here is to examine all the relocations looking for
6370
   PC-relative calls to a target that is unreachable with a "bl"
6371
   instruction.  */
6372
6373
bool
6374
elf32_arm_size_stubs (bfd *output_bfd,
6375
          bfd *stub_bfd,
6376
          struct bfd_link_info *info,
6377
          bfd_signed_vma group_size,
6378
          asection * (*add_stub_section) (const char *, asection *,
6379
                  asection *,
6380
                  unsigned int),
6381
          void (*layout_sections_again) (void))
6382
0
{
6383
0
  bool ret = true;
6384
0
  obj_attribute *out_attr;
6385
0
  int cmse_stub_created = 0;
6386
0
  bfd_size_type stub_group_size;
6387
0
  bool m_profile, stubs_always_after_branch, first_veneer_scan = true;
6388
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
6389
0
  struct a8_erratum_fix *a8_fixes = NULL;
6390
0
  unsigned int num_a8_fixes = 0, a8_fix_table_size = 10;
6391
0
  struct a8_erratum_reloc *a8_relocs = NULL;
6392
0
  unsigned int num_a8_relocs = 0, a8_reloc_table_size = 10, i;
6393
6394
0
  if (htab == NULL)
6395
0
    return false;
6396
6397
0
  if (htab->fix_cortex_a8)
6398
0
    {
6399
0
      a8_fixes = (struct a8_erratum_fix *)
6400
0
    bfd_zmalloc (sizeof (struct a8_erratum_fix) * a8_fix_table_size);
6401
0
      a8_relocs = (struct a8_erratum_reloc *)
6402
0
    bfd_zmalloc (sizeof (struct a8_erratum_reloc) * a8_reloc_table_size);
6403
0
    }
6404
6405
  /* Propagate mach to stub bfd, because it may not have been
6406
     finalized when we created stub_bfd.  */
6407
0
  bfd_set_arch_mach (stub_bfd, bfd_get_arch (output_bfd),
6408
0
         bfd_get_mach (output_bfd));
6409
6410
  /* Stash our params away.  */
6411
0
  htab->stub_bfd = stub_bfd;
6412
0
  htab->add_stub_section = add_stub_section;
6413
0
  htab->layout_sections_again = layout_sections_again;
6414
0
  stubs_always_after_branch = group_size < 0;
6415
6416
0
  out_attr = elf_known_obj_attributes_proc (output_bfd);
6417
0
  m_profile = out_attr[Tag_CPU_arch_profile].i == 'M';
6418
6419
  /* The Cortex-A8 erratum fix depends on stubs not being in the same 4K page
6420
     as the first half of a 32-bit branch straddling two 4K pages.  This is a
6421
     crude way of enforcing that.  */
6422
0
  if (htab->fix_cortex_a8)
6423
0
    stubs_always_after_branch = 1;
6424
6425
0
  if (group_size < 0)
6426
0
    stub_group_size = -group_size;
6427
0
  else
6428
0
    stub_group_size = group_size;
6429
6430
0
  if (stub_group_size == 1)
6431
0
    {
6432
      /* Default values.  */
6433
      /* Thumb branch range is +-4MB has to be used as the default
6434
   maximum size (a given section can contain both ARM and Thumb
6435
   code, so the worst case has to be taken into account).
6436
6437
   This value is 24K less than that, which allows for 2025
6438
   12-byte stubs.  If we exceed that, then we will fail to link.
6439
   The user will have to relink with an explicit group size
6440
   option.  */
6441
0
      stub_group_size = 4170000;
6442
0
    }
6443
6444
0
  group_sections (htab, stub_group_size, stubs_always_after_branch);
6445
6446
  /* If we're applying the cortex A8 fix, we need to determine the
6447
     program header size now, because we cannot change it later --
6448
     that could alter section placements.  Notice the A8 erratum fix
6449
     ends up requiring the section addresses to remain unchanged
6450
     modulo the page size.  That's something we cannot represent
6451
     inside BFD, and we don't want to force the section alignment to
6452
     be the page size.  */
6453
0
  if (htab->fix_cortex_a8)
6454
0
    (*htab->layout_sections_again) ();
6455
6456
0
  while (1)
6457
0
    {
6458
0
      bfd *input_bfd;
6459
0
      asection *stub_sec;
6460
0
      enum elf32_arm_stub_type stub_type;
6461
0
      bool stub_changed = false;
6462
0
      unsigned prev_num_a8_fixes = num_a8_fixes;
6463
6464
0
      num_a8_fixes = 0;
6465
0
      for (input_bfd = info->input_bfds;
6466
0
     input_bfd != NULL;
6467
0
     input_bfd = input_bfd->link.next)
6468
0
  {
6469
0
    Elf_Internal_Shdr *symtab_hdr;
6470
0
    asection *section;
6471
0
    Elf_Internal_Sym *local_syms = NULL;
6472
6473
0
    if (!is_arm_elf (input_bfd))
6474
0
      continue;
6475
0
    if ((input_bfd->flags & DYNAMIC) != 0
6476
0
        && (elf_sym_hashes (input_bfd) == NULL
6477
0
      || (elf_dyn_lib_class (input_bfd) & DYN_AS_NEEDED) != 0))
6478
0
      continue;
6479
6480
0
    num_a8_relocs = 0;
6481
6482
    /* We'll need the symbol table in a second.  */
6483
0
    symtab_hdr = &elf_symtab_hdr (input_bfd);
6484
0
    if (symtab_hdr->sh_info == 0)
6485
0
      continue;
6486
6487
    /* Limit scan of symbols to object file whose profile is
6488
       Microcontroller to not hinder performance in the general case.  */
6489
0
    if (m_profile && first_veneer_scan)
6490
0
      {
6491
0
        struct elf_link_hash_entry **sym_hashes;
6492
6493
0
        sym_hashes = elf_sym_hashes (input_bfd);
6494
0
        if (!cmse_scan (input_bfd, htab, out_attr, sym_hashes,
6495
0
            &cmse_stub_created))
6496
0
    goto error_ret_free_local;
6497
6498
0
        if (cmse_stub_created != 0)
6499
0
    stub_changed = true;
6500
0
      }
6501
6502
    /* Walk over each section attached to the input bfd.  */
6503
0
    for (section = input_bfd->sections;
6504
0
         section != NULL;
6505
0
         section = section->next)
6506
0
      {
6507
0
        Elf_Internal_Rela *internal_relocs, *irelaend, *irela;
6508
6509
        /* If there aren't any relocs, then there's nothing more
6510
     to do.  */
6511
0
        if ((section->flags & SEC_RELOC) == 0
6512
0
      || section->reloc_count == 0
6513
0
      || (section->flags & SEC_CODE) == 0)
6514
0
    continue;
6515
6516
        /* If this section is a link-once section that will be
6517
     discarded, then don't create any stubs.  */
6518
0
        if (section->output_section == NULL
6519
0
      || section->output_section->owner != output_bfd)
6520
0
    continue;
6521
6522
        /* Get the relocs.  */
6523
0
        internal_relocs
6524
0
    = _bfd_elf_link_read_relocs (input_bfd, section, NULL,
6525
0
               NULL, info->keep_memory);
6526
0
        if (internal_relocs == NULL)
6527
0
    goto error_ret_free_local;
6528
6529
        /* Now examine each relocation.  */
6530
0
        irela = internal_relocs;
6531
0
        irelaend = irela + section->reloc_count;
6532
0
        for (; irela < irelaend; irela++)
6533
0
    {
6534
0
      unsigned int r_type, r_indx;
6535
0
      asection *sym_sec;
6536
0
      bfd_vma sym_value;
6537
0
      bfd_vma destination;
6538
0
      struct elf32_arm_link_hash_entry *hash;
6539
0
      const char *sym_name;
6540
0
      unsigned char st_type;
6541
0
      enum arm_st_branch_type branch_type;
6542
0
      bool created_stub = false;
6543
6544
0
      r_type = ELF32_R_TYPE (irela->r_info);
6545
0
      r_indx = ELF32_R_SYM (irela->r_info);
6546
6547
0
      if (r_type >= (unsigned int) R_ARM_max)
6548
0
        {
6549
0
          bfd_set_error (bfd_error_bad_value);
6550
0
        error_ret_free_internal:
6551
0
          if (elf_section_data (section)->relocs == NULL)
6552
0
      free (internal_relocs);
6553
        /* Fall through.  */
6554
0
        error_ret_free_local:
6555
0
          if (symtab_hdr->contents != (unsigned char *) local_syms)
6556
0
      free (local_syms);
6557
0
          return false;
6558
0
        }
6559
6560
0
      hash = NULL;
6561
0
      if (r_indx >= symtab_hdr->sh_info)
6562
0
        hash = elf32_arm_hash_entry
6563
0
          (elf_sym_hashes (input_bfd)
6564
0
           [r_indx - symtab_hdr->sh_info]);
6565
6566
      /* Only look for stubs on branch instructions, or
6567
         non-relaxed TLSCALL  */
6568
0
      if ((r_type != (unsigned int) R_ARM_CALL)
6569
0
          && (r_type != (unsigned int) R_ARM_THM_CALL)
6570
0
          && (r_type != (unsigned int) R_ARM_JUMP24)
6571
0
          && (r_type != (unsigned int) R_ARM_THM_JUMP19)
6572
0
          && (r_type != (unsigned int) R_ARM_THM_XPC22)
6573
0
          && (r_type != (unsigned int) R_ARM_THM_JUMP24)
6574
0
          && (r_type != (unsigned int) R_ARM_PLT32)
6575
0
          && !((r_type == (unsigned int) R_ARM_TLS_CALL
6576
0
          || r_type == (unsigned int) R_ARM_THM_TLS_CALL)
6577
0
         && r_type == (elf32_arm_tls_transition
6578
0
           (info, r_type,
6579
0
            (struct elf_link_hash_entry *) hash))
6580
0
         && ((hash ? hash->tls_type
6581
0
        : (elf32_arm_local_got_tls_type
6582
0
           (input_bfd)[r_indx]))
6583
0
             & GOT_TLS_GDESC) != 0))
6584
0
        continue;
6585
6586
      /* Now determine the call target, its name, value,
6587
         section.  */
6588
0
      sym_sec = NULL;
6589
0
      sym_value = 0;
6590
0
      destination = 0;
6591
0
      sym_name = NULL;
6592
6593
0
      if (r_type == (unsigned int) R_ARM_TLS_CALL
6594
0
          || r_type == (unsigned int) R_ARM_THM_TLS_CALL)
6595
0
        {
6596
          /* A non-relaxed TLS call.  The target is the
6597
       plt-resident trampoline and nothing to do
6598
       with the symbol.  */
6599
0
          BFD_ASSERT (htab->tls_trampoline > 0);
6600
0
          sym_sec = htab->root.splt;
6601
0
          sym_value = htab->tls_trampoline;
6602
0
          hash = 0;
6603
0
          st_type = STT_FUNC;
6604
0
          branch_type = ST_BRANCH_TO_ARM;
6605
0
        }
6606
0
      else if (!hash)
6607
0
        {
6608
          /* It's a local symbol.  */
6609
0
          Elf_Internal_Sym *sym;
6610
6611
0
          if (local_syms == NULL)
6612
0
      {
6613
0
        local_syms
6614
0
          = (Elf_Internal_Sym *) symtab_hdr->contents;
6615
0
        if (local_syms == NULL)
6616
0
          local_syms
6617
0
            = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
6618
0
                  symtab_hdr->sh_info, 0,
6619
0
                  NULL, NULL, NULL);
6620
0
        if (local_syms == NULL)
6621
0
          goto error_ret_free_internal;
6622
0
      }
6623
6624
0
          sym = local_syms + r_indx;
6625
0
          if (sym->st_shndx == SHN_UNDEF)
6626
0
      sym_sec = bfd_und_section_ptr;
6627
0
          else if (sym->st_shndx == SHN_ABS)
6628
0
      sym_sec = bfd_abs_section_ptr;
6629
0
          else if (sym->st_shndx == SHN_COMMON)
6630
0
      sym_sec = bfd_com_section_ptr;
6631
0
          else
6632
0
      sym_sec =
6633
0
        bfd_section_from_elf_index (input_bfd, sym->st_shndx);
6634
6635
0
          if (!sym_sec)
6636
      /* This is an undefined symbol.  It can never
6637
         be resolved.  */
6638
0
      continue;
6639
6640
0
          if (ELF_ST_TYPE (sym->st_info) != STT_SECTION)
6641
0
      sym_value = sym->st_value;
6642
0
          destination = (sym_value + irela->r_addend
6643
0
             + sym_sec->output_offset
6644
0
             + sym_sec->output_section->vma);
6645
0
          st_type = ELF_ST_TYPE (sym->st_info);
6646
0
          branch_type =
6647
0
      ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
6648
0
          sym_name
6649
0
      = bfd_elf_string_from_elf_section (input_bfd,
6650
0
                 symtab_hdr->sh_link,
6651
0
                 sym->st_name);
6652
0
        }
6653
0
      else
6654
0
        {
6655
          /* It's an external symbol.  */
6656
0
          while (hash->root.root.type == bfd_link_hash_indirect
6657
0
           || hash->root.root.type == bfd_link_hash_warning)
6658
0
      hash = ((struct elf32_arm_link_hash_entry *)
6659
0
        hash->root.root.u.i.link);
6660
6661
0
          if (hash->root.root.type == bfd_link_hash_defined
6662
0
        || hash->root.root.type == bfd_link_hash_defweak)
6663
0
      {
6664
0
        sym_sec = hash->root.root.u.def.section;
6665
0
        sym_value = hash->root.root.u.def.value;
6666
6667
0
        struct elf32_arm_link_hash_table *globals =
6668
0
              elf32_arm_hash_table (info);
6669
6670
        /* For a destination in a shared library,
6671
           use the PLT stub as target address to
6672
           decide whether a branch stub is
6673
           needed.  */
6674
0
        if (globals != NULL
6675
0
            && globals->root.splt != NULL
6676
0
            && hash != NULL
6677
0
            && hash->root.plt.offset != (bfd_vma) -1)
6678
0
          {
6679
0
            sym_sec = globals->root.splt;
6680
0
            sym_value = hash->root.plt.offset;
6681
0
            if (sym_sec->output_section != NULL)
6682
0
        destination = (sym_value
6683
0
                 + sym_sec->output_offset
6684
0
                 + sym_sec->output_section->vma);
6685
0
          }
6686
0
        else if (sym_sec->output_section != NULL)
6687
0
          destination = (sym_value + irela->r_addend
6688
0
             + sym_sec->output_offset
6689
0
             + sym_sec->output_section->vma);
6690
0
      }
6691
0
          else if ((hash->root.root.type == bfd_link_hash_undefined)
6692
0
             || (hash->root.root.type == bfd_link_hash_undefweak))
6693
0
      {
6694
        /* For a shared library, use the PLT stub as
6695
           target address to decide whether a long
6696
           branch stub is needed.
6697
           For absolute code, they cannot be handled.  */
6698
0
        struct elf32_arm_link_hash_table *globals =
6699
0
          elf32_arm_hash_table (info);
6700
6701
0
        if (globals != NULL
6702
0
            && globals->root.splt != NULL
6703
0
            && hash != NULL
6704
0
            && hash->root.plt.offset != (bfd_vma) -1)
6705
0
          {
6706
0
            sym_sec = globals->root.splt;
6707
0
            sym_value = hash->root.plt.offset;
6708
0
            if (sym_sec->output_section != NULL)
6709
0
        destination = (sym_value
6710
0
                 + sym_sec->output_offset
6711
0
                 + sym_sec->output_section->vma);
6712
0
          }
6713
0
        else
6714
0
          continue;
6715
0
      }
6716
0
          else
6717
0
      {
6718
0
        bfd_set_error (bfd_error_bad_value);
6719
0
        goto error_ret_free_internal;
6720
0
      }
6721
0
          st_type = hash->root.type;
6722
0
          branch_type =
6723
0
      ARM_GET_SYM_BRANCH_TYPE (hash->root.target_internal);
6724
0
          sym_name = hash->root.root.root.string;
6725
0
        }
6726
6727
0
      do
6728
0
        {
6729
0
          bool new_stub;
6730
0
          struct elf32_arm_stub_hash_entry *stub_entry;
6731
6732
          /* Determine what (if any) linker stub is needed.  */
6733
0
          stub_type = arm_type_of_stub (info, section, irela,
6734
0
                st_type, &branch_type,
6735
0
                hash, destination, sym_sec,
6736
0
                input_bfd, sym_name);
6737
0
          if (stub_type == arm_stub_none)
6738
0
      break;
6739
6740
          /* We've either created a stub for this reloc already,
6741
       or we are about to.  */
6742
0
          stub_entry =
6743
0
      elf32_arm_create_stub (htab, stub_type, section, irela,
6744
0
                 sym_sec, hash,
6745
0
                 (char *) sym_name, sym_value,
6746
0
                 branch_type, &new_stub);
6747
6748
0
          created_stub = stub_entry != NULL;
6749
0
          if (!created_stub)
6750
0
      goto error_ret_free_internal;
6751
0
          else if (!new_stub)
6752
0
      break;
6753
0
          else
6754
0
      stub_changed = true;
6755
0
        }
6756
0
      while (0);
6757
6758
      /* Look for relocations which might trigger Cortex-A8
6759
         erratum.  */
6760
0
      if (htab->fix_cortex_a8
6761
0
          && (r_type == (unsigned int) R_ARM_THM_JUMP24
6762
0
        || r_type == (unsigned int) R_ARM_THM_JUMP19
6763
0
        || r_type == (unsigned int) R_ARM_THM_CALL
6764
0
        || r_type == (unsigned int) R_ARM_THM_XPC22))
6765
0
        {
6766
0
          bfd_vma from = section->output_section->vma
6767
0
             + section->output_offset
6768
0
             + irela->r_offset;
6769
6770
0
          if ((from & 0xfff) == 0xffe)
6771
0
      {
6772
        /* Found a candidate.  Note we haven't checked the
6773
           destination is within 4K here: if we do so (and
6774
           don't create an entry in a8_relocs) we can't tell
6775
           that a branch should have been relocated when
6776
           scanning later.  */
6777
0
        if (num_a8_relocs == a8_reloc_table_size)
6778
0
          {
6779
0
            a8_reloc_table_size *= 2;
6780
0
            a8_relocs = (struct a8_erratum_reloc *)
6781
0
          bfd_realloc (a8_relocs,
6782
0
                 sizeof (struct a8_erratum_reloc)
6783
0
                 * a8_reloc_table_size);
6784
0
          }
6785
6786
0
        a8_relocs[num_a8_relocs].from = from;
6787
0
        a8_relocs[num_a8_relocs].destination = destination;
6788
0
        a8_relocs[num_a8_relocs].r_type = r_type;
6789
0
        a8_relocs[num_a8_relocs].branch_type = branch_type;
6790
0
        a8_relocs[num_a8_relocs].sym_name = sym_name;
6791
0
        a8_relocs[num_a8_relocs].non_a8_stub = created_stub;
6792
0
        a8_relocs[num_a8_relocs].hash = hash;
6793
6794
0
        num_a8_relocs++;
6795
0
      }
6796
0
        }
6797
0
    }
6798
6799
        /* We're done with the internal relocs, free them.  */
6800
0
        if (elf_section_data (section)->relocs == NULL)
6801
0
    free (internal_relocs);
6802
0
      }
6803
6804
0
    if (htab->fix_cortex_a8)
6805
0
      {
6806
        /* Sort relocs which might apply to Cortex-A8 erratum.  */
6807
0
        qsort (a8_relocs, num_a8_relocs,
6808
0
         sizeof (struct a8_erratum_reloc),
6809
0
         &a8_reloc_compare);
6810
6811
        /* Scan for branches which might trigger Cortex-A8 erratum.  */
6812
0
        if (cortex_a8_erratum_scan (input_bfd, info, &a8_fixes,
6813
0
            &num_a8_fixes, &a8_fix_table_size,
6814
0
            a8_relocs, num_a8_relocs,
6815
0
            prev_num_a8_fixes, &stub_changed)
6816
0
      != 0)
6817
0
    goto error_ret_free_local;
6818
0
      }
6819
6820
0
    if (local_syms != NULL
6821
0
        && symtab_hdr->contents != (unsigned char *) local_syms)
6822
0
      {
6823
0
        if (!info->keep_memory)
6824
0
    free (local_syms);
6825
0
        else
6826
0
    symtab_hdr->contents = (unsigned char *) local_syms;
6827
0
      }
6828
0
  }
6829
6830
0
      if (first_veneer_scan
6831
0
    && !set_cmse_veneer_addr_from_implib (info, htab,
6832
0
            &cmse_stub_created))
6833
0
  ret = false;
6834
6835
0
      if (prev_num_a8_fixes != num_a8_fixes)
6836
0
  stub_changed = true;
6837
6838
0
      if (!stub_changed)
6839
0
  break;
6840
6841
      /* OK, we've added some stubs.  Find out the new size of the
6842
   stub sections.  */
6843
0
      for (stub_sec = htab->stub_bfd->sections;
6844
0
     stub_sec != NULL;
6845
0
     stub_sec = stub_sec->next)
6846
0
  {
6847
    /* Ignore non-stub sections.  */
6848
0
    if (!strstr (stub_sec->name, STUB_SUFFIX))
6849
0
      continue;
6850
6851
0
    stub_sec->size = 0;
6852
0
  }
6853
6854
      /* Add new SG veneers after those already in the input import
6855
   library.  */
6856
0
      for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6857
0
     stub_type++)
6858
0
  {
6859
0
    bfd_vma *start_offset_p;
6860
0
    asection **stub_sec_p;
6861
6862
0
    start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
6863
0
    stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6864
0
    if (start_offset_p == NULL)
6865
0
      continue;
6866
6867
0
    BFD_ASSERT (stub_sec_p != NULL);
6868
0
    if (*stub_sec_p != NULL)
6869
0
      (*stub_sec_p)->size = *start_offset_p;
6870
0
  }
6871
6872
      /* Compute stub section size, considering padding.  */
6873
0
      bfd_hash_traverse (&htab->stub_hash_table, arm_size_one_stub, htab);
6874
0
      for (stub_type = arm_stub_none + 1; stub_type < max_stub_type;
6875
0
     stub_type++)
6876
0
  {
6877
0
    int size, padding;
6878
0
    asection **stub_sec_p;
6879
6880
0
    padding = arm_dedicated_stub_section_padding (stub_type);
6881
0
    stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
6882
    /* Skip if no stub input section or no stub section padding
6883
       required.  */
6884
0
    if ((stub_sec_p != NULL && *stub_sec_p == NULL) || padding == 0)
6885
0
      continue;
6886
    /* Stub section padding required but no dedicated section.  */
6887
0
    BFD_ASSERT (stub_sec_p);
6888
6889
0
    size = (*stub_sec_p)->size;
6890
0
    size = (size + padding - 1) & ~(padding - 1);
6891
0
    (*stub_sec_p)->size = size;
6892
0
  }
6893
6894
      /* Add Cortex-A8 erratum veneers to stub section sizes too.  */
6895
0
      if (htab->fix_cortex_a8)
6896
0
  for (i = 0; i < num_a8_fixes; i++)
6897
0
    {
6898
0
      stub_sec = elf32_arm_create_or_find_stub_sec (NULL,
6899
0
       a8_fixes[i].section, htab, a8_fixes[i].stub_type);
6900
6901
0
      if (stub_sec == NULL)
6902
0
        return false;
6903
6904
0
      stub_sec->size
6905
0
        += find_stub_size_and_template (a8_fixes[i].stub_type, NULL,
6906
0
                NULL);
6907
0
    }
6908
6909
6910
      /* Ask the linker to do its stuff.  */
6911
0
      (*htab->layout_sections_again) ();
6912
0
      first_veneer_scan = false;
6913
0
    }
6914
6915
  /* Add stubs for Cortex-A8 erratum fixes now.  */
6916
0
  if (htab->fix_cortex_a8)
6917
0
    {
6918
0
      for (i = 0; i < num_a8_fixes; i++)
6919
0
  {
6920
0
    struct elf32_arm_stub_hash_entry *stub_entry;
6921
0
    char *stub_name = a8_fixes[i].stub_name;
6922
0
    asection *section = a8_fixes[i].section;
6923
0
    unsigned int section_id = a8_fixes[i].section->id;
6924
0
    asection *link_sec = htab->stub_group[section_id].link_sec;
6925
0
    asection *stub_sec = htab->stub_group[section_id].stub_sec;
6926
0
    const insn_sequence *template_sequence;
6927
0
    int template_size, size = 0;
6928
6929
0
    stub_entry = arm_stub_hash_lookup (&htab->stub_hash_table, stub_name,
6930
0
               true, false);
6931
0
    if (stub_entry == NULL)
6932
0
      {
6933
0
        _bfd_error_handler (_("%pB: cannot create stub entry %s"),
6934
0
          section->owner, stub_name);
6935
0
        return false;
6936
0
      }
6937
6938
0
    stub_entry->stub_sec = stub_sec;
6939
0
    stub_entry->stub_offset = (bfd_vma) -1;
6940
0
    stub_entry->id_sec = link_sec;
6941
0
    stub_entry->stub_type = a8_fixes[i].stub_type;
6942
0
    stub_entry->source_value = a8_fixes[i].offset;
6943
0
    stub_entry->target_section = a8_fixes[i].section;
6944
0
    stub_entry->target_value = a8_fixes[i].target_offset;
6945
0
    stub_entry->orig_insn = a8_fixes[i].orig_insn;
6946
0
    stub_entry->branch_type = a8_fixes[i].branch_type;
6947
6948
0
    size = find_stub_size_and_template (a8_fixes[i].stub_type,
6949
0
                &template_sequence,
6950
0
                &template_size);
6951
6952
0
    stub_entry->stub_size = size;
6953
0
    stub_entry->stub_template = template_sequence;
6954
0
    stub_entry->stub_template_size = template_size;
6955
0
  }
6956
6957
      /* Stash the Cortex-A8 erratum fix array for use later in
6958
   elf32_arm_write_section().  */
6959
0
      htab->a8_erratum_fixes = a8_fixes;
6960
0
      htab->num_a8_erratum_fixes = num_a8_fixes;
6961
0
    }
6962
0
  else
6963
0
    {
6964
0
      htab->a8_erratum_fixes = NULL;
6965
0
      htab->num_a8_erratum_fixes = 0;
6966
0
    }
6967
0
  return ret;
6968
0
}
6969
6970
/* Build all the stubs associated with the current output file.  The
6971
   stubs are kept in a hash table attached to the main linker hash
6972
   table.  We also set up the .plt entries for statically linked PIC
6973
   functions here.  This function is called via arm_elf_finish in the
6974
   linker.  */
6975
6976
bool
6977
elf32_arm_build_stubs (struct bfd_link_info *info)
6978
0
{
6979
0
  asection *stub_sec;
6980
0
  struct bfd_hash_table *table;
6981
0
  enum elf32_arm_stub_type stub_type;
6982
0
  struct elf32_arm_link_hash_table *htab;
6983
6984
0
  htab = elf32_arm_hash_table (info);
6985
0
  if (htab == NULL)
6986
0
    return false;
6987
6988
0
  for (stub_sec = htab->stub_bfd->sections;
6989
0
       stub_sec != NULL;
6990
0
       stub_sec = stub_sec->next)
6991
0
    {
6992
0
      bfd_size_type size;
6993
6994
      /* Ignore non-stub sections.  */
6995
0
      if (!strstr (stub_sec->name, STUB_SUFFIX))
6996
0
  continue;
6997
6998
      /* Allocate memory to hold the linker stubs.  Zeroing the stub sections
6999
   must at least be done for stub section requiring padding and for SG
7000
   veneers to ensure that a non secure code branching to a removed SG
7001
   veneer causes an error.  */
7002
0
      size = stub_sec->size;
7003
0
      stub_sec->contents = (unsigned char *) bfd_zalloc (htab->stub_bfd, size);
7004
0
      if (stub_sec->contents == NULL && size != 0)
7005
0
  return false;
7006
0
      stub_sec->alloced = 1;
7007
7008
0
      stub_sec->size = 0;
7009
0
    }
7010
7011
  /* Add new SG veneers after those already in the input import library.  */
7012
0
  for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7013
0
    {
7014
0
      bfd_vma *start_offset_p;
7015
0
      asection **stub_sec_p;
7016
7017
0
      start_offset_p = arm_new_stubs_start_offset_ptr (htab, stub_type);
7018
0
      stub_sec_p = arm_dedicated_stub_input_section_ptr (htab, stub_type);
7019
0
      if (start_offset_p == NULL)
7020
0
  continue;
7021
7022
0
      BFD_ASSERT (stub_sec_p != NULL);
7023
0
      if (*stub_sec_p != NULL)
7024
0
  (*stub_sec_p)->size = *start_offset_p;
7025
0
    }
7026
7027
  /* Build the stubs as directed by the stub hash table.  */
7028
0
  table = &htab->stub_hash_table;
7029
0
  bfd_hash_traverse (table, arm_build_one_stub, info);
7030
0
  if (htab->fix_cortex_a8)
7031
0
    {
7032
      /* Place the cortex a8 stubs last.  */
7033
0
      htab->fix_cortex_a8 = -1;
7034
0
      bfd_hash_traverse (table, arm_build_one_stub, info);
7035
0
    }
7036
7037
0
  return true;
7038
0
}
7039
7040
/* Locate the Thumb encoded calling stub for NAME.  */
7041
7042
static struct elf_link_hash_entry *
7043
find_thumb_glue (struct bfd_link_info *link_info,
7044
     const char *name,
7045
     char **error_message)
7046
0
{
7047
0
  char *tmp_name;
7048
0
  struct elf_link_hash_entry *hash;
7049
0
  struct elf32_arm_link_hash_table *hash_table;
7050
7051
  /* We need a pointer to the armelf specific hash table.  */
7052
0
  hash_table = elf32_arm_hash_table (link_info);
7053
0
  if (hash_table == NULL)
7054
0
    return NULL;
7055
7056
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7057
0
          + strlen (THUMB2ARM_GLUE_ENTRY_NAME) + 1);
7058
7059
0
  BFD_ASSERT (tmp_name);
7060
7061
0
  sprintf (tmp_name, THUMB2ARM_GLUE_ENTRY_NAME, name);
7062
7063
0
  hash = elf_link_hash_lookup
7064
0
    (&(hash_table)->root, tmp_name, false, false, true);
7065
7066
0
  if (hash == NULL)
7067
0
    {
7068
0
      *error_message = bfd_asprintf (_("unable to find %s glue '%s' for '%s'"),
7069
0
             "Thumb", tmp_name, name);
7070
0
      if (*error_message == NULL)
7071
0
  *error_message = (char *) bfd_errmsg (bfd_error_system_call);
7072
0
    }
7073
7074
0
  free (tmp_name);
7075
7076
0
  return hash;
7077
0
}
7078
7079
/* Locate the ARM encoded calling stub for NAME.  */
7080
7081
static struct elf_link_hash_entry *
7082
find_arm_glue (struct bfd_link_info *link_info,
7083
         const char *name,
7084
         char **error_message)
7085
0
{
7086
0
  char *tmp_name;
7087
0
  struct elf_link_hash_entry *myh;
7088
0
  struct elf32_arm_link_hash_table *hash_table;
7089
7090
  /* We need a pointer to the elfarm specific hash table.  */
7091
0
  hash_table = elf32_arm_hash_table (link_info);
7092
0
  if (hash_table == NULL)
7093
0
    return NULL;
7094
7095
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7096
0
          + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
7097
0
  BFD_ASSERT (tmp_name);
7098
7099
0
  sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7100
7101
0
  myh = elf_link_hash_lookup
7102
0
    (&(hash_table)->root, tmp_name, false, false, true);
7103
7104
0
  if (myh == NULL)
7105
0
    {
7106
0
      *error_message = bfd_asprintf (_("unable to find %s glue '%s' for '%s'"),
7107
0
             "ARM", tmp_name, name);
7108
0
      if (*error_message == NULL)
7109
0
  *error_message = (char *) bfd_errmsg (bfd_error_system_call);
7110
0
    }
7111
0
  free (tmp_name);
7112
7113
0
  return myh;
7114
0
}
7115
7116
/* ARM->Thumb glue (static images):
7117
7118
   .arm
7119
   __func_from_arm:
7120
   ldr r12, __func_addr
7121
   bx  r12
7122
   __func_addr:
7123
   .word func    @ behave as if you saw a ARM_32 reloc.
7124
7125
   (v5t static images)
7126
   .arm
7127
   __func_from_arm:
7128
   ldr pc, __func_addr
7129
   __func_addr:
7130
   .word func    @ behave as if you saw a ARM_32 reloc.
7131
7132
   (relocatable images)
7133
   .arm
7134
   __func_from_arm:
7135
   ldr r12, __func_offset
7136
   add r12, r12, pc
7137
   bx  r12
7138
   __func_offset:
7139
   .word func - .   */
7140
7141
0
#define ARM2THUMB_STATIC_GLUE_SIZE 12
7142
static const insn32 a2t1_ldr_insn = 0xe59fc000;
7143
static const insn32 a2t2_bx_r12_insn = 0xe12fff1c;
7144
static const insn32 a2t3_func_addr_insn = 0x00000001;
7145
7146
0
#define ARM2THUMB_V5_STATIC_GLUE_SIZE 8
7147
static const insn32 a2t1v5_ldr_insn = 0xe51ff004;
7148
static const insn32 a2t2v5_func_addr_insn = 0x00000001;
7149
7150
0
#define ARM2THUMB_PIC_GLUE_SIZE 16
7151
static const insn32 a2t1p_ldr_insn = 0xe59fc004;
7152
static const insn32 a2t2p_add_pc_insn = 0xe08cc00f;
7153
static const insn32 a2t3p_bx_r12_insn = 0xe12fff1c;
7154
7155
/* Thumb->ARM:        Thumb->(non-interworking aware) ARM
7156
7157
     .thumb       .thumb
7158
     .align 2       .align 2
7159
 __func_from_thumb:       __func_from_thumb:
7160
     bx pc        push {r6, lr}
7161
     nop        ldr  r6, __func_addr
7162
     .arm       mov  lr, pc
7163
     b func       bx   r6
7164
          .arm
7165
            ;; back_to_thumb
7166
          ldmia r13! {r6, lr}
7167
          bx    lr
7168
            __func_addr:
7169
          .word      func  */
7170
7171
0
#define THUMB2ARM_GLUE_SIZE 8
7172
static const insn16 t2a1_bx_pc_insn = 0x4778;
7173
static const insn16 t2a2_noop_insn = 0x46c0;
7174
static const insn32 t2a3_b_insn = 0xea000000;
7175
7176
0
#define VFP11_ERRATUM_VENEER_SIZE 8
7177
0
#define STM32L4XX_ERRATUM_LDM_VENEER_SIZE 16
7178
0
#define STM32L4XX_ERRATUM_VLDM_VENEER_SIZE 24
7179
7180
0
#define ARM_BX_VENEER_SIZE 12
7181
static const insn32 armbx1_tst_insn = 0xe3100001;
7182
static const insn32 armbx2_moveq_insn = 0x01a0f000;
7183
static const insn32 armbx3_bx_insn = 0xe12fff10;
7184
7185
#ifndef ELFARM_NABI_C_INCLUDED
7186
static void
7187
arm_allocate_glue_section_space (bfd * abfd, bfd_size_type size, const char * name)
7188
0
{
7189
0
  asection * s;
7190
0
  bfd_byte * contents;
7191
7192
0
  if (size == 0)
7193
0
    {
7194
      /* Do not include empty glue sections in the output.  */
7195
0
      if (abfd != NULL)
7196
0
  {
7197
0
    s = bfd_get_linker_section (abfd, name);
7198
0
    if (s != NULL)
7199
0
      s->flags |= SEC_EXCLUDE;
7200
0
  }
7201
0
      return;
7202
0
    }
7203
7204
0
  BFD_ASSERT (abfd != NULL);
7205
7206
0
  s = bfd_get_linker_section (abfd, name);
7207
0
  BFD_ASSERT (s != NULL);
7208
7209
0
  contents = (bfd_byte *) bfd_zalloc (abfd, size);
7210
7211
0
  BFD_ASSERT (s->size == size);
7212
0
  s->contents = contents;
7213
0
  s->alloced = 1;
7214
0
}
7215
7216
bool
7217
bfd_elf32_arm_allocate_interworking_sections (struct bfd_link_info * info)
7218
0
{
7219
0
  struct elf32_arm_link_hash_table * globals;
7220
7221
0
  globals = elf32_arm_hash_table (info);
7222
0
  BFD_ASSERT (globals != NULL);
7223
7224
0
  arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7225
0
           globals->arm_glue_size,
7226
0
           ARM2THUMB_GLUE_SECTION_NAME);
7227
7228
0
  arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7229
0
           globals->thumb_glue_size,
7230
0
           THUMB2ARM_GLUE_SECTION_NAME);
7231
7232
0
  arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7233
0
           globals->vfp11_erratum_glue_size,
7234
0
           VFP11_ERRATUM_VENEER_SECTION_NAME);
7235
7236
0
  arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7237
0
           globals->stm32l4xx_erratum_glue_size,
7238
0
           STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7239
7240
0
  arm_allocate_glue_section_space (globals->bfd_of_glue_owner,
7241
0
           globals->bx_glue_size,
7242
0
           ARM_BX_GLUE_SECTION_NAME);
7243
7244
0
  return true;
7245
0
}
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
0
{
7254
0
  const char * name = h->root.root.string;
7255
0
  asection * s;
7256
0
  char * tmp_name;
7257
0
  struct elf_link_hash_entry * myh;
7258
0
  struct bfd_link_hash_entry * bh;
7259
0
  struct elf32_arm_link_hash_table * globals;
7260
0
  bfd_vma val;
7261
0
  bfd_size_type size;
7262
7263
0
  globals = elf32_arm_hash_table (link_info);
7264
0
  BFD_ASSERT (globals != NULL);
7265
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7266
7267
0
  s = bfd_get_linker_section
7268
0
    (globals->bfd_of_glue_owner, ARM2THUMB_GLUE_SECTION_NAME);
7269
7270
0
  BFD_ASSERT (s != NULL);
7271
7272
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen (name)
7273
0
          + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
7274
0
  BFD_ASSERT (tmp_name);
7275
7276
0
  sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
7277
7278
0
  myh = elf_link_hash_lookup
7279
0
    (&(globals)->root, tmp_name, false, false, true);
7280
7281
0
  if (myh != NULL)
7282
0
    {
7283
      /* We've already seen this guy.  */
7284
0
      free (tmp_name);
7285
0
      return myh;
7286
0
    }
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
0
  bh = NULL;
7293
0
  val = globals->arm_glue_size + 1;
7294
0
  _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
7295
0
            tmp_name, BSF_GLOBAL, s, val,
7296
0
            NULL, true, false, &bh);
7297
7298
0
  myh = (struct elf_link_hash_entry *) bh;
7299
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7300
0
  myh->forced_local = 1;
7301
7302
0
  free (tmp_name);
7303
7304
0
  if (bfd_link_pic (link_info)
7305
0
      || globals->pic_veneer)
7306
0
    size = ARM2THUMB_PIC_GLUE_SIZE;
7307
0
  else if (globals->use_blx)
7308
0
    size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
7309
0
  else
7310
0
    size = ARM2THUMB_STATIC_GLUE_SIZE;
7311
7312
0
  s->size += size;
7313
0
  globals->arm_glue_size += size;
7314
7315
0
  return myh;
7316
0
}
7317
7318
/* Allocate space for ARMv4 BX veneers.  */
7319
7320
static void
7321
record_arm_bx_glue (struct bfd_link_info * link_info, int reg)
7322
0
{
7323
0
  asection * s;
7324
0
  struct elf32_arm_link_hash_table *globals;
7325
0
  char *tmp_name;
7326
0
  struct elf_link_hash_entry *myh;
7327
0
  struct bfd_link_hash_entry *bh;
7328
0
  bfd_vma val;
7329
7330
  /* BX PC does not need a veneer.  */
7331
0
  if (reg == 15)
7332
0
    return;
7333
7334
0
  globals = elf32_arm_hash_table (link_info);
7335
0
  BFD_ASSERT (globals != NULL);
7336
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
7337
7338
  /* Check if this veneer has already been allocated.  */
7339
0
  if (globals->bx_glue_offset[reg])
7340
0
    return;
7341
7342
0
  s = bfd_get_linker_section
7343
0
    (globals->bfd_of_glue_owner, ARM_BX_GLUE_SECTION_NAME);
7344
7345
0
  BFD_ASSERT (s != NULL);
7346
7347
  /* Add symbol for veneer.  */
7348
0
  tmp_name = (char *)
7349
0
      bfd_malloc ((bfd_size_type) strlen (ARM_BX_GLUE_ENTRY_NAME) + 1);
7350
0
  BFD_ASSERT (tmp_name);
7351
7352
0
  sprintf (tmp_name, ARM_BX_GLUE_ENTRY_NAME, reg);
7353
7354
0
  myh = elf_link_hash_lookup
7355
0
    (&(globals)->root, tmp_name, false, false, false);
7356
7357
0
  BFD_ASSERT (myh == NULL);
7358
7359
0
  bh = NULL;
7360
0
  val = globals->bx_glue_size;
7361
0
  _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
7362
0
            tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7363
0
            NULL, true, false, &bh);
7364
7365
0
  myh = (struct elf_link_hash_entry *) bh;
7366
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7367
0
  myh->forced_local = 1;
7368
7369
0
  s->size += ARM_BX_VENEER_SIZE;
7370
0
  globals->bx_glue_offset[reg] = globals->bx_glue_size | 2;
7371
0
  globals->bx_glue_size += ARM_BX_VENEER_SIZE;
7372
0
}
7373
7374
7375
/* Add an entry to the code/data map for section SEC.  */
7376
7377
static void
7378
elf32_arm_section_map_add (asection *sec, char type, bfd_vma vma)
7379
0
{
7380
0
  struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
7381
0
  unsigned int newidx;
7382
7383
0
  if (sec_data->map == NULL)
7384
0
    {
7385
0
      sec_data->map = (elf32_arm_section_map *)
7386
0
    bfd_malloc (sizeof (elf32_arm_section_map));
7387
0
      sec_data->mapcount = 0;
7388
0
      sec_data->mapsize = 1;
7389
0
    }
7390
7391
0
  newidx = sec_data->mapcount++;
7392
7393
0
  if (sec_data->mapcount > sec_data->mapsize)
7394
0
    {
7395
0
      sec_data->mapsize *= 2;
7396
0
      sec_data->map = (elf32_arm_section_map *)
7397
0
    bfd_realloc_or_free (sec_data->map, sec_data->mapsize
7398
0
             * sizeof (elf32_arm_section_map));
7399
0
    }
7400
7401
0
  if (sec_data->map)
7402
0
    {
7403
0
      sec_data->map[newidx].vma = vma;
7404
0
      sec_data->map[newidx].type = type;
7405
0
    }
7406
0
}
7407
7408
7409
/* Record information about a VFP11 denorm-erratum veneer.  Only ARM-mode
7410
   veneers are handled for now.  */
7411
7412
static bfd_vma
7413
record_vfp11_erratum_veneer (struct bfd_link_info *link_info,
7414
           elf32_vfp11_erratum_list *branch,
7415
           bfd *branch_bfd,
7416
           asection *branch_sec,
7417
           unsigned int offset)
7418
0
{
7419
0
  asection *s;
7420
0
  struct elf32_arm_link_hash_table *hash_table;
7421
0
  char *tmp_name;
7422
0
  struct elf_link_hash_entry *myh;
7423
0
  struct bfd_link_hash_entry *bh;
7424
0
  bfd_vma val;
7425
0
  struct _arm_elf_section_data *sec_data;
7426
0
  elf32_vfp11_erratum_list *newerr;
7427
7428
0
  hash_table = elf32_arm_hash_table (link_info);
7429
0
  BFD_ASSERT (hash_table != NULL);
7430
0
  BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
7431
7432
0
  s = bfd_get_linker_section
7433
0
    (hash_table->bfd_of_glue_owner, VFP11_ERRATUM_VENEER_SECTION_NAME);
7434
7435
0
  sec_data = elf32_arm_section_data (s);
7436
7437
0
  BFD_ASSERT (s != NULL);
7438
7439
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
7440
0
          (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
7441
0
  BFD_ASSERT (tmp_name);
7442
7443
0
  sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
7444
0
     hash_table->num_vfp11_fixes);
7445
7446
0
  myh = elf_link_hash_lookup
7447
0
    (&(hash_table)->root, tmp_name, false, false, false);
7448
7449
0
  BFD_ASSERT (myh == NULL);
7450
7451
0
  bh = NULL;
7452
0
  val = hash_table->vfp11_erratum_glue_size;
7453
0
  _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
7454
0
            tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7455
0
            NULL, true, false, &bh);
7456
7457
0
  myh = (struct elf_link_hash_entry *) bh;
7458
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7459
0
  myh->forced_local = 1;
7460
7461
  /* Link veneer back to calling location.  */
7462
0
  sec_data->erratumcount += 1;
7463
0
  newerr = (elf32_vfp11_erratum_list *)
7464
0
      bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
7465
7466
0
  newerr->type = VFP11_ERRATUM_ARM_VENEER;
7467
0
  newerr->vma = -1;
7468
0
  newerr->u.v.branch = branch;
7469
0
  newerr->u.v.id = hash_table->num_vfp11_fixes;
7470
0
  branch->u.b.veneer = newerr;
7471
7472
0
  newerr->next = sec_data->erratumlist;
7473
0
  sec_data->erratumlist = newerr;
7474
7475
  /* A symbol for the return from the veneer.  */
7476
0
  sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
7477
0
     hash_table->num_vfp11_fixes);
7478
7479
0
  myh = elf_link_hash_lookup
7480
0
    (&(hash_table)->root, tmp_name, false, false, false);
7481
7482
0
  if (myh != NULL)
7483
0
    abort ();
7484
7485
0
  bh = NULL;
7486
0
  val = offset + 4;
7487
0
  _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
7488
0
            branch_sec, val, NULL, true, false, &bh);
7489
7490
0
  myh = (struct elf_link_hash_entry *) bh;
7491
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7492
0
  myh->forced_local = 1;
7493
7494
0
  free (tmp_name);
7495
7496
  /* Generate a mapping symbol for the veneer section, and explicitly add an
7497
     entry for that symbol to the code/data map for the section.  */
7498
0
  if (hash_table->vfp11_erratum_glue_size == 0)
7499
0
    {
7500
0
      bh = NULL;
7501
      /* FIXME: Creates an ARM symbol.  Thumb mode will need attention if it
7502
   ever requires this erratum fix.  */
7503
0
      _bfd_generic_link_add_one_symbol (link_info,
7504
0
          hash_table->bfd_of_glue_owner, "$a",
7505
0
          BSF_LOCAL, s, 0, NULL,
7506
0
          true, false, &bh);
7507
7508
0
      myh = (struct elf_link_hash_entry *) bh;
7509
0
      myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7510
0
      myh->forced_local = 1;
7511
7512
      /* The elf32_arm_init_maps function only cares about symbols from input
7513
   BFDs.  We must make a note of this generated mapping symbol
7514
   ourselves so that code byteswapping works properly in
7515
   elf32_arm_write_section.  */
7516
0
      elf32_arm_section_map_add (s, 'a', 0);
7517
0
    }
7518
7519
0
  s->size += VFP11_ERRATUM_VENEER_SIZE;
7520
0
  hash_table->vfp11_erratum_glue_size += VFP11_ERRATUM_VENEER_SIZE;
7521
0
  hash_table->num_vfp11_fixes++;
7522
7523
  /* The offset of the veneer.  */
7524
0
  return val;
7525
0
}
7526
7527
/* Record information about a STM32L4XX STM erratum veneer.  Only THUMB-mode
7528
   veneers need to be handled because used only in Cortex-M.  */
7529
7530
static bfd_vma
7531
record_stm32l4xx_erratum_veneer (struct bfd_link_info *link_info,
7532
         elf32_stm32l4xx_erratum_list *branch,
7533
         bfd *branch_bfd,
7534
         asection *branch_sec,
7535
         unsigned int offset,
7536
         bfd_size_type veneer_size)
7537
0
{
7538
0
  asection *s;
7539
0
  struct elf32_arm_link_hash_table *hash_table;
7540
0
  char *tmp_name;
7541
0
  struct elf_link_hash_entry *myh;
7542
0
  struct bfd_link_hash_entry *bh;
7543
0
  bfd_vma val;
7544
0
  struct _arm_elf_section_data *sec_data;
7545
0
  elf32_stm32l4xx_erratum_list *newerr;
7546
7547
0
  hash_table = elf32_arm_hash_table (link_info);
7548
0
  BFD_ASSERT (hash_table != NULL);
7549
0
  BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
7550
7551
0
  s = bfd_get_linker_section
7552
0
    (hash_table->bfd_of_glue_owner, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7553
7554
0
  BFD_ASSERT (s != NULL);
7555
7556
0
  sec_data = elf32_arm_section_data (s);
7557
7558
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
7559
0
          (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
7560
0
  BFD_ASSERT (tmp_name);
7561
7562
0
  sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
7563
0
     hash_table->num_stm32l4xx_fixes);
7564
7565
0
  myh = elf_link_hash_lookup
7566
0
    (&(hash_table)->root, tmp_name, false, false, false);
7567
7568
0
  BFD_ASSERT (myh == NULL);
7569
7570
0
  bh = NULL;
7571
0
  val = hash_table->stm32l4xx_erratum_glue_size;
7572
0
  _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
7573
0
            tmp_name, BSF_FUNCTION | BSF_LOCAL, s, val,
7574
0
            NULL, true, false, &bh);
7575
7576
0
  myh = (struct elf_link_hash_entry *) bh;
7577
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7578
0
  myh->forced_local = 1;
7579
7580
  /* Link veneer back to calling location.  */
7581
0
  sec_data->stm32l4xx_erratumcount += 1;
7582
0
  newerr = (elf32_stm32l4xx_erratum_list *)
7583
0
      bfd_zmalloc (sizeof (elf32_stm32l4xx_erratum_list));
7584
7585
0
  newerr->type = STM32L4XX_ERRATUM_VENEER;
7586
0
  newerr->vma = -1;
7587
0
  newerr->u.v.branch = branch;
7588
0
  newerr->u.v.id = hash_table->num_stm32l4xx_fixes;
7589
0
  branch->u.b.veneer = newerr;
7590
7591
0
  newerr->next = sec_data->stm32l4xx_erratumlist;
7592
0
  sec_data->stm32l4xx_erratumlist = newerr;
7593
7594
  /* A symbol for the return from the veneer.  */
7595
0
  sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
7596
0
     hash_table->num_stm32l4xx_fixes);
7597
7598
0
  myh = elf_link_hash_lookup
7599
0
    (&(hash_table)->root, tmp_name, false, false, false);
7600
7601
0
  if (myh != NULL)
7602
0
    abort ();
7603
7604
0
  bh = NULL;
7605
0
  val = offset + 4;
7606
0
  _bfd_generic_link_add_one_symbol (link_info, branch_bfd, tmp_name, BSF_LOCAL,
7607
0
            branch_sec, val, NULL, true, false, &bh);
7608
7609
0
  myh = (struct elf_link_hash_entry *) bh;
7610
0
  myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
7611
0
  myh->forced_local = 1;
7612
7613
0
  free (tmp_name);
7614
7615
  /* Generate a mapping symbol for the veneer section, and explicitly add an
7616
     entry for that symbol to the code/data map for the section.  */
7617
0
  if (hash_table->stm32l4xx_erratum_glue_size == 0)
7618
0
    {
7619
0
      bh = NULL;
7620
      /* Creates a THUMB symbol since there is no other choice.  */
7621
0
      _bfd_generic_link_add_one_symbol (link_info,
7622
0
          hash_table->bfd_of_glue_owner, "$t",
7623
0
          BSF_LOCAL, s, 0, NULL,
7624
0
          true, false, &bh);
7625
7626
0
      myh = (struct elf_link_hash_entry *) bh;
7627
0
      myh->type = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
7628
0
      myh->forced_local = 1;
7629
7630
      /* The elf32_arm_init_maps function only cares about symbols from input
7631
   BFDs.  We must make a note of this generated mapping symbol
7632
   ourselves so that code byteswapping works properly in
7633
   elf32_arm_write_section.  */
7634
0
      elf32_arm_section_map_add (s, 't', 0);
7635
0
    }
7636
7637
0
  s->size += veneer_size;
7638
0
  hash_table->stm32l4xx_erratum_glue_size += veneer_size;
7639
0
  hash_table->num_stm32l4xx_fixes++;
7640
7641
  /* The offset of the veneer.  */
7642
0
  return val;
7643
0
}
7644
7645
#define ARM_GLUE_SECTION_FLAGS \
7646
0
  (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_CODE \
7647
0
   | SEC_READONLY | SEC_LINKER_CREATED)
7648
7649
/* Create a fake section for use by the ARM backend of the linker.  */
7650
7651
static bool
7652
arm_make_glue_section (bfd * abfd, const char * name)
7653
0
{
7654
0
  asection * sec;
7655
7656
0
  sec = bfd_get_linker_section (abfd, name);
7657
0
  if (sec != NULL)
7658
    /* Already made.  */
7659
0
    return true;
7660
7661
0
  sec = bfd_make_section_anyway_with_flags (abfd, name, ARM_GLUE_SECTION_FLAGS);
7662
7663
0
  if (sec == NULL
7664
0
      || !bfd_set_section_alignment (sec, 2))
7665
0
    return false;
7666
7667
  /* Set the gc mark to prevent the section from being removed by garbage
7668
     collection, despite the fact that no relocs refer to this section.  */
7669
0
  sec->gc_mark = 1;
7670
7671
0
  return true;
7672
0
}
7673
7674
/* Set size of .plt entries.  This function is called from the
7675
   linker scripts in ld/emultempl/{armelf}.em.  */
7676
7677
void
7678
bfd_elf32_arm_use_long_plt (void)
7679
0
{
7680
0
  elf32_arm_use_long_plt_entry = true;
7681
0
}
7682
7683
/* Add the glue sections to ABFD.  This function is called from the
7684
   linker scripts in ld/emultempl/{armelf}.em.  */
7685
7686
bool
7687
bfd_elf32_arm_add_glue_sections_to_bfd (bfd *abfd,
7688
          struct bfd_link_info *info)
7689
0
{
7690
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
7691
0
  bool dostm32l4xx = globals
7692
0
    && globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE;
7693
0
  bool addglue;
7694
7695
  /* If we are only performing a partial
7696
     link do not bother adding the glue.  */
7697
0
  if (bfd_link_relocatable (info))
7698
0
    return true;
7699
7700
0
  addglue = arm_make_glue_section (abfd, ARM2THUMB_GLUE_SECTION_NAME)
7701
0
    && arm_make_glue_section (abfd, THUMB2ARM_GLUE_SECTION_NAME)
7702
0
    && arm_make_glue_section (abfd, VFP11_ERRATUM_VENEER_SECTION_NAME)
7703
0
    && arm_make_glue_section (abfd, ARM_BX_GLUE_SECTION_NAME);
7704
7705
0
  if (!dostm32l4xx)
7706
0
    return addglue;
7707
7708
0
  return addglue
7709
0
    && arm_make_glue_section (abfd, STM32L4XX_ERRATUM_VENEER_SECTION_NAME);
7710
0
}
7711
7712
/* Mark output sections of veneers needing a dedicated one with SEC_KEEP.  This
7713
   ensures they are not marked for deletion by
7714
   strip_excluded_output_sections () when veneers are going to be created
7715
   later.  Not doing so would trigger assert on empty section size in
7716
   lang_size_sections_1 ().  */
7717
7718
void
7719
bfd_elf32_arm_keep_private_stub_output_sections (struct bfd_link_info *info)
7720
0
{
7721
0
  enum elf32_arm_stub_type stub_type;
7722
7723
  /* If we are only performing a partial
7724
     link do not bother adding the glue.  */
7725
0
  if (bfd_link_relocatable (info))
7726
0
    return;
7727
7728
0
  for (stub_type = arm_stub_none + 1; stub_type < max_stub_type; stub_type++)
7729
0
    {
7730
0
      asection *out_sec;
7731
0
      const char *out_sec_name;
7732
7733
0
      if (!arm_dedicated_stub_output_section_required (stub_type))
7734
0
  continue;
7735
7736
0
     out_sec_name = arm_dedicated_stub_output_section_name (stub_type);
7737
0
     out_sec = bfd_get_section_by_name (info->output_bfd, out_sec_name);
7738
0
     if (out_sec != NULL)
7739
0
  out_sec->flags |= SEC_KEEP;
7740
0
    }
7741
0
}
7742
7743
/* Select a BFD to be used to hold the sections used by the glue code.
7744
   This function is called from the linker scripts in ld/emultempl/
7745
   {armelf/pe}.em.  */
7746
7747
bool
7748
bfd_elf32_arm_get_bfd_for_interworking (bfd *abfd, struct bfd_link_info *info)
7749
0
{
7750
0
  struct elf32_arm_link_hash_table *globals;
7751
7752
  /* If we are only performing a partial link
7753
     do not bother getting a bfd to hold the glue.  */
7754
0
  if (bfd_link_relocatable (info))
7755
0
    return true;
7756
7757
  /* Make sure we don't attach the glue sections to a dynamic object.  */
7758
0
  BFD_ASSERT (!(abfd->flags & DYNAMIC));
7759
7760
0
  globals = elf32_arm_hash_table (info);
7761
0
  BFD_ASSERT (globals != NULL);
7762
7763
0
  if (globals->bfd_of_glue_owner != NULL)
7764
0
    return true;
7765
7766
  /* Save the bfd for later use.  */
7767
0
  globals->bfd_of_glue_owner = abfd;
7768
7769
0
  return true;
7770
0
}
7771
7772
static void
7773
check_use_blx (struct elf32_arm_link_hash_table *globals)
7774
0
{
7775
0
  int cpu_arch;
7776
7777
0
  cpu_arch = bfd_elf_get_obj_attr_int (globals->obfd, OBJ_ATTR_PROC,
7778
0
               Tag_CPU_arch);
7779
7780
0
  if (globals->fix_arm1176)
7781
0
    {
7782
0
      if (cpu_arch == TAG_CPU_ARCH_V6T2 || cpu_arch > TAG_CPU_ARCH_V6K)
7783
0
  globals->use_blx = 1;
7784
0
    }
7785
0
  else
7786
0
    {
7787
0
      if (cpu_arch > TAG_CPU_ARCH_V4T)
7788
0
  globals->use_blx = 1;
7789
0
    }
7790
0
}
7791
7792
bool
7793
bfd_elf32_arm_process_before_allocation (bfd *abfd,
7794
           struct bfd_link_info *link_info)
7795
0
{
7796
0
  Elf_Internal_Shdr *symtab_hdr;
7797
0
  Elf_Internal_Rela *internal_relocs = NULL;
7798
0
  Elf_Internal_Rela *irel, *irelend;
7799
0
  bfd_byte *contents = NULL;
7800
7801
0
  asection *sec;
7802
0
  struct elf32_arm_link_hash_table *globals;
7803
7804
  /* If we are only performing a partial link do not bother
7805
     to construct any glue.  */
7806
0
  if (bfd_link_relocatable (link_info))
7807
0
    return true;
7808
7809
  /* Here we have a bfd that is to be included on the link.  We have a
7810
     hook to do reloc rummaging, before section sizes are nailed down.  */
7811
0
  globals = elf32_arm_hash_table (link_info);
7812
0
  BFD_ASSERT (globals != NULL);
7813
7814
0
  check_use_blx (globals);
7815
7816
0
  if (globals->byteswap_code && !bfd_big_endian (abfd))
7817
0
    {
7818
0
      _bfd_error_handler (_("%pB: BE8 images only valid in big-endian mode"),
7819
0
        abfd);
7820
0
      return false;
7821
0
    }
7822
7823
  /* PR 5398: If we have not decided to include any loadable sections in
7824
     the output then we will not have a glue owner bfd.  This is OK, it
7825
     just means that there is nothing else for us to do here.  */
7826
0
  if (globals->bfd_of_glue_owner == NULL)
7827
0
    return true;
7828
7829
  /* Rummage around all the relocs and map the glue vectors.  */
7830
0
  sec = abfd->sections;
7831
7832
0
  if (sec == NULL)
7833
0
    return true;
7834
7835
0
  for (; sec != NULL; sec = sec->next)
7836
0
    {
7837
0
      if (sec->reloc_count == 0)
7838
0
  continue;
7839
7840
0
      if ((sec->flags & SEC_EXCLUDE) != 0
7841
0
    || (sec->flags & SEC_HAS_CONTENTS) == 0)
7842
0
  continue;
7843
7844
0
      symtab_hdr = & elf_symtab_hdr (abfd);
7845
7846
      /* Load the relocs.  */
7847
0
      internal_relocs
7848
0
  = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL, false);
7849
7850
0
      if (internal_relocs == NULL)
7851
0
  goto error_return;
7852
7853
0
      irelend = internal_relocs + sec->reloc_count;
7854
0
      for (irel = internal_relocs; irel < irelend; irel++)
7855
0
  {
7856
0
    long r_type;
7857
0
    unsigned long r_index;
7858
7859
0
    struct elf_link_hash_entry *h;
7860
7861
0
    r_type = ELF32_R_TYPE (irel->r_info);
7862
0
    r_index = ELF32_R_SYM (irel->r_info);
7863
7864
    /* These are the only relocation types we care about.  */
7865
0
    if (   r_type != R_ARM_PC24
7866
0
        && (r_type != R_ARM_V4BX || globals->fix_v4bx < 2))
7867
0
      continue;
7868
7869
    /* Get the section contents if we haven't done so already.  */
7870
0
    if (contents == NULL)
7871
0
      {
7872
        /* Get cached copy if it exists.  */
7873
0
        if (elf_section_data (sec)->this_hdr.contents != NULL)
7874
0
    contents = elf_section_data (sec)->this_hdr.contents;
7875
0
        else
7876
0
    {
7877
      /* Go get them off disk.  */
7878
0
      if (! bfd_malloc_and_get_section (abfd, sec, &contents))
7879
0
        goto error_return;
7880
0
    }
7881
0
      }
7882
7883
0
    if (r_type == R_ARM_V4BX)
7884
0
      {
7885
0
        int reg;
7886
7887
0
        reg = bfd_get_32 (abfd, contents + irel->r_offset) & 0xf;
7888
0
        record_arm_bx_glue (link_info, reg);
7889
0
        continue;
7890
0
      }
7891
7892
    /* If the relocation is not against a symbol it cannot concern us.  */
7893
0
    h = NULL;
7894
7895
    /* We don't care about local symbols.  */
7896
0
    if (r_index < symtab_hdr->sh_info)
7897
0
      continue;
7898
7899
    /* This is an external symbol.  */
7900
0
    r_index -= symtab_hdr->sh_info;
7901
0
    h = (struct elf_link_hash_entry *)
7902
0
      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
0
    if (h == NULL)
7907
0
      continue;
7908
7909
    /* If the call will go through a PLT entry then we do not need
7910
       glue.  */
7911
0
    if (globals->root.splt != NULL && h->plt.offset != (bfd_vma) -1)
7912
0
      continue;
7913
7914
0
    switch (r_type)
7915
0
      {
7916
0
      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
0
        if (ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
7921
0
      == ST_BRANCH_TO_THUMB)
7922
0
    record_arm_to_thumb_glue (link_info, h);
7923
0
        break;
7924
7925
0
      default:
7926
0
        abort ();
7927
0
      }
7928
0
  }
7929
7930
0
      if (elf_section_data (sec)->this_hdr.contents != contents)
7931
0
  free (contents);
7932
0
      contents = NULL;
7933
7934
0
      if (elf_section_data (sec)->relocs != internal_relocs)
7935
0
  free (internal_relocs);
7936
0
      internal_relocs = NULL;
7937
0
    }
7938
7939
0
  return true;
7940
7941
0
 error_return:
7942
0
  if (elf_section_data (sec)->this_hdr.contents != contents)
7943
0
    free (contents);
7944
0
  if (elf_section_data (sec)->relocs != internal_relocs)
7945
0
    free (internal_relocs);
7946
7947
0
  return false;
7948
0
}
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
0
{
7957
0
  Elf_Internal_Sym *isymbuf;
7958
0
  Elf_Internal_Shdr *hdr;
7959
0
  unsigned int i, localsyms;
7960
7961
  /* PR 7093: Make sure that we are dealing with an arm elf binary.  */
7962
0
  if (! is_arm_elf (abfd))
7963
0
    return;
7964
7965
0
  if ((abfd->flags & DYNAMIC) != 0)
7966
0
    return;
7967
7968
0
  hdr = & elf_symtab_hdr (abfd);
7969
0
  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
0
  isymbuf = bfd_elf_get_elf_syms (abfd, hdr, localsyms, 0, NULL, NULL,
7975
0
          NULL);
7976
7977
  /* No internal symbols read?  Skip this BFD.  */
7978
0
  if (isymbuf == NULL)
7979
0
    return;
7980
7981
0
  for (i = 0; i < localsyms; i++)
7982
0
    {
7983
0
      Elf_Internal_Sym *isym = &isymbuf[i];
7984
0
      asection *sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
7985
0
      const char *name;
7986
7987
0
      if (sec != NULL
7988
0
    && ELF_ST_BIND (isym->st_info) == STB_LOCAL)
7989
0
  {
7990
0
    name = bfd_elf_string_from_elf_section (abfd,
7991
0
      hdr->sh_link, isym->st_name);
7992
7993
0
    if (bfd_is_arm_special_symbol_name (name,
7994
0
                BFD_ARM_SPECIAL_SYM_TYPE_MAP))
7995
0
      elf32_arm_section_map_add (sec, name[1], isym->st_value);
7996
0
  }
7997
0
    }
7998
0
}
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
0
{
8007
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8008
0
  obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8009
8010
0
  if (globals == NULL)
8011
0
    return;
8012
8013
0
  if (globals->fix_cortex_a8 == -1)
8014
0
    {
8015
      /* Turn on Cortex-A8 erratum workaround for ARMv7-A.  */
8016
0
      if (out_attr[Tag_CPU_arch].i == TAG_CPU_ARCH_V7
8017
0
    && (out_attr[Tag_CPU_arch_profile].i == 'A'
8018
0
        || out_attr[Tag_CPU_arch_profile].i == 0))
8019
0
  globals->fix_cortex_a8 = 1;
8020
0
      else
8021
0
  globals->fix_cortex_a8 = 0;
8022
0
    }
8023
0
}
8024
8025
8026
void
8027
bfd_elf32_arm_set_vfp11_fix (bfd *obfd, struct bfd_link_info *link_info)
8028
0
{
8029
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8030
0
  obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8031
8032
0
  if (globals == NULL)
8033
0
    return;
8034
  /* We assume that ARMv7+ does not need the VFP11 denorm erratum fix.  */
8035
0
  if (out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V7)
8036
0
    {
8037
0
      switch (globals->vfp11_fix)
8038
0
  {
8039
0
  case BFD_ARM_VFP11_FIX_DEFAULT:
8040
0
  case BFD_ARM_VFP11_FIX_NONE:
8041
0
    globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8042
0
    break;
8043
8044
0
  default:
8045
    /* Give a warning, but do as the user requests anyway.  */
8046
0
    _bfd_error_handler (_("%pB: warning: selected VFP11 erratum "
8047
0
      "workaround is not necessary for target architecture"), obfd);
8048
0
  }
8049
0
    }
8050
0
  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
0
    globals->vfp11_fix = BFD_ARM_VFP11_FIX_NONE;
8055
0
}
8056
8057
void
8058
bfd_elf32_arm_set_stm32l4xx_fix (bfd *obfd, struct bfd_link_info *link_info)
8059
0
{
8060
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8061
0
  obj_attribute *out_attr = elf_known_obj_attributes_proc (obfd);
8062
8063
0
  if (globals == NULL)
8064
0
    return;
8065
8066
  /* We assume only Cortex-M4 may require the fix.  */
8067
0
  if (out_attr[Tag_CPU_arch].i != TAG_CPU_ARCH_V7E_M
8068
0
      || out_attr[Tag_CPU_arch_profile].i != 'M')
8069
0
    {
8070
0
      if (globals->stm32l4xx_fix != BFD_ARM_STM32L4XX_FIX_NONE)
8071
  /* Give a warning, but do as the user requests anyway.  */
8072
0
  _bfd_error_handler
8073
0
    (_("%pB: warning: selected STM32L4XX erratum "
8074
0
       "workaround is not necessary for target architecture"), obfd);
8075
0
    }
8076
0
}
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, bool is_double, unsigned int rx,
8100
         unsigned int x)
8101
0
{
8102
0
  if (is_double)
8103
0
    return (((insn >> rx) & 0xf) | (((insn >> x) & 1) << 4)) + 32;
8104
0
  else
8105
0
    return (((insn >> rx) & 0xf) << 1) | ((insn >> x) & 1);
8106
0
}
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
0
{
8114
0
  if (reg < 32)
8115
0
    *wmask |= 1 << reg;
8116
0
  else if (reg < 48)
8117
0
    *wmask |= 3 << ((reg - 32) * 2);
8118
0
}
8119
8120
/* Return TRUE if WMASK overwrites anything in REGS.  */
8121
8122
static bool
8123
bfd_arm_vfp11_antidependency (unsigned int wmask, int *regs, int numregs)
8124
0
{
8125
0
  int i;
8126
8127
0
  for (i = 0; i < numregs; i++)
8128
0
    {
8129
0
      unsigned int reg = regs[i];
8130
8131
0
      if (reg < 32 && (wmask & (1 << reg)) != 0)
8132
0
  return true;
8133
8134
0
      reg -= 32;
8135
8136
0
      if (reg >= 16)
8137
0
  continue;
8138
8139
0
      if ((wmask & (3 << (reg * 2))) != 0)
8140
0
  return true;
8141
0
    }
8142
8143
0
  return false;
8144
0
}
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
0
{
8158
0
  enum bfd_arm_vfp11_pipe vpipe = VFP11_BAD;
8159
0
  bool is_double = ((insn & 0xf00) == 0xb00) ? 1 : 0;
8160
8161
0
  if ((insn & 0x0f000e10) == 0x0e000a00)  /* A data-processing insn.  */
8162
0
    {
8163
0
      unsigned int pqrs;
8164
0
      unsigned int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8165
0
      unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
8166
8167
0
      pqrs = ((insn & 0x00800000) >> 20)
8168
0
     | ((insn & 0x00300000) >> 19)
8169
0
     | ((insn & 0x00000040) >> 6);
8170
8171
0
      switch (pqrs)
8172
0
  {
8173
0
  case 0: /* fmac[sd].  */
8174
0
  case 1: /* fnmac[sd].  */
8175
0
  case 2: /* fmsc[sd].  */
8176
0
  case 3: /* fnmsc[sd].  */
8177
0
    vpipe = VFP11_FMAC;
8178
0
    bfd_arm_vfp11_write_mask (destmask, fd);
8179
0
    regs[0] = fd;
8180
0
    regs[1] = bfd_arm_vfp11_regno (insn, is_double, 16, 7);  /* Fn.  */
8181
0
    regs[2] = fm;
8182
0
    *numregs = 3;
8183
0
    break;
8184
8185
0
  case 4: /* fmul[sd].  */
8186
0
  case 5: /* fnmul[sd].  */
8187
0
  case 6: /* fadd[sd].  */
8188
0
  case 7: /* fsub[sd].  */
8189
0
    vpipe = VFP11_FMAC;
8190
0
    goto vfp_binop;
8191
8192
0
  case 8: /* fdiv[sd].  */
8193
0
    vpipe = VFP11_DS;
8194
0
    vfp_binop:
8195
0
    bfd_arm_vfp11_write_mask (destmask, fd);
8196
0
    regs[0] = bfd_arm_vfp11_regno (insn, is_double, 16, 7);   /* Fn.  */
8197
0
    regs[1] = fm;
8198
0
    *numregs = 2;
8199
0
    break;
8200
8201
0
  case 15: /* extended opcode.  */
8202
0
    {
8203
0
      unsigned int extn = ((insn >> 15) & 0x1e)
8204
0
            | ((insn >> 7) & 1);
8205
8206
0
      switch (extn)
8207
0
        {
8208
0
        case 0: /* fcpy[sd].  */
8209
0
        case 1: /* fabs[sd].  */
8210
0
        case 2: /* fneg[sd].  */
8211
0
        case 8: /* fcmp[sd].  */
8212
0
        case 9: /* fcmpe[sd].  */
8213
0
        case 10: /* fcmpz[sd].  */
8214
0
        case 11: /* fcmpez[sd].  */
8215
0
        case 16: /* fuito[sd].  */
8216
0
        case 17: /* fsito[sd].  */
8217
0
        case 24: /* ftoui[sd].  */
8218
0
        case 25: /* ftouiz[sd].  */
8219
0
        case 26: /* ftosi[sd].  */
8220
0
        case 27: /* ftosiz[sd].  */
8221
    /* These instructions will not bounce due to underflow.  */
8222
0
    *numregs = 0;
8223
0
    vpipe = VFP11_FMAC;
8224
0
    break;
8225
8226
0
        case 3: /* fsqrt[sd].  */
8227
    /* fsqrt cannot underflow, but it can (perhaps) overwrite
8228
       registers to cause the erratum in previous instructions.  */
8229
0
    bfd_arm_vfp11_write_mask (destmask, fd);
8230
0
    vpipe = VFP11_DS;
8231
0
    break;
8232
8233
0
        case 15: /* fcvt{ds,sd}.  */
8234
0
    {
8235
0
      int rnum = 0;
8236
8237
0
      bfd_arm_vfp11_write_mask (destmask, fd);
8238
8239
      /* Only FCVTSD can underflow.  */
8240
0
      if ((insn & 0x100) != 0)
8241
0
        regs[rnum++] = fm;
8242
8243
0
      *numregs = rnum;
8244
8245
0
      vpipe = VFP11_FMAC;
8246
0
    }
8247
0
    break;
8248
8249
0
        default:
8250
0
    return VFP11_BAD;
8251
0
        }
8252
0
    }
8253
0
    break;
8254
8255
0
  default:
8256
0
    return VFP11_BAD;
8257
0
  }
8258
0
    }
8259
  /* Two-register transfer.  */
8260
0
  else if ((insn & 0x0fe00ed0) == 0x0c400a10)
8261
0
    {
8262
0
      unsigned int fm = bfd_arm_vfp11_regno (insn, is_double, 0, 5);
8263
8264
0
      if ((insn & 0x100000) == 0)
8265
0
  {
8266
0
    if (is_double)
8267
0
      bfd_arm_vfp11_write_mask (destmask, fm);
8268
0
    else
8269
0
      {
8270
0
        bfd_arm_vfp11_write_mask (destmask, fm);
8271
0
        bfd_arm_vfp11_write_mask (destmask, fm + 1);
8272
0
      }
8273
0
  }
8274
8275
0
      vpipe = VFP11_LS;
8276
0
    }
8277
0
  else if ((insn & 0x0e100e00) == 0x0c100a00)  /* A load insn.  */
8278
0
    {
8279
0
      int fd = bfd_arm_vfp11_regno (insn, is_double, 12, 22);
8280
0
      unsigned int puw = ((insn >> 21) & 0x1) | (((insn >> 23) & 3) << 1);
8281
8282
0
      switch (puw)
8283
0
  {
8284
0
  case 0: /* Two-reg transfer.  We should catch these above.  */
8285
0
    abort ();
8286
8287
0
  case 2: /* fldm[sdx].  */
8288
0
  case 3:
8289
0
  case 5:
8290
0
    {
8291
0
      unsigned int i, offset = insn & 0xff;
8292
8293
0
      if (is_double)
8294
0
        offset >>= 1;
8295
8296
0
      for (i = fd; i < fd + offset; i++)
8297
0
        bfd_arm_vfp11_write_mask (destmask, i);
8298
0
    }
8299
0
    break;
8300
8301
0
  case 4: /* fld[sd].  */
8302
0
  case 6:
8303
0
    bfd_arm_vfp11_write_mask (destmask, fd);
8304
0
    break;
8305
8306
0
  default:
8307
0
    return VFP11_BAD;
8308
0
  }
8309
8310
0
      vpipe = VFP11_LS;
8311
0
    }
8312
  /* Single-register transfer. Note L==0.  */
8313
0
  else if ((insn & 0x0f100e10) == 0x0e000a10)
8314
0
    {
8315
0
      unsigned int opcode = (insn >> 21) & 7;
8316
0
      unsigned int fn = bfd_arm_vfp11_regno (insn, is_double, 16, 7);
8317
8318
0
      switch (opcode)
8319
0
  {
8320
0
  case 0: /* fmsr/fmdlr.  */
8321
0
  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
0
    bfd_arm_vfp11_write_mask (destmask, fn);
8326
0
    break;
8327
8328
0
  case 7: /* fmxr.  */
8329
0
    break;
8330
0
  }
8331
8332
0
      vpipe = VFP11_LS;
8333
0
    }
8334
8335
0
  return vpipe;
8336
0
}
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
bool
8348
bfd_elf32_arm_vfp11_erratum_scan (bfd *abfd, struct bfd_link_info *link_info)
8349
0
{
8350
0
  asection *sec;
8351
0
  bfd_byte *contents = NULL;
8352
0
  int state = 0;
8353
0
  int regs[3], numregs = 0;
8354
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8355
0
  int use_vector = (globals->vfp11_fix == BFD_ARM_VFP11_FIX_VECTOR);
8356
8357
0
  if (globals == NULL)
8358
0
    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
0
  if (bfd_link_relocatable (link_info))
8389
0
    return true;
8390
8391
  /* Skip if this bfd does not correspond to an ELF image.  */
8392
0
  if (! is_arm_elf (abfd))
8393
0
    return true;
8394
8395
  /* We should have chosen a fix type by the time we get here.  */
8396
0
  BFD_ASSERT (globals->vfp11_fix != BFD_ARM_VFP11_FIX_DEFAULT);
8397
8398
0
  if (globals->vfp11_fix == BFD_ARM_VFP11_FIX_NONE)
8399
0
    return true;
8400
8401
  /* Skip this BFD if it corresponds to an executable or dynamic object.  */
8402
0
  if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
8403
0
    return true;
8404
8405
0
  for (sec = abfd->sections; sec != NULL; sec = sec->next)
8406
0
    {
8407
0
      unsigned int i, span, first_fmac = 0, veneer_of_insn = 0;
8408
0
      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
0
      if (elf_section_type (sec) != SHT_PROGBITS
8413
0
    || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8414
0
    || (sec->flags & SEC_EXCLUDE) != 0
8415
0
    || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8416
0
    || sec->output_section == bfd_abs_section_ptr
8417
0
    || strcmp (sec->name, VFP11_ERRATUM_VENEER_SECTION_NAME) == 0)
8418
0
  continue;
8419
8420
0
      sec_data = elf32_arm_section_data (sec);
8421
8422
0
      if (sec_data->mapcount == 0)
8423
0
  continue;
8424
8425
0
      if (elf_section_data (sec)->this_hdr.contents != NULL)
8426
0
  contents = elf_section_data (sec)->this_hdr.contents;
8427
0
      else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8428
0
  goto error_return;
8429
8430
0
      qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8431
0
       elf32_arm_compare_mapping);
8432
8433
0
      for (span = 0; span < sec_data->mapcount; span++)
8434
0
  {
8435
0
    unsigned int span_start = sec_data->map[span].vma;
8436
0
    unsigned int span_end = (span == sec_data->mapcount - 1)
8437
0
          ? sec->size : sec_data->map[span + 1].vma;
8438
0
    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
0
    if (span_type != 'a')
8443
0
      continue;
8444
8445
0
    for (i = span_start; i < span_end;)
8446
0
      {
8447
0
        unsigned int next_i = i + 4;
8448
0
        unsigned int insn = bfd_big_endian (abfd)
8449
0
    ? (((unsigned) contents[i] << 24)
8450
0
       | (contents[i + 1] << 16)
8451
0
       | (contents[i + 2] << 8)
8452
0
       | contents[i + 3])
8453
0
    : (((unsigned) contents[i + 3] << 24)
8454
0
       | (contents[i + 2] << 16)
8455
0
       | (contents[i + 1] << 8)
8456
0
       | contents[i]);
8457
0
        unsigned int writemask = 0;
8458
0
        enum bfd_arm_vfp11_pipe vpipe;
8459
8460
0
        switch (state)
8461
0
    {
8462
0
    case 0:
8463
0
      vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask, regs,
8464
0
                &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
0
      if (vpipe == VFP11_FMAC || vpipe == VFP11_DS)
8469
0
        {
8470
0
          state = use_vector ? 1 : 2;
8471
0
          first_fmac = i;
8472
0
          veneer_of_insn = insn;
8473
0
        }
8474
0
      break;
8475
8476
0
    case 1:
8477
0
      {
8478
0
        int other_regs[3], other_numregs;
8479
0
        vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
8480
0
                  other_regs,
8481
0
                  &other_numregs);
8482
0
        if (vpipe != VFP11_BAD
8483
0
      && bfd_arm_vfp11_antidependency (writemask, regs,
8484
0
               numregs))
8485
0
          state = 3;
8486
0
        else
8487
0
          state = 2;
8488
0
      }
8489
0
      break;
8490
8491
0
    case 2:
8492
0
      {
8493
0
        int other_regs[3], other_numregs;
8494
0
        vpipe = bfd_arm_vfp11_insn_decode (insn, &writemask,
8495
0
                  other_regs,
8496
0
                  &other_numregs);
8497
0
        if (vpipe != VFP11_BAD
8498
0
      && bfd_arm_vfp11_antidependency (writemask, regs,
8499
0
               numregs))
8500
0
          state = 3;
8501
0
        else
8502
0
          {
8503
0
      state = 0;
8504
0
      next_i = first_fmac + 4;
8505
0
          }
8506
0
      }
8507
0
      break;
8508
8509
0
    case 3:
8510
0
      abort ();  /* Should be unreachable.  */
8511
0
    }
8512
8513
0
        if (state == 3)
8514
0
    {
8515
0
      elf32_vfp11_erratum_list *newerr =(elf32_vfp11_erratum_list *)
8516
0
          bfd_zmalloc (sizeof (elf32_vfp11_erratum_list));
8517
8518
0
      elf32_arm_section_data (sec)->erratumcount += 1;
8519
8520
0
      newerr->u.b.vfp_insn = veneer_of_insn;
8521
8522
0
      switch (span_type)
8523
0
        {
8524
0
        case 'a':
8525
0
          newerr->type = VFP11_ERRATUM_BRANCH_TO_ARM_VENEER;
8526
0
          break;
8527
8528
0
        default:
8529
0
          abort ();
8530
0
        }
8531
8532
0
      record_vfp11_erratum_veneer (link_info, newerr, abfd, sec,
8533
0
                 first_fmac);
8534
8535
0
      newerr->vma = -1;
8536
8537
0
      newerr->next = sec_data->erratumlist;
8538
0
      sec_data->erratumlist = newerr;
8539
8540
0
      state = 0;
8541
0
    }
8542
8543
0
        i = next_i;
8544
0
      }
8545
0
  }
8546
8547
0
      if (elf_section_data (sec)->this_hdr.contents != contents)
8548
0
  free (contents);
8549
0
      contents = NULL;
8550
0
    }
8551
8552
0
  return true;
8553
8554
0
 error_return:
8555
0
  if (elf_section_data (sec)->this_hdr.contents != contents)
8556
0
    free (contents);
8557
8558
0
  return false;
8559
0
}
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
0
{
8568
0
  asection *sec;
8569
0
  struct elf32_arm_link_hash_table *globals;
8570
0
  char *tmp_name;
8571
8572
0
  if (bfd_link_relocatable (link_info))
8573
0
    return;
8574
8575
  /* Skip if this bfd does not correspond to an ELF image.  */
8576
0
  if (! is_arm_elf (abfd))
8577
0
    return;
8578
8579
0
  globals = elf32_arm_hash_table (link_info);
8580
0
  if (globals == NULL)
8581
0
    return;
8582
8583
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
8584
0
          (VFP11_ERRATUM_VENEER_ENTRY_NAME) + 10);
8585
0
  BFD_ASSERT (tmp_name);
8586
8587
0
  for (sec = abfd->sections; sec != NULL; sec = sec->next)
8588
0
    {
8589
0
      struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8590
0
      elf32_vfp11_erratum_list *errnode = sec_data->erratumlist;
8591
8592
0
      for (; errnode != NULL; errnode = errnode->next)
8593
0
  {
8594
0
    struct elf_link_hash_entry *myh;
8595
0
    bfd_vma vma;
8596
8597
0
    switch (errnode->type)
8598
0
      {
8599
0
      case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
8600
0
      case VFP11_ERRATUM_BRANCH_TO_THUMB_VENEER:
8601
        /* Find veneer symbol.  */
8602
0
        sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME,
8603
0
           errnode->u.b.veneer->u.v.id);
8604
8605
0
        myh = elf_link_hash_lookup
8606
0
    (&(globals)->root, tmp_name, false, false, true);
8607
8608
0
        if (myh == NULL)
8609
0
    _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8610
0
            abfd, "VFP11", tmp_name);
8611
8612
0
        vma = myh->root.u.def.section->output_section->vma
8613
0
        + myh->root.u.def.section->output_offset
8614
0
        + myh->root.u.def.value;
8615
8616
0
        errnode->u.b.veneer->vma = vma;
8617
0
        break;
8618
8619
0
      case VFP11_ERRATUM_ARM_VENEER:
8620
0
      case VFP11_ERRATUM_THUMB_VENEER:
8621
        /* Find return location.  */
8622
0
        sprintf (tmp_name, VFP11_ERRATUM_VENEER_ENTRY_NAME "_r",
8623
0
           errnode->u.v.id);
8624
8625
0
        myh = elf_link_hash_lookup
8626
0
    (&(globals)->root, tmp_name, false, false, true);
8627
8628
0
        if (myh == NULL)
8629
0
    _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8630
0
            abfd, "VFP11", tmp_name);
8631
8632
0
        vma = myh->root.u.def.section->output_section->vma
8633
0
        + myh->root.u.def.section->output_offset
8634
0
        + myh->root.u.def.value;
8635
8636
0
        errnode->u.v.branch->vma = vma;
8637
0
        break;
8638
8639
0
      default:
8640
0
        abort ();
8641
0
      }
8642
0
  }
8643
0
    }
8644
8645
0
  free (tmp_name);
8646
0
}
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
0
{
8656
0
  asection *sec;
8657
0
  struct elf32_arm_link_hash_table *globals;
8658
0
  char *tmp_name;
8659
8660
0
  if (bfd_link_relocatable (link_info))
8661
0
    return;
8662
8663
  /* Skip if this bfd does not correspond to an ELF image.  */
8664
0
  if (! is_arm_elf (abfd))
8665
0
    return;
8666
8667
0
  globals = elf32_arm_hash_table (link_info);
8668
0
  if (globals == NULL)
8669
0
    return;
8670
8671
0
  tmp_name = (char *) bfd_malloc ((bfd_size_type) strlen
8672
0
          (STM32L4XX_ERRATUM_VENEER_ENTRY_NAME) + 10);
8673
0
  BFD_ASSERT (tmp_name);
8674
8675
0
  for (sec = abfd->sections; sec != NULL; sec = sec->next)
8676
0
    {
8677
0
      struct _arm_elf_section_data *sec_data = elf32_arm_section_data (sec);
8678
0
      elf32_stm32l4xx_erratum_list *errnode = sec_data->stm32l4xx_erratumlist;
8679
8680
0
      for (; errnode != NULL; errnode = errnode->next)
8681
0
  {
8682
0
    struct elf_link_hash_entry *myh;
8683
0
    bfd_vma vma;
8684
8685
0
    switch (errnode->type)
8686
0
      {
8687
0
      case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
8688
        /* Find veneer symbol.  */
8689
0
        sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME,
8690
0
           errnode->u.b.veneer->u.v.id);
8691
8692
0
        myh = elf_link_hash_lookup
8693
0
    (&(globals)->root, tmp_name, false, false, true);
8694
8695
0
        if (myh == NULL)
8696
0
    _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8697
0
            abfd, "STM32L4XX", tmp_name);
8698
8699
0
        vma = myh->root.u.def.section->output_section->vma
8700
0
    + myh->root.u.def.section->output_offset
8701
0
    + myh->root.u.def.value;
8702
8703
0
        errnode->u.b.veneer->vma = vma;
8704
0
        break;
8705
8706
0
      case STM32L4XX_ERRATUM_VENEER:
8707
        /* Find return location.  */
8708
0
        sprintf (tmp_name, STM32L4XX_ERRATUM_VENEER_ENTRY_NAME "_r",
8709
0
           errnode->u.v.id);
8710
8711
0
        myh = elf_link_hash_lookup
8712
0
    (&(globals)->root, tmp_name, false, false, true);
8713
8714
0
        if (myh == NULL)
8715
0
    _bfd_error_handler (_("%pB: unable to find %s veneer `%s'"),
8716
0
            abfd, "STM32L4XX", tmp_name);
8717
8718
0
        vma = myh->root.u.def.section->output_section->vma
8719
0
    + myh->root.u.def.section->output_offset
8720
0
    + myh->root.u.def.value;
8721
8722
0
        errnode->u.v.branch->vma = vma;
8723
0
        break;
8724
8725
0
      default:
8726
0
        abort ();
8727
0
      }
8728
0
  }
8729
0
    }
8730
8731
0
  free (tmp_name);
8732
0
}
8733
8734
static inline bool
8735
is_thumb2_ldmia (const insn32 insn)
8736
0
{
8737
  /* Encoding T2: LDM<c>.W <Rn>{!},<registers>
8738
     1110 - 1000 - 10W1 - rrrr - PM (0) l - llll - llll - llll.  */
8739
0
  return (insn & 0xffd02000) == 0xe8900000;
8740
0
}
8741
8742
static inline bool
8743
is_thumb2_ldmdb (const insn32 insn)
8744
0
{
8745
  /* Encoding T1: LDMDB<c> <Rn>{!},<registers>
8746
     1110 - 1001 - 00W1 - rrrr - PM (0) l - llll - llll - llll.  */
8747
0
  return (insn & 0xffd02000) == 0xe9100000;
8748
0
}
8749
8750
static inline bool
8751
is_thumb2_vldm (const insn32 insn)
8752
0
{
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
0
  return
8765
0
    (((insn & 0xfe100f00) == 0xec100b00) ||
8766
0
     ((insn & 0xfe100f00) == 0xec100a00))
8767
0
    && /* (IA without !).  */
8768
0
    (((((insn << 7) >> 28) & 0xd) == 0x4)
8769
     /* (IA with !), includes VPOP (when reg number is SP).  */
8770
0
     || ((((insn << 7) >> 28) & 0xd) == 0x5)
8771
     /* (DB with !).  */
8772
0
     || ((((insn << 7) >> 28) & 0xd) == 0x9));
8773
0
}
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 bool
8783
stm32l4xx_need_create_replacing_stub (const insn32 insn,
8784
              bfd_arm_stm32l4xx_fix stm32l4xx_fix)
8785
0
{
8786
0
  int nb_words = 0;
8787
8788
  /* The field encoding the register list is the same for both LDMIA
8789
     and LDMDB encodings.  */
8790
0
  if (is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn))
8791
0
    nb_words = elf32_arm_popcount (insn & 0x0000ffff);
8792
0
  else if (is_thumb2_vldm (insn))
8793
0
   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
0
  return (stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_DEFAULT
8798
0
    ? nb_words > 8
8799
0
    : stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_ALL);
8800
0
}
8801
8802
/* Look for potentially-troublesome code sequences which might trigger
8803
   the STM STM32L4XX erratum.  */
8804
8805
bool
8806
bfd_elf32_arm_stm32l4xx_erratum_scan (bfd *abfd,
8807
              struct bfd_link_info *link_info)
8808
0
{
8809
0
  asection *sec;
8810
0
  bfd_byte *contents = NULL;
8811
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
8812
8813
0
  if (globals == NULL)
8814
0
    return false;
8815
8816
  /* If we are only performing a partial link do not bother
8817
     to construct any glue.  */
8818
0
  if (bfd_link_relocatable (link_info))
8819
0
    return true;
8820
8821
  /* Skip if this bfd does not correspond to an ELF image.  */
8822
0
  if (! is_arm_elf (abfd))
8823
0
    return true;
8824
8825
0
  if (globals->stm32l4xx_fix == BFD_ARM_STM32L4XX_FIX_NONE)
8826
0
    return true;
8827
8828
  /* Skip this BFD if it corresponds to an executable or dynamic object.  */
8829
0
  if ((abfd->flags & (EXEC_P | DYNAMIC)) != 0)
8830
0
    return true;
8831
8832
0
  for (sec = abfd->sections; sec != NULL; sec = sec->next)
8833
0
    {
8834
0
      unsigned int i, span;
8835
0
      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
0
      if (elf_section_type (sec) != SHT_PROGBITS
8840
0
    || (elf_section_flags (sec) & SHF_EXECINSTR) == 0
8841
0
    || (sec->flags & SEC_EXCLUDE) != 0
8842
0
    || sec->sec_info_type == SEC_INFO_TYPE_JUST_SYMS
8843
0
    || sec->output_section == bfd_abs_section_ptr
8844
0
    || strcmp (sec->name, STM32L4XX_ERRATUM_VENEER_SECTION_NAME) == 0)
8845
0
  continue;
8846
8847
0
      sec_data = elf32_arm_section_data (sec);
8848
8849
0
      if (sec_data->mapcount == 0)
8850
0
  continue;
8851
8852
0
      if (elf_section_data (sec)->this_hdr.contents != NULL)
8853
0
  contents = elf_section_data (sec)->this_hdr.contents;
8854
0
      else if (! bfd_malloc_and_get_section (abfd, sec, &contents))
8855
0
  goto error_return;
8856
8857
0
      qsort (sec_data->map, sec_data->mapcount, sizeof (elf32_arm_section_map),
8858
0
       elf32_arm_compare_mapping);
8859
8860
0
      for (span = 0; span < sec_data->mapcount; span++)
8861
0
  {
8862
0
    unsigned int span_start = sec_data->map[span].vma;
8863
0
    unsigned int span_end = (span == sec_data->mapcount - 1)
8864
0
      ? sec->size : sec_data->map[span + 1].vma;
8865
0
    char span_type = sec_data->map[span].type;
8866
0
    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
0
    if (span_type != 't')
8872
0
      continue;
8873
8874
0
    for (i = span_start; i < span_end;)
8875
0
      {
8876
0
        unsigned int insn = bfd_get_16 (abfd, &contents[i]);
8877
0
        bool insn_32bit = false;
8878
0
        bool is_ldm = false;
8879
0
        bool is_vldm = false;
8880
0
        bool 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
0
        if ((insn & 0xe000) == 0xe000 && (insn & 0x1800) != 0x0000)
8887
0
    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
0
        if (itblock_current_pos != 0)
8900
0
      is_not_last_in_it_block = !!--itblock_current_pos;
8901
8902
0
        if (insn_32bit)
8903
0
    {
8904
      /* Load the rest of the insn (in manual-friendly order).  */
8905
0
      insn = (insn << 16) | bfd_get_16 (abfd, &contents[i + 2]);
8906
0
      is_ldm = is_thumb2_ldmia (insn) || is_thumb2_ldmdb (insn);
8907
0
      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
0
        if ((is_ldm || is_vldm)
8915
0
      && stm32l4xx_need_create_replacing_stub
8916
0
      (insn, globals->stm32l4xx_fix))
8917
0
          {
8918
0
      if (is_not_last_in_it_block)
8919
0
        {
8920
0
          _bfd_error_handler
8921
            /* xgettext:c-format */
8922
0
            (_("%pB(%pA+%#x): error: multiple load detected"
8923
0
         " in non-last IT block instruction:"
8924
0
         " STM32L4XX veneer cannot be generated; "
8925
0
         "use gcc option -mrestrict-it to generate"
8926
0
         " only one instruction per IT block"),
8927
0
             abfd, sec, i);
8928
0
        }
8929
0
      else
8930
0
        {
8931
0
          elf32_stm32l4xx_erratum_list *newerr =
8932
0
            (elf32_stm32l4xx_erratum_list *)
8933
0
            bfd_zmalloc
8934
0
            (sizeof (elf32_stm32l4xx_erratum_list));
8935
8936
0
          elf32_arm_section_data (sec)
8937
0
            ->stm32l4xx_erratumcount += 1;
8938
0
          newerr->u.b.insn = insn;
8939
          /* We create only thumb branches.  */
8940
0
          newerr->type =
8941
0
            STM32L4XX_ERRATUM_BRANCH_TO_VENEER;
8942
0
          record_stm32l4xx_erratum_veneer
8943
0
            (link_info, newerr, abfd, sec,
8944
0
             i,
8945
0
             is_ldm ?
8946
0
             STM32L4XX_ERRATUM_LDM_VENEER_SIZE:
8947
0
             STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
8948
0
          newerr->vma = -1;
8949
0
          newerr->next = sec_data->stm32l4xx_erratumlist;
8950
0
          sec_data->stm32l4xx_erratumlist = newerr;
8951
0
        }
8952
0
          }
8953
0
    }
8954
0
        else
8955
0
    {
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
0
      bool is_newitblock = ((insn & 0xff00) == 0xbf00)
8966
0
        && ((insn & 0x000f) != 0x0000);
8967
      /* If we have a new IT block we compute its size.  */
8968
0
      if (is_newitblock)
8969
0
        {
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
0
          unsigned int mask = insn & 0x000f;
8974
0
          itblock_current_pos = 4 - ctz (mask);
8975
0
        }
8976
0
    }
8977
8978
0
        i += insn_32bit ? 4 : 2;
8979
0
      }
8980
0
  }
8981
8982
0
      if (elf_section_data (sec)->this_hdr.contents != contents)
8983
0
  free (contents);
8984
0
      contents = NULL;
8985
0
    }
8986
8987
0
  return true;
8988
8989
0
 error_return:
8990
0
  if (elf_section_data (sec)->this_hdr.contents != contents)
8991
0
    free (contents);
8992
8993
0
  return false;
8994
0
}
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
0
{
9003
0
  struct elf32_arm_link_hash_table *globals;
9004
9005
0
  globals = elf32_arm_hash_table (link_info);
9006
0
  if (globals == NULL)
9007
0
    return;
9008
9009
0
  globals->target1_is_rel = params->target1_is_rel;
9010
0
  if (globals->fdpic_p)
9011
0
    globals->target2_reloc = R_ARM_GOT32;
9012
0
  else if (strcmp (params->target2_type, "rel") == 0)
9013
0
    globals->target2_reloc = R_ARM_REL32;
9014
0
  else if (strcmp (params->target2_type, "abs") == 0)
9015
0
    globals->target2_reloc = R_ARM_ABS32;
9016
0
  else if (strcmp (params->target2_type, "got-rel") == 0)
9017
0
    globals->target2_reloc = R_ARM_GOT_PREL;
9018
0
  else
9019
0
    {
9020
0
      _bfd_error_handler (_("invalid TARGET2 relocation type '%s'"),
9021
0
        params->target2_type);
9022
0
    }
9023
0
  globals->fix_v4bx = params->fix_v4bx;
9024
0
  globals->use_blx |= params->use_blx;
9025
0
  globals->vfp11_fix = params->vfp11_denorm_fix;
9026
0
  globals->stm32l4xx_fix = params->stm32l4xx_fix;
9027
0
  if (globals->fdpic_p)
9028
0
    globals->pic_veneer = 1;
9029
0
  else
9030
0
    globals->pic_veneer = params->pic_veneer;
9031
0
  globals->fix_cortex_a8 = params->fix_cortex_a8;
9032
0
  globals->fix_arm1176 = params->fix_arm1176;
9033
0
  globals->cmse_implib = params->cmse_implib;
9034
0
  globals->in_implib_bfd = params->in_implib_bfd;
9035
9036
0
  BFD_ASSERT (is_arm_elf (output_bfd));
9037
0
  elf_arm_tdata (output_bfd)->no_enum_size_warning
9038
0
    = params->no_enum_size_warning;
9039
0
  elf_arm_tdata (output_bfd)->no_wchar_size_warning
9040
0
    = params->no_wchar_size_warning;
9041
0
}
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
0
{
9048
0
  bfd_vma upper;
9049
0
  bfd_vma lower;
9050
0
  int reloc_sign;
9051
9052
0
  BFD_ASSERT ((offset & 1) == 0);
9053
9054
0
  upper = bfd_get_16 (abfd, insn);
9055
0
  lower = bfd_get_16 (abfd, insn + 2);
9056
0
  reloc_sign = (offset < 0) ? 1 : 0;
9057
0
  upper = (upper & ~(bfd_vma) 0x7ff)
9058
0
    | ((offset >> 12) & 0x3ff)
9059
0
    | (reloc_sign << 10);
9060
0
  lower = (lower & ~(bfd_vma) 0x2fff)
9061
0
    | (((!((offset >> 23) & 1)) ^ reloc_sign) << 13)
9062
0
    | (((!((offset >> 22) & 1)) ^ reloc_sign) << 11)
9063
0
    | ((offset >> 1) & 0x7ff);
9064
0
  bfd_put_16 (abfd, upper, insn);
9065
0
  bfd_put_16 (abfd, lower, insn + 2);
9066
0
}
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
0
{
9083
0
  asection * s = 0;
9084
0
  bfd_vma my_offset;
9085
0
  long int ret_offset;
9086
0
  struct elf_link_hash_entry * myh;
9087
0
  struct elf32_arm_link_hash_table * globals;
9088
9089
0
  myh = find_thumb_glue (info, name, error_message);
9090
0
  if (myh == NULL)
9091
0
    return false;
9092
9093
0
  globals = elf32_arm_hash_table (info);
9094
0
  BFD_ASSERT (globals != NULL);
9095
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9096
9097
0
  my_offset = myh->root.u.def.value;
9098
9099
0
  s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9100
0
            THUMB2ARM_GLUE_SECTION_NAME);
9101
9102
0
  BFD_ASSERT (s != NULL);
9103
0
  BFD_ASSERT (s->contents != NULL);
9104
0
  BFD_ASSERT (s->output_section != NULL);
9105
9106
0
  if ((my_offset & 0x01) == 0x01)
9107
0
    {
9108
0
      if (sym_sec != NULL
9109
0
    && sym_sec->owner != NULL
9110
0
    && !INTERWORK_FLAG (sym_sec->owner))
9111
0
  {
9112
0
    _bfd_error_handler
9113
0
      (_("%pB(%s): warning: interworking not enabled;"
9114
0
         " first occurrence: %pB: %s call to %s"),
9115
0
       sym_sec->owner, name, input_bfd, "Thumb", "ARM");
9116
9117
0
    return false;
9118
0
  }
9119
9120
0
      --my_offset;
9121
0
      myh->root.u.def.value = my_offset;
9122
9123
0
      put_thumb_insn (globals, output_bfd, (bfd_vma) t2a1_bx_pc_insn,
9124
0
          s->contents + my_offset);
9125
9126
0
      put_thumb_insn (globals, output_bfd, (bfd_vma) t2a2_noop_insn,
9127
0
          s->contents + my_offset + 2);
9128
9129
0
      ret_offset =
9130
  /* Address of destination of the stub.  */
9131
0
  ((bfd_signed_vma) val)
9132
0
  - ((bfd_signed_vma)
9133
     /* Offset from the start of the current section
9134
        to the start of the stubs.  */
9135
0
     (s->output_offset
9136
      /* Offset of the start of this stub from the start of the stubs.  */
9137
0
      + my_offset
9138
      /* Address of the start of the current section.  */
9139
0
      + s->output_section->vma)
9140
     /* The branch instruction is 4 bytes into the stub.  */
9141
0
     + 4
9142
     /* ARM branches work from the pc of the instruction + 8.  */
9143
0
     + 8);
9144
9145
0
      put_arm_insn (globals, output_bfd,
9146
0
        (bfd_vma) t2a3_b_insn | ((ret_offset >> 2) & 0x00FFFFFF),
9147
0
        s->contents + my_offset + 4);
9148
0
    }
9149
9150
0
  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
0
  ret_offset =
9154
    /* Address of where the stub is located.  */
9155
0
    (s->output_section->vma + s->output_offset + my_offset)
9156
     /* Address of where the BL is located.  */
9157
0
    - (input_section->output_section->vma + input_section->output_offset
9158
0
       + offset)
9159
    /* Addend in the relocation.  */
9160
0
    - addend
9161
    /* Biassing for PC-relative addressing.  */
9162
0
    - 8;
9163
9164
0
  insert_thumb_branch (input_bfd, ret_offset, hit_data - input_section->vma);
9165
9166
0
  return true;
9167
0
}
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
0
{
9181
0
  bfd_vma my_offset;
9182
0
  long int ret_offset;
9183
0
  struct elf_link_hash_entry * myh;
9184
0
  struct elf32_arm_link_hash_table * globals;
9185
9186
0
  myh = find_arm_glue (info, name, error_message);
9187
0
  if (myh == NULL)
9188
0
    return NULL;
9189
9190
0
  globals = elf32_arm_hash_table (info);
9191
0
  BFD_ASSERT (globals != NULL);
9192
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9193
9194
0
  my_offset = myh->root.u.def.value;
9195
9196
0
  if ((my_offset & 0x01) == 0x01)
9197
0
    {
9198
0
      if (sym_sec != NULL
9199
0
    && sym_sec->owner != NULL
9200
0
    && !INTERWORK_FLAG (sym_sec->owner))
9201
0
  {
9202
0
    _bfd_error_handler
9203
0
      (_("%pB(%s): warning: interworking not enabled;"
9204
0
         " first occurrence: %pB: %s call to %s"),
9205
0
       sym_sec->owner, name, input_bfd, "ARM", "Thumb");
9206
0
  }
9207
9208
0
      --my_offset;
9209
0
      myh->root.u.def.value = my_offset;
9210
9211
0
      if (bfd_link_pic (info)
9212
0
    || globals->pic_veneer)
9213
0
  {
9214
    /* For relocatable objects we can't use absolute addresses,
9215
       so construct the address from a relative offset.  */
9216
    /* TODO: If the offset is small it's probably worth
9217
       constructing the address with adds.  */
9218
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t1p_ldr_insn,
9219
0
      s->contents + my_offset);
9220
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t2p_add_pc_insn,
9221
0
      s->contents + my_offset + 4);
9222
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t3p_bx_r12_insn,
9223
0
      s->contents + my_offset + 8);
9224
    /* Adjust the offset by 4 for the position of the add,
9225
       and 8 for the pipeline offset.  */
9226
0
    ret_offset = (val - (s->output_offset
9227
0
             + s->output_section->vma
9228
0
             + my_offset + 12))
9229
0
           | 1;
9230
0
    bfd_put_32 (output_bfd, ret_offset,
9231
0
          s->contents + my_offset + 12);
9232
0
  }
9233
0
      else if (globals->use_blx)
9234
0
  {
9235
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t1v5_ldr_insn,
9236
0
      s->contents + my_offset);
9237
9238
    /* It's a thumb address.  Add the low order bit.  */
9239
0
    bfd_put_32 (output_bfd, val | a2t2v5_func_addr_insn,
9240
0
          s->contents + my_offset + 4);
9241
0
  }
9242
0
      else
9243
0
  {
9244
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t1_ldr_insn,
9245
0
      s->contents + my_offset);
9246
9247
0
    put_arm_insn (globals, output_bfd, (bfd_vma) a2t2_bx_r12_insn,
9248
0
      s->contents + my_offset + 4);
9249
9250
    /* It's a thumb address.  Add the low order bit.  */
9251
0
    bfd_put_32 (output_bfd, val | a2t3_func_addr_insn,
9252
0
          s->contents + my_offset + 8);
9253
9254
0
    my_offset += 12;
9255
0
  }
9256
0
    }
9257
9258
0
  BFD_ASSERT (my_offset <= globals->arm_glue_size);
9259
9260
0
  return myh;
9261
0
}
9262
9263
/* Arm code calling a Thumb function.  */
9264
9265
static int
9266
elf32_arm_to_thumb_stub (struct bfd_link_info * info,
9267
       const char *   name,
9268
       bfd *      input_bfd,
9269
       bfd *      output_bfd,
9270
       asection *   input_section,
9271
       bfd_byte *   hit_data,
9272
       asection *   sym_sec,
9273
       bfd_vma    offset,
9274
       bfd_signed_vma   addend,
9275
       bfd_vma    val,
9276
       char **error_message)
9277
0
{
9278
0
  unsigned long int tmp;
9279
0
  bfd_vma my_offset;
9280
0
  asection * s;
9281
0
  long int ret_offset;
9282
0
  struct elf_link_hash_entry * myh;
9283
0
  struct elf32_arm_link_hash_table * globals;
9284
9285
0
  globals = elf32_arm_hash_table (info);
9286
0
  BFD_ASSERT (globals != NULL);
9287
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9288
9289
0
  s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9290
0
            ARM2THUMB_GLUE_SECTION_NAME);
9291
0
  BFD_ASSERT (s != NULL);
9292
0
  BFD_ASSERT (s->contents != NULL);
9293
0
  BFD_ASSERT (s->output_section != NULL);
9294
9295
0
  myh = elf32_arm_create_thumb_stub (info, name, input_bfd, output_bfd,
9296
0
             sym_sec, val, s, error_message);
9297
0
  if (!myh)
9298
0
    return false;
9299
9300
0
  my_offset = myh->root.u.def.value;
9301
0
  tmp = bfd_get_32 (input_bfd, hit_data);
9302
0
  tmp = tmp & 0xFF000000;
9303
9304
  /* Somehow these are both 4 too far, so subtract 8.  */
9305
0
  ret_offset = (s->output_offset
9306
0
    + my_offset
9307
0
    + s->output_section->vma
9308
0
    - (input_section->output_offset
9309
0
       + input_section->output_section->vma
9310
0
       + offset + addend)
9311
0
    - 8);
9312
9313
0
  tmp = tmp | ((ret_offset >> 2) & 0x00FFFFFF);
9314
9315
0
  bfd_put_32 (output_bfd, (bfd_vma) tmp, hit_data - input_section->vma);
9316
9317
0
  return true;
9318
0
}
9319
9320
/* Populate Arm stub for an exported Thumb function.  */
9321
9322
static bool
9323
elf32_arm_to_thumb_export_stub (struct elf_link_hash_entry *h, void * inf)
9324
0
{
9325
0
  struct bfd_link_info * info = (struct bfd_link_info *) inf;
9326
0
  asection * s;
9327
0
  struct elf_link_hash_entry * myh;
9328
0
  struct elf32_arm_link_hash_entry *eh;
9329
0
  struct elf32_arm_link_hash_table * globals;
9330
0
  asection *sec;
9331
0
  bfd_vma val;
9332
0
  char *error_message;
9333
9334
0
  eh = elf32_arm_hash_entry (h);
9335
  /* Allocate stubs for exported Thumb functions on v4t.  */
9336
0
  if (eh->export_glue == NULL)
9337
0
    return true;
9338
9339
0
  globals = elf32_arm_hash_table (info);
9340
0
  BFD_ASSERT (globals != NULL);
9341
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9342
9343
0
  s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9344
0
            ARM2THUMB_GLUE_SECTION_NAME);
9345
0
  BFD_ASSERT (s != NULL);
9346
0
  BFD_ASSERT (s->contents != NULL);
9347
0
  BFD_ASSERT (s->output_section != NULL);
9348
9349
0
  sec = eh->export_glue->root.u.def.section;
9350
9351
0
  BFD_ASSERT (sec->output_section != NULL);
9352
9353
0
  val = eh->export_glue->root.u.def.value + sec->output_offset
9354
0
  + sec->output_section->vma;
9355
9356
0
  myh = elf32_arm_create_thumb_stub (info, h->root.root.string,
9357
0
             h->root.u.def.section->owner,
9358
0
             globals->obfd, sec, val, s,
9359
0
             &error_message);
9360
0
  BFD_ASSERT (myh);
9361
0
  return true;
9362
0
}
9363
9364
/* Populate ARMv4 BX veneers.  Returns the absolute adress of the veneer.  */
9365
9366
static bfd_vma
9367
elf32_arm_bx_glue (struct bfd_link_info * info, int reg)
9368
0
{
9369
0
  bfd_byte *p;
9370
0
  bfd_vma glue_addr;
9371
0
  asection *s;
9372
0
  struct elf32_arm_link_hash_table *globals;
9373
9374
0
  globals = elf32_arm_hash_table (info);
9375
0
  BFD_ASSERT (globals != NULL);
9376
0
  BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
9377
9378
0
  s = bfd_get_linker_section (globals->bfd_of_glue_owner,
9379
0
            ARM_BX_GLUE_SECTION_NAME);
9380
0
  BFD_ASSERT (s != NULL);
9381
0
  BFD_ASSERT (s->contents != NULL);
9382
0
  BFD_ASSERT (s->output_section != NULL);
9383
9384
0
  BFD_ASSERT (globals->bx_glue_offset[reg] & 2);
9385
9386
0
  glue_addr = globals->bx_glue_offset[reg] & ~(bfd_vma)3;
9387
9388
0
  if ((globals->bx_glue_offset[reg] & 1) == 0)
9389
0
    {
9390
0
      p = s->contents + glue_addr;
9391
0
      bfd_put_32 (globals->obfd, armbx1_tst_insn + (reg << 16), p);
9392
0
      bfd_put_32 (globals->obfd, armbx2_moveq_insn + reg, p + 4);
9393
0
      bfd_put_32 (globals->obfd, armbx3_bx_insn + reg, p + 8);
9394
0
      globals->bx_glue_offset[reg] |= 1;
9395
0
    }
9396
9397
0
  return glue_addr + s->output_section->vma + s->output_offset;
9398
0
}
9399
9400
/* Generate Arm stubs for exported Thumb symbols.  */
9401
static void
9402
elf32_arm_begin_write_processing (bfd *abfd ATTRIBUTE_UNUSED,
9403
          struct bfd_link_info *link_info)
9404
0
{
9405
0
  struct elf32_arm_link_hash_table * globals;
9406
9407
0
  if (link_info == NULL)
9408
    /* Ignore this if we are not called by the ELF backend linker.  */
9409
0
    return;
9410
9411
0
  globals = elf32_arm_hash_table (link_info);
9412
0
  if (globals == NULL)
9413
0
    return;
9414
9415
  /* If blx is available then exported Thumb symbols are OK and there is
9416
     nothing to do.  */
9417
0
  if (globals->use_blx)
9418
0
    return;
9419
9420
0
  elf_link_hash_traverse (&globals->root, elf32_arm_to_thumb_export_stub,
9421
0
        link_info);
9422
0
}
9423
9424
/* Reserve space for COUNT dynamic relocations in relocation selection
9425
   SRELOC.  */
9426
9427
static void
9428
elf32_arm_allocate_dynrelocs (struct bfd_link_info *info, asection *sreloc,
9429
            bfd_size_type count)
9430
0
{
9431
0
  struct elf32_arm_link_hash_table *htab;
9432
9433
0
  htab = elf32_arm_hash_table (info);
9434
0
  BFD_ASSERT (htab->root.dynamic_sections_created);
9435
0
  if (sreloc == NULL)
9436
0
    abort ();
9437
0
  sreloc->size += RELOC_SIZE (htab) * count;
9438
0
}
9439
9440
/* Reserve space for COUNT R_ARM_IRELATIVE relocations.  If the link is
9441
   dynamic, the relocations should go in SRELOC, otherwise they should
9442
   go in the special .rel.iplt section.  */
9443
9444
static void
9445
elf32_arm_allocate_irelocs (struct bfd_link_info *info, asection *sreloc,
9446
          bfd_size_type count)
9447
0
{
9448
0
  struct elf32_arm_link_hash_table *htab;
9449
9450
0
  htab = elf32_arm_hash_table (info);
9451
0
  if (!htab->root.dynamic_sections_created)
9452
0
    htab->root.irelplt->size += RELOC_SIZE (htab) * count;
9453
0
  else
9454
0
    {
9455
0
      BFD_ASSERT (sreloc != NULL);
9456
0
      sreloc->size += RELOC_SIZE (htab) * count;
9457
0
    }
9458
0
}
9459
9460
/* Add relocation REL to the end of relocation section SRELOC.  */
9461
9462
static void
9463
elf32_arm_add_dynreloc (bfd *output_bfd, struct bfd_link_info *info,
9464
      asection *sreloc, Elf_Internal_Rela *rel)
9465
0
{
9466
0
  bfd_byte *loc;
9467
0
  struct elf32_arm_link_hash_table *htab;
9468
9469
0
  htab = elf32_arm_hash_table (info);
9470
0
  if (!htab->root.dynamic_sections_created
9471
0
      && ELF32_R_TYPE (rel->r_info) == R_ARM_IRELATIVE)
9472
0
    sreloc = htab->root.irelplt;
9473
0
  if (sreloc == NULL)
9474
0
    abort ();
9475
0
  loc = sreloc->contents;
9476
0
  loc += sreloc->reloc_count++ * RELOC_SIZE (htab);
9477
0
  if (sreloc->reloc_count * RELOC_SIZE (htab) > sreloc->size)
9478
0
    abort ();
9479
0
  SWAP_RELOC_OUT (htab) (output_bfd, rel, loc);
9480
0
}
9481
9482
/* Allocate room for a PLT entry described by ROOT_PLT and ARM_PLT.
9483
   IS_IPLT_ENTRY says whether the entry belongs to .iplt rather than
9484
   to .plt.  */
9485
9486
static void
9487
elf32_arm_allocate_plt_entry (struct bfd_link_info *info,
9488
            bool is_iplt_entry,
9489
            union gotplt_union *root_plt,
9490
            struct arm_plt_info *arm_plt)
9491
0
{
9492
0
  struct elf32_arm_link_hash_table *htab;
9493
0
  asection *splt;
9494
0
  asection *sgotplt;
9495
9496
0
  htab = elf32_arm_hash_table (info);
9497
9498
0
  if (is_iplt_entry)
9499
0
    {
9500
0
      splt = htab->root.iplt;
9501
0
      sgotplt = htab->root.igotplt;
9502
9503
      /* Allocate room for an R_ARM_IRELATIVE relocation in .rel.iplt.  */
9504
0
      elf32_arm_allocate_irelocs (info, htab->root.irelplt, 1);
9505
0
    }
9506
0
  else
9507
0
    {
9508
0
      splt = htab->root.splt;
9509
0
      sgotplt = htab->root.sgotplt;
9510
9511
0
    if (htab->fdpic_p)
9512
0
      {
9513
  /* Allocate room for R_ARM_FUNCDESC_VALUE.  */
9514
  /* For lazy binding, relocations will be put into .rel.plt, in
9515
     .rel.got otherwise.  */
9516
  /* FIXME: today we don't support lazy binding so put it in .rel.got */
9517
0
  if (info->flags & DF_BIND_NOW)
9518
0
    elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
9519
0
  else
9520
0
    elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9521
0
      }
9522
0
    else
9523
0
      {
9524
  /* Allocate room for an R_JUMP_SLOT relocation in .rel.plt.  */
9525
0
  elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
9526
0
      }
9527
9528
      /* If this is the first .plt entry, make room for the special
9529
   first entry.  */
9530
0
      if (splt->size == 0)
9531
0
  splt->size += htab->plt_header_size;
9532
9533
0
      htab->next_tls_desc_index++;
9534
0
    }
9535
9536
  /* Allocate the PLT entry itself, including any leading Thumb stub.  */
9537
0
  if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9538
0
    splt->size += PLT_THUMB_STUB_SIZE;
9539
0
  root_plt->offset = splt->size;
9540
0
  splt->size += htab->plt_entry_size;
9541
9542
  /* We also need to make an entry in the .got.plt section, which
9543
     will be placed in the .got section by the linker script.  */
9544
0
  if (is_iplt_entry)
9545
0
    arm_plt->got_offset = sgotplt->size;
9546
0
  else
9547
0
    arm_plt->got_offset = sgotplt->size - 8 * htab->num_tls_desc;
9548
0
  if (htab->fdpic_p)
9549
    /* Function descriptor takes 64 bits in GOT.  */
9550
0
    sgotplt->size += 8;
9551
0
  else
9552
0
    sgotplt->size += 4;
9553
0
}
9554
9555
/* Fill in a PLT entry and its associated GOT slot.  If DYNINDX == -1,
9556
   the entry lives in .iplt and resolves to (*SYM_VALUE)().
9557
   Otherwise, DYNINDX is the index of the symbol in the dynamic
9558
   symbol table and SYM_VALUE is undefined.
9559
9560
   ROOT_PLT points to the offset of the PLT entry from the start of its
9561
   section (.iplt or .plt).  ARM_PLT points to the symbol's ARM-specific
9562
   bookkeeping information.
9563
9564
   Returns FALSE if there was a problem.  */
9565
9566
static bool
9567
elf32_arm_populate_plt_entry (bfd *output_bfd, struct bfd_link_info *info,
9568
            union gotplt_union *root_plt,
9569
            struct arm_plt_info *arm_plt,
9570
            int dynindx, bfd_vma sym_value)
9571
0
{
9572
0
  struct elf32_arm_link_hash_table *htab;
9573
0
  asection *sgot;
9574
0
  asection *splt;
9575
0
  asection *srel;
9576
0
  bfd_byte *loc;
9577
0
  bfd_vma plt_index;
9578
0
  Elf_Internal_Rela rel;
9579
0
  bfd_vma got_header_size;
9580
9581
0
  htab = elf32_arm_hash_table (info);
9582
9583
  /* Pick the appropriate sections and sizes.  */
9584
0
  if (dynindx == -1)
9585
0
    {
9586
0
      splt = htab->root.iplt;
9587
0
      sgot = htab->root.igotplt;
9588
0
      srel = htab->root.irelplt;
9589
9590
      /* There are no reserved entries in .igot.plt, and no special
9591
   first entry in .iplt.  */
9592
0
      got_header_size = 0;
9593
0
    }
9594
0
  else
9595
0
    {
9596
0
      splt = htab->root.splt;
9597
0
      sgot = htab->root.sgotplt;
9598
0
      srel = htab->root.srelplt;
9599
9600
0
      got_header_size = get_elf_backend_data (output_bfd)->got_header_size;
9601
0
    }
9602
0
  BFD_ASSERT (splt != NULL && srel != NULL);
9603
9604
0
  bfd_vma got_offset, got_address, plt_address;
9605
0
  bfd_vma got_displacement, initial_got_entry;
9606
0
  bfd_byte * ptr;
9607
9608
0
  BFD_ASSERT (sgot != NULL);
9609
9610
  /* Get the offset into the .(i)got.plt table of the entry that
9611
     corresponds to this function.  */
9612
0
  got_offset = (arm_plt->got_offset & -2);
9613
9614
  /* Get the index in the procedure linkage table which
9615
     corresponds to this symbol.  This is the index of this symbol
9616
     in all the symbols for which we are making plt entries.
9617
     After the reserved .got.plt entries, all symbols appear in
9618
     the same order as in .plt.  */
9619
0
  if (htab->fdpic_p)
9620
    /* Function descriptor takes 8 bytes.  */
9621
0
    plt_index = (got_offset - got_header_size) / 8;
9622
0
  else
9623
0
    plt_index = (got_offset - got_header_size) / 4;
9624
9625
  /* Calculate the address of the GOT entry.  */
9626
0
  got_address = (sgot->output_section->vma
9627
0
     + sgot->output_offset
9628
0
     + got_offset);
9629
9630
  /* ...and the address of the PLT entry.  */
9631
0
  plt_address = (splt->output_section->vma
9632
0
     + splt->output_offset
9633
0
     + root_plt->offset);
9634
9635
0
  ptr = splt->contents + root_plt->offset;
9636
0
  if (htab->root.target_os == is_vxworks && bfd_link_pic (info))
9637
0
    {
9638
0
      unsigned int i;
9639
0
      bfd_vma val;
9640
9641
0
      for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9642
0
  {
9643
0
    val = elf32_arm_vxworks_shared_plt_entry[i];
9644
0
    if (i == 2)
9645
0
      val |= got_address - sgot->output_section->vma;
9646
0
    if (i == 5)
9647
0
      val |= plt_index * RELOC_SIZE (htab);
9648
0
    if (i == 2 || i == 5)
9649
0
      bfd_put_32 (output_bfd, val, ptr);
9650
0
    else
9651
0
      put_arm_insn (htab, output_bfd, val, ptr);
9652
0
  }
9653
0
    }
9654
0
  else if (htab->root.target_os == is_vxworks)
9655
0
    {
9656
0
      unsigned int i;
9657
0
      bfd_vma val;
9658
9659
0
      for (i = 0; i != htab->plt_entry_size / 4; i++, ptr += 4)
9660
0
  {
9661
0
    val = elf32_arm_vxworks_exec_plt_entry[i];
9662
0
    if (i == 2)
9663
0
      val |= got_address;
9664
0
    if (i == 4)
9665
0
      val |= 0xffffff & -((root_plt->offset + i * 4 + 8) >> 2);
9666
0
    if (i == 5)
9667
0
      val |= plt_index * RELOC_SIZE (htab);
9668
0
    if (i == 2 || i == 5)
9669
0
      bfd_put_32 (output_bfd, val, ptr);
9670
0
    else
9671
0
      put_arm_insn (htab, output_bfd, val, ptr);
9672
0
  }
9673
9674
0
      loc = (htab->srelplt2->contents
9675
0
       + (plt_index * 2 + 1) * RELOC_SIZE (htab));
9676
9677
      /* Create the .rela.plt.unloaded R_ARM_ABS32 relocation
9678
   referencing the GOT for this PLT entry.  */
9679
0
      rel.r_offset = plt_address + 8;
9680
0
      rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
9681
0
      rel.r_addend = got_offset;
9682
0
      SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9683
0
      loc += RELOC_SIZE (htab);
9684
9685
      /* Create the R_ARM_ABS32 relocation referencing the
9686
   beginning of the PLT for this GOT entry.  */
9687
0
      rel.r_offset = got_address;
9688
0
      rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
9689
0
      rel.r_addend = 0;
9690
0
      SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9691
0
    }
9692
0
  else if (htab->fdpic_p)
9693
0
    {
9694
0
      const bfd_vma *plt_entry = using_thumb_only (htab)
9695
0
  ? elf32_arm_fdpic_thumb_plt_entry
9696
0
  : elf32_arm_fdpic_plt_entry;
9697
9698
      /* Fill-up Thumb stub if needed.  */
9699
0
      if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9700
0
  {
9701
0
    put_thumb_insn (htab, output_bfd,
9702
0
        elf32_arm_plt_thumb_stub[0], ptr - 4);
9703
0
    put_thumb_insn (htab, output_bfd,
9704
0
        elf32_arm_plt_thumb_stub[1], ptr - 2);
9705
0
  }
9706
      /* As we are using 32 bit instructions even for the Thumb
9707
   version, we have to use 'put_arm_insn' instead of
9708
   'put_thumb_insn'.  */
9709
0
      put_arm_insn (htab, output_bfd, plt_entry[0], ptr + 0);
9710
0
      put_arm_insn (htab, output_bfd, plt_entry[1], ptr + 4);
9711
0
      put_arm_insn (htab, output_bfd, plt_entry[2], ptr + 8);
9712
0
      put_arm_insn (htab, output_bfd, plt_entry[3], ptr + 12);
9713
0
      bfd_put_32 (output_bfd, got_offset, ptr + 16);
9714
9715
0
      if (!(info->flags & DF_BIND_NOW))
9716
0
  {
9717
    /* funcdesc_value_reloc_offset.  */
9718
0
    bfd_put_32 (output_bfd,
9719
0
          htab->root.srelplt->reloc_count * RELOC_SIZE (htab),
9720
0
          ptr + 20);
9721
0
    put_arm_insn (htab, output_bfd, plt_entry[6], ptr + 24);
9722
0
    put_arm_insn (htab, output_bfd, plt_entry[7], ptr + 28);
9723
0
    put_arm_insn (htab, output_bfd, plt_entry[8], ptr + 32);
9724
0
    put_arm_insn (htab, output_bfd, plt_entry[9], ptr + 36);
9725
0
  }
9726
0
    }
9727
0
  else if (using_thumb_only (htab))
9728
0
    {
9729
      /* PR ld/16017: Generate thumb only PLT entries.  */
9730
0
      if (!using_thumb2 (htab))
9731
0
  {
9732
    /* FIXME: We ought to be able to generate thumb-1 PLT
9733
       instructions...  */
9734
0
    _bfd_error_handler (_("%pB: warning: thumb-1 mode PLT generation not currently supported"),
9735
0
            output_bfd);
9736
0
    return false;
9737
0
  }
9738
9739
      /* Calculate the displacement between the PLT slot and the entry in
9740
   the GOT.  The 12-byte offset accounts for the value produced by
9741
   adding to pc in the 3rd instruction of the PLT stub.  */
9742
0
      got_displacement = got_address - (plt_address + 12);
9743
9744
      /* As we are using 32 bit instructions we have to use 'put_arm_insn'
9745
   instead of 'put_thumb_insn'.  */
9746
0
      put_arm_insn (htab, output_bfd,
9747
0
        elf32_thumb2_plt_entry[0]
9748
0
        | ((got_displacement & 0x000000ff) << 16)
9749
0
        | ((got_displacement & 0x00000700) << 20)
9750
0
        | ((got_displacement & 0x00000800) >>  1)
9751
0
        | ((got_displacement & 0x0000f000) >> 12),
9752
0
        ptr + 0);
9753
0
      put_arm_insn (htab, output_bfd,
9754
0
        elf32_thumb2_plt_entry[1]
9755
0
        | ((got_displacement & 0x00ff0000)      )
9756
0
        | ((got_displacement & 0x07000000) <<  4)
9757
0
        | ((got_displacement & 0x08000000) >> 17)
9758
0
        | ((got_displacement & 0xf0000000) >> 28),
9759
0
        ptr + 4);
9760
0
      put_arm_insn (htab, output_bfd,
9761
0
        elf32_thumb2_plt_entry[2],
9762
0
        ptr + 8);
9763
0
      put_arm_insn (htab, output_bfd,
9764
0
        elf32_thumb2_plt_entry[3],
9765
0
        ptr + 12);
9766
0
    }
9767
0
  else
9768
0
    {
9769
      /* Calculate the displacement between the PLT slot and the
9770
   entry in the GOT.  The eight-byte offset accounts for the
9771
   value produced by adding to pc in the first instruction
9772
   of the PLT stub.  */
9773
0
      got_displacement = got_address - (plt_address + 8);
9774
9775
0
      if (elf32_arm_plt_needs_thumb_stub_p (info, arm_plt))
9776
0
  {
9777
0
    put_thumb_insn (htab, output_bfd,
9778
0
        elf32_arm_plt_thumb_stub[0], ptr - 4);
9779
0
    put_thumb_insn (htab, output_bfd,
9780
0
        elf32_arm_plt_thumb_stub[1], ptr - 2);
9781
0
  }
9782
9783
0
      if (!elf32_arm_use_long_plt_entry)
9784
0
  {
9785
0
    BFD_ASSERT ((got_displacement & 0xf0000000) == 0);
9786
9787
0
    put_arm_insn (htab, output_bfd,
9788
0
      elf32_arm_plt_entry_short[0]
9789
0
      | ((got_displacement & 0x0ff00000) >> 20),
9790
0
      ptr + 0);
9791
0
    put_arm_insn (htab, output_bfd,
9792
0
      elf32_arm_plt_entry_short[1]
9793
0
      | ((got_displacement & 0x000ff000) >> 12),
9794
0
      ptr+ 4);
9795
0
    put_arm_insn (htab, output_bfd,
9796
0
      elf32_arm_plt_entry_short[2]
9797
0
      | (got_displacement & 0x00000fff),
9798
0
      ptr + 8);
9799
#ifdef FOUR_WORD_PLT
9800
    bfd_put_32 (output_bfd, elf32_arm_plt_entry_short[3], ptr + 12);
9801
#endif
9802
0
  }
9803
0
      else
9804
0
  {
9805
0
    put_arm_insn (htab, output_bfd,
9806
0
      elf32_arm_plt_entry_long[0]
9807
0
      | ((got_displacement & 0xf0000000) >> 28),
9808
0
      ptr + 0);
9809
0
    put_arm_insn (htab, output_bfd,
9810
0
      elf32_arm_plt_entry_long[1]
9811
0
      | ((got_displacement & 0x0ff00000) >> 20),
9812
0
      ptr + 4);
9813
0
    put_arm_insn (htab, output_bfd,
9814
0
      elf32_arm_plt_entry_long[2]
9815
0
      | ((got_displacement & 0x000ff000) >> 12),
9816
0
      ptr+ 8);
9817
0
    put_arm_insn (htab, output_bfd,
9818
0
      elf32_arm_plt_entry_long[3]
9819
0
      | (got_displacement & 0x00000fff),
9820
0
      ptr + 12);
9821
0
  }
9822
0
    }
9823
9824
  /* Fill in the entry in the .rel(a).(i)plt section.  */
9825
0
  rel.r_offset = got_address;
9826
0
  rel.r_addend = 0;
9827
0
  if (dynindx == -1)
9828
0
    {
9829
      /* .igot.plt entries use IRELATIVE relocations against SYM_VALUE.
9830
   The dynamic linker or static executable then calls SYM_VALUE
9831
   to determine the correct run-time value of the .igot.plt entry.  */
9832
0
      rel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
9833
0
      initial_got_entry = sym_value;
9834
0
    }
9835
0
  else
9836
0
    {
9837
      /* For FDPIC we will have to resolve a R_ARM_FUNCDESC_VALUE
9838
   used by PLT entry.  */
9839
0
      if (htab->fdpic_p)
9840
0
  {
9841
0
    rel.r_info = ELF32_R_INFO (dynindx, R_ARM_FUNCDESC_VALUE);
9842
0
    initial_got_entry = 0;
9843
0
  }
9844
0
      else
9845
0
  {
9846
0
    rel.r_info = ELF32_R_INFO (dynindx, R_ARM_JUMP_SLOT);
9847
0
    initial_got_entry = (splt->output_section->vma
9848
0
             + splt->output_offset);
9849
9850
    /* PR ld/16017
9851
       When thumb only we need to set the LSB for any address that
9852
       will be used with an interworking branch instruction.  */
9853
0
    if (using_thumb_only (htab))
9854
0
      initial_got_entry |= 1;
9855
0
  }
9856
0
    }
9857
9858
  /* Fill in the entry in the global offset table.  */
9859
0
  bfd_put_32 (output_bfd, initial_got_entry,
9860
0
        sgot->contents + got_offset);
9861
9862
0
  if (htab->fdpic_p && !(info->flags & DF_BIND_NOW))
9863
0
    {
9864
      /* Setup initial funcdesc value.  */
9865
      /* FIXME: we don't support lazy binding because there is a
9866
   race condition between both words getting written and
9867
   some other thread attempting to read them. The ARM
9868
   architecture does not have an atomic 64 bit load/store
9869
   instruction that could be used to prevent it; it is
9870
   recommended that threaded FDPIC applications run with the
9871
   LD_BIND_NOW environment variable set.  */
9872
0
      bfd_put_32 (output_bfd, plt_address + 0x18,
9873
0
      sgot->contents + got_offset);
9874
0
      bfd_put_32 (output_bfd, -1 /*TODO*/,
9875
0
      sgot->contents + got_offset + 4);
9876
0
    }
9877
9878
0
  if (dynindx == -1)
9879
0
    elf32_arm_add_dynreloc (output_bfd, info, srel, &rel);
9880
0
  else
9881
0
    {
9882
0
      if (htab->fdpic_p)
9883
0
  {
9884
    /* For FDPIC we put PLT relocationss into .rel.got when not
9885
       lazy binding otherwise we put them in .rel.plt.  For now,
9886
       we don't support lazy binding so put it in .rel.got.  */
9887
0
    if (info->flags & DF_BIND_NOW)
9888
0
      elf32_arm_add_dynreloc (output_bfd, info, htab->root.srelgot, &rel);
9889
0
    else
9890
0
      elf32_arm_add_dynreloc (output_bfd, info, htab->root.srelplt, &rel);
9891
0
  }
9892
0
      else
9893
0
  {
9894
0
    loc = srel->contents + plt_index * RELOC_SIZE (htab);
9895
0
    SWAP_RELOC_OUT (htab) (output_bfd, &rel, loc);
9896
0
  }
9897
0
    }
9898
9899
0
  return true;
9900
0
}
9901
9902
/* Some relocations map to different relocations depending on the
9903
   target.  Return the real relocation.  */
9904
9905
static int
9906
arm_real_reloc_type (struct elf32_arm_link_hash_table * globals,
9907
         int r_type)
9908
0
{
9909
0
  switch (r_type)
9910
0
    {
9911
0
    case R_ARM_TARGET1:
9912
0
      if (globals->target1_is_rel)
9913
0
  return R_ARM_REL32;
9914
0
      else
9915
0
  return R_ARM_ABS32;
9916
9917
0
    case R_ARM_TARGET2:
9918
0
      return globals->target2_reloc;
9919
9920
0
    default:
9921
0
      return r_type;
9922
0
    }
9923
0
}
9924
9925
/* Return the base VMA address which should be subtracted from real addresses
9926
   when resolving @dtpoff relocation.
9927
   This is PT_TLS segment p_vaddr.  */
9928
9929
static bfd_vma
9930
dtpoff_base (struct bfd_link_info *info)
9931
0
{
9932
  /* If tls_sec is NULL, we should have signalled an error already.  */
9933
0
  if (elf_hash_table (info)->tls_sec == NULL)
9934
0
    return 0;
9935
0
  return elf_hash_table (info)->tls_sec->vma;
9936
0
}
9937
9938
/* Return the relocation value for @tpoff relocation
9939
   if STT_TLS virtual address is ADDRESS.  */
9940
9941
static bfd_vma
9942
tpoff (struct bfd_link_info *info, bfd_vma address)
9943
0
{
9944
0
  struct elf_link_hash_table *htab = elf_hash_table (info);
9945
0
  bfd_vma base;
9946
9947
  /* If tls_sec is NULL, we should have signalled an error already.  */
9948
0
  if (htab->tls_sec == NULL)
9949
0
    return 0;
9950
0
  base = align_power ((bfd_vma) TCB_SIZE, htab->tls_sec->alignment_power);
9951
0
  return address - htab->tls_sec->vma + base;
9952
0
}
9953
9954
/* Perform an R_ARM_ABS12 relocation on the field pointed to by DATA.
9955
   VALUE is the relocation value.  */
9956
9957
static bfd_reloc_status_type
9958
elf32_arm_abs12_reloc (bfd *abfd, void *data, bfd_vma value)
9959
0
{
9960
0
  if (value > 0xfff)
9961
0
    return bfd_reloc_overflow;
9962
9963
0
  value |= bfd_get_32 (abfd, data) & 0xfffff000;
9964
0
  bfd_put_32 (abfd, value, data);
9965
0
  return bfd_reloc_ok;
9966
0
}
9967
9968
/* Handle TLS relaxations.  Relaxing is possible for symbols that use
9969
   R_ARM_GOTDESC, R_ARM_{,THM_}TLS_CALL or
9970
   R_ARM_{,THM_}TLS_DESCSEQ relocations, during a static link.
9971
9972
   Return bfd_reloc_ok if we're done, bfd_reloc_continue if the caller
9973
   is to then call final_link_relocate.  Return other values in the
9974
   case of error.
9975
9976
   FIXME:When --emit-relocs is in effect, we'll emit relocs describing
9977
   the pre-relaxed code.  It would be nice if the relocs were updated
9978
   to match the optimization.   */
9979
9980
static bfd_reloc_status_type
9981
elf32_arm_tls_relax (struct elf32_arm_link_hash_table *globals,
9982
         bfd *input_bfd, asection *input_sec, bfd_byte *contents,
9983
         Elf_Internal_Rela *rel, unsigned long is_local)
9984
0
{
9985
0
  unsigned long insn;
9986
9987
0
  switch (ELF32_R_TYPE (rel->r_info))
9988
0
    {
9989
0
    default:
9990
0
      return bfd_reloc_notsupported;
9991
9992
0
    case R_ARM_TLS_GOTDESC:
9993
0
      if (is_local)
9994
0
  insn = 0;
9995
0
      else
9996
0
  {
9997
0
    insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
9998
0
    if (insn & 1)
9999
0
      insn -= 5; /* THUMB */
10000
0
    else
10001
0
      insn -= 8; /* ARM */
10002
0
  }
10003
0
      bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10004
0
      return bfd_reloc_continue;
10005
10006
0
    case R_ARM_THM_TLS_DESCSEQ:
10007
      /* Thumb insn.  */
10008
0
      insn = bfd_get_16 (input_bfd, contents + rel->r_offset);
10009
0
      if ((insn & 0xff78) == 0x4478)   /* add rx, pc */
10010
0
  {
10011
0
    if (is_local)
10012
      /* nop */
10013
0
      bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10014
0
  }
10015
0
      else if ((insn & 0xffc0) == 0x6840)  /* ldr rx,[ry,#4] */
10016
0
  {
10017
0
    if (is_local)
10018
      /* nop */
10019
0
      bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10020
0
    else
10021
      /* ldr rx,[ry] */
10022
0
      bfd_put_16 (input_bfd, insn & 0xf83f, contents + rel->r_offset);
10023
0
  }
10024
0
      else if ((insn & 0xff87) == 0x4780)  /* blx rx */
10025
0
  {
10026
0
    if (is_local)
10027
      /* nop */
10028
0
      bfd_put_16 (input_bfd, 0x46c0, contents + rel->r_offset);
10029
0
    else
10030
      /* mov r0, rx */
10031
0
      bfd_put_16 (input_bfd, 0x4600 | (insn & 0x78),
10032
0
      contents + rel->r_offset);
10033
0
  }
10034
0
      else
10035
0
  {
10036
0
    if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
10037
      /* It's a 32 bit instruction, fetch the rest of it for
10038
         error generation.  */
10039
0
      insn = (insn << 16)
10040
0
        | bfd_get_16 (input_bfd, contents + rel->r_offset + 2);
10041
0
    _bfd_error_handler
10042
      /* xgettext:c-format */
10043
0
      (_("%pB(%pA+%#" PRIx64 "): "
10044
0
         "unexpected %s instruction '%#lx' in TLS trampoline"),
10045
0
       input_bfd, input_sec, (uint64_t) rel->r_offset,
10046
0
       "Thumb", insn);
10047
0
    return bfd_reloc_notsupported;
10048
0
  }
10049
0
      break;
10050
10051
0
    case R_ARM_TLS_DESCSEQ:
10052
      /* arm insn.  */
10053
0
      insn = bfd_get_32 (input_bfd, contents + rel->r_offset);
10054
0
      if ((insn & 0xffff0ff0) == 0xe08f0000) /* add rx,pc,ry */
10055
0
  {
10056
0
    if (is_local)
10057
      /* mov rx, ry */
10058
0
      bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xffff),
10059
0
      contents + rel->r_offset);
10060
0
  }
10061
0
      else if ((insn & 0xfff00fff) == 0xe5900004) /* ldr rx,[ry,#4]*/
10062
0
  {
10063
0
    if (is_local)
10064
      /* nop */
10065
0
      bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10066
0
    else
10067
      /* ldr rx,[ry] */
10068
0
      bfd_put_32 (input_bfd, insn & 0xfffff000,
10069
0
      contents + rel->r_offset);
10070
0
  }
10071
0
      else if ((insn & 0xfffffff0) == 0xe12fff30) /* blx rx */
10072
0
  {
10073
0
    if (is_local)
10074
      /* nop */
10075
0
      bfd_put_32 (input_bfd, 0xe1a00000, contents + rel->r_offset);
10076
0
    else
10077
      /* mov r0, rx */
10078
0
      bfd_put_32 (input_bfd, 0xe1a00000 | (insn & 0xf),
10079
0
      contents + rel->r_offset);
10080
0
  }
10081
0
      else
10082
0
  {
10083
0
    _bfd_error_handler
10084
      /* xgettext:c-format */
10085
0
      (_("%pB(%pA+%#" PRIx64 "): "
10086
0
         "unexpected %s instruction '%#lx' in TLS trampoline"),
10087
0
       input_bfd, input_sec, (uint64_t) rel->r_offset,
10088
0
       "ARM", insn);
10089
0
    return bfd_reloc_notsupported;
10090
0
  }
10091
0
      break;
10092
10093
0
    case R_ARM_TLS_CALL:
10094
      /* GD->IE relaxation, turn the instruction into 'nop' or
10095
   'ldr r0, [pc,r0]'  */
10096
0
      insn = is_local ? 0xe1a00000 : 0xe79f0000;
10097
0
      bfd_put_32 (input_bfd, insn, contents + rel->r_offset);
10098
0
      break;
10099
10100
0
    case R_ARM_THM_TLS_CALL:
10101
      /* GD->IE relaxation.  */
10102
0
      if (!is_local)
10103
  /* add r0,pc; ldr r0, [r0]  */
10104
0
  insn = 0x44786800;
10105
0
      else if (using_thumb2 (globals))
10106
  /* nop.w */
10107
0
  insn = 0xf3af8000;
10108
0
      else
10109
  /* nop; nop */
10110
0
  insn = 0xbf00bf00;
10111
10112
0
      bfd_put_16 (input_bfd, insn >> 16, contents + rel->r_offset);
10113
0
      bfd_put_16 (input_bfd, insn & 0xffff, contents + rel->r_offset + 2);
10114
0
      break;
10115
0
    }
10116
0
  return bfd_reloc_ok;
10117
0
}
10118
10119
/* For a given value of n, calculate the value of G_n as required to
10120
   deal with group relocations.  We return it in the form of an
10121
   encoded constant-and-rotation, together with the final residual.  If n is
10122
   specified as less than zero, then final_residual is filled with the
10123
   input value and no further action is performed.  */
10124
10125
static bfd_vma
10126
calculate_group_reloc_mask (bfd_vma value, int n, bfd_vma *final_residual)
10127
0
{
10128
0
  int current_n;
10129
0
  bfd_vma g_n;
10130
0
  bfd_vma encoded_g_n = 0;
10131
0
  bfd_vma residual = value; /* Also known as Y_n.  */
10132
10133
0
  for (current_n = 0; current_n <= n; current_n++)
10134
0
    {
10135
0
      int shift;
10136
10137
      /* Calculate which part of the value to mask.  */
10138
0
      if (residual == 0)
10139
0
  shift = 0;
10140
0
      else
10141
0
  {
10142
0
    int msb;
10143
10144
    /* Determine the most significant bit in the residual and
10145
       align the resulting value to a 2-bit boundary.  */
10146
0
    for (msb = 30; msb >= 0; msb -= 2)
10147
0
      if (residual & (3u << msb))
10148
0
        break;
10149
10150
    /* The desired shift is now (msb - 6), or zero, whichever
10151
       is the greater.  */
10152
0
    shift = msb - 6;
10153
0
    if (shift < 0)
10154
0
      shift = 0;
10155
0
  }
10156
10157
      /* Calculate g_n in 32-bit as well as encoded constant+rotation form.  */
10158
0
      g_n = residual & (0xff << shift);
10159
0
      encoded_g_n = (g_n >> shift)
10160
0
        | ((g_n <= 0xff ? 0 : (32 - shift) / 2) << 8);
10161
10162
      /* Calculate the residual for the next time around.  */
10163
0
      residual &= ~g_n;
10164
0
    }
10165
10166
0
  *final_residual = residual;
10167
10168
0
  return encoded_g_n;
10169
0
}
10170
10171
/* Given an ARM instruction, determine whether it is an ADD or a SUB.
10172
   Returns 1 if it is an ADD, -1 if it is a SUB, and 0 otherwise.  */
10173
10174
static int
10175
identify_add_or_sub (bfd_vma insn)
10176
0
{
10177
0
  int opcode = insn & 0x1e00000;
10178
10179
0
  if (opcode == 1 << 23) /* ADD */
10180
0
    return 1;
10181
10182
0
  if (opcode == 1 << 22) /* SUB */
10183
0
    return -1;
10184
10185
0
  return 0;
10186
0
}
10187
10188
/* Perform a relocation as part of a final link.  */
10189
10190
static bfd_reloc_status_type
10191
elf32_arm_final_link_relocate (reloc_howto_type *     howto,
10192
             bfd *          input_bfd,
10193
             bfd *          output_bfd,
10194
             asection *       input_section,
10195
             bfd_byte *       contents,
10196
             Elf_Internal_Rela *      rel,
10197
             bfd_vma          value,
10198
             struct bfd_link_info *     info,
10199
             asection *       sym_sec,
10200
             const char *       sym_name,
10201
             unsigned char        st_type,
10202
             enum arm_st_branch_type      branch_type,
10203
             struct elf_link_hash_entry * h,
10204
             bool *         unresolved_reloc_p,
10205
             char **          error_message)
10206
0
{
10207
0
  unsigned long     r_type = howto->type;
10208
0
  unsigned long     r_symndx;
10209
0
  bfd_byte *      hit_data = contents + rel->r_offset;
10210
0
  bfd_vma *     local_got_offsets;
10211
0
  bfd_vma *     local_tlsdesc_gotents;
10212
0
  asection *      sgot;
10213
0
  asection *      splt;
10214
0
  asection *      sreloc;
10215
0
  asection *      srelgot;
10216
0
  bfd_vma     addend;
10217
0
  bfd_signed_vma    signed_addend;
10218
0
  unsigned char     dynreloc_st_type;
10219
0
  bfd_vma     dynreloc_value;
10220
0
  struct elf32_arm_link_hash_table * globals;
10221
0
  struct elf32_arm_link_hash_entry *eh;
10222
0
  union gotplt_union         *root_plt;
10223
0
  struct arm_plt_info        *arm_plt;
10224
0
  bfd_vma     plt_offset;
10225
0
  bfd_vma     gotplt_offset;
10226
0
  bool        has_iplt_entry;
10227
0
  bool        resolved_to_zero;
10228
10229
0
  globals = elf32_arm_hash_table (info);
10230
0
  if (globals == NULL)
10231
0
    return bfd_reloc_notsupported;
10232
10233
0
  BFD_ASSERT (is_arm_elf (input_bfd));
10234
0
  BFD_ASSERT (howto != NULL);
10235
10236
  /* Some relocation types map to different relocations depending on the
10237
     target.  We pick the right one here.  */
10238
0
  r_type = arm_real_reloc_type (globals, r_type);
10239
10240
  /* It is possible to have linker relaxations on some TLS access
10241
     models.  Update our information here.  */
10242
0
  r_type = elf32_arm_tls_transition (info, r_type, h);
10243
10244
0
  if (r_type != howto->type)
10245
0
    howto = elf32_arm_howto_from_type (r_type);
10246
10247
0
  eh = (struct elf32_arm_link_hash_entry *) h;
10248
0
  sgot = globals->root.sgot;
10249
0
  local_got_offsets = elf_local_got_offsets (input_bfd);
10250
0
  local_tlsdesc_gotents = elf32_arm_local_tlsdesc_gotent (input_bfd);
10251
10252
0
  if (globals->root.dynamic_sections_created)
10253
0
    srelgot = globals->root.srelgot;
10254
0
  else
10255
0
    srelgot = NULL;
10256
10257
0
  r_symndx = ELF32_R_SYM (rel->r_info);
10258
10259
0
  if (globals->use_rel)
10260
0
    {
10261
0
      bfd_vma sign;
10262
10263
0
      switch (bfd_get_reloc_size (howto))
10264
0
  {
10265
0
  case 1: addend = bfd_get_8 (input_bfd, hit_data); break;
10266
0
  case 2: addend = bfd_get_16 (input_bfd, hit_data); break;
10267
0
  case 4: addend = bfd_get_32 (input_bfd, hit_data); break;
10268
0
  default: addend = 0; break;
10269
0
  }
10270
      /* Note: the addend and signed_addend calculated here are
10271
   incorrect for any split field.  */
10272
0
      addend &= howto->src_mask;
10273
0
      sign = howto->src_mask & ~(howto->src_mask >> 1);
10274
0
      signed_addend = (addend ^ sign) - sign;
10275
0
      signed_addend = (bfd_vma) signed_addend << howto->rightshift;
10276
0
      addend <<= howto->rightshift;
10277
0
    }
10278
0
  else
10279
0
    addend = signed_addend = rel->r_addend;
10280
10281
  /* Record the symbol information that should be used in dynamic
10282
     relocations.  */
10283
0
  dynreloc_st_type = st_type;
10284
0
  dynreloc_value = value;
10285
0
  if (branch_type == ST_BRANCH_TO_THUMB)
10286
0
    dynreloc_value |= 1;
10287
10288
  /* Find out whether the symbol has a PLT.  Set ST_VALUE, BRANCH_TYPE and
10289
     VALUE appropriately for relocations that we resolve at link time.  */
10290
0
  has_iplt_entry = false;
10291
0
  if (elf32_arm_get_plt_info (input_bfd, globals, eh, r_symndx, &root_plt,
10292
0
            &arm_plt)
10293
0
      && root_plt->offset != (bfd_vma) -1)
10294
0
    {
10295
0
      plt_offset = root_plt->offset;
10296
0
      gotplt_offset = arm_plt->got_offset;
10297
10298
0
      if (h == NULL || eh->is_iplt)
10299
0
  {
10300
0
    has_iplt_entry = true;
10301
0
    splt = globals->root.iplt;
10302
10303
    /* Populate .iplt entries here, because not all of them will
10304
       be seen by finish_dynamic_symbol.  The lower bit is set if
10305
       we have already populated the entry.  */
10306
0
    if (plt_offset & 1)
10307
0
      plt_offset--;
10308
0
    else
10309
0
      {
10310
0
        if (elf32_arm_populate_plt_entry (output_bfd, info, root_plt, arm_plt,
10311
0
            -1, dynreloc_value))
10312
0
    root_plt->offset |= 1;
10313
0
        else
10314
0
    return bfd_reloc_notsupported;
10315
0
      }
10316
10317
    /* Static relocations always resolve to the .iplt entry.  */
10318
0
    st_type = STT_FUNC;
10319
0
    value = (splt->output_section->vma
10320
0
       + splt->output_offset
10321
0
       + plt_offset);
10322
0
    branch_type = ST_BRANCH_TO_ARM;
10323
10324
    /* If there are non-call relocations that resolve to the .iplt
10325
       entry, then all dynamic ones must too.  */
10326
0
    if (arm_plt->noncall_refcount != 0)
10327
0
      {
10328
0
        dynreloc_st_type = st_type;
10329
0
        dynreloc_value = value;
10330
0
      }
10331
0
  }
10332
0
      else
10333
  /* We populate the .plt entry in finish_dynamic_symbol.  */
10334
0
  splt = globals->root.splt;
10335
0
    }
10336
0
  else
10337
0
    {
10338
0
      splt = NULL;
10339
0
      plt_offset = (bfd_vma) -1;
10340
0
      gotplt_offset = (bfd_vma) -1;
10341
0
    }
10342
10343
  /* ST_BRANCH_TO_ARM is nonsense to thumb-only targets when we are
10344
     resolving a function call relocation.  We want to inform the user
10345
     that something is wrong.  */
10346
0
  if (using_thumb_only (globals)
10347
0
      && (r_type == R_ARM_THM_CALL
10348
0
    || r_type == R_ARM_THM_JUMP24)
10349
0
      && branch_type == ST_BRANCH_TO_ARM
10350
      /* Calls through a PLT are special: the assembly source code
10351
   cannot be annotated with '.type foo(PLT), %function', and
10352
   they handled specifically below anyway. */
10353
0
      && splt == NULL)
10354
0
    {
10355
0
      if (sym_sec == bfd_abs_section_ptr)
10356
0
  {
10357
  /* As an exception, assume that absolute symbols are of the
10358
     right kind (Thumb).  They are presumably defined in the
10359
     linker script, where it is not possible to declare them as
10360
     Thumb (and thus are seen as Arm mode). Inform the user with
10361
     a warning, though. */
10362
0
    branch_type = ST_BRANCH_TO_THUMB;
10363
10364
0
    if (sym_sec->owner)
10365
0
      _bfd_error_handler
10366
0
        (_("warning: %pB(%s): Forcing bramch to absolute symbol in Thumb mode (Thumb-only CPU)"
10367
0
     " in %pB"),
10368
0
         sym_sec->owner, sym_name, input_bfd);
10369
0
    else
10370
0
      _bfd_error_handler
10371
0
        (_("warning: (%s): Forcing branch to absolute symbol in Thumb mode (Thumb-only CPU)"
10372
0
     " in %pB"),
10373
0
         sym_name, input_bfd);
10374
0
  }
10375
0
      else
10376
  /* Otherwise do not silently build a stub, and let the users
10377
     know they have to fix their code.  Indeed, we could decide
10378
     to insert a stub involving Arm code and/or BLX, leading to
10379
     a run-time crash.  */
10380
0
  branch_type = ST_BRANCH_UNKNOWN;
10381
0
    }
10382
10383
  /* Fail early if branch_type is ST_BRANCH_UNKNOWN and we target a
10384
     Thumb-only CPU.  We could emit a warning on Arm-capable targets
10385
     too, but that would be too verbose (a lot of legacy code does not
10386
     use the .type foo, %function directive).  */
10387
0
  if (using_thumb_only (globals)
10388
0
      && (r_type == R_ARM_THM_CALL
10389
0
    || r_type == R_ARM_THM_JUMP24)
10390
0
      && branch_type == ST_BRANCH_UNKNOWN
10391
      /* Exception to the rule above: a branch to an undefined weak
10392
   symbol is turned into a jump to the next instruction unless a
10393
   PLT entry will be created (see below).  */
10394
0
      && !(h && h->root.type == bfd_link_hash_undefweak
10395
0
     && plt_offset == (bfd_vma) -1))
10396
0
    {
10397
0
      if (sym_sec != NULL
10398
0
    && sym_sec->owner != NULL)
10399
0
  _bfd_error_handler
10400
0
    (_("%pB(%s): Unknown destination type (ARM/Thumb) in %pB"),
10401
0
     sym_sec->owner, sym_name, input_bfd);
10402
0
      else
10403
0
  _bfd_error_handler
10404
0
    (_("(%s): Unknown destination type (ARM/Thumb) in %pB"),
10405
0
     sym_name, input_bfd);
10406
10407
0
      return bfd_reloc_notsupported;
10408
0
    }
10409
10410
0
  resolved_to_zero = (h != NULL
10411
0
          && UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
10412
10413
0
  switch (r_type)
10414
0
    {
10415
0
    case R_ARM_NONE:
10416
      /* We don't need to find a value for this symbol.  It's just a
10417
   marker.  */
10418
0
      *unresolved_reloc_p = false;
10419
0
      return bfd_reloc_ok;
10420
10421
0
    case R_ARM_ABS12:
10422
0
      if (globals->root.target_os != is_vxworks)
10423
0
  return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
10424
      /* Fall through.  */
10425
10426
0
    case R_ARM_PC24:
10427
0
    case R_ARM_ABS32:
10428
0
    case R_ARM_ABS32_NOI:
10429
0
    case R_ARM_REL32:
10430
0
    case R_ARM_REL32_NOI:
10431
0
    case R_ARM_CALL:
10432
0
    case R_ARM_JUMP24:
10433
0
    case R_ARM_XPC25:
10434
0
    case R_ARM_PREL31:
10435
0
    case R_ARM_PLT32:
10436
      /* Handle relocations which should use the PLT entry.  ABS32/REL32
10437
   will use the symbol's value, which may point to a PLT entry, but we
10438
   don't need to handle that here.  If we created a PLT entry, all
10439
   branches in this object should go to it, except if the PLT is too
10440
   far away, in which case a long branch stub should be inserted.  */
10441
0
      if ((r_type != R_ARM_ABS32 && r_type != R_ARM_REL32
10442
0
     && r_type != R_ARM_ABS32_NOI && r_type != R_ARM_REL32_NOI
10443
0
     && r_type != R_ARM_CALL
10444
0
     && r_type != R_ARM_JUMP24
10445
0
     && r_type != R_ARM_PLT32)
10446
0
    && plt_offset != (bfd_vma) -1)
10447
0
  {
10448
    /* If we've created a .plt section, and assigned a PLT entry
10449
       to this function, it must either be a STT_GNU_IFUNC reference
10450
       or not be known to bind locally.  In other cases, we should
10451
       have cleared the PLT entry by now.  */
10452
0
    BFD_ASSERT (has_iplt_entry || !SYMBOL_CALLS_LOCAL (info, h));
10453
10454
0
    value = (splt->output_section->vma
10455
0
       + splt->output_offset
10456
0
       + plt_offset);
10457
0
    *unresolved_reloc_p = false;
10458
0
    return _bfd_final_link_relocate (howto, input_bfd, input_section,
10459
0
             contents, rel->r_offset, value,
10460
0
             rel->r_addend);
10461
0
  }
10462
10463
      /* When generating a shared library or PIE, these relocations
10464
   are copied into the output file to be resolved at run time.  */
10465
0
      if ((bfd_link_pic (info)
10466
0
     || globals->fdpic_p)
10467
0
    && (input_section->flags & SEC_ALLOC)
10468
0
    && !(globals->root.target_os == is_vxworks
10469
0
         && strcmp (input_section->output_section->name,
10470
0
        ".tls_vars") == 0)
10471
0
    && ((r_type != R_ARM_REL32 && r_type != R_ARM_REL32_NOI)
10472
0
        || !SYMBOL_CALLS_LOCAL (info, h))
10473
0
    && !(input_bfd == globals->stub_bfd
10474
0
         && strstr (input_section->name, STUB_SUFFIX))
10475
0
    && (h == NULL
10476
0
        || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
10477
0
      && !resolved_to_zero)
10478
0
        || h->root.type != bfd_link_hash_undefweak)
10479
0
    && r_type != R_ARM_PC24
10480
0
    && r_type != R_ARM_CALL
10481
0
    && r_type != R_ARM_JUMP24
10482
0
    && r_type != R_ARM_PREL31
10483
0
    && r_type != R_ARM_PLT32)
10484
0
  {
10485
0
    Elf_Internal_Rela outrel;
10486
0
    bool skip, relocate;
10487
0
    int isrofixup = 0;
10488
10489
0
    if ((r_type == R_ARM_REL32 || r_type == R_ARM_REL32_NOI)
10490
0
        && !h->def_regular)
10491
0
      {
10492
0
        char *v = _("shared object");
10493
10494
0
        if (bfd_link_executable (info))
10495
0
    v = _("PIE executable");
10496
10497
0
        _bfd_error_handler
10498
0
    (_("%pB: relocation %s against external or undefined symbol `%s'"
10499
0
       " can not be used when making a %s; recompile with -fPIC"), input_bfd,
10500
0
     elf32_arm_howto_table_1[r_type].name, h->root.root.string, v);
10501
0
        return bfd_reloc_notsupported;
10502
0
      }
10503
10504
0
    *unresolved_reloc_p = false;
10505
0
    skip = false;
10506
0
    relocate = false;
10507
10508
0
    outrel.r_addend = addend;
10509
0
    outrel.r_offset =
10510
0
      _bfd_elf_section_offset (output_bfd, info, input_section,
10511
0
             rel->r_offset);
10512
0
    if (outrel.r_offset == (bfd_vma) -1)
10513
0
      skip = true;
10514
0
    else if (outrel.r_offset == (bfd_vma) -2)
10515
0
      skip = true, relocate = true;
10516
0
    outrel.r_offset += (input_section->output_section->vma
10517
0
            + input_section->output_offset);
10518
10519
0
    if (skip)
10520
0
      memset (&outrel, 0, sizeof outrel);
10521
0
    else if (h != NULL
10522
0
       && h->dynindx != -1
10523
0
       && (!bfd_link_pic (info)
10524
0
           || !(bfd_link_pie (info)
10525
0
          || SYMBOLIC_BIND (info, h))
10526
0
           || !h->def_regular))
10527
0
      outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
10528
0
    else
10529
0
      {
10530
0
        int symbol;
10531
10532
        /* This symbol is local, or marked to become local.  */
10533
0
        BFD_ASSERT (r_type == R_ARM_ABS32 || r_type == R_ARM_ABS32_NOI
10534
0
        || (globals->fdpic_p && !bfd_link_pic (info)));
10535
        /* On SVR4-ish systems, the dynamic loader cannot
10536
     relocate the text and data segments independently,
10537
     so the symbol does not matter.  */
10538
0
        symbol = 0;
10539
0
        if (dynreloc_st_type == STT_GNU_IFUNC)
10540
    /* We have an STT_GNU_IFUNC symbol that doesn't resolve
10541
       to the .iplt entry.  Instead, every non-call reference
10542
       must use an R_ARM_IRELATIVE relocation to obtain the
10543
       correct run-time address.  */
10544
0
    outrel.r_info = ELF32_R_INFO (symbol, R_ARM_IRELATIVE);
10545
0
        else if (globals->fdpic_p && !bfd_link_pic (info))
10546
0
    isrofixup = 1;
10547
0
        else
10548
0
    outrel.r_info = ELF32_R_INFO (symbol, R_ARM_RELATIVE);
10549
0
        if (globals->use_rel)
10550
0
    relocate = true;
10551
0
        else
10552
0
    outrel.r_addend += dynreloc_value;
10553
0
      }
10554
10555
0
    if (isrofixup)
10556
0
      arm_elf_add_rofixup (output_bfd, globals->srofixup, outrel.r_offset);
10557
0
    else
10558
0
      {
10559
0
        sreloc = elf_section_data (input_section)->sreloc;
10560
0
        if (sreloc == NULL)
10561
0
    return bfd_reloc_notsupported;
10562
0
        elf32_arm_add_dynreloc (output_bfd, info, sreloc, &outrel);
10563
0
      }
10564
10565
    /* If this reloc is against an external symbol, we do not want to
10566
       fiddle with the addend.  Otherwise, we need to include the symbol
10567
       value so that it becomes an addend for the dynamic reloc.  */
10568
0
    if (! relocate)
10569
0
      return bfd_reloc_ok;
10570
10571
0
    return _bfd_final_link_relocate (howto, input_bfd, input_section,
10572
0
             contents, rel->r_offset,
10573
0
             dynreloc_value, (bfd_vma) 0);
10574
0
  }
10575
0
      else switch (r_type)
10576
0
  {
10577
0
  case R_ARM_ABS12:
10578
0
    return elf32_arm_abs12_reloc (input_bfd, hit_data, value + addend);
10579
10580
0
  case R_ARM_XPC25:   /* Arm BLX instruction.  */
10581
0
  case R_ARM_CALL:
10582
0
  case R_ARM_JUMP24:
10583
0
  case R_ARM_PC24:    /* Arm B/BL instruction.  */
10584
0
  case R_ARM_PLT32:
10585
0
    {
10586
0
    struct elf32_arm_stub_hash_entry *stub_entry = NULL;
10587
10588
0
    if (r_type == R_ARM_XPC25)
10589
0
      {
10590
        /* Check for Arm calling Arm function.  */
10591
        /* FIXME: Should we translate the instruction into a BL
10592
     instruction instead ?  */
10593
0
        if (branch_type != ST_BRANCH_TO_THUMB)
10594
0
    _bfd_error_handler
10595
0
      (_("\%pB: warning: %s BLX instruction targets"
10596
0
         " %s function '%s'"),
10597
0
       input_bfd, "ARM",
10598
0
       "ARM", h ? h->root.root.string : "(local)");
10599
0
      }
10600
0
    else if (r_type == R_ARM_PC24)
10601
0
      {
10602
        /* Check for Arm calling Thumb function.  */
10603
0
        if (branch_type == ST_BRANCH_TO_THUMB)
10604
0
    {
10605
0
      if (elf32_arm_to_thumb_stub (info, sym_name, input_bfd,
10606
0
                 output_bfd, input_section,
10607
0
                 hit_data, sym_sec, rel->r_offset,
10608
0
                 signed_addend, value,
10609
0
                 error_message))
10610
0
        return bfd_reloc_ok;
10611
0
      else
10612
0
        return bfd_reloc_dangerous;
10613
0
    }
10614
0
      }
10615
10616
    /* Check if a stub has to be inserted because the
10617
       destination is too far or we are changing mode.  */
10618
0
    if (   r_type == R_ARM_CALL
10619
0
        || r_type == R_ARM_JUMP24
10620
0
        || r_type == R_ARM_PLT32)
10621
0
      {
10622
0
        enum elf32_arm_stub_type stub_type = arm_stub_none;
10623
0
        struct elf32_arm_link_hash_entry *hash;
10624
10625
0
        hash = (struct elf32_arm_link_hash_entry *) h;
10626
0
        stub_type = arm_type_of_stub (info, input_section, rel,
10627
0
              st_type, &branch_type,
10628
0
              hash, value, sym_sec,
10629
0
              input_bfd, sym_name);
10630
10631
0
        if (stub_type != arm_stub_none)
10632
0
    {
10633
      /* The target is out of reach, so redirect the
10634
         branch to the local stub for this function.  */
10635
0
      stub_entry = elf32_arm_get_stub_entry (input_section,
10636
0
               sym_sec, h,
10637
0
               rel, globals,
10638
0
               stub_type);
10639
0
      {
10640
0
        if (stub_entry != NULL)
10641
0
          value = (stub_entry->stub_offset
10642
0
             + stub_entry->stub_sec->output_offset
10643
0
             + stub_entry->stub_sec->output_section->vma);
10644
10645
0
        if (plt_offset != (bfd_vma) -1)
10646
0
          *unresolved_reloc_p = false;
10647
0
      }
10648
0
    }
10649
0
        else
10650
0
    {
10651
      /* If the call goes through a PLT entry, make sure to
10652
         check distance to the right destination address.  */
10653
0
      if (plt_offset != (bfd_vma) -1)
10654
0
        {
10655
0
          value = (splt->output_section->vma
10656
0
             + splt->output_offset
10657
0
             + plt_offset);
10658
0
          *unresolved_reloc_p = false;
10659
          /* The PLT entry is in ARM mode, regardless of the
10660
       target function.  */
10661
0
          branch_type = ST_BRANCH_TO_ARM;
10662
0
        }
10663
0
    }
10664
0
      }
10665
10666
    /* The ARM ELF ABI says that this reloc is computed as: S - P + A
10667
       where:
10668
        S is the address of the symbol in the relocation.
10669
        P is address of the instruction being relocated.
10670
        A is the addend (extracted from the instruction) in bytes.
10671
10672
       S is held in 'value'.
10673
       P is the base address of the section containing the
10674
         instruction plus the offset of the reloc into that
10675
         section, ie:
10676
     (input_section->output_section->vma +
10677
      input_section->output_offset +
10678
      rel->r_offset).
10679
       A is the addend, converted into bytes, ie:
10680
     (signed_addend * 4)
10681
10682
       Note: None of these operations have knowledge of the pipeline
10683
       size of the processor, thus it is up to the assembler to
10684
       encode this information into the addend.  */
10685
0
    value -= (input_section->output_section->vma
10686
0
        + input_section->output_offset);
10687
0
    value -= rel->r_offset;
10688
0
    value += signed_addend;
10689
10690
0
    signed_addend = value;
10691
0
    signed_addend >>= howto->rightshift;
10692
10693
    /* A branch to an undefined weak symbol is turned into a jump to
10694
       the next instruction unless a PLT entry will be created.
10695
       Do the same for local undefined symbols (but not for STN_UNDEF).
10696
       The jump to the next instruction is optimized as a NOP depending
10697
       on the architecture.  */
10698
0
    if (h ? (h->root.type == bfd_link_hash_undefweak
10699
0
       && plt_offset == (bfd_vma) -1)
10700
0
        : r_symndx != STN_UNDEF && bfd_is_und_section (sym_sec))
10701
0
      {
10702
0
        value = (bfd_get_32 (input_bfd, hit_data) & 0xf0000000);
10703
10704
0
        if (arch_has_arm_nop (globals))
10705
0
    value |= 0x0320f000;
10706
0
        else
10707
0
    value |= 0x01a00000; /* Using pre-UAL nop: mov r0, r0.  */
10708
0
      }
10709
0
    else
10710
0
      {
10711
        /* Perform a signed range check.  */
10712
0
        if (   signed_addend >   ((bfd_signed_vma)  (howto->dst_mask >> 1))
10713
0
      || signed_addend < - ((bfd_signed_vma) ((howto->dst_mask + 1) >> 1)))
10714
0
    return bfd_reloc_overflow;
10715
10716
0
        addend = (value & 2);
10717
10718
0
        value = (signed_addend & howto->dst_mask)
10719
0
    | (bfd_get_32 (input_bfd, hit_data) & (~ howto->dst_mask));
10720
10721
0
        if (r_type == R_ARM_CALL)
10722
0
    {
10723
      /* Set the H bit in the BLX instruction.  */
10724
0
      if (branch_type == ST_BRANCH_TO_THUMB)
10725
0
        {
10726
0
          if (addend)
10727
0
      value |= (1 << 24);
10728
0
          else
10729
0
      value &= ~(bfd_vma)(1 << 24);
10730
0
        }
10731
10732
      /* Select the correct instruction (BL or BLX).  */
10733
      /* Only if we are not handling a BL to a stub. In this
10734
         case, mode switching is performed by the stub.  */
10735
0
      if (branch_type == ST_BRANCH_TO_THUMB && !stub_entry)
10736
0
        value |= (1 << 28);
10737
0
      else if (stub_entry || branch_type != ST_BRANCH_UNKNOWN)
10738
0
        {
10739
0
          value &= ~(bfd_vma)(1 << 28);
10740
0
          value |= (1 << 24);
10741
0
        }
10742
0
    }
10743
0
      }
10744
0
    }
10745
0
    break;
10746
10747
0
  case R_ARM_ABS32:
10748
0
    value += addend;
10749
0
    if (branch_type == ST_BRANCH_TO_THUMB)
10750
0
      value |= 1;
10751
0
    break;
10752
10753
0
  case R_ARM_ABS32_NOI:
10754
0
    value += addend;
10755
0
    break;
10756
10757
0
  case R_ARM_REL32:
10758
0
    value += addend;
10759
0
    if (branch_type == ST_BRANCH_TO_THUMB)
10760
0
      value |= 1;
10761
0
    value -= (input_section->output_section->vma
10762
0
        + input_section->output_offset + rel->r_offset);
10763
0
    break;
10764
10765
0
  case R_ARM_REL32_NOI:
10766
0
    value += addend;
10767
0
    value -= (input_section->output_section->vma
10768
0
        + input_section->output_offset + rel->r_offset);
10769
0
    break;
10770
10771
0
  case R_ARM_PREL31:
10772
0
    value -= (input_section->output_section->vma
10773
0
        + input_section->output_offset + rel->r_offset);
10774
0
    value += signed_addend;
10775
0
    if (! h || h->root.type != bfd_link_hash_undefweak)
10776
0
      {
10777
        /* Check for overflow.  */
10778
0
        if ((value ^ (value >> 1)) & (1 << 30))
10779
0
    return bfd_reloc_overflow;
10780
0
      }
10781
0
    value &= 0x7fffffff;
10782
0
    value |= (bfd_get_32 (input_bfd, hit_data) & 0x80000000);
10783
0
    if (branch_type == ST_BRANCH_TO_THUMB)
10784
0
      value |= 1;
10785
0
    break;
10786
0
  }
10787
10788
0
      bfd_put_32 (input_bfd, value, hit_data);
10789
0
      return bfd_reloc_ok;
10790
10791
0
    case R_ARM_ABS8:
10792
0
      value += addend;
10793
10794
      /* There is no way to tell whether the user intended to use a signed or
10795
   unsigned addend.  When checking for overflow we accept either,
10796
   as specified by the AAELF.  */
10797
0
      if ((long) value > 0xff || (long) value < -0x80)
10798
0
  return bfd_reloc_overflow;
10799
10800
0
      bfd_put_8 (input_bfd, value, hit_data);
10801
0
      return bfd_reloc_ok;
10802
10803
0
    case R_ARM_ABS16:
10804
0
      value += addend;
10805
10806
      /* See comment for R_ARM_ABS8.  */
10807
0
      if ((long) value > 0xffff || (long) value < -0x8000)
10808
0
  return bfd_reloc_overflow;
10809
10810
0
      bfd_put_16 (input_bfd, value, hit_data);
10811
0
      return bfd_reloc_ok;
10812
10813
0
    case R_ARM_THM_ABS5:
10814
      /* Support ldr and str instructions for the thumb.  */
10815
0
      if (globals->use_rel)
10816
0
  {
10817
    /* Need to refetch addend.  */
10818
0
    addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
10819
    /* ??? Need to determine shift amount from operand size.  */
10820
0
    addend >>= howto->rightshift;
10821
0
  }
10822
0
      value += addend;
10823
10824
      /* ??? Isn't value unsigned?  */
10825
0
      if ((long) value > 0x1f || (long) value < -0x10)
10826
0
  return bfd_reloc_overflow;
10827
10828
      /* ??? Value needs to be properly shifted into place first.  */
10829
0
      value |= bfd_get_16 (input_bfd, hit_data) & 0xf83f;
10830
0
      bfd_put_16 (input_bfd, value, hit_data);
10831
0
      return bfd_reloc_ok;
10832
10833
0
    case R_ARM_THM_ALU_PREL_11_0:
10834
      /* Corresponds to: addw.w reg, pc, #offset (and similarly for subw).  */
10835
0
      {
10836
0
  bfd_vma insn;
10837
0
  bfd_signed_vma relocation;
10838
10839
0
  insn = (bfd_get_16 (input_bfd, hit_data) << 16)
10840
0
       | bfd_get_16 (input_bfd, hit_data + 2);
10841
10842
0
  if (globals->use_rel)
10843
0
    {
10844
0
      signed_addend = (insn & 0xff) | ((insn & 0x7000) >> 4)
10845
0
        | ((insn & (1 << 26)) >> 15);
10846
0
      if (insn & 0xf00000)
10847
0
        signed_addend = -signed_addend;
10848
0
    }
10849
10850
0
  relocation = value + signed_addend;
10851
0
  relocation -= Pa (input_section->output_section->vma
10852
0
        + input_section->output_offset
10853
0
        + rel->r_offset);
10854
10855
  /* PR 21523: Use an absolute value.  The user of this reloc will
10856
     have already selected an ADD or SUB insn appropriately.  */
10857
0
  value = llabs (relocation);
10858
10859
0
  if (value >= 0x1000)
10860
0
    return bfd_reloc_overflow;
10861
10862
  /* Destination is Thumb.  Force bit 0 to 1 to reflect this.  */
10863
0
  if (branch_type == ST_BRANCH_TO_THUMB)
10864
0
    value |= 1;
10865
10866
0
  insn = (insn & 0xfb0f8f00) | (value & 0xff)
10867
0
       | ((value & 0x700) << 4)
10868
0
       | ((value & 0x800) << 15);
10869
0
  if (relocation < 0)
10870
0
    insn |= 0xa00000;
10871
10872
0
  bfd_put_16 (input_bfd, insn >> 16, hit_data);
10873
0
  bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
10874
10875
0
  return bfd_reloc_ok;
10876
0
      }
10877
10878
0
    case R_ARM_THM_PC8:
10879
      /* PR 10073:  This reloc is not generated by the GNU toolchain,
10880
   but it is supported for compatibility with third party libraries
10881
   generated by other compilers, specifically the ARM/IAR.  */
10882
0
      {
10883
0
  bfd_vma insn;
10884
0
  bfd_signed_vma relocation;
10885
10886
0
  insn = bfd_get_16 (input_bfd, hit_data);
10887
10888
0
  if (globals->use_rel)
10889
0
    addend = ((((insn & 0x00ff) << 2) + 4) & 0x3ff) -4;
10890
10891
0
  relocation = value + addend;
10892
0
  relocation -= Pa (input_section->output_section->vma
10893
0
        + input_section->output_offset
10894
0
        + rel->r_offset);
10895
10896
0
  value = relocation;
10897
10898
  /* We do not check for overflow of this reloc.  Although strictly
10899
     speaking this is incorrect, it appears to be necessary in order
10900
     to work with IAR generated relocs.  Since GCC and GAS do not
10901
     generate R_ARM_THM_PC8 relocs, the lack of a check should not be
10902
     a problem for them.  */
10903
0
  value &= 0x3fc;
10904
10905
0
  insn = (insn & 0xff00) | (value >> 2);
10906
10907
0
  bfd_put_16 (input_bfd, insn, hit_data);
10908
10909
0
  return bfd_reloc_ok;
10910
0
      }
10911
10912
0
    case R_ARM_THM_PC12:
10913
      /* Corresponds to: ldr.w reg, [pc, #offset].  */
10914
0
      {
10915
0
  bfd_vma insn;
10916
0
  bfd_signed_vma relocation;
10917
10918
0
  insn = (bfd_get_16 (input_bfd, hit_data) << 16)
10919
0
       | bfd_get_16 (input_bfd, hit_data + 2);
10920
10921
0
  if (globals->use_rel)
10922
0
    {
10923
0
      signed_addend = insn & 0xfff;
10924
0
      if (!(insn & (1 << 23)))
10925
0
        signed_addend = -signed_addend;
10926
0
    }
10927
10928
0
  relocation = value + signed_addend;
10929
0
  relocation -= Pa (input_section->output_section->vma
10930
0
        + input_section->output_offset
10931
0
        + rel->r_offset);
10932
10933
0
  value = relocation;
10934
10935
0
  if (value >= 0x1000)
10936
0
    return bfd_reloc_overflow;
10937
10938
0
  insn = (insn & 0xff7ff000) | value;
10939
0
  if (relocation >= 0)
10940
0
    insn |= (1 << 23);
10941
10942
0
  bfd_put_16 (input_bfd, insn >> 16, hit_data);
10943
0
  bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
10944
10945
0
  return bfd_reloc_ok;
10946
0
      }
10947
10948
0
    case R_ARM_THM_XPC22:
10949
0
    case R_ARM_THM_CALL:
10950
0
    case R_ARM_THM_JUMP24:
10951
      /* Thumb BL (branch long instruction).  */
10952
0
      {
10953
0
  bfd_vma relocation;
10954
0
  bfd_vma reloc_sign;
10955
0
  bool overflow = false;
10956
0
  bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
10957
0
  bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
10958
0
  bfd_signed_vma reloc_signed_max;
10959
0
  bfd_signed_vma reloc_signed_min;
10960
0
  bfd_vma check;
10961
0
  bfd_signed_vma signed_check;
10962
0
  int bitsize;
10963
0
  const int thumb2 = using_thumb2 (globals);
10964
0
  const int thumb2_bl = using_thumb2_bl (globals);
10965
10966
  /* A branch to an undefined weak symbol is turned into a jump to
10967
     the next instruction unless a PLT entry will be created.
10968
     The jump to the next instruction is optimized as a NOP.W for
10969
     Thumb-2 enabled architectures.  */
10970
0
  if (h && h->root.type == bfd_link_hash_undefweak
10971
0
      && plt_offset == (bfd_vma) -1)
10972
0
    {
10973
0
      if (thumb2)
10974
0
        {
10975
0
    bfd_put_16 (input_bfd, 0xf3af, hit_data);
10976
0
    bfd_put_16 (input_bfd, 0x8000, hit_data + 2);
10977
0
        }
10978
0
      else
10979
0
        {
10980
0
    bfd_put_16 (input_bfd, 0xe000, hit_data);
10981
0
    bfd_put_16 (input_bfd, 0xbf00, hit_data + 2);
10982
0
        }
10983
0
      return bfd_reloc_ok;
10984
0
    }
10985
10986
  /* Fetch the addend.  We use the Thumb-2 encoding (backwards compatible
10987
     with Thumb-1) involving the J1 and J2 bits.  */
10988
0
  if (globals->use_rel)
10989
0
    {
10990
0
      bfd_vma s = (upper_insn & (1 << 10)) >> 10;
10991
0
      bfd_vma upper = upper_insn & 0x3ff;
10992
0
      bfd_vma lower = lower_insn & 0x7ff;
10993
0
      bfd_vma j1 = (lower_insn & (1 << 13)) >> 13;
10994
0
      bfd_vma j2 = (lower_insn & (1 << 11)) >> 11;
10995
0
      bfd_vma i1 = j1 ^ s ? 0 : 1;
10996
0
      bfd_vma i2 = j2 ^ s ? 0 : 1;
10997
10998
0
      addend = (i1 << 23) | (i2 << 22) | (upper << 12) | (lower << 1);
10999
      /* Sign extend.  */
11000
0
      addend = (addend | ((s ? 0 : 1) << 24)) - (1 << 24);
11001
11002
0
      signed_addend = addend;
11003
0
    }
11004
11005
0
  if (r_type == R_ARM_THM_XPC22)
11006
0
    {
11007
      /* Check for Thumb to Thumb call.  */
11008
      /* FIXME: Should we translate the instruction into a BL
11009
         instruction instead ?  */
11010
0
      if (branch_type == ST_BRANCH_TO_THUMB)
11011
0
        _bfd_error_handler
11012
0
    (_("%pB: warning: %s BLX instruction targets"
11013
0
       " %s function '%s'"),
11014
0
     input_bfd, "Thumb",
11015
0
     "Thumb", h ? h->root.root.string : "(local)");
11016
0
    }
11017
0
  else
11018
0
    {
11019
      /* If it is not a call to Thumb, assume call to Arm.
11020
         If it is a call relative to a section name, then it is not a
11021
         function call at all, but rather a long jump.  Calls through
11022
         the PLT do not require stubs.  */
11023
0
      if (branch_type == ST_BRANCH_TO_ARM && plt_offset == (bfd_vma) -1)
11024
0
        {
11025
0
    if (globals->use_blx && r_type == R_ARM_THM_CALL)
11026
0
      {
11027
        /* Convert BL to BLX.  */
11028
0
        lower_insn = (lower_insn & ~0x1000) | 0x0800;
11029
0
      }
11030
0
    else if ((   r_type != R_ARM_THM_CALL)
11031
0
       && (r_type != R_ARM_THM_JUMP24))
11032
0
      {
11033
0
        if (elf32_thumb_to_arm_stub
11034
0
      (info, sym_name, input_bfd, output_bfd, input_section,
11035
0
       hit_data, sym_sec, rel->r_offset, signed_addend, value,
11036
0
       error_message))
11037
0
          return bfd_reloc_ok;
11038
0
        else
11039
0
          return bfd_reloc_dangerous;
11040
0
      }
11041
0
        }
11042
0
      else if (branch_type == ST_BRANCH_TO_THUMB
11043
0
         && globals->use_blx
11044
0
         && r_type == R_ARM_THM_CALL)
11045
0
        {
11046
    /* Make sure this is a BL.  */
11047
0
    lower_insn |= 0x1800;
11048
0
        }
11049
0
    }
11050
11051
0
  enum elf32_arm_stub_type stub_type = arm_stub_none;
11052
0
  if (r_type == R_ARM_THM_CALL || r_type == R_ARM_THM_JUMP24)
11053
0
    {
11054
      /* Check if a stub has to be inserted because the destination
11055
         is too far.  */
11056
0
      struct elf32_arm_stub_hash_entry *stub_entry;
11057
0
      struct elf32_arm_link_hash_entry *hash;
11058
11059
0
      hash = (struct elf32_arm_link_hash_entry *) h;
11060
11061
0
      stub_type = arm_type_of_stub (info, input_section, rel,
11062
0
            st_type, &branch_type,
11063
0
            hash, value, sym_sec,
11064
0
            input_bfd, sym_name);
11065
11066
0
      if (stub_type != arm_stub_none)
11067
0
        {
11068
    /* The target is out of reach or we are changing modes, so
11069
       redirect the branch to the local stub for this
11070
       function.  */
11071
0
    stub_entry = elf32_arm_get_stub_entry (input_section,
11072
0
                   sym_sec, h,
11073
0
                   rel, globals,
11074
0
                   stub_type);
11075
0
    if (stub_entry != NULL)
11076
0
      {
11077
0
        value = (stub_entry->stub_offset
11078
0
           + stub_entry->stub_sec->output_offset
11079
0
           + stub_entry->stub_sec->output_section->vma);
11080
11081
0
        if (plt_offset != (bfd_vma) -1)
11082
0
          *unresolved_reloc_p = false;
11083
0
      }
11084
11085
    /* If this call becomes a call to Arm, force BLX.  */
11086
0
    if (globals->use_blx && (r_type == R_ARM_THM_CALL))
11087
0
      {
11088
0
        if ((stub_entry
11089
0
       && !arm_stub_is_thumb (stub_entry->stub_type))
11090
0
      || branch_type != ST_BRANCH_TO_THUMB)
11091
0
          lower_insn = (lower_insn & ~0x1000) | 0x0800;
11092
0
      }
11093
0
        }
11094
0
    }
11095
11096
  /* Handle calls via the PLT.  */
11097
0
  if (stub_type == arm_stub_none && plt_offset != (bfd_vma) -1)
11098
0
    {
11099
0
      value = (splt->output_section->vma
11100
0
         + splt->output_offset
11101
0
         + plt_offset);
11102
11103
0
      if (globals->use_blx
11104
0
    && r_type == R_ARM_THM_CALL
11105
0
    && ! using_thumb_only (globals))
11106
0
        {
11107
    /* If the Thumb BLX instruction is available, convert
11108
       the BL to a BLX instruction to call the ARM-mode
11109
       PLT entry.  */
11110
0
    lower_insn = (lower_insn & ~0x1000) | 0x0800;
11111
0
    branch_type = ST_BRANCH_TO_ARM;
11112
0
        }
11113
0
      else
11114
0
        {
11115
0
    if (! using_thumb_only (globals))
11116
      /* Target the Thumb stub before the ARM PLT entry.  */
11117
0
      value -= PLT_THUMB_STUB_SIZE;
11118
0
    branch_type = ST_BRANCH_TO_THUMB;
11119
0
        }
11120
0
      *unresolved_reloc_p = false;
11121
0
    }
11122
11123
0
  relocation = value + signed_addend;
11124
11125
0
  relocation -= (input_section->output_section->vma
11126
0
           + input_section->output_offset
11127
0
           + rel->r_offset);
11128
11129
0
  check = relocation >> howto->rightshift;
11130
11131
  /* If this is a signed value, the rightshift just dropped
11132
     leading 1 bits (assuming twos complement).  */
11133
0
  if ((bfd_signed_vma) relocation >= 0)
11134
0
    signed_check = check;
11135
0
  else
11136
0
    signed_check = check | ~((bfd_vma) -1 >> howto->rightshift);
11137
11138
  /* Calculate the permissable maximum and minimum values for
11139
     this relocation according to whether we're relocating for
11140
     Thumb-2 or not.  */
11141
0
  bitsize = howto->bitsize;
11142
0
  if (!thumb2_bl)
11143
0
    bitsize -= 2;
11144
0
  reloc_signed_max = (1 << (bitsize - 1)) - 1;
11145
0
  reloc_signed_min = ~reloc_signed_max;
11146
11147
  /* Assumes two's complement.  */
11148
0
  if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11149
0
    overflow = true;
11150
11151
0
  if ((lower_insn & 0x5000) == 0x4000)
11152
    /* For a BLX instruction, make sure that the relocation is rounded up
11153
       to a word boundary.  This follows the semantics of the instruction
11154
       which specifies that bit 1 of the target address will come from bit
11155
       1 of the base address.  */
11156
0
    relocation = (relocation + 2) & ~ 3;
11157
11158
  /* Put RELOCATION back into the insn.  Assumes two's complement.
11159
     We use the Thumb-2 encoding, which is safe even if dealing with
11160
     a Thumb-1 instruction by virtue of our overflow check above.  */
11161
0
  reloc_sign = (signed_check < 0) ? 1 : 0;
11162
0
  upper_insn = (upper_insn & ~(bfd_vma) 0x7ff)
11163
0
         | ((relocation >> 12) & 0x3ff)
11164
0
         | (reloc_sign << 10);
11165
0
  lower_insn = (lower_insn & ~(bfd_vma) 0x2fff)
11166
0
         | (((!((relocation >> 23) & 1)) ^ reloc_sign) << 13)
11167
0
         | (((!((relocation >> 22) & 1)) ^ reloc_sign) << 11)
11168
0
         | ((relocation >> 1) & 0x7ff);
11169
11170
  /* Put the relocated value back in the object file:  */
11171
0
  bfd_put_16 (input_bfd, upper_insn, hit_data);
11172
0
  bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11173
11174
0
  return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11175
0
      }
11176
0
      break;
11177
11178
0
    case R_ARM_THM_JUMP19:
11179
      /* Thumb32 conditional branch instruction.  */
11180
0
      {
11181
0
  bfd_vma relocation;
11182
0
  bool overflow = false;
11183
0
  bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
11184
0
  bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
11185
0
  bfd_signed_vma reloc_signed_max = 0xffffe;
11186
0
  bfd_signed_vma reloc_signed_min = -0x100000;
11187
0
  bfd_signed_vma signed_check;
11188
0
  enum elf32_arm_stub_type stub_type = arm_stub_none;
11189
0
  struct elf32_arm_stub_hash_entry *stub_entry;
11190
0
  struct elf32_arm_link_hash_entry *hash;
11191
11192
  /* Need to refetch the addend, reconstruct the top three bits,
11193
     and squish the two 11 bit pieces together.  */
11194
0
  if (globals->use_rel)
11195
0
    {
11196
0
      bfd_vma S     = (upper_insn & 0x0400) >> 10;
11197
0
      bfd_vma upper = (upper_insn & 0x003f);
11198
0
      bfd_vma J1    = (lower_insn & 0x2000) >> 13;
11199
0
      bfd_vma J2    = (lower_insn & 0x0800) >> 11;
11200
0
      bfd_vma lower = (lower_insn & 0x07ff);
11201
11202
0
      upper |= J1 << 6;
11203
0
      upper |= J2 << 7;
11204
0
      upper |= (!S) << 8;
11205
0
      upper -= 0x0100; /* Sign extend.  */
11206
11207
0
      addend = (upper << 12) | (lower << 1);
11208
0
      signed_addend = addend;
11209
0
    }
11210
11211
  /* Handle calls via the PLT.  */
11212
0
  if (plt_offset != (bfd_vma) -1)
11213
0
    {
11214
0
      value = (splt->output_section->vma
11215
0
         + splt->output_offset
11216
0
         + plt_offset);
11217
      /* Target the Thumb stub before the ARM PLT entry.  */
11218
0
      value -= PLT_THUMB_STUB_SIZE;
11219
0
      *unresolved_reloc_p = false;
11220
0
    }
11221
11222
0
  hash = (struct elf32_arm_link_hash_entry *)h;
11223
11224
0
  stub_type = arm_type_of_stub (info, input_section, rel,
11225
0
              st_type, &branch_type,
11226
0
              hash, value, sym_sec,
11227
0
              input_bfd, sym_name);
11228
0
  if (stub_type != arm_stub_none)
11229
0
    {
11230
0
      stub_entry = elf32_arm_get_stub_entry (input_section,
11231
0
               sym_sec, h,
11232
0
               rel, globals,
11233
0
               stub_type);
11234
0
      if (stub_entry != NULL)
11235
0
        {
11236
0
    value = (stub_entry->stub_offset
11237
0
      + stub_entry->stub_sec->output_offset
11238
0
      + stub_entry->stub_sec->output_section->vma);
11239
0
        }
11240
0
    }
11241
11242
0
  relocation = value + signed_addend;
11243
0
  relocation -= (input_section->output_section->vma
11244
0
           + input_section->output_offset
11245
0
           + rel->r_offset);
11246
0
  signed_check = (bfd_signed_vma) relocation;
11247
11248
0
  if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11249
0
    overflow = true;
11250
11251
  /* Put RELOCATION back into the insn.  */
11252
0
  {
11253
0
    bfd_vma S  = (relocation & 0x00100000) >> 20;
11254
0
    bfd_vma J2 = (relocation & 0x00080000) >> 19;
11255
0
    bfd_vma J1 = (relocation & 0x00040000) >> 18;
11256
0
    bfd_vma hi = (relocation & 0x0003f000) >> 12;
11257
0
    bfd_vma lo = (relocation & 0x00000ffe) >>  1;
11258
11259
0
    upper_insn = (upper_insn & 0xfbc0) | (S << 10) | hi;
11260
0
    lower_insn = (lower_insn & 0xd000) | (J1 << 13) | (J2 << 11) | lo;
11261
0
  }
11262
11263
  /* Put the relocated value back in the object file:  */
11264
0
  bfd_put_16 (input_bfd, upper_insn, hit_data);
11265
0
  bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11266
11267
0
  return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
11268
0
      }
11269
11270
0
    case R_ARM_THM_JUMP11:
11271
0
    case R_ARM_THM_JUMP8:
11272
0
    case R_ARM_THM_JUMP6:
11273
      /* Thumb B (branch) instruction).  */
11274
0
      {
11275
0
  bfd_signed_vma relocation;
11276
0
  bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1;
11277
0
  bfd_signed_vma reloc_signed_min = ~ reloc_signed_max;
11278
0
  bfd_signed_vma signed_check;
11279
11280
  /* CZB cannot jump backward.  */
11281
0
  if (r_type == R_ARM_THM_JUMP6)
11282
0
    {
11283
0
      reloc_signed_min = 0;
11284
0
      if (globals->use_rel)
11285
0
        signed_addend = ((addend & 0x200) >> 3) | ((addend & 0xf8) >> 2);
11286
0
    }
11287
11288
0
  relocation = value + signed_addend;
11289
11290
0
  relocation -= (input_section->output_section->vma
11291
0
           + input_section->output_offset
11292
0
           + rel->r_offset);
11293
11294
0
  relocation >>= howto->rightshift;
11295
0
  signed_check = relocation;
11296
11297
0
  if (r_type == R_ARM_THM_JUMP6)
11298
0
    relocation = ((relocation & 0x0020) << 4) | ((relocation & 0x001f) << 3);
11299
0
  else
11300
0
    relocation &= howto->dst_mask;
11301
0
  relocation |= (bfd_get_16 (input_bfd, hit_data) & (~ howto->dst_mask));
11302
11303
0
  bfd_put_16 (input_bfd, relocation, hit_data);
11304
11305
  /* Assumes two's complement.  */
11306
0
  if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
11307
0
    return bfd_reloc_overflow;
11308
11309
0
  return bfd_reloc_ok;
11310
0
      }
11311
11312
0
    case R_ARM_ALU_PCREL7_0:
11313
0
    case R_ARM_ALU_PCREL15_8:
11314
0
    case R_ARM_ALU_PCREL23_15:
11315
0
      {
11316
0
  bfd_vma insn;
11317
0
  bfd_vma relocation;
11318
11319
0
  insn = bfd_get_32 (input_bfd, hit_data);
11320
0
  if (globals->use_rel)
11321
0
    {
11322
      /* Extract the addend.  */
11323
0
      addend = (insn & 0xff) << ((insn & 0xf00) >> 7);
11324
0
      signed_addend = addend;
11325
0
    }
11326
0
  relocation = value + signed_addend;
11327
11328
0
  relocation -= (input_section->output_section->vma
11329
0
           + input_section->output_offset
11330
0
           + rel->r_offset);
11331
0
  insn = (insn & ~0xfff)
11332
0
         | ((howto->bitpos << 7) & 0xf00)
11333
0
         | ((relocation >> howto->bitpos) & 0xff);
11334
0
  bfd_put_32 (input_bfd, value, hit_data);
11335
0
      }
11336
0
      return bfd_reloc_ok;
11337
11338
0
    case R_ARM_GNU_VTINHERIT:
11339
0
    case R_ARM_GNU_VTENTRY:
11340
0
      return bfd_reloc_ok;
11341
11342
0
    case R_ARM_GOTOFF32:
11343
      /* Relocation is relative to the start of the
11344
   global offset table.  */
11345
11346
0
      BFD_ASSERT (sgot != NULL);
11347
0
      if (sgot == NULL)
11348
0
  return bfd_reloc_notsupported;
11349
11350
      /* If we are addressing a Thumb function, we need to adjust the
11351
   address by one, so that attempts to call the function pointer will
11352
   correctly interpret it as Thumb code.  */
11353
0
      if (branch_type == ST_BRANCH_TO_THUMB)
11354
0
  value += 1;
11355
11356
      /* Note that sgot->output_offset is not involved in this
11357
   calculation.  We always want the start of .got.  If we
11358
   define _GLOBAL_OFFSET_TABLE in a different way, as is
11359
   permitted by the ABI, we might have to change this
11360
   calculation.  */
11361
0
      value -= sgot->output_section->vma;
11362
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11363
0
               contents, rel->r_offset, value,
11364
0
               rel->r_addend);
11365
11366
0
    case R_ARM_GOTPC:
11367
      /* Use global offset table as symbol value.  */
11368
0
      BFD_ASSERT (sgot != NULL);
11369
11370
0
      if (sgot == NULL)
11371
0
  return bfd_reloc_notsupported;
11372
11373
0
      *unresolved_reloc_p = false;
11374
0
      value = sgot->output_section->vma;
11375
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11376
0
               contents, rel->r_offset, value,
11377
0
               rel->r_addend);
11378
11379
0
    case R_ARM_GOT32:
11380
0
    case R_ARM_GOT_PREL:
11381
      /* Relocation is to the entry for this symbol in the
11382
   global offset table.  */
11383
0
      if (sgot == NULL)
11384
0
  return bfd_reloc_notsupported;
11385
11386
0
      if (dynreloc_st_type == STT_GNU_IFUNC
11387
0
    && plt_offset != (bfd_vma) -1
11388
0
    && (h == NULL || SYMBOL_REFERENCES_LOCAL (info, h)))
11389
0
  {
11390
    /* We have a relocation against a locally-binding STT_GNU_IFUNC
11391
       symbol, and the relocation resolves directly to the runtime
11392
       target rather than to the .iplt entry.  This means that any
11393
       .got entry would be the same value as the .igot.plt entry,
11394
       so there's no point creating both.  */
11395
0
    sgot = globals->root.igotplt;
11396
0
    value = sgot->output_offset + gotplt_offset;
11397
0
  }
11398
0
      else if (h != NULL)
11399
0
  {
11400
0
    bfd_vma off;
11401
11402
0
    off = h->got.offset;
11403
0
    BFD_ASSERT (off != (bfd_vma) -1);
11404
0
    if ((off & 1) != 0)
11405
0
      {
11406
        /* We have already processsed one GOT relocation against
11407
     this symbol.  */
11408
0
        off &= ~1;
11409
0
        if (globals->root.dynamic_sections_created
11410
0
      && !SYMBOL_REFERENCES_LOCAL (info, h))
11411
0
    *unresolved_reloc_p = false;
11412
0
      }
11413
0
    else
11414
0
      {
11415
0
        Elf_Internal_Rela outrel;
11416
0
        int isrofixup = 0;
11417
11418
0
        if (((h->dynindx != -1) || globals->fdpic_p)
11419
0
      && !SYMBOL_REFERENCES_LOCAL (info, h))
11420
0
    {
11421
      /* If the symbol doesn't resolve locally in a static
11422
         object, we have an undefined reference.  If the
11423
         symbol doesn't resolve locally in a dynamic object,
11424
         it should be resolved by the dynamic linker.  */
11425
0
      if (globals->root.dynamic_sections_created)
11426
0
        {
11427
0
          outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_GLOB_DAT);
11428
0
          *unresolved_reloc_p = false;
11429
0
        }
11430
0
      else
11431
0
        outrel.r_info = 0;
11432
0
      outrel.r_addend = 0;
11433
0
    }
11434
0
        else
11435
0
    {
11436
0
      if (dynreloc_st_type == STT_GNU_IFUNC)
11437
0
        outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
11438
0
      else if (bfd_link_pic (info)
11439
0
         && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
11440
0
        outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11441
0
      else
11442
0
        {
11443
0
          outrel.r_info = 0;
11444
0
          if (globals->fdpic_p)
11445
0
      isrofixup = 1;
11446
0
        }
11447
0
      outrel.r_addend = dynreloc_value;
11448
0
    }
11449
11450
        /* The GOT entry is initialized to zero by default.
11451
     See if we should install a different value.  */
11452
0
        if (outrel.r_addend != 0
11453
0
      && (globals->use_rel || outrel.r_info == 0))
11454
0
    {
11455
0
      bfd_put_32 (output_bfd, outrel.r_addend,
11456
0
            sgot->contents + off);
11457
0
      outrel.r_addend = 0;
11458
0
    }
11459
11460
0
        if (isrofixup)
11461
0
    arm_elf_add_rofixup (output_bfd,
11462
0
             elf32_arm_hash_table (info)->srofixup,
11463
0
             sgot->output_section->vma
11464
0
             + sgot->output_offset + off);
11465
11466
0
        else if (outrel.r_info != 0)
11467
0
    {
11468
0
      outrel.r_offset = (sgot->output_section->vma
11469
0
             + sgot->output_offset
11470
0
             + off);
11471
0
      elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11472
0
    }
11473
11474
0
        h->got.offset |= 1;
11475
0
      }
11476
0
    value = sgot->output_offset + off;
11477
0
  }
11478
0
      else
11479
0
  {
11480
0
    bfd_vma off;
11481
11482
0
    BFD_ASSERT (local_got_offsets != NULL
11483
0
          && local_got_offsets[r_symndx] != (bfd_vma) -1);
11484
11485
0
    off = local_got_offsets[r_symndx];
11486
11487
    /* The offset must always be a multiple of 4.  We use the
11488
       least significant bit to record whether we have already
11489
       generated the necessary reloc.  */
11490
0
    if ((off & 1) != 0)
11491
0
      off &= ~1;
11492
0
    else
11493
0
      {
11494
0
        Elf_Internal_Rela outrel;
11495
0
        int isrofixup = 0;
11496
11497
0
        if (dynreloc_st_type == STT_GNU_IFUNC)
11498
0
    outrel.r_info = ELF32_R_INFO (0, R_ARM_IRELATIVE);
11499
0
        else if (bfd_link_pic (info))
11500
0
    outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
11501
0
        else
11502
0
    {
11503
0
      outrel.r_info = 0;
11504
0
      if (globals->fdpic_p)
11505
0
        isrofixup = 1;
11506
0
    }
11507
11508
        /* The GOT entry is initialized to zero by default.
11509
     See if we should install a different value.  */
11510
0
        if (globals->use_rel || outrel.r_info == 0)
11511
0
    bfd_put_32 (output_bfd, dynreloc_value, sgot->contents + off);
11512
11513
0
        if (isrofixup)
11514
0
    arm_elf_add_rofixup (output_bfd,
11515
0
             globals->srofixup,
11516
0
             sgot->output_section->vma
11517
0
             + sgot->output_offset + off);
11518
11519
0
        else if (outrel.r_info != 0)
11520
0
    {
11521
0
      outrel.r_addend = addend + dynreloc_value;
11522
0
      outrel.r_offset = (sgot->output_section->vma
11523
0
             + sgot->output_offset
11524
0
             + off);
11525
0
      elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11526
0
    }
11527
11528
0
        local_got_offsets[r_symndx] |= 1;
11529
0
      }
11530
11531
0
    value = sgot->output_offset + off;
11532
0
  }
11533
0
      if (r_type != R_ARM_GOT32)
11534
0
  value += sgot->output_section->vma;
11535
11536
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11537
0
               contents, rel->r_offset, value,
11538
0
               rel->r_addend);
11539
11540
0
    case R_ARM_TLS_LDO32:
11541
0
      value = value - dtpoff_base (info);
11542
11543
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11544
0
               contents, rel->r_offset, value,
11545
0
               rel->r_addend);
11546
11547
0
    case R_ARM_TLS_LDM32:
11548
0
    case R_ARM_TLS_LDM32_FDPIC:
11549
0
      {
11550
0
  bfd_vma off;
11551
11552
0
  if (sgot == NULL)
11553
0
    abort ();
11554
11555
0
  off = globals->tls_ldm_got.offset;
11556
11557
0
  if ((off & 1) != 0)
11558
0
    off &= ~1;
11559
0
  else
11560
0
    {
11561
      /* If we don't know the module number, create a relocation
11562
         for it.  */
11563
0
      if (bfd_link_dll (info))
11564
0
        {
11565
0
    Elf_Internal_Rela outrel;
11566
11567
0
    if (srelgot == NULL)
11568
0
      abort ();
11569
11570
0
    outrel.r_addend = 0;
11571
0
    outrel.r_offset = (sgot->output_section->vma
11572
0
           + sgot->output_offset + off);
11573
0
    outrel.r_info = ELF32_R_INFO (0, R_ARM_TLS_DTPMOD32);
11574
11575
0
    if (globals->use_rel)
11576
0
      bfd_put_32 (output_bfd, outrel.r_addend,
11577
0
            sgot->contents + off);
11578
11579
0
    elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11580
0
        }
11581
0
      else
11582
0
        bfd_put_32 (output_bfd, 1, sgot->contents + off);
11583
11584
0
      globals->tls_ldm_got.offset |= 1;
11585
0
    }
11586
11587
0
  if (r_type == R_ARM_TLS_LDM32_FDPIC)
11588
0
    {
11589
0
      bfd_put_32 (output_bfd,
11590
0
      globals->root.sgot->output_offset + off,
11591
0
      contents + rel->r_offset);
11592
11593
0
      return bfd_reloc_ok;
11594
0
    }
11595
0
  else
11596
0
    {
11597
0
      value = sgot->output_section->vma + sgot->output_offset + off
11598
0
        - (input_section->output_section->vma
11599
0
     + input_section->output_offset + rel->r_offset);
11600
11601
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11602
0
               contents, rel->r_offset, value,
11603
0
               rel->r_addend);
11604
0
    }
11605
0
      }
11606
11607
0
    case R_ARM_TLS_CALL:
11608
0
    case R_ARM_THM_TLS_CALL:
11609
0
    case R_ARM_TLS_GD32:
11610
0
    case R_ARM_TLS_GD32_FDPIC:
11611
0
    case R_ARM_TLS_IE32:
11612
0
    case R_ARM_TLS_IE32_FDPIC:
11613
0
    case R_ARM_TLS_GOTDESC:
11614
0
    case R_ARM_TLS_DESCSEQ:
11615
0
    case R_ARM_THM_TLS_DESCSEQ:
11616
0
      {
11617
0
  bfd_vma off, offplt;
11618
0
  int indx = 0;
11619
0
  char tls_type;
11620
11621
0
  BFD_ASSERT (sgot != NULL);
11622
11623
0
  if (h != NULL)
11624
0
    {
11625
0
      bool dyn;
11626
0
      dyn = globals->root.dynamic_sections_created;
11627
0
      if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn,
11628
0
             bfd_link_pic (info),
11629
0
             h)
11630
0
    && (!bfd_link_pic (info)
11631
0
        || !SYMBOL_REFERENCES_LOCAL (info, h)))
11632
0
        {
11633
0
    *unresolved_reloc_p = false;
11634
0
    indx = h->dynindx;
11635
0
        }
11636
0
      off = h->got.offset;
11637
0
      offplt = elf32_arm_hash_entry (h)->tlsdesc_got;
11638
0
      tls_type = ((struct elf32_arm_link_hash_entry *) h)->tls_type;
11639
0
    }
11640
0
  else
11641
0
    {
11642
0
      BFD_ASSERT (local_got_offsets != NULL);
11643
11644
0
      if (r_symndx >= elf32_arm_num_entries (input_bfd))
11645
0
        {
11646
0
    _bfd_error_handler (_("\
11647
0
%pB: expected symbol index in range 0..%lu but found local symbol with index %lu"),
11648
0
            input_bfd,
11649
0
            (unsigned long) elf32_arm_num_entries (input_bfd),
11650
0
            r_symndx);
11651
0
    return false;
11652
0
        }
11653
0
      off = local_got_offsets[r_symndx];
11654
0
      offplt = local_tlsdesc_gotents[r_symndx];
11655
0
      tls_type = elf32_arm_local_got_tls_type (input_bfd)[r_symndx];
11656
0
    }
11657
11658
  /* Linker relaxations happens from one of the
11659
     R_ARM_{GOTDESC,CALL,DESCSEQ} relocations to IE or LE.  */
11660
0
  if (ELF32_R_TYPE (rel->r_info) != r_type)
11661
0
    tls_type = GOT_TLS_IE;
11662
11663
0
  BFD_ASSERT (tls_type != GOT_UNKNOWN);
11664
11665
0
  if ((off & 1) != 0)
11666
0
    off &= ~1;
11667
0
  else
11668
0
    {
11669
0
      bool need_relocs = false;
11670
0
      Elf_Internal_Rela outrel;
11671
0
      int cur_off = off;
11672
11673
      /* The GOT entries have not been initialized yet.  Do it
11674
         now, and emit any relocations.  If both an IE GOT and a
11675
         GD GOT are necessary, we emit the GD first.  */
11676
11677
0
      if ((bfd_link_dll (info) || indx != 0)
11678
0
    && (h == NULL
11679
0
        || (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
11680
0
      && !resolved_to_zero)
11681
0
        || h->root.type != bfd_link_hash_undefweak))
11682
0
        {
11683
0
    need_relocs = true;
11684
0
    BFD_ASSERT (srelgot != NULL);
11685
0
        }
11686
11687
0
      if (tls_type & GOT_TLS_GDESC)
11688
0
        {
11689
0
    bfd_byte *loc;
11690
11691
    /* We should have relaxed, unless this is an undefined
11692
       weak symbol.  */
11693
0
    BFD_ASSERT ((h && (h->root.type == bfd_link_hash_undefweak))
11694
0
          || bfd_link_dll (info));
11695
0
    BFD_ASSERT (globals->sgotplt_jump_table_size + offplt + 8
11696
0
          <= globals->root.sgotplt->size);
11697
11698
0
    outrel.r_addend = 0;
11699
0
    outrel.r_offset = (globals->root.sgotplt->output_section->vma
11700
0
           + globals->root.sgotplt->output_offset
11701
0
           + offplt
11702
0
           + globals->sgotplt_jump_table_size);
11703
11704
0
    outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DESC);
11705
0
    sreloc = globals->root.srelplt;
11706
0
    loc = sreloc->contents;
11707
0
    loc += globals->next_tls_desc_index++ * RELOC_SIZE (globals);
11708
0
    BFD_ASSERT (loc + RELOC_SIZE (globals)
11709
0
         <= sreloc->contents + sreloc->size);
11710
11711
0
    SWAP_RELOC_OUT (globals) (output_bfd, &outrel, loc);
11712
11713
    /* For globals, the first word in the relocation gets
11714
       the relocation index and the top bit set, or zero,
11715
       if we're binding now.  For locals, it gets the
11716
       symbol's offset in the tls section.  */
11717
0
    bfd_put_32 (output_bfd,
11718
0
          !h ? value - elf_hash_table (info)->tls_sec->vma
11719
0
          : info->flags & DF_BIND_NOW ? 0
11720
0
          : 0x80000000 | ELF32_R_SYM (outrel.r_info),
11721
0
          globals->root.sgotplt->contents + offplt
11722
0
          + globals->sgotplt_jump_table_size);
11723
11724
    /* Second word in the relocation is always zero.  */
11725
0
    bfd_put_32 (output_bfd, 0,
11726
0
          globals->root.sgotplt->contents + offplt
11727
0
          + globals->sgotplt_jump_table_size + 4);
11728
0
        }
11729
0
      if (tls_type & GOT_TLS_GD)
11730
0
        {
11731
0
    if (need_relocs)
11732
0
      {
11733
0
        outrel.r_addend = 0;
11734
0
        outrel.r_offset = (sgot->output_section->vma
11735
0
               + sgot->output_offset
11736
0
               + cur_off);
11737
0
        outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_DTPMOD32);
11738
11739
0
        if (globals->use_rel)
11740
0
          bfd_put_32 (output_bfd, outrel.r_addend,
11741
0
          sgot->contents + cur_off);
11742
11743
0
        elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11744
11745
0
        if (indx == 0)
11746
0
          bfd_put_32 (output_bfd, value - dtpoff_base (info),
11747
0
          sgot->contents + cur_off + 4);
11748
0
        else
11749
0
          {
11750
0
      outrel.r_addend = 0;
11751
0
      outrel.r_info = ELF32_R_INFO (indx,
11752
0
                  R_ARM_TLS_DTPOFF32);
11753
0
      outrel.r_offset += 4;
11754
11755
0
      if (globals->use_rel)
11756
0
        bfd_put_32 (output_bfd, outrel.r_addend,
11757
0
              sgot->contents + cur_off + 4);
11758
11759
0
      elf32_arm_add_dynreloc (output_bfd, info,
11760
0
            srelgot, &outrel);
11761
0
          }
11762
0
      }
11763
0
    else
11764
0
      {
11765
        /* If we are not emitting relocations for a
11766
           general dynamic reference, then we must be in a
11767
           static link or an executable link with the
11768
           symbol binding locally.  Mark it as belonging
11769
           to module 1, the executable.  */
11770
0
        bfd_put_32 (output_bfd, 1,
11771
0
        sgot->contents + cur_off);
11772
0
        bfd_put_32 (output_bfd, value - dtpoff_base (info),
11773
0
        sgot->contents + cur_off + 4);
11774
0
      }
11775
11776
0
    cur_off += 8;
11777
0
        }
11778
11779
0
      if (tls_type & GOT_TLS_IE)
11780
0
        {
11781
0
    if (need_relocs)
11782
0
      {
11783
0
        if (indx == 0)
11784
0
          outrel.r_addend = value - dtpoff_base (info);
11785
0
        else
11786
0
          outrel.r_addend = 0;
11787
0
        outrel.r_offset = (sgot->output_section->vma
11788
0
               + sgot->output_offset
11789
0
               + cur_off);
11790
0
        outrel.r_info = ELF32_R_INFO (indx, R_ARM_TLS_TPOFF32);
11791
11792
0
        if (globals->use_rel)
11793
0
          bfd_put_32 (output_bfd, outrel.r_addend,
11794
0
          sgot->contents + cur_off);
11795
11796
0
        elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
11797
0
      }
11798
0
    else
11799
0
      bfd_put_32 (output_bfd, tpoff (info, value),
11800
0
            sgot->contents + cur_off);
11801
0
    cur_off += 4;
11802
0
        }
11803
11804
0
      if (h != NULL)
11805
0
        h->got.offset |= 1;
11806
0
      else
11807
0
        local_got_offsets[r_symndx] |= 1;
11808
0
    }
11809
11810
0
  if ((tls_type & GOT_TLS_GD) && r_type != R_ARM_TLS_GD32 && r_type != R_ARM_TLS_GD32_FDPIC)
11811
0
    off += 8;
11812
0
  else if (tls_type & GOT_TLS_GDESC)
11813
0
    off = offplt;
11814
11815
0
  if (ELF32_R_TYPE (rel->r_info) == R_ARM_TLS_CALL
11816
0
      || ELF32_R_TYPE (rel->r_info) == R_ARM_THM_TLS_CALL)
11817
0
    {
11818
0
      bfd_signed_vma offset;
11819
      /* TLS stubs are arm mode.  The original symbol is a
11820
         data object, so branch_type is bogus.  */
11821
0
      branch_type = ST_BRANCH_TO_ARM;
11822
0
      enum elf32_arm_stub_type stub_type
11823
0
        = arm_type_of_stub (info, input_section, rel,
11824
0
          st_type, &branch_type,
11825
0
          (struct elf32_arm_link_hash_entry *)h,
11826
0
          globals->tls_trampoline, globals->root.splt,
11827
0
          input_bfd, sym_name);
11828
11829
0
      if (stub_type != arm_stub_none)
11830
0
        {
11831
0
    struct elf32_arm_stub_hash_entry *stub_entry
11832
0
      = elf32_arm_get_stub_entry
11833
0
      (input_section, globals->root.splt, 0, rel,
11834
0
       globals, stub_type);
11835
0
    offset = (stub_entry->stub_offset
11836
0
        + stub_entry->stub_sec->output_offset
11837
0
        + stub_entry->stub_sec->output_section->vma);
11838
0
        }
11839
0
      else
11840
0
        offset = (globals->root.splt->output_section->vma
11841
0
      + globals->root.splt->output_offset
11842
0
      + globals->tls_trampoline);
11843
11844
0
      if (ELF32_R_TYPE (rel->r_info) == R_ARM_TLS_CALL)
11845
0
        {
11846
0
    unsigned long inst;
11847
11848
0
    offset -= (input_section->output_section->vma
11849
0
         + input_section->output_offset
11850
0
         + rel->r_offset + 8);
11851
11852
0
    inst = offset >> 2;
11853
0
    inst &= 0x00ffffff;
11854
0
    value = inst | (globals->use_blx ? 0xfa000000 : 0xeb000000);
11855
0
        }
11856
0
      else
11857
0
        {
11858
    /* Thumb blx encodes the offset in a complicated
11859
       fashion.  */
11860
0
    unsigned upper_insn, lower_insn;
11861
0
    unsigned neg;
11862
11863
0
    offset -= (input_section->output_section->vma
11864
0
         + input_section->output_offset
11865
0
         + rel->r_offset + 4);
11866
11867
0
    if (stub_type != arm_stub_none
11868
0
        && arm_stub_is_thumb (stub_type))
11869
0
      {
11870
0
        lower_insn = 0xd000;
11871
0
      }
11872
0
    else
11873
0
      {
11874
0
        lower_insn = 0xc000;
11875
        /* Round up the offset to a word boundary.  */
11876
0
        offset = (offset + 2) & ~2;
11877
0
      }
11878
11879
0
    neg = offset < 0;
11880
0
    upper_insn = (0xf000
11881
0
            | ((offset >> 12) & 0x3ff)
11882
0
            | (neg << 10));
11883
0
    lower_insn |= (((!((offset >> 23) & 1)) ^ neg) << 13)
11884
0
            | (((!((offset >> 22) & 1)) ^ neg) << 11)
11885
0
            | ((offset >> 1) & 0x7ff);
11886
0
    bfd_put_16 (input_bfd, upper_insn, hit_data);
11887
0
    bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
11888
0
    return bfd_reloc_ok;
11889
0
        }
11890
0
    }
11891
  /* These relocations needs special care, as besides the fact
11892
     they point somewhere in .gotplt, the addend must be
11893
     adjusted accordingly depending on the type of instruction
11894
     we refer to.  */
11895
0
  else if ((r_type == R_ARM_TLS_GOTDESC) && (tls_type & GOT_TLS_GDESC))
11896
0
    {
11897
0
      unsigned long data, insn;
11898
0
      unsigned thumb;
11899
11900
0
      data = bfd_get_signed_32 (input_bfd, hit_data);
11901
0
      thumb = data & 1;
11902
0
      data &= ~1ul;
11903
11904
0
      if (thumb)
11905
0
        {
11906
0
    insn = bfd_get_16 (input_bfd, contents + rel->r_offset - data);
11907
0
    if ((insn & 0xf000) == 0xf000 || (insn & 0xf800) == 0xe800)
11908
0
      insn = (insn << 16)
11909
0
        | bfd_get_16 (input_bfd,
11910
0
          contents + rel->r_offset - data + 2);
11911
0
    if ((insn & 0xf800c000) == 0xf000c000)
11912
      /* bl/blx */
11913
0
      value = -6;
11914
0
    else if ((insn & 0xffffff00) == 0x4400)
11915
      /* add */
11916
0
      value = -5;
11917
0
    else
11918
0
      {
11919
0
        _bfd_error_handler
11920
          /* xgettext:c-format */
11921
0
          (_("%pB(%pA+%#" PRIx64 "): "
11922
0
       "unexpected %s instruction '%#lx' "
11923
0
       "referenced by TLS_GOTDESC"),
11924
0
           input_bfd, input_section, (uint64_t) rel->r_offset,
11925
0
           "Thumb", insn);
11926
0
        return bfd_reloc_notsupported;
11927
0
      }
11928
0
        }
11929
0
      else
11930
0
        {
11931
0
    insn = bfd_get_32 (input_bfd, contents + rel->r_offset - data);
11932
11933
0
    switch (insn >> 24)
11934
0
      {
11935
0
      case 0xeb:  /* bl */
11936
0
      case 0xfa:  /* blx */
11937
0
        value = -4;
11938
0
        break;
11939
11940
0
      case 0xe0:  /* add */
11941
0
        value = -8;
11942
0
        break;
11943
11944
0
      default:
11945
0
        _bfd_error_handler
11946
          /* xgettext:c-format */
11947
0
          (_("%pB(%pA+%#" PRIx64 "): "
11948
0
       "unexpected %s instruction '%#lx' "
11949
0
       "referenced by TLS_GOTDESC"),
11950
0
           input_bfd, input_section, (uint64_t) rel->r_offset,
11951
0
           "ARM", insn);
11952
0
        return bfd_reloc_notsupported;
11953
0
      }
11954
0
        }
11955
11956
0
      value += ((globals->root.sgotplt->output_section->vma
11957
0
           + globals->root.sgotplt->output_offset + off)
11958
0
          - (input_section->output_section->vma
11959
0
       + input_section->output_offset
11960
0
       + rel->r_offset)
11961
0
          + globals->sgotplt_jump_table_size);
11962
0
    }
11963
0
  else
11964
0
    value = ((globals->root.sgot->output_section->vma
11965
0
        + globals->root.sgot->output_offset + off)
11966
0
       - (input_section->output_section->vma
11967
0
          + input_section->output_offset + rel->r_offset));
11968
11969
0
  if (globals->fdpic_p && (r_type == R_ARM_TLS_GD32_FDPIC ||
11970
0
         r_type == R_ARM_TLS_IE32_FDPIC))
11971
0
    {
11972
      /* For FDPIC relocations, resolve to the offset of the GOT
11973
         entry from the start of GOT.  */
11974
0
      bfd_put_32 (output_bfd,
11975
0
      globals->root.sgot->output_offset + off,
11976
0
      contents + rel->r_offset);
11977
11978
0
      return bfd_reloc_ok;
11979
0
    }
11980
0
  else
11981
0
    {
11982
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
11983
0
               contents, rel->r_offset, value,
11984
0
               rel->r_addend);
11985
0
    }
11986
0
      }
11987
11988
0
    case R_ARM_TLS_LE32:
11989
0
      if (bfd_link_dll (info))
11990
0
  {
11991
0
    _bfd_error_handler
11992
      /* xgettext:c-format */
11993
0
      (_("%pB(%pA+%#" PRIx64 "): %s relocation not permitted "
11994
0
         "in shared object"),
11995
0
       input_bfd, input_section, (uint64_t) rel->r_offset, howto->name);
11996
0
    return bfd_reloc_notsupported;
11997
0
  }
11998
0
      else
11999
0
  value = tpoff (info, value);
12000
12001
0
      return _bfd_final_link_relocate (howto, input_bfd, input_section,
12002
0
               contents, rel->r_offset, value,
12003
0
               rel->r_addend);
12004
12005
0
    case R_ARM_V4BX:
12006
0
      if (globals->fix_v4bx)
12007
0
  {
12008
0
    bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12009
12010
    /* Ensure that we have a BX instruction.  */
12011
0
    BFD_ASSERT ((insn & 0x0ffffff0) == 0x012fff10);
12012
12013
0
    if (globals->fix_v4bx == 2 && (insn & 0xf) != 0xf)
12014
0
      {
12015
        /* Branch to veneer.  */
12016
0
        bfd_vma glue_addr;
12017
0
        glue_addr = elf32_arm_bx_glue (info, insn & 0xf);
12018
0
        glue_addr -= input_section->output_section->vma
12019
0
         + input_section->output_offset
12020
0
         + rel->r_offset + 8;
12021
0
        insn = (insn & 0xf0000000) | 0x0a000000
12022
0
         | ((glue_addr >> 2) & 0x00ffffff);
12023
0
      }
12024
0
    else
12025
0
      {
12026
        /* Preserve Rm (lowest four bits) and the condition code
12027
     (highest four bits). Other bits encode MOV PC,Rm.  */
12028
0
        insn = (insn & 0xf000000f) | 0x01a0f000;
12029
0
      }
12030
12031
0
    bfd_put_32 (input_bfd, insn, hit_data);
12032
0
  }
12033
0
      return bfd_reloc_ok;
12034
12035
0
    case R_ARM_MOVW_ABS_NC:
12036
0
    case R_ARM_MOVT_ABS:
12037
0
    case R_ARM_MOVW_PREL_NC:
12038
0
    case R_ARM_MOVT_PREL:
12039
    /* Until we properly support segment-base-relative addressing then
12040
       we assume the segment base to be zero, as for the group relocations.
12041
       Thus R_ARM_MOVW_BREL_NC has the same semantics as R_ARM_MOVW_ABS_NC
12042
       and R_ARM_MOVT_BREL has the same semantics as R_ARM_MOVT_ABS.  */
12043
0
    case R_ARM_MOVW_BREL_NC:
12044
0
    case R_ARM_MOVW_BREL:
12045
0
    case R_ARM_MOVT_BREL:
12046
0
      {
12047
0
  bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12048
12049
0
  if (globals->use_rel)
12050
0
    {
12051
0
      addend = ((insn >> 4) & 0xf000) | (insn & 0xfff);
12052
0
      signed_addend = (addend ^ 0x8000) - 0x8000;
12053
0
    }
12054
12055
0
  value += signed_addend;
12056
12057
0
  if (r_type == R_ARM_MOVW_PREL_NC || r_type == R_ARM_MOVT_PREL)
12058
0
    value -= (input_section->output_section->vma
12059
0
        + input_section->output_offset + rel->r_offset);
12060
12061
0
  if (r_type == R_ARM_MOVW_BREL && value >= 0x10000)
12062
0
    return bfd_reloc_overflow;
12063
12064
0
  if (branch_type == ST_BRANCH_TO_THUMB)
12065
0
    value |= 1;
12066
12067
0
  if (r_type == R_ARM_MOVT_ABS || r_type == R_ARM_MOVT_PREL
12068
0
      || r_type == R_ARM_MOVT_BREL)
12069
0
    value >>= 16;
12070
12071
0
  insn &= 0xfff0f000;
12072
0
  insn |= value & 0xfff;
12073
0
  insn |= (value & 0xf000) << 4;
12074
0
  bfd_put_32 (input_bfd, insn, hit_data);
12075
0
      }
12076
0
      return bfd_reloc_ok;
12077
12078
0
    case R_ARM_THM_MOVW_ABS_NC:
12079
0
    case R_ARM_THM_MOVT_ABS:
12080
0
    case R_ARM_THM_MOVW_PREL_NC:
12081
0
    case R_ARM_THM_MOVT_PREL:
12082
    /* Until we properly support segment-base-relative addressing then
12083
       we assume the segment base to be zero, as for the above relocations.
12084
       Thus R_ARM_THM_MOVW_BREL_NC has the same semantics as
12085
       R_ARM_THM_MOVW_ABS_NC and R_ARM_THM_MOVT_BREL has the same semantics
12086
       as R_ARM_THM_MOVT_ABS.  */
12087
0
    case R_ARM_THM_MOVW_BREL_NC:
12088
0
    case R_ARM_THM_MOVW_BREL:
12089
0
    case R_ARM_THM_MOVT_BREL:
12090
0
      {
12091
0
  bfd_vma insn;
12092
12093
0
  insn = bfd_get_16 (input_bfd, hit_data) << 16;
12094
0
  insn |= bfd_get_16 (input_bfd, hit_data + 2);
12095
12096
0
  if (globals->use_rel)
12097
0
    {
12098
0
      addend = ((insn >> 4)  & 0xf000)
12099
0
       | ((insn >> 15) & 0x0800)
12100
0
       | ((insn >> 4)  & 0x0700)
12101
0
       | (insn     & 0x00ff);
12102
0
      signed_addend = (addend ^ 0x8000) - 0x8000;
12103
0
    }
12104
12105
0
  value += signed_addend;
12106
12107
0
  if (r_type == R_ARM_THM_MOVW_PREL_NC || r_type == R_ARM_THM_MOVT_PREL)
12108
0
    value -= (input_section->output_section->vma
12109
0
        + input_section->output_offset + rel->r_offset);
12110
12111
0
  if (r_type == R_ARM_THM_MOVW_BREL && value >= 0x10000)
12112
0
    return bfd_reloc_overflow;
12113
12114
0
  if (branch_type == ST_BRANCH_TO_THUMB)
12115
0
    value |= 1;
12116
12117
0
  if (r_type == R_ARM_THM_MOVT_ABS || r_type == R_ARM_THM_MOVT_PREL
12118
0
      || r_type == R_ARM_THM_MOVT_BREL)
12119
0
    value >>= 16;
12120
12121
0
  insn &= 0xfbf08f00;
12122
0
  insn |= (value & 0xf000) << 4;
12123
0
  insn |= (value & 0x0800) << 15;
12124
0
  insn |= (value & 0x0700) << 4;
12125
0
  insn |= (value & 0x00ff);
12126
12127
0
  bfd_put_16 (input_bfd, insn >> 16, hit_data);
12128
0
  bfd_put_16 (input_bfd, insn & 0xffff, hit_data + 2);
12129
0
      }
12130
0
      return bfd_reloc_ok;
12131
12132
0
    case R_ARM_ALU_PC_G0_NC:
12133
0
    case R_ARM_ALU_PC_G1_NC:
12134
0
    case R_ARM_ALU_PC_G0:
12135
0
    case R_ARM_ALU_PC_G1:
12136
0
    case R_ARM_ALU_PC_G2:
12137
0
    case R_ARM_ALU_SB_G0_NC:
12138
0
    case R_ARM_ALU_SB_G1_NC:
12139
0
    case R_ARM_ALU_SB_G0:
12140
0
    case R_ARM_ALU_SB_G1:
12141
0
    case R_ARM_ALU_SB_G2:
12142
0
      {
12143
0
  bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12144
0
  bfd_vma pc = input_section->output_section->vma
12145
0
         + input_section->output_offset + rel->r_offset;
12146
  /* sb is the origin of the *segment* containing the symbol.  */
12147
0
  bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12148
0
  bfd_vma residual;
12149
0
  bfd_vma g_n;
12150
0
  bfd_signed_vma signed_value;
12151
0
  int group = 0;
12152
12153
  /* Determine which group of bits to select.  */
12154
0
  switch (r_type)
12155
0
    {
12156
0
    case R_ARM_ALU_PC_G0_NC:
12157
0
    case R_ARM_ALU_PC_G0:
12158
0
    case R_ARM_ALU_SB_G0_NC:
12159
0
    case R_ARM_ALU_SB_G0:
12160
0
      group = 0;
12161
0
      break;
12162
12163
0
    case R_ARM_ALU_PC_G1_NC:
12164
0
    case R_ARM_ALU_PC_G1:
12165
0
    case R_ARM_ALU_SB_G1_NC:
12166
0
    case R_ARM_ALU_SB_G1:
12167
0
      group = 1;
12168
0
      break;
12169
12170
0
    case R_ARM_ALU_PC_G2:
12171
0
    case R_ARM_ALU_SB_G2:
12172
0
      group = 2;
12173
0
      break;
12174
12175
0
    default:
12176
0
      abort ();
12177
0
    }
12178
12179
  /* If REL, extract the addend from the insn.  If RELA, it will
12180
     have already been fetched for us.  */
12181
0
  if (globals->use_rel)
12182
0
    {
12183
0
      int negative;
12184
0
      bfd_vma constant = insn & 0xff;
12185
0
      bfd_vma rotation = (insn & 0xf00) >> 8;
12186
12187
0
      if (rotation == 0)
12188
0
        signed_addend = constant;
12189
0
      else
12190
0
        {
12191
    /* Compensate for the fact that in the instruction, the
12192
       rotation is stored in multiples of 2 bits.  */
12193
0
    rotation *= 2;
12194
12195
    /* Rotate "constant" right by "rotation" bits.  */
12196
0
    signed_addend = (constant >> rotation) |
12197
0
        (constant << (8 * sizeof (bfd_vma) - rotation));
12198
0
        }
12199
12200
      /* Determine if the instruction is an ADD or a SUB.
12201
         (For REL, this determines the sign of the addend.)  */
12202
0
      negative = identify_add_or_sub (insn);
12203
0
      if (negative == 0)
12204
0
        {
12205
0
    _bfd_error_handler
12206
      /* xgettext:c-format */
12207
0
      (_("%pB(%pA+%#" PRIx64 "): only ADD or SUB instructions "
12208
0
         "are allowed for ALU group relocations"),
12209
0
      input_bfd, input_section, (uint64_t) rel->r_offset);
12210
0
    return bfd_reloc_overflow;
12211
0
        }
12212
12213
0
      signed_addend *= negative;
12214
0
    }
12215
12216
  /* Compute the value (X) to go in the place.  */
12217
0
  if (r_type == R_ARM_ALU_PC_G0_NC
12218
0
      || r_type == R_ARM_ALU_PC_G1_NC
12219
0
      || r_type == R_ARM_ALU_PC_G0
12220
0
      || r_type == R_ARM_ALU_PC_G1
12221
0
      || r_type == R_ARM_ALU_PC_G2)
12222
    /* PC relative.  */
12223
0
    signed_value = value - pc + signed_addend;
12224
0
  else
12225
    /* Section base relative.  */
12226
0
    signed_value = value - sb + signed_addend;
12227
12228
  /* If the target symbol is a Thumb function, then set the
12229
     Thumb bit in the address.  */
12230
0
  if (branch_type == ST_BRANCH_TO_THUMB)
12231
0
    signed_value |= 1;
12232
12233
  /* Calculate the value of the relevant G_n, in encoded
12234
     constant-with-rotation format.  */
12235
0
  g_n = calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12236
0
            group, &residual);
12237
12238
  /* Check for overflow if required.  */
12239
0
  if ((r_type == R_ARM_ALU_PC_G0
12240
0
       || r_type == R_ARM_ALU_PC_G1
12241
0
       || r_type == R_ARM_ALU_PC_G2
12242
0
       || r_type == R_ARM_ALU_SB_G0
12243
0
       || r_type == R_ARM_ALU_SB_G1
12244
0
       || r_type == R_ARM_ALU_SB_G2) && residual != 0)
12245
0
    {
12246
0
      _bfd_error_handler
12247
        /* xgettext:c-format */
12248
0
        (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12249
0
     "splitting %#" PRIx64 " for group relocation %s"),
12250
0
         input_bfd, input_section, (uint64_t) rel->r_offset,
12251
0
         (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12252
0
         howto->name);
12253
0
      return bfd_reloc_overflow;
12254
0
    }
12255
12256
  /* Mask out the value and the ADD/SUB part of the opcode; take care
12257
     not to destroy the S bit.  */
12258
0
  insn &= 0xff1ff000;
12259
12260
  /* Set the opcode according to whether the value to go in the
12261
     place is negative.  */
12262
0
  if (signed_value < 0)
12263
0
    insn |= 1 << 22;
12264
0
  else
12265
0
    insn |= 1 << 23;
12266
12267
  /* Encode the offset.  */
12268
0
  insn |= g_n;
12269
12270
0
  bfd_put_32 (input_bfd, insn, hit_data);
12271
0
      }
12272
0
      return bfd_reloc_ok;
12273
12274
0
    case R_ARM_LDR_PC_G0:
12275
0
    case R_ARM_LDR_PC_G1:
12276
0
    case R_ARM_LDR_PC_G2:
12277
0
    case R_ARM_LDR_SB_G0:
12278
0
    case R_ARM_LDR_SB_G1:
12279
0
    case R_ARM_LDR_SB_G2:
12280
0
      {
12281
0
  bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12282
0
  bfd_vma pc = input_section->output_section->vma
12283
0
         + input_section->output_offset + rel->r_offset;
12284
  /* sb is the origin of the *segment* containing the symbol.  */
12285
0
  bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12286
0
  bfd_vma residual;
12287
0
  bfd_signed_vma signed_value;
12288
0
  int group = 0;
12289
12290
  /* Determine which groups of bits to calculate.  */
12291
0
  switch (r_type)
12292
0
    {
12293
0
    case R_ARM_LDR_PC_G0:
12294
0
    case R_ARM_LDR_SB_G0:
12295
0
      group = 0;
12296
0
      break;
12297
12298
0
    case R_ARM_LDR_PC_G1:
12299
0
    case R_ARM_LDR_SB_G1:
12300
0
      group = 1;
12301
0
      break;
12302
12303
0
    case R_ARM_LDR_PC_G2:
12304
0
    case R_ARM_LDR_SB_G2:
12305
0
      group = 2;
12306
0
      break;
12307
12308
0
    default:
12309
0
      abort ();
12310
0
    }
12311
12312
  /* If REL, extract the addend from the insn.  If RELA, it will
12313
     have already been fetched for us.  */
12314
0
  if (globals->use_rel)
12315
0
    {
12316
0
      int negative = (insn & (1 << 23)) ? 1 : -1;
12317
0
      signed_addend = negative * (insn & 0xfff);
12318
0
    }
12319
12320
  /* Compute the value (X) to go in the place.  */
12321
0
  if (r_type == R_ARM_LDR_PC_G0
12322
0
      || r_type == R_ARM_LDR_PC_G1
12323
0
      || r_type == R_ARM_LDR_PC_G2)
12324
    /* PC relative.  */
12325
0
    signed_value = value - pc + signed_addend;
12326
0
  else
12327
    /* Section base relative.  */
12328
0
    signed_value = value - sb + signed_addend;
12329
12330
  /* Calculate the value of the relevant G_{n-1} to obtain
12331
     the residual at that stage.  */
12332
0
  calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12333
0
            group - 1, &residual);
12334
12335
  /* Check for overflow.  */
12336
0
  if (residual >= 0x1000)
12337
0
    {
12338
0
      _bfd_error_handler
12339
        /* xgettext:c-format */
12340
0
        (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12341
0
     "splitting %#" PRIx64 " for group relocation %s"),
12342
0
         input_bfd, input_section, (uint64_t) rel->r_offset,
12343
0
         (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12344
0
         howto->name);
12345
0
      return bfd_reloc_overflow;
12346
0
    }
12347
12348
  /* Mask out the value and U bit.  */
12349
0
  insn &= 0xff7ff000;
12350
12351
  /* Set the U bit if the value to go in the place is non-negative.  */
12352
0
  if (signed_value >= 0)
12353
0
    insn |= 1 << 23;
12354
12355
  /* Encode the offset.  */
12356
0
  insn |= residual;
12357
12358
0
  bfd_put_32 (input_bfd, insn, hit_data);
12359
0
      }
12360
0
      return bfd_reloc_ok;
12361
12362
0
    case R_ARM_LDRS_PC_G0:
12363
0
    case R_ARM_LDRS_PC_G1:
12364
0
    case R_ARM_LDRS_PC_G2:
12365
0
    case R_ARM_LDRS_SB_G0:
12366
0
    case R_ARM_LDRS_SB_G1:
12367
0
    case R_ARM_LDRS_SB_G2:
12368
0
      {
12369
0
  bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12370
0
  bfd_vma pc = input_section->output_section->vma
12371
0
         + input_section->output_offset + rel->r_offset;
12372
  /* sb is the origin of the *segment* containing the symbol.  */
12373
0
  bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12374
0
  bfd_vma residual;
12375
0
  bfd_signed_vma signed_value;
12376
0
  int group = 0;
12377
12378
  /* Determine which groups of bits to calculate.  */
12379
0
  switch (r_type)
12380
0
    {
12381
0
    case R_ARM_LDRS_PC_G0:
12382
0
    case R_ARM_LDRS_SB_G0:
12383
0
      group = 0;
12384
0
      break;
12385
12386
0
    case R_ARM_LDRS_PC_G1:
12387
0
    case R_ARM_LDRS_SB_G1:
12388
0
      group = 1;
12389
0
      break;
12390
12391
0
    case R_ARM_LDRS_PC_G2:
12392
0
    case R_ARM_LDRS_SB_G2:
12393
0
      group = 2;
12394
0
      break;
12395
12396
0
    default:
12397
0
      abort ();
12398
0
    }
12399
12400
  /* If REL, extract the addend from the insn.  If RELA, it will
12401
     have already been fetched for us.  */
12402
0
  if (globals->use_rel)
12403
0
    {
12404
0
      int negative = (insn & (1 << 23)) ? 1 : -1;
12405
0
      signed_addend = negative * (((insn & 0xf00) >> 4) + (insn & 0xf));
12406
0
    }
12407
12408
  /* Compute the value (X) to go in the place.  */
12409
0
  if (r_type == R_ARM_LDRS_PC_G0
12410
0
      || r_type == R_ARM_LDRS_PC_G1
12411
0
      || r_type == R_ARM_LDRS_PC_G2)
12412
    /* PC relative.  */
12413
0
    signed_value = value - pc + signed_addend;
12414
0
  else
12415
    /* Section base relative.  */
12416
0
    signed_value = value - sb + signed_addend;
12417
12418
  /* Calculate the value of the relevant G_{n-1} to obtain
12419
     the residual at that stage.  */
12420
0
  calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12421
0
            group - 1, &residual);
12422
12423
  /* Check for overflow.  */
12424
0
  if (residual >= 0x100)
12425
0
    {
12426
0
      _bfd_error_handler
12427
        /* xgettext:c-format */
12428
0
        (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12429
0
     "splitting %#" PRIx64 " for group relocation %s"),
12430
0
         input_bfd, input_section, (uint64_t) rel->r_offset,
12431
0
         (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12432
0
         howto->name);
12433
0
      return bfd_reloc_overflow;
12434
0
    }
12435
12436
  /* Mask out the value and U bit.  */
12437
0
  insn &= 0xff7ff0f0;
12438
12439
  /* Set the U bit if the value to go in the place is non-negative.  */
12440
0
  if (signed_value >= 0)
12441
0
    insn |= 1 << 23;
12442
12443
  /* Encode the offset.  */
12444
0
  insn |= ((residual & 0xf0) << 4) | (residual & 0xf);
12445
12446
0
  bfd_put_32 (input_bfd, insn, hit_data);
12447
0
      }
12448
0
      return bfd_reloc_ok;
12449
12450
0
    case R_ARM_LDC_PC_G0:
12451
0
    case R_ARM_LDC_PC_G1:
12452
0
    case R_ARM_LDC_PC_G2:
12453
0
    case R_ARM_LDC_SB_G0:
12454
0
    case R_ARM_LDC_SB_G1:
12455
0
    case R_ARM_LDC_SB_G2:
12456
0
      {
12457
0
  bfd_vma insn = bfd_get_32 (input_bfd, hit_data);
12458
0
  bfd_vma pc = input_section->output_section->vma
12459
0
         + input_section->output_offset + rel->r_offset;
12460
  /* sb is the origin of the *segment* containing the symbol.  */
12461
0
  bfd_vma sb = sym_sec ? sym_sec->output_section->vma : 0;
12462
0
  bfd_vma residual;
12463
0
  bfd_signed_vma signed_value;
12464
0
  int group = 0;
12465
12466
  /* Determine which groups of bits to calculate.  */
12467
0
  switch (r_type)
12468
0
    {
12469
0
    case R_ARM_LDC_PC_G0:
12470
0
    case R_ARM_LDC_SB_G0:
12471
0
      group = 0;
12472
0
      break;
12473
12474
0
    case R_ARM_LDC_PC_G1:
12475
0
    case R_ARM_LDC_SB_G1:
12476
0
      group = 1;
12477
0
      break;
12478
12479
0
    case R_ARM_LDC_PC_G2:
12480
0
    case R_ARM_LDC_SB_G2:
12481
0
      group = 2;
12482
0
      break;
12483
12484
0
    default:
12485
0
      abort ();
12486
0
    }
12487
12488
  /* If REL, extract the addend from the insn.  If RELA, it will
12489
     have already been fetched for us.  */
12490
0
  if (globals->use_rel)
12491
0
    {
12492
0
      int negative = (insn & (1 << 23)) ? 1 : -1;
12493
0
      signed_addend = negative * ((insn & 0xff) << 2);
12494
0
    }
12495
12496
  /* Compute the value (X) to go in the place.  */
12497
0
  if (r_type == R_ARM_LDC_PC_G0
12498
0
      || r_type == R_ARM_LDC_PC_G1
12499
0
      || r_type == R_ARM_LDC_PC_G2)
12500
    /* PC relative.  */
12501
0
    signed_value = value - pc + signed_addend;
12502
0
  else
12503
    /* Section base relative.  */
12504
0
    signed_value = value - sb + signed_addend;
12505
12506
  /* Calculate the value of the relevant G_{n-1} to obtain
12507
     the residual at that stage.  */
12508
0
  calculate_group_reloc_mask (signed_value < 0 ? - signed_value : signed_value,
12509
0
            group - 1, &residual);
12510
12511
  /* Check for overflow.  (The absolute value to go in the place must be
12512
     divisible by four and, after having been divided by four, must
12513
     fit in eight bits.)  */
12514
0
  if ((residual & 0x3) != 0 || residual >= 0x400)
12515
0
    {
12516
0
      _bfd_error_handler
12517
        /* xgettext:c-format */
12518
0
        (_("%pB(%pA+%#" PRIx64 "): overflow whilst "
12519
0
     "splitting %#" PRIx64 " for group relocation %s"),
12520
0
         input_bfd, input_section, (uint64_t) rel->r_offset,
12521
0
         (uint64_t) (signed_value < 0 ? -signed_value : signed_value),
12522
0
         howto->name);
12523
0
      return bfd_reloc_overflow;
12524
0
    }
12525
12526
  /* Mask out the value and U bit.  */
12527
0
  insn &= 0xff7fff00;
12528
12529
  /* Set the U bit if the value to go in the place is non-negative.  */
12530
0
  if (signed_value >= 0)
12531
0
    insn |= 1 << 23;
12532
12533
  /* Encode the offset.  */
12534
0
  insn |= residual >> 2;
12535
12536
0
  bfd_put_32 (input_bfd, insn, hit_data);
12537
0
      }
12538
0
      return bfd_reloc_ok;
12539
12540
0
    case R_ARM_THM_ALU_ABS_G0_NC:
12541
0
    case R_ARM_THM_ALU_ABS_G1_NC:
12542
0
    case R_ARM_THM_ALU_ABS_G2_NC:
12543
0
    case R_ARM_THM_ALU_ABS_G3_NC:
12544
0
  {
12545
0
      static const int shift_array[4] = {0, 8, 16, 24};
12546
0
      bfd_vma insn = bfd_get_16 (input_bfd, hit_data);
12547
0
      bfd_vma addr = value;
12548
0
      int shift = shift_array[r_type - R_ARM_THM_ALU_ABS_G0_NC];
12549
12550
      /* Compute address.  */
12551
0
      if (globals->use_rel)
12552
0
    signed_addend = insn & 0xff;
12553
0
      addr += signed_addend;
12554
0
      if (branch_type == ST_BRANCH_TO_THUMB)
12555
0
    addr |= 1;
12556
      /* Clean imm8 insn.  */
12557
0
      insn &= 0xff00;
12558
      /* And update with correct part of address.  */
12559
0
      insn |= (addr >> shift) & 0xff;
12560
      /* Update insn.  */
12561
0
      bfd_put_16 (input_bfd, insn, hit_data);
12562
0
  }
12563
12564
0
  *unresolved_reloc_p = false;
12565
0
  return bfd_reloc_ok;
12566
12567
0
    case R_ARM_GOTOFFFUNCDESC:
12568
0
      {
12569
0
  if (h == NULL)
12570
0
    {
12571
0
      struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts (input_bfd);
12572
0
      int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12573
12574
0
      if (r_symndx >= elf32_arm_num_entries (input_bfd))
12575
0
        {
12576
0
    * error_message = _("local symbol index too big");
12577
0
    return bfd_reloc_dangerous;
12578
0
        }
12579
12580
0
      int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12581
0
      bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12582
0
      bfd_vma seg = -1;
12583
12584
0
      if (bfd_link_pic (info) && dynindx == 0)
12585
0
        {
12586
0
    * error_message = _("no dynamic index information available");
12587
0
    return bfd_reloc_dangerous;
12588
0
        }
12589
12590
      /* Resolve relocation.  */
12591
0
      bfd_put_32 (output_bfd, (offset + sgot->output_offset)
12592
0
           , contents + rel->r_offset);
12593
      /* Emit R_ARM_FUNCDESC_VALUE or two fixups on funcdesc if
12594
         not done yet.  */
12595
0
      arm_elf_fill_funcdesc (output_bfd, info,
12596
0
           &local_fdpic_cnts[r_symndx].funcdesc_offset,
12597
0
           dynindx, offset, addr, dynreloc_value, seg);
12598
0
    }
12599
0
  else
12600
0
    {
12601
0
      int dynindx;
12602
0
      int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12603
0
      bfd_vma addr;
12604
0
      bfd_vma seg = -1;
12605
12606
      /* For static binaries, sym_sec can be null.  */
12607
0
      if (sym_sec)
12608
0
        {
12609
0
    dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12610
0
    addr = dynreloc_value - sym_sec->output_section->vma;
12611
0
        }
12612
0
      else
12613
0
        {
12614
0
    dynindx = 0;
12615
0
    addr = 0;
12616
0
        }
12617
12618
0
      if (bfd_link_pic (info) && dynindx == 0)
12619
0
        {
12620
0
    * error_message = _("no dynamic index information available");
12621
0
    return bfd_reloc_dangerous;
12622
0
        }
12623
12624
      /* This case cannot occur since funcdesc is allocated by
12625
         the dynamic loader so we cannot resolve the relocation.  */
12626
0
      if (h->dynindx != -1)
12627
0
        {
12628
0
    * error_message = _("invalid dynamic index");
12629
0
    return bfd_reloc_dangerous;
12630
0
        }
12631
12632
      /* Resolve relocation.  */
12633
0
      bfd_put_32 (output_bfd, (offset + sgot->output_offset),
12634
0
            contents + rel->r_offset);
12635
      /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet.  */
12636
0
      arm_elf_fill_funcdesc (output_bfd, info,
12637
0
           &eh->fdpic_cnts.funcdesc_offset,
12638
0
           dynindx, offset, addr, dynreloc_value, seg);
12639
0
    }
12640
0
      }
12641
0
      *unresolved_reloc_p = false;
12642
0
      return bfd_reloc_ok;
12643
12644
0
    case R_ARM_GOTFUNCDESC:
12645
0
      {
12646
0
  if (h != NULL)
12647
0
    {
12648
0
      Elf_Internal_Rela outrel;
12649
12650
      /* Resolve relocation.  */
12651
0
      bfd_put_32 (output_bfd, ((eh->fdpic_cnts.gotfuncdesc_offset & ~1)
12652
0
             + sgot->output_offset),
12653
0
      contents + rel->r_offset);
12654
      /* Add funcdesc and associated R_ARM_FUNCDESC_VALUE.  */
12655
0
      if (h->dynindx == -1)
12656
0
        {
12657
0
    int dynindx;
12658
0
    int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12659
0
    bfd_vma addr;
12660
0
    bfd_vma seg = -1;
12661
12662
    /* For static binaries sym_sec can be null.  */
12663
0
    if (sym_sec)
12664
0
      {
12665
0
        dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12666
0
        addr = dynreloc_value - sym_sec->output_section->vma;
12667
0
      }
12668
0
    else
12669
0
      {
12670
0
        dynindx = 0;
12671
0
        addr = 0;
12672
0
      }
12673
12674
    /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet.  */
12675
0
    arm_elf_fill_funcdesc (output_bfd, info,
12676
0
               &eh->fdpic_cnts.funcdesc_offset,
12677
0
               dynindx, offset, addr, dynreloc_value, seg);
12678
0
        }
12679
12680
      /* Add a dynamic relocation on GOT entry if not already done.  */
12681
0
      if ((eh->fdpic_cnts.gotfuncdesc_offset & 1) == 0)
12682
0
        {
12683
0
    if (h->dynindx == -1)
12684
0
      {
12685
0
        outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12686
0
        if (h->root.type == bfd_link_hash_undefweak)
12687
0
          bfd_put_32 (output_bfd, 0, sgot->contents
12688
0
          + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12689
0
        else
12690
0
          bfd_put_32 (output_bfd, sgot->output_section->vma
12691
0
          + sgot->output_offset
12692
0
          + (eh->fdpic_cnts.funcdesc_offset & ~1),
12693
0
          sgot->contents
12694
0
          + (eh->fdpic_cnts.gotfuncdesc_offset & ~1));
12695
0
      }
12696
0
    else
12697
0
      {
12698
0
        outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12699
0
      }
12700
0
    outrel.r_offset = sgot->output_section->vma
12701
0
      + sgot->output_offset
12702
0
      + (eh->fdpic_cnts.gotfuncdesc_offset & ~1);
12703
0
    outrel.r_addend = 0;
12704
0
    if (h->dynindx == -1 && !bfd_link_pic (info))
12705
0
      if (h->root.type == bfd_link_hash_undefweak)
12706
0
        arm_elf_add_rofixup (output_bfd, globals->srofixup, -1);
12707
0
      else
12708
0
        arm_elf_add_rofixup (output_bfd, globals->srofixup,
12709
0
           outrel.r_offset);
12710
0
    else
12711
0
      elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12712
0
    eh->fdpic_cnts.gotfuncdesc_offset |= 1;
12713
0
        }
12714
0
    }
12715
0
  else
12716
0
    {
12717
      /* Such relocation on static function should not have been
12718
         emitted by the compiler.  */
12719
0
      return bfd_reloc_notsupported;
12720
0
    }
12721
0
      }
12722
0
      *unresolved_reloc_p = false;
12723
0
      return bfd_reloc_ok;
12724
12725
0
    case R_ARM_FUNCDESC:
12726
0
      {
12727
0
  if (h == NULL)
12728
0
    {
12729
0
      struct fdpic_local *local_fdpic_cnts = elf32_arm_local_fdpic_cnts (input_bfd);
12730
0
      Elf_Internal_Rela outrel;
12731
0
      int dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12732
12733
0
      if (r_symndx >= elf32_arm_num_entries (input_bfd))
12734
0
        {
12735
0
    * error_message = _("local symbol index too big");
12736
0
    return bfd_reloc_dangerous;
12737
0
        }
12738
12739
0
      int offset = local_fdpic_cnts[r_symndx].funcdesc_offset & ~1;
12740
0
      bfd_vma addr = dynreloc_value - sym_sec->output_section->vma;
12741
0
      bfd_vma seg = -1;
12742
12743
0
      if (bfd_link_pic (info) && dynindx == 0)
12744
0
        {
12745
0
    * error_message = _("dynamic index information not available");
12746
0
    return bfd_reloc_dangerous;
12747
0
        }
12748
12749
      /* Replace static FUNCDESC relocation with a
12750
         R_ARM_RELATIVE dynamic relocation or with a rofixup for
12751
         executable.  */
12752
0
      outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12753
0
      outrel.r_offset = input_section->output_section->vma
12754
0
        + input_section->output_offset + rel->r_offset;
12755
0
      outrel.r_addend = 0;
12756
0
      if (bfd_link_pic (info))
12757
0
        elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12758
0
      else
12759
0
        arm_elf_add_rofixup (output_bfd, globals->srofixup, outrel.r_offset);
12760
12761
0
      bfd_put_32 (input_bfd, sgot->output_section->vma
12762
0
      + sgot->output_offset + offset, hit_data);
12763
12764
      /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet.  */
12765
0
      arm_elf_fill_funcdesc (output_bfd, info,
12766
0
           &local_fdpic_cnts[r_symndx].funcdesc_offset,
12767
0
           dynindx, offset, addr, dynreloc_value, seg);
12768
0
    }
12769
0
  else
12770
0
    {
12771
0
      if (h->dynindx == -1)
12772
0
        {
12773
0
    int dynindx;
12774
0
    int offset = eh->fdpic_cnts.funcdesc_offset & ~1;
12775
0
    bfd_vma addr;
12776
0
    bfd_vma seg = -1;
12777
0
    Elf_Internal_Rela outrel;
12778
12779
    /* For static binaries sym_sec can be null.  */
12780
0
    if (sym_sec)
12781
0
      {
12782
0
        dynindx = elf_section_data (sym_sec->output_section)->dynindx;
12783
0
        addr = dynreloc_value - sym_sec->output_section->vma;
12784
0
      }
12785
0
    else
12786
0
      {
12787
0
        dynindx = 0;
12788
0
        addr = 0;
12789
0
      }
12790
12791
0
    if (bfd_link_pic (info) && dynindx == 0)
12792
0
      abort ();
12793
12794
    /* Replace static FUNCDESC relocation with a
12795
       R_ARM_RELATIVE dynamic relocation.  */
12796
0
    outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
12797
0
    outrel.r_offset = input_section->output_section->vma
12798
0
      + input_section->output_offset + rel->r_offset;
12799
0
    outrel.r_addend = 0;
12800
0
    if (bfd_link_pic (info))
12801
0
      elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12802
0
    else
12803
0
      arm_elf_add_rofixup (output_bfd, globals->srofixup, outrel.r_offset);
12804
12805
0
    bfd_put_32 (input_bfd, sgot->output_section->vma
12806
0
          + sgot->output_offset + offset, hit_data);
12807
12808
    /* Emit R_ARM_FUNCDESC_VALUE on funcdesc if not done yet.  */
12809
0
    arm_elf_fill_funcdesc (output_bfd, info,
12810
0
               &eh->fdpic_cnts.funcdesc_offset,
12811
0
               dynindx, offset, addr, dynreloc_value, seg);
12812
0
        }
12813
0
      else
12814
0
        {
12815
0
    Elf_Internal_Rela outrel;
12816
12817
    /* Add a dynamic relocation.  */
12818
0
    outrel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_FUNCDESC);
12819
0
    outrel.r_offset = input_section->output_section->vma
12820
0
      + input_section->output_offset + rel->r_offset;
12821
0
    outrel.r_addend = 0;
12822
0
    elf32_arm_add_dynreloc (output_bfd, info, srelgot, &outrel);
12823
0
        }
12824
0
    }
12825
0
      }
12826
0
      *unresolved_reloc_p = false;
12827
0
      return bfd_reloc_ok;
12828
12829
0
    case R_ARM_THM_BF16:
12830
0
      {
12831
0
  bfd_vma relocation;
12832
0
  bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12833
0
  bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12834
12835
0
  if (globals->use_rel)
12836
0
    {
12837
0
      bfd_vma immA  = (upper_insn & 0x001f);
12838
0
      bfd_vma immB  = (lower_insn & 0x07fe) >> 1;
12839
0
      bfd_vma immC  = (lower_insn & 0x0800) >> 11;
12840
0
      addend  = (immA << 12);
12841
0
      addend |= (immB << 2);
12842
0
      addend |= (immC << 1);
12843
0
      addend |= 1;
12844
      /* Sign extend.  */
12845
0
      signed_addend = (addend & 0x10000) ? addend - (1 << 17) : addend;
12846
0
    }
12847
12848
0
  relocation  = value + signed_addend;
12849
0
  relocation -= (input_section->output_section->vma
12850
0
           + input_section->output_offset
12851
0
           + rel->r_offset);
12852
12853
  /* Put RELOCATION back into the insn.  */
12854
0
  {
12855
0
    bfd_vma immA = (relocation & 0x0001f000) >> 12;
12856
0
    bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12857
0
    bfd_vma immC = (relocation & 0x00000002) >> 1;
12858
12859
0
    upper_insn = (upper_insn & 0xffe0) | immA;
12860
0
    lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12861
0
  }
12862
12863
  /* Put the relocated value back in the object file:  */
12864
0
  bfd_put_16 (input_bfd, upper_insn, hit_data);
12865
0
  bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12866
12867
0
  return bfd_reloc_ok;
12868
0
      }
12869
12870
0
    case R_ARM_THM_BF12:
12871
0
      {
12872
0
  bfd_vma relocation;
12873
0
  bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12874
0
  bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12875
12876
0
  if (globals->use_rel)
12877
0
    {
12878
0
      bfd_vma immA  = (upper_insn & 0x0001);
12879
0
      bfd_vma immB  = (lower_insn & 0x07fe) >> 1;
12880
0
      bfd_vma immC  = (lower_insn & 0x0800) >> 11;
12881
0
      addend  = (immA << 12);
12882
0
      addend |= (immB << 2);
12883
0
      addend |= (immC << 1);
12884
0
      addend |= 1;
12885
      /* Sign extend.  */
12886
0
      addend = (addend & 0x1000) ? addend - (1 << 13) : addend;
12887
0
      signed_addend = addend;
12888
0
    }
12889
12890
0
  relocation  = value + signed_addend;
12891
0
  relocation -= (input_section->output_section->vma
12892
0
           + input_section->output_offset
12893
0
           + rel->r_offset);
12894
12895
  /* Put RELOCATION back into the insn.  */
12896
0
  {
12897
0
    bfd_vma immA = (relocation & 0x00001000) >> 12;
12898
0
    bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12899
0
    bfd_vma immC = (relocation & 0x00000002) >> 1;
12900
12901
0
    upper_insn = (upper_insn & 0xfffe) | immA;
12902
0
    lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12903
0
  }
12904
12905
  /* Put the relocated value back in the object file:  */
12906
0
  bfd_put_16 (input_bfd, upper_insn, hit_data);
12907
0
  bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12908
12909
0
  return bfd_reloc_ok;
12910
0
      }
12911
12912
0
    case R_ARM_THM_BF18:
12913
0
      {
12914
0
  bfd_vma relocation;
12915
0
  bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
12916
0
  bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
12917
12918
0
  if (globals->use_rel)
12919
0
    {
12920
0
      bfd_vma immA  = (upper_insn & 0x007f);
12921
0
      bfd_vma immB  = (lower_insn & 0x07fe) >> 1;
12922
0
      bfd_vma immC  = (lower_insn & 0x0800) >> 11;
12923
0
      addend  = (immA << 12);
12924
0
      addend |= (immB << 2);
12925
0
      addend |= (immC << 1);
12926
0
      addend |= 1;
12927
      /* Sign extend.  */
12928
0
      addend = (addend & 0x40000) ? addend - (1 << 19) : addend;
12929
0
      signed_addend = addend;
12930
0
    }
12931
12932
0
  relocation  = value + signed_addend;
12933
0
  relocation -= (input_section->output_section->vma
12934
0
           + input_section->output_offset
12935
0
           + rel->r_offset);
12936
12937
  /* Put RELOCATION back into the insn.  */
12938
0
  {
12939
0
    bfd_vma immA = (relocation & 0x0007f000) >> 12;
12940
0
    bfd_vma immB = (relocation & 0x00000ffc) >> 2;
12941
0
    bfd_vma immC = (relocation & 0x00000002) >> 1;
12942
12943
0
    upper_insn = (upper_insn & 0xff80) | immA;
12944
0
    lower_insn = (lower_insn & 0xf001) | (immC << 11) | (immB << 1);
12945
0
  }
12946
12947
  /* Put the relocated value back in the object file:  */
12948
0
  bfd_put_16 (input_bfd, upper_insn, hit_data);
12949
0
  bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
12950
12951
0
  return bfd_reloc_ok;
12952
0
      }
12953
12954
0
    default:
12955
0
      return bfd_reloc_notsupported;
12956
0
    }
12957
0
}
12958
12959
/* Add INCREMENT to the reloc (of type HOWTO) at ADDRESS.  */
12960
static void
12961
arm_add_to_rel (bfd *      abfd,
12962
    bfd_byte *     address,
12963
    reloc_howto_type * howto,
12964
    bfd_signed_vma     increment)
12965
0
{
12966
0
  bfd_signed_vma addend;
12967
12968
0
  if (howto->type == R_ARM_THM_CALL
12969
0
      || howto->type == R_ARM_THM_JUMP24)
12970
0
    {
12971
0
      int upper_insn, lower_insn;
12972
0
      int upper, lower;
12973
12974
0
      upper_insn = bfd_get_16 (abfd, address);
12975
0
      lower_insn = bfd_get_16 (abfd, address + 2);
12976
0
      upper = upper_insn & 0x7ff;
12977
0
      lower = lower_insn & 0x7ff;
12978
12979
0
      addend = (upper << 12) | (lower << 1);
12980
0
      addend += increment;
12981
0
      addend >>= 1;
12982
12983
0
      upper_insn = (upper_insn & 0xf800) | ((addend >> 11) & 0x7ff);
12984
0
      lower_insn = (lower_insn & 0xf800) | (addend & 0x7ff);
12985
12986
0
      bfd_put_16 (abfd, (bfd_vma) upper_insn, address);
12987
0
      bfd_put_16 (abfd, (bfd_vma) lower_insn, address + 2);
12988
0
    }
12989
0
  else
12990
0
    {
12991
0
      bfd_vma      contents;
12992
12993
0
      contents = bfd_get_32 (abfd, address);
12994
12995
      /* Get the (signed) value from the instruction.  */
12996
0
      addend = contents & howto->src_mask;
12997
0
      if (addend & ((howto->src_mask + 1) >> 1))
12998
0
  {
12999
0
    bfd_signed_vma mask;
13000
13001
0
    mask = -1;
13002
0
    mask &= ~ howto->src_mask;
13003
0
    addend |= mask;
13004
0
  }
13005
13006
      /* Add in the increment, (which is a byte value).  */
13007
0
      switch (howto->type)
13008
0
  {
13009
0
  default:
13010
0
    addend += increment;
13011
0
    break;
13012
13013
0
  case R_ARM_PC24:
13014
0
  case R_ARM_PLT32:
13015
0
  case R_ARM_CALL:
13016
0
  case R_ARM_JUMP24:
13017
0
    addend *= bfd_get_reloc_size (howto);
13018
0
    addend += increment;
13019
13020
    /* Should we check for overflow here ?  */
13021
13022
    /* Drop any undesired bits.  */
13023
0
    addend >>= howto->rightshift;
13024
0
    break;
13025
0
  }
13026
13027
0
      contents = (contents & ~ howto->dst_mask) | (addend & howto->dst_mask);
13028
13029
0
      bfd_put_32 (abfd, contents, address);
13030
0
    }
13031
0
}
13032
13033
#define IS_ARM_TLS_RELOC(R_TYPE)  \
13034
0
  ((R_TYPE) == R_ARM_TLS_GD32    \
13035
0
   || (R_TYPE) == R_ARM_TLS_GD32_FDPIC  \
13036
0
   || (R_TYPE) == R_ARM_TLS_LDO32  \
13037
0
   || (R_TYPE) == R_ARM_TLS_LDM32  \
13038
0
   || (R_TYPE) == R_ARM_TLS_LDM32_FDPIC  \
13039
0
   || (R_TYPE) == R_ARM_TLS_DTPOFF32  \
13040
0
   || (R_TYPE) == R_ARM_TLS_DTPMOD32  \
13041
0
   || (R_TYPE) == R_ARM_TLS_TPOFF32  \
13042
0
   || (R_TYPE) == R_ARM_TLS_LE32  \
13043
0
   || (R_TYPE) == R_ARM_TLS_IE32  \
13044
0
   || (R_TYPE) == R_ARM_TLS_IE32_FDPIC  \
13045
0
   || IS_ARM_TLS_GNU_RELOC (R_TYPE))
13046
13047
/* Specific set of relocations for the gnu tls dialect.  */
13048
#define IS_ARM_TLS_GNU_RELOC(R_TYPE)  \
13049
0
  ((R_TYPE) == R_ARM_TLS_GOTDESC  \
13050
0
   || (R_TYPE) == R_ARM_TLS_CALL  \
13051
0
   || (R_TYPE) == R_ARM_THM_TLS_CALL  \
13052
0
   || (R_TYPE) == R_ARM_TLS_DESCSEQ  \
13053
0
   || (R_TYPE) == R_ARM_THM_TLS_DESCSEQ)
13054
13055
/* Relocate an ARM ELF section.  */
13056
13057
static int
13058
elf32_arm_relocate_section (bfd *      output_bfd,
13059
          struct bfd_link_info * info,
13060
          bfd *      input_bfd,
13061
          asection *       input_section,
13062
          bfd_byte *       contents,
13063
          Elf_Internal_Rela *    relocs,
13064
          Elf_Internal_Sym *     local_syms,
13065
          asection **      local_sections)
13066
0
{
13067
0
  Elf_Internal_Shdr *symtab_hdr;
13068
0
  struct elf_link_hash_entry **sym_hashes;
13069
0
  Elf_Internal_Rela *rel;
13070
0
  Elf_Internal_Rela *relend;
13071
0
  const char *name;
13072
0
  struct elf32_arm_link_hash_table * globals;
13073
13074
0
  globals = elf32_arm_hash_table (info);
13075
0
  if (globals == NULL)
13076
0
    return false;
13077
13078
0
  symtab_hdr = & elf_symtab_hdr (input_bfd);
13079
0
  sym_hashes = elf_sym_hashes (input_bfd);
13080
13081
0
  rel = relocs;
13082
0
  relend = relocs + input_section->reloc_count;
13083
0
  for (; rel < relend; rel++)
13084
0
    {
13085
0
      int        r_type;
13086
0
      reloc_howto_type *     howto;
13087
0
      unsigned long      r_symndx;
13088
0
      Elf_Internal_Sym *     sym;
13089
0
      asection *       sec;
13090
0
      struct elf_link_hash_entry * h;
13091
0
      bfd_vma        relocation;
13092
0
      bfd_reloc_status_type    r;
13093
0
      arelent        bfd_reloc;
13094
0
      char         sym_type;
13095
0
      bool         unresolved_reloc = false;
13096
0
      char *error_message = NULL;
13097
13098
0
      r_symndx = ELF32_R_SYM (rel->r_info);
13099
0
      r_type   = ELF32_R_TYPE (rel->r_info);
13100
0
      r_type   = arm_real_reloc_type (globals, r_type);
13101
13102
0
      if (   r_type == R_ARM_GNU_VTENTRY
13103
0
    || r_type == R_ARM_GNU_VTINHERIT)
13104
0
  continue;
13105
13106
0
      howto = bfd_reloc.howto = elf32_arm_howto_from_type (r_type);
13107
13108
0
      if (howto == NULL)
13109
0
  return _bfd_unrecognized_reloc (input_bfd, input_section, r_type);
13110
13111
0
      h = NULL;
13112
0
      sym = NULL;
13113
0
      sec = NULL;
13114
13115
0
      if (r_symndx < symtab_hdr->sh_info)
13116
0
  {
13117
0
    sym = local_syms + r_symndx;
13118
0
    sym_type = ELF32_ST_TYPE (sym->st_info);
13119
0
    sec = local_sections[r_symndx];
13120
13121
    /* An object file might have a reference to a local
13122
       undefined symbol.  This is a daft object file, but we
13123
       should at least do something about it.  V4BX & NONE
13124
       relocations do not use the symbol and are explicitly
13125
       allowed to use the undefined symbol, so allow those.
13126
       Likewise for relocations against STN_UNDEF.  */
13127
0
    if (r_type != R_ARM_V4BX
13128
0
        && r_type != R_ARM_NONE
13129
0
        && r_symndx != STN_UNDEF
13130
0
        && bfd_is_und_section (sec)
13131
0
        && ELF_ST_BIND (sym->st_info) != STB_WEAK)
13132
0
      (*info->callbacks->undefined_symbol)
13133
0
        (info, bfd_elf_string_from_elf_section
13134
0
         (input_bfd, symtab_hdr->sh_link, sym->st_name),
13135
0
         input_bfd, input_section,
13136
0
         rel->r_offset, true);
13137
13138
0
    if (globals->use_rel)
13139
0
      {
13140
0
        relocation = (sec->output_section->vma
13141
0
          + sec->output_offset
13142
0
          + sym->st_value);
13143
0
        if (!bfd_link_relocatable (info)
13144
0
      && (sec->flags & SEC_MERGE)
13145
0
      && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13146
0
    {
13147
0
      asection *msec;
13148
0
      bfd_vma addend, value;
13149
13150
0
      switch (r_type)
13151
0
        {
13152
0
        case R_ARM_MOVW_ABS_NC:
13153
0
        case R_ARM_MOVT_ABS:
13154
0
          value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13155
0
          addend = ((value & 0xf0000) >> 4) | (value & 0xfff);
13156
0
          addend = (addend ^ 0x8000) - 0x8000;
13157
0
          break;
13158
13159
0
        case R_ARM_THM_MOVW_ABS_NC:
13160
0
        case R_ARM_THM_MOVT_ABS:
13161
0
          value = bfd_get_16 (input_bfd, contents + rel->r_offset)
13162
0
            << 16;
13163
0
          value |= bfd_get_16 (input_bfd,
13164
0
             contents + rel->r_offset + 2);
13165
0
          addend = ((value & 0xf7000) >> 4) | (value & 0xff)
13166
0
             | ((value & 0x04000000) >> 15);
13167
0
          addend = (addend ^ 0x8000) - 0x8000;
13168
0
          break;
13169
13170
0
        default:
13171
0
          if (howto->rightshift
13172
0
        || (howto->src_mask & (howto->src_mask + 1)))
13173
0
      {
13174
0
        _bfd_error_handler
13175
          /* xgettext:c-format */
13176
0
          (_("%pB(%pA+%#" PRIx64 "): "
13177
0
             "%s relocation against SEC_MERGE section"),
13178
0
           input_bfd, input_section,
13179
0
           (uint64_t) rel->r_offset, howto->name);
13180
0
        return false;
13181
0
      }
13182
13183
0
          value = bfd_get_32 (input_bfd, contents + rel->r_offset);
13184
13185
          /* Get the (signed) value from the instruction.  */
13186
0
          addend = value & howto->src_mask;
13187
0
          if (addend & ((howto->src_mask + 1) >> 1))
13188
0
      {
13189
0
        bfd_signed_vma mask;
13190
13191
0
        mask = -1;
13192
0
        mask &= ~ howto->src_mask;
13193
0
        addend |= mask;
13194
0
      }
13195
0
          break;
13196
0
        }
13197
13198
0
      msec = sec;
13199
0
      addend =
13200
0
        _bfd_elf_rel_local_sym (output_bfd, sym, &msec, addend)
13201
0
        - relocation;
13202
0
      addend += msec->output_section->vma + msec->output_offset;
13203
13204
      /* Cases here must match those in the preceding
13205
         switch statement.  */
13206
0
      switch (r_type)
13207
0
        {
13208
0
        case R_ARM_MOVW_ABS_NC:
13209
0
        case R_ARM_MOVT_ABS:
13210
0
          value = (value & 0xfff0f000) | ((addend & 0xf000) << 4)
13211
0
            | (addend & 0xfff);
13212
0
          bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13213
0
          break;
13214
13215
0
        case R_ARM_THM_MOVW_ABS_NC:
13216
0
        case R_ARM_THM_MOVT_ABS:
13217
0
          value = (value & 0xfbf08f00) | ((addend & 0xf700) << 4)
13218
0
            | (addend & 0xff) | ((addend & 0x0800) << 15);
13219
0
          bfd_put_16 (input_bfd, value >> 16,
13220
0
          contents + rel->r_offset);
13221
0
          bfd_put_16 (input_bfd, value,
13222
0
          contents + rel->r_offset + 2);
13223
0
          break;
13224
13225
0
        default:
13226
0
          value = (value & ~ howto->dst_mask)
13227
0
            | (addend & howto->dst_mask);
13228
0
          bfd_put_32 (input_bfd, value, contents + rel->r_offset);
13229
0
          break;
13230
0
        }
13231
0
    }
13232
0
      }
13233
0
    else
13234
0
      relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
13235
0
  }
13236
0
      else
13237
0
  {
13238
0
    bool warned, ignored;
13239
13240
0
    RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
13241
0
           r_symndx, symtab_hdr, sym_hashes,
13242
0
           h, sec, relocation,
13243
0
           unresolved_reloc, warned, ignored);
13244
13245
0
    sym_type = h->type;
13246
0
  }
13247
13248
0
      if (sec != NULL && discarded_section (sec))
13249
0
  RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
13250
0
           rel, 1, relend, R_ARM_NONE,
13251
0
           howto, 0, contents);
13252
13253
0
      if (bfd_link_relocatable (info))
13254
0
  {
13255
    /* This is a relocatable link.  We don't have to change
13256
       anything, unless the reloc is against a section symbol,
13257
       in which case we have to adjust according to where the
13258
       section symbol winds up in the output section.  */
13259
0
    if (sym != NULL && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
13260
0
      {
13261
0
        if (globals->use_rel)
13262
0
    arm_add_to_rel (input_bfd, contents + rel->r_offset,
13263
0
        howto, (bfd_signed_vma) sec->output_offset);
13264
0
        else
13265
0
    rel->r_addend += sec->output_offset;
13266
0
      }
13267
0
    continue;
13268
0
  }
13269
13270
0
      if (h != NULL)
13271
0
  name = h->root.root.string;
13272
0
      else
13273
0
  {
13274
0
    name = (bfd_elf_string_from_elf_section
13275
0
      (input_bfd, symtab_hdr->sh_link, sym->st_name));
13276
0
    if (name == NULL || *name == '\0')
13277
0
      name = bfd_section_name (sec);
13278
0
  }
13279
13280
0
      if (r_symndx != STN_UNDEF
13281
0
    && r_type != R_ARM_NONE
13282
0
    && (h == NULL
13283
0
        || h->root.type == bfd_link_hash_defined
13284
0
        || h->root.type == bfd_link_hash_defweak)
13285
0
    && IS_ARM_TLS_RELOC (r_type) != (sym_type == STT_TLS))
13286
0
  {
13287
0
    _bfd_error_handler
13288
0
      ((sym_type == STT_TLS
13289
        /* xgettext:c-format */
13290
0
        ? _("%pB(%pA+%#" PRIx64 "): %s used with TLS symbol %s")
13291
        /* xgettext:c-format */
13292
0
        : _("%pB(%pA+%#" PRIx64 "): %s used with non-TLS symbol %s")),
13293
0
       input_bfd,
13294
0
       input_section,
13295
0
       (uint64_t) rel->r_offset,
13296
0
       howto->name,
13297
0
       name);
13298
0
  }
13299
13300
      /* We call elf32_arm_final_link_relocate unless we're completely
13301
   done, i.e., the relaxation produced the final output we want,
13302
   and we won't let anybody mess with it. Also, we have to do
13303
   addend adjustments in case of a R_ARM_TLS_GOTDESC relocation
13304
   both in relaxed and non-relaxed cases.  */
13305
0
      if ((elf32_arm_tls_transition (info, r_type, h) != (unsigned)r_type)
13306
0
    || (IS_ARM_TLS_GNU_RELOC (r_type)
13307
0
        && !((h ? elf32_arm_hash_entry (h)->tls_type :
13308
0
        elf32_arm_local_got_tls_type (input_bfd)[r_symndx])
13309
0
       & GOT_TLS_GDESC)))
13310
0
  {
13311
0
    r = elf32_arm_tls_relax (globals, input_bfd, input_section,
13312
0
           contents, rel, h == NULL);
13313
    /* This may have been marked unresolved because it came from
13314
       a shared library.  But we've just dealt with that.  */
13315
0
    unresolved_reloc = 0;
13316
0
  }
13317
0
      else
13318
0
  r = bfd_reloc_continue;
13319
13320
0
      if (r == bfd_reloc_continue)
13321
0
  {
13322
0
    unsigned char branch_type =
13323
0
      h ? ARM_GET_SYM_BRANCH_TYPE (h->target_internal)
13324
0
        : ARM_GET_SYM_BRANCH_TYPE (sym->st_target_internal);
13325
13326
0
    r = elf32_arm_final_link_relocate (howto, input_bfd, output_bfd,
13327
0
               input_section, contents, rel,
13328
0
               relocation, info, sec, name,
13329
0
               sym_type, branch_type, h,
13330
0
               &unresolved_reloc,
13331
0
               &error_message);
13332
0
  }
13333
13334
      /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
13335
   because such sections are not SEC_ALLOC and thus ld.so will
13336
   not process them.  */
13337
0
      if (unresolved_reloc
13338
0
    && !((input_section->flags & SEC_DEBUGGING) != 0
13339
0
         && h->def_dynamic)
13340
0
    && _bfd_elf_section_offset (output_bfd, info, input_section,
13341
0
              rel->r_offset) != (bfd_vma) -1)
13342
0
  {
13343
0
    _bfd_error_handler
13344
      /* xgettext:c-format */
13345
0
      (_("%pB(%pA+%#" PRIx64 "): "
13346
0
         "unresolvable %s relocation against symbol `%s'"),
13347
0
       input_bfd,
13348
0
       input_section,
13349
0
       (uint64_t) rel->r_offset,
13350
0
       howto->name,
13351
0
       h->root.root.string);
13352
0
    return false;
13353
0
  }
13354
13355
0
      if (r != bfd_reloc_ok)
13356
0
  {
13357
0
    switch (r)
13358
0
      {
13359
0
      case bfd_reloc_overflow:
13360
        /* If the overflowing reloc was to an undefined symbol,
13361
     we have already printed one error message and there
13362
     is no point complaining again.  */
13363
0
        if (!h || h->root.type != bfd_link_hash_undefined)
13364
0
    (*info->callbacks->reloc_overflow)
13365
0
      (info, (h ? &h->root : NULL), name, howto->name,
13366
0
       (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
13367
0
        break;
13368
13369
0
      case bfd_reloc_undefined:
13370
0
        (*info->callbacks->undefined_symbol)
13371
0
    (info, name, input_bfd, input_section, rel->r_offset, true);
13372
0
        break;
13373
13374
0
      case bfd_reloc_outofrange:
13375
0
        error_message = _("out of range");
13376
0
        goto common_error;
13377
13378
0
      case bfd_reloc_notsupported:
13379
0
        error_message = _("unsupported relocation");
13380
0
        goto common_error;
13381
13382
0
      case bfd_reloc_dangerous:
13383
        /* error_message should already be set.  */
13384
0
        goto common_error;
13385
13386
0
      default:
13387
0
        error_message = _("unknown error");
13388
        /* Fall through.  */
13389
13390
0
      common_error:
13391
0
        BFD_ASSERT (error_message != NULL);
13392
0
        (*info->callbacks->reloc_dangerous)
13393
0
    (info, error_message, input_bfd, input_section, rel->r_offset);
13394
0
        break;
13395
0
      }
13396
0
  }
13397
0
    }
13398
13399
0
  return true;
13400
0
}
13401
13402
/* Add a new unwind edit to the list described by HEAD, TAIL.  If TINDEX is zero,
13403
   adds the edit to the start of the list.  (The list must be built in order of
13404
   ascending TINDEX: the function's callers are primarily responsible for
13405
   maintaining that condition).  */
13406
13407
static void
13408
add_unwind_table_edit (arm_unwind_table_edit **head,
13409
           arm_unwind_table_edit **tail,
13410
           arm_unwind_edit_type type,
13411
           asection *linked_section,
13412
           unsigned int tindex)
13413
0
{
13414
0
  arm_unwind_table_edit *new_edit = (arm_unwind_table_edit *)
13415
0
      xmalloc (sizeof (arm_unwind_table_edit));
13416
13417
0
  new_edit->type = type;
13418
0
  new_edit->linked_section = linked_section;
13419
0
  new_edit->index = tindex;
13420
13421
0
  if (tindex > 0)
13422
0
    {
13423
0
      new_edit->next = NULL;
13424
13425
0
      if (*tail)
13426
0
  (*tail)->next = new_edit;
13427
13428
0
      (*tail) = new_edit;
13429
13430
0
      if (!*head)
13431
0
  (*head) = new_edit;
13432
0
    }
13433
0
  else
13434
0
    {
13435
0
      new_edit->next = *head;
13436
13437
0
      if (!*tail)
13438
0
  *tail = new_edit;
13439
13440
0
      *head = new_edit;
13441
0
    }
13442
0
}
13443
13444
static _arm_elf_section_data *get_arm_elf_section_data (asection *);
13445
13446
/* Increase the size of EXIDX_SEC by ADJUST bytes.  ADJUST mau be negative.  */
13447
13448
static void
13449
adjust_exidx_size (asection *exidx_sec, int adjust)
13450
0
{
13451
0
  asection *out_sec;
13452
13453
0
  if (!exidx_sec->rawsize)
13454
0
    exidx_sec->rawsize = exidx_sec->size;
13455
13456
0
  bfd_set_section_size (exidx_sec, exidx_sec->size + adjust);
13457
0
  out_sec = exidx_sec->output_section;
13458
  /* Adjust size of output section.  */
13459
0
  bfd_set_section_size (out_sec, out_sec->size + adjust);
13460
0
}
13461
13462
/* Insert an EXIDX_CANTUNWIND marker at the end of a section.  */
13463
13464
static void
13465
insert_cantunwind_after (asection *text_sec, asection *exidx_sec)
13466
0
{
13467
0
  struct _arm_elf_section_data *exidx_arm_data;
13468
13469
0
  exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13470
0
  add_unwind_table_edit
13471
0
    (&exidx_arm_data->u.exidx.unwind_edit_list,
13472
0
     &exidx_arm_data->u.exidx.unwind_edit_tail,
13473
0
     INSERT_EXIDX_CANTUNWIND_AT_END, text_sec, UINT_MAX);
13474
13475
0
  exidx_arm_data->additional_reloc_count++;
13476
13477
0
  adjust_exidx_size (exidx_sec, 8);
13478
0
}
13479
13480
/* Scan .ARM.exidx tables, and create a list describing edits which should be
13481
   made to those tables, such that:
13482
13483
     1. Regions without unwind data are marked with EXIDX_CANTUNWIND entries.
13484
     2. Duplicate entries are merged together (EXIDX_CANTUNWIND, or unwind
13485
  codes which have been inlined into the index).
13486
13487
   If MERGE_EXIDX_ENTRIES is false, duplicate entries are not merged.
13488
13489
   The edits are applied when the tables are written
13490
   (in elf32_arm_write_section).  */
13491
13492
bool
13493
elf32_arm_fix_exidx_coverage (asection **text_section_order,
13494
            unsigned int num_text_sections,
13495
            struct bfd_link_info *info,
13496
            bool merge_exidx_entries)
13497
0
{
13498
0
  bfd *inp;
13499
0
  unsigned int last_second_word = 0, i;
13500
0
  asection *last_exidx_sec = NULL;
13501
0
  asection *last_text_sec = NULL;
13502
0
  int last_unwind_type = -1;
13503
13504
  /* Walk over all EXIDX sections, and create backlinks from the corrsponding
13505
     text sections.  */
13506
0
  for (inp = info->input_bfds; inp != NULL; inp = inp->link.next)
13507
0
    {
13508
0
      asection *sec;
13509
13510
0
      for (sec = inp->sections; sec != NULL; sec = sec->next)
13511
0
  {
13512
0
    struct bfd_elf_section_data *elf_sec = elf_section_data (sec);
13513
0
    Elf_Internal_Shdr *hdr = &elf_sec->this_hdr;
13514
13515
0
    if (!hdr || hdr->sh_type != SHT_ARM_EXIDX)
13516
0
      continue;
13517
13518
0
    if (elf_sec->linked_to)
13519
0
      {
13520
0
        Elf_Internal_Shdr *linked_hdr
13521
0
    = &elf_section_data (elf_sec->linked_to)->this_hdr;
13522
0
        struct _arm_elf_section_data *linked_sec_arm_data
13523
0
    = get_arm_elf_section_data (linked_hdr->bfd_section);
13524
13525
0
        if (linked_sec_arm_data == NULL)
13526
0
    continue;
13527
13528
        /* Link this .ARM.exidx section back from the text section it
13529
     describes.  */
13530
0
        linked_sec_arm_data->u.text.arm_exidx_sec = sec;
13531
0
      }
13532
0
  }
13533
0
    }
13534
13535
  /* Walk all text sections in order of increasing VMA.  Eilminate duplicate
13536
     index table entries (EXIDX_CANTUNWIND and inlined unwind opcodes),
13537
     and add EXIDX_CANTUNWIND entries for sections with no unwind table data.  */
13538
13539
0
  for (i = 0; i < num_text_sections; i++)
13540
0
    {
13541
0
      asection *sec = text_section_order[i];
13542
0
      asection *exidx_sec;
13543
0
      struct _arm_elf_section_data *arm_data = get_arm_elf_section_data (sec);
13544
0
      struct _arm_elf_section_data *exidx_arm_data;
13545
0
      bfd_byte *contents = NULL;
13546
0
      int deleted_exidx_bytes = 0;
13547
0
      bfd_vma j;
13548
0
      arm_unwind_table_edit *unwind_edit_head = NULL;
13549
0
      arm_unwind_table_edit *unwind_edit_tail = NULL;
13550
0
      Elf_Internal_Shdr *hdr;
13551
0
      bfd *ibfd;
13552
13553
0
      if (arm_data == NULL)
13554
0
  continue;
13555
13556
0
      exidx_sec = arm_data->u.text.arm_exidx_sec;
13557
0
      if (exidx_sec == NULL)
13558
0
  {
13559
    /* Section has no unwind data.  */
13560
0
    if (last_unwind_type == 0 || !last_exidx_sec)
13561
0
      continue;
13562
13563
    /* Ignore zero sized sections.  */
13564
0
    if (sec->size == 0)
13565
0
      continue;
13566
13567
0
    insert_cantunwind_after (last_text_sec, last_exidx_sec);
13568
0
    last_unwind_type = 0;
13569
0
    continue;
13570
0
  }
13571
13572
      /* Skip /DISCARD/ sections.  */
13573
0
      if (bfd_is_abs_section (exidx_sec->output_section))
13574
0
  continue;
13575
13576
0
      hdr = &elf_section_data (exidx_sec)->this_hdr;
13577
0
      if (hdr->sh_type != SHT_ARM_EXIDX)
13578
0
  continue;
13579
13580
0
      exidx_arm_data = get_arm_elf_section_data (exidx_sec);
13581
0
      if (exidx_arm_data == NULL)
13582
0
  continue;
13583
13584
0
      ibfd = exidx_sec->owner;
13585
13586
0
      if (hdr->contents != NULL)
13587
0
  contents = hdr->contents;
13588
0
      else if (! bfd_malloc_and_get_section (ibfd, exidx_sec, &contents))
13589
  /* An error?  */
13590
0
  continue;
13591
13592
0
      if (last_unwind_type > 0)
13593
0
  {
13594
0
    unsigned int first_word = bfd_get_32 (ibfd, contents);
13595
    /* Add cantunwind if first unwind item does not match section
13596
       start.  */
13597
0
    if (first_word != sec->vma)
13598
0
      {
13599
0
        insert_cantunwind_after (last_text_sec, last_exidx_sec);
13600
0
        last_unwind_type = 0;
13601
0
      }
13602
0
  }
13603
13604
0
      for (j = 0; j < hdr->sh_size; j += 8)
13605
0
  {
13606
0
    unsigned int second_word = bfd_get_32 (ibfd, contents + j + 4);
13607
0
    int unwind_type;
13608
0
    int elide = 0;
13609
13610
    /* An EXIDX_CANTUNWIND entry.  */
13611
0
    if (second_word == 1)
13612
0
      {
13613
0
        if (last_unwind_type == 0)
13614
0
    elide = 1;
13615
0
        unwind_type = 0;
13616
0
      }
13617
    /* Inlined unwinding data.  Merge if equal to previous.  */
13618
0
    else if ((second_word & 0x80000000) != 0)
13619
0
      {
13620
0
        if (merge_exidx_entries
13621
0
       && last_second_word == second_word && last_unwind_type == 1)
13622
0
    elide = 1;
13623
0
        unwind_type = 1;
13624
0
        last_second_word = second_word;
13625
0
      }
13626
    /* Normal table entry.  In theory we could merge these too,
13627
       but duplicate entries are likely to be much less common.  */
13628
0
    else
13629
0
      unwind_type = 2;
13630
13631
0
    if (elide && !bfd_link_relocatable (info))
13632
0
      {
13633
0
        add_unwind_table_edit (&unwind_edit_head, &unwind_edit_tail,
13634
0
             DELETE_EXIDX_ENTRY, NULL, j / 8);
13635
13636
0
        deleted_exidx_bytes += 8;
13637
0
      }
13638
13639
0
    last_unwind_type = unwind_type;
13640
0
  }
13641
13642
      /* Free contents if we allocated it ourselves.  */
13643
0
      if (contents != hdr->contents)
13644
0
  free (contents);
13645
13646
      /* Record edits to be applied later (in elf32_arm_write_section).  */
13647
0
      exidx_arm_data->u.exidx.unwind_edit_list = unwind_edit_head;
13648
0
      exidx_arm_data->u.exidx.unwind_edit_tail = unwind_edit_tail;
13649
13650
0
      if (deleted_exidx_bytes > 0)
13651
0
  adjust_exidx_size (exidx_sec, - deleted_exidx_bytes);
13652
13653
0
      last_exidx_sec = exidx_sec;
13654
0
      last_text_sec = sec;
13655
0
    }
13656
13657
  /* Add terminating CANTUNWIND entry.  */
13658
0
  if (!bfd_link_relocatable (info) && last_exidx_sec
13659
0
      && last_unwind_type != 0)
13660
0
    insert_cantunwind_after (last_text_sec, last_exidx_sec);
13661
13662
0
  return true;
13663
0
}
13664
13665
static bool
13666
elf32_arm_output_glue_section (struct bfd_link_info *info, bfd *obfd,
13667
             bfd *ibfd, const char *name)
13668
0
{
13669
0
  asection *sec, *osec;
13670
13671
0
  sec = bfd_get_linker_section (ibfd, name);
13672
0
  if (sec == NULL || (sec->flags & SEC_EXCLUDE) != 0)
13673
0
    return true;
13674
13675
0
  osec = sec->output_section;
13676
0
  if (elf32_arm_write_section (obfd, info, sec, sec->contents))
13677
0
    return true;
13678
13679
0
  if (! bfd_set_section_contents (obfd, osec, sec->contents,
13680
0
          sec->output_offset, sec->size))
13681
0
    return false;
13682
13683
0
  return true;
13684
0
}
13685
13686
static bool
13687
elf32_arm_final_link (bfd *abfd, struct bfd_link_info *info)
13688
0
{
13689
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
13690
0
  asection *sec, *osec;
13691
13692
0
  if (globals == NULL)
13693
0
    return false;
13694
13695
  /* Invoke the regular ELF backend linker to do all the work.  */
13696
0
  if (!_bfd_elf_final_link (abfd, info))
13697
0
    return false;
13698
13699
  /* Process stub sections (eg BE8 encoding, ...).  */
13700
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
13701
0
  unsigned int i;
13702
0
  for (i=0; i<htab->top_id; i++)
13703
0
    {
13704
0
      sec = htab->stub_group[i].stub_sec;
13705
      /* Only process it once, in its link_sec slot.  */
13706
0
      if (sec && i == htab->stub_group[i].link_sec->id)
13707
0
  {
13708
0
    osec = sec->output_section;
13709
0
    elf32_arm_write_section (abfd, info, sec, sec->contents);
13710
0
    if (! bfd_set_section_contents (abfd, osec, sec->contents,
13711
0
            sec->output_offset, sec->size))
13712
0
      return false;
13713
0
  }
13714
0
    }
13715
13716
  /* Write out any glue sections now that we have created all the
13717
     stubs.  */
13718
0
  if (globals->bfd_of_glue_owner != NULL)
13719
0
    {
13720
0
      if (! elf32_arm_output_glue_section (info, abfd,
13721
0
             globals->bfd_of_glue_owner,
13722
0
             ARM2THUMB_GLUE_SECTION_NAME))
13723
0
  return false;
13724
13725
0
      if (! elf32_arm_output_glue_section (info, abfd,
13726
0
             globals->bfd_of_glue_owner,
13727
0
             THUMB2ARM_GLUE_SECTION_NAME))
13728
0
  return false;
13729
13730
0
      if (! elf32_arm_output_glue_section (info, abfd,
13731
0
             globals->bfd_of_glue_owner,
13732
0
             VFP11_ERRATUM_VENEER_SECTION_NAME))
13733
0
  return false;
13734
13735
0
      if (! elf32_arm_output_glue_section (info, abfd,
13736
0
             globals->bfd_of_glue_owner,
13737
0
             STM32L4XX_ERRATUM_VENEER_SECTION_NAME))
13738
0
  return false;
13739
13740
0
      if (! elf32_arm_output_glue_section (info, abfd,
13741
0
             globals->bfd_of_glue_owner,
13742
0
             ARM_BX_GLUE_SECTION_NAME))
13743
0
  return false;
13744
0
    }
13745
13746
0
  return true;
13747
0
}
13748
13749
/* Return a best guess for the machine number based on the attributes.  */
13750
13751
static unsigned int
13752
bfd_arm_get_mach_from_attributes (bfd * abfd)
13753
741
{
13754
741
  int arch = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_CPU_arch);
13755
13756
741
  switch (arch)
13757
741
    {
13758
741
    case TAG_CPU_ARCH_PRE_V4: return bfd_mach_arm_3M;
13759
0
    case TAG_CPU_ARCH_V4: return bfd_mach_arm_4;
13760
0
    case TAG_CPU_ARCH_V4T: return bfd_mach_arm_4T;
13761
0
    case TAG_CPU_ARCH_V5T: return bfd_mach_arm_5T;
13762
13763
0
    case TAG_CPU_ARCH_V5TE:
13764
0
      {
13765
0
  char * name;
13766
13767
0
  BFD_ASSERT (Tag_CPU_name < NUM_KNOWN_OBJ_ATTRIBUTES);
13768
0
  name = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_CPU_name].s;
13769
13770
0
  if (name)
13771
0
    {
13772
0
      if (strcmp (name, "IWMMXT2") == 0)
13773
0
        return bfd_mach_arm_iWMMXt2;
13774
13775
0
      if (strcmp (name, "IWMMXT") == 0)
13776
0
        return bfd_mach_arm_iWMMXt;
13777
13778
0
      if (strcmp (name, "XSCALE") == 0)
13779
0
        {
13780
0
    int wmmx;
13781
13782
0
    BFD_ASSERT (Tag_WMMX_arch < NUM_KNOWN_OBJ_ATTRIBUTES);
13783
0
    wmmx = elf_known_obj_attributes (abfd) [OBJ_ATTR_PROC][Tag_WMMX_arch].i;
13784
0
    switch (wmmx)
13785
0
      {
13786
0
      case 1: return bfd_mach_arm_iWMMXt;
13787
0
      case 2: return bfd_mach_arm_iWMMXt2;
13788
0
      default: return bfd_mach_arm_XScale;
13789
0
      }
13790
0
        }
13791
0
    }
13792
13793
0
  return bfd_mach_arm_5TE;
13794
0
      }
13795
13796
0
    case TAG_CPU_ARCH_V5TEJ:
13797
0
  return bfd_mach_arm_5TEJ;
13798
0
    case TAG_CPU_ARCH_V6:
13799
0
  return bfd_mach_arm_6;
13800
0
    case TAG_CPU_ARCH_V6KZ:
13801
0
  return bfd_mach_arm_6KZ;
13802
0
    case TAG_CPU_ARCH_V6T2:
13803
0
  return bfd_mach_arm_6T2;
13804
0
    case TAG_CPU_ARCH_V6K:
13805
0
  return bfd_mach_arm_6K;
13806
0
    case TAG_CPU_ARCH_V7:
13807
0
  return bfd_mach_arm_7;
13808
0
    case TAG_CPU_ARCH_V6_M:
13809
0
  return bfd_mach_arm_6M;
13810
0
    case TAG_CPU_ARCH_V6S_M:
13811
0
  return bfd_mach_arm_6SM;
13812
0
    case TAG_CPU_ARCH_V7E_M:
13813
0
  return bfd_mach_arm_7EM;
13814
0
    case TAG_CPU_ARCH_V8:
13815
0
  return bfd_mach_arm_8;
13816
0
    case TAG_CPU_ARCH_V8R:
13817
0
  return bfd_mach_arm_8R;
13818
0
    case TAG_CPU_ARCH_V8M_BASE:
13819
0
  return bfd_mach_arm_8M_BASE;
13820
0
    case TAG_CPU_ARCH_V8M_MAIN:
13821
0
  return bfd_mach_arm_8M_MAIN;
13822
0
    case TAG_CPU_ARCH_V8_1M_MAIN:
13823
0
  return bfd_mach_arm_8_1M_MAIN;
13824
0
    case TAG_CPU_ARCH_V9:
13825
0
  return bfd_mach_arm_9;
13826
13827
0
    default:
13828
      /* Force entry to be added for any new known Tag_CPU_arch value.  */
13829
0
      BFD_ASSERT (arch > MAX_TAG_CPU_ARCH);
13830
13831
      /* Unknown Tag_CPU_arch value.  */
13832
0
      return bfd_mach_arm_unknown;
13833
741
    }
13834
741
}
13835
13836
/* Set the right machine number.  */
13837
13838
static bool
13839
elf32_arm_object_p (bfd *abfd)
13840
741
{
13841
741
  unsigned int mach;
13842
13843
741
  mach = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
13844
13845
741
  if (mach == bfd_mach_arm_unknown)
13846
741
    mach = bfd_arm_get_mach_from_attributes (abfd);
13847
13848
741
  bfd_default_set_arch_mach (abfd, bfd_arch_arm, mach);
13849
741
  return true;
13850
741
}
13851
13852
/* Function to keep ARM specific flags in the ELF header.  */
13853
13854
static bool
13855
elf32_arm_set_private_flags (bfd *abfd, flagword flags)
13856
0
{
13857
0
  if (elf_flags_init (abfd)
13858
0
      && elf_elfheader (abfd)->e_flags != flags)
13859
0
    {
13860
0
      if (EF_ARM_EABI_VERSION (flags) == EF_ARM_EABI_UNKNOWN)
13861
0
  {
13862
0
    if (flags & EF_ARM_INTERWORK)
13863
0
      _bfd_error_handler
13864
0
        (_("warning: not setting interworking flag of %pB since it has already been specified as non-interworking"),
13865
0
         abfd);
13866
0
    else
13867
0
      _bfd_error_handler
13868
0
        (_("warning: clearing the interworking flag of %pB due to outside request"),
13869
0
         abfd);
13870
0
  }
13871
0
    }
13872
0
  else
13873
0
    {
13874
0
      elf_elfheader (abfd)->e_flags = flags;
13875
0
      elf_flags_init (abfd) = true;
13876
0
    }
13877
13878
0
  return true;
13879
0
}
13880
13881
/* Copy backend specific data from one object module to another.  */
13882
13883
static bool
13884
elf32_arm_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
13885
0
{
13886
0
  flagword in_flags;
13887
0
  flagword out_flags;
13888
13889
0
  if (! is_arm_elf (ibfd))
13890
0
    return true;
13891
13892
0
  in_flags  = elf_elfheader (ibfd)->e_flags;
13893
0
  out_flags = elf_elfheader (obfd)->e_flags;
13894
13895
0
  if (elf_flags_init (obfd)
13896
0
      && EF_ARM_EABI_VERSION (out_flags) == EF_ARM_EABI_UNKNOWN
13897
0
      && in_flags != out_flags)
13898
0
    {
13899
      /* Cannot mix APCS26 and APCS32 code.  */
13900
0
      if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
13901
0
  return false;
13902
13903
      /* Cannot mix float APCS and non-float APCS code.  */
13904
0
      if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
13905
0
  return false;
13906
13907
      /* If the src and dest have different interworking flags
13908
   then turn off the interworking bit.  */
13909
0
      if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
13910
0
  {
13911
0
    if (out_flags & EF_ARM_INTERWORK)
13912
0
      _bfd_error_handler
13913
0
        (_("warning: clearing the interworking flag of %pB because non-interworking code in %pB has been linked with it"),
13914
0
         obfd, ibfd);
13915
13916
0
    in_flags &= ~EF_ARM_INTERWORK;
13917
0
  }
13918
13919
      /* Likewise for PIC, though don't warn for this case.  */
13920
0
      if ((in_flags & EF_ARM_PIC) != (out_flags & EF_ARM_PIC))
13921
0
  in_flags &= ~EF_ARM_PIC;
13922
0
    }
13923
13924
0
  elf_elfheader (obfd)->e_flags = in_flags;
13925
0
  elf_flags_init (obfd) = true;
13926
13927
0
  return _bfd_elf_copy_private_bfd_data (ibfd, obfd);
13928
0
}
13929
13930
/* Values for Tag_ABI_PCS_R9_use.  */
13931
enum
13932
{
13933
  AEABI_R9_V6,
13934
  AEABI_R9_SB,
13935
  AEABI_R9_TLS,
13936
  AEABI_R9_unused
13937
};
13938
13939
/* Values for Tag_ABI_PCS_RW_data.  */
13940
enum
13941
{
13942
  AEABI_PCS_RW_data_absolute,
13943
  AEABI_PCS_RW_data_PCrel,
13944
  AEABI_PCS_RW_data_SBrel,
13945
  AEABI_PCS_RW_data_unused
13946
};
13947
13948
/* Values for Tag_ABI_enum_size.  */
13949
enum
13950
{
13951
  AEABI_enum_unused,
13952
  AEABI_enum_short,
13953
  AEABI_enum_wide,
13954
  AEABI_enum_forced_wide
13955
};
13956
13957
/* Determine whether an object attribute tag takes an integer, a
13958
   string or both.  */
13959
13960
static int
13961
elf32_arm_obj_attrs_arg_type (obj_attr_tag_t tag)
13962
0
{
13963
0
  if (tag == Tag_compatibility)
13964
0
    return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_STR_VAL;
13965
0
  else if (tag == Tag_nodefaults)
13966
0
    return ATTR_TYPE_FLAG_INT_VAL | ATTR_TYPE_FLAG_NO_DEFAULT;
13967
0
  else if (tag == Tag_CPU_raw_name || tag == Tag_CPU_name)
13968
0
    return ATTR_TYPE_FLAG_STR_VAL;
13969
0
  else if (tag < 32)
13970
0
    return ATTR_TYPE_FLAG_INT_VAL;
13971
0
  else
13972
0
    return (tag & 1) != 0 ? ATTR_TYPE_FLAG_STR_VAL : ATTR_TYPE_FLAG_INT_VAL;
13973
0
}
13974
13975
/* The ABI defines that Tag_conformance should be emitted first, and that
13976
   Tag_nodefaults should be second (if either is defined).  This sets those
13977
   two positions, and bumps up the position of all the remaining tags to
13978
   compensate.  */
13979
static int
13980
elf32_arm_obj_attrs_order (int num)
13981
0
{
13982
0
  if (num == LEAST_KNOWN_OBJ_ATTRIBUTE)
13983
0
    return Tag_conformance;
13984
0
  if (num == LEAST_KNOWN_OBJ_ATTRIBUTE + 1)
13985
0
    return Tag_nodefaults;
13986
0
  if ((num - 2) < Tag_nodefaults)
13987
0
    return num - 2;
13988
0
  if ((num - 1) < Tag_conformance)
13989
0
    return num - 1;
13990
0
  return num;
13991
0
}
13992
13993
/* Attribute numbers >=64 (mod 128) can be safely ignored.  */
13994
static bool
13995
elf32_arm_obj_attrs_handle_unknown (bfd *abfd, int tag)
13996
0
{
13997
0
  if ((tag & 127) < 64)
13998
0
    {
13999
0
      _bfd_error_handler
14000
0
  (_("%pB: unknown mandatory EABI object attribute %d"),
14001
0
   abfd, tag);
14002
0
      bfd_set_error (bfd_error_bad_value);
14003
0
      return false;
14004
0
    }
14005
0
  else
14006
0
    {
14007
0
      _bfd_error_handler
14008
0
  (_("warning: %pB: unknown EABI object attribute %d"),
14009
0
   abfd, tag);
14010
0
      return true;
14011
0
    }
14012
0
}
14013
14014
/* Read the architecture from the Tag_also_compatible_with attribute, if any.
14015
   Returns -1 if no architecture could be read.  */
14016
14017
static int
14018
get_secondary_compatible_arch (bfd *abfd)
14019
0
{
14020
0
  obj_attribute *attr =
14021
0
    &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
14022
14023
  /* Note: the tag and its argument below are uleb128 values, though
14024
     currently-defined values fit in one byte for each.  */
14025
0
  if (attr->s
14026
0
      && attr->s[0] == Tag_CPU_arch
14027
0
      && (attr->s[1] & 128) != 128
14028
0
      && attr->s[2] == 0)
14029
0
   return attr->s[1];
14030
14031
  /* This tag is "safely ignorable", so don't complain if it looks funny.  */
14032
0
  return -1;
14033
0
}
14034
14035
/* Set, or unset, the architecture of the Tag_also_compatible_with attribute.
14036
   The tag is removed if ARCH is -1.  */
14037
14038
static void
14039
set_secondary_compatible_arch (bfd *abfd, int arch)
14040
0
{
14041
0
  obj_attribute *attr =
14042
0
    &elf_known_obj_attributes_proc (abfd)[Tag_also_compatible_with];
14043
14044
0
  if (arch == -1)
14045
0
    {
14046
0
      attr->s = NULL;
14047
0
      return;
14048
0
    }
14049
14050
  /* Note: the tag and its argument below are uleb128 values, though
14051
     currently-defined values fit in one byte for each.  */
14052
0
  if (!attr->s)
14053
0
    attr->s = (char *) bfd_alloc (abfd, 3);
14054
0
  attr->s[0] = Tag_CPU_arch;
14055
0
  attr->s[1] = arch;
14056
0
  attr->s[2] = '\0';
14057
0
}
14058
14059
/* Combine two values for Tag_CPU_arch, taking secondary compatibility tags
14060
   into account.  */
14061
14062
static int
14063
tag_cpu_arch_combine (bfd *ibfd, int oldtag, int *secondary_compat_out,
14064
          int newtag, int secondary_compat,
14065
          const char *const name_table[])
14066
0
{
14067
0
#define T(X) TAG_CPU_ARCH_##X
14068
0
  int tagl, tagh, result;
14069
0
  static const int v6t2[] =
14070
0
    {
14071
0
      T(V6T2),   /* PRE_V4.  */
14072
0
      T(V6T2),   /* V4.  */
14073
0
      T(V6T2),   /* V4T.  */
14074
0
      T(V6T2),   /* V5T.  */
14075
0
      T(V6T2),   /* V5TE.  */
14076
0
      T(V6T2),   /* V5TEJ.  */
14077
0
      T(V6T2),   /* V6.  */
14078
0
      T(V7),     /* V6KZ.  */
14079
0
      T(V6T2)    /* V6T2.  */
14080
0
    };
14081
0
  static const int v6k[] =
14082
0
    {
14083
0
      T(V6K),    /* PRE_V4.  */
14084
0
      T(V6K),    /* V4.  */
14085
0
      T(V6K),    /* V4T.  */
14086
0
      T(V6K),    /* V5T.  */
14087
0
      T(V6K),    /* V5TE.  */
14088
0
      T(V6K),    /* V5TEJ.  */
14089
0
      T(V6K),    /* V6.  */
14090
0
      T(V6KZ),   /* V6KZ.  */
14091
0
      T(V7),     /* V6T2.  */
14092
0
      T(V6K)     /* V6K.  */
14093
0
    };
14094
0
  static const int v7[] =
14095
0
    {
14096
0
      T(V7),     /* PRE_V4.  */
14097
0
      T(V7),     /* V4.  */
14098
0
      T(V7),     /* V4T.  */
14099
0
      T(V7),     /* V5T.  */
14100
0
      T(V7),     /* V5TE.  */
14101
0
      T(V7),     /* V5TEJ.  */
14102
0
      T(V7),     /* V6.  */
14103
0
      T(V7),     /* V6KZ.  */
14104
0
      T(V7),     /* V6T2.  */
14105
0
      T(V7),     /* V6K.  */
14106
0
      T(V7)      /* V7.  */
14107
0
    };
14108
0
  static const int v6_m[] =
14109
0
    {
14110
0
      -1,  /* PRE_V4.  */
14111
0
      -1,  /* V4.  */
14112
0
      T(V6K),    /* V4T.  */
14113
0
      T(V6K),    /* V5T.  */
14114
0
      T(V6K),    /* V5TE.  */
14115
0
      T(V6K),    /* V5TEJ.  */
14116
0
      T(V6K),    /* V6.  */
14117
0
      T(V6KZ),   /* V6KZ.  */
14118
0
      T(V7),     /* V6T2.  */
14119
0
      T(V6K),    /* V6K.  */
14120
0
      T(V7),     /* V7.  */
14121
0
      T(V6_M)    /* V6_M.  */
14122
0
    };
14123
0
  static const int v6s_m[] =
14124
0
    {
14125
0
      -1,  /* PRE_V4.  */
14126
0
      -1,  /* V4.  */
14127
0
      T(V6K),    /* V4T.  */
14128
0
      T(V6K),    /* V5T.  */
14129
0
      T(V6K),    /* V5TE.  */
14130
0
      T(V6K),    /* V5TEJ.  */
14131
0
      T(V6K),    /* V6.  */
14132
0
      T(V6KZ),   /* V6KZ.  */
14133
0
      T(V7),     /* V6T2.  */
14134
0
      T(V6K),    /* V6K.  */
14135
0
      T(V7),     /* V7.  */
14136
0
      T(V6S_M),  /* V6_M.  */
14137
0
      T(V6S_M)   /* V6S_M.  */
14138
0
    };
14139
0
  static const int v7e_m[] =
14140
0
    {
14141
0
      -1,  /* PRE_V4.  */
14142
0
      -1,  /* V4.  */
14143
0
      T(V7E_M),  /* V4T.  */
14144
0
      T(V7E_M),  /* V5T.  */
14145
0
      T(V7E_M),  /* V5TE.  */
14146
0
      T(V7E_M),  /* V5TEJ.  */
14147
0
      T(V7E_M),  /* V6.  */
14148
0
      T(V7E_M),  /* V6KZ.  */
14149
0
      T(V7E_M),  /* V6T2.  */
14150
0
      T(V7E_M),  /* V6K.  */
14151
0
      T(V7E_M),  /* V7.  */
14152
0
      T(V7E_M),  /* V6_M.  */
14153
0
      T(V7E_M),  /* V6S_M.  */
14154
0
      T(V7E_M)   /* V7E_M.  */
14155
0
    };
14156
0
  static const int v8[] =
14157
0
    {
14158
0
      T(V8),   /* PRE_V4.  */
14159
0
      T(V8),   /* V4.  */
14160
0
      T(V8),   /* V4T.  */
14161
0
      T(V8),   /* V5T.  */
14162
0
      T(V8),   /* V5TE.  */
14163
0
      T(V8),   /* V5TEJ.  */
14164
0
      T(V8),   /* V6.  */
14165
0
      T(V8),   /* V6KZ.  */
14166
0
      T(V8),   /* V6T2.  */
14167
0
      T(V8),   /* V6K.  */
14168
0
      T(V8),   /* V7.  */
14169
0
      T(V8),   /* V6_M.  */
14170
0
      T(V8),   /* V6S_M.  */
14171
0
      T(V8),   /* V7E_M.  */
14172
0
      T(V8),   /* V8.  */
14173
0
      T(V8),   /* V8-R.  */
14174
0
      T(V8),   /* V8-M.BASE.  */
14175
0
      T(V8),   /* V8-M.MAIN.  */
14176
0
      T(V8),   /* V8.1.  */
14177
0
      T(V8),   /* V8.2.  */
14178
0
      T(V8),   /* V8.3.  */
14179
0
      T(V8),   /* V8.1-M.MAIN.  */
14180
0
    };
14181
0
  static const int v8r[] =
14182
0
    {
14183
0
      T(V8R),    /* PRE_V4.  */
14184
0
      T(V8R),    /* V4.  */
14185
0
      T(V8R),    /* V4T.  */
14186
0
      T(V8R),    /* V5T.  */
14187
0
      T(V8R),    /* V5TE.  */
14188
0
      T(V8R),    /* V5TEJ.  */
14189
0
      T(V8R),    /* V6.  */
14190
0
      T(V8R),    /* V6KZ.  */
14191
0
      T(V8R),    /* V6T2.  */
14192
0
      T(V8R),    /* V6K.  */
14193
0
      T(V8R),    /* V7.  */
14194
0
      T(V8R),    /* V6_M.  */
14195
0
      T(V8R),    /* V6S_M.  */
14196
0
      T(V8R),    /* V7E_M.  */
14197
0
      T(V8),   /* V8.  */
14198
0
      T(V8R),    /* V8R.  */
14199
0
    };
14200
0
  static const int v8m_baseline[] =
14201
0
    {
14202
0
      -1,   /* PRE_V4.  */
14203
0
      -1,   /* V4.  */
14204
0
      -1,   /* V4T.  */
14205
0
      -1,   /* V5T.  */
14206
0
      -1,   /* V5TE.  */
14207
0
      -1,   /* V5TEJ.  */
14208
0
      -1,   /* V6.  */
14209
0
      -1,   /* V6KZ.  */
14210
0
      -1,   /* V6T2.  */
14211
0
      -1,   /* V6K.  */
14212
0
      -1,   /* V7.  */
14213
0
      T(V8M_BASE), /* V6_M.  */
14214
0
      T(V8M_BASE), /* V6S_M.  */
14215
0
      -1,   /* V7E_M.  */
14216
0
      -1,   /* V8.  */
14217
0
      -1,   /* V8R.  */
14218
0
      T(V8M_BASE)  /* V8-M BASELINE.  */
14219
0
    };
14220
0
  static const int v8m_mainline[] =
14221
0
    {
14222
0
      -1,   /* PRE_V4.  */
14223
0
      -1,   /* V4.  */
14224
0
      -1,   /* V4T.  */
14225
0
      -1,   /* V5T.  */
14226
0
      -1,   /* V5TE.  */
14227
0
      -1,   /* V5TEJ.  */
14228
0
      -1,   /* V6.  */
14229
0
      -1,   /* V6KZ.  */
14230
0
      -1,   /* V6T2.  */
14231
0
      -1,   /* V6K.  */
14232
0
      T(V8M_MAIN), /* V7.  */
14233
0
      T(V8M_MAIN), /* V6_M.  */
14234
0
      T(V8M_MAIN), /* V6S_M.  */
14235
0
      T(V8M_MAIN), /* V7E_M.  */
14236
0
      -1,   /* V8.  */
14237
0
      -1,   /* V8R.  */
14238
0
      T(V8M_MAIN), /* V8-M BASELINE.  */
14239
0
      T(V8M_MAIN)  /* V8-M MAINLINE.  */
14240
0
    };
14241
0
  static const int v8_1m_mainline[] =
14242
0
    {
14243
0
      -1,   /* PRE_V4.  */
14244
0
      -1,   /* V4.  */
14245
0
      -1,   /* V4T.  */
14246
0
      -1,   /* V5T.  */
14247
0
      -1,   /* V5TE.  */
14248
0
      -1,   /* V5TEJ.  */
14249
0
      -1,   /* V6.  */
14250
0
      -1,   /* V6KZ.  */
14251
0
      -1,   /* V6T2.  */
14252
0
      -1,   /* V6K.  */
14253
0
      T(V8_1M_MAIN), /* V7.  */
14254
0
      T(V8_1M_MAIN), /* V6_M.  */
14255
0
      T(V8_1M_MAIN), /* V6S_M.  */
14256
0
      T(V8_1M_MAIN), /* V7E_M.  */
14257
0
      -1,   /* V8.  */
14258
0
      -1,   /* V8R.  */
14259
0
      T(V8_1M_MAIN), /* V8-M BASELINE.  */
14260
0
      T(V8_1M_MAIN), /* V8-M MAINLINE.  */
14261
0
      -1,   /* Unused (18).  */
14262
0
      -1,   /* Unused (19).  */
14263
0
      -1,   /* Unused (20).  */
14264
0
      T(V8_1M_MAIN)  /* V8.1-M MAINLINE.  */
14265
0
    };
14266
0
  static const int v9[] =
14267
0
    {
14268
0
      T(V9),   /* PRE_V4.  */
14269
0
      T(V9),   /* V4.  */
14270
0
      T(V9),   /* V4T.  */
14271
0
      T(V9),   /* V5T.  */
14272
0
      T(V9),   /* V5TE.  */
14273
0
      T(V9),   /* V5TEJ.  */
14274
0
      T(V9),   /* V6.  */
14275
0
      T(V9),   /* V6KZ.  */
14276
0
      T(V9),   /* V6T2.  */
14277
0
      T(V9),   /* V6K.  */
14278
0
      T(V9),   /* V7.  */
14279
0
      T(V9),   /* V6_M.  */
14280
0
      T(V9),   /* V6S_M.  */
14281
0
      T(V9),   /* V7E_M.  */
14282
0
      T(V9),   /* V8.  */
14283
0
      T(V9),   /* V8-R.  */
14284
0
      T(V9),   /* V8-M.BASE.  */
14285
0
      T(V9),   /* V8-M.MAIN.  */
14286
0
      T(V9),   /* V8.1.  */
14287
0
      T(V9),   /* V8.2.  */
14288
0
      T(V9),   /* V8.3.  */
14289
0
      T(V9),   /* V8.1-M.MAIN.  */
14290
0
      T(V9),   /* V9.  */
14291
0
     };
14292
0
  static const int v4t_plus_v6_m[] =
14293
0
    {
14294
0
      -1,   /* PRE_V4.  */
14295
0
      -1,   /* V4.  */
14296
0
      T(V4T),    /* V4T.  */
14297
0
      T(V5T),    /* V5T.  */
14298
0
      T(V5TE),   /* V5TE.  */
14299
0
      T(V5TEJ),    /* V5TEJ.  */
14300
0
      T(V6),   /* V6.  */
14301
0
      T(V6KZ),   /* V6KZ.  */
14302
0
      T(V6T2),   /* V6T2.  */
14303
0
      T(V6K),    /* V6K.  */
14304
0
      T(V7),   /* V7.  */
14305
0
      T(V6_M),   /* V6_M.  */
14306
0
      T(V6S_M),    /* V6S_M.  */
14307
0
      T(V7E_M),    /* V7E_M.  */
14308
0
      T(V8),   /* V8.  */
14309
0
      -1,   /* V8R.  */
14310
0
      T(V8M_BASE), /* V8-M BASELINE.  */
14311
0
      T(V8M_MAIN), /* V8-M MAINLINE.  */
14312
0
      -1,   /* Unused (18).  */
14313
0
      -1,   /* Unused (19).  */
14314
0
      -1,   /* Unused (20).  */
14315
0
      T(V8_1M_MAIN), /* V8.1-M MAINLINE.  */
14316
0
      T(V9),   /* V9.  */
14317
0
      T(V4T_PLUS_V6_M) /* V4T plus V6_M.  */
14318
0
    };
14319
0
  static const int *const comb[] =
14320
0
    {
14321
0
      v6t2,
14322
0
      v6k,
14323
0
      v7,
14324
0
      v6_m,
14325
0
      v6s_m,
14326
0
      v7e_m,
14327
0
      v8,
14328
0
      v8r,
14329
0
      v8m_baseline,
14330
0
      v8m_mainline,
14331
0
      NULL,
14332
0
      NULL,
14333
0
      NULL,
14334
0
      v8_1m_mainline,
14335
0
      v9,
14336
      /* Pseudo-architecture.  */
14337
0
      v4t_plus_v6_m
14338
0
    };
14339
14340
  /* Check we've not got a higher architecture than we know about.  */
14341
14342
0
  if (oldtag > MAX_TAG_CPU_ARCH || newtag > MAX_TAG_CPU_ARCH)
14343
0
    {
14344
0
      _bfd_error_handler (_("error: %pB: unknown CPU architecture"), ibfd);
14345
0
      return -1;
14346
0
    }
14347
14348
  /* Override old tag if we have a Tag_also_compatible_with on the output.  */
14349
14350
0
  if ((oldtag == T(V6_M) && *secondary_compat_out == T(V4T))
14351
0
      || (oldtag == T(V4T) && *secondary_compat_out == T(V6_M)))
14352
0
    oldtag = T(V4T_PLUS_V6_M);
14353
14354
  /* And override the new tag if we have a Tag_also_compatible_with on the
14355
     input.  */
14356
14357
0
  if ((newtag == T(V6_M) && secondary_compat == T(V4T))
14358
0
      || (newtag == T(V4T) && secondary_compat == T(V6_M)))
14359
0
    newtag = T(V4T_PLUS_V6_M);
14360
14361
0
  tagl = (oldtag < newtag) ? oldtag : newtag;
14362
0
  result = tagh = (oldtag > newtag) ? oldtag : newtag;
14363
14364
  /* Architectures before V6KZ add features monotonically.  */
14365
0
  if (tagh <= TAG_CPU_ARCH_V6KZ)
14366
0
    return result;
14367
14368
0
  result = comb[tagh - T(V6T2)] ? comb[tagh - T(V6T2)][tagl] : -1;
14369
14370
  /* Use Tag_CPU_arch == V4T and Tag_also_compatible_with (Tag_CPU_arch V6_M)
14371
     as the canonical version.  */
14372
0
  if (result == T(V4T_PLUS_V6_M))
14373
0
    {
14374
0
      result = T(V4T);
14375
0
      *secondary_compat_out = T(V6_M);
14376
0
    }
14377
0
  else
14378
0
    *secondary_compat_out = -1;
14379
14380
0
  if (result == -1)
14381
0
    {
14382
0
      _bfd_error_handler (_("error: conflicting CPU architectures %s vs %s in %pB"),
14383
0
        name_table[oldtag], name_table[newtag], ibfd);
14384
0
      return -1;
14385
0
    }
14386
14387
0
  return result;
14388
0
#undef T
14389
0
}
14390
14391
/* Query attributes object to see if integer divide instructions may be
14392
   present in an object.  */
14393
static bool
14394
elf32_arm_attributes_accept_div (const obj_attribute *attr)
14395
0
{
14396
0
  int arch = attr[Tag_CPU_arch].i;
14397
0
  int profile = attr[Tag_CPU_arch_profile].i;
14398
14399
0
  switch (attr[Tag_DIV_use].i)
14400
0
    {
14401
0
    case 0:
14402
      /* Integer divide allowed if instruction contained in archetecture.  */
14403
0
      if (arch == TAG_CPU_ARCH_V7 && (profile == 'R' || profile == 'M'))
14404
0
  return true;
14405
0
      else if (arch >= TAG_CPU_ARCH_V7E_M)
14406
0
  return true;
14407
0
      else
14408
0
  return false;
14409
14410
0
    case 1:
14411
      /* Integer divide explicitly prohibited.  */
14412
0
      return false;
14413
14414
0
    default:
14415
      /* Unrecognised case - treat as allowing divide everywhere.  */
14416
0
    case 2:
14417
      /* Integer divide allowed in ARM state.  */
14418
0
      return true;
14419
0
    }
14420
0
}
14421
14422
/* Query attributes object to see if integer divide instructions are
14423
   forbidden to be in the object.  This is not the inverse of
14424
   elf32_arm_attributes_accept_div.  */
14425
static bool
14426
elf32_arm_attributes_forbid_div (const obj_attribute *attr)
14427
0
{
14428
0
  return attr[Tag_DIV_use].i == 1;
14429
0
}
14430
14431
/* Merge EABI object attributes from IBFD into OBFD.  Raise an error if there
14432
   are conflicting attributes.  */
14433
14434
static bool
14435
elf32_arm_merge_eabi_attributes (bfd *ibfd, struct bfd_link_info *info)
14436
0
{
14437
0
  bfd *obfd = info->output_bfd;
14438
0
  obj_attribute *in_attr;
14439
0
  obj_attribute *out_attr;
14440
  /* Some tags have 0 = don't care, 1 = strong requirement,
14441
     2 = weak requirement.  */
14442
0
  static const int order_021[3] = {0, 2, 1};
14443
0
  int i;
14444
0
  bool result = true;
14445
0
  const char *sec_name = get_elf_backend_data (ibfd)->obj_attrs_section;
14446
14447
  /* Skip the linker stubs file.  This preserves previous behavior
14448
     of accepting unknown attributes in the first input file - but
14449
     is that a bug?  */
14450
0
  if (ibfd->flags & BFD_LINKER_CREATED)
14451
0
    return true;
14452
14453
  /* Skip any input that hasn't attribute section.
14454
     This enables to link object files without attribute section with
14455
     any others.  */
14456
0
  if (bfd_get_section_by_name (ibfd, sec_name) == NULL)
14457
0
    return true;
14458
14459
0
  if (!elf_known_obj_attributes_proc (obfd)[0].i)
14460
0
    {
14461
      /* This is the first object.  Copy the attributes.  */
14462
0
      _bfd_elf_copy_obj_attributes (ibfd, obfd);
14463
14464
0
      out_attr = elf_known_obj_attributes_proc (obfd);
14465
14466
      /* Use the Tag_null value to indicate the attributes have been
14467
   initialized.  */
14468
0
      out_attr[0].i = 1;
14469
14470
      /* We do not output objects with Tag_MPextension_use_legacy - we move
14471
   the attribute's value to Tag_MPextension_use.  */
14472
0
      if (out_attr[Tag_MPextension_use_legacy].i != 0)
14473
0
  {
14474
0
    if (out_attr[Tag_MPextension_use].i != 0
14475
0
        && out_attr[Tag_MPextension_use_legacy].i
14476
0
    != out_attr[Tag_MPextension_use].i)
14477
0
      {
14478
0
        _bfd_error_handler
14479
0
    (_("Error: %pB has both the current and legacy "
14480
0
       "Tag_MPextension_use attributes"), ibfd);
14481
0
        result = false;
14482
0
      }
14483
14484
0
    out_attr[Tag_MPextension_use] =
14485
0
      out_attr[Tag_MPextension_use_legacy];
14486
0
    out_attr[Tag_MPextension_use_legacy].type = 0;
14487
0
    out_attr[Tag_MPextension_use_legacy].i = 0;
14488
0
  }
14489
14490
      /* PR 28859 and 28848:  Handle the case where the first input file,
14491
   eg crti.o, has a Tag_ABI_HardFP_use of 3 but no Tag_FP_arch set.
14492
   Using Tag_ABI_HardFP_use in this way is deprecated, so reset the
14493
   attribute to zero.
14494
   FIXME: Should we handle other non-zero values of Tag_ABI_HardFO_use ? */
14495
0
      if (out_attr[Tag_ABI_HardFP_use].i == 3 && out_attr[Tag_FP_arch].i == 0)
14496
0
  out_attr[Tag_ABI_HardFP_use].i = 0;
14497
14498
0
      return result;
14499
0
    }
14500
14501
0
  in_attr = elf_known_obj_attributes_proc (ibfd);
14502
0
  out_attr = elf_known_obj_attributes_proc (obfd);
14503
  /* This needs to happen before Tag_ABI_FP_number_model is merged.  */
14504
0
  if (in_attr[Tag_ABI_VFP_args].i != out_attr[Tag_ABI_VFP_args].i)
14505
0
    {
14506
      /* Ignore mismatches if the object doesn't use floating point or is
14507
   floating point ABI independent.  */
14508
0
      if (out_attr[Tag_ABI_FP_number_model].i == AEABI_FP_number_model_none
14509
0
    || (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14510
0
        && out_attr[Tag_ABI_VFP_args].i == AEABI_VFP_args_compatible))
14511
0
  out_attr[Tag_ABI_VFP_args].i = in_attr[Tag_ABI_VFP_args].i;
14512
0
      else if (in_attr[Tag_ABI_FP_number_model].i != AEABI_FP_number_model_none
14513
0
         && in_attr[Tag_ABI_VFP_args].i != AEABI_VFP_args_compatible)
14514
0
  {
14515
0
    _bfd_error_handler
14516
0
      (_("error: %pB uses VFP register arguments, %pB does not"),
14517
0
       in_attr[Tag_ABI_VFP_args].i ? ibfd : obfd,
14518
0
       in_attr[Tag_ABI_VFP_args].i ? obfd : ibfd);
14519
0
    result = false;
14520
0
  }
14521
0
    }
14522
14523
0
  for (i = LEAST_KNOWN_OBJ_ATTRIBUTE; i < NUM_KNOWN_OBJ_ATTRIBUTES; i++)
14524
0
    {
14525
      /* Merge this attribute with existing attributes.  */
14526
0
      switch (i)
14527
0
  {
14528
0
  case Tag_CPU_raw_name:
14529
0
  case Tag_CPU_name:
14530
    /* These are merged after Tag_CPU_arch.  */
14531
0
    break;
14532
14533
0
  case Tag_ABI_optimization_goals:
14534
0
  case Tag_ABI_FP_optimization_goals:
14535
    /* Use the first value seen.  */
14536
0
    break;
14537
14538
0
  case Tag_CPU_arch:
14539
0
    {
14540
0
      int secondary_compat = -1, secondary_compat_out = -1;
14541
0
      unsigned int saved_out_attr = out_attr[i].i;
14542
0
      int arch_attr;
14543
0
      static const char *const name_table[] =
14544
0
        {
14545
    /* These aren't real CPU names, but we can't guess
14546
       that from the architecture version alone.  */
14547
0
    "Pre v4",
14548
0
    "ARM v4",
14549
0
    "ARM v4T",
14550
0
    "ARM v5T",
14551
0
    "ARM v5TE",
14552
0
    "ARM v5TEJ",
14553
0
    "ARM v6",
14554
0
    "ARM v6KZ",
14555
0
    "ARM v6T2",
14556
0
    "ARM v6K",
14557
0
    "ARM v7",
14558
0
    "ARM v6-M",
14559
0
    "ARM v6S-M",
14560
0
    "ARM v7E-M",
14561
0
    "ARM v8",
14562
0
    "ARM v8-R",
14563
0
    "ARM v8-M.baseline",
14564
0
    "ARM v8-M.mainline",
14565
0
    "ARM v8.1-A",
14566
0
    "ARM v8.2-A",
14567
0
    "ARM v8.3-A",
14568
0
    "ARM v8.1-M.mainline",
14569
0
    "ARM v9",
14570
0
      };
14571
14572
      /* Merge Tag_CPU_arch and Tag_also_compatible_with.  */
14573
0
      secondary_compat = get_secondary_compatible_arch (ibfd);
14574
0
      secondary_compat_out = get_secondary_compatible_arch (obfd);
14575
0
      arch_attr = tag_cpu_arch_combine (ibfd, out_attr[i].i,
14576
0
                &secondary_compat_out,
14577
0
                in_attr[i].i,
14578
0
                secondary_compat,
14579
0
                name_table);
14580
14581
      /* Return with error if failed to merge.  */
14582
0
      if (arch_attr == -1)
14583
0
        return false;
14584
14585
0
      out_attr[i].i = arch_attr;
14586
14587
0
      set_secondary_compatible_arch (obfd, secondary_compat_out);
14588
14589
      /* Merge Tag_CPU_name and Tag_CPU_raw_name.  */
14590
0
      if (out_attr[i].i == saved_out_attr)
14591
0
        ; /* Leave the names alone.  */
14592
0
      else if (out_attr[i].i == in_attr[i].i)
14593
0
        {
14594
    /* The output architecture has been changed to match the
14595
       input architecture.  Use the input names.  */
14596
0
    out_attr[Tag_CPU_name].s = in_attr[Tag_CPU_name].s
14597
0
      ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_name].s)
14598
0
      : NULL;
14599
0
    out_attr[Tag_CPU_raw_name].s = in_attr[Tag_CPU_raw_name].s
14600
0
      ? _bfd_elf_attr_strdup (obfd, in_attr[Tag_CPU_raw_name].s)
14601
0
      : NULL;
14602
0
        }
14603
0
      else
14604
0
        {
14605
0
    out_attr[Tag_CPU_name].s = NULL;
14606
0
    out_attr[Tag_CPU_raw_name].s = NULL;
14607
0
        }
14608
14609
      /* If we still don't have a value for Tag_CPU_name,
14610
         make one up now.  Tag_CPU_raw_name remains blank.  */
14611
0
      if (out_attr[Tag_CPU_name].s == NULL
14612
0
    && out_attr[i].i < ARRAY_SIZE (name_table))
14613
0
        out_attr[Tag_CPU_name].s =
14614
0
    _bfd_elf_attr_strdup (obfd, name_table[out_attr[i].i]);
14615
0
    }
14616
0
    break;
14617
14618
0
  case Tag_ARM_ISA_use:
14619
0
  case Tag_THUMB_ISA_use:
14620
0
  case Tag_WMMX_arch:
14621
0
  case Tag_Advanced_SIMD_arch:
14622
    /* ??? Do Advanced_SIMD (NEON) and WMMX conflict?  */
14623
0
  case Tag_ABI_FP_rounding:
14624
0
  case Tag_ABI_FP_exceptions:
14625
0
  case Tag_ABI_FP_user_exceptions:
14626
0
  case Tag_ABI_FP_number_model:
14627
0
  case Tag_FP_HP_extension:
14628
0
  case Tag_CPU_unaligned_access:
14629
0
  case Tag_T2EE_use:
14630
0
  case Tag_MPextension_use:
14631
0
  case Tag_MVE_arch:
14632
0
  case Tag_PAC_extension:
14633
0
  case Tag_BTI_extension:
14634
0
  case Tag_BTI_use:
14635
0
  case Tag_PACRET_use:
14636
    /* Use the largest value specified.  */
14637
0
    if (in_attr[i].i > out_attr[i].i)
14638
0
      out_attr[i].i = in_attr[i].i;
14639
0
    break;
14640
14641
0
  case Tag_ABI_align_preserved:
14642
0
  case Tag_ABI_PCS_RO_data:
14643
    /* Use the smallest value specified.  */
14644
0
    if (in_attr[i].i < out_attr[i].i)
14645
0
      out_attr[i].i = in_attr[i].i;
14646
0
    break;
14647
14648
0
  case Tag_ABI_align_needed:
14649
0
    if ((in_attr[i].i > 0 || out_attr[i].i > 0)
14650
0
        && (in_attr[Tag_ABI_align_preserved].i == 0
14651
0
      || out_attr[Tag_ABI_align_preserved].i == 0))
14652
0
      {
14653
        /* This error message should be enabled once all non-conformant
14654
     binaries in the toolchain have had the attributes set
14655
     properly.
14656
        _bfd_error_handler
14657
    (_("error: %pB: 8-byte data alignment conflicts with %pB"),
14658
     obfd, ibfd);
14659
        result = false; */
14660
0
      }
14661
    /* Fall through.  */
14662
0
  case Tag_ABI_FP_denormal:
14663
0
  case Tag_ABI_PCS_GOT_use:
14664
    /* Use the "greatest" from the sequence 0, 2, 1, or the largest
14665
       value if greater than 2 (for future-proofing).  */
14666
0
    if ((in_attr[i].i > 2 && in_attr[i].i > out_attr[i].i)
14667
0
        || (in_attr[i].i <= 2 && out_attr[i].i <= 2
14668
0
      && order_021[in_attr[i].i] > order_021[out_attr[i].i]))
14669
0
      out_attr[i].i = in_attr[i].i;
14670
0
    break;
14671
14672
0
  case Tag_Virtualization_use:
14673
    /* The virtualization tag effectively stores two bits of
14674
       information: the intended use of TrustZone (in bit 0), and the
14675
       intended use of Virtualization (in bit 1).  */
14676
0
    if (out_attr[i].i == 0)
14677
0
      out_attr[i].i = in_attr[i].i;
14678
0
    else if (in_attr[i].i != 0
14679
0
       && in_attr[i].i != out_attr[i].i)
14680
0
      {
14681
0
        if (in_attr[i].i <= 3 && out_attr[i].i <= 3)
14682
0
    out_attr[i].i = 3;
14683
0
        else
14684
0
    {
14685
0
      _bfd_error_handler
14686
0
        (_("error: %pB: unable to merge virtualization attributes "
14687
0
           "with %pB"),
14688
0
         obfd, ibfd);
14689
0
      result = false;
14690
0
    }
14691
0
      }
14692
0
    break;
14693
14694
0
  case Tag_CPU_arch_profile:
14695
0
    if (out_attr[i].i != in_attr[i].i)
14696
0
      {
14697
        /* 0 will merge with anything.
14698
     'A' and 'S' merge to 'A'.
14699
     'R' and 'S' merge to 'R'.
14700
     'M' and 'A|R|S' is an error.  */
14701
0
        if (out_attr[i].i == 0
14702
0
      || (out_attr[i].i == 'S'
14703
0
          && (in_attr[i].i == 'A' || in_attr[i].i == 'R')))
14704
0
    out_attr[i].i = in_attr[i].i;
14705
0
        else if (in_attr[i].i == 0
14706
0
           || (in_attr[i].i == 'S'
14707
0
         && (out_attr[i].i == 'A' || out_attr[i].i == 'R')))
14708
0
    ; /* Do nothing.  */
14709
0
        else
14710
0
    {
14711
0
      _bfd_error_handler
14712
0
        (_("error: %pB: conflicting architecture profiles %c/%c"),
14713
0
         ibfd,
14714
0
         in_attr[i].i ? in_attr[i].i : '0',
14715
0
         out_attr[i].i ? out_attr[i].i : '0');
14716
0
      result = false;
14717
0
    }
14718
0
      }
14719
0
    break;
14720
14721
0
  case Tag_DSP_extension:
14722
    /* No need to change output value if any of:
14723
       - pre (<=) ARMv5T input architecture (do not have DSP)
14724
       - M input profile not ARMv7E-M and do not have DSP.  */
14725
0
    if (in_attr[Tag_CPU_arch].i <= 3
14726
0
        || (in_attr[Tag_CPU_arch_profile].i == 'M'
14727
0
      && in_attr[Tag_CPU_arch].i != 13
14728
0
      && in_attr[i].i == 0))
14729
0
      ; /* Do nothing.  */
14730
    /* Output value should be 0 if DSP part of architecture, ie.
14731
       - post (>=) ARMv5te architecture output
14732
       - A, R or S profile output or ARMv7E-M output architecture.  */
14733
0
    else if (out_attr[Tag_CPU_arch].i >= 4
14734
0
       && (out_attr[Tag_CPU_arch_profile].i == 'A'
14735
0
           || out_attr[Tag_CPU_arch_profile].i == 'R'
14736
0
           || out_attr[Tag_CPU_arch_profile].i == 'S'
14737
0
           || out_attr[Tag_CPU_arch].i == 13))
14738
0
      out_attr[i].i = 0;
14739
    /* Otherwise, DSP instructions are added and not part of output
14740
       architecture.  */
14741
0
    else
14742
0
      out_attr[i].i = 1;
14743
0
    break;
14744
14745
0
  case Tag_FP_arch:
14746
0
      {
14747
        /* Tag_ABI_HardFP_use is handled along with Tag_FP_arch since
14748
     the meaning of Tag_ABI_HardFP_use depends on Tag_FP_arch
14749
     when it's 0.  It might mean absence of FP hardware if
14750
     Tag_FP_arch is zero.  */
14751
14752
0
#define VFP_VERSION_COUNT 9
14753
0
        static const struct
14754
0
        {
14755
0
      int ver;
14756
0
      int regs;
14757
0
        } vfp_versions[VFP_VERSION_COUNT] =
14758
0
    {
14759
0
      {0, 0},
14760
0
      {1, 16},
14761
0
      {2, 16},
14762
0
      {3, 32},
14763
0
      {3, 16},
14764
0
      {4, 32},
14765
0
      {4, 16},
14766
0
      {8, 32},
14767
0
      {8, 16}
14768
0
    };
14769
0
        int ver;
14770
0
        int regs;
14771
0
        int newval;
14772
14773
        /* If the output has no requirement about FP hardware,
14774
     follow the requirement of the input.  */
14775
0
        if (out_attr[i].i == 0)
14776
0
    {
14777
      /* This assert is still reasonable, we shouldn't
14778
         produce the suspicious build attribute
14779
         combination (See below for in_attr).  */
14780
0
      BFD_ASSERT (out_attr[Tag_ABI_HardFP_use].i == 0);
14781
0
      out_attr[i].i = in_attr[i].i;
14782
0
      out_attr[Tag_ABI_HardFP_use].i
14783
0
        = in_attr[Tag_ABI_HardFP_use].i;
14784
0
      break;
14785
0
    }
14786
        /* If the input has no requirement about FP hardware, do
14787
     nothing.  */
14788
0
        else if (in_attr[i].i == 0)
14789
0
    {
14790
      /* We used to assert that Tag_ABI_HardFP_use was
14791
         zero here, but we should never assert when
14792
         consuming an object file that has suspicious
14793
         build attributes.  The single precision variant
14794
         of 'no FP architecture' is still 'no FP
14795
         architecture', so we just ignore the tag in this
14796
         case.  */
14797
0
      break;
14798
0
    }
14799
14800
        /* Both the input and the output have nonzero Tag_FP_arch.
14801
     So Tag_ABI_HardFP_use is implied by Tag_FP_arch when it's zero.  */
14802
14803
        /* If both the input and the output have zero Tag_ABI_HardFP_use,
14804
     do nothing.  */
14805
0
        if (in_attr[Tag_ABI_HardFP_use].i == 0
14806
0
      && out_attr[Tag_ABI_HardFP_use].i == 0)
14807
0
    ;
14808
        /* If the input and the output have different Tag_ABI_HardFP_use,
14809
     the combination of them is 0 (implied by Tag_FP_arch).  */
14810
0
        else if (in_attr[Tag_ABI_HardFP_use].i
14811
0
           != out_attr[Tag_ABI_HardFP_use].i)
14812
0
    out_attr[Tag_ABI_HardFP_use].i = 0;
14813
14814
        /* Now we can handle Tag_FP_arch.  */
14815
14816
        /* Values of VFP_VERSION_COUNT or more aren't defined, so just
14817
     pick the biggest.  */
14818
0
        if (in_attr[i].i >= VFP_VERSION_COUNT
14819
0
      && in_attr[i].i > out_attr[i].i)
14820
0
    {
14821
0
      out_attr[i] = in_attr[i];
14822
0
      break;
14823
0
    }
14824
        /* The output uses the superset of input features
14825
     (ISA version) and registers.  */
14826
0
        ver = vfp_versions[in_attr[i].i].ver;
14827
0
        if (ver < vfp_versions[out_attr[i].i].ver)
14828
0
    ver = vfp_versions[out_attr[i].i].ver;
14829
0
        regs = vfp_versions[in_attr[i].i].regs;
14830
0
        if (regs < vfp_versions[out_attr[i].i].regs)
14831
0
    regs = vfp_versions[out_attr[i].i].regs;
14832
        /* This assumes all possible supersets are also a valid
14833
     options.  */
14834
0
        for (newval = VFP_VERSION_COUNT - 1; newval > 0; newval--)
14835
0
    {
14836
0
      if (regs == vfp_versions[newval].regs
14837
0
          && ver == vfp_versions[newval].ver)
14838
0
        break;
14839
0
    }
14840
0
        out_attr[i].i = newval;
14841
0
      }
14842
0
    break;
14843
0
  case Tag_PCS_config:
14844
0
    if (out_attr[i].i == 0)
14845
0
      out_attr[i].i = in_attr[i].i;
14846
0
    else if (in_attr[i].i != 0 && out_attr[i].i != in_attr[i].i)
14847
0
      {
14848
        /* It's sometimes ok to mix different configs, so this is only
14849
     a warning.  */
14850
0
        _bfd_error_handler
14851
0
    (_("warning: %pB: conflicting platform configuration"), ibfd);
14852
0
      }
14853
0
    break;
14854
0
  case Tag_ABI_PCS_R9_use:
14855
0
    if (in_attr[i].i != out_attr[i].i
14856
0
        && out_attr[i].i != AEABI_R9_unused
14857
0
        && in_attr[i].i != AEABI_R9_unused)
14858
0
      {
14859
0
        _bfd_error_handler
14860
0
    (_("error: %pB: conflicting use of R9"), ibfd);
14861
0
        result = false;
14862
0
      }
14863
0
    if (out_attr[i].i == AEABI_R9_unused)
14864
0
      out_attr[i].i = in_attr[i].i;
14865
0
    break;
14866
0
  case Tag_ABI_PCS_RW_data:
14867
0
    if (in_attr[i].i == AEABI_PCS_RW_data_SBrel
14868
0
        && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_SB
14869
0
        && out_attr[Tag_ABI_PCS_R9_use].i != AEABI_R9_unused)
14870
0
      {
14871
0
        _bfd_error_handler
14872
0
    (_("error: %pB: SB relative addressing conflicts with use of R9"),
14873
0
     ibfd);
14874
0
        result = false;
14875
0
      }
14876
    /* Use the smallest value specified.  */
14877
0
    if (in_attr[i].i < out_attr[i].i)
14878
0
      out_attr[i].i = in_attr[i].i;
14879
0
    break;
14880
0
  case Tag_ABI_PCS_wchar_t:
14881
0
    if (out_attr[i].i && in_attr[i].i && out_attr[i].i != in_attr[i].i
14882
0
        && !elf_arm_tdata (obfd)->no_wchar_size_warning)
14883
0
      {
14884
0
        _bfd_error_handler
14885
0
    (_("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"),
14886
0
     ibfd, in_attr[i].i, out_attr[i].i);
14887
0
      }
14888
0
    else if (in_attr[i].i && !out_attr[i].i)
14889
0
      out_attr[i].i = in_attr[i].i;
14890
0
    break;
14891
0
  case Tag_ABI_enum_size:
14892
0
    if (in_attr[i].i != AEABI_enum_unused)
14893
0
      {
14894
0
        if (out_attr[i].i == AEABI_enum_unused
14895
0
      || out_attr[i].i == AEABI_enum_forced_wide)
14896
0
    {
14897
      /* The existing object is compatible with anything.
14898
         Use whatever requirements the new object has.  */
14899
0
      out_attr[i].i = in_attr[i].i;
14900
0
    }
14901
0
        else if (in_attr[i].i != AEABI_enum_forced_wide
14902
0
           && out_attr[i].i != in_attr[i].i
14903
0
           && !elf_arm_tdata (obfd)->no_enum_size_warning)
14904
0
    {
14905
0
      static const char *aeabi_enum_names[] =
14906
0
        { "", "variable-size", "32-bit", "" };
14907
0
      const char *in_name =
14908
0
        in_attr[i].i < ARRAY_SIZE (aeabi_enum_names)
14909
0
        ? aeabi_enum_names[in_attr[i].i]
14910
0
        : "<unknown>";
14911
0
      const char *out_name =
14912
0
        out_attr[i].i < ARRAY_SIZE (aeabi_enum_names)
14913
0
        ? aeabi_enum_names[out_attr[i].i]
14914
0
        : "<unknown>";
14915
0
      _bfd_error_handler
14916
0
        (_("warning: %pB uses %s enums yet the output is to use %s enums; use of enum values across objects may fail"),
14917
0
         ibfd, in_name, out_name);
14918
0
    }
14919
0
      }
14920
0
    break;
14921
0
  case Tag_ABI_VFP_args:
14922
    /* Aready done.  */
14923
0
    break;
14924
0
  case Tag_ABI_WMMX_args:
14925
0
    if (in_attr[i].i != out_attr[i].i)
14926
0
      {
14927
0
        _bfd_error_handler
14928
0
    (_("error: %pB uses iWMMXt register arguments, %pB does not"),
14929
0
     ibfd, obfd);
14930
0
        result = false;
14931
0
      }
14932
0
    break;
14933
0
  case Tag_compatibility:
14934
    /* Merged in target-independent code.  */
14935
0
    break;
14936
0
  case Tag_ABI_HardFP_use:
14937
    /* This is handled along with Tag_FP_arch.  */
14938
0
    break;
14939
0
  case Tag_ABI_FP_16bit_format:
14940
0
    if (in_attr[i].i != 0 && out_attr[i].i != 0)
14941
0
      {
14942
0
        if (in_attr[i].i != out_attr[i].i)
14943
0
    {
14944
0
      _bfd_error_handler
14945
0
        (_("error: fp16 format mismatch between %pB and %pB"),
14946
0
         ibfd, obfd);
14947
0
      result = false;
14948
0
    }
14949
0
      }
14950
0
    if (in_attr[i].i != 0)
14951
0
      out_attr[i].i = in_attr[i].i;
14952
0
    break;
14953
14954
0
  case Tag_DIV_use:
14955
    /* A value of zero on input means that the divide instruction may
14956
       be used if available in the base architecture as specified via
14957
       Tag_CPU_arch and Tag_CPU_arch_profile.  A value of 1 means that
14958
       the user did not want divide instructions.  A value of 2
14959
       explicitly means that divide instructions were allowed in ARM
14960
       and Thumb state.  */
14961
0
    if (in_attr[i].i == out_attr[i].i)
14962
0
      /* Do nothing.  */ ;
14963
0
    else if (elf32_arm_attributes_forbid_div (in_attr)
14964
0
       && !elf32_arm_attributes_accept_div (out_attr))
14965
0
      out_attr[i].i = 1;
14966
0
    else if (elf32_arm_attributes_forbid_div (out_attr)
14967
0
       && elf32_arm_attributes_accept_div (in_attr))
14968
0
      out_attr[i].i = in_attr[i].i;
14969
0
    else if (in_attr[i].i == 2)
14970
0
      out_attr[i].i = in_attr[i].i;
14971
0
    break;
14972
14973
0
  case Tag_MPextension_use_legacy:
14974
    /* We don't output objects with Tag_MPextension_use_legacy - we
14975
       move the value to Tag_MPextension_use.  */
14976
0
    if (in_attr[i].i != 0 && in_attr[Tag_MPextension_use].i != 0)
14977
0
      {
14978
0
        if (in_attr[Tag_MPextension_use].i != in_attr[i].i)
14979
0
    {
14980
0
      _bfd_error_handler
14981
0
        (_("%pB has both the current and legacy "
14982
0
           "Tag_MPextension_use attributes"),
14983
0
         ibfd);
14984
0
      result = false;
14985
0
    }
14986
0
      }
14987
14988
0
    if (in_attr[i].i > out_attr[Tag_MPextension_use].i)
14989
0
      out_attr[Tag_MPextension_use] = in_attr[i];
14990
14991
0
    break;
14992
14993
0
  case Tag_nodefaults:
14994
    /* This tag is set if it exists, but the value is unused (and is
14995
       typically zero).  We don't actually need to do anything here -
14996
       the merge happens automatically when the type flags are merged
14997
       below.  */
14998
0
    break;
14999
0
  case Tag_also_compatible_with:
15000
    /* Already done in Tag_CPU_arch.  */
15001
0
    break;
15002
0
  case Tag_conformance:
15003
    /* Keep the attribute if it matches.  Throw it away otherwise.
15004
       No attribute means no claim to conform.  */
15005
0
    if (!in_attr[i].s || !out_attr[i].s
15006
0
        || strcmp (in_attr[i].s, out_attr[i].s) != 0)
15007
0
      out_attr[i].s = NULL;
15008
0
    break;
15009
15010
0
  default:
15011
0
    result
15012
0
      = result && _bfd_elf_merge_unknown_attribute_low (ibfd, obfd, i);
15013
0
  }
15014
15015
      /* If out_attr was copied from in_attr then it won't have a type yet.  */
15016
0
      if (in_attr[i].type && !out_attr[i].type)
15017
0
  out_attr[i].type = in_attr[i].type;
15018
0
    }
15019
15020
  /* Merge Tag_compatibility attributes and any common GNU ones.  */
15021
0
  if (!_bfd_elf_merge_object_attributes (ibfd, info))
15022
0
    return false;
15023
15024
  /* Check for any attributes not known on ARM.  */
15025
0
  result &= _bfd_elf_merge_unknown_attribute_list (ibfd, obfd);
15026
15027
0
  return result;
15028
0
}
15029
15030
15031
/* Return TRUE if the two EABI versions are incompatible.  */
15032
15033
static bool
15034
elf32_arm_versions_compatible (unsigned iver, unsigned over)
15035
0
{
15036
  /* v4 and v5 are the same spec before and after it was released,
15037
     so allow mixing them.  */
15038
0
  if ((iver == EF_ARM_EABI_VER4 && over == EF_ARM_EABI_VER5)
15039
0
      || (iver == EF_ARM_EABI_VER5 && over == EF_ARM_EABI_VER4))
15040
0
    return true;
15041
15042
0
  return (iver == over);
15043
0
}
15044
15045
/* Merge backend specific data from an object file to the output
15046
   object file when linking.  */
15047
15048
static bool
15049
elf32_arm_merge_private_bfd_data (bfd *, struct bfd_link_info *);
15050
15051
/* Display the flags field.  */
15052
15053
static bool
15054
elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
15055
314
{
15056
314
  FILE * file = (FILE *) ptr;
15057
314
  unsigned long flags;
15058
15059
314
  BFD_ASSERT (abfd != NULL && ptr != NULL);
15060
15061
  /* Print normal ELF private data.  */
15062
314
  _bfd_elf_print_private_bfd_data (abfd, ptr);
15063
15064
314
  flags = elf_elfheader (abfd)->e_flags;
15065
  /* Ignore init flag - it may not be set, despite the flags field
15066
     containing valid data.  */
15067
15068
314
  fprintf (file, _("private flags = 0x%lx:"), elf_elfheader (abfd)->e_flags);
15069
15070
314
  switch (EF_ARM_EABI_VERSION (flags))
15071
314
    {
15072
247
    case EF_ARM_EABI_UNKNOWN:
15073
      /* The following flag bits are GNU extensions and not part of the
15074
   official ARM ELF extended ABI.  Hence they are only decoded if
15075
   the EABI version is not set.  */
15076
247
      if (flags & EF_ARM_INTERWORK)
15077
5
  fprintf (file, _(" [interworking enabled]"));
15078
15079
247
      if (flags & EF_ARM_APCS_26)
15080
5
  fprintf (file, " [APCS-26]");
15081
242
      else
15082
242
  fprintf (file, " [APCS-32]");
15083
15084
247
      if (flags & EF_ARM_VFP_FLOAT)
15085
1
  fprintf (file, _(" [VFP float format]"));
15086
246
      else
15087
246
  fprintf (file, _(" [FPA float format]"));
15088
15089
247
      if (flags & EF_ARM_APCS_FLOAT)
15090
5
  fprintf (file, _(" [floats passed in float registers]"));
15091
15092
247
      if (flags & EF_ARM_PIC)
15093
5
  fprintf (file, _(" [position independent]"));
15094
15095
247
      if (flags & EF_ARM_NEW_ABI)
15096
5
  fprintf (file, _(" [new ABI]"));
15097
15098
247
      if (flags & EF_ARM_OLD_ABI)
15099
243
  fprintf (file, _(" [old ABI]"));
15100
15101
247
      if (flags & EF_ARM_SOFT_FLOAT)
15102
1
  fprintf (file, _(" [software FP]"));
15103
15104
247
      flags &= ~(EF_ARM_INTERWORK | EF_ARM_APCS_26 | EF_ARM_APCS_FLOAT
15105
247
     | EF_ARM_PIC | EF_ARM_NEW_ABI | EF_ARM_OLD_ABI
15106
247
     | EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT);
15107
247
      break;
15108
15109
0
    case EF_ARM_EABI_VER1:
15110
0
      fprintf (file, _(" [Version1 EABI]"));
15111
15112
0
      if (flags & EF_ARM_SYMSARESORTED)
15113
0
  fprintf (file, _(" [sorted symbol table]"));
15114
0
      else
15115
0
  fprintf (file, _(" [unsorted symbol table]"));
15116
15117
0
      flags &= ~ EF_ARM_SYMSARESORTED;
15118
0
      break;
15119
15120
0
    case EF_ARM_EABI_VER2:
15121
0
      fprintf (file, _(" [Version2 EABI]"));
15122
15123
0
      if (flags & EF_ARM_SYMSARESORTED)
15124
0
  fprintf (file, _(" [sorted symbol table]"));
15125
0
      else
15126
0
  fprintf (file, _(" [unsorted symbol table]"));
15127
15128
0
      if (flags & EF_ARM_DYNSYMSUSESEGIDX)
15129
0
  fprintf (file, _(" [dynamic symbols use segment index]"));
15130
15131
0
      if (flags & EF_ARM_MAPSYMSFIRST)
15132
0
  fprintf (file, _(" [mapping symbols precede others]"));
15133
15134
0
      flags &= ~(EF_ARM_SYMSARESORTED | EF_ARM_DYNSYMSUSESEGIDX
15135
0
     | EF_ARM_MAPSYMSFIRST);
15136
0
      break;
15137
15138
54
    case EF_ARM_EABI_VER3:
15139
54
      fprintf (file, _(" [Version3 EABI]"));
15140
54
      break;
15141
15142
0
    case EF_ARM_EABI_VER4:
15143
0
      fprintf (file, _(" [Version4 EABI]"));
15144
0
      goto eabi;
15145
15146
1
    case EF_ARM_EABI_VER5:
15147
1
      fprintf (file, _(" [Version5 EABI]"));
15148
15149
1
      if (flags & EF_ARM_ABI_FLOAT_SOFT)
15150
0
  fprintf (file, _(" [soft-float ABI]"));
15151
15152
1
      if (flags & EF_ARM_ABI_FLOAT_HARD)
15153
0
  fprintf (file, _(" [hard-float ABI]"));
15154
15155
1
      flags &= ~(EF_ARM_ABI_FLOAT_SOFT | EF_ARM_ABI_FLOAT_HARD);
15156
15157
1
    eabi:
15158
1
      if (flags & EF_ARM_BE8)
15159
0
  fprintf (file, _(" [BE8]"));
15160
15161
1
      if (flags & EF_ARM_LE8)
15162
0
  fprintf (file, _(" [LE8]"));
15163
15164
1
      flags &= ~(EF_ARM_LE8 | EF_ARM_BE8);
15165
1
      break;
15166
15167
12
    default:
15168
12
      fprintf (file, _(" <EABI version unrecognised>"));
15169
12
      break;
15170
314
    }
15171
15172
314
  flags &= ~ EF_ARM_EABIMASK;
15173
15174
314
  if (flags & EF_ARM_RELEXEC)
15175
5
    fprintf (file, _(" [relocatable executable]"));
15176
15177
314
  if (flags & EF_ARM_PIC)
15178
0
    fprintf (file, _(" [position independent]"));
15179
15180
314
  if (elf_elfheader (abfd)->e_ident[EI_OSABI] == ELFOSABI_ARM_FDPIC)
15181
0
    fprintf (file, _(" [FDPIC ABI supplement]"));
15182
15183
314
  flags &= ~ (EF_ARM_RELEXEC | EF_ARM_PIC);
15184
15185
314
  if (flags)
15186
314
    fprintf (file, _(" <Unrecognised flag bits set>"));
15187
15188
314
  fputc ('\n', file);
15189
15190
314
  return true;
15191
314
}
15192
15193
static int
15194
elf32_arm_get_symbol_type (Elf_Internal_Sym * elf_sym, int type)
15195
0
{
15196
0
  switch (ELF_ST_TYPE (elf_sym->st_info))
15197
0
    {
15198
0
    case STT_ARM_TFUNC:
15199
0
      return ELF_ST_TYPE (elf_sym->st_info);
15200
15201
0
    case STT_ARM_16BIT:
15202
      /* If the symbol is not an object, return the STT_ARM_16BIT flag.
15203
   This allows us to distinguish between data used by Thumb instructions
15204
   and non-data (which is probably code) inside Thumb regions of an
15205
   executable.  */
15206
0
      if (type != STT_OBJECT && type != STT_TLS)
15207
0
  return ELF_ST_TYPE (elf_sym->st_info);
15208
0
      break;
15209
15210
0
    default:
15211
0
      break;
15212
0
    }
15213
15214
0
  return type;
15215
0
}
15216
15217
static asection *
15218
elf32_arm_gc_mark_hook (asection *sec,
15219
      struct bfd_link_info *info,
15220
      struct elf_reloc_cookie *cookie,
15221
      struct elf_link_hash_entry *h,
15222
      unsigned int symndx)
15223
0
{
15224
0
  if (h != NULL)
15225
0
    switch (ELF32_R_TYPE (cookie->rel->r_info))
15226
0
      {
15227
0
      case R_ARM_GNU_VTINHERIT:
15228
0
      case R_ARM_GNU_VTENTRY:
15229
0
  return NULL;
15230
0
      }
15231
15232
0
  return _bfd_elf_gc_mark_hook (sec, info, cookie, h, symndx);
15233
0
}
15234
15235
/* Look through the relocs for a section during the first phase.  */
15236
15237
static bool
15238
elf32_arm_check_relocs (bfd *abfd, struct bfd_link_info *info,
15239
      asection *sec, const Elf_Internal_Rela *relocs)
15240
0
{
15241
0
  Elf_Internal_Shdr *symtab_hdr;
15242
0
  struct elf_link_hash_entry **sym_hashes;
15243
0
  const Elf_Internal_Rela *rel;
15244
0
  const Elf_Internal_Rela *rel_end;
15245
0
  bfd *dynobj;
15246
0
  asection *sreloc;
15247
0
  struct elf32_arm_link_hash_table *htab;
15248
0
  bool call_reloc_p;
15249
0
  bool may_become_dynamic_p;
15250
0
  bool may_need_local_target_p;
15251
0
  unsigned long nsyms;
15252
15253
0
  if (bfd_link_relocatable (info))
15254
0
    return true;
15255
15256
0
  BFD_ASSERT (is_arm_elf (abfd));
15257
15258
0
  htab = elf32_arm_hash_table (info);
15259
0
  if (htab == NULL)
15260
0
    return false;
15261
15262
0
  sreloc = NULL;
15263
15264
0
  if (htab->root.dynobj == NULL)
15265
0
    htab->root.dynobj = abfd;
15266
0
  if (!create_ifunc_sections (info))
15267
0
    return false;
15268
15269
0
  dynobj = htab->root.dynobj;
15270
15271
0
  symtab_hdr = & elf_symtab_hdr (abfd);
15272
0
  sym_hashes = elf_sym_hashes (abfd);
15273
0
  nsyms = NUM_SHDR_ENTRIES (symtab_hdr);
15274
15275
0
  rel_end = relocs + sec->reloc_count;
15276
0
  for (rel = relocs; rel < rel_end; rel++)
15277
0
    {
15278
0
      Elf_Internal_Sym *isym;
15279
0
      struct elf_link_hash_entry *h;
15280
0
      struct elf32_arm_link_hash_entry *eh;
15281
0
      unsigned int r_symndx;
15282
0
      int r_type;
15283
15284
0
      r_symndx = ELF32_R_SYM (rel->r_info);
15285
0
      r_type = ELF32_R_TYPE (rel->r_info);
15286
0
      r_type = arm_real_reloc_type (htab, r_type);
15287
15288
0
      if (r_symndx >= nsyms
15289
    /* PR 9934: It is possible to have relocations that do not
15290
       refer to symbols, thus it is also possible to have an
15291
       object file containing relocations but no symbol table.  */
15292
0
    && (r_symndx > STN_UNDEF || nsyms > 0))
15293
0
  {
15294
0
    _bfd_error_handler (_("%pB: bad symbol index: %d"), abfd,
15295
0
            r_symndx);
15296
0
    return false;
15297
0
  }
15298
15299
0
      h = NULL;
15300
0
      isym = NULL;
15301
0
      if (nsyms > 0)
15302
0
  {
15303
0
    if (r_symndx < symtab_hdr->sh_info)
15304
0
      {
15305
        /* A local symbol.  */
15306
0
        isym = bfd_sym_from_r_symndx (&htab->root.sym_cache,
15307
0
              abfd, r_symndx);
15308
0
        if (isym == NULL)
15309
0
    return false;
15310
0
      }
15311
0
    else
15312
0
      {
15313
0
        h = sym_hashes[r_symndx - symtab_hdr->sh_info];
15314
0
        while (h->root.type == bfd_link_hash_indirect
15315
0
         || h->root.type == bfd_link_hash_warning)
15316
0
    h = (struct elf_link_hash_entry *) h->root.u.i.link;
15317
0
      }
15318
0
  }
15319
15320
0
      eh = (struct elf32_arm_link_hash_entry *) h;
15321
15322
0
      call_reloc_p = false;
15323
0
      may_become_dynamic_p = false;
15324
0
      may_need_local_target_p = false;
15325
15326
      /* Could be done earlier, if h were already available.  */
15327
0
      r_type = elf32_arm_tls_transition (info, r_type, h);
15328
0
      switch (r_type)
15329
0
  {
15330
0
  case R_ARM_GOTOFFFUNCDESC:
15331
0
    {
15332
0
      if (h == NULL)
15333
0
        {
15334
0
    if (!elf32_arm_allocate_local_sym_info (abfd))
15335
0
      return false;
15336
0
    if (r_symndx >= elf32_arm_num_entries (abfd))
15337
0
      return false;
15338
0
    elf32_arm_local_fdpic_cnts (abfd) [r_symndx].gotofffuncdesc_cnt += 1;
15339
0
    elf32_arm_local_fdpic_cnts (abfd) [r_symndx].funcdesc_offset = -1;
15340
0
        }
15341
0
      else
15342
0
        {
15343
0
    eh->fdpic_cnts.gotofffuncdesc_cnt++;
15344
0
        }
15345
0
    }
15346
0
    break;
15347
15348
0
  case R_ARM_GOTFUNCDESC:
15349
0
    {
15350
0
      if (h == NULL)
15351
0
        {
15352
    /* Such a relocation is not supposed to be generated
15353
       by gcc on a static function.  */
15354
    /* Anyway if needed it could be handled.  */
15355
0
    return false;
15356
0
        }
15357
0
      else
15358
0
        {
15359
0
    eh->fdpic_cnts.gotfuncdesc_cnt++;
15360
0
        }
15361
0
    }
15362
0
    break;
15363
15364
0
  case R_ARM_FUNCDESC:
15365
0
    {
15366
0
      if (h == NULL)
15367
0
        {
15368
0
    if (!elf32_arm_allocate_local_sym_info (abfd))
15369
0
      return false;
15370
0
    if (r_symndx >= elf32_arm_num_entries (abfd))
15371
0
      return false;
15372
0
    elf32_arm_local_fdpic_cnts (abfd) [r_symndx].funcdesc_cnt += 1;
15373
0
    elf32_arm_local_fdpic_cnts (abfd) [r_symndx].funcdesc_offset = -1;
15374
0
        }
15375
0
      else
15376
0
        {
15377
0
    eh->fdpic_cnts.funcdesc_cnt++;
15378
0
        }
15379
0
    }
15380
0
    break;
15381
15382
0
    case R_ARM_GOT32:
15383
0
    case R_ARM_GOT_PREL:
15384
0
    case R_ARM_TLS_GD32:
15385
0
    case R_ARM_TLS_GD32_FDPIC:
15386
0
    case R_ARM_TLS_IE32:
15387
0
    case R_ARM_TLS_IE32_FDPIC:
15388
0
    case R_ARM_TLS_GOTDESC:
15389
0
    case R_ARM_TLS_DESCSEQ:
15390
0
    case R_ARM_THM_TLS_DESCSEQ:
15391
0
    case R_ARM_TLS_CALL:
15392
0
    case R_ARM_THM_TLS_CALL:
15393
      /* This symbol requires a global offset table entry.  */
15394
0
      {
15395
0
        int tls_type, old_tls_type;
15396
15397
0
        switch (r_type)
15398
0
    {
15399
0
    case R_ARM_TLS_GD32: tls_type = GOT_TLS_GD; break;
15400
0
    case R_ARM_TLS_GD32_FDPIC: tls_type = GOT_TLS_GD; break;
15401
15402
0
    case R_ARM_TLS_IE32: tls_type = GOT_TLS_IE; break;
15403
0
    case R_ARM_TLS_IE32_FDPIC: tls_type = GOT_TLS_IE; break;
15404
15405
0
    case R_ARM_TLS_GOTDESC:
15406
0
    case R_ARM_TLS_CALL: case R_ARM_THM_TLS_CALL:
15407
0
    case R_ARM_TLS_DESCSEQ: case R_ARM_THM_TLS_DESCSEQ:
15408
0
      tls_type = GOT_TLS_GDESC; break;
15409
15410
0
    default: tls_type = GOT_NORMAL; break;
15411
0
    }
15412
15413
0
        if (!bfd_link_executable (info) && (tls_type & GOT_TLS_IE))
15414
0
    info->flags |= DF_STATIC_TLS;
15415
15416
0
        if (h != NULL)
15417
0
    {
15418
0
      h->got.refcount++;
15419
0
      old_tls_type = elf32_arm_hash_entry (h)->tls_type;
15420
0
    }
15421
0
        else
15422
0
    {
15423
      /* This is a global offset table entry for a local symbol.  */
15424
0
      if (!elf32_arm_allocate_local_sym_info (abfd))
15425
0
        return false;
15426
0
      if (r_symndx >= elf32_arm_num_entries (abfd))
15427
0
        {
15428
0
          _bfd_error_handler (_("%pB: bad symbol index: %d"), abfd,
15429
0
            r_symndx);
15430
0
          return false;
15431
0
        }
15432
15433
0
      elf_local_got_refcounts (abfd)[r_symndx] += 1;
15434
0
      old_tls_type = elf32_arm_local_got_tls_type (abfd) [r_symndx];
15435
0
    }
15436
15437
        /* If a variable is accessed with both tls methods, two
15438
     slots may be created.  */
15439
0
        if (GOT_TLS_GD_ANY_P (old_tls_type)
15440
0
      && GOT_TLS_GD_ANY_P (tls_type))
15441
0
    tls_type |= old_tls_type;
15442
15443
        /* We will already have issued an error message if there
15444
     is a TLS/non-TLS mismatch, based on the symbol
15445
     type.  So just combine any TLS types needed.  */
15446
0
        if (old_tls_type != GOT_UNKNOWN && old_tls_type != GOT_NORMAL
15447
0
      && tls_type != GOT_NORMAL)
15448
0
    tls_type |= old_tls_type;
15449
15450
        /* If the symbol is accessed in both IE and GDESC
15451
     method, we're able to relax. Turn off the GDESC flag,
15452
     without messing up with any other kind of tls types
15453
     that may be involved.  */
15454
0
        if ((tls_type & GOT_TLS_IE) && (tls_type & GOT_TLS_GDESC))
15455
0
    tls_type &= ~GOT_TLS_GDESC;
15456
15457
0
        if (old_tls_type != tls_type)
15458
0
    {
15459
0
      if (h != NULL)
15460
0
        elf32_arm_hash_entry (h)->tls_type = tls_type;
15461
0
      else
15462
0
        elf32_arm_local_got_tls_type (abfd) [r_symndx] = tls_type;
15463
0
    }
15464
0
      }
15465
      /* Fall through.  */
15466
15467
0
    case R_ARM_TLS_LDM32:
15468
0
    case R_ARM_TLS_LDM32_FDPIC:
15469
0
      if (r_type == R_ARM_TLS_LDM32 || r_type == R_ARM_TLS_LDM32_FDPIC)
15470
0
    htab->tls_ldm_got.refcount++;
15471
      /* Fall through.  */
15472
15473
0
    case R_ARM_GOTOFF32:
15474
0
    case R_ARM_GOTPC:
15475
0
      if (htab->root.sgot == NULL
15476
0
    && !create_got_section (htab->root.dynobj, info))
15477
0
        return false;
15478
0
      break;
15479
15480
0
    case R_ARM_PC24:
15481
0
    case R_ARM_PLT32:
15482
0
    case R_ARM_CALL:
15483
0
    case R_ARM_JUMP24:
15484
0
    case R_ARM_PREL31:
15485
0
    case R_ARM_THM_CALL:
15486
0
    case R_ARM_THM_JUMP24:
15487
0
    case R_ARM_THM_JUMP19:
15488
0
      call_reloc_p = true;
15489
0
      may_need_local_target_p = true;
15490
0
      break;
15491
15492
0
    case R_ARM_ABS12:
15493
      /* VxWorks uses dynamic R_ARM_ABS12 relocations for
15494
         ldr __GOTT_INDEX__ offsets.  */
15495
0
      if (htab->root.target_os != is_vxworks)
15496
0
        {
15497
0
    may_need_local_target_p = true;
15498
0
    break;
15499
0
        }
15500
0
      else goto jump_over;
15501
15502
      /* Fall through.  */
15503
15504
0
    case R_ARM_MOVW_ABS_NC:
15505
0
    case R_ARM_MOVT_ABS:
15506
0
    case R_ARM_THM_MOVW_ABS_NC:
15507
0
    case R_ARM_THM_MOVT_ABS:
15508
0
      if (bfd_link_pic (info))
15509
0
        {
15510
0
    _bfd_error_handler
15511
0
      (_("%pB: relocation %s against `%s' can not be used when making a shared object; recompile with -fPIC"),
15512
0
       abfd, elf32_arm_howto_table_1[r_type].name,
15513
0
       (h) ? h->root.root.string : "a local symbol");
15514
0
    bfd_set_error (bfd_error_bad_value);
15515
0
    return false;
15516
0
        }
15517
15518
      /* Fall through.  */
15519
0
    case R_ARM_ABS32:
15520
0
    case R_ARM_ABS32_NOI:
15521
0
  jump_over:
15522
0
      if (h != NULL && bfd_link_executable (info))
15523
0
        {
15524
0
    h->pointer_equality_needed = 1;
15525
0
        }
15526
      /* Fall through.  */
15527
0
    case R_ARM_REL32:
15528
0
    case R_ARM_REL32_NOI:
15529
0
    case R_ARM_MOVW_PREL_NC:
15530
0
    case R_ARM_MOVT_PREL:
15531
0
    case R_ARM_THM_MOVW_PREL_NC:
15532
0
    case R_ARM_THM_MOVT_PREL:
15533
15534
      /* Should the interworking branches be listed here?  */
15535
0
      if ((bfd_link_pic (info)
15536
0
     || htab->fdpic_p)
15537
0
    && (sec->flags & SEC_ALLOC) != 0)
15538
0
        {
15539
0
    if (h == NULL
15540
0
        && elf32_arm_howto_from_type (r_type)->pc_relative)
15541
0
      {
15542
        /* In shared libraries and relocatable executables,
15543
           we treat local relative references as calls;
15544
           see the related SYMBOL_CALLS_LOCAL code in
15545
           allocate_dynrelocs.  */
15546
0
        call_reloc_p = true;
15547
0
        may_need_local_target_p = true;
15548
0
      }
15549
0
    else
15550
      /* We are creating a shared library or relocatable
15551
         executable, and this is a reloc against a global symbol,
15552
         or a non-PC-relative reloc against a local symbol.
15553
         We may need to copy the reloc into the output.  */
15554
0
      may_become_dynamic_p = true;
15555
0
        }
15556
0
      else
15557
0
        may_need_local_target_p = true;
15558
0
      break;
15559
15560
  /* This relocation describes the C++ object vtable hierarchy.
15561
     Reconstruct it for later use during GC.  */
15562
0
  case R_ARM_GNU_VTINHERIT:
15563
0
    if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
15564
0
      return false;
15565
0
    break;
15566
15567
  /* This relocation describes which C++ vtable entries are actually
15568
     used.  Record for later use during GC.  */
15569
0
  case R_ARM_GNU_VTENTRY:
15570
0
    if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
15571
0
      return false;
15572
0
    break;
15573
0
  }
15574
15575
0
      if (h != NULL)
15576
0
  {
15577
0
    if (call_reloc_p)
15578
      /* We may need a .plt entry if the function this reloc
15579
         refers to is in a different object, regardless of the
15580
         symbol's type.  We can't tell for sure yet, because
15581
         something later might force the symbol local.  */
15582
0
      h->needs_plt = 1;
15583
0
    else if (may_need_local_target_p)
15584
      /* If this reloc is in a read-only section, we might
15585
         need a copy reloc.  We can't check reliably at this
15586
         stage whether the section is read-only, as input
15587
         sections have not yet been mapped to output sections.
15588
         Tentatively set the flag for now, and correct in
15589
         adjust_dynamic_symbol.  */
15590
0
      h->non_got_ref = 1;
15591
0
  }
15592
15593
0
      if (may_need_local_target_p
15594
0
    && (h != NULL || ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC))
15595
0
  {
15596
0
    union gotplt_union *root_plt;
15597
0
    struct arm_plt_info *arm_plt;
15598
0
    struct arm_local_iplt_info *local_iplt;
15599
15600
0
    if (h != NULL)
15601
0
      {
15602
0
        root_plt = &h->plt;
15603
0
        arm_plt = &eh->plt;
15604
0
      }
15605
0
    else
15606
0
      {
15607
0
        local_iplt = elf32_arm_create_local_iplt (abfd, r_symndx);
15608
0
        if (local_iplt == NULL)
15609
0
    return false;
15610
0
        root_plt = &local_iplt->root;
15611
0
        arm_plt = &local_iplt->arm;
15612
0
      }
15613
15614
    /* If the symbol is a function that doesn't bind locally,
15615
       this relocation will need a PLT entry.  */
15616
0
    if (root_plt->refcount != -1)
15617
0
      root_plt->refcount += 1;
15618
15619
0
    if (!call_reloc_p)
15620
0
      arm_plt->noncall_refcount++;
15621
15622
    /* It's too early to use htab->use_blx here, so we have to
15623
       record possible blx references separately from
15624
       relocs that definitely need a thumb stub.  */
15625
15626
0
    if (r_type == R_ARM_THM_CALL)
15627
0
      arm_plt->maybe_thumb_refcount += 1;
15628
15629
0
    if (r_type == R_ARM_THM_JUMP24
15630
0
        || r_type == R_ARM_THM_JUMP19)
15631
0
      arm_plt->thumb_refcount += 1;
15632
0
  }
15633
15634
0
      if (may_become_dynamic_p)
15635
0
  {
15636
0
    struct elf_dyn_relocs *p, **head;
15637
15638
    /* Create a reloc section in dynobj.  */
15639
0
    if (sreloc == NULL)
15640
0
      {
15641
0
        sreloc = _bfd_elf_make_dynamic_reloc_section
15642
0
    (sec, dynobj, 2, abfd, ! htab->use_rel);
15643
15644
0
        if (sreloc == NULL)
15645
0
    return false;
15646
0
      }
15647
15648
    /* If this is a global symbol, count the number of
15649
       relocations we need for this symbol.  */
15650
0
    if (h != NULL)
15651
0
      head = &h->dyn_relocs;
15652
0
    else
15653
0
      {
15654
0
        head = elf32_arm_get_local_dynreloc_list (abfd, r_symndx, isym);
15655
0
        if (head == NULL)
15656
0
    return false;
15657
0
      }
15658
15659
0
    p = *head;
15660
0
    if (p == NULL || p->sec != sec)
15661
0
      {
15662
0
        size_t amt = sizeof *p;
15663
15664
0
        p = (struct elf_dyn_relocs *) bfd_alloc (htab->root.dynobj, amt);
15665
0
        if (p == NULL)
15666
0
    return false;
15667
0
        p->next = *head;
15668
0
        *head = p;
15669
0
        p->sec = sec;
15670
0
        p->count = 0;
15671
0
        p->pc_count = 0;
15672
0
      }
15673
15674
0
    if (elf32_arm_howto_from_type (r_type)->pc_relative)
15675
0
      p->pc_count += 1;
15676
0
    p->count += 1;
15677
0
    if (h == NULL && htab->fdpic_p && !bfd_link_pic (info)
15678
0
        && r_type != R_ARM_ABS32 && r_type != R_ARM_ABS32_NOI)
15679
0
      {
15680
        /* Here we only support R_ARM_ABS32 and R_ARM_ABS32_NOI
15681
     that will become rofixup.  */
15682
        /* This is due to the fact that we suppose all will become rofixup.  */
15683
0
        _bfd_error_handler
15684
0
    (_("FDPIC does not yet support %s relocation"
15685
0
       " to become dynamic for executable"),
15686
0
     elf32_arm_howto_table_1[r_type].name);
15687
0
        abort ();
15688
0
      }
15689
0
  }
15690
0
    }
15691
15692
0
  return true;
15693
0
}
15694
15695
static void
15696
elf32_arm_update_relocs (asection *o,
15697
       struct bfd_elf_section_reloc_data *reldata)
15698
0
{
15699
0
  void (*swap_in) (bfd *, const bfd_byte *, Elf_Internal_Rela *);
15700
0
  void (*swap_out) (bfd *, const Elf_Internal_Rela *, bfd_byte *);
15701
0
  elf_backend_data *bed;
15702
0
  _arm_elf_section_data *eado;
15703
0
  struct bfd_link_order *p;
15704
0
  bfd_byte *erela_head, *erela;
15705
0
  Elf_Internal_Rela *irela_head, *irela;
15706
0
  Elf_Internal_Shdr *rel_hdr;
15707
0
  bfd *abfd;
15708
0
  unsigned int count;
15709
15710
0
  eado = get_arm_elf_section_data (o);
15711
15712
0
  if (!eado || eado->elf.this_hdr.sh_type != SHT_ARM_EXIDX)
15713
0
    return;
15714
15715
0
  abfd = o->owner;
15716
0
  bed = get_elf_backend_data (abfd);
15717
0
  rel_hdr = reldata->hdr;
15718
15719
0
  if (rel_hdr->sh_entsize == bed->s->sizeof_rel)
15720
0
    {
15721
0
      swap_in = bed->s->swap_reloc_in;
15722
0
      swap_out = bed->s->swap_reloc_out;
15723
0
    }
15724
0
  else if (rel_hdr->sh_entsize == bed->s->sizeof_rela)
15725
0
    {
15726
0
      swap_in = bed->s->swap_reloca_in;
15727
0
      swap_out = bed->s->swap_reloca_out;
15728
0
    }
15729
0
  else
15730
0
    abort ();
15731
15732
0
  erela_head = rel_hdr->contents;
15733
0
  irela_head = (Elf_Internal_Rela *) bfd_zmalloc
15734
0
    ((NUM_SHDR_ENTRIES (rel_hdr) + 1) * sizeof (*irela_head));
15735
15736
0
  erela = erela_head;
15737
0
  irela = irela_head;
15738
0
  count = 0;
15739
15740
0
  for (p = o->map_head.link_order; p; p = p->next)
15741
0
    {
15742
0
      if (p->type == bfd_section_reloc_link_order
15743
0
    || p->type == bfd_symbol_reloc_link_order)
15744
0
  {
15745
0
    (*swap_in) (abfd, erela, irela);
15746
0
    erela += rel_hdr->sh_entsize;
15747
0
    irela++;
15748
0
    count++;
15749
0
  }
15750
0
      else if (p->type == bfd_indirect_link_order)
15751
0
  {
15752
0
    struct bfd_elf_section_reloc_data *input_reldata;
15753
0
    arm_unwind_table_edit *edit_list, *edit_tail;
15754
0
    _arm_elf_section_data *eadi;
15755
0
    bfd_size_type j;
15756
0
    bfd_vma offset;
15757
0
    asection *i;
15758
15759
0
    i = p->u.indirect.section;
15760
15761
0
    eadi = get_arm_elf_section_data (i);
15762
0
    edit_list = eadi->u.exidx.unwind_edit_list;
15763
0
    edit_tail = eadi->u.exidx.unwind_edit_tail;
15764
0
    offset = i->output_offset;
15765
15766
0
    if (eadi->elf.rel.hdr &&
15767
0
        eadi->elf.rel.hdr->sh_entsize == rel_hdr->sh_entsize)
15768
0
      input_reldata = &eadi->elf.rel;
15769
0
    else if (eadi->elf.rela.hdr &&
15770
0
       eadi->elf.rela.hdr->sh_entsize == rel_hdr->sh_entsize)
15771
0
      input_reldata = &eadi->elf.rela;
15772
0
    else
15773
0
      abort ();
15774
15775
0
    if (edit_list)
15776
0
      {
15777
0
        for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15778
0
    {
15779
0
      arm_unwind_table_edit *edit_node, *edit_next;
15780
0
      bfd_vma bias;
15781
0
      bfd_vma reloc_index;
15782
15783
0
      (*swap_in) (abfd, erela, irela);
15784
0
      reloc_index = (irela->r_offset - offset) / 8;
15785
15786
0
      bias = 0;
15787
0
      edit_node = edit_list;
15788
0
      for (edit_next = edit_list;
15789
0
           edit_next && edit_next->index <= reloc_index;
15790
0
           edit_next = edit_node->next)
15791
0
        {
15792
0
          bias++;
15793
0
          edit_node = edit_next;
15794
0
        }
15795
15796
0
      if (edit_node->type != DELETE_EXIDX_ENTRY
15797
0
          || edit_node->index != reloc_index)
15798
0
        {
15799
0
          irela->r_offset -= bias * 8;
15800
0
          irela++;
15801
0
          count++;
15802
0
        }
15803
15804
0
      erela += rel_hdr->sh_entsize;
15805
0
    }
15806
15807
0
        if (edit_tail->type == INSERT_EXIDX_CANTUNWIND_AT_END)
15808
0
    {
15809
      /* New relocation entity.  */
15810
0
      asection *text_sec = edit_tail->linked_section;
15811
0
      asection *text_out = text_sec->output_section;
15812
0
      bfd_vma exidx_offset = offset + i->size - 8;
15813
15814
0
      irela->r_addend = 0;
15815
0
      irela->r_offset = exidx_offset;
15816
0
      irela->r_info = ELF32_R_INFO
15817
0
        (text_out->target_index, R_ARM_PREL31);
15818
0
      irela++;
15819
0
      count++;
15820
0
    }
15821
0
      }
15822
0
    else
15823
0
      {
15824
0
        for (j = 0; j < NUM_SHDR_ENTRIES (input_reldata->hdr); j++)
15825
0
    {
15826
0
      (*swap_in) (abfd, erela, irela);
15827
0
      erela += rel_hdr->sh_entsize;
15828
0
      irela++;
15829
0
    }
15830
15831
0
        count += NUM_SHDR_ENTRIES (input_reldata->hdr);
15832
0
      }
15833
0
  }
15834
0
    }
15835
15836
0
  reldata->count = count;
15837
0
  rel_hdr->sh_size = count * rel_hdr->sh_entsize;
15838
15839
0
  erela = erela_head;
15840
0
  irela = irela_head;
15841
0
  while (count > 0)
15842
0
    {
15843
0
      (*swap_out) (abfd, irela, erela);
15844
0
      erela += rel_hdr->sh_entsize;
15845
0
      irela++;
15846
0
      count--;
15847
0
    }
15848
15849
0
  free (irela_head);
15850
15851
  /* Hashes are no longer valid.  */
15852
0
  free (reldata->hashes);
15853
0
  reldata->hashes = NULL;
15854
0
}
15855
15856
/* Unwinding tables are not referenced directly.  This pass marks them as
15857
   required if the corresponding code section is marked.  Similarly, ARMv8-M
15858
   secure entry functions can only be referenced by SG veneers which are
15859
   created after the GC process. They need to be marked in case they reside in
15860
   their own section (as would be the case if code was compiled with
15861
   -ffunction-sections).  */
15862
15863
static bool
15864
elf32_arm_gc_mark_extra_sections (struct bfd_link_info *info,
15865
          elf_gc_mark_hook_fn gc_mark_hook)
15866
0
{
15867
0
  bfd *sub;
15868
0
  Elf_Internal_Shdr **elf_shdrp;
15869
0
  asection *cmse_sec;
15870
0
  obj_attribute *out_attr;
15871
0
  Elf_Internal_Shdr *symtab_hdr;
15872
0
  unsigned i, sym_count, ext_start;
15873
0
  elf_backend_data *bed;
15874
0
  struct elf_link_hash_entry **sym_hashes;
15875
0
  struct elf32_arm_link_hash_entry *cmse_hash;
15876
0
  bool again, is_v8m, first_bfd_browse = true;
15877
0
  bool extra_marks_added = false;
15878
0
  asection *isec;
15879
15880
0
  _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
15881
15882
0
  out_attr = elf_known_obj_attributes_proc (info->output_bfd);
15883
0
  is_v8m = out_attr[Tag_CPU_arch].i >= TAG_CPU_ARCH_V8M_BASE
15884
0
     && out_attr[Tag_CPU_arch_profile].i == 'M';
15885
15886
  /* Marking EH data may cause additional code sections to be marked,
15887
     requiring multiple passes.  */
15888
0
  again = true;
15889
0
  while (again)
15890
0
    {
15891
0
      again = false;
15892
0
      for (sub = info->input_bfds; sub != NULL; sub = sub->link.next)
15893
0
  {
15894
0
    asection *o;
15895
15896
0
    if (! is_arm_elf (sub))
15897
0
      continue;
15898
15899
0
    elf_shdrp = elf_elfsections (sub);
15900
0
    for (o = sub->sections; o != NULL; o = o->next)
15901
0
      {
15902
0
        Elf_Internal_Shdr *hdr;
15903
15904
0
        hdr = &elf_section_data (o)->this_hdr;
15905
0
        if (hdr->sh_type == SHT_ARM_EXIDX
15906
0
      && hdr->sh_link
15907
0
      && hdr->sh_link < elf_numsections (sub)
15908
0
      && !o->gc_mark
15909
0
      && elf_shdrp[hdr->sh_link]->bfd_section->gc_mark)
15910
0
    {
15911
0
      again = true;
15912
0
      if (!_bfd_elf_gc_mark (info, o, gc_mark_hook))
15913
0
        return false;
15914
0
    }
15915
0
      }
15916
15917
    /* Mark section holding ARMv8-M secure entry functions.  We mark all
15918
       of them so no need for a second browsing.  */
15919
0
    if (is_v8m && first_bfd_browse)
15920
0
      {
15921
0
        bool debug_sec_need_to_be_marked = false;
15922
15923
0
        sym_hashes = elf_sym_hashes (sub);
15924
0
        bed = get_elf_backend_data (sub);
15925
0
        symtab_hdr = &elf_symtab_hdr (sub);
15926
0
        sym_count = symtab_hdr->sh_size / bed->s->sizeof_sym;
15927
0
        ext_start = symtab_hdr->sh_info;
15928
15929
        /* Scan symbols.  */
15930
0
        for (i = ext_start; i < sym_count; i++)
15931
0
    {
15932
0
      cmse_hash = elf32_arm_hash_entry (sym_hashes[i - ext_start]);
15933
0
      if (cmse_hash == NULL)
15934
0
        continue;
15935
15936
      /* Assume it is a special symbol.  If not, cmse_scan will
15937
         warn about it and user can do something about it.  */
15938
0
      if (startswith (cmse_hash->root.root.root.string,
15939
0
          CMSE_PREFIX))
15940
0
        {
15941
0
          cmse_sec = cmse_hash->root.root.u.def.section;
15942
0
          if (!cmse_sec->gc_mark
15943
0
        && !_bfd_elf_gc_mark (info, cmse_sec, gc_mark_hook))
15944
0
      return false;
15945
          /* The debug sections related to these secure entry
15946
       functions are marked on enabling below flag.  */
15947
0
          debug_sec_need_to_be_marked = true;
15948
0
        }
15949
0
    }
15950
15951
0
        if (debug_sec_need_to_be_marked)
15952
0
    {
15953
      /* Looping over all the sections of the object file containing
15954
         Armv8-M secure entry functions and marking all the debug
15955
         sections.  */
15956
0
      for (isec = sub->sections; isec != NULL; isec = isec->next)
15957
0
        {
15958
          /* If not a debug sections, skip it.  */
15959
0
          if (!isec->gc_mark && (isec->flags & SEC_DEBUGGING))
15960
0
      {
15961
0
        isec->gc_mark = 1;
15962
0
        extra_marks_added = true;
15963
0
      }
15964
0
        }
15965
0
      debug_sec_need_to_be_marked = false;
15966
0
    }
15967
0
      }
15968
0
  }
15969
15970
0
      first_bfd_browse = false;
15971
0
    }
15972
15973
  /* PR 30354: If we have added extra marks then make sure that any
15974
     dependencies of the newly marked sections are also marked.  */
15975
0
  if (extra_marks_added)
15976
0
    _bfd_elf_gc_mark_extra_sections (info, gc_mark_hook);
15977
15978
0
  return true;
15979
0
}
15980
15981
/* Treat mapping symbols as special target symbols.  */
15982
15983
static bool
15984
elf32_arm_is_target_special_symbol (bfd * abfd ATTRIBUTE_UNUSED, asymbol * sym)
15985
0
{
15986
0
  return bfd_is_arm_special_symbol_name (sym->name,
15987
0
           BFD_ARM_SPECIAL_SYM_TYPE_ANY);
15988
0
}
15989
15990
/* If the ELF symbol SYM might be a function in SEC, return the
15991
   function size and set *CODE_OFF to the function's entry point,
15992
   otherwise return zero.  */
15993
15994
static bfd_size_type
15995
elf32_arm_maybe_function_sym (const asymbol *sym, asection *sec,
15996
            bfd_vma *code_off)
15997
0
{
15998
0
  bfd_size_type size;
15999
0
  elf_symbol_type * elf_sym = (elf_symbol_type *) sym;
16000
16001
0
  if ((sym->flags & (BSF_SECTION_SYM | BSF_FILE | BSF_OBJECT
16002
0
         | BSF_THREAD_LOCAL | BSF_RELC | BSF_SRELC)) != 0
16003
0
      || sym->section != sec)
16004
0
    return 0;
16005
16006
0
  size = (sym->flags & BSF_SYNTHETIC) ? 0 : elf_sym->internal_elf_sym.st_size;
16007
16008
0
  if (!(sym->flags & BSF_SYNTHETIC))
16009
0
    switch (ELF_ST_TYPE (elf_sym->internal_elf_sym.st_info))
16010
0
      {
16011
0
  case STT_NOTYPE:
16012
    /* Ignore symbols created by the annobin plugin for gcc and clang.
16013
       These symbols are hidden, local, notype and have a size of 0.  */
16014
0
    if (size == 0
16015
0
        && sym->flags & BSF_LOCAL
16016
0
        && ELF_ST_VISIBILITY (elf_sym->internal_elf_sym.st_other) == STV_HIDDEN)
16017
0
      return 0;
16018
    /* Fall through.  */
16019
0
  case STT_FUNC:
16020
0
  case STT_ARM_TFUNC:
16021
    /* FIXME: Allow STT_GNU_IFUNC as well ?  */
16022
0
    break;
16023
0
  default:
16024
0
    return 0;
16025
0
      }
16026
16027
0
  if ((sym->flags & BSF_LOCAL)
16028
0
      && bfd_is_arm_special_symbol_name (sym->name,
16029
0
           BFD_ARM_SPECIAL_SYM_TYPE_ANY))
16030
0
    return 0;
16031
16032
0
  *code_off = sym->value;
16033
16034
  /* Do not return 0 for the function's size.  */
16035
0
  return size ? size : 1;
16036
16037
0
}
16038
16039
static bool
16040
elf32_arm_find_inliner_info (bfd *      abfd,
16041
           const char **  filename_ptr,
16042
           const char **  functionname_ptr,
16043
           unsigned int * line_ptr)
16044
0
{
16045
0
  bool found;
16046
0
  found = _bfd_dwarf2_find_inliner_info (abfd, filename_ptr,
16047
0
           functionname_ptr, line_ptr,
16048
0
           & elf_tdata (abfd)->dwarf2_find_line_info);
16049
0
  return found;
16050
0
}
16051
16052
/* Adjust a symbol defined by a dynamic object and referenced by a
16053
   regular object.  The current definition is in some section of the
16054
   dynamic object, but we're not including those sections.  We have to
16055
   change the definition to something the rest of the link can
16056
   understand.  */
16057
16058
static bool
16059
elf32_arm_adjust_dynamic_symbol (struct bfd_link_info * info,
16060
         struct elf_link_hash_entry * h)
16061
0
{
16062
0
  bfd * dynobj;
16063
0
  asection *s, *srel;
16064
0
  struct elf32_arm_link_hash_entry * eh;
16065
0
  struct elf32_arm_link_hash_table *globals;
16066
16067
0
  globals = elf32_arm_hash_table (info);
16068
0
  if (globals == NULL)
16069
0
    return false;
16070
16071
0
  dynobj = elf_hash_table (info)->dynobj;
16072
16073
  /* Make sure we know what is going on here.  */
16074
0
  BFD_ASSERT (dynobj != NULL
16075
0
        && (h->needs_plt
16076
0
      || h->type == STT_GNU_IFUNC
16077
0
      || h->is_weakalias
16078
0
      || (h->def_dynamic
16079
0
          && h->ref_regular
16080
0
          && !h->def_regular)));
16081
16082
0
  eh = (struct elf32_arm_link_hash_entry *) h;
16083
16084
  /* If this is a function, put it in the procedure linkage table.  We
16085
     will fill in the contents of the procedure linkage table later,
16086
     when we know the address of the .got section.  */
16087
0
  if (h->type == STT_FUNC || h->type == STT_GNU_IFUNC || h->needs_plt)
16088
0
    {
16089
      /* Calls to STT_GNU_IFUNC symbols always use a PLT, even if the
16090
   symbol binds locally.  */
16091
0
      if (h->plt.refcount <= 0
16092
0
    || (h->type != STT_GNU_IFUNC
16093
0
        && (SYMBOL_CALLS_LOCAL (info, h)
16094
0
      || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
16095
0
          && h->root.type == bfd_link_hash_undefweak))))
16096
0
  {
16097
    /* This case can occur if we saw a PLT32 reloc in an input
16098
       file, but the symbol was never referred to by a dynamic
16099
       object, or if all references were garbage collected.  In
16100
       such a case, we don't actually need to build a procedure
16101
       linkage table, and we can just do a PC24 reloc instead.  */
16102
0
    h->plt.offset = (bfd_vma) -1;
16103
0
    eh->plt.thumb_refcount = 0;
16104
0
    eh->plt.maybe_thumb_refcount = 0;
16105
0
    eh->plt.noncall_refcount = 0;
16106
0
    h->needs_plt = 0;
16107
0
  }
16108
16109
0
      return true;
16110
0
    }
16111
0
  else
16112
0
    {
16113
      /* It's possible that we incorrectly decided a .plt reloc was
16114
   needed for an R_ARM_PC24 or similar reloc to a non-function sym
16115
   in check_relocs.  We can't decide accurately between function
16116
   and non-function syms in check-relocs; Objects loaded later in
16117
   the link may change h->type.  So fix it now.  */
16118
0
      h->plt.offset = (bfd_vma) -1;
16119
0
      eh->plt.thumb_refcount = 0;
16120
0
      eh->plt.maybe_thumb_refcount = 0;
16121
0
      eh->plt.noncall_refcount = 0;
16122
0
    }
16123
16124
  /* If this is a weak symbol, and there is a real definition, the
16125
     processor independent code will have arranged for us to see the
16126
     real definition first, and we can just use the same value.  */
16127
0
  if (h->is_weakalias)
16128
0
    {
16129
0
      struct elf_link_hash_entry *def = weakdef (h);
16130
0
      BFD_ASSERT (def->root.type == bfd_link_hash_defined);
16131
0
      h->root.u.def.section = def->root.u.def.section;
16132
0
      h->root.u.def.value = def->root.u.def.value;
16133
0
      return true;
16134
0
    }
16135
16136
  /* If there are no non-GOT references, we do not need a copy
16137
     relocation.  */
16138
0
  if (!h->non_got_ref)
16139
0
    return true;
16140
16141
  /* This is a reference to a symbol defined by a dynamic object which
16142
     is not a function.  */
16143
16144
  /* If we are creating a shared library, we must presume that the
16145
     only references to the symbol are via the global offset table.
16146
     For such cases we need not do anything here; the relocations will
16147
     be handled correctly by relocate_section.  */
16148
0
  if (bfd_link_pic (info))
16149
0
    return true;
16150
16151
  /* We must allocate the symbol in our .dynbss section, which will
16152
     become part of the .bss section of the executable.  There will be
16153
     an entry for this symbol in the .dynsym section.  The dynamic
16154
     object will contain position independent code, so all references
16155
     from the dynamic object to this symbol will go through the global
16156
     offset table.  The dynamic linker will use the .dynsym entry to
16157
     determine the address it must put in the global offset table, so
16158
     both the dynamic object and the regular object will refer to the
16159
     same memory location for the variable.  */
16160
  /* If allowed, we must generate a R_ARM_COPY reloc to tell the dynamic
16161
     linker to copy the initial value out of the dynamic object and into
16162
     the runtime process image.  We need to remember the offset into the
16163
     .rel(a).bss section we are going to use.  */
16164
0
  if ((h->root.u.def.section->flags & SEC_READONLY) != 0)
16165
0
    {
16166
0
      s = globals->root.sdynrelro;
16167
0
      srel = globals->root.sreldynrelro;
16168
0
    }
16169
0
  else
16170
0
    {
16171
0
      s = globals->root.sdynbss;
16172
0
      srel = globals->root.srelbss;
16173
0
    }
16174
0
  if (info->nocopyreloc == 0
16175
0
      && (h->root.u.def.section->flags & SEC_ALLOC) != 0
16176
0
      && h->size != 0)
16177
0
    {
16178
0
      elf32_arm_allocate_dynrelocs (info, srel, 1);
16179
0
      h->needs_copy = 1;
16180
0
    }
16181
16182
0
  return _bfd_elf_adjust_dynamic_copy (info, h, s);
16183
0
}
16184
16185
/* Allocate space in .plt, .got and associated reloc sections for
16186
   dynamic relocs.  */
16187
16188
static bool
16189
allocate_dynrelocs_for_symbol (struct elf_link_hash_entry *h, void * inf)
16190
0
{
16191
0
  struct bfd_link_info *info;
16192
0
  struct elf32_arm_link_hash_table *htab;
16193
0
  struct elf32_arm_link_hash_entry *eh;
16194
0
  struct elf_dyn_relocs *p;
16195
16196
0
  if (h->root.type == bfd_link_hash_indirect)
16197
0
    return true;
16198
16199
0
  eh = (struct elf32_arm_link_hash_entry *) h;
16200
16201
0
  info = (struct bfd_link_info *) inf;
16202
0
  htab = elf32_arm_hash_table (info);
16203
0
  if (htab == NULL)
16204
0
    return false;
16205
16206
0
  if ((htab->root.dynamic_sections_created || h->type == STT_GNU_IFUNC)
16207
0
      && h->plt.refcount > 0)
16208
0
    {
16209
      /* Make sure this symbol is output as a dynamic symbol.
16210
   Undefined weak syms won't yet be marked as dynamic.  */
16211
0
      if (h->dynindx == -1 && !h->forced_local
16212
0
    && h->root.type == bfd_link_hash_undefweak)
16213
0
  {
16214
0
    if (! bfd_elf_link_record_dynamic_symbol (info, h))
16215
0
      return false;
16216
0
  }
16217
16218
      /* If the call in the PLT entry binds locally, the associated
16219
   GOT entry should use an R_ARM_IRELATIVE relocation instead of
16220
   the usual R_ARM_JUMP_SLOT.  Put it in the .iplt section rather
16221
   than the .plt section.  */
16222
0
      if (h->type == STT_GNU_IFUNC && SYMBOL_CALLS_LOCAL (info, h))
16223
0
  {
16224
0
    eh->is_iplt = 1;
16225
0
    if (eh->plt.noncall_refcount == 0
16226
0
        && SYMBOL_REFERENCES_LOCAL (info, h))
16227
      /* All non-call references can be resolved directly.
16228
         This means that they can (and in some cases, must)
16229
         resolve directly to the run-time target, rather than
16230
         to the PLT.  That in turns means that any .got entry
16231
         would be equal to the .igot.plt entry, so there's
16232
         no point having both.  */
16233
0
      h->got.refcount = 0;
16234
0
  }
16235
16236
0
      if (bfd_link_pic (info)
16237
0
    || eh->is_iplt
16238
0
    || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
16239
0
  {
16240
0
    elf32_arm_allocate_plt_entry (info, eh->is_iplt, &h->plt, &eh->plt);
16241
16242
    /* If this symbol is not defined in a regular file, and we are
16243
       not generating a shared library, then set the symbol to this
16244
       location in the .plt.  This is required to make function
16245
       pointers compare as equal between the normal executable and
16246
       the shared library.  */
16247
0
    if (! bfd_link_pic (info)
16248
0
        && !h->def_regular)
16249
0
      {
16250
0
        h->root.u.def.section = htab->root.splt;
16251
0
        h->root.u.def.value = h->plt.offset;
16252
16253
        /* Make sure the function is not marked as Thumb, in case
16254
     it is the target of an ABS32 relocation, which will
16255
     point to the PLT entry.  */
16256
0
        ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
16257
0
      }
16258
16259
    /* VxWorks executables have a second set of relocations for
16260
       each PLT entry.  They go in a separate relocation section,
16261
       which is processed by the kernel loader.  */
16262
0
    if (htab->root.target_os == is_vxworks && !bfd_link_pic (info))
16263
0
      {
16264
        /* There is a relocation for the initial PLT entry:
16265
     an R_ARM_32 relocation for _GLOBAL_OFFSET_TABLE_.  */
16266
0
        if (h->plt.offset == htab->plt_header_size)
16267
0
    elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 1);
16268
16269
        /* There are two extra relocations for each subsequent
16270
     PLT entry: an R_ARM_32 relocation for the GOT entry,
16271
     and an R_ARM_32 relocation for the PLT entry.  */
16272
0
        elf32_arm_allocate_dynrelocs (info, htab->srelplt2, 2);
16273
0
      }
16274
0
  }
16275
0
      else
16276
0
  {
16277
0
    h->plt.offset = (bfd_vma) -1;
16278
0
    h->needs_plt = 0;
16279
0
  }
16280
0
    }
16281
0
  else
16282
0
    {
16283
0
      h->plt.offset = (bfd_vma) -1;
16284
0
      h->needs_plt = 0;
16285
0
    }
16286
16287
0
  eh = (struct elf32_arm_link_hash_entry *) h;
16288
0
  eh->tlsdesc_got = (bfd_vma) -1;
16289
16290
0
  if (h->got.refcount > 0)
16291
0
    {
16292
0
      asection *s;
16293
0
      bool dyn;
16294
0
      int tls_type = elf32_arm_hash_entry (h)->tls_type;
16295
0
      int indx;
16296
16297
      /* Make sure this symbol is output as a dynamic symbol.
16298
   Undefined weak syms won't yet be marked as dynamic.  */
16299
0
      if (htab->root.dynamic_sections_created
16300
0
    && h->dynindx == -1
16301
0
    && !h->forced_local
16302
0
    && h->root.type == bfd_link_hash_undefweak)
16303
0
  {
16304
0
    if (! bfd_elf_link_record_dynamic_symbol (info, h))
16305
0
      return false;
16306
0
  }
16307
16308
0
      s = htab->root.sgot;
16309
0
      h->got.offset = s->size;
16310
16311
0
      if (tls_type == GOT_UNKNOWN)
16312
0
  abort ();
16313
16314
0
      if (tls_type == GOT_NORMAL)
16315
  /* Non-TLS symbols need one GOT slot.  */
16316
0
  s->size += 4;
16317
0
      else
16318
0
  {
16319
0
    if (tls_type & GOT_TLS_GDESC)
16320
0
      {
16321
        /* R_ARM_TLS_DESC needs 2 GOT slots.  */
16322
0
        eh->tlsdesc_got
16323
0
    = (htab->root.sgotplt->size
16324
0
       - elf32_arm_compute_jump_table_size (htab));
16325
0
        htab->root.sgotplt->size += 8;
16326
0
        h->got.offset = (bfd_vma) -2;
16327
        /* plt.got_offset needs to know there's a TLS_DESC
16328
     reloc in the middle of .got.plt.  */
16329
0
        htab->num_tls_desc++;
16330
0
      }
16331
16332
0
    if (tls_type & GOT_TLS_GD)
16333
0
      {
16334
        /* R_ARM_TLS_GD32 and R_ARM_TLS_GD32_FDPIC need two
16335
     consecutive GOT slots.  If the symbol is both GD
16336
     and GDESC, got.offset may have been
16337
     overwritten.  */
16338
0
        h->got.offset = s->size;
16339
0
        s->size += 8;
16340
0
      }
16341
16342
0
    if (tls_type & GOT_TLS_IE)
16343
      /* R_ARM_TLS_IE32/R_ARM_TLS_IE32_FDPIC need one GOT
16344
         slot.  */
16345
0
      s->size += 4;
16346
0
  }
16347
16348
0
      dyn = htab->root.dynamic_sections_created;
16349
16350
0
      indx = 0;
16351
0
      if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, bfd_link_pic (info), h)
16352
0
    && (!bfd_link_pic (info)
16353
0
        || !SYMBOL_REFERENCES_LOCAL (info, h)))
16354
0
  indx = h->dynindx;
16355
16356
0
      if (tls_type != GOT_NORMAL
16357
0
    && (bfd_link_dll (info) || indx != 0)
16358
0
    && (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
16359
0
        || h->root.type != bfd_link_hash_undefweak))
16360
0
  {
16361
0
    if (tls_type & GOT_TLS_IE)
16362
0
      elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16363
16364
0
    if (tls_type & GOT_TLS_GD)
16365
0
      elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16366
16367
0
    if (tls_type & GOT_TLS_GDESC)
16368
0
      {
16369
0
        elf32_arm_allocate_dynrelocs (info, htab->root.srelplt, 1);
16370
        /* GDESC needs a trampoline to jump to.  */
16371
0
        htab->tls_trampoline = -1;
16372
0
      }
16373
16374
    /* Only GD needs it.  GDESC just emits one relocation per
16375
       2 entries.  */
16376
0
    if ((tls_type & GOT_TLS_GD) && indx != 0)
16377
0
      elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16378
0
  }
16379
0
      else if (((indx != -1) || htab->fdpic_p)
16380
0
         && !SYMBOL_REFERENCES_LOCAL (info, h))
16381
0
  {
16382
0
    if (htab->root.dynamic_sections_created)
16383
      /* Reserve room for the GOT entry's R_ARM_GLOB_DAT relocation.  */
16384
0
      elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16385
0
  }
16386
0
      else if (h->type == STT_GNU_IFUNC
16387
0
         && eh->plt.noncall_refcount == 0)
16388
  /* No non-call references resolve the STT_GNU_IFUNC's PLT entry;
16389
     they all resolve dynamically instead.  Reserve room for the
16390
     GOT entry's R_ARM_IRELATIVE relocation.  */
16391
0
  elf32_arm_allocate_irelocs (info, htab->root.srelgot, 1);
16392
0
      else if (bfd_link_pic (info)
16393
0
         && !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
16394
  /* Reserve room for the GOT entry's R_ARM_RELATIVE relocation.  */
16395
0
  elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16396
0
      else if (htab->fdpic_p && tls_type == GOT_NORMAL)
16397
  /* Reserve room for rofixup for FDPIC executable.  */
16398
  /* TLS relocs do not need space since they are completely
16399
     resolved.  */
16400
0
  htab->srofixup->size += 4;
16401
0
    }
16402
0
  else
16403
0
    h->got.offset = (bfd_vma) -1;
16404
16405
  /* FDPIC support.  */
16406
0
  if (eh->fdpic_cnts.gotofffuncdesc_cnt > 0)
16407
0
    {
16408
      /* Symbol musn't be exported.  */
16409
0
      if (h->dynindx != -1)
16410
0
  abort ();
16411
16412
      /* We only allocate one function descriptor with its associated
16413
   relocation.  */
16414
0
      if (eh->fdpic_cnts.funcdesc_offset == -1)
16415
0
  {
16416
0
    asection *s = htab->root.sgot;
16417
16418
0
    eh->fdpic_cnts.funcdesc_offset = s->size;
16419
0
    s->size += 8;
16420
    /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups.  */
16421
0
    if (bfd_link_pic (info))
16422
0
      elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16423
0
    else
16424
0
      htab->srofixup->size += 8;
16425
0
  }
16426
0
    }
16427
16428
0
  if (eh->fdpic_cnts.gotfuncdesc_cnt > 0)
16429
0
    {
16430
0
      asection *s = htab->root.sgot;
16431
16432
0
      if (htab->root.dynamic_sections_created && h->dynindx == -1
16433
0
    && !h->forced_local)
16434
0
  if (! bfd_elf_link_record_dynamic_symbol (info, h))
16435
0
    return false;
16436
16437
0
      if (h->dynindx == -1)
16438
0
  {
16439
    /* We only allocate one function descriptor with its
16440
       associated relocation.  */
16441
0
    if (eh->fdpic_cnts.funcdesc_offset == -1)
16442
0
      {
16443
16444
0
        eh->fdpic_cnts.funcdesc_offset = s->size;
16445
0
        s->size += 8;
16446
        /* We will add an R_ARM_FUNCDESC_VALUE relocation or two
16447
     rofixups.  */
16448
0
        if (bfd_link_pic (info))
16449
0
    elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16450
0
        else
16451
0
    htab->srofixup->size += 8;
16452
0
      }
16453
0
  }
16454
16455
      /* Add one entry into the GOT and a R_ARM_FUNCDESC or
16456
   R_ARM_RELATIVE/rofixup relocation on it.  */
16457
0
      eh->fdpic_cnts.gotfuncdesc_offset = s->size;
16458
0
      s->size += 4;
16459
0
      if (h->dynindx == -1 && !bfd_link_pic (info))
16460
0
  htab->srofixup->size += 4;
16461
0
      else
16462
0
  elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16463
0
    }
16464
16465
0
  if (eh->fdpic_cnts.funcdesc_cnt > 0)
16466
0
    {
16467
0
      if (htab->root.dynamic_sections_created && h->dynindx == -1
16468
0
    && !h->forced_local)
16469
0
  if (! bfd_elf_link_record_dynamic_symbol (info, h))
16470
0
    return false;
16471
16472
0
      if (h->dynindx == -1)
16473
0
  {
16474
    /* We only allocate one function descriptor with its
16475
       associated relocation.  */
16476
0
    if (eh->fdpic_cnts.funcdesc_offset == -1)
16477
0
      {
16478
0
        asection *s = htab->root.sgot;
16479
16480
0
        eh->fdpic_cnts.funcdesc_offset = s->size;
16481
0
        s->size += 8;
16482
        /* We will add an R_ARM_FUNCDESC_VALUE relocation or two
16483
     rofixups.  */
16484
0
        if (bfd_link_pic (info))
16485
0
    elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16486
0
        else
16487
0
    htab->srofixup->size += 8;
16488
0
      }
16489
0
  }
16490
0
      if (h->dynindx == -1 && !bfd_link_pic (info))
16491
0
  {
16492
    /* For FDPIC executable we replace R_ARM_RELATIVE with a rofixup.  */
16493
0
    htab->srofixup->size += 4 * eh->fdpic_cnts.funcdesc_cnt;
16494
0
  }
16495
0
      else
16496
0
  {
16497
    /* Will need one dynamic reloc per reference. will be either
16498
       R_ARM_FUNCDESC or R_ARM_RELATIVE for hidden symbols.  */
16499
0
    elf32_arm_allocate_dynrelocs (info, htab->root.srelgot,
16500
0
          eh->fdpic_cnts.funcdesc_cnt);
16501
0
  }
16502
0
    }
16503
16504
  /* Allocate stubs for exported Thumb functions on v4t.  */
16505
0
  if (!htab->use_blx && h->dynindx != -1
16506
0
      && h->def_regular
16507
0
      && ARM_GET_SYM_BRANCH_TYPE (h->target_internal) == ST_BRANCH_TO_THUMB
16508
0
      && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
16509
0
    {
16510
0
      struct elf_link_hash_entry * th;
16511
0
      struct bfd_link_hash_entry * bh;
16512
0
      struct elf_link_hash_entry * myh;
16513
0
      char name[1024];
16514
0
      asection *s;
16515
0
      bh = NULL;
16516
      /* Create a new symbol to regist the real location of the function.  */
16517
0
      s = h->root.u.def.section;
16518
0
      sprintf (name, "__real_%s", h->root.root.string);
16519
0
      _bfd_generic_link_add_one_symbol (info, s->owner,
16520
0
          name, BSF_GLOBAL, s,
16521
0
          h->root.u.def.value,
16522
0
          NULL, true, false, &bh);
16523
16524
0
      myh = (struct elf_link_hash_entry *) bh;
16525
0
      myh->type = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
16526
0
      myh->forced_local = 1;
16527
0
      ARM_SET_SYM_BRANCH_TYPE (myh->target_internal, ST_BRANCH_TO_THUMB);
16528
0
      eh->export_glue = myh;
16529
0
      th = record_arm_to_thumb_glue (info, h);
16530
      /* Point the symbol at the stub.  */
16531
0
      h->type = ELF_ST_INFO (ELF_ST_BIND (h->type), STT_FUNC);
16532
0
      ARM_SET_SYM_BRANCH_TYPE (h->target_internal, ST_BRANCH_TO_ARM);
16533
0
      h->root.u.def.section = th->root.u.def.section;
16534
0
      h->root.u.def.value = th->root.u.def.value & ~1;
16535
0
    }
16536
16537
0
  if (h->dyn_relocs == NULL)
16538
0
    return true;
16539
16540
  /* In the shared -Bsymbolic case, discard space allocated for
16541
     dynamic pc-relative relocs against symbols which turn out to be
16542
     defined in regular objects.  For the normal shared case, discard
16543
     space for pc-relative relocs that have become local due to symbol
16544
     visibility changes.  */
16545
16546
0
  if (bfd_link_pic (info)
16547
0
      || htab->fdpic_p)
16548
0
    {
16549
      /* Relocs that use pc_count are PC-relative forms, which will appear
16550
   on something like ".long foo - ." or "movw REG, foo - .".  We want
16551
   calls to protected symbols to resolve directly to the function
16552
   rather than going via the plt.  If people want function pointer
16553
   comparisons to work as expected then they should avoid writing
16554
   assembly like ".long foo - .".  */
16555
0
      if (SYMBOL_CALLS_LOCAL (info, h))
16556
0
  {
16557
0
    struct elf_dyn_relocs **pp;
16558
16559
0
    for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
16560
0
      {
16561
0
        p->count -= p->pc_count;
16562
0
        p->pc_count = 0;
16563
0
        if (p->count == 0)
16564
0
    *pp = p->next;
16565
0
        else
16566
0
    pp = &p->next;
16567
0
      }
16568
0
  }
16569
16570
0
      if (htab->root.target_os == is_vxworks)
16571
0
  {
16572
0
    struct elf_dyn_relocs **pp;
16573
16574
0
    for (pp = &h->dyn_relocs; (p = *pp) != NULL; )
16575
0
      {
16576
0
        if (strcmp (p->sec->output_section->name, ".tls_vars") == 0)
16577
0
    *pp = p->next;
16578
0
        else
16579
0
    pp = &p->next;
16580
0
      }
16581
0
  }
16582
16583
      /* Also discard relocs on undefined weak syms with non-default
16584
   visibility.  */
16585
0
      if (h->dyn_relocs != NULL
16586
0
    && h->root.type == bfd_link_hash_undefweak)
16587
0
  {
16588
0
    if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
16589
0
        || UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
16590
0
      h->dyn_relocs = NULL;
16591
16592
    /* Make sure undefined weak symbols are output as a dynamic
16593
       symbol in PIEs.  */
16594
0
    else if (htab->root.dynamic_sections_created && h->dynindx == -1
16595
0
       && !h->forced_local)
16596
0
      {
16597
0
        if (! bfd_elf_link_record_dynamic_symbol (info, h))
16598
0
    return false;
16599
0
      }
16600
0
  }
16601
0
    }
16602
0
  else
16603
0
    {
16604
      /* For the non-shared case, discard space for relocs against
16605
   symbols which turn out to need copy relocs or are not
16606
   dynamic.  */
16607
16608
0
      if (!h->non_got_ref
16609
0
    && ((h->def_dynamic
16610
0
         && !h->def_regular)
16611
0
        || (htab->root.dynamic_sections_created
16612
0
      && (h->root.type == bfd_link_hash_undefweak
16613
0
          || h->root.type == bfd_link_hash_undefined))))
16614
0
  {
16615
    /* Make sure this symbol is output as a dynamic symbol.
16616
       Undefined weak syms won't yet be marked as dynamic.  */
16617
0
    if (h->dynindx == -1 && !h->forced_local
16618
0
        && h->root.type == bfd_link_hash_undefweak)
16619
0
      {
16620
0
        if (! bfd_elf_link_record_dynamic_symbol (info, h))
16621
0
    return false;
16622
0
      }
16623
16624
    /* If that succeeded, we know we'll be keeping all the
16625
       relocs.  */
16626
0
    if (h->dynindx != -1)
16627
0
      goto keep;
16628
0
  }
16629
16630
0
      h->dyn_relocs = NULL;
16631
16632
0
    keep: ;
16633
0
    }
16634
16635
  /* Finally, allocate space.  */
16636
0
  for (p = h->dyn_relocs; p != NULL; p = p->next)
16637
0
    {
16638
0
      asection *sreloc = elf_section_data (p->sec)->sreloc;
16639
16640
0
      if (h->type == STT_GNU_IFUNC
16641
0
    && eh->plt.noncall_refcount == 0
16642
0
    && SYMBOL_REFERENCES_LOCAL (info, h))
16643
0
  elf32_arm_allocate_irelocs (info, sreloc, p->count);
16644
0
      else if (h->dynindx != -1
16645
0
         && (!bfd_link_pic (info) || !info->symbolic || !h->def_regular))
16646
0
  elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
16647
0
      else if (htab->fdpic_p && !bfd_link_pic (info))
16648
0
  htab->srofixup->size += 4 * p->count;
16649
0
      else
16650
0
  elf32_arm_allocate_dynrelocs (info, sreloc, p->count);
16651
0
    }
16652
16653
0
  return true;
16654
0
}
16655
16656
void
16657
bfd_elf32_arm_set_byteswap_code (struct bfd_link_info *info,
16658
         int byteswap_code)
16659
0
{
16660
0
  struct elf32_arm_link_hash_table *globals;
16661
16662
0
  globals = elf32_arm_hash_table (info);
16663
0
  if (globals == NULL)
16664
0
    return;
16665
16666
0
  globals->byteswap_code = byteswap_code;
16667
0
}
16668
16669
/* Set the sizes of the dynamic sections.  */
16670
16671
static bool
16672
elf32_arm_late_size_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
16673
            struct bfd_link_info * info)
16674
0
{
16675
0
  bfd * dynobj;
16676
0
  asection * s;
16677
0
  bool relocs;
16678
0
  bfd *ibfd;
16679
0
  struct elf32_arm_link_hash_table *htab;
16680
16681
0
  htab = elf32_arm_hash_table (info);
16682
0
  if (htab == NULL)
16683
0
    return false;
16684
16685
0
  dynobj = elf_hash_table (info)->dynobj;
16686
0
  if (dynobj == NULL)
16687
0
    return true;
16688
16689
0
  check_use_blx (htab);
16690
16691
0
  if (elf_hash_table (info)->dynamic_sections_created)
16692
0
    {
16693
      /* Set the contents of the .interp section to the interpreter.  */
16694
0
      if (bfd_link_executable (info) && !info->nointerp)
16695
0
  {
16696
0
    s = elf_hash_table (info)->interp;
16697
0
    BFD_ASSERT (s != NULL);
16698
0
    s->size = sizeof ELF_DYNAMIC_INTERPRETER;
16699
0
    s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
16700
0
    s->alloced = 1;
16701
0
  }
16702
0
    }
16703
16704
  /* Set up .got offsets for local syms, and space for local dynamic
16705
     relocs.  */
16706
0
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
16707
0
    {
16708
0
      bfd_signed_vma *local_got;
16709
0
      bfd_signed_vma *end_local_got;
16710
0
      struct arm_local_iplt_info **local_iplt_ptr, *local_iplt;
16711
0
      char *local_tls_type;
16712
0
      bfd_vma *local_tlsdesc_gotent;
16713
0
      bfd_size_type locsymcount;
16714
0
      Elf_Internal_Shdr *symtab_hdr;
16715
0
      asection *srel;
16716
0
      unsigned int symndx;
16717
0
      struct fdpic_local *local_fdpic_cnts;
16718
16719
0
      if (! is_arm_elf (ibfd))
16720
0
  continue;
16721
16722
0
      for (s = ibfd->sections; s != NULL; s = s->next)
16723
0
  {
16724
0
    struct elf_dyn_relocs *p;
16725
16726
0
    for (p = (struct elf_dyn_relocs *)
16727
0
       elf_section_data (s)->local_dynrel; p != NULL; p = p->next)
16728
0
      {
16729
0
        if (!bfd_is_abs_section (p->sec)
16730
0
      && bfd_is_abs_section (p->sec->output_section))
16731
0
    {
16732
      /* Input section has been discarded, either because
16733
         it is a copy of a linkonce section or due to
16734
         linker script /DISCARD/, so we'll be discarding
16735
         the relocs too.  */
16736
0
    }
16737
0
        else if (htab->root.target_os == is_vxworks
16738
0
           && strcmp (p->sec->output_section->name,
16739
0
          ".tls_vars") == 0)
16740
0
    {
16741
      /* Relocations in vxworks .tls_vars sections are
16742
         handled specially by the loader.  */
16743
0
    }
16744
0
        else if (p->count != 0)
16745
0
    {
16746
0
      srel = elf_section_data (p->sec)->sreloc;
16747
0
      if (htab->fdpic_p && !bfd_link_pic (info))
16748
0
        htab->srofixup->size += 4 * p->count;
16749
0
      else
16750
0
        elf32_arm_allocate_dynrelocs (info, srel, p->count);
16751
0
      if ((p->sec->output_section->flags & SEC_READONLY) != 0)
16752
0
        info->flags |= DF_TEXTREL;
16753
0
    }
16754
0
      }
16755
0
  }
16756
16757
0
      local_got = elf_local_got_refcounts (ibfd);
16758
0
      if (local_got == NULL)
16759
0
  continue;
16760
16761
0
      symtab_hdr = & elf_symtab_hdr (ibfd);
16762
0
      locsymcount = symtab_hdr->sh_info;
16763
0
      end_local_got = local_got + locsymcount;
16764
0
      local_iplt_ptr = elf32_arm_local_iplt (ibfd);
16765
0
      local_tls_type = elf32_arm_local_got_tls_type (ibfd);
16766
0
      local_tlsdesc_gotent = elf32_arm_local_tlsdesc_gotent (ibfd);
16767
0
      local_fdpic_cnts = elf32_arm_local_fdpic_cnts (ibfd);
16768
0
      symndx = 0;
16769
0
      s = htab->root.sgot;
16770
0
      srel = htab->root.srelgot;
16771
0
      for (; local_got < end_local_got;
16772
0
     ++local_got, ++local_iplt_ptr, ++local_tls_type,
16773
0
     ++local_tlsdesc_gotent, ++symndx, ++local_fdpic_cnts)
16774
0
  {
16775
0
    if (symndx >= elf32_arm_num_entries (ibfd))
16776
0
      return false;
16777
16778
0
    *local_tlsdesc_gotent = (bfd_vma) -1;
16779
0
    local_iplt = *local_iplt_ptr;
16780
16781
    /* FDPIC support.  */
16782
0
    if (local_fdpic_cnts->gotofffuncdesc_cnt > 0)
16783
0
      {
16784
0
        if (local_fdpic_cnts->funcdesc_offset == -1)
16785
0
    {
16786
0
      local_fdpic_cnts->funcdesc_offset = s->size;
16787
0
      s->size += 8;
16788
16789
      /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups.  */
16790
0
      if (bfd_link_pic (info))
16791
0
        elf32_arm_allocate_dynrelocs (info, srel, 1);
16792
0
      else
16793
0
        htab->srofixup->size += 8;
16794
0
    }
16795
0
      }
16796
16797
0
    if (local_fdpic_cnts->funcdesc_cnt > 0)
16798
0
      {
16799
0
        if (local_fdpic_cnts->funcdesc_offset == -1)
16800
0
    {
16801
0
      local_fdpic_cnts->funcdesc_offset = s->size;
16802
0
      s->size += 8;
16803
16804
      /* We will add an R_ARM_FUNCDESC_VALUE relocation or two rofixups.  */
16805
0
      if (bfd_link_pic (info))
16806
0
        elf32_arm_allocate_dynrelocs (info, srel, 1);
16807
0
      else
16808
0
        htab->srofixup->size += 8;
16809
0
    }
16810
16811
        /* We will add n R_ARM_RELATIVE relocations or n rofixups.  */
16812
0
        if (bfd_link_pic (info))
16813
0
    elf32_arm_allocate_dynrelocs (info, srel, local_fdpic_cnts->funcdesc_cnt);
16814
0
        else
16815
0
    htab->srofixup->size += 4 * local_fdpic_cnts->funcdesc_cnt;
16816
0
      }
16817
16818
0
    if (local_iplt != NULL)
16819
0
      {
16820
0
        struct elf_dyn_relocs *p;
16821
16822
0
        if (local_iplt->root.refcount > 0)
16823
0
    {
16824
0
      elf32_arm_allocate_plt_entry (info, true,
16825
0
            &local_iplt->root,
16826
0
            &local_iplt->arm);
16827
0
      if (local_iplt->arm.noncall_refcount == 0)
16828
        /* All references to the PLT are calls, so all
16829
           non-call references can resolve directly to the
16830
           run-time target.  This means that the .got entry
16831
           would be the same as the .igot.plt entry, so there's
16832
           no point creating both.  */
16833
0
        *local_got = 0;
16834
0
    }
16835
0
        else
16836
0
    {
16837
0
      BFD_ASSERT (local_iplt->arm.noncall_refcount == 0);
16838
0
      local_iplt->root.offset = (bfd_vma) -1;
16839
0
    }
16840
16841
0
        for (p = local_iplt->dyn_relocs; p != NULL; p = p->next)
16842
0
    {
16843
0
      asection *psrel;
16844
16845
0
      psrel = elf_section_data (p->sec)->sreloc;
16846
0
      if (local_iplt->arm.noncall_refcount == 0)
16847
0
        elf32_arm_allocate_irelocs (info, psrel, p->count);
16848
0
      else
16849
0
        elf32_arm_allocate_dynrelocs (info, psrel, p->count);
16850
0
    }
16851
0
      }
16852
0
    if (*local_got > 0)
16853
0
      {
16854
0
        Elf_Internal_Sym *isym;
16855
16856
0
        *local_got = s->size;
16857
0
        if (*local_tls_type & GOT_TLS_GD)
16858
    /* TLS_GD relocs need an 8-byte structure in the GOT.  */
16859
0
    s->size += 8;
16860
0
        if (*local_tls_type & GOT_TLS_GDESC)
16861
0
    {
16862
0
      *local_tlsdesc_gotent = htab->root.sgotplt->size
16863
0
        - elf32_arm_compute_jump_table_size (htab);
16864
0
      htab->root.sgotplt->size += 8;
16865
0
      *local_got = (bfd_vma) -2;
16866
      /* plt.got_offset needs to know there's a TLS_DESC
16867
         reloc in the middle of .got.plt.  */
16868
0
      htab->num_tls_desc++;
16869
0
    }
16870
0
        if (*local_tls_type & GOT_TLS_IE)
16871
0
    s->size += 4;
16872
16873
0
        if (*local_tls_type & GOT_NORMAL)
16874
0
    {
16875
      /* If the symbol is both GD and GDESC, *local_got
16876
         may have been overwritten.  */
16877
0
      *local_got = s->size;
16878
0
      s->size += 4;
16879
0
    }
16880
16881
0
        isym = bfd_sym_from_r_symndx (&htab->root.sym_cache, ibfd,
16882
0
              symndx);
16883
0
        if (isym == NULL)
16884
0
    return false;
16885
16886
        /* If all references to an STT_GNU_IFUNC PLT are calls,
16887
     then all non-call references, including this GOT entry,
16888
     resolve directly to the run-time target.  */
16889
0
        if (ELF32_ST_TYPE (isym->st_info) == STT_GNU_IFUNC
16890
0
      && (local_iplt == NULL
16891
0
          || local_iplt->arm.noncall_refcount == 0))
16892
0
    elf32_arm_allocate_irelocs (info, srel, 1);
16893
0
        else if (bfd_link_pic (info) || output_bfd->flags & DYNAMIC || htab->fdpic_p)
16894
0
    {
16895
0
      if ((bfd_link_pic (info) && !(*local_tls_type & GOT_TLS_GDESC)))
16896
0
        elf32_arm_allocate_dynrelocs (info, srel, 1);
16897
0
      else if (htab->fdpic_p && *local_tls_type & GOT_NORMAL)
16898
0
        htab->srofixup->size += 4;
16899
16900
0
      if ((bfd_link_pic (info) || htab->fdpic_p)
16901
0
          && *local_tls_type & GOT_TLS_GDESC)
16902
0
        {
16903
0
          elf32_arm_allocate_dynrelocs (info,
16904
0
                htab->root.srelplt, 1);
16905
0
          htab->tls_trampoline = -1;
16906
0
        }
16907
0
    }
16908
0
      }
16909
0
    else
16910
0
      *local_got = (bfd_vma) -1;
16911
0
  }
16912
0
    }
16913
16914
0
  if (htab->tls_ldm_got.refcount > 0)
16915
0
    {
16916
      /* Allocate two GOT entries and one dynamic relocation (if necessary)
16917
   for R_ARM_TLS_LDM32/R_ARM_TLS_LDM32_FDPIC relocations.  */
16918
0
      htab->tls_ldm_got.offset = htab->root.sgot->size;
16919
0
      htab->root.sgot->size += 8;
16920
0
      if (bfd_link_pic (info))
16921
0
  elf32_arm_allocate_dynrelocs (info, htab->root.srelgot, 1);
16922
0
    }
16923
0
  else
16924
0
    htab->tls_ldm_got.offset = -1;
16925
16926
  /* At the very end of the .rofixup section is a pointer to the GOT,
16927
     reserve space for it. */
16928
0
  if (htab->fdpic_p && htab->srofixup != NULL)
16929
0
    htab->srofixup->size += 4;
16930
16931
  /* Allocate global sym .plt and .got entries, and space for global
16932
     sym dynamic relocs.  */
16933
0
  elf_link_hash_traverse (& htab->root, allocate_dynrelocs_for_symbol, info);
16934
16935
  /* Here we rummage through the found bfds to collect glue information.  */
16936
0
  for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link.next)
16937
0
    {
16938
0
      if (! is_arm_elf (ibfd))
16939
0
  continue;
16940
16941
      /* Initialise mapping tables for code/data.  */
16942
0
      bfd_elf32_arm_init_maps (ibfd);
16943
16944
0
      if (!bfd_elf32_arm_process_before_allocation (ibfd, info)
16945
0
    || !bfd_elf32_arm_vfp11_erratum_scan (ibfd, info)
16946
0
    || !bfd_elf32_arm_stm32l4xx_erratum_scan (ibfd, info))
16947
0
  _bfd_error_handler (_("errors encountered processing file %pB"), ibfd);
16948
0
    }
16949
16950
  /* Allocate space for the glue sections now that we've sized them.  */
16951
0
  bfd_elf32_arm_allocate_interworking_sections (info);
16952
16953
  /* For every jump slot reserved in the sgotplt, reloc_count is
16954
     incremented.  However, when we reserve space for TLS descriptors,
16955
     it's not incremented, so in order to compute the space reserved
16956
     for them, it suffices to multiply the reloc count by the jump
16957
     slot size.  */
16958
0
  if (htab->root.srelplt)
16959
0
    htab->sgotplt_jump_table_size = elf32_arm_compute_jump_table_size (htab);
16960
16961
0
  if (htab->tls_trampoline)
16962
0
    {
16963
0
      if (htab->root.splt->size == 0)
16964
0
  htab->root.splt->size += htab->plt_header_size;
16965
16966
0
      htab->tls_trampoline = htab->root.splt->size;
16967
0
      htab->root.splt->size += htab->plt_entry_size;
16968
16969
      /* If we're not using lazy TLS relocations, don't generate the
16970
   PLT and GOT entries they require.  */
16971
0
      if ((info->flags & DF_BIND_NOW))
16972
0
  htab->root.tlsdesc_plt = 0;
16973
0
      else
16974
0
  {
16975
0
    htab->root.tlsdesc_got = htab->root.sgot->size;
16976
0
    htab->root.sgot->size += 4;
16977
16978
0
    htab->root.tlsdesc_plt = htab->root.splt->size;
16979
0
    htab->root.splt->size += 4 * ARRAY_SIZE (dl_tlsdesc_lazy_trampoline);
16980
0
  }
16981
0
    }
16982
16983
  /* The check_relocs and adjust_dynamic_symbol entry points have
16984
     determined the sizes of the various dynamic sections.  Allocate
16985
     memory for them.  */
16986
0
  relocs = false;
16987
0
  for (s = dynobj->sections; s != NULL; s = s->next)
16988
0
    {
16989
0
      const char * name;
16990
16991
0
      if ((s->flags & SEC_LINKER_CREATED) == 0)
16992
0
  continue;
16993
16994
      /* It's OK to base decisions on the section name, because none
16995
   of the dynobj section names depend upon the input files.  */
16996
0
      name = bfd_section_name (s);
16997
16998
0
      if (s == htab->root.splt)
16999
0
  {
17000
    /* Remember whether there is a PLT.  */
17001
0
    ;
17002
0
  }
17003
0
      else if (startswith (name, ".rel"))
17004
0
  {
17005
0
    if (s->size != 0)
17006
0
      {
17007
        /* Remember whether there are any reloc sections other
17008
     than .rel(a).plt and .rela.plt.unloaded.  */
17009
0
        if (s != htab->root.srelplt && s != htab->srelplt2)
17010
0
    relocs = true;
17011
17012
        /* We use the reloc_count field as a counter if we need
17013
     to copy relocs into the output file.  */
17014
0
        s->reloc_count = 0;
17015
0
      }
17016
0
  }
17017
0
      else if (s != htab->root.sgot
17018
0
         && s != htab->root.sgotplt
17019
0
         && s != htab->root.iplt
17020
0
         && s != htab->root.igotplt
17021
0
         && s != htab->root.sdynbss
17022
0
         && s != htab->root.sdynrelro
17023
0
         && s != htab->srofixup)
17024
0
  {
17025
    /* It's not one of our sections, so don't allocate space.  */
17026
0
    continue;
17027
0
  }
17028
17029
0
      if (s->size == 0)
17030
0
  {
17031
    /* If we don't need this section, strip it from the
17032
       output file.  This is mostly to handle .rel(a).bss and
17033
       .rel(a).plt.  We must create both sections in
17034
       create_dynamic_sections, because they must be created
17035
       before the linker maps input sections to output
17036
       sections.  The linker does that before
17037
       adjust_dynamic_symbol is called, and it is that
17038
       function which decides whether anything needs to go
17039
       into these sections.  */
17040
0
    s->flags |= SEC_EXCLUDE;
17041
0
    continue;
17042
0
  }
17043
17044
0
      if ((s->flags & SEC_HAS_CONTENTS) == 0)
17045
0
  continue;
17046
17047
      /* Allocate memory for the section contents.  */
17048
0
      s->contents = (unsigned char *) bfd_zalloc (dynobj, s->size);
17049
0
      if (s->contents == NULL)
17050
0
  return false;
17051
0
      s->alloced = 1;
17052
0
    }
17053
17054
0
  return _bfd_elf_maybe_vxworks_add_dynamic_tags (output_bfd, info,
17055
0
              relocs);
17056
0
}
17057
17058
/* Size sections even though they're not dynamic.  We use it to setup
17059
   _TLS_MODULE_BASE_, if needed.  */
17060
17061
static bool
17062
elf32_arm_early_size_sections (bfd *output_bfd, struct bfd_link_info *info)
17063
0
{
17064
0
  asection *tls_sec;
17065
0
  struct elf32_arm_link_hash_table *htab;
17066
17067
0
  htab = elf32_arm_hash_table (info);
17068
17069
0
  if (bfd_link_relocatable (info))
17070
0
    return true;
17071
17072
0
  tls_sec = elf_hash_table (info)->tls_sec;
17073
17074
0
  if (tls_sec)
17075
0
    {
17076
0
      struct elf_link_hash_entry *tlsbase;
17077
17078
0
      tlsbase = elf_link_hash_lookup
17079
0
  (elf_hash_table (info), "_TLS_MODULE_BASE_", true, true, false);
17080
17081
0
      if (tlsbase)
17082
0
  {
17083
0
    struct bfd_link_hash_entry *bh = NULL;
17084
0
    elf_backend_data *bed = get_elf_backend_data (output_bfd);
17085
17086
0
    if (!(_bfd_generic_link_add_one_symbol
17087
0
    (info, output_bfd, "_TLS_MODULE_BASE_", BSF_LOCAL,
17088
0
     tls_sec, 0, NULL, false,
17089
0
     bed->collect, &bh)))
17090
0
      return false;
17091
17092
0
    tlsbase->type = STT_TLS;
17093
0
    tlsbase = (struct elf_link_hash_entry *)bh;
17094
0
    tlsbase->def_regular = 1;
17095
0
    tlsbase->other = STV_HIDDEN;
17096
0
    (*bed->elf_backend_hide_symbol) (info, tlsbase, true);
17097
0
  }
17098
0
    }
17099
17100
0
  if (htab->fdpic_p && !bfd_link_relocatable (info)
17101
0
      && !bfd_elf_stack_segment_size (output_bfd, info,
17102
0
              "__stacksize", DEFAULT_STACK_SIZE))
17103
0
    return false;
17104
17105
0
  return true;
17106
0
}
17107
17108
/* Finish up dynamic symbol handling.  We set the contents of various
17109
   dynamic sections here.  */
17110
17111
static bool
17112
elf32_arm_finish_dynamic_symbol (bfd * output_bfd,
17113
         struct bfd_link_info * info,
17114
         struct elf_link_hash_entry * h,
17115
         Elf_Internal_Sym * sym)
17116
0
{
17117
0
  struct elf32_arm_link_hash_table *htab;
17118
0
  struct elf32_arm_link_hash_entry *eh;
17119
17120
0
  htab = elf32_arm_hash_table (info);
17121
17122
0
  eh = (struct elf32_arm_link_hash_entry *) h;
17123
17124
0
  if (h->plt.offset != (bfd_vma) -1)
17125
0
    {
17126
0
      if (!eh->is_iplt)
17127
0
  {
17128
0
    BFD_ASSERT (h->dynindx != -1);
17129
0
    if (! elf32_arm_populate_plt_entry (output_bfd, info, &h->plt, &eh->plt,
17130
0
                h->dynindx, 0))
17131
0
      return false;
17132
0
  }
17133
17134
0
      if (!h->def_regular)
17135
0
  {
17136
    /* Mark the symbol as undefined, rather than as defined in
17137
       the .plt section.  */
17138
0
    sym->st_shndx = SHN_UNDEF;
17139
    /* If the symbol is weak we need to clear the value.
17140
       Otherwise, the PLT entry would provide a definition for
17141
       the symbol even if the symbol wasn't defined anywhere,
17142
       and so the symbol would never be NULL.  Leave the value if
17143
       there were any relocations where pointer equality matters
17144
       (this is a clue for the dynamic linker, to make function
17145
       pointer comparisons work between an application and shared
17146
       library).  */
17147
0
    if (!h->ref_regular_nonweak || !h->pointer_equality_needed)
17148
0
      sym->st_value = 0;
17149
0
  }
17150
0
      else if (eh->is_iplt && eh->plt.noncall_refcount != 0)
17151
0
  {
17152
    /* At least one non-call relocation references this .iplt entry,
17153
       so the .iplt entry is the function's canonical address.  */
17154
0
    sym->st_info = ELF_ST_INFO (ELF_ST_BIND (sym->st_info), STT_FUNC);
17155
0
    ARM_SET_SYM_BRANCH_TYPE (sym->st_target_internal, ST_BRANCH_TO_ARM);
17156
0
    sym->st_shndx = (_bfd_elf_section_from_bfd_section
17157
0
         (output_bfd, htab->root.iplt->output_section));
17158
0
    sym->st_value = (h->plt.offset
17159
0
         + htab->root.iplt->output_section->vma
17160
0
         + htab->root.iplt->output_offset);
17161
0
  }
17162
0
    }
17163
17164
0
  if (h->needs_copy)
17165
0
    {
17166
0
      asection * s;
17167
0
      Elf_Internal_Rela rel;
17168
17169
      /* This symbol needs a copy reloc.  Set it up.  */
17170
0
      BFD_ASSERT (h->dynindx != -1
17171
0
      && (h->root.type == bfd_link_hash_defined
17172
0
          || h->root.type == bfd_link_hash_defweak));
17173
17174
0
      rel.r_addend = 0;
17175
0
      rel.r_offset = (h->root.u.def.value
17176
0
          + h->root.u.def.section->output_section->vma
17177
0
          + h->root.u.def.section->output_offset);
17178
0
      rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_COPY);
17179
0
      if (h->root.u.def.section == htab->root.sdynrelro)
17180
0
  s = htab->root.sreldynrelro;
17181
0
      else
17182
0
  s = htab->root.srelbss;
17183
0
      elf32_arm_add_dynreloc (output_bfd, info, s, &rel);
17184
0
    }
17185
17186
  /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute.  On VxWorks,
17187
     and for FDPIC, the _GLOBAL_OFFSET_TABLE_ symbol is not absolute:
17188
     it is relative to the ".got" section.  */
17189
0
  if (h == htab->root.hdynamic
17190
0
      || (!htab->fdpic_p
17191
0
    && htab->root.target_os != is_vxworks
17192
0
    && h == htab->root.hgot))
17193
0
    sym->st_shndx = SHN_ABS;
17194
17195
0
  return true;
17196
0
}
17197
17198
static void
17199
arm_put_trampoline (struct elf32_arm_link_hash_table *htab, bfd *output_bfd,
17200
        void *contents,
17201
        const unsigned long *template, unsigned count)
17202
0
{
17203
0
  unsigned ix;
17204
17205
0
  for (ix = 0; ix != count; ix++)
17206
0
    {
17207
0
      unsigned long insn = template[ix];
17208
17209
      /* Emit mov pc,rx if bx is not permitted.  */
17210
0
      if (htab->fix_v4bx == 1 && (insn & 0x0ffffff0) == 0x012fff10)
17211
0
  insn = (insn & 0xf000000f) | 0x01a0f000;
17212
0
      put_arm_insn (htab, output_bfd, insn, (char *)contents + ix*4);
17213
0
    }
17214
0
}
17215
17216
/* Finish up the dynamic sections.  */
17217
17218
static bool
17219
elf32_arm_finish_dynamic_sections (bfd *output_bfd, struct bfd_link_info *info,
17220
           bfd_byte *buf ATTRIBUTE_UNUSED)
17221
0
{
17222
0
  bfd * dynobj;
17223
0
  asection * sgot;
17224
0
  asection * sdyn;
17225
0
  struct elf32_arm_link_hash_table *htab;
17226
17227
0
  htab = elf32_arm_hash_table (info);
17228
0
  if (htab == NULL)
17229
0
    return false;
17230
17231
0
  dynobj = elf_hash_table (info)->dynobj;
17232
17233
0
  sgot = htab->root.sgotplt;
17234
  /* A broken linker script might have discarded the dynamic sections.
17235
     Catch this here so that we do not seg-fault later on.  */
17236
0
  if (sgot != NULL && bfd_is_abs_section (sgot->output_section))
17237
0
    return false;
17238
0
  sdyn = bfd_get_linker_section (dynobj, ".dynamic");
17239
17240
0
  if (elf_hash_table (info)->dynamic_sections_created)
17241
0
    {
17242
0
      asection *splt;
17243
0
      Elf32_External_Dyn *dyncon, *dynconend;
17244
17245
0
      splt = htab->root.splt;
17246
0
      BFD_ASSERT (splt != NULL && sdyn != NULL);
17247
0
      BFD_ASSERT (sgot != NULL);
17248
17249
0
      dyncon = (Elf32_External_Dyn *) sdyn->contents;
17250
0
      dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
17251
17252
0
      for (; dyncon < dynconend; dyncon++)
17253
0
  {
17254
0
    Elf_Internal_Dyn dyn;
17255
0
    const char * name;
17256
0
    asection * s;
17257
17258
0
    bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
17259
17260
0
    switch (dyn.d_tag)
17261
0
      {
17262
0
      default:
17263
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
17264
0
        if (htab->root.target_os == is_vxworks
17265
0
      && elf_vxworks_finish_dynamic_entry (output_bfd, &dyn))
17266
0
    bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17267
0
#endif /* OBJ_MAYBE_ELF_VXWORKS */
17268
0
        break;
17269
17270
0
      case DT_HASH:
17271
0
      case DT_STRTAB:
17272
0
      case DT_SYMTAB:
17273
0
      case DT_VERSYM:
17274
0
      case DT_VERDEF:
17275
0
      case DT_VERNEED:
17276
0
        break;
17277
17278
0
      case DT_PLTGOT:
17279
0
        name = ".got.plt";
17280
0
        goto get_vma;
17281
0
      case DT_JMPREL:
17282
0
        name = RELOC_SECTION (htab, ".plt");
17283
0
      get_vma:
17284
0
        s = bfd_get_linker_section (dynobj, name);
17285
0
        if (s == NULL)
17286
0
    {
17287
0
      _bfd_error_handler
17288
0
        (_("could not find section %s"), name);
17289
0
      bfd_set_error (bfd_error_invalid_operation);
17290
0
      return false;
17291
0
    }
17292
0
        dyn.d_un.d_ptr = s->output_section->vma + s->output_offset;
17293
0
        bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17294
0
        break;
17295
17296
0
      case DT_PLTRELSZ:
17297
0
        s = htab->root.srelplt;
17298
0
        BFD_ASSERT (s != NULL);
17299
0
        dyn.d_un.d_val = s->size;
17300
0
        bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17301
0
        break;
17302
17303
0
      case DT_RELSZ:
17304
0
      case DT_RELASZ:
17305
0
      case DT_REL:
17306
0
      case DT_RELA:
17307
0
        break;
17308
17309
0
      case DT_TLSDESC_PLT:
17310
0
        s = htab->root.splt;
17311
0
        dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
17312
0
        + htab->root.tlsdesc_plt);
17313
0
        bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17314
0
        break;
17315
17316
0
      case DT_TLSDESC_GOT:
17317
0
        s = htab->root.sgot;
17318
0
        dyn.d_un.d_ptr = (s->output_section->vma + s->output_offset
17319
0
        + htab->root.tlsdesc_got);
17320
0
        bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17321
0
        break;
17322
17323
        /* Set the bottom bit of DT_INIT/FINI if the
17324
     corresponding function is Thumb.  */
17325
0
      case DT_INIT:
17326
0
        name = info->init_function;
17327
0
        goto get_sym;
17328
0
      case DT_FINI:
17329
0
        name = info->fini_function;
17330
0
      get_sym:
17331
        /* If it wasn't set by elf_bfd_final_link
17332
     then there is nothing to adjust.  */
17333
0
        if (dyn.d_un.d_val != 0)
17334
0
    {
17335
0
      struct elf_link_hash_entry * eh;
17336
17337
0
      eh = elf_link_hash_lookup (elf_hash_table (info), name,
17338
0
               false, false, true);
17339
0
      if (eh != NULL
17340
0
          && ARM_GET_SYM_BRANCH_TYPE (eh->target_internal)
17341
0
       == ST_BRANCH_TO_THUMB)
17342
0
        {
17343
0
          dyn.d_un.d_val |= 1;
17344
0
          bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
17345
0
        }
17346
0
    }
17347
0
        break;
17348
0
      }
17349
0
  }
17350
17351
      /* Fill in the first entry in the procedure linkage table.  */
17352
0
      if (splt->size > 0 && htab->plt_header_size)
17353
0
  {
17354
0
    const bfd_vma *plt0_entry;
17355
0
    bfd_vma got_address, plt_address, got_displacement;
17356
17357
    /* Calculate the addresses of the GOT and PLT.  */
17358
0
    got_address = sgot->output_section->vma + sgot->output_offset;
17359
0
    plt_address = splt->output_section->vma + splt->output_offset;
17360
17361
0
    if (htab->root.target_os == is_vxworks)
17362
0
      {
17363
        /* The VxWorks GOT is relocated by the dynamic linker.
17364
     Therefore, we must emit relocations rather than simply
17365
     computing the values now.  */
17366
0
        Elf_Internal_Rela rel;
17367
17368
0
        plt0_entry = elf32_arm_vxworks_exec_plt0_entry;
17369
0
        put_arm_insn (htab, output_bfd, plt0_entry[0],
17370
0
          splt->contents + 0);
17371
0
        put_arm_insn (htab, output_bfd, plt0_entry[1],
17372
0
          splt->contents + 4);
17373
0
        put_arm_insn (htab, output_bfd, plt0_entry[2],
17374
0
          splt->contents + 8);
17375
0
        bfd_put_32 (output_bfd, got_address, splt->contents + 12);
17376
17377
        /* Generate a relocation for _GLOBAL_OFFSET_TABLE_.  */
17378
0
        rel.r_offset = plt_address + 12;
17379
0
        rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17380
0
        rel.r_addend = 0;
17381
0
        SWAP_RELOC_OUT (htab) (output_bfd, &rel,
17382
0
             htab->srelplt2->contents);
17383
0
      }
17384
0
    else if (using_thumb_only (htab))
17385
0
      {
17386
0
        got_displacement = got_address - (plt_address + 12);
17387
17388
0
        plt0_entry = elf32_thumb2_plt0_entry;
17389
0
        put_arm_insn (htab, output_bfd, plt0_entry[0],
17390
0
          splt->contents + 0);
17391
0
        put_arm_insn (htab, output_bfd, plt0_entry[1],
17392
0
          splt->contents + 4);
17393
0
        put_arm_insn (htab, output_bfd, plt0_entry[2],
17394
0
          splt->contents + 8);
17395
17396
0
        bfd_put_32 (output_bfd, got_displacement, splt->contents + 12);
17397
0
      }
17398
0
    else
17399
0
      {
17400
0
        got_displacement = got_address - (plt_address + 16);
17401
17402
0
        plt0_entry = elf32_arm_plt0_entry;
17403
0
        put_arm_insn (htab, output_bfd, plt0_entry[0],
17404
0
          splt->contents + 0);
17405
0
        put_arm_insn (htab, output_bfd, plt0_entry[1],
17406
0
          splt->contents + 4);
17407
0
        put_arm_insn (htab, output_bfd, plt0_entry[2],
17408
0
          splt->contents + 8);
17409
0
        put_arm_insn (htab, output_bfd, plt0_entry[3],
17410
0
          splt->contents + 12);
17411
17412
#ifdef FOUR_WORD_PLT
17413
        /* The displacement value goes in the otherwise-unused
17414
     last word of the second entry.  */
17415
        bfd_put_32 (output_bfd, got_displacement, splt->contents + 28);
17416
#else
17417
0
        bfd_put_32 (output_bfd, got_displacement, splt->contents + 16);
17418
0
#endif
17419
0
      }
17420
0
  }
17421
17422
      /* UnixWare sets the entsize of .plt to 4, although that doesn't
17423
   really seem like the right value.  */
17424
0
      if (splt->output_section->owner == output_bfd)
17425
0
  elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
17426
17427
0
      if (htab->root.tlsdesc_plt)
17428
0
  {
17429
0
    bfd_vma got_address
17430
0
      = sgot->output_section->vma + sgot->output_offset;
17431
0
    bfd_vma gotplt_address = (htab->root.sgot->output_section->vma
17432
0
            + htab->root.sgot->output_offset);
17433
0
    bfd_vma plt_address
17434
0
      = splt->output_section->vma + splt->output_offset;
17435
17436
0
    arm_put_trampoline (htab, output_bfd,
17437
0
            splt->contents + htab->root.tlsdesc_plt,
17438
0
            dl_tlsdesc_lazy_trampoline, 6);
17439
17440
0
    bfd_put_32 (output_bfd,
17441
0
          gotplt_address + htab->root.tlsdesc_got
17442
0
          - (plt_address + htab->root.tlsdesc_plt)
17443
0
          - dl_tlsdesc_lazy_trampoline[6],
17444
0
          splt->contents + htab->root.tlsdesc_plt + 24);
17445
0
    bfd_put_32 (output_bfd,
17446
0
          got_address - (plt_address + htab->root.tlsdesc_plt)
17447
0
          - dl_tlsdesc_lazy_trampoline[7],
17448
0
          splt->contents + htab->root.tlsdesc_plt + 24 + 4);
17449
0
  }
17450
17451
0
      if (htab->tls_trampoline)
17452
0
  {
17453
0
    arm_put_trampoline (htab, output_bfd,
17454
0
            splt->contents + htab->tls_trampoline,
17455
0
            tls_trampoline, 3);
17456
#ifdef FOUR_WORD_PLT
17457
    bfd_put_32 (output_bfd, 0x00000000,
17458
          splt->contents + htab->tls_trampoline + 12);
17459
#endif
17460
0
  }
17461
17462
0
      if (htab->root.target_os == is_vxworks
17463
0
    && !bfd_link_pic (info)
17464
0
    && htab->root.splt->size > 0)
17465
0
  {
17466
    /* Correct the .rel(a).plt.unloaded relocations.  They will have
17467
       incorrect symbol indexes.  */
17468
0
    int num_plts;
17469
0
    unsigned char *p;
17470
17471
0
    num_plts = ((htab->root.splt->size - htab->plt_header_size)
17472
0
          / htab->plt_entry_size);
17473
0
    p = htab->srelplt2->contents + RELOC_SIZE (htab);
17474
17475
0
    for (; num_plts; num_plts--)
17476
0
      {
17477
0
        Elf_Internal_Rela rel;
17478
17479
0
        SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17480
0
        rel.r_info = ELF32_R_INFO (htab->root.hgot->indx, R_ARM_ABS32);
17481
0
        SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17482
0
        p += RELOC_SIZE (htab);
17483
17484
0
        SWAP_RELOC_IN (htab) (output_bfd, p, &rel);
17485
0
        rel.r_info = ELF32_R_INFO (htab->root.hplt->indx, R_ARM_ABS32);
17486
0
        SWAP_RELOC_OUT (htab) (output_bfd, &rel, p);
17487
0
        p += RELOC_SIZE (htab);
17488
0
      }
17489
0
  }
17490
0
    }
17491
17492
  /* Fill in the first three entries in the global offset table.  */
17493
0
  if (sgot)
17494
0
    {
17495
0
      if (sgot->size > 0)
17496
0
  {
17497
0
    if (sdyn == NULL)
17498
0
      bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
17499
0
    else
17500
0
      bfd_put_32 (output_bfd,
17501
0
      sdyn->output_section->vma + sdyn->output_offset,
17502
0
      sgot->contents);
17503
0
    bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
17504
0
    bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
17505
0
  }
17506
17507
0
      elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
17508
0
    }
17509
17510
  /* At the very end of the .rofixup section is a pointer to the GOT.  */
17511
0
  if (htab->fdpic_p && htab->srofixup != NULL)
17512
0
    {
17513
0
      struct elf_link_hash_entry *hgot = htab->root.hgot;
17514
17515
0
      bfd_vma got_value = hgot->root.u.def.value
17516
0
  + hgot->root.u.def.section->output_section->vma
17517
0
  + hgot->root.u.def.section->output_offset;
17518
17519
0
      arm_elf_add_rofixup (output_bfd, htab->srofixup, got_value);
17520
17521
      /* Make sure we allocated and generated the same number of fixups.  */
17522
0
      BFD_ASSERT (htab->srofixup->reloc_count * 4 == htab->srofixup->size);
17523
0
    }
17524
17525
0
  return true;
17526
0
}
17527
17528
static bool
17529
elf32_arm_init_file_header (bfd *abfd, struct bfd_link_info *link_info)
17530
0
{
17531
0
  Elf_Internal_Ehdr * i_ehdrp;  /* ELF file header, internal form.  */
17532
0
  struct elf32_arm_link_hash_table *globals;
17533
0
  struct elf_segment_map *m;
17534
17535
0
  if (!_bfd_elf_init_file_header (abfd, link_info))
17536
0
    return false;
17537
17538
0
  i_ehdrp = elf_elfheader (abfd);
17539
17540
0
  if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_UNKNOWN)
17541
0
    i_ehdrp->e_ident[EI_OSABI] = ELFOSABI_ARM;
17542
0
  i_ehdrp->e_ident[EI_ABIVERSION] = ARM_ELF_ABI_VERSION;
17543
17544
0
  if (link_info)
17545
0
    {
17546
0
      globals = elf32_arm_hash_table (link_info);
17547
0
      if (globals != NULL && globals->byteswap_code)
17548
0
  i_ehdrp->e_flags |= EF_ARM_BE8;
17549
17550
0
      if (globals->fdpic_p)
17551
0
  i_ehdrp->e_ident[EI_OSABI] |= ELFOSABI_ARM_FDPIC;
17552
0
    }
17553
17554
0
  if (EF_ARM_EABI_VERSION (i_ehdrp->e_flags) == EF_ARM_EABI_VER5
17555
0
      && ((i_ehdrp->e_type == ET_DYN) || (i_ehdrp->e_type == ET_EXEC)))
17556
0
    {
17557
0
      int abi = bfd_elf_get_obj_attr_int (abfd, OBJ_ATTR_PROC, Tag_ABI_VFP_args);
17558
0
      if (abi == AEABI_VFP_args_vfp)
17559
0
  i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_HARD;
17560
0
      else
17561
0
  i_ehdrp->e_flags |= EF_ARM_ABI_FLOAT_SOFT;
17562
0
    }
17563
17564
  /* Scan segment to set p_flags attribute if it contains only sections with
17565
     SHF_ARM_PURECODE flag.  */
17566
0
  for (m = elf_seg_map (abfd); m != NULL; m = m->next)
17567
0
    {
17568
0
      unsigned int j;
17569
17570
0
      if (m->count == 0)
17571
0
  continue;
17572
0
      for (j = 0; j < m->count; j++)
17573
0
  {
17574
0
    if (!(elf_section_flags (m->sections[j]) & SHF_ARM_PURECODE))
17575
0
      break;
17576
0
  }
17577
0
      if (j == m->count)
17578
0
  {
17579
0
    m->p_flags = PF_X;
17580
0
    m->p_flags_valid = 1;
17581
0
  }
17582
0
    }
17583
0
  return true;
17584
0
}
17585
17586
static enum elf_reloc_type_class
17587
elf32_arm_reloc_type_class (const struct bfd_link_info *info ATTRIBUTE_UNUSED,
17588
          const asection *rel_sec ATTRIBUTE_UNUSED,
17589
          const Elf_Internal_Rela *rela)
17590
0
{
17591
0
  struct elf32_arm_link_hash_table *htab = elf32_arm_hash_table (info);
17592
17593
0
  if (htab->root.dynsym != NULL
17594
0
      && htab->root.dynsym->contents != NULL)
17595
0
    {
17596
      /* Check relocation against STT_GNU_IFUNC symbol if there are
17597
   dynamic symbols.  */
17598
0
      bfd *abfd = info->output_bfd;
17599
0
      elf_backend_data *bed = get_elf_backend_data (abfd);
17600
0
      unsigned long r_symndx = ELF32_R_SYM (rela->r_info);
17601
0
      if (r_symndx != STN_UNDEF)
17602
0
  {
17603
0
    Elf_Internal_Sym sym;
17604
0
    if (!bed->s->swap_symbol_in (abfd,
17605
0
               (htab->root.dynsym->contents
17606
0
          + r_symndx * bed->s->sizeof_sym),
17607
0
               0, &sym))
17608
0
      {
17609
        /* xgettext:c-format */
17610
0
        _bfd_error_handler (_("%pB symbol number %lu references"
17611
0
            " nonexistent SHT_SYMTAB_SHNDX section"),
17612
0
          abfd, r_symndx);
17613
        /* Ideally an error class should be returned here.  */
17614
0
      }
17615
0
    else if (ELF_ST_TYPE (sym.st_info) == STT_GNU_IFUNC)
17616
0
      return reloc_class_ifunc;
17617
0
  }
17618
0
    }
17619
17620
0
  switch ((int) ELF32_R_TYPE (rela->r_info))
17621
0
    {
17622
0
    case R_ARM_RELATIVE:
17623
0
      return reloc_class_relative;
17624
0
    case R_ARM_JUMP_SLOT:
17625
0
      return reloc_class_plt;
17626
0
    case R_ARM_COPY:
17627
0
      return reloc_class_copy;
17628
0
    case R_ARM_IRELATIVE:
17629
0
      return reloc_class_ifunc;
17630
0
    default:
17631
0
      return reloc_class_normal;
17632
0
    }
17633
0
}
17634
17635
static void
17636
arm_final_write_processing (bfd *abfd)
17637
0
{
17638
0
  bfd_arm_update_notes (abfd, ARM_NOTE_SECTION);
17639
0
}
17640
17641
static bool
17642
elf32_arm_final_write_processing (bfd *abfd)
17643
0
{
17644
0
  arm_final_write_processing (abfd);
17645
0
  return _bfd_elf_final_write_processing (abfd);
17646
0
}
17647
17648
/* Return TRUE if this is an unwinding table entry.  */
17649
17650
static bool
17651
is_arm_elf_unwind_section_name (bfd * abfd ATTRIBUTE_UNUSED, const char * name)
17652
0
{
17653
0
  return (startswith (name, ELF_STRING_ARM_unwind)
17654
0
    || startswith (name, ELF_STRING_ARM_unwind_once));
17655
0
}
17656
17657
17658
/* Set the type and flags for an ARM section.  We do this by
17659
   the section name, which is a hack, but ought to work.  */
17660
17661
static bool
17662
elf32_arm_fake_sections (bfd * abfd, Elf_Internal_Shdr * hdr, asection * sec)
17663
0
{
17664
0
  const char * name;
17665
17666
0
  name = bfd_section_name (sec);
17667
17668
0
  if (is_arm_elf_unwind_section_name (abfd, name))
17669
0
    {
17670
0
      hdr->sh_type = SHT_ARM_EXIDX;
17671
0
      hdr->sh_flags |= SHF_LINK_ORDER;
17672
0
    }
17673
17674
0
  if (sec->flags & SEC_ELF_PURECODE)
17675
0
    hdr->sh_flags |= SHF_ARM_PURECODE;
17676
17677
0
  return true;
17678
0
}
17679
17680
/* Handle an ARM specific section when reading an object file.  This is
17681
   called when bfd_section_from_shdr finds a section with an unknown
17682
   type.  */
17683
17684
static bool
17685
elf32_arm_section_from_shdr (bfd *abfd,
17686
           Elf_Internal_Shdr * hdr,
17687
           const char *name,
17688
           int shindex)
17689
521
{
17690
  /* There ought to be a place to keep ELF backend specific flags, but
17691
     at the moment there isn't one.  We just keep track of the
17692
     sections by their name, instead.  Fortunately, the ABI gives
17693
     names for all the ARM specific sections, so we will probably get
17694
     away with this.  */
17695
521
  switch (hdr->sh_type)
17696
521
    {
17697
17
    case SHT_ARM_EXIDX:
17698
21
    case SHT_ARM_PREEMPTMAP:
17699
21
    case SHT_ARM_ATTRIBUTES:
17700
21
      break;
17701
17702
500
    default:
17703
500
      return false;
17704
521
    }
17705
17706
21
  if (! _bfd_elf_make_section_from_shdr (abfd, hdr, name, shindex))
17707
0
    return false;
17708
17709
21
  return true;
17710
21
}
17711
17712
static _arm_elf_section_data *
17713
get_arm_elf_section_data (asection * sec)
17714
0
{
17715
0
  if (sec && sec->owner && is_arm_elf (sec->owner))
17716
0
    return elf32_arm_section_data (sec);
17717
0
  else
17718
0
    return NULL;
17719
0
}
17720
17721
typedef struct
17722
{
17723
  void *flaginfo;
17724
  struct bfd_link_info *info;
17725
  asection *sec;
17726
  int sec_shndx;
17727
  int (*func) (void *, const char *, Elf_Internal_Sym *,
17728
         asection *, struct elf_link_hash_entry *);
17729
} output_arch_syminfo;
17730
17731
enum map_symbol_type
17732
{
17733
  ARM_MAP_ARM,
17734
  ARM_MAP_THUMB,
17735
  ARM_MAP_DATA
17736
};
17737
17738
17739
/* Output a single mapping symbol.  */
17740
17741
static bool
17742
elf32_arm_output_map_sym (output_arch_syminfo *osi,
17743
        enum map_symbol_type type,
17744
        bfd_vma offset)
17745
0
{
17746
0
  static const char *names[3] = {"$a", "$t", "$d"};
17747
0
  Elf_Internal_Sym sym;
17748
17749
0
  sym.st_value = osi->sec->output_section->vma
17750
0
     + osi->sec->output_offset
17751
0
     + offset;
17752
0
  sym.st_size = 0;
17753
0
  sym.st_other = 0;
17754
0
  sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_NOTYPE);
17755
0
  sym.st_shndx = osi->sec_shndx;
17756
0
  sym.st_target_internal = ST_BRANCH_TO_ARM;
17757
0
  elf32_arm_section_map_add (osi->sec, names[type][1], offset);
17758
0
  return osi->func (osi->flaginfo, names[type], &sym, osi->sec, NULL) == 1;
17759
0
}
17760
17761
/* Output mapping symbols for the PLT entry described by ROOT_PLT and ARM_PLT.
17762
   IS_IPLT_ENTRY_P says whether the PLT is in .iplt rather than .plt.  */
17763
17764
static bool
17765
elf32_arm_output_plt_map_1 (output_arch_syminfo *osi,
17766
          bool is_iplt_entry_p,
17767
          union gotplt_union *root_plt,
17768
          struct arm_plt_info *arm_plt)
17769
0
{
17770
0
  struct elf32_arm_link_hash_table *htab;
17771
0
  bfd_vma addr, plt_header_size;
17772
17773
0
  if (root_plt->offset == (bfd_vma) -1)
17774
0
    return true;
17775
17776
0
  htab = elf32_arm_hash_table (osi->info);
17777
0
  if (htab == NULL)
17778
0
    return false;
17779
17780
0
  if (is_iplt_entry_p)
17781
0
    {
17782
0
      osi->sec = htab->root.iplt;
17783
0
      plt_header_size = 0;
17784
0
    }
17785
0
  else
17786
0
    {
17787
0
      osi->sec = htab->root.splt;
17788
0
      plt_header_size = htab->plt_header_size;
17789
0
    }
17790
0
  osi->sec_shndx = (_bfd_elf_section_from_bfd_section
17791
0
        (osi->info->output_bfd, osi->sec->output_section));
17792
17793
0
  addr = root_plt->offset & -2;
17794
0
  if (htab->root.target_os == is_vxworks)
17795
0
    {
17796
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17797
0
  return false;
17798
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 8))
17799
0
  return false;
17800
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr + 12))
17801
0
  return false;
17802
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 20))
17803
0
  return false;
17804
0
    }
17805
0
  else if (htab->fdpic_p)
17806
0
    {
17807
0
      enum map_symbol_type type = using_thumb_only (htab)
17808
0
  ? ARM_MAP_THUMB
17809
0
  : ARM_MAP_ARM;
17810
17811
0
      if (elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt))
17812
0
  if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
17813
0
    return false;
17814
0
      if (!elf32_arm_output_map_sym (osi, type, addr))
17815
0
  return false;
17816
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 16))
17817
0
  return false;
17818
0
      if (htab->plt_entry_size == 4 * ARRAY_SIZE (elf32_arm_fdpic_plt_entry))
17819
0
  if (!elf32_arm_output_map_sym (osi, type, addr + 24))
17820
0
    return false;
17821
0
    }
17822
0
  else if (using_thumb_only (htab))
17823
0
    {
17824
0
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr))
17825
0
  return false;
17826
0
    }
17827
0
  else
17828
0
    {
17829
0
      bool thumb_stub_p;
17830
17831
0
      thumb_stub_p = elf32_arm_plt_needs_thumb_stub_p (osi->info, arm_plt);
17832
0
      if (thumb_stub_p)
17833
0
  {
17834
0
    if (!elf32_arm_output_map_sym (osi, ARM_MAP_THUMB, addr - 4))
17835
0
      return false;
17836
0
  }
17837
#ifdef FOUR_WORD_PLT
17838
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17839
  return false;
17840
      if (!elf32_arm_output_map_sym (osi, ARM_MAP_DATA, addr + 12))
17841
  return false;
17842
#else
17843
      /* A three-word PLT with no Thumb thunk contains only Arm code,
17844
   so only need to output a mapping symbol for the first PLT entry and
17845
   entries with thumb thunks.  */
17846
0
      if (thumb_stub_p || addr == plt_header_size)
17847
0
  {
17848
0
    if (!elf32_arm_output_map_sym (osi, ARM_MAP_ARM, addr))
17849
0
      return false;
17850
0
  }
17851
0
#endif
17852
0
    }
17853
17854
0
  return true;
17855
0
}
17856
17857
/* Output mapping symbols for PLT entries associated with H.  */
17858
17859
static bool
17860
elf32_arm_output_plt_map (struct elf_link_hash_entry *h, void *inf)
17861
0
{
17862
0
  output_arch_syminfo *osi = (output_arch_syminfo *) inf;
17863
0
  struct elf32_arm_link_hash_entry *eh;
17864
17865
0
  if (h->root.type == bfd_link_hash_indirect)
17866
0
    return true;
17867
17868
0
  if (h->root.type == bfd_link_hash_warning)
17869
    /* When warning symbols are created, they **replace** the "real"
17870
       entry in the hash table, thus we never get to see the real
17871
       symbol in a hash traversal.  So look at it now.  */
17872
0
    h = (struct elf_link_hash_entry *) h->root.u.i.link;
17873
17874
0
  eh = (struct elf32_arm_link_hash_entry *) h;
17875
0
  return elf32_arm_output_plt_map_1 (osi, SYMBOL_CALLS_LOCAL (osi->info, h),
17876
0
             &h->plt, &eh->plt);
17877
0
}
17878
17879
/* Bind a veneered symbol to its veneer identified by its hash entry
17880
   STUB_ENTRY.  The veneered location thus loose its symbol.  */
17881
17882
static void
17883
arm_stub_claim_sym (struct elf32_arm_stub_hash_entry *stub_entry)
17884
0
{
17885
0
  struct elf32_arm_link_hash_entry *hash = stub_entry->h;
17886
17887
0
  BFD_ASSERT (hash);
17888
0
  hash->root.root.u.def.section = stub_entry->stub_sec;
17889
0
  hash->root.root.u.def.value = stub_entry->stub_offset;
17890
0
  hash->root.size = stub_entry->stub_size;
17891
0
}
17892
17893
/* Output a single local symbol for a generated stub.  */
17894
17895
static bool
17896
elf32_arm_output_stub_sym (output_arch_syminfo *osi, const char *name,
17897
         bfd_vma offset, bfd_vma size)
17898
0
{
17899
0
  Elf_Internal_Sym sym;
17900
17901
0
  sym.st_value = osi->sec->output_section->vma
17902
0
     + osi->sec->output_offset
17903
0
     + offset;
17904
0
  sym.st_size = size;
17905
0
  sym.st_other = 0;
17906
0
  sym.st_info = ELF_ST_INFO (STB_LOCAL, STT_FUNC);
17907
0
  sym.st_shndx = osi->sec_shndx;
17908
0
  sym.st_target_internal = ST_BRANCH_TO_ARM;
17909
0
  return osi->func (osi->flaginfo, name, &sym, osi->sec, NULL) == 1;
17910
0
}
17911
17912
static bool
17913
arm_map_one_stub (struct bfd_hash_entry * gen_entry,
17914
      void * in_arg)
17915
0
{
17916
0
  struct elf32_arm_stub_hash_entry *stub_entry;
17917
0
  asection *stub_sec;
17918
0
  bfd_vma addr;
17919
0
  char *stub_name;
17920
0
  output_arch_syminfo *osi;
17921
0
  const insn_sequence *template_sequence;
17922
0
  enum stub_insn_type prev_type;
17923
0
  int size;
17924
0
  int i;
17925
0
  enum map_symbol_type sym_type;
17926
17927
  /* Massage our args to the form they really have.  */
17928
0
  stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
17929
0
  osi = (output_arch_syminfo *) in_arg;
17930
17931
0
  stub_sec = stub_entry->stub_sec;
17932
17933
  /* Ensure this stub is attached to the current section being
17934
     processed.  */
17935
0
  if (stub_sec != osi->sec)
17936
0
    return true;
17937
17938
0
  addr = (bfd_vma) stub_entry->stub_offset;
17939
0
  template_sequence = stub_entry->stub_template;
17940
17941
0
  if (arm_stub_sym_claimed (stub_entry->stub_type))
17942
0
    arm_stub_claim_sym (stub_entry);
17943
0
  else
17944
0
    {
17945
0
      stub_name = stub_entry->output_name;
17946
0
      switch (template_sequence[0].type)
17947
0
  {
17948
0
  case ARM_TYPE:
17949
0
    if (!elf32_arm_output_stub_sym (osi, stub_name, addr,
17950
0
            stub_entry->stub_size))
17951
0
      return false;
17952
0
    break;
17953
0
  case THUMB16_TYPE:
17954
0
  case THUMB32_TYPE:
17955
0
    if (!elf32_arm_output_stub_sym (osi, stub_name, addr | 1,
17956
0
            stub_entry->stub_size))
17957
0
      return false;
17958
0
    break;
17959
0
  default:
17960
0
    BFD_FAIL ();
17961
0
    return 0;
17962
0
  }
17963
0
    }
17964
17965
0
  prev_type = DATA_TYPE;
17966
0
  size = 0;
17967
0
  for (i = 0; i < stub_entry->stub_template_size; i++)
17968
0
    {
17969
0
      switch (template_sequence[i].type)
17970
0
  {
17971
0
  case ARM_TYPE:
17972
0
    sym_type = ARM_MAP_ARM;
17973
0
    break;
17974
17975
0
  case THUMB16_TYPE:
17976
0
  case THUMB32_TYPE:
17977
0
    sym_type = ARM_MAP_THUMB;
17978
0
    break;
17979
17980
0
  case DATA_TYPE:
17981
0
    sym_type = ARM_MAP_DATA;
17982
0
    break;
17983
17984
0
  default:
17985
0
    BFD_FAIL ();
17986
0
    return false;
17987
0
  }
17988
17989
0
      if (template_sequence[i].type != prev_type)
17990
0
  {
17991
0
    prev_type = template_sequence[i].type;
17992
0
    if (!elf32_arm_output_map_sym (osi, sym_type, addr + size))
17993
0
      return false;
17994
0
  }
17995
17996
0
      switch (template_sequence[i].type)
17997
0
  {
17998
0
  case ARM_TYPE:
17999
0
  case THUMB32_TYPE:
18000
0
    size += 4;
18001
0
    break;
18002
18003
0
  case THUMB16_TYPE:
18004
0
    size += 2;
18005
0
    break;
18006
18007
0
  case DATA_TYPE:
18008
0
    size += 4;
18009
0
    break;
18010
18011
0
  default:
18012
0
    BFD_FAIL ();
18013
0
    return false;
18014
0
  }
18015
0
    }
18016
18017
0
  return true;
18018
0
}
18019
18020
/* Output mapping symbols for linker generated sections,
18021
   and for those data-only sections that do not have a
18022
   $d.  */
18023
18024
static bool
18025
elf32_arm_output_arch_local_syms (bfd *output_bfd,
18026
          struct bfd_link_info *info,
18027
          void *flaginfo,
18028
          int (*func) (void *, const char *,
18029
                 Elf_Internal_Sym *,
18030
                 asection *,
18031
                 struct elf_link_hash_entry *))
18032
0
{
18033
0
  output_arch_syminfo osi;
18034
0
  struct elf32_arm_link_hash_table *htab;
18035
0
  bfd_vma offset;
18036
0
  bfd_size_type size;
18037
0
  bfd *input_bfd;
18038
18039
0
  if (info->strip == strip_all
18040
0
      && !info->emitrelocations
18041
0
      && !bfd_link_relocatable (info))
18042
0
    return true;
18043
18044
0
  htab = elf32_arm_hash_table (info);
18045
0
  if (htab == NULL)
18046
0
    return false;
18047
18048
0
  check_use_blx (htab);
18049
18050
0
  osi.flaginfo = flaginfo;
18051
0
  osi.info = info;
18052
0
  osi.func = func;
18053
18054
  /* Add a $d mapping symbol to data-only sections that
18055
     don't have any mapping symbol.  This may result in (harmless) redundant
18056
     mapping symbols.  */
18057
0
  for (input_bfd = info->input_bfds;
18058
0
       input_bfd != NULL;
18059
0
       input_bfd = input_bfd->link.next)
18060
0
    {
18061
0
      if ((input_bfd->flags & (BFD_LINKER_CREATED | HAS_SYMS)) == HAS_SYMS)
18062
0
  for (osi.sec = input_bfd->sections;
18063
0
       osi.sec != NULL;
18064
0
       osi.sec = osi.sec->next)
18065
0
    {
18066
0
      if (osi.sec->output_section != NULL
18067
0
    && ((osi.sec->output_section->flags & (SEC_ALLOC | SEC_CODE))
18068
0
        != 0)
18069
0
    && (osi.sec->flags & (SEC_HAS_CONTENTS | SEC_LINKER_CREATED))
18070
0
       == SEC_HAS_CONTENTS
18071
0
    && get_arm_elf_section_data (osi.sec) != NULL
18072
0
    && get_arm_elf_section_data (osi.sec)->mapcount == 0
18073
0
    && osi.sec->size > 0
18074
0
    && (osi.sec->flags & SEC_EXCLUDE) == 0)
18075
0
        {
18076
0
    osi.sec_shndx = _bfd_elf_section_from_bfd_section
18077
0
      (output_bfd, osi.sec->output_section);
18078
0
    if (osi.sec_shndx != (int)SHN_BAD)
18079
0
      elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 0);
18080
0
        }
18081
0
    }
18082
0
    }
18083
18084
  /* ARM->Thumb glue.  */
18085
0
  if (htab->arm_glue_size > 0)
18086
0
    {
18087
0
      osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18088
0
          ARM2THUMB_GLUE_SECTION_NAME);
18089
18090
0
      osi.sec_shndx = _bfd_elf_section_from_bfd_section
18091
0
    (output_bfd, osi.sec->output_section);
18092
0
      if (bfd_link_pic (info)
18093
0
    || htab->pic_veneer)
18094
0
  size = ARM2THUMB_PIC_GLUE_SIZE;
18095
0
      else if (htab->use_blx)
18096
0
  size = ARM2THUMB_V5_STATIC_GLUE_SIZE;
18097
0
      else
18098
0
  size = ARM2THUMB_STATIC_GLUE_SIZE;
18099
18100
0
      for (offset = 0; offset < htab->arm_glue_size; offset += size)
18101
0
  {
18102
0
    elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset);
18103
0
    elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, offset + size - 4);
18104
0
  }
18105
0
    }
18106
18107
  /* Thumb->ARM glue.  */
18108
0
  if (htab->thumb_glue_size > 0)
18109
0
    {
18110
0
      osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18111
0
          THUMB2ARM_GLUE_SECTION_NAME);
18112
18113
0
      osi.sec_shndx = _bfd_elf_section_from_bfd_section
18114
0
    (output_bfd, osi.sec->output_section);
18115
0
      size = THUMB2ARM_GLUE_SIZE;
18116
18117
0
      for (offset = 0; offset < htab->thumb_glue_size; offset += size)
18118
0
  {
18119
0
    elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, offset);
18120
0
    elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, offset + 4);
18121
0
  }
18122
0
    }
18123
18124
  /* ARMv4 BX veneers.  */
18125
0
  if (htab->bx_glue_size > 0)
18126
0
    {
18127
0
      osi.sec = bfd_get_linker_section (htab->bfd_of_glue_owner,
18128
0
          ARM_BX_GLUE_SECTION_NAME);
18129
18130
0
      osi.sec_shndx = _bfd_elf_section_from_bfd_section
18131
0
    (output_bfd, osi.sec->output_section);
18132
18133
0
      elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0);
18134
0
    }
18135
18136
  /* Long calls stubs.  */
18137
0
  if (htab->stub_bfd && htab->stub_bfd->sections)
18138
0
    {
18139
0
      asection* stub_sec;
18140
18141
0
      for (stub_sec = htab->stub_bfd->sections;
18142
0
     stub_sec != NULL;
18143
0
     stub_sec = stub_sec->next)
18144
0
  {
18145
    /* Ignore non-stub sections.  */
18146
0
    if (!strstr (stub_sec->name, STUB_SUFFIX))
18147
0
      continue;
18148
18149
0
    osi.sec = stub_sec;
18150
18151
0
    osi.sec_shndx = _bfd_elf_section_from_bfd_section
18152
0
      (output_bfd, osi.sec->output_section);
18153
18154
0
    bfd_hash_traverse (&htab->stub_hash_table, arm_map_one_stub, &osi);
18155
0
  }
18156
0
    }
18157
18158
  /* Finally, output mapping symbols for the PLT.  */
18159
0
  if (htab->root.splt && htab->root.splt->size > 0)
18160
0
    {
18161
0
      osi.sec = htab->root.splt;
18162
0
      osi.sec_shndx = (_bfd_elf_section_from_bfd_section
18163
0
           (output_bfd, osi.sec->output_section));
18164
18165
      /* Output mapping symbols for the plt header.  */
18166
0
      if (htab->root.target_os == is_vxworks)
18167
0
  {
18168
    /* VxWorks shared libraries have no PLT header.  */
18169
0
    if (!bfd_link_pic (info))
18170
0
      {
18171
0
        if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18172
0
    return false;
18173
0
        if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
18174
0
    return false;
18175
0
      }
18176
0
  }
18177
0
      else if (using_thumb_only (htab) && !htab->fdpic_p)
18178
0
  {
18179
0
    if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 0))
18180
0
      return false;
18181
0
    if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 12))
18182
0
      return false;
18183
0
    if (!elf32_arm_output_map_sym (&osi, ARM_MAP_THUMB, 16))
18184
0
      return false;
18185
0
  }
18186
0
      else if (!htab->fdpic_p)
18187
0
  {
18188
0
    if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, 0))
18189
0
      return false;
18190
0
#ifndef FOUR_WORD_PLT
18191
0
    if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA, 16))
18192
0
      return false;
18193
0
#endif
18194
0
  }
18195
0
    }
18196
0
  if ((htab->root.splt && htab->root.splt->size > 0)
18197
0
      || (htab->root.iplt && htab->root.iplt->size > 0))
18198
0
    {
18199
0
      elf_link_hash_traverse (&htab->root, elf32_arm_output_plt_map, &osi);
18200
0
      for (input_bfd = info->input_bfds;
18201
0
     input_bfd != NULL;
18202
0
     input_bfd = input_bfd->link.next)
18203
0
  {
18204
0
    struct arm_local_iplt_info **local_iplt;
18205
0
    unsigned int i, num_syms;
18206
18207
0
    if (!is_arm_elf (input_bfd))
18208
0
      continue;
18209
18210
0
    local_iplt = elf32_arm_local_iplt (input_bfd);
18211
0
    if (local_iplt != NULL)
18212
0
      {
18213
0
        num_syms = elf_symtab_hdr (input_bfd).sh_info;
18214
0
        if (num_syms > elf32_arm_num_entries (input_bfd))
18215
0
    {
18216
0
      _bfd_error_handler (_("\
18217
0
%pB: Number of symbols in input file has increased from %lu to %u\n"),
18218
0
              input_bfd,
18219
0
              (unsigned long) elf32_arm_num_entries (input_bfd),
18220
0
              num_syms);
18221
0
      return false;
18222
0
    }
18223
0
        for (i = 0; i < num_syms; i++)
18224
0
    if (local_iplt[i] != NULL
18225
0
        && !elf32_arm_output_plt_map_1 (&osi, true,
18226
0
                &local_iplt[i]->root,
18227
0
                &local_iplt[i]->arm))
18228
0
      return false;
18229
0
      }
18230
0
  }
18231
0
    }
18232
0
  if (htab->root.tlsdesc_plt != 0)
18233
0
    {
18234
      /* Mapping symbols for the lazy tls trampoline.  */
18235
0
      if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM,
18236
0
             htab->root.tlsdesc_plt))
18237
0
  return false;
18238
18239
0
      if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
18240
0
             htab->root.tlsdesc_plt + 24))
18241
0
  return false;
18242
0
    }
18243
0
  if (htab->tls_trampoline != 0)
18244
0
    {
18245
      /* Mapping symbols for the tls trampoline.  */
18246
0
      if (!elf32_arm_output_map_sym (&osi, ARM_MAP_ARM, htab->tls_trampoline))
18247
0
  return false;
18248
#ifdef FOUR_WORD_PLT
18249
      if (!elf32_arm_output_map_sym (&osi, ARM_MAP_DATA,
18250
             htab->tls_trampoline + 12))
18251
  return false;
18252
#endif
18253
0
    }
18254
18255
0
  return true;
18256
0
}
18257
18258
/* Filter normal symbols of CMSE entry functions of ABFD to include in
18259
   the import library.  All SYMCOUNT symbols of ABFD can be examined
18260
   from their pointers in SYMS.  Pointers of symbols to keep should be
18261
   stored continuously at the beginning of that array.
18262
18263
   Returns the number of symbols to keep.  */
18264
18265
static unsigned int
18266
elf32_arm_filter_cmse_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18267
             struct bfd_link_info *info,
18268
             asymbol **syms, long symcount)
18269
0
{
18270
0
  size_t maxnamelen;
18271
0
  char *cmse_name;
18272
0
  long src_count, dst_count = 0;
18273
0
  struct elf32_arm_link_hash_table *htab;
18274
18275
0
  htab = elf32_arm_hash_table (info);
18276
0
  if (!htab->stub_bfd || !htab->stub_bfd->sections)
18277
0
    symcount = 0;
18278
18279
0
  maxnamelen = 128;
18280
0
  cmse_name = (char *) bfd_malloc (maxnamelen);
18281
0
  BFD_ASSERT (cmse_name);
18282
18283
0
  for (src_count = 0; src_count < symcount; src_count++)
18284
0
    {
18285
0
      struct elf32_arm_link_hash_entry *cmse_hash;
18286
0
      asymbol *sym;
18287
0
      flagword flags;
18288
0
      char *name;
18289
0
      size_t namelen;
18290
18291
0
      sym = syms[src_count];
18292
0
      flags = sym->flags;
18293
0
      name = (char *) bfd_asymbol_name (sym);
18294
18295
0
      if ((flags & BSF_FUNCTION) != BSF_FUNCTION)
18296
0
  continue;
18297
0
      if (!(flags & (BSF_GLOBAL | BSF_WEAK)))
18298
0
  continue;
18299
18300
0
      namelen = strlen (name) + sizeof (CMSE_PREFIX) + 1;
18301
0
      if (namelen > maxnamelen)
18302
0
  {
18303
0
    cmse_name = (char *)
18304
0
      bfd_realloc (cmse_name, namelen);
18305
0
    maxnamelen = namelen;
18306
0
  }
18307
0
      snprintf (cmse_name, maxnamelen, "%s%s", CMSE_PREFIX, name);
18308
0
      cmse_hash = (struct elf32_arm_link_hash_entry *)
18309
0
  elf_link_hash_lookup (&(htab)->root, cmse_name, false, false, true);
18310
18311
0
      if (!cmse_hash
18312
0
    || (cmse_hash->root.root.type != bfd_link_hash_defined
18313
0
        && cmse_hash->root.root.type != bfd_link_hash_defweak)
18314
0
    || cmse_hash->root.type != STT_FUNC)
18315
0
  continue;
18316
18317
0
      syms[dst_count++] = sym;
18318
0
    }
18319
0
  free (cmse_name);
18320
18321
0
  syms[dst_count] = NULL;
18322
18323
0
  return dst_count;
18324
0
}
18325
18326
/* Filter symbols of ABFD to include in the import library.  All
18327
   SYMCOUNT symbols of ABFD can be examined from their pointers in
18328
   SYMS.  Pointers of symbols to keep should be stored continuously at
18329
   the beginning of that array.
18330
18331
   Returns the number of symbols to keep.  */
18332
18333
static unsigned int
18334
elf32_arm_filter_implib_symbols (bfd *abfd ATTRIBUTE_UNUSED,
18335
         struct bfd_link_info *info,
18336
         asymbol **syms, long symcount)
18337
0
{
18338
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (info);
18339
18340
  /* Requirement 8 of "ARM v8-M Security Extensions: Requirements on
18341
     Development Tools" (ARM-ECM-0359818) mandates Secure Gateway import
18342
     library to be a relocatable object file.  */
18343
0
  BFD_ASSERT (!(bfd_get_file_flags (info->out_implib_bfd) & EXEC_P));
18344
0
  if (globals->cmse_implib)
18345
0
    return elf32_arm_filter_cmse_symbols (abfd, info, syms, symcount);
18346
0
  else
18347
0
    return _bfd_elf_filter_global_symbols (abfd, info, syms, symcount);
18348
0
}
18349
18350
/* Allocate target specific section data.  */
18351
18352
static bool
18353
elf32_arm_new_section_hook (bfd *abfd, asection *sec)
18354
7.38k
{
18355
7.38k
  _arm_elf_section_data *sdata = bfd_zalloc (abfd, sizeof (*sdata));
18356
7.38k
  if (sdata == NULL)
18357
0
    return false;
18358
7.38k
  sec->used_by_bfd = sdata;
18359
18360
7.38k
  return _bfd_elf_new_section_hook (abfd, sec);
18361
7.38k
}
18362
18363
18364
/* Used to order a list of mapping symbols by address.  */
18365
18366
static int
18367
elf32_arm_compare_mapping (const void * a, const void * b)
18368
0
{
18369
0
  const elf32_arm_section_map *amap = (const elf32_arm_section_map *) a;
18370
0
  const elf32_arm_section_map *bmap = (const elf32_arm_section_map *) b;
18371
18372
0
  if (amap->vma > bmap->vma)
18373
0
    return 1;
18374
0
  else if (amap->vma < bmap->vma)
18375
0
    return -1;
18376
0
  else if (amap->type > bmap->type)
18377
    /* Ensure results do not depend on the host qsort for objects with
18378
       multiple mapping symbols at the same address by sorting on type
18379
       after vma.  */
18380
0
    return 1;
18381
0
  else if (amap->type < bmap->type)
18382
0
    return -1;
18383
0
  else
18384
0
    return 0;
18385
0
}
18386
18387
/* Add OFFSET to lower 31 bits of ADDR, leaving other bits unmodified.  */
18388
18389
static unsigned long
18390
offset_prel31 (unsigned long addr, bfd_vma offset)
18391
0
{
18392
0
  return (addr & ~0x7ffffffful) | ((addr + offset) & 0x7ffffffful);
18393
0
}
18394
18395
/* Copy an .ARM.exidx table entry, adding OFFSET to (applied) PREL31
18396
   relocations.  */
18397
18398
static void
18399
copy_exidx_entry (bfd *output_bfd, bfd_byte *to, bfd_byte *from, bfd_vma offset)
18400
0
{
18401
0
  unsigned long first_word = bfd_get_32 (output_bfd, from);
18402
0
  unsigned long second_word = bfd_get_32 (output_bfd, from + 4);
18403
18404
  /* High bit of first word is supposed to be zero.  */
18405
0
  if ((first_word & 0x80000000ul) == 0)
18406
0
    first_word = offset_prel31 (first_word, offset);
18407
18408
  /* If the high bit of the first word is clear, and the bit pattern is not 0x1
18409
     (EXIDX_CANTUNWIND), this is an offset to an .ARM.extab entry.  */
18410
0
  if ((second_word != 0x1) && ((second_word & 0x80000000ul) == 0))
18411
0
    second_word = offset_prel31 (second_word, offset);
18412
18413
0
  bfd_put_32 (output_bfd, first_word, to);
18414
0
  bfd_put_32 (output_bfd, second_word, to + 4);
18415
0
}
18416
18417
/* Data for make_branch_to_a8_stub().  */
18418
18419
struct a8_branch_to_stub_data
18420
{
18421
  asection *writing_section;
18422
  bfd_byte *contents;
18423
};
18424
18425
18426
/* Helper to insert branches to Cortex-A8 erratum stubs in the right
18427
   places for a particular section.  */
18428
18429
static bool
18430
make_branch_to_a8_stub (struct bfd_hash_entry *gen_entry,
18431
           void *in_arg)
18432
0
{
18433
0
  struct elf32_arm_stub_hash_entry *stub_entry;
18434
0
  struct a8_branch_to_stub_data *data;
18435
0
  bfd_byte *contents;
18436
0
  unsigned long branch_insn;
18437
0
  bfd_vma veneered_insn_loc, veneer_entry_loc;
18438
0
  bfd_signed_vma branch_offset;
18439
0
  bfd *abfd;
18440
0
  unsigned int loc;
18441
18442
0
  stub_entry = (struct elf32_arm_stub_hash_entry *) gen_entry;
18443
0
  data = (struct a8_branch_to_stub_data *) in_arg;
18444
18445
0
  if (stub_entry->target_section != data->writing_section
18446
0
      || stub_entry->stub_type < arm_stub_a8_veneer_lwm)
18447
0
    return true;
18448
18449
0
  contents = data->contents;
18450
18451
  /* We use target_section as Cortex-A8 erratum workaround stubs are only
18452
     generated when both source and target are in the same section.  */
18453
0
  veneered_insn_loc = stub_entry->target_section->output_section->vma
18454
0
          + stub_entry->target_section->output_offset
18455
0
          + stub_entry->source_value;
18456
18457
0
  veneer_entry_loc = stub_entry->stub_sec->output_section->vma
18458
0
         + stub_entry->stub_sec->output_offset
18459
0
         + stub_entry->stub_offset;
18460
18461
0
  if (stub_entry->stub_type == arm_stub_a8_veneer_blx)
18462
0
    veneered_insn_loc &= ~3u;
18463
18464
0
  branch_offset = veneer_entry_loc - veneered_insn_loc - 4;
18465
18466
0
  abfd = stub_entry->target_section->owner;
18467
0
  loc = stub_entry->source_value;
18468
18469
  /* We attempt to avoid this condition by setting stubs_always_after_branch
18470
     in elf32_arm_size_stubs if we've enabled the Cortex-A8 erratum workaround.
18471
     This check is just to be on the safe side...  */
18472
0
  if ((veneered_insn_loc & ~0xfff) == (veneer_entry_loc & ~0xfff))
18473
0
    {
18474
0
      _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub is "
18475
0
          "allocated in unsafe location"), abfd);
18476
0
      return false;
18477
0
    }
18478
18479
0
  switch (stub_entry->stub_type)
18480
0
    {
18481
0
    case arm_stub_a8_veneer_b:
18482
0
    case arm_stub_a8_veneer_b_cond:
18483
0
      branch_insn = 0xf0009000;
18484
0
      goto jump24;
18485
18486
0
    case arm_stub_a8_veneer_blx:
18487
0
      branch_insn = 0xf000e800;
18488
0
      goto jump24;
18489
18490
0
    case arm_stub_a8_veneer_bl:
18491
0
      {
18492
0
  unsigned int i1, j1, i2, j2, s;
18493
18494
0
  branch_insn = 0xf000d000;
18495
18496
0
      jump24:
18497
0
  if (branch_offset < -16777216 || branch_offset > 16777214)
18498
0
    {
18499
      /* There's not much we can do apart from complain if this
18500
         happens.  */
18501
0
      _bfd_error_handler (_("%pB: error: Cortex-A8 erratum stub out "
18502
0
          "of range (input file too large)"), abfd);
18503
0
      return false;
18504
0
    }
18505
18506
  /* i1 = not(j1 eor s), so:
18507
     not i1 = j1 eor s
18508
     j1 = (not i1) eor s.  */
18509
18510
0
  branch_insn |= (branch_offset >> 1) & 0x7ff;
18511
0
  branch_insn |= ((branch_offset >> 12) & 0x3ff) << 16;
18512
0
  i2 = (branch_offset >> 22) & 1;
18513
0
  i1 = (branch_offset >> 23) & 1;
18514
0
  s = (branch_offset >> 24) & 1;
18515
0
  j1 = (!i1) ^ s;
18516
0
  j2 = (!i2) ^ s;
18517
0
  branch_insn |= j2 << 11;
18518
0
  branch_insn |= j1 << 13;
18519
0
  branch_insn |= s << 26;
18520
0
      }
18521
0
      break;
18522
18523
0
    default:
18524
0
      BFD_FAIL ();
18525
0
      return false;
18526
0
    }
18527
18528
0
  bfd_put_16 (abfd, (branch_insn >> 16) & 0xffff, &contents[loc]);
18529
0
  bfd_put_16 (abfd, branch_insn & 0xffff, &contents[loc + 2]);
18530
18531
0
  return true;
18532
0
}
18533
18534
/* Beginning of stm32l4xx work-around.  */
18535
18536
/* Functions encoding instructions necessary for the emission of the
18537
   fix-stm32l4xx-629360.
18538
   Encoding is extracted from the
18539
   ARM (C) Architecture Reference Manual
18540
   ARMv7-A and ARMv7-R edition
18541
   ARM DDI 0406C.b (ID072512).  */
18542
18543
static inline bfd_vma
18544
create_instruction_branch_absolute (int branch_offset)
18545
0
{
18546
  /* A8.8.18 B (A8-334)
18547
     B target_address (Encoding T4).  */
18548
  /* 1111 - 0Sii - iiii - iiii - 10J1 - Jiii - iiii - iiii.  */
18549
  /* jump offset is:  S:I1:I2:imm10:imm11:0.  */
18550
  /* with : I1 = NOT (J1 EOR S) I2 = NOT (J2 EOR S).  */
18551
18552
0
  int s = ((branch_offset & 0x1000000) >> 24);
18553
0
  int j1 = s ^ !((branch_offset & 0x800000) >> 23);
18554
0
  int j2 = s ^ !((branch_offset & 0x400000) >> 22);
18555
18556
0
  if (branch_offset < -(1 << 24) || branch_offset >= (1 << 24))
18557
0
    BFD_ASSERT (0 && "Error: branch out of range.  Cannot create branch.");
18558
18559
0
  bfd_vma patched_inst = 0xf0009000
18560
0
    | s << 26 /* S.  */
18561
0
    | (((unsigned long) (branch_offset) >> 12) & 0x3ff) << 16 /* imm10.  */
18562
0
    | j1 << 13 /* J1.  */
18563
0
    | j2 << 11 /* J2.  */
18564
0
    | (((unsigned long) (branch_offset) >> 1) & 0x7ff); /* imm11.  */
18565
18566
0
  return patched_inst;
18567
0
}
18568
18569
static inline bfd_vma
18570
create_instruction_ldmia (int base_reg, int wback, int reg_mask)
18571
0
{
18572
  /* A8.8.57 LDM/LDMIA/LDMFD (A8-396)
18573
     LDMIA Rn!, {Ra, Rb, Rc, ...} (Encoding T2).  */
18574
0
  bfd_vma patched_inst = 0xe8900000
18575
0
    | (/*W=*/wback << 21)
18576
0
    | (base_reg << 16)
18577
0
    | (reg_mask & 0x0000ffff);
18578
18579
0
  return patched_inst;
18580
0
}
18581
18582
static inline bfd_vma
18583
create_instruction_ldmdb (int base_reg, int wback, int reg_mask)
18584
0
{
18585
  /* A8.8.60 LDMDB/LDMEA (A8-402)
18586
     LDMDB Rn!, {Ra, Rb, Rc, ...} (Encoding T1).  */
18587
0
  bfd_vma patched_inst = 0xe9100000
18588
0
    | (/*W=*/wback << 21)
18589
0
    | (base_reg << 16)
18590
0
    | (reg_mask & 0x0000ffff);
18591
18592
0
  return patched_inst;
18593
0
}
18594
18595
static inline bfd_vma
18596
create_instruction_mov (int target_reg, int source_reg)
18597
0
{
18598
  /* A8.8.103 MOV (register) (A8-486)
18599
     MOV Rd, Rm (Encoding T1).  */
18600
0
  bfd_vma patched_inst = 0x4600
18601
0
    | (target_reg & 0x7)
18602
0
    | ((target_reg & 0x8) >> 3) << 7
18603
0
    | (source_reg << 3);
18604
18605
0
  return patched_inst;
18606
0
}
18607
18608
static inline bfd_vma
18609
create_instruction_sub (int target_reg, int source_reg, int value)
18610
0
{
18611
  /* A8.8.221 SUB (immediate) (A8-708)
18612
     SUB Rd, Rn, #value (Encoding T3).  */
18613
0
  bfd_vma patched_inst = 0xf1a00000
18614
0
    | (target_reg << 8)
18615
0
    | (source_reg << 16)
18616
0
    | (/*S=*/0 << 20)
18617
0
    | ((value & 0x800) >> 11) << 26
18618
0
    | ((value & 0x700) >>  8) << 12
18619
0
    | (value & 0x0ff);
18620
18621
0
  return patched_inst;
18622
0
}
18623
18624
static inline bfd_vma
18625
create_instruction_vldmia (int base_reg, int is_dp, int wback, int num_words,
18626
         int first_reg)
18627
0
{
18628
  /* A8.8.332 VLDM (A8-922)
18629
     VLMD{MODE} Rn{!}, {list} (Encoding T1 or T2).  */
18630
0
  bfd_vma patched_inst = (is_dp ? 0xec900b00 : 0xec900a00)
18631
0
    | (/*W=*/wback << 21)
18632
0
    | (base_reg << 16)
18633
0
    | (num_words & 0x000000ff)
18634
0
    | (((unsigned)first_reg >> 1) & 0x0000000f) << 12
18635
0
    | (first_reg & 0x00000001) << 22;
18636
18637
0
  return patched_inst;
18638
0
}
18639
18640
static inline bfd_vma
18641
create_instruction_vldmdb (int base_reg, int is_dp, int num_words,
18642
         int first_reg)
18643
0
{
18644
  /* A8.8.332 VLDM (A8-922)
18645
     VLMD{MODE} Rn!, {} (Encoding T1 or T2).  */
18646
0
  bfd_vma patched_inst = (is_dp ? 0xed300b00 : 0xed300a00)
18647
0
    | (base_reg << 16)
18648
0
    | (num_words & 0x000000ff)
18649
0
    | (((unsigned)first_reg >>1 ) & 0x0000000f) << 12
18650
0
    | (first_reg & 0x00000001) << 22;
18651
18652
0
  return patched_inst;
18653
0
}
18654
18655
static inline bfd_vma
18656
create_instruction_udf_w (int value)
18657
0
{
18658
  /* A8.8.247 UDF (A8-758)
18659
     Undefined (Encoding T2).  */
18660
0
  bfd_vma patched_inst = 0xf7f0a000
18661
0
    | (value & 0x00000fff)
18662
0
    | (value & 0x000f0000) << 16;
18663
18664
0
  return patched_inst;
18665
0
}
18666
18667
static inline bfd_vma
18668
create_instruction_udf (int value)
18669
0
{
18670
  /* A8.8.247 UDF (A8-758)
18671
     Undefined (Encoding T1).  */
18672
0
  bfd_vma patched_inst = 0xde00
18673
0
    | (value & 0xff);
18674
18675
0
  return patched_inst;
18676
0
}
18677
18678
/* Functions writing an instruction in memory, returning the next
18679
   memory position to write to.  */
18680
18681
static inline bfd_byte *
18682
push_thumb2_insn32 (struct elf32_arm_link_hash_table * htab,
18683
        bfd * output_bfd, bfd_byte *pt, insn32 insn)
18684
0
{
18685
0
  put_thumb2_insn (htab, output_bfd, insn, pt);
18686
0
  return pt + 4;
18687
0
}
18688
18689
static inline bfd_byte *
18690
push_thumb2_insn16 (struct elf32_arm_link_hash_table * htab,
18691
        bfd * output_bfd, bfd_byte *pt, insn32 insn)
18692
0
{
18693
0
  put_thumb_insn (htab, output_bfd, insn, pt);
18694
0
  return pt + 2;
18695
0
}
18696
18697
/* Function filling up a region in memory with T1 and T2 UDFs taking
18698
   care of alignment.  */
18699
18700
static bfd_byte *
18701
stm32l4xx_fill_stub_udf (struct elf32_arm_link_hash_table * htab,
18702
       bfd *       output_bfd,
18703
       const bfd_byte * const  base_stub_contents,
18704
       bfd_byte * const  from_stub_contents,
18705
       const bfd_byte * const  end_stub_contents)
18706
0
{
18707
0
  bfd_byte *current_stub_contents = from_stub_contents;
18708
18709
  /* Fill the remaining of the stub with deterministic contents : UDF
18710
     instructions.
18711
     Check if realignment is needed on modulo 4 frontier using T1, to
18712
     further use T2.  */
18713
0
  if ((current_stub_contents < end_stub_contents)
18714
0
      && !((current_stub_contents - base_stub_contents) % 2)
18715
0
      && ((current_stub_contents - base_stub_contents) % 4))
18716
0
    current_stub_contents =
18717
0
      push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18718
0
        create_instruction_udf (0));
18719
18720
0
  for (; current_stub_contents < end_stub_contents;)
18721
0
    current_stub_contents =
18722
0
      push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18723
0
        create_instruction_udf_w (0));
18724
18725
0
  return current_stub_contents;
18726
0
}
18727
18728
/* Functions writing the stream of instructions equivalent to the
18729
   derived sequence for ldmia, ldmdb, vldm respectively.  */
18730
18731
static void
18732
stm32l4xx_create_replacing_stub_ldmia (struct elf32_arm_link_hash_table * htab,
18733
               bfd * output_bfd,
18734
               const insn32 initial_insn,
18735
               const bfd_byte *const initial_insn_addr,
18736
               bfd_byte *const base_stub_contents)
18737
0
{
18738
0
  int wback = (initial_insn & 0x00200000) >> 21;
18739
0
  int ri, rn = (initial_insn & 0x000F0000) >> 16;
18740
0
  int insn_all_registers = initial_insn & 0x0000ffff;
18741
0
  int insn_low_registers, insn_high_registers;
18742
0
  int usable_register_mask;
18743
0
  int nb_registers = elf32_arm_popcount (insn_all_registers);
18744
0
  int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18745
0
  int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
18746
0
  bfd_byte *current_stub_contents = base_stub_contents;
18747
18748
0
  BFD_ASSERT (is_thumb2_ldmia (initial_insn));
18749
18750
  /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18751
     smaller than 8 registers load sequences that do not cause the
18752
     hardware issue.  */
18753
0
  if (nb_registers <= 8)
18754
0
    {
18755
      /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}.  */
18756
0
      current_stub_contents =
18757
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18758
0
          initial_insn);
18759
18760
      /* B initial_insn_addr+4.  */
18761
0
      if (!restore_pc)
18762
0
  current_stub_contents =
18763
0
    push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18764
0
            create_instruction_branch_absolute
18765
0
            (initial_insn_addr - current_stub_contents));
18766
18767
      /* Fill the remaining of the stub with deterministic contents.  */
18768
0
      current_stub_contents =
18769
0
  stm32l4xx_fill_stub_udf (htab, output_bfd,
18770
0
         base_stub_contents, current_stub_contents,
18771
0
         base_stub_contents +
18772
0
         STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18773
18774
0
      return;
18775
0
    }
18776
18777
  /* - reg_list[13] == 0.  */
18778
0
  BFD_ASSERT ((insn_all_registers & (1 << 13))==0);
18779
18780
  /* - reg_list[14] & reg_list[15] != 1.  */
18781
0
  BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18782
18783
  /* - if (wback==1) reg_list[rn] == 0.  */
18784
0
  BFD_ASSERT (!wback || !restore_rn);
18785
18786
  /* - nb_registers > 8.  */
18787
0
  BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
18788
18789
  /* At this point, LDMxx initial insn loads between 9 and 14 registers.  */
18790
18791
  /* In the following algorithm, we split this wide LDM using 2 LDM insns:
18792
    - One with the 7 lowest registers (register mask 0x007F)
18793
      This LDM will finally contain between 2 and 7 registers
18794
    - One with the 7 highest registers (register mask 0xDF80)
18795
      This ldm will finally contain between 2 and 7 registers.  */
18796
0
  insn_low_registers = insn_all_registers & 0x007F;
18797
0
  insn_high_registers = insn_all_registers & 0xDF80;
18798
18799
  /* A spare register may be needed during this veneer to temporarily
18800
     handle the base register.  This register will be restored with the
18801
     last LDM operation.
18802
     The usable register may be any general purpose register (that
18803
     excludes PC, SP, LR : register mask is 0x1FFF).  */
18804
0
  usable_register_mask = 0x1FFF;
18805
18806
  /* Generate the stub function.  */
18807
0
  if (wback)
18808
0
    {
18809
      /* LDMIA Rn!, {R-low-register-list} : (Encoding T2).  */
18810
0
      current_stub_contents =
18811
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18812
0
          create_instruction_ldmia
18813
0
          (rn, /*wback=*/1, insn_low_registers));
18814
18815
      /* LDMIA Rn!, {R-high-register-list} : (Encoding T2).  */
18816
0
      current_stub_contents =
18817
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18818
0
          create_instruction_ldmia
18819
0
          (rn, /*wback=*/1, insn_high_registers));
18820
0
      if (!restore_pc)
18821
0
  {
18822
    /* B initial_insn_addr+4.  */
18823
0
    current_stub_contents =
18824
0
      push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18825
0
        create_instruction_branch_absolute
18826
0
        (initial_insn_addr - current_stub_contents));
18827
0
       }
18828
0
    }
18829
0
  else /* if (!wback).  */
18830
0
    {
18831
0
      ri = rn;
18832
18833
      /* If Rn is not part of the high-register-list, move it there.  */
18834
0
      if (!(insn_high_registers & (1 << rn)))
18835
0
  {
18836
    /* Choose a Ri in the high-register-list that will be restored.  */
18837
0
    ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
18838
18839
    /* MOV Ri, Rn.  */
18840
0
    current_stub_contents =
18841
0
      push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18842
0
        create_instruction_mov (ri, rn));
18843
0
  }
18844
18845
      /* LDMIA Ri!, {R-low-register-list} : (Encoding T2).  */
18846
0
      current_stub_contents =
18847
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18848
0
          create_instruction_ldmia
18849
0
          (ri, /*wback=*/1, insn_low_registers));
18850
18851
      /* LDMIA Ri, {R-high-register-list} : (Encoding T2).  */
18852
0
      current_stub_contents =
18853
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18854
0
          create_instruction_ldmia
18855
0
          (ri, /*wback=*/0, insn_high_registers));
18856
18857
0
      if (!restore_pc)
18858
0
  {
18859
    /* B initial_insn_addr+4.  */
18860
0
    current_stub_contents =
18861
0
      push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18862
0
        create_instruction_branch_absolute
18863
0
        (initial_insn_addr - current_stub_contents));
18864
0
  }
18865
0
    }
18866
18867
  /* Fill the remaining of the stub with deterministic contents.  */
18868
0
  current_stub_contents =
18869
0
    stm32l4xx_fill_stub_udf (htab, output_bfd,
18870
0
           base_stub_contents, current_stub_contents,
18871
0
           base_stub_contents +
18872
0
           STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18873
0
}
18874
18875
static void
18876
stm32l4xx_create_replacing_stub_ldmdb (struct elf32_arm_link_hash_table * htab,
18877
               bfd * output_bfd,
18878
               const insn32 initial_insn,
18879
               const bfd_byte *const initial_insn_addr,
18880
               bfd_byte *const base_stub_contents)
18881
0
{
18882
0
  int wback = (initial_insn & 0x00200000) >> 21;
18883
0
  int ri, rn = (initial_insn & 0x000f0000) >> 16;
18884
0
  int insn_all_registers = initial_insn & 0x0000ffff;
18885
0
  int insn_low_registers, insn_high_registers;
18886
0
  int usable_register_mask;
18887
0
  int restore_pc = (insn_all_registers & (1 << 15)) ? 1 : 0;
18888
0
  int restore_rn = (insn_all_registers & (1 << rn)) ? 1 : 0;
18889
0
  int nb_registers = elf32_arm_popcount (insn_all_registers);
18890
0
  bfd_byte *current_stub_contents = base_stub_contents;
18891
18892
0
  BFD_ASSERT (is_thumb2_ldmdb (initial_insn));
18893
18894
  /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
18895
     smaller than 8 registers load sequences that do not cause the
18896
     hardware issue.  */
18897
0
  if (nb_registers <= 8)
18898
0
    {
18899
      /* UNTOUCHED : LDMIA Rn{!}, {R-all-register-list}.  */
18900
0
      current_stub_contents =
18901
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18902
0
          initial_insn);
18903
18904
      /* B initial_insn_addr+4.  */
18905
0
      current_stub_contents =
18906
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18907
0
          create_instruction_branch_absolute
18908
0
          (initial_insn_addr - current_stub_contents));
18909
18910
      /* Fill the remaining of the stub with deterministic contents.  */
18911
0
      current_stub_contents =
18912
0
  stm32l4xx_fill_stub_udf (htab, output_bfd,
18913
0
         base_stub_contents, current_stub_contents,
18914
0
         base_stub_contents +
18915
0
         STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
18916
18917
0
      return;
18918
0
    }
18919
18920
  /* - reg_list[13] == 0.  */
18921
0
  BFD_ASSERT ((insn_all_registers & (1 << 13)) == 0);
18922
18923
  /* - reg_list[14] & reg_list[15] != 1.  */
18924
0
  BFD_ASSERT ((insn_all_registers & 0xC000) != 0xC000);
18925
18926
  /* - if (wback==1) reg_list[rn] == 0.  */
18927
0
  BFD_ASSERT (!wback || !restore_rn);
18928
18929
  /* - nb_registers > 8.  */
18930
0
  BFD_ASSERT (elf32_arm_popcount (insn_all_registers) > 8);
18931
18932
  /* At this point, LDMxx initial insn loads between 9 and 14 registers.  */
18933
18934
  /* In the following algorithm, we split this wide LDM using 2 LDM insn:
18935
    - One with the 7 lowest registers (register mask 0x007F)
18936
      This LDM will finally contain between 2 and 7 registers
18937
    - One with the 7 highest registers (register mask 0xDF80)
18938
      This ldm will finally contain between 2 and 7 registers.  */
18939
0
  insn_low_registers = insn_all_registers & 0x007F;
18940
0
  insn_high_registers = insn_all_registers & 0xDF80;
18941
18942
  /* A spare register may be needed during this veneer to temporarily
18943
     handle the base register.  This register will be restored with
18944
     the last LDM operation.
18945
     The usable register may be any general purpose register (that excludes
18946
     PC, SP, LR : register mask is 0x1FFF).  */
18947
0
  usable_register_mask = 0x1FFF;
18948
18949
  /* Generate the stub function.  */
18950
0
  if (!wback && !restore_pc && !restore_rn)
18951
0
    {
18952
      /* Choose a Ri in the low-register-list that will be restored.  */
18953
0
      ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
18954
18955
      /* MOV Ri, Rn.  */
18956
0
      current_stub_contents =
18957
0
  push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
18958
0
          create_instruction_mov (ri, rn));
18959
18960
      /* LDMDB Ri!, {R-high-register-list}.  */
18961
0
      current_stub_contents =
18962
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18963
0
          create_instruction_ldmdb
18964
0
          (ri, /*wback=*/1, insn_high_registers));
18965
18966
      /* LDMDB Ri, {R-low-register-list}.  */
18967
0
      current_stub_contents =
18968
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18969
0
          create_instruction_ldmdb
18970
0
          (ri, /*wback=*/0, insn_low_registers));
18971
18972
      /* B initial_insn_addr+4.  */
18973
0
      current_stub_contents =
18974
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18975
0
          create_instruction_branch_absolute
18976
0
          (initial_insn_addr - current_stub_contents));
18977
0
    }
18978
0
  else if (wback && !restore_pc && !restore_rn)
18979
0
    {
18980
      /* LDMDB Rn!, {R-high-register-list}.  */
18981
0
      current_stub_contents =
18982
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18983
0
          create_instruction_ldmdb
18984
0
          (rn, /*wback=*/1, insn_high_registers));
18985
18986
      /* LDMDB Rn!, {R-low-register-list}.  */
18987
0
      current_stub_contents =
18988
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18989
0
          create_instruction_ldmdb
18990
0
          (rn, /*wback=*/1, insn_low_registers));
18991
18992
      /* B initial_insn_addr+4.  */
18993
0
      current_stub_contents =
18994
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
18995
0
          create_instruction_branch_absolute
18996
0
          (initial_insn_addr - current_stub_contents));
18997
0
    }
18998
0
  else if (!wback && restore_pc && !restore_rn)
18999
0
    {
19000
      /* Choose a Ri in the high-register-list that will be restored.  */
19001
0
      ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19002
19003
      /* SUB Ri, Rn, #(4*nb_registers).  */
19004
0
      current_stub_contents =
19005
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19006
0
          create_instruction_sub (ri, rn, (4 * nb_registers)));
19007
19008
      /* LDMIA Ri!, {R-low-register-list}.  */
19009
0
      current_stub_contents =
19010
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19011
0
          create_instruction_ldmia
19012
0
          (ri, /*wback=*/1, insn_low_registers));
19013
19014
      /* LDMIA Ri, {R-high-register-list}.  */
19015
0
      current_stub_contents =
19016
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19017
0
          create_instruction_ldmia
19018
0
          (ri, /*wback=*/0, insn_high_registers));
19019
0
    }
19020
0
  else if (wback && restore_pc && !restore_rn)
19021
0
    {
19022
      /* Choose a Ri in the high-register-list that will be restored.  */
19023
0
      ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19024
19025
      /* SUB Rn, Rn, #(4*nb_registers)  */
19026
0
      current_stub_contents =
19027
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19028
0
          create_instruction_sub (rn, rn, (4 * nb_registers)));
19029
19030
      /* MOV Ri, Rn.  */
19031
0
      current_stub_contents =
19032
0
  push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
19033
0
          create_instruction_mov (ri, rn));
19034
19035
      /* LDMIA Ri!, {R-low-register-list}.  */
19036
0
      current_stub_contents =
19037
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19038
0
          create_instruction_ldmia
19039
0
          (ri, /*wback=*/1, insn_low_registers));
19040
19041
      /* LDMIA Ri, {R-high-register-list}.  */
19042
0
      current_stub_contents =
19043
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19044
0
          create_instruction_ldmia
19045
0
          (ri, /*wback=*/0, insn_high_registers));
19046
0
    }
19047
0
  else if (!wback && !restore_pc && restore_rn)
19048
0
    {
19049
0
      ri = rn;
19050
0
      if (!(insn_low_registers & (1 << rn)))
19051
0
  {
19052
    /* Choose a Ri in the low-register-list that will be restored.  */
19053
0
    ri = ctz (insn_low_registers & usable_register_mask & ~(1 << rn));
19054
19055
    /* MOV Ri, Rn.  */
19056
0
    current_stub_contents =
19057
0
      push_thumb2_insn16 (htab, output_bfd, current_stub_contents,
19058
0
        create_instruction_mov (ri, rn));
19059
0
  }
19060
19061
      /* LDMDB Ri!, {R-high-register-list}.  */
19062
0
      current_stub_contents =
19063
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19064
0
          create_instruction_ldmdb
19065
0
          (ri, /*wback=*/1, insn_high_registers));
19066
19067
      /* LDMDB Ri, {R-low-register-list}.  */
19068
0
      current_stub_contents =
19069
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19070
0
          create_instruction_ldmdb
19071
0
          (ri, /*wback=*/0, insn_low_registers));
19072
19073
      /* B initial_insn_addr+4.  */
19074
0
      current_stub_contents =
19075
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19076
0
          create_instruction_branch_absolute
19077
0
          (initial_insn_addr - current_stub_contents));
19078
0
    }
19079
0
  else if (!wback && restore_pc && restore_rn)
19080
0
    {
19081
0
      ri = rn;
19082
0
      if (!(insn_high_registers & (1 << rn)))
19083
0
  {
19084
    /* Choose a Ri in the high-register-list that will be restored.  */
19085
0
    ri = ctz (insn_high_registers & usable_register_mask & ~(1 << rn));
19086
0
  }
19087
19088
      /* SUB Ri, Rn, #(4*nb_registers).  */
19089
0
      current_stub_contents =
19090
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19091
0
          create_instruction_sub (ri, rn, (4 * nb_registers)));
19092
19093
      /* LDMIA Ri!, {R-low-register-list}.  */
19094
0
      current_stub_contents =
19095
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19096
0
          create_instruction_ldmia
19097
0
          (ri, /*wback=*/1, insn_low_registers));
19098
19099
      /* LDMIA Ri, {R-high-register-list}.  */
19100
0
      current_stub_contents =
19101
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19102
0
          create_instruction_ldmia
19103
0
          (ri, /*wback=*/0, insn_high_registers));
19104
0
    }
19105
0
  else if (wback && restore_rn)
19106
0
    {
19107
      /* The assembler should not have accepted to encode this.  */
19108
0
      BFD_ASSERT (0 && "Cannot patch an instruction that has an "
19109
0
  "undefined behavior.\n");
19110
0
    }
19111
19112
  /* Fill the remaining of the stub with deterministic contents.  */
19113
0
  current_stub_contents =
19114
0
    stm32l4xx_fill_stub_udf (htab, output_bfd,
19115
0
           base_stub_contents, current_stub_contents,
19116
0
           base_stub_contents +
19117
0
           STM32L4XX_ERRATUM_LDM_VENEER_SIZE);
19118
19119
0
}
19120
19121
static void
19122
stm32l4xx_create_replacing_stub_vldm (struct elf32_arm_link_hash_table * htab,
19123
              bfd * output_bfd,
19124
              const insn32 initial_insn,
19125
              const bfd_byte *const initial_insn_addr,
19126
              bfd_byte *const base_stub_contents)
19127
0
{
19128
0
  int num_words = initial_insn & 0xff;
19129
0
  bfd_byte *current_stub_contents = base_stub_contents;
19130
19131
0
  BFD_ASSERT (is_thumb2_vldm (initial_insn));
19132
19133
  /* In BFD_ARM_STM32L4XX_FIX_ALL mode we may have to deal with
19134
     smaller than 8 words load sequences that do not cause the
19135
     hardware issue.  */
19136
0
  if (num_words <= 8)
19137
0
    {
19138
      /* Untouched instruction.  */
19139
0
      current_stub_contents =
19140
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19141
0
          initial_insn);
19142
19143
      /* B initial_insn_addr+4.  */
19144
0
      current_stub_contents =
19145
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19146
0
          create_instruction_branch_absolute
19147
0
          (initial_insn_addr - current_stub_contents));
19148
0
    }
19149
0
  else
19150
0
    {
19151
0
      bool is_dp = /* DP encoding.  */
19152
0
  (initial_insn & 0xfe100f00) == 0xec100b00;
19153
0
      bool is_ia_nobang = /* (IA without !).  */
19154
0
  (((initial_insn << 7) >> 28) & 0xd) == 0x4;
19155
0
      bool is_ia_bang = /* (IA with !) - includes VPOP.  */
19156
0
  (((initial_insn << 7) >> 28) & 0xd) == 0x5;
19157
0
      bool is_db_bang = /* (DB with !).  */
19158
0
  (((initial_insn << 7) >> 28) & 0xd) == 0x9;
19159
0
      int base_reg = ((unsigned int) initial_insn << 12) >> 28;
19160
      /* d = UInt (Vd:D);.  */
19161
0
      int first_reg = ((((unsigned int) initial_insn << 16) >> 28) << 1)
19162
0
  | (((unsigned int)initial_insn << 9) >> 31);
19163
19164
      /* Compute the number of 8-words chunks needed to split.  */
19165
0
      int chunks = (num_words % 8) ? (num_words / 8 + 1) : (num_words / 8);
19166
0
      int chunk;
19167
19168
      /* The test coverage has been done assuming the following
19169
   hypothesis that exactly one of the previous is_ predicates is
19170
   true.  */
19171
0
      BFD_ASSERT (    (is_ia_nobang ^ is_ia_bang ^ is_db_bang)
19172
0
      && !(is_ia_nobang & is_ia_bang & is_db_bang));
19173
19174
      /* We treat the cutting of the words in one pass for all
19175
   cases, then we emit the adjustments:
19176
19177
   vldm rx, {...}
19178
   -> vldm rx!, {8_words_or_less} for each needed 8_word
19179
   -> sub rx, rx, #size (list)
19180
19181
   vldm rx!, {...}
19182
   -> vldm rx!, {8_words_or_less} for each needed 8_word
19183
   This also handles vpop instruction (when rx is sp)
19184
19185
   vldmd rx!, {...}
19186
   -> vldmb rx!, {8_words_or_less} for each needed 8_word.  */
19187
0
      for (chunk = 0; chunk < chunks; ++chunk)
19188
0
  {
19189
0
    bfd_vma new_insn = 0;
19190
19191
0
    if (is_ia_nobang || is_ia_bang)
19192
0
      {
19193
0
        new_insn = create_instruction_vldmia
19194
0
    (base_reg,
19195
0
     is_dp,
19196
0
     /*wback= .  */1,
19197
0
     chunks - (chunk + 1) ?
19198
0
     8 : num_words - chunk * 8,
19199
0
     first_reg + chunk * 8);
19200
0
      }
19201
0
    else if (is_db_bang)
19202
0
      {
19203
0
        new_insn = create_instruction_vldmdb
19204
0
    (base_reg,
19205
0
     is_dp,
19206
0
     chunks - (chunk + 1) ?
19207
0
     8 : num_words - chunk * 8,
19208
0
     first_reg + chunk * 8);
19209
0
      }
19210
19211
0
    if (new_insn)
19212
0
      current_stub_contents =
19213
0
        push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19214
0
          new_insn);
19215
0
  }
19216
19217
      /* Only this case requires the base register compensation
19218
   subtract.  */
19219
0
      if (is_ia_nobang)
19220
0
  {
19221
0
    current_stub_contents =
19222
0
      push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19223
0
        create_instruction_sub
19224
0
        (base_reg, base_reg, 4*num_words));
19225
0
  }
19226
19227
      /* B initial_insn_addr+4.  */
19228
0
      current_stub_contents =
19229
0
  push_thumb2_insn32 (htab, output_bfd, current_stub_contents,
19230
0
          create_instruction_branch_absolute
19231
0
          (initial_insn_addr - current_stub_contents));
19232
0
    }
19233
19234
  /* Fill the remaining of the stub with deterministic contents.  */
19235
0
  current_stub_contents =
19236
0
    stm32l4xx_fill_stub_udf (htab, output_bfd,
19237
0
           base_stub_contents, current_stub_contents,
19238
0
           base_stub_contents +
19239
0
           STM32L4XX_ERRATUM_VLDM_VENEER_SIZE);
19240
0
}
19241
19242
static void
19243
stm32l4xx_create_replacing_stub (struct elf32_arm_link_hash_table * htab,
19244
         bfd * output_bfd,
19245
         const insn32 wrong_insn,
19246
         const bfd_byte *const wrong_insn_addr,
19247
         bfd_byte *const stub_contents)
19248
0
{
19249
0
  if (is_thumb2_ldmia (wrong_insn))
19250
0
    stm32l4xx_create_replacing_stub_ldmia (htab, output_bfd,
19251
0
             wrong_insn, wrong_insn_addr,
19252
0
             stub_contents);
19253
0
  else if (is_thumb2_ldmdb (wrong_insn))
19254
0
    stm32l4xx_create_replacing_stub_ldmdb (htab, output_bfd,
19255
0
             wrong_insn, wrong_insn_addr,
19256
0
             stub_contents);
19257
0
  else if (is_thumb2_vldm (wrong_insn))
19258
0
    stm32l4xx_create_replacing_stub_vldm (htab, output_bfd,
19259
0
            wrong_insn, wrong_insn_addr,
19260
0
            stub_contents);
19261
0
}
19262
19263
/* End of stm32l4xx work-around.  */
19264
19265
19266
/* Do code byteswapping.  Return FALSE afterwards so that the section is
19267
   written out as normal.  */
19268
19269
static bool
19270
elf32_arm_write_section (bfd *output_bfd,
19271
       struct bfd_link_info *link_info,
19272
       asection *sec,
19273
       bfd_byte *contents)
19274
0
{
19275
0
  unsigned int mapcount, errcount;
19276
0
  _arm_elf_section_data *arm_data;
19277
0
  struct elf32_arm_link_hash_table *globals = elf32_arm_hash_table (link_info);
19278
0
  elf32_arm_section_map *map;
19279
0
  elf32_vfp11_erratum_list *errnode;
19280
0
  elf32_stm32l4xx_erratum_list *stm32l4xx_errnode;
19281
0
  bfd_vma ptr;
19282
0
  bfd_vma end;
19283
0
  bfd_vma offset = sec->output_section->vma + sec->output_offset;
19284
0
  bfd_byte tmp;
19285
0
  unsigned int i;
19286
19287
0
  if (globals == NULL)
19288
0
    return false;
19289
19290
  /* If this section has not been allocated an _arm_elf_section_data
19291
     structure then we cannot record anything.  */
19292
0
  arm_data = get_arm_elf_section_data (sec);
19293
0
  if (arm_data == NULL)
19294
0
    return false;
19295
19296
0
  mapcount = arm_data->mapcount;
19297
0
  map = arm_data->map;
19298
0
  errcount = arm_data->erratumcount;
19299
19300
0
  if (errcount != 0)
19301
0
    {
19302
0
      unsigned int endianflip = bfd_big_endian (output_bfd) ? 3 : 0;
19303
19304
0
      for (errnode = arm_data->erratumlist; errnode != 0;
19305
0
     errnode = errnode->next)
19306
0
  {
19307
0
    bfd_vma target = errnode->vma - offset;
19308
19309
0
    switch (errnode->type)
19310
0
      {
19311
0
      case VFP11_ERRATUM_BRANCH_TO_ARM_VENEER:
19312
0
        {
19313
0
    bfd_vma branch_to_veneer;
19314
    /* Original condition code of instruction, plus bit mask for
19315
       ARM B instruction.  */
19316
0
    unsigned int insn = (errnode->u.b.vfp_insn & 0xf0000000)
19317
0
          | 0x0a000000;
19318
19319
    /* The instruction is before the label.  */
19320
0
    target -= 4;
19321
19322
    /* Above offset included in -4 below.  */
19323
0
    branch_to_veneer = errnode->u.b.veneer->vma
19324
0
           - errnode->vma - 4;
19325
19326
0
    if ((signed) branch_to_veneer < -(1 << 25)
19327
0
        || (signed) branch_to_veneer >= (1 << 25))
19328
0
      _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
19329
0
          "range"), output_bfd);
19330
19331
0
    insn |= (branch_to_veneer >> 2) & 0xffffff;
19332
0
    contents[endianflip ^ target] = insn & 0xff;
19333
0
    contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19334
0
    contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19335
0
    contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19336
0
        }
19337
0
        break;
19338
19339
0
      case VFP11_ERRATUM_ARM_VENEER:
19340
0
        {
19341
0
    bfd_vma branch_from_veneer;
19342
0
    unsigned int insn;
19343
19344
    /* Take size of veneer into account.  */
19345
0
    branch_from_veneer = errnode->u.v.branch->vma
19346
0
             - errnode->vma - 12;
19347
19348
0
    if ((signed) branch_from_veneer < -(1 << 25)
19349
0
        || (signed) branch_from_veneer >= (1 << 25))
19350
0
      _bfd_error_handler (_("%pB: error: VFP11 veneer out of "
19351
0
          "range"), output_bfd);
19352
19353
    /* Original instruction.  */
19354
0
    insn = errnode->u.v.branch->u.b.vfp_insn;
19355
0
    contents[endianflip ^ target] = insn & 0xff;
19356
0
    contents[endianflip ^ (target + 1)] = (insn >> 8) & 0xff;
19357
0
    contents[endianflip ^ (target + 2)] = (insn >> 16) & 0xff;
19358
0
    contents[endianflip ^ (target + 3)] = (insn >> 24) & 0xff;
19359
19360
    /* Branch back to insn after original insn.  */
19361
0
    insn = 0xea000000 | ((branch_from_veneer >> 2) & 0xffffff);
19362
0
    contents[endianflip ^ (target + 4)] = insn & 0xff;
19363
0
    contents[endianflip ^ (target + 5)] = (insn >> 8) & 0xff;
19364
0
    contents[endianflip ^ (target + 6)] = (insn >> 16) & 0xff;
19365
0
    contents[endianflip ^ (target + 7)] = (insn >> 24) & 0xff;
19366
0
        }
19367
0
        break;
19368
19369
0
      default:
19370
0
        abort ();
19371
0
      }
19372
0
  }
19373
0
    }
19374
19375
0
  if (arm_data->stm32l4xx_erratumcount != 0)
19376
0
    {
19377
0
      for (stm32l4xx_errnode = arm_data->stm32l4xx_erratumlist;
19378
0
     stm32l4xx_errnode != 0;
19379
0
     stm32l4xx_errnode = stm32l4xx_errnode->next)
19380
0
  {
19381
0
    bfd_vma target = stm32l4xx_errnode->vma - offset;
19382
19383
0
    switch (stm32l4xx_errnode->type)
19384
0
      {
19385
0
      case STM32L4XX_ERRATUM_BRANCH_TO_VENEER:
19386
0
        {
19387
0
    unsigned int insn;
19388
0
    bfd_vma branch_to_veneer =
19389
0
      stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma;
19390
19391
0
    if ((signed) branch_to_veneer < -(1 << 24)
19392
0
        || (signed) branch_to_veneer >= (1 << 24))
19393
0
      {
19394
0
        bfd_vma out_of_range =
19395
0
          ((signed) branch_to_veneer < -(1 << 24)) ?
19396
0
          - branch_to_veneer - (1 << 24) :
19397
0
          ((signed) branch_to_veneer >= (1 << 24)) ?
19398
0
          branch_to_veneer - (1 << 24) : 0;
19399
19400
0
        _bfd_error_handler
19401
0
          (_("%pB(%#" PRIx64 "): error: "
19402
0
       "cannot create STM32L4XX veneer; "
19403
0
       "jump out of range by %" PRId64 " bytes; "
19404
0
       "cannot encode branch instruction"),
19405
0
           output_bfd,
19406
0
           (uint64_t) (stm32l4xx_errnode->vma - 4),
19407
0
           (int64_t) out_of_range);
19408
0
        continue;
19409
0
      }
19410
19411
0
    insn = create_instruction_branch_absolute
19412
0
      (stm32l4xx_errnode->u.b.veneer->vma - stm32l4xx_errnode->vma);
19413
19414
    /* The instruction is before the label.  */
19415
0
    target -= 4;
19416
19417
0
    put_thumb2_insn (globals, output_bfd,
19418
0
         (bfd_vma) insn, contents + target);
19419
0
        }
19420
0
        break;
19421
19422
0
      case STM32L4XX_ERRATUM_VENEER:
19423
0
        {
19424
0
    bfd_byte * veneer;
19425
0
    bfd_byte * veneer_r;
19426
0
    unsigned int insn;
19427
19428
0
    veneer = contents + target;
19429
0
    veneer_r = veneer
19430
0
      + stm32l4xx_errnode->u.b.veneer->vma
19431
0
      - stm32l4xx_errnode->vma - 4;
19432
19433
0
    if ((signed) (veneer_r - veneer -
19434
0
            STM32L4XX_ERRATUM_VLDM_VENEER_SIZE >
19435
0
            STM32L4XX_ERRATUM_LDM_VENEER_SIZE ?
19436
0
            STM32L4XX_ERRATUM_VLDM_VENEER_SIZE :
19437
0
            STM32L4XX_ERRATUM_LDM_VENEER_SIZE) < -(1 << 24)
19438
0
        || (signed) (veneer_r - veneer) >= (1 << 24))
19439
0
      {
19440
0
        _bfd_error_handler (_("%pB: error: cannot create STM32L4XX "
19441
0
            "veneer"), output_bfd);
19442
0
         continue;
19443
0
      }
19444
19445
    /* Original instruction.  */
19446
0
    insn = stm32l4xx_errnode->u.v.branch->u.b.insn;
19447
19448
0
    stm32l4xx_create_replacing_stub
19449
0
      (globals, output_bfd, insn, (void*)veneer_r, (void*)veneer);
19450
0
        }
19451
0
        break;
19452
19453
0
      default:
19454
0
        abort ();
19455
0
      }
19456
0
  }
19457
0
    }
19458
19459
0
  if (arm_data->elf.this_hdr.sh_type == SHT_ARM_EXIDX)
19460
0
    {
19461
0
      arm_unwind_table_edit *edit_node
19462
0
  = arm_data->u.exidx.unwind_edit_list;
19463
      /* Now, sec->size is the size of the section we will write.  The original
19464
   size (before we merged duplicate entries and inserted EXIDX_CANTUNWIND
19465
   markers) was sec->rawsize.  (This isn't the case if we perform no
19466
   edits, then rawsize will be zero and we should use size).  */
19467
0
      bfd_byte *edited_contents = (bfd_byte *) bfd_malloc (sec->size);
19468
0
      unsigned int input_size = sec->rawsize ? sec->rawsize : sec->size;
19469
0
      unsigned int in_index, out_index;
19470
0
      bfd_vma add_to_offsets = 0;
19471
19472
0
      if (edited_contents == NULL)
19473
0
  return false;
19474
0
      for (in_index = 0, out_index = 0; in_index * 8 < input_size || edit_node;)
19475
0
  {
19476
0
    if (edit_node)
19477
0
      {
19478
0
        unsigned int edit_index = edit_node->index;
19479
19480
0
        if (in_index < edit_index && in_index * 8 < input_size)
19481
0
    {
19482
0
      copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19483
0
            contents + in_index * 8, add_to_offsets);
19484
0
      out_index++;
19485
0
      in_index++;
19486
0
    }
19487
0
        else if (in_index == edit_index
19488
0
           || (in_index * 8 >= input_size
19489
0
         && edit_index == UINT_MAX))
19490
0
    {
19491
0
      switch (edit_node->type)
19492
0
        {
19493
0
        case DELETE_EXIDX_ENTRY:
19494
0
          in_index++;
19495
0
          add_to_offsets += 8;
19496
0
          break;
19497
19498
0
        case INSERT_EXIDX_CANTUNWIND_AT_END:
19499
0
          {
19500
0
      asection *text_sec = edit_node->linked_section;
19501
0
      bfd_vma text_offset = text_sec->output_section->vma
19502
0
                + text_sec->output_offset
19503
0
                + text_sec->size;
19504
0
      bfd_vma exidx_offset = offset + out_index * 8;
19505
0
      unsigned long prel31_offset;
19506
19507
      /* Note: this is meant to be equivalent to an
19508
         R_ARM_PREL31 relocation.  These synthetic
19509
         EXIDX_CANTUNWIND markers are not relocated by the
19510
         usual BFD method.  */
19511
0
      prel31_offset = (text_offset - exidx_offset)
19512
0
          & 0x7ffffffful;
19513
0
      if (bfd_link_relocatable (link_info))
19514
0
        {
19515
          /* Here relocation for new EXIDX_CANTUNWIND is
19516
             created, so there is no need to
19517
             adjust offset by hand.  */
19518
0
          prel31_offset = text_sec->output_offset
19519
0
              + text_sec->size;
19520
0
        }
19521
19522
      /* First address we can't unwind.  */
19523
0
      bfd_put_32 (output_bfd, prel31_offset,
19524
0
            &edited_contents[out_index * 8]);
19525
19526
      /* Code for EXIDX_CANTUNWIND.  */
19527
0
      bfd_put_32 (output_bfd, 0x1,
19528
0
            &edited_contents[out_index * 8 + 4]);
19529
19530
0
      out_index++;
19531
0
      add_to_offsets -= 8;
19532
0
          }
19533
0
          break;
19534
0
        }
19535
19536
0
      edit_node = edit_node->next;
19537
0
    }
19538
0
      }
19539
0
    else
19540
0
      {
19541
        /* No more edits, copy remaining entries verbatim.  */
19542
0
        copy_exidx_entry (output_bfd, edited_contents + out_index * 8,
19543
0
        contents + in_index * 8, add_to_offsets);
19544
0
        out_index++;
19545
0
        in_index++;
19546
0
      }
19547
0
  }
19548
19549
0
      if (!(sec->flags & SEC_EXCLUDE) && !(sec->flags & SEC_NEVER_LOAD))
19550
0
  bfd_set_section_contents (output_bfd, sec->output_section,
19551
0
          edited_contents,
19552
0
          (file_ptr) sec->output_offset, sec->size);
19553
19554
0
      return true;
19555
0
    }
19556
19557
  /* Fix code to point to Cortex-A8 erratum stubs.  */
19558
0
  if (globals->fix_cortex_a8)
19559
0
    {
19560
0
      struct a8_branch_to_stub_data data;
19561
19562
0
      data.writing_section = sec;
19563
0
      data.contents = contents;
19564
19565
0
      bfd_hash_traverse (& globals->stub_hash_table, make_branch_to_a8_stub,
19566
0
       & data);
19567
0
    }
19568
19569
0
  if (mapcount == 0)
19570
0
    return false;
19571
19572
0
  if (globals->byteswap_code)
19573
0
    {
19574
0
      qsort (map, mapcount, sizeof (* map), elf32_arm_compare_mapping);
19575
19576
0
      ptr = map[0].vma;
19577
0
      for (i = 0; i < mapcount; i++)
19578
0
  {
19579
0
    if (i == mapcount - 1)
19580
0
      end = sec->size;
19581
0
    else
19582
0
      end = map[i + 1].vma;
19583
19584
0
    switch (map[i].type)
19585
0
      {
19586
0
      case 'a':
19587
        /* Byte swap code words.  */
19588
0
        while (ptr + 3 < end)
19589
0
    {
19590
0
      tmp = contents[ptr];
19591
0
      contents[ptr] = contents[ptr + 3];
19592
0
      contents[ptr + 3] = tmp;
19593
0
      tmp = contents[ptr + 1];
19594
0
      contents[ptr + 1] = contents[ptr + 2];
19595
0
      contents[ptr + 2] = tmp;
19596
0
      ptr += 4;
19597
0
    }
19598
0
        break;
19599
19600
0
      case 't':
19601
        /* Byte swap code halfwords.  */
19602
0
        while (ptr + 1 < end)
19603
0
    {
19604
0
      tmp = contents[ptr];
19605
0
      contents[ptr] = contents[ptr + 1];
19606
0
      contents[ptr + 1] = tmp;
19607
0
      ptr += 2;
19608
0
    }
19609
0
        break;
19610
19611
0
      case 'd':
19612
        /* Leave data alone.  */
19613
0
        break;
19614
0
      }
19615
0
    ptr = end;
19616
0
  }
19617
0
    }
19618
19619
0
  free (map);
19620
0
  arm_data->mapcount = -1;
19621
0
  arm_data->mapsize = 0;
19622
0
  arm_data->map = NULL;
19623
19624
0
  return false;
19625
0
}
19626
19627
/* Mangle thumb function symbols as we read them in.  */
19628
19629
static bool
19630
elf32_arm_swap_symbol_in (bfd * abfd,
19631
        const void *psrc,
19632
        const void *pshn,
19633
        Elf_Internal_Sym *dst)
19634
0
{
19635
0
  if (!bfd_elf32_swap_symbol_in (abfd, psrc, pshn, dst))
19636
0
    return false;
19637
0
  dst->st_target_internal = ST_BRANCH_TO_ARM;
19638
19639
  /* New EABI objects mark thumb function symbols by setting the low bit of
19640
     the address.  */
19641
0
  if (ELF_ST_TYPE (dst->st_info) == STT_FUNC
19642
0
      || ELF_ST_TYPE (dst->st_info) == STT_GNU_IFUNC)
19643
0
    {
19644
0
      if (dst->st_value & 1)
19645
0
  {
19646
0
    dst->st_value &= ~(bfd_vma) 1;
19647
0
    ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal,
19648
0
           ST_BRANCH_TO_THUMB);
19649
0
  }
19650
0
      else
19651
0
  ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_ARM);
19652
0
    }
19653
0
  else if (ELF_ST_TYPE (dst->st_info) == STT_ARM_TFUNC)
19654
0
    {
19655
0
      dst->st_info = ELF_ST_INFO (ELF_ST_BIND (dst->st_info), STT_FUNC);
19656
0
      ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_TO_THUMB);
19657
0
    }
19658
0
  else if (ELF_ST_TYPE (dst->st_info) == STT_SECTION)
19659
0
    ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_LONG);
19660
0
  else
19661
0
    ARM_SET_SYM_BRANCH_TYPE (dst->st_target_internal, ST_BRANCH_UNKNOWN);
19662
19663
0
  return true;
19664
0
}
19665
19666
19667
/* Mangle thumb function symbols as we write them out.  */
19668
19669
static void
19670
elf32_arm_swap_symbol_out (bfd *abfd,
19671
         const Elf_Internal_Sym *src,
19672
         void *cdst,
19673
         void *shndx)
19674
0
{
19675
0
  Elf_Internal_Sym newsym;
19676
19677
  /* We convert STT_ARM_TFUNC symbols into STT_FUNC with the low bit
19678
     of the address set, as per the new EABI.  We do this unconditionally
19679
     because objcopy does not set the elf header flags until after
19680
     it writes out the symbol table.  */
19681
0
  if (ARM_GET_SYM_BRANCH_TYPE (src->st_target_internal) == ST_BRANCH_TO_THUMB)
19682
0
    {
19683
0
      newsym = *src;
19684
0
      if (ELF_ST_TYPE (src->st_info) != STT_GNU_IFUNC)
19685
0
  newsym.st_info = ELF_ST_INFO (ELF_ST_BIND (src->st_info), STT_FUNC);
19686
0
      if (newsym.st_shndx != SHN_UNDEF)
19687
0
  {
19688
    /* Do this only for defined symbols. At link type, the static
19689
       linker will simulate the work of dynamic linker of resolving
19690
       symbols and will carry over the thumbness of found symbols to
19691
       the output symbol table. It's not clear how it happens, but
19692
       the thumbness of undefined symbols can well be different at
19693
       runtime, and writing '1' for them will be confusing for users
19694
       and possibly for dynamic linker itself.
19695
    */
19696
0
    newsym.st_value |= 1;
19697
0
  }
19698
19699
0
      src = &newsym;
19700
0
    }
19701
0
  bfd_elf32_swap_symbol_out (abfd, src, cdst, shndx);
19702
0
}
19703
19704
/* Add the PT_ARM_EXIDX program header.  */
19705
19706
static bool
19707
elf32_arm_modify_segment_map (bfd *abfd,
19708
            struct bfd_link_info *info ATTRIBUTE_UNUSED)
19709
0
{
19710
0
  struct elf_segment_map *m;
19711
0
  asection *sec;
19712
19713
0
  sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19714
0
  if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19715
0
    {
19716
      /* If there is already a PT_ARM_EXIDX header, then we do not
19717
   want to add another one.  This situation arises when running
19718
   "strip"; the input binary already has the header.  */
19719
0
      m = elf_seg_map (abfd);
19720
0
      while (m && m->p_type != PT_ARM_EXIDX)
19721
0
  m = m->next;
19722
0
      if (!m)
19723
0
  {
19724
0
    m = (struct elf_segment_map *)
19725
0
        bfd_zalloc (abfd, sizeof (struct elf_segment_map));
19726
0
    if (m == NULL)
19727
0
      return false;
19728
0
    m->p_type = PT_ARM_EXIDX;
19729
0
    m->count = 1;
19730
0
    m->sections[0] = sec;
19731
19732
0
    m->next = elf_seg_map (abfd);
19733
0
    elf_seg_map (abfd) = m;
19734
0
  }
19735
0
    }
19736
19737
0
  return true;
19738
0
}
19739
19740
/* We may add a PT_ARM_EXIDX program header.  */
19741
19742
static int
19743
elf32_arm_additional_program_headers (bfd *abfd,
19744
              struct bfd_link_info *info ATTRIBUTE_UNUSED)
19745
0
{
19746
0
  asection *sec;
19747
19748
0
  sec = bfd_get_section_by_name (abfd, ".ARM.exidx");
19749
0
  if (sec != NULL && (sec->flags & SEC_LOAD) != 0)
19750
0
    return 1;
19751
0
  else
19752
0
    return 0;
19753
0
}
19754
19755
/* Hook called by the linker routine which adds symbols from an object
19756
   file.  */
19757
19758
static bool
19759
elf32_arm_add_symbol_hook (bfd *abfd ATTRIBUTE_UNUSED,
19760
         struct bfd_link_info *info,
19761
         Elf_Internal_Sym *sym ATTRIBUTE_UNUSED,
19762
         const char **namep ATTRIBUTE_UNUSED,
19763
         flagword *flagsp ATTRIBUTE_UNUSED,
19764
         asection **secp ATTRIBUTE_UNUSED,
19765
         bfd_vma *valp ATTRIBUTE_UNUSED)
19766
0
{
19767
0
  if (elf32_arm_hash_table (info) == NULL)
19768
0
    return false;
19769
19770
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
19771
0
  if (elf32_arm_hash_table (info)->root.target_os == is_vxworks
19772
0
      && !elf_vxworks_add_symbol_hook (abfd, info, sym, namep,
19773
0
               flagsp, secp, valp))
19774
0
    return false;
19775
0
#endif /* OBJ_MAYBE_ELF_VXWORKS */
19776
19777
0
  return true;
19778
0
}
19779
19780
/* We use this to override swap_symbol_in and swap_symbol_out.  */
19781
static const struct elf_size_info elf32_arm_size_info =
19782
{
19783
  sizeof (Elf32_External_Ehdr),
19784
  sizeof (Elf32_External_Phdr),
19785
  sizeof (Elf32_External_Shdr),
19786
  sizeof (Elf32_External_Rel),
19787
  sizeof (Elf32_External_Rela),
19788
  sizeof (Elf32_External_Sym),
19789
  sizeof (Elf32_External_Dyn),
19790
  sizeof (Elf_External_Note),
19791
  4,
19792
  1,
19793
  32, 2,
19794
  ELFCLASS32, EV_CURRENT,
19795
  bfd_elf32_write_out_phdrs,
19796
  bfd_elf32_write_shdrs_and_ehdr,
19797
  bfd_elf32_checksum_contents,
19798
  bfd_elf32_write_relocs,
19799
  elf32_arm_swap_symbol_in,
19800
  elf32_arm_swap_symbol_out,
19801
  bfd_elf32_slurp_reloc_table,
19802
  bfd_elf32_slurp_symbol_table,
19803
  bfd_elf32_swap_dyn_in,
19804
  bfd_elf32_swap_dyn_out,
19805
  bfd_elf32_swap_reloc_in,
19806
  bfd_elf32_swap_reloc_out,
19807
  bfd_elf32_swap_reloca_in,
19808
  bfd_elf32_swap_reloca_out
19809
};
19810
19811
static bfd_vma
19812
read_code32 (const bfd *abfd, const bfd_byte *addr)
19813
0
{
19814
  /* V7 BE8 code is always little endian.  */
19815
0
  if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19816
0
    return bfd_getl32 (addr);
19817
19818
0
  return bfd_get_32 (abfd, addr);
19819
0
}
19820
19821
static bfd_vma
19822
read_code16 (const bfd *abfd, const bfd_byte *addr)
19823
0
{
19824
  /* V7 BE8 code is always little endian.  */
19825
0
  if ((elf_elfheader (abfd)->e_flags & EF_ARM_BE8) != 0)
19826
0
    return bfd_getl16 (addr);
19827
19828
0
  return bfd_get_16 (abfd, addr);
19829
0
}
19830
19831
/* Return size of plt0 entry starting at ADDR
19832
   or (bfd_vma) -1 if size can not be determined.  */
19833
19834
static bfd_vma
19835
elf32_arm_plt0_size (const bfd *abfd, const bfd_byte *addr,
19836
         bfd_size_type data_size)
19837
0
{
19838
0
  bfd_vma first_word;
19839
0
  bfd_vma plt0_size;
19840
19841
0
  if (data_size < 4)
19842
0
    return (bfd_vma) -1;
19843
19844
0
  first_word = read_code32 (abfd, addr);
19845
19846
0
  if (first_word == elf32_arm_plt0_entry[0])
19847
0
    plt0_size = 4 * ARRAY_SIZE (elf32_arm_plt0_entry);
19848
0
  else if (first_word == elf32_thumb2_plt0_entry[0])
19849
0
    plt0_size = 4 * ARRAY_SIZE (elf32_thumb2_plt0_entry);
19850
0
  else
19851
    /* We don't yet handle this PLT format.  */
19852
0
    return (bfd_vma) -1;
19853
19854
0
  return plt0_size;
19855
0
}
19856
19857
/* Return size of plt entry starting at offset OFFSET
19858
   of plt section located at address START
19859
   or (bfd_vma) -1 if size can not be determined.  */
19860
19861
static bfd_vma
19862
elf32_arm_plt_size (const bfd *abfd, const bfd_byte *start, bfd_vma offset,
19863
        bfd_size_type data_size)
19864
0
{
19865
0
  bfd_vma first_insn;
19866
0
  bfd_vma plt_size = 0;
19867
19868
  /* PLT entry size if fixed on Thumb-only platforms.  */
19869
0
  if (read_code32 (abfd, start) == elf32_thumb2_plt0_entry[0])
19870
0
    return 4 * ARRAY_SIZE (elf32_thumb2_plt_entry);
19871
19872
  /* Respect Thumb stub if necessary.  */
19873
0
  if (offset + 2 > data_size)
19874
0
    return (bfd_vma) -1;
19875
0
  if (read_code16 (abfd, start + offset) == elf32_arm_plt_thumb_stub[0])
19876
0
    {
19877
0
      plt_size += 2 * ARRAY_SIZE (elf32_arm_plt_thumb_stub);
19878
0
    }
19879
19880
  /* Strip immediate from first add.  */
19881
0
  if (offset + plt_size + 4 > data_size)
19882
0
    return (bfd_vma) -1;
19883
0
  first_insn = read_code32 (abfd, start + offset + plt_size) & 0xffffff00;
19884
19885
#ifdef FOUR_WORD_PLT
19886
  if (first_insn == elf32_arm_plt_entry[0])
19887
    plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry);
19888
#else
19889
0
  if (first_insn == elf32_arm_plt_entry_long[0])
19890
0
    plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_long);
19891
0
  else if (first_insn == elf32_arm_plt_entry_short[0])
19892
0
    plt_size += 4 * ARRAY_SIZE (elf32_arm_plt_entry_short);
19893
0
#endif
19894
0
  else
19895
    /* We don't yet handle this PLT format.  */
19896
0
    return (bfd_vma) -1;
19897
19898
0
  return plt_size;
19899
0
}
19900
19901
/* Implementation is shamelessly borrowed from _bfd_elf_get_synthetic_symtab.  */
19902
19903
static long
19904
elf32_arm_get_synthetic_symtab (bfd *abfd,
19905
             long symcount ATTRIBUTE_UNUSED,
19906
             asymbol **syms ATTRIBUTE_UNUSED,
19907
             long dynsymcount,
19908
             asymbol **dynsyms,
19909
             asymbol **ret)
19910
314
{
19911
314
  asection *relplt;
19912
314
  asymbol *s;
19913
314
  arelent *p;
19914
314
  long count, i, n;
19915
314
  size_t size;
19916
314
  Elf_Internal_Shdr *hdr;
19917
314
  char *names;
19918
314
  asection *plt;
19919
314
  bfd_vma offset;
19920
314
  bfd_byte *data;
19921
19922
314
  *ret = NULL;
19923
19924
314
  if ((abfd->flags & (DYNAMIC | EXEC_P)) == 0)
19925
314
    return 0;
19926
19927
0
  if (dynsymcount <= 0)
19928
0
    return 0;
19929
19930
0
  relplt = bfd_get_section_by_name (abfd, ".rel.plt");
19931
0
  if (relplt == NULL)
19932
0
    return 0;
19933
19934
0
  hdr = &elf_section_data (relplt)->this_hdr;
19935
0
  if (hdr->sh_link != elf_dynsymtab (abfd)
19936
0
      || (hdr->sh_type != SHT_REL && hdr->sh_type != SHT_RELA))
19937
0
    return 0;
19938
19939
0
  plt = bfd_get_section_by_name (abfd, ".plt");
19940
0
  if (plt == NULL)
19941
0
    return 0;
19942
19943
0
  if (!elf32_arm_size_info.slurp_reloc_table (abfd, relplt, dynsyms, true))
19944
0
    return -1;
19945
19946
0
  data = NULL;
19947
0
  if (!bfd_get_full_section_contents (abfd, plt, &data))
19948
0
    return -1;
19949
19950
0
  count = NUM_SHDR_ENTRIES (hdr);
19951
0
  size = count * sizeof (asymbol);
19952
0
  p = relplt->relocation;
19953
0
  for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
19954
0
    {
19955
0
      size += strlen ((*p->sym_ptr_ptr)->name) + sizeof ("@plt");
19956
0
      if (p->addend != 0)
19957
0
  size += sizeof ("+0x") - 1 + 8;
19958
0
    }
19959
19960
0
  offset = elf32_arm_plt0_size (abfd, data, plt->size);
19961
0
  if (offset == (bfd_vma) -1
19962
0
      || (s = *ret = (asymbol *) bfd_malloc (size)) == NULL)
19963
0
    {
19964
0
      free (data);
19965
0
      return -1;
19966
0
    }
19967
19968
0
  names = (char *) (s + count);
19969
0
  p = relplt->relocation;
19970
0
  n = 0;
19971
0
  for (i = 0; i < count; i++, p += elf32_arm_size_info.int_rels_per_ext_rel)
19972
0
    {
19973
0
      size_t len;
19974
19975
0
      bfd_vma plt_size = elf32_arm_plt_size (abfd, data, offset, plt->size);
19976
0
      if (plt_size == (bfd_vma) -1)
19977
0
  break;
19978
19979
0
      *s = **p->sym_ptr_ptr;
19980
      /* Undefined syms won't have BSF_LOCAL or BSF_GLOBAL set.  Since
19981
   we are defining a symbol, ensure one of them is set.  */
19982
0
      if ((s->flags & BSF_LOCAL) == 0)
19983
0
  s->flags |= BSF_GLOBAL;
19984
0
      s->flags |= BSF_SYNTHETIC;
19985
0
      s->section = plt;
19986
0
      s->value = offset;
19987
0
      s->name = names;
19988
0
      s->udata.p = NULL;
19989
0
      len = strlen ((*p->sym_ptr_ptr)->name);
19990
0
      memcpy (names, (*p->sym_ptr_ptr)->name, len);
19991
0
      names += len;
19992
0
      if (p->addend != 0)
19993
0
  {
19994
0
    char buf[30], *a;
19995
19996
0
    memcpy (names, "+0x", sizeof ("+0x") - 1);
19997
0
    names += sizeof ("+0x") - 1;
19998
0
    bfd_sprintf_vma (abfd, buf, p->addend);
19999
0
    for (a = buf; *a == '0'; ++a)
20000
0
      ;
20001
0
    len = strlen (a);
20002
0
    memcpy (names, a, len);
20003
0
    names += len;
20004
0
  }
20005
0
      memcpy (names, "@plt", sizeof ("@plt"));
20006
0
      names += sizeof ("@plt");
20007
0
      ++s, ++n;
20008
0
      offset += plt_size;
20009
0
    }
20010
20011
0
  free (data);
20012
0
  return n;
20013
0
}
20014
20015
static bool
20016
elf32_arm_section_flags (const Elf_Internal_Shdr *hdr)
20017
720
{
20018
720
  if (hdr->sh_flags & SHF_ARM_PURECODE)
20019
104
    hdr->bfd_section->flags |= SEC_ELF_PURECODE;
20020
720
  return true;
20021
720
}
20022
20023
static flagword
20024
elf32_arm_lookup_section_flags (char *flag_name)
20025
0
{
20026
0
  if (!strcmp (flag_name, "SHF_ARM_PURECODE"))
20027
0
    return SHF_ARM_PURECODE;
20028
20029
0
  return SEC_NO_FLAGS;
20030
0
}
20031
20032
static unsigned int
20033
elf32_arm_count_additional_relocs (asection *sec)
20034
0
{
20035
0
  struct _arm_elf_section_data *arm_data;
20036
0
  arm_data = get_arm_elf_section_data (sec);
20037
20038
0
  return arm_data == NULL ? 0 : arm_data->additional_reloc_count;
20039
0
}
20040
20041
/* Called to set the sh_flags, sh_link and sh_info fields of OSECTION which
20042
   has a type >= SHT_LOOS.  Returns TRUE if these fields were initialised
20043
   FALSE otherwise.  ISECTION is the best guess matching section from the
20044
   input bfd IBFD, but it might be NULL.  */
20045
20046
static bool
20047
elf32_arm_copy_special_section_fields (const bfd *ibfd ATTRIBUTE_UNUSED,
20048
               bfd *obfd ATTRIBUTE_UNUSED,
20049
               const Elf_Internal_Shdr *isection ATTRIBUTE_UNUSED,
20050
               Elf_Internal_Shdr *osection)
20051
0
{
20052
0
  switch (osection->sh_type)
20053
0
    {
20054
0
    case SHT_ARM_EXIDX:
20055
0
      {
20056
0
  Elf_Internal_Shdr **oheaders = elf_elfsections (obfd);
20057
0
  Elf_Internal_Shdr **iheaders = elf_elfsections (ibfd);
20058
0
  unsigned i = 0;
20059
20060
0
  osection->sh_flags = SHF_ALLOC | SHF_LINK_ORDER;
20061
0
  osection->sh_info = 0;
20062
20063
  /* The sh_link field must be set to the text section associated with
20064
     this index section.  Unfortunately the ARM EHABI does not specify
20065
     exactly how to determine this association.  Our caller does try
20066
     to match up OSECTION with its corresponding input section however
20067
     so that is a good first guess.  */
20068
0
  if (isection != NULL
20069
0
      && osection->bfd_section != NULL
20070
0
      && isection->bfd_section != NULL
20071
0
      && isection->bfd_section->output_section != NULL
20072
0
      && isection->bfd_section->output_section == osection->bfd_section
20073
0
      && iheaders != NULL
20074
0
      && isection->sh_link > 0
20075
0
      && isection->sh_link < elf_numsections (ibfd)
20076
0
      && iheaders[isection->sh_link]->bfd_section != NULL
20077
0
      && iheaders[isection->sh_link]->bfd_section->output_section != NULL
20078
0
      )
20079
0
    {
20080
0
      for (i = elf_numsections (obfd); i-- > 0;)
20081
0
        if (oheaders[i]->bfd_section
20082
0
      == iheaders[isection->sh_link]->bfd_section->output_section)
20083
0
    break;
20084
0
    }
20085
20086
0
  if (i == 0)
20087
0
    {
20088
      /* Failing that we have to find a matching section ourselves.  If
20089
         we had the output section name available we could compare that
20090
         with input section names.  Unfortunately we don't.  So instead
20091
         we use a simple heuristic and look for the nearest executable
20092
         section before this one.  */
20093
0
      for (i = elf_numsections (obfd); i-- > 0;)
20094
0
        if (oheaders[i] == osection)
20095
0
    break;
20096
0
      if (i == 0)
20097
0
        break;
20098
20099
0
      while (i-- > 0)
20100
0
        if (oheaders[i]->sh_type == SHT_PROGBITS
20101
0
      && (oheaders[i]->sh_flags & (SHF_ALLOC | SHF_EXECINSTR))
20102
0
      == (SHF_ALLOC | SHF_EXECINSTR))
20103
0
    break;
20104
0
    }
20105
20106
0
  if (i)
20107
0
    {
20108
0
      osection->sh_link = i;
20109
      /* If the text section was part of a group
20110
         then the index section should be too.  */
20111
0
      if (oheaders[i]->sh_flags & SHF_GROUP)
20112
0
        osection->sh_flags |= SHF_GROUP;
20113
0
      return true;
20114
0
    }
20115
0
      }
20116
0
      break;
20117
20118
0
    case SHT_ARM_PREEMPTMAP:
20119
0
      osection->sh_flags = SHF_ALLOC;
20120
0
      break;
20121
20122
0
    case SHT_ARM_ATTRIBUTES:
20123
0
    case SHT_ARM_DEBUGOVERLAY:
20124
0
    case SHT_ARM_OVERLAYSECTION:
20125
0
    default:
20126
0
      break;
20127
0
    }
20128
20129
0
  return false;
20130
0
}
20131
20132
/* Returns TRUE if NAME is an ARM mapping symbol.
20133
   Traditionally the symbols $a, $d and $t have been used.
20134
   The ARM ELF standard also defines $x (for A64 code).  It also allows a
20135
   period initiated suffix to be added to the symbol: "$[adtx]\.[:sym_char]+".
20136
   Other tools might also produce $b (Thumb BL), $f, $p, $m and $v, but we do
20137
   not support them here.  $t.x indicates the start of ThumbEE instructions.  */
20138
20139
static bool
20140
is_arm_mapping_symbol (const char * name)
20141
0
{
20142
0
  return name != NULL /* Paranoia.  */
20143
0
    && name[0] == '$' /* Note: if objcopy --prefix-symbols has been used then
20144
       the mapping symbols could have acquired a prefix.
20145
       We do not support this here, since such symbols no
20146
       longer conform to the ARM ELF ABI.  */
20147
0
    && (name[1] == 'a' || name[1] == 'd' || name[1] == 't' || name[1] == 'x')
20148
0
    && (name[2] == 0 || name[2] == '.');
20149
  /* FIXME: Strictly speaking the symbol is only a valid mapping symbol if
20150
     any characters that follow the period are legal characters for the body
20151
     of a symbol's name.  For now we just assume that this is the case.  */
20152
0
}
20153
20154
/* Make sure that mapping symbols in object files are not removed via the
20155
   "strip --strip-unneeded" tool.  These symbols are needed in order to
20156
   correctly generate interworking veneers, and for byte swapping code
20157
   regions.  Once an object file has been linked, it is safe to remove the
20158
   symbols as they will no longer be needed.  */
20159
20160
static void
20161
elf32_arm_backend_symbol_processing (bfd *abfd, asymbol *sym)
20162
0
{
20163
0
  if (((abfd->flags & (EXEC_P | DYNAMIC)) == 0)
20164
0
      && sym->section != bfd_abs_section_ptr
20165
0
      && is_arm_mapping_symbol (sym->name))
20166
0
    sym->flags |= BSF_KEEP;
20167
0
}
20168
20169
#undef  elf_backend_copy_special_section_fields
20170
#define elf_backend_copy_special_section_fields elf32_arm_copy_special_section_fields
20171
20172
#define ELF_ARCH      bfd_arch_arm
20173
#define ELF_TARGET_ID     ARM_ELF_DATA
20174
#define ELF_MACHINE_CODE    EM_ARM
20175
#define ELF_MAXPAGESIZE     0x1000
20176
#define ELF_COMMONPAGESIZE    0x1000
20177
20178
#define bfd_elf32_mkobject      elf32_arm_mkobject
20179
20180
#define bfd_elf32_bfd_copy_private_bfd_data elf32_arm_copy_private_bfd_data
20181
#define bfd_elf32_bfd_merge_private_bfd_data  elf32_arm_merge_private_bfd_data
20182
#define bfd_elf32_bfd_set_private_flags   elf32_arm_set_private_flags
20183
#define bfd_elf32_bfd_print_private_bfd_data  elf32_arm_print_private_bfd_data
20184
#define bfd_elf32_bfd_link_hash_table_create  elf32_arm_link_hash_table_create
20185
#define bfd_elf32_bfd_reloc_type_lookup   elf32_arm_reloc_type_lookup
20186
#define bfd_elf32_bfd_reloc_name_lookup   elf32_arm_reloc_name_lookup
20187
#define bfd_elf32_find_inliner_info   elf32_arm_find_inliner_info
20188
#define bfd_elf32_new_section_hook    elf32_arm_new_section_hook
20189
#define bfd_elf32_bfd_is_target_special_symbol  elf32_arm_is_target_special_symbol
20190
#define bfd_elf32_bfd_final_link    elf32_arm_final_link
20191
#define bfd_elf32_get_synthetic_symtab  elf32_arm_get_synthetic_symtab
20192
20193
#define elf_backend_get_symbol_type   elf32_arm_get_symbol_type
20194
#define elf_backend_maybe_function_sym    elf32_arm_maybe_function_sym
20195
#define elf_backend_gc_mark_hook    elf32_arm_gc_mark_hook
20196
#define elf_backend_gc_mark_extra_sections  elf32_arm_gc_mark_extra_sections
20197
#define elf_backend_check_relocs    elf32_arm_check_relocs
20198
#define elf_backend_update_relocs   elf32_arm_update_relocs
20199
#define elf_backend_relocate_section    elf32_arm_relocate_section
20200
#define elf_backend_write_section   elf32_arm_write_section
20201
#define elf_backend_adjust_dynamic_symbol elf32_arm_adjust_dynamic_symbol
20202
#define elf_backend_create_dynamic_sections elf32_arm_create_dynamic_sections
20203
#define elf_backend_finish_dynamic_symbol elf32_arm_finish_dynamic_symbol
20204
#define elf_backend_finish_dynamic_sections elf32_arm_finish_dynamic_sections
20205
#define elf_backend_late_size_sections    elf32_arm_late_size_sections
20206
#define elf_backend_early_size_sections   elf32_arm_early_size_sections
20207
#define elf_backend_init_index_section    _bfd_elf_init_2_index_sections
20208
#define elf_backend_init_file_header    elf32_arm_init_file_header
20209
#define elf_backend_reloc_type_class    elf32_arm_reloc_type_class
20210
#define elf_backend_object_p      elf32_arm_object_p
20211
#define elf_backend_fake_sections   elf32_arm_fake_sections
20212
#define elf_backend_section_from_shdr   elf32_arm_section_from_shdr
20213
#define elf_backend_final_write_processing  elf32_arm_final_write_processing
20214
#define elf_backend_copy_indirect_symbol  elf32_arm_copy_indirect_symbol
20215
#define elf_backend_size_info     elf32_arm_size_info
20216
#define elf_backend_modify_segment_map    elf32_arm_modify_segment_map
20217
#define elf_backend_additional_program_headers  elf32_arm_additional_program_headers
20218
#define elf_backend_output_arch_local_syms  elf32_arm_output_arch_local_syms
20219
#define elf_backend_filter_implib_symbols elf32_arm_filter_implib_symbols
20220
#define elf_backend_begin_write_processing  elf32_arm_begin_write_processing
20221
#define elf_backend_add_symbol_hook   elf32_arm_add_symbol_hook
20222
#define elf_backend_count_additional_relocs elf32_arm_count_additional_relocs
20223
#define elf_backend_symbol_processing   elf32_arm_backend_symbol_processing
20224
20225
#define elf_backend_can_refcount       1
20226
#define elf_backend_can_gc_sections    1
20227
#define elf_backend_plt_readonly       1
20228
#define elf_backend_want_got_plt       1
20229
#define elf_backend_want_plt_sym       0
20230
#define elf_backend_want_dynrelro      1
20231
#define elf_backend_may_use_rel_p      1
20232
#define elf_backend_may_use_rela_p     0
20233
#define elf_backend_default_use_rela_p 0
20234
#define elf_backend_dtrel_excludes_plt 1
20235
20236
#define elf_backend_got_header_size 12
20237
#define elf_backend_extern_protected_data 0
20238
20239
#undef  elf_backend_obj_attrs_vendor
20240
#define elf_backend_obj_attrs_vendor    "aeabi"
20241
#undef  elf_backend_obj_attrs_section
20242
#define elf_backend_obj_attrs_section   ".ARM.attributes"
20243
#undef  elf_backend_obj_attrs_arg_type
20244
#define elf_backend_obj_attrs_arg_type    elf32_arm_obj_attrs_arg_type
20245
#undef  elf_backend_obj_attrs_section_type
20246
#define elf_backend_obj_attrs_section_type  SHT_ARM_ATTRIBUTES
20247
#define elf_backend_obj_attrs_order   elf32_arm_obj_attrs_order
20248
#define elf_backend_obj_attrs_handle_unknown  elf32_arm_obj_attrs_handle_unknown
20249
20250
#undef  elf_backend_section_flags
20251
#define elf_backend_section_flags   elf32_arm_section_flags
20252
#undef  elf_backend_lookup_section_flags_hook
20253
#define elf_backend_lookup_section_flags_hook elf32_arm_lookup_section_flags
20254
20255
#define elf_backend_linux_prpsinfo32_ugid16 true
20256
20257
#include "elf32-target.h"
20258
20259
/* Reset to defaults.  */
20260
#undef  elf_backend_plt_alignment
20261
#undef  elf_backend_modify_segment_map
20262
#define elf_backend_modify_segment_map    elf32_arm_modify_segment_map
20263
#undef  elf_backend_modify_headers
20264
#undef  elf_backend_final_write_processing
20265
#define elf_backend_final_write_processing  elf32_arm_final_write_processing
20266
#undef  ELF_MINPAGESIZE
20267
#undef  ELF_COMMONPAGESIZE
20268
#define ELF_COMMONPAGESIZE    0x1000
20269
20270
20271
/* FDPIC Targets.  */
20272
20273
#undef  TARGET_LITTLE_SYM
20274
#define TARGET_LITTLE_SYM   arm_elf32_fdpic_le_vec
20275
#undef  TARGET_LITTLE_NAME
20276
#define TARGET_LITTLE_NAME    "elf32-littlearm-fdpic"
20277
#undef  TARGET_BIG_SYM
20278
#define TARGET_BIG_SYM      arm_elf32_fdpic_be_vec
20279
#undef  TARGET_BIG_NAME
20280
#define TARGET_BIG_NAME     "elf32-bigarm-fdpic"
20281
#undef elf_match_priority
20282
#define elf_match_priority    128
20283
#undef ELF_OSABI
20284
#define ELF_OSABI   ELFOSABI_ARM_FDPIC
20285
#undef ELF_OSABI_EXACT
20286
#define ELF_OSABI_EXACT   1
20287
20288
/* Like elf32_arm_link_hash_table_create -- but overrides
20289
   appropriately for FDPIC.  */
20290
20291
static struct bfd_link_hash_table *
20292
elf32_arm_fdpic_link_hash_table_create (bfd *abfd)
20293
0
{
20294
0
  struct bfd_link_hash_table *ret;
20295
20296
0
  ret = elf32_arm_link_hash_table_create (abfd);
20297
0
  if (ret)
20298
0
    {
20299
0
      struct elf32_arm_link_hash_table *htab = (struct elf32_arm_link_hash_table *) ret;
20300
20301
0
      htab->fdpic_p = 1;
20302
0
    }
20303
0
  return ret;
20304
0
}
20305
20306
/* We need dynamic symbols for every section, since segments can
20307
   relocate independently.  */
20308
static bool
20309
elf32_arm_fdpic_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
20310
            struct bfd_link_info *info
20311
            ATTRIBUTE_UNUSED,
20312
            asection *p ATTRIBUTE_UNUSED)
20313
0
{
20314
0
  switch (elf_section_data (p)->this_hdr.sh_type)
20315
0
    {
20316
0
    case SHT_PROGBITS:
20317
0
    case SHT_NOBITS:
20318
      /* If sh_type is yet undecided, assume it could be
20319
   SHT_PROGBITS/SHT_NOBITS.  */
20320
0
    case SHT_NULL:
20321
0
      return false;
20322
20323
      /* There shouldn't be section relative relocations
20324
   against any other section.  */
20325
0
    default:
20326
0
      return true;
20327
0
    }
20328
0
}
20329
20330
#undef  elf32_bed
20331
#define elf32_bed       elf32_arm_fdpic_bed
20332
20333
#undef  bfd_elf32_bfd_link_hash_table_create
20334
#define bfd_elf32_bfd_link_hash_table_create  elf32_arm_fdpic_link_hash_table_create
20335
20336
#undef elf_backend_omit_section_dynsym
20337
#define elf_backend_omit_section_dynsym   elf32_arm_fdpic_omit_section_dynsym
20338
20339
#undef ELF_TARGET_OS
20340
20341
#include "elf32-target.h"
20342
20343
#undef elf_match_priority
20344
#undef ELF_OSABI
20345
#undef ELF_OSABI_EXACT
20346
#undef elf_backend_omit_section_dynsym
20347
20348
#ifdef OBJ_MAYBE_ELF_VXWORKS
20349
20350
/* VxWorks Targets.  */
20351
20352
#undef  TARGET_LITTLE_SYM
20353
#define TARGET_LITTLE_SYM   arm_elf32_vxworks_le_vec
20354
#undef  TARGET_LITTLE_NAME
20355
#define TARGET_LITTLE_NAME    "elf32-littlearm-vxworks"
20356
#undef  TARGET_BIG_SYM
20357
#define TARGET_BIG_SYM      arm_elf32_vxworks_be_vec
20358
#undef  TARGET_BIG_NAME
20359
#define TARGET_BIG_NAME     "elf32-bigarm-vxworks"
20360
20361
/* Like elf32_arm_link_hash_table_create -- but overrides
20362
   appropriately for VxWorks.  */
20363
20364
static struct bfd_link_hash_table *
20365
elf32_arm_vxworks_link_hash_table_create (bfd *abfd)
20366
0
{
20367
0
  struct bfd_link_hash_table *ret;
20368
20369
0
  ret = elf32_arm_link_hash_table_create (abfd);
20370
0
  if (ret)
20371
0
    {
20372
0
      struct elf32_arm_link_hash_table *htab
20373
0
  = (struct elf32_arm_link_hash_table *) ret;
20374
0
      htab->use_rel = 0;
20375
0
    }
20376
0
  return ret;
20377
0
}
20378
20379
static bool
20380
elf32_arm_vxworks_final_write_processing (bfd *abfd)
20381
0
{
20382
0
  arm_final_write_processing (abfd);
20383
0
  return elf_vxworks_final_write_processing (abfd);
20384
0
}
20385
20386
#undef  elf32_bed
20387
#define elf32_bed elf32_arm_vxworks_bed
20388
20389
#undef  bfd_elf32_bfd_link_hash_table_create
20390
#define bfd_elf32_bfd_link_hash_table_create  elf32_arm_vxworks_link_hash_table_create
20391
#undef  elf_backend_final_write_processing
20392
#define elf_backend_final_write_processing  elf32_arm_vxworks_final_write_processing
20393
#undef  elf_backend_emit_relocs
20394
#define elf_backend_emit_relocs     elf_vxworks_emit_relocs
20395
20396
#undef  elf_backend_may_use_rel_p
20397
#define elf_backend_may_use_rel_p 0
20398
#undef  elf_backend_may_use_rela_p
20399
#define elf_backend_may_use_rela_p  1
20400
#undef  elf_backend_default_use_rela_p
20401
#define elf_backend_default_use_rela_p  1
20402
#undef  elf_backend_want_plt_sym
20403
#define elf_backend_want_plt_sym  1
20404
#undef  ELF_MAXPAGESIZE
20405
#define ELF_MAXPAGESIZE     0x1000
20406
#undef ELF_TARGET_OS
20407
#define ELF_TARGET_OS     is_vxworks
20408
20409
#include "elf32-target.h"
20410
20411
#endif /* OBJ_MAYBE_ELF_VXWORKS */
20412
20413
/* Merge backend specific data from an object file to the output
20414
   object file when linking.  */
20415
20416
static bool
20417
elf32_arm_merge_private_bfd_data (bfd *ibfd, struct bfd_link_info *info)
20418
0
{
20419
0
  bfd *obfd = info->output_bfd;
20420
0
  flagword out_flags;
20421
0
  flagword in_flags;
20422
0
  bool flags_compatible = true;
20423
0
  asection *sec;
20424
20425
  /* Check if we have the same endianness.  */
20426
0
  if (! _bfd_generic_verify_endian_match (ibfd, info))
20427
0
    return false;
20428
20429
0
  if (! is_arm_elf (ibfd))
20430
0
    return true;
20431
20432
0
  if (!elf32_arm_merge_eabi_attributes (ibfd, info))
20433
0
    return false;
20434
20435
  /* The input BFD must have had its flags initialised.  */
20436
  /* The following seems bogus to me -- The flags are initialized in
20437
     the assembler but I don't think an elf_flags_init field is
20438
     written into the object.  */
20439
  /* BFD_ASSERT (elf_flags_init (ibfd)); */
20440
20441
0
  in_flags  = elf_elfheader (ibfd)->e_flags;
20442
0
  out_flags = elf_elfheader (obfd)->e_flags;
20443
20444
  /* In theory there is no reason why we couldn't handle this.  However
20445
     in practice it isn't even close to working and there is no real
20446
     reason to want it.  */
20447
0
  if (EF_ARM_EABI_VERSION (in_flags) >= EF_ARM_EABI_VER4
20448
0
      && !(ibfd->flags & DYNAMIC)
20449
0
      && (in_flags & EF_ARM_BE8))
20450
0
    {
20451
0
      _bfd_error_handler (_("error: %pB is already in final BE8 format"),
20452
0
        ibfd);
20453
0
      return false;
20454
0
    }
20455
20456
0
  if (!elf_flags_init (obfd))
20457
0
    {
20458
      /* If the input has no flags set, then do not set the output flags.
20459
   This will allow future bfds to determine the desired output flags.
20460
   If no input bfds have any flags set, then neither will the output bfd.
20461
20462
   Note - we used to restrict this test to when the input architecture
20463
   variant was the default variant, but this does not allow for
20464
   linker scripts which override the default.  See PR 28910 for an
20465
   example.  */
20466
0
      if (in_flags == 0)
20467
0
  return true;
20468
      
20469
0
      elf_flags_init (obfd) = true;
20470
0
      elf_elfheader (obfd)->e_flags = in_flags;
20471
20472
0
      if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
20473
0
    && bfd_get_arch_info (obfd)->the_default)
20474
0
  return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), bfd_get_mach (ibfd));
20475
20476
0
      return true;
20477
0
    }
20478
20479
  /* Determine what should happen if the input ARM architecture
20480
     does not match the output ARM architecture.  */
20481
0
  if (! bfd_arm_merge_machines (ibfd, obfd))
20482
0
    return false;
20483
20484
  /* Identical flags must be compatible.  */
20485
0
  if (in_flags == out_flags)
20486
0
    return true;
20487
20488
  /* Check to see if the input BFD actually contains any sections.  If
20489
     not, its flags may not have been initialised either, but it
20490
     cannot actually cause any incompatiblity.  Do not short-circuit
20491
     dynamic objects; their section list may be emptied by
20492
    elf_link_add_object_symbols.
20493
20494
    Also check to see if there are no code sections in the input.
20495
    In this case there is no need to check for code specific flags.
20496
    XXX - do we need to worry about floating-point format compatability
20497
    in data sections ?  */
20498
0
  if (!(ibfd->flags & DYNAMIC))
20499
0
    {
20500
0
      bool null_input_bfd = true;
20501
0
      bool only_data_sections = true;
20502
20503
0
      for (sec = ibfd->sections; sec != NULL; sec = sec->next)
20504
0
  {
20505
    /* Ignore synthetic glue sections.  */
20506
0
    if (strcmp (sec->name, ".glue_7")
20507
0
        && strcmp (sec->name, ".glue_7t"))
20508
0
      {
20509
0
        if ((bfd_section_flags (sec)
20510
0
       & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
20511
0
      == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
20512
0
    only_data_sections = false;
20513
20514
0
        null_input_bfd = false;
20515
0
        break;
20516
0
      }
20517
0
  }
20518
20519
0
      if (null_input_bfd || only_data_sections)
20520
0
  return true;
20521
0
    }
20522
20523
  /* Complain about various flag mismatches.  */
20524
0
  if (!elf32_arm_versions_compatible (EF_ARM_EABI_VERSION (in_flags),
20525
0
              EF_ARM_EABI_VERSION (out_flags)))
20526
0
    {
20527
0
      _bfd_error_handler
20528
0
  (_("error: source object %pB has EABI version %d, but target %pB has EABI version %d"),
20529
0
   ibfd, (in_flags & EF_ARM_EABIMASK) >> 24,
20530
0
   obfd, (out_flags & EF_ARM_EABIMASK) >> 24);
20531
0
      return false;
20532
0
    }
20533
20534
  /* Not sure what needs to be checked for EABI versions >= 1.  */
20535
0
  if (EF_ARM_EABI_VERSION (in_flags) == EF_ARM_EABI_UNKNOWN
20536
0
#ifdef OBJ_MAYBE_ELF_VXWORKS
20537
      /* VxWorks libraries do not use these flags.  */
20538
0
      && get_elf_backend_data (obfd) != &elf32_arm_vxworks_bed
20539
0
      && get_elf_backend_data (ibfd) != &elf32_arm_vxworks_bed
20540
0
#endif
20541
0
      )
20542
0
    {
20543
0
      if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
20544
0
  {
20545
0
    _bfd_error_handler
20546
0
      (_("error: %pB is compiled for APCS-%d, whereas target %pB uses APCS-%d"),
20547
0
       ibfd, in_flags & EF_ARM_APCS_26 ? 26 : 32,
20548
0
       obfd, out_flags & EF_ARM_APCS_26 ? 26 : 32);
20549
0
    flags_compatible = false;
20550
0
  }
20551
20552
0
      if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
20553
0
  {
20554
0
    if (in_flags & EF_ARM_APCS_FLOAT)
20555
0
      _bfd_error_handler
20556
0
        (_("error: %pB passes floats in float registers, whereas %pB passes them in integer registers"),
20557
0
         ibfd, obfd);
20558
0
    else
20559
0
      _bfd_error_handler
20560
0
        (_("error: %pB passes floats in integer registers, whereas %pB passes them in float registers"),
20561
0
         ibfd, obfd);
20562
20563
0
    flags_compatible = false;
20564
0
  }
20565
20566
0
      if ((in_flags & EF_ARM_VFP_FLOAT) != (out_flags & EF_ARM_VFP_FLOAT))
20567
0
  {
20568
0
    if (in_flags & EF_ARM_VFP_FLOAT)
20569
0
      _bfd_error_handler
20570
0
        (_("error: %pB uses %s instructions, whereas %pB does not"),
20571
0
         ibfd, "VFP", obfd);
20572
0
    else
20573
0
      _bfd_error_handler
20574
0
        (_("error: %pB uses %s instructions, whereas %pB does not"),
20575
0
         ibfd, "FPA", obfd);
20576
20577
0
    flags_compatible = false;
20578
0
  }
20579
20580
0
#ifdef EF_ARM_SOFT_FLOAT
20581
0
      if ((in_flags & EF_ARM_SOFT_FLOAT) != (out_flags & EF_ARM_SOFT_FLOAT))
20582
0
  {
20583
    /* We can allow interworking between code that is VFP format
20584
       layout, and uses either soft float or integer regs for
20585
       passing floating point arguments and results.  We already
20586
       know that the APCS_FLOAT flags match; similarly for VFP
20587
       flags.  */
20588
0
    if ((in_flags & EF_ARM_APCS_FLOAT) != 0
20589
0
        || (in_flags & EF_ARM_VFP_FLOAT) == 0)
20590
0
      {
20591
0
        if (in_flags & EF_ARM_SOFT_FLOAT)
20592
0
    _bfd_error_handler
20593
0
      (_("error: %pB uses software FP, whereas %pB uses hardware FP"),
20594
0
       ibfd, obfd);
20595
0
        else
20596
0
    _bfd_error_handler
20597
0
      (_("error: %pB uses hardware FP, whereas %pB uses software FP"),
20598
0
       ibfd, obfd);
20599
20600
0
        flags_compatible = false;
20601
0
      }
20602
0
  }
20603
0
#endif
20604
20605
      /* Interworking mismatch is only a warning.  */
20606
0
      if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
20607
0
  {
20608
0
    if (in_flags & EF_ARM_INTERWORK)
20609
0
      {
20610
0
        _bfd_error_handler
20611
0
    (_("warning: %pB supports interworking, whereas %pB does not"),
20612
0
     ibfd, obfd);
20613
0
      }
20614
0
    else
20615
0
      {
20616
0
        _bfd_error_handler
20617
0
    (_("warning: %pB does not support interworking, whereas %pB does"),
20618
0
     ibfd, obfd);
20619
0
      }
20620
0
  }
20621
0
    }
20622
20623
0
  return flags_compatible;
20624
0
}