* bfd.c (bfd_archive_filename): New function.
[binutils.git] / bfd / elf32-mcore.c
blob669ba51be32bd7d341d688122a96560789f572cb
1 /* Motorola MCore specific support for 32-bit ELF
2 Copyright 1994, 1995, 1999, 2000, 2001 Free Software Foundation, Inc.
4 This file is part of BFD, the Binary File Descriptor library.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* This file is based on a preliminary RCE ELF ABI. The
21 information may not match the final RCE ELF ABI. */
23 #include "bfd.h"
24 #include "sysdep.h"
25 #include "bfdlink.h"
26 #include "libbfd.h"
27 #include "elf-bfd.h"
28 #include "elf/mcore.h"
29 #include <assert.h>
31 #define USE_RELA /* Only USE_REL is actually significant, but this is
32 here are a reminder... */
34 static void mcore_elf_howto_init
35 PARAMS ((void));
36 static reloc_howto_type * mcore_elf_reloc_type_lookup
37 PARAMS ((bfd *, bfd_reloc_code_real_type));
38 static void mcore_elf_info_to_howto
39 PARAMS ((bfd *, arelent *, Elf32_Internal_Rela *));
40 static boolean mcore_elf_set_private_flags
41 PARAMS ((bfd *, flagword));
42 static boolean mcore_elf_copy_private_bfd_data
43 PARAMS ((bfd *, bfd *));
44 static boolean mcore_elf_merge_private_bfd_data
45 PARAMS ((bfd *, bfd *));
46 static bfd_reloc_status_type mcore_elf_unsupported_reloc
47 PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **));
48 static boolean mcore_elf_relocate_section
49 PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *,
50 Elf_Internal_Rela *, Elf_Internal_Sym *, asection **));
51 static asection * mcore_elf_gc_mark_hook
52 PARAMS ((bfd *, struct bfd_link_info *, Elf_Internal_Rela *,
53 struct elf_link_hash_entry *, Elf_Internal_Sym *));
54 static boolean mcore_elf_gc_sweep_hook
55 PARAMS ((bfd *, struct bfd_link_info *, asection *,
56 const Elf_Internal_Rela *));
57 static boolean mcore_elf_check_relocs
58 PARAMS ((bfd *, struct bfd_link_info *, asection *,
59 const Elf_Internal_Rela *));
61 static reloc_howto_type * mcore_elf_howto_table [(int) R_MCORE_max];
63 static reloc_howto_type mcore_elf_howto_raw[] =
65 /* This reloc does nothing. */
66 HOWTO (R_MCORE_NONE, /* type */
67 0, /* rightshift */
68 2, /* size (0 = byte, 1 = short, 2 = long) */
69 32, /* bitsize */
70 false, /* pc_relative */
71 0, /* bitpos */
72 complain_overflow_bitfield, /* complain_on_overflow */
73 NULL, /* special_function */
74 "R_MCORE_NONE", /* name */
75 false, /* partial_inplace */
76 0, /* src_mask */
77 0, /* dst_mask */
78 false), /* pcrel_offset */
80 /* A standard 32 bit relocation. */
81 HOWTO (R_MCORE_ADDR32, /* type */
82 0, /* rightshift */
83 2, /* size (0 = byte, 1 = short, 2 = long) */
84 32, /* bitsize */
85 false, /* pc_relative */
86 0, /* bitpos */
87 complain_overflow_bitfield, /* complain_on_overflow */
88 bfd_elf_generic_reloc, /* special_function */
89 "ADDR32", /* name *//* For compatability with coff/pe port. */
90 false, /* partial_inplace */
91 0x0, /* src_mask */
92 0xffffffff, /* dst_mask */
93 false), /* pcrel_offset */
95 /* 8 bits + 2 zero bits; jmpi/jsri/lrw instructions.
96 Should not appear in object files. */
97 HOWTO (R_MCORE_PCRELIMM8BY4, /* type */
98 2, /* rightshift */
99 1, /* size (0 = byte, 1 = short, 2 = long) */
100 8, /* bitsize */
101 true, /* pc_relative */
102 0, /* bitpos */
103 complain_overflow_bitfield, /* complain_on_overflow */
104 mcore_elf_unsupported_reloc, /* special_function */
105 "R_MCORE_PCRELIMM8BY4",/* name */
106 false, /* partial_inplace */
107 0, /* src_mask */
108 0, /* dst_mask */
109 true), /* pcrel_offset */
111 /* bsr/bt/bf/br instructions; 11 bits + 1 zero bit
112 Span 2k instructions == 4k bytes.
113 Only useful pieces at the relocated address are the opcode (5 bits) */
114 HOWTO (R_MCORE_PCRELIMM11BY2,/* type */
115 1, /* rightshift */
116 1, /* size (0 = byte, 1 = short, 2 = long) */
117 11, /* bitsize */
118 true, /* pc_relative */
119 0, /* bitpos */
120 complain_overflow_signed, /* complain_on_overflow */
121 bfd_elf_generic_reloc, /* special_function */
122 "R_MCORE_PCRELIMM11BY2",/* name */
123 false, /* partial_inplace */
124 0x0, /* src_mask */
125 0x7ff, /* dst_mask */
126 true), /* pcrel_offset */
128 /* 4 bits + 1 zero bit; 'loopt' instruction only; unsupported. */
129 HOWTO (R_MCORE_PCRELIMM4BY2, /* type */
130 1, /* rightshift */
131 1, /* size (0 = byte, 1 = short, 2 = long) */
132 4, /* bitsize */
133 true, /* pc_relative */
134 0, /* bitpos */
135 complain_overflow_bitfield, /* complain_on_overflow */
136 mcore_elf_unsupported_reloc,/* special_function */
137 "R_MCORE_PCRELIMM4BY2",/* name */
138 false, /* partial_inplace */
139 0, /* src_mask */
140 0, /* dst_mask */
141 true), /* pcrel_offset */
143 /* 32-bit pc-relative. Eventually this will help support PIC code. */
144 HOWTO (R_MCORE_PCREL32, /* type */
145 0, /* rightshift */
146 2, /* size (0 = byte, 1 = short, 2 = long) */
147 32, /* bitsize */
148 true, /* pc_relative */
149 0, /* bitpos */
150 complain_overflow_bitfield, /* complain_on_overflow */
151 bfd_elf_generic_reloc, /* special_function */
152 "R_MCORE_PCREL32", /* name */
153 false, /* partial_inplace */
154 0x0, /* src_mask */
155 0xffffffff, /* dst_mask */
156 true), /* pcrel_offset */
158 /* Like PCRELIMM11BY2, this relocation indicates that there is a
159 'jsri' at the specified address. There is a separate relocation
160 entry for the literal pool entry that it references, but we
161 might be able to change the jsri to a bsr if the target turns out
162 to be close enough [even though we won't reclaim the literal pool
163 entry, we'll get some runtime efficiency back]. Note that this
164 is a relocation that we are allowed to safely ignore. */
165 HOWTO (R_MCORE_PCRELJSR_IMM11BY2,/* type */
166 1, /* rightshift */
167 1, /* size (0 = byte, 1 = short, 2 = long) */
168 11, /* bitsize */
169 true, /* pc_relative */
170 0, /* bitpos */
171 complain_overflow_signed, /* complain_on_overflow */
172 bfd_elf_generic_reloc, /* special_function */
173 "R_MCORE_PCRELJSR_IMM11BY2", /* name */
174 false, /* partial_inplace */
175 0x0, /* src_mask */
176 0x7ff, /* dst_mask */
177 true), /* pcrel_offset */
179 /* GNU extension to record C++ vtable hierarchy */
180 HOWTO (R_MCORE_GNU_VTINHERIT, /* type */
181 0, /* rightshift */
182 2, /* size (0 = byte, 1 = short, 2 = long) */
183 0, /* bitsize */
184 false, /* pc_relative */
185 0, /* bitpos */
186 complain_overflow_dont, /* complain_on_overflow */
187 NULL, /* special_function */
188 "R_MCORE_GNU_VTINHERIT", /* name */
189 false, /* partial_inplace */
190 0, /* src_mask */
191 0, /* dst_mask */
192 false), /* pcrel_offset */
194 /* GNU extension to record C++ vtable member usage */
195 HOWTO (R_MCORE_GNU_VTENTRY, /* type */
196 0, /* rightshift */
197 2, /* size (0 = byte, 1 = short, 2 = long) */
198 0, /* bitsize */
199 false, /* pc_relative */
200 0, /* bitpos */
201 complain_overflow_dont,/* complain_on_overflow */
202 _bfd_elf_rel_vtable_reloc_fn, /* special_function */
203 "R_MCORE_GNU_VTENTRY", /* name */
204 false, /* partial_inplace */
205 0, /* src_mask */
206 0, /* dst_mask */
207 false), /* pcrel_offset */
209 HOWTO (R_MCORE_RELATIVE, /* type */
210 0, /* rightshift */
211 2, /* size (0 = byte, 1 = short, 2 = long) */
212 32, /* bitsize */
213 false, /* pc_relative */
214 0, /* bitpos */
215 complain_overflow_signed, /* complain_on_overflow */
216 NULL, /* special_function */
217 "R_MCORE_RELATIVE", /* name */
218 true, /* partial_inplace */
219 0xffffffff, /* src_mask */
220 0xffffffff, /* dst_mask */
221 false) /* pcrel_offset */
224 #ifndef NUM_ELEM
225 #define NUM_ELEM(a) (sizeof (a) / sizeof (a)[0])
226 #endif
228 /* Initialize the mcore_elf_howto_table, so that linear accesses can be done. */
229 static void
230 mcore_elf_howto_init ()
232 unsigned int i;
234 for (i = NUM_ELEM (mcore_elf_howto_raw); i--;)
236 unsigned int type;
238 type = mcore_elf_howto_raw[i].type;
240 BFD_ASSERT (type < NUM_ELEM (mcore_elf_howto_table));
242 mcore_elf_howto_table [type] = & mcore_elf_howto_raw [i];
246 static reloc_howto_type *
247 mcore_elf_reloc_type_lookup (abfd, code)
248 bfd * abfd ATTRIBUTE_UNUSED;
249 bfd_reloc_code_real_type code;
251 enum elf_mcore_reloc_type mcore_reloc = R_MCORE_NONE;
253 switch (code)
255 case BFD_RELOC_NONE: mcore_reloc = R_MCORE_NONE; break;
256 case BFD_RELOC_32: mcore_reloc = R_MCORE_ADDR32; break;
257 case BFD_RELOC_MCORE_PCREL_IMM8BY4: mcore_reloc = R_MCORE_PCRELIMM8BY4; break;
258 case BFD_RELOC_MCORE_PCREL_IMM11BY2: mcore_reloc = R_MCORE_PCRELIMM11BY2; break;
259 case BFD_RELOC_MCORE_PCREL_IMM4BY2: mcore_reloc = R_MCORE_PCRELIMM4BY2; break;
260 case BFD_RELOC_32_PCREL: mcore_reloc = R_MCORE_PCREL32; break;
261 case BFD_RELOC_MCORE_PCREL_JSR_IMM11BY2: mcore_reloc = R_MCORE_PCRELJSR_IMM11BY2; break;
262 case BFD_RELOC_VTABLE_INHERIT: mcore_reloc = R_MCORE_GNU_VTINHERIT; break;
263 case BFD_RELOC_VTABLE_ENTRY: mcore_reloc = R_MCORE_GNU_VTENTRY; break;
264 case BFD_RELOC_RVA: mcore_reloc = R_MCORE_RELATIVE; break;
265 default:
266 return (reloc_howto_type *)NULL;
269 if (! mcore_elf_howto_table [R_MCORE_PCRELIMM8BY4]) /* Initialize howto table if needed */
270 mcore_elf_howto_init ();
272 return mcore_elf_howto_table [(int) mcore_reloc];
275 /* Set the howto pointer for a RCE ELF reloc. */
276 static void
277 mcore_elf_info_to_howto (abfd, cache_ptr, dst)
278 bfd * abfd ATTRIBUTE_UNUSED;
279 arelent * cache_ptr;
280 Elf32_Internal_Rela * dst;
282 if (! mcore_elf_howto_table [R_MCORE_PCRELIMM8BY4]) /* Initialize howto table if needed */
283 mcore_elf_howto_init ();
285 BFD_ASSERT (ELF32_R_TYPE (dst->r_info) < (unsigned int) R_MCORE_max);
287 cache_ptr->howto = mcore_elf_howto_table [ELF32_R_TYPE (dst->r_info)];
290 /* Function to set whether a module needs the -mrelocatable bit set. */
291 static boolean
292 mcore_elf_set_private_flags (abfd, flags)
293 bfd * abfd;
294 flagword flags;
296 BFD_ASSERT (! elf_flags_init (abfd)
297 || elf_elfheader (abfd)->e_flags == flags);
299 elf_elfheader (abfd)->e_flags = flags;
300 elf_flags_init (abfd) = true;
301 return true;
304 /* Copy backend specific data from one object module to another. */
305 static boolean
306 mcore_elf_copy_private_bfd_data (ibfd, obfd)
307 bfd * ibfd;
308 bfd * obfd;
310 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
311 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
312 return true;
314 BFD_ASSERT (! elf_flags_init (obfd)
315 || elf_elfheader (obfd)->e_flags == elf_elfheader (ibfd)->e_flags);
317 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
318 elf_flags_init (obfd) = true;
319 return true;
322 /* Merge backend specific data from an object file to the output
323 object file when linking. */
324 static boolean
325 mcore_elf_merge_private_bfd_data (ibfd, obfd)
326 bfd * ibfd;
327 bfd * obfd;
329 flagword old_flags;
330 flagword new_flags;
332 /* Check if we have the same endianess */
333 if (_bfd_generic_verify_endian_match (ibfd, obfd) == false)
334 return false;
336 if ( bfd_get_flavour (ibfd) != bfd_target_elf_flavour
337 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
338 return true;
340 new_flags = elf_elfheader (ibfd)->e_flags;
341 old_flags = elf_elfheader (obfd)->e_flags;
343 if (! elf_flags_init (obfd)) /* First call, no flags set */
345 elf_flags_init (obfd) = true;
346 elf_elfheader (obfd)->e_flags = new_flags;
348 else if (new_flags == old_flags) /* Compatible flags are ok */
350 else
352 /* FIXME */
355 return true;
358 /* Don't pretend we can deal with unsupported relocs. */
360 static bfd_reloc_status_type
361 mcore_elf_unsupported_reloc (abfd, reloc_entry, symbol, data, input_section,
362 output_bfd, error_message)
363 bfd * abfd;
364 arelent * reloc_entry;
365 asymbol * symbol ATTRIBUTE_UNUSED;
366 PTR data ATTRIBUTE_UNUSED;
367 asection * input_section ATTRIBUTE_UNUSED;
368 bfd * output_bfd ATTRIBUTE_UNUSED;
369 char ** error_message ATTRIBUTE_UNUSED;
371 BFD_ASSERT (reloc_entry->howto != (reloc_howto_type *)0);
373 _bfd_error_handler (_("%s: Relocation %s (%d) is not currently supported.\n"),
374 bfd_archive_filename (abfd),
375 reloc_entry->howto->name,
376 reloc_entry->howto->type);
378 return bfd_reloc_notsupported;
381 /* The RELOCATE_SECTION function is called by the ELF backend linker
382 to handle the relocations for a section.
384 The relocs are always passed as Rela structures; if the section
385 actually uses Rel structures, the r_addend field will always be
386 zero.
388 This function is responsible for adjust the section contents as
389 necessary, and (if using Rela relocs and generating a
390 relocateable output file) adjusting the reloc addend as
391 necessary.
393 This function does not have to worry about setting the reloc
394 address or the reloc symbol index.
396 LOCAL_SYMS is a pointer to the swapped in local symbols.
398 LOCAL_SECTIONS is an array giving the section in the input file
399 corresponding to the st_shndx field of each local symbol.
401 The global hash table entry for the global symbols can be found
402 via elf_sym_hashes (input_bfd).
404 When generating relocateable output, this function must handle
405 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
406 going to be the section symbol corresponding to the output
407 section, which means that the addend must be adjusted
408 accordingly. */
410 static boolean
411 mcore_elf_relocate_section (output_bfd, info, input_bfd, input_section,
412 contents, relocs, local_syms, local_sections)
413 bfd * output_bfd ATTRIBUTE_UNUSED;
414 struct bfd_link_info * info;
415 bfd * input_bfd;
416 asection * input_section;
417 bfd_byte * contents;
418 Elf_Internal_Rela * relocs;
419 Elf_Internal_Sym * local_syms;
420 asection ** local_sections;
422 Elf_Internal_Shdr * symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
423 struct elf_link_hash_entry ** sym_hashes = elf_sym_hashes (input_bfd);
424 Elf_Internal_Rela * rel = relocs;
425 Elf_Internal_Rela * relend = relocs + input_section->reloc_count;
426 boolean ret = true;
428 #ifdef DEBUG
429 fprintf (stderr,
430 "mcore_elf_relocate_section called for %s section %s, %ld relocations%s\n",
431 bfd_archive_filename (input_bfd),
432 bfd_section_name(input_bfd, input_section),
433 (long) input_section->reloc_count,
434 (info->relocateable) ? " (relocatable)" : "");
435 #endif
437 if (! mcore_elf_howto_table [R_MCORE_PCRELIMM8BY4]) /* Initialize howto table if needed */
438 mcore_elf_howto_init ();
440 for (; rel < relend; rel++)
442 enum elf_mcore_reloc_type r_type = (enum elf_mcore_reloc_type) ELF32_R_TYPE (rel->r_info);
443 bfd_vma offset = rel->r_offset;
444 bfd_vma addend = rel->r_addend;
445 bfd_reloc_status_type r = bfd_reloc_other;
446 asection * sec = (asection *) 0;
447 reloc_howto_type * howto;
448 bfd_vma relocation;
449 Elf_Internal_Sym * sym = (Elf_Internal_Sym *) 0;
450 unsigned long r_symndx;
451 struct elf_link_hash_entry * h = (struct elf_link_hash_entry *) 0;
452 unsigned short oldinst = 0;
454 /* Unknown relocation handling */
455 if ((unsigned) r_type >= (unsigned) R_MCORE_max
456 || ! mcore_elf_howto_table [(int)r_type])
458 _bfd_error_handler (_("%s: Unknown relocation type %d\n"),
459 bfd_archive_filename (input_bfd),
460 (int) r_type);
462 bfd_set_error (bfd_error_bad_value);
463 ret = false;
464 continue;
467 howto = mcore_elf_howto_table [(int) r_type];
468 r_symndx = ELF32_R_SYM (rel->r_info);
470 if (info->relocateable)
472 /* This is a relocateable link. We don't have to change
473 anything, unless the reloc is against a section symbol,
474 in which case we have to adjust according to where the
475 section symbol winds up in the output section. */
476 if (r_symndx < symtab_hdr->sh_info)
478 sym = local_syms + r_symndx;
480 if ((unsigned)ELF_ST_TYPE (sym->st_info) == STT_SECTION)
482 sec = local_sections[r_symndx];
483 addend = rel->r_addend += sec->output_offset + sym->st_value;
487 #ifdef DEBUG
488 fprintf (stderr, "\ttype = %s (%d), symbol index = %ld, offset = %ld, addend = %ld\n",
489 howto->name, (int) r_type, r_symndx, (long) offset, (long) addend);
490 #endif
491 continue;
494 /* This is a final link. */
496 /* Complain about known relocation that are not yet supported. */
497 if (howto->special_function == mcore_elf_unsupported_reloc)
499 _bfd_error_handler (_("%s: Relocation %s (%d) is not currently supported.\n"),
500 bfd_archive_filename (input_bfd),
501 howto->name,
502 (int)r_type);
504 bfd_set_error (bfd_error_bad_value);
505 ret = false;
506 continue;
509 if (r_symndx < symtab_hdr->sh_info)
511 sym = local_syms + r_symndx;
512 sec = local_sections [r_symndx];
513 relocation = (sec->output_section->vma
514 + sec->output_offset
515 + sym->st_value);
517 else
519 h = sym_hashes [r_symndx - symtab_hdr->sh_info];
520 if ( h->root.type == bfd_link_hash_defined
521 || h->root.type == bfd_link_hash_defweak)
523 sec = h->root.u.def.section;
524 relocation = (h->root.u.def.value
525 + sec->output_section->vma
526 + sec->output_offset);
528 else if (h->root.type == bfd_link_hash_undefweak)
529 relocation = 0;
530 else if (info->shared
531 && ELF_ST_VISIBILITY (h->other) == STV_DEFAULT)
532 relocation = 0;
533 else
535 if (! ((*info->callbacks->undefined_symbol)
536 (info, h->root.root.string, input_bfd,
537 input_section, rel->r_offset, true)))
538 return false;
540 ret = false;
541 continue;
545 switch (r_type)
547 default:
548 break;
550 case R_MCORE_PCRELJSR_IMM11BY2:
551 oldinst = bfd_get_16 (input_bfd, contents + offset);
552 #define MCORE_INST_BSR 0xF800
553 bfd_put_16 (input_bfd, (bfd_vma) MCORE_INST_BSR, contents + offset);
554 break;
557 #ifdef DEBUG
558 fprintf (stderr, "\ttype = %s (%d), symbol index = %ld, offset = %ld, addend = %ld\n",
559 howto->name, r_type, r_symndx, (long) offset, (long) addend);
560 #endif
562 r = _bfd_final_link_relocate
563 (howto, input_bfd, input_section, contents, offset, relocation, addend);
565 if (r != bfd_reloc_ok && r_type == R_MCORE_PCRELJSR_IMM11BY2)
567 /* Wasn't ok, back it out and give up. */
568 bfd_put_16 (input_bfd, (bfd_vma) oldinst, contents + offset);
569 r = bfd_reloc_ok;
572 if (r != bfd_reloc_ok)
574 ret = false;
576 switch (r)
578 default:
579 break;
581 case bfd_reloc_overflow:
583 const char * name;
585 if (h != NULL)
586 name = h->root.root.string;
587 else
589 name = bfd_elf_string_from_elf_section
590 (input_bfd, symtab_hdr->sh_link, sym->st_name);
592 if (name == NULL)
593 break;
595 if (* name == '\0')
596 name = bfd_section_name (input_bfd, sec);
599 (*info->callbacks->reloc_overflow)
600 (info, name, howto->name, (bfd_vma) 0, input_bfd, input_section,
601 offset);
603 break;
608 #ifdef DEBUG
609 fprintf (stderr, "\n");
610 #endif
612 return ret;
615 /* Return the section that should be marked against GC for a given
616 relocation. */
618 static asection *
619 mcore_elf_gc_mark_hook (abfd, info, rel, h, sym)
620 bfd * abfd;
621 struct bfd_link_info * info ATTRIBUTE_UNUSED;
622 Elf_Internal_Rela * rel;
623 struct elf_link_hash_entry * h;
624 Elf_Internal_Sym * sym;
626 if (h != NULL)
628 switch (ELF32_R_TYPE (rel->r_info))
630 case R_MCORE_GNU_VTINHERIT:
631 case R_MCORE_GNU_VTENTRY:
632 break;
634 default:
635 switch (h->root.type)
637 case bfd_link_hash_defined:
638 case bfd_link_hash_defweak:
639 return h->root.u.def.section;
641 case bfd_link_hash_common:
642 return h->root.u.c.p->section;
644 default:
645 break;
649 else
651 if (!(elf_bad_symtab (abfd)
652 && ELF_ST_BIND (sym->st_info) != STB_LOCAL)
653 && ! ((sym->st_shndx <= 0 || sym->st_shndx >= SHN_LORESERVE)
654 && sym->st_shndx != SHN_COMMON))
656 return bfd_section_from_elf_index (abfd, sym->st_shndx);
660 return NULL;
663 /* Update the got entry reference counts for the section being removed. */
665 static boolean
666 mcore_elf_gc_sweep_hook (abfd, info, sec, relocs)
667 bfd * abfd ATTRIBUTE_UNUSED;
668 struct bfd_link_info * info ATTRIBUTE_UNUSED;
669 asection * sec ATTRIBUTE_UNUSED;
670 const Elf_Internal_Rela * relocs ATTRIBUTE_UNUSED;
672 return true;
675 /* Look through the relocs for a section during the first phase.
676 Since we don't do .gots or .plts, we just need to consider the
677 virtual table relocs for gc. */
679 static boolean
680 mcore_elf_check_relocs (abfd, info, sec, relocs)
681 bfd * abfd;
682 struct bfd_link_info * info;
683 asection * sec;
684 const Elf_Internal_Rela * relocs;
686 Elf_Internal_Shdr * symtab_hdr;
687 struct elf_link_hash_entry ** sym_hashes;
688 struct elf_link_hash_entry ** sym_hashes_end;
689 const Elf_Internal_Rela * rel;
690 const Elf_Internal_Rela * rel_end;
692 if (info->relocateable)
693 return true;
695 symtab_hdr = & elf_tdata (abfd)->symtab_hdr;
696 sym_hashes = elf_sym_hashes (abfd);
697 sym_hashes_end = sym_hashes + symtab_hdr->sh_size / sizeof (Elf32_External_Sym);
698 if (!elf_bad_symtab (abfd))
699 sym_hashes_end -= symtab_hdr->sh_info;
701 rel_end = relocs + sec->reloc_count;
703 for (rel = relocs; rel < rel_end; rel++)
705 struct elf_link_hash_entry * h;
706 unsigned long r_symndx;
708 r_symndx = ELF32_R_SYM (rel->r_info);
710 if (r_symndx < symtab_hdr->sh_info)
711 h = NULL;
712 else
713 h = sym_hashes [r_symndx - symtab_hdr->sh_info];
715 switch (ELF32_R_TYPE (rel->r_info))
717 /* This relocation describes the C++ object vtable hierarchy.
718 Reconstruct it for later use during GC. */
719 case R_MCORE_GNU_VTINHERIT:
720 if (!_bfd_elf32_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
721 return false;
722 break;
724 /* This relocation describes which C++ vtable entries are actually
725 used. Record for later use during GC. */
726 case R_MCORE_GNU_VTENTRY:
727 if (!_bfd_elf32_gc_record_vtentry (abfd, sec, h, rel->r_addend))
728 return false;
729 break;
733 return true;
736 #define TARGET_BIG_SYM bfd_elf32_mcore_big_vec
737 #define TARGET_BIG_NAME "elf32-mcore-big"
738 #define TARGET_LITTLE_SYM bfd_elf32_mcore_little_vec
739 #define TARGET_LITTLE_NAME "elf32-mcore-little"
741 #define ELF_ARCH bfd_arch_mcore
742 #define ELF_MACHINE_CODE EM_MCORE
743 #define ELF_MAXPAGESIZE 0x1000 /* 4k, if we ever have 'em */
744 #define elf_info_to_howto mcore_elf_info_to_howto
745 #define elf_info_to_howto_rel NULL
747 #define bfd_elf32_bfd_copy_private_bfd_data mcore_elf_copy_private_bfd_data
748 #define bfd_elf32_bfd_merge_private_bfd_data mcore_elf_merge_private_bfd_data
749 #define bfd_elf32_bfd_set_private_flags mcore_elf_set_private_flags
750 #define bfd_elf32_bfd_reloc_type_lookup mcore_elf_reloc_type_lookup
751 #define elf_backend_relocate_section mcore_elf_relocate_section
752 #define elf_backend_gc_mark_hook mcore_elf_gc_mark_hook
753 #define elf_backend_gc_sweep_hook mcore_elf_gc_sweep_hook
754 #define elf_backend_check_relocs mcore_elf_check_relocs
756 #define elf_backend_can_gc_sections 1
758 #include "elf32-target.h"