1 /* FR30-specific support for 32-bit ELF.
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
27 /* Forward declarations. */
28 static bfd_reloc_status_type fr30_elf_i20_reloc
29 PARAMS ((bfd
*, arelent
*, asymbol
*, PTR
, asection
*, bfd
*, char **));
30 static bfd_reloc_status_type fr30_elf_i32_reloc
31 PARAMS ((bfd
*, arelent
*, asymbol
*, PTR
, asection
*, bfd
*, char **));
32 static reloc_howto_type
* fr30_reloc_type_lookup
33 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
34 static void fr30_info_to_howto_rela
35 PARAMS ((bfd
*, arelent
*, Elf_Internal_Rela
*));
36 static bfd_boolean fr30_elf_relocate_section
37 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*, bfd_byte
*,
38 Elf_Internal_Rela
*, Elf_Internal_Sym
*, asection
**));
39 static bfd_reloc_status_type fr30_final_link_relocate
40 PARAMS ((reloc_howto_type
*, bfd
*, asection
*, bfd_byte
*,
41 Elf_Internal_Rela
*, bfd_vma
));
42 static bfd_boolean fr30_elf_check_relocs
43 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
44 const Elf_Internal_Rela
*));
46 static reloc_howto_type fr30_elf_howto_table
[] =
48 /* This reloc does nothing. */
49 HOWTO (R_FR30_NONE
, /* type */
51 2, /* size (0 = byte, 1 = short, 2 = long) */
53 FALSE
, /* pc_relative */
55 complain_overflow_bitfield
, /* complain_on_overflow */
56 bfd_elf_generic_reloc
, /* special_function */
57 "R_FR30_NONE", /* name */
58 FALSE
, /* partial_inplace */
61 FALSE
), /* pcrel_offset */
63 /* An 8 bit absolute relocation. */
64 HOWTO (R_FR30_8
, /* type */
66 1, /* size (0 = byte, 1 = short, 2 = long) */
68 FALSE
, /* pc_relative */
70 complain_overflow_bitfield
, /* complain_on_overflow */
71 bfd_elf_generic_reloc
, /* special_function */
72 "R_FR30_8", /* name */
73 TRUE
, /* partial_inplace */
74 0x0000, /* src_mask */
75 0x0ff0, /* dst_mask */
76 FALSE
), /* pcrel_offset */
78 /* A 20 bit absolute relocation. */
79 HOWTO (R_FR30_20
, /* type */
81 2, /* size (0 = byte, 1 = short, 2 = long) */
83 FALSE
, /* pc_relative */
85 complain_overflow_bitfield
, /* complain_on_overflow */
86 fr30_elf_i20_reloc
, /* special_function */
87 "R_FR30_20", /* name */
88 TRUE
, /* partial_inplace */
89 0x00000000, /* src_mask */
90 0x00f0ffff, /* dst_mask */
91 FALSE
), /* pcrel_offset */
93 /* A 32 bit absolute relocation. */
94 HOWTO (R_FR30_32
, /* type */
96 2, /* size (0 = byte, 1 = short, 2 = long) */
98 FALSE
, /* pc_relative */
100 complain_overflow_bitfield
, /* complain_on_overflow */
101 bfd_elf_generic_reloc
, /* special_function */
102 "R_FR30_32", /* name */
103 TRUE
, /* partial_inplace */
104 0x00000000, /* src_mask */
105 0xffffffff, /* dst_mask */
106 FALSE
), /* pcrel_offset */
108 /* A 32 bit into 48 bits absolute relocation. */
109 HOWTO (R_FR30_48
, /* type */
111 2, /* size (0 = byte, 1 = short, 2 = long) */
113 FALSE
, /* pc_relative */
115 complain_overflow_bitfield
, /* complain_on_overflow */
116 fr30_elf_i32_reloc
, /* special_function */
117 "R_FR30_48", /* name */
118 TRUE
, /* partial_inplace */
119 0x00000000, /* src_mask */
120 0xffffffff, /* dst_mask */
121 FALSE
), /* pcrel_offset */
123 /* A 6 bit absolute relocation. */
124 HOWTO (R_FR30_6_IN_4
, /* type */
126 1, /* size (0 = byte, 1 = short, 2 = long) */
128 FALSE
, /* pc_relative */
130 complain_overflow_unsigned
, /* complain_on_overflow */
131 bfd_elf_generic_reloc
, /* special_function */
132 "R_FR30_6_IN_4", /* name */
133 TRUE
, /* partial_inplace */
134 0x0000, /* src_mask */
135 0x00f0, /* dst_mask */
136 FALSE
), /* pcrel_offset */
138 /* An 8 bit absolute relocation. */
139 HOWTO (R_FR30_8_IN_8
, /* type */
141 1, /* size (0 = byte, 1 = short, 2 = long) */
143 FALSE
, /* pc_relative */
145 complain_overflow_signed
, /* complain_on_overflow */
146 bfd_elf_generic_reloc
,/* special_function */
147 "R_FR30_8_IN_8", /* name */
148 TRUE
, /* partial_inplace */
149 0x0000, /* src_mask */
150 0x0ff0, /* dst_mask */
151 FALSE
), /* pcrel_offset */
153 /* A 9 bit absolute relocation. */
154 HOWTO (R_FR30_9_IN_8
, /* type */
156 1, /* size (0 = byte, 1 = short, 2 = long) */
158 FALSE
, /* pc_relative */
160 complain_overflow_signed
, /* complain_on_overflow */
161 bfd_elf_generic_reloc
,/* special_function */
162 "R_FR30_9_IN_8", /* name */
163 TRUE
, /* partial_inplace */
164 0x0000, /* src_mask */
165 0x0ff0, /* dst_mask */
166 FALSE
), /* pcrel_offset */
168 /* A 10 bit absolute relocation. */
169 HOWTO (R_FR30_10_IN_8
, /* type */
171 1, /* size (0 = byte, 1 = short, 2 = long) */
173 FALSE
, /* pc_relative */
175 complain_overflow_signed
, /* complain_on_overflow */
176 bfd_elf_generic_reloc
,/* special_function */
177 "R_FR30_10_IN_8", /* name */
178 TRUE
, /* partial_inplace */
179 0x0000, /* src_mask */
180 0x0ff0, /* dst_mask */
181 FALSE
), /* pcrel_offset */
183 /* A PC relative 9 bit relocation, right shifted by 1. */
184 HOWTO (R_FR30_9_PCREL
, /* type */
186 1, /* size (0 = byte, 1 = short, 2 = long) */
188 TRUE
, /* pc_relative */
190 complain_overflow_signed
, /* complain_on_overflow */
191 bfd_elf_generic_reloc
, /* special_function */
192 "R_FR30_9_PCREL", /* name */
193 FALSE
, /* partial_inplace */
194 0x0000, /* src_mask */
195 0x00ff, /* dst_mask */
196 FALSE
), /* pcrel_offset */
198 /* A PC relative 12 bit relocation, right shifted by 1. */
199 HOWTO (R_FR30_12_PCREL
, /* type */
201 1, /* size (0 = byte, 1 = short, 2 = long) */
203 TRUE
, /* pc_relative */
205 complain_overflow_signed
, /* complain_on_overflow */
206 bfd_elf_generic_reloc
, /* special_function */
207 "R_FR30_12_PCREL", /* name */
208 FALSE
, /* partial_inplace */
209 0x0000, /* src_mask */
210 0x07ff, /* dst_mask */
211 FALSE
), /* pcrel_offset */
212 /* GNU extension to record C++ vtable hierarchy */
213 HOWTO (R_FR30_GNU_VTINHERIT
, /* type */
215 2, /* size (0 = byte, 1 = short, 2 = long) */
217 FALSE
, /* pc_relative */
219 complain_overflow_dont
, /* complain_on_overflow */
220 NULL
, /* special_function */
221 "R_FR30_GNU_VTINHERIT", /* name */
222 FALSE
, /* partial_inplace */
225 FALSE
), /* pcrel_offset */
227 /* GNU extension to record C++ vtable member usage */
228 HOWTO (R_FR30_GNU_VTENTRY
, /* type */
230 2, /* size (0 = byte, 1 = short, 2 = long) */
232 FALSE
, /* pc_relative */
234 complain_overflow_dont
, /* complain_on_overflow */
235 _bfd_elf_rel_vtable_reloc_fn
, /* special_function */
236 "R_FR30_GNU_VTENTRY", /* name */
237 FALSE
, /* partial_inplace */
240 FALSE
), /* pcrel_offset */
243 /* Utility to actually perform an R_FR30_20 reloc. */
245 static bfd_reloc_status_type
246 fr30_elf_i20_reloc (abfd
, reloc_entry
, symbol
, data
,
247 input_section
, output_bfd
, error_message
)
249 arelent
*reloc_entry
;
252 asection
*input_section
;
254 char **error_message ATTRIBUTE_UNUSED
;
259 /* This part is from bfd_elf_generic_reloc. */
260 if (output_bfd
!= (bfd
*) NULL
261 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
262 && (! reloc_entry
->howto
->partial_inplace
263 || reloc_entry
->addend
== 0))
265 reloc_entry
->address
+= input_section
->output_offset
;
269 if (output_bfd
!= NULL
)
270 /* FIXME: See bfd_perform_relocation. Is this right? */
275 + symbol
->section
->output_section
->vma
276 + symbol
->section
->output_offset
277 + reloc_entry
->addend
;
279 if (relocation
> (((bfd_vma
) 1 << 20) - 1))
280 return bfd_reloc_overflow
;
282 x
= bfd_get_32 (abfd
, (char *) data
+ reloc_entry
->address
);
283 x
= (x
& 0xff0f0000) | (relocation
& 0x0000ffff) | ((relocation
& 0x000f0000) << 4);
284 bfd_put_32 (abfd
, (bfd_vma
) x
, (char *) data
+ reloc_entry
->address
);
289 /* Utility to actually perform a R_FR30_48 reloc. */
291 static bfd_reloc_status_type
292 fr30_elf_i32_reloc (abfd
, reloc_entry
, symbol
, data
,
293 input_section
, output_bfd
, error_message
)
295 arelent
*reloc_entry
;
298 asection
*input_section
;
300 char **error_message ATTRIBUTE_UNUSED
;
304 /* This part is from bfd_elf_generic_reloc. */
305 if (output_bfd
!= (bfd
*) NULL
306 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
307 && (! reloc_entry
->howto
->partial_inplace
308 || reloc_entry
->addend
== 0))
310 reloc_entry
->address
+= input_section
->output_offset
;
314 if (output_bfd
!= NULL
)
315 /* FIXME: See bfd_perform_relocation. Is this right? */
320 + symbol
->section
->output_section
->vma
321 + symbol
->section
->output_offset
322 + reloc_entry
->addend
;
324 bfd_put_32 (abfd
, relocation
, (char *) data
+ reloc_entry
->address
+ 2);
329 /* Map BFD reloc types to FR30 ELF reloc types. */
331 struct fr30_reloc_map
333 bfd_reloc_code_real_type bfd_reloc_val
;
334 unsigned int fr30_reloc_val
;
337 static const struct fr30_reloc_map fr30_reloc_map
[] =
339 { BFD_RELOC_NONE
, R_FR30_NONE
},
340 { BFD_RELOC_8
, R_FR30_8
},
341 { BFD_RELOC_FR30_20
, R_FR30_20
},
342 { BFD_RELOC_32
, R_FR30_32
},
343 { BFD_RELOC_FR30_48
, R_FR30_48
},
344 { BFD_RELOC_FR30_6_IN_4
, R_FR30_6_IN_4
},
345 { BFD_RELOC_FR30_8_IN_8
, R_FR30_8_IN_8
},
346 { BFD_RELOC_FR30_9_IN_8
, R_FR30_9_IN_8
},
347 { BFD_RELOC_FR30_10_IN_8
, R_FR30_10_IN_8
},
348 { BFD_RELOC_FR30_9_PCREL
, R_FR30_9_PCREL
},
349 { BFD_RELOC_FR30_12_PCREL
, R_FR30_12_PCREL
},
350 { BFD_RELOC_VTABLE_INHERIT
, R_FR30_GNU_VTINHERIT
},
351 { BFD_RELOC_VTABLE_ENTRY
, R_FR30_GNU_VTENTRY
},
354 static reloc_howto_type
*
355 fr30_reloc_type_lookup (abfd
, code
)
356 bfd
*abfd ATTRIBUTE_UNUSED
;
357 bfd_reloc_code_real_type code
;
361 for (i
= sizeof (fr30_reloc_map
) / sizeof (fr30_reloc_map
[0]);
363 if (fr30_reloc_map
[i
].bfd_reloc_val
== code
)
364 return & fr30_elf_howto_table
[fr30_reloc_map
[i
].fr30_reloc_val
];
369 /* Set the howto pointer for an FR30 ELF reloc. */
372 fr30_info_to_howto_rela (abfd
, cache_ptr
, dst
)
373 bfd
*abfd ATTRIBUTE_UNUSED
;
375 Elf_Internal_Rela
*dst
;
379 r_type
= ELF32_R_TYPE (dst
->r_info
);
380 BFD_ASSERT (r_type
< (unsigned int) R_FR30_max
);
381 cache_ptr
->howto
= & fr30_elf_howto_table
[r_type
];
384 /* Perform a single relocation. By default we use the standard BFD
385 routines, but a few relocs, we have to do them ourselves. */
387 static bfd_reloc_status_type
388 fr30_final_link_relocate (howto
, input_bfd
, input_section
, contents
, rel
,
390 reloc_howto_type
*howto
;
392 asection
*input_section
;
394 Elf_Internal_Rela
*rel
;
397 bfd_reloc_status_type r
= bfd_reloc_ok
;
404 contents
+= rel
->r_offset
;
405 relocation
+= rel
->r_addend
;
407 if (relocation
> ((1 << 20) - 1))
408 return bfd_reloc_overflow
;
410 x
= bfd_get_32 (input_bfd
, contents
);
411 x
= (x
& 0xff0f0000) | (relocation
& 0x0000ffff) | ((relocation
& 0x000f0000) << 4);
412 bfd_put_32 (input_bfd
, x
, contents
);
416 contents
+= rel
->r_offset
+ 2;
417 relocation
+= rel
->r_addend
;
418 bfd_put_32 (input_bfd
, relocation
, contents
);
422 contents
+= rel
->r_offset
+ 1;
423 srel
= (bfd_signed_vma
) relocation
;
424 srel
+= rel
->r_addend
;
425 srel
-= rel
->r_offset
;
426 srel
-= 2; /* Branch instructions add 2 to the PC... */
427 srel
-= (input_section
->output_section
->vma
+
428 input_section
->output_offset
);
431 return bfd_reloc_outofrange
;
432 if (srel
> ((1 << 8) - 1) || (srel
< - (1 << 8)))
433 return bfd_reloc_overflow
;
435 bfd_put_8 (input_bfd
, srel
>> 1, contents
);
438 case R_FR30_12_PCREL
:
439 contents
+= rel
->r_offset
;
440 srel
= (bfd_signed_vma
) relocation
;
441 srel
+= rel
->r_addend
;
442 srel
-= rel
->r_offset
;
443 srel
-= 2; /* Branch instructions add 2 to the PC... */
444 srel
-= (input_section
->output_section
->vma
+
445 input_section
->output_offset
);
448 return bfd_reloc_outofrange
;
449 if (srel
> ((1 << 11) - 1) || (srel
< - (1 << 11)))
450 return bfd_reloc_overflow
;
452 x
= bfd_get_16 (input_bfd
, contents
);
453 x
= (x
& 0xf800) | ((srel
>> 1) & 0x7ff);
454 bfd_put_16 (input_bfd
, x
, contents
);
458 r
= _bfd_final_link_relocate (howto
, input_bfd
, input_section
,
459 contents
, rel
->r_offset
,
460 relocation
, rel
->r_addend
);
466 /* Relocate an FR30 ELF section.
468 The RELOCATE_SECTION function is called by the new ELF backend linker
469 to handle the relocations for a section.
471 The relocs are always passed as Rela structures; if the section
472 actually uses Rel structures, the r_addend field will always be
475 This function is responsible for adjusting the section contents as
476 necessary, and (if using Rela relocs and generating a relocatable
477 output file) adjusting the reloc addend as necessary.
479 This function does not have to worry about setting the reloc
480 address or the reloc symbol index.
482 LOCAL_SYMS is a pointer to the swapped in local symbols.
484 LOCAL_SECTIONS is an array giving the section in the input file
485 corresponding to the st_shndx field of each local symbol.
487 The global hash table entry for the global symbols can be found
488 via elf_sym_hashes (input_bfd).
490 When generating relocatable output, this function must handle
491 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
492 going to be the section symbol corresponding to the output
493 section, which means that the addend must be adjusted
497 fr30_elf_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
498 contents
, relocs
, local_syms
, local_sections
)
500 struct bfd_link_info
*info
;
502 asection
*input_section
;
504 Elf_Internal_Rela
*relocs
;
505 Elf_Internal_Sym
*local_syms
;
506 asection
**local_sections
;
508 Elf_Internal_Shdr
*symtab_hdr
;
509 struct elf_link_hash_entry
**sym_hashes
;
510 Elf_Internal_Rela
*rel
;
511 Elf_Internal_Rela
*relend
;
513 symtab_hdr
= & elf_tdata (input_bfd
)->symtab_hdr
;
514 sym_hashes
= elf_sym_hashes (input_bfd
);
515 relend
= relocs
+ input_section
->reloc_count
;
517 for (rel
= relocs
; rel
< relend
; rel
++)
519 reloc_howto_type
*howto
;
520 unsigned long r_symndx
;
521 Elf_Internal_Sym
*sym
;
523 struct elf_link_hash_entry
*h
;
525 bfd_reloc_status_type r
;
529 r_type
= ELF32_R_TYPE (rel
->r_info
);
531 if ( r_type
== R_FR30_GNU_VTINHERIT
532 || r_type
== R_FR30_GNU_VTENTRY
)
535 r_symndx
= ELF32_R_SYM (rel
->r_info
);
537 howto
= fr30_elf_howto_table
+ ELF32_R_TYPE (rel
->r_info
);
542 if (r_symndx
< symtab_hdr
->sh_info
)
544 sym
= local_syms
+ r_symndx
;
545 sec
= local_sections
[r_symndx
];
546 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
548 name
= bfd_elf_string_from_elf_section
549 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
);
550 name
= (name
== NULL
) ? bfd_section_name (input_bfd
, sec
) : name
;
554 bfd_boolean unresolved_reloc
, warned
;
556 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
557 r_symndx
, symtab_hdr
, sym_hashes
,
559 unresolved_reloc
, warned
);
561 name
= h
->root
.root
.string
;
564 if (sec
!= NULL
&& elf_discarded_section (sec
))
566 /* For relocs against symbols from removed linkonce sections,
567 or sections discarded by a linker script, we just want the
568 section contents zeroed. Avoid any special processing. */
569 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
575 if (info
->relocatable
)
578 r
= fr30_final_link_relocate (howto
, input_bfd
, input_section
,
579 contents
, rel
, relocation
);
581 if (r
!= bfd_reloc_ok
)
583 const char * msg
= (const char *) NULL
;
587 case bfd_reloc_overflow
:
588 r
= info
->callbacks
->reloc_overflow
589 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
590 (bfd_vma
) 0, input_bfd
, input_section
, rel
->r_offset
);
593 case bfd_reloc_undefined
:
594 r
= info
->callbacks
->undefined_symbol
595 (info
, name
, input_bfd
, input_section
, rel
->r_offset
,
599 case bfd_reloc_outofrange
:
600 msg
= _("internal error: out of range error");
603 case bfd_reloc_notsupported
:
604 msg
= _("internal error: unsupported relocation error");
607 case bfd_reloc_dangerous
:
608 msg
= _("internal error: dangerous relocation");
612 msg
= _("internal error: unknown error");
617 r
= info
->callbacks
->warning
618 (info
, msg
, name
, input_bfd
, input_section
, rel
->r_offset
);
628 /* Return the section that should be marked against GC for a given
632 fr30_elf_gc_mark_hook (asection
*sec
,
633 struct bfd_link_info
*info
,
634 Elf_Internal_Rela
*rel
,
635 struct elf_link_hash_entry
*h
,
636 Elf_Internal_Sym
*sym
)
639 switch (ELF32_R_TYPE (rel
->r_info
))
641 case R_FR30_GNU_VTINHERIT
:
642 case R_FR30_GNU_VTENTRY
:
646 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
649 /* Look through the relocs for a section during the first phase.
650 Since we don't do .gots or .plts, we just need to consider the
651 virtual table relocs for gc. */
654 fr30_elf_check_relocs (abfd
, info
, sec
, relocs
)
656 struct bfd_link_info
*info
;
658 const Elf_Internal_Rela
*relocs
;
660 Elf_Internal_Shdr
*symtab_hdr
;
661 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
662 const Elf_Internal_Rela
*rel
;
663 const Elf_Internal_Rela
*rel_end
;
665 if (info
->relocatable
)
668 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
669 sym_hashes
= elf_sym_hashes (abfd
);
670 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
671 if (!elf_bad_symtab (abfd
))
672 sym_hashes_end
-= symtab_hdr
->sh_info
;
674 rel_end
= relocs
+ sec
->reloc_count
;
675 for (rel
= relocs
; rel
< rel_end
; rel
++)
677 struct elf_link_hash_entry
*h
;
678 unsigned long r_symndx
;
680 r_symndx
= ELF32_R_SYM (rel
->r_info
);
681 if (r_symndx
< symtab_hdr
->sh_info
)
685 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
686 while (h
->root
.type
== bfd_link_hash_indirect
687 || h
->root
.type
== bfd_link_hash_warning
)
688 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
691 switch (ELF32_R_TYPE (rel
->r_info
))
693 /* This relocation describes the C++ object vtable hierarchy.
694 Reconstruct it for later use during GC. */
695 case R_FR30_GNU_VTINHERIT
:
696 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
700 /* This relocation describes which C++ vtable entries are actually
701 used. Record for later use during GC. */
702 case R_FR30_GNU_VTENTRY
:
703 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
712 #define ELF_ARCH bfd_arch_fr30
713 #define ELF_MACHINE_CODE EM_FR30
714 #define ELF_MACHINE_ALT1 EM_CYGNUS_FR30
715 #define ELF_MAXPAGESIZE 0x1000
717 #define TARGET_BIG_SYM bfd_elf32_fr30_vec
718 #define TARGET_BIG_NAME "elf32-fr30"
720 #define elf_info_to_howto_rel NULL
721 #define elf_info_to_howto fr30_info_to_howto_rela
722 #define elf_backend_relocate_section fr30_elf_relocate_section
723 #define elf_backend_gc_mark_hook fr30_elf_gc_mark_hook
724 #define elf_backend_check_relocs fr30_elf_check_relocs
726 #define elf_backend_can_gc_sections 1
727 #define elf_backend_rela_normal 1
729 #define bfd_elf32_bfd_reloc_type_lookup fr30_reloc_type_lookup
731 #include "elf32-target.h"