1 /* 32-bit ELF support for ARM
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
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.
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.
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. */
25 typedef unsigned long int insn32
;
26 typedef unsigned short int insn16
;
28 #define INTERWORK_FLAG(abfd) \
29 (elf_elfheader (abfd)->e_flags & EF_ARM_INTERWORK)
31 /* The linker script knows the section names for placement.
32 The entry_names are used to do simple name mangling on the stubs.
33 Given a function name, and its type, the stub can be found. The
34 name can be changed. The only requirement is the %s be present. */
35 #define THUMB2ARM_GLUE_SECTION_NAME ".glue_7t"
36 #define THUMB2ARM_GLUE_ENTRY_NAME "__%s_from_thumb"
38 #define ARM2THUMB_GLUE_SECTION_NAME ".glue_7"
39 #define ARM2THUMB_GLUE_ENTRY_NAME "__%s_from_arm"
41 /* The name of the dynamic interpreter. This is put in the .interp
43 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/ld.so.1"
47 /* The size in bytes of the special first entry in the procedure
49 #define PLT_HEADER_SIZE 16
51 /* The size in bytes of an entry in the procedure linkage table. */
52 #define PLT_ENTRY_SIZE 16
54 /* The first entry in a procedure linkage table looks like
55 this. It is set up so that any shared library function that is
56 called before the relocation has been set up calls the dynamic
58 static const bfd_vma elf32_arm_plt0_entry
[PLT_HEADER_SIZE
/ 4] =
60 0xe52de004, /* str lr, [sp, #-4]! */
61 0xe59fe010, /* ldr lr, [pc, #16] */
62 0xe08fe00e, /* add lr, pc, lr */
63 0xe5bef008, /* ldr pc, [lr, #8]! */
66 /* Subsequent entries in a procedure linkage table look like
68 static const bfd_vma elf32_arm_plt_entry
[PLT_ENTRY_SIZE
/ 4] =
70 0xe28fc600, /* add ip, pc, #NN */
71 0xe28cca00, /* add ip, ip, #NN */
72 0xe5bcf000, /* ldr pc, [ip, #NN]! */
73 0x00000000, /* unused */
78 /* The size in bytes of the special first entry in the procedure
80 #define PLT_HEADER_SIZE 20
82 /* The size in bytes of an entry in the procedure linkage table. */
83 #define PLT_ENTRY_SIZE 12
85 /* The first entry in a procedure linkage table looks like
86 this. It is set up so that any shared library function that is
87 called before the relocation has been set up calls the dynamic
89 static const bfd_vma elf32_arm_plt0_entry
[PLT_HEADER_SIZE
/ 4] =
91 0xe52de004, /* str lr, [sp, #-4]! */
92 0xe59fe004, /* ldr lr, [pc, #4] */
93 0xe08fe00e, /* add lr, pc, lr */
94 0xe5bef008, /* ldr pc, [lr, #8]! */
95 0x00000000, /* &GOT[0] - . */
98 /* Subsequent entries in a procedure linkage table look like
100 static const bfd_vma elf32_arm_plt_entry
[PLT_ENTRY_SIZE
/ 4] =
102 0xe28fc600, /* add ip, pc, #0xNN00000 */
103 0xe28cca00, /* add ip, ip, #0xNN000 */
104 0xe5bcf000, /* ldr pc, [ip, #0xNNN]! */
109 /* Used to build a map of a section. This is required for mixed-endian
112 typedef struct elf32_elf_section_map
117 elf32_arm_section_map
;
119 struct _arm_elf_section_data
121 struct bfd_elf_section_data elf
;
123 elf32_arm_section_map
*map
;
126 #define elf32_arm_section_data(sec) \
127 ((struct _arm_elf_section_data *) elf_section_data (sec))
129 /* The ARM linker needs to keep track of the number of relocs that it
130 decides to copy in check_relocs for each symbol. This is so that
131 it can discard PC relative relocs if it doesn't need them when
132 linking with -Bsymbolic. We store the information in a field
133 extending the regular ELF linker hash table. */
135 /* This structure keeps track of the number of PC relative relocs we
136 have copied for a given symbol. */
137 struct elf32_arm_relocs_copied
140 struct elf32_arm_relocs_copied
* next
;
141 /* A section in dynobj. */
143 /* Number of relocs copied in this section. */
147 /* Arm ELF linker hash entry. */
148 struct elf32_arm_link_hash_entry
150 struct elf_link_hash_entry root
;
152 /* Number of PC relative relocs copied for this symbol. */
153 struct elf32_arm_relocs_copied
* relocs_copied
;
156 /* Traverse an arm ELF linker hash table. */
157 #define elf32_arm_link_hash_traverse(table, func, info) \
158 (elf_link_hash_traverse \
160 (bfd_boolean (*) (struct elf_link_hash_entry *, void *))) (func), \
163 /* Get the ARM elf linker hash table from a link_info structure. */
164 #define elf32_arm_hash_table(info) \
165 ((struct elf32_arm_link_hash_table *) ((info)->hash))
167 /* ARM ELF linker hash table. */
168 struct elf32_arm_link_hash_table
170 /* The main hash table. */
171 struct elf_link_hash_table root
;
173 /* The size in bytes of the section containing the Thumb-to-ARM glue. */
174 bfd_size_type thumb_glue_size
;
176 /* The size in bytes of the section containing the ARM-to-Thumb glue. */
177 bfd_size_type arm_glue_size
;
179 /* An arbitrary input BFD chosen to hold the glue sections. */
180 bfd
* bfd_of_glue_owner
;
182 /* A boolean indicating whether knowledge of the ARM's pipeline
183 length should be applied by the linker. */
184 int no_pipeline_knowledge
;
186 /* Nonzero to output a BE8 image. */
189 /* Short-cuts to get to dynamic linker sections. */
198 /* Small local sym to section mapping cache. */
199 struct sym_sec_cache sym_sec
;
202 /* Create an entry in an ARM ELF linker hash table. */
204 static struct bfd_hash_entry
*
205 elf32_arm_link_hash_newfunc (struct bfd_hash_entry
* entry
,
206 struct bfd_hash_table
* table
,
209 struct elf32_arm_link_hash_entry
* ret
=
210 (struct elf32_arm_link_hash_entry
*) entry
;
212 /* Allocate the structure if it has not already been allocated by a
214 if (ret
== (struct elf32_arm_link_hash_entry
*) NULL
)
215 ret
= bfd_hash_allocate (table
, sizeof (struct elf32_arm_link_hash_entry
));
217 return (struct bfd_hash_entry
*) ret
;
219 /* Call the allocation method of the superclass. */
220 ret
= ((struct elf32_arm_link_hash_entry
*)
221 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
224 ret
->relocs_copied
= NULL
;
226 return (struct bfd_hash_entry
*) ret
;
229 /* Create .got, .gotplt, and .rel.got sections in DYNOBJ, and set up
230 shortcuts to them in our hash table. */
233 create_got_section (bfd
*dynobj
, struct bfd_link_info
*info
)
235 struct elf32_arm_link_hash_table
*htab
;
237 if (! _bfd_elf_create_got_section (dynobj
, info
))
240 htab
= elf32_arm_hash_table (info
);
241 htab
->sgot
= bfd_get_section_by_name (dynobj
, ".got");
242 htab
->sgotplt
= bfd_get_section_by_name (dynobj
, ".got.plt");
243 if (!htab
->sgot
|| !htab
->sgotplt
)
246 htab
->srelgot
= bfd_make_section (dynobj
, ".rel.got");
247 if (htab
->srelgot
== NULL
248 || ! bfd_set_section_flags (dynobj
, htab
->srelgot
,
249 (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
250 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
252 || ! bfd_set_section_alignment (dynobj
, htab
->srelgot
, 2))
257 /* Create .plt, .rel.plt, .got, .got.plt, .rel.got, .dynbss, and
258 .rel.bss sections in DYNOBJ, and set up shortcuts to them in our
262 elf32_arm_create_dynamic_sections (bfd
*dynobj
, struct bfd_link_info
*info
)
264 struct elf32_arm_link_hash_table
*htab
;
266 htab
= elf32_arm_hash_table (info
);
267 if (!htab
->sgot
&& !create_got_section (dynobj
, info
))
270 if (!_bfd_elf_create_dynamic_sections (dynobj
, info
))
273 htab
->splt
= bfd_get_section_by_name (dynobj
, ".plt");
274 htab
->srelplt
= bfd_get_section_by_name (dynobj
, ".rel.plt");
275 htab
->sdynbss
= bfd_get_section_by_name (dynobj
, ".dynbss");
277 htab
->srelbss
= bfd_get_section_by_name (dynobj
, ".rel.bss");
279 if (!htab
->splt
|| !htab
->srelplt
|| !htab
->sdynbss
280 || (!info
->shared
&& !htab
->srelbss
))
286 /* Copy the extra info we tack onto an elf_link_hash_entry. */
289 elf32_arm_copy_indirect_symbol (const struct elf_backend_data
*bed
,
290 struct elf_link_hash_entry
*dir
,
291 struct elf_link_hash_entry
*ind
)
293 struct elf32_arm_link_hash_entry
*edir
, *eind
;
295 edir
= (struct elf32_arm_link_hash_entry
*) dir
;
296 eind
= (struct elf32_arm_link_hash_entry
*) ind
;
298 if (eind
->relocs_copied
!= NULL
)
300 if (edir
->relocs_copied
!= NULL
)
302 struct elf32_arm_relocs_copied
**pp
;
303 struct elf32_arm_relocs_copied
*p
;
305 if (ind
->root
.type
== bfd_link_hash_indirect
)
308 /* Add reloc counts against the weak sym to the strong sym
309 list. Merge any entries against the same section. */
310 for (pp
= &eind
->relocs_copied
; (p
= *pp
) != NULL
; )
312 struct elf32_arm_relocs_copied
*q
;
314 for (q
= edir
->relocs_copied
; q
!= NULL
; q
= q
->next
)
315 if (q
->section
== p
->section
)
317 q
->count
+= p
->count
;
324 *pp
= edir
->relocs_copied
;
327 edir
->relocs_copied
= eind
->relocs_copied
;
328 eind
->relocs_copied
= NULL
;
331 _bfd_elf_link_hash_copy_indirect (bed
, dir
, ind
);
334 /* Create an ARM elf linker hash table. */
336 static struct bfd_link_hash_table
*
337 elf32_arm_link_hash_table_create (bfd
*abfd
)
339 struct elf32_arm_link_hash_table
*ret
;
340 bfd_size_type amt
= sizeof (struct elf32_arm_link_hash_table
);
342 ret
= bfd_malloc (amt
);
346 if (!_bfd_elf_link_hash_table_init (& ret
->root
, abfd
,
347 elf32_arm_link_hash_newfunc
))
360 ret
->thumb_glue_size
= 0;
361 ret
->arm_glue_size
= 0;
362 ret
->bfd_of_glue_owner
= NULL
;
363 ret
->no_pipeline_knowledge
= 0;
364 ret
->byteswap_code
= 0;
365 ret
->sym_sec
.abfd
= NULL
;
367 return &ret
->root
.root
;
370 /* Locate the Thumb encoded calling stub for NAME. */
372 static struct elf_link_hash_entry
*
373 find_thumb_glue (struct bfd_link_info
*link_info
,
378 struct elf_link_hash_entry
*hash
;
379 struct elf32_arm_link_hash_table
*hash_table
;
381 /* We need a pointer to the armelf specific hash table. */
382 hash_table
= elf32_arm_hash_table (link_info
);
384 tmp_name
= bfd_malloc ((bfd_size_type
) strlen (name
)
385 + strlen (THUMB2ARM_GLUE_ENTRY_NAME
) + 1);
387 BFD_ASSERT (tmp_name
);
389 sprintf (tmp_name
, THUMB2ARM_GLUE_ENTRY_NAME
, name
);
391 hash
= elf_link_hash_lookup
392 (&(hash_table
)->root
, tmp_name
, FALSE
, FALSE
, TRUE
);
395 /* xgettext:c-format */
396 (*_bfd_error_handler
) (_("%B: unable to find THUMB glue '%s' for `%s'"),
397 input_bfd
, tmp_name
, name
);
404 /* Locate the ARM encoded calling stub for NAME. */
406 static struct elf_link_hash_entry
*
407 find_arm_glue (struct bfd_link_info
*link_info
,
412 struct elf_link_hash_entry
*myh
;
413 struct elf32_arm_link_hash_table
*hash_table
;
415 /* We need a pointer to the elfarm specific hash table. */
416 hash_table
= elf32_arm_hash_table (link_info
);
418 tmp_name
= bfd_malloc ((bfd_size_type
) strlen (name
)
419 + strlen (ARM2THUMB_GLUE_ENTRY_NAME
) + 1);
421 BFD_ASSERT (tmp_name
);
423 sprintf (tmp_name
, ARM2THUMB_GLUE_ENTRY_NAME
, name
);
425 myh
= elf_link_hash_lookup
426 (&(hash_table
)->root
, tmp_name
, FALSE
, FALSE
, TRUE
);
429 /* xgettext:c-format */
430 (*_bfd_error_handler
) (_("%B: unable to find ARM glue '%s' for `%s'"),
431 input_bfd
, tmp_name
, name
);
445 .word func @ behave as if you saw a ARM_32 reloc. */
447 #define ARM2THUMB_GLUE_SIZE 12
448 static const insn32 a2t1_ldr_insn
= 0xe59fc000;
449 static const insn32 a2t2_bx_r12_insn
= 0xe12fff1c;
450 static const insn32 a2t3_func_addr_insn
= 0x00000001;
452 /* Thumb->ARM: Thumb->(non-interworking aware) ARM
456 __func_from_thumb: __func_from_thumb:
458 nop ldr r6, __func_addr
460 __func_change_to_arm: bx r6
462 __func_back_to_thumb:
468 #define THUMB2ARM_GLUE_SIZE 8
469 static const insn16 t2a1_bx_pc_insn
= 0x4778;
470 static const insn16 t2a2_noop_insn
= 0x46c0;
471 static const insn32 t2a3_b_insn
= 0xea000000;
473 #ifndef ELFARM_NABI_C_INCLUDED
475 bfd_elf32_arm_allocate_interworking_sections (struct bfd_link_info
* info
)
479 struct elf32_arm_link_hash_table
* globals
;
481 globals
= elf32_arm_hash_table (info
);
483 BFD_ASSERT (globals
!= NULL
);
485 if (globals
->arm_glue_size
!= 0)
487 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
489 s
= bfd_get_section_by_name (globals
->bfd_of_glue_owner
,
490 ARM2THUMB_GLUE_SECTION_NAME
);
492 BFD_ASSERT (s
!= NULL
);
494 foo
= bfd_alloc (globals
->bfd_of_glue_owner
, globals
->arm_glue_size
);
496 s
->size
= globals
->arm_glue_size
;
500 if (globals
->thumb_glue_size
!= 0)
502 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
504 s
= bfd_get_section_by_name
505 (globals
->bfd_of_glue_owner
, THUMB2ARM_GLUE_SECTION_NAME
);
507 BFD_ASSERT (s
!= NULL
);
509 foo
= bfd_alloc (globals
->bfd_of_glue_owner
, globals
->thumb_glue_size
);
511 s
->size
= globals
->thumb_glue_size
;
519 record_arm_to_thumb_glue (struct bfd_link_info
* link_info
,
520 struct elf_link_hash_entry
* h
)
522 const char * name
= h
->root
.root
.string
;
525 struct elf_link_hash_entry
* myh
;
526 struct bfd_link_hash_entry
* bh
;
527 struct elf32_arm_link_hash_table
* globals
;
530 globals
= elf32_arm_hash_table (link_info
);
532 BFD_ASSERT (globals
!= NULL
);
533 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
535 s
= bfd_get_section_by_name
536 (globals
->bfd_of_glue_owner
, ARM2THUMB_GLUE_SECTION_NAME
);
538 BFD_ASSERT (s
!= NULL
);
540 tmp_name
= bfd_malloc ((bfd_size_type
) strlen (name
) + strlen (ARM2THUMB_GLUE_ENTRY_NAME
) + 1);
542 BFD_ASSERT (tmp_name
);
544 sprintf (tmp_name
, ARM2THUMB_GLUE_ENTRY_NAME
, name
);
546 myh
= elf_link_hash_lookup
547 (&(globals
)->root
, tmp_name
, FALSE
, FALSE
, TRUE
);
551 /* We've already seen this guy. */
556 /* The only trick here is using hash_table->arm_glue_size as the value.
557 Even though the section isn't allocated yet, this is where we will be
560 val
= globals
->arm_glue_size
+ 1;
561 _bfd_generic_link_add_one_symbol (link_info
, globals
->bfd_of_glue_owner
,
562 tmp_name
, BSF_GLOBAL
, s
, val
,
563 NULL
, TRUE
, FALSE
, &bh
);
567 globals
->arm_glue_size
+= ARM2THUMB_GLUE_SIZE
;
573 record_thumb_to_arm_glue (struct bfd_link_info
*link_info
,
574 struct elf_link_hash_entry
*h
)
576 const char *name
= h
->root
.root
.string
;
579 struct elf_link_hash_entry
*myh
;
580 struct bfd_link_hash_entry
*bh
;
581 struct elf32_arm_link_hash_table
*hash_table
;
585 hash_table
= elf32_arm_hash_table (link_info
);
587 BFD_ASSERT (hash_table
!= NULL
);
588 BFD_ASSERT (hash_table
->bfd_of_glue_owner
!= NULL
);
590 s
= bfd_get_section_by_name
591 (hash_table
->bfd_of_glue_owner
, THUMB2ARM_GLUE_SECTION_NAME
);
593 BFD_ASSERT (s
!= NULL
);
595 tmp_name
= bfd_malloc ((bfd_size_type
) strlen (name
)
596 + strlen (THUMB2ARM_GLUE_ENTRY_NAME
) + 1);
598 BFD_ASSERT (tmp_name
);
600 sprintf (tmp_name
, THUMB2ARM_GLUE_ENTRY_NAME
, name
);
602 myh
= elf_link_hash_lookup
603 (&(hash_table
)->root
, tmp_name
, FALSE
, FALSE
, TRUE
);
607 /* We've already seen this guy. */
613 val
= hash_table
->thumb_glue_size
+ 1;
614 _bfd_generic_link_add_one_symbol (link_info
, hash_table
->bfd_of_glue_owner
,
615 tmp_name
, BSF_GLOBAL
, s
, val
,
616 NULL
, TRUE
, FALSE
, &bh
);
618 /* If we mark it 'Thumb', the disassembler will do a better job. */
619 myh
= (struct elf_link_hash_entry
*) bh
;
620 bind
= ELF_ST_BIND (myh
->type
);
621 myh
->type
= ELF_ST_INFO (bind
, STT_ARM_TFUNC
);
625 #define CHANGE_TO_ARM "__%s_change_to_arm"
626 #define BACK_FROM_ARM "__%s_back_from_arm"
628 /* Allocate another symbol to mark where we switch to Arm mode. */
629 tmp_name
= bfd_malloc ((bfd_size_type
) strlen (name
)
630 + strlen (CHANGE_TO_ARM
) + 1);
632 BFD_ASSERT (tmp_name
);
634 sprintf (tmp_name
, CHANGE_TO_ARM
, name
);
637 val
= hash_table
->thumb_glue_size
+ 4,
638 _bfd_generic_link_add_one_symbol (link_info
, hash_table
->bfd_of_glue_owner
,
639 tmp_name
, BSF_LOCAL
, s
, val
,
640 NULL
, TRUE
, FALSE
, &bh
);
644 hash_table
->thumb_glue_size
+= THUMB2ARM_GLUE_SIZE
;
649 /* Add the glue sections to ABFD. This function is called from the
650 linker scripts in ld/emultempl/{armelf}.em. */
653 bfd_elf32_arm_add_glue_sections_to_bfd (bfd
*abfd
,
654 struct bfd_link_info
*info
)
659 /* If we are only performing a partial
660 link do not bother adding the glue. */
661 if (info
->relocatable
)
664 sec
= bfd_get_section_by_name (abfd
, ARM2THUMB_GLUE_SECTION_NAME
);
668 /* Note: we do not include the flag SEC_LINKER_CREATED, as this
669 will prevent elf_link_input_bfd() from processing the contents
671 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
| SEC_CODE
| SEC_READONLY
;
673 sec
= bfd_make_section (abfd
, ARM2THUMB_GLUE_SECTION_NAME
);
676 || !bfd_set_section_flags (abfd
, sec
, flags
)
677 || !bfd_set_section_alignment (abfd
, sec
, 2))
680 /* Set the gc mark to prevent the section from being removed by garbage
681 collection, despite the fact that no relocs refer to this section. */
685 sec
= bfd_get_section_by_name (abfd
, THUMB2ARM_GLUE_SECTION_NAME
);
689 flags
= SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
690 | SEC_CODE
| SEC_READONLY
;
692 sec
= bfd_make_section (abfd
, THUMB2ARM_GLUE_SECTION_NAME
);
695 || !bfd_set_section_flags (abfd
, sec
, flags
)
696 || !bfd_set_section_alignment (abfd
, sec
, 2))
705 /* Select a BFD to be used to hold the sections used by the glue code.
706 This function is called from the linker scripts in ld/emultempl/
710 bfd_elf32_arm_get_bfd_for_interworking (bfd
*abfd
, struct bfd_link_info
*info
)
712 struct elf32_arm_link_hash_table
*globals
;
714 /* If we are only performing a partial link
715 do not bother getting a bfd to hold the glue. */
716 if (info
->relocatable
)
719 globals
= elf32_arm_hash_table (info
);
721 BFD_ASSERT (globals
!= NULL
);
723 if (globals
->bfd_of_glue_owner
!= NULL
)
726 /* Save the bfd for later use. */
727 globals
->bfd_of_glue_owner
= abfd
;
733 bfd_elf32_arm_process_before_allocation (bfd
*abfd
,
734 struct bfd_link_info
*link_info
,
735 int no_pipeline_knowledge
,
738 Elf_Internal_Shdr
*symtab_hdr
;
739 Elf_Internal_Rela
*internal_relocs
= NULL
;
740 Elf_Internal_Rela
*irel
, *irelend
;
741 bfd_byte
*contents
= NULL
;
744 struct elf32_arm_link_hash_table
*globals
;
746 /* If we are only performing a partial link do not bother
747 to construct any glue. */
748 if (link_info
->relocatable
)
751 /* Here we have a bfd that is to be included on the link. We have a hook
752 to do reloc rummaging, before section sizes are nailed down. */
753 globals
= elf32_arm_hash_table (link_info
);
755 BFD_ASSERT (globals
!= NULL
);
756 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
758 globals
->no_pipeline_knowledge
= no_pipeline_knowledge
;
759 if (byteswap_code
&& !bfd_big_endian (abfd
))
761 _bfd_error_handler (_("%B: BE8 images only valid in big-endian mode."),
765 globals
->byteswap_code
= byteswap_code
;
767 /* Rummage around all the relocs and map the glue vectors. */
768 sec
= abfd
->sections
;
773 for (; sec
!= NULL
; sec
= sec
->next
)
775 if (sec
->reloc_count
== 0)
778 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
780 /* Load the relocs. */
782 = _bfd_elf_link_read_relocs (abfd
, sec
, (void *) NULL
,
783 (Elf_Internal_Rela
*) NULL
, FALSE
);
785 if (internal_relocs
== NULL
)
788 irelend
= internal_relocs
+ sec
->reloc_count
;
789 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
792 unsigned long r_index
;
794 struct elf_link_hash_entry
*h
;
796 r_type
= ELF32_R_TYPE (irel
->r_info
);
797 r_index
= ELF32_R_SYM (irel
->r_info
);
799 /* These are the only relocation types we care about. */
800 if ( r_type
!= R_ARM_PC24
801 && r_type
!= R_ARM_THM_PC22
)
804 /* Get the section contents if we haven't done so already. */
805 if (contents
== NULL
)
807 /* Get cached copy if it exists. */
808 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
809 contents
= elf_section_data (sec
)->this_hdr
.contents
;
812 /* Go get them off disk. */
813 if (! bfd_malloc_and_get_section (abfd
, sec
, &contents
))
818 /* If the relocation is not against a symbol it cannot concern us. */
821 /* We don't care about local symbols. */
822 if (r_index
< symtab_hdr
->sh_info
)
825 /* This is an external symbol. */
826 r_index
-= symtab_hdr
->sh_info
;
827 h
= (struct elf_link_hash_entry
*)
828 elf_sym_hashes (abfd
)[r_index
];
830 /* If the relocation is against a static symbol it must be within
831 the current section and so cannot be a cross ARM/Thumb relocation. */
838 /* This one is a call from arm code. We need to look up
839 the target of the call. If it is a thumb target, we
841 if (ELF_ST_TYPE(h
->type
) == STT_ARM_TFUNC
)
842 record_arm_to_thumb_glue (link_info
, h
);
846 /* This one is a call from thumb code. We look
847 up the target of the call. If it is not a thumb
848 target, we insert glue. */
849 if (ELF_ST_TYPE (h
->type
) != STT_ARM_TFUNC
)
850 record_thumb_to_arm_glue (link_info
, h
);
859 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
863 if (internal_relocs
!= NULL
864 && elf_section_data (sec
)->relocs
!= internal_relocs
)
865 free (internal_relocs
);
866 internal_relocs
= NULL
;
873 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
875 if (internal_relocs
!= NULL
876 && elf_section_data (sec
)->relocs
!= internal_relocs
)
877 free (internal_relocs
);
883 /* The thumb form of a long branch is a bit finicky, because the offset
884 encoding is split over two fields, each in it's own instruction. They
885 can occur in any order. So given a thumb form of long branch, and an
886 offset, insert the offset into the thumb branch and return finished
889 It takes two thumb instructions to encode the target address. Each has
890 11 bits to invest. The upper 11 bits are stored in one (identified by
891 H-0.. see below), the lower 11 bits are stored in the other (identified
894 Combine together and shifted left by 1 (it's a half word address) and
898 H-0, upper address-0 = 000
900 H-1, lower address-0 = 800
902 They can be ordered either way, but the arm tools I've seen always put
903 the lower one first. It probably doesn't matter. krk@cygnus.com
905 XXX: Actually the order does matter. The second instruction (H-1)
906 moves the computed address into the PC, so it must be the second one
907 in the sequence. The problem, however is that whilst little endian code
908 stores the instructions in HI then LOW order, big endian code does the
909 reverse. nickc@cygnus.com. */
911 #define LOW_HI_ORDER 0xF800F000
912 #define HI_LOW_ORDER 0xF000F800
915 insert_thumb_branch (insn32 br_insn
, int rel_off
)
917 unsigned int low_bits
;
918 unsigned int high_bits
;
920 BFD_ASSERT ((rel_off
& 1) != 1);
922 rel_off
>>= 1; /* Half word aligned address. */
923 low_bits
= rel_off
& 0x000007FF; /* The bottom 11 bits. */
924 high_bits
= (rel_off
>> 11) & 0x000007FF; /* The top 11 bits. */
926 if ((br_insn
& LOW_HI_ORDER
) == LOW_HI_ORDER
)
927 br_insn
= LOW_HI_ORDER
| (low_bits
<< 16) | high_bits
;
928 else if ((br_insn
& HI_LOW_ORDER
) == HI_LOW_ORDER
)
929 br_insn
= HI_LOW_ORDER
| (high_bits
<< 16) | low_bits
;
931 /* FIXME: abort is probably not the right call. krk@cygnus.com */
932 abort (); /* Error - not a valid branch instruction form. */
937 /* Thumb code calling an ARM function. */
940 elf32_thumb_to_arm_stub (struct bfd_link_info
* info
,
944 asection
* input_section
,
948 bfd_signed_vma addend
,
953 unsigned long int tmp
;
955 struct elf_link_hash_entry
* myh
;
956 struct elf32_arm_link_hash_table
* globals
;
958 myh
= find_thumb_glue (info
, name
, input_bfd
);
962 globals
= elf32_arm_hash_table (info
);
964 BFD_ASSERT (globals
!= NULL
);
965 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
967 my_offset
= myh
->root
.u
.def
.value
;
969 s
= bfd_get_section_by_name (globals
->bfd_of_glue_owner
,
970 THUMB2ARM_GLUE_SECTION_NAME
);
972 BFD_ASSERT (s
!= NULL
);
973 BFD_ASSERT (s
->contents
!= NULL
);
974 BFD_ASSERT (s
->output_section
!= NULL
);
976 if ((my_offset
& 0x01) == 0x01)
979 && sym_sec
->owner
!= NULL
980 && !INTERWORK_FLAG (sym_sec
->owner
))
982 (*_bfd_error_handler
)
983 (_("%B(%s): warning: interworking not enabled.\n"
984 " first occurrence: %B: thumb call to arm"),
985 sym_sec
->owner
, input_bfd
, name
);
991 myh
->root
.u
.def
.value
= my_offset
;
993 bfd_put_16 (output_bfd
, (bfd_vma
) t2a1_bx_pc_insn
,
994 s
->contents
+ my_offset
);
996 bfd_put_16 (output_bfd
, (bfd_vma
) t2a2_noop_insn
,
997 s
->contents
+ my_offset
+ 2);
1000 /* Address of destination of the stub. */
1001 ((bfd_signed_vma
) val
)
1003 /* Offset from the start of the current section
1004 to the start of the stubs. */
1006 /* Offset of the start of this stub from the start of the stubs. */
1008 /* Address of the start of the current section. */
1009 + s
->output_section
->vma
)
1010 /* The branch instruction is 4 bytes into the stub. */
1012 /* ARM branches work from the pc of the instruction + 8. */
1015 bfd_put_32 (output_bfd
,
1016 (bfd_vma
) t2a3_b_insn
| ((ret_offset
>> 2) & 0x00FFFFFF),
1017 s
->contents
+ my_offset
+ 4);
1020 BFD_ASSERT (my_offset
<= globals
->thumb_glue_size
);
1022 /* Now go back and fix up the original BL insn to point to here. */
1024 /* Address of where the stub is located. */
1025 (s
->output_section
->vma
+ s
->output_offset
+ my_offset
)
1026 /* Address of where the BL is located. */
1027 - (input_section
->output_section
->vma
+ input_section
->output_offset
1029 /* Addend in the relocation. */
1031 /* Biassing for PC-relative addressing. */
1034 tmp
= bfd_get_32 (input_bfd
, hit_data
1035 - input_section
->vma
);
1037 bfd_put_32 (output_bfd
,
1038 (bfd_vma
) insert_thumb_branch (tmp
, ret_offset
),
1039 hit_data
- input_section
->vma
);
1044 /* Arm code calling a Thumb function. */
1047 elf32_arm_to_thumb_stub (struct bfd_link_info
* info
,
1051 asection
* input_section
,
1052 bfd_byte
* hit_data
,
1055 bfd_signed_vma addend
,
1058 unsigned long int tmp
;
1061 long int ret_offset
;
1062 struct elf_link_hash_entry
* myh
;
1063 struct elf32_arm_link_hash_table
* globals
;
1065 myh
= find_arm_glue (info
, name
, input_bfd
);
1069 globals
= elf32_arm_hash_table (info
);
1071 BFD_ASSERT (globals
!= NULL
);
1072 BFD_ASSERT (globals
->bfd_of_glue_owner
!= NULL
);
1074 my_offset
= myh
->root
.u
.def
.value
;
1075 s
= bfd_get_section_by_name (globals
->bfd_of_glue_owner
,
1076 ARM2THUMB_GLUE_SECTION_NAME
);
1077 BFD_ASSERT (s
!= NULL
);
1078 BFD_ASSERT (s
->contents
!= NULL
);
1079 BFD_ASSERT (s
->output_section
!= NULL
);
1081 if ((my_offset
& 0x01) == 0x01)
1084 && sym_sec
->owner
!= NULL
1085 && !INTERWORK_FLAG (sym_sec
->owner
))
1087 (*_bfd_error_handler
)
1088 (_("%B(%s): warning: interworking not enabled.\n"
1089 " first occurrence: %B: arm call to thumb"),
1090 sym_sec
->owner
, input_bfd
, name
);
1094 myh
->root
.u
.def
.value
= my_offset
;
1096 bfd_put_32 (output_bfd
, (bfd_vma
) a2t1_ldr_insn
,
1097 s
->contents
+ my_offset
);
1099 bfd_put_32 (output_bfd
, (bfd_vma
) a2t2_bx_r12_insn
,
1100 s
->contents
+ my_offset
+ 4);
1102 /* It's a thumb address. Add the low order bit. */
1103 bfd_put_32 (output_bfd
, val
| a2t3_func_addr_insn
,
1104 s
->contents
+ my_offset
+ 8);
1107 BFD_ASSERT (my_offset
<= globals
->arm_glue_size
);
1109 tmp
= bfd_get_32 (input_bfd
, hit_data
);
1110 tmp
= tmp
& 0xFF000000;
1112 /* Somehow these are both 4 too far, so subtract 8. */
1113 ret_offset
= (s
->output_offset
1115 + s
->output_section
->vma
1116 - (input_section
->output_offset
1117 + input_section
->output_section
->vma
1121 tmp
= tmp
| ((ret_offset
>> 2) & 0x00FFFFFF);
1123 bfd_put_32 (output_bfd
, (bfd_vma
) tmp
, hit_data
- input_section
->vma
);
1128 /* Perform a relocation as part of a final link. */
1130 static bfd_reloc_status_type
1131 elf32_arm_final_link_relocate (reloc_howto_type
* howto
,
1134 asection
* input_section
,
1135 bfd_byte
* contents
,
1136 Elf_Internal_Rela
* rel
,
1138 struct bfd_link_info
* info
,
1140 const char * sym_name
,
1142 struct elf_link_hash_entry
* h
)
1144 unsigned long r_type
= howto
->type
;
1145 unsigned long r_symndx
;
1146 bfd_byte
* hit_data
= contents
+ rel
->r_offset
;
1147 bfd
* dynobj
= NULL
;
1148 Elf_Internal_Shdr
* symtab_hdr
;
1149 struct elf_link_hash_entry
** sym_hashes
;
1150 bfd_vma
* local_got_offsets
;
1151 asection
* sgot
= NULL
;
1152 asection
* splt
= NULL
;
1153 asection
* sreloc
= NULL
;
1155 bfd_signed_vma signed_addend
;
1156 struct elf32_arm_link_hash_table
* globals
;
1158 /* If the start address has been set, then set the EF_ARM_HASENTRY
1159 flag. Setting this more than once is redundant, but the cost is
1160 not too high, and it keeps the code simple.
1162 The test is done here, rather than somewhere else, because the
1163 start address is only set just before the final link commences.
1165 Note - if the user deliberately sets a start address of 0, the
1166 flag will not be set. */
1167 if (bfd_get_start_address (output_bfd
) != 0)
1168 elf_elfheader (output_bfd
)->e_flags
|= EF_ARM_HASENTRY
;
1170 globals
= elf32_arm_hash_table (info
);
1172 dynobj
= elf_hash_table (info
)->dynobj
;
1175 sgot
= bfd_get_section_by_name (dynobj
, ".got");
1176 splt
= bfd_get_section_by_name (dynobj
, ".plt");
1178 symtab_hdr
= & elf_tdata (input_bfd
)->symtab_hdr
;
1179 sym_hashes
= elf_sym_hashes (input_bfd
);
1180 local_got_offsets
= elf_local_got_offsets (input_bfd
);
1181 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1184 addend
= bfd_get_32 (input_bfd
, hit_data
) & howto
->src_mask
;
1186 if (addend
& ((howto
->src_mask
+ 1) >> 1))
1189 signed_addend
&= ~ howto
->src_mask
;
1190 signed_addend
|= addend
;
1193 signed_addend
= addend
;
1195 addend
= signed_addend
= rel
->r_addend
;
1201 return bfd_reloc_ok
;
1210 /* r_symndx will be zero only for relocs against symbols
1211 from removed linkonce sections, or sections discarded by
1214 return bfd_reloc_ok
;
1216 /* Handle relocations which should use the PLT entry. ABS32/REL32
1217 will use the symbol's value, which may point to a PLT entry, but we
1218 don't need to handle that here. If we created a PLT entry, all
1219 branches in this object should go to it. */
1220 if ((r_type
!= R_ARM_ABS32
&& r_type
!= R_ARM_REL32
)
1223 && h
->plt
.offset
!= (bfd_vma
) -1)
1225 /* If we've created a .plt section, and assigned a PLT entry to
1226 this function, it should not be known to bind locally. If
1227 it were, we would have cleared the PLT entry. */
1228 BFD_ASSERT (!SYMBOL_CALLS_LOCAL (info
, h
));
1230 value
= (splt
->output_section
->vma
1231 + splt
->output_offset
1233 return _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
1234 contents
, rel
->r_offset
, value
,
1238 /* When generating a shared object, these relocations are copied
1239 into the output file to be resolved at run time. */
1241 && (input_section
->flags
& SEC_ALLOC
)
1242 && (r_type
!= R_ARM_REL32
1243 || !SYMBOL_CALLS_LOCAL (info
, h
))
1245 || ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
1246 || h
->root
.type
!= bfd_link_hash_undefweak
)
1247 && r_type
!= R_ARM_PC24
1248 && r_type
!= R_ARM_PLT32
)
1250 Elf_Internal_Rela outrel
;
1252 bfd_boolean skip
, relocate
;
1258 name
= (bfd_elf_string_from_elf_section
1260 elf_elfheader (input_bfd
)->e_shstrndx
,
1261 elf_section_data (input_section
)->rel_hdr
.sh_name
));
1263 return bfd_reloc_notsupported
;
1265 BFD_ASSERT (strncmp (name
, ".rel", 4) == 0
1266 && strcmp (bfd_get_section_name (input_bfd
,
1270 sreloc
= bfd_get_section_by_name (dynobj
, name
);
1271 BFD_ASSERT (sreloc
!= NULL
);
1278 _bfd_elf_section_offset (output_bfd
, info
, input_section
,
1280 if (outrel
.r_offset
== (bfd_vma
) -1)
1282 else if (outrel
.r_offset
== (bfd_vma
) -2)
1283 skip
= TRUE
, relocate
= TRUE
;
1284 outrel
.r_offset
+= (input_section
->output_section
->vma
1285 + input_section
->output_offset
);
1288 memset (&outrel
, 0, sizeof outrel
);
1293 || (h
->elf_link_hash_flags
1294 & ELF_LINK_HASH_DEF_REGULAR
) == 0))
1295 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, r_type
);
1298 /* This symbol is local, or marked to become local. */
1300 outrel
.r_info
= ELF32_R_INFO (0, R_ARM_RELATIVE
);
1303 loc
= sreloc
->contents
;
1304 loc
+= sreloc
->reloc_count
++ * sizeof (Elf32_External_Rel
);
1305 bfd_elf32_swap_reloc_out (output_bfd
, &outrel
, loc
);
1307 /* If this reloc is against an external symbol, we do not want to
1308 fiddle with the addend. Otherwise, we need to include the symbol
1309 value so that it becomes an addend for the dynamic reloc. */
1311 return bfd_reloc_ok
;
1313 return _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
1314 contents
, rel
->r_offset
, value
,
1317 else switch (r_type
)
1320 case R_ARM_XPC25
: /* Arm BLX instruction. */
1322 case R_ARM_PC24
: /* Arm B/BL instruction */
1325 if (r_type
== R_ARM_XPC25
)
1327 /* Check for Arm calling Arm function. */
1328 /* FIXME: Should we translate the instruction into a BL
1329 instruction instead ? */
1330 if (sym_flags
!= STT_ARM_TFUNC
)
1331 (*_bfd_error_handler
)
1332 (_("\%B: Warning: Arm BLX instruction targets Arm function '%s'."),
1334 h
? h
->root
.root
.string
: "(local)");
1339 /* Check for Arm calling Thumb function. */
1340 if (sym_flags
== STT_ARM_TFUNC
)
1342 elf32_arm_to_thumb_stub (info
, sym_name
, input_bfd
,
1343 output_bfd
, input_section
,
1344 hit_data
, sym_sec
, rel
->r_offset
,
1345 signed_addend
, value
);
1346 return bfd_reloc_ok
;
1350 if ( strcmp (bfd_get_target (input_bfd
), "elf32-littlearm-oabi") == 0
1351 || strcmp (bfd_get_target (input_bfd
), "elf32-bigarm-oabi") == 0)
1353 /* The old way of doing things. Trearing the addend as a
1354 byte sized field and adding in the pipeline offset. */
1355 value
-= (input_section
->output_section
->vma
1356 + input_section
->output_offset
);
1357 value
-= rel
->r_offset
;
1360 if (! globals
->no_pipeline_knowledge
)
1365 /* The ARM ELF ABI says that this reloc is computed as: S - P + A
1367 S is the address of the symbol in the relocation.
1368 P is address of the instruction being relocated.
1369 A is the addend (extracted from the instruction) in bytes.
1371 S is held in 'value'.
1372 P is the base address of the section containing the
1373 instruction plus the offset of the reloc into that
1375 (input_section->output_section->vma +
1376 input_section->output_offset +
1378 A is the addend, converted into bytes, ie:
1381 Note: None of these operations have knowledge of the pipeline
1382 size of the processor, thus it is up to the assembler to
1383 encode this information into the addend. */
1384 value
-= (input_section
->output_section
->vma
1385 + input_section
->output_offset
);
1386 value
-= rel
->r_offset
;
1387 value
+= (signed_addend
<< howto
->size
);
1389 /* Previous versions of this code also used to add in the
1390 pipeline offset here. This is wrong because the linker is
1391 not supposed to know about such things, and one day it might
1392 change. In order to support old binaries that need the old
1393 behaviour however, so we attempt to detect which ABI was
1394 used to create the reloc. */
1395 if (! globals
->no_pipeline_knowledge
)
1397 Elf_Internal_Ehdr
* i_ehdrp
; /* Elf file header, internal form */
1399 i_ehdrp
= elf_elfheader (input_bfd
);
1401 if (i_ehdrp
->e_ident
[EI_OSABI
] == 0)
1406 signed_addend
= value
;
1407 signed_addend
>>= howto
->rightshift
;
1409 /* It is not an error for an undefined weak reference to be
1410 out of range. Any program that branches to such a symbol
1411 is going to crash anyway, so there is no point worrying
1412 about getting the destination exactly right. */
1413 if (! h
|| h
->root
.type
!= bfd_link_hash_undefweak
)
1415 /* Perform a signed range check. */
1416 if ( signed_addend
> ((bfd_signed_vma
) (howto
->dst_mask
>> 1))
1417 || signed_addend
< - ((bfd_signed_vma
) ((howto
->dst_mask
+ 1) >> 1)))
1418 return bfd_reloc_overflow
;
1422 /* If necessary set the H bit in the BLX instruction. */
1423 if (r_type
== R_ARM_XPC25
&& ((value
& 2) == 2))
1424 value
= (signed_addend
& howto
->dst_mask
)
1425 | (bfd_get_32 (input_bfd
, hit_data
) & (~ howto
->dst_mask
))
1429 value
= (signed_addend
& howto
->dst_mask
)
1430 | (bfd_get_32 (input_bfd
, hit_data
) & (~ howto
->dst_mask
));
1435 if (sym_flags
== STT_ARM_TFUNC
)
1440 value
-= (input_section
->output_section
->vma
1441 + input_section
->output_offset
+ rel
->r_offset
);
1446 bfd_put_32 (input_bfd
, value
, hit_data
);
1447 return bfd_reloc_ok
;
1451 if ((long) value
> 0x7f || (long) value
< -0x80)
1452 return bfd_reloc_overflow
;
1454 bfd_put_8 (input_bfd
, value
, hit_data
);
1455 return bfd_reloc_ok
;
1460 if ((long) value
> 0x7fff || (long) value
< -0x8000)
1461 return bfd_reloc_overflow
;
1463 bfd_put_16 (input_bfd
, value
, hit_data
);
1464 return bfd_reloc_ok
;
1467 /* Support ldr and str instruction for the arm */
1468 /* Also thumb b (unconditional branch). ??? Really? */
1471 if ((long) value
> 0x7ff || (long) value
< -0x800)
1472 return bfd_reloc_overflow
;
1474 value
|= (bfd_get_32 (input_bfd
, hit_data
) & 0xfffff000);
1475 bfd_put_32 (input_bfd
, value
, hit_data
);
1476 return bfd_reloc_ok
;
1478 case R_ARM_THM_ABS5
:
1479 /* Support ldr and str instructions for the thumb. */
1481 /* Need to refetch addend. */
1482 addend
= bfd_get_16 (input_bfd
, hit_data
) & howto
->src_mask
;
1483 /* ??? Need to determine shift amount from operand size. */
1484 addend
>>= howto
->rightshift
;
1488 /* ??? Isn't value unsigned? */
1489 if ((long) value
> 0x1f || (long) value
< -0x10)
1490 return bfd_reloc_overflow
;
1492 /* ??? Value needs to be properly shifted into place first. */
1493 value
|= bfd_get_16 (input_bfd
, hit_data
) & 0xf83f;
1494 bfd_put_16 (input_bfd
, value
, hit_data
);
1495 return bfd_reloc_ok
;
1498 case R_ARM_THM_XPC22
:
1500 case R_ARM_THM_PC22
:
1501 /* Thumb BL (branch long instruction). */
1504 bfd_boolean overflow
= FALSE
;
1505 bfd_vma upper_insn
= bfd_get_16 (input_bfd
, hit_data
);
1506 bfd_vma lower_insn
= bfd_get_16 (input_bfd
, hit_data
+ 2);
1507 bfd_signed_vma reloc_signed_max
= ((1 << (howto
->bitsize
- 1)) - 1) >> howto
->rightshift
;
1508 bfd_signed_vma reloc_signed_min
= ~ reloc_signed_max
;
1510 bfd_signed_vma signed_check
;
1513 /* Need to refetch the addend and squish the two 11 bit pieces
1516 bfd_vma upper
= upper_insn
& 0x7ff;
1517 bfd_vma lower
= lower_insn
& 0x7ff;
1518 upper
= (upper
^ 0x400) - 0x400; /* Sign extend. */
1519 addend
= (upper
<< 12) | (lower
<< 1);
1520 signed_addend
= addend
;
1524 if (r_type
== R_ARM_THM_XPC22
)
1526 /* Check for Thumb to Thumb call. */
1527 /* FIXME: Should we translate the instruction into a BL
1528 instruction instead ? */
1529 if (sym_flags
== STT_ARM_TFUNC
)
1530 (*_bfd_error_handler
)
1531 (_("%B: Warning: Thumb BLX instruction targets thumb function '%s'."),
1533 h
? h
->root
.root
.string
: "(local)");
1538 /* If it is not a call to Thumb, assume call to Arm.
1539 If it is a call relative to a section name, then it is not a
1540 function call at all, but rather a long jump. */
1541 if (sym_flags
!= STT_ARM_TFUNC
&& sym_flags
!= STT_SECTION
)
1543 if (elf32_thumb_to_arm_stub
1544 (info
, sym_name
, input_bfd
, output_bfd
, input_section
,
1545 hit_data
, sym_sec
, rel
->r_offset
, signed_addend
, value
))
1546 return bfd_reloc_ok
;
1548 return bfd_reloc_dangerous
;
1552 relocation
= value
+ signed_addend
;
1554 relocation
-= (input_section
->output_section
->vma
1555 + input_section
->output_offset
1558 if (! globals
->no_pipeline_knowledge
)
1560 Elf_Internal_Ehdr
* i_ehdrp
; /* Elf file header, internal form. */
1562 i_ehdrp
= elf_elfheader (input_bfd
);
1564 /* Previous versions of this code also used to add in the pipline
1565 offset here. This is wrong because the linker is not supposed
1566 to know about such things, and one day it might change. In order
1567 to support old binaries that need the old behaviour however, so
1568 we attempt to detect which ABI was used to create the reloc. */
1569 if ( strcmp (bfd_get_target (input_bfd
), "elf32-littlearm-oabi") == 0
1570 || strcmp (bfd_get_target (input_bfd
), "elf32-bigarm-oabi") == 0
1571 || i_ehdrp
->e_ident
[EI_OSABI
] == 0)
1575 check
= relocation
>> howto
->rightshift
;
1577 /* If this is a signed value, the rightshift just dropped
1578 leading 1 bits (assuming twos complement). */
1579 if ((bfd_signed_vma
) relocation
>= 0)
1580 signed_check
= check
;
1582 signed_check
= check
| ~((bfd_vma
) -1 >> howto
->rightshift
);
1584 /* Assumes two's complement. */
1585 if (signed_check
> reloc_signed_max
|| signed_check
< reloc_signed_min
)
1589 if (r_type
== R_ARM_THM_XPC22
1590 && ((lower_insn
& 0x1800) == 0x0800))
1591 /* For a BLX instruction, make sure that the relocation is rounded up
1592 to a word boundary. This follows the semantics of the instruction
1593 which specifies that bit 1 of the target address will come from bit
1594 1 of the base address. */
1595 relocation
= (relocation
+ 2) & ~ 3;
1597 /* Put RELOCATION back into the insn. */
1598 upper_insn
= (upper_insn
& ~(bfd_vma
) 0x7ff) | ((relocation
>> 12) & 0x7ff);
1599 lower_insn
= (lower_insn
& ~(bfd_vma
) 0x7ff) | ((relocation
>> 1) & 0x7ff);
1601 /* Put the relocated value back in the object file: */
1602 bfd_put_16 (input_bfd
, upper_insn
, hit_data
);
1603 bfd_put_16 (input_bfd
, lower_insn
, hit_data
+ 2);
1605 return (overflow
? bfd_reloc_overflow
: bfd_reloc_ok
);
1609 case R_ARM_THM_PC11
:
1610 /* Thumb B (branch) instruction). */
1612 bfd_signed_vma relocation
;
1613 bfd_signed_vma reloc_signed_max
= (1 << (howto
->bitsize
- 1)) - 1;
1614 bfd_signed_vma reloc_signed_min
= ~ reloc_signed_max
;
1615 bfd_signed_vma signed_check
;
1618 /* Need to refetch addend. */
1619 addend
= bfd_get_16 (input_bfd
, hit_data
) & howto
->src_mask
;
1620 if (addend
& ((howto
->src_mask
+ 1) >> 1))
1623 signed_addend
&= ~ howto
->src_mask
;
1624 signed_addend
|= addend
;
1627 signed_addend
= addend
;
1628 /* The value in the insn has been right shifted. We need to
1629 undo this, so that we can perform the address calculation
1630 in terms of bytes. */
1631 signed_addend
<<= howto
->rightshift
;
1633 relocation
= value
+ signed_addend
;
1635 relocation
-= (input_section
->output_section
->vma
1636 + input_section
->output_offset
1639 relocation
>>= howto
->rightshift
;
1640 signed_check
= relocation
;
1641 relocation
&= howto
->dst_mask
;
1642 relocation
|= (bfd_get_16 (input_bfd
, hit_data
) & (~ howto
->dst_mask
));
1644 bfd_put_16 (input_bfd
, relocation
, hit_data
);
1646 /* Assumes two's complement. */
1647 if (signed_check
> reloc_signed_max
|| signed_check
< reloc_signed_min
)
1648 return bfd_reloc_overflow
;
1650 return bfd_reloc_ok
;
1654 case R_ARM_ALU_PCREL7_0
:
1655 case R_ARM_ALU_PCREL15_8
:
1656 case R_ARM_ALU_PCREL23_15
:
1661 insn
= bfd_get_32 (input_bfd
, hit_data
);
1663 /* Extract the addend. */
1664 addend
= (insn
& 0xff) << ((insn
& 0xf00) >> 7);
1665 signed_addend
= addend
;
1667 relocation
= value
+ signed_addend
;
1669 relocation
-= (input_section
->output_section
->vma
1670 + input_section
->output_offset
1672 insn
= (insn
& ~0xfff)
1673 | ((howto
->bitpos
<< 7) & 0xf00)
1674 | ((relocation
>> howto
->bitpos
) & 0xff);
1675 bfd_put_32 (input_bfd
, value
, hit_data
);
1677 return bfd_reloc_ok
;
1680 case R_ARM_GNU_VTINHERIT
:
1681 case R_ARM_GNU_VTENTRY
:
1682 return bfd_reloc_ok
;
1685 return bfd_reloc_notsupported
;
1687 case R_ARM_GLOB_DAT
:
1688 return bfd_reloc_notsupported
;
1690 case R_ARM_JUMP_SLOT
:
1691 return bfd_reloc_notsupported
;
1693 case R_ARM_RELATIVE
:
1694 return bfd_reloc_notsupported
;
1697 /* Relocation is relative to the start of the
1698 global offset table. */
1700 BFD_ASSERT (sgot
!= NULL
);
1702 return bfd_reloc_notsupported
;
1704 /* If we are addressing a Thumb function, we need to adjust the
1705 address by one, so that attempts to call the function pointer will
1706 correctly interpret it as Thumb code. */
1707 if (sym_flags
== STT_ARM_TFUNC
)
1710 /* Note that sgot->output_offset is not involved in this
1711 calculation. We always want the start of .got. If we
1712 define _GLOBAL_OFFSET_TABLE in a different way, as is
1713 permitted by the ABI, we might have to change this
1715 value
-= sgot
->output_section
->vma
;
1716 return _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
1717 contents
, rel
->r_offset
, value
,
1721 /* Use global offset table as symbol value. */
1722 BFD_ASSERT (sgot
!= NULL
);
1725 return bfd_reloc_notsupported
;
1727 value
= sgot
->output_section
->vma
;
1728 return _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
1729 contents
, rel
->r_offset
, value
,
1733 /* Relocation is to the entry for this symbol in the
1734 global offset table. */
1736 return bfd_reloc_notsupported
;
1743 off
= h
->got
.offset
;
1744 BFD_ASSERT (off
!= (bfd_vma
) -1);
1745 dyn
= globals
->root
.dynamic_sections_created
;
1747 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
1749 && SYMBOL_REFERENCES_LOCAL (info
, h
))
1750 || (ELF_ST_VISIBILITY (h
->other
)
1751 && h
->root
.type
== bfd_link_hash_undefweak
))
1753 /* This is actually a static link, or it is a -Bsymbolic link
1754 and the symbol is defined locally. We must initialize this
1755 entry in the global offset table. Since the offset must
1756 always be a multiple of 4, we use the least significant bit
1757 to record whether we have initialized it already.
1759 When doing a dynamic link, we create a .rel.got relocation
1760 entry to initialize the value. This is done in the
1761 finish_dynamic_symbol routine. */
1766 /* If we are addressing a Thumb function, we need to
1767 adjust the address by one, so that attempts to
1768 call the function pointer will correctly
1769 interpret it as Thumb code. */
1770 if (sym_flags
== STT_ARM_TFUNC
)
1773 bfd_put_32 (output_bfd
, value
, sgot
->contents
+ off
);
1778 value
= sgot
->output_offset
+ off
;
1784 BFD_ASSERT (local_got_offsets
!= NULL
&&
1785 local_got_offsets
[r_symndx
] != (bfd_vma
) -1);
1787 off
= local_got_offsets
[r_symndx
];
1789 /* The offset must always be a multiple of 4. We use the
1790 least significant bit to record whether we have already
1791 generated the necessary reloc. */
1796 bfd_put_32 (output_bfd
, value
, sgot
->contents
+ off
);
1801 Elf_Internal_Rela outrel
;
1804 srelgot
= bfd_get_section_by_name (dynobj
, ".rel.got");
1805 BFD_ASSERT (srelgot
!= NULL
);
1807 outrel
.r_offset
= (sgot
->output_section
->vma
1808 + sgot
->output_offset
1810 outrel
.r_info
= ELF32_R_INFO (0, R_ARM_RELATIVE
);
1811 loc
= srelgot
->contents
;
1812 loc
+= srelgot
->reloc_count
++ * sizeof (Elf32_External_Rel
);
1813 bfd_elf32_swap_reloc_out (output_bfd
, &outrel
, loc
);
1816 local_got_offsets
[r_symndx
] |= 1;
1819 value
= sgot
->output_offset
+ off
;
1822 return _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
1823 contents
, rel
->r_offset
, value
,
1827 return bfd_reloc_notsupported
;
1829 case R_ARM_AMP_VCALL9
:
1830 return bfd_reloc_notsupported
;
1832 case R_ARM_RSBREL32
:
1833 return bfd_reloc_notsupported
;
1835 case R_ARM_THM_RPC22
:
1836 return bfd_reloc_notsupported
;
1839 return bfd_reloc_notsupported
;
1842 return bfd_reloc_notsupported
;
1845 return bfd_reloc_notsupported
;
1848 return bfd_reloc_notsupported
;
1851 return bfd_reloc_notsupported
;
1856 /* Add INCREMENT to the reloc (of type HOWTO) at ADDRESS. */
1858 arm_add_to_rel (bfd
* abfd
,
1860 reloc_howto_type
* howto
,
1861 bfd_signed_vma increment
)
1863 bfd_signed_vma addend
;
1865 if (howto
->type
== R_ARM_THM_PC22
)
1867 int upper_insn
, lower_insn
;
1870 upper_insn
= bfd_get_16 (abfd
, address
);
1871 lower_insn
= bfd_get_16 (abfd
, address
+ 2);
1872 upper
= upper_insn
& 0x7ff;
1873 lower
= lower_insn
& 0x7ff;
1875 addend
= (upper
<< 12) | (lower
<< 1);
1876 addend
+= increment
;
1879 upper_insn
= (upper_insn
& 0xf800) | ((addend
>> 11) & 0x7ff);
1880 lower_insn
= (lower_insn
& 0xf800) | (addend
& 0x7ff);
1882 bfd_put_16 (abfd
, (bfd_vma
) upper_insn
, address
);
1883 bfd_put_16 (abfd
, (bfd_vma
) lower_insn
, address
+ 2);
1889 contents
= bfd_get_32 (abfd
, address
);
1891 /* Get the (signed) value from the instruction. */
1892 addend
= contents
& howto
->src_mask
;
1893 if (addend
& ((howto
->src_mask
+ 1) >> 1))
1895 bfd_signed_vma mask
;
1898 mask
&= ~ howto
->src_mask
;
1902 /* Add in the increment, (which is a byte value). */
1903 switch (howto
->type
)
1906 addend
+= increment
;
1910 addend
<<= howto
->size
;
1911 addend
+= increment
;
1913 /* Should we check for overflow here ? */
1915 /* Drop any undesired bits. */
1916 addend
>>= howto
->rightshift
;
1920 contents
= (contents
& ~ howto
->dst_mask
) | (addend
& howto
->dst_mask
);
1922 bfd_put_32 (abfd
, contents
, address
);
1925 #endif /* USE_REL */
1927 /* Relocate an ARM ELF section. */
1929 elf32_arm_relocate_section (bfd
* output_bfd
,
1930 struct bfd_link_info
* info
,
1932 asection
* input_section
,
1933 bfd_byte
* contents
,
1934 Elf_Internal_Rela
* relocs
,
1935 Elf_Internal_Sym
* local_syms
,
1936 asection
** local_sections
)
1938 Elf_Internal_Shdr
*symtab_hdr
;
1939 struct elf_link_hash_entry
**sym_hashes
;
1940 Elf_Internal_Rela
*rel
;
1941 Elf_Internal_Rela
*relend
;
1945 if (info
->relocatable
)
1949 symtab_hdr
= & elf_tdata (input_bfd
)->symtab_hdr
;
1950 sym_hashes
= elf_sym_hashes (input_bfd
);
1953 relend
= relocs
+ input_section
->reloc_count
;
1954 for (; rel
< relend
; rel
++)
1957 reloc_howto_type
* howto
;
1958 unsigned long r_symndx
;
1959 Elf_Internal_Sym
* sym
;
1961 struct elf_link_hash_entry
* h
;
1963 bfd_reloc_status_type r
;
1966 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1967 r_type
= ELF32_R_TYPE (rel
->r_info
);
1969 if ( r_type
== R_ARM_GNU_VTENTRY
1970 || r_type
== R_ARM_GNU_VTINHERIT
)
1973 elf32_arm_info_to_howto (input_bfd
, & bfd_reloc
, rel
);
1974 howto
= bfd_reloc
.howto
;
1977 if (info
->relocatable
)
1979 /* This is a relocatable link. We don't have to change
1980 anything, unless the reloc is against a section symbol,
1981 in which case we have to adjust according to where the
1982 section symbol winds up in the output section. */
1983 if (r_symndx
< symtab_hdr
->sh_info
)
1985 sym
= local_syms
+ r_symndx
;
1986 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
1988 sec
= local_sections
[r_symndx
];
1989 arm_add_to_rel (input_bfd
, contents
+ rel
->r_offset
,
1991 (bfd_signed_vma
) (sec
->output_offset
2000 /* This is a final link. */
2005 if (r_symndx
< symtab_hdr
->sh_info
)
2007 sym
= local_syms
+ r_symndx
;
2008 sec
= local_sections
[r_symndx
];
2010 relocation
= (sec
->output_section
->vma
2011 + sec
->output_offset
2013 if ((sec
->flags
& SEC_MERGE
)
2014 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
2017 bfd_vma addend
, value
;
2019 if (howto
->rightshift
)
2021 (*_bfd_error_handler
)
2022 (_("%B(%A+0x%lx): %s relocation against SEC_MERGE section"),
2023 input_bfd
, input_section
,
2024 (long) rel
->r_offset
, howto
->name
);
2028 value
= bfd_get_32 (input_bfd
, contents
+ rel
->r_offset
);
2030 /* Get the (signed) value from the instruction. */
2031 addend
= value
& howto
->src_mask
;
2032 if (addend
& ((howto
->src_mask
+ 1) >> 1))
2034 bfd_signed_vma mask
;
2037 mask
&= ~ howto
->src_mask
;
2042 _bfd_elf_rel_local_sym (output_bfd
, sym
, &msec
, addend
)
2044 addend
+= msec
->output_section
->vma
+ msec
->output_offset
;
2045 value
= (value
& ~ howto
->dst_mask
) | (addend
& howto
->dst_mask
);
2046 bfd_put_32 (input_bfd
, value
, contents
+ rel
->r_offset
);
2049 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
2055 bfd_boolean unresolved_reloc
;
2057 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
2058 r_symndx
, symtab_hdr
, sym_hashes
,
2060 unresolved_reloc
, warned
);
2062 if (unresolved_reloc
|| relocation
!= 0)
2064 /* In these cases, we don't need the relocation value.
2065 We check specially because in some obscure cases
2066 sec->output_section will be NULL. */
2071 case R_ARM_THM_PC22
:
2076 (!info
->symbolic
&& h
->dynindx
!= -1)
2077 || (h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
) == 0
2079 && ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
2080 && ((input_section
->flags
& SEC_ALLOC
) != 0
2081 /* DWARF will emit R_ARM_ABS32 relocations in its
2082 sections against symbols defined externally
2083 in shared libraries. We can't do anything
2085 || ((input_section
->flags
& SEC_DEBUGGING
) != 0
2086 && (h
->elf_link_hash_flags
2087 & ELF_LINK_HASH_DEF_DYNAMIC
) != 0))
2097 if ((WILL_CALL_FINISH_DYNAMIC_SYMBOL
2098 (elf_hash_table (info
)->dynamic_sections_created
,
2101 || (!info
->symbolic
&& h
->dynindx
!= -1)
2102 || (h
->elf_link_hash_flags
2103 & ELF_LINK_HASH_DEF_REGULAR
) == 0))
2108 if (unresolved_reloc
)
2110 (_("%B(%A): warning: unresolvable relocation %d against symbol `%s'"),
2111 input_bfd
, input_section
,
2113 h
->root
.root
.string
);
2120 name
= h
->root
.root
.string
;
2123 name
= (bfd_elf_string_from_elf_section
2124 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
2125 if (name
== NULL
|| *name
== '\0')
2126 name
= bfd_section_name (input_bfd
, sec
);
2129 r
= elf32_arm_final_link_relocate (howto
, input_bfd
, output_bfd
,
2130 input_section
, contents
, rel
,
2131 relocation
, info
, sec
, name
,
2132 (h
? ELF_ST_TYPE (h
->type
) :
2133 ELF_ST_TYPE (sym
->st_info
)), h
);
2135 if (r
!= bfd_reloc_ok
)
2137 const char * msg
= (const char *) 0;
2141 case bfd_reloc_overflow
:
2142 /* If the overflowing reloc was to an undefined symbol,
2143 we have already printed one error message and there
2144 is no point complaining again. */
2146 h
->root
.type
!= bfd_link_hash_undefined
)
2147 && (!((*info
->callbacks
->reloc_overflow
)
2148 (info
, name
, howto
->name
, (bfd_vma
) 0,
2149 input_bfd
, input_section
, rel
->r_offset
))))
2153 case bfd_reloc_undefined
:
2154 if (!((*info
->callbacks
->undefined_symbol
)
2155 (info
, name
, input_bfd
, input_section
,
2156 rel
->r_offset
, TRUE
)))
2160 case bfd_reloc_outofrange
:
2161 msg
= _("internal error: out of range error");
2164 case bfd_reloc_notsupported
:
2165 msg
= _("internal error: unsupported relocation error");
2168 case bfd_reloc_dangerous
:
2169 msg
= _("internal error: dangerous error");
2173 msg
= _("internal error: unknown error");
2177 if (!((*info
->callbacks
->warning
)
2178 (info
, msg
, name
, input_bfd
, input_section
,
2189 /* Set the right machine number. */
2192 elf32_arm_object_p (bfd
*abfd
)
2196 mach
= bfd_arm_get_mach_from_notes (abfd
, ARM_NOTE_SECTION
);
2198 if (mach
!= bfd_mach_arm_unknown
)
2199 bfd_default_set_arch_mach (abfd
, bfd_arch_arm
, mach
);
2201 else if (elf_elfheader (abfd
)->e_flags
& EF_ARM_MAVERICK_FLOAT
)
2202 bfd_default_set_arch_mach (abfd
, bfd_arch_arm
, bfd_mach_arm_ep9312
);
2205 bfd_default_set_arch_mach (abfd
, bfd_arch_arm
, mach
);
2210 /* Function to keep ARM specific flags in the ELF header. */
2212 elf32_arm_set_private_flags (bfd
*abfd
, flagword flags
)
2214 if (elf_flags_init (abfd
)
2215 && elf_elfheader (abfd
)->e_flags
!= flags
)
2217 if (EF_ARM_EABI_VERSION (flags
) == EF_ARM_EABI_UNKNOWN
)
2219 if (flags
& EF_ARM_INTERWORK
)
2220 (*_bfd_error_handler
)
2221 (_("Warning: Not setting interworking flag of %B since it has already been specified as non-interworking"),
2225 (_("Warning: Clearing the interworking flag of %B due to outside request"),
2231 elf_elfheader (abfd
)->e_flags
= flags
;
2232 elf_flags_init (abfd
) = TRUE
;
2238 /* Copy backend specific data from one object module to another. */
2241 elf32_arm_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
2246 if ( bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
2247 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
2250 in_flags
= elf_elfheader (ibfd
)->e_flags
;
2251 out_flags
= elf_elfheader (obfd
)->e_flags
;
2253 if (elf_flags_init (obfd
)
2254 && EF_ARM_EABI_VERSION (out_flags
) == EF_ARM_EABI_UNKNOWN
2255 && in_flags
!= out_flags
)
2257 /* Cannot mix APCS26 and APCS32 code. */
2258 if ((in_flags
& EF_ARM_APCS_26
) != (out_flags
& EF_ARM_APCS_26
))
2261 /* Cannot mix float APCS and non-float APCS code. */
2262 if ((in_flags
& EF_ARM_APCS_FLOAT
) != (out_flags
& EF_ARM_APCS_FLOAT
))
2265 /* If the src and dest have different interworking flags
2266 then turn off the interworking bit. */
2267 if ((in_flags
& EF_ARM_INTERWORK
) != (out_flags
& EF_ARM_INTERWORK
))
2269 if (out_flags
& EF_ARM_INTERWORK
)
2271 (_("Warning: Clearing the interworking flag of %B because non-interworking code in %B has been linked with it"),
2274 in_flags
&= ~EF_ARM_INTERWORK
;
2277 /* Likewise for PIC, though don't warn for this case. */
2278 if ((in_flags
& EF_ARM_PIC
) != (out_flags
& EF_ARM_PIC
))
2279 in_flags
&= ~EF_ARM_PIC
;
2282 elf_elfheader (obfd
)->e_flags
= in_flags
;
2283 elf_flags_init (obfd
) = TRUE
;
2288 /* Merge backend specific data from an object file to the output
2289 object file when linking. */
2292 elf32_arm_merge_private_bfd_data (bfd
* ibfd
, bfd
* obfd
)
2296 bfd_boolean flags_compatible
= TRUE
;
2299 /* Check if we have the same endianess. */
2300 if (! _bfd_generic_verify_endian_match (ibfd
, obfd
))
2303 if ( bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
2304 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
2307 /* The input BFD must have had its flags initialised. */
2308 /* The following seems bogus to me -- The flags are initialized in
2309 the assembler but I don't think an elf_flags_init field is
2310 written into the object. */
2311 /* BFD_ASSERT (elf_flags_init (ibfd)); */
2313 in_flags
= elf_elfheader (ibfd
)->e_flags
;
2314 out_flags
= elf_elfheader (obfd
)->e_flags
;
2316 if (!elf_flags_init (obfd
))
2318 /* If the input is the default architecture and had the default
2319 flags then do not bother setting the flags for the output
2320 architecture, instead allow future merges to do this. If no
2321 future merges ever set these flags then they will retain their
2322 uninitialised values, which surprise surprise, correspond
2323 to the default values. */
2324 if (bfd_get_arch_info (ibfd
)->the_default
2325 && elf_elfheader (ibfd
)->e_flags
== 0)
2328 elf_flags_init (obfd
) = TRUE
;
2329 elf_elfheader (obfd
)->e_flags
= in_flags
;
2331 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
2332 && bfd_get_arch_info (obfd
)->the_default
)
2333 return bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
), bfd_get_mach (ibfd
));
2338 /* Determine what should happen if the input ARM architecture
2339 does not match the output ARM architecture. */
2340 if (! bfd_arm_merge_machines (ibfd
, obfd
))
2343 /* Identical flags must be compatible. */
2344 if (in_flags
== out_flags
)
2347 /* Check to see if the input BFD actually contains any sections. If
2348 not, its flags may not have been initialised either, but it
2349 cannot actually cause any incompatibility. Do not short-circuit
2350 dynamic objects; their section list may be emptied by
2351 elf_link_add_object_symbols.
2353 Also check to see if there are no code sections in the input.
2354 In this case there is no need to check for code specific flags.
2355 XXX - do we need to worry about floating-point format compatability
2356 in data sections ? */
2357 if (!(ibfd
->flags
& DYNAMIC
))
2359 bfd_boolean null_input_bfd
= TRUE
;
2360 bfd_boolean only_data_sections
= TRUE
;
2362 for (sec
= ibfd
->sections
; sec
!= NULL
; sec
= sec
->next
)
2364 /* Ignore synthetic glue sections. */
2365 if (strcmp (sec
->name
, ".glue_7")
2366 && strcmp (sec
->name
, ".glue_7t"))
2368 if ((bfd_get_section_flags (ibfd
, sec
)
2369 & (SEC_LOAD
| SEC_CODE
| SEC_HAS_CONTENTS
))
2370 == (SEC_LOAD
| SEC_CODE
| SEC_HAS_CONTENTS
))
2371 only_data_sections
= FALSE
;
2373 null_input_bfd
= FALSE
;
2378 if (null_input_bfd
|| only_data_sections
)
2382 /* Complain about various flag mismatches. */
2383 if (EF_ARM_EABI_VERSION (in_flags
) != EF_ARM_EABI_VERSION (out_flags
))
2386 (_("ERROR: %B is compiled for EABI version %d, whereas %B is compiled for version %d"),
2388 (in_flags
& EF_ARM_EABIMASK
) >> 24,
2389 (out_flags
& EF_ARM_EABIMASK
) >> 24);
2393 /* Not sure what needs to be checked for EABI versions >= 1. */
2394 if (EF_ARM_EABI_VERSION (in_flags
) == EF_ARM_EABI_UNKNOWN
)
2396 if ((in_flags
& EF_ARM_APCS_26
) != (out_flags
& EF_ARM_APCS_26
))
2399 (_("ERROR: %B is compiled for APCS-%d, whereas target %B uses APCS-%d"),
2401 in_flags
& EF_ARM_APCS_26
? 26 : 32,
2402 out_flags
& EF_ARM_APCS_26
? 26 : 32);
2403 flags_compatible
= FALSE
;
2406 if ((in_flags
& EF_ARM_APCS_FLOAT
) != (out_flags
& EF_ARM_APCS_FLOAT
))
2408 if (in_flags
& EF_ARM_APCS_FLOAT
)
2410 (_("ERROR: %B passes floats in float registers, whereas %B passes them in integer registers"),
2414 (_("ERROR: %B passes floats in integer registers, whereas %B passes them in float registers"),
2417 flags_compatible
= FALSE
;
2420 if ((in_flags
& EF_ARM_VFP_FLOAT
) != (out_flags
& EF_ARM_VFP_FLOAT
))
2422 if (in_flags
& EF_ARM_VFP_FLOAT
)
2424 (_("ERROR: %B uses VFP instructions, whereas %B does not"),
2428 (_("ERROR: %B uses FPA instructions, whereas %B does not"),
2431 flags_compatible
= FALSE
;
2434 if ((in_flags
& EF_ARM_MAVERICK_FLOAT
) != (out_flags
& EF_ARM_MAVERICK_FLOAT
))
2436 if (in_flags
& EF_ARM_MAVERICK_FLOAT
)
2438 (_("ERROR: %B uses Maverick instructions, whereas %B does not"),
2442 (_("ERROR: %B does not use Maverick instructions, whereas %B does"),
2445 flags_compatible
= FALSE
;
2448 #ifdef EF_ARM_SOFT_FLOAT
2449 if ((in_flags
& EF_ARM_SOFT_FLOAT
) != (out_flags
& EF_ARM_SOFT_FLOAT
))
2451 /* We can allow interworking between code that is VFP format
2452 layout, and uses either soft float or integer regs for
2453 passing floating point arguments and results. We already
2454 know that the APCS_FLOAT flags match; similarly for VFP
2456 if ((in_flags
& EF_ARM_APCS_FLOAT
) != 0
2457 || (in_flags
& EF_ARM_VFP_FLOAT
) == 0)
2459 if (in_flags
& EF_ARM_SOFT_FLOAT
)
2461 (_("ERROR: %B uses software FP, whereas %B uses hardware FP"),
2465 (_("ERROR: %B uses hardware FP, whereas %B uses software FP"),
2468 flags_compatible
= FALSE
;
2473 /* Interworking mismatch is only a warning. */
2474 if ((in_flags
& EF_ARM_INTERWORK
) != (out_flags
& EF_ARM_INTERWORK
))
2476 if (in_flags
& EF_ARM_INTERWORK
)
2479 (_("Warning: %B supports interworking, whereas %B does not"),
2485 (_("Warning: %B does not support interworking, whereas %B does"),
2491 return flags_compatible
;
2494 /* Display the flags field. */
2497 elf32_arm_print_private_bfd_data (bfd
*abfd
, void * ptr
)
2499 FILE * file
= (FILE *) ptr
;
2500 unsigned long flags
;
2502 BFD_ASSERT (abfd
!= NULL
&& ptr
!= NULL
);
2504 /* Print normal ELF private data. */
2505 _bfd_elf_print_private_bfd_data (abfd
, ptr
);
2507 flags
= elf_elfheader (abfd
)->e_flags
;
2508 /* Ignore init flag - it may not be set, despite the flags field
2509 containing valid data. */
2511 /* xgettext:c-format */
2512 fprintf (file
, _("private flags = %lx:"), elf_elfheader (abfd
)->e_flags
);
2514 switch (EF_ARM_EABI_VERSION (flags
))
2516 case EF_ARM_EABI_UNKNOWN
:
2517 /* The following flag bits are GNU extensions and not part of the
2518 official ARM ELF extended ABI. Hence they are only decoded if
2519 the EABI version is not set. */
2520 if (flags
& EF_ARM_INTERWORK
)
2521 fprintf (file
, _(" [interworking enabled]"));
2523 if (flags
& EF_ARM_APCS_26
)
2524 fprintf (file
, " [APCS-26]");
2526 fprintf (file
, " [APCS-32]");
2528 if (flags
& EF_ARM_VFP_FLOAT
)
2529 fprintf (file
, _(" [VFP float format]"));
2530 else if (flags
& EF_ARM_MAVERICK_FLOAT
)
2531 fprintf (file
, _(" [Maverick float format]"));
2533 fprintf (file
, _(" [FPA float format]"));
2535 if (flags
& EF_ARM_APCS_FLOAT
)
2536 fprintf (file
, _(" [floats passed in float registers]"));
2538 if (flags
& EF_ARM_PIC
)
2539 fprintf (file
, _(" [position independent]"));
2541 if (flags
& EF_ARM_NEW_ABI
)
2542 fprintf (file
, _(" [new ABI]"));
2544 if (flags
& EF_ARM_OLD_ABI
)
2545 fprintf (file
, _(" [old ABI]"));
2547 if (flags
& EF_ARM_SOFT_FLOAT
)
2548 fprintf (file
, _(" [software FP]"));
2550 flags
&= ~(EF_ARM_INTERWORK
| EF_ARM_APCS_26
| EF_ARM_APCS_FLOAT
2551 | EF_ARM_PIC
| EF_ARM_NEW_ABI
| EF_ARM_OLD_ABI
2552 | EF_ARM_SOFT_FLOAT
| EF_ARM_VFP_FLOAT
2553 | EF_ARM_MAVERICK_FLOAT
);
2556 case EF_ARM_EABI_VER1
:
2557 fprintf (file
, _(" [Version1 EABI]"));
2559 if (flags
& EF_ARM_SYMSARESORTED
)
2560 fprintf (file
, _(" [sorted symbol table]"));
2562 fprintf (file
, _(" [unsorted symbol table]"));
2564 flags
&= ~ EF_ARM_SYMSARESORTED
;
2567 case EF_ARM_EABI_VER2
:
2568 fprintf (file
, _(" [Version2 EABI]"));
2570 if (flags
& EF_ARM_SYMSARESORTED
)
2571 fprintf (file
, _(" [sorted symbol table]"));
2573 fprintf (file
, _(" [unsorted symbol table]"));
2575 if (flags
& EF_ARM_DYNSYMSUSESEGIDX
)
2576 fprintf (file
, _(" [dynamic symbols use segment index]"));
2578 if (flags
& EF_ARM_MAPSYMSFIRST
)
2579 fprintf (file
, _(" [mapping symbols precede others]"));
2581 flags
&= ~(EF_ARM_SYMSARESORTED
| EF_ARM_DYNSYMSUSESEGIDX
2582 | EF_ARM_MAPSYMSFIRST
);
2585 case EF_ARM_EABI_VER3
:
2586 fprintf (file
, _(" [Version3 EABI]"));
2588 if (flags
& EF_ARM_BE8
)
2589 fprintf (file
, _(" [BE8]"));
2591 if (flags
& EF_ARM_LE8
)
2592 fprintf (file
, _(" [LE8]"));
2594 flags
&= ~(EF_ARM_LE8
| EF_ARM_BE8
);
2598 fprintf (file
, _(" <EABI version unrecognised>"));
2602 flags
&= ~ EF_ARM_EABIMASK
;
2604 if (flags
& EF_ARM_RELEXEC
)
2605 fprintf (file
, _(" [relocatable executable]"));
2607 if (flags
& EF_ARM_HASENTRY
)
2608 fprintf (file
, _(" [has entry point]"));
2610 flags
&= ~ (EF_ARM_RELEXEC
| EF_ARM_HASENTRY
);
2613 fprintf (file
, _("<Unrecognised flag bits set>"));
2621 elf32_arm_get_symbol_type (Elf_Internal_Sym
* elf_sym
, int type
)
2623 switch (ELF_ST_TYPE (elf_sym
->st_info
))
2626 return ELF_ST_TYPE (elf_sym
->st_info
);
2629 /* If the symbol is not an object, return the STT_ARM_16BIT flag.
2630 This allows us to distinguish between data used by Thumb instructions
2631 and non-data (which is probably code) inside Thumb regions of an
2633 if (type
!= STT_OBJECT
)
2634 return ELF_ST_TYPE (elf_sym
->st_info
);
2645 elf32_arm_gc_mark_hook (asection
* sec
,
2646 struct bfd_link_info
* info ATTRIBUTE_UNUSED
,
2647 Elf_Internal_Rela
* rel
,
2648 struct elf_link_hash_entry
* h
,
2649 Elf_Internal_Sym
* sym
)
2653 switch (ELF32_R_TYPE (rel
->r_info
))
2655 case R_ARM_GNU_VTINHERIT
:
2656 case R_ARM_GNU_VTENTRY
:
2660 switch (h
->root
.type
)
2662 case bfd_link_hash_defined
:
2663 case bfd_link_hash_defweak
:
2664 return h
->root
.u
.def
.section
;
2666 case bfd_link_hash_common
:
2667 return h
->root
.u
.c
.p
->section
;
2675 return bfd_section_from_elf_index (sec
->owner
, sym
->st_shndx
);
2680 /* Update the got entry reference counts for the section being removed. */
2683 elf32_arm_gc_sweep_hook (bfd
* abfd ATTRIBUTE_UNUSED
,
2684 struct bfd_link_info
* info ATTRIBUTE_UNUSED
,
2685 asection
* sec ATTRIBUTE_UNUSED
,
2686 const Elf_Internal_Rela
* relocs ATTRIBUTE_UNUSED
)
2688 Elf_Internal_Shdr
*symtab_hdr
;
2689 struct elf_link_hash_entry
**sym_hashes
;
2690 bfd_signed_vma
*local_got_refcounts
;
2691 const Elf_Internal_Rela
*rel
, *relend
;
2692 unsigned long r_symndx
;
2693 struct elf_link_hash_entry
*h
;
2695 elf_section_data (sec
)->local_dynrel
= NULL
;
2697 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2698 sym_hashes
= elf_sym_hashes (abfd
);
2699 local_got_refcounts
= elf_local_got_refcounts (abfd
);
2701 relend
= relocs
+ sec
->reloc_count
;
2702 for (rel
= relocs
; rel
< relend
; rel
++)
2703 switch (ELF32_R_TYPE (rel
->r_info
))
2706 r_symndx
= ELF32_R_SYM (rel
->r_info
);
2707 if (r_symndx
>= symtab_hdr
->sh_info
)
2709 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2710 if (h
->got
.refcount
> 0)
2711 h
->got
.refcount
-= 1;
2713 else if (local_got_refcounts
!= NULL
)
2715 if (local_got_refcounts
[r_symndx
] > 0)
2716 local_got_refcounts
[r_symndx
] -= 1;
2724 r_symndx
= ELF32_R_SYM (rel
->r_info
);
2725 if (r_symndx
>= symtab_hdr
->sh_info
)
2727 struct elf32_arm_link_hash_entry
*eh
;
2728 struct elf32_arm_relocs_copied
**pp
;
2729 struct elf32_arm_relocs_copied
*p
;
2731 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2733 if (h
->plt
.refcount
> 0)
2734 h
->plt
.refcount
-= 1;
2736 if (ELF32_R_TYPE (rel
->r_info
) == R_ARM_ABS32
2737 || ELF32_R_TYPE (rel
->r_info
) == R_ARM_REL32
)
2739 eh
= (struct elf32_arm_link_hash_entry
*) h
;
2741 for (pp
= &eh
->relocs_copied
; (p
= *pp
) != NULL
;
2743 if (p
->section
== sec
)
2761 /* Look through the relocs for a section during the first phase. */
2764 elf32_arm_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
,
2765 asection
*sec
, const Elf_Internal_Rela
*relocs
)
2767 Elf_Internal_Shdr
*symtab_hdr
;
2768 struct elf_link_hash_entry
**sym_hashes
;
2769 struct elf_link_hash_entry
**sym_hashes_end
;
2770 const Elf_Internal_Rela
*rel
;
2771 const Elf_Internal_Rela
*rel_end
;
2774 bfd_vma
*local_got_offsets
;
2775 struct elf32_arm_link_hash_table
*htab
;
2777 if (info
->relocatable
)
2780 htab
= elf32_arm_hash_table (info
);
2783 dynobj
= elf_hash_table (info
)->dynobj
;
2784 local_got_offsets
= elf_local_got_offsets (abfd
);
2786 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2787 sym_hashes
= elf_sym_hashes (abfd
);
2788 sym_hashes_end
= sym_hashes
2789 + symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
);
2791 if (!elf_bad_symtab (abfd
))
2792 sym_hashes_end
-= symtab_hdr
->sh_info
;
2794 rel_end
= relocs
+ sec
->reloc_count
;
2795 for (rel
= relocs
; rel
< rel_end
; rel
++)
2797 struct elf_link_hash_entry
*h
;
2798 unsigned long r_symndx
;
2800 r_symndx
= ELF32_R_SYM (rel
->r_info
);
2801 if (r_symndx
< symtab_hdr
->sh_info
)
2804 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2806 switch (ELF32_R_TYPE (rel
->r_info
))
2809 /* This symbol requires a global offset table entry. */
2816 bfd_signed_vma
*local_got_refcounts
;
2818 /* This is a global offset table entry for a local symbol. */
2819 local_got_refcounts
= elf_local_got_refcounts (abfd
);
2820 if (local_got_refcounts
== NULL
)
2824 size
= symtab_hdr
->sh_info
;
2825 size
*= (sizeof (bfd_signed_vma
) + sizeof (char));
2826 local_got_refcounts
= bfd_zalloc (abfd
, size
);
2827 if (local_got_refcounts
== NULL
)
2829 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
2831 local_got_refcounts
[r_symndx
] += 1;
2837 if (htab
->sgot
== NULL
)
2839 if (htab
->root
.dynobj
== NULL
)
2840 htab
->root
.dynobj
= abfd
;
2841 if (!create_got_section (htab
->root
.dynobj
, info
))
2852 /* If this reloc is in a read-only section, we might
2853 need a copy reloc. We can't check reliably at this
2854 stage whether the section is read-only, as input
2855 sections have not yet been mapped to output sections.
2856 Tentatively set the flag for now, and correct in
2857 adjust_dynamic_symbol. */
2859 h
->elf_link_hash_flags
|= ELF_LINK_NON_GOT_REF
;
2861 /* We may need a .plt entry if the function this reloc
2862 refers to is in a different object. We can't tell for
2863 sure yet, because something later might force the
2865 if (ELF32_R_TYPE (rel
->r_info
) == R_ARM_PC24
2866 || ELF32_R_TYPE (rel
->r_info
) == R_ARM_PLT32
)
2867 h
->elf_link_hash_flags
|= ELF_LINK_HASH_NEEDS_PLT
;
2869 /* If we create a PLT entry, this relocation will reference
2870 it, even if it's an ABS32 relocation. */
2871 h
->plt
.refcount
+= 1;
2874 /* If we are creating a shared library, and this is a reloc
2875 against a global symbol, or a non PC relative reloc
2876 against a local symbol, then we need to copy the reloc
2877 into the shared library. However, if we are linking with
2878 -Bsymbolic, we do not need to copy a reloc against a
2879 global symbol which is defined in an object we are
2880 including in the link (i.e., DEF_REGULAR is set). At
2881 this point we have not seen all the input files, so it is
2882 possible that DEF_REGULAR is not set now but will be set
2883 later (it is never cleared). We account for that
2884 possibility below by storing information in the
2885 relocs_copied field of the hash table entry. */
2887 && (sec
->flags
& SEC_ALLOC
) != 0
2888 && ((ELF32_R_TYPE (rel
->r_info
) != R_ARM_PC24
2889 && ELF32_R_TYPE (rel
->r_info
) != R_ARM_PLT32
2890 && ELF32_R_TYPE (rel
->r_info
) != R_ARM_REL32
)
2892 && (! info
->symbolic
2893 || (h
->elf_link_hash_flags
2894 & ELF_LINK_HASH_DEF_REGULAR
) == 0))))
2896 struct elf32_arm_relocs_copied
*p
, **head
;
2898 /* When creating a shared object, we must copy these
2899 reloc types into the output file. We create a reloc
2900 section in dynobj and make room for this reloc. */
2905 name
= (bfd_elf_string_from_elf_section
2907 elf_elfheader (abfd
)->e_shstrndx
,
2908 elf_section_data (sec
)->rel_hdr
.sh_name
));
2912 BFD_ASSERT (strncmp (name
, ".rel", 4) == 0
2913 && strcmp (bfd_get_section_name (abfd
, sec
),
2916 sreloc
= bfd_get_section_by_name (dynobj
, name
);
2921 sreloc
= bfd_make_section (dynobj
, name
);
2922 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
2923 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
2924 if ((sec
->flags
& SEC_ALLOC
) != 0)
2925 flags
|= SEC_ALLOC
| SEC_LOAD
;
2927 || ! bfd_set_section_flags (dynobj
, sreloc
, flags
)
2928 || ! bfd_set_section_alignment (dynobj
, sreloc
, 2))
2932 elf_section_data (sec
)->sreloc
= sreloc
;
2935 /* If this is a global symbol, we count the number of
2936 relocations we need for this symbol. */
2939 head
= &((struct elf32_arm_link_hash_entry
*) h
)->relocs_copied
;
2943 /* Track dynamic relocs needed for local syms too.
2944 We really need local syms available to do this
2948 s
= bfd_section_from_r_symndx (abfd
, &htab
->sym_sec
,
2953 head
= ((struct elf32_arm_relocs_copied
**)
2954 &elf_section_data (s
)->local_dynrel
);
2958 if (p
== NULL
|| p
->section
!= sec
)
2960 bfd_size_type amt
= sizeof *p
;
2962 p
= bfd_alloc (htab
->root
.dynobj
, amt
);
2971 if (ELF32_R_TYPE (rel
->r_info
) == R_ARM_ABS32
2972 || ELF32_R_TYPE (rel
->r_info
) == R_ARM_REL32
)
2977 /* This relocation describes the C++ object vtable hierarchy.
2978 Reconstruct it for later use during GC. */
2979 case R_ARM_GNU_VTINHERIT
:
2980 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
2984 /* This relocation describes which C++ vtable entries are actually
2985 used. Record for later use during GC. */
2986 case R_ARM_GNU_VTENTRY
:
2987 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_offset
))
2997 is_arm_mapping_symbol_name (const char * name
)
2999 return (name
!= NULL
)
3001 && ((name
[1] == 'a') || (name
[1] == 't') || (name
[1] == 'd'))
3005 /* This is a copy of elf_find_function() from elf.c except that
3006 ARM mapping symbols are ignored when looking for function names
3007 and STT_ARM_TFUNC is considered to a function type. */
3010 arm_elf_find_function (bfd
* abfd ATTRIBUTE_UNUSED
,
3014 const char ** filename_ptr
,
3015 const char ** functionname_ptr
)
3017 const char * filename
= NULL
;
3018 asymbol
* func
= NULL
;
3019 bfd_vma low_func
= 0;
3022 for (p
= symbols
; *p
!= NULL
; p
++)
3026 q
= (elf_symbol_type
*) *p
;
3028 if (bfd_get_section (&q
->symbol
) != section
)
3031 switch (ELF_ST_TYPE (q
->internal_elf_sym
.st_info
))
3036 filename
= bfd_asymbol_name (&q
->symbol
);
3040 /* Skip $a and $t symbols. */
3041 if ((q
->symbol
.flags
& BSF_LOCAL
)
3042 && is_arm_mapping_symbol_name (q
->symbol
.name
))
3046 if (q
->symbol
.section
== section
3047 && q
->symbol
.value
>= low_func
3048 && q
->symbol
.value
<= offset
)
3050 func
= (asymbol
*) q
;
3051 low_func
= q
->symbol
.value
;
3061 *filename_ptr
= filename
;
3062 if (functionname_ptr
)
3063 *functionname_ptr
= bfd_asymbol_name (func
);
3069 /* Find the nearest line to a particular section and offset, for error
3070 reporting. This code is a duplicate of the code in elf.c, except
3071 that it uses arm_elf_find_function. */
3074 elf32_arm_find_nearest_line (bfd
* abfd
,
3078 const char ** filename_ptr
,
3079 const char ** functionname_ptr
,
3080 unsigned int * line_ptr
)
3082 bfd_boolean found
= FALSE
;
3084 /* We skip _bfd_dwarf1_find_nearest_line since no known ARM toolchain uses it. */
3086 if (_bfd_dwarf2_find_nearest_line (abfd
, section
, symbols
, offset
,
3087 filename_ptr
, functionname_ptr
,
3089 & elf_tdata (abfd
)->dwarf2_find_line_info
))
3091 if (!*functionname_ptr
)
3092 arm_elf_find_function (abfd
, section
, symbols
, offset
,
3093 *filename_ptr
? NULL
: filename_ptr
,
3099 if (! _bfd_stab_section_find_nearest_line (abfd
, symbols
, section
, offset
,
3100 & found
, filename_ptr
,
3101 functionname_ptr
, line_ptr
,
3102 & elf_tdata (abfd
)->line_info
))
3105 if (found
&& (*functionname_ptr
|| *line_ptr
))
3108 if (symbols
== NULL
)
3111 if (! arm_elf_find_function (abfd
, section
, symbols
, offset
,
3112 filename_ptr
, functionname_ptr
))
3119 /* Adjust a symbol defined by a dynamic object and referenced by a
3120 regular object. The current definition is in some section of the
3121 dynamic object, but we're not including those sections. We have to
3122 change the definition to something the rest of the link can
3126 elf32_arm_adjust_dynamic_symbol (struct bfd_link_info
* info
,
3127 struct elf_link_hash_entry
* h
)
3131 unsigned int power_of_two
;
3133 dynobj
= elf_hash_table (info
)->dynobj
;
3135 /* Make sure we know what is going on here. */
3136 BFD_ASSERT (dynobj
!= NULL
3137 && ((h
->elf_link_hash_flags
& ELF_LINK_HASH_NEEDS_PLT
)
3138 || h
->weakdef
!= NULL
3139 || ((h
->elf_link_hash_flags
3140 & ELF_LINK_HASH_DEF_DYNAMIC
) != 0
3141 && (h
->elf_link_hash_flags
3142 & ELF_LINK_HASH_REF_REGULAR
) != 0
3143 && (h
->elf_link_hash_flags
3144 & ELF_LINK_HASH_DEF_REGULAR
) == 0)));
3146 /* If this is a function, put it in the procedure linkage table. We
3147 will fill in the contents of the procedure linkage table later,
3148 when we know the address of the .got section. */
3149 if (h
->type
== STT_FUNC
3150 || (h
->elf_link_hash_flags
& ELF_LINK_HASH_NEEDS_PLT
) != 0)
3152 if (h
->plt
.refcount
<= 0
3153 || SYMBOL_CALLS_LOCAL (info
, h
)
3154 || (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
3155 && h
->root
.type
== bfd_link_hash_undefweak
))
3157 /* This case can occur if we saw a PLT32 reloc in an input
3158 file, but the symbol was never referred to by a dynamic
3159 object, or if all references were garbage collected. In
3160 such a case, we don't actually need to build a procedure
3161 linkage table, and we can just do a PC24 reloc instead. */
3162 h
->plt
.offset
= (bfd_vma
) -1;
3163 h
->elf_link_hash_flags
&= ~ELF_LINK_HASH_NEEDS_PLT
;
3169 /* It's possible that we incorrectly decided a .plt reloc was
3170 needed for an R_ARM_PC24 reloc to a non-function sym in
3171 check_relocs. We can't decide accurately between function and
3172 non-function syms in check-relocs; Objects loaded later in
3173 the link may change h->type. So fix it now. */
3174 h
->plt
.offset
= (bfd_vma
) -1;
3176 /* If this is a weak symbol, and there is a real definition, the
3177 processor independent code will have arranged for us to see the
3178 real definition first, and we can just use the same value. */
3179 if (h
->weakdef
!= NULL
)
3181 BFD_ASSERT (h
->weakdef
->root
.type
== bfd_link_hash_defined
3182 || h
->weakdef
->root
.type
== bfd_link_hash_defweak
);
3183 h
->root
.u
.def
.section
= h
->weakdef
->root
.u
.def
.section
;
3184 h
->root
.u
.def
.value
= h
->weakdef
->root
.u
.def
.value
;
3188 /* This is a reference to a symbol defined by a dynamic object which
3189 is not a function. */
3191 /* If we are creating a shared library, we must presume that the
3192 only references to the symbol are via the global offset table.
3193 For such cases we need not do anything here; the relocations will
3194 be handled correctly by relocate_section. */
3198 /* We must allocate the symbol in our .dynbss section, which will
3199 become part of the .bss section of the executable. There will be
3200 an entry for this symbol in the .dynsym section. The dynamic
3201 object will contain position independent code, so all references
3202 from the dynamic object to this symbol will go through the global
3203 offset table. The dynamic linker will use the .dynsym entry to
3204 determine the address it must put in the global offset table, so
3205 both the dynamic object and the regular object will refer to the
3206 same memory location for the variable. */
3207 s
= bfd_get_section_by_name (dynobj
, ".dynbss");
3208 BFD_ASSERT (s
!= NULL
);
3210 /* We must generate a R_ARM_COPY reloc to tell the dynamic linker to
3211 copy the initial value out of the dynamic object and into the
3212 runtime process image. We need to remember the offset into the
3213 .rel.bss section we are going to use. */
3214 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
3218 srel
= bfd_get_section_by_name (dynobj
, ".rel.bss");
3219 BFD_ASSERT (srel
!= NULL
);
3220 srel
->size
+= sizeof (Elf32_External_Rel
);
3221 h
->elf_link_hash_flags
|= ELF_LINK_HASH_NEEDS_COPY
;
3224 /* We need to figure out the alignment required for this symbol. I
3225 have no idea how ELF linkers handle this. */
3226 power_of_two
= bfd_log2 (h
->size
);
3227 if (power_of_two
> 3)
3230 /* Apply the required alignment. */
3231 s
->size
= BFD_ALIGN (s
->size
, (bfd_size_type
) (1 << power_of_two
));
3232 if (power_of_two
> bfd_get_section_alignment (dynobj
, s
))
3234 if (! bfd_set_section_alignment (dynobj
, s
, power_of_two
))
3238 /* Define the symbol as being at this point in the section. */
3239 h
->root
.u
.def
.section
= s
;
3240 h
->root
.u
.def
.value
= s
->size
;
3242 /* Increment the section size to make room for the symbol. */
3248 /* Allocate space in .plt, .got and associated reloc sections for
3252 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
3254 struct bfd_link_info
*info
;
3255 struct elf32_arm_link_hash_table
*htab
;
3256 struct elf32_arm_link_hash_entry
*eh
;
3257 struct elf32_arm_relocs_copied
*p
;
3259 if (h
->root
.type
== bfd_link_hash_indirect
)
3262 if (h
->root
.type
== bfd_link_hash_warning
)
3263 /* When warning symbols are created, they **replace** the "real"
3264 entry in the hash table, thus we never get to see the real
3265 symbol in a hash traversal. So look at it now. */
3266 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
3268 info
= (struct bfd_link_info
*) inf
;
3269 htab
= elf32_arm_hash_table (info
);
3271 if (htab
->root
.dynamic_sections_created
3272 && h
->plt
.refcount
> 0)
3274 /* Make sure this symbol is output as a dynamic symbol.
3275 Undefined weak syms won't yet be marked as dynamic. */
3276 if (h
->dynindx
== -1
3277 && (h
->elf_link_hash_flags
& ELF_LINK_FORCED_LOCAL
) == 0)
3279 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3284 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, 0, h
))
3286 asection
*s
= htab
->splt
;
3288 /* If this is the first .plt entry, make room for the special
3291 s
->size
+= PLT_HEADER_SIZE
;
3293 h
->plt
.offset
= s
->size
;
3295 /* If this symbol is not defined in a regular file, and we are
3296 not generating a shared library, then set the symbol to this
3297 location in the .plt. This is required to make function
3298 pointers compare as equal between the normal executable and
3299 the shared library. */
3301 && (h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
) == 0)
3303 h
->root
.u
.def
.section
= s
;
3304 h
->root
.u
.def
.value
= h
->plt
.offset
;
3307 /* Make room for this entry. */
3308 s
->size
+= PLT_ENTRY_SIZE
;
3310 /* We also need to make an entry in the .got.plt section, which
3311 will be placed in the .got section by the linker script. */
3312 htab
->sgotplt
->size
+= 4;
3314 /* We also need to make an entry in the .rel.plt section. */
3315 htab
->srelplt
->size
+= sizeof (Elf32_External_Rel
);
3319 h
->plt
.offset
= (bfd_vma
) -1;
3320 h
->elf_link_hash_flags
&= ~ELF_LINK_HASH_NEEDS_PLT
;
3325 h
->plt
.offset
= (bfd_vma
) -1;
3326 h
->elf_link_hash_flags
&= ~ELF_LINK_HASH_NEEDS_PLT
;
3329 if (h
->got
.refcount
> 0)
3334 /* Make sure this symbol is output as a dynamic symbol.
3335 Undefined weak syms won't yet be marked as dynamic. */
3336 if (h
->dynindx
== -1
3337 && (h
->elf_link_hash_flags
& ELF_LINK_FORCED_LOCAL
) == 0)
3339 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3344 h
->got
.offset
= s
->size
;
3346 dyn
= htab
->root
.dynamic_sections_created
;
3347 if ((ELF_ST_VISIBILITY (h
->other
) == STV_DEFAULT
3348 || h
->root
.type
!= bfd_link_hash_undefweak
)
3350 || WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, 0, h
)))
3351 htab
->srelgot
->size
+= sizeof (Elf32_External_Rel
);
3354 h
->got
.offset
= (bfd_vma
) -1;
3356 eh
= (struct elf32_arm_link_hash_entry
*) h
;
3357 if (eh
->relocs_copied
== NULL
)
3360 /* In the shared -Bsymbolic case, discard space allocated for
3361 dynamic pc-relative relocs against symbols which turn out to be
3362 defined in regular objects. For the normal shared case, discard
3363 space for pc-relative relocs that have become local due to symbol
3364 visibility changes. */
3368 /* Discard relocs on undefined weak syms with non-default
3370 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
3371 && h
->root
.type
== bfd_link_hash_undefweak
)
3372 eh
->relocs_copied
= NULL
;
3376 /* For the non-shared case, discard space for relocs against
3377 symbols which turn out to need copy relocs or are not
3380 if ((h
->elf_link_hash_flags
& ELF_LINK_NON_GOT_REF
) == 0
3381 && (((h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_DYNAMIC
) != 0
3382 && (h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
) == 0)
3383 || (htab
->root
.dynamic_sections_created
3384 && (h
->root
.type
== bfd_link_hash_undefweak
3385 || h
->root
.type
== bfd_link_hash_undefined
))))
3387 /* Make sure this symbol is output as a dynamic symbol.
3388 Undefined weak syms won't yet be marked as dynamic. */
3389 if (h
->dynindx
== -1
3390 && (h
->elf_link_hash_flags
& ELF_LINK_FORCED_LOCAL
) == 0)
3392 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
3396 /* If that succeeded, we know we'll be keeping all the
3398 if (h
->dynindx
!= -1)
3402 eh
->relocs_copied
= NULL
;
3407 /* Finally, allocate space. */
3408 for (p
= eh
->relocs_copied
; p
!= NULL
; p
= p
->next
)
3410 asection
*sreloc
= elf_section_data (p
->section
)->sreloc
;
3411 sreloc
->size
+= p
->count
* sizeof (Elf32_External_Rel
);
3417 /* Set the sizes of the dynamic sections. */
3420 elf32_arm_size_dynamic_sections (bfd
* output_bfd ATTRIBUTE_UNUSED
,
3421 struct bfd_link_info
* info
)
3428 struct elf32_arm_link_hash_table
*htab
;
3430 htab
= elf32_arm_hash_table (info
);
3431 dynobj
= elf_hash_table (info
)->dynobj
;
3432 BFD_ASSERT (dynobj
!= NULL
);
3434 if (elf_hash_table (info
)->dynamic_sections_created
)
3436 /* Set the contents of the .interp section to the interpreter. */
3437 if (info
->executable
)
3439 s
= bfd_get_section_by_name (dynobj
, ".interp");
3440 BFD_ASSERT (s
!= NULL
);
3441 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
3442 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
3446 /* Set up .got offsets for local syms, and space for local dynamic
3448 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
3450 bfd_signed_vma
*local_got
;
3451 bfd_signed_vma
*end_local_got
;
3452 char *local_tls_type
;
3453 bfd_size_type locsymcount
;
3454 Elf_Internal_Shdr
*symtab_hdr
;
3457 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
3460 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
3462 struct elf32_arm_relocs_copied
*p
;
3464 for (p
= *((struct elf32_arm_relocs_copied
**)
3465 &elf_section_data (s
)->local_dynrel
);
3469 if (!bfd_is_abs_section (p
->section
)
3470 && bfd_is_abs_section (p
->section
->output_section
))
3472 /* Input section has been discarded, either because
3473 it is a copy of a linkonce section or due to
3474 linker script /DISCARD/, so we'll be discarding
3477 else if (p
->count
!= 0)
3479 srel
= elf_section_data (p
->section
)->sreloc
;
3480 srel
->size
+= p
->count
* sizeof (Elf32_External_Rel
);
3481 if ((p
->section
->output_section
->flags
& SEC_READONLY
) != 0)
3482 info
->flags
|= DF_TEXTREL
;
3487 local_got
= elf_local_got_refcounts (ibfd
);
3491 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
3492 locsymcount
= symtab_hdr
->sh_info
;
3493 end_local_got
= local_got
+ locsymcount
;
3495 srel
= htab
->srelgot
;
3496 for (; local_got
< end_local_got
; ++local_got
, ++local_tls_type
)
3500 *local_got
= s
->size
;
3503 srel
->size
+= sizeof (Elf32_External_Rel
);
3506 *local_got
= (bfd_vma
) -1;
3510 /* Allocate global sym .plt and .got entries, and space for global
3511 sym dynamic relocs. */
3512 elf_link_hash_traverse (& htab
->root
, allocate_dynrelocs
, info
);
3514 /* The check_relocs and adjust_dynamic_symbol entry points have
3515 determined the sizes of the various dynamic sections. Allocate
3519 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
3524 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
3527 /* It's OK to base decisions on the section name, because none
3528 of the dynobj section names depend upon the input files. */
3529 name
= bfd_get_section_name (dynobj
, s
);
3533 if (strcmp (name
, ".plt") == 0)
3537 /* Strip this section if we don't need it; see the
3543 /* Remember whether there is a PLT. */
3547 else if (strncmp (name
, ".rel", 4) == 0)
3551 /* If we don't need this section, strip it from the
3552 output file. This is mostly to handle .rel.bss and
3553 .rel.plt. We must create both sections in
3554 create_dynamic_sections, because they must be created
3555 before the linker maps input sections to output
3556 sections. The linker does that before
3557 adjust_dynamic_symbol is called, and it is that
3558 function which decides whether anything needs to go
3559 into these sections. */
3564 /* Remember whether there are any reloc sections other
3566 if (strcmp (name
, ".rel.plt") != 0)
3569 /* We use the reloc_count field as a counter if we need
3570 to copy relocs into the output file. */
3574 else if (strncmp (name
, ".got", 4) != 0)
3576 /* It's not one of our sections, so don't allocate space. */
3582 _bfd_strip_section_from_output (info
, s
);
3586 /* Allocate memory for the section contents. */
3587 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
3588 if (s
->contents
== NULL
&& s
->size
!= 0)
3592 if (elf_hash_table (info
)->dynamic_sections_created
)
3594 /* Add some entries to the .dynamic section. We fill in the
3595 values later, in elf32_arm_finish_dynamic_sections, but we
3596 must add the entries now so that we get the correct size for
3597 the .dynamic section. The DT_DEBUG entry is filled in by the
3598 dynamic linker and used by the debugger. */
3599 #define add_dynamic_entry(TAG, VAL) \
3600 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
3604 if (!add_dynamic_entry (DT_DEBUG
, 0))
3610 if ( !add_dynamic_entry (DT_PLTGOT
, 0)
3611 || !add_dynamic_entry (DT_PLTRELSZ
, 0)
3612 || !add_dynamic_entry (DT_PLTREL
, DT_REL
)
3613 || !add_dynamic_entry (DT_JMPREL
, 0))
3619 if ( !add_dynamic_entry (DT_REL
, 0)
3620 || !add_dynamic_entry (DT_RELSZ
, 0)
3621 || !add_dynamic_entry (DT_RELENT
, sizeof (Elf32_External_Rel
)))
3625 if ((info
->flags
& DF_TEXTREL
) != 0)
3627 if (!add_dynamic_entry (DT_TEXTREL
, 0))
3629 info
->flags
|= DF_TEXTREL
;
3632 #undef add_synamic_entry
3637 /* Finish up dynamic symbol handling. We set the contents of various
3638 dynamic sections here. */
3641 elf32_arm_finish_dynamic_symbol (bfd
* output_bfd
, struct bfd_link_info
* info
,
3642 struct elf_link_hash_entry
* h
, Elf_Internal_Sym
* sym
)
3646 dynobj
= elf_hash_table (info
)->dynobj
;
3648 if (h
->plt
.offset
!= (bfd_vma
) -1)
3655 Elf_Internal_Rela rel
;
3657 bfd_vma got_displacement
;
3659 /* This symbol has an entry in the procedure linkage table. Set
3662 BFD_ASSERT (h
->dynindx
!= -1);
3664 splt
= bfd_get_section_by_name (dynobj
, ".plt");
3665 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
3666 srel
= bfd_get_section_by_name (dynobj
, ".rel.plt");
3667 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srel
!= NULL
);
3669 /* Get the index in the procedure linkage table which
3670 corresponds to this symbol. This is the index of this symbol
3671 in all the symbols for which we are making plt entries. The
3672 first entry in the procedure linkage table is reserved. */
3673 plt_index
= (h
->plt
.offset
- PLT_HEADER_SIZE
) / PLT_ENTRY_SIZE
;
3675 /* Get the offset into the .got table of the entry that
3676 corresponds to this function. Each .got entry is 4 bytes.
3677 The first three are reserved. */
3678 got_offset
= (plt_index
+ 3) * 4;
3680 /* Calculate the displacement between the PLT slot and the
3681 entry in the GOT. */
3682 got_displacement
= (sgot
->output_section
->vma
3683 + sgot
->output_offset
3685 - splt
->output_section
->vma
3686 - splt
->output_offset
3690 BFD_ASSERT ((got_displacement
& 0xf0000000) == 0);
3692 /* Fill in the entry in the procedure linkage table. */
3693 bfd_put_32 (output_bfd
, elf32_arm_plt_entry
[0] | ((got_displacement
& 0x0ff00000) >> 20),
3694 splt
->contents
+ h
->plt
.offset
+ 0);
3695 bfd_put_32 (output_bfd
, elf32_arm_plt_entry
[1] | ((got_displacement
& 0x000ff000) >> 12),
3696 splt
->contents
+ h
->plt
.offset
+ 4);
3697 bfd_put_32 (output_bfd
, elf32_arm_plt_entry
[2] | (got_displacement
& 0x00000fff),
3698 splt
->contents
+ h
->plt
.offset
+ 8);
3699 #ifdef FOUR_WORD_PLT
3700 bfd_put_32 (output_bfd
, elf32_arm_plt_entry
[3],
3701 splt
->contents
+ h
->plt
.offset
+ 12);
3704 /* Fill in the entry in the global offset table. */
3705 bfd_put_32 (output_bfd
,
3706 (splt
->output_section
->vma
3707 + splt
->output_offset
),
3708 sgot
->contents
+ got_offset
);
3710 /* Fill in the entry in the .rel.plt section. */
3711 rel
.r_offset
= (sgot
->output_section
->vma
3712 + sgot
->output_offset
3714 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_ARM_JUMP_SLOT
);
3715 loc
= srel
->contents
+ plt_index
* sizeof (Elf32_External_Rel
);
3716 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
3718 if ((h
->elf_link_hash_flags
& ELF_LINK_HASH_DEF_REGULAR
) == 0)
3720 /* Mark the symbol as undefined, rather than as defined in
3721 the .plt section. Leave the value alone. */
3722 sym
->st_shndx
= SHN_UNDEF
;
3723 /* If the symbol is weak, we do need to clear the value.
3724 Otherwise, the PLT entry would provide a definition for
3725 the symbol even if the symbol wasn't defined anywhere,
3726 and so the symbol would never be NULL. */
3727 if ((h
->elf_link_hash_flags
& ELF_LINK_HASH_REF_REGULAR_NONWEAK
)
3733 if (h
->got
.offset
!= (bfd_vma
) -1)
3737 Elf_Internal_Rela rel
;
3740 /* This symbol has an entry in the global offset table. Set it
3742 sgot
= bfd_get_section_by_name (dynobj
, ".got");
3743 srel
= bfd_get_section_by_name (dynobj
, ".rel.got");
3744 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
3746 rel
.r_offset
= (sgot
->output_section
->vma
3747 + sgot
->output_offset
3748 + (h
->got
.offset
&~ (bfd_vma
) 1));
3750 /* If this is a static link, or it is a -Bsymbolic link and the
3751 symbol is defined locally or was forced to be local because
3752 of a version file, we just want to emit a RELATIVE reloc.
3753 The entry in the global offset table will already have been
3754 initialized in the relocate_section function. */
3756 && SYMBOL_REFERENCES_LOCAL (info
, h
))
3758 BFD_ASSERT((h
->got
.offset
& 1) != 0);
3759 rel
.r_info
= ELF32_R_INFO (0, R_ARM_RELATIVE
);
3763 BFD_ASSERT((h
->got
.offset
& 1) == 0);
3764 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
3765 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_ARM_GLOB_DAT
);
3768 loc
= srel
->contents
+ srel
->reloc_count
++ * sizeof (Elf32_External_Rel
);
3769 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
3772 if ((h
->elf_link_hash_flags
& ELF_LINK_HASH_NEEDS_COPY
) != 0)
3775 Elf_Internal_Rela rel
;
3778 /* This symbol needs a copy reloc. Set it up. */
3779 BFD_ASSERT (h
->dynindx
!= -1
3780 && (h
->root
.type
== bfd_link_hash_defined
3781 || h
->root
.type
== bfd_link_hash_defweak
));
3783 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
3785 BFD_ASSERT (s
!= NULL
);
3787 rel
.r_offset
= (h
->root
.u
.def
.value
3788 + h
->root
.u
.def
.section
->output_section
->vma
3789 + h
->root
.u
.def
.section
->output_offset
);
3790 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_ARM_COPY
);
3791 loc
= s
->contents
+ s
->reloc_count
++ * sizeof (Elf32_External_Rel
);
3792 bfd_elf32_swap_reloc_out (output_bfd
, &rel
, loc
);
3795 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
3796 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
3797 || strcmp (h
->root
.root
.string
, "_GLOBAL_OFFSET_TABLE_") == 0)
3798 sym
->st_shndx
= SHN_ABS
;
3803 /* Finish up the dynamic sections. */
3806 elf32_arm_finish_dynamic_sections (bfd
* output_bfd
, struct bfd_link_info
* info
)
3812 dynobj
= elf_hash_table (info
)->dynobj
;
3814 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
3815 BFD_ASSERT (sgot
!= NULL
);
3816 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
3818 if (elf_hash_table (info
)->dynamic_sections_created
)
3821 Elf32_External_Dyn
*dyncon
, *dynconend
;
3823 splt
= bfd_get_section_by_name (dynobj
, ".plt");
3824 BFD_ASSERT (splt
!= NULL
&& sdyn
!= NULL
);
3826 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
3827 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
3829 for (; dyncon
< dynconend
; dyncon
++)
3831 Elf_Internal_Dyn dyn
;
3835 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
3848 s
= bfd_get_section_by_name (output_bfd
, name
);
3849 BFD_ASSERT (s
!= NULL
);
3850 dyn
.d_un
.d_ptr
= s
->vma
;
3851 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
3855 s
= bfd_get_section_by_name (output_bfd
, ".rel.plt");
3856 BFD_ASSERT (s
!= NULL
);
3857 dyn
.d_un
.d_val
= s
->size
;
3858 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
3862 /* My reading of the SVR4 ABI indicates that the
3863 procedure linkage table relocs (DT_JMPREL) should be
3864 included in the overall relocs (DT_REL). This is
3865 what Solaris does. However, UnixWare can not handle
3866 that case. Therefore, we override the DT_RELSZ entry
3867 here to make it not include the JMPREL relocs. Since
3868 the linker script arranges for .rel.plt to follow all
3869 other relocation sections, we don't have to worry
3870 about changing the DT_REL entry. */
3871 s
= bfd_get_section_by_name (output_bfd
, ".rel.plt");
3873 dyn
.d_un
.d_val
-= s
->size
;
3874 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
3877 /* Set the bottom bit of DT_INIT/FINI if the
3878 corresponding function is Thumb. */
3880 name
= info
->init_function
;
3883 name
= info
->fini_function
;
3885 /* If it wasn't set by elf_bfd_final_link
3886 then there is nothing to adjust. */
3887 if (dyn
.d_un
.d_val
!= 0)
3889 struct elf_link_hash_entry
* eh
;
3891 eh
= elf_link_hash_lookup (elf_hash_table (info
), name
,
3892 FALSE
, FALSE
, TRUE
);
3893 if (eh
!= (struct elf_link_hash_entry
*) NULL
3894 && ELF_ST_TYPE (eh
->type
) == STT_ARM_TFUNC
)
3896 dyn
.d_un
.d_val
|= 1;
3897 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
3904 /* Fill in the first entry in the procedure linkage table. */
3907 bfd_vma got_displacement
;
3909 /* Calculate the displacement between the PLT slot and &GOT[0]. */
3910 got_displacement
= (sgot
->output_section
->vma
3911 + sgot
->output_offset
3912 - splt
->output_section
->vma
3913 - splt
->output_offset
3916 bfd_put_32 (output_bfd
, elf32_arm_plt0_entry
[0], splt
->contents
+ 0);
3917 bfd_put_32 (output_bfd
, elf32_arm_plt0_entry
[1], splt
->contents
+ 4);
3918 bfd_put_32 (output_bfd
, elf32_arm_plt0_entry
[2], splt
->contents
+ 8);
3919 bfd_put_32 (output_bfd
, elf32_arm_plt0_entry
[3], splt
->contents
+ 12);
3920 #ifdef FOUR_WORD_PLT
3921 /* The displacement value goes in the otherwise-unused last word of
3922 the second entry. */
3923 bfd_put_32 (output_bfd
, got_displacement
, splt
->contents
+ 28);
3925 bfd_put_32 (output_bfd
, got_displacement
, splt
->contents
+ 16);
3929 /* UnixWare sets the entsize of .plt to 4, although that doesn't
3930 really seem like the right value. */
3931 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
= 4;
3934 /* Fill in the first three entries in the global offset table. */
3938 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
3940 bfd_put_32 (output_bfd
,
3941 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
3943 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 4);
3944 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 8);
3947 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
3953 elf32_arm_post_process_headers (bfd
* abfd
, struct bfd_link_info
* link_info ATTRIBUTE_UNUSED
)
3955 Elf_Internal_Ehdr
* i_ehdrp
; /* ELF file header, internal form. */
3956 struct elf32_arm_link_hash_table
*globals
;
3958 i_ehdrp
= elf_elfheader (abfd
);
3960 i_ehdrp
->e_ident
[EI_OSABI
] = ARM_ELF_OS_ABI_VERSION
;
3961 i_ehdrp
->e_ident
[EI_ABIVERSION
] = ARM_ELF_ABI_VERSION
;
3965 globals
= elf32_arm_hash_table (link_info
);
3966 if (globals
->byteswap_code
)
3967 i_ehdrp
->e_flags
|= EF_ARM_BE8
;
3971 static enum elf_reloc_type_class
3972 elf32_arm_reloc_type_class (const Elf_Internal_Rela
*rela
)
3974 switch ((int) ELF32_R_TYPE (rela
->r_info
))
3976 case R_ARM_RELATIVE
:
3977 return reloc_class_relative
;
3978 case R_ARM_JUMP_SLOT
:
3979 return reloc_class_plt
;
3981 return reloc_class_copy
;
3983 return reloc_class_normal
;
3987 static bfd_boolean
elf32_arm_section_flags (flagword
*, const Elf_Internal_Shdr
*);
3988 static void elf32_arm_final_write_processing (bfd
*, bfd_boolean
);
3990 /* Set the right machine number for an Arm ELF file. */
3993 elf32_arm_section_flags (flagword
*flags
, const Elf_Internal_Shdr
*hdr
)
3995 if (hdr
->sh_type
== SHT_NOTE
)
3996 *flags
|= SEC_LINK_ONCE
| SEC_LINK_DUPLICATES_SAME_CONTENTS
;
4002 elf32_arm_final_write_processing (bfd
*abfd
, bfd_boolean linker ATTRIBUTE_UNUSED
)
4004 bfd_arm_update_notes (abfd
, ARM_NOTE_SECTION
);
4008 /* Called for each symbol. Builds a section map based on mapping symbols.
4009 Does not alter any of the symbols. */
4012 elf32_arm_output_symbol_hook (struct bfd_link_info
*info
,
4014 Elf_Internal_Sym
*elfsym
,
4015 asection
*input_sec
,
4016 struct elf_link_hash_entry
*h ATTRIBUTE_UNUSED
)
4019 elf32_arm_section_map
*map
;
4020 struct elf32_arm_link_hash_table
*globals
;
4022 /* Only do this on final link. */
4023 if (info
->relocatable
)
4026 /* Only build a map if we need to byteswap code. */
4027 globals
= elf32_arm_hash_table (info
);
4028 if (!globals
->byteswap_code
)
4031 /* We only want mapping symbols. */
4032 if (! is_arm_mapping_symbol_name (name
))
4035 mapcount
= ++(elf32_arm_section_data (input_sec
)->mapcount
);
4036 map
= elf32_arm_section_data (input_sec
)->map
;
4037 /* TODO: This may be inefficient, but we probably don't usually have many
4038 mapping symbols per section. */
4039 map
= bfd_realloc (map
, mapcount
* sizeof (elf32_arm_section_map
));
4040 elf32_arm_section_data (input_sec
)->map
= map
;
4042 map
[mapcount
- 1].vma
= elfsym
->st_value
;
4043 map
[mapcount
- 1].type
= name
[1];
4048 /* Allocate target specific section data. */
4051 elf32_arm_new_section_hook (bfd
*abfd
, asection
*sec
)
4053 struct _arm_elf_section_data
*sdata
;
4054 bfd_size_type amt
= sizeof (*sdata
);
4056 sdata
= bfd_zalloc (abfd
, amt
);
4059 sec
->used_by_bfd
= sdata
;
4061 return _bfd_elf_new_section_hook (abfd
, sec
);
4065 /* Used to order a list of mapping symbols by address. */
4068 elf32_arm_compare_mapping (const void * a
, const void * b
)
4070 return ((const elf32_arm_section_map
*) a
)->vma
4071 > ((const elf32_arm_section_map
*) b
)->vma
;
4075 /* Do code byteswapping. Return FALSE afterwards so that the section is
4076 written out as normal. */
4079 elf32_arm_write_section (bfd
*output_bfd ATTRIBUTE_UNUSED
, asection
*sec
,
4083 elf32_arm_section_map
*map
;
4090 mapcount
= elf32_arm_section_data (sec
)->mapcount
;
4091 map
= elf32_arm_section_data (sec
)->map
;
4096 qsort (map
, mapcount
, sizeof (elf32_arm_section_map
),
4097 elf32_arm_compare_mapping
);
4099 offset
= sec
->output_section
->vma
+ sec
->output_offset
;
4100 ptr
= map
[0].vma
- offset
;
4101 for (i
= 0; i
< mapcount
; i
++)
4103 if (i
== mapcount
- 1)
4106 end
= map
[i
+ 1].vma
- offset
;
4108 switch (map
[i
].type
)
4111 /* Byte swap code words. */
4112 while (ptr
+ 3 < end
)
4114 tmp
= contents
[ptr
];
4115 contents
[ptr
] = contents
[ptr
+ 3];
4116 contents
[ptr
+ 3] = tmp
;
4117 tmp
= contents
[ptr
+ 1];
4118 contents
[ptr
+ 1] = contents
[ptr
+ 2];
4119 contents
[ptr
+ 2] = tmp
;
4125 /* Byte swap code halfwords. */
4126 while (ptr
+ 1 < end
)
4128 tmp
= contents
[ptr
];
4129 contents
[ptr
] = contents
[ptr
+ 1];
4130 contents
[ptr
+ 1] = tmp
;
4136 /* Leave data alone. */
4145 #define ELF_ARCH bfd_arch_arm
4146 #define ELF_MACHINE_CODE EM_ARM
4147 #ifdef __QNXTARGET__
4148 #define ELF_MAXPAGESIZE 0x1000
4150 #define ELF_MAXPAGESIZE 0x8000
4153 #define bfd_elf32_bfd_copy_private_bfd_data elf32_arm_copy_private_bfd_data
4154 #define bfd_elf32_bfd_merge_private_bfd_data elf32_arm_merge_private_bfd_data
4155 #define bfd_elf32_bfd_set_private_flags elf32_arm_set_private_flags
4156 #define bfd_elf32_bfd_print_private_bfd_data elf32_arm_print_private_bfd_data
4157 #define bfd_elf32_bfd_link_hash_table_create elf32_arm_link_hash_table_create
4158 #define bfd_elf32_bfd_reloc_type_lookup elf32_arm_reloc_type_lookup
4159 #define bfd_elf32_find_nearest_line elf32_arm_find_nearest_line
4160 #define bfd_elf32_new_section_hook elf32_arm_new_section_hook
4162 #define elf_backend_get_symbol_type elf32_arm_get_symbol_type
4163 #define elf_backend_gc_mark_hook elf32_arm_gc_mark_hook
4164 #define elf_backend_gc_sweep_hook elf32_arm_gc_sweep_hook
4165 #define elf_backend_check_relocs elf32_arm_check_relocs
4166 #define elf_backend_relocate_section elf32_arm_relocate_section
4167 #define elf_backend_write_section elf32_arm_write_section
4168 #define elf_backend_adjust_dynamic_symbol elf32_arm_adjust_dynamic_symbol
4169 #define elf_backend_create_dynamic_sections elf32_arm_create_dynamic_sections
4170 #define elf_backend_finish_dynamic_symbol elf32_arm_finish_dynamic_symbol
4171 #define elf_backend_finish_dynamic_sections elf32_arm_finish_dynamic_sections
4172 #define elf_backend_link_output_symbol_hook elf32_arm_output_symbol_hook
4173 #define elf_backend_size_dynamic_sections elf32_arm_size_dynamic_sections
4174 #define elf_backend_post_process_headers elf32_arm_post_process_headers
4175 #define elf_backend_reloc_type_class elf32_arm_reloc_type_class
4176 #define elf_backend_object_p elf32_arm_object_p
4177 #define elf_backend_section_flags elf32_arm_section_flags
4178 #define elf_backend_final_write_processing elf32_arm_final_write_processing
4179 #define elf_backend_copy_indirect_symbol elf32_arm_copy_indirect_symbol
4181 #define elf_backend_can_refcount 1
4182 #define elf_backend_can_gc_sections 1
4183 #define elf_backend_plt_readonly 1
4184 #define elf_backend_want_got_plt 1
4185 #define elf_backend_want_plt_sym 0
4187 #define elf_backend_rela_normal 1
4190 #define elf_backend_got_header_size 12
4192 #include "elf32-target.h"