1 /* Xstormy16-specific support for 32-bit ELF.
2 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2010, 2011, 2012
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 3 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., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
26 #include "elf/xstormy16.h"
27 #include "libiberty.h"
29 /* Handle the R_XSTORMY16_24 reloc, which has an odd bit arrangement. */
31 static bfd_reloc_status_type
32 xstormy16_elf_24_reloc (bfd *abfd,
36 asection *input_section,
38 char **error_message ATTRIBUTE_UNUSED)
40 bfd_vma relocation, x;
42 if (output_bfd != NULL)
44 reloc_entry->address += input_section->output_offset;
48 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
49 return bfd_reloc_outofrange;
51 if (bfd_is_com_section (symbol->section))
54 relocation = symbol->value;
56 relocation += symbol->section->output_section->vma;
57 relocation += symbol->section->output_offset;
58 relocation += reloc_entry->addend;
60 x = bfd_get_32 (abfd, (bfd_byte *) data + reloc_entry->address);
62 x |= relocation & 0xff;
63 x |= (relocation << 8) & 0xffff0000;
64 bfd_put_32 (abfd, x, (bfd_byte *) data + reloc_entry->address);
66 if (relocation & ~ (bfd_vma) 0xffffff)
67 return bfd_reloc_overflow;
72 static reloc_howto_type xstormy16_elf_howto_table [] =
74 /* This reloc does nothing. */
75 HOWTO (R_XSTORMY16_NONE, /* type */
77 2, /* size (0 = byte, 1 = short, 2 = long) */
79 FALSE, /* pc_relative */
81 complain_overflow_bitfield, /* complain_on_overflow */
82 bfd_elf_generic_reloc, /* special_function */
83 "R_XSTORMY16_NONE", /* name */
84 FALSE, /* partial_inplace */
87 FALSE), /* pcrel_offset */
89 /* A 32 bit absolute relocation. */
90 HOWTO (R_XSTORMY16_32, /* type */
92 2, /* size (0 = byte, 1 = short, 2 = long) */
94 FALSE, /* pc_relative */
96 complain_overflow_dont, /* complain_on_overflow */
97 bfd_elf_generic_reloc, /* special_function */
98 "R_XSTORMY16_32", /* name */
99 FALSE, /* partial_inplace */
101 0xffffffff, /* dst_mask */
102 FALSE), /* pcrel_offset */
104 /* A 16 bit absolute relocation. */
105 HOWTO (R_XSTORMY16_16, /* type */
107 1, /* size (0 = byte, 1 = short, 2 = long) */
109 FALSE, /* pc_relative */
111 complain_overflow_bitfield, /* complain_on_overflow */
112 bfd_elf_generic_reloc, /* special_function */
113 "R_XSTORMY16_16", /* name */
114 FALSE, /* partial_inplace */
116 0xffff, /* dst_mask */
117 FALSE), /* pcrel_offset */
119 /* An 8 bit absolute relocation. */
120 HOWTO (R_XSTORMY16_8, /* type */
122 0, /* size (0 = byte, 1 = short, 2 = long) */
124 FALSE, /* pc_relative */
126 complain_overflow_unsigned, /* complain_on_overflow */
127 bfd_elf_generic_reloc, /* special_function */
128 "R_XSTORMY16_8", /* name */
129 FALSE, /* partial_inplace */
132 FALSE), /* pcrel_offset */
134 /* A 32 bit pc-relative relocation. */
135 HOWTO (R_XSTORMY16_PC32, /* type */
137 2, /* size (0 = byte, 1 = short, 2 = long) */
139 TRUE, /* pc_relative */
141 complain_overflow_dont, /* complain_on_overflow */
142 bfd_elf_generic_reloc, /* special_function */
143 "R_XSTORMY16_PC32", /* name */
144 FALSE, /* partial_inplace */
146 0xffffffff, /* dst_mask */
147 TRUE), /* pcrel_offset */
149 /* A 16 bit pc-relative relocation. */
150 HOWTO (R_XSTORMY16_PC16, /* type */
152 1, /* size (0 = byte, 1 = short, 2 = long) */
154 TRUE, /* pc_relative */
156 complain_overflow_signed, /* complain_on_overflow */
157 bfd_elf_generic_reloc, /* special_function */
158 "R_XSTORMY16_PC16", /* name */
159 FALSE, /* partial_inplace */
161 0xffffffff, /* dst_mask */
162 TRUE), /* pcrel_offset */
164 /* An 8 bit pc-relative relocation. */
165 HOWTO (R_XSTORMY16_PC8, /* type */
167 0, /* size (0 = byte, 1 = short, 2 = long) */
169 TRUE, /* pc_relative */
171 complain_overflow_signed, /* complain_on_overflow */
172 bfd_elf_generic_reloc, /* special_function */
173 "R_XSTORMY16_PC8", /* name */
174 FALSE, /* partial_inplace */
176 0xffffffff, /* dst_mask */
177 TRUE), /* pcrel_offset */
179 /* A 12-bit pc-relative relocation suitable for the branch instructions. */
180 HOWTO (R_XSTORMY16_REL_12, /* type */
182 1, /* size (0 = byte, 1 = short, 2 = long) */
184 TRUE, /* pc_relative */
186 complain_overflow_signed, /* complain_on_overflow */
187 bfd_elf_generic_reloc, /* special_function */
188 "R_XSTORMY16_REL_12", /* name */
189 FALSE, /* partial_inplace */
191 0x0ffe, /* dst_mask */
192 TRUE), /* pcrel_offset */
194 /* A 24-bit absolute relocation suitable for the jump instructions. */
195 HOWTO (R_XSTORMY16_24, /* type */
197 2, /* size (0 = byte, 1 = short, 2 = long) */
199 FALSE, /* pc_relative */
201 complain_overflow_unsigned, /* complain_on_overflow */
202 xstormy16_elf_24_reloc, /* special_function */
203 "R_XSTORMY16_24", /* name */
204 TRUE, /* partial_inplace */
206 0xffff00ff, /* dst_mask */
207 TRUE), /* pcrel_offset */
209 /* A 16 bit absolute relocation to a function pointer. */
210 HOWTO (R_XSTORMY16_FPTR16, /* type */
212 1, /* size (0 = byte, 1 = short, 2 = long) */
214 FALSE, /* pc_relative */
216 complain_overflow_bitfield, /* complain_on_overflow */
217 bfd_elf_generic_reloc, /* special_function */
218 "R_XSTORMY16_FPTR16", /* name */
219 FALSE, /* partial_inplace */
221 0xffffffff, /* dst_mask */
222 FALSE), /* pcrel_offset */
224 /* Low order 16 bit value of a high memory address. */
225 HOWTO (R_XSTORMY16_LO16, /* type */
227 1, /* size (0 = byte, 1 = short, 2 = long) */
229 FALSE, /* pc_relative */
231 complain_overflow_dont, /* complain_on_overflow */
232 bfd_elf_generic_reloc, /* special_function */
233 "R_XSTORMY16_LO16", /* name */
234 FALSE, /* partial_inplace */
236 0xffff, /* dst_mask */
237 FALSE), /* pcrel_offset */
239 /* High order 16 bit value of a high memory address. */
240 HOWTO (R_XSTORMY16_HI16, /* type */
242 1, /* size (0 = byte, 1 = short, 2 = long) */
244 FALSE, /* pc_relative */
246 complain_overflow_dont, /* complain_on_overflow */
247 bfd_elf_generic_reloc, /* special_function */
248 "R_XSTORMY16_HI16", /* name */
249 FALSE, /* partial_inplace */
251 0xffff, /* dst_mask */
252 FALSE), /* pcrel_offset */
254 /* A 12 bit absolute relocation. */
255 HOWTO (R_XSTORMY16_12, /* type */
257 1, /* size (0 = byte, 1 = short, 2 = long) */
259 FALSE, /* pc_relative */
261 complain_overflow_signed, /* complain_on_overflow */
262 bfd_elf_generic_reloc, /* special_function */
263 "R_XSTORMY16_12", /* name */
264 FALSE, /* partial_inplace */
265 0x0000, /* src_mask */
266 0x0fff, /* dst_mask */
267 FALSE), /* pcrel_offset */
270 static reloc_howto_type xstormy16_elf_howto_table2 [] =
272 /* GNU extension to record C++ vtable hierarchy */
273 HOWTO (R_XSTORMY16_GNU_VTINHERIT, /* type */
275 2, /* size (0 = byte, 1 = short, 2 = long) */
277 FALSE, /* pc_relative */
279 complain_overflow_dont, /* complain_on_overflow */
280 NULL, /* special_function */
281 "R_XSTORMY16_GNU_VTINHERIT", /* name */
282 FALSE, /* partial_inplace */
285 FALSE), /* pcrel_offset */
287 /* GNU extension to record C++ vtable member usage */
288 HOWTO (R_XSTORMY16_GNU_VTENTRY, /* type */
290 2, /* size (0 = byte, 1 = short, 2 = long) */
292 FALSE, /* pc_relative */
294 complain_overflow_dont, /* complain_on_overflow */
295 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
296 "R_XSTORMY16_GNU_VTENTRY", /* name */
297 FALSE, /* partial_inplace */
300 FALSE), /* pcrel_offset */
304 /* Map BFD reloc types to XSTORMY16 ELF reloc types. */
306 typedef struct xstormy16_reloc_map
308 bfd_reloc_code_real_type bfd_reloc_val;
309 unsigned int xstormy16_reloc_val;
310 reloc_howto_type * table;
313 static const reloc_map xstormy16_reloc_map [] =
315 { BFD_RELOC_NONE, R_XSTORMY16_NONE, xstormy16_elf_howto_table },
316 { BFD_RELOC_32, R_XSTORMY16_32, xstormy16_elf_howto_table },
317 { BFD_RELOC_16, R_XSTORMY16_16, xstormy16_elf_howto_table },
318 { BFD_RELOC_8, R_XSTORMY16_8, xstormy16_elf_howto_table },
319 { BFD_RELOC_32_PCREL, R_XSTORMY16_PC32, xstormy16_elf_howto_table },
320 { BFD_RELOC_16_PCREL, R_XSTORMY16_PC16, xstormy16_elf_howto_table },
321 { BFD_RELOC_8_PCREL, R_XSTORMY16_PC8, xstormy16_elf_howto_table },
322 { BFD_RELOC_XSTORMY16_REL_12, R_XSTORMY16_REL_12, xstormy16_elf_howto_table },
323 { BFD_RELOC_XSTORMY16_24, R_XSTORMY16_24, xstormy16_elf_howto_table },
324 { BFD_RELOC_XSTORMY16_FPTR16, R_XSTORMY16_FPTR16, xstormy16_elf_howto_table },
325 { BFD_RELOC_LO16, R_XSTORMY16_LO16, xstormy16_elf_howto_table },
326 { BFD_RELOC_HI16, R_XSTORMY16_HI16, xstormy16_elf_howto_table },
327 { BFD_RELOC_XSTORMY16_12, R_XSTORMY16_12, xstormy16_elf_howto_table },
328 { BFD_RELOC_VTABLE_INHERIT, R_XSTORMY16_GNU_VTINHERIT, xstormy16_elf_howto_table2 },
329 { BFD_RELOC_VTABLE_ENTRY, R_XSTORMY16_GNU_VTENTRY, xstormy16_elf_howto_table2 },
332 static reloc_howto_type *
333 xstormy16_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
334 bfd_reloc_code_real_type code)
338 for (i = ARRAY_SIZE (xstormy16_reloc_map); --i;)
340 const reloc_map * entry;
342 entry = xstormy16_reloc_map + i;
344 if (entry->bfd_reloc_val == code)
345 return entry->table + (entry->xstormy16_reloc_val
346 - entry->table[0].type);
352 static reloc_howto_type *
353 xstormy16_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
359 i < (sizeof (xstormy16_elf_howto_table)
360 / sizeof (xstormy16_elf_howto_table[0]));
362 if (xstormy16_elf_howto_table[i].name != NULL
363 && strcasecmp (xstormy16_elf_howto_table[i].name, r_name) == 0)
364 return &xstormy16_elf_howto_table[i];
367 i < (sizeof (xstormy16_elf_howto_table2)
368 / sizeof (xstormy16_elf_howto_table2[0]));
370 if (xstormy16_elf_howto_table2[i].name != NULL
371 && strcasecmp (xstormy16_elf_howto_table2[i].name, r_name) == 0)
372 return &xstormy16_elf_howto_table2[i];
377 /* Set the howto pointer for an XSTORMY16 ELF reloc. */
380 xstormy16_info_to_howto_rela (bfd * abfd ATTRIBUTE_UNUSED,
382 Elf_Internal_Rela * dst)
384 unsigned int r_type = ELF32_R_TYPE (dst->r_info);
386 if (r_type <= (unsigned int) R_XSTORMY16_12)
387 cache_ptr->howto = &xstormy16_elf_howto_table [r_type];
388 else if (r_type - R_XSTORMY16_GNU_VTINHERIT
389 <= (unsigned int) R_XSTORMY16_GNU_VTENTRY)
391 = &xstormy16_elf_howto_table2 [r_type - R_XSTORMY16_GNU_VTINHERIT];
396 /* We support 16-bit pointers to code above 64k by generating a thunk
397 below 64k containing a JMPF instruction to the final address. We
398 cannot, unfortunately, minimize the number of thunks unless the
399 -relax switch is given, as otherwise we have no idea where the
400 sections will fall in the address space. */
403 xstormy16_elf_check_relocs (bfd *abfd,
404 struct bfd_link_info *info,
406 const Elf_Internal_Rela *relocs)
408 const Elf_Internal_Rela *rel, *relend;
409 struct elf_link_hash_entry **sym_hashes;
410 Elf_Internal_Shdr *symtab_hdr;
411 bfd_vma *local_plt_offsets;
415 if (info->relocatable)
418 symtab_hdr = &elf_tdata(abfd)->symtab_hdr;
419 sym_hashes = elf_sym_hashes (abfd);
420 local_plt_offsets = elf_local_got_offsets (abfd);
422 dynobj = elf_hash_table(info)->dynobj;
424 relend = relocs + sec->reloc_count;
425 for (rel = relocs; rel < relend; ++rel)
427 unsigned long r_symndx;
428 struct elf_link_hash_entry *h;
431 r_symndx = ELF32_R_SYM (rel->r_info);
432 if (r_symndx < symtab_hdr->sh_info)
436 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
437 while (h->root.type == bfd_link_hash_indirect
438 || h->root.type == bfd_link_hash_warning)
439 h = (struct elf_link_hash_entry *) h->root.u.i.link;
442 switch (ELF32_R_TYPE (rel->r_info))
444 /* This relocation describes a 16-bit pointer to a function.
445 We may need to allocate a thunk in low memory; reserve memory
447 case R_XSTORMY16_FPTR16:
448 if (rel->r_addend != 0)
450 (*info->callbacks->warning)
451 (info, _("non-zero addend in @fptr reloc"), 0,
456 elf_hash_table (info)->dynobj = dynobj = abfd;
459 splt = bfd_get_linker_section (dynobj, ".plt");
462 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
463 | SEC_IN_MEMORY | SEC_LINKER_CREATED
464 | SEC_READONLY | SEC_CODE);
466 splt = bfd_make_section_anyway_with_flags (dynobj, ".plt",
469 || ! bfd_set_section_alignment (dynobj, splt, 1))
475 offset = &h->plt.offset;
478 if (local_plt_offsets == NULL)
483 size = symtab_hdr->sh_info * sizeof (bfd_vma);
484 local_plt_offsets = bfd_alloc (abfd, size);
485 if (local_plt_offsets == NULL)
487 elf_local_got_offsets (abfd) = local_plt_offsets;
489 for (i = 0; i < symtab_hdr->sh_info; i++)
490 local_plt_offsets[i] = (bfd_vma) -1;
492 offset = &local_plt_offsets[r_symndx];
495 if (*offset == (bfd_vma) -1)
497 *offset = splt->size;
502 /* This relocation describes the C++ object vtable hierarchy.
503 Reconstruct it for later use during GC. */
504 case R_XSTORMY16_GNU_VTINHERIT:
505 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
509 /* This relocation describes which C++ vtable entries are actually
510 used. Record for later use during GC. */
511 case R_XSTORMY16_GNU_VTENTRY:
512 BFD_ASSERT (h != NULL);
514 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
523 /* A subroutine of xstormy16_elf_relax_section. If the global symbol H
524 is within the low 64k, remove any entry for it in the plt. */
526 struct relax_plt_data
533 xstormy16_relax_plt_check (struct elf_link_hash_entry *h, void * xdata)
535 struct relax_plt_data *data = (struct relax_plt_data *) xdata;
537 if (h->plt.offset != (bfd_vma) -1)
541 if (h->root.type == bfd_link_hash_undefined
542 || h->root.type == bfd_link_hash_undefweak)
545 address = (h->root.u.def.section->output_section->vma
546 + h->root.u.def.section->output_offset
547 + h->root.u.def.value);
549 if (address <= 0xffff)
552 data->splt->size -= 4;
560 /* A subroutine of xstormy16_elf_relax_section. If the global symbol H
561 previously had a plt entry, give it a new entry offset. */
564 xstormy16_relax_plt_realloc (struct elf_link_hash_entry *h, void * xdata)
566 bfd_vma *entry = (bfd_vma *) xdata;
568 if (h->plt.offset != (bfd_vma) -1)
570 h->plt.offset = *entry;
578 xstormy16_elf_relax_section (bfd *dynobj,
580 struct bfd_link_info *info,
583 struct relax_plt_data relax_plt_data;
586 /* Assume nothing changes. */
589 if (info->relocatable)
592 /* We only relax the .plt section at the moment. */
593 if (dynobj != elf_hash_table (info)->dynobj
594 || strcmp (splt->name, ".plt") != 0)
597 /* Quick check for an empty plt. */
601 /* Map across all global symbols; see which ones happen to
602 fall in the low 64k. */
603 relax_plt_data.splt = splt;
604 relax_plt_data.again = again;
605 elf_link_hash_traverse (elf_hash_table (info), xstormy16_relax_plt_check,
608 /* Likewise for local symbols, though that's somewhat less convenient
609 as we have to walk the list of input bfds and swap in symbol data. */
610 for (ibfd = info->input_bfds; ibfd ; ibfd = ibfd->link_next)
612 bfd_vma *local_plt_offsets = elf_local_got_offsets (ibfd);
613 Elf_Internal_Shdr *symtab_hdr;
614 Elf_Internal_Sym *isymbuf = NULL;
617 if (! local_plt_offsets)
620 symtab_hdr = &elf_tdata (ibfd)->symtab_hdr;
621 if (symtab_hdr->sh_info != 0)
623 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
625 isymbuf = bfd_elf_get_elf_syms (ibfd, symtab_hdr,
626 symtab_hdr->sh_info, 0,
632 for (idx = 0; idx < symtab_hdr->sh_info; ++idx)
634 Elf_Internal_Sym *isym;
638 if (local_plt_offsets[idx] == (bfd_vma) -1)
641 isym = &isymbuf[idx];
642 if (isym->st_shndx == SHN_UNDEF)
644 else if (isym->st_shndx == SHN_ABS)
645 tsec = bfd_abs_section_ptr;
646 else if (isym->st_shndx == SHN_COMMON)
647 tsec = bfd_com_section_ptr;
649 tsec = bfd_section_from_elf_index (ibfd, isym->st_shndx);
651 address = (tsec->output_section->vma
652 + tsec->output_offset
654 if (address <= 0xffff)
656 local_plt_offsets[idx] = -1;
663 && symtab_hdr->contents != (unsigned char *) isymbuf)
665 if (! info->keep_memory)
669 /* Cache the symbols for elf_link_input_bfd. */
670 symtab_hdr->contents = (unsigned char *) isymbuf;
675 /* If we changed anything, walk the symbols again to reallocate
676 .plt entry addresses. */
677 if (*again && splt->size > 0)
681 elf_link_hash_traverse (elf_hash_table (info),
682 xstormy16_relax_plt_realloc, &entry);
684 for (ibfd = info->input_bfds; ibfd ; ibfd = ibfd->link_next)
686 bfd_vma *local_plt_offsets = elf_local_got_offsets (ibfd);
687 unsigned int nlocals = elf_tdata (ibfd)->symtab_hdr.sh_info;
690 if (! local_plt_offsets)
693 for (idx = 0; idx < nlocals; ++idx)
694 if (local_plt_offsets[idx] != (bfd_vma) -1)
696 local_plt_offsets[idx] = entry;
706 xstormy16_elf_always_size_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
707 struct bfd_link_info *info)
712 if (info->relocatable)
715 dynobj = elf_hash_table (info)->dynobj;
719 splt = bfd_get_linker_section (dynobj, ".plt");
720 BFD_ASSERT (splt != NULL);
722 splt->contents = bfd_zalloc (dynobj, splt->size);
723 if (splt->contents == NULL)
729 /* Relocate an XSTORMY16 ELF section.
731 The RELOCATE_SECTION function is called by the new ELF backend linker
732 to handle the relocations for a section.
734 The relocs are always passed as Rela structures; if the section
735 actually uses Rel structures, the r_addend field will always be
738 This function is responsible for adjusting the section contents as
739 necessary, and (if using Rela relocs and generating a relocatable
740 output file) adjusting the reloc addend as necessary.
742 This function does not have to worry about setting the reloc
743 address or the reloc symbol index.
745 LOCAL_SYMS is a pointer to the swapped in local symbols.
747 LOCAL_SECTIONS is an array giving the section in the input file
748 corresponding to the st_shndx field of each local symbol.
750 The global hash table entry for the global symbols can be found
751 via elf_sym_hashes (input_bfd).
753 When generating relocatable output, this function must handle
754 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
755 going to be the section symbol corresponding to the output
756 section, which means that the addend must be adjusted
760 xstormy16_elf_relocate_section (bfd * output_bfd ATTRIBUTE_UNUSED,
761 struct bfd_link_info * info,
763 asection * input_section,
765 Elf_Internal_Rela * relocs,
766 Elf_Internal_Sym * local_syms,
767 asection ** local_sections)
769 Elf_Internal_Shdr * symtab_hdr;
770 struct elf_link_hash_entry ** sym_hashes;
771 Elf_Internal_Rela * rel;
772 Elf_Internal_Rela * relend;
776 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
777 sym_hashes = elf_sym_hashes (input_bfd);
778 relend = relocs + input_section->reloc_count;
780 dynobj = elf_hash_table (info)->dynobj;
783 splt = bfd_get_linker_section (dynobj, ".plt");
785 for (rel = relocs; rel < relend; rel ++)
787 reloc_howto_type * howto;
788 unsigned long r_symndx;
789 Elf_Internal_Sym * sym;
791 struct elf_link_hash_entry * h;
793 bfd_reloc_status_type r;
794 const char * name = NULL;
797 r_type = ELF32_R_TYPE (rel->r_info);
799 if ( r_type == R_XSTORMY16_GNU_VTINHERIT
800 || r_type == R_XSTORMY16_GNU_VTENTRY)
803 r_symndx = ELF32_R_SYM (rel->r_info);
804 howto = xstormy16_elf_howto_table + ELF32_R_TYPE (rel->r_info);
809 if (r_symndx < symtab_hdr->sh_info)
811 sym = local_syms + r_symndx;
812 sec = local_sections [r_symndx];
813 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
817 bfd_boolean unresolved_reloc, warned;
819 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
820 r_symndx, symtab_hdr, sym_hashes,
822 unresolved_reloc, warned);
825 if (sec != NULL && discarded_section (sec))
826 RELOC_AGAINST_DISCARDED_SECTION (info, input_bfd, input_section,
827 rel, 1, relend, howto, 0, contents);
829 if (info->relocatable)
833 name = h->root.root.string;
836 name = (bfd_elf_string_from_elf_section
837 (input_bfd, symtab_hdr->sh_link, sym->st_name));
838 if (name == NULL || *name == '\0')
839 name = bfd_section_name (input_bfd, sec);
842 switch (ELF32_R_TYPE (rel->r_info))
846 bfd_vma reloc = relocation + rel->r_addend;
849 x = bfd_get_32 (input_bfd, contents + rel->r_offset);
852 x |= (reloc << 8) & 0xffff0000;
853 bfd_put_32 (input_bfd, x, contents + rel->r_offset);
855 if (reloc & ~0xffffff)
856 r = bfd_reloc_overflow;
862 case R_XSTORMY16_FPTR16:
867 plt_offset = &h->plt.offset;
869 plt_offset = elf_local_got_offsets (input_bfd) + r_symndx;
871 if (relocation <= 0xffff)
873 /* If the symbol is in range for a 16-bit address, we should
874 have deallocated the plt entry in relax_section. */
875 BFD_ASSERT (*plt_offset == (bfd_vma) -1);
879 /* If the symbol is out of range for a 16-bit address,
880 we must have allocated a plt entry. */
881 BFD_ASSERT (*plt_offset != (bfd_vma) -1);
883 /* If this is the first time we've processed this symbol,
884 fill in the plt entry with the correct symbol address. */
885 if ((*plt_offset & 1) == 0)
889 x = 0x00000200; /* jmpf */
890 x |= relocation & 0xff;
891 x |= (relocation << 8) & 0xffff0000;
892 bfd_put_32 (input_bfd, x, splt->contents + *plt_offset);
896 relocation = (splt->output_section->vma
897 + splt->output_offset
898 + (*plt_offset & -2));
900 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
901 contents, rel->r_offset,
907 r = _bfd_final_link_relocate (howto, input_bfd, input_section,
908 contents, rel->r_offset,
909 relocation, rel->r_addend);
913 if (r != bfd_reloc_ok)
915 const char * msg = NULL;
919 case bfd_reloc_overflow:
920 r = info->callbacks->reloc_overflow
921 (info, (h ? &h->root : NULL), name, howto->name,
922 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
925 case bfd_reloc_undefined:
926 r = info->callbacks->undefined_symbol
927 (info, name, input_bfd, input_section, rel->r_offset,
931 case bfd_reloc_outofrange:
932 msg = _("internal error: out of range error");
935 case bfd_reloc_notsupported:
936 msg = _("internal error: unsupported relocation error");
939 case bfd_reloc_dangerous:
940 msg = _("internal error: dangerous relocation");
944 msg = _("internal error: unknown error");
949 r = info->callbacks->warning
950 (info, msg, name, input_bfd, input_section, rel->r_offset);
960 /* This must exist if dynobj is ever set. */
963 xstormy16_elf_finish_dynamic_sections (bfd *abfd ATTRIBUTE_UNUSED,
964 struct bfd_link_info *info)
969 /* As an extra sanity check, verify that all plt entries have
972 if ((dynobj = elf_hash_table (info)->dynobj) != NULL
973 && (splt = bfd_get_linker_section (dynobj, ".plt")) != NULL)
975 bfd_byte *contents = splt->contents;
976 unsigned int i, size = splt->size;
978 for (i = 0; i < size; i += 4)
980 unsigned int x = bfd_get_32 (dynobj, contents + i);
989 /* Return the section that should be marked against GC for a given
993 xstormy16_elf_gc_mark_hook (asection *sec,
994 struct bfd_link_info *info,
995 Elf_Internal_Rela *rel,
996 struct elf_link_hash_entry *h,
997 Elf_Internal_Sym *sym)
1000 switch (ELF32_R_TYPE (rel->r_info))
1002 case R_XSTORMY16_GNU_VTINHERIT:
1003 case R_XSTORMY16_GNU_VTENTRY:
1007 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1010 #define ELF_ARCH bfd_arch_xstormy16
1011 #define ELF_MACHINE_CODE EM_XSTORMY16
1012 #define ELF_MAXPAGESIZE 0x100
1014 #define TARGET_LITTLE_SYM bfd_elf32_xstormy16_vec
1015 #define TARGET_LITTLE_NAME "elf32-xstormy16"
1017 #define elf_info_to_howto_rel NULL
1018 #define elf_info_to_howto xstormy16_info_to_howto_rela
1019 #define elf_backend_relocate_section xstormy16_elf_relocate_section
1020 #define elf_backend_gc_mark_hook xstormy16_elf_gc_mark_hook
1021 #define elf_backend_check_relocs xstormy16_elf_check_relocs
1022 #define elf_backend_always_size_sections \
1023 xstormy16_elf_always_size_sections
1024 #define elf_backend_omit_section_dynsym \
1025 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
1026 #define elf_backend_finish_dynamic_sections \
1027 xstormy16_elf_finish_dynamic_sections
1029 #define elf_backend_can_gc_sections 1
1030 #define elf_backend_rela_normal 1
1032 #define bfd_elf32_bfd_reloc_type_lookup xstormy16_reloc_type_lookup
1033 #define bfd_elf32_bfd_reloc_name_lookup \
1034 xstormy16_reloc_name_lookup
1035 #define bfd_elf32_bfd_relax_section xstormy16_elf_relax_section
1037 #include "elf32-target.h"