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
*, Elf32_External_Sym
*, 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
= (sec
->output_section
->vma
482 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
483 while (h
->root
.type
== bfd_link_hash_indirect
484 || h
->root
.type
== bfd_link_hash_warning
)
485 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
486 if (h
->root
.type
== bfd_link_hash_defined
487 || h
->root
.type
== bfd_link_hash_defweak
)
489 sec
= h
->root
.u
.def
.section
;
490 relocation
= (h
->root
.u
.def
.value
491 + sec
->output_section
->vma
492 + sec
->output_offset
);
494 else if (h
->root
.type
== bfd_link_hash_undefweak
)
498 if (! ((*info
->callbacks
->undefined_symbol
)
499 (info
, h
->root
.root
.string
, input_bfd
,
500 input_section
, rel
->r_offset
, true)))
506 r
= elf32_h8_final_link_relocate (r_type
, input_bfd
, output_bfd
,
508 contents
, rel
->r_offset
,
509 relocation
, rel
->r_addend
,
510 info
, sec
, h
== NULL
);
512 if (r
!= bfd_reloc_ok
)
515 const char *msg
= (const char *) 0;
517 reloc_howto_type
*howto
;
519 elf32_h8_info_to_howto (input_bfd
, &bfd_reloc
, rel
);
520 howto
= bfd_reloc
.howto
;
523 name
= h
->root
.root
.string
;
526 name
= (bfd_elf_string_from_elf_section
527 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
528 if (name
== NULL
|| *name
== '\0')
529 name
= bfd_section_name (input_bfd
, sec
);
534 case bfd_reloc_overflow
:
535 if (! ((*info
->callbacks
->reloc_overflow
)
536 (info
, name
, howto
->name
, (bfd_vma
) 0,
537 input_bfd
, input_section
, rel
->r_offset
)))
541 case bfd_reloc_undefined
:
542 if (! ((*info
->callbacks
->undefined_symbol
)
543 (info
, name
, input_bfd
, input_section
,
544 rel
->r_offset
, true)))
548 case bfd_reloc_outofrange
:
549 msg
= _("internal error: out of range error");
552 case bfd_reloc_notsupported
:
553 msg
= _("internal error: unsupported relocation error");
556 case bfd_reloc_dangerous
:
557 msg
= _("internal error: dangerous error");
561 msg
= _("internal error: unknown error");
565 if (!((*info
->callbacks
->warning
)
566 (info
, msg
, name
, input_bfd
, input_section
,
577 /* Object files encode the specific H8 model they were compiled
578 for in the ELF flags field.
580 Examine that field and return the proper BFD machine type for
583 elf32_h8_mach (flags
)
586 switch (flags
& EF_H8_MACH
)
588 case E_H8_MACH_H8300
:
590 return bfd_mach_h8300
;
592 case E_H8_MACH_H8300H
:
593 return bfd_mach_h8300h
;
595 case E_H8_MACH_H8300S
:
596 return bfd_mach_h8300s
;
600 /* The final processing done just before writing out a H8 ELF object
601 file. We use this opportunity to encode the BFD machine type
602 into the flags field in the object file. */
605 elf32_h8_final_write_processing (abfd
, linker
)
607 boolean linker ATTRIBUTE_UNUSED
;
611 switch (bfd_get_mach (abfd
))
615 val
= E_H8_MACH_H8300
;
618 case bfd_mach_h8300h
:
619 val
= E_H8_MACH_H8300H
;
622 case bfd_mach_h8300s
:
623 val
= E_H8_MACH_H8300S
;
627 elf_elfheader (abfd
)->e_flags
&= ~ (EF_H8_MACH
);
628 elf_elfheader (abfd
)->e_flags
|= val
;
631 /* Return nonzero if ABFD represents a valid H8 ELF object file; also
632 record the encoded machine type found in the ELF flags. */
635 elf32_h8_object_p (abfd
)
638 bfd_default_set_arch_mach (abfd
, bfd_arch_h8300
,
639 elf32_h8_mach (elf_elfheader (abfd
)->e_flags
));
643 /* Merge backend specific data from an object file to the output
644 object file when linking. The only data we need to copy at this
645 time is the architecture/machine information. */
648 elf32_h8_merge_private_bfd_data (ibfd
, obfd
)
652 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
653 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
656 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
657 && bfd_get_mach (obfd
) < bfd_get_mach (ibfd
))
659 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
660 bfd_get_mach (ibfd
)))
667 /* This function handles relaxing for the H8..
669 There's a few relaxing opportunites available on the H8:
671 jmp/jsr:24 -> bra/bsr:8 2 bytes
672 The jmp may be completely eliminated if the previous insn is a
673 conditional branch to the insn after the jump. In that case
674 we invert the branch and delete the jump and save 4 bytes.
676 bCC:16 -> bCC:8 2 bytes
677 bsr:16 -> bsr:8 2 bytes
679 mov.b:16 -> mov.b:8 2 bytes
680 mov.b:24/32 -> mov.b:8 4 bytes
682 mov.[bwl]:24/32 -> mov.[bwl]:16 2 bytes
688 elf32_h8_relax_section (abfd
, sec
, link_info
, again
)
691 struct bfd_link_info
*link_info
;
694 Elf_Internal_Shdr
*symtab_hdr
;
695 Elf_Internal_Rela
*internal_relocs
;
696 Elf_Internal_Rela
*free_relocs
= NULL
;
697 Elf_Internal_Rela
*irel
, *irelend
;
698 bfd_byte
*contents
= NULL
;
699 bfd_byte
*free_contents
= NULL
;
700 Elf32_External_Sym
*extsyms
= NULL
;
701 Elf32_External_Sym
*free_extsyms
= 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
;
724 /* Get a copy of the native relocations. */
725 internal_relocs
= (_bfd_elf32_link_read_relocs
726 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
727 link_info
->keep_memory
));
728 if (internal_relocs
== NULL
)
730 if (! link_info
->keep_memory
)
731 free_relocs
= internal_relocs
;
733 if (sec
!= last_input_section
)
736 last_input_section
= sec
;
738 /* Walk through the relocs looking for relaxing opportunities. */
739 irelend
= internal_relocs
+ sec
->reloc_count
;
740 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
744 /* Keep track of the previous reloc so that we can delete
745 some long jumps created by the compiler. */
746 if (irel
!= internal_relocs
)
747 last_reloc
= irel
- 1;
749 /* Get the section contents if we haven't done so already. */
750 if (contents
== NULL
)
752 /* Get cached copy if it exists. */
753 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
754 contents
= elf_section_data (sec
)->this_hdr
.contents
;
757 /* Go get them off disk. */
758 contents
= (bfd_byte
*) bfd_malloc (sec
->_raw_size
);
759 if (contents
== NULL
)
761 free_contents
= contents
;
763 if (! bfd_get_section_contents (abfd
, sec
, contents
,
764 (file_ptr
) 0, sec
->_raw_size
))
769 /* Read this BFD's symbols if we haven't done so already. */
772 /* Get cached copy if it exists. */
773 if (symtab_hdr
->contents
!= NULL
)
774 extsyms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
777 /* Go get them off disk. */
778 extsyms
= ((Elf32_External_Sym
*)
779 bfd_malloc (symtab_hdr
->sh_size
));
782 free_extsyms
= extsyms
;
783 if (bfd_seek (abfd
, symtab_hdr
->sh_offset
, SEEK_SET
) != 0
784 || (bfd_bread (extsyms
, symtab_hdr
->sh_size
, abfd
)
785 != symtab_hdr
->sh_size
))
790 /* Get the value of the symbol referred to by the reloc. */
791 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
793 Elf_Internal_Sym isym
;
796 /* A local symbol. */
797 bfd_elf32_swap_symbol_in (abfd
,
798 extsyms
+ ELF32_R_SYM (irel
->r_info
),
801 sym_sec
= bfd_section_from_elf_index (abfd
, isym
.st_shndx
);
802 symval
= (isym
.st_value
803 + sym_sec
->output_section
->vma
804 + sym_sec
->output_offset
);
809 struct elf_link_hash_entry
*h
;
811 /* An external symbol. */
812 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
813 h
= elf_sym_hashes (abfd
)[indx
];
814 BFD_ASSERT (h
!= NULL
);
815 if (h
->root
.type
!= bfd_link_hash_defined
816 && h
->root
.type
!= bfd_link_hash_defweak
)
818 /* This appears to be a reference to an undefined
819 symbol. Just ignore it--it will be caught by the
820 regular reloc processing. */
824 symval
= (h
->root
.u
.def
.value
825 + h
->root
.u
.def
.section
->output_section
->vma
826 + h
->root
.u
.def
.section
->output_offset
);
829 /* For simplicity of coding, we are going to modify the section
830 contents, the section relocs, and the BFD symbol table. We
831 must tell the rest of the code not to free up this
832 information. It would be possible to instead create a table
833 of changes which have to be made, as is done in coff-mips.c;
834 that would be more work, but would require less memory when
835 the linker is run. */
836 switch (ELF32_R_TYPE (irel
->r_info
))
838 /* Try to turn a 24 bit absolute branch/call into an 8 bit
839 pc-relative branch/call. */
842 bfd_vma value
= symval
+ irel
->r_addend
;
845 /* Get the address of this instruction. */
846 dot
= (sec
->output_section
->vma
847 + sec
->output_offset
+ irel
->r_offset
- 1);
849 /* Compute the distance from this insn to the branch target. */
852 /* If the distance is within -126..+130 inclusive, then we can
853 relax this jump. +130 is valid since the target will move
854 two bytes closer if we do relax this branch. */
855 if ((int) gap
>= -126 && (int) gap
<= 130)
859 /* Note that we've changed the relocs, section contents,
861 elf_section_data (sec
)->relocs
= internal_relocs
;
864 elf_section_data (sec
)->this_hdr
.contents
= contents
;
865 free_contents
= NULL
;
867 symtab_hdr
->contents
= (bfd_byte
*) extsyms
;
870 /* If the previous instruction conditionally jumped around
871 this instruction, we may be able to reverse the condition
872 and redirect the previous instruction to the target of
875 Such sequences are used by the compiler to deal with
876 long conditional branches. */
880 && ELF32_R_TYPE (last_reloc
->r_info
) == R_H8_PCREL8
881 && ELF32_R_SYM (last_reloc
->r_info
) < symtab_hdr
->sh_info
)
884 asection
*last_sym_sec
;
885 Elf_Internal_Sym last_symbol
;
887 /* We will need to examine the symbol used by the
888 previous relocation. */
890 bfd_elf32_swap_symbol_in (abfd
,
891 (extsyms
+ ELF32_R_SYM (last_reloc
->r_info
)),
895 = bfd_section_from_elf_index (abfd
, last_symbol
.st_shndx
);
896 last_value
= (last_symbol
.st_value
897 + last_sym_sec
->output_section
->vma
898 + last_sym_sec
->output_offset
);
900 /* Verify that the previous relocation was for a
901 branch around this instruction and that no symbol
902 exists at the current location. */
903 if (last_value
== dot
+ 4
904 && last_reloc
->r_offset
+ 2 == irel
->r_offset
905 && ! elf32_h8_symbol_address_p (abfd
, sec
,
908 /* We can eliminate this jump. Twiddle the
909 previous relocation as necessary. */
911 = ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
912 ELF32_R_TYPE (R_H8_NONE
));
915 = ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
916 ELF32_R_TYPE (R_H8_PCREL8
));
917 last_reloc
->r_addend
= irel
->r_addend
;
920 code
= bfd_get_8 (abfd
,
921 contents
+ last_reloc
->r_offset
- 1);
925 contents
+ last_reloc
->r_offset
- 1);
927 /* Delete four bytes of data. */
928 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
938 /* We could not eliminate this jump, so just shorten it. */
939 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
942 bfd_put_8 (abfd
, 0x55, contents
+ irel
->r_offset
- 1);
943 else if (code
== 0x5a)
944 bfd_put_8 (abfd
, 0x40, contents
+ irel
->r_offset
- 1);
948 /* Fix the relocation's type. */
949 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
952 /* Delete two bytes of data. */
953 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
954 irel
->r_offset
+ 1, 2))
957 /* That will change things, so, we should relax again.
958 Note that this is not required, and it may be slow. */
964 /* Try to turn a 16bit pc-relative branch into a 8bit pc-relative
968 bfd_vma value
= symval
+ irel
->r_addend
;
972 /* Get the address of this instruction. */
973 dot
= (sec
->output_section
->vma
975 + irel
->r_offset
- 2);
979 /* If the distance is within -126..+130 inclusive, then we can
980 relax this jump. +130 is valid since the target will move
981 two bytes closer if we do relax this branch. */
982 if ((int)gap
>= -126 && (int)gap
<= 130)
986 /* Note that we've changed the relocs, section contents,
988 elf_section_data (sec
)->relocs
= internal_relocs
;
991 elf_section_data (sec
)->this_hdr
.contents
= contents
;
992 free_contents
= NULL
;
994 symtab_hdr
->contents
= (bfd_byte
*) extsyms
;
997 /* Get the opcode. */
998 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1002 /* bCC:16 -> bCC:8 */
1003 /* Get the condition code from the original insn. */
1004 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1008 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
1010 else if (code
== 0x5c)
1011 bfd_put_8 (abfd
, 0x55, contents
+ irel
->r_offset
- 2);
1015 /* Fix the relocation's type. */
1016 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1020 /* Delete two bytes of data. */
1021 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1022 irel
->r_offset
+ 1, 2))
1025 /* That will change things, so, we should relax again.
1026 Note that this is not required, and it may be slow. */
1032 /* This is a 16 bit absolute address in a "mov.b" insn, which may
1033 become an 8 bit absolute address if its in the right range. */
1036 bfd_vma value
= symval
+ irel
->r_addend
;
1038 if ((bfd_get_mach (abfd
) == bfd_mach_h8300
1041 || ((bfd_get_mach (abfd
) == bfd_mach_h8300h
1042 || bfd_get_mach (abfd
) == bfd_mach_h8300s
)
1043 && value
>= 0xffff00
1044 && value
<= 0xffffff))
1048 /* Note that we've changed the relocs, section contents,
1050 elf_section_data (sec
)->relocs
= internal_relocs
;
1053 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1054 free_contents
= NULL
;
1056 symtab_hdr
->contents
= (bfd_byte
*) extsyms
;
1057 free_extsyms
= NULL
;
1059 /* Get the opcode. */
1060 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1066 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1068 if ((code
& 0xf0) == 0x00)
1070 (code
& 0xf) | 0x20,
1071 contents
+ irel
->r_offset
- 2);
1072 else if ((code
& 0xf0) == 0x80)
1074 (code
& 0xf) | 0x30,
1075 contents
+ irel
->r_offset
- 2);
1079 /* Fix the relocation's type. */
1080 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1083 /* Delete two bytes of data. */
1084 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1085 irel
->r_offset
+ 1, 2))
1088 /* That will change things, so, we should relax again.
1089 Note that this is not required, and it may be slow. */
1095 /* This is a 24 bit absolute address in a "mov.b" insn, which may
1096 become an 8 bit absolute address if its in the right range. */
1099 bfd_vma value
= symval
+ irel
->r_addend
;
1101 if ((bfd_get_mach (abfd
) == bfd_mach_h8300
1104 || ((bfd_get_mach (abfd
) == bfd_mach_h8300h
1105 || bfd_get_mach (abfd
) == bfd_mach_h8300s
)
1106 && value
>= 0xffff00
1107 && value
<= 0xffffff))
1111 /* Note that we've changed the relocs, section contents,
1113 elf_section_data (sec
)->relocs
= internal_relocs
;
1116 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1117 free_contents
= NULL
;
1119 symtab_hdr
->contents
= (bfd_byte
*) extsyms
;
1120 free_extsyms
= NULL
;
1122 /* Get the opcode. */
1123 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
1129 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1131 if ((code
& 0xf0) == 0x00)
1133 (code
& 0xf) | 0x20,
1134 contents
+ irel
->r_offset
- 2);
1135 else if ((code
& 0xf0) == 0x80)
1137 (code
& 0xf) | 0x30,
1138 contents
+ irel
->r_offset
- 2);
1142 /* Fix the relocation's type. */
1143 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1146 /* Delete two bytes of data. */
1147 if (!elf32_h8_relax_delete_bytes (abfd
, sec
, irel
->r_offset
, 2))
1150 /* That will change things, so, we should relax again.
1151 Note that this is not required, and it may be slow. */
1158 /* This is a 24/32bit absolute address in a "mov" insn, which may
1159 become a 16bit absoulte address if it is in the right range. */
1162 bfd_vma value
= symval
+ irel
->r_addend
;
1164 if (value
<= 0x7fff || value
>= 0xff8000)
1168 /* Note that we've changed the relocs, section contents,
1170 elf_section_data (sec
)->relocs
= internal_relocs
;
1173 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1174 free_contents
= NULL
;
1176 symtab_hdr
->contents
= (bfd_byte
*) extsyms
;
1177 free_extsyms
= NULL
;
1179 /* Get the opcode. */
1180 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
1182 /* We just need to turn off bit 0x20. */
1185 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
1187 /* Fix the relocation's type. */
1188 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1191 /* Delete two bytes of data. */
1192 if (!elf32_h8_relax_delete_bytes (abfd
, sec
,
1193 irel
->r_offset
+ 1, 2))
1196 /* That will change things, so, we should relax again.
1197 Note that this is not required, and it may be slow. */
1208 if (free_relocs
!= NULL
)
1214 if (free_contents
!= NULL
)
1216 if (! link_info
->keep_memory
)
1217 free (free_contents
);
1220 /* Cache the section contents for elf_link_input_bfd. */
1221 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1223 free_contents
= NULL
;
1226 if (free_extsyms
!= NULL
)
1228 if (! link_info
->keep_memory
)
1229 free (free_extsyms
);
1232 /* Cache the symbols for elf_link_input_bfd. */
1233 symtab_hdr
->contents
= (unsigned char *) extsyms
;
1235 free_extsyms
= NULL
;
1241 if (free_relocs
!= NULL
)
1243 if (free_contents
!= NULL
)
1244 free (free_contents
);
1245 if (free_extsyms
!= NULL
)
1246 free (free_extsyms
);
1250 /* Delete some bytes from a section while relaxing. */
1253 elf32_h8_relax_delete_bytes (abfd
, sec
, addr
, count
)
1259 Elf_Internal_Shdr
*symtab_hdr
;
1260 Elf32_External_Sym
*extsyms
;
1263 Elf_Internal_Rela
*irel
, *irelend
;
1264 Elf_Internal_Rela
*irelalign
;
1266 Elf32_External_Sym
*esym
, *esymend
;
1267 struct elf_link_hash_entry
*sym_hash
;
1269 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1270 extsyms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
1272 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
1274 contents
= elf_section_data (sec
)->this_hdr
.contents
;
1276 /* The deletion must stop at the next ALIGN reloc for an aligment
1277 power larger than the number of bytes we are deleting. */
1280 toaddr
= sec
->_cooked_size
;
1282 irel
= elf_section_data (sec
)->relocs
;
1283 irelend
= irel
+ sec
->reloc_count
;
1285 /* Actually delete the bytes. */
1286 memmove (contents
+ addr
, contents
+ addr
+ count
,
1287 (size_t) (toaddr
- addr
- count
));
1288 sec
->_cooked_size
-= count
;
1290 /* Adjust all the relocs. */
1291 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
1293 /* Get the new reloc address. */
1294 if ((irel
->r_offset
> addr
1295 && irel
->r_offset
< toaddr
))
1296 irel
->r_offset
-= count
;
1299 /* Adjust the local symbols defined in this section. */
1301 esymend
= esym
+ symtab_hdr
->sh_info
;
1302 for (; esym
< esymend
; esym
++)
1304 Elf_Internal_Sym isym
;
1306 bfd_elf32_swap_symbol_in (abfd
, esym
, &isym
);
1308 if (isym
.st_shndx
== shndx
1309 && isym
.st_value
> addr
1310 && isym
.st_value
< toaddr
)
1312 isym
.st_value
-= count
;
1313 bfd_elf32_swap_symbol_out (abfd
, &isym
, esym
);
1317 /* Now adjust the global symbols defined in this section. */
1318 esym
= extsyms
+ symtab_hdr
->sh_info
;
1319 esymend
= extsyms
+ (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
));
1320 for (index
= 0; esym
< esymend
; esym
++, index
++)
1322 Elf_Internal_Sym isym
;
1324 bfd_elf32_swap_symbol_in (abfd
, esym
, &isym
);
1325 sym_hash
= elf_sym_hashes (abfd
)[index
];
1326 if (isym
.st_shndx
== shndx
1327 && ((sym_hash
)->root
.type
== bfd_link_hash_defined
1328 || (sym_hash
)->root
.type
== bfd_link_hash_defweak
)
1329 && (sym_hash
)->root
.u
.def
.section
== sec
1330 && (sym_hash
)->root
.u
.def
.value
> addr
1331 && (sym_hash
)->root
.u
.def
.value
< toaddr
)
1333 (sym_hash
)->root
.u
.def
.value
-= count
;
1340 /* Return true if a symbol exists at the given address, else return
1343 elf32_h8_symbol_address_p (abfd
, sec
, extsyms
, addr
)
1346 Elf32_External_Sym
*extsyms
;
1349 Elf_Internal_Shdr
*symtab_hdr
;
1351 Elf32_External_Sym
*esym
, *esymend
;
1352 struct elf_link_hash_entry
**sym_hash
, **sym_hash_end
;
1354 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1355 shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
1357 /* Examine all the symbols. */
1359 esymend
= esym
+ symtab_hdr
->sh_info
;
1360 for (; esym
< esymend
; esym
++)
1362 Elf_Internal_Sym isym
;
1364 bfd_elf32_swap_symbol_in (abfd
, esym
, &isym
);
1366 if (isym
.st_shndx
== shndx
1367 && isym
.st_value
== addr
)
1371 sym_hash
= elf_sym_hashes (abfd
);
1372 sym_hash_end
= (sym_hash
1373 + (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1374 - symtab_hdr
->sh_info
));
1375 for (; sym_hash
< sym_hash_end
; sym_hash
++)
1377 if (((*sym_hash
)->root
.type
== bfd_link_hash_defined
1378 || (*sym_hash
)->root
.type
== bfd_link_hash_defweak
)
1379 && (*sym_hash
)->root
.u
.def
.section
== sec
1380 && (*sym_hash
)->root
.u
.def
.value
== addr
)
1386 /* This is a version of bfd_generic_get_relocated_section_contents
1387 which uses elf32_h8_relocate_section. */
1390 elf32_h8_get_relocated_section_contents (output_bfd
, link_info
, link_order
,
1391 data
, relocateable
, symbols
)
1393 struct bfd_link_info
*link_info
;
1394 struct bfd_link_order
*link_order
;
1396 boolean relocateable
;
1399 Elf_Internal_Shdr
*symtab_hdr
;
1400 asection
*input_section
= link_order
->u
.indirect
.section
;
1401 bfd
*input_bfd
= input_section
->owner
;
1402 asection
**sections
= NULL
;
1403 Elf_Internal_Rela
*internal_relocs
= NULL
;
1404 Elf32_External_Sym
*external_syms
= NULL
;
1405 Elf_Internal_Sym
*internal_syms
= NULL
;
1407 /* We only need to handle the case of relaxing, or of having a
1408 particular set of section contents, specially. */
1410 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
1411 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
1416 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1418 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
1419 (size_t) input_section
->_raw_size
);
1421 if ((input_section
->flags
& SEC_RELOC
) != 0
1422 && input_section
->reloc_count
> 0)
1424 Elf_Internal_Sym
*isymp
;
1426 Elf32_External_Sym
*esym
, *esymend
;
1428 if (symtab_hdr
->contents
!= NULL
)
1429 external_syms
= (Elf32_External_Sym
*) symtab_hdr
->contents
;
1434 amt
= symtab_hdr
->sh_info
;
1435 amt
*= sizeof (Elf32_External_Sym
);
1436 external_syms
= (Elf32_External_Sym
*) bfd_malloc (amt
);
1437 if (external_syms
== NULL
&& symtab_hdr
->sh_info
> 0)
1439 if (bfd_seek (input_bfd
, symtab_hdr
->sh_offset
, SEEK_SET
) != 0
1440 || bfd_bread (external_syms
, amt
, input_bfd
) != amt
)
1444 internal_relocs
= (_bfd_elf32_link_read_relocs
1445 (input_bfd
, input_section
, (PTR
) NULL
,
1446 (Elf_Internal_Rela
*) NULL
, false));
1447 if (internal_relocs
== NULL
)
1450 internal_syms
= ((Elf_Internal_Sym
*)
1451 bfd_malloc ((bfd_size_type
) symtab_hdr
->sh_info
1452 * sizeof (Elf_Internal_Sym
)));
1453 if (internal_syms
== NULL
&& symtab_hdr
->sh_info
> 0)
1456 sections
= (asection
**) bfd_malloc ((bfd_size_type
) symtab_hdr
->sh_info
1457 * sizeof (asection
*));
1458 if (sections
== NULL
&& symtab_hdr
->sh_info
> 0)
1461 isymp
= internal_syms
;
1463 esym
= external_syms
;
1464 esymend
= esym
+ symtab_hdr
->sh_info
;
1465 for (; esym
< esymend
; ++esym
, ++isymp
, ++secpp
)
1469 bfd_elf32_swap_symbol_in (input_bfd
, esym
, isymp
);
1471 if (isymp
->st_shndx
== SHN_UNDEF
)
1472 isec
= bfd_und_section_ptr
;
1473 else if (isymp
->st_shndx
> 0 && isymp
->st_shndx
< SHN_LORESERVE
)
1474 isec
= bfd_section_from_elf_index (input_bfd
, isymp
->st_shndx
);
1475 else if (isymp
->st_shndx
== SHN_ABS
)
1476 isec
= bfd_abs_section_ptr
;
1477 else if (isymp
->st_shndx
== SHN_COMMON
)
1478 isec
= bfd_com_section_ptr
;
1488 if (! elf32_h8_relocate_section (output_bfd
, link_info
, input_bfd
,
1489 input_section
, data
, internal_relocs
,
1490 internal_syms
, sections
))
1493 if (sections
!= NULL
)
1496 if (internal_syms
!= NULL
)
1497 free (internal_syms
);
1498 internal_syms
= NULL
;
1499 if (external_syms
!= NULL
&& symtab_hdr
->contents
== NULL
)
1500 free (external_syms
);
1501 external_syms
= NULL
;
1502 if (internal_relocs
!= elf_section_data (input_section
)->relocs
)
1503 free (internal_relocs
);
1504 internal_relocs
= NULL
;
1510 if (internal_relocs
!= NULL
1511 && internal_relocs
!= elf_section_data (input_section
)->relocs
)
1512 free (internal_relocs
);
1513 if (external_syms
!= NULL
&& symtab_hdr
->contents
== NULL
)
1514 free (external_syms
);
1515 if (internal_syms
!= NULL
)
1516 free (internal_syms
);
1517 if (sections
!= NULL
)
1523 #define TARGET_BIG_SYM bfd_elf32_h8300_vec
1524 #define TARGET_BIG_NAME "elf32-h8300"
1525 #define ELF_ARCH bfd_arch_h8300
1526 #define ELF_MACHINE_CODE EM_H8_300
1527 #define ELF_MAXPAGESIZE 0x1
1528 #define bfd_elf32_bfd_reloc_type_lookup elf32_h8_reloc_type_lookup
1529 #define elf_info_to_howto elf32_h8_info_to_howto
1530 #define elf_info_to_howto_rel elf32_h8_info_to_howto_rel
1532 /* So we can set/examine bits in e_flags to get the specific
1533 H8 architecture in use. */
1534 #define elf_backend_final_write_processing \
1535 elf32_h8_final_write_processing
1536 #define elf_backend_object_p \
1538 #define bfd_elf32_bfd_merge_private_bfd_data \
1539 elf32_h8_merge_private_bfd_data
1541 /* ??? when elf_backend_relocate_section is not defined, elf32-target.h
1542 defaults to using _bfd_generic_link_hash_table_create, but
1543 elflink.h:bfd_elf32_size_dynamic_sections uses
1544 dynobj = elf_hash_table (info)->dynobj;
1545 and thus requires an elf hash table. */
1546 #define bfd_elf32_bfd_link_hash_table_create _bfd_elf_link_hash_table_create
1548 /* Use an H8 specific linker, not the ELF generic linker. */
1549 #define elf_backend_relocate_section elf32_h8_relocate_section
1551 /* And relaxing stuff. */
1552 #define bfd_elf32_bfd_relax_section elf32_h8_relax_section
1553 #define bfd_elf32_bfd_get_relocated_section_contents \
1554 elf32_h8_get_relocated_section_contents
1557 #include "elf32-target.h"