93140454d2dd91e97625ad6854e68890da62ed5a
[deliverable/binutils-gdb.git] / bfd / elf32-arm.h
1 /* 32-bit ELF support for ARM
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
4
5 This file is part of BFD, the Binary File Descriptor library.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20
21 #ifndef USE_REL
22 #define USE_REL 0
23 #endif
24
25 typedef unsigned long int insn32;
26 typedef unsigned short int insn16;
27
28 /* In leiu of proper flags, assume all EABIv3 objects are interworkable. */
29 #define INTERWORK_FLAG(abfd) \
30 (EF_ARM_EABI_VERSION (elf_elfheader (abfd)->e_flags) == EF_ARM_EABI_VER3 \
31 || (elf_elfheader (abfd)->e_flags & EF_ARM_INTERWORK))
32
33 /* The linker script knows the section names for placement.
34 The entry_names are used to do simple name mangling on the stubs.
35 Given a function name, and its type, the stub can be found. The
36 name can be changed. The only requirement is the %s be present. */
37 #define THUMB2ARM_GLUE_SECTION_NAME ".glue_7t"
38 #define THUMB2ARM_GLUE_ENTRY_NAME "__%s_from_thumb"
39
40 #define ARM2THUMB_GLUE_SECTION_NAME ".glue_7"
41 #define ARM2THUMB_GLUE_ENTRY_NAME "__%s_from_arm"
42
43 /* The name of the dynamic interpreter. This is put in the .interp
44 section. */
45 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
46
47 #ifdef FOUR_WORD_PLT
48
49 /* The first entry in a procedure linkage table looks like
50 this. It is set up so that any shared library function that is
51 called before the relocation has been set up calls the dynamic
52 linker first. */
53 static const bfd_vma elf32_arm_plt0_entry [] =
54 {
55 0xe52de004, /* str lr, [sp, #-4]! */
56 0xe59fe010, /* ldr lr, [pc, #16] */
57 0xe08fe00e, /* add lr, pc, lr */
58 0xe5bef008, /* ldr pc, [lr, #8]! */
59 };
60
61 /* Subsequent entries in a procedure linkage table look like
62 this. */
63 static const bfd_vma elf32_arm_plt_entry [] =
64 {
65 0xe28fc600, /* add ip, pc, #NN */
66 0xe28cca00, /* add ip, ip, #NN */
67 0xe5bcf000, /* ldr pc, [ip, #NN]! */
68 0x00000000, /* unused */
69 };
70
71 #else
72
73 /* The first entry in a procedure linkage table looks like
74 this. It is set up so that any shared library function that is
75 called before the relocation has been set up calls the dynamic
76 linker first. */
77 static const bfd_vma elf32_arm_plt0_entry [] =
78 {
79 0xe52de004, /* str lr, [sp, #-4]! */
80 0xe59fe004, /* ldr lr, [pc, #4] */
81 0xe08fe00e, /* add lr, pc, lr */
82 0xe5bef008, /* ldr pc, [lr, #8]! */
83 0x00000000, /* &GOT[0] - . */
84 };
85
86 /* Subsequent entries in a procedure linkage table look like
87 this. */
88 static const bfd_vma elf32_arm_plt_entry [] =
89 {
90 0xe28fc600, /* add ip, pc, #0xNN00000 */
91 0xe28cca00, /* add ip, ip, #0xNN000 */
92 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
93 };
94
95 #endif
96
97 /* The entries in a PLT when using a DLL-based target with multiple
98 address spaces. */
99 static const bfd_vma elf32_arm_symbian_plt_entry [] =
100 {
101 0xe51ff004, /* ldr pr, [pc, #-4] */
102 0x00000000, /* dcd R_ARM_GLOB_DAT(X) */
103 };
104
105 /* Used to build a map of a section. This is required for mixed-endian
106 code/data. */
107
108 typedef struct elf32_elf_section_map
109 {
110 bfd_vma vma;
111 char type;
112 }
113 elf32_arm_section_map;
114
115 struct _arm_elf_section_data
116 {
117 struct bfd_elf_section_data elf;
118 int mapcount;
119 elf32_arm_section_map *map;
120 };
121
122 #define elf32_arm_section_data(sec) \
123 ((struct _arm_elf_section_data *) elf_section_data (sec))
124
125 /* The ARM linker needs to keep track of the number of relocs that it
126 decides to copy in check_relocs for each symbol. This is so that
127 it can discard PC relative relocs if it doesn't need them when
128 linking with -Bsymbolic. We store the information in a field
129 extending the regular ELF linker hash table. */
130
131 /* This structure keeps track of the number of PC relative relocs we
132 have copied for a given symbol. */
133 struct elf32_arm_relocs_copied
134 {
135 /* Next section. */
136 struct elf32_arm_relocs_copied * next;
137 /* A section in dynobj. */
138 asection * section;
139 /* Number of relocs copied in this section. */
140 bfd_size_type count;
141 };
142
143 /* Arm ELF linker hash entry. */
144 struct elf32_arm_link_hash_entry
145 {
146 struct elf_link_hash_entry root;
147
148 /* Number of PC relative relocs copied for this symbol. */
149 struct elf32_arm_relocs_copied * relocs_copied;
150 };
151
152 /* Traverse an arm ELF linker hash table. */
153 #define elf32_arm_link_hash_traverse(table, func, info) \
154 (elf_link_hash_traverse \
155 (&(table)->root, \
156 (bfd_boolean (*) (struct elf_link_hash_entry *, void *))) (func), \
157 (info)))
158
159 /* Get the ARM elf linker hash table from a link_info structure. */
160 #define elf32_arm_hash_table(info) \
161 ((struct elf32_arm_link_hash_table *) ((info)->hash))
162
163 /* ARM ELF linker hash table. */
164 struct elf32_arm_link_hash_table
165 {
166 /* The main hash table. */
167 struct elf_link_hash_table root;
168
169 /* The size in bytes of the section containing the Thumb-to-ARM glue. */
170 bfd_size_type thumb_glue_size;
171
172 /* The size in bytes of the section containing the ARM-to-Thumb glue. */
173 bfd_size_type arm_glue_size;
174
175 /* An arbitrary input BFD chosen to hold the glue sections. */
176 bfd * bfd_of_glue_owner;
177
178 /* A boolean indicating whether knowledge of the ARM's pipeline
179 length should be applied by the linker. */
180 int no_pipeline_knowledge;
181
182 /* Nonzero to output a BE8 image. */
183 int byteswap_code;
184
185 /* Zero if R_ARM_TARGET1 means R_ARM_ABS32.
186 Nonzero if R_ARM_TARGET1 means R_ARM_ABS32. */
187 int target1_is_rel;
188
189 /* The number of bytes in the initial entry in the PLT. */
190 bfd_size_type plt_header_size;
191
192 /* The number of bytes in the subsequent PLT etries. */
193 bfd_size_type plt_entry_size;
194
195 /* True if the target system is Symbian OS. */
196 int symbian_p;
197
198 /* Short-cuts to get to dynamic linker sections. */
199 asection *sgot;
200 asection *sgotplt;
201 asection *srelgot;
202 asection *splt;
203 asection *srelplt;
204 asection *sdynbss;
205 asection *srelbss;
206
207 /* Small local sym to section mapping cache. */
208 struct sym_sec_cache sym_sec;
209 };
210
211 /* Create an entry in an ARM ELF linker hash table. */
212
213 static struct bfd_hash_entry *
214 elf32_arm_link_hash_newfunc (struct bfd_hash_entry * entry,
215 struct bfd_hash_table * table,
216 const char * string)
217 {
218 struct elf32_arm_link_hash_entry * ret =
219 (struct elf32_arm_link_hash_entry *) entry;
220
221 /* Allocate the structure if it has not already been allocated by a
222 subclass. */
223 if (ret == (struct elf32_arm_link_hash_entry *) NULL)
224 ret = bfd_hash_allocate (table, sizeof (struct elf32_arm_link_hash_entry));
225 if (ret == NULL)
226 return (struct bfd_hash_entry *) ret;
227
228 /* Call the allocation method of the superclass. */
229 ret = ((struct elf32_arm_link_hash_entry *)
230 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
231 table, string));
232 if (ret != NULL)
233 ret->relocs_copied = NULL;
234
235 return (struct bfd_hash_entry *) ret;
236 }
237
238 /* Create .got, .gotplt, and .rel.got sections in DYNOBJ, and set up
239 shortcuts to them in our hash table. */
240
241 static bfd_boolean
242 create_got_section (bfd *dynobj, struct bfd_link_info *info)
243 {
244 struct elf32_arm_link_hash_table *htab;
245
246 htab = elf32_arm_hash_table (info);
247 /* BPABI objects never have a GOT, or associated sections. */
248 if (htab->symbian_p)
249 return TRUE;
250
251 if (! _bfd_elf_create_got_section (dynobj, info))
252 return FALSE;
253
254 htab->sgot = bfd_get_section_by_name (dynobj, ".got");
255 htab->sgotplt = bfd_get_section_by_name (dynobj, ".got.plt");
256 if (!htab->sgot || !htab->sgotplt)
257 abort ();
258
259 htab->srelgot = bfd_make_section (dynobj, ".rel.got");
260 if (htab->srelgot == NULL
261 || ! bfd_set_section_flags (dynobj, htab->srelgot,
262 (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
263 | SEC_IN_MEMORY | SEC_LINKER_CREATED
264 | SEC_READONLY))
265 || ! bfd_set_section_alignment (dynobj, htab->srelgot, 2))
266 return FALSE;
267 return TRUE;
268 }
269
270 /* Create .plt, .rel.plt, .got, .got.plt, .rel.got, .dynbss, and
271 .rel.bss sections in DYNOBJ, and set up shortcuts to them in our
272 hash table. */
273
274 static bfd_boolean
275 elf32_arm_create_dynamic_sections (bfd *dynobj, struct bfd_link_info *info)
276 {
277 struct elf32_arm_link_hash_table *htab;
278
279 htab = elf32_arm_hash_table (info);
280 if (!htab->sgot && !create_got_section (dynobj, info))
281 return FALSE;
282
283 if (!_bfd_elf_create_dynamic_sections (dynobj, info))
284 return FALSE;
285
286 htab->splt = bfd_get_section_by_name (dynobj, ".plt");
287 htab->srelplt = bfd_get_section_by_name (dynobj, ".rel.plt");
288 htab->sdynbss = bfd_get_section_by_name (dynobj, ".dynbss");
289 if (!info->shared)
290 htab->srelbss = bfd_get_section_by_name (dynobj, ".rel.bss");
291
292 if (!htab->splt
293 || !htab->srelplt
294 || !htab->sdynbss
295 || (!info->shared && !htab->srelbss))
296 abort ();
297
298 return TRUE;
299 }
300
301 /* Copy the extra info we tack onto an elf_link_hash_entry. */
302
303 static void
304 elf32_arm_copy_indirect_symbol (const struct elf_backend_data *bed,
305 struct elf_link_hash_entry *dir,
306 struct elf_link_hash_entry *ind)
307 {
308 struct elf32_arm_link_hash_entry *edir, *eind;
309
310 edir = (struct elf32_arm_link_hash_entry *) dir;
311 eind = (struct elf32_arm_link_hash_entry *) ind;
312
313 if (eind->relocs_copied != NULL)
314 {
315 if (edir->relocs_copied != NULL)
316 {
317 struct elf32_arm_relocs_copied **pp;
318 struct elf32_arm_relocs_copied *p;
319
320 if (ind->root.type == bfd_link_hash_indirect)
321 abort ();
322
323 /* Add reloc counts against the weak sym to the strong sym
324 list. Merge any entries against the same section. */
325 for (pp = &eind->relocs_copied; (p = *pp) != NULL; )
326 {
327 struct elf32_arm_relocs_copied *q;
328
329 for (q = edir->relocs_copied; q != NULL; q = q->next)
330 if (q->section == p->section)
331 {
332 q->count += p->count;
333 *pp = p->next;
334 break;
335 }
336 if (q == NULL)
337 pp = &p->next;
338 }
339 *pp = edir->relocs_copied;
340 }
341
342 edir->relocs_copied = eind->relocs_copied;
343 eind->relocs_copied = NULL;
344 }
345
346 _bfd_elf_link_hash_copy_indirect (bed, dir, ind);
347 }
348
349 /* Create an ARM elf linker hash table. */
350
351 static struct bfd_link_hash_table *
352 elf32_arm_link_hash_table_create (bfd *abfd)
353 {
354 struct elf32_arm_link_hash_table *ret;
355 bfd_size_type amt = sizeof (struct elf32_arm_link_hash_table);
356
357 ret = bfd_malloc (amt);
358 if (ret == NULL)
359 return NULL;
360
361 if (!_bfd_elf_link_hash_table_init (& ret->root, abfd,
362 elf32_arm_link_hash_newfunc))
363 {
364 free (ret);
365 return NULL;
366 }
367
368 ret->sgot = NULL;
369 ret->sgotplt = NULL;
370 ret->srelgot = NULL;
371 ret->splt = NULL;
372 ret->srelplt = NULL;
373 ret->sdynbss = NULL;
374 ret->srelbss = NULL;
375 ret->thumb_glue_size = 0;
376 ret->arm_glue_size = 0;
377 ret->bfd_of_glue_owner = NULL;
378 ret->no_pipeline_knowledge = 0;
379 ret->byteswap_code = 0;
380 ret->target1_is_rel = 0;
381 #ifdef FOUR_WORD_PLT
382 ret->plt_header_size = 16;
383 ret->plt_entry_size = 16;
384 #else
385 ret->plt_header_size = 20;
386 ret->plt_entry_size = 12;
387 #endif
388 ret->symbian_p = 0;
389 ret->sym_sec.abfd = NULL;
390
391 return &ret->root.root;
392 }
393
394 /* Locate the Thumb encoded calling stub for NAME. */
395
396 static struct elf_link_hash_entry *
397 find_thumb_glue (struct bfd_link_info *link_info,
398 const char *name,
399 bfd *input_bfd)
400 {
401 char *tmp_name;
402 struct elf_link_hash_entry *hash;
403 struct elf32_arm_link_hash_table *hash_table;
404
405 /* We need a pointer to the armelf specific hash table. */
406 hash_table = elf32_arm_hash_table (link_info);
407
408 tmp_name = bfd_malloc ((bfd_size_type) strlen (name)
409 + strlen (THUMB2ARM_GLUE_ENTRY_NAME) + 1);
410
411 BFD_ASSERT (tmp_name);
412
413 sprintf (tmp_name, THUMB2ARM_GLUE_ENTRY_NAME, name);
414
415 hash = elf_link_hash_lookup
416 (&(hash_table)->root, tmp_name, FALSE, FALSE, TRUE);
417
418 if (hash == NULL)
419 /* xgettext:c-format */
420 (*_bfd_error_handler) (_("%B: unable to find THUMB glue '%s' for `%s'"),
421 input_bfd, tmp_name, name);
422
423 free (tmp_name);
424
425 return hash;
426 }
427
428 /* Locate the ARM encoded calling stub for NAME. */
429
430 static struct elf_link_hash_entry *
431 find_arm_glue (struct bfd_link_info *link_info,
432 const char *name,
433 bfd *input_bfd)
434 {
435 char *tmp_name;
436 struct elf_link_hash_entry *myh;
437 struct elf32_arm_link_hash_table *hash_table;
438
439 /* We need a pointer to the elfarm specific hash table. */
440 hash_table = elf32_arm_hash_table (link_info);
441
442 tmp_name = bfd_malloc ((bfd_size_type) strlen (name)
443 + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
444
445 BFD_ASSERT (tmp_name);
446
447 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
448
449 myh = elf_link_hash_lookup
450 (&(hash_table)->root, tmp_name, FALSE, FALSE, TRUE);
451
452 if (myh == NULL)
453 /* xgettext:c-format */
454 (*_bfd_error_handler) (_("%B: unable to find ARM glue '%s' for `%s'"),
455 input_bfd, tmp_name, name);
456
457 free (tmp_name);
458
459 return myh;
460 }
461
462 /* ARM->Thumb glue:
463
464 .arm
465 __func_from_arm:
466 ldr r12, __func_addr
467 bx r12
468 __func_addr:
469 .word func @ behave as if you saw a ARM_32 reloc. */
470
471 #define ARM2THUMB_GLUE_SIZE 12
472 static const insn32 a2t1_ldr_insn = 0xe59fc000;
473 static const insn32 a2t2_bx_r12_insn = 0xe12fff1c;
474 static const insn32 a2t3_func_addr_insn = 0x00000001;
475
476 /* Thumb->ARM: Thumb->(non-interworking aware) ARM
477
478 .thumb .thumb
479 .align 2 .align 2
480 __func_from_thumb: __func_from_thumb:
481 bx pc push {r6, lr}
482 nop ldr r6, __func_addr
483 .arm mov lr, pc
484 __func_change_to_arm: bx r6
485 b func .arm
486 __func_back_to_thumb:
487 ldmia r13! {r6, lr}
488 bx lr
489 __func_addr:
490 .word func */
491
492 #define THUMB2ARM_GLUE_SIZE 8
493 static const insn16 t2a1_bx_pc_insn = 0x4778;
494 static const insn16 t2a2_noop_insn = 0x46c0;
495 static const insn32 t2a3_b_insn = 0xea000000;
496
497 #ifndef ELFARM_NABI_C_INCLUDED
498 bfd_boolean
499 bfd_elf32_arm_allocate_interworking_sections (struct bfd_link_info * info)
500 {
501 asection * s;
502 bfd_byte * foo;
503 struct elf32_arm_link_hash_table * globals;
504
505 globals = elf32_arm_hash_table (info);
506
507 BFD_ASSERT (globals != NULL);
508
509 if (globals->arm_glue_size != 0)
510 {
511 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
512
513 s = bfd_get_section_by_name (globals->bfd_of_glue_owner,
514 ARM2THUMB_GLUE_SECTION_NAME);
515
516 BFD_ASSERT (s != NULL);
517
518 foo = bfd_alloc (globals->bfd_of_glue_owner, globals->arm_glue_size);
519
520 s->size = globals->arm_glue_size;
521 s->contents = foo;
522 }
523
524 if (globals->thumb_glue_size != 0)
525 {
526 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
527
528 s = bfd_get_section_by_name
529 (globals->bfd_of_glue_owner, THUMB2ARM_GLUE_SECTION_NAME);
530
531 BFD_ASSERT (s != NULL);
532
533 foo = bfd_alloc (globals->bfd_of_glue_owner, globals->thumb_glue_size);
534
535 s->size = globals->thumb_glue_size;
536 s->contents = foo;
537 }
538
539 return TRUE;
540 }
541
542 static void
543 record_arm_to_thumb_glue (struct bfd_link_info * link_info,
544 struct elf_link_hash_entry * h)
545 {
546 const char * name = h->root.root.string;
547 asection * s;
548 char * tmp_name;
549 struct elf_link_hash_entry * myh;
550 struct bfd_link_hash_entry * bh;
551 struct elf32_arm_link_hash_table * globals;
552 bfd_vma val;
553
554 globals = elf32_arm_hash_table (link_info);
555
556 BFD_ASSERT (globals != NULL);
557 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
558
559 s = bfd_get_section_by_name
560 (globals->bfd_of_glue_owner, ARM2THUMB_GLUE_SECTION_NAME);
561
562 BFD_ASSERT (s != NULL);
563
564 tmp_name = bfd_malloc ((bfd_size_type) strlen (name) + strlen (ARM2THUMB_GLUE_ENTRY_NAME) + 1);
565
566 BFD_ASSERT (tmp_name);
567
568 sprintf (tmp_name, ARM2THUMB_GLUE_ENTRY_NAME, name);
569
570 myh = elf_link_hash_lookup
571 (&(globals)->root, tmp_name, FALSE, FALSE, TRUE);
572
573 if (myh != NULL)
574 {
575 /* We've already seen this guy. */
576 free (tmp_name);
577 return;
578 }
579
580 /* The only trick here is using hash_table->arm_glue_size as the value.
581 Even though the section isn't allocated yet, this is where we will be
582 putting it. */
583 bh = NULL;
584 val = globals->arm_glue_size + 1;
585 _bfd_generic_link_add_one_symbol (link_info, globals->bfd_of_glue_owner,
586 tmp_name, BSF_GLOBAL, s, val,
587 NULL, TRUE, FALSE, &bh);
588
589 free (tmp_name);
590
591 globals->arm_glue_size += ARM2THUMB_GLUE_SIZE;
592
593 return;
594 }
595
596 static void
597 record_thumb_to_arm_glue (struct bfd_link_info *link_info,
598 struct elf_link_hash_entry *h)
599 {
600 const char *name = h->root.root.string;
601 asection *s;
602 char *tmp_name;
603 struct elf_link_hash_entry *myh;
604 struct bfd_link_hash_entry *bh;
605 struct elf32_arm_link_hash_table *hash_table;
606 char bind;
607 bfd_vma val;
608
609 hash_table = elf32_arm_hash_table (link_info);
610
611 BFD_ASSERT (hash_table != NULL);
612 BFD_ASSERT (hash_table->bfd_of_glue_owner != NULL);
613
614 s = bfd_get_section_by_name
615 (hash_table->bfd_of_glue_owner, THUMB2ARM_GLUE_SECTION_NAME);
616
617 BFD_ASSERT (s != NULL);
618
619 tmp_name = bfd_malloc ((bfd_size_type) strlen (name)
620 + strlen (THUMB2ARM_GLUE_ENTRY_NAME) + 1);
621
622 BFD_ASSERT (tmp_name);
623
624 sprintf (tmp_name, THUMB2ARM_GLUE_ENTRY_NAME, name);
625
626 myh = elf_link_hash_lookup
627 (&(hash_table)->root, tmp_name, FALSE, FALSE, TRUE);
628
629 if (myh != NULL)
630 {
631 /* We've already seen this guy. */
632 free (tmp_name);
633 return;
634 }
635
636 bh = NULL;
637 val = hash_table->thumb_glue_size + 1;
638 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
639 tmp_name, BSF_GLOBAL, s, val,
640 NULL, TRUE, FALSE, &bh);
641
642 /* If we mark it 'Thumb', the disassembler will do a better job. */
643 myh = (struct elf_link_hash_entry *) bh;
644 bind = ELF_ST_BIND (myh->type);
645 myh->type = ELF_ST_INFO (bind, STT_ARM_TFUNC);
646
647 free (tmp_name);
648
649 #define CHANGE_TO_ARM "__%s_change_to_arm"
650 #define BACK_FROM_ARM "__%s_back_from_arm"
651
652 /* Allocate another symbol to mark where we switch to Arm mode. */
653 tmp_name = bfd_malloc ((bfd_size_type) strlen (name)
654 + strlen (CHANGE_TO_ARM) + 1);
655
656 BFD_ASSERT (tmp_name);
657
658 sprintf (tmp_name, CHANGE_TO_ARM, name);
659
660 bh = NULL;
661 val = hash_table->thumb_glue_size + 4,
662 _bfd_generic_link_add_one_symbol (link_info, hash_table->bfd_of_glue_owner,
663 tmp_name, BSF_LOCAL, s, val,
664 NULL, TRUE, FALSE, &bh);
665
666 free (tmp_name);
667
668 hash_table->thumb_glue_size += THUMB2ARM_GLUE_SIZE;
669
670 return;
671 }
672
673 /* Add the glue sections to ABFD. This function is called from the
674 linker scripts in ld/emultempl/{armelf}.em. */
675
676 bfd_boolean
677 bfd_elf32_arm_add_glue_sections_to_bfd (bfd *abfd,
678 struct bfd_link_info *info)
679 {
680 flagword flags;
681 asection *sec;
682
683 /* If we are only performing a partial
684 link do not bother adding the glue. */
685 if (info->relocatable)
686 return TRUE;
687
688 sec = bfd_get_section_by_name (abfd, ARM2THUMB_GLUE_SECTION_NAME);
689
690 if (sec == NULL)
691 {
692 /* Note: we do not include the flag SEC_LINKER_CREATED, as this
693 will prevent elf_link_input_bfd() from processing the contents
694 of this section. */
695 flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY | SEC_CODE | SEC_READONLY;
696
697 sec = bfd_make_section (abfd, ARM2THUMB_GLUE_SECTION_NAME);
698
699 if (sec == NULL
700 || !bfd_set_section_flags (abfd, sec, flags)
701 || !bfd_set_section_alignment (abfd, sec, 2))
702 return FALSE;
703
704 /* Set the gc mark to prevent the section from being removed by garbage
705 collection, despite the fact that no relocs refer to this section. */
706 sec->gc_mark = 1;
707 }
708
709 sec = bfd_get_section_by_name (abfd, THUMB2ARM_GLUE_SECTION_NAME);
710
711 if (sec == NULL)
712 {
713 flags = SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
714 | SEC_CODE | SEC_READONLY;
715
716 sec = bfd_make_section (abfd, THUMB2ARM_GLUE_SECTION_NAME);
717
718 if (sec == NULL
719 || !bfd_set_section_flags (abfd, sec, flags)
720 || !bfd_set_section_alignment (abfd, sec, 2))
721 return FALSE;
722
723 sec->gc_mark = 1;
724 }
725
726 return TRUE;
727 }
728
729 /* Select a BFD to be used to hold the sections used by the glue code.
730 This function is called from the linker scripts in ld/emultempl/
731 {armelf/pe}.em */
732
733 bfd_boolean
734 bfd_elf32_arm_get_bfd_for_interworking (bfd *abfd, struct bfd_link_info *info)
735 {
736 struct elf32_arm_link_hash_table *globals;
737
738 /* If we are only performing a partial link
739 do not bother getting a bfd to hold the glue. */
740 if (info->relocatable)
741 return TRUE;
742
743 globals = elf32_arm_hash_table (info);
744
745 BFD_ASSERT (globals != NULL);
746
747 if (globals->bfd_of_glue_owner != NULL)
748 return TRUE;
749
750 /* Save the bfd for later use. */
751 globals->bfd_of_glue_owner = abfd;
752
753 return TRUE;
754 }
755
756 bfd_boolean
757 bfd_elf32_arm_process_before_allocation (bfd *abfd,
758 struct bfd_link_info *link_info,
759 int no_pipeline_knowledge,
760 int byteswap_code,
761 int target1_is_rel)
762 {
763 Elf_Internal_Shdr *symtab_hdr;
764 Elf_Internal_Rela *internal_relocs = NULL;
765 Elf_Internal_Rela *irel, *irelend;
766 bfd_byte *contents = NULL;
767
768 asection *sec;
769 struct elf32_arm_link_hash_table *globals;
770
771 /* If we are only performing a partial link do not bother
772 to construct any glue. */
773 if (link_info->relocatable)
774 return TRUE;
775
776 /* Here we have a bfd that is to be included on the link. We have a hook
777 to do reloc rummaging, before section sizes are nailed down. */
778 globals = elf32_arm_hash_table (link_info);
779
780 BFD_ASSERT (globals != NULL);
781 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
782
783 globals->no_pipeline_knowledge = no_pipeline_knowledge;
784 globals->target1_is_rel = target1_is_rel;
785 if (byteswap_code && !bfd_big_endian (abfd))
786 {
787 _bfd_error_handler (_("%B: BE8 images only valid in big-endian mode."),
788 abfd);
789 return FALSE;
790 }
791 globals->byteswap_code = byteswap_code;
792
793 /* Rummage around all the relocs and map the glue vectors. */
794 sec = abfd->sections;
795
796 if (sec == NULL)
797 return TRUE;
798
799 for (; sec != NULL; sec = sec->next)
800 {
801 if (sec->reloc_count == 0)
802 continue;
803
804 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
805
806 /* Load the relocs. */
807 internal_relocs
808 = _bfd_elf_link_read_relocs (abfd, sec, (void *) NULL,
809 (Elf_Internal_Rela *) NULL, FALSE);
810
811 if (internal_relocs == NULL)
812 goto error_return;
813
814 irelend = internal_relocs + sec->reloc_count;
815 for (irel = internal_relocs; irel < irelend; irel++)
816 {
817 long r_type;
818 unsigned long r_index;
819
820 struct elf_link_hash_entry *h;
821
822 r_type = ELF32_R_TYPE (irel->r_info);
823 r_index = ELF32_R_SYM (irel->r_info);
824
825 /* These are the only relocation types we care about. */
826 if ( r_type != R_ARM_PC24
827 && r_type != R_ARM_THM_PC22)
828 continue;
829
830 /* Get the section contents if we haven't done so already. */
831 if (contents == NULL)
832 {
833 /* Get cached copy if it exists. */
834 if (elf_section_data (sec)->this_hdr.contents != NULL)
835 contents = elf_section_data (sec)->this_hdr.contents;
836 else
837 {
838 /* Go get them off disk. */
839 if (! bfd_malloc_and_get_section (abfd, sec, &contents))
840 goto error_return;
841 }
842 }
843
844 /* If the relocation is not against a symbol it cannot concern us. */
845 h = NULL;
846
847 /* We don't care about local symbols. */
848 if (r_index < symtab_hdr->sh_info)
849 continue;
850
851 /* This is an external symbol. */
852 r_index -= symtab_hdr->sh_info;
853 h = (struct elf_link_hash_entry *)
854 elf_sym_hashes (abfd)[r_index];
855
856 /* If the relocation is against a static symbol it must be within
857 the current section and so cannot be a cross ARM/Thumb relocation. */
858 if (h == NULL)
859 continue;
860
861 switch (r_type)
862 {
863 case R_ARM_PC24:
864 /* This one is a call from arm code. We need to look up
865 the target of the call. If it is a thumb target, we
866 insert glue. */
867 if (ELF_ST_TYPE(h->type) == STT_ARM_TFUNC)
868 record_arm_to_thumb_glue (link_info, h);
869 break;
870
871 case R_ARM_THM_PC22:
872 /* This one is a call from thumb code. We look
873 up the target of the call. If it is not a thumb
874 target, we insert glue. */
875 if (ELF_ST_TYPE (h->type) != STT_ARM_TFUNC)
876 record_thumb_to_arm_glue (link_info, h);
877 break;
878
879 default:
880 break;
881 }
882 }
883
884 if (contents != NULL
885 && elf_section_data (sec)->this_hdr.contents != contents)
886 free (contents);
887 contents = NULL;
888
889 if (internal_relocs != NULL
890 && elf_section_data (sec)->relocs != internal_relocs)
891 free (internal_relocs);
892 internal_relocs = NULL;
893 }
894
895 return TRUE;
896
897 error_return:
898 if (contents != NULL
899 && elf_section_data (sec)->this_hdr.contents != contents)
900 free (contents);
901 if (internal_relocs != NULL
902 && elf_section_data (sec)->relocs != internal_relocs)
903 free (internal_relocs);
904
905 return FALSE;
906 }
907 #endif
908
909 /* The thumb form of a long branch is a bit finicky, because the offset
910 encoding is split over two fields, each in it's own instruction. They
911 can occur in any order. So given a thumb form of long branch, and an
912 offset, insert the offset into the thumb branch and return finished
913 instruction.
914
915 It takes two thumb instructions to encode the target address. Each has
916 11 bits to invest. The upper 11 bits are stored in one (identified by
917 H-0.. see below), the lower 11 bits are stored in the other (identified
918 by H-1).
919
920 Combine together and shifted left by 1 (it's a half word address) and
921 there you have it.
922
923 Op: 1111 = F,
924 H-0, upper address-0 = 000
925 Op: 1111 = F,
926 H-1, lower address-0 = 800
927
928 They can be ordered either way, but the arm tools I've seen always put
929 the lower one first. It probably doesn't matter. krk@cygnus.com
930
931 XXX: Actually the order does matter. The second instruction (H-1)
932 moves the computed address into the PC, so it must be the second one
933 in the sequence. The problem, however is that whilst little endian code
934 stores the instructions in HI then LOW order, big endian code does the
935 reverse. nickc@cygnus.com. */
936
937 #define LOW_HI_ORDER 0xF800F000
938 #define HI_LOW_ORDER 0xF000F800
939
940 static insn32
941 insert_thumb_branch (insn32 br_insn, int rel_off)
942 {
943 unsigned int low_bits;
944 unsigned int high_bits;
945
946 BFD_ASSERT ((rel_off & 1) != 1);
947
948 rel_off >>= 1; /* Half word aligned address. */
949 low_bits = rel_off & 0x000007FF; /* The bottom 11 bits. */
950 high_bits = (rel_off >> 11) & 0x000007FF; /* The top 11 bits. */
951
952 if ((br_insn & LOW_HI_ORDER) == LOW_HI_ORDER)
953 br_insn = LOW_HI_ORDER | (low_bits << 16) | high_bits;
954 else if ((br_insn & HI_LOW_ORDER) == HI_LOW_ORDER)
955 br_insn = HI_LOW_ORDER | (high_bits << 16) | low_bits;
956 else
957 /* FIXME: abort is probably not the right call. krk@cygnus.com */
958 abort (); /* Error - not a valid branch instruction form. */
959
960 return br_insn;
961 }
962
963 /* Thumb code calling an ARM function. */
964
965 static int
966 elf32_thumb_to_arm_stub (struct bfd_link_info * info,
967 const char * name,
968 bfd * input_bfd,
969 bfd * output_bfd,
970 asection * input_section,
971 bfd_byte * hit_data,
972 asection * sym_sec,
973 bfd_vma offset,
974 bfd_signed_vma addend,
975 bfd_vma val)
976 {
977 asection * s = 0;
978 bfd_vma my_offset;
979 unsigned long int tmp;
980 long int ret_offset;
981 struct elf_link_hash_entry * myh;
982 struct elf32_arm_link_hash_table * globals;
983
984 myh = find_thumb_glue (info, name, input_bfd);
985 if (myh == NULL)
986 return FALSE;
987
988 globals = elf32_arm_hash_table (info);
989
990 BFD_ASSERT (globals != NULL);
991 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
992
993 my_offset = myh->root.u.def.value;
994
995 s = bfd_get_section_by_name (globals->bfd_of_glue_owner,
996 THUMB2ARM_GLUE_SECTION_NAME);
997
998 BFD_ASSERT (s != NULL);
999 BFD_ASSERT (s->contents != NULL);
1000 BFD_ASSERT (s->output_section != NULL);
1001
1002 if ((my_offset & 0x01) == 0x01)
1003 {
1004 if (sym_sec != NULL
1005 && sym_sec->owner != NULL
1006 && !INTERWORK_FLAG (sym_sec->owner))
1007 {
1008 (*_bfd_error_handler)
1009 (_("%B(%s): warning: interworking not enabled.\n"
1010 " first occurrence: %B: thumb call to arm"),
1011 sym_sec->owner, input_bfd, name);
1012
1013 return FALSE;
1014 }
1015
1016 --my_offset;
1017 myh->root.u.def.value = my_offset;
1018
1019 bfd_put_16 (output_bfd, (bfd_vma) t2a1_bx_pc_insn,
1020 s->contents + my_offset);
1021
1022 bfd_put_16 (output_bfd, (bfd_vma) t2a2_noop_insn,
1023 s->contents + my_offset + 2);
1024
1025 ret_offset =
1026 /* Address of destination of the stub. */
1027 ((bfd_signed_vma) val)
1028 - ((bfd_signed_vma)
1029 /* Offset from the start of the current section
1030 to the start of the stubs. */
1031 (s->output_offset
1032 /* Offset of the start of this stub from the start of the stubs. */
1033 + my_offset
1034 /* Address of the start of the current section. */
1035 + s->output_section->vma)
1036 /* The branch instruction is 4 bytes into the stub. */
1037 + 4
1038 /* ARM branches work from the pc of the instruction + 8. */
1039 + 8);
1040
1041 bfd_put_32 (output_bfd,
1042 (bfd_vma) t2a3_b_insn | ((ret_offset >> 2) & 0x00FFFFFF),
1043 s->contents + my_offset + 4);
1044 }
1045
1046 BFD_ASSERT (my_offset <= globals->thumb_glue_size);
1047
1048 /* Now go back and fix up the original BL insn to point to here. */
1049 ret_offset =
1050 /* Address of where the stub is located. */
1051 (s->output_section->vma + s->output_offset + my_offset)
1052 /* Address of where the BL is located. */
1053 - (input_section->output_section->vma + input_section->output_offset
1054 + offset)
1055 /* Addend in the relocation. */
1056 - addend
1057 /* Biassing for PC-relative addressing. */
1058 - 8;
1059
1060 tmp = bfd_get_32 (input_bfd, hit_data
1061 - input_section->vma);
1062
1063 bfd_put_32 (output_bfd,
1064 (bfd_vma) insert_thumb_branch (tmp, ret_offset),
1065 hit_data - input_section->vma);
1066
1067 return TRUE;
1068 }
1069
1070 /* Arm code calling a Thumb function. */
1071
1072 static int
1073 elf32_arm_to_thumb_stub (struct bfd_link_info * info,
1074 const char * name,
1075 bfd * input_bfd,
1076 bfd * output_bfd,
1077 asection * input_section,
1078 bfd_byte * hit_data,
1079 asection * sym_sec,
1080 bfd_vma offset,
1081 bfd_signed_vma addend,
1082 bfd_vma val)
1083 {
1084 unsigned long int tmp;
1085 bfd_vma my_offset;
1086 asection * s;
1087 long int ret_offset;
1088 struct elf_link_hash_entry * myh;
1089 struct elf32_arm_link_hash_table * globals;
1090
1091 myh = find_arm_glue (info, name, input_bfd);
1092 if (myh == NULL)
1093 return FALSE;
1094
1095 globals = elf32_arm_hash_table (info);
1096
1097 BFD_ASSERT (globals != NULL);
1098 BFD_ASSERT (globals->bfd_of_glue_owner != NULL);
1099
1100 my_offset = myh->root.u.def.value;
1101 s = bfd_get_section_by_name (globals->bfd_of_glue_owner,
1102 ARM2THUMB_GLUE_SECTION_NAME);
1103 BFD_ASSERT (s != NULL);
1104 BFD_ASSERT (s->contents != NULL);
1105 BFD_ASSERT (s->output_section != NULL);
1106
1107 if ((my_offset & 0x01) == 0x01)
1108 {
1109 if (sym_sec != NULL
1110 && sym_sec->owner != NULL
1111 && !INTERWORK_FLAG (sym_sec->owner))
1112 {
1113 (*_bfd_error_handler)
1114 (_("%B(%s): warning: interworking not enabled.\n"
1115 " first occurrence: %B: arm call to thumb"),
1116 sym_sec->owner, input_bfd, name);
1117 }
1118
1119 --my_offset;
1120 myh->root.u.def.value = my_offset;
1121
1122 bfd_put_32 (output_bfd, (bfd_vma) a2t1_ldr_insn,
1123 s->contents + my_offset);
1124
1125 bfd_put_32 (output_bfd, (bfd_vma) a2t2_bx_r12_insn,
1126 s->contents + my_offset + 4);
1127
1128 /* It's a thumb address. Add the low order bit. */
1129 bfd_put_32 (output_bfd, val | a2t3_func_addr_insn,
1130 s->contents + my_offset + 8);
1131 }
1132
1133 BFD_ASSERT (my_offset <= globals->arm_glue_size);
1134
1135 tmp = bfd_get_32 (input_bfd, hit_data);
1136 tmp = tmp & 0xFF000000;
1137
1138 /* Somehow these are both 4 too far, so subtract 8. */
1139 ret_offset = (s->output_offset
1140 + my_offset
1141 + s->output_section->vma
1142 - (input_section->output_offset
1143 + input_section->output_section->vma
1144 + offset + addend)
1145 - 8);
1146
1147 tmp = tmp | ((ret_offset >> 2) & 0x00FFFFFF);
1148
1149 bfd_put_32 (output_bfd, (bfd_vma) tmp, hit_data - input_section->vma);
1150
1151 return TRUE;
1152 }
1153
1154 /* Perform a relocation as part of a final link. */
1155
1156 static bfd_reloc_status_type
1157 elf32_arm_final_link_relocate (reloc_howto_type * howto,
1158 bfd * input_bfd,
1159 bfd * output_bfd,
1160 asection * input_section,
1161 bfd_byte * contents,
1162 Elf_Internal_Rela * rel,
1163 bfd_vma value,
1164 struct bfd_link_info * info,
1165 asection * sym_sec,
1166 const char * sym_name,
1167 int sym_flags,
1168 struct elf_link_hash_entry * h)
1169 {
1170 unsigned long r_type = howto->type;
1171 unsigned long r_symndx;
1172 bfd_byte * hit_data = contents + rel->r_offset;
1173 bfd * dynobj = NULL;
1174 Elf_Internal_Shdr * symtab_hdr;
1175 struct elf_link_hash_entry ** sym_hashes;
1176 bfd_vma * local_got_offsets;
1177 asection * sgot = NULL;
1178 asection * splt = NULL;
1179 asection * sreloc = NULL;
1180 bfd_vma addend;
1181 bfd_signed_vma signed_addend;
1182 struct elf32_arm_link_hash_table * globals;
1183
1184 globals = elf32_arm_hash_table (info);
1185
1186 #ifndef OLD_ARM_ABI
1187 /* Some relocation type map to different relocations depending on the
1188 target. We pick the right one here. */
1189 if (r_type == R_ARM_TARGET1)
1190 {
1191 if (globals->target1_is_rel)
1192 r_type = R_ARM_REL32;
1193 else
1194 r_type = R_ARM_ABS32;
1195
1196 howto = &elf32_arm_howto_table[r_type];
1197 }
1198 #endif /* OLD_ARM_ABI */
1199
1200 /* If the start address has been set, then set the EF_ARM_HASENTRY
1201 flag. Setting this more than once is redundant, but the cost is
1202 not too high, and it keeps the code simple.
1203
1204 The test is done here, rather than somewhere else, because the
1205 start address is only set just before the final link commences.
1206
1207 Note - if the user deliberately sets a start address of 0, the
1208 flag will not be set. */
1209 if (bfd_get_start_address (output_bfd) != 0)
1210 elf_elfheader (output_bfd)->e_flags |= EF_ARM_HASENTRY;
1211
1212 dynobj = elf_hash_table (info)->dynobj;
1213 if (dynobj)
1214 {
1215 sgot = bfd_get_section_by_name (dynobj, ".got");
1216 splt = bfd_get_section_by_name (dynobj, ".plt");
1217 }
1218 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
1219 sym_hashes = elf_sym_hashes (input_bfd);
1220 local_got_offsets = elf_local_got_offsets (input_bfd);
1221 r_symndx = ELF32_R_SYM (rel->r_info);
1222
1223 #if USE_REL
1224 addend = bfd_get_32 (input_bfd, hit_data) & howto->src_mask;
1225
1226 if (addend & ((howto->src_mask + 1) >> 1))
1227 {
1228 signed_addend = -1;
1229 signed_addend &= ~ howto->src_mask;
1230 signed_addend |= addend;
1231 }
1232 else
1233 signed_addend = addend;
1234 #else
1235 addend = signed_addend = rel->r_addend;
1236 #endif
1237
1238 switch (r_type)
1239 {
1240 case R_ARM_NONE:
1241 return bfd_reloc_ok;
1242
1243 case R_ARM_PC24:
1244 case R_ARM_ABS32:
1245 case R_ARM_REL32:
1246 #ifndef OLD_ARM_ABI
1247 case R_ARM_XPC25:
1248 #endif
1249 case R_ARM_PLT32:
1250 /* r_symndx will be zero only for relocs against symbols
1251 from removed linkonce sections, or sections discarded by
1252 a linker script. */
1253 if (r_symndx == 0)
1254 return bfd_reloc_ok;
1255
1256 /* Handle relocations which should use the PLT entry. ABS32/REL32
1257 will use the symbol's value, which may point to a PLT entry, but we
1258 don't need to handle that here. If we created a PLT entry, all
1259 branches in this object should go to it. */
1260 if ((r_type != R_ARM_ABS32 && r_type != R_ARM_REL32)
1261 && h != NULL
1262 && splt != NULL
1263 && h->plt.offset != (bfd_vma) -1)
1264 {
1265 /* If we've created a .plt section, and assigned a PLT entry to
1266 this function, it should not be known to bind locally. If
1267 it were, we would have cleared the PLT entry. */
1268 BFD_ASSERT (!SYMBOL_CALLS_LOCAL (info, h));
1269
1270 value = (splt->output_section->vma
1271 + splt->output_offset
1272 + h->plt.offset);
1273 return _bfd_final_link_relocate (howto, input_bfd, input_section,
1274 contents, rel->r_offset, value,
1275 (bfd_vma) 0);
1276 }
1277
1278 /* When generating a shared object, these relocations are copied
1279 into the output file to be resolved at run time. */
1280 if (info->shared
1281 && (input_section->flags & SEC_ALLOC)
1282 && (r_type != R_ARM_REL32
1283 || !SYMBOL_CALLS_LOCAL (info, h))
1284 && (h == NULL
1285 || ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
1286 || h->root.type != bfd_link_hash_undefweak)
1287 && r_type != R_ARM_PC24
1288 && r_type != R_ARM_PLT32)
1289 {
1290 Elf_Internal_Rela outrel;
1291 bfd_byte *loc;
1292 bfd_boolean skip, relocate;
1293
1294 if (sreloc == NULL)
1295 {
1296 const char * name;
1297
1298 name = (bfd_elf_string_from_elf_section
1299 (input_bfd,
1300 elf_elfheader (input_bfd)->e_shstrndx,
1301 elf_section_data (input_section)->rel_hdr.sh_name));
1302 if (name == NULL)
1303 return bfd_reloc_notsupported;
1304
1305 BFD_ASSERT (strncmp (name, ".rel", 4) == 0
1306 && strcmp (bfd_get_section_name (input_bfd,
1307 input_section),
1308 name + 4) == 0);
1309
1310 sreloc = bfd_get_section_by_name (dynobj, name);
1311 BFD_ASSERT (sreloc != NULL);
1312 }
1313
1314 skip = FALSE;
1315 relocate = FALSE;
1316
1317 outrel.r_offset =
1318 _bfd_elf_section_offset (output_bfd, info, input_section,
1319 rel->r_offset);
1320 if (outrel.r_offset == (bfd_vma) -1)
1321 skip = TRUE;
1322 else if (outrel.r_offset == (bfd_vma) -2)
1323 skip = TRUE, relocate = TRUE;
1324 outrel.r_offset += (input_section->output_section->vma
1325 + input_section->output_offset);
1326
1327 if (skip)
1328 memset (&outrel, 0, sizeof outrel);
1329 else if (h != NULL
1330 && h->dynindx != -1
1331 && (!info->shared
1332 || !info->symbolic
1333 || (h->elf_link_hash_flags
1334 & ELF_LINK_HASH_DEF_REGULAR) == 0))
1335 outrel.r_info = ELF32_R_INFO (h->dynindx, r_type);
1336 else
1337 {
1338 /* This symbol is local, or marked to become local. */
1339 relocate = TRUE;
1340 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
1341 }
1342
1343 loc = sreloc->contents;
1344 loc += sreloc->reloc_count++ * sizeof (Elf32_External_Rel);
1345 bfd_elf32_swap_reloc_out (output_bfd, &outrel, loc);
1346
1347 /* If this reloc is against an external symbol, we do not want to
1348 fiddle with the addend. Otherwise, we need to include the symbol
1349 value so that it becomes an addend for the dynamic reloc. */
1350 if (! relocate)
1351 return bfd_reloc_ok;
1352
1353 return _bfd_final_link_relocate (howto, input_bfd, input_section,
1354 contents, rel->r_offset, value,
1355 (bfd_vma) 0);
1356 }
1357 else switch (r_type)
1358 {
1359 #ifndef OLD_ARM_ABI
1360 case R_ARM_XPC25: /* Arm BLX instruction. */
1361 #endif
1362 case R_ARM_PC24: /* Arm B/BL instruction */
1363 case R_ARM_PLT32:
1364 #ifndef OLD_ARM_ABI
1365 if (r_type == R_ARM_XPC25)
1366 {
1367 /* Check for Arm calling Arm function. */
1368 /* FIXME: Should we translate the instruction into a BL
1369 instruction instead ? */
1370 if (sym_flags != STT_ARM_TFUNC)
1371 (*_bfd_error_handler)
1372 (_("\%B: Warning: Arm BLX instruction targets Arm function '%s'."),
1373 input_bfd,
1374 h ? h->root.root.string : "(local)");
1375 }
1376 else
1377 #endif
1378 {
1379 /* Check for Arm calling Thumb function. */
1380 if (sym_flags == STT_ARM_TFUNC)
1381 {
1382 elf32_arm_to_thumb_stub (info, sym_name, input_bfd,
1383 output_bfd, input_section,
1384 hit_data, sym_sec, rel->r_offset,
1385 signed_addend, value);
1386 return bfd_reloc_ok;
1387 }
1388 }
1389
1390 if ( strcmp (bfd_get_target (input_bfd), "elf32-littlearm-oabi") == 0
1391 || strcmp (bfd_get_target (input_bfd), "elf32-bigarm-oabi") == 0)
1392 {
1393 /* The old way of doing things. Trearing the addend as a
1394 byte sized field and adding in the pipeline offset. */
1395 value -= (input_section->output_section->vma
1396 + input_section->output_offset);
1397 value -= rel->r_offset;
1398 value += addend;
1399
1400 if (! globals->no_pipeline_knowledge)
1401 value -= 8;
1402 }
1403 else
1404 {
1405 /* The ARM ELF ABI says that this reloc is computed as: S - P + A
1406 where:
1407 S is the address of the symbol in the relocation.
1408 P is address of the instruction being relocated.
1409 A is the addend (extracted from the instruction) in bytes.
1410
1411 S is held in 'value'.
1412 P is the base address of the section containing the
1413 instruction plus the offset of the reloc into that
1414 section, ie:
1415 (input_section->output_section->vma +
1416 input_section->output_offset +
1417 rel->r_offset).
1418 A is the addend, converted into bytes, ie:
1419 (signed_addend * 4)
1420
1421 Note: None of these operations have knowledge of the pipeline
1422 size of the processor, thus it is up to the assembler to
1423 encode this information into the addend. */
1424 value -= (input_section->output_section->vma
1425 + input_section->output_offset);
1426 value -= rel->r_offset;
1427 value += (signed_addend << howto->size);
1428
1429 /* Previous versions of this code also used to add in the
1430 pipeline offset here. This is wrong because the linker is
1431 not supposed to know about such things, and one day it might
1432 change. In order to support old binaries that need the old
1433 behaviour however, so we attempt to detect which ABI was
1434 used to create the reloc. */
1435 if (! globals->no_pipeline_knowledge)
1436 {
1437 Elf_Internal_Ehdr * i_ehdrp; /* Elf file header, internal form */
1438
1439 i_ehdrp = elf_elfheader (input_bfd);
1440
1441 if (i_ehdrp->e_ident[EI_OSABI] == 0)
1442 value -= 8;
1443 }
1444 }
1445
1446 signed_addend = value;
1447 signed_addend >>= howto->rightshift;
1448
1449 /* It is not an error for an undefined weak reference to be
1450 out of range. Any program that branches to such a symbol
1451 is going to crash anyway, so there is no point worrying
1452 about getting the destination exactly right. */
1453 if (! h || h->root.type != bfd_link_hash_undefweak)
1454 {
1455 /* Perform a signed range check. */
1456 if ( signed_addend > ((bfd_signed_vma) (howto->dst_mask >> 1))
1457 || signed_addend < - ((bfd_signed_vma) ((howto->dst_mask + 1) >> 1)))
1458 return bfd_reloc_overflow;
1459 }
1460
1461 #ifndef OLD_ARM_ABI
1462 /* If necessary set the H bit in the BLX instruction. */
1463 if (r_type == R_ARM_XPC25 && ((value & 2) == 2))
1464 value = (signed_addend & howto->dst_mask)
1465 | (bfd_get_32 (input_bfd, hit_data) & (~ howto->dst_mask))
1466 | (1 << 24);
1467 else
1468 #endif
1469 value = (signed_addend & howto->dst_mask)
1470 | (bfd_get_32 (input_bfd, hit_data) & (~ howto->dst_mask));
1471 break;
1472
1473 case R_ARM_ABS32:
1474 value += addend;
1475 if (sym_flags == STT_ARM_TFUNC)
1476 value |= 1;
1477 break;
1478
1479 case R_ARM_REL32:
1480 value -= (input_section->output_section->vma
1481 + input_section->output_offset + rel->r_offset);
1482 value += addend;
1483 break;
1484 }
1485
1486 bfd_put_32 (input_bfd, value, hit_data);
1487 return bfd_reloc_ok;
1488
1489 case R_ARM_ABS8:
1490 value += addend;
1491 if ((long) value > 0x7f || (long) value < -0x80)
1492 return bfd_reloc_overflow;
1493
1494 bfd_put_8 (input_bfd, value, hit_data);
1495 return bfd_reloc_ok;
1496
1497 case R_ARM_ABS16:
1498 value += addend;
1499
1500 if ((long) value > 0x7fff || (long) value < -0x8000)
1501 return bfd_reloc_overflow;
1502
1503 bfd_put_16 (input_bfd, value, hit_data);
1504 return bfd_reloc_ok;
1505
1506 case R_ARM_ABS12:
1507 /* Support ldr and str instruction for the arm */
1508 /* Also thumb b (unconditional branch). ??? Really? */
1509 value += addend;
1510
1511 if ((long) value > 0x7ff || (long) value < -0x800)
1512 return bfd_reloc_overflow;
1513
1514 value |= (bfd_get_32 (input_bfd, hit_data) & 0xfffff000);
1515 bfd_put_32 (input_bfd, value, hit_data);
1516 return bfd_reloc_ok;
1517
1518 case R_ARM_THM_ABS5:
1519 /* Support ldr and str instructions for the thumb. */
1520 #if USE_REL
1521 /* Need to refetch addend. */
1522 addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
1523 /* ??? Need to determine shift amount from operand size. */
1524 addend >>= howto->rightshift;
1525 #endif
1526 value += addend;
1527
1528 /* ??? Isn't value unsigned? */
1529 if ((long) value > 0x1f || (long) value < -0x10)
1530 return bfd_reloc_overflow;
1531
1532 /* ??? Value needs to be properly shifted into place first. */
1533 value |= bfd_get_16 (input_bfd, hit_data) & 0xf83f;
1534 bfd_put_16 (input_bfd, value, hit_data);
1535 return bfd_reloc_ok;
1536
1537 #ifndef OLD_ARM_ABI
1538 case R_ARM_THM_XPC22:
1539 #endif
1540 case R_ARM_THM_PC22:
1541 /* Thumb BL (branch long instruction). */
1542 {
1543 bfd_vma relocation;
1544 bfd_boolean overflow = FALSE;
1545 bfd_vma upper_insn = bfd_get_16 (input_bfd, hit_data);
1546 bfd_vma lower_insn = bfd_get_16 (input_bfd, hit_data + 2);
1547 bfd_signed_vma reloc_signed_max = ((1 << (howto->bitsize - 1)) - 1) >> howto->rightshift;
1548 bfd_signed_vma reloc_signed_min = ~ reloc_signed_max;
1549 bfd_vma check;
1550 bfd_signed_vma signed_check;
1551
1552 #if USE_REL
1553 /* Need to refetch the addend and squish the two 11 bit pieces
1554 together. */
1555 {
1556 bfd_vma upper = upper_insn & 0x7ff;
1557 bfd_vma lower = lower_insn & 0x7ff;
1558 upper = (upper ^ 0x400) - 0x400; /* Sign extend. */
1559 addend = (upper << 12) | (lower << 1);
1560 signed_addend = addend;
1561 }
1562 #endif
1563 #ifndef OLD_ARM_ABI
1564 if (r_type == R_ARM_THM_XPC22)
1565 {
1566 /* Check for Thumb to Thumb call. */
1567 /* FIXME: Should we translate the instruction into a BL
1568 instruction instead ? */
1569 if (sym_flags == STT_ARM_TFUNC)
1570 (*_bfd_error_handler)
1571 (_("%B: Warning: Thumb BLX instruction targets thumb function '%s'."),
1572 input_bfd,
1573 h ? h->root.root.string : "(local)");
1574 }
1575 else
1576 #endif
1577 {
1578 /* If it is not a call to Thumb, assume call to Arm.
1579 If it is a call relative to a section name, then it is not a
1580 function call at all, but rather a long jump. */
1581 if (sym_flags != STT_ARM_TFUNC && sym_flags != STT_SECTION)
1582 {
1583 if (elf32_thumb_to_arm_stub
1584 (info, sym_name, input_bfd, output_bfd, input_section,
1585 hit_data, sym_sec, rel->r_offset, signed_addend, value))
1586 return bfd_reloc_ok;
1587 else
1588 return bfd_reloc_dangerous;
1589 }
1590 }
1591
1592 relocation = value + signed_addend;
1593
1594 relocation -= (input_section->output_section->vma
1595 + input_section->output_offset
1596 + rel->r_offset);
1597
1598 if (! globals->no_pipeline_knowledge)
1599 {
1600 Elf_Internal_Ehdr * i_ehdrp; /* Elf file header, internal form. */
1601
1602 i_ehdrp = elf_elfheader (input_bfd);
1603
1604 /* Previous versions of this code also used to add in the pipline
1605 offset here. This is wrong because the linker is not supposed
1606 to know about such things, and one day it might change. In order
1607 to support old binaries that need the old behaviour however, so
1608 we attempt to detect which ABI was used to create the reloc. */
1609 if ( strcmp (bfd_get_target (input_bfd), "elf32-littlearm-oabi") == 0
1610 || strcmp (bfd_get_target (input_bfd), "elf32-bigarm-oabi") == 0
1611 || i_ehdrp->e_ident[EI_OSABI] == 0)
1612 relocation += 4;
1613 }
1614
1615 check = relocation >> howto->rightshift;
1616
1617 /* If this is a signed value, the rightshift just dropped
1618 leading 1 bits (assuming twos complement). */
1619 if ((bfd_signed_vma) relocation >= 0)
1620 signed_check = check;
1621 else
1622 signed_check = check | ~((bfd_vma) -1 >> howto->rightshift);
1623
1624 /* Assumes two's complement. */
1625 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
1626 overflow = TRUE;
1627
1628 #ifndef OLD_ARM_ABI
1629 if (r_type == R_ARM_THM_XPC22
1630 && ((lower_insn & 0x1800) == 0x0800))
1631 /* For a BLX instruction, make sure that the relocation is rounded up
1632 to a word boundary. This follows the semantics of the instruction
1633 which specifies that bit 1 of the target address will come from bit
1634 1 of the base address. */
1635 relocation = (relocation + 2) & ~ 3;
1636 #endif
1637 /* Put RELOCATION back into the insn. */
1638 upper_insn = (upper_insn & ~(bfd_vma) 0x7ff) | ((relocation >> 12) & 0x7ff);
1639 lower_insn = (lower_insn & ~(bfd_vma) 0x7ff) | ((relocation >> 1) & 0x7ff);
1640
1641 /* Put the relocated value back in the object file: */
1642 bfd_put_16 (input_bfd, upper_insn, hit_data);
1643 bfd_put_16 (input_bfd, lower_insn, hit_data + 2);
1644
1645 return (overflow ? bfd_reloc_overflow : bfd_reloc_ok);
1646 }
1647 break;
1648
1649 case R_ARM_THM_PC11:
1650 /* Thumb B (branch) instruction). */
1651 {
1652 bfd_signed_vma relocation;
1653 bfd_signed_vma reloc_signed_max = (1 << (howto->bitsize - 1)) - 1;
1654 bfd_signed_vma reloc_signed_min = ~ reloc_signed_max;
1655 bfd_signed_vma signed_check;
1656
1657 #if USE_REL
1658 /* Need to refetch addend. */
1659 addend = bfd_get_16 (input_bfd, hit_data) & howto->src_mask;
1660 if (addend & ((howto->src_mask + 1) >> 1))
1661 {
1662 signed_addend = -1;
1663 signed_addend &= ~ howto->src_mask;
1664 signed_addend |= addend;
1665 }
1666 else
1667 signed_addend = addend;
1668 /* The value in the insn has been right shifted. We need to
1669 undo this, so that we can perform the address calculation
1670 in terms of bytes. */
1671 signed_addend <<= howto->rightshift;
1672 #endif
1673 relocation = value + signed_addend;
1674
1675 relocation -= (input_section->output_section->vma
1676 + input_section->output_offset
1677 + rel->r_offset);
1678
1679 relocation >>= howto->rightshift;
1680 signed_check = relocation;
1681 relocation &= howto->dst_mask;
1682 relocation |= (bfd_get_16 (input_bfd, hit_data) & (~ howto->dst_mask));
1683
1684 bfd_put_16 (input_bfd, relocation, hit_data);
1685
1686 /* Assumes two's complement. */
1687 if (signed_check > reloc_signed_max || signed_check < reloc_signed_min)
1688 return bfd_reloc_overflow;
1689
1690 return bfd_reloc_ok;
1691 }
1692
1693 #ifndef OLD_ARM_ABI
1694 case R_ARM_ALU_PCREL7_0:
1695 case R_ARM_ALU_PCREL15_8:
1696 case R_ARM_ALU_PCREL23_15:
1697 {
1698 bfd_vma insn;
1699 bfd_vma relocation;
1700
1701 insn = bfd_get_32 (input_bfd, hit_data);
1702 #if USE_REL
1703 /* Extract the addend. */
1704 addend = (insn & 0xff) << ((insn & 0xf00) >> 7);
1705 signed_addend = addend;
1706 #endif
1707 relocation = value + signed_addend;
1708
1709 relocation -= (input_section->output_section->vma
1710 + input_section->output_offset
1711 + rel->r_offset);
1712 insn = (insn & ~0xfff)
1713 | ((howto->bitpos << 7) & 0xf00)
1714 | ((relocation >> howto->bitpos) & 0xff);
1715 bfd_put_32 (input_bfd, value, hit_data);
1716 }
1717 return bfd_reloc_ok;
1718 #endif
1719
1720 case R_ARM_GNU_VTINHERIT:
1721 case R_ARM_GNU_VTENTRY:
1722 return bfd_reloc_ok;
1723
1724 case R_ARM_COPY:
1725 return bfd_reloc_notsupported;
1726
1727 case R_ARM_GLOB_DAT:
1728 return bfd_reloc_notsupported;
1729
1730 case R_ARM_JUMP_SLOT:
1731 return bfd_reloc_notsupported;
1732
1733 case R_ARM_RELATIVE:
1734 return bfd_reloc_notsupported;
1735
1736 case R_ARM_GOTOFF:
1737 /* Relocation is relative to the start of the
1738 global offset table. */
1739
1740 BFD_ASSERT (sgot != NULL);
1741 if (sgot == NULL)
1742 return bfd_reloc_notsupported;
1743
1744 /* If we are addressing a Thumb function, we need to adjust the
1745 address by one, so that attempts to call the function pointer will
1746 correctly interpret it as Thumb code. */
1747 if (sym_flags == STT_ARM_TFUNC)
1748 value += 1;
1749
1750 /* Note that sgot->output_offset is not involved in this
1751 calculation. We always want the start of .got. If we
1752 define _GLOBAL_OFFSET_TABLE in a different way, as is
1753 permitted by the ABI, we might have to change this
1754 calculation. */
1755 value -= sgot->output_section->vma;
1756 return _bfd_final_link_relocate (howto, input_bfd, input_section,
1757 contents, rel->r_offset, value,
1758 (bfd_vma) 0);
1759
1760 case R_ARM_GOTPC:
1761 /* Use global offset table as symbol value. */
1762 BFD_ASSERT (sgot != NULL);
1763
1764 if (sgot == NULL)
1765 return bfd_reloc_notsupported;
1766
1767 value = sgot->output_section->vma;
1768 return _bfd_final_link_relocate (howto, input_bfd, input_section,
1769 contents, rel->r_offset, value,
1770 (bfd_vma) 0);
1771
1772 case R_ARM_GOT32:
1773 /* Relocation is to the entry for this symbol in the
1774 global offset table. */
1775 if (sgot == NULL)
1776 return bfd_reloc_notsupported;
1777
1778 if (h != NULL)
1779 {
1780 bfd_vma off;
1781 bfd_boolean dyn;
1782
1783 off = h->got.offset;
1784 BFD_ASSERT (off != (bfd_vma) -1);
1785 dyn = globals->root.dynamic_sections_created;
1786
1787 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
1788 || (info->shared
1789 && SYMBOL_REFERENCES_LOCAL (info, h))
1790 || (ELF_ST_VISIBILITY (h->other)
1791 && h->root.type == bfd_link_hash_undefweak))
1792 {
1793 /* This is actually a static link, or it is a -Bsymbolic link
1794 and the symbol is defined locally. We must initialize this
1795 entry in the global offset table. Since the offset must
1796 always be a multiple of 4, we use the least significant bit
1797 to record whether we have initialized it already.
1798
1799 When doing a dynamic link, we create a .rel.got relocation
1800 entry to initialize the value. This is done in the
1801 finish_dynamic_symbol routine. */
1802 if ((off & 1) != 0)
1803 off &= ~1;
1804 else
1805 {
1806 /* If we are addressing a Thumb function, we need to
1807 adjust the address by one, so that attempts to
1808 call the function pointer will correctly
1809 interpret it as Thumb code. */
1810 if (sym_flags == STT_ARM_TFUNC)
1811 value |= 1;
1812
1813 bfd_put_32 (output_bfd, value, sgot->contents + off);
1814 h->got.offset |= 1;
1815 }
1816 }
1817
1818 value = sgot->output_offset + off;
1819 }
1820 else
1821 {
1822 bfd_vma off;
1823
1824 BFD_ASSERT (local_got_offsets != NULL &&
1825 local_got_offsets[r_symndx] != (bfd_vma) -1);
1826
1827 off = local_got_offsets[r_symndx];
1828
1829 /* The offset must always be a multiple of 4. We use the
1830 least significant bit to record whether we have already
1831 generated the necessary reloc. */
1832 if ((off & 1) != 0)
1833 off &= ~1;
1834 else
1835 {
1836 bfd_put_32 (output_bfd, value, sgot->contents + off);
1837
1838 if (info->shared)
1839 {
1840 asection * srelgot;
1841 Elf_Internal_Rela outrel;
1842 bfd_byte *loc;
1843
1844 srelgot = bfd_get_section_by_name (dynobj, ".rel.got");
1845 BFD_ASSERT (srelgot != NULL);
1846
1847 outrel.r_offset = (sgot->output_section->vma
1848 + sgot->output_offset
1849 + off);
1850 outrel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
1851 loc = srelgot->contents;
1852 loc += srelgot->reloc_count++ * sizeof (Elf32_External_Rel);
1853 bfd_elf32_swap_reloc_out (output_bfd, &outrel, loc);
1854 }
1855
1856 local_got_offsets[r_symndx] |= 1;
1857 }
1858
1859 value = sgot->output_offset + off;
1860 }
1861
1862 return _bfd_final_link_relocate (howto, input_bfd, input_section,
1863 contents, rel->r_offset, value,
1864 (bfd_vma) 0);
1865
1866 case R_ARM_SBREL32:
1867 return bfd_reloc_notsupported;
1868
1869 case R_ARM_AMP_VCALL9:
1870 return bfd_reloc_notsupported;
1871
1872 case R_ARM_RSBREL32:
1873 return bfd_reloc_notsupported;
1874
1875 case R_ARM_THM_RPC22:
1876 return bfd_reloc_notsupported;
1877
1878 case R_ARM_RREL32:
1879 return bfd_reloc_notsupported;
1880
1881 case R_ARM_RABS32:
1882 return bfd_reloc_notsupported;
1883
1884 case R_ARM_RPC24:
1885 return bfd_reloc_notsupported;
1886
1887 case R_ARM_RBASE:
1888 return bfd_reloc_notsupported;
1889
1890 default:
1891 return bfd_reloc_notsupported;
1892 }
1893 }
1894
1895 #if USE_REL
1896 /* Add INCREMENT to the reloc (of type HOWTO) at ADDRESS. */
1897 static void
1898 arm_add_to_rel (bfd * abfd,
1899 bfd_byte * address,
1900 reloc_howto_type * howto,
1901 bfd_signed_vma increment)
1902 {
1903 bfd_signed_vma addend;
1904
1905 if (howto->type == R_ARM_THM_PC22)
1906 {
1907 int upper_insn, lower_insn;
1908 int upper, lower;
1909
1910 upper_insn = bfd_get_16 (abfd, address);
1911 lower_insn = bfd_get_16 (abfd, address + 2);
1912 upper = upper_insn & 0x7ff;
1913 lower = lower_insn & 0x7ff;
1914
1915 addend = (upper << 12) | (lower << 1);
1916 addend += increment;
1917 addend >>= 1;
1918
1919 upper_insn = (upper_insn & 0xf800) | ((addend >> 11) & 0x7ff);
1920 lower_insn = (lower_insn & 0xf800) | (addend & 0x7ff);
1921
1922 bfd_put_16 (abfd, (bfd_vma) upper_insn, address);
1923 bfd_put_16 (abfd, (bfd_vma) lower_insn, address + 2);
1924 }
1925 else
1926 {
1927 bfd_vma contents;
1928
1929 contents = bfd_get_32 (abfd, address);
1930
1931 /* Get the (signed) value from the instruction. */
1932 addend = contents & howto->src_mask;
1933 if (addend & ((howto->src_mask + 1) >> 1))
1934 {
1935 bfd_signed_vma mask;
1936
1937 mask = -1;
1938 mask &= ~ howto->src_mask;
1939 addend |= mask;
1940 }
1941
1942 /* Add in the increment, (which is a byte value). */
1943 switch (howto->type)
1944 {
1945 default:
1946 addend += increment;
1947 break;
1948
1949 case R_ARM_PC24:
1950 addend <<= howto->size;
1951 addend += increment;
1952
1953 /* Should we check for overflow here ? */
1954
1955 /* Drop any undesired bits. */
1956 addend >>= howto->rightshift;
1957 break;
1958 }
1959
1960 contents = (contents & ~ howto->dst_mask) | (addend & howto->dst_mask);
1961
1962 bfd_put_32 (abfd, contents, address);
1963 }
1964 }
1965 #endif /* USE_REL */
1966
1967 /* Relocate an ARM ELF section. */
1968 static bfd_boolean
1969 elf32_arm_relocate_section (bfd * output_bfd,
1970 struct bfd_link_info * info,
1971 bfd * input_bfd,
1972 asection * input_section,
1973 bfd_byte * contents,
1974 Elf_Internal_Rela * relocs,
1975 Elf_Internal_Sym * local_syms,
1976 asection ** local_sections)
1977 {
1978 Elf_Internal_Shdr *symtab_hdr;
1979 struct elf_link_hash_entry **sym_hashes;
1980 Elf_Internal_Rela *rel;
1981 Elf_Internal_Rela *relend;
1982 const char *name;
1983
1984 #if !USE_REL
1985 if (info->relocatable)
1986 return TRUE;
1987 #endif
1988
1989 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
1990 sym_hashes = elf_sym_hashes (input_bfd);
1991
1992 rel = relocs;
1993 relend = relocs + input_section->reloc_count;
1994 for (; rel < relend; rel++)
1995 {
1996 int r_type;
1997 reloc_howto_type * howto;
1998 unsigned long r_symndx;
1999 Elf_Internal_Sym * sym;
2000 asection * sec;
2001 struct elf_link_hash_entry * h;
2002 bfd_vma relocation;
2003 bfd_reloc_status_type r;
2004 arelent bfd_reloc;
2005
2006 r_symndx = ELF32_R_SYM (rel->r_info);
2007 r_type = ELF32_R_TYPE (rel->r_info);
2008
2009 if ( r_type == R_ARM_GNU_VTENTRY
2010 || r_type == R_ARM_GNU_VTINHERIT)
2011 continue;
2012
2013 elf32_arm_info_to_howto (input_bfd, & bfd_reloc, rel);
2014 howto = bfd_reloc.howto;
2015
2016 #if USE_REL
2017 if (info->relocatable)
2018 {
2019 /* This is a relocatable link. We don't have to change
2020 anything, unless the reloc is against a section symbol,
2021 in which case we have to adjust according to where the
2022 section symbol winds up in the output section. */
2023 if (r_symndx < symtab_hdr->sh_info)
2024 {
2025 sym = local_syms + r_symndx;
2026 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
2027 {
2028 sec = local_sections[r_symndx];
2029 arm_add_to_rel (input_bfd, contents + rel->r_offset,
2030 howto,
2031 (bfd_signed_vma) (sec->output_offset
2032 + sym->st_value));
2033 }
2034 }
2035
2036 continue;
2037 }
2038 #endif
2039
2040 /* This is a final link. */
2041 h = NULL;
2042 sym = NULL;
2043 sec = NULL;
2044
2045 if (r_symndx < symtab_hdr->sh_info)
2046 {
2047 sym = local_syms + r_symndx;
2048 sec = local_sections[r_symndx];
2049 #if USE_REL
2050 relocation = (sec->output_section->vma
2051 + sec->output_offset
2052 + sym->st_value);
2053 if ((sec->flags & SEC_MERGE)
2054 && ELF_ST_TYPE (sym->st_info) == STT_SECTION)
2055 {
2056 asection *msec;
2057 bfd_vma addend, value;
2058
2059 if (howto->rightshift)
2060 {
2061 (*_bfd_error_handler)
2062 (_("%B(%A+0x%lx): %s relocation against SEC_MERGE section"),
2063 input_bfd, input_section,
2064 (long) rel->r_offset, howto->name);
2065 return FALSE;
2066 }
2067
2068 value = bfd_get_32 (input_bfd, contents + rel->r_offset);
2069
2070 /* Get the (signed) value from the instruction. */
2071 addend = value & howto->src_mask;
2072 if (addend & ((howto->src_mask + 1) >> 1))
2073 {
2074 bfd_signed_vma mask;
2075
2076 mask = -1;
2077 mask &= ~ howto->src_mask;
2078 addend |= mask;
2079 }
2080 msec = sec;
2081 addend =
2082 _bfd_elf_rel_local_sym (output_bfd, sym, &msec, addend)
2083 - relocation;
2084 addend += msec->output_section->vma + msec->output_offset;
2085 value = (value & ~ howto->dst_mask) | (addend & howto->dst_mask);
2086 bfd_put_32 (input_bfd, value, contents + rel->r_offset);
2087 }
2088 #else
2089 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
2090 #endif
2091 }
2092 else
2093 {
2094 bfd_boolean warned;
2095 bfd_boolean unresolved_reloc;
2096
2097 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
2098 r_symndx, symtab_hdr, sym_hashes,
2099 h, sec, relocation,
2100 unresolved_reloc, warned);
2101
2102 if (unresolved_reloc || relocation != 0)
2103 {
2104 /* In these cases, we don't need the relocation value.
2105 We check specially because in some obscure cases
2106 sec->output_section will be NULL. */
2107 switch (r_type)
2108 {
2109 case R_ARM_PC24:
2110 case R_ARM_ABS32:
2111 case R_ARM_THM_PC22:
2112 case R_ARM_PLT32:
2113
2114 if (info->shared
2115 && (
2116 (!info->symbolic && h->dynindx != -1)
2117 || (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0
2118 )
2119 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
2120 && ((input_section->flags & SEC_ALLOC) != 0
2121 /* DWARF will emit R_ARM_ABS32 relocations in its
2122 sections against symbols defined externally
2123 in shared libraries. We can't do anything
2124 with them here. */
2125 || ((input_section->flags & SEC_DEBUGGING) != 0
2126 && (h->elf_link_hash_flags
2127 & ELF_LINK_HASH_DEF_DYNAMIC) != 0))
2128 )
2129 relocation = 0;
2130 break;
2131
2132 case R_ARM_GOTPC:
2133 relocation = 0;
2134 break;
2135
2136 case R_ARM_GOT32:
2137 if ((WILL_CALL_FINISH_DYNAMIC_SYMBOL
2138 (elf_hash_table (info)->dynamic_sections_created,
2139 info->shared, h))
2140 && (!info->shared
2141 || (!info->symbolic && h->dynindx != -1)
2142 || (h->elf_link_hash_flags
2143 & ELF_LINK_HASH_DEF_REGULAR) == 0))
2144 relocation = 0;
2145 break;
2146
2147 default:
2148 if (unresolved_reloc)
2149 _bfd_error_handler
2150 (_("%B(%A): warning: unresolvable relocation %d against symbol `%s'"),
2151 input_bfd, input_section,
2152 r_type,
2153 h->root.root.string);
2154 break;
2155 }
2156 }
2157 }
2158
2159 if (h != NULL)
2160 name = h->root.root.string;
2161 else
2162 {
2163 name = (bfd_elf_string_from_elf_section
2164 (input_bfd, symtab_hdr->sh_link, sym->st_name));
2165 if (name == NULL || *name == '\0')
2166 name = bfd_section_name (input_bfd, sec);
2167 }
2168
2169 r = elf32_arm_final_link_relocate (howto, input_bfd, output_bfd,
2170 input_section, contents, rel,
2171 relocation, info, sec, name,
2172 (h ? ELF_ST_TYPE (h->type) :
2173 ELF_ST_TYPE (sym->st_info)), h);
2174
2175 if (r != bfd_reloc_ok)
2176 {
2177 const char * msg = (const char *) 0;
2178
2179 switch (r)
2180 {
2181 case bfd_reloc_overflow:
2182 /* If the overflowing reloc was to an undefined symbol,
2183 we have already printed one error message and there
2184 is no point complaining again. */
2185 if ((! h ||
2186 h->root.type != bfd_link_hash_undefined)
2187 && (!((*info->callbacks->reloc_overflow)
2188 (info, name, howto->name, (bfd_vma) 0,
2189 input_bfd, input_section, rel->r_offset))))
2190 return FALSE;
2191 break;
2192
2193 case bfd_reloc_undefined:
2194 if (!((*info->callbacks->undefined_symbol)
2195 (info, name, input_bfd, input_section,
2196 rel->r_offset, TRUE)))
2197 return FALSE;
2198 break;
2199
2200 case bfd_reloc_outofrange:
2201 msg = _("internal error: out of range error");
2202 goto common_error;
2203
2204 case bfd_reloc_notsupported:
2205 msg = _("internal error: unsupported relocation error");
2206 goto common_error;
2207
2208 case bfd_reloc_dangerous:
2209 msg = _("internal error: dangerous error");
2210 goto common_error;
2211
2212 default:
2213 msg = _("internal error: unknown error");
2214 /* fall through */
2215
2216 common_error:
2217 if (!((*info->callbacks->warning)
2218 (info, msg, name, input_bfd, input_section,
2219 rel->r_offset)))
2220 return FALSE;
2221 break;
2222 }
2223 }
2224 }
2225
2226 return TRUE;
2227 }
2228
2229 /* Set the right machine number. */
2230
2231 static bfd_boolean
2232 elf32_arm_object_p (bfd *abfd)
2233 {
2234 unsigned int mach;
2235
2236 mach = bfd_arm_get_mach_from_notes (abfd, ARM_NOTE_SECTION);
2237
2238 if (mach != bfd_mach_arm_unknown)
2239 bfd_default_set_arch_mach (abfd, bfd_arch_arm, mach);
2240
2241 else if (elf_elfheader (abfd)->e_flags & EF_ARM_MAVERICK_FLOAT)
2242 bfd_default_set_arch_mach (abfd, bfd_arch_arm, bfd_mach_arm_ep9312);
2243
2244 else
2245 bfd_default_set_arch_mach (abfd, bfd_arch_arm, mach);
2246
2247 return TRUE;
2248 }
2249
2250 /* Function to keep ARM specific flags in the ELF header. */
2251 static bfd_boolean
2252 elf32_arm_set_private_flags (bfd *abfd, flagword flags)
2253 {
2254 if (elf_flags_init (abfd)
2255 && elf_elfheader (abfd)->e_flags != flags)
2256 {
2257 if (EF_ARM_EABI_VERSION (flags) == EF_ARM_EABI_UNKNOWN)
2258 {
2259 if (flags & EF_ARM_INTERWORK)
2260 (*_bfd_error_handler)
2261 (_("Warning: Not setting interworking flag of %B since it has already been specified as non-interworking"),
2262 abfd);
2263 else
2264 _bfd_error_handler
2265 (_("Warning: Clearing the interworking flag of %B due to outside request"),
2266 abfd);
2267 }
2268 }
2269 else
2270 {
2271 elf_elfheader (abfd)->e_flags = flags;
2272 elf_flags_init (abfd) = TRUE;
2273 }
2274
2275 return TRUE;
2276 }
2277
2278 /* Copy backend specific data from one object module to another. */
2279
2280 static bfd_boolean
2281 elf32_arm_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
2282 {
2283 flagword in_flags;
2284 flagword out_flags;
2285
2286 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2287 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2288 return TRUE;
2289
2290 in_flags = elf_elfheader (ibfd)->e_flags;
2291 out_flags = elf_elfheader (obfd)->e_flags;
2292
2293 if (elf_flags_init (obfd)
2294 && EF_ARM_EABI_VERSION (out_flags) == EF_ARM_EABI_UNKNOWN
2295 && in_flags != out_flags)
2296 {
2297 /* Cannot mix APCS26 and APCS32 code. */
2298 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
2299 return FALSE;
2300
2301 /* Cannot mix float APCS and non-float APCS code. */
2302 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
2303 return FALSE;
2304
2305 /* If the src and dest have different interworking flags
2306 then turn off the interworking bit. */
2307 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
2308 {
2309 if (out_flags & EF_ARM_INTERWORK)
2310 _bfd_error_handler
2311 (_("Warning: Clearing the interworking flag of %B because non-interworking code in %B has been linked with it"),
2312 obfd, ibfd);
2313
2314 in_flags &= ~EF_ARM_INTERWORK;
2315 }
2316
2317 /* Likewise for PIC, though don't warn for this case. */
2318 if ((in_flags & EF_ARM_PIC) != (out_flags & EF_ARM_PIC))
2319 in_flags &= ~EF_ARM_PIC;
2320 }
2321
2322 elf_elfheader (obfd)->e_flags = in_flags;
2323 elf_flags_init (obfd) = TRUE;
2324
2325 return TRUE;
2326 }
2327
2328 /* Merge backend specific data from an object file to the output
2329 object file when linking. */
2330
2331 static bfd_boolean
2332 elf32_arm_merge_private_bfd_data (bfd * ibfd, bfd * obfd)
2333 {
2334 flagword out_flags;
2335 flagword in_flags;
2336 bfd_boolean flags_compatible = TRUE;
2337 asection *sec;
2338
2339 /* Check if we have the same endianess. */
2340 if (! _bfd_generic_verify_endian_match (ibfd, obfd))
2341 return FALSE;
2342
2343 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
2344 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
2345 return TRUE;
2346
2347 /* The input BFD must have had its flags initialised. */
2348 /* The following seems bogus to me -- The flags are initialized in
2349 the assembler but I don't think an elf_flags_init field is
2350 written into the object. */
2351 /* BFD_ASSERT (elf_flags_init (ibfd)); */
2352
2353 in_flags = elf_elfheader (ibfd)->e_flags;
2354 out_flags = elf_elfheader (obfd)->e_flags;
2355
2356 if (!elf_flags_init (obfd))
2357 {
2358 /* If the input is the default architecture and had the default
2359 flags then do not bother setting the flags for the output
2360 architecture, instead allow future merges to do this. If no
2361 future merges ever set these flags then they will retain their
2362 uninitialised values, which surprise surprise, correspond
2363 to the default values. */
2364 if (bfd_get_arch_info (ibfd)->the_default
2365 && elf_elfheader (ibfd)->e_flags == 0)
2366 return TRUE;
2367
2368 elf_flags_init (obfd) = TRUE;
2369 elf_elfheader (obfd)->e_flags = in_flags;
2370
2371 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
2372 && bfd_get_arch_info (obfd)->the_default)
2373 return bfd_set_arch_mach (obfd, bfd_get_arch (ibfd), bfd_get_mach (ibfd));
2374
2375 return TRUE;
2376 }
2377
2378 /* Determine what should happen if the input ARM architecture
2379 does not match the output ARM architecture. */
2380 if (! bfd_arm_merge_machines (ibfd, obfd))
2381 return FALSE;
2382
2383 /* Identical flags must be compatible. */
2384 if (in_flags == out_flags)
2385 return TRUE;
2386
2387 /* Check to see if the input BFD actually contains any sections. If
2388 not, its flags may not have been initialised either, but it
2389 cannot actually cause any incompatibility. Do not short-circuit
2390 dynamic objects; their section list may be emptied by
2391 elf_link_add_object_symbols.
2392
2393 Also check to see if there are no code sections in the input.
2394 In this case there is no need to check for code specific flags.
2395 XXX - do we need to worry about floating-point format compatability
2396 in data sections ? */
2397 if (!(ibfd->flags & DYNAMIC))
2398 {
2399 bfd_boolean null_input_bfd = TRUE;
2400 bfd_boolean only_data_sections = TRUE;
2401
2402 for (sec = ibfd->sections; sec != NULL; sec = sec->next)
2403 {
2404 /* Ignore synthetic glue sections. */
2405 if (strcmp (sec->name, ".glue_7")
2406 && strcmp (sec->name, ".glue_7t"))
2407 {
2408 if ((bfd_get_section_flags (ibfd, sec)
2409 & (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
2410 == (SEC_LOAD | SEC_CODE | SEC_HAS_CONTENTS))
2411 only_data_sections = FALSE;
2412
2413 null_input_bfd = FALSE;
2414 break;
2415 }
2416 }
2417
2418 if (null_input_bfd || only_data_sections)
2419 return TRUE;
2420 }
2421
2422 /* Complain about various flag mismatches. */
2423 if (EF_ARM_EABI_VERSION (in_flags) != EF_ARM_EABI_VERSION (out_flags))
2424 {
2425 _bfd_error_handler
2426 (_("ERROR: %B is compiled for EABI version %d, whereas %B is compiled for version %d"),
2427 ibfd, obfd,
2428 (in_flags & EF_ARM_EABIMASK) >> 24,
2429 (out_flags & EF_ARM_EABIMASK) >> 24);
2430 return FALSE;
2431 }
2432
2433 /* Not sure what needs to be checked for EABI versions >= 1. */
2434 if (EF_ARM_EABI_VERSION (in_flags) == EF_ARM_EABI_UNKNOWN)
2435 {
2436 if ((in_flags & EF_ARM_APCS_26) != (out_flags & EF_ARM_APCS_26))
2437 {
2438 _bfd_error_handler
2439 (_("ERROR: %B is compiled for APCS-%d, whereas target %B uses APCS-%d"),
2440 ibfd, obfd,
2441 in_flags & EF_ARM_APCS_26 ? 26 : 32,
2442 out_flags & EF_ARM_APCS_26 ? 26 : 32);
2443 flags_compatible = FALSE;
2444 }
2445
2446 if ((in_flags & EF_ARM_APCS_FLOAT) != (out_flags & EF_ARM_APCS_FLOAT))
2447 {
2448 if (in_flags & EF_ARM_APCS_FLOAT)
2449 _bfd_error_handler
2450 (_("ERROR: %B passes floats in float registers, whereas %B passes them in integer registers"),
2451 ibfd, obfd);
2452 else
2453 _bfd_error_handler
2454 (_("ERROR: %B passes floats in integer registers, whereas %B passes them in float registers"),
2455 ibfd, obfd);
2456
2457 flags_compatible = FALSE;
2458 }
2459
2460 if ((in_flags & EF_ARM_VFP_FLOAT) != (out_flags & EF_ARM_VFP_FLOAT))
2461 {
2462 if (in_flags & EF_ARM_VFP_FLOAT)
2463 _bfd_error_handler
2464 (_("ERROR: %B uses VFP instructions, whereas %B does not"),
2465 ibfd, obfd);
2466 else
2467 _bfd_error_handler
2468 (_("ERROR: %B uses FPA instructions, whereas %B does not"),
2469 ibfd, obfd);
2470
2471 flags_compatible = FALSE;
2472 }
2473
2474 if ((in_flags & EF_ARM_MAVERICK_FLOAT) != (out_flags & EF_ARM_MAVERICK_FLOAT))
2475 {
2476 if (in_flags & EF_ARM_MAVERICK_FLOAT)
2477 _bfd_error_handler
2478 (_("ERROR: %B uses Maverick instructions, whereas %B does not"),
2479 ibfd, obfd);
2480 else
2481 _bfd_error_handler
2482 (_("ERROR: %B does not use Maverick instructions, whereas %B does"),
2483 ibfd, obfd);
2484
2485 flags_compatible = FALSE;
2486 }
2487
2488 #ifdef EF_ARM_SOFT_FLOAT
2489 if ((in_flags & EF_ARM_SOFT_FLOAT) != (out_flags & EF_ARM_SOFT_FLOAT))
2490 {
2491 /* We can allow interworking between code that is VFP format
2492 layout, and uses either soft float or integer regs for
2493 passing floating point arguments and results. We already
2494 know that the APCS_FLOAT flags match; similarly for VFP
2495 flags. */
2496 if ((in_flags & EF_ARM_APCS_FLOAT) != 0
2497 || (in_flags & EF_ARM_VFP_FLOAT) == 0)
2498 {
2499 if (in_flags & EF_ARM_SOFT_FLOAT)
2500 _bfd_error_handler
2501 (_("ERROR: %B uses software FP, whereas %B uses hardware FP"),
2502 ibfd, obfd);
2503 else
2504 _bfd_error_handler
2505 (_("ERROR: %B uses hardware FP, whereas %B uses software FP"),
2506 ibfd, obfd);
2507
2508 flags_compatible = FALSE;
2509 }
2510 }
2511 #endif
2512
2513 /* Interworking mismatch is only a warning. */
2514 if ((in_flags & EF_ARM_INTERWORK) != (out_flags & EF_ARM_INTERWORK))
2515 {
2516 if (in_flags & EF_ARM_INTERWORK)
2517 {
2518 _bfd_error_handler
2519 (_("Warning: %B supports interworking, whereas %B does not"),
2520 ibfd, obfd);
2521 }
2522 else
2523 {
2524 _bfd_error_handler
2525 (_("Warning: %B does not support interworking, whereas %B does"),
2526 ibfd, obfd);
2527 }
2528 }
2529 }
2530
2531 return flags_compatible;
2532 }
2533
2534 /* Display the flags field. */
2535
2536 static bfd_boolean
2537 elf32_arm_print_private_bfd_data (bfd *abfd, void * ptr)
2538 {
2539 FILE * file = (FILE *) ptr;
2540 unsigned long flags;
2541
2542 BFD_ASSERT (abfd != NULL && ptr != NULL);
2543
2544 /* Print normal ELF private data. */
2545 _bfd_elf_print_private_bfd_data (abfd, ptr);
2546
2547 flags = elf_elfheader (abfd)->e_flags;
2548 /* Ignore init flag - it may not be set, despite the flags field
2549 containing valid data. */
2550
2551 /* xgettext:c-format */
2552 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
2553
2554 switch (EF_ARM_EABI_VERSION (flags))
2555 {
2556 case EF_ARM_EABI_UNKNOWN:
2557 /* The following flag bits are GNU extensions and not part of the
2558 official ARM ELF extended ABI. Hence they are only decoded if
2559 the EABI version is not set. */
2560 if (flags & EF_ARM_INTERWORK)
2561 fprintf (file, _(" [interworking enabled]"));
2562
2563 if (flags & EF_ARM_APCS_26)
2564 fprintf (file, " [APCS-26]");
2565 else
2566 fprintf (file, " [APCS-32]");
2567
2568 if (flags & EF_ARM_VFP_FLOAT)
2569 fprintf (file, _(" [VFP float format]"));
2570 else if (flags & EF_ARM_MAVERICK_FLOAT)
2571 fprintf (file, _(" [Maverick float format]"));
2572 else
2573 fprintf (file, _(" [FPA float format]"));
2574
2575 if (flags & EF_ARM_APCS_FLOAT)
2576 fprintf (file, _(" [floats passed in float registers]"));
2577
2578 if (flags & EF_ARM_PIC)
2579 fprintf (file, _(" [position independent]"));
2580
2581 if (flags & EF_ARM_NEW_ABI)
2582 fprintf (file, _(" [new ABI]"));
2583
2584 if (flags & EF_ARM_OLD_ABI)
2585 fprintf (file, _(" [old ABI]"));
2586
2587 if (flags & EF_ARM_SOFT_FLOAT)
2588 fprintf (file, _(" [software FP]"));
2589
2590 flags &= ~(EF_ARM_INTERWORK | EF_ARM_APCS_26 | EF_ARM_APCS_FLOAT
2591 | EF_ARM_PIC | EF_ARM_NEW_ABI | EF_ARM_OLD_ABI
2592 | EF_ARM_SOFT_FLOAT | EF_ARM_VFP_FLOAT
2593 | EF_ARM_MAVERICK_FLOAT);
2594 break;
2595
2596 case EF_ARM_EABI_VER1:
2597 fprintf (file, _(" [Version1 EABI]"));
2598
2599 if (flags & EF_ARM_SYMSARESORTED)
2600 fprintf (file, _(" [sorted symbol table]"));
2601 else
2602 fprintf (file, _(" [unsorted symbol table]"));
2603
2604 flags &= ~ EF_ARM_SYMSARESORTED;
2605 break;
2606
2607 case EF_ARM_EABI_VER2:
2608 fprintf (file, _(" [Version2 EABI]"));
2609
2610 if (flags & EF_ARM_SYMSARESORTED)
2611 fprintf (file, _(" [sorted symbol table]"));
2612 else
2613 fprintf (file, _(" [unsorted symbol table]"));
2614
2615 if (flags & EF_ARM_DYNSYMSUSESEGIDX)
2616 fprintf (file, _(" [dynamic symbols use segment index]"));
2617
2618 if (flags & EF_ARM_MAPSYMSFIRST)
2619 fprintf (file, _(" [mapping symbols precede others]"));
2620
2621 flags &= ~(EF_ARM_SYMSARESORTED | EF_ARM_DYNSYMSUSESEGIDX
2622 | EF_ARM_MAPSYMSFIRST);
2623 break;
2624
2625 case EF_ARM_EABI_VER3:
2626 fprintf (file, _(" [Version3 EABI]"));
2627
2628 if (flags & EF_ARM_BE8)
2629 fprintf (file, _(" [BE8]"));
2630
2631 if (flags & EF_ARM_LE8)
2632 fprintf (file, _(" [LE8]"));
2633
2634 flags &= ~(EF_ARM_LE8 | EF_ARM_BE8);
2635 break;
2636
2637 default:
2638 fprintf (file, _(" <EABI version unrecognised>"));
2639 break;
2640 }
2641
2642 flags &= ~ EF_ARM_EABIMASK;
2643
2644 if (flags & EF_ARM_RELEXEC)
2645 fprintf (file, _(" [relocatable executable]"));
2646
2647 if (flags & EF_ARM_HASENTRY)
2648 fprintf (file, _(" [has entry point]"));
2649
2650 flags &= ~ (EF_ARM_RELEXEC | EF_ARM_HASENTRY);
2651
2652 if (flags)
2653 fprintf (file, _("<Unrecognised flag bits set>"));
2654
2655 fputc ('\n', file);
2656
2657 return TRUE;
2658 }
2659
2660 static int
2661 elf32_arm_get_symbol_type (Elf_Internal_Sym * elf_sym, int type)
2662 {
2663 switch (ELF_ST_TYPE (elf_sym->st_info))
2664 {
2665 case STT_ARM_TFUNC:
2666 return ELF_ST_TYPE (elf_sym->st_info);
2667
2668 case STT_ARM_16BIT:
2669 /* If the symbol is not an object, return the STT_ARM_16BIT flag.
2670 This allows us to distinguish between data used by Thumb instructions
2671 and non-data (which is probably code) inside Thumb regions of an
2672 executable. */
2673 if (type != STT_OBJECT)
2674 return ELF_ST_TYPE (elf_sym->st_info);
2675 break;
2676
2677 default:
2678 break;
2679 }
2680
2681 return type;
2682 }
2683
2684 static asection *
2685 elf32_arm_gc_mark_hook (asection * sec,
2686 struct bfd_link_info * info ATTRIBUTE_UNUSED,
2687 Elf_Internal_Rela * rel,
2688 struct elf_link_hash_entry * h,
2689 Elf_Internal_Sym * sym)
2690 {
2691 if (h != NULL)
2692 {
2693 switch (ELF32_R_TYPE (rel->r_info))
2694 {
2695 case R_ARM_GNU_VTINHERIT:
2696 case R_ARM_GNU_VTENTRY:
2697 break;
2698
2699 default:
2700 switch (h->root.type)
2701 {
2702 case bfd_link_hash_defined:
2703 case bfd_link_hash_defweak:
2704 return h->root.u.def.section;
2705
2706 case bfd_link_hash_common:
2707 return h->root.u.c.p->section;
2708
2709 default:
2710 break;
2711 }
2712 }
2713 }
2714 else
2715 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
2716
2717 return NULL;
2718 }
2719
2720 /* Update the got entry reference counts for the section being removed. */
2721
2722 static bfd_boolean
2723 elf32_arm_gc_sweep_hook (bfd * abfd ATTRIBUTE_UNUSED,
2724 struct bfd_link_info * info ATTRIBUTE_UNUSED,
2725 asection * sec ATTRIBUTE_UNUSED,
2726 const Elf_Internal_Rela * relocs ATTRIBUTE_UNUSED)
2727 {
2728 Elf_Internal_Shdr *symtab_hdr;
2729 struct elf_link_hash_entry **sym_hashes;
2730 bfd_signed_vma *local_got_refcounts;
2731 const Elf_Internal_Rela *rel, *relend;
2732 unsigned long r_symndx;
2733 struct elf_link_hash_entry *h;
2734
2735 elf_section_data (sec)->local_dynrel = NULL;
2736
2737 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2738 sym_hashes = elf_sym_hashes (abfd);
2739 local_got_refcounts = elf_local_got_refcounts (abfd);
2740
2741 relend = relocs + sec->reloc_count;
2742 for (rel = relocs; rel < relend; rel++)
2743 switch (ELF32_R_TYPE (rel->r_info))
2744 {
2745 case R_ARM_GOT32:
2746 r_symndx = ELF32_R_SYM (rel->r_info);
2747 if (r_symndx >= symtab_hdr->sh_info)
2748 {
2749 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2750 if (h->got.refcount > 0)
2751 h->got.refcount -= 1;
2752 }
2753 else if (local_got_refcounts != NULL)
2754 {
2755 if (local_got_refcounts[r_symndx] > 0)
2756 local_got_refcounts[r_symndx] -= 1;
2757 }
2758 break;
2759
2760 case R_ARM_ABS32:
2761 case R_ARM_REL32:
2762 #ifndef OLD_ARM_ABI
2763 case R_ARM_TARGET1:
2764 #endif
2765 case R_ARM_PC24:
2766 case R_ARM_PLT32:
2767 r_symndx = ELF32_R_SYM (rel->r_info);
2768 if (r_symndx >= symtab_hdr->sh_info)
2769 {
2770 struct elf32_arm_link_hash_entry *eh;
2771 struct elf32_arm_relocs_copied **pp;
2772 struct elf32_arm_relocs_copied *p;
2773
2774 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2775
2776 if (h->plt.refcount > 0)
2777 h->plt.refcount -= 1;
2778
2779 if (ELF32_R_TYPE (rel->r_info) == R_ARM_ABS32
2780 #ifndef OLD_ARM_ABI
2781 || ELF32_R_TYPE (rel->r_info) == R_ARM_TARGET1
2782 #endif
2783 || ELF32_R_TYPE (rel->r_info) == R_ARM_REL32)
2784 {
2785 eh = (struct elf32_arm_link_hash_entry *) h;
2786
2787 for (pp = &eh->relocs_copied; (p = *pp) != NULL;
2788 pp = &p->next)
2789 if (p->section == sec)
2790 {
2791 p->count -= 1;
2792 if (p->count == 0)
2793 *pp = p->next;
2794 break;
2795 }
2796 }
2797 }
2798 break;
2799
2800 default:
2801 break;
2802 }
2803
2804 return TRUE;
2805 }
2806
2807 /* Look through the relocs for a section during the first phase. */
2808
2809 static bfd_boolean
2810 elf32_arm_check_relocs (bfd *abfd, struct bfd_link_info *info,
2811 asection *sec, const Elf_Internal_Rela *relocs)
2812 {
2813 Elf_Internal_Shdr *symtab_hdr;
2814 struct elf_link_hash_entry **sym_hashes;
2815 struct elf_link_hash_entry **sym_hashes_end;
2816 const Elf_Internal_Rela *rel;
2817 const Elf_Internal_Rela *rel_end;
2818 bfd *dynobj;
2819 asection *sreloc;
2820 bfd_vma *local_got_offsets;
2821 struct elf32_arm_link_hash_table *htab;
2822
2823 if (info->relocatable)
2824 return TRUE;
2825
2826 htab = elf32_arm_hash_table (info);
2827 sreloc = NULL;
2828
2829 dynobj = elf_hash_table (info)->dynobj;
2830 local_got_offsets = elf_local_got_offsets (abfd);
2831
2832 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2833 sym_hashes = elf_sym_hashes (abfd);
2834 sym_hashes_end = sym_hashes
2835 + symtab_hdr->sh_size / sizeof (Elf32_External_Sym);
2836
2837 if (!elf_bad_symtab (abfd))
2838 sym_hashes_end -= symtab_hdr->sh_info;
2839
2840 rel_end = relocs + sec->reloc_count;
2841 for (rel = relocs; rel < rel_end; rel++)
2842 {
2843 struct elf_link_hash_entry *h;
2844 unsigned long r_symndx;
2845
2846 r_symndx = ELF32_R_SYM (rel->r_info);
2847 if (r_symndx < symtab_hdr->sh_info)
2848 h = NULL;
2849 else
2850 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
2851
2852 switch (ELF32_R_TYPE (rel->r_info))
2853 {
2854 case R_ARM_GOT32:
2855 /* This symbol requires a global offset table entry. */
2856 if (h != NULL)
2857 {
2858 h->got.refcount++;
2859 }
2860 else
2861 {
2862 bfd_signed_vma *local_got_refcounts;
2863
2864 /* This is a global offset table entry for a local symbol. */
2865 local_got_refcounts = elf_local_got_refcounts (abfd);
2866 if (local_got_refcounts == NULL)
2867 {
2868 bfd_size_type size;
2869
2870 size = symtab_hdr->sh_info;
2871 size *= (sizeof (bfd_signed_vma) + sizeof (char));
2872 local_got_refcounts = bfd_zalloc (abfd, size);
2873 if (local_got_refcounts == NULL)
2874 return FALSE;
2875 elf_local_got_refcounts (abfd) = local_got_refcounts;
2876 }
2877 local_got_refcounts[r_symndx] += 1;
2878 }
2879 break;
2880
2881 case R_ARM_GOTOFF:
2882 case R_ARM_GOTPC:
2883 if (htab->sgot == NULL)
2884 {
2885 if (htab->root.dynobj == NULL)
2886 htab->root.dynobj = abfd;
2887 if (!create_got_section (htab->root.dynobj, info))
2888 return FALSE;
2889 }
2890 break;
2891
2892 case R_ARM_ABS32:
2893 case R_ARM_REL32:
2894 #ifndef OLD_ARM_ABI
2895 case R_ARM_TARGET1:
2896 #endif
2897 case R_ARM_PC24:
2898 case R_ARM_PLT32:
2899 if (h != NULL)
2900 {
2901 /* If this reloc is in a read-only section, we might
2902 need a copy reloc. We can't check reliably at this
2903 stage whether the section is read-only, as input
2904 sections have not yet been mapped to output sections.
2905 Tentatively set the flag for now, and correct in
2906 adjust_dynamic_symbol. */
2907 if (!info->shared)
2908 h->elf_link_hash_flags |= ELF_LINK_NON_GOT_REF;
2909
2910 /* We may need a .plt entry if the function this reloc
2911 refers to is in a different object. We can't tell for
2912 sure yet, because something later might force the
2913 symbol local. */
2914 if (ELF32_R_TYPE (rel->r_info) == R_ARM_PC24
2915 || ELF32_R_TYPE (rel->r_info) == R_ARM_PLT32)
2916 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_PLT;
2917
2918 /* If we create a PLT entry, this relocation will reference
2919 it, even if it's an ABS32 relocation. */
2920 h->plt.refcount += 1;
2921 }
2922
2923 /* If we are creating a shared library, and this is a reloc
2924 against a global symbol, or a non PC relative reloc
2925 against a local symbol, then we need to copy the reloc
2926 into the shared library. However, if we are linking with
2927 -Bsymbolic, we do not need to copy a reloc against a
2928 global symbol which is defined in an object we are
2929 including in the link (i.e., DEF_REGULAR is set). At
2930 this point we have not seen all the input files, so it is
2931 possible that DEF_REGULAR is not set now but will be set
2932 later (it is never cleared). We account for that
2933 possibility below by storing information in the
2934 relocs_copied field of the hash table entry. */
2935 if (info->shared
2936 && (sec->flags & SEC_ALLOC) != 0
2937 && ((ELF32_R_TYPE (rel->r_info) != R_ARM_PC24
2938 && ELF32_R_TYPE (rel->r_info) != R_ARM_PLT32
2939 #ifndef OLD_ARM_ABI
2940 && ELF32_R_TYPE (rel->r_info) != R_ARM_TARGET1
2941 #endif
2942 && ELF32_R_TYPE (rel->r_info) != R_ARM_REL32)
2943 || (h != NULL
2944 && (! info->symbolic
2945 || (h->elf_link_hash_flags
2946 & ELF_LINK_HASH_DEF_REGULAR) == 0))))
2947 {
2948 struct elf32_arm_relocs_copied *p, **head;
2949
2950 /* When creating a shared object, we must copy these
2951 reloc types into the output file. We create a reloc
2952 section in dynobj and make room for this reloc. */
2953 if (sreloc == NULL)
2954 {
2955 const char * name;
2956
2957 name = (bfd_elf_string_from_elf_section
2958 (abfd,
2959 elf_elfheader (abfd)->e_shstrndx,
2960 elf_section_data (sec)->rel_hdr.sh_name));
2961 if (name == NULL)
2962 return FALSE;
2963
2964 BFD_ASSERT (strncmp (name, ".rel", 4) == 0
2965 && strcmp (bfd_get_section_name (abfd, sec),
2966 name + 4) == 0);
2967
2968 sreloc = bfd_get_section_by_name (dynobj, name);
2969 if (sreloc == NULL)
2970 {
2971 flagword flags;
2972
2973 sreloc = bfd_make_section (dynobj, name);
2974 flags = (SEC_HAS_CONTENTS | SEC_READONLY
2975 | SEC_IN_MEMORY | SEC_LINKER_CREATED);
2976 if ((sec->flags & SEC_ALLOC) != 0
2977 /* BPABI objects never have dynamic
2978 relocations mapped. */
2979 && !htab->symbian_p)
2980 flags |= SEC_ALLOC | SEC_LOAD;
2981 if (sreloc == NULL
2982 || ! bfd_set_section_flags (dynobj, sreloc, flags)
2983 || ! bfd_set_section_alignment (dynobj, sreloc, 2))
2984 return FALSE;
2985 }
2986
2987 elf_section_data (sec)->sreloc = sreloc;
2988 }
2989
2990 /* If this is a global symbol, we count the number of
2991 relocations we need for this symbol. */
2992 if (h != NULL)
2993 {
2994 head = &((struct elf32_arm_link_hash_entry *) h)->relocs_copied;
2995 }
2996 else
2997 {
2998 /* Track dynamic relocs needed for local syms too.
2999 We really need local syms available to do this
3000 easily. Oh well. */
3001
3002 asection *s;
3003 s = bfd_section_from_r_symndx (abfd, &htab->sym_sec,
3004 sec, r_symndx);
3005 if (s == NULL)
3006 return FALSE;
3007
3008 head = ((struct elf32_arm_relocs_copied **)
3009 &elf_section_data (s)->local_dynrel);
3010 }
3011
3012 p = *head;
3013 if (p == NULL || p->section != sec)
3014 {
3015 bfd_size_type amt = sizeof *p;
3016
3017 p = bfd_alloc (htab->root.dynobj, amt);
3018 if (p == NULL)
3019 return FALSE;
3020 p->next = *head;
3021 *head = p;
3022 p->section = sec;
3023 p->count = 0;
3024 }
3025
3026 if (ELF32_R_TYPE (rel->r_info) == R_ARM_ABS32
3027 #ifndef OLD_ARM_ABI
3028 || ELF32_R_TYPE (rel->r_info) == R_ARM_TARGET1
3029 #endif
3030 || ELF32_R_TYPE (rel->r_info) == R_ARM_REL32)
3031 p->count += 1;
3032 }
3033 break;
3034
3035 /* This relocation describes the C++ object vtable hierarchy.
3036 Reconstruct it for later use during GC. */
3037 case R_ARM_GNU_VTINHERIT:
3038 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
3039 return FALSE;
3040 break;
3041
3042 /* This relocation describes which C++ vtable entries are actually
3043 used. Record for later use during GC. */
3044 case R_ARM_GNU_VTENTRY:
3045 if (!bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_offset))
3046 return FALSE;
3047 break;
3048 }
3049 }
3050
3051 return TRUE;
3052 }
3053
3054 static bfd_boolean
3055 is_arm_mapping_symbol_name (const char * name)
3056 {
3057 return (name != NULL)
3058 && (name[0] == '$')
3059 && ((name[1] == 'a') || (name[1] == 't') || (name[1] == 'd'))
3060 && (name[2] == 0);
3061 }
3062
3063 /* This is a copy of elf_find_function() from elf.c except that
3064 ARM mapping symbols are ignored when looking for function names
3065 and STT_ARM_TFUNC is considered to a function type. */
3066
3067 static bfd_boolean
3068 arm_elf_find_function (bfd * abfd ATTRIBUTE_UNUSED,
3069 asection * section,
3070 asymbol ** symbols,
3071 bfd_vma offset,
3072 const char ** filename_ptr,
3073 const char ** functionname_ptr)
3074 {
3075 const char * filename = NULL;
3076 asymbol * func = NULL;
3077 bfd_vma low_func = 0;
3078 asymbol ** p;
3079
3080 for (p = symbols; *p != NULL; p++)
3081 {
3082 elf_symbol_type *q;
3083
3084 q = (elf_symbol_type *) *p;
3085
3086 if (bfd_get_section (&q->symbol) != section)
3087 continue;
3088
3089 switch (ELF_ST_TYPE (q->internal_elf_sym.st_info))
3090 {
3091 default:
3092 break;
3093 case STT_FILE:
3094 filename = bfd_asymbol_name (&q->symbol);
3095 break;
3096 case STT_FUNC:
3097 case STT_ARM_TFUNC:
3098 /* Skip $a and $t symbols. */
3099 if ((q->symbol.flags & BSF_LOCAL)
3100 && is_arm_mapping_symbol_name (q->symbol.name))
3101 continue;
3102 /* Fall through. */
3103 case STT_NOTYPE:
3104 if (q->symbol.section == section
3105 && q->symbol.value >= low_func
3106 && q->symbol.value <= offset)
3107 {
3108 func = (asymbol *) q;
3109 low_func = q->symbol.value;
3110 }
3111 break;
3112 }
3113 }
3114
3115 if (func == NULL)
3116 return FALSE;
3117
3118 if (filename_ptr)
3119 *filename_ptr = filename;
3120 if (functionname_ptr)
3121 *functionname_ptr = bfd_asymbol_name (func);
3122
3123 return TRUE;
3124 }
3125
3126
3127 /* Find the nearest line to a particular section and offset, for error
3128 reporting. This code is a duplicate of the code in elf.c, except
3129 that it uses arm_elf_find_function. */
3130
3131 static bfd_boolean
3132 elf32_arm_find_nearest_line (bfd * abfd,
3133 asection * section,
3134 asymbol ** symbols,
3135 bfd_vma offset,
3136 const char ** filename_ptr,
3137 const char ** functionname_ptr,
3138 unsigned int * line_ptr)
3139 {
3140 bfd_boolean found = FALSE;
3141
3142 /* We skip _bfd_dwarf1_find_nearest_line since no known ARM toolchain uses it. */
3143
3144 if (_bfd_dwarf2_find_nearest_line (abfd, section, symbols, offset,
3145 filename_ptr, functionname_ptr,
3146 line_ptr, 0,
3147 & elf_tdata (abfd)->dwarf2_find_line_info))
3148 {
3149 if (!*functionname_ptr)
3150 arm_elf_find_function (abfd, section, symbols, offset,
3151 *filename_ptr ? NULL : filename_ptr,
3152 functionname_ptr);
3153
3154 return TRUE;
3155 }
3156
3157 if (! _bfd_stab_section_find_nearest_line (abfd, symbols, section, offset,
3158 & found, filename_ptr,
3159 functionname_ptr, line_ptr,
3160 & elf_tdata (abfd)->line_info))
3161 return FALSE;
3162
3163 if (found && (*functionname_ptr || *line_ptr))
3164 return TRUE;
3165
3166 if (symbols == NULL)
3167 return FALSE;
3168
3169 if (! arm_elf_find_function (abfd, section, symbols, offset,
3170 filename_ptr, functionname_ptr))
3171 return FALSE;
3172
3173 *line_ptr = 0;
3174 return TRUE;
3175 }
3176
3177 /* Adjust a symbol defined by a dynamic object and referenced by a
3178 regular object. The current definition is in some section of the
3179 dynamic object, but we're not including those sections. We have to
3180 change the definition to something the rest of the link can
3181 understand. */
3182
3183 static bfd_boolean
3184 elf32_arm_adjust_dynamic_symbol (struct bfd_link_info * info,
3185 struct elf_link_hash_entry * h)
3186 {
3187 bfd * dynobj;
3188 asection * s;
3189 unsigned int power_of_two;
3190
3191 dynobj = elf_hash_table (info)->dynobj;
3192
3193 /* Make sure we know what is going on here. */
3194 BFD_ASSERT (dynobj != NULL
3195 && ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT)
3196 || h->weakdef != NULL
3197 || ((h->elf_link_hash_flags
3198 & ELF_LINK_HASH_DEF_DYNAMIC) != 0
3199 && (h->elf_link_hash_flags
3200 & ELF_LINK_HASH_REF_REGULAR) != 0
3201 && (h->elf_link_hash_flags
3202 & ELF_LINK_HASH_DEF_REGULAR) == 0)));
3203
3204 /* If this is a function, put it in the procedure linkage table. We
3205 will fill in the contents of the procedure linkage table later,
3206 when we know the address of the .got section. */
3207 if (h->type == STT_FUNC
3208 || (h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_PLT) != 0)
3209 {
3210 if (h->plt.refcount <= 0
3211 || SYMBOL_CALLS_LOCAL (info, h)
3212 || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
3213 && h->root.type == bfd_link_hash_undefweak))
3214 {
3215 /* This case can occur if we saw a PLT32 reloc in an input
3216 file, but the symbol was never referred to by a dynamic
3217 object, or if all references were garbage collected. In
3218 such a case, we don't actually need to build a procedure
3219 linkage table, and we can just do a PC24 reloc instead. */
3220 h->plt.offset = (bfd_vma) -1;
3221 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3222 }
3223
3224 return TRUE;
3225 }
3226 else
3227 /* It's possible that we incorrectly decided a .plt reloc was
3228 needed for an R_ARM_PC24 reloc to a non-function sym in
3229 check_relocs. We can't decide accurately between function and
3230 non-function syms in check-relocs; Objects loaded later in
3231 the link may change h->type. So fix it now. */
3232 h->plt.offset = (bfd_vma) -1;
3233
3234 /* If this is a weak symbol, and there is a real definition, the
3235 processor independent code will have arranged for us to see the
3236 real definition first, and we can just use the same value. */
3237 if (h->weakdef != NULL)
3238 {
3239 BFD_ASSERT (h->weakdef->root.type == bfd_link_hash_defined
3240 || h->weakdef->root.type == bfd_link_hash_defweak);
3241 h->root.u.def.section = h->weakdef->root.u.def.section;
3242 h->root.u.def.value = h->weakdef->root.u.def.value;
3243 return TRUE;
3244 }
3245
3246 /* This is a reference to a symbol defined by a dynamic object which
3247 is not a function. */
3248
3249 /* If we are creating a shared library, we must presume that the
3250 only references to the symbol are via the global offset table.
3251 For such cases we need not do anything here; the relocations will
3252 be handled correctly by relocate_section. */
3253 if (info->shared)
3254 return TRUE;
3255
3256 /* We must allocate the symbol in our .dynbss section, which will
3257 become part of the .bss section of the executable. There will be
3258 an entry for this symbol in the .dynsym section. The dynamic
3259 object will contain position independent code, so all references
3260 from the dynamic object to this symbol will go through the global
3261 offset table. The dynamic linker will use the .dynsym entry to
3262 determine the address it must put in the global offset table, so
3263 both the dynamic object and the regular object will refer to the
3264 same memory location for the variable. */
3265 s = bfd_get_section_by_name (dynobj, ".dynbss");
3266 BFD_ASSERT (s != NULL);
3267
3268 /* We must generate a R_ARM_COPY reloc to tell the dynamic linker to
3269 copy the initial value out of the dynamic object and into the
3270 runtime process image. We need to remember the offset into the
3271 .rel.bss section we are going to use. */
3272 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
3273 {
3274 asection *srel;
3275
3276 srel = bfd_get_section_by_name (dynobj, ".rel.bss");
3277 BFD_ASSERT (srel != NULL);
3278 srel->size += sizeof (Elf32_External_Rel);
3279 h->elf_link_hash_flags |= ELF_LINK_HASH_NEEDS_COPY;
3280 }
3281
3282 /* We need to figure out the alignment required for this symbol. I
3283 have no idea how ELF linkers handle this. */
3284 power_of_two = bfd_log2 (h->size);
3285 if (power_of_two > 3)
3286 power_of_two = 3;
3287
3288 /* Apply the required alignment. */
3289 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
3290 if (power_of_two > bfd_get_section_alignment (dynobj, s))
3291 {
3292 if (! bfd_set_section_alignment (dynobj, s, power_of_two))
3293 return FALSE;
3294 }
3295
3296 /* Define the symbol as being at this point in the section. */
3297 h->root.u.def.section = s;
3298 h->root.u.def.value = s->size;
3299
3300 /* Increment the section size to make room for the symbol. */
3301 s->size += h->size;
3302
3303 return TRUE;
3304 }
3305
3306 /* Allocate space in .plt, .got and associated reloc sections for
3307 dynamic relocs. */
3308
3309 static bfd_boolean
3310 allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
3311 {
3312 struct bfd_link_info *info;
3313 struct elf32_arm_link_hash_table *htab;
3314 struct elf32_arm_link_hash_entry *eh;
3315 struct elf32_arm_relocs_copied *p;
3316
3317 if (h->root.type == bfd_link_hash_indirect)
3318 return TRUE;
3319
3320 if (h->root.type == bfd_link_hash_warning)
3321 /* When warning symbols are created, they **replace** the "real"
3322 entry in the hash table, thus we never get to see the real
3323 symbol in a hash traversal. So look at it now. */
3324 h = (struct elf_link_hash_entry *) h->root.u.i.link;
3325
3326 info = (struct bfd_link_info *) inf;
3327 htab = elf32_arm_hash_table (info);
3328
3329 if (htab->root.dynamic_sections_created
3330 && h->plt.refcount > 0)
3331 {
3332 /* Make sure this symbol is output as a dynamic symbol.
3333 Undefined weak syms won't yet be marked as dynamic. */
3334 if (h->dynindx == -1
3335 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
3336 {
3337 if (! bfd_elf_link_record_dynamic_symbol (info, h))
3338 return FALSE;
3339 }
3340
3341 if (info->shared
3342 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h))
3343 {
3344 asection *s = htab->splt;
3345
3346 /* If this is the first .plt entry, make room for the special
3347 first entry. */
3348 if (s->size == 0)
3349 s->size += htab->plt_header_size;
3350
3351 h->plt.offset = s->size;
3352
3353 /* If this symbol is not defined in a regular file, and we are
3354 not generating a shared library, then set the symbol to this
3355 location in the .plt. This is required to make function
3356 pointers compare as equal between the normal executable and
3357 the shared library. */
3358 if (! info->shared
3359 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
3360 {
3361 h->root.u.def.section = s;
3362 h->root.u.def.value = h->plt.offset;
3363 }
3364
3365 /* Make room for this entry. */
3366 s->size += htab->plt_entry_size;
3367
3368 if (!htab->symbian_p)
3369 /* We also need to make an entry in the .got.plt section, which
3370 will be placed in the .got section by the linker script. */
3371 htab->sgotplt->size += 4;
3372
3373 /* We also need to make an entry in the .rel.plt section. */
3374 htab->srelplt->size += sizeof (Elf32_External_Rel);
3375 }
3376 else
3377 {
3378 h->plt.offset = (bfd_vma) -1;
3379 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3380 }
3381 }
3382 else
3383 {
3384 h->plt.offset = (bfd_vma) -1;
3385 h->elf_link_hash_flags &= ~ELF_LINK_HASH_NEEDS_PLT;
3386 }
3387
3388 if (h->got.refcount > 0)
3389 {
3390 asection *s;
3391 bfd_boolean dyn;
3392
3393 /* Make sure this symbol is output as a dynamic symbol.
3394 Undefined weak syms won't yet be marked as dynamic. */
3395 if (h->dynindx == -1
3396 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
3397 {
3398 if (! bfd_elf_link_record_dynamic_symbol (info, h))
3399 return FALSE;
3400 }
3401
3402 if (!htab->symbian_p)
3403 {
3404 s = htab->sgot;
3405 h->got.offset = s->size;
3406 s->size += 4;
3407 dyn = htab->root.dynamic_sections_created;
3408 if ((ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
3409 || h->root.type != bfd_link_hash_undefweak)
3410 && (info->shared
3411 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, 0, h)))
3412 htab->srelgot->size += sizeof (Elf32_External_Rel);
3413 }
3414 }
3415 else
3416 h->got.offset = (bfd_vma) -1;
3417
3418 eh = (struct elf32_arm_link_hash_entry *) h;
3419 if (eh->relocs_copied == NULL)
3420 return TRUE;
3421
3422 /* In the shared -Bsymbolic case, discard space allocated for
3423 dynamic pc-relative relocs against symbols which turn out to be
3424 defined in regular objects. For the normal shared case, discard
3425 space for pc-relative relocs that have become local due to symbol
3426 visibility changes. */
3427
3428 if (info->shared)
3429 {
3430 /* Discard relocs on undefined weak syms with non-default
3431 visibility. */
3432 if (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
3433 && h->root.type == bfd_link_hash_undefweak)
3434 eh->relocs_copied = NULL;
3435 }
3436 else
3437 {
3438 /* For the non-shared case, discard space for relocs against
3439 symbols which turn out to need copy relocs or are not
3440 dynamic. */
3441
3442 if ((h->elf_link_hash_flags & ELF_LINK_NON_GOT_REF) == 0
3443 && (((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_DYNAMIC) != 0
3444 && (h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
3445 || (htab->root.dynamic_sections_created
3446 && (h->root.type == bfd_link_hash_undefweak
3447 || h->root.type == bfd_link_hash_undefined))))
3448 {
3449 /* Make sure this symbol is output as a dynamic symbol.
3450 Undefined weak syms won't yet be marked as dynamic. */
3451 if (h->dynindx == -1
3452 && (h->elf_link_hash_flags & ELF_LINK_FORCED_LOCAL) == 0)
3453 {
3454 if (! bfd_elf_link_record_dynamic_symbol (info, h))
3455 return FALSE;
3456 }
3457
3458 /* If that succeeded, we know we'll be keeping all the
3459 relocs. */
3460 if (h->dynindx != -1)
3461 goto keep;
3462 }
3463
3464 eh->relocs_copied = NULL;
3465
3466 keep: ;
3467 }
3468
3469 /* Finally, allocate space. */
3470 for (p = eh->relocs_copied; p != NULL; p = p->next)
3471 {
3472 asection *sreloc = elf_section_data (p->section)->sreloc;
3473 sreloc->size += p->count * sizeof (Elf32_External_Rel);
3474 }
3475
3476 return TRUE;
3477 }
3478
3479 /* Set the sizes of the dynamic sections. */
3480
3481 static bfd_boolean
3482 elf32_arm_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
3483 struct bfd_link_info * info)
3484 {
3485 bfd * dynobj;
3486 asection * s;
3487 bfd_boolean plt;
3488 bfd_boolean relocs;
3489 bfd *ibfd;
3490 struct elf32_arm_link_hash_table *htab;
3491
3492 htab = elf32_arm_hash_table (info);
3493 dynobj = elf_hash_table (info)->dynobj;
3494 BFD_ASSERT (dynobj != NULL);
3495
3496 if (elf_hash_table (info)->dynamic_sections_created)
3497 {
3498 /* Set the contents of the .interp section to the interpreter. */
3499 if (info->executable)
3500 {
3501 s = bfd_get_section_by_name (dynobj, ".interp");
3502 BFD_ASSERT (s != NULL);
3503 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
3504 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
3505 }
3506 }
3507
3508 /* Set up .got offsets for local syms, and space for local dynamic
3509 relocs. */
3510 for (ibfd = info->input_bfds; ibfd != NULL; ibfd = ibfd->link_next)
3511 {
3512 bfd_signed_vma *local_got;
3513 bfd_signed_vma *end_local_got;
3514 char *local_tls_type;
3515 bfd_size_type locsymcount;
3516 Elf_Internal_Shdr *symtab_hdr;
3517 asection *srel;
3518
3519 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour)
3520 continue;
3521
3522 for (s = ibfd->sections; s != NULL; s = s->next)
3523 {
3524 struct elf32_arm_relocs_copied *p;
3525
3526 for (p = *((struct elf32_arm_relocs_copied **)
3527 &elf_section_data (s)->local_dynrel);
3528 p != NULL;
3529 p = p->next)
3530 {
3531 if (!bfd_is_abs_section (p->section)
3532 && bfd_is_abs_section (p->section->output_section))
3533 {
3534 /* Input section has been discarded, either because
3535 it is a copy of a linkonce section or due to
3536 linker script /DISCARD/, so we'll be discarding
3537 the relocs too. */
3538 }
3539 else if (p->count != 0)
3540 {
3541 srel = elf_section_data (p->section)->sreloc;
3542 srel->size += p->count * sizeof (Elf32_External_Rel);
3543 if ((p->section->output_section->flags & SEC_READONLY) != 0)
3544 info->flags |= DF_TEXTREL;
3545 }
3546 }
3547 }
3548
3549 local_got = elf_local_got_refcounts (ibfd);
3550 if (!local_got)
3551 continue;
3552
3553 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
3554 locsymcount = symtab_hdr->sh_info;
3555 end_local_got = local_got + locsymcount;
3556 s = htab->sgot;
3557 srel = htab->srelgot;
3558 for (; local_got < end_local_got; ++local_got, ++local_tls_type)
3559 {
3560 if (*local_got > 0)
3561 {
3562 *local_got = s->size;
3563 s->size += 4;
3564 if (info->shared)
3565 srel->size += sizeof (Elf32_External_Rel);
3566 }
3567 else
3568 *local_got = (bfd_vma) -1;
3569 }
3570 }
3571
3572 /* Allocate global sym .plt and .got entries, and space for global
3573 sym dynamic relocs. */
3574 elf_link_hash_traverse (& htab->root, allocate_dynrelocs, info);
3575
3576 /* The check_relocs and adjust_dynamic_symbol entry points have
3577 determined the sizes of the various dynamic sections. Allocate
3578 memory for them. */
3579 plt = FALSE;
3580 relocs = FALSE;
3581 for (s = dynobj->sections; s != NULL; s = s->next)
3582 {
3583 const char * name;
3584 bfd_boolean strip;
3585
3586 if ((s->flags & SEC_LINKER_CREATED) == 0)
3587 continue;
3588
3589 /* It's OK to base decisions on the section name, because none
3590 of the dynobj section names depend upon the input files. */
3591 name = bfd_get_section_name (dynobj, s);
3592
3593 strip = FALSE;
3594
3595 if (strcmp (name, ".plt") == 0)
3596 {
3597 if (s->size == 0)
3598 {
3599 /* Strip this section if we don't need it; see the
3600 comment below. */
3601 strip = TRUE;
3602 }
3603 else
3604 {
3605 /* Remember whether there is a PLT. */
3606 plt = TRUE;
3607 }
3608 }
3609 else if (strncmp (name, ".rel", 4) == 0)
3610 {
3611 if (s->size == 0)
3612 {
3613 /* If we don't need this section, strip it from the
3614 output file. This is mostly to handle .rel.bss and
3615 .rel.plt. We must create both sections in
3616 create_dynamic_sections, because they must be created
3617 before the linker maps input sections to output
3618 sections. The linker does that before
3619 adjust_dynamic_symbol is called, and it is that
3620 function which decides whether anything needs to go
3621 into these sections. */
3622 strip = TRUE;
3623 }
3624 else
3625 {
3626 /* Remember whether there are any reloc sections other
3627 than .rel.plt. */
3628 if (strcmp (name, ".rel.plt") != 0)
3629 relocs = TRUE;
3630
3631 /* We use the reloc_count field as a counter if we need
3632 to copy relocs into the output file. */
3633 s->reloc_count = 0;
3634 }
3635 }
3636 else if (strncmp (name, ".got", 4) != 0)
3637 {
3638 /* It's not one of our sections, so don't allocate space. */
3639 continue;
3640 }
3641
3642 if (strip)
3643 {
3644 _bfd_strip_section_from_output (info, s);
3645 continue;
3646 }
3647
3648 /* Allocate memory for the section contents. */
3649 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
3650 if (s->contents == NULL && s->size != 0)
3651 return FALSE;
3652 }
3653
3654 if (elf_hash_table (info)->dynamic_sections_created)
3655 {
3656 /* Add some entries to the .dynamic section. We fill in the
3657 values later, in elf32_arm_finish_dynamic_sections, but we
3658 must add the entries now so that we get the correct size for
3659 the .dynamic section. The DT_DEBUG entry is filled in by the
3660 dynamic linker and used by the debugger. */
3661 #define add_dynamic_entry(TAG, VAL) \
3662 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3663
3664 if (!info->shared)
3665 {
3666 if (!add_dynamic_entry (DT_DEBUG, 0))
3667 return FALSE;
3668 }
3669
3670 if (plt)
3671 {
3672 if ( !add_dynamic_entry (DT_PLTGOT, 0)
3673 || !add_dynamic_entry (DT_PLTRELSZ, 0)
3674 || !add_dynamic_entry (DT_PLTREL, DT_REL)
3675 || !add_dynamic_entry (DT_JMPREL, 0))
3676 return FALSE;
3677 }
3678
3679 if (relocs)
3680 {
3681 if ( !add_dynamic_entry (DT_REL, 0)
3682 || !add_dynamic_entry (DT_RELSZ, 0)
3683 || !add_dynamic_entry (DT_RELENT, sizeof (Elf32_External_Rel)))
3684 return FALSE;
3685 }
3686
3687 if ((info->flags & DF_TEXTREL) != 0)
3688 {
3689 if (!add_dynamic_entry (DT_TEXTREL, 0))
3690 return FALSE;
3691 info->flags |= DF_TEXTREL;
3692 }
3693 }
3694 #undef add_synamic_entry
3695
3696 return TRUE;
3697 }
3698
3699 /* Finish up dynamic symbol handling. We set the contents of various
3700 dynamic sections here. */
3701
3702 static bfd_boolean
3703 elf32_arm_finish_dynamic_symbol (bfd * output_bfd, struct bfd_link_info * info,
3704 struct elf_link_hash_entry * h, Elf_Internal_Sym * sym)
3705 {
3706 bfd * dynobj;
3707 struct elf32_arm_link_hash_table *htab;
3708
3709 dynobj = elf_hash_table (info)->dynobj;
3710 htab = elf32_arm_hash_table (info);
3711
3712 if (h->plt.offset != (bfd_vma) -1)
3713 {
3714 asection * splt;
3715 asection * srel;
3716 bfd_byte *loc;
3717 bfd_vma plt_index;
3718 Elf_Internal_Rela rel;
3719
3720 /* This symbol has an entry in the procedure linkage table. Set
3721 it up. */
3722
3723 BFD_ASSERT (h->dynindx != -1);
3724
3725 splt = bfd_get_section_by_name (dynobj, ".plt");
3726 srel = bfd_get_section_by_name (dynobj, ".rel.plt");
3727 BFD_ASSERT (splt != NULL && srel != NULL);
3728
3729 /* Get the index in the procedure linkage table which
3730 corresponds to this symbol. This is the index of this symbol
3731 in all the symbols for which we are making plt entries. The
3732 first entry in the procedure linkage table is reserved. */
3733 plt_index = ((h->plt.offset - htab->plt_header_size)
3734 / htab->plt_entry_size);
3735
3736 /* Fill in the entry in the procedure linkage table. */
3737 if (htab->symbian_p)
3738 {
3739 unsigned i;
3740 for (i = 0; i < htab->plt_entry_size / 4; ++i)
3741 bfd_put_32 (output_bfd,
3742 elf32_arm_symbian_plt_entry[i],
3743 splt->contents + h->plt.offset + 4 * i);
3744
3745 /* Fill in the entry in the .rel.plt section. */
3746 rel.r_offset = (splt->output_offset
3747 + h->plt.offset + 4 * (i - 1));
3748 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_GLOB_DAT);
3749 }
3750 else
3751 {
3752 bfd_vma got_offset;
3753 bfd_vma got_displacement;
3754 asection * sgot;
3755
3756 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
3757 BFD_ASSERT (sgot != NULL);
3758
3759 /* Get the offset into the .got table of the entry that
3760 corresponds to this function. Each .got entry is 4 bytes.
3761 The first three are reserved. */
3762 got_offset = (plt_index + 3) * 4;
3763
3764 /* Calculate the displacement between the PLT slot and the
3765 entry in the GOT. */
3766 got_displacement = (sgot->output_section->vma
3767 + sgot->output_offset
3768 + got_offset
3769 - splt->output_section->vma
3770 - splt->output_offset
3771 - h->plt.offset
3772 - 8);
3773
3774 BFD_ASSERT ((got_displacement & 0xf0000000) == 0);
3775
3776 bfd_put_32 (output_bfd, elf32_arm_plt_entry[0] | ((got_displacement & 0x0ff00000) >> 20),
3777 splt->contents + h->plt.offset + 0);
3778 bfd_put_32 (output_bfd, elf32_arm_plt_entry[1] | ((got_displacement & 0x000ff000) >> 12),
3779 splt->contents + h->plt.offset + 4);
3780 bfd_put_32 (output_bfd, elf32_arm_plt_entry[2] | (got_displacement & 0x00000fff),
3781 splt->contents + h->plt.offset + 8);
3782 #ifdef FOUR_WORD_PLT
3783 bfd_put_32 (output_bfd, elf32_arm_plt_entry[3],
3784 splt->contents + h->plt.offset + 12);
3785 #endif
3786
3787 /* Fill in the entry in the global offset table. */
3788 bfd_put_32 (output_bfd,
3789 (splt->output_section->vma
3790 + splt->output_offset),
3791 sgot->contents + got_offset);
3792
3793 /* Fill in the entry in the .rel.plt section. */
3794 rel.r_offset = (sgot->output_section->vma
3795 + sgot->output_offset
3796 + got_offset);
3797 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_JUMP_SLOT);
3798 }
3799
3800 loc = srel->contents + plt_index * sizeof (Elf32_External_Rel);
3801 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
3802
3803 if ((h->elf_link_hash_flags & ELF_LINK_HASH_DEF_REGULAR) == 0)
3804 {
3805 /* Mark the symbol as undefined, rather than as defined in
3806 the .plt section. Leave the value alone. */
3807 sym->st_shndx = SHN_UNDEF;
3808 /* If the symbol is weak, we do need to clear the value.
3809 Otherwise, the PLT entry would provide a definition for
3810 the symbol even if the symbol wasn't defined anywhere,
3811 and so the symbol would never be NULL. */
3812 if ((h->elf_link_hash_flags & ELF_LINK_HASH_REF_REGULAR_NONWEAK)
3813 == 0)
3814 sym->st_value = 0;
3815 }
3816 }
3817
3818 if (h->got.offset != (bfd_vma) -1)
3819 {
3820 asection * sgot;
3821 asection * srel;
3822 Elf_Internal_Rela rel;
3823 bfd_byte *loc;
3824
3825 /* This symbol has an entry in the global offset table. Set it
3826 up. */
3827 sgot = bfd_get_section_by_name (dynobj, ".got");
3828 srel = bfd_get_section_by_name (dynobj, ".rel.got");
3829 BFD_ASSERT (sgot != NULL && srel != NULL);
3830
3831 rel.r_offset = (sgot->output_section->vma
3832 + sgot->output_offset
3833 + (h->got.offset &~ (bfd_vma) 1));
3834
3835 /* If this is a static link, or it is a -Bsymbolic link and the
3836 symbol is defined locally or was forced to be local because
3837 of a version file, we just want to emit a RELATIVE reloc.
3838 The entry in the global offset table will already have been
3839 initialized in the relocate_section function. */
3840 if (info->shared
3841 && SYMBOL_REFERENCES_LOCAL (info, h))
3842 {
3843 BFD_ASSERT((h->got.offset & 1) != 0);
3844 rel.r_info = ELF32_R_INFO (0, R_ARM_RELATIVE);
3845 }
3846 else
3847 {
3848 BFD_ASSERT((h->got.offset & 1) == 0);
3849 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got.offset);
3850 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_GLOB_DAT);
3851 }
3852
3853 loc = srel->contents + srel->reloc_count++ * sizeof (Elf32_External_Rel);
3854 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
3855 }
3856
3857 if ((h->elf_link_hash_flags & ELF_LINK_HASH_NEEDS_COPY) != 0)
3858 {
3859 asection * s;
3860 Elf_Internal_Rela rel;
3861 bfd_byte *loc;
3862
3863 /* This symbol needs a copy reloc. Set it up. */
3864 BFD_ASSERT (h->dynindx != -1
3865 && (h->root.type == bfd_link_hash_defined
3866 || h->root.type == bfd_link_hash_defweak));
3867
3868 s = bfd_get_section_by_name (h->root.u.def.section->owner,
3869 ".rel.bss");
3870 BFD_ASSERT (s != NULL);
3871
3872 rel.r_offset = (h->root.u.def.value
3873 + h->root.u.def.section->output_section->vma
3874 + h->root.u.def.section->output_offset);
3875 rel.r_info = ELF32_R_INFO (h->dynindx, R_ARM_COPY);
3876 loc = s->contents + s->reloc_count++ * sizeof (Elf32_External_Rel);
3877 bfd_elf32_swap_reloc_out (output_bfd, &rel, loc);
3878 }
3879
3880 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
3881 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
3882 || strcmp (h->root.root.string, "_GLOBAL_OFFSET_TABLE_") == 0)
3883 sym->st_shndx = SHN_ABS;
3884
3885 return TRUE;
3886 }
3887
3888 /* Finish up the dynamic sections. */
3889
3890 static bfd_boolean
3891 elf32_arm_finish_dynamic_sections (bfd * output_bfd, struct bfd_link_info * info)
3892 {
3893 bfd * dynobj;
3894 asection * sgot;
3895 asection * sdyn;
3896
3897 dynobj = elf_hash_table (info)->dynobj;
3898
3899 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
3900 BFD_ASSERT (elf32_arm_hash_table (info)->symbian_p || sgot != NULL);
3901 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
3902
3903 if (elf_hash_table (info)->dynamic_sections_created)
3904 {
3905 asection *splt;
3906 Elf32_External_Dyn *dyncon, *dynconend;
3907 struct elf32_arm_link_hash_table *htab;
3908
3909 htab = elf32_arm_hash_table (info);
3910 splt = bfd_get_section_by_name (dynobj, ".plt");
3911 BFD_ASSERT (splt != NULL && sdyn != NULL);
3912
3913 dyncon = (Elf32_External_Dyn *) sdyn->contents;
3914 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
3915
3916 for (; dyncon < dynconend; dyncon++)
3917 {
3918 Elf_Internal_Dyn dyn;
3919 const char * name;
3920 asection * s;
3921
3922 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
3923
3924 switch (dyn.d_tag)
3925 {
3926 unsigned int type;
3927
3928 default:
3929 break;
3930
3931 case DT_HASH:
3932 name = ".hash";
3933 goto get_vma_if_bpabi;
3934 case DT_STRTAB:
3935 name = ".dynstr";
3936 goto get_vma_if_bpabi;
3937 case DT_SYMTAB:
3938 name = ".dynsym";
3939 goto get_vma_if_bpabi;
3940
3941 case DT_PLTGOT:
3942 name = ".got";
3943 goto get_vma;
3944 case DT_JMPREL:
3945 name = ".rel.plt";
3946 get_vma:
3947 s = bfd_get_section_by_name (output_bfd, name);
3948 BFD_ASSERT (s != NULL);
3949 if (!htab->symbian_p)
3950 dyn.d_un.d_ptr = s->vma;
3951 else
3952 /* In the BPABI, tags in the PT_DYNAMIC section point
3953 at the file offset, not the memory address, for the
3954 convenience of the post linker. */
3955 dyn.d_un.d_ptr = s->filepos;
3956 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3957 break;
3958
3959 get_vma_if_bpabi:
3960 if (htab->symbian_p)
3961 goto get_vma;
3962 break;
3963
3964 case DT_PLTRELSZ:
3965 s = bfd_get_section_by_name (output_bfd, ".rel.plt");
3966 BFD_ASSERT (s != NULL);
3967 dyn.d_un.d_val = s->size;
3968 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3969 break;
3970
3971 case DT_RELSZ:
3972 if (!htab->symbian_p)
3973 {
3974 /* My reading of the SVR4 ABI indicates that the
3975 procedure linkage table relocs (DT_JMPREL) should be
3976 included in the overall relocs (DT_REL). This is
3977 what Solaris does. However, UnixWare can not handle
3978 that case. Therefore, we override the DT_RELSZ entry
3979 here to make it not include the JMPREL relocs. Since
3980 the linker script arranges for .rel.plt to follow all
3981 other relocation sections, we don't have to worry
3982 about changing the DT_REL entry. */
3983 s = bfd_get_section_by_name (output_bfd, ".rel.plt");
3984 if (s != NULL)
3985 dyn.d_un.d_val -= s->size;
3986 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
3987 break;
3988 }
3989 /* Fall through */
3990
3991 case DT_REL:
3992 case DT_RELA:
3993 case DT_RELASZ:
3994 /* In the BPABI, the DT_REL tag must point at the file
3995 offset, not the VMA, of the first relocation
3996 section. So, we use code similar to that in
3997 elflink.c, but do not check for SHF_ALLOC on the
3998 relcoation section, since relocations sections are
3999 never allocated under the BPABI. The comments above
4000 about Unixware notwithstanding, we include all of the
4001 relocations here. */
4002 if (htab->symbian_p)
4003 {
4004 unsigned int i;
4005 type = ((dyn.d_tag == DT_REL || dyn.d_tag == DT_RELSZ)
4006 ? SHT_REL : SHT_RELA);
4007 dyn.d_un.d_val = 0;
4008 for (i = 1; i < elf_numsections (output_bfd); i++)
4009 {
4010 Elf_Internal_Shdr *hdr
4011 = elf_elfsections (output_bfd)[i];
4012 if (hdr->sh_type == type)
4013 {
4014 if (dyn.d_tag == DT_RELSZ
4015 || dyn.d_tag == DT_RELASZ)
4016 dyn.d_un.d_val += hdr->sh_size;
4017 else if (dyn.d_un.d_val == 0
4018 || hdr->sh_offset < dyn.d_un.d_val)
4019 dyn.d_un.d_val = hdr->sh_offset;
4020 }
4021 }
4022 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4023 }
4024 break;
4025
4026 /* Set the bottom bit of DT_INIT/FINI if the
4027 corresponding function is Thumb. */
4028 case DT_INIT:
4029 name = info->init_function;
4030 goto get_sym;
4031 case DT_FINI:
4032 name = info->fini_function;
4033 get_sym:
4034 /* If it wasn't set by elf_bfd_final_link
4035 then there is nothing to adjust. */
4036 if (dyn.d_un.d_val != 0)
4037 {
4038 struct elf_link_hash_entry * eh;
4039
4040 eh = elf_link_hash_lookup (elf_hash_table (info), name,
4041 FALSE, FALSE, TRUE);
4042 if (eh != (struct elf_link_hash_entry *) NULL
4043 && ELF_ST_TYPE (eh->type) == STT_ARM_TFUNC)
4044 {
4045 dyn.d_un.d_val |= 1;
4046 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4047 }
4048 }
4049 break;
4050 }
4051 }
4052
4053 /* Fill in the first entry in the procedure linkage table. */
4054 if (splt->size > 0 && elf32_arm_hash_table (info)->plt_header_size)
4055 {
4056 bfd_vma got_displacement;
4057
4058 /* Calculate the displacement between the PLT slot and &GOT[0]. */
4059 got_displacement = (sgot->output_section->vma
4060 + sgot->output_offset
4061 - splt->output_section->vma
4062 - splt->output_offset
4063 - 16);
4064
4065 bfd_put_32 (output_bfd, elf32_arm_plt0_entry[0], splt->contents + 0);
4066 bfd_put_32 (output_bfd, elf32_arm_plt0_entry[1], splt->contents + 4);
4067 bfd_put_32 (output_bfd, elf32_arm_plt0_entry[2], splt->contents + 8);
4068 bfd_put_32 (output_bfd, elf32_arm_plt0_entry[3], splt->contents + 12);
4069 #ifdef FOUR_WORD_PLT
4070 /* The displacement value goes in the otherwise-unused last word of
4071 the second entry. */
4072 bfd_put_32 (output_bfd, got_displacement, splt->contents + 28);
4073 #else
4074 bfd_put_32 (output_bfd, got_displacement, splt->contents + 16);
4075 #endif
4076 }
4077
4078 /* UnixWare sets the entsize of .plt to 4, although that doesn't
4079 really seem like the right value. */
4080 elf_section_data (splt->output_section)->this_hdr.sh_entsize = 4;
4081 }
4082
4083 /* Fill in the first three entries in the global offset table. */
4084 if (sgot)
4085 {
4086 if (sgot->size > 0)
4087 {
4088 if (sdyn == NULL)
4089 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
4090 else
4091 bfd_put_32 (output_bfd,
4092 sdyn->output_section->vma + sdyn->output_offset,
4093 sgot->contents);
4094 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 4);
4095 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + 8);
4096 }
4097
4098 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
4099 }
4100
4101 return TRUE;
4102 }
4103
4104 static void
4105 elf32_arm_post_process_headers (bfd * abfd, struct bfd_link_info * link_info ATTRIBUTE_UNUSED)
4106 {
4107 Elf_Internal_Ehdr * i_ehdrp; /* ELF file header, internal form. */
4108 struct elf32_arm_link_hash_table *globals;
4109
4110 i_ehdrp = elf_elfheader (abfd);
4111
4112 i_ehdrp->e_ident[EI_OSABI] = ARM_ELF_OS_ABI_VERSION;
4113 i_ehdrp->e_ident[EI_ABIVERSION] = ARM_ELF_ABI_VERSION;
4114
4115 if (link_info)
4116 {
4117 globals = elf32_arm_hash_table (link_info);
4118 if (globals->byteswap_code)
4119 i_ehdrp->e_flags |= EF_ARM_BE8;
4120 }
4121 }
4122
4123 static enum elf_reloc_type_class
4124 elf32_arm_reloc_type_class (const Elf_Internal_Rela *rela)
4125 {
4126 switch ((int) ELF32_R_TYPE (rela->r_info))
4127 {
4128 case R_ARM_RELATIVE:
4129 return reloc_class_relative;
4130 case R_ARM_JUMP_SLOT:
4131 return reloc_class_plt;
4132 case R_ARM_COPY:
4133 return reloc_class_copy;
4134 default:
4135 return reloc_class_normal;
4136 }
4137 }
4138
4139 static bfd_boolean elf32_arm_section_flags (flagword *, const Elf_Internal_Shdr *);
4140 static void elf32_arm_final_write_processing (bfd *, bfd_boolean);
4141
4142 /* Set the right machine number for an Arm ELF file. */
4143
4144 static bfd_boolean
4145 elf32_arm_section_flags (flagword *flags, const Elf_Internal_Shdr *hdr)
4146 {
4147 if (hdr->sh_type == SHT_NOTE)
4148 *flags |= SEC_LINK_ONCE | SEC_LINK_DUPLICATES_SAME_CONTENTS;
4149
4150 return TRUE;
4151 }
4152
4153 static void
4154 elf32_arm_final_write_processing (bfd *abfd, bfd_boolean linker ATTRIBUTE_UNUSED)
4155 {
4156 bfd_arm_update_notes (abfd, ARM_NOTE_SECTION);
4157 }
4158
4159
4160 /* Called for each symbol. Builds a section map based on mapping symbols.
4161 Does not alter any of the symbols. */
4162
4163 static bfd_boolean
4164 elf32_arm_output_symbol_hook (struct bfd_link_info *info,
4165 const char *name,
4166 Elf_Internal_Sym *elfsym,
4167 asection *input_sec,
4168 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED)
4169 {
4170 int mapcount;
4171 elf32_arm_section_map *map;
4172 struct elf32_arm_link_hash_table *globals;
4173
4174 /* Only do this on final link. */
4175 if (info->relocatable)
4176 return TRUE;
4177
4178 /* Only build a map if we need to byteswap code. */
4179 globals = elf32_arm_hash_table (info);
4180 if (!globals->byteswap_code)
4181 return TRUE;
4182
4183 /* We only want mapping symbols. */
4184 if (! is_arm_mapping_symbol_name (name))
4185 return TRUE;
4186
4187 mapcount = ++(elf32_arm_section_data (input_sec)->mapcount);
4188 map = elf32_arm_section_data (input_sec)->map;
4189 /* TODO: This may be inefficient, but we probably don't usually have many
4190 mapping symbols per section. */
4191 map = bfd_realloc (map, mapcount * sizeof (elf32_arm_section_map));
4192 elf32_arm_section_data (input_sec)->map = map;
4193
4194 map[mapcount - 1].vma = elfsym->st_value;
4195 map[mapcount - 1].type = name[1];
4196 return TRUE;
4197 }
4198
4199
4200 /* Allocate target specific section data. */
4201
4202 static bfd_boolean
4203 elf32_arm_new_section_hook (bfd *abfd, asection *sec)
4204 {
4205 struct _arm_elf_section_data *sdata;
4206 bfd_size_type amt = sizeof (*sdata);
4207
4208 sdata = bfd_zalloc (abfd, amt);
4209 if (sdata == NULL)
4210 return FALSE;
4211 sec->used_by_bfd = sdata;
4212
4213 return _bfd_elf_new_section_hook (abfd, sec);
4214 }
4215
4216
4217 /* Used to order a list of mapping symbols by address. */
4218
4219 static int
4220 elf32_arm_compare_mapping (const void * a, const void * b)
4221 {
4222 return ((const elf32_arm_section_map *) a)->vma
4223 > ((const elf32_arm_section_map *) b)->vma;
4224 }
4225
4226
4227 /* Do code byteswapping. Return FALSE afterwards so that the section is
4228 written out as normal. */
4229
4230 static bfd_boolean
4231 elf32_arm_write_section (bfd *output_bfd ATTRIBUTE_UNUSED, asection *sec,
4232 bfd_byte *contents)
4233 {
4234 int mapcount;
4235 elf32_arm_section_map *map;
4236 bfd_vma ptr;
4237 bfd_vma end;
4238 bfd_vma offset;
4239 bfd_byte tmp;
4240 int i;
4241
4242 mapcount = elf32_arm_section_data (sec)->mapcount;
4243 map = elf32_arm_section_data (sec)->map;
4244
4245 if (mapcount == 0)
4246 return FALSE;
4247
4248 qsort (map, mapcount, sizeof (elf32_arm_section_map),
4249 elf32_arm_compare_mapping);
4250
4251 offset = sec->output_section->vma + sec->output_offset;
4252 ptr = map[0].vma - offset;
4253 for (i = 0; i < mapcount; i++)
4254 {
4255 if (i == mapcount - 1)
4256 end = sec->size;
4257 else
4258 end = map[i + 1].vma - offset;
4259
4260 switch (map[i].type)
4261 {
4262 case 'a':
4263 /* Byte swap code words. */
4264 while (ptr + 3 < end)
4265 {
4266 tmp = contents[ptr];
4267 contents[ptr] = contents[ptr + 3];
4268 contents[ptr + 3] = tmp;
4269 tmp = contents[ptr + 1];
4270 contents[ptr + 1] = contents[ptr + 2];
4271 contents[ptr + 2] = tmp;
4272 ptr += 4;
4273 }
4274 break;
4275
4276 case 't':
4277 /* Byte swap code halfwords. */
4278 while (ptr + 1 < end)
4279 {
4280 tmp = contents[ptr];
4281 contents[ptr] = contents[ptr + 1];
4282 contents[ptr + 1] = tmp;
4283 ptr += 2;
4284 }
4285 break;
4286
4287 case 'd':
4288 /* Leave data alone. */
4289 break;
4290 }
4291 ptr = end;
4292 }
4293 free (map);
4294 return FALSE;
4295 }
4296
4297 #define ELF_ARCH bfd_arch_arm
4298 #define ELF_MACHINE_CODE EM_ARM
4299 #ifdef __QNXTARGET__
4300 #define ELF_MAXPAGESIZE 0x1000
4301 #else
4302 #define ELF_MAXPAGESIZE 0x8000
4303 #endif
4304
4305 #define bfd_elf32_bfd_copy_private_bfd_data elf32_arm_copy_private_bfd_data
4306 #define bfd_elf32_bfd_merge_private_bfd_data elf32_arm_merge_private_bfd_data
4307 #define bfd_elf32_bfd_set_private_flags elf32_arm_set_private_flags
4308 #define bfd_elf32_bfd_print_private_bfd_data elf32_arm_print_private_bfd_data
4309 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_link_hash_table_create
4310 #define bfd_elf32_bfd_reloc_type_lookup elf32_arm_reloc_type_lookup
4311 #define bfd_elf32_find_nearest_line elf32_arm_find_nearest_line
4312 #define bfd_elf32_new_section_hook elf32_arm_new_section_hook
4313
4314 #define elf_backend_get_symbol_type elf32_arm_get_symbol_type
4315 #define elf_backend_gc_mark_hook elf32_arm_gc_mark_hook
4316 #define elf_backend_gc_sweep_hook elf32_arm_gc_sweep_hook
4317 #define elf_backend_check_relocs elf32_arm_check_relocs
4318 #define elf_backend_relocate_section elf32_arm_relocate_section
4319 #define elf_backend_write_section elf32_arm_write_section
4320 #define elf_backend_adjust_dynamic_symbol elf32_arm_adjust_dynamic_symbol
4321 #define elf_backend_create_dynamic_sections elf32_arm_create_dynamic_sections
4322 #define elf_backend_finish_dynamic_symbol elf32_arm_finish_dynamic_symbol
4323 #define elf_backend_finish_dynamic_sections elf32_arm_finish_dynamic_sections
4324 #define elf_backend_link_output_symbol_hook elf32_arm_output_symbol_hook
4325 #define elf_backend_size_dynamic_sections elf32_arm_size_dynamic_sections
4326 #define elf_backend_post_process_headers elf32_arm_post_process_headers
4327 #define elf_backend_reloc_type_class elf32_arm_reloc_type_class
4328 #define elf_backend_object_p elf32_arm_object_p
4329 #define elf_backend_section_flags elf32_arm_section_flags
4330 #define elf_backend_final_write_processing elf32_arm_final_write_processing
4331 #define elf_backend_copy_indirect_symbol elf32_arm_copy_indirect_symbol
4332
4333 #define elf_backend_can_refcount 1
4334 #define elf_backend_can_gc_sections 1
4335 #define elf_backend_plt_readonly 1
4336 #define elf_backend_want_got_plt 1
4337 #define elf_backend_want_plt_sym 0
4338 #if !USE_REL
4339 #define elf_backend_rela_normal 1
4340 #endif
4341
4342 #define elf_backend_got_header_size 12
4343
4344 #include "elf32-target.h"
This page took 0.139912 seconds and 3 git commands to generate.