1 /* D10V-specific support for 32-bit ELF
2 Copyright 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004
3 Free Software Foundation, Inc.
4 Contributed by Martin Hunt (hunt@cygnus.com).
6 This file is part of BFD, the Binary File Descriptor library.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
28 static reloc_howto_type
*bfd_elf32_bfd_reloc_type_lookup
29 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
30 static void d10v_info_to_howto_rel
31 PARAMS ((bfd
*, arelent
*, Elf_Internal_Rela
*));
32 static asection
* elf32_d10v_gc_mark_hook
33 PARAMS ((asection
*, struct bfd_link_info
*, Elf_Internal_Rela
*,
34 struct elf_link_hash_entry
*, Elf_Internal_Sym
*));
35 static bfd_boolean elf32_d10v_gc_sweep_hook
36 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
37 const Elf_Internal_Rela
*));
38 static bfd_boolean elf32_d10v_check_relocs
39 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
40 const Elf_Internal_Rela
*));
41 static bfd_vma extract_rel_addend
42 PARAMS ((bfd
*, bfd_byte
*, reloc_howto_type
*));
43 static void insert_rel_addend
44 PARAMS ((bfd
*, bfd_byte
*, reloc_howto_type
*, bfd_vma
));
45 static bfd_boolean elf32_d10v_relocate_section
46 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*,
47 bfd_byte
*, Elf_Internal_Rela
*, Elf_Internal_Sym
*,
50 /* Use REL instead of RELA to save space. */
53 static reloc_howto_type elf_d10v_howto_table
[] =
55 /* This reloc does nothing. */
56 HOWTO (R_D10V_NONE
, /* type */
58 2, /* size (0 = byte, 1 = short, 2 = long) */
60 FALSE
, /* pc_relative */
62 complain_overflow_dont
, /* complain_on_overflow */
63 bfd_elf_generic_reloc
, /* special_function */
64 "R_D10V_NONE", /* name */
65 FALSE
, /* partial_inplace */
68 FALSE
), /* pcrel_offset */
70 /* An PC Relative 10-bit relocation, shifted by 2 */
72 HOWTO (R_D10V_10_PCREL_R
, /* type */
74 2, /* size (0 = byte, 1 = short, 2 = long) */
76 TRUE
, /* pc_relative */
78 complain_overflow_bitfield
, /* complain_on_overflow */
79 bfd_elf_generic_reloc
, /* special_function */
80 "R_D10V_10_PCREL_R", /* name */
81 FALSE
, /* partial_inplace */
84 TRUE
), /* pcrel_offset */
86 /* An PC Relative 10-bit relocation, shifted by 2 */
88 HOWTO (R_D10V_10_PCREL_L
, /* type */
90 2, /* size (0 = byte, 1 = short, 2 = long) */
92 TRUE
, /* pc_relative */
94 complain_overflow_bitfield
, /* complain_on_overflow */
95 bfd_elf_generic_reloc
, /* special_function */
96 "R_D10V_10_PCREL_L", /* name */
97 FALSE
, /* partial_inplace */
98 0x07f8000, /* src_mask */
99 0x07f8000, /* dst_mask */
100 TRUE
), /* pcrel_offset */
102 /* A 16 bit absolute relocation */
103 HOWTO (R_D10V_16
, /* type */
105 1, /* size (0 = byte, 1 = short, 2 = long) */
107 FALSE
, /* pc_relative */
109 complain_overflow_dont
, /* complain_on_overflow */
110 bfd_elf_generic_reloc
, /* special_function */
111 "R_D10V_16", /* name */
112 FALSE
, /* partial_inplace */
113 0xffff, /* src_mask */
114 0xffff, /* dst_mask */
115 FALSE
), /* pcrel_offset */
117 /* An 18 bit absolute relocation, right shifted 2 */
118 HOWTO (R_D10V_18
, /* type */
120 1, /* size (0 = byte, 1 = short, 2 = long) */
122 FALSE
, /* pc_relative */
124 complain_overflow_dont
, /* complain_on_overflow */
125 bfd_elf_generic_reloc
, /* special_function */
126 "R_D10V_18", /* name */
127 FALSE
, /* partial_inplace */
128 0xffff, /* src_mask */
129 0xffff, /* dst_mask */
130 FALSE
), /* pcrel_offset */
132 /* A relative 18 bit relocation, right shifted by 2 */
133 HOWTO (R_D10V_18_PCREL
, /* type */
135 2, /* size (0 = byte, 1 = short, 2 = long) */
137 TRUE
, /* pc_relative */
139 complain_overflow_bitfield
, /* complain_on_overflow */
140 bfd_elf_generic_reloc
, /* special_function */
141 "R_D10V_18_PCREL", /* name */
142 FALSE
, /* partial_inplace */
143 0xffff, /* src_mask */
144 0xffff, /* dst_mask */
145 TRUE
), /* pcrel_offset */
147 /* A 32 bit absolute relocation */
148 HOWTO (R_D10V_32
, /* type */
150 2, /* size (0 = byte, 1 = short, 2 = long) */
152 FALSE
, /* pc_relative */
154 complain_overflow_dont
, /* complain_on_overflow */
155 bfd_elf_generic_reloc
, /* special_function */
156 "R_D10V_32", /* name */
157 FALSE
, /* partial_inplace */
158 0xffffffff, /* src_mask */
159 0xffffffff, /* dst_mask */
160 FALSE
), /* pcrel_offset */
162 /* GNU extension to record C++ vtable hierarchy */
163 HOWTO (R_D10V_GNU_VTINHERIT
, /* type */
165 2, /* size (0 = byte, 1 = short, 2 = long) */
167 FALSE
, /* pc_relative */
169 complain_overflow_dont
, /* complain_on_overflow */
170 NULL
, /* special_function */
171 "R_D10V_GNU_VTINHERIT", /* name */
172 FALSE
, /* partial_inplace */
175 FALSE
), /* pcrel_offset */
177 /* GNU extension to record C++ vtable member usage */
178 HOWTO (R_D10V_GNU_VTENTRY
, /* type */
180 2, /* size (0 = byte, 1 = short, 2 = long) */
182 FALSE
, /* pc_relative */
184 complain_overflow_dont
, /* complain_on_overflow */
185 _bfd_elf_rel_vtable_reloc_fn
, /* special_function */
186 "R_D10V_GNU_VTENTRY", /* name */
187 FALSE
, /* partial_inplace */
190 FALSE
), /* pcrel_offset */
193 /* Map BFD reloc types to D10V ELF reloc types. */
195 struct d10v_reloc_map
197 bfd_reloc_code_real_type bfd_reloc_val
;
198 unsigned char elf_reloc_val
;
201 static const struct d10v_reloc_map d10v_reloc_map
[] =
203 { BFD_RELOC_NONE
, R_D10V_NONE
, },
204 { BFD_RELOC_D10V_10_PCREL_R
, R_D10V_10_PCREL_R
},
205 { BFD_RELOC_D10V_10_PCREL_L
, R_D10V_10_PCREL_L
},
206 { BFD_RELOC_16
, R_D10V_16
},
207 { BFD_RELOC_D10V_18
, R_D10V_18
},
208 { BFD_RELOC_D10V_18_PCREL
, R_D10V_18_PCREL
},
209 { BFD_RELOC_32
, R_D10V_32
},
210 { BFD_RELOC_VTABLE_INHERIT
, R_D10V_GNU_VTINHERIT
},
211 { BFD_RELOC_VTABLE_ENTRY
, R_D10V_GNU_VTENTRY
},
214 static reloc_howto_type
*
215 bfd_elf32_bfd_reloc_type_lookup (abfd
, code
)
216 bfd
*abfd ATTRIBUTE_UNUSED
;
217 bfd_reloc_code_real_type code
;
222 i
< sizeof (d10v_reloc_map
) / sizeof (struct d10v_reloc_map
);
225 if (d10v_reloc_map
[i
].bfd_reloc_val
== code
)
226 return &elf_d10v_howto_table
[d10v_reloc_map
[i
].elf_reloc_val
];
232 /* Set the howto pointer for an D10V ELF reloc. */
235 d10v_info_to_howto_rel (abfd
, cache_ptr
, dst
)
236 bfd
*abfd ATTRIBUTE_UNUSED
;
238 Elf_Internal_Rela
*dst
;
242 r_type
= ELF32_R_TYPE (dst
->r_info
);
243 BFD_ASSERT (r_type
< (unsigned int) R_D10V_max
);
244 cache_ptr
->howto
= &elf_d10v_howto_table
[r_type
];
248 elf32_d10v_gc_mark_hook (sec
, info
, rel
, h
, sym
)
250 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
251 Elf_Internal_Rela
*rel
;
252 struct elf_link_hash_entry
*h
;
253 Elf_Internal_Sym
*sym
;
257 switch (ELF32_R_TYPE (rel
->r_info
))
259 case R_D10V_GNU_VTINHERIT
:
260 case R_D10V_GNU_VTENTRY
:
264 switch (h
->root
.type
)
266 case bfd_link_hash_defined
:
267 case bfd_link_hash_defweak
:
268 return h
->root
.u
.def
.section
;
270 case bfd_link_hash_common
:
271 return h
->root
.u
.c
.p
->section
;
279 return bfd_section_from_elf_index (sec
->owner
, sym
->st_shndx
);
285 elf32_d10v_gc_sweep_hook (abfd
, info
, sec
, relocs
)
286 bfd
*abfd ATTRIBUTE_UNUSED
;
287 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
288 asection
*sec ATTRIBUTE_UNUSED
;
289 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
;
291 /* we don't use got and plt entries for d10v */
295 /* Look through the relocs for a section during the first phase.
296 Since we don't do .gots or .plts, we just need to consider the
297 virtual table relocs for gc. */
300 elf32_d10v_check_relocs (abfd
, info
, sec
, relocs
)
302 struct bfd_link_info
*info
;
304 const Elf_Internal_Rela
*relocs
;
306 Elf_Internal_Shdr
*symtab_hdr
;
307 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
308 const Elf_Internal_Rela
*rel
;
309 const Elf_Internal_Rela
*rel_end
;
311 if (info
->relocatable
)
314 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
315 sym_hashes
= elf_sym_hashes (abfd
);
316 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
317 if (!elf_bad_symtab (abfd
))
318 sym_hashes_end
-= symtab_hdr
->sh_info
;
320 rel_end
= relocs
+ sec
->reloc_count
;
321 for (rel
= relocs
; rel
< rel_end
; rel
++)
323 struct elf_link_hash_entry
*h
;
324 unsigned long r_symndx
;
326 r_symndx
= ELF32_R_SYM (rel
->r_info
);
327 if (r_symndx
< symtab_hdr
->sh_info
)
331 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
332 while (h
->root
.type
== bfd_link_hash_indirect
333 || h
->root
.type
== bfd_link_hash_warning
)
334 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
337 switch (ELF32_R_TYPE (rel
->r_info
))
339 /* This relocation describes the C++ object vtable hierarchy.
340 Reconstruct it for later use during GC. */
341 case R_D10V_GNU_VTINHERIT
:
342 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
346 /* This relocation describes which C++ vtable entries are actually
347 used. Record for later use during GC. */
348 case R_D10V_GNU_VTENTRY
:
349 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_offset
))
359 extract_rel_addend (abfd
, where
, howto
)
362 reloc_howto_type
*howto
;
369 insn
= bfd_get_8 (abfd
, where
);
372 insn
= bfd_get_16 (abfd
, where
);
375 insn
= bfd_get_32 (abfd
, where
);
381 val
= (insn
& howto
->dst_mask
) >> howto
->bitpos
<< howto
->rightshift
;
382 /* We should really be testing for signed addends here, but we don't
383 have that info directly in the howto. */
384 if (howto
->pc_relative
)
387 sign
= howto
->dst_mask
& (~howto
->dst_mask
>> 1 | ~(-(bfd_vma
) 1 >> 1));
388 sign
= sign
>> howto
->bitpos
<< howto
->rightshift
;
389 val
= (val
^ sign
) - sign
;
395 insert_rel_addend (abfd
, where
, howto
, addend
)
398 reloc_howto_type
*howto
;
403 addend
= (addend
>> howto
->rightshift
<< howto
->bitpos
) & howto
->dst_mask
;
404 insn
= ~howto
->dst_mask
;
408 insn
&= bfd_get_8 (abfd
, where
);
410 bfd_put_8 (abfd
, insn
, where
);
413 insn
&= bfd_get_16 (abfd
, where
);
415 bfd_put_16 (abfd
, insn
, where
);
418 insn
&= bfd_get_32 (abfd
, where
);
420 bfd_put_32 (abfd
, insn
, where
);
427 /* Relocate a D10V ELF section. */
429 elf32_d10v_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
430 contents
, relocs
, local_syms
, local_sections
)
432 struct bfd_link_info
*info
;
434 asection
*input_section
;
436 Elf_Internal_Rela
*relocs
;
437 Elf_Internal_Sym
*local_syms
;
438 asection
**local_sections
;
440 Elf_Internal_Shdr
*symtab_hdr
;
441 struct elf_link_hash_entry
**sym_hashes
;
442 Elf_Internal_Rela
*rel
, *relend
;
445 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
446 sym_hashes
= elf_sym_hashes (input_bfd
);
449 relend
= relocs
+ input_section
->reloc_count
;
450 for (; rel
< relend
; rel
++)
453 reloc_howto_type
*howto
;
454 unsigned long r_symndx
;
455 Elf_Internal_Sym
*sym
;
457 struct elf_link_hash_entry
*h
;
459 bfd_reloc_status_type r
;
461 r_symndx
= ELF32_R_SYM (rel
->r_info
);
462 r_type
= ELF32_R_TYPE (rel
->r_info
);
464 if (r_type
== R_D10V_GNU_VTENTRY
465 || r_type
== R_D10V_GNU_VTINHERIT
)
468 howto
= elf_d10v_howto_table
+ r_type
;
470 if (info
->relocatable
)
475 /* This is a relocatable link. We don't have to change
476 anything, unless the reloc is against a section symbol,
477 in which case we have to adjust according to where the
478 section symbol winds up in the output section. */
479 if (r_symndx
>= symtab_hdr
->sh_info
)
482 sym
= local_syms
+ r_symndx
;
483 if (ELF_ST_TYPE (sym
->st_info
) != STT_SECTION
)
486 sec
= local_sections
[r_symndx
];
487 val
= sec
->output_offset
;
491 where
= contents
+ rel
->r_offset
;
492 val
+= extract_rel_addend (input_bfd
, where
, howto
);
493 insert_rel_addend (input_bfd
, where
, howto
, val
);
497 /* This is a final link. */
501 if (r_symndx
< symtab_hdr
->sh_info
)
503 sym
= local_syms
+ r_symndx
;
504 sec
= local_sections
[r_symndx
];
505 relocation
= (sec
->output_section
->vma
508 if ((sec
->flags
& SEC_MERGE
)
509 && ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
513 bfd_byte
*where
= contents
+ rel
->r_offset
;
515 addend
= extract_rel_addend (input_bfd
, where
, howto
);
517 addend
= _bfd_elf_rel_local_sym (output_bfd
, sym
, &msec
, addend
);
518 addend
-= relocation
;
519 addend
+= msec
->output_section
->vma
+ msec
->output_offset
;
520 insert_rel_addend (input_bfd
, where
, howto
, addend
);
525 bfd_boolean unresolved_reloc
, warned
;
527 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
528 r_symndx
, symtab_hdr
, sym_hashes
,
530 unresolved_reloc
, warned
);
534 name
= h
->root
.root
.string
;
537 name
= (bfd_elf_string_from_elf_section
538 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
539 if (name
== NULL
|| *name
== '\0')
540 name
= bfd_section_name (input_bfd
, sec
);
543 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
544 contents
, rel
->r_offset
,
545 relocation
, (bfd_vma
) 0);
547 if (r
!= bfd_reloc_ok
)
549 const char * msg
= (const char *) 0;
553 case bfd_reloc_overflow
:
554 if (!((*info
->callbacks
->reloc_overflow
)
555 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
556 (bfd_vma
) 0, input_bfd
, input_section
,
561 case bfd_reloc_undefined
:
562 if (!((*info
->callbacks
->undefined_symbol
)
563 (info
, name
, input_bfd
, input_section
,
564 rel
->r_offset
, TRUE
)))
568 case bfd_reloc_outofrange
:
569 msg
= _("internal error: out of range error");
572 case bfd_reloc_notsupported
:
573 msg
= _("internal error: unsupported relocation error");
576 case bfd_reloc_dangerous
:
577 msg
= _("internal error: dangerous error");
581 msg
= _("internal error: unknown error");
585 if (!((*info
->callbacks
->warning
)
586 (info
, msg
, name
, input_bfd
, input_section
,
596 #define ELF_ARCH bfd_arch_d10v
597 #define ELF_MACHINE_CODE EM_D10V
598 #define ELF_MACHINE_ALT1 EM_CYGNUS_D10V
599 #define ELF_MAXPAGESIZE 0x1000
601 #define TARGET_BIG_SYM bfd_elf32_d10v_vec
602 #define TARGET_BIG_NAME "elf32-d10v"
604 #define elf_info_to_howto 0
605 #define elf_info_to_howto_rel d10v_info_to_howto_rel
606 #define elf_backend_object_p 0
607 #define elf_backend_final_write_processing 0
608 #define elf_backend_gc_mark_hook elf32_d10v_gc_mark_hook
609 #define elf_backend_gc_sweep_hook elf32_d10v_gc_sweep_hook
610 #define elf_backend_check_relocs elf32_d10v_check_relocs
611 #define elf_backend_relocate_section elf32_d10v_relocate_section
612 #define elf_backend_can_gc_sections 1
614 #include "elf32-target.h"