1 /* Generic support for 32-bit ELF
2 Copyright 1993, 1995, 1998, 1999, 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. */
26 static reloc_howto_type
*elf32_h8_reloc_type_lookup
27 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
28 static void elf32_h8_info_to_howto
29 PARAMS ((bfd
*, arelent
*, Elf_Internal_Rela
*));
30 static void elf32_h8_info_to_howto_rel
31 PARAMS ((bfd
*, arelent
*, Elf32_Internal_Rel
*));
32 static unsigned long elf32_h8_mach
34 static void elf32_h8_final_write_processing
35 PARAMS ((bfd
*, boolean
));
36 static boolean elf32_h8_object_p
38 static boolean elf32_h8_merge_private_bfd_data
39 PARAMS ((bfd
*, bfd
*));
40 static boolean elf32_h8_relax_section
41 PARAMS ((bfd
*, asection
*, struct bfd_link_info
*, boolean
*));
42 static boolean elf32_h8_relax_delete_bytes
43 PARAMS ((bfd
*, asection
*, bfd_vma
, int));
44 static boolean elf32_h8_symbol_address_p
45 PARAMS ((bfd
*, asection
*, bfd_vma
));
46 static bfd_byte
*elf32_h8_get_relocated_section_contents
47 PARAMS ((bfd
*, struct bfd_link_info
*, struct bfd_link_order
*,
48 bfd_byte
*, boolean
, asymbol
**));
49 static bfd_reloc_status_type elf32_h8_final_link_relocate
50 PARAMS ((unsigned long, bfd
*, bfd
*, asection
*,
51 bfd_byte
*, bfd_vma
, bfd_vma
, bfd_vma
,
52 struct bfd_link_info
*, asection
*, int));
53 static boolean elf32_h8_relocate_section
54 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*,
55 bfd_byte
*, Elf_Internal_Rela
*,
56 Elf_Internal_Sym
*, asection
**));
57 static bfd_reloc_status_type special
58 PARAMS ((bfd
*, arelent
*, asymbol
*, PTR
, asection
*, bfd
*, char **));
60 /* This does not include any relocation information, but should be
61 good enough for GDB or objdump to read the file. */
63 static reloc_howto_type h8_elf_howto_table
[] =
66 HOWTO (R_H8_NONE
, /* type */
68 0, /* size (0 = byte, 1 = short, 2 = long) */
70 false, /* pc_relative */
72 complain_overflow_dont
, /* complain_on_overflow */
73 special
, /* special_function */
74 "R_H8_NONE", /* name */
75 false, /* partial_inplace */
78 false), /* pcrel_offset */
79 #define R_H8_DIR32_X (R_H8_NONE_X + 1)
80 HOWTO (R_H8_DIR32
, /* type */
82 2, /* size (0 = byte, 1 = short, 2 = long) */
84 false, /* pc_relative */
86 complain_overflow_dont
, /* complain_on_overflow */
87 special
, /* special_function */
88 "R_H8_DIR32", /* name */
89 false, /* partial_inplace */
91 0xffffffff, /* dst_mask */
92 false), /* pcrel_offset */
93 #define R_H8_DIR16_X (R_H8_DIR32_X + 1)
94 HOWTO (R_H8_DIR16
, /* type */
96 1, /* size (0 = byte, 1 = short, 2 = long) */
98 false, /* pc_relative */
100 complain_overflow_dont
, /* complain_on_overflow */
101 special
, /* special_function */
102 "R_H8_DIR16", /* name */
103 false, /* partial_inplace */
105 0x0000ffff, /* dst_mask */
106 false), /* pcrel_offset */
107 #define R_H8_DIR8_X (R_H8_DIR16_X + 1)
108 HOWTO (R_H8_DIR8
, /* type */
110 0, /* size (0 = byte, 1 = short, 2 = long) */
112 false, /* pc_relative */
114 complain_overflow_dont
, /* complain_on_overflow */
115 special
, /* special_function */
116 "R_H8_DIR16", /* name */
117 false, /* partial_inplace */
119 0x000000ff, /* dst_mask */
120 false), /* pcrel_offset */
121 #define R_H8_DIR16A8_X (R_H8_DIR8_X + 1)
122 HOWTO (R_H8_DIR16A8
, /* type */
124 1, /* size (0 = byte, 1 = short, 2 = long) */
126 false, /* pc_relative */
128 complain_overflow_bitfield
, /* complain_on_overflow */
129 special
, /* special_function */
130 "R_H8_DIR16A8", /* name */
131 false, /* partial_inplace */
133 0x0000ffff, /* dst_mask */
134 false), /* pcrel_offset */
135 #define R_H8_DIR16R8_X (R_H8_DIR16A8_X + 1)
136 HOWTO (R_H8_DIR16R8
, /* type */
138 1, /* size (0 = byte, 1 = short, 2 = long) */
140 false, /* pc_relative */
142 complain_overflow_bitfield
, /* complain_on_overflow */
143 special
, /* special_function */
144 "R_H8_DIR16R8", /* name */
145 false, /* partial_inplace */
147 0x0000ffff, /* dst_mask */
148 false), /* pcrel_offset */
149 #define R_H8_DIR24A8_X (R_H8_DIR16R8_X + 1)
150 HOWTO (R_H8_DIR24A8
, /* type */
152 2, /* size (0 = byte, 1 = short, 2 = long) */
154 false, /* pc_relative */
156 complain_overflow_bitfield
, /* complain_on_overflow */
157 special
, /* special_function */
158 "R_H8_DIR24A8", /* name */
159 true, /* partial_inplace */
160 0xff000000, /* src_mask */
161 0x00ffffff, /* dst_mask */
162 false), /* pcrel_offset */
163 #define R_H8_DIR24R8_X (R_H8_DIR24A8_X + 1)
164 HOWTO (R_H8_DIR24R8
, /* type */
166 2, /* size (0 = byte, 1 = short, 2 = long) */
168 false, /* pc_relative */
170 complain_overflow_bitfield
, /* complain_on_overflow */
171 special
, /* special_function */
172 "R_H8_DIR24R8", /* name */
173 true, /* partial_inplace */
174 0xff000000, /* src_mask */
175 0x00ffffff, /* dst_mask */
176 false), /* pcrel_offset */
177 #define R_H8_DIR32A16_X (R_H8_DIR24R8_X + 1)
178 HOWTO (R_H8_DIR32A16
, /* type */
180 2, /* size (0 = byte, 1 = short, 2 = long) */
182 false, /* pc_relative */
184 complain_overflow_dont
, /* complain_on_overflow */
185 special
, /* special_function */
186 "R_H8_DIR32", /* name */
187 false, /* partial_inplace */
189 0xffffffff, /* dst_mask */
190 false), /* pcrel_offset */
191 #define R_H8_PCREL16_X (R_H8_DIR32A16_X + 1)
192 HOWTO (R_H8_PCREL16
, /* type */
194 1, /* size (0 = byte, 1 = short, 2 = long) */
196 true, /* pc_relative */
198 complain_overflow_signed
, /* complain_on_overflow */
199 special
, /* special_function */
200 "R_H8_PCREL16", /* name */
201 false, /* partial_inplace */
202 0xffff, /* src_mask */
203 0xffff, /* dst_mask */
204 true), /* pcrel_offset */
205 #define R_H8_PCREL8_X (R_H8_PCREL16_X + 1)
206 HOWTO (R_H8_PCREL8
, /* type */
208 0, /* size (0 = byte, 1 = short, 2 = long) */
210 true, /* pc_relative */
212 complain_overflow_signed
, /* complain_on_overflow */
213 special
, /* special_function */
214 "R_H8_PCREL8", /* name */
215 false, /* partial_inplace */
218 true), /* pcrel_offset */
221 /* This structure is used to map BFD reloc codes to H8 ELF relocs. */
225 bfd_reloc_code_real_type bfd_reloc_val
;
226 unsigned char howto_index
;
229 /* An array mapping BFD reloc codes to SH ELF relocs. */
231 static const struct elf_reloc_map h8_reloc_map
[] =
233 { BFD_RELOC_NONE
, R_H8_NONE_X
},
234 { BFD_RELOC_32
, R_H8_DIR32_X
},
235 { BFD_RELOC_16
, R_H8_DIR16_X
},
236 { BFD_RELOC_8
, R_H8_DIR8_X
},
237 { BFD_RELOC_H8_DIR16A8
, R_H8_DIR16A8_X
},
238 { BFD_RELOC_H8_DIR16R8
, R_H8_DIR16R8_X
},
239 { BFD_RELOC_H8_DIR24A8
, R_H8_DIR24A8_X
},
240 { BFD_RELOC_H8_DIR24R8
, R_H8_DIR24R8_X
},
241 { BFD_RELOC_H8_DIR32A16
, R_H8_DIR32A16_X
},
242 { BFD_RELOC_16_PCREL
, R_H8_PCREL16_X
},
243 { BFD_RELOC_8_PCREL
, R_H8_PCREL8_X
},
247 static reloc_howto_type
*
248 elf32_h8_reloc_type_lookup (abfd
, code
)
249 bfd
*abfd ATTRIBUTE_UNUSED
;
250 bfd_reloc_code_real_type code
;
254 for (i
= 0; i
< sizeof (h8_reloc_map
) / sizeof (struct elf_reloc_map
); i
++)
256 if (h8_reloc_map
[i
].bfd_reloc_val
== code
)
257 return &h8_elf_howto_table
[(int) h8_reloc_map
[i
].howto_index
];
263 elf32_h8_info_to_howto (abfd
, bfd_reloc
, elf_reloc
)
264 bfd
*abfd ATTRIBUTE_UNUSED
;
266 Elf32_Internal_Rela
*elf_reloc
;
271 r
= ELF32_R_TYPE (elf_reloc
->r_info
);
272 for (i
= 0; i
< sizeof (h8_elf_howto_table
) / sizeof (reloc_howto_type
); i
++)
273 if (h8_elf_howto_table
[i
].type
== r
)
275 bfd_reloc
->howto
= &h8_elf_howto_table
[i
];
282 elf32_h8_info_to_howto_rel (abfd
, bfd_reloc
, elf_reloc
)
283 bfd
*abfd ATTRIBUTE_UNUSED
;
285 Elf32_Internal_Rel
*elf_reloc ATTRIBUTE_UNUSED
;
290 r
= ELF32_R_TYPE (elf_reloc
->r_info
);
291 bfd_reloc
->howto
= &h8_elf_howto_table
[r
];
294 /* Special handling for H8/300 relocs.
295 We only come here for pcrel stuff and return normally if not an -r link.
296 When doing -r, we can't do any arithmetic for the pcrel stuff, because
297 we support relaxing on the H8/300 series chips. */
298 static bfd_reloc_status_type
299 special (abfd
, reloc_entry
, symbol
, data
, input_section
, output_bfd
,
301 bfd
*abfd ATTRIBUTE_UNUSED
;
302 arelent
*reloc_entry ATTRIBUTE_UNUSED
;
303 asymbol
*symbol ATTRIBUTE_UNUSED
;
304 PTR data ATTRIBUTE_UNUSED
;
305 asection
*input_section ATTRIBUTE_UNUSED
;
307 char **error_message ATTRIBUTE_UNUSED
;
309 if (output_bfd
== (bfd
*) NULL
)
310 return bfd_reloc_continue
;
312 /* Adjust the reloc address to that in the output section. */
313 reloc_entry
->address
+= input_section
->output_offset
;
317 /* Perform a relocation as part of a final link. */
318 static bfd_reloc_status_type
319 elf32_h8_final_link_relocate (r_type
, input_bfd
, output_bfd
,
320 input_section
, contents
, offset
, value
,
321 addend
, info
, sym_sec
, is_local
)
322 unsigned long r_type
;
324 bfd
*output_bfd ATTRIBUTE_UNUSED
;
325 asection
*input_section ATTRIBUTE_UNUSED
;
330 struct bfd_link_info
*info ATTRIBUTE_UNUSED
;
331 asection
*sym_sec ATTRIBUTE_UNUSED
;
332 int is_local ATTRIBUTE_UNUSED
;
334 bfd_byte
*hit_data
= contents
+ offset
;
346 bfd_put_32 (input_bfd
, value
, hit_data
);
353 bfd_put_16 (input_bfd
, value
, hit_data
);
360 bfd_put_8 (input_bfd
, value
, hit_data
);
366 /* HIT_DATA is the address for the first byte for the relocated
367 value. Subtract 1 so that we can manipulate the data in 32bit
371 /* Clear out the top byte in value. */
374 /* Retrieve the type byte for value from the section contents. */
375 value
|= (bfd_get_32 (input_bfd
, hit_data
) & 0xff000000);
377 /* Now scribble it out in one 32bit hunk. */
378 bfd_put_32 (input_bfd
, value
, hit_data
);
382 value
-= (input_section
->output_section
->vma
383 + input_section
->output_offset
);
387 /* The value is relative to the start of the instruction,
388 not the relocation offset. Subtract 2 to account for
392 bfd_put_16 (input_bfd
, value
, hit_data
);
396 value
-= (input_section
->output_section
->vma
397 + input_section
->output_offset
);
401 /* The value is relative to the start of the instruction,
402 not the relocation offset. Subtract 1 to account for
406 bfd_put_8 (input_bfd
, value
, hit_data
);
410 return bfd_reloc_notsupported
;
414 /* Relocate an H8 ELF section. */
416 elf32_h8_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
417 contents
, relocs
, local_syms
, local_sections
)
419 struct bfd_link_info
*info
;
421 asection
*input_section
;
423 Elf_Internal_Rela
*relocs
;
424 Elf_Internal_Sym
*local_syms
;
425 asection
**local_sections
;
427 Elf_Internal_Shdr
*symtab_hdr
;
428 struct elf_link_hash_entry
**sym_hashes
;
429 Elf_Internal_Rela
*rel
, *relend
;
431 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
432 sym_hashes
= elf_sym_hashes (input_bfd
);
435 relend
= relocs
+ input_section
->reloc_count
;
436 for (; rel
< relend
; rel
++)
439 unsigned long r_symndx
;
440 Elf_Internal_Sym
*sym
;
442 struct elf_link_hash_entry
*h
;
444 bfd_reloc_status_type r
;
446 r_symndx
= ELF32_R_SYM (rel
->r_info
);
447 r_type
= ELF32_R_TYPE (rel
->r_info
);
449 if (info
->relocateable
)
451 /* This is a relocateable link. We don't have to change
452 anything, unless the reloc is against a section symbol,
453 in which case we have to adjust according to where the
454 section symbol winds up in the output section. */
455 if (r_symndx
< symtab_hdr
->sh_info
)
457 sym
= local_syms
+ r_symndx
;
458 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
460 sec
= local_sections
[r_symndx
];
461 rel
->r_addend
+= sec
->output_offset
+ sym
->st_value
;
468 /* This is a final link. */
472 if (r_symndx
< symtab_hdr
->sh_info
)
474 sym
= local_syms
+ r_symndx
;
475 sec
= local_sections
[r_symndx
];
476 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, sec
, rel
);
480 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
481 while (h
->root
.type
== bfd_link_hash_indirect
482 || h
->root
.type
== bfd_link_hash_warning
)
483 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
484 if (h
->root
.type
== bfd_link_hash_defined
485 || h
->root
.type
== bfd_link_hash_defweak
)
487 sec
= h
->root
.u
.def
.section
;
488 relocation
= (h
->root
.u
.def
.value
489 + sec
->output_section
->vma
490 + sec
->output_offset
);
492 else if (h
->root
.type
== bfd_link_hash_undefweak
)
496 if (! ((*info
->callbacks
->undefined_symbol
)
497 (info
, h
->root
.root
.string
, input_bfd
,
498 input_section
, rel
->r_offset
, true)))
504 r
= elf32_h8_final_link_relocate (r_type
, input_bfd
, output_bfd
,
506 contents
, rel
->r_offset
,
507 relocation
, rel
->r_addend
,
508 info
, sec
, h
== NULL
);
510 if (r
!= bfd_reloc_ok
)
513 const char *msg
= (const char *) 0;
515 reloc_howto_type
*howto
;
517 elf32_h8_info_to_howto (input_bfd
, &bfd_reloc
, rel
);
518 howto
= bfd_reloc
.howto
;
521 name
= h
->root
.root
.string
;
524 name
= (bfd_elf_string_from_elf_section
525 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
526 if (name
== NULL
|| *name
== '\0')
527 name
= bfd_section_name (input_bfd
, sec
);
532 case bfd_reloc_overflow
:
533 if (! ((*info
->callbacks
->reloc_overflow
)
534 (info
, name
, howto
->name
, (bfd_vma
) 0,
535 input_bfd
, input_section
, rel
->r_offset
)))
539 case bfd_reloc_undefined
:
540 if (! ((*info
->callbacks
->undefined_symbol
)
541 (info
, name
, input_bfd
, input_section
,
542 rel
->r_offset
, true)))
546 case bfd_reloc_outofrange
:
547 msg
= _("internal error: out of range error");
550 case bfd_reloc_notsupported
:
551 msg
= _("internal error: unsupported relocation error");
554 case bfd_reloc_dangerous
:
555 msg
= _("internal error: dangerous error");
559 msg
= _("internal error: unknown error");
563 if (!((*info
->callbacks
->warning
)
564 (info
, msg
, name
, input_bfd
, input_section
,
575 /* Object files encode the specific H8 model they were compiled
576 for in the ELF flags field.
578 Examine that field and return the proper BFD machine type for
581 elf32_h8_mach (flags
)
584 switch (flags
& EF_H8_MACH
)
586 case E_H8_MACH_H8300
:
588 return bfd_mach_h8300
;
590 case E_H8_MACH_H8300H
:
591 return bfd_mach_h8300h
;
593 case E_H8_MACH_H8300S
:
594 return bfd_mach_h8300s
;
598 /* The final processing done just before writing out a H8 ELF object
599 file. We use this opportunity to encode the BFD machine type
600 into the flags field in the object file. */
603 elf32_h8_final_write_processing (abfd
, linker
)
605 boolean linker ATTRIBUTE_UNUSED
;
609 switch (bfd_get_mach (abfd
))
613 val
= E_H8_MACH_H8300
;
616 case bfd_mach_h8300h
:
617 val
= E_H8_MACH_H8300H
;
620 case bfd_mach_h8300s
:
621 val
= E_H8_MACH_H8300S
;
625 elf_elfheader (abfd
)->e_flags
&= ~ (EF_H8_MACH
);
626 elf_elfheader (abfd
)->e_flags
|= val
;
629 /* Return nonzero if ABFD represents a valid H8 ELF object file; also
630 record the encoded machine type found in the ELF flags. */
633 elf32_h8_object_p (abfd
)
636 bfd_default_set_arch_mach (abfd
, bfd_arch_h8300
,
637 elf32_h8_mach (elf_elfheader (abfd
)->e_flags
));
641 /* Merge backend specific data from an object file to the output
642 object file when linking. The only data we need to copy at this
643 time is the architecture/machine information. */
646 elf32_h8_merge_private_bfd_data (ibfd
, obfd
)
650 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
651 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
654 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
655 && bfd_get_mach (obfd
) < bfd_get_mach (ibfd
))
657 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
658 bfd_get_mach (ibfd
)))
665 /* This function handles relaxing for the H8..
667 There's a few relaxing opportunites available on the H8:
669 jmp/jsr:24 -> bra/bsr:8 2 bytes
670 The jmp may be completely eliminated if the previous insn is a
671 conditional branch to the insn after the jump. In that case
672 we invert the branch and delete the jump and save 4 bytes.
674 bCC:16 -> bCC:8 2 bytes
675 bsr:16 -> bsr:8 2 bytes
677 mov.b:16 -> mov.b:8 2 bytes
678 mov.b:24/32 -> mov.b:8 4 bytes
680 mov.[bwl]:24/32 -> mov.[bwl]:16 2 bytes
686 elf32_h8_relax_section (abfd
, sec
, link_info
, again
)
689 struct bfd_link_info
*link_info
;
692 Elf_Internal_Shdr
*symtab_hdr
;
693 Elf_Internal_Shdr
*shndx_hdr
;
694 Elf_Internal_Rela
*internal_relocs
;
695 Elf_Internal_Rela
*free_relocs
= NULL
;
696 Elf_Internal_Rela
*irel
, *irelend
;
697 bfd_byte
*contents
= NULL
;
698 bfd_byte
*free_contents
= NULL
;
699 Elf32_External_Sym
*extsyms
= NULL
;
700 Elf32_External_Sym
*free_extsyms
= NULL
;
701 Elf_External_Sym_Shndx
*shndx_buf
= NULL
;
702 static asection
*last_input_section
= NULL
;
703 static Elf_Internal_Rela
*last_reloc
= NULL
;
705 /* Assume nothing changes. */
708 /* We don't have to do anything for a relocateable link, if
709 this section does not have relocs, or if this is not a
711 if (link_info
->relocateable
712 || (sec
->flags
& SEC_RELOC
) == 0
713 || sec
->reloc_count
== 0
714 || (sec
->flags
& SEC_CODE
) == 0)
717 /* If this is the first time we have been called for this section,
718 initialize the cooked size. */
719 if (sec
->_cooked_size
== 0)
720 sec
->_cooked_size
= sec
->_raw_size
;
722 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
723 shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
725 /* Get a copy of the native relocations. */
726 internal_relocs
= (_bfd_elf32_link_read_relocs
727 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
728 link_info
->keep_memory
));
729 if (internal_relocs
== NULL
)
731 if (! link_info
->keep_memory
)
732 free_relocs
= internal_relocs
;
734 if (sec
!= last_input_section
)
737 last_input_section
= sec
;
739 /* Walk through the relocs looking for relaxing opportunities. */
740 irelend
= internal_relocs
+ sec
->reloc_count
;
741 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
745 /* Keep track of the previous reloc so that we can delete
746 some long jumps created by the compiler. */
747 if (irel
!= internal_relocs
)
748 last_reloc
= irel
- 1;
750 /* Get the section contents if we haven't done so already. */
751 if (contents
== NULL
)
753 /* Get cached copy if it exists. */
754 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
755 contents
= elf_section_data (sec
)->this_hdr
.contents
;
758 /* Go get them off disk. */
759 contents
= (bfd_byte
*) bfd_malloc (sec
->_raw_size
);
760 if (contents
== NULL
)
762 free_contents
= contents
;
764 if (! bfd_get_section_contents (abfd
, sec
, contents
,
765 (file_ptr
) 0, sec
->_raw_size
))
770 /* Read this BFD's local symbols if we haven't done so already. */
773 /* Get cached copy if it exists. */
774 if (symtab_hdr
->contents
!= NULL
)
775 extsyms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
778 /* Go get them off disk. */
781 amt
= symtab_hdr
->sh_info
* sizeof (Elf32_External_Sym
);
782 extsyms
= (Elf32_External_Sym
*) bfd_malloc (amt
);
785 free_extsyms
= extsyms
;
786 if (bfd_seek (abfd
, symtab_hdr
->sh_offset
, SEEK_SET
) != 0
787 || bfd_bread ((PTR
) extsyms
, amt
, abfd
) != amt
)
789 symtab_hdr
->contents
= (PTR
) extsyms
;
792 if (shndx_hdr
->sh_size
!= 0)
796 amt
= symtab_hdr
->sh_info
* sizeof (Elf_External_Sym_Shndx
);
797 shndx_buf
= (Elf_External_Sym_Shndx
*) bfd_malloc (amt
);
798 if (shndx_buf
== NULL
)
800 if (bfd_seek (abfd
, shndx_hdr
->sh_offset
, SEEK_SET
) != 0
801 || bfd_bread ((PTR
) shndx_buf
, amt
, abfd
) != amt
)
803 shndx_hdr
->contents
= (PTR
) shndx_buf
;
807 /* Get the value of the symbol referred to by the reloc. */
808 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
810 Elf32_External_Sym
*esym
;
811 Elf_External_Sym_Shndx
*shndx
;
812 Elf_Internal_Sym isym
;
815 /* A local symbol. */
816 esym
= extsyms
+ ELF32_R_SYM (irel
->r_info
);
817 shndx
= shndx_buf
+ (shndx_buf
? ELF32_R_SYM (irel
->r_info
) : 0);
818 bfd_elf32_swap_symbol_in (abfd
, esym
, shndx
, &isym
);
820 sym_sec
= bfd_section_from_elf_index (abfd
, isym
.st_shndx
);
821 symval
= (isym
.st_value
822 + sym_sec
->output_section
->vma
823 + sym_sec
->output_offset
);
828 struct elf_link_hash_entry
*h
;
830 /* An external symbol. */
831 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
832 h
= elf_sym_hashes (abfd
)[indx
];
833 BFD_ASSERT (h
!= NULL
);
834 if (h
->root
.type
!= bfd_link_hash_defined
835 && h
->root
.type
!= bfd_link_hash_defweak
)
837 /* This appears to be a reference to an undefined
838 symbol. Just ignore it--it will be caught by the
839 regular reloc processing. */
843 symval
= (h
->root
.u
.def
.value
844 + h
->root
.u
.def
.section
->output_section
->vma
845 + h
->root
.u
.def
.section
->output_offset
);
848 /* For simplicity of coding, we are going to modify the section
849 contents, the section relocs, and the BFD symbol table. We
850 must tell the rest of the code not to free up this
851 information. It would be possible to instead create a table
852 of changes which have to be made, as is done in coff-mips.c;
853 that would be more work, but would require less memory when
854 the linker is run. */
855 switch (ELF32_R_TYPE (irel
->r_info
))
857 /* Try to turn a 24 bit absolute branch/call into an 8 bit
858 pc-relative branch/call. */
861 bfd_vma value
= symval
+ irel
->r_addend
;
864 /* Get the address of this instruction. */
865 dot
= (sec
->output_section
->vma
866 + sec
->output_offset
+ irel
->r_offset
- 1);
868 /* Compute the distance from this insn to the branch target. */
871 /* If the distance is within -126..+130 inclusive, then we can
872 relax this jump. +130 is valid since the target will move
873 two bytes closer if we do relax this branch. */
874 if ((int) gap
>= -126 && (int) gap
<= 130)
878 /* Note that we've changed the relocs, section contents,
880 elf_section_data (sec
)->relocs
= internal_relocs
;
883 elf_section_data (sec
)->this_hdr
.contents
= contents
;
884 free_contents
= NULL
;
888 /* If the previous instruction conditionally jumped around
889 this instruction, we may be able to reverse the condition
890 and redirect the previous instruction to the target of
893 Such sequences are used by the compiler to deal with
894 long conditional branches. */
898 && ELF32_R_TYPE (last_reloc
->r_info
) == R_H8_PCREL8
899 && ELF32_R_SYM (last_reloc
->r_info
) < symtab_hdr
->sh_info
)
901 Elf32_External_Sym
*esym
;
902 Elf_External_Sym_Shndx
*shndx
;
904 asection
*last_sym_sec
;
905 Elf_Internal_Sym last_symbol
;
907 /* We will need to examine the symbol used by the
908 previous relocation. */
910 esym
= extsyms
+ ELF32_R_SYM (last_reloc
->r_info
);
913 shndx
+= ELF32_R_SYM (last_reloc
->r_info
);
914 bfd_elf32_swap_symbol_in (abfd
, esym
, shndx
, &last_symbol
);
917 = bfd_section_from_elf_index (abfd
, last_symbol
.st_shndx
);
918 last_value
= (last_symbol
.st_value
919 + last_sym_sec
->output_section
->vma
920 + last_sym_sec
->output_offset
);
922 /* Verify that the previous relocation was for a
923 branch around this instruction and that no symbol
924 exists at the current location. */
925 if (last_value
== dot
+ 4
926 && last_reloc
->r_offset
+ 2 == irel
->r_offset
927 && ! elf32_h8_symbol_address_p (abfd
, sec
, dot
))
929 /* We can eliminate this jump. Twiddle the
930 previous relocation as necessary. */
932 = ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
933 ELF32_R_TYPE (R_H8_NONE
));
936 = ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
937 ELF32_R_TYPE (R_H8_PCREL8
));
938 last_reloc
->r_addend
= irel
->r_addend
;
941 code
= bfd_get_8 (abfd
,
942 contents
+ last_reloc
->r_offset
- 1);
946 contents
+ last_reloc
->r_offset
- 1);
948 /* Delete four bytes of data. */
949 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
959 /* We could not eliminate this jump, so just shorten it. */
960 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
963 bfd_put_8 (abfd
, 0x55, contents
+ irel
->r_offset
- 1);
964 else if (code
== 0x5a)
965 bfd_put_8 (abfd
, 0x40, contents
+ irel
->r_offset
- 1);
969 /* Fix the relocation's type. */
970 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
973 /* Delete two bytes of data. */
974 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
975 irel
->r_offset
+ 1, 2))
978 /* That will change things, so, we should relax again.
979 Note that this is not required, and it may be slow. */
985 /* Try to turn a 16bit pc-relative branch into a 8bit pc-relative
989 bfd_vma value
= symval
+ irel
->r_addend
;
993 /* Get the address of this instruction. */
994 dot
= (sec
->output_section
->vma
996 + irel
->r_offset
- 2);
1000 /* If the distance is within -126..+130 inclusive, then we can
1001 relax this jump. +130 is valid since the target will move
1002 two bytes closer if we do relax this branch. */
1003 if ((int)gap
>= -126 && (int)gap
<= 130)
1007 /* Note that we've changed the relocs, section contents,
1009 elf_section_data (sec
)->relocs
= internal_relocs
;
1012 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1013 free_contents
= NULL
;
1015 free_extsyms
= NULL
;
1017 /* Get the opcode. */
1018 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1022 /* bCC:16 -> bCC:8 */
1023 /* Get the condition code from the original insn. */
1024 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1028 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
1030 else if (code
== 0x5c)
1031 bfd_put_8 (abfd
, 0x55, contents
+ irel
->r_offset
- 2);
1035 /* Fix the relocation's type. */
1036 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1040 /* Delete two bytes of data. */
1041 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1042 irel
->r_offset
+ 1, 2))
1045 /* That will change things, so, we should relax again.
1046 Note that this is not required, and it may be slow. */
1052 /* This is a 16 bit absolute address in a "mov.b" insn, which may
1053 become an 8 bit absolute address if its in the right range. */
1056 bfd_vma value
= symval
+ irel
->r_addend
;
1058 if ((bfd_get_mach (abfd
) == bfd_mach_h8300
1061 || ((bfd_get_mach (abfd
) == bfd_mach_h8300h
1062 || bfd_get_mach (abfd
) == bfd_mach_h8300s
)
1063 && value
>= 0xffff00
1064 && value
<= 0xffffff))
1068 /* Note that we've changed the relocs, section contents,
1070 elf_section_data (sec
)->relocs
= internal_relocs
;
1073 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1074 free_contents
= NULL
;
1076 free_extsyms
= NULL
;
1078 /* Get the opcode. */
1079 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1085 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1087 if ((code
& 0xf0) == 0x00)
1089 (code
& 0xf) | 0x20,
1090 contents
+ irel
->r_offset
- 2);
1091 else if ((code
& 0xf0) == 0x80)
1093 (code
& 0xf) | 0x30,
1094 contents
+ irel
->r_offset
- 2);
1098 /* Fix the relocation's type. */
1099 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1102 /* Delete two bytes of data. */
1103 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1104 irel
->r_offset
+ 1, 2))
1107 /* That will change things, so, we should relax again.
1108 Note that this is not required, and it may be slow. */
1114 /* This is a 24 bit absolute address in a "mov.b" insn, which may
1115 become an 8 bit absolute address if its in the right range. */
1118 bfd_vma value
= symval
+ irel
->r_addend
;
1120 if ((bfd_get_mach (abfd
) == bfd_mach_h8300
1123 || ((bfd_get_mach (abfd
) == bfd_mach_h8300h
1124 || bfd_get_mach (abfd
) == bfd_mach_h8300s
)
1125 && value
>= 0xffff00
1126 && value
<= 0xffffff))
1130 /* Note that we've changed the relocs, section contents,
1132 elf_section_data (sec
)->relocs
= internal_relocs
;
1135 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1136 free_contents
= NULL
;
1138 free_extsyms
= NULL
;
1140 /* Get the opcode. */
1141 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1147 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1149 if ((code
& 0xf0) == 0x00)
1151 (code
& 0xf) | 0x20,
1152 contents
+ irel
->r_offset
- 2);
1153 else if ((code
& 0xf0) == 0x80)
1155 (code
& 0xf) | 0x30,
1156 contents
+ irel
->r_offset
- 2);
1160 /* Fix the relocation's type. */
1161 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1164 /* Delete two bytes of data. */
1165 if (!elf32_h8_relax_delete_bytes (abfd
, sec
, irel
->r_offset
, 2))
1168 /* That will change things, so, we should relax again.
1169 Note that this is not required, and it may be slow. */
1176 /* This is a 24/32bit absolute address in a "mov" insn, which may
1177 become a 16bit absoulte address if it is in the right range. */
1180 bfd_vma value
= symval
+ irel
->r_addend
;
1182 if (value
<= 0x7fff || value
>= 0xff8000)
1186 /* Note that we've changed the relocs, section contents,
1188 elf_section_data (sec
)->relocs
= internal_relocs
;
1191 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1192 free_contents
= NULL
;
1194 free_extsyms
= NULL
;
1196 /* Get the opcode. */
1197 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1199 /* We just need to turn off bit 0x20. */
1202 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
1204 /* Fix the relocation's type. */
1205 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1208 /* Delete two bytes of data. */
1209 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1210 irel
->r_offset
+ 1, 2))
1213 /* That will change things, so, we should relax again.
1214 Note that this is not required, and it may be slow. */
1225 if (free_relocs
!= NULL
)
1231 if (free_contents
!= NULL
)
1233 if (! link_info
->keep_memory
)
1234 free (free_contents
);
1237 /* Cache the section contents for elf_link_input_bfd. */
1238 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1240 free_contents
= NULL
;
1243 if (shndx_buf
!= NULL
)
1245 shndx_hdr
->contents
= NULL
;
1249 if (free_extsyms
!= NULL
)
1251 if (! link_info
->keep_memory
)
1253 symtab_hdr
->contents
= NULL
;
1254 free (free_extsyms
);
1261 if (free_relocs
!= NULL
)
1263 if (free_contents
!= NULL
)
1264 free (free_contents
);
1265 if (shndx_buf
!= NULL
)
1267 shndx_hdr
->contents
= NULL
;
1270 if (free_extsyms
!= NULL
)
1272 symtab_hdr
->contents
= NULL
;
1273 free (free_extsyms
);
1278 /* Delete some bytes from a section while relaxing. */
1281 elf32_h8_relax_delete_bytes (abfd
, sec
, addr
, count
)
1287 Elf_Internal_Shdr
*symtab_hdr
;
1288 Elf_Internal_Shdr
*shndx_hdr
;
1289 Elf32_External_Sym
*extsyms
;
1290 unsigned int sec_shndx
;
1292 Elf_Internal_Rela
*irel
, *irelend
;
1293 Elf_Internal_Rela
*irelalign
;
1295 Elf32_External_Sym
*esym
, *esymend
;
1296 Elf_External_Sym_Shndx
*shndx
;
1297 struct elf_link_hash_entry
**sym_hashes
;
1298 struct elf_link_hash_entry
**end_hashes
;
1299 unsigned int symcount
;
1301 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1302 extsyms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
1304 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
1306 contents
= elf_section_data (sec
)->this_hdr
.contents
;
1308 /* The deletion must stop at the next ALIGN reloc for an aligment
1309 power larger than the number of bytes we are deleting. */
1312 toaddr
= sec
->_cooked_size
;
1314 irel
= elf_section_data (sec
)->relocs
;
1315 irelend
= irel
+ sec
->reloc_count
;
1317 /* Actually delete the bytes. */
1318 memmove (contents
+ addr
, contents
+ addr
+ count
,
1319 (size_t) (toaddr
- addr
- count
));
1320 sec
->_cooked_size
-= count
;
1322 /* Adjust all the relocs. */
1323 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
1325 /* Get the new reloc address. */
1326 if ((irel
->r_offset
> addr
1327 && irel
->r_offset
< toaddr
))
1328 irel
->r_offset
-= count
;
1331 /* Adjust the local symbols defined in this section. */
1332 shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
1333 shndx
= (Elf_External_Sym_Shndx
*) shndx_hdr
->contents
;
1335 esymend
= esym
+ symtab_hdr
->sh_info
;
1336 for (; esym
< esymend
; esym
++, shndx
= (shndx
? shndx
+ 1 : NULL
))
1338 Elf_Internal_Sym isym
;
1339 Elf_External_Sym_Shndx dummy
;
1341 bfd_elf32_swap_symbol_in (abfd
, esym
, shndx
, &isym
);
1343 if (isym
.st_shndx
== sec_shndx
1344 && isym
.st_value
> addr
1345 && isym
.st_value
< toaddr
)
1347 isym
.st_value
-= count
;
1348 bfd_elf32_swap_symbol_out (abfd
, &isym
, esym
, &dummy
);
1352 /* Now adjust the global symbols defined in this section. */
1353 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1354 - symtab_hdr
->sh_info
);
1355 sym_hashes
= elf_sym_hashes (abfd
);
1356 end_hashes
= sym_hashes
+ symcount
;
1357 for (; sym_hashes
< end_hashes
; sym_hashes
++)
1359 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
1360 if ((sym_hash
->root
.type
== bfd_link_hash_defined
1361 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
1362 && sym_hash
->root
.u
.def
.section
== sec
1363 && sym_hash
->root
.u
.def
.value
> addr
1364 && sym_hash
->root
.u
.def
.value
< toaddr
)
1366 sym_hash
->root
.u
.def
.value
-= count
;
1373 /* Return true if a symbol exists at the given address, else return
1376 elf32_h8_symbol_address_p (abfd
, sec
, addr
)
1381 Elf_Internal_Shdr
*symtab_hdr
;
1382 Elf_Internal_Shdr
*shndx_hdr
;
1383 unsigned int sec_shndx
;
1384 Elf32_External_Sym
*esym
, *esymend
;
1385 Elf_External_Sym_Shndx
*shndx
;
1386 struct elf_link_hash_entry
**sym_hashes
;
1387 struct elf_link_hash_entry
**end_hashes
;
1388 unsigned int symcount
;
1390 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
1392 /* Examine all the symbols. */
1393 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1394 shndx_hdr
= &elf_tdata (abfd
)->symtab_shndx_hdr
;
1395 shndx
= (Elf_External_Sym_Shndx
*) shndx_hdr
->contents
;
1396 esym
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
1397 esymend
= esym
+ symtab_hdr
->sh_info
;
1398 for (; esym
< esymend
; esym
++, shndx
= (shndx
? shndx
+ 1 : NULL
))
1400 Elf_Internal_Sym isym
;
1402 bfd_elf32_swap_symbol_in (abfd
, esym
, shndx
, &isym
);
1404 if (isym
.st_shndx
== sec_shndx
1405 && isym
.st_value
== addr
)
1409 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1410 - symtab_hdr
->sh_info
);
1411 sym_hashes
= elf_sym_hashes (abfd
);
1412 end_hashes
= sym_hashes
+ symcount
;
1413 for (; sym_hashes
< end_hashes
; sym_hashes
++)
1415 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
1416 if ((sym_hash
->root
.type
== bfd_link_hash_defined
1417 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
1418 && sym_hash
->root
.u
.def
.section
== sec
1419 && sym_hash
->root
.u
.def
.value
== addr
)
1426 /* This is a version of bfd_generic_get_relocated_section_contents
1427 which uses elf32_h8_relocate_section. */
1430 elf32_h8_get_relocated_section_contents (output_bfd
, link_info
, link_order
,
1431 data
, relocateable
, symbols
)
1433 struct bfd_link_info
*link_info
;
1434 struct bfd_link_order
*link_order
;
1436 boolean relocateable
;
1439 Elf_Internal_Shdr
*symtab_hdr
;
1440 Elf_Internal_Shdr
*shndx_hdr
;
1441 asection
*input_section
= link_order
->u
.indirect
.section
;
1442 bfd
*input_bfd
= input_section
->owner
;
1443 asection
**sections
= NULL
;
1444 Elf_Internal_Rela
*internal_relocs
= NULL
;
1445 Elf32_External_Sym
*external_syms
= NULL
;
1446 Elf_External_Sym_Shndx
*shndx_buf
= NULL
;
1447 Elf_External_Sym_Shndx
*shndx
;
1448 Elf_Internal_Sym
*internal_syms
= NULL
;
1450 /* We only need to handle the case of relaxing, or of having a
1451 particular set of section contents, specially. */
1453 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
1454 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
1459 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1460 shndx_hdr
= &elf_tdata (input_bfd
)->symtab_shndx_hdr
;
1462 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
1463 (size_t) input_section
->_raw_size
);
1465 if ((input_section
->flags
& SEC_RELOC
) != 0
1466 && input_section
->reloc_count
> 0)
1468 Elf_Internal_Sym
*isymp
;
1470 Elf32_External_Sym
*esym
, *esymend
;
1473 if (symtab_hdr
->contents
!= NULL
)
1474 external_syms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
1475 else if (symtab_hdr
->sh_info
!= 0)
1477 amt
= symtab_hdr
->sh_info
;
1478 amt
*= sizeof (Elf32_External_Sym
);
1479 external_syms
= (Elf32_External_Sym
*) bfd_malloc (amt
);
1480 if (external_syms
== NULL
)
1482 if (bfd_seek (input_bfd
, symtab_hdr
->sh_offset
, SEEK_SET
) != 0
1483 || bfd_bread ((PTR
) external_syms
, amt
, input_bfd
) != amt
)
1487 if (symtab_hdr
->sh_info
!= 0 && shndx_hdr
->sh_size
!= 0)
1489 amt
= symtab_hdr
->sh_info
;
1490 amt
*= sizeof (Elf_External_Sym_Shndx
);
1491 shndx_buf
= (Elf_External_Sym_Shndx
*) bfd_malloc (amt
);
1492 if (shndx_buf
== NULL
)
1494 if (bfd_seek (input_bfd
, shndx_hdr
->sh_offset
, SEEK_SET
) != 0
1495 || bfd_bread ((PTR
) shndx_buf
, amt
, input_bfd
) != amt
)
1499 internal_relocs
= (_bfd_elf32_link_read_relocs
1500 (input_bfd
, input_section
, (PTR
) NULL
,
1501 (Elf_Internal_Rela
*) NULL
, false));
1502 if (internal_relocs
== NULL
)
1505 amt
= symtab_hdr
->sh_info
;
1506 amt
*= sizeof (Elf_Internal_Sym
);
1507 internal_syms
= (Elf_Internal_Sym
*) bfd_malloc (amt
);
1508 if (internal_syms
== NULL
&& amt
!= 0)
1511 amt
= symtab_hdr
->sh_info
;
1512 amt
*= sizeof (asection
*);
1513 sections
= (asection
**) bfd_malloc (amt
);
1514 if (sections
== NULL
&& amt
!= 0)
1517 for (isymp
= internal_syms
, secpp
= sections
, shndx
= shndx_buf
,
1518 esym
= external_syms
, esymend
= esym
+ symtab_hdr
->sh_info
;
1520 ++esym
, ++isymp
, ++secpp
, shndx
= (shndx
? shndx
+ 1 : NULL
))
1524 bfd_elf32_swap_symbol_in (input_bfd
, esym
, shndx
, isymp
);
1526 if (isymp
->st_shndx
== SHN_UNDEF
)
1527 isec
= bfd_und_section_ptr
;
1528 else if (isymp
->st_shndx
== SHN_ABS
)
1529 isec
= bfd_abs_section_ptr
;
1530 else if (isymp
->st_shndx
== SHN_COMMON
)
1531 isec
= bfd_com_section_ptr
;
1533 isec
= bfd_section_from_elf_index (input_bfd
, isymp
->st_shndx
);
1538 if (! elf32_h8_relocate_section (output_bfd
, link_info
, input_bfd
,
1539 input_section
, data
, internal_relocs
,
1540 internal_syms
, sections
))
1543 if (sections
!= NULL
)
1545 if (internal_syms
!= NULL
)
1546 free (internal_syms
);
1547 if (shndx_buf
!= NULL
)
1549 if (external_syms
!= NULL
&& symtab_hdr
->contents
== NULL
)
1550 free (external_syms
);
1551 if (internal_relocs
!= elf_section_data (input_section
)->relocs
)
1552 free (internal_relocs
);
1558 if (internal_relocs
!= NULL
1559 && internal_relocs
!= elf_section_data (input_section
)->relocs
)
1560 free (internal_relocs
);
1561 if (shndx_buf
!= NULL
)
1563 if (external_syms
!= NULL
&& symtab_hdr
->contents
== NULL
)
1564 free (external_syms
);
1565 if (internal_syms
!= NULL
)
1566 free (internal_syms
);
1567 if (sections
!= NULL
)
1573 #define TARGET_BIG_SYM bfd_elf32_h8300_vec
1574 #define TARGET_BIG_NAME "elf32-h8300"
1575 #define ELF_ARCH bfd_arch_h8300
1576 #define ELF_MACHINE_CODE EM_H8_300
1577 #define ELF_MAXPAGESIZE 0x1
1578 #define bfd_elf32_bfd_reloc_type_lookup elf32_h8_reloc_type_lookup
1579 #define elf_info_to_howto elf32_h8_info_to_howto
1580 #define elf_info_to_howto_rel elf32_h8_info_to_howto_rel
1582 /* So we can set/examine bits in e_flags to get the specific
1583 H8 architecture in use. */
1584 #define elf_backend_final_write_processing \
1585 elf32_h8_final_write_processing
1586 #define elf_backend_object_p \
1588 #define bfd_elf32_bfd_merge_private_bfd_data \
1589 elf32_h8_merge_private_bfd_data
1591 /* ??? when elf_backend_relocate_section is not defined, elf32-target.h
1592 defaults to using _bfd_generic_link_hash_table_create, but
1593 elflink.h:bfd_elf32_size_dynamic_sections uses
1594 dynobj = elf_hash_table (info)->dynobj;
1595 and thus requires an elf hash table. */
1596 #define bfd_elf32_bfd_link_hash_table_create _bfd_elf_link_hash_table_create
1598 /* Use an H8 specific linker, not the ELF generic linker. */
1599 #define elf_backend_relocate_section elf32_h8_relocate_section
1601 /* And relaxing stuff. */
1602 #define bfd_elf32_bfd_relax_section elf32_h8_relax_section
1603 #define bfd_elf32_bfd_get_relocated_section_contents \
1604 elf32_h8_get_relocated_section_contents
1607 #include "elf32-target.h"