1 /* Matsushita 10300 specific support for 32-bit ELF
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006 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. */
25 #include "elf/mn10300.h"
27 static bfd_reloc_status_type mn10300_elf_final_link_relocate
28 PARAMS ((reloc_howto_type
*, bfd
*, bfd
*, asection
*, bfd_byte
*,
29 bfd_vma
, bfd_vma
, bfd_vma
,
30 struct elf_link_hash_entry
*, unsigned long, struct bfd_link_info
*,
32 static bfd_boolean mn10300_elf_relocate_section
33 PARAMS ((bfd
*, struct bfd_link_info
*, bfd
*, asection
*, bfd_byte
*,
34 Elf_Internal_Rela
*, Elf_Internal_Sym
*, asection
**));
35 static bfd_boolean mn10300_elf_relax_section
36 PARAMS ((bfd
*, asection
*, struct bfd_link_info
*, bfd_boolean
*));
37 static bfd_byte
* mn10300_elf_get_relocated_section_contents
38 PARAMS ((bfd
*, struct bfd_link_info
*, struct bfd_link_order
*,
39 bfd_byte
*, bfd_boolean
, asymbol
**));
40 static unsigned long elf_mn10300_mach
42 void _bfd_mn10300_elf_final_write_processing
43 PARAMS ((bfd
*, bfd_boolean
));
44 bfd_boolean _bfd_mn10300_elf_object_p
46 bfd_boolean _bfd_mn10300_elf_merge_private_bfd_data
47 PARAMS ((bfd
*,bfd
*));
49 /* The mn10300 linker needs to keep track of the number of relocs that
50 it decides to copy in check_relocs for each symbol. This is so
51 that it can discard PC relative relocs if it doesn't need them when
52 linking with -Bsymbolic. We store the information in a field
53 extending the regular ELF linker hash table. */
55 struct elf32_mn10300_link_hash_entry
{
56 /* The basic elf link hash table entry. */
57 struct elf_link_hash_entry root
;
59 /* For function symbols, the number of times this function is
60 called directly (ie by name). */
61 unsigned int direct_calls
;
63 /* For function symbols, the size of this function's stack
64 (if <= 255 bytes). We stuff this into "call" instructions
65 to this target when it's valid and profitable to do so.
67 This does not include stack allocated by movm! */
68 unsigned char stack_size
;
70 /* For function symbols, arguments (if any) for movm instruction
71 in the prologue. We stuff this value into "call" instructions
72 to the target when it's valid and profitable to do so. */
73 unsigned char movm_args
;
75 /* For function symbols, the amount of stack space that would be allocated
76 by the movm instruction. This is redundant with movm_args, but we
77 add it to the hash table to avoid computing it over and over. */
78 unsigned char movm_stack_size
;
80 /* When set, convert all "call" instructions to this target into "calls"
82 #define MN10300_CONVERT_CALL_TO_CALLS 0x1
84 /* Used to mark functions which have had redundant parts of their
86 #define MN10300_DELETED_PROLOGUE_BYTES 0x2
89 /* Calculated value. */
93 /* We derive a hash table from the main elf linker hash table so
94 we can store state variables and a secondary hash table without
95 resorting to global variables. */
96 struct elf32_mn10300_link_hash_table
{
97 /* The main hash table. */
98 struct elf_link_hash_table root
;
100 /* A hash table for static functions. We could derive a new hash table
101 instead of using the full elf32_mn10300_link_hash_table if we wanted
102 to save some memory. */
103 struct elf32_mn10300_link_hash_table
*static_hash_table
;
105 /* Random linker state flags. */
106 #define MN10300_HASH_ENTRIES_INITIALIZED 0x1
110 /* For MN10300 linker hash table. */
112 /* Get the MN10300 ELF linker hash table from a link_info structure. */
114 #define elf32_mn10300_hash_table(p) \
115 ((struct elf32_mn10300_link_hash_table *) ((p)->hash))
117 #define elf32_mn10300_link_hash_traverse(table, func, info) \
118 (elf_link_hash_traverse \
120 (bfd_boolean (*) PARAMS ((struct elf_link_hash_entry *, PTR))) (func), \
123 static struct bfd_hash_entry
*elf32_mn10300_link_hash_newfunc
124 PARAMS ((struct bfd_hash_entry
*, struct bfd_hash_table
*, const char *));
125 static struct bfd_link_hash_table
*elf32_mn10300_link_hash_table_create
127 static void elf32_mn10300_link_hash_table_free
128 PARAMS ((struct bfd_link_hash_table
*));
130 static reloc_howto_type
*bfd_elf32_bfd_reloc_type_lookup
131 PARAMS ((bfd
*abfd
, bfd_reloc_code_real_type code
));
132 static void mn10300_info_to_howto
133 PARAMS ((bfd
*, arelent
*, Elf_Internal_Rela
*));
134 static bfd_boolean mn10300_elf_check_relocs
135 PARAMS ((bfd
*, struct bfd_link_info
*, asection
*,
136 const Elf_Internal_Rela
*));
137 static bfd_boolean mn10300_elf_relax_delete_bytes
138 PARAMS ((bfd
*, asection
*, bfd_vma
, int));
139 static bfd_boolean mn10300_elf_symbol_address_p
140 PARAMS ((bfd
*, asection
*, Elf_Internal_Sym
*, bfd_vma
));
141 static bfd_boolean elf32_mn10300_finish_hash_table_entry
142 PARAMS ((struct bfd_hash_entry
*, PTR
));
143 static void compute_function_info
144 PARAMS ((bfd
*, struct elf32_mn10300_link_hash_entry
*,
145 bfd_vma
, unsigned char *));
147 static bfd_boolean _bfd_mn10300_elf_create_got_section
148 PARAMS ((bfd
*, struct bfd_link_info
*));
149 static bfd_boolean _bfd_mn10300_elf_create_dynamic_sections
150 PARAMS ((bfd
*, struct bfd_link_info
*));
151 static bfd_boolean _bfd_mn10300_elf_adjust_dynamic_symbol
152 PARAMS ((struct bfd_link_info
*, struct elf_link_hash_entry
*));
153 static bfd_boolean _bfd_mn10300_elf_size_dynamic_sections
154 PARAMS ((bfd
*, struct bfd_link_info
*));
155 static bfd_boolean _bfd_mn10300_elf_finish_dynamic_symbol
156 PARAMS ((bfd
*, struct bfd_link_info
*, struct elf_link_hash_entry
*,
157 Elf_Internal_Sym
*));
158 static bfd_boolean _bfd_mn10300_elf_finish_dynamic_sections
159 PARAMS ((bfd
*, struct bfd_link_info
*));
161 static reloc_howto_type elf_mn10300_howto_table
[] = {
162 /* Dummy relocation. Does nothing. */
163 HOWTO (R_MN10300_NONE
,
169 complain_overflow_bitfield
,
170 bfd_elf_generic_reloc
,
176 /* Standard 32 bit reloc. */
183 complain_overflow_bitfield
,
184 bfd_elf_generic_reloc
,
190 /* Standard 16 bit reloc. */
197 complain_overflow_bitfield
,
198 bfd_elf_generic_reloc
,
204 /* Standard 8 bit reloc. */
211 complain_overflow_bitfield
,
212 bfd_elf_generic_reloc
,
218 /* Standard 32bit pc-relative reloc. */
219 HOWTO (R_MN10300_PCREL32
,
225 complain_overflow_bitfield
,
226 bfd_elf_generic_reloc
,
232 /* Standard 16bit pc-relative reloc. */
233 HOWTO (R_MN10300_PCREL16
,
239 complain_overflow_bitfield
,
240 bfd_elf_generic_reloc
,
246 /* Standard 8 pc-relative reloc. */
247 HOWTO (R_MN10300_PCREL8
,
253 complain_overflow_bitfield
,
254 bfd_elf_generic_reloc
,
261 /* GNU extension to record C++ vtable hierarchy */
262 HOWTO (R_MN10300_GNU_VTINHERIT
, /* type */
264 0, /* size (0 = byte, 1 = short, 2 = long) */
266 FALSE
, /* pc_relative */
268 complain_overflow_dont
, /* complain_on_overflow */
269 NULL
, /* special_function */
270 "R_MN10300_GNU_VTINHERIT", /* name */
271 FALSE
, /* partial_inplace */
274 FALSE
), /* pcrel_offset */
276 /* GNU extension to record C++ vtable member usage */
277 HOWTO (R_MN10300_GNU_VTENTRY
, /* type */
279 0, /* size (0 = byte, 1 = short, 2 = long) */
281 FALSE
, /* pc_relative */
283 complain_overflow_dont
, /* complain_on_overflow */
284 NULL
, /* special_function */
285 "R_MN10300_GNU_VTENTRY", /* name */
286 FALSE
, /* partial_inplace */
289 FALSE
), /* pcrel_offset */
291 /* Standard 24 bit reloc. */
298 complain_overflow_bitfield
,
299 bfd_elf_generic_reloc
,
305 HOWTO (R_MN10300_GOTPC32
, /* type */
307 2, /* size (0 = byte, 1 = short, 2 = long) */
309 TRUE
, /* pc_relative */
311 complain_overflow_bitfield
, /* complain_on_overflow */
312 bfd_elf_generic_reloc
, /* */
313 "R_MN10300_GOTPC32", /* name */
314 FALSE
, /* partial_inplace */
315 0xffffffff, /* src_mask */
316 0xffffffff, /* dst_mask */
317 TRUE
), /* pcrel_offset */
319 HOWTO (R_MN10300_GOTPC16
, /* type */
321 1, /* size (0 = byte, 1 = short, 2 = long) */
323 TRUE
, /* pc_relative */
325 complain_overflow_bitfield
, /* complain_on_overflow */
326 bfd_elf_generic_reloc
, /* */
327 "R_MN10300_GOTPC16", /* name */
328 FALSE
, /* partial_inplace */
329 0xffff, /* src_mask */
330 0xffff, /* dst_mask */
331 TRUE
), /* pcrel_offset */
333 HOWTO (R_MN10300_GOTOFF32
, /* type */
335 2, /* size (0 = byte, 1 = short, 2 = long) */
337 FALSE
, /* pc_relative */
339 complain_overflow_bitfield
, /* complain_on_overflow */
340 bfd_elf_generic_reloc
, /* */
341 "R_MN10300_GOTOFF32", /* name */
342 FALSE
, /* partial_inplace */
343 0xffffffff, /* src_mask */
344 0xffffffff, /* dst_mask */
345 FALSE
), /* pcrel_offset */
347 HOWTO (R_MN10300_GOTOFF24
, /* type */
349 2, /* size (0 = byte, 1 = short, 2 = long) */
351 FALSE
, /* pc_relative */
353 complain_overflow_bitfield
, /* complain_on_overflow */
354 bfd_elf_generic_reloc
, /* */
355 "R_MN10300_GOTOFF24", /* name */
356 FALSE
, /* partial_inplace */
357 0xffffff, /* src_mask */
358 0xffffff, /* dst_mask */
359 FALSE
), /* pcrel_offset */
361 HOWTO (R_MN10300_GOTOFF16
, /* type */
363 1, /* size (0 = byte, 1 = short, 2 = long) */
365 FALSE
, /* pc_relative */
367 complain_overflow_bitfield
, /* complain_on_overflow */
368 bfd_elf_generic_reloc
, /* */
369 "R_MN10300_GOTOFF16", /* name */
370 FALSE
, /* partial_inplace */
371 0xffff, /* src_mask */
372 0xffff, /* dst_mask */
373 FALSE
), /* pcrel_offset */
375 HOWTO (R_MN10300_PLT32
, /* type */
377 2, /* size (0 = byte, 1 = short, 2 = long) */
379 TRUE
, /* pc_relative */
381 complain_overflow_bitfield
, /* complain_on_overflow */
382 bfd_elf_generic_reloc
, /* */
383 "R_MN10300_PLT32", /* name */
384 FALSE
, /* partial_inplace */
385 0xffffffff, /* src_mask */
386 0xffffffff, /* dst_mask */
387 TRUE
), /* pcrel_offset */
389 HOWTO (R_MN10300_PLT16
, /* type */
391 1, /* size (0 = byte, 1 = short, 2 = long) */
393 TRUE
, /* pc_relative */
395 complain_overflow_bitfield
, /* complain_on_overflow */
396 bfd_elf_generic_reloc
, /* */
397 "R_MN10300_PLT16", /* name */
398 FALSE
, /* partial_inplace */
399 0xffff, /* src_mask */
400 0xffff, /* dst_mask */
401 TRUE
), /* pcrel_offset */
403 HOWTO (R_MN10300_GOT32
, /* type */
405 2, /* size (0 = byte, 1 = short, 2 = long) */
407 FALSE
, /* pc_relative */
409 complain_overflow_bitfield
, /* complain_on_overflow */
410 bfd_elf_generic_reloc
, /* */
411 "R_MN10300_GOT32", /* name */
412 FALSE
, /* partial_inplace */
413 0xffffffff, /* src_mask */
414 0xffffffff, /* dst_mask */
415 FALSE
), /* pcrel_offset */
417 HOWTO (R_MN10300_GOT24
, /* type */
419 2, /* size (0 = byte, 1 = short, 2 = long) */
421 FALSE
, /* pc_relative */
423 complain_overflow_bitfield
, /* complain_on_overflow */
424 bfd_elf_generic_reloc
, /* */
425 "R_MN10300_GOT24", /* name */
426 FALSE
, /* partial_inplace */
427 0xffffffff, /* src_mask */
428 0xffffffff, /* dst_mask */
429 FALSE
), /* pcrel_offset */
431 HOWTO (R_MN10300_GOT16
, /* type */
433 1, /* size (0 = byte, 1 = short, 2 = long) */
435 FALSE
, /* pc_relative */
437 complain_overflow_bitfield
, /* complain_on_overflow */
438 bfd_elf_generic_reloc
, /* */
439 "R_MN10300_GOT16", /* name */
440 FALSE
, /* partial_inplace */
441 0xffffffff, /* src_mask */
442 0xffffffff, /* dst_mask */
443 FALSE
), /* pcrel_offset */
445 HOWTO (R_MN10300_COPY
, /* type */
447 2, /* size (0 = byte, 1 = short, 2 = long) */
449 FALSE
, /* pc_relative */
451 complain_overflow_bitfield
, /* complain_on_overflow */
452 bfd_elf_generic_reloc
, /* */
453 "R_MN10300_COPY", /* name */
454 FALSE
, /* partial_inplace */
455 0xffffffff, /* src_mask */
456 0xffffffff, /* dst_mask */
457 FALSE
), /* pcrel_offset */
459 HOWTO (R_MN10300_GLOB_DAT
, /* type */
461 2, /* size (0 = byte, 1 = short, 2 = long) */
463 FALSE
, /* pc_relative */
465 complain_overflow_bitfield
, /* complain_on_overflow */
466 bfd_elf_generic_reloc
, /* */
467 "R_MN10300_GLOB_DAT", /* name */
468 FALSE
, /* partial_inplace */
469 0xffffffff, /* src_mask */
470 0xffffffff, /* dst_mask */
471 FALSE
), /* pcrel_offset */
473 HOWTO (R_MN10300_JMP_SLOT
, /* type */
475 2, /* size (0 = byte, 1 = short, 2 = long) */
477 FALSE
, /* pc_relative */
479 complain_overflow_bitfield
, /* complain_on_overflow */
480 bfd_elf_generic_reloc
, /* */
481 "R_MN10300_JMP_SLOT", /* name */
482 FALSE
, /* partial_inplace */
483 0xffffffff, /* src_mask */
484 0xffffffff, /* dst_mask */
485 FALSE
), /* pcrel_offset */
487 HOWTO (R_MN10300_RELATIVE
, /* type */
489 2, /* size (0 = byte, 1 = short, 2 = long) */
491 FALSE
, /* pc_relative */
493 complain_overflow_bitfield
, /* complain_on_overflow */
494 bfd_elf_generic_reloc
, /* */
495 "R_MN10300_RELATIVE", /* name */
496 FALSE
, /* partial_inplace */
497 0xffffffff, /* src_mask */
498 0xffffffff, /* dst_mask */
499 FALSE
), /* pcrel_offset */
503 struct mn10300_reloc_map
{
504 bfd_reloc_code_real_type bfd_reloc_val
;
505 unsigned char elf_reloc_val
;
508 static const struct mn10300_reloc_map mn10300_reloc_map
[] = {
509 { BFD_RELOC_NONE
, R_MN10300_NONE
, },
510 { BFD_RELOC_32
, R_MN10300_32
, },
511 { BFD_RELOC_16
, R_MN10300_16
, },
512 { BFD_RELOC_8
, R_MN10300_8
, },
513 { BFD_RELOC_32_PCREL
, R_MN10300_PCREL32
, },
514 { BFD_RELOC_16_PCREL
, R_MN10300_PCREL16
, },
515 { BFD_RELOC_8_PCREL
, R_MN10300_PCREL8
, },
516 { BFD_RELOC_24
, R_MN10300_24
, },
517 { BFD_RELOC_VTABLE_INHERIT
, R_MN10300_GNU_VTINHERIT
},
518 { BFD_RELOC_VTABLE_ENTRY
, R_MN10300_GNU_VTENTRY
},
519 { BFD_RELOC_32_GOT_PCREL
, R_MN10300_GOTPC32
},
520 { BFD_RELOC_16_GOT_PCREL
, R_MN10300_GOTPC16
},
521 { BFD_RELOC_32_GOTOFF
, R_MN10300_GOTOFF32
},
522 { BFD_RELOC_MN10300_GOTOFF24
, R_MN10300_GOTOFF24
},
523 { BFD_RELOC_16_GOTOFF
, R_MN10300_GOTOFF16
},
524 { BFD_RELOC_32_PLT_PCREL
, R_MN10300_PLT32
},
525 { BFD_RELOC_16_PLT_PCREL
, R_MN10300_PLT16
},
526 { BFD_RELOC_MN10300_GOT32
, R_MN10300_GOT32
},
527 { BFD_RELOC_MN10300_GOT24
, R_MN10300_GOT24
},
528 { BFD_RELOC_MN10300_GOT16
, R_MN10300_GOT16
},
529 { BFD_RELOC_MN10300_COPY
, R_MN10300_COPY
},
530 { BFD_RELOC_MN10300_GLOB_DAT
, R_MN10300_GLOB_DAT
},
531 { BFD_RELOC_MN10300_JMP_SLOT
, R_MN10300_JMP_SLOT
},
532 { BFD_RELOC_MN10300_RELATIVE
, R_MN10300_RELATIVE
},
535 /* Create the GOT section. */
538 _bfd_mn10300_elf_create_got_section (abfd
, info
)
540 struct bfd_link_info
* info
;
545 struct elf_link_hash_entry
* h
;
546 const struct elf_backend_data
* bed
= get_elf_backend_data (abfd
);
549 /* This function may be called more than once. */
550 if (bfd_get_section_by_name (abfd
, ".got") != NULL
)
553 switch (bed
->s
->arch_size
)
564 bfd_set_error (bfd_error_bad_value
);
568 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
569 | SEC_LINKER_CREATED
);
572 pltflags
|= SEC_CODE
;
573 if (bed
->plt_not_loaded
)
574 pltflags
&= ~ (SEC_LOAD
| SEC_HAS_CONTENTS
);
575 if (bed
->plt_readonly
)
576 pltflags
|= SEC_READONLY
;
578 s
= bfd_make_section_with_flags (abfd
, ".plt", pltflags
);
580 || ! bfd_set_section_alignment (abfd
, s
, bed
->plt_alignment
))
583 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
585 if (bed
->want_plt_sym
)
587 h
= _bfd_elf_define_linkage_sym (abfd
, info
, s
,
588 "_PROCEDURE_LINKAGE_TABLE_");
589 elf_hash_table (info
)->hplt
= h
;
594 s
= bfd_make_section_with_flags (abfd
, ".got", flags
);
596 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
599 if (bed
->want_got_plt
)
601 s
= bfd_make_section_with_flags (abfd
, ".got.plt", flags
);
603 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
607 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
608 (or .got.plt) section. We don't do this in the linker script
609 because we don't want to define the symbol if we are not creating
610 a global offset table. */
611 h
= _bfd_elf_define_linkage_sym (abfd
, info
, s
, "_GLOBAL_OFFSET_TABLE_");
612 elf_hash_table (info
)->hgot
= h
;
616 /* The first bit of the global offset table is the header. */
617 s
->size
+= bed
->got_header_size
;
622 static reloc_howto_type
*
623 bfd_elf32_bfd_reloc_type_lookup (abfd
, code
)
624 bfd
*abfd ATTRIBUTE_UNUSED
;
625 bfd_reloc_code_real_type code
;
630 i
< sizeof (mn10300_reloc_map
) / sizeof (struct mn10300_reloc_map
);
633 if (mn10300_reloc_map
[i
].bfd_reloc_val
== code
)
634 return &elf_mn10300_howto_table
[mn10300_reloc_map
[i
].elf_reloc_val
];
640 /* Set the howto pointer for an MN10300 ELF reloc. */
643 mn10300_info_to_howto (abfd
, cache_ptr
, dst
)
644 bfd
*abfd ATTRIBUTE_UNUSED
;
646 Elf_Internal_Rela
*dst
;
650 r_type
= ELF32_R_TYPE (dst
->r_info
);
651 BFD_ASSERT (r_type
< (unsigned int) R_MN10300_MAX
);
652 cache_ptr
->howto
= &elf_mn10300_howto_table
[r_type
];
655 /* Look through the relocs for a section during the first phase.
656 Since we don't do .gots or .plts, we just need to consider the
657 virtual table relocs for gc. */
660 mn10300_elf_check_relocs (abfd
, info
, sec
, relocs
)
662 struct bfd_link_info
*info
;
664 const Elf_Internal_Rela
*relocs
;
666 Elf_Internal_Shdr
*symtab_hdr
;
667 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
668 const Elf_Internal_Rela
*rel
;
669 const Elf_Internal_Rela
*rel_end
;
671 bfd_vma
* local_got_offsets
;
680 if (info
->relocatable
)
683 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
684 sym_hashes
= elf_sym_hashes (abfd
);
685 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
686 if (!elf_bad_symtab (abfd
))
687 sym_hashes_end
-= symtab_hdr
->sh_info
;
689 dynobj
= elf_hash_table (info
)->dynobj
;
690 local_got_offsets
= elf_local_got_offsets (abfd
);
691 rel_end
= relocs
+ sec
->reloc_count
;
692 for (rel
= relocs
; rel
< rel_end
; rel
++)
694 struct elf_link_hash_entry
*h
;
695 unsigned long r_symndx
;
697 r_symndx
= ELF32_R_SYM (rel
->r_info
);
698 if (r_symndx
< symtab_hdr
->sh_info
)
702 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
703 while (h
->root
.type
== bfd_link_hash_indirect
704 || h
->root
.type
== bfd_link_hash_warning
)
705 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
708 /* Some relocs require a global offset table. */
711 switch (ELF32_R_TYPE (rel
->r_info
))
713 case R_MN10300_GOT32
:
714 case R_MN10300_GOT24
:
715 case R_MN10300_GOT16
:
716 case R_MN10300_GOTOFF32
:
717 case R_MN10300_GOTOFF24
:
718 case R_MN10300_GOTOFF16
:
719 case R_MN10300_GOTPC32
:
720 case R_MN10300_GOTPC16
:
721 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
722 if (! _bfd_mn10300_elf_create_got_section (dynobj
, info
))
731 switch (ELF32_R_TYPE (rel
->r_info
))
733 /* This relocation describes the C++ object vtable hierarchy.
734 Reconstruct it for later use during GC. */
735 case R_MN10300_GNU_VTINHERIT
:
736 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
740 /* This relocation describes which C++ vtable entries are actually
741 used. Record for later use during GC. */
742 case R_MN10300_GNU_VTENTRY
:
743 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
746 case R_MN10300_GOT32
:
747 case R_MN10300_GOT24
:
748 case R_MN10300_GOT16
:
749 /* This symbol requires a global offset table entry. */
753 sgot
= bfd_get_section_by_name (dynobj
, ".got");
754 BFD_ASSERT (sgot
!= NULL
);
758 && (h
!= NULL
|| info
->shared
))
760 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
763 srelgot
= bfd_make_section_with_flags (dynobj
,
772 || ! bfd_set_section_alignment (dynobj
, srelgot
, 2))
779 if (h
->got
.offset
!= (bfd_vma
) -1)
780 /* We have already allocated space in the .got. */
783 h
->got
.offset
= sgot
->size
;
785 /* Make sure this symbol is output as a dynamic symbol. */
786 if (h
->dynindx
== -1)
788 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
792 srelgot
->size
+= sizeof (Elf32_External_Rela
);
796 /* This is a global offset table entry for a local
798 if (local_got_offsets
== NULL
)
803 size
= symtab_hdr
->sh_info
* sizeof (bfd_vma
);
804 local_got_offsets
= (bfd_vma
*) bfd_alloc (abfd
, size
);
806 if (local_got_offsets
== NULL
)
808 elf_local_got_offsets (abfd
) = local_got_offsets
;
810 for (i
= 0; i
< symtab_hdr
->sh_info
; i
++)
811 local_got_offsets
[i
] = (bfd_vma
) -1;
814 if (local_got_offsets
[r_symndx
] != (bfd_vma
) -1)
815 /* We have already allocated space in the .got. */
818 local_got_offsets
[r_symndx
] = sgot
->size
;
821 /* If we are generating a shared object, we need to
822 output a R_MN10300_RELATIVE reloc so that the dynamic
823 linker can adjust this GOT entry. */
824 srelgot
->size
+= sizeof (Elf32_External_Rela
);
831 case R_MN10300_PLT32
:
832 case R_MN10300_PLT16
:
833 /* This symbol requires a procedure linkage table entry. We
834 actually build the entry in adjust_dynamic_symbol,
835 because this might be a case of linking PIC code which is
836 never referenced by a dynamic object, in which case we
837 don't need to generate a procedure linkage table entry
840 /* If this is a local symbol, we resolve it directly without
841 creating a procedure linkage table entry. */
845 if (ELF_ST_VISIBILITY (h
->other
) == STV_INTERNAL
846 || ELF_ST_VISIBILITY (h
->other
) == STV_HIDDEN
)
856 case R_MN10300_PCREL32
:
857 case R_MN10300_PCREL16
:
858 case R_MN10300_PCREL8
:
867 /* If we are creating a shared library, then we need to copy
868 the reloc into the shared library. */
870 && (sec
->flags
& SEC_ALLOC
) != 0)
872 /* When creating a shared object, we must copy these
873 reloc types into the output file. We create a reloc
874 section in dynobj and make room for this reloc. */
879 name
= (bfd_elf_string_from_elf_section
881 elf_elfheader (abfd
)->e_shstrndx
,
882 elf_section_data (sec
)->rel_hdr
.sh_name
));
886 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
887 && strcmp (bfd_get_section_name (abfd
, sec
),
890 sreloc
= bfd_get_section_by_name (dynobj
, name
);
895 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
896 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
897 if ((sec
->flags
& SEC_ALLOC
) != 0)
898 flags
|= SEC_ALLOC
| SEC_LOAD
;
899 sreloc
= bfd_make_section_with_flags (dynobj
,
903 || ! bfd_set_section_alignment (dynobj
, sreloc
, 2))
908 sreloc
->size
+= sizeof (Elf32_External_Rela
);
918 /* Return the section that should be marked against GC for a given
922 mn10300_elf_gc_mark_hook (asection
*sec
,
923 struct bfd_link_info
*info
,
924 Elf_Internal_Rela
*rel
,
925 struct elf_link_hash_entry
*h
,
926 Elf_Internal_Sym
*sym
)
929 switch (ELF32_R_TYPE (rel
->r_info
))
931 case R_MN10300_GNU_VTINHERIT
:
932 case R_MN10300_GNU_VTENTRY
:
936 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
939 /* Perform a relocation as part of a final link. */
940 static bfd_reloc_status_type
941 mn10300_elf_final_link_relocate (howto
, input_bfd
, output_bfd
,
942 input_section
, contents
, offset
, value
,
943 addend
, h
, symndx
, info
, sym_sec
, is_local
)
944 reloc_howto_type
*howto
;
946 bfd
*output_bfd ATTRIBUTE_UNUSED
;
947 asection
*input_section
;
952 struct elf_link_hash_entry
* h
;
953 unsigned long symndx
;
954 struct bfd_link_info
*info
;
955 asection
*sym_sec ATTRIBUTE_UNUSED
;
956 int is_local ATTRIBUTE_UNUSED
;
958 unsigned long r_type
= howto
->type
;
959 bfd_byte
*hit_data
= contents
+ offset
;
961 bfd_vma
* local_got_offsets
;
966 dynobj
= elf_hash_table (info
)->dynobj
;
967 local_got_offsets
= elf_local_got_offsets (input_bfd
);
978 case R_MN10300_PCREL8
:
979 case R_MN10300_PCREL16
:
980 case R_MN10300_PCREL32
:
981 case R_MN10300_GOTOFF32
:
982 case R_MN10300_GOTOFF24
:
983 case R_MN10300_GOTOFF16
:
985 && (input_section
->flags
& SEC_ALLOC
) != 0
987 && ! SYMBOL_REFERENCES_LOCAL (info
, h
))
988 return bfd_reloc_dangerous
;
998 && (input_section
->flags
& SEC_ALLOC
) != 0)
1000 Elf_Internal_Rela outrel
;
1001 bfd_boolean skip
, relocate
;
1003 /* When generating a shared object, these relocations are
1004 copied into the output file to be resolved at run
1010 name
= (bfd_elf_string_from_elf_section
1012 elf_elfheader (input_bfd
)->e_shstrndx
,
1013 elf_section_data (input_section
)->rel_hdr
.sh_name
));
1017 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
1018 && strcmp (bfd_get_section_name (input_bfd
,
1022 sreloc
= bfd_get_section_by_name (dynobj
, name
);
1023 BFD_ASSERT (sreloc
!= NULL
);
1028 outrel
.r_offset
= _bfd_elf_section_offset (input_bfd
, info
,
1029 input_section
, offset
);
1030 if (outrel
.r_offset
== (bfd_vma
) -1)
1033 outrel
.r_offset
+= (input_section
->output_section
->vma
1034 + input_section
->output_offset
);
1038 memset (&outrel
, 0, sizeof outrel
);
1043 /* h->dynindx may be -1 if this symbol was marked to
1046 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1049 outrel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
1050 outrel
.r_addend
= value
+ addend
;
1054 BFD_ASSERT (h
->dynindx
!= -1);
1056 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_32
);
1057 outrel
.r_addend
= value
+ addend
;
1061 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
,
1062 (bfd_byte
*) (((Elf32_External_Rela
*) sreloc
->contents
)
1063 + sreloc
->reloc_count
));
1064 ++sreloc
->reloc_count
;
1066 /* If this reloc is against an external symbol, we do
1067 not want to fiddle with the addend. Otherwise, we
1068 need to include the symbol value so that it becomes
1069 an addend for the dynamic reloc. */
1071 return bfd_reloc_ok
;
1074 bfd_put_32 (input_bfd
, value
, hit_data
);
1075 return bfd_reloc_ok
;
1080 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1081 return bfd_reloc_overflow
;
1083 bfd_put_8 (input_bfd
, value
& 0xff, hit_data
);
1084 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1085 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1086 return bfd_reloc_ok
;
1091 if ((long) value
> 0x7fff || (long) value
< -0x8000)
1092 return bfd_reloc_overflow
;
1094 bfd_put_16 (input_bfd
, value
, hit_data
);
1095 return bfd_reloc_ok
;
1100 if ((long) value
> 0x7f || (long) value
< -0x80)
1101 return bfd_reloc_overflow
;
1103 bfd_put_8 (input_bfd
, value
, hit_data
);
1104 return bfd_reloc_ok
;
1106 case R_MN10300_PCREL8
:
1107 value
-= (input_section
->output_section
->vma
1108 + input_section
->output_offset
);
1112 if ((long) value
> 0xff || (long) value
< -0x100)
1113 return bfd_reloc_overflow
;
1115 bfd_put_8 (input_bfd
, value
, hit_data
);
1116 return bfd_reloc_ok
;
1118 case R_MN10300_PCREL16
:
1119 value
-= (input_section
->output_section
->vma
1120 + input_section
->output_offset
);
1124 if ((long) value
> 0xffff || (long) value
< -0x10000)
1125 return bfd_reloc_overflow
;
1127 bfd_put_16 (input_bfd
, value
, hit_data
);
1128 return bfd_reloc_ok
;
1130 case R_MN10300_PCREL32
:
1131 value
-= (input_section
->output_section
->vma
1132 + input_section
->output_offset
);
1136 bfd_put_32 (input_bfd
, value
, hit_data
);
1137 return bfd_reloc_ok
;
1139 case R_MN10300_GNU_VTINHERIT
:
1140 case R_MN10300_GNU_VTENTRY
:
1141 return bfd_reloc_ok
;
1143 case R_MN10300_GOTPC32
:
1144 /* Use global offset table as symbol value. */
1146 value
= bfd_get_section_by_name (dynobj
,
1147 ".got")->output_section
->vma
;
1148 value
-= (input_section
->output_section
->vma
1149 + input_section
->output_offset
);
1153 bfd_put_32 (input_bfd
, value
, hit_data
);
1154 return bfd_reloc_ok
;
1156 case R_MN10300_GOTPC16
:
1157 /* Use global offset table as symbol value. */
1159 value
= bfd_get_section_by_name (dynobj
,
1160 ".got")->output_section
->vma
;
1161 value
-= (input_section
->output_section
->vma
1162 + input_section
->output_offset
);
1166 if ((long) value
> 0xffff || (long) value
< -0x10000)
1167 return bfd_reloc_overflow
;
1169 bfd_put_16 (input_bfd
, value
, hit_data
);
1170 return bfd_reloc_ok
;
1172 case R_MN10300_GOTOFF32
:
1173 value
-= bfd_get_section_by_name (dynobj
,
1174 ".got")->output_section
->vma
;
1177 bfd_put_32 (input_bfd
, value
, hit_data
);
1178 return bfd_reloc_ok
;
1180 case R_MN10300_GOTOFF24
:
1181 value
-= bfd_get_section_by_name (dynobj
,
1182 ".got")->output_section
->vma
;
1185 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1186 return bfd_reloc_overflow
;
1188 bfd_put_8 (input_bfd
, value
, hit_data
);
1189 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1190 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1191 return bfd_reloc_ok
;
1193 case R_MN10300_GOTOFF16
:
1194 value
-= bfd_get_section_by_name (dynobj
,
1195 ".got")->output_section
->vma
;
1198 if ((long) value
> 0xffff || (long) value
< -0x10000)
1199 return bfd_reloc_overflow
;
1201 bfd_put_16 (input_bfd
, value
, hit_data
);
1202 return bfd_reloc_ok
;
1204 case R_MN10300_PLT32
:
1206 && ELF_ST_VISIBILITY (h
->other
) != STV_INTERNAL
1207 && ELF_ST_VISIBILITY (h
->other
) != STV_HIDDEN
1208 && h
->plt
.offset
!= (bfd_vma
) -1)
1212 splt
= bfd_get_section_by_name (dynobj
, ".plt");
1214 value
= (splt
->output_section
->vma
1215 + splt
->output_offset
1216 + h
->plt
.offset
) - value
;
1219 value
-= (input_section
->output_section
->vma
1220 + input_section
->output_offset
);
1224 bfd_put_32 (input_bfd
, value
, hit_data
);
1225 return bfd_reloc_ok
;
1227 case R_MN10300_PLT16
:
1229 && ELF_ST_VISIBILITY (h
->other
) != STV_INTERNAL
1230 && ELF_ST_VISIBILITY (h
->other
) != STV_HIDDEN
1231 && h
->plt
.offset
!= (bfd_vma
) -1)
1235 splt
= bfd_get_section_by_name (dynobj
, ".plt");
1237 value
= (splt
->output_section
->vma
1238 + splt
->output_offset
1239 + h
->plt
.offset
) - value
;
1242 value
-= (input_section
->output_section
->vma
1243 + input_section
->output_offset
);
1247 if ((long) value
> 0xffff || (long) value
< -0x10000)
1248 return bfd_reloc_overflow
;
1250 bfd_put_16 (input_bfd
, value
, hit_data
);
1251 return bfd_reloc_ok
;
1253 case R_MN10300_GOT32
:
1254 case R_MN10300_GOT24
:
1255 case R_MN10300_GOT16
:
1259 sgot
= bfd_get_section_by_name (dynobj
, ".got");
1265 off
= h
->got
.offset
;
1266 BFD_ASSERT (off
!= (bfd_vma
) -1);
1268 if (! elf_hash_table (info
)->dynamic_sections_created
1269 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1270 /* This is actually a static link, or it is a
1271 -Bsymbolic link and the symbol is defined
1272 locally, or the symbol was forced to be local
1273 because of a version file. We must initialize
1274 this entry in the global offset table.
1276 When doing a dynamic link, we create a .rela.got
1277 relocation entry to initialize the value. This
1278 is done in the finish_dynamic_symbol routine. */
1279 bfd_put_32 (output_bfd
, value
,
1280 sgot
->contents
+ off
);
1282 value
= sgot
->output_offset
+ off
;
1288 off
= elf_local_got_offsets (input_bfd
)[symndx
];
1290 bfd_put_32 (output_bfd
, value
, sgot
->contents
+ off
);
1295 Elf_Internal_Rela outrel
;
1297 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
1298 BFD_ASSERT (srelgot
!= NULL
);
1300 outrel
.r_offset
= (sgot
->output_section
->vma
1301 + sgot
->output_offset
1303 outrel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
1304 outrel
.r_addend
= value
;
1305 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
,
1306 (bfd_byte
*) (((Elf32_External_Rela
*)
1308 + srelgot
->reloc_count
));
1309 ++ srelgot
->reloc_count
;
1312 value
= sgot
->output_offset
+ off
;
1318 if (r_type
== R_MN10300_GOT32
)
1320 bfd_put_32 (input_bfd
, value
, hit_data
);
1321 return bfd_reloc_ok
;
1323 else if (r_type
== R_MN10300_GOT24
)
1325 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1326 return bfd_reloc_overflow
;
1328 bfd_put_8 (input_bfd
, value
& 0xff, hit_data
);
1329 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1330 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1331 return bfd_reloc_ok
;
1333 else if (r_type
== R_MN10300_GOT16
)
1335 if ((long) value
> 0xffff || (long) value
< -0x10000)
1336 return bfd_reloc_overflow
;
1338 bfd_put_16 (input_bfd
, value
, hit_data
);
1339 return bfd_reloc_ok
;
1344 return bfd_reloc_notsupported
;
1348 /* Relocate an MN10300 ELF section. */
1350 mn10300_elf_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
1351 contents
, relocs
, local_syms
, local_sections
)
1353 struct bfd_link_info
*info
;
1355 asection
*input_section
;
1357 Elf_Internal_Rela
*relocs
;
1358 Elf_Internal_Sym
*local_syms
;
1359 asection
**local_sections
;
1361 Elf_Internal_Shdr
*symtab_hdr
;
1362 struct elf_link_hash_entry
**sym_hashes
;
1363 Elf_Internal_Rela
*rel
, *relend
;
1365 if (info
->relocatable
)
1368 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1369 sym_hashes
= elf_sym_hashes (input_bfd
);
1372 relend
= relocs
+ input_section
->reloc_count
;
1373 for (; rel
< relend
; rel
++)
1376 reloc_howto_type
*howto
;
1377 unsigned long r_symndx
;
1378 Elf_Internal_Sym
*sym
;
1380 struct elf32_mn10300_link_hash_entry
*h
;
1382 bfd_reloc_status_type r
;
1384 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1385 r_type
= ELF32_R_TYPE (rel
->r_info
);
1386 howto
= elf_mn10300_howto_table
+ r_type
;
1388 /* Just skip the vtable gc relocs. */
1389 if (r_type
== R_MN10300_GNU_VTINHERIT
1390 || r_type
== R_MN10300_GNU_VTENTRY
)
1396 if (r_symndx
< symtab_hdr
->sh_info
)
1398 sym
= local_syms
+ r_symndx
;
1399 sec
= local_sections
[r_symndx
];
1400 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
1404 bfd_boolean unresolved_reloc
;
1406 struct elf_link_hash_entry
*hh
;
1408 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
1409 r_symndx
, symtab_hdr
, sym_hashes
,
1410 hh
, sec
, relocation
,
1411 unresolved_reloc
, warned
);
1413 h
= (struct elf32_mn10300_link_hash_entry
*) hh
;
1415 if ((h
->root
.root
.type
== bfd_link_hash_defined
1416 || h
->root
.root
.type
== bfd_link_hash_defweak
)
1417 && ( r_type
== R_MN10300_GOTPC32
1418 || r_type
== R_MN10300_GOTPC16
1419 || (( r_type
== R_MN10300_PLT32
1420 || r_type
== R_MN10300_PLT16
)
1421 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_INTERNAL
1422 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_HIDDEN
1423 && h
->root
.plt
.offset
!= (bfd_vma
) -1)
1424 || (( r_type
== R_MN10300_GOT32
1425 || r_type
== R_MN10300_GOT24
1426 || r_type
== R_MN10300_GOT16
)
1427 && elf_hash_table (info
)->dynamic_sections_created
1428 && !SYMBOL_REFERENCES_LOCAL (info
, hh
))
1429 || (r_type
== R_MN10300_32
1430 && !SYMBOL_REFERENCES_LOCAL (info
, hh
)
1431 && ((input_section
->flags
& SEC_ALLOC
) != 0
1432 /* DWARF will emit R_MN10300_32 relocations
1433 in its sections against symbols defined
1434 externally in shared libraries. We can't
1435 do anything with them here. */
1436 || ((input_section
->flags
& SEC_DEBUGGING
) != 0
1437 && h
->root
.def_dynamic
)))))
1438 /* In these cases, we don't need the relocation
1439 value. We check specially because in some
1440 obscure cases sec->output_section will be NULL. */
1443 else if (unresolved_reloc
)
1444 (*_bfd_error_handler
)
1445 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
1448 (long) rel
->r_offset
,
1450 h
->root
.root
.root
.string
);
1453 r
= mn10300_elf_final_link_relocate (howto
, input_bfd
, output_bfd
,
1455 contents
, rel
->r_offset
,
1456 relocation
, rel
->r_addend
,
1457 (struct elf_link_hash_entry
*)h
,
1459 info
, sec
, h
== NULL
);
1461 if (r
!= bfd_reloc_ok
)
1464 const char *msg
= (const char *) 0;
1467 name
= h
->root
.root
.root
.string
;
1470 name
= (bfd_elf_string_from_elf_section
1471 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
1472 if (name
== NULL
|| *name
== '\0')
1473 name
= bfd_section_name (input_bfd
, sec
);
1478 case bfd_reloc_overflow
:
1479 if (! ((*info
->callbacks
->reloc_overflow
)
1480 (info
, (h
? &h
->root
.root
: NULL
), name
,
1481 howto
->name
, (bfd_vma
) 0, input_bfd
,
1482 input_section
, rel
->r_offset
)))
1486 case bfd_reloc_undefined
:
1487 if (! ((*info
->callbacks
->undefined_symbol
)
1488 (info
, name
, input_bfd
, input_section
,
1489 rel
->r_offset
, TRUE
)))
1493 case bfd_reloc_outofrange
:
1494 msg
= _("internal error: out of range error");
1497 case bfd_reloc_notsupported
:
1498 msg
= _("internal error: unsupported relocation error");
1501 case bfd_reloc_dangerous
:
1502 msg
= _("internal error: dangerous error");
1506 msg
= _("internal error: unknown error");
1510 if (!((*info
->callbacks
->warning
)
1511 (info
, msg
, name
, input_bfd
, input_section
,
1522 /* Finish initializing one hash table entry. */
1524 elf32_mn10300_finish_hash_table_entry (gen_entry
, in_args
)
1525 struct bfd_hash_entry
*gen_entry
;
1528 struct elf32_mn10300_link_hash_entry
*entry
;
1529 struct bfd_link_info
*link_info
= (struct bfd_link_info
*)in_args
;
1530 unsigned int byte_count
= 0;
1532 entry
= (struct elf32_mn10300_link_hash_entry
*) gen_entry
;
1534 if (entry
->root
.root
.type
== bfd_link_hash_warning
)
1535 entry
= (struct elf32_mn10300_link_hash_entry
*) entry
->root
.root
.u
.i
.link
;
1537 /* If we already know we want to convert "call" to "calls" for calls
1538 to this symbol, then return now. */
1539 if (entry
->flags
== MN10300_CONVERT_CALL_TO_CALLS
)
1542 /* If there are no named calls to this symbol, or there's nothing we
1543 can move from the function itself into the "call" instruction,
1544 then note that all "call" instructions should be converted into
1545 "calls" instructions and return. If a symbol is available for
1546 dynamic symbol resolution (overridable or overriding), avoid
1547 custom calling conventions. */
1548 if (entry
->direct_calls
== 0
1549 || (entry
->stack_size
== 0 && entry
->movm_args
== 0)
1550 || (elf_hash_table (link_info
)->dynamic_sections_created
1551 && ELF_ST_VISIBILITY (entry
->root
.other
) != STV_INTERNAL
1552 && ELF_ST_VISIBILITY (entry
->root
.other
) != STV_HIDDEN
))
1554 /* Make a note that we should convert "call" instructions to "calls"
1555 instructions for calls to this symbol. */
1556 entry
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1560 /* We may be able to move some instructions from the function itself into
1561 the "call" instruction. Count how many bytes we might be able to
1562 eliminate in the function itself. */
1564 /* A movm instruction is two bytes. */
1565 if (entry
->movm_args
)
1568 /* Count the insn to allocate stack space too. */
1569 if (entry
->stack_size
> 0)
1571 if (entry
->stack_size
<= 128)
1577 /* If using "call" will result in larger code, then turn all
1578 the associated "call" instructions into "calls" instructions. */
1579 if (byte_count
< entry
->direct_calls
)
1580 entry
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1582 /* This routine never fails. */
1586 /* Used to count hash table entries. */
1588 elf32_mn10300_count_hash_table_entries (struct bfd_hash_entry
*gen_entry ATTRIBUTE_UNUSED
,
1591 int *count
= (int *)in_args
;
1597 /* Used to enumerate hash table entries into a linear array. */
1599 elf32_mn10300_list_hash_table_entries (struct bfd_hash_entry
*gen_entry
,
1602 struct bfd_hash_entry
***ptr
= (struct bfd_hash_entry
***) in_args
;
1609 /* Used to sort the array created by the above. */
1611 sort_by_value (const void *va
, const void *vb
)
1613 struct elf32_mn10300_link_hash_entry
*a
1614 = *(struct elf32_mn10300_link_hash_entry
**)va
;
1615 struct elf32_mn10300_link_hash_entry
*b
1616 = *(struct elf32_mn10300_link_hash_entry
**)vb
;
1618 return a
->value
- b
->value
;
1622 /* This function handles relaxing for the mn10300.
1624 There are quite a few relaxing opportunities available on the mn10300:
1626 * calls:32 -> calls:16 2 bytes
1627 * call:32 -> call:16 2 bytes
1629 * call:32 -> calls:32 1 byte
1630 * call:16 -> calls:16 1 byte
1631 * These are done anytime using "calls" would result
1632 in smaller code, or when necessary to preserve the
1633 meaning of the program.
1637 * In some circumstances we can move instructions
1638 from a function prologue into a "call" instruction.
1639 This is only done if the resulting code is no larger
1640 than the original code.
1642 * jmp:32 -> jmp:16 2 bytes
1643 * jmp:16 -> bra:8 1 byte
1645 * If the previous instruction is a conditional branch
1646 around the jump/bra, we may be able to reverse its condition
1647 and change its target to the jump's target. The jump/bra
1648 can then be deleted. 2 bytes
1650 * mov abs32 -> mov abs16 1 or 2 bytes
1652 * Most instructions which accept imm32 can relax to imm16 1 or 2 bytes
1653 - Most instructions which accept imm16 can relax to imm8 1 or 2 bytes
1655 * Most instructions which accept d32 can relax to d16 1 or 2 bytes
1656 - Most instructions which accept d16 can relax to d8 1 or 2 bytes
1658 We don't handle imm16->imm8 or d16->d8 as they're very rare
1659 and somewhat more difficult to support. */
1662 mn10300_elf_relax_section (abfd
, sec
, link_info
, again
)
1665 struct bfd_link_info
*link_info
;
1668 Elf_Internal_Shdr
*symtab_hdr
;
1669 Elf_Internal_Rela
*internal_relocs
= NULL
;
1670 Elf_Internal_Rela
*irel
, *irelend
;
1671 bfd_byte
*contents
= NULL
;
1672 Elf_Internal_Sym
*isymbuf
= NULL
;
1673 struct elf32_mn10300_link_hash_table
*hash_table
;
1674 asection
*section
= sec
;
1676 /* Assume nothing changes. */
1679 /* We need a pointer to the mn10300 specific hash table. */
1680 hash_table
= elf32_mn10300_hash_table (link_info
);
1682 /* Initialize fields in each hash table entry the first time through. */
1683 if ((hash_table
->flags
& MN10300_HASH_ENTRIES_INITIALIZED
) == 0)
1687 /* Iterate over all the input bfds. */
1688 for (input_bfd
= link_info
->input_bfds
;
1690 input_bfd
= input_bfd
->link_next
)
1692 /* We're going to need all the symbols for each bfd. */
1693 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1694 if (symtab_hdr
->sh_info
!= 0)
1696 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
1697 if (isymbuf
== NULL
)
1698 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
1699 symtab_hdr
->sh_info
, 0,
1701 if (isymbuf
== NULL
)
1705 /* Iterate over each section in this bfd. */
1706 for (section
= input_bfd
->sections
;
1708 section
= section
->next
)
1710 struct elf32_mn10300_link_hash_entry
*hash
;
1711 Elf_Internal_Sym
*sym
;
1712 asection
*sym_sec
= NULL
;
1713 const char *sym_name
;
1716 /* If there's nothing to do in this section, skip it. */
1717 if (! ((section
->flags
& SEC_RELOC
) != 0
1718 && section
->reloc_count
!= 0))
1720 if ((section
->flags
& SEC_ALLOC
) == 0)
1723 /* Get cached copy of section contents if it exists. */
1724 if (elf_section_data (section
)->this_hdr
.contents
!= NULL
)
1725 contents
= elf_section_data (section
)->this_hdr
.contents
;
1726 else if (section
->size
!= 0)
1728 /* Go get them off disk. */
1729 if (!bfd_malloc_and_get_section (input_bfd
, section
,
1736 /* If there aren't any relocs, then there's nothing to do. */
1737 if ((section
->flags
& SEC_RELOC
) != 0
1738 && section
->reloc_count
!= 0)
1741 /* Get a copy of the native relocations. */
1742 internal_relocs
= (_bfd_elf_link_read_relocs
1743 (input_bfd
, section
, (PTR
) NULL
,
1744 (Elf_Internal_Rela
*) NULL
,
1745 link_info
->keep_memory
));
1746 if (internal_relocs
== NULL
)
1749 /* Now examine each relocation. */
1750 irel
= internal_relocs
;
1751 irelend
= irel
+ section
->reloc_count
;
1752 for (; irel
< irelend
; irel
++)
1755 unsigned long r_index
;
1758 r_type
= ELF32_R_TYPE (irel
->r_info
);
1759 r_index
= ELF32_R_SYM (irel
->r_info
);
1761 if (r_type
< 0 || r_type
>= (int) R_MN10300_MAX
)
1764 /* We need the name and hash table entry of the target
1770 if (r_index
< symtab_hdr
->sh_info
)
1772 /* A local symbol. */
1773 Elf_Internal_Sym
*isym
;
1774 struct elf_link_hash_table
*elftab
;
1777 isym
= isymbuf
+ r_index
;
1778 if (isym
->st_shndx
== SHN_UNDEF
)
1779 sym_sec
= bfd_und_section_ptr
;
1780 else if (isym
->st_shndx
== SHN_ABS
)
1781 sym_sec
= bfd_abs_section_ptr
;
1782 else if (isym
->st_shndx
== SHN_COMMON
)
1783 sym_sec
= bfd_com_section_ptr
;
1786 = bfd_section_from_elf_index (input_bfd
,
1790 = bfd_elf_string_from_elf_section (input_bfd
,
1795 /* If it isn't a function, then we don't care
1797 if (ELF_ST_TYPE (isym
->st_info
) != STT_FUNC
)
1800 /* Tack on an ID so we can uniquely identify this
1801 local symbol in the global hash table. */
1802 amt
= strlen (sym_name
) + 10;
1803 new_name
= bfd_malloc (amt
);
1807 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
1808 sym_name
= new_name
;
1810 elftab
= &hash_table
->static_hash_table
->root
;
1811 hash
= ((struct elf32_mn10300_link_hash_entry
*)
1812 elf_link_hash_lookup (elftab
, sym_name
,
1813 TRUE
, TRUE
, FALSE
));
1818 r_index
-= symtab_hdr
->sh_info
;
1819 hash
= (struct elf32_mn10300_link_hash_entry
*)
1820 elf_sym_hashes (input_bfd
)[r_index
];
1823 sym_name
= hash
->root
.root
.root
.string
;
1824 if ((section
->flags
& SEC_CODE
) != 0)
1826 /* If this is not a "call" instruction, then we
1827 should convert "call" instructions to "calls"
1829 code
= bfd_get_8 (input_bfd
,
1830 contents
+ irel
->r_offset
- 1);
1831 if (code
!= 0xdd && code
!= 0xcd)
1832 hash
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1835 /* If this is a jump/call, then bump the
1836 direct_calls counter. Else force "call" to
1837 "calls" conversions. */
1838 if (r_type
== R_MN10300_PCREL32
1839 || r_type
== R_MN10300_PLT32
1840 || r_type
== R_MN10300_PLT16
1841 || r_type
== R_MN10300_PCREL16
)
1842 hash
->direct_calls
++;
1844 hash
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1848 /* Now look at the actual contents to get the stack size,
1849 and a list of what registers were saved in the prologue
1851 if ((section
->flags
& SEC_CODE
) != 0)
1853 Elf_Internal_Sym
*isym
, *isymend
;
1854 unsigned int sec_shndx
;
1855 struct elf_link_hash_entry
**hashes
;
1856 struct elf_link_hash_entry
**end_hashes
;
1857 unsigned int symcount
;
1859 sec_shndx
= _bfd_elf_section_from_bfd_section (input_bfd
,
1862 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1863 - symtab_hdr
->sh_info
);
1864 hashes
= elf_sym_hashes (input_bfd
);
1865 end_hashes
= hashes
+ symcount
;
1867 /* Look at each function defined in this section and
1868 update info for that function. */
1869 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
1870 for (isym
= isymbuf
; isym
< isymend
; isym
++)
1872 if (isym
->st_shndx
== sec_shndx
1873 && ELF_ST_TYPE (isym
->st_info
) == STT_FUNC
)
1875 struct elf_link_hash_table
*elftab
;
1877 struct elf_link_hash_entry
**lhashes
= hashes
;
1879 /* Skip a local symbol if it aliases a
1881 for (; lhashes
< end_hashes
; lhashes
++)
1883 hash
= (struct elf32_mn10300_link_hash_entry
*) *lhashes
;
1884 if ((hash
->root
.root
.type
== bfd_link_hash_defined
1885 || hash
->root
.root
.type
== bfd_link_hash_defweak
)
1886 && hash
->root
.root
.u
.def
.section
== section
1887 && hash
->root
.type
== STT_FUNC
1888 && hash
->root
.root
.u
.def
.value
== isym
->st_value
)
1891 if (lhashes
!= end_hashes
)
1894 if (isym
->st_shndx
== SHN_UNDEF
)
1895 sym_sec
= bfd_und_section_ptr
;
1896 else if (isym
->st_shndx
== SHN_ABS
)
1897 sym_sec
= bfd_abs_section_ptr
;
1898 else if (isym
->st_shndx
== SHN_COMMON
)
1899 sym_sec
= bfd_com_section_ptr
;
1902 = bfd_section_from_elf_index (input_bfd
,
1905 sym_name
= (bfd_elf_string_from_elf_section
1906 (input_bfd
, symtab_hdr
->sh_link
,
1909 /* Tack on an ID so we can uniquely identify this
1910 local symbol in the global hash table. */
1911 amt
= strlen (sym_name
) + 10;
1912 new_name
= bfd_malloc (amt
);
1916 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
1917 sym_name
= new_name
;
1919 elftab
= &hash_table
->static_hash_table
->root
;
1920 hash
= ((struct elf32_mn10300_link_hash_entry
*)
1921 elf_link_hash_lookup (elftab
, sym_name
,
1922 TRUE
, TRUE
, FALSE
));
1924 compute_function_info (input_bfd
, hash
,
1925 isym
->st_value
, contents
);
1926 hash
->value
= isym
->st_value
;
1930 for (; hashes
< end_hashes
; hashes
++)
1932 hash
= (struct elf32_mn10300_link_hash_entry
*) *hashes
;
1933 if ((hash
->root
.root
.type
== bfd_link_hash_defined
1934 || hash
->root
.root
.type
== bfd_link_hash_defweak
)
1935 && hash
->root
.root
.u
.def
.section
== section
1936 && hash
->root
.type
== STT_FUNC
)
1937 compute_function_info (input_bfd
, hash
,
1938 (hash
)->root
.root
.u
.def
.value
,
1943 /* Cache or free any memory we allocated for the relocs. */
1944 if (internal_relocs
!= NULL
1945 && elf_section_data (section
)->relocs
!= internal_relocs
)
1946 free (internal_relocs
);
1947 internal_relocs
= NULL
;
1949 /* Cache or free any memory we allocated for the contents. */
1950 if (contents
!= NULL
1951 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
1953 if (! link_info
->keep_memory
)
1957 /* Cache the section contents for elf_link_input_bfd. */
1958 elf_section_data (section
)->this_hdr
.contents
= contents
;
1964 /* Cache or free any memory we allocated for the symbols. */
1966 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
1968 if (! link_info
->keep_memory
)
1972 /* Cache the symbols for elf_link_input_bfd. */
1973 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
1979 /* Now iterate on each symbol in the hash table and perform
1980 the final initialization steps on each. */
1981 elf32_mn10300_link_hash_traverse (hash_table
,
1982 elf32_mn10300_finish_hash_table_entry
,
1984 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
1985 elf32_mn10300_finish_hash_table_entry
,
1989 /* This section of code collects all our local symbols, sorts
1990 them by value, and looks for multiple symbols referring to
1991 the same address. For those symbols, the flags are merged.
1992 At this point, the only flag that can be set is
1993 MN10300_CONVERT_CALL_TO_CALLS, so we simply OR the flags
1995 int static_count
= 0, i
;
1996 struct elf32_mn10300_link_hash_entry
**entries
;
1997 struct elf32_mn10300_link_hash_entry
**ptr
;
1999 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
2000 elf32_mn10300_count_hash_table_entries
,
2003 entries
= (struct elf32_mn10300_link_hash_entry
**)
2004 bfd_malloc (static_count
* sizeof (struct elf32_mn10300_link_hash_entry
*));
2007 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
2008 elf32_mn10300_list_hash_table_entries
,
2011 qsort (entries
, static_count
, sizeof(entries
[0]), sort_by_value
);
2013 for (i
=0; i
<static_count
-1; i
++)
2014 if (entries
[i
]->value
&& entries
[i
]->value
== entries
[i
+1]->value
)
2016 int v
= entries
[i
]->flags
;
2018 for (j
=i
+1; j
<static_count
&& entries
[j
]->value
== entries
[i
]->value
; j
++)
2019 v
|= entries
[j
]->flags
;
2020 for (j
=i
; j
<static_count
&& entries
[j
]->value
== entries
[i
]->value
; j
++)
2021 entries
[j
]->flags
= v
;
2026 /* All entries in the hash table are fully initialized. */
2027 hash_table
->flags
|= MN10300_HASH_ENTRIES_INITIALIZED
;
2029 /* Now that everything has been initialized, go through each
2030 code section and delete any prologue insns which will be
2031 redundant because their operations will be performed by
2032 a "call" instruction. */
2033 for (input_bfd
= link_info
->input_bfds
;
2035 input_bfd
= input_bfd
->link_next
)
2037 /* We're going to need all the local symbols for each bfd. */
2038 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
2039 if (symtab_hdr
->sh_info
!= 0)
2041 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
2042 if (isymbuf
== NULL
)
2043 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
2044 symtab_hdr
->sh_info
, 0,
2046 if (isymbuf
== NULL
)
2050 /* Walk over each section in this bfd. */
2051 for (section
= input_bfd
->sections
;
2053 section
= section
->next
)
2055 unsigned int sec_shndx
;
2056 Elf_Internal_Sym
*isym
, *isymend
;
2057 struct elf_link_hash_entry
**hashes
;
2058 struct elf_link_hash_entry
**end_hashes
;
2059 unsigned int symcount
;
2061 /* Skip non-code sections and empty sections. */
2062 if ((section
->flags
& SEC_CODE
) == 0 || section
->size
== 0)
2065 if (section
->reloc_count
!= 0)
2067 /* Get a copy of the native relocations. */
2068 internal_relocs
= (_bfd_elf_link_read_relocs
2069 (input_bfd
, section
, (PTR
) NULL
,
2070 (Elf_Internal_Rela
*) NULL
,
2071 link_info
->keep_memory
));
2072 if (internal_relocs
== NULL
)
2076 /* Get cached copy of section contents if it exists. */
2077 if (elf_section_data (section
)->this_hdr
.contents
!= NULL
)
2078 contents
= elf_section_data (section
)->this_hdr
.contents
;
2081 /* Go get them off disk. */
2082 if (!bfd_malloc_and_get_section (input_bfd
, section
,
2087 sec_shndx
= _bfd_elf_section_from_bfd_section (input_bfd
,
2090 /* Now look for any function in this section which needs
2091 insns deleted from its prologue. */
2092 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
2093 for (isym
= isymbuf
; isym
< isymend
; isym
++)
2095 struct elf32_mn10300_link_hash_entry
*sym_hash
;
2096 asection
*sym_sec
= NULL
;
2097 const char *sym_name
;
2099 struct elf_link_hash_table
*elftab
;
2102 if (isym
->st_shndx
!= sec_shndx
)
2105 if (isym
->st_shndx
== SHN_UNDEF
)
2106 sym_sec
= bfd_und_section_ptr
;
2107 else if (isym
->st_shndx
== SHN_ABS
)
2108 sym_sec
= bfd_abs_section_ptr
;
2109 else if (isym
->st_shndx
== SHN_COMMON
)
2110 sym_sec
= bfd_com_section_ptr
;
2113 = bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
2116 = bfd_elf_string_from_elf_section (input_bfd
,
2117 symtab_hdr
->sh_link
,
2120 /* Tack on an ID so we can uniquely identify this
2121 local symbol in the global hash table. */
2122 amt
= strlen (sym_name
) + 10;
2123 new_name
= bfd_malloc (amt
);
2126 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
2127 sym_name
= new_name
;
2129 elftab
= &hash_table
->static_hash_table
->root
;
2130 sym_hash
= ((struct elf32_mn10300_link_hash_entry
*)
2131 elf_link_hash_lookup (elftab
, sym_name
,
2132 FALSE
, FALSE
, FALSE
));
2135 if (sym_hash
== NULL
)
2138 if (! (sym_hash
->flags
& MN10300_CONVERT_CALL_TO_CALLS
)
2139 && ! (sym_hash
->flags
& MN10300_DELETED_PROLOGUE_BYTES
))
2143 /* Note that we've changed things. */
2144 elf_section_data (section
)->relocs
= internal_relocs
;
2145 elf_section_data (section
)->this_hdr
.contents
= contents
;
2146 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2148 /* Count how many bytes we're going to delete. */
2149 if (sym_hash
->movm_args
)
2152 if (sym_hash
->stack_size
> 0)
2154 if (sym_hash
->stack_size
<= 128)
2160 /* Note that we've deleted prologue bytes for this
2162 sym_hash
->flags
|= MN10300_DELETED_PROLOGUE_BYTES
;
2164 /* Actually delete the bytes. */
2165 if (!mn10300_elf_relax_delete_bytes (input_bfd
,
2171 /* Something changed. Not strictly necessary, but
2172 may lead to more relaxing opportunities. */
2177 /* Look for any global functions in this section which
2178 need insns deleted from their prologues. */
2179 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
2180 - symtab_hdr
->sh_info
);
2181 hashes
= elf_sym_hashes (input_bfd
);
2182 end_hashes
= hashes
+ symcount
;
2183 for (; hashes
< end_hashes
; hashes
++)
2185 struct elf32_mn10300_link_hash_entry
*sym_hash
;
2187 sym_hash
= (struct elf32_mn10300_link_hash_entry
*) *hashes
;
2188 if ((sym_hash
->root
.root
.type
== bfd_link_hash_defined
2189 || sym_hash
->root
.root
.type
== bfd_link_hash_defweak
)
2190 && sym_hash
->root
.root
.u
.def
.section
== section
2191 && ! (sym_hash
->flags
& MN10300_CONVERT_CALL_TO_CALLS
)
2192 && ! (sym_hash
->flags
& MN10300_DELETED_PROLOGUE_BYTES
))
2197 /* Note that we've changed things. */
2198 elf_section_data (section
)->relocs
= internal_relocs
;
2199 elf_section_data (section
)->this_hdr
.contents
= contents
;
2200 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2202 /* Count how many bytes we're going to delete. */
2203 if (sym_hash
->movm_args
)
2206 if (sym_hash
->stack_size
> 0)
2208 if (sym_hash
->stack_size
<= 128)
2214 /* Note that we've deleted prologue bytes for this
2216 sym_hash
->flags
|= MN10300_DELETED_PROLOGUE_BYTES
;
2218 /* Actually delete the bytes. */
2219 symval
= sym_hash
->root
.root
.u
.def
.value
;
2220 if (!mn10300_elf_relax_delete_bytes (input_bfd
,
2226 /* Something changed. Not strictly necessary, but
2227 may lead to more relaxing opportunities. */
2232 /* Cache or free any memory we allocated for the relocs. */
2233 if (internal_relocs
!= NULL
2234 && elf_section_data (section
)->relocs
!= internal_relocs
)
2235 free (internal_relocs
);
2236 internal_relocs
= NULL
;
2238 /* Cache or free any memory we allocated for the contents. */
2239 if (contents
!= NULL
2240 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
2242 if (! link_info
->keep_memory
)
2246 /* Cache the section contents for elf_link_input_bfd. */
2247 elf_section_data (section
)->this_hdr
.contents
= contents
;
2253 /* Cache or free any memory we allocated for the symbols. */
2255 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2257 if (! link_info
->keep_memory
)
2261 /* Cache the symbols for elf_link_input_bfd. */
2262 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2269 /* (Re)initialize for the basic instruction shortening/relaxing pass. */
2271 internal_relocs
= NULL
;
2273 /* For error_return. */
2276 /* We don't have to do anything for a relocatable link, if
2277 this section does not have relocs, or if this is not a
2279 if (link_info
->relocatable
2280 || (sec
->flags
& SEC_RELOC
) == 0
2281 || sec
->reloc_count
== 0
2282 || (sec
->flags
& SEC_CODE
) == 0)
2285 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2287 /* Get a copy of the native relocations. */
2288 internal_relocs
= (_bfd_elf_link_read_relocs
2289 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
2290 link_info
->keep_memory
));
2291 if (internal_relocs
== NULL
)
2294 /* Walk through them looking for relaxing opportunities. */
2295 irelend
= internal_relocs
+ sec
->reloc_count
;
2296 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
2299 struct elf32_mn10300_link_hash_entry
*h
= NULL
;
2301 /* If this isn't something that can be relaxed, then ignore
2303 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_NONE
2304 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_8
2305 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_MAX
)
2308 /* Get the section contents if we haven't done so already. */
2309 if (contents
== NULL
)
2311 /* Get cached copy if it exists. */
2312 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
2313 contents
= elf_section_data (sec
)->this_hdr
.contents
;
2316 /* Go get them off disk. */
2317 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
2322 /* Read this BFD's symbols if we haven't done so already. */
2323 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
2325 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
2326 if (isymbuf
== NULL
)
2327 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
2328 symtab_hdr
->sh_info
, 0,
2330 if (isymbuf
== NULL
)
2334 /* Get the value of the symbol referred to by the reloc. */
2335 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
2337 Elf_Internal_Sym
*isym
;
2338 asection
*sym_sec
= NULL
;
2339 const char *sym_name
;
2341 bfd_vma saved_addend
;
2343 /* A local symbol. */
2344 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
2345 if (isym
->st_shndx
== SHN_UNDEF
)
2346 sym_sec
= bfd_und_section_ptr
;
2347 else if (isym
->st_shndx
== SHN_ABS
)
2348 sym_sec
= bfd_abs_section_ptr
;
2349 else if (isym
->st_shndx
== SHN_COMMON
)
2350 sym_sec
= bfd_com_section_ptr
;
2352 sym_sec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
2354 sym_name
= bfd_elf_string_from_elf_section (abfd
,
2355 symtab_hdr
->sh_link
,
2358 if ((sym_sec
->flags
& SEC_MERGE
)
2359 && ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
2360 && sym_sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
2362 saved_addend
= irel
->r_addend
;
2363 symval
= _bfd_elf_rela_local_sym (abfd
, isym
, &sym_sec
, irel
);
2364 symval
+= irel
->r_addend
;
2365 irel
->r_addend
= saved_addend
;
2369 symval
= (isym
->st_value
2370 + sym_sec
->output_section
->vma
2371 + sym_sec
->output_offset
);
2373 /* Tack on an ID so we can uniquely identify this
2374 local symbol in the global hash table. */
2375 new_name
= bfd_malloc ((bfd_size_type
) strlen (sym_name
) + 10);
2378 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
2379 sym_name
= new_name
;
2381 h
= (struct elf32_mn10300_link_hash_entry
*)
2382 elf_link_hash_lookup (&hash_table
->static_hash_table
->root
,
2383 sym_name
, FALSE
, FALSE
, FALSE
);
2390 /* An external symbol. */
2391 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
2392 h
= (struct elf32_mn10300_link_hash_entry
*)
2393 (elf_sym_hashes (abfd
)[indx
]);
2394 BFD_ASSERT (h
!= NULL
);
2395 if (h
->root
.root
.type
!= bfd_link_hash_defined
2396 && h
->root
.root
.type
!= bfd_link_hash_defweak
)
2398 /* This appears to be a reference to an undefined
2399 symbol. Just ignore it--it will be caught by the
2400 regular reloc processing. */
2404 symval
= (h
->root
.root
.u
.def
.value
2405 + h
->root
.root
.u
.def
.section
->output_section
->vma
2406 + h
->root
.root
.u
.def
.section
->output_offset
);
2409 /* For simplicity of coding, we are going to modify the section
2410 contents, the section relocs, and the BFD symbol table. We
2411 must tell the rest of the code not to free up this
2412 information. It would be possible to instead create a table
2413 of changes which have to be made, as is done in coff-mips.c;
2414 that would be more work, but would require less memory when
2415 the linker is run. */
2417 /* Try to turn a 32bit pc-relative branch/call into a 16bit pc-relative
2418 branch/call, also deal with "call" -> "calls" conversions and
2419 insertion of prologue data into "call" instructions. */
2420 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL32
2421 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PLT32
)
2423 bfd_vma value
= symval
;
2425 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PLT32
2427 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_INTERNAL
2428 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_HIDDEN
2429 && h
->root
.plt
.offset
!= (bfd_vma
) -1)
2433 splt
= bfd_get_section_by_name (elf_hash_table (link_info
)
2436 value
= ((splt
->output_section
->vma
2437 + splt
->output_offset
2438 + h
->root
.plt
.offset
)
2439 - (sec
->output_section
->vma
2440 + sec
->output_offset
2444 /* If we've got a "call" instruction that needs to be turned
2445 into a "calls" instruction, do so now. It saves a byte. */
2446 if (h
&& (h
->flags
& MN10300_CONVERT_CALL_TO_CALLS
))
2450 /* Get the opcode. */
2451 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2453 /* Make sure we're working with a "call" instruction! */
2456 /* Note that we've changed the relocs, section contents,
2458 elf_section_data (sec
)->relocs
= internal_relocs
;
2459 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2460 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2462 /* Fix the opcode. */
2463 bfd_put_8 (abfd
, 0xfc, contents
+ irel
->r_offset
- 1);
2464 bfd_put_8 (abfd
, 0xff, contents
+ irel
->r_offset
);
2466 /* Fix irel->r_offset and irel->r_addend. */
2467 irel
->r_offset
+= 1;
2468 irel
->r_addend
+= 1;
2470 /* Delete one byte of data. */
2471 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2472 irel
->r_offset
+ 3, 1))
2475 /* That will change things, so, we should relax again.
2476 Note that this is not required, and it may be slow. */
2482 /* We've got a "call" instruction which needs some data
2483 from target function filled in. */
2486 /* Get the opcode. */
2487 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2489 /* Insert data from the target function into the "call"
2490 instruction if needed. */
2493 bfd_put_8 (abfd
, h
->movm_args
, contents
+ irel
->r_offset
+ 4);
2494 bfd_put_8 (abfd
, h
->stack_size
+ h
->movm_stack_size
,
2495 contents
+ irel
->r_offset
+ 5);
2499 /* Deal with pc-relative gunk. */
2500 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2501 value
-= irel
->r_offset
;
2502 value
+= irel
->r_addend
;
2504 /* See if the value will fit in 16 bits, note the high value is
2505 0x7fff + 2 as the target will be two bytes closer if we are
2507 if ((long) value
< 0x8001 && (long) value
> -0x8000)
2511 /* Get the opcode. */
2512 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2514 if (code
!= 0xdc && code
!= 0xdd && code
!= 0xff)
2517 /* Note that we've changed the relocs, section contents, etc. */
2518 elf_section_data (sec
)->relocs
= internal_relocs
;
2519 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2520 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2522 /* Fix the opcode. */
2524 bfd_put_8 (abfd
, 0xcc, contents
+ irel
->r_offset
- 1);
2525 else if (code
== 0xdd)
2526 bfd_put_8 (abfd
, 0xcd, contents
+ irel
->r_offset
- 1);
2527 else if (code
== 0xff)
2528 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
2530 /* Fix the relocation's type. */
2531 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2532 (ELF32_R_TYPE (irel
->r_info
)
2533 == (int) R_MN10300_PLT32
)
2537 /* Delete two bytes of data. */
2538 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2539 irel
->r_offset
+ 1, 2))
2542 /* That will change things, so, we should relax again.
2543 Note that this is not required, and it may be slow. */
2548 /* Try to turn a 16bit pc-relative branch into a 8bit pc-relative
2550 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL16
)
2552 bfd_vma value
= symval
;
2554 /* If we've got a "call" instruction that needs to be turned
2555 into a "calls" instruction, do so now. It saves a byte. */
2556 if (h
&& (h
->flags
& MN10300_CONVERT_CALL_TO_CALLS
))
2560 /* Get the opcode. */
2561 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2563 /* Make sure we're working with a "call" instruction! */
2566 /* Note that we've changed the relocs, section contents,
2568 elf_section_data (sec
)->relocs
= internal_relocs
;
2569 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2570 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2572 /* Fix the opcode. */
2573 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 1);
2574 bfd_put_8 (abfd
, 0xff, contents
+ irel
->r_offset
);
2576 /* Fix irel->r_offset and irel->r_addend. */
2577 irel
->r_offset
+= 1;
2578 irel
->r_addend
+= 1;
2580 /* Delete one byte of data. */
2581 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2582 irel
->r_offset
+ 1, 1))
2585 /* That will change things, so, we should relax again.
2586 Note that this is not required, and it may be slow. */
2594 /* Get the opcode. */
2595 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2597 /* Insert data from the target function into the "call"
2598 instruction if needed. */
2601 bfd_put_8 (abfd
, h
->movm_args
, contents
+ irel
->r_offset
+ 2);
2602 bfd_put_8 (abfd
, h
->stack_size
+ h
->movm_stack_size
,
2603 contents
+ irel
->r_offset
+ 3);
2607 /* Deal with pc-relative gunk. */
2608 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2609 value
-= irel
->r_offset
;
2610 value
+= irel
->r_addend
;
2612 /* See if the value will fit in 8 bits, note the high value is
2613 0x7f + 1 as the target will be one bytes closer if we are
2615 if ((long) value
< 0x80 && (long) value
> -0x80)
2619 /* Get the opcode. */
2620 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2625 /* Note that we've changed the relocs, section contents, etc. */
2626 elf_section_data (sec
)->relocs
= internal_relocs
;
2627 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2628 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2630 /* Fix the opcode. */
2631 bfd_put_8 (abfd
, 0xca, contents
+ irel
->r_offset
- 1);
2633 /* Fix the relocation's type. */
2634 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2637 /* Delete one byte of data. */
2638 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2639 irel
->r_offset
+ 1, 1))
2642 /* That will change things, so, we should relax again.
2643 Note that this is not required, and it may be slow. */
2648 /* Try to eliminate an unconditional 8 bit pc-relative branch
2649 which immediately follows a conditional 8 bit pc-relative
2650 branch around the unconditional branch.
2657 This happens when the bCC can't reach lab2 at assembly time,
2658 but due to other relaxations it can reach at link time. */
2659 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL8
)
2661 Elf_Internal_Rela
*nrel
;
2662 bfd_vma value
= symval
;
2665 /* Deal with pc-relative gunk. */
2666 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2667 value
-= irel
->r_offset
;
2668 value
+= irel
->r_addend
;
2670 /* Do nothing if this reloc is the last byte in the section. */
2671 if (irel
->r_offset
== sec
->size
)
2674 /* See if the next instruction is an unconditional pc-relative
2675 branch, more often than not this test will fail, so we
2676 test it first to speed things up. */
2677 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
+ 1);
2681 /* Also make sure the next relocation applies to the next
2682 instruction and that it's a pc-relative 8 bit branch. */
2685 || irel
->r_offset
+ 2 != nrel
->r_offset
2686 || ELF32_R_TYPE (nrel
->r_info
) != (int) R_MN10300_PCREL8
)
2689 /* Make sure our destination immediately follows the
2690 unconditional branch. */
2691 if (symval
!= (sec
->output_section
->vma
+ sec
->output_offset
2692 + irel
->r_offset
+ 3))
2695 /* Now make sure we are a conditional branch. This may not
2696 be necessary, but why take the chance.
2698 Note these checks assume that R_MN10300_PCREL8 relocs
2699 only occur on bCC and bCCx insns. If they occured
2700 elsewhere, we'd need to know the start of this insn
2701 for this check to be accurate. */
2702 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2703 if (code
!= 0xc0 && code
!= 0xc1 && code
!= 0xc2
2704 && code
!= 0xc3 && code
!= 0xc4 && code
!= 0xc5
2705 && code
!= 0xc6 && code
!= 0xc7 && code
!= 0xc8
2706 && code
!= 0xc9 && code
!= 0xe8 && code
!= 0xe9
2707 && code
!= 0xea && code
!= 0xeb)
2710 /* We also have to be sure there is no symbol/label
2711 at the unconditional branch. */
2712 if (mn10300_elf_symbol_address_p (abfd
, sec
, isymbuf
,
2713 irel
->r_offset
+ 1))
2716 /* Note that we've changed the relocs, section contents, etc. */
2717 elf_section_data (sec
)->relocs
= internal_relocs
;
2718 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2719 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2721 /* Reverse the condition of the first branch. */
2767 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
2769 /* Set the reloc type and symbol for the first branch
2770 from the second branch. */
2771 irel
->r_info
= nrel
->r_info
;
2773 /* Make the reloc for the second branch a null reloc. */
2774 nrel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (nrel
->r_info
),
2777 /* Delete two bytes of data. */
2778 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2779 irel
->r_offset
+ 1, 2))
2782 /* That will change things, so, we should relax again.
2783 Note that this is not required, and it may be slow. */
2787 /* Try to turn a 24 immediate, displacement or absolute address
2788 into a 8 immediate, displacement or absolute address. */
2789 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_24
)
2791 bfd_vma value
= symval
;
2792 value
+= irel
->r_addend
;
2794 /* See if the value will fit in 8 bits. */
2795 if ((long) value
< 0x7f && (long) value
> -0x80)
2799 /* AM33 insns which have 24 operands are 6 bytes long and
2800 will have 0xfd as the first byte. */
2802 /* Get the first opcode. */
2803 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 3);
2807 /* Get the second opcode. */
2808 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
2810 /* We can not relax 0x6b, 0x7b, 0x8b, 0x9b as no 24bit
2811 equivalent instructions exists. */
2812 if (code
!= 0x6b && code
!= 0x7b
2813 && code
!= 0x8b && code
!= 0x9b
2814 && ((code
& 0x0f) == 0x09 || (code
& 0x0f) == 0x08
2815 || (code
& 0x0f) == 0x0a || (code
& 0x0f) == 0x0b
2816 || (code
& 0x0f) == 0x0e))
2818 /* Not safe if the high bit is on as relaxing may
2819 move the value out of high mem and thus not fit
2820 in a signed 8bit value. This is currently over
2822 if ((value
& 0x80) == 0)
2824 /* Note that we've changed the relocation contents,
2826 elf_section_data (sec
)->relocs
= internal_relocs
;
2827 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2828 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2830 /* Fix the opcode. */
2831 bfd_put_8 (abfd
, 0xfb, contents
+ irel
->r_offset
- 3);
2832 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
2834 /* Fix the relocation's type. */
2836 ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2839 /* Delete two bytes of data. */
2840 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2841 irel
->r_offset
+ 1, 2))
2844 /* That will change things, so, we should relax
2845 again. Note that this is not required, and it
2855 /* Try to turn a 32bit immediate, displacement or absolute address
2856 into a 16bit immediate, displacement or absolute address. */
2857 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_32
2858 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOT32
2859 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTOFF32
)
2861 bfd_vma value
= symval
;
2863 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_MN10300_32
)
2867 sgot
= bfd_get_section_by_name (elf_hash_table (link_info
)
2870 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOT32
)
2872 value
= sgot
->output_offset
;
2875 value
+= h
->root
.got
.offset
;
2877 value
+= (elf_local_got_offsets
2878 (abfd
)[ELF32_R_SYM (irel
->r_info
)]);
2880 else if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTOFF32
)
2881 value
-= sgot
->output_section
->vma
;
2882 else if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTPC32
)
2883 value
= (sgot
->output_section
->vma
2884 - (sec
->output_section
->vma
2885 + sec
->output_offset
2891 value
+= irel
->r_addend
;
2893 /* See if the value will fit in 24 bits.
2894 We allow any 16bit match here. We prune those we can't
2896 if ((long) value
< 0x7fffff && (long) value
> -0x800000)
2900 /* AM33 insns which have 32bit operands are 7 bytes long and
2901 will have 0xfe as the first byte. */
2903 /* Get the first opcode. */
2904 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 3);
2908 /* Get the second opcode. */
2909 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
2911 /* All the am33 32 -> 24 relaxing possibilities. */
2912 /* We can not relax 0x6b, 0x7b, 0x8b, 0x9b as no 24bit
2913 equivalent instructions exists. */
2914 if (code
!= 0x6b && code
!= 0x7b
2915 && code
!= 0x8b && code
!= 0x9b
2916 && (ELF32_R_TYPE (irel
->r_info
)
2917 != (int) R_MN10300_GOTPC32
)
2918 && ((code
& 0x0f) == 0x09 || (code
& 0x0f) == 0x08
2919 || (code
& 0x0f) == 0x0a || (code
& 0x0f) == 0x0b
2920 || (code
& 0x0f) == 0x0e))
2922 /* Not safe if the high bit is on as relaxing may
2923 move the value out of high mem and thus not fit
2924 in a signed 16bit value. This is currently over
2926 if ((value
& 0x8000) == 0)
2928 /* Note that we've changed the relocation contents,
2930 elf_section_data (sec
)->relocs
= internal_relocs
;
2931 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2932 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2934 /* Fix the opcode. */
2935 bfd_put_8 (abfd
, 0xfd, contents
+ irel
->r_offset
- 3);
2936 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
2938 /* Fix the relocation's type. */
2940 ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2941 (ELF32_R_TYPE (irel
->r_info
)
2942 == (int) R_MN10300_GOTOFF32
)
2943 ? R_MN10300_GOTOFF24
2944 : (ELF32_R_TYPE (irel
->r_info
)
2945 == (int) R_MN10300_GOT32
)
2949 /* Delete one byte of data. */
2950 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2951 irel
->r_offset
+ 3, 1))
2954 /* That will change things, so, we should relax
2955 again. Note that this is not required, and it
2964 /* See if the value will fit in 16 bits.
2965 We allow any 16bit match here. We prune those we can't
2967 if ((long) value
< 0x7fff && (long) value
> -0x8000)
2971 /* Most insns which have 32bit operands are 6 bytes long;
2972 exceptions are pcrel insns and bit insns.
2974 We handle pcrel insns above. We don't bother trying
2975 to handle the bit insns here.
2977 The first byte of the remaining insns will be 0xfc. */
2979 /* Get the first opcode. */
2980 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
2985 /* Get the second opcode. */
2986 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2988 if ((code
& 0xf0) < 0x80)
2989 switch (code
& 0xf0)
2991 /* mov (d32,am),dn -> mov (d32,am),dn
2992 mov dm,(d32,am) -> mov dn,(d32,am)
2993 mov (d32,am),an -> mov (d32,am),an
2994 mov dm,(d32,am) -> mov dn,(d32,am)
2995 movbu (d32,am),dn -> movbu (d32,am),dn
2996 movbu dm,(d32,am) -> movbu dn,(d32,am)
2997 movhu (d32,am),dn -> movhu (d32,am),dn
2998 movhu dm,(d32,am) -> movhu dn,(d32,am) */
3007 /* Not safe if the high bit is on as relaxing may
3008 move the value out of high mem and thus not fit
3009 in a signed 16bit value. */
3011 && (value
& 0x8000))
3014 /* Note that we've changed the relocation contents, etc. */
3015 elf_section_data (sec
)->relocs
= internal_relocs
;
3016 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3017 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3019 /* Fix the opcode. */
3020 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3021 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3023 /* Fix the relocation's type. */
3024 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3025 (ELF32_R_TYPE (irel
->r_info
)
3026 == (int) R_MN10300_GOTOFF32
)
3027 ? R_MN10300_GOTOFF16
3028 : (ELF32_R_TYPE (irel
->r_info
)
3029 == (int) R_MN10300_GOT32
)
3031 : (ELF32_R_TYPE (irel
->r_info
)
3032 == (int) R_MN10300_GOTPC32
)
3033 ? R_MN10300_GOTPC16
:
3036 /* Delete two bytes of data. */
3037 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3038 irel
->r_offset
+ 2, 2))
3041 /* That will change things, so, we should relax again.
3042 Note that this is not required, and it may be slow. */
3046 else if ((code
& 0xf0) == 0x80
3047 || (code
& 0xf0) == 0x90)
3048 switch (code
& 0xf3)
3050 /* mov dn,(abs32) -> mov dn,(abs16)
3051 movbu dn,(abs32) -> movbu dn,(abs16)
3052 movhu dn,(abs32) -> movhu dn,(abs16) */
3056 /* Note that we've changed the relocation contents, etc. */
3057 elf_section_data (sec
)->relocs
= internal_relocs
;
3058 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3059 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3061 if ((code
& 0xf3) == 0x81)
3062 code
= 0x01 + (code
& 0x0c);
3063 else if ((code
& 0xf3) == 0x82)
3064 code
= 0x02 + (code
& 0x0c);
3065 else if ((code
& 0xf3) == 0x83)
3066 code
= 0x03 + (code
& 0x0c);
3070 /* Fix the opcode. */
3071 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
3073 /* Fix the relocation's type. */
3074 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3075 (ELF32_R_TYPE (irel
->r_info
)
3076 == (int) R_MN10300_GOTOFF32
)
3077 ? R_MN10300_GOTOFF16
3078 : (ELF32_R_TYPE (irel
->r_info
)
3079 == (int) R_MN10300_GOT32
)
3081 : (ELF32_R_TYPE (irel
->r_info
)
3082 == (int) R_MN10300_GOTPC32
)
3083 ? R_MN10300_GOTPC16
:
3086 /* The opcode got shorter too, so we have to fix the
3087 addend and offset too! */
3088 irel
->r_offset
-= 1;
3090 /* Delete three bytes of data. */
3091 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3092 irel
->r_offset
+ 1, 3))
3095 /* That will change things, so, we should relax again.
3096 Note that this is not required, and it may be slow. */
3100 /* mov am,(abs32) -> mov am,(abs16)
3101 mov am,(d32,sp) -> mov am,(d16,sp)
3102 mov dm,(d32,sp) -> mov dm,(d32,sp)
3103 movbu dm,(d32,sp) -> movbu dm,(d32,sp)
3104 movhu dm,(d32,sp) -> movhu dm,(d32,sp) */
3110 /* sp-based offsets are zero-extended. */
3111 if (code
>= 0x90 && code
<= 0x93
3115 /* Note that we've changed the relocation contents, etc. */
3116 elf_section_data (sec
)->relocs
= internal_relocs
;
3117 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3118 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3120 /* Fix the opcode. */
3121 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3122 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3124 /* Fix the relocation's type. */
3125 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3126 (ELF32_R_TYPE (irel
->r_info
)
3127 == (int) R_MN10300_GOTOFF32
)
3128 ? R_MN10300_GOTOFF16
3129 : (ELF32_R_TYPE (irel
->r_info
)
3130 == (int) R_MN10300_GOT32
)
3132 : (ELF32_R_TYPE (irel
->r_info
)
3133 == (int) R_MN10300_GOTPC32
)
3134 ? R_MN10300_GOTPC16
:
3137 /* Delete two bytes of data. */
3138 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3139 irel
->r_offset
+ 2, 2))
3142 /* That will change things, so, we should relax again.
3143 Note that this is not required, and it may be slow. */
3147 else if ((code
& 0xf0) < 0xf0)
3148 switch (code
& 0xfc)
3150 /* mov imm32,dn -> mov imm16,dn
3151 mov imm32,an -> mov imm16,an
3152 mov (abs32),dn -> mov (abs16),dn
3153 movbu (abs32),dn -> movbu (abs16),dn
3154 movhu (abs32),dn -> movhu (abs16),dn */
3160 /* Not safe if the high bit is on as relaxing may
3161 move the value out of high mem and thus not fit
3162 in a signed 16bit value. */
3164 && (value
& 0x8000))
3167 /* mov imm16, an zero-extends the immediate. */
3172 /* Note that we've changed the relocation contents, etc. */
3173 elf_section_data (sec
)->relocs
= internal_relocs
;
3174 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3175 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3177 if ((code
& 0xfc) == 0xcc)
3178 code
= 0x2c + (code
& 0x03);
3179 else if ((code
& 0xfc) == 0xdc)
3180 code
= 0x24 + (code
& 0x03);
3181 else if ((code
& 0xfc) == 0xa4)
3182 code
= 0x30 + (code
& 0x03);
3183 else if ((code
& 0xfc) == 0xa8)
3184 code
= 0x34 + (code
& 0x03);
3185 else if ((code
& 0xfc) == 0xac)
3186 code
= 0x38 + (code
& 0x03);
3190 /* Fix the opcode. */
3191 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
3193 /* Fix the relocation's type. */
3194 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3195 (ELF32_R_TYPE (irel
->r_info
)
3196 == (int) R_MN10300_GOTOFF32
)
3197 ? R_MN10300_GOTOFF16
3198 : (ELF32_R_TYPE (irel
->r_info
)
3199 == (int) R_MN10300_GOT32
)
3201 : (ELF32_R_TYPE (irel
->r_info
)
3202 == (int) R_MN10300_GOTPC32
)
3203 ? R_MN10300_GOTPC16
:
3206 /* The opcode got shorter too, so we have to fix the
3207 addend and offset too! */
3208 irel
->r_offset
-= 1;
3210 /* Delete three bytes of data. */
3211 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3212 irel
->r_offset
+ 1, 3))
3215 /* That will change things, so, we should relax again.
3216 Note that this is not required, and it may be slow. */
3220 /* mov (abs32),an -> mov (abs16),an
3221 mov (d32,sp),an -> mov (d16,sp),an
3222 mov (d32,sp),dn -> mov (d16,sp),dn
3223 movbu (d32,sp),dn -> movbu (d16,sp),dn
3224 movhu (d32,sp),dn -> movhu (d16,sp),dn
3225 add imm32,dn -> add imm16,dn
3226 cmp imm32,dn -> cmp imm16,dn
3227 add imm32,an -> add imm16,an
3228 cmp imm32,an -> cmp imm16,an
3229 and imm32,dn -> and imm16,dn
3230 or imm32,dn -> or imm16,dn
3231 xor imm32,dn -> xor imm16,dn
3232 btst imm32,dn -> btst imm16,dn */
3248 /* cmp imm16, an zero-extends the immediate. */
3253 /* So do sp-based offsets. */
3254 if (code
>= 0xb0 && code
<= 0xb3
3258 /* Note that we've changed the relocation contents, etc. */
3259 elf_section_data (sec
)->relocs
= internal_relocs
;
3260 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3261 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3263 /* Fix the opcode. */
3264 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3265 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3267 /* Fix the relocation's type. */
3268 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3269 (ELF32_R_TYPE (irel
->r_info
)
3270 == (int) R_MN10300_GOTOFF32
)
3271 ? R_MN10300_GOTOFF16
3272 : (ELF32_R_TYPE (irel
->r_info
)
3273 == (int) R_MN10300_GOT32
)
3275 : (ELF32_R_TYPE (irel
->r_info
)
3276 == (int) R_MN10300_GOTPC32
)
3277 ? R_MN10300_GOTPC16
:
3280 /* Delete two bytes of data. */
3281 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3282 irel
->r_offset
+ 2, 2))
3285 /* That will change things, so, we should relax again.
3286 Note that this is not required, and it may be slow. */
3290 else if (code
== 0xfe)
3292 /* add imm32,sp -> add imm16,sp */
3294 /* Note that we've changed the relocation contents, etc. */
3295 elf_section_data (sec
)->relocs
= internal_relocs
;
3296 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3297 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3299 /* Fix the opcode. */
3300 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3301 bfd_put_8 (abfd
, 0xfe, contents
+ irel
->r_offset
- 1);
3303 /* Fix the relocation's type. */
3304 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3305 (ELF32_R_TYPE (irel
->r_info
)
3306 == (int) R_MN10300_GOT32
)
3308 : (ELF32_R_TYPE (irel
->r_info
)
3309 == (int) R_MN10300_GOTOFF32
)
3310 ? R_MN10300_GOTOFF16
3311 : (ELF32_R_TYPE (irel
->r_info
)
3312 == (int) R_MN10300_GOTPC32
)
3313 ? R_MN10300_GOTPC16
:
3316 /* Delete two bytes of data. */
3317 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3318 irel
->r_offset
+ 2, 2))
3321 /* That will change things, so, we should relax again.
3322 Note that this is not required, and it may be slow. */
3331 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3333 if (! link_info
->keep_memory
)
3337 /* Cache the symbols for elf_link_input_bfd. */
3338 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3342 if (contents
!= NULL
3343 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
3345 if (! link_info
->keep_memory
)
3349 /* Cache the section contents for elf_link_input_bfd. */
3350 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3354 if (internal_relocs
!= NULL
3355 && elf_section_data (sec
)->relocs
!= internal_relocs
)
3356 free (internal_relocs
);
3362 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3364 if (contents
!= NULL
3365 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
3367 if (internal_relocs
!= NULL
3368 && elf_section_data (section
)->relocs
!= internal_relocs
)
3369 free (internal_relocs
);
3374 /* Compute the stack size and movm arguments for the function
3375 referred to by HASH at address ADDR in section with
3376 contents CONTENTS, store the information in the hash table. */
3378 compute_function_info (abfd
, hash
, addr
, contents
)
3380 struct elf32_mn10300_link_hash_entry
*hash
;
3382 unsigned char *contents
;
3384 unsigned char byte1
, byte2
;
3385 /* We only care about a very small subset of the possible prologue
3386 sequences here. Basically we look for:
3388 movm [d2,d3,a2,a3],sp (optional)
3389 add <size>,sp (optional, and only for sizes which fit in an unsigned
3392 If we find anything else, we quit. */
3394 /* Look for movm [regs],sp */
3395 byte1
= bfd_get_8 (abfd
, contents
+ addr
);
3396 byte2
= bfd_get_8 (abfd
, contents
+ addr
+ 1);
3400 hash
->movm_args
= byte2
;
3402 byte1
= bfd_get_8 (abfd
, contents
+ addr
);
3403 byte2
= bfd_get_8 (abfd
, contents
+ addr
+ 1);
3406 /* Now figure out how much stack space will be allocated by the movm
3407 instruction. We need this kept separate from the function's normal
3409 if (hash
->movm_args
)
3412 if (hash
->movm_args
& 0x80)
3413 hash
->movm_stack_size
+= 4;
3416 if (hash
->movm_args
& 0x40)
3417 hash
->movm_stack_size
+= 4;
3420 if (hash
->movm_args
& 0x20)
3421 hash
->movm_stack_size
+= 4;
3424 if (hash
->movm_args
& 0x10)
3425 hash
->movm_stack_size
+= 4;
3427 /* "other" space. d0, d1, a0, a1, mdr, lir, lar, 4 byte pad. */
3428 if (hash
->movm_args
& 0x08)
3429 hash
->movm_stack_size
+= 8 * 4;
3431 if (bfd_get_mach (abfd
) == bfd_mach_am33
3432 || bfd_get_mach (abfd
) == bfd_mach_am33_2
)
3434 /* "exother" space. e0, e1, mdrq, mcrh, mcrl, mcvf */
3435 if (hash
->movm_args
& 0x1)
3436 hash
->movm_stack_size
+= 6 * 4;
3438 /* exreg1 space. e4, e5, e6, e7 */
3439 if (hash
->movm_args
& 0x2)
3440 hash
->movm_stack_size
+= 4 * 4;
3442 /* exreg0 space. e2, e3 */
3443 if (hash
->movm_args
& 0x4)
3444 hash
->movm_stack_size
+= 2 * 4;
3448 /* Now look for the two stack adjustment variants. */
3449 if (byte1
== 0xf8 && byte2
== 0xfe)
3451 int temp
= bfd_get_8 (abfd
, contents
+ addr
+ 2);
3452 temp
= ((temp
& 0xff) ^ (~0x7f)) + 0x80;
3454 hash
->stack_size
= -temp
;
3456 else if (byte1
== 0xfa && byte2
== 0xfe)
3458 int temp
= bfd_get_16 (abfd
, contents
+ addr
+ 2);
3459 temp
= ((temp
& 0xffff) ^ (~0x7fff)) + 0x8000;
3463 hash
->stack_size
= temp
;
3466 /* If the total stack to be allocated by the call instruction is more
3467 than 255 bytes, then we can't remove the stack adjustment by using
3468 "call" (we might still be able to remove the "movm" instruction. */
3469 if (hash
->stack_size
+ hash
->movm_stack_size
> 255)
3470 hash
->stack_size
= 0;
3475 /* Delete some bytes from a section while relaxing. */
3478 mn10300_elf_relax_delete_bytes (abfd
, sec
, addr
, count
)
3484 Elf_Internal_Shdr
*symtab_hdr
;
3485 unsigned int sec_shndx
;
3487 Elf_Internal_Rela
*irel
, *irelend
;
3488 Elf_Internal_Rela
*irelalign
;
3490 Elf_Internal_Sym
*isym
, *isymend
;
3491 struct elf_link_hash_entry
**sym_hashes
;
3492 struct elf_link_hash_entry
**end_hashes
;
3493 unsigned int symcount
;
3495 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
3497 contents
= elf_section_data (sec
)->this_hdr
.contents
;
3499 /* The deletion must stop at the next ALIGN reloc for an aligment
3500 power larger than the number of bytes we are deleting. */
3505 irel
= elf_section_data (sec
)->relocs
;
3506 irelend
= irel
+ sec
->reloc_count
;
3508 /* Actually delete the bytes. */
3509 memmove (contents
+ addr
, contents
+ addr
+ count
,
3510 (size_t) (toaddr
- addr
- count
));
3513 /* Adjust all the relocs. */
3514 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
3516 /* Get the new reloc address. */
3517 if ((irel
->r_offset
> addr
3518 && irel
->r_offset
< toaddr
))
3519 irel
->r_offset
-= count
;
3522 /* Adjust the local symbols defined in this section. */
3523 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3524 isym
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
3525 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
3527 if (isym
->st_shndx
== sec_shndx
3528 && isym
->st_value
> addr
3529 && isym
->st_value
< toaddr
)
3530 isym
->st_value
-= count
;
3533 /* Now adjust the global symbols defined in this section. */
3534 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
3535 - symtab_hdr
->sh_info
);
3536 sym_hashes
= elf_sym_hashes (abfd
);
3537 end_hashes
= sym_hashes
+ symcount
;
3538 for (; sym_hashes
< end_hashes
; sym_hashes
++)
3540 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
3541 if ((sym_hash
->root
.type
== bfd_link_hash_defined
3542 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
3543 && sym_hash
->root
.u
.def
.section
== sec
3544 && sym_hash
->root
.u
.def
.value
> addr
3545 && sym_hash
->root
.u
.def
.value
< toaddr
)
3547 sym_hash
->root
.u
.def
.value
-= count
;
3554 /* Return TRUE if a symbol exists at the given address, else return
3557 mn10300_elf_symbol_address_p (abfd
, sec
, isym
, addr
)
3560 Elf_Internal_Sym
*isym
;
3563 Elf_Internal_Shdr
*symtab_hdr
;
3564 unsigned int sec_shndx
;
3565 Elf_Internal_Sym
*isymend
;
3566 struct elf_link_hash_entry
**sym_hashes
;
3567 struct elf_link_hash_entry
**end_hashes
;
3568 unsigned int symcount
;
3570 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
3572 /* Examine all the symbols. */
3573 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3574 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
3576 if (isym
->st_shndx
== sec_shndx
3577 && isym
->st_value
== addr
)
3581 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
3582 - symtab_hdr
->sh_info
);
3583 sym_hashes
= elf_sym_hashes (abfd
);
3584 end_hashes
= sym_hashes
+ symcount
;
3585 for (; sym_hashes
< end_hashes
; sym_hashes
++)
3587 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
3588 if ((sym_hash
->root
.type
== bfd_link_hash_defined
3589 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
3590 && sym_hash
->root
.u
.def
.section
== sec
3591 && sym_hash
->root
.u
.def
.value
== addr
)
3598 /* This is a version of bfd_generic_get_relocated_section_contents
3599 which uses mn10300_elf_relocate_section. */
3602 mn10300_elf_get_relocated_section_contents (output_bfd
, link_info
, link_order
,
3603 data
, relocatable
, symbols
)
3605 struct bfd_link_info
*link_info
;
3606 struct bfd_link_order
*link_order
;
3608 bfd_boolean relocatable
;
3611 Elf_Internal_Shdr
*symtab_hdr
;
3612 asection
*input_section
= link_order
->u
.indirect
.section
;
3613 bfd
*input_bfd
= input_section
->owner
;
3614 asection
**sections
= NULL
;
3615 Elf_Internal_Rela
*internal_relocs
= NULL
;
3616 Elf_Internal_Sym
*isymbuf
= NULL
;
3618 /* We only need to handle the case of relaxing, or of having a
3619 particular set of section contents, specially. */
3621 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
3622 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
3627 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3629 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
3630 (size_t) input_section
->size
);
3632 if ((input_section
->flags
& SEC_RELOC
) != 0
3633 && input_section
->reloc_count
> 0)
3636 Elf_Internal_Sym
*isym
, *isymend
;
3639 internal_relocs
= (_bfd_elf_link_read_relocs
3640 (input_bfd
, input_section
, (PTR
) NULL
,
3641 (Elf_Internal_Rela
*) NULL
, FALSE
));
3642 if (internal_relocs
== NULL
)
3645 if (symtab_hdr
->sh_info
!= 0)
3647 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
3648 if (isymbuf
== NULL
)
3649 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
3650 symtab_hdr
->sh_info
, 0,
3652 if (isymbuf
== NULL
)
3656 amt
= symtab_hdr
->sh_info
;
3657 amt
*= sizeof (asection
*);
3658 sections
= (asection
**) bfd_malloc (amt
);
3659 if (sections
== NULL
&& amt
!= 0)
3662 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
3663 for (isym
= isymbuf
, secpp
= sections
; isym
< isymend
; ++isym
, ++secpp
)
3667 if (isym
->st_shndx
== SHN_UNDEF
)
3668 isec
= bfd_und_section_ptr
;
3669 else if (isym
->st_shndx
== SHN_ABS
)
3670 isec
= bfd_abs_section_ptr
;
3671 else if (isym
->st_shndx
== SHN_COMMON
)
3672 isec
= bfd_com_section_ptr
;
3674 isec
= bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
3679 if (! mn10300_elf_relocate_section (output_bfd
, link_info
, input_bfd
,
3680 input_section
, data
, internal_relocs
,
3684 if (sections
!= NULL
)
3686 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3688 if (internal_relocs
!= elf_section_data (input_section
)->relocs
)
3689 free (internal_relocs
);
3695 if (sections
!= NULL
)
3697 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3699 if (internal_relocs
!= NULL
3700 && internal_relocs
!= elf_section_data (input_section
)->relocs
)
3701 free (internal_relocs
);
3705 /* Assorted hash table functions. */
3707 /* Initialize an entry in the link hash table. */
3709 /* Create an entry in an MN10300 ELF linker hash table. */
3711 static struct bfd_hash_entry
*
3712 elf32_mn10300_link_hash_newfunc (entry
, table
, string
)
3713 struct bfd_hash_entry
*entry
;
3714 struct bfd_hash_table
*table
;
3717 struct elf32_mn10300_link_hash_entry
*ret
=
3718 (struct elf32_mn10300_link_hash_entry
*) entry
;
3720 /* Allocate the structure if it has not already been allocated by a
3722 if (ret
== (struct elf32_mn10300_link_hash_entry
*) NULL
)
3723 ret
= ((struct elf32_mn10300_link_hash_entry
*)
3724 bfd_hash_allocate (table
,
3725 sizeof (struct elf32_mn10300_link_hash_entry
)));
3726 if (ret
== (struct elf32_mn10300_link_hash_entry
*) NULL
)
3727 return (struct bfd_hash_entry
*) ret
;
3729 /* Call the allocation method of the superclass. */
3730 ret
= ((struct elf32_mn10300_link_hash_entry
*)
3731 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
3733 if (ret
!= (struct elf32_mn10300_link_hash_entry
*) NULL
)
3735 ret
->direct_calls
= 0;
3736 ret
->stack_size
= 0;
3738 ret
->movm_stack_size
= 0;
3743 return (struct bfd_hash_entry
*) ret
;
3746 /* Create an mn10300 ELF linker hash table. */
3748 static struct bfd_link_hash_table
*
3749 elf32_mn10300_link_hash_table_create (abfd
)
3752 struct elf32_mn10300_link_hash_table
*ret
;
3753 bfd_size_type amt
= sizeof (struct elf32_mn10300_link_hash_table
);
3755 ret
= (struct elf32_mn10300_link_hash_table
*) bfd_malloc (amt
);
3756 if (ret
== (struct elf32_mn10300_link_hash_table
*) NULL
)
3759 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
3760 elf32_mn10300_link_hash_newfunc
,
3761 sizeof (struct elf32_mn10300_link_hash_entry
)))
3768 amt
= sizeof (struct elf_link_hash_table
);
3769 ret
->static_hash_table
3770 = (struct elf32_mn10300_link_hash_table
*) bfd_malloc (amt
);
3771 if (ret
->static_hash_table
== NULL
)
3777 if (!_bfd_elf_link_hash_table_init (&ret
->static_hash_table
->root
, abfd
,
3778 elf32_mn10300_link_hash_newfunc
,
3779 sizeof (struct elf32_mn10300_link_hash_entry
)))
3781 free (ret
->static_hash_table
);
3785 return &ret
->root
.root
;
3788 /* Free an mn10300 ELF linker hash table. */
3791 elf32_mn10300_link_hash_table_free (hash
)
3792 struct bfd_link_hash_table
*hash
;
3794 struct elf32_mn10300_link_hash_table
*ret
3795 = (struct elf32_mn10300_link_hash_table
*) hash
;
3797 _bfd_generic_link_hash_table_free
3798 ((struct bfd_link_hash_table
*) ret
->static_hash_table
);
3799 _bfd_generic_link_hash_table_free
3800 ((struct bfd_link_hash_table
*) ret
);
3803 static unsigned long
3804 elf_mn10300_mach (flags
)
3807 switch (flags
& EF_MN10300_MACH
)
3809 case E_MN10300_MACH_MN10300
:
3811 return bfd_mach_mn10300
;
3813 case E_MN10300_MACH_AM33
:
3814 return bfd_mach_am33
;
3816 case E_MN10300_MACH_AM33_2
:
3817 return bfd_mach_am33_2
;
3821 /* The final processing done just before writing out a MN10300 ELF object
3822 file. This gets the MN10300 architecture right based on the machine
3826 _bfd_mn10300_elf_final_write_processing (abfd
, linker
)
3828 bfd_boolean linker ATTRIBUTE_UNUSED
;
3832 switch (bfd_get_mach (abfd
))
3835 case bfd_mach_mn10300
:
3836 val
= E_MN10300_MACH_MN10300
;
3840 val
= E_MN10300_MACH_AM33
;
3843 case bfd_mach_am33_2
:
3844 val
= E_MN10300_MACH_AM33_2
;
3848 elf_elfheader (abfd
)->e_flags
&= ~ (EF_MN10300_MACH
);
3849 elf_elfheader (abfd
)->e_flags
|= val
;
3853 _bfd_mn10300_elf_object_p (abfd
)
3856 bfd_default_set_arch_mach (abfd
, bfd_arch_mn10300
,
3857 elf_mn10300_mach (elf_elfheader (abfd
)->e_flags
));
3861 /* Merge backend specific data from an object file to the output
3862 object file when linking. */
3865 _bfd_mn10300_elf_merge_private_bfd_data (ibfd
, obfd
)
3869 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
3870 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
3873 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
3874 && bfd_get_mach (obfd
) < bfd_get_mach (ibfd
))
3876 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
3877 bfd_get_mach (ibfd
)))
3884 #define PLT0_ENTRY_SIZE 15
3885 #define PLT_ENTRY_SIZE 20
3886 #define PIC_PLT_ENTRY_SIZE 24
3888 static const bfd_byte elf_mn10300_plt0_entry
[PLT0_ENTRY_SIZE
] =
3890 0xfc, 0xa0, 0, 0, 0, 0, /* mov (.got+8),a0 */
3891 0xfe, 0xe, 0x10, 0, 0, 0, 0, /* mov (.got+4),r1 */
3892 0xf0, 0xf4, /* jmp (a0) */
3895 static const bfd_byte elf_mn10300_plt_entry
[PLT_ENTRY_SIZE
] =
3897 0xfc, 0xa0, 0, 0, 0, 0, /* mov (nameN@GOT + .got),a0 */
3898 0xf0, 0xf4, /* jmp (a0) */
3899 0xfe, 8, 0, 0, 0, 0, 0, /* mov reloc-table-address,r0 */
3900 0xdc, 0, 0, 0, 0, /* jmp .plt0 */
3903 static const bfd_byte elf_mn10300_pic_plt_entry
[PIC_PLT_ENTRY_SIZE
] =
3905 0xfc, 0x22, 0, 0, 0, 0, /* mov (nameN@GOT,a2),a0 */
3906 0xf0, 0xf4, /* jmp (a0) */
3907 0xfe, 8, 0, 0, 0, 0, 0, /* mov reloc-table-address,r0 */
3908 0xf8, 0x22, 8, /* mov (8,a2),a0 */
3909 0xfb, 0xa, 0x1a, 4, /* mov (4,a2),r1 */
3910 0xf0, 0xf4, /* jmp (a0) */
3913 /* Return size of the first PLT entry. */
3914 #define elf_mn10300_sizeof_plt0(info) \
3915 (info->shared ? PIC_PLT_ENTRY_SIZE : PLT0_ENTRY_SIZE)
3917 /* Return size of a PLT entry. */
3918 #define elf_mn10300_sizeof_plt(info) \
3919 (info->shared ? PIC_PLT_ENTRY_SIZE : PLT_ENTRY_SIZE)
3921 /* Return offset of the PLT0 address in an absolute PLT entry. */
3922 #define elf_mn10300_plt_plt0_offset(info) 16
3924 /* Return offset of the linker in PLT0 entry. */
3925 #define elf_mn10300_plt0_linker_offset(info) 2
3927 /* Return offset of the GOT id in PLT0 entry. */
3928 #define elf_mn10300_plt0_gotid_offset(info) 9
3930 /* Return offset of the temporary in PLT entry */
3931 #define elf_mn10300_plt_temp_offset(info) 8
3933 /* Return offset of the symbol in PLT entry. */
3934 #define elf_mn10300_plt_symbol_offset(info) 2
3936 /* Return offset of the relocation in PLT entry. */
3937 #define elf_mn10300_plt_reloc_offset(info) 11
3939 /* The name of the dynamic interpreter. This is put in the .interp
3942 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
3944 /* Create dynamic sections when linking against a dynamic object. */
3947 _bfd_mn10300_elf_create_dynamic_sections (abfd
, info
)
3949 struct bfd_link_info
*info
;
3953 const struct elf_backend_data
* bed
= get_elf_backend_data (abfd
);
3956 switch (bed
->s
->arch_size
)
3967 bfd_set_error (bfd_error_bad_value
);
3971 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
3972 .rel[a].bss sections. */
3974 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
3975 | SEC_LINKER_CREATED
);
3977 s
= bfd_make_section_with_flags (abfd
,
3978 (bed
->default_use_rela_p
3979 ? ".rela.plt" : ".rel.plt"),
3980 flags
| SEC_READONLY
);
3982 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
3985 if (! _bfd_mn10300_elf_create_got_section (abfd
, info
))
3989 const char * secname
;
3994 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
3996 secflags
= bfd_get_section_flags (abfd
, sec
);
3997 if ((secflags
& (SEC_DATA
| SEC_LINKER_CREATED
))
3998 || ((secflags
& SEC_HAS_CONTENTS
) != SEC_HAS_CONTENTS
))
4001 secname
= bfd_get_section_name (abfd
, sec
);
4002 relname
= (char *) bfd_malloc (strlen (secname
) + 6);
4003 strcpy (relname
, ".rela");
4004 strcat (relname
, secname
);
4006 s
= bfd_make_section_with_flags (abfd
, relname
,
4007 flags
| SEC_READONLY
);
4009 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
4014 if (bed
->want_dynbss
)
4016 /* The .dynbss section is a place to put symbols which are defined
4017 by dynamic objects, are referenced by regular objects, and are
4018 not functions. We must allocate space for them in the process
4019 image and use a R_*_COPY reloc to tell the dynamic linker to
4020 initialize them at run time. The linker script puts the .dynbss
4021 section into the .bss section of the final image. */
4022 s
= bfd_make_section_with_flags (abfd
, ".dynbss",
4023 SEC_ALLOC
| SEC_LINKER_CREATED
);
4027 /* The .rel[a].bss section holds copy relocs. This section is not
4028 normally needed. We need to create it here, though, so that the
4029 linker will map it to an output section. We can't just create it
4030 only if we need it, because we will not know whether we need it
4031 until we have seen all the input files, and the first time the
4032 main linker code calls BFD after examining all the input files
4033 (size_dynamic_sections) the input sections have already been
4034 mapped to the output sections. If the section turns out not to
4035 be needed, we can discard it later. We will never need this
4036 section when generating a shared object, since they do not use
4040 s
= bfd_make_section_with_flags (abfd
,
4041 (bed
->default_use_rela_p
4042 ? ".rela.bss" : ".rel.bss"),
4043 flags
| SEC_READONLY
);
4045 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
4053 /* Adjust a symbol defined by a dynamic object and referenced by a
4054 regular object. The current definition is in some section of the
4055 dynamic object, but we're not including those sections. We have to
4056 change the definition to something the rest of the link can
4060 _bfd_mn10300_elf_adjust_dynamic_symbol (info
, h
)
4061 struct bfd_link_info
* info
;
4062 struct elf_link_hash_entry
* h
;
4066 unsigned int power_of_two
;
4068 dynobj
= elf_hash_table (info
)->dynobj
;
4070 /* Make sure we know what is going on here. */
4071 BFD_ASSERT (dynobj
!= NULL
4073 || h
->u
.weakdef
!= NULL
4076 && !h
->def_regular
)));
4078 /* If this is a function, put it in the procedure linkage table. We
4079 will fill in the contents of the procedure linkage table later,
4080 when we know the address of the .got section. */
4081 if (h
->type
== STT_FUNC
4088 /* This case can occur if we saw a PLT reloc in an input
4089 file, but the symbol was never referred to by a dynamic
4090 object. In such a case, we don't actually need to build
4091 a procedure linkage table, and we can just do a REL32
4093 BFD_ASSERT (h
->needs_plt
);
4097 /* Make sure this symbol is output as a dynamic symbol. */
4098 if (h
->dynindx
== -1)
4100 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
4104 s
= bfd_get_section_by_name (dynobj
, ".plt");
4105 BFD_ASSERT (s
!= NULL
);
4107 /* If this is the first .plt entry, make room for the special
4110 s
->size
+= elf_mn10300_sizeof_plt0 (info
);
4112 /* If this symbol is not defined in a regular file, and we are
4113 not generating a shared library, then set the symbol to this
4114 location in the .plt. This is required to make function
4115 pointers compare as equal between the normal executable and
4116 the shared library. */
4120 h
->root
.u
.def
.section
= s
;
4121 h
->root
.u
.def
.value
= s
->size
;
4124 h
->plt
.offset
= s
->size
;
4126 /* Make room for this entry. */
4127 s
->size
+= elf_mn10300_sizeof_plt (info
);
4129 /* We also need to make an entry in the .got.plt section, which
4130 will be placed in the .got section by the linker script. */
4132 s
= bfd_get_section_by_name (dynobj
, ".got.plt");
4133 BFD_ASSERT (s
!= NULL
);
4136 /* We also need to make an entry in the .rela.plt section. */
4138 s
= bfd_get_section_by_name (dynobj
, ".rela.plt");
4139 BFD_ASSERT (s
!= NULL
);
4140 s
->size
+= sizeof (Elf32_External_Rela
);
4145 /* If this is a weak symbol, and there is a real definition, the
4146 processor independent code will have arranged for us to see the
4147 real definition first, and we can just use the same value. */
4148 if (h
->u
.weakdef
!= NULL
)
4150 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
4151 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
4152 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
4153 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
4157 /* This is a reference to a symbol defined by a dynamic object which
4158 is not a function. */
4160 /* If we are creating a shared library, we must presume that the
4161 only references to the symbol are via the global offset table.
4162 For such cases we need not do anything here; the relocations will
4163 be handled correctly by relocate_section. */
4167 /* If there are no references to this symbol that do not use the
4168 GOT, we don't need to generate a copy reloc. */
4169 if (!h
->non_got_ref
)
4174 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
4175 h
->root
.root
.string
);
4179 /* We must allocate the symbol in our .dynbss section, which will
4180 become part of the .bss section of the executable. There will be
4181 an entry for this symbol in the .dynsym section. The dynamic
4182 object will contain position independent code, so all references
4183 from the dynamic object to this symbol will go through the global
4184 offset table. The dynamic linker will use the .dynsym entry to
4185 determine the address it must put in the global offset table, so
4186 both the dynamic object and the regular object will refer to the
4187 same memory location for the variable. */
4189 s
= bfd_get_section_by_name (dynobj
, ".dynbss");
4190 BFD_ASSERT (s
!= NULL
);
4192 /* We must generate a R_MN10300_COPY reloc to tell the dynamic linker to
4193 copy the initial value out of the dynamic object and into the
4194 runtime process image. We need to remember the offset into the
4195 .rela.bss section we are going to use. */
4196 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
4200 srel
= bfd_get_section_by_name (dynobj
, ".rela.bss");
4201 BFD_ASSERT (srel
!= NULL
);
4202 srel
->size
+= sizeof (Elf32_External_Rela
);
4206 /* We need to figure out the alignment required for this symbol. I
4207 have no idea how ELF linkers handle this. */
4208 power_of_two
= bfd_log2 (h
->size
);
4209 if (power_of_two
> 3)
4212 /* Apply the required alignment. */
4213 s
->size
= BFD_ALIGN (s
->size
, (bfd_size_type
) (1 << power_of_two
));
4214 if (power_of_two
> bfd_get_section_alignment (dynobj
, s
))
4216 if (! bfd_set_section_alignment (dynobj
, s
, power_of_two
))
4220 /* Define the symbol as being at this point in the section. */
4221 h
->root
.u
.def
.section
= s
;
4222 h
->root
.u
.def
.value
= s
->size
;
4224 /* Increment the section size to make room for the symbol. */
4230 /* Set the sizes of the dynamic sections. */
4233 _bfd_mn10300_elf_size_dynamic_sections (output_bfd
, info
)
4235 struct bfd_link_info
* info
;
4241 bfd_boolean reltext
;
4243 dynobj
= elf_hash_table (info
)->dynobj
;
4244 BFD_ASSERT (dynobj
!= NULL
);
4246 if (elf_hash_table (info
)->dynamic_sections_created
)
4248 /* Set the contents of the .interp section to the interpreter. */
4249 if (info
->executable
)
4251 s
= bfd_get_section_by_name (dynobj
, ".interp");
4252 BFD_ASSERT (s
!= NULL
);
4253 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
4254 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
4259 /* We may have created entries in the .rela.got section.
4260 However, if we are not creating the dynamic sections, we will
4261 not actually use these entries. Reset the size of .rela.got,
4262 which will cause it to get stripped from the output file
4264 s
= bfd_get_section_by_name (dynobj
, ".rela.got");
4269 /* The check_relocs and adjust_dynamic_symbol entry points have
4270 determined the sizes of the various dynamic sections. Allocate
4275 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
4279 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
4282 /* It's OK to base decisions on the section name, because none
4283 of the dynobj section names depend upon the input files. */
4284 name
= bfd_get_section_name (dynobj
, s
);
4286 if (strcmp (name
, ".plt") == 0)
4288 /* Remember whether there is a PLT. */
4291 else if (CONST_STRNEQ (name
, ".rela"))
4297 /* Remember whether there are any reloc sections other
4299 if (strcmp (name
, ".rela.plt") != 0)
4301 const char * outname
;
4305 /* If this relocation section applies to a read only
4306 section, then we probably need a DT_TEXTREL
4307 entry. The entries in the .rela.plt section
4308 really apply to the .got section, which we
4309 created ourselves and so know is not readonly. */
4310 outname
= bfd_get_section_name (output_bfd
,
4312 target
= bfd_get_section_by_name (output_bfd
, outname
+ 5);
4314 && (target
->flags
& SEC_READONLY
) != 0
4315 && (target
->flags
& SEC_ALLOC
) != 0)
4319 /* We use the reloc_count field as a counter if we need
4320 to copy relocs into the output file. */
4324 else if (! CONST_STRNEQ (name
, ".got")
4325 && strcmp (name
, ".dynbss") != 0)
4326 /* It's not one of our sections, so don't allocate space. */
4331 /* If we don't need this section, strip it from the
4332 output file. This is mostly to handle .rela.bss and
4333 .rela.plt. We must create both sections in
4334 create_dynamic_sections, because they must be created
4335 before the linker maps input sections to output
4336 sections. The linker does that before
4337 adjust_dynamic_symbol is called, and it is that
4338 function which decides whether anything needs to go
4339 into these sections. */
4340 s
->flags
|= SEC_EXCLUDE
;
4344 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
4347 /* Allocate memory for the section contents. We use bfd_zalloc
4348 here in case unused entries are not reclaimed before the
4349 section's contents are written out. This should not happen,
4350 but this way if it does, we get a R_MN10300_NONE reloc
4351 instead of garbage. */
4352 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
4353 if (s
->contents
== NULL
)
4357 if (elf_hash_table (info
)->dynamic_sections_created
)
4359 /* Add some entries to the .dynamic section. We fill in the
4360 values later, in _bfd_mn10300_elf_finish_dynamic_sections,
4361 but we must add the entries now so that we get the correct
4362 size for the .dynamic section. The DT_DEBUG entry is filled
4363 in by the dynamic linker and used by the debugger. */
4366 if (!_bfd_elf_add_dynamic_entry (info
, DT_DEBUG
, 0))
4372 if (!_bfd_elf_add_dynamic_entry (info
, DT_PLTGOT
, 0)
4373 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTRELSZ
, 0)
4374 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTREL
, DT_RELA
)
4375 || !_bfd_elf_add_dynamic_entry (info
, DT_JMPREL
, 0))
4381 if (!_bfd_elf_add_dynamic_entry (info
, DT_RELA
, 0)
4382 || !_bfd_elf_add_dynamic_entry (info
, DT_RELASZ
, 0)
4383 || !_bfd_elf_add_dynamic_entry (info
, DT_RELAENT
,
4384 sizeof (Elf32_External_Rela
)))
4390 if (!_bfd_elf_add_dynamic_entry (info
, DT_TEXTREL
, 0))
4398 /* Finish up dynamic symbol handling. We set the contents of various
4399 dynamic sections here. */
4402 _bfd_mn10300_elf_finish_dynamic_symbol (output_bfd
, info
, h
, sym
)
4404 struct bfd_link_info
* info
;
4405 struct elf_link_hash_entry
* h
;
4406 Elf_Internal_Sym
* sym
;
4410 dynobj
= elf_hash_table (info
)->dynobj
;
4412 if (h
->plt
.offset
!= (bfd_vma
) -1)
4419 Elf_Internal_Rela rel
;
4421 /* This symbol has an entry in the procedure linkage table. Set
4424 BFD_ASSERT (h
->dynindx
!= -1);
4426 splt
= bfd_get_section_by_name (dynobj
, ".plt");
4427 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
4428 srel
= bfd_get_section_by_name (dynobj
, ".rela.plt");
4429 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srel
!= NULL
);
4431 /* Get the index in the procedure linkage table which
4432 corresponds to this symbol. This is the index of this symbol
4433 in all the symbols for which we are making plt entries. The
4434 first entry in the procedure linkage table is reserved. */
4435 plt_index
= ((h
->plt
.offset
- elf_mn10300_sizeof_plt0 (info
))
4436 / elf_mn10300_sizeof_plt (info
));
4438 /* Get the offset into the .got table of the entry that
4439 corresponds to this function. Each .got entry is 4 bytes.
4440 The first three are reserved. */
4441 got_offset
= (plt_index
+ 3) * 4;
4443 /* Fill in the entry in the procedure linkage table. */
4446 memcpy (splt
->contents
+ h
->plt
.offset
, elf_mn10300_plt_entry
,
4447 elf_mn10300_sizeof_plt (info
));
4448 bfd_put_32 (output_bfd
,
4449 (sgot
->output_section
->vma
4450 + sgot
->output_offset
4452 (splt
->contents
+ h
->plt
.offset
4453 + elf_mn10300_plt_symbol_offset (info
)));
4455 bfd_put_32 (output_bfd
,
4456 (1 - h
->plt
.offset
- elf_mn10300_plt_plt0_offset (info
)),
4457 (splt
->contents
+ h
->plt
.offset
4458 + elf_mn10300_plt_plt0_offset (info
)));
4462 memcpy (splt
->contents
+ h
->plt
.offset
, elf_mn10300_pic_plt_entry
,
4463 elf_mn10300_sizeof_plt (info
));
4465 bfd_put_32 (output_bfd
, got_offset
,
4466 (splt
->contents
+ h
->plt
.offset
4467 + elf_mn10300_plt_symbol_offset (info
)));
4470 bfd_put_32 (output_bfd
, plt_index
* sizeof (Elf32_External_Rela
),
4471 (splt
->contents
+ h
->plt
.offset
4472 + elf_mn10300_plt_reloc_offset (info
)));
4474 /* Fill in the entry in the global offset table. */
4475 bfd_put_32 (output_bfd
,
4476 (splt
->output_section
->vma
4477 + splt
->output_offset
4479 + elf_mn10300_plt_temp_offset (info
)),
4480 sgot
->contents
+ got_offset
);
4482 /* Fill in the entry in the .rela.plt section. */
4483 rel
.r_offset
= (sgot
->output_section
->vma
4484 + sgot
->output_offset
4486 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_JMP_SLOT
);
4488 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4489 (bfd_byte
*) ((Elf32_External_Rela
*) srel
->contents
4492 if (!h
->def_regular
)
4493 /* Mark the symbol as undefined, rather than as defined in
4494 the .plt section. Leave the value alone. */
4495 sym
->st_shndx
= SHN_UNDEF
;
4498 if (h
->got
.offset
!= (bfd_vma
) -1)
4502 Elf_Internal_Rela rel
;
4504 /* This symbol has an entry in the global offset table. Set it up. */
4506 sgot
= bfd_get_section_by_name (dynobj
, ".got");
4507 srel
= bfd_get_section_by_name (dynobj
, ".rela.got");
4508 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
4510 rel
.r_offset
= (sgot
->output_section
->vma
4511 + sgot
->output_offset
4512 + (h
->got
.offset
&~ 1));
4514 /* If this is a -Bsymbolic link, and the symbol is defined
4515 locally, we just want to emit a RELATIVE reloc. Likewise if
4516 the symbol was forced to be local because of a version file.
4517 The entry in the global offset table will already have been
4518 initialized in the relocate_section function. */
4520 && (info
->symbolic
|| h
->dynindx
== -1)
4523 rel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
4524 rel
.r_addend
= (h
->root
.u
.def
.value
4525 + h
->root
.u
.def
.section
->output_section
->vma
4526 + h
->root
.u
.def
.section
->output_offset
);
4530 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
4531 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_GLOB_DAT
);
4535 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4536 (bfd_byte
*) ((Elf32_External_Rela
*) srel
->contents
4537 + srel
->reloc_count
));
4538 ++ srel
->reloc_count
;
4544 Elf_Internal_Rela rel
;
4546 /* This symbol needs a copy reloc. Set it up. */
4547 BFD_ASSERT (h
->dynindx
!= -1
4548 && (h
->root
.type
== bfd_link_hash_defined
4549 || h
->root
.type
== bfd_link_hash_defweak
));
4551 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
4553 BFD_ASSERT (s
!= NULL
);
4555 rel
.r_offset
= (h
->root
.u
.def
.value
4556 + h
->root
.u
.def
.section
->output_section
->vma
4557 + h
->root
.u
.def
.section
->output_offset
);
4558 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_COPY
);
4560 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4561 (bfd_byte
*) ((Elf32_External_Rela
*) s
->contents
4566 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
4567 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
4568 || h
== elf_hash_table (info
)->hgot
)
4569 sym
->st_shndx
= SHN_ABS
;
4574 /* Finish up the dynamic sections. */
4577 _bfd_mn10300_elf_finish_dynamic_sections (output_bfd
, info
)
4579 struct bfd_link_info
* info
;
4585 dynobj
= elf_hash_table (info
)->dynobj
;
4587 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
4588 BFD_ASSERT (sgot
!= NULL
);
4589 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
4591 if (elf_hash_table (info
)->dynamic_sections_created
)
4594 Elf32_External_Dyn
* dyncon
;
4595 Elf32_External_Dyn
* dynconend
;
4597 BFD_ASSERT (sdyn
!= NULL
);
4599 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
4600 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
4602 for (; dyncon
< dynconend
; dyncon
++)
4604 Elf_Internal_Dyn dyn
;
4608 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
4622 s
= bfd_get_section_by_name (output_bfd
, name
);
4623 BFD_ASSERT (s
!= NULL
);
4624 dyn
.d_un
.d_ptr
= s
->vma
;
4625 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4629 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
4630 BFD_ASSERT (s
!= NULL
);
4631 dyn
.d_un
.d_val
= s
->size
;
4632 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4636 /* My reading of the SVR4 ABI indicates that the
4637 procedure linkage table relocs (DT_JMPREL) should be
4638 included in the overall relocs (DT_RELA). This is
4639 what Solaris does. However, UnixWare can not handle
4640 that case. Therefore, we override the DT_RELASZ entry
4641 here to make it not include the JMPREL relocs. Since
4642 the linker script arranges for .rela.plt to follow all
4643 other relocation sections, we don't have to worry
4644 about changing the DT_RELA entry. */
4645 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
4647 dyn
.d_un
.d_val
-= s
->size
;
4648 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4653 /* Fill in the first entry in the procedure linkage table. */
4654 splt
= bfd_get_section_by_name (dynobj
, ".plt");
4655 if (splt
&& splt
->size
> 0)
4659 memcpy (splt
->contents
, elf_mn10300_pic_plt_entry
,
4660 elf_mn10300_sizeof_plt (info
));
4664 memcpy (splt
->contents
, elf_mn10300_plt0_entry
, PLT0_ENTRY_SIZE
);
4665 bfd_put_32 (output_bfd
,
4666 sgot
->output_section
->vma
+ sgot
->output_offset
+ 4,
4667 splt
->contents
+ elf_mn10300_plt0_gotid_offset (info
));
4668 bfd_put_32 (output_bfd
,
4669 sgot
->output_section
->vma
+ sgot
->output_offset
+ 8,
4670 splt
->contents
+ elf_mn10300_plt0_linker_offset (info
));
4673 /* UnixWare sets the entsize of .plt to 4, although that doesn't
4674 really seem like the right value. */
4675 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
= 4;
4679 /* Fill in the first three entries in the global offset table. */
4683 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
4685 bfd_put_32 (output_bfd
,
4686 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
4688 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 4);
4689 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 8);
4692 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
4697 /* Classify relocation types, such that combreloc can sort them
4700 static enum elf_reloc_type_class
4701 _bfd_mn10300_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
4703 switch ((int) ELF32_R_TYPE (rela
->r_info
))
4705 case R_MN10300_RELATIVE
:
4706 return reloc_class_relative
;
4707 case R_MN10300_JMP_SLOT
:
4708 return reloc_class_plt
;
4709 case R_MN10300_COPY
:
4710 return reloc_class_copy
;
4712 return reloc_class_normal
;
4717 #define TARGET_LITTLE_SYM bfd_elf32_mn10300_vec
4718 #define TARGET_LITTLE_NAME "elf32-mn10300"
4719 #define ELF_ARCH bfd_arch_mn10300
4720 #define ELF_MACHINE_CODE EM_MN10300
4721 #define ELF_MACHINE_ALT1 EM_CYGNUS_MN10300
4722 #define ELF_MAXPAGESIZE 0x1000
4725 #define elf_info_to_howto mn10300_info_to_howto
4726 #define elf_info_to_howto_rel 0
4727 #define elf_backend_can_gc_sections 1
4728 #define elf_backend_rela_normal 1
4729 #define elf_backend_check_relocs mn10300_elf_check_relocs
4730 #define elf_backend_gc_mark_hook mn10300_elf_gc_mark_hook
4731 #define elf_backend_relocate_section mn10300_elf_relocate_section
4732 #define bfd_elf32_bfd_relax_section mn10300_elf_relax_section
4733 #define bfd_elf32_bfd_get_relocated_section_contents \
4734 mn10300_elf_get_relocated_section_contents
4735 #define bfd_elf32_bfd_link_hash_table_create \
4736 elf32_mn10300_link_hash_table_create
4737 #define bfd_elf32_bfd_link_hash_table_free \
4738 elf32_mn10300_link_hash_table_free
4740 #ifndef elf_symbol_leading_char
4741 #define elf_symbol_leading_char '_'
4744 /* So we can set bits in e_flags. */
4745 #define elf_backend_final_write_processing \
4746 _bfd_mn10300_elf_final_write_processing
4747 #define elf_backend_object_p _bfd_mn10300_elf_object_p
4749 #define bfd_elf32_bfd_merge_private_bfd_data \
4750 _bfd_mn10300_elf_merge_private_bfd_data
4752 #define elf_backend_can_gc_sections 1
4753 #define elf_backend_create_dynamic_sections \
4754 _bfd_mn10300_elf_create_dynamic_sections
4755 #define elf_backend_adjust_dynamic_symbol \
4756 _bfd_mn10300_elf_adjust_dynamic_symbol
4757 #define elf_backend_size_dynamic_sections \
4758 _bfd_mn10300_elf_size_dynamic_sections
4759 #define elf_backend_omit_section_dynsym \
4760 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
4761 #define elf_backend_finish_dynamic_symbol \
4762 _bfd_mn10300_elf_finish_dynamic_symbol
4763 #define elf_backend_finish_dynamic_sections \
4764 _bfd_mn10300_elf_finish_dynamic_sections
4766 #define elf_backend_reloc_type_class \
4767 _bfd_mn10300_elf_reloc_type_class
4769 #define elf_backend_want_got_plt 1
4770 #define elf_backend_plt_readonly 1
4771 #define elf_backend_want_plt_sym 0
4772 #define elf_backend_got_header_size 12
4774 #include "elf32-target.h"