1 /* Matsushita 10300 specific support for 32-bit ELF
2 Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 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 static reloc_howto_type
*
641 bfd_elf32_bfd_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
647 i
< (sizeof (elf_mn10300_howto_table
)
648 / sizeof (elf_mn10300_howto_table
[0]));
650 if (elf_mn10300_howto_table
[i
].name
!= NULL
651 && strcasecmp (elf_mn10300_howto_table
[i
].name
, r_name
) == 0)
652 return &elf_mn10300_howto_table
[i
];
657 /* Set the howto pointer for an MN10300 ELF reloc. */
660 mn10300_info_to_howto (abfd
, cache_ptr
, dst
)
661 bfd
*abfd ATTRIBUTE_UNUSED
;
663 Elf_Internal_Rela
*dst
;
667 r_type
= ELF32_R_TYPE (dst
->r_info
);
668 BFD_ASSERT (r_type
< (unsigned int) R_MN10300_MAX
);
669 cache_ptr
->howto
= &elf_mn10300_howto_table
[r_type
];
672 /* Look through the relocs for a section during the first phase.
673 Since we don't do .gots or .plts, we just need to consider the
674 virtual table relocs for gc. */
677 mn10300_elf_check_relocs (abfd
, info
, sec
, relocs
)
679 struct bfd_link_info
*info
;
681 const Elf_Internal_Rela
*relocs
;
683 Elf_Internal_Shdr
*symtab_hdr
;
684 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
685 const Elf_Internal_Rela
*rel
;
686 const Elf_Internal_Rela
*rel_end
;
688 bfd_vma
* local_got_offsets
;
697 if (info
->relocatable
)
700 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
701 sym_hashes
= elf_sym_hashes (abfd
);
702 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
703 if (!elf_bad_symtab (abfd
))
704 sym_hashes_end
-= symtab_hdr
->sh_info
;
706 dynobj
= elf_hash_table (info
)->dynobj
;
707 local_got_offsets
= elf_local_got_offsets (abfd
);
708 rel_end
= relocs
+ sec
->reloc_count
;
709 for (rel
= relocs
; rel
< rel_end
; rel
++)
711 struct elf_link_hash_entry
*h
;
712 unsigned long r_symndx
;
714 r_symndx
= ELF32_R_SYM (rel
->r_info
);
715 if (r_symndx
< symtab_hdr
->sh_info
)
719 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
720 while (h
->root
.type
== bfd_link_hash_indirect
721 || h
->root
.type
== bfd_link_hash_warning
)
722 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
725 /* Some relocs require a global offset table. */
728 switch (ELF32_R_TYPE (rel
->r_info
))
730 case R_MN10300_GOT32
:
731 case R_MN10300_GOT24
:
732 case R_MN10300_GOT16
:
733 case R_MN10300_GOTOFF32
:
734 case R_MN10300_GOTOFF24
:
735 case R_MN10300_GOTOFF16
:
736 case R_MN10300_GOTPC32
:
737 case R_MN10300_GOTPC16
:
738 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
739 if (! _bfd_mn10300_elf_create_got_section (dynobj
, info
))
748 switch (ELF32_R_TYPE (rel
->r_info
))
750 /* This relocation describes the C++ object vtable hierarchy.
751 Reconstruct it for later use during GC. */
752 case R_MN10300_GNU_VTINHERIT
:
753 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
757 /* This relocation describes which C++ vtable entries are actually
758 used. Record for later use during GC. */
759 case R_MN10300_GNU_VTENTRY
:
760 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
763 case R_MN10300_GOT32
:
764 case R_MN10300_GOT24
:
765 case R_MN10300_GOT16
:
766 /* This symbol requires a global offset table entry. */
770 sgot
= bfd_get_section_by_name (dynobj
, ".got");
771 BFD_ASSERT (sgot
!= NULL
);
775 && (h
!= NULL
|| info
->shared
))
777 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
780 srelgot
= bfd_make_section_with_flags (dynobj
,
789 || ! bfd_set_section_alignment (dynobj
, srelgot
, 2))
796 if (h
->got
.offset
!= (bfd_vma
) -1)
797 /* We have already allocated space in the .got. */
800 h
->got
.offset
= sgot
->size
;
802 /* Make sure this symbol is output as a dynamic symbol. */
803 if (h
->dynindx
== -1)
805 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
809 srelgot
->size
+= sizeof (Elf32_External_Rela
);
813 /* This is a global offset table entry for a local
815 if (local_got_offsets
== NULL
)
820 size
= symtab_hdr
->sh_info
* sizeof (bfd_vma
);
821 local_got_offsets
= (bfd_vma
*) bfd_alloc (abfd
, size
);
823 if (local_got_offsets
== NULL
)
825 elf_local_got_offsets (abfd
) = local_got_offsets
;
827 for (i
= 0; i
< symtab_hdr
->sh_info
; i
++)
828 local_got_offsets
[i
] = (bfd_vma
) -1;
831 if (local_got_offsets
[r_symndx
] != (bfd_vma
) -1)
832 /* We have already allocated space in the .got. */
835 local_got_offsets
[r_symndx
] = sgot
->size
;
838 /* If we are generating a shared object, we need to
839 output a R_MN10300_RELATIVE reloc so that the dynamic
840 linker can adjust this GOT entry. */
841 srelgot
->size
+= sizeof (Elf32_External_Rela
);
848 case R_MN10300_PLT32
:
849 case R_MN10300_PLT16
:
850 /* This symbol requires a procedure linkage table entry. We
851 actually build the entry in adjust_dynamic_symbol,
852 because this might be a case of linking PIC code which is
853 never referenced by a dynamic object, in which case we
854 don't need to generate a procedure linkage table entry
857 /* If this is a local symbol, we resolve it directly without
858 creating a procedure linkage table entry. */
862 if (ELF_ST_VISIBILITY (h
->other
) == STV_INTERNAL
863 || ELF_ST_VISIBILITY (h
->other
) == STV_HIDDEN
)
873 case R_MN10300_PCREL32
:
874 case R_MN10300_PCREL16
:
875 case R_MN10300_PCREL8
:
884 /* If we are creating a shared library, then we need to copy
885 the reloc into the shared library. */
887 && (sec
->flags
& SEC_ALLOC
) != 0)
889 /* When creating a shared object, we must copy these
890 reloc types into the output file. We create a reloc
891 section in dynobj and make room for this reloc. */
896 name
= (bfd_elf_string_from_elf_section
898 elf_elfheader (abfd
)->e_shstrndx
,
899 elf_section_data (sec
)->rel_hdr
.sh_name
));
903 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
904 && strcmp (bfd_get_section_name (abfd
, sec
),
907 sreloc
= bfd_get_section_by_name (dynobj
, name
);
912 flags
= (SEC_HAS_CONTENTS
| SEC_READONLY
913 | SEC_IN_MEMORY
| SEC_LINKER_CREATED
);
914 if ((sec
->flags
& SEC_ALLOC
) != 0)
915 flags
|= SEC_ALLOC
| SEC_LOAD
;
916 sreloc
= bfd_make_section_with_flags (dynobj
,
920 || ! bfd_set_section_alignment (dynobj
, sreloc
, 2))
925 sreloc
->size
+= sizeof (Elf32_External_Rela
);
935 /* Return the section that should be marked against GC for a given
939 mn10300_elf_gc_mark_hook (asection
*sec
,
940 struct bfd_link_info
*info
,
941 Elf_Internal_Rela
*rel
,
942 struct elf_link_hash_entry
*h
,
943 Elf_Internal_Sym
*sym
)
946 switch (ELF32_R_TYPE (rel
->r_info
))
948 case R_MN10300_GNU_VTINHERIT
:
949 case R_MN10300_GNU_VTENTRY
:
953 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
956 /* Perform a relocation as part of a final link. */
957 static bfd_reloc_status_type
958 mn10300_elf_final_link_relocate (howto
, input_bfd
, output_bfd
,
959 input_section
, contents
, offset
, value
,
960 addend
, h
, symndx
, info
, sym_sec
, is_local
)
961 reloc_howto_type
*howto
;
963 bfd
*output_bfd ATTRIBUTE_UNUSED
;
964 asection
*input_section
;
969 struct elf_link_hash_entry
* h
;
970 unsigned long symndx
;
971 struct bfd_link_info
*info
;
972 asection
*sym_sec ATTRIBUTE_UNUSED
;
973 int is_local ATTRIBUTE_UNUSED
;
975 unsigned long r_type
= howto
->type
;
976 bfd_byte
*hit_data
= contents
+ offset
;
978 bfd_vma
* local_got_offsets
;
983 dynobj
= elf_hash_table (info
)->dynobj
;
984 local_got_offsets
= elf_local_got_offsets (input_bfd
);
995 case R_MN10300_PCREL8
:
996 case R_MN10300_PCREL16
:
997 case R_MN10300_PCREL32
:
998 case R_MN10300_GOTOFF32
:
999 case R_MN10300_GOTOFF24
:
1000 case R_MN10300_GOTOFF16
:
1002 && (input_section
->flags
& SEC_ALLOC
) != 0
1004 && ! SYMBOL_REFERENCES_LOCAL (info
, h
))
1005 return bfd_reloc_dangerous
;
1010 case R_MN10300_NONE
:
1011 return bfd_reloc_ok
;
1015 && (input_section
->flags
& SEC_ALLOC
) != 0)
1017 Elf_Internal_Rela outrel
;
1018 bfd_boolean skip
, relocate
;
1020 /* When generating a shared object, these relocations are
1021 copied into the output file to be resolved at run
1027 name
= (bfd_elf_string_from_elf_section
1029 elf_elfheader (input_bfd
)->e_shstrndx
,
1030 elf_section_data (input_section
)->rel_hdr
.sh_name
));
1034 BFD_ASSERT (CONST_STRNEQ (name
, ".rela")
1035 && strcmp (bfd_get_section_name (input_bfd
,
1039 sreloc
= bfd_get_section_by_name (dynobj
, name
);
1040 BFD_ASSERT (sreloc
!= NULL
);
1045 outrel
.r_offset
= _bfd_elf_section_offset (input_bfd
, info
,
1046 input_section
, offset
);
1047 if (outrel
.r_offset
== (bfd_vma
) -1)
1050 outrel
.r_offset
+= (input_section
->output_section
->vma
1051 + input_section
->output_offset
);
1055 memset (&outrel
, 0, sizeof outrel
);
1060 /* h->dynindx may be -1 if this symbol was marked to
1063 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1066 outrel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
1067 outrel
.r_addend
= value
+ addend
;
1071 BFD_ASSERT (h
->dynindx
!= -1);
1073 outrel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_32
);
1074 outrel
.r_addend
= value
+ addend
;
1078 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
,
1079 (bfd_byte
*) (((Elf32_External_Rela
*) sreloc
->contents
)
1080 + sreloc
->reloc_count
));
1081 ++sreloc
->reloc_count
;
1083 /* If this reloc is against an external symbol, we do
1084 not want to fiddle with the addend. Otherwise, we
1085 need to include the symbol value so that it becomes
1086 an addend for the dynamic reloc. */
1088 return bfd_reloc_ok
;
1091 bfd_put_32 (input_bfd
, value
, hit_data
);
1092 return bfd_reloc_ok
;
1097 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1098 return bfd_reloc_overflow
;
1100 bfd_put_8 (input_bfd
, value
& 0xff, hit_data
);
1101 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1102 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1103 return bfd_reloc_ok
;
1108 if ((long) value
> 0x7fff || (long) value
< -0x8000)
1109 return bfd_reloc_overflow
;
1111 bfd_put_16 (input_bfd
, value
, hit_data
);
1112 return bfd_reloc_ok
;
1117 if ((long) value
> 0x7f || (long) value
< -0x80)
1118 return bfd_reloc_overflow
;
1120 bfd_put_8 (input_bfd
, value
, hit_data
);
1121 return bfd_reloc_ok
;
1123 case R_MN10300_PCREL8
:
1124 value
-= (input_section
->output_section
->vma
1125 + input_section
->output_offset
);
1129 if ((long) value
> 0xff || (long) value
< -0x100)
1130 return bfd_reloc_overflow
;
1132 bfd_put_8 (input_bfd
, value
, hit_data
);
1133 return bfd_reloc_ok
;
1135 case R_MN10300_PCREL16
:
1136 value
-= (input_section
->output_section
->vma
1137 + input_section
->output_offset
);
1141 if ((long) value
> 0xffff || (long) value
< -0x10000)
1142 return bfd_reloc_overflow
;
1144 bfd_put_16 (input_bfd
, value
, hit_data
);
1145 return bfd_reloc_ok
;
1147 case R_MN10300_PCREL32
:
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_GNU_VTINHERIT
:
1157 case R_MN10300_GNU_VTENTRY
:
1158 return bfd_reloc_ok
;
1160 case R_MN10300_GOTPC32
:
1161 /* Use global offset table as symbol value. */
1163 value
= bfd_get_section_by_name (dynobj
,
1164 ".got")->output_section
->vma
;
1165 value
-= (input_section
->output_section
->vma
1166 + input_section
->output_offset
);
1170 bfd_put_32 (input_bfd
, value
, hit_data
);
1171 return bfd_reloc_ok
;
1173 case R_MN10300_GOTPC16
:
1174 /* Use global offset table as symbol value. */
1176 value
= bfd_get_section_by_name (dynobj
,
1177 ".got")->output_section
->vma
;
1178 value
-= (input_section
->output_section
->vma
1179 + input_section
->output_offset
);
1183 if ((long) value
> 0xffff || (long) value
< -0x10000)
1184 return bfd_reloc_overflow
;
1186 bfd_put_16 (input_bfd
, value
, hit_data
);
1187 return bfd_reloc_ok
;
1189 case R_MN10300_GOTOFF32
:
1190 value
-= bfd_get_section_by_name (dynobj
,
1191 ".got")->output_section
->vma
;
1194 bfd_put_32 (input_bfd
, value
, hit_data
);
1195 return bfd_reloc_ok
;
1197 case R_MN10300_GOTOFF24
:
1198 value
-= bfd_get_section_by_name (dynobj
,
1199 ".got")->output_section
->vma
;
1202 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1203 return bfd_reloc_overflow
;
1205 bfd_put_8 (input_bfd
, value
, hit_data
);
1206 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1207 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1208 return bfd_reloc_ok
;
1210 case R_MN10300_GOTOFF16
:
1211 value
-= bfd_get_section_by_name (dynobj
,
1212 ".got")->output_section
->vma
;
1215 if ((long) value
> 0xffff || (long) value
< -0x10000)
1216 return bfd_reloc_overflow
;
1218 bfd_put_16 (input_bfd
, value
, hit_data
);
1219 return bfd_reloc_ok
;
1221 case R_MN10300_PLT32
:
1223 && ELF_ST_VISIBILITY (h
->other
) != STV_INTERNAL
1224 && ELF_ST_VISIBILITY (h
->other
) != STV_HIDDEN
1225 && h
->plt
.offset
!= (bfd_vma
) -1)
1229 splt
= bfd_get_section_by_name (dynobj
, ".plt");
1231 value
= (splt
->output_section
->vma
1232 + splt
->output_offset
1233 + h
->plt
.offset
) - value
;
1236 value
-= (input_section
->output_section
->vma
1237 + input_section
->output_offset
);
1241 bfd_put_32 (input_bfd
, value
, hit_data
);
1242 return bfd_reloc_ok
;
1244 case R_MN10300_PLT16
:
1246 && ELF_ST_VISIBILITY (h
->other
) != STV_INTERNAL
1247 && ELF_ST_VISIBILITY (h
->other
) != STV_HIDDEN
1248 && h
->plt
.offset
!= (bfd_vma
) -1)
1252 splt
= bfd_get_section_by_name (dynobj
, ".plt");
1254 value
= (splt
->output_section
->vma
1255 + splt
->output_offset
1256 + h
->plt
.offset
) - value
;
1259 value
-= (input_section
->output_section
->vma
1260 + input_section
->output_offset
);
1264 if ((long) value
> 0xffff || (long) value
< -0x10000)
1265 return bfd_reloc_overflow
;
1267 bfd_put_16 (input_bfd
, value
, hit_data
);
1268 return bfd_reloc_ok
;
1270 case R_MN10300_GOT32
:
1271 case R_MN10300_GOT24
:
1272 case R_MN10300_GOT16
:
1276 sgot
= bfd_get_section_by_name (dynobj
, ".got");
1282 off
= h
->got
.offset
;
1283 BFD_ASSERT (off
!= (bfd_vma
) -1);
1285 if (! elf_hash_table (info
)->dynamic_sections_created
1286 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1287 /* This is actually a static link, or it is a
1288 -Bsymbolic link and the symbol is defined
1289 locally, or the symbol was forced to be local
1290 because of a version file. We must initialize
1291 this entry in the global offset table.
1293 When doing a dynamic link, we create a .rela.got
1294 relocation entry to initialize the value. This
1295 is done in the finish_dynamic_symbol routine. */
1296 bfd_put_32 (output_bfd
, value
,
1297 sgot
->contents
+ off
);
1299 value
= sgot
->output_offset
+ off
;
1305 off
= elf_local_got_offsets (input_bfd
)[symndx
];
1307 bfd_put_32 (output_bfd
, value
, sgot
->contents
+ off
);
1312 Elf_Internal_Rela outrel
;
1314 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
1315 BFD_ASSERT (srelgot
!= NULL
);
1317 outrel
.r_offset
= (sgot
->output_section
->vma
1318 + sgot
->output_offset
1320 outrel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
1321 outrel
.r_addend
= value
;
1322 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
,
1323 (bfd_byte
*) (((Elf32_External_Rela
*)
1325 + srelgot
->reloc_count
));
1326 ++ srelgot
->reloc_count
;
1329 value
= sgot
->output_offset
+ off
;
1335 if (r_type
== R_MN10300_GOT32
)
1337 bfd_put_32 (input_bfd
, value
, hit_data
);
1338 return bfd_reloc_ok
;
1340 else if (r_type
== R_MN10300_GOT24
)
1342 if ((long) value
> 0x7fffff || (long) value
< -0x800000)
1343 return bfd_reloc_overflow
;
1345 bfd_put_8 (input_bfd
, value
& 0xff, hit_data
);
1346 bfd_put_8 (input_bfd
, (value
>> 8) & 0xff, hit_data
+ 1);
1347 bfd_put_8 (input_bfd
, (value
>> 16) & 0xff, hit_data
+ 2);
1348 return bfd_reloc_ok
;
1350 else if (r_type
== R_MN10300_GOT16
)
1352 if ((long) value
> 0xffff || (long) value
< -0x10000)
1353 return bfd_reloc_overflow
;
1355 bfd_put_16 (input_bfd
, value
, hit_data
);
1356 return bfd_reloc_ok
;
1361 return bfd_reloc_notsupported
;
1365 /* Relocate an MN10300 ELF section. */
1367 mn10300_elf_relocate_section (output_bfd
, info
, input_bfd
, input_section
,
1368 contents
, relocs
, local_syms
, local_sections
)
1370 struct bfd_link_info
*info
;
1372 asection
*input_section
;
1374 Elf_Internal_Rela
*relocs
;
1375 Elf_Internal_Sym
*local_syms
;
1376 asection
**local_sections
;
1378 Elf_Internal_Shdr
*symtab_hdr
;
1379 struct elf_link_hash_entry
**sym_hashes
;
1380 Elf_Internal_Rela
*rel
, *relend
;
1382 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1383 sym_hashes
= elf_sym_hashes (input_bfd
);
1386 relend
= relocs
+ input_section
->reloc_count
;
1387 for (; rel
< relend
; rel
++)
1390 reloc_howto_type
*howto
;
1391 unsigned long r_symndx
;
1392 Elf_Internal_Sym
*sym
;
1394 struct elf32_mn10300_link_hash_entry
*h
;
1396 bfd_reloc_status_type r
;
1398 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1399 r_type
= ELF32_R_TYPE (rel
->r_info
);
1400 howto
= elf_mn10300_howto_table
+ r_type
;
1402 /* Just skip the vtable gc relocs. */
1403 if (r_type
== R_MN10300_GNU_VTINHERIT
1404 || r_type
== R_MN10300_GNU_VTENTRY
)
1410 if (r_symndx
< symtab_hdr
->sh_info
)
1412 sym
= local_syms
+ r_symndx
;
1413 sec
= local_sections
[r_symndx
];
1414 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
1418 bfd_boolean unresolved_reloc
;
1420 struct elf_link_hash_entry
*hh
;
1422 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
1423 r_symndx
, symtab_hdr
, sym_hashes
,
1424 hh
, sec
, relocation
,
1425 unresolved_reloc
, warned
);
1427 h
= (struct elf32_mn10300_link_hash_entry
*) hh
;
1429 if ((h
->root
.root
.type
== bfd_link_hash_defined
1430 || h
->root
.root
.type
== bfd_link_hash_defweak
)
1431 && ( r_type
== R_MN10300_GOTPC32
1432 || r_type
== R_MN10300_GOTPC16
1433 || (( r_type
== R_MN10300_PLT32
1434 || r_type
== R_MN10300_PLT16
)
1435 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_INTERNAL
1436 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_HIDDEN
1437 && h
->root
.plt
.offset
!= (bfd_vma
) -1)
1438 || (( r_type
== R_MN10300_GOT32
1439 || r_type
== R_MN10300_GOT24
1440 || r_type
== R_MN10300_GOT16
)
1441 && elf_hash_table (info
)->dynamic_sections_created
1442 && !SYMBOL_REFERENCES_LOCAL (info
, hh
))
1443 || (r_type
== R_MN10300_32
1444 && !SYMBOL_REFERENCES_LOCAL (info
, hh
)
1445 && ((input_section
->flags
& SEC_ALLOC
) != 0
1446 /* DWARF will emit R_MN10300_32 relocations
1447 in its sections against symbols defined
1448 externally in shared libraries. We can't
1449 do anything with them here. */
1450 || ((input_section
->flags
& SEC_DEBUGGING
) != 0
1451 && h
->root
.def_dynamic
)))))
1452 /* In these cases, we don't need the relocation
1453 value. We check specially because in some
1454 obscure cases sec->output_section will be NULL. */
1457 else if (!info
->relocatable
&& unresolved_reloc
)
1458 (*_bfd_error_handler
)
1459 (_("%B(%A+0x%lx): unresolvable %s relocation against symbol `%s'"),
1462 (long) rel
->r_offset
,
1464 h
->root
.root
.root
.string
);
1467 if (sec
!= NULL
&& elf_discarded_section (sec
))
1469 /* For relocs against symbols from removed linkonce sections,
1470 or sections discarded by a linker script, we just want the
1471 section contents zeroed. Avoid any special processing. */
1472 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
1478 if (info
->relocatable
)
1481 r
= mn10300_elf_final_link_relocate (howto
, input_bfd
, output_bfd
,
1483 contents
, rel
->r_offset
,
1484 relocation
, rel
->r_addend
,
1485 (struct elf_link_hash_entry
*)h
,
1487 info
, sec
, h
== NULL
);
1489 if (r
!= bfd_reloc_ok
)
1492 const char *msg
= (const char *) 0;
1495 name
= h
->root
.root
.root
.string
;
1498 name
= (bfd_elf_string_from_elf_section
1499 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
1500 if (name
== NULL
|| *name
== '\0')
1501 name
= bfd_section_name (input_bfd
, sec
);
1506 case bfd_reloc_overflow
:
1507 if (! ((*info
->callbacks
->reloc_overflow
)
1508 (info
, (h
? &h
->root
.root
: NULL
), name
,
1509 howto
->name
, (bfd_vma
) 0, input_bfd
,
1510 input_section
, rel
->r_offset
)))
1514 case bfd_reloc_undefined
:
1515 if (! ((*info
->callbacks
->undefined_symbol
)
1516 (info
, name
, input_bfd
, input_section
,
1517 rel
->r_offset
, TRUE
)))
1521 case bfd_reloc_outofrange
:
1522 msg
= _("internal error: out of range error");
1525 case bfd_reloc_notsupported
:
1526 msg
= _("internal error: unsupported relocation error");
1529 case bfd_reloc_dangerous
:
1530 if (r_type
== R_MN10300_PCREL32
)
1531 msg
= _("error: inappropriate relocation type for shared"
1532 " library (did you forget -fpic?)");
1534 msg
= _("internal error: suspicious relocation type used"
1535 " in shared library");
1539 msg
= _("internal error: unknown error");
1543 if (!((*info
->callbacks
->warning
)
1544 (info
, msg
, name
, input_bfd
, input_section
,
1555 /* Finish initializing one hash table entry. */
1557 elf32_mn10300_finish_hash_table_entry (gen_entry
, in_args
)
1558 struct bfd_hash_entry
*gen_entry
;
1561 struct elf32_mn10300_link_hash_entry
*entry
;
1562 struct bfd_link_info
*link_info
= (struct bfd_link_info
*)in_args
;
1563 unsigned int byte_count
= 0;
1565 entry
= (struct elf32_mn10300_link_hash_entry
*) gen_entry
;
1567 if (entry
->root
.root
.type
== bfd_link_hash_warning
)
1568 entry
= (struct elf32_mn10300_link_hash_entry
*) entry
->root
.root
.u
.i
.link
;
1570 /* If we already know we want to convert "call" to "calls" for calls
1571 to this symbol, then return now. */
1572 if (entry
->flags
== MN10300_CONVERT_CALL_TO_CALLS
)
1575 /* If there are no named calls to this symbol, or there's nothing we
1576 can move from the function itself into the "call" instruction,
1577 then note that all "call" instructions should be converted into
1578 "calls" instructions and return. If a symbol is available for
1579 dynamic symbol resolution (overridable or overriding), avoid
1580 custom calling conventions. */
1581 if (entry
->direct_calls
== 0
1582 || (entry
->stack_size
== 0 && entry
->movm_args
== 0)
1583 || (elf_hash_table (link_info
)->dynamic_sections_created
1584 && ELF_ST_VISIBILITY (entry
->root
.other
) != STV_INTERNAL
1585 && ELF_ST_VISIBILITY (entry
->root
.other
) != STV_HIDDEN
))
1587 /* Make a note that we should convert "call" instructions to "calls"
1588 instructions for calls to this symbol. */
1589 entry
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1593 /* We may be able to move some instructions from the function itself into
1594 the "call" instruction. Count how many bytes we might be able to
1595 eliminate in the function itself. */
1597 /* A movm instruction is two bytes. */
1598 if (entry
->movm_args
)
1601 /* Count the insn to allocate stack space too. */
1602 if (entry
->stack_size
> 0)
1604 if (entry
->stack_size
<= 128)
1610 /* If using "call" will result in larger code, then turn all
1611 the associated "call" instructions into "calls" instructions. */
1612 if (byte_count
< entry
->direct_calls
)
1613 entry
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1615 /* This routine never fails. */
1619 /* Used to count hash table entries. */
1621 elf32_mn10300_count_hash_table_entries (struct bfd_hash_entry
*gen_entry ATTRIBUTE_UNUSED
,
1624 int *count
= (int *)in_args
;
1630 /* Used to enumerate hash table entries into a linear array. */
1632 elf32_mn10300_list_hash_table_entries (struct bfd_hash_entry
*gen_entry
,
1635 struct bfd_hash_entry
***ptr
= (struct bfd_hash_entry
***) in_args
;
1642 /* Used to sort the array created by the above. */
1644 sort_by_value (const void *va
, const void *vb
)
1646 struct elf32_mn10300_link_hash_entry
*a
1647 = *(struct elf32_mn10300_link_hash_entry
**)va
;
1648 struct elf32_mn10300_link_hash_entry
*b
1649 = *(struct elf32_mn10300_link_hash_entry
**)vb
;
1651 return a
->value
- b
->value
;
1655 /* This function handles relaxing for the mn10300.
1657 There are quite a few relaxing opportunities available on the mn10300:
1659 * calls:32 -> calls:16 2 bytes
1660 * call:32 -> call:16 2 bytes
1662 * call:32 -> calls:32 1 byte
1663 * call:16 -> calls:16 1 byte
1664 * These are done anytime using "calls" would result
1665 in smaller code, or when necessary to preserve the
1666 meaning of the program.
1670 * In some circumstances we can move instructions
1671 from a function prologue into a "call" instruction.
1672 This is only done if the resulting code is no larger
1673 than the original code.
1675 * jmp:32 -> jmp:16 2 bytes
1676 * jmp:16 -> bra:8 1 byte
1678 * If the previous instruction is a conditional branch
1679 around the jump/bra, we may be able to reverse its condition
1680 and change its target to the jump's target. The jump/bra
1681 can then be deleted. 2 bytes
1683 * mov abs32 -> mov abs16 1 or 2 bytes
1685 * Most instructions which accept imm32 can relax to imm16 1 or 2 bytes
1686 - Most instructions which accept imm16 can relax to imm8 1 or 2 bytes
1688 * Most instructions which accept d32 can relax to d16 1 or 2 bytes
1689 - Most instructions which accept d16 can relax to d8 1 or 2 bytes
1691 We don't handle imm16->imm8 or d16->d8 as they're very rare
1692 and somewhat more difficult to support. */
1695 mn10300_elf_relax_section (abfd
, sec
, link_info
, again
)
1698 struct bfd_link_info
*link_info
;
1701 Elf_Internal_Shdr
*symtab_hdr
;
1702 Elf_Internal_Rela
*internal_relocs
= NULL
;
1703 Elf_Internal_Rela
*irel
, *irelend
;
1704 bfd_byte
*contents
= NULL
;
1705 Elf_Internal_Sym
*isymbuf
= NULL
;
1706 struct elf32_mn10300_link_hash_table
*hash_table
;
1707 asection
*section
= sec
;
1709 /* Assume nothing changes. */
1712 /* We need a pointer to the mn10300 specific hash table. */
1713 hash_table
= elf32_mn10300_hash_table (link_info
);
1715 /* Initialize fields in each hash table entry the first time through. */
1716 if ((hash_table
->flags
& MN10300_HASH_ENTRIES_INITIALIZED
) == 0)
1720 /* Iterate over all the input bfds. */
1721 for (input_bfd
= link_info
->input_bfds
;
1723 input_bfd
= input_bfd
->link_next
)
1725 /* We're going to need all the symbols for each bfd. */
1726 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1727 if (symtab_hdr
->sh_info
!= 0)
1729 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
1730 if (isymbuf
== NULL
)
1731 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
1732 symtab_hdr
->sh_info
, 0,
1734 if (isymbuf
== NULL
)
1738 /* Iterate over each section in this bfd. */
1739 for (section
= input_bfd
->sections
;
1741 section
= section
->next
)
1743 struct elf32_mn10300_link_hash_entry
*hash
;
1744 Elf_Internal_Sym
*sym
;
1745 asection
*sym_sec
= NULL
;
1746 const char *sym_name
;
1749 /* If there's nothing to do in this section, skip it. */
1750 if (! ((section
->flags
& SEC_RELOC
) != 0
1751 && section
->reloc_count
!= 0))
1753 if ((section
->flags
& SEC_ALLOC
) == 0)
1756 /* Get cached copy of section contents if it exists. */
1757 if (elf_section_data (section
)->this_hdr
.contents
!= NULL
)
1758 contents
= elf_section_data (section
)->this_hdr
.contents
;
1759 else if (section
->size
!= 0)
1761 /* Go get them off disk. */
1762 if (!bfd_malloc_and_get_section (input_bfd
, section
,
1769 /* If there aren't any relocs, then there's nothing to do. */
1770 if ((section
->flags
& SEC_RELOC
) != 0
1771 && section
->reloc_count
!= 0)
1774 /* Get a copy of the native relocations. */
1775 internal_relocs
= (_bfd_elf_link_read_relocs
1776 (input_bfd
, section
, (PTR
) NULL
,
1777 (Elf_Internal_Rela
*) NULL
,
1778 link_info
->keep_memory
));
1779 if (internal_relocs
== NULL
)
1782 /* Now examine each relocation. */
1783 irel
= internal_relocs
;
1784 irelend
= irel
+ section
->reloc_count
;
1785 for (; irel
< irelend
; irel
++)
1788 unsigned long r_index
;
1791 r_type
= ELF32_R_TYPE (irel
->r_info
);
1792 r_index
= ELF32_R_SYM (irel
->r_info
);
1794 if (r_type
< 0 || r_type
>= (int) R_MN10300_MAX
)
1797 /* We need the name and hash table entry of the target
1803 if (r_index
< symtab_hdr
->sh_info
)
1805 /* A local symbol. */
1806 Elf_Internal_Sym
*isym
;
1807 struct elf_link_hash_table
*elftab
;
1810 isym
= isymbuf
+ r_index
;
1811 if (isym
->st_shndx
== SHN_UNDEF
)
1812 sym_sec
= bfd_und_section_ptr
;
1813 else if (isym
->st_shndx
== SHN_ABS
)
1814 sym_sec
= bfd_abs_section_ptr
;
1815 else if (isym
->st_shndx
== SHN_COMMON
)
1816 sym_sec
= bfd_com_section_ptr
;
1819 = bfd_section_from_elf_index (input_bfd
,
1823 = bfd_elf_string_from_elf_section (input_bfd
,
1828 /* If it isn't a function, then we don't care
1830 if (ELF_ST_TYPE (isym
->st_info
) != STT_FUNC
)
1833 /* Tack on an ID so we can uniquely identify this
1834 local symbol in the global hash table. */
1835 amt
= strlen (sym_name
) + 10;
1836 new_name
= bfd_malloc (amt
);
1840 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
1841 sym_name
= new_name
;
1843 elftab
= &hash_table
->static_hash_table
->root
;
1844 hash
= ((struct elf32_mn10300_link_hash_entry
*)
1845 elf_link_hash_lookup (elftab
, sym_name
,
1846 TRUE
, TRUE
, FALSE
));
1851 r_index
-= symtab_hdr
->sh_info
;
1852 hash
= (struct elf32_mn10300_link_hash_entry
*)
1853 elf_sym_hashes (input_bfd
)[r_index
];
1856 sym_name
= hash
->root
.root
.root
.string
;
1857 if ((section
->flags
& SEC_CODE
) != 0)
1859 /* If this is not a "call" instruction, then we
1860 should convert "call" instructions to "calls"
1862 code
= bfd_get_8 (input_bfd
,
1863 contents
+ irel
->r_offset
- 1);
1864 if (code
!= 0xdd && code
!= 0xcd)
1865 hash
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1868 /* If this is a jump/call, then bump the
1869 direct_calls counter. Else force "call" to
1870 "calls" conversions. */
1871 if (r_type
== R_MN10300_PCREL32
1872 || r_type
== R_MN10300_PLT32
1873 || r_type
== R_MN10300_PLT16
1874 || r_type
== R_MN10300_PCREL16
)
1875 hash
->direct_calls
++;
1877 hash
->flags
|= MN10300_CONVERT_CALL_TO_CALLS
;
1881 /* Now look at the actual contents to get the stack size,
1882 and a list of what registers were saved in the prologue
1884 if ((section
->flags
& SEC_CODE
) != 0)
1886 Elf_Internal_Sym
*isym
, *isymend
;
1887 unsigned int sec_shndx
;
1888 struct elf_link_hash_entry
**hashes
;
1889 struct elf_link_hash_entry
**end_hashes
;
1890 unsigned int symcount
;
1892 sec_shndx
= _bfd_elf_section_from_bfd_section (input_bfd
,
1895 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1896 - symtab_hdr
->sh_info
);
1897 hashes
= elf_sym_hashes (input_bfd
);
1898 end_hashes
= hashes
+ symcount
;
1900 /* Look at each function defined in this section and
1901 update info for that function. */
1902 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
1903 for (isym
= isymbuf
; isym
< isymend
; isym
++)
1905 if (isym
->st_shndx
== sec_shndx
1906 && ELF_ST_TYPE (isym
->st_info
) == STT_FUNC
)
1908 struct elf_link_hash_table
*elftab
;
1910 struct elf_link_hash_entry
**lhashes
= hashes
;
1912 /* Skip a local symbol if it aliases a
1914 for (; lhashes
< end_hashes
; lhashes
++)
1916 hash
= (struct elf32_mn10300_link_hash_entry
*) *lhashes
;
1917 if ((hash
->root
.root
.type
== bfd_link_hash_defined
1918 || hash
->root
.root
.type
== bfd_link_hash_defweak
)
1919 && hash
->root
.root
.u
.def
.section
== section
1920 && hash
->root
.type
== STT_FUNC
1921 && hash
->root
.root
.u
.def
.value
== isym
->st_value
)
1924 if (lhashes
!= end_hashes
)
1927 if (isym
->st_shndx
== SHN_UNDEF
)
1928 sym_sec
= bfd_und_section_ptr
;
1929 else if (isym
->st_shndx
== SHN_ABS
)
1930 sym_sec
= bfd_abs_section_ptr
;
1931 else if (isym
->st_shndx
== SHN_COMMON
)
1932 sym_sec
= bfd_com_section_ptr
;
1935 = bfd_section_from_elf_index (input_bfd
,
1938 sym_name
= (bfd_elf_string_from_elf_section
1939 (input_bfd
, symtab_hdr
->sh_link
,
1942 /* Tack on an ID so we can uniquely identify this
1943 local symbol in the global hash table. */
1944 amt
= strlen (sym_name
) + 10;
1945 new_name
= bfd_malloc (amt
);
1949 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
1950 sym_name
= new_name
;
1952 elftab
= &hash_table
->static_hash_table
->root
;
1953 hash
= ((struct elf32_mn10300_link_hash_entry
*)
1954 elf_link_hash_lookup (elftab
, sym_name
,
1955 TRUE
, TRUE
, FALSE
));
1957 compute_function_info (input_bfd
, hash
,
1958 isym
->st_value
, contents
);
1959 hash
->value
= isym
->st_value
;
1963 for (; hashes
< end_hashes
; hashes
++)
1965 hash
= (struct elf32_mn10300_link_hash_entry
*) *hashes
;
1966 if ((hash
->root
.root
.type
== bfd_link_hash_defined
1967 || hash
->root
.root
.type
== bfd_link_hash_defweak
)
1968 && hash
->root
.root
.u
.def
.section
== section
1969 && hash
->root
.type
== STT_FUNC
)
1970 compute_function_info (input_bfd
, hash
,
1971 (hash
)->root
.root
.u
.def
.value
,
1976 /* Cache or free any memory we allocated for the relocs. */
1977 if (internal_relocs
!= NULL
1978 && elf_section_data (section
)->relocs
!= internal_relocs
)
1979 free (internal_relocs
);
1980 internal_relocs
= NULL
;
1982 /* Cache or free any memory we allocated for the contents. */
1983 if (contents
!= NULL
1984 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
1986 if (! link_info
->keep_memory
)
1990 /* Cache the section contents for elf_link_input_bfd. */
1991 elf_section_data (section
)->this_hdr
.contents
= contents
;
1997 /* Cache or free any memory we allocated for the symbols. */
1999 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2001 if (! link_info
->keep_memory
)
2005 /* Cache the symbols for elf_link_input_bfd. */
2006 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2012 /* Now iterate on each symbol in the hash table and perform
2013 the final initialization steps on each. */
2014 elf32_mn10300_link_hash_traverse (hash_table
,
2015 elf32_mn10300_finish_hash_table_entry
,
2017 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
2018 elf32_mn10300_finish_hash_table_entry
,
2022 /* This section of code collects all our local symbols, sorts
2023 them by value, and looks for multiple symbols referring to
2024 the same address. For those symbols, the flags are merged.
2025 At this point, the only flag that can be set is
2026 MN10300_CONVERT_CALL_TO_CALLS, so we simply OR the flags
2028 int static_count
= 0, i
;
2029 struct elf32_mn10300_link_hash_entry
**entries
;
2030 struct elf32_mn10300_link_hash_entry
**ptr
;
2032 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
2033 elf32_mn10300_count_hash_table_entries
,
2036 entries
= (struct elf32_mn10300_link_hash_entry
**)
2037 bfd_malloc (static_count
* sizeof (struct elf32_mn10300_link_hash_entry
*));
2040 elf32_mn10300_link_hash_traverse (hash_table
->static_hash_table
,
2041 elf32_mn10300_list_hash_table_entries
,
2044 qsort (entries
, static_count
, sizeof(entries
[0]), sort_by_value
);
2046 for (i
=0; i
<static_count
-1; i
++)
2047 if (entries
[i
]->value
&& entries
[i
]->value
== entries
[i
+1]->value
)
2049 int v
= entries
[i
]->flags
;
2051 for (j
=i
+1; j
<static_count
&& entries
[j
]->value
== entries
[i
]->value
; j
++)
2052 v
|= entries
[j
]->flags
;
2053 for (j
=i
; j
<static_count
&& entries
[j
]->value
== entries
[i
]->value
; j
++)
2054 entries
[j
]->flags
= v
;
2059 /* All entries in the hash table are fully initialized. */
2060 hash_table
->flags
|= MN10300_HASH_ENTRIES_INITIALIZED
;
2062 /* Now that everything has been initialized, go through each
2063 code section and delete any prologue insns which will be
2064 redundant because their operations will be performed by
2065 a "call" instruction. */
2066 for (input_bfd
= link_info
->input_bfds
;
2068 input_bfd
= input_bfd
->link_next
)
2070 /* We're going to need all the local symbols for each bfd. */
2071 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
2072 if (symtab_hdr
->sh_info
!= 0)
2074 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
2075 if (isymbuf
== NULL
)
2076 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
2077 symtab_hdr
->sh_info
, 0,
2079 if (isymbuf
== NULL
)
2083 /* Walk over each section in this bfd. */
2084 for (section
= input_bfd
->sections
;
2086 section
= section
->next
)
2088 unsigned int sec_shndx
;
2089 Elf_Internal_Sym
*isym
, *isymend
;
2090 struct elf_link_hash_entry
**hashes
;
2091 struct elf_link_hash_entry
**end_hashes
;
2092 unsigned int symcount
;
2094 /* Skip non-code sections and empty sections. */
2095 if ((section
->flags
& SEC_CODE
) == 0 || section
->size
== 0)
2098 if (section
->reloc_count
!= 0)
2100 /* Get a copy of the native relocations. */
2101 internal_relocs
= (_bfd_elf_link_read_relocs
2102 (input_bfd
, section
, (PTR
) NULL
,
2103 (Elf_Internal_Rela
*) NULL
,
2104 link_info
->keep_memory
));
2105 if (internal_relocs
== NULL
)
2109 /* Get cached copy of section contents if it exists. */
2110 if (elf_section_data (section
)->this_hdr
.contents
!= NULL
)
2111 contents
= elf_section_data (section
)->this_hdr
.contents
;
2114 /* Go get them off disk. */
2115 if (!bfd_malloc_and_get_section (input_bfd
, section
,
2120 sec_shndx
= _bfd_elf_section_from_bfd_section (input_bfd
,
2123 /* Now look for any function in this section which needs
2124 insns deleted from its prologue. */
2125 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
2126 for (isym
= isymbuf
; isym
< isymend
; isym
++)
2128 struct elf32_mn10300_link_hash_entry
*sym_hash
;
2129 asection
*sym_sec
= NULL
;
2130 const char *sym_name
;
2132 struct elf_link_hash_table
*elftab
;
2135 if (isym
->st_shndx
!= sec_shndx
)
2138 if (isym
->st_shndx
== SHN_UNDEF
)
2139 sym_sec
= bfd_und_section_ptr
;
2140 else if (isym
->st_shndx
== SHN_ABS
)
2141 sym_sec
= bfd_abs_section_ptr
;
2142 else if (isym
->st_shndx
== SHN_COMMON
)
2143 sym_sec
= bfd_com_section_ptr
;
2146 = bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
2149 = bfd_elf_string_from_elf_section (input_bfd
,
2150 symtab_hdr
->sh_link
,
2153 /* Tack on an ID so we can uniquely identify this
2154 local symbol in the global hash table. */
2155 amt
= strlen (sym_name
) + 10;
2156 new_name
= bfd_malloc (amt
);
2159 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
2160 sym_name
= new_name
;
2162 elftab
= &hash_table
->static_hash_table
->root
;
2163 sym_hash
= ((struct elf32_mn10300_link_hash_entry
*)
2164 elf_link_hash_lookup (elftab
, sym_name
,
2165 FALSE
, FALSE
, FALSE
));
2168 if (sym_hash
== NULL
)
2171 if (! (sym_hash
->flags
& MN10300_CONVERT_CALL_TO_CALLS
)
2172 && ! (sym_hash
->flags
& MN10300_DELETED_PROLOGUE_BYTES
))
2176 /* Note that we've changed things. */
2177 elf_section_data (section
)->relocs
= internal_relocs
;
2178 elf_section_data (section
)->this_hdr
.contents
= contents
;
2179 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2181 /* Count how many bytes we're going to delete. */
2182 if (sym_hash
->movm_args
)
2185 if (sym_hash
->stack_size
> 0)
2187 if (sym_hash
->stack_size
<= 128)
2193 /* Note that we've deleted prologue bytes for this
2195 sym_hash
->flags
|= MN10300_DELETED_PROLOGUE_BYTES
;
2197 /* Actually delete the bytes. */
2198 if (!mn10300_elf_relax_delete_bytes (input_bfd
,
2204 /* Something changed. Not strictly necessary, but
2205 may lead to more relaxing opportunities. */
2210 /* Look for any global functions in this section which
2211 need insns deleted from their prologues. */
2212 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
2213 - symtab_hdr
->sh_info
);
2214 hashes
= elf_sym_hashes (input_bfd
);
2215 end_hashes
= hashes
+ symcount
;
2216 for (; hashes
< end_hashes
; hashes
++)
2218 struct elf32_mn10300_link_hash_entry
*sym_hash
;
2220 sym_hash
= (struct elf32_mn10300_link_hash_entry
*) *hashes
;
2221 if ((sym_hash
->root
.root
.type
== bfd_link_hash_defined
2222 || sym_hash
->root
.root
.type
== bfd_link_hash_defweak
)
2223 && sym_hash
->root
.root
.u
.def
.section
== section
2224 && ! (sym_hash
->flags
& MN10300_CONVERT_CALL_TO_CALLS
)
2225 && ! (sym_hash
->flags
& MN10300_DELETED_PROLOGUE_BYTES
))
2230 /* Note that we've changed things. */
2231 elf_section_data (section
)->relocs
= internal_relocs
;
2232 elf_section_data (section
)->this_hdr
.contents
= contents
;
2233 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2235 /* Count how many bytes we're going to delete. */
2236 if (sym_hash
->movm_args
)
2239 if (sym_hash
->stack_size
> 0)
2241 if (sym_hash
->stack_size
<= 128)
2247 /* Note that we've deleted prologue bytes for this
2249 sym_hash
->flags
|= MN10300_DELETED_PROLOGUE_BYTES
;
2251 /* Actually delete the bytes. */
2252 symval
= sym_hash
->root
.root
.u
.def
.value
;
2253 if (!mn10300_elf_relax_delete_bytes (input_bfd
,
2259 /* Something changed. Not strictly necessary, but
2260 may lead to more relaxing opportunities. */
2265 /* Cache or free any memory we allocated for the relocs. */
2266 if (internal_relocs
!= NULL
2267 && elf_section_data (section
)->relocs
!= internal_relocs
)
2268 free (internal_relocs
);
2269 internal_relocs
= NULL
;
2271 /* Cache or free any memory we allocated for the contents. */
2272 if (contents
!= NULL
2273 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
2275 if (! link_info
->keep_memory
)
2279 /* Cache the section contents for elf_link_input_bfd. */
2280 elf_section_data (section
)->this_hdr
.contents
= contents
;
2286 /* Cache or free any memory we allocated for the symbols. */
2288 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2290 if (! link_info
->keep_memory
)
2294 /* Cache the symbols for elf_link_input_bfd. */
2295 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2302 /* (Re)initialize for the basic instruction shortening/relaxing pass. */
2304 internal_relocs
= NULL
;
2306 /* For error_return. */
2309 /* We don't have to do anything for a relocatable link, if
2310 this section does not have relocs, or if this is not a
2312 if (link_info
->relocatable
2313 || (sec
->flags
& SEC_RELOC
) == 0
2314 || sec
->reloc_count
== 0
2315 || (sec
->flags
& SEC_CODE
) == 0)
2318 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2320 /* Get a copy of the native relocations. */
2321 internal_relocs
= (_bfd_elf_link_read_relocs
2322 (abfd
, sec
, (PTR
) NULL
, (Elf_Internal_Rela
*) NULL
,
2323 link_info
->keep_memory
));
2324 if (internal_relocs
== NULL
)
2327 /* Walk through them looking for relaxing opportunities. */
2328 irelend
= internal_relocs
+ sec
->reloc_count
;
2329 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
2332 struct elf32_mn10300_link_hash_entry
*h
= NULL
;
2334 /* If this isn't something that can be relaxed, then ignore
2336 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_NONE
2337 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_8
2338 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_MAX
)
2341 /* Get the section contents if we haven't done so already. */
2342 if (contents
== NULL
)
2344 /* Get cached copy if it exists. */
2345 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
2346 contents
= elf_section_data (sec
)->this_hdr
.contents
;
2349 /* Go get them off disk. */
2350 if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
2355 /* Read this BFD's symbols if we haven't done so already. */
2356 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
2358 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
2359 if (isymbuf
== NULL
)
2360 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
2361 symtab_hdr
->sh_info
, 0,
2363 if (isymbuf
== NULL
)
2367 /* Get the value of the symbol referred to by the reloc. */
2368 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
2370 Elf_Internal_Sym
*isym
;
2371 asection
*sym_sec
= NULL
;
2372 const char *sym_name
;
2374 bfd_vma saved_addend
;
2376 /* A local symbol. */
2377 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
2378 if (isym
->st_shndx
== SHN_UNDEF
)
2379 sym_sec
= bfd_und_section_ptr
;
2380 else if (isym
->st_shndx
== SHN_ABS
)
2381 sym_sec
= bfd_abs_section_ptr
;
2382 else if (isym
->st_shndx
== SHN_COMMON
)
2383 sym_sec
= bfd_com_section_ptr
;
2385 sym_sec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
2387 sym_name
= bfd_elf_string_from_elf_section (abfd
,
2388 symtab_hdr
->sh_link
,
2391 if ((sym_sec
->flags
& SEC_MERGE
)
2392 && ELF_ST_TYPE (isym
->st_info
) == STT_SECTION
2393 && sym_sec
->sec_info_type
== ELF_INFO_TYPE_MERGE
)
2395 saved_addend
= irel
->r_addend
;
2396 symval
= _bfd_elf_rela_local_sym (abfd
, isym
, &sym_sec
, irel
);
2397 symval
+= irel
->r_addend
;
2398 irel
->r_addend
= saved_addend
;
2402 symval
= (isym
->st_value
2403 + sym_sec
->output_section
->vma
2404 + sym_sec
->output_offset
);
2406 /* Tack on an ID so we can uniquely identify this
2407 local symbol in the global hash table. */
2408 new_name
= bfd_malloc ((bfd_size_type
) strlen (sym_name
) + 10);
2411 sprintf (new_name
, "%s_%08x", sym_name
, sym_sec
->id
);
2412 sym_name
= new_name
;
2414 h
= (struct elf32_mn10300_link_hash_entry
*)
2415 elf_link_hash_lookup (&hash_table
->static_hash_table
->root
,
2416 sym_name
, FALSE
, FALSE
, FALSE
);
2423 /* An external symbol. */
2424 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
2425 h
= (struct elf32_mn10300_link_hash_entry
*)
2426 (elf_sym_hashes (abfd
)[indx
]);
2427 BFD_ASSERT (h
!= NULL
);
2428 if (h
->root
.root
.type
!= bfd_link_hash_defined
2429 && h
->root
.root
.type
!= bfd_link_hash_defweak
)
2431 /* This appears to be a reference to an undefined
2432 symbol. Just ignore it--it will be caught by the
2433 regular reloc processing. */
2437 symval
= (h
->root
.root
.u
.def
.value
2438 + h
->root
.root
.u
.def
.section
->output_section
->vma
2439 + h
->root
.root
.u
.def
.section
->output_offset
);
2442 /* For simplicity of coding, we are going to modify the section
2443 contents, the section relocs, and the BFD symbol table. We
2444 must tell the rest of the code not to free up this
2445 information. It would be possible to instead create a table
2446 of changes which have to be made, as is done in coff-mips.c;
2447 that would be more work, but would require less memory when
2448 the linker is run. */
2450 /* Try to turn a 32bit pc-relative branch/call into a 16bit pc-relative
2451 branch/call, also deal with "call" -> "calls" conversions and
2452 insertion of prologue data into "call" instructions. */
2453 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL32
2454 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PLT32
)
2456 bfd_vma value
= symval
;
2458 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PLT32
2460 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_INTERNAL
2461 && ELF_ST_VISIBILITY (h
->root
.other
) != STV_HIDDEN
2462 && h
->root
.plt
.offset
!= (bfd_vma
) -1)
2466 splt
= bfd_get_section_by_name (elf_hash_table (link_info
)
2469 value
= ((splt
->output_section
->vma
2470 + splt
->output_offset
2471 + h
->root
.plt
.offset
)
2472 - (sec
->output_section
->vma
2473 + sec
->output_offset
2477 /* If we've got a "call" instruction that needs to be turned
2478 into a "calls" instruction, do so now. It saves a byte. */
2479 if (h
&& (h
->flags
& MN10300_CONVERT_CALL_TO_CALLS
))
2483 /* Get the opcode. */
2484 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2486 /* Make sure we're working with a "call" instruction! */
2489 /* Note that we've changed the relocs, section contents,
2491 elf_section_data (sec
)->relocs
= internal_relocs
;
2492 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2493 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2495 /* Fix the opcode. */
2496 bfd_put_8 (abfd
, 0xfc, contents
+ irel
->r_offset
- 1);
2497 bfd_put_8 (abfd
, 0xff, contents
+ irel
->r_offset
);
2499 /* Fix irel->r_offset and irel->r_addend. */
2500 irel
->r_offset
+= 1;
2501 irel
->r_addend
+= 1;
2503 /* Delete one byte of data. */
2504 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2505 irel
->r_offset
+ 3, 1))
2508 /* That will change things, so, we should relax again.
2509 Note that this is not required, and it may be slow. */
2515 /* We've got a "call" instruction which needs some data
2516 from target function filled in. */
2519 /* Get the opcode. */
2520 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2522 /* Insert data from the target function into the "call"
2523 instruction if needed. */
2526 bfd_put_8 (abfd
, h
->movm_args
, contents
+ irel
->r_offset
+ 4);
2527 bfd_put_8 (abfd
, h
->stack_size
+ h
->movm_stack_size
,
2528 contents
+ irel
->r_offset
+ 5);
2532 /* Deal with pc-relative gunk. */
2533 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2534 value
-= irel
->r_offset
;
2535 value
+= irel
->r_addend
;
2537 /* See if the value will fit in 16 bits, note the high value is
2538 0x7fff + 2 as the target will be two bytes closer if we are
2540 if ((long) value
< 0x8001 && (long) value
> -0x8000)
2544 /* Get the opcode. */
2545 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2547 if (code
!= 0xdc && code
!= 0xdd && code
!= 0xff)
2550 /* Note that we've changed the relocs, section contents, etc. */
2551 elf_section_data (sec
)->relocs
= internal_relocs
;
2552 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2553 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2555 /* Fix the opcode. */
2557 bfd_put_8 (abfd
, 0xcc, contents
+ irel
->r_offset
- 1);
2558 else if (code
== 0xdd)
2559 bfd_put_8 (abfd
, 0xcd, contents
+ irel
->r_offset
- 1);
2560 else if (code
== 0xff)
2561 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
2563 /* Fix the relocation's type. */
2564 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2565 (ELF32_R_TYPE (irel
->r_info
)
2566 == (int) R_MN10300_PLT32
)
2570 /* Delete two bytes of data. */
2571 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2572 irel
->r_offset
+ 1, 2))
2575 /* That will change things, so, we should relax again.
2576 Note that this is not required, and it may be slow. */
2581 /* Try to turn a 16bit pc-relative branch into a 8bit pc-relative
2583 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL16
)
2585 bfd_vma value
= symval
;
2587 /* If we've got a "call" instruction that needs to be turned
2588 into a "calls" instruction, do so now. It saves a byte. */
2589 if (h
&& (h
->flags
& MN10300_CONVERT_CALL_TO_CALLS
))
2593 /* Get the opcode. */
2594 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2596 /* Make sure we're working with a "call" instruction! */
2599 /* Note that we've changed the relocs, section contents,
2601 elf_section_data (sec
)->relocs
= internal_relocs
;
2602 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2603 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2605 /* Fix the opcode. */
2606 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 1);
2607 bfd_put_8 (abfd
, 0xff, contents
+ irel
->r_offset
);
2609 /* Fix irel->r_offset and irel->r_addend. */
2610 irel
->r_offset
+= 1;
2611 irel
->r_addend
+= 1;
2613 /* Delete one byte of data. */
2614 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2615 irel
->r_offset
+ 1, 1))
2618 /* That will change things, so, we should relax again.
2619 Note that this is not required, and it may be slow. */
2627 /* Get the opcode. */
2628 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2630 /* Insert data from the target function into the "call"
2631 instruction if needed. */
2634 bfd_put_8 (abfd
, h
->movm_args
, contents
+ irel
->r_offset
+ 2);
2635 bfd_put_8 (abfd
, h
->stack_size
+ h
->movm_stack_size
,
2636 contents
+ irel
->r_offset
+ 3);
2640 /* Deal with pc-relative gunk. */
2641 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2642 value
-= irel
->r_offset
;
2643 value
+= irel
->r_addend
;
2645 /* See if the value will fit in 8 bits, note the high value is
2646 0x7f + 1 as the target will be one bytes closer if we are
2648 if ((long) value
< 0x80 && (long) value
> -0x80)
2652 /* Get the opcode. */
2653 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2658 /* Note that we've changed the relocs, section contents, etc. */
2659 elf_section_data (sec
)->relocs
= internal_relocs
;
2660 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2661 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2663 /* Fix the opcode. */
2664 bfd_put_8 (abfd
, 0xca, contents
+ irel
->r_offset
- 1);
2666 /* Fix the relocation's type. */
2667 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2670 /* Delete one byte of data. */
2671 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2672 irel
->r_offset
+ 1, 1))
2675 /* That will change things, so, we should relax again.
2676 Note that this is not required, and it may be slow. */
2681 /* Try to eliminate an unconditional 8 bit pc-relative branch
2682 which immediately follows a conditional 8 bit pc-relative
2683 branch around the unconditional branch.
2690 This happens when the bCC can't reach lab2 at assembly time,
2691 but due to other relaxations it can reach at link time. */
2692 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_PCREL8
)
2694 Elf_Internal_Rela
*nrel
;
2695 bfd_vma value
= symval
;
2698 /* Deal with pc-relative gunk. */
2699 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
2700 value
-= irel
->r_offset
;
2701 value
+= irel
->r_addend
;
2703 /* Do nothing if this reloc is the last byte in the section. */
2704 if (irel
->r_offset
== sec
->size
)
2707 /* See if the next instruction is an unconditional pc-relative
2708 branch, more often than not this test will fail, so we
2709 test it first to speed things up. */
2710 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
+ 1);
2714 /* Also make sure the next relocation applies to the next
2715 instruction and that it's a pc-relative 8 bit branch. */
2718 || irel
->r_offset
+ 2 != nrel
->r_offset
2719 || ELF32_R_TYPE (nrel
->r_info
) != (int) R_MN10300_PCREL8
)
2722 /* Make sure our destination immediately follows the
2723 unconditional branch. */
2724 if (symval
!= (sec
->output_section
->vma
+ sec
->output_offset
2725 + irel
->r_offset
+ 3))
2728 /* Now make sure we are a conditional branch. This may not
2729 be necessary, but why take the chance.
2731 Note these checks assume that R_MN10300_PCREL8 relocs
2732 only occur on bCC and bCCx insns. If they occured
2733 elsewhere, we'd need to know the start of this insn
2734 for this check to be accurate. */
2735 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
2736 if (code
!= 0xc0 && code
!= 0xc1 && code
!= 0xc2
2737 && code
!= 0xc3 && code
!= 0xc4 && code
!= 0xc5
2738 && code
!= 0xc6 && code
!= 0xc7 && code
!= 0xc8
2739 && code
!= 0xc9 && code
!= 0xe8 && code
!= 0xe9
2740 && code
!= 0xea && code
!= 0xeb)
2743 /* We also have to be sure there is no symbol/label
2744 at the unconditional branch. */
2745 if (mn10300_elf_symbol_address_p (abfd
, sec
, isymbuf
,
2746 irel
->r_offset
+ 1))
2749 /* Note that we've changed the relocs, section contents, etc. */
2750 elf_section_data (sec
)->relocs
= internal_relocs
;
2751 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2752 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2754 /* Reverse the condition of the first branch. */
2800 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
2802 /* Set the reloc type and symbol for the first branch
2803 from the second branch. */
2804 irel
->r_info
= nrel
->r_info
;
2806 /* Make the reloc for the second branch a null reloc. */
2807 nrel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (nrel
->r_info
),
2810 /* Delete two bytes of data. */
2811 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2812 irel
->r_offset
+ 1, 2))
2815 /* That will change things, so, we should relax again.
2816 Note that this is not required, and it may be slow. */
2820 /* Try to turn a 24 immediate, displacement or absolute address
2821 into a 8 immediate, displacement or absolute address. */
2822 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_24
)
2824 bfd_vma value
= symval
;
2825 value
+= irel
->r_addend
;
2827 /* See if the value will fit in 8 bits. */
2828 if ((long) value
< 0x7f && (long) value
> -0x80)
2832 /* AM33 insns which have 24 operands are 6 bytes long and
2833 will have 0xfd as the first byte. */
2835 /* Get the first opcode. */
2836 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 3);
2840 /* Get the second opcode. */
2841 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
2843 /* We can not relax 0x6b, 0x7b, 0x8b, 0x9b as no 24bit
2844 equivalent instructions exists. */
2845 if (code
!= 0x6b && code
!= 0x7b
2846 && code
!= 0x8b && code
!= 0x9b
2847 && ((code
& 0x0f) == 0x09 || (code
& 0x0f) == 0x08
2848 || (code
& 0x0f) == 0x0a || (code
& 0x0f) == 0x0b
2849 || (code
& 0x0f) == 0x0e))
2851 /* Not safe if the high bit is on as relaxing may
2852 move the value out of high mem and thus not fit
2853 in a signed 8bit value. This is currently over
2855 if ((value
& 0x80) == 0)
2857 /* Note that we've changed the relocation contents,
2859 elf_section_data (sec
)->relocs
= internal_relocs
;
2860 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2861 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2863 /* Fix the opcode. */
2864 bfd_put_8 (abfd
, 0xfb, contents
+ irel
->r_offset
- 3);
2865 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
2867 /* Fix the relocation's type. */
2869 ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2872 /* Delete two bytes of data. */
2873 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2874 irel
->r_offset
+ 1, 2))
2877 /* That will change things, so, we should relax
2878 again. Note that this is not required, and it
2888 /* Try to turn a 32bit immediate, displacement or absolute address
2889 into a 16bit immediate, displacement or absolute address. */
2890 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_32
2891 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOT32
2892 || ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTOFF32
)
2894 bfd_vma value
= symval
;
2896 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_MN10300_32
)
2900 sgot
= bfd_get_section_by_name (elf_hash_table (link_info
)
2903 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOT32
)
2905 value
= sgot
->output_offset
;
2908 value
+= h
->root
.got
.offset
;
2910 value
+= (elf_local_got_offsets
2911 (abfd
)[ELF32_R_SYM (irel
->r_info
)]);
2913 else if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTOFF32
)
2914 value
-= sgot
->output_section
->vma
;
2915 else if (ELF32_R_TYPE (irel
->r_info
) == (int) R_MN10300_GOTPC32
)
2916 value
= (sgot
->output_section
->vma
2917 - (sec
->output_section
->vma
2918 + sec
->output_offset
2924 value
+= irel
->r_addend
;
2926 /* See if the value will fit in 24 bits.
2927 We allow any 16bit match here. We prune those we can't
2929 if ((long) value
< 0x7fffff && (long) value
> -0x800000)
2933 /* AM33 insns which have 32bit operands are 7 bytes long and
2934 will have 0xfe as the first byte. */
2936 /* Get the first opcode. */
2937 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 3);
2941 /* Get the second opcode. */
2942 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
2944 /* All the am33 32 -> 24 relaxing possibilities. */
2945 /* We can not relax 0x6b, 0x7b, 0x8b, 0x9b as no 24bit
2946 equivalent instructions exists. */
2947 if (code
!= 0x6b && code
!= 0x7b
2948 && code
!= 0x8b && code
!= 0x9b
2949 && (ELF32_R_TYPE (irel
->r_info
)
2950 != (int) R_MN10300_GOTPC32
)
2951 && ((code
& 0x0f) == 0x09 || (code
& 0x0f) == 0x08
2952 || (code
& 0x0f) == 0x0a || (code
& 0x0f) == 0x0b
2953 || (code
& 0x0f) == 0x0e))
2955 /* Not safe if the high bit is on as relaxing may
2956 move the value out of high mem and thus not fit
2957 in a signed 16bit value. This is currently over
2959 if ((value
& 0x8000) == 0)
2961 /* Note that we've changed the relocation contents,
2963 elf_section_data (sec
)->relocs
= internal_relocs
;
2964 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2965 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2967 /* Fix the opcode. */
2968 bfd_put_8 (abfd
, 0xfd, contents
+ irel
->r_offset
- 3);
2969 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
2971 /* Fix the relocation's type. */
2973 ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2974 (ELF32_R_TYPE (irel
->r_info
)
2975 == (int) R_MN10300_GOTOFF32
)
2976 ? R_MN10300_GOTOFF24
2977 : (ELF32_R_TYPE (irel
->r_info
)
2978 == (int) R_MN10300_GOT32
)
2982 /* Delete one byte of data. */
2983 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
2984 irel
->r_offset
+ 3, 1))
2987 /* That will change things, so, we should relax
2988 again. Note that this is not required, and it
2997 /* See if the value will fit in 16 bits.
2998 We allow any 16bit match here. We prune those we can't
3000 if ((long) value
< 0x7fff && (long) value
> -0x8000)
3004 /* Most insns which have 32bit operands are 6 bytes long;
3005 exceptions are pcrel insns and bit insns.
3007 We handle pcrel insns above. We don't bother trying
3008 to handle the bit insns here.
3010 The first byte of the remaining insns will be 0xfc. */
3012 /* Get the first opcode. */
3013 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 2);
3018 /* Get the second opcode. */
3019 code
= bfd_get_8 (abfd
, contents
+ irel
->r_offset
- 1);
3021 if ((code
& 0xf0) < 0x80)
3022 switch (code
& 0xf0)
3024 /* mov (d32,am),dn -> mov (d32,am),dn
3025 mov dm,(d32,am) -> mov dn,(d32,am)
3026 mov (d32,am),an -> mov (d32,am),an
3027 mov dm,(d32,am) -> mov dn,(d32,am)
3028 movbu (d32,am),dn -> movbu (d32,am),dn
3029 movbu dm,(d32,am) -> movbu dn,(d32,am)
3030 movhu (d32,am),dn -> movhu (d32,am),dn
3031 movhu dm,(d32,am) -> movhu dn,(d32,am) */
3040 /* Not safe if the high bit is on as relaxing may
3041 move the value out of high mem and thus not fit
3042 in a signed 16bit value. */
3044 && (value
& 0x8000))
3047 /* Note that we've changed the relocation contents, etc. */
3048 elf_section_data (sec
)->relocs
= internal_relocs
;
3049 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3050 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3052 /* Fix the opcode. */
3053 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3054 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3056 /* Fix the relocation's type. */
3057 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3058 (ELF32_R_TYPE (irel
->r_info
)
3059 == (int) R_MN10300_GOTOFF32
)
3060 ? R_MN10300_GOTOFF16
3061 : (ELF32_R_TYPE (irel
->r_info
)
3062 == (int) R_MN10300_GOT32
)
3064 : (ELF32_R_TYPE (irel
->r_info
)
3065 == (int) R_MN10300_GOTPC32
)
3066 ? R_MN10300_GOTPC16
:
3069 /* Delete two bytes of data. */
3070 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3071 irel
->r_offset
+ 2, 2))
3074 /* That will change things, so, we should relax again.
3075 Note that this is not required, and it may be slow. */
3079 else if ((code
& 0xf0) == 0x80
3080 || (code
& 0xf0) == 0x90)
3081 switch (code
& 0xf3)
3083 /* mov dn,(abs32) -> mov dn,(abs16)
3084 movbu dn,(abs32) -> movbu dn,(abs16)
3085 movhu dn,(abs32) -> movhu dn,(abs16) */
3089 /* Note that we've changed the relocation contents, etc. */
3090 elf_section_data (sec
)->relocs
= internal_relocs
;
3091 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3092 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3094 if ((code
& 0xf3) == 0x81)
3095 code
= 0x01 + (code
& 0x0c);
3096 else if ((code
& 0xf3) == 0x82)
3097 code
= 0x02 + (code
& 0x0c);
3098 else if ((code
& 0xf3) == 0x83)
3099 code
= 0x03 + (code
& 0x0c);
3103 /* Fix the opcode. */
3104 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
3106 /* Fix the relocation's type. */
3107 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3108 (ELF32_R_TYPE (irel
->r_info
)
3109 == (int) R_MN10300_GOTOFF32
)
3110 ? R_MN10300_GOTOFF16
3111 : (ELF32_R_TYPE (irel
->r_info
)
3112 == (int) R_MN10300_GOT32
)
3114 : (ELF32_R_TYPE (irel
->r_info
)
3115 == (int) R_MN10300_GOTPC32
)
3116 ? R_MN10300_GOTPC16
:
3119 /* The opcode got shorter too, so we have to fix the
3120 addend and offset too! */
3121 irel
->r_offset
-= 1;
3123 /* Delete three bytes of data. */
3124 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3125 irel
->r_offset
+ 1, 3))
3128 /* That will change things, so, we should relax again.
3129 Note that this is not required, and it may be slow. */
3133 /* mov am,(abs32) -> mov am,(abs16)
3134 mov am,(d32,sp) -> mov am,(d16,sp)
3135 mov dm,(d32,sp) -> mov dm,(d32,sp)
3136 movbu dm,(d32,sp) -> movbu dm,(d32,sp)
3137 movhu dm,(d32,sp) -> movhu dm,(d32,sp) */
3143 /* sp-based offsets are zero-extended. */
3144 if (code
>= 0x90 && code
<= 0x93
3148 /* Note that we've changed the relocation contents, etc. */
3149 elf_section_data (sec
)->relocs
= internal_relocs
;
3150 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3151 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3153 /* Fix the opcode. */
3154 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3155 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3157 /* Fix the relocation's type. */
3158 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3159 (ELF32_R_TYPE (irel
->r_info
)
3160 == (int) R_MN10300_GOTOFF32
)
3161 ? R_MN10300_GOTOFF16
3162 : (ELF32_R_TYPE (irel
->r_info
)
3163 == (int) R_MN10300_GOT32
)
3165 : (ELF32_R_TYPE (irel
->r_info
)
3166 == (int) R_MN10300_GOTPC32
)
3167 ? R_MN10300_GOTPC16
:
3170 /* Delete two bytes of data. */
3171 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3172 irel
->r_offset
+ 2, 2))
3175 /* That will change things, so, we should relax again.
3176 Note that this is not required, and it may be slow. */
3180 else if ((code
& 0xf0) < 0xf0)
3181 switch (code
& 0xfc)
3183 /* mov imm32,dn -> mov imm16,dn
3184 mov imm32,an -> mov imm16,an
3185 mov (abs32),dn -> mov (abs16),dn
3186 movbu (abs32),dn -> movbu (abs16),dn
3187 movhu (abs32),dn -> movhu (abs16),dn */
3193 /* Not safe if the high bit is on as relaxing may
3194 move the value out of high mem and thus not fit
3195 in a signed 16bit value. */
3197 && (value
& 0x8000))
3200 /* mov imm16, an zero-extends the immediate. */
3205 /* Note that we've changed the relocation contents, etc. */
3206 elf_section_data (sec
)->relocs
= internal_relocs
;
3207 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3208 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3210 if ((code
& 0xfc) == 0xcc)
3211 code
= 0x2c + (code
& 0x03);
3212 else if ((code
& 0xfc) == 0xdc)
3213 code
= 0x24 + (code
& 0x03);
3214 else if ((code
& 0xfc) == 0xa4)
3215 code
= 0x30 + (code
& 0x03);
3216 else if ((code
& 0xfc) == 0xa8)
3217 code
= 0x34 + (code
& 0x03);
3218 else if ((code
& 0xfc) == 0xac)
3219 code
= 0x38 + (code
& 0x03);
3223 /* Fix the opcode. */
3224 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 2);
3226 /* Fix the relocation's type. */
3227 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3228 (ELF32_R_TYPE (irel
->r_info
)
3229 == (int) R_MN10300_GOTOFF32
)
3230 ? R_MN10300_GOTOFF16
3231 : (ELF32_R_TYPE (irel
->r_info
)
3232 == (int) R_MN10300_GOT32
)
3234 : (ELF32_R_TYPE (irel
->r_info
)
3235 == (int) R_MN10300_GOTPC32
)
3236 ? R_MN10300_GOTPC16
:
3239 /* The opcode got shorter too, so we have to fix the
3240 addend and offset too! */
3241 irel
->r_offset
-= 1;
3243 /* Delete three bytes of data. */
3244 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3245 irel
->r_offset
+ 1, 3))
3248 /* That will change things, so, we should relax again.
3249 Note that this is not required, and it may be slow. */
3253 /* mov (abs32),an -> mov (abs16),an
3254 mov (d32,sp),an -> mov (d16,sp),an
3255 mov (d32,sp),dn -> mov (d16,sp),dn
3256 movbu (d32,sp),dn -> movbu (d16,sp),dn
3257 movhu (d32,sp),dn -> movhu (d16,sp),dn
3258 add imm32,dn -> add imm16,dn
3259 cmp imm32,dn -> cmp imm16,dn
3260 add imm32,an -> add imm16,an
3261 cmp imm32,an -> cmp imm16,an
3262 and imm32,dn -> and imm16,dn
3263 or imm32,dn -> or imm16,dn
3264 xor imm32,dn -> xor imm16,dn
3265 btst imm32,dn -> btst imm16,dn */
3281 /* cmp imm16, an zero-extends the immediate. */
3286 /* So do sp-based offsets. */
3287 if (code
>= 0xb0 && code
<= 0xb3
3291 /* Note that we've changed the relocation contents, etc. */
3292 elf_section_data (sec
)->relocs
= internal_relocs
;
3293 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3294 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3296 /* Fix the opcode. */
3297 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3298 bfd_put_8 (abfd
, code
, contents
+ irel
->r_offset
- 1);
3300 /* Fix the relocation's type. */
3301 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3302 (ELF32_R_TYPE (irel
->r_info
)
3303 == (int) R_MN10300_GOTOFF32
)
3304 ? R_MN10300_GOTOFF16
3305 : (ELF32_R_TYPE (irel
->r_info
)
3306 == (int) R_MN10300_GOT32
)
3308 : (ELF32_R_TYPE (irel
->r_info
)
3309 == (int) R_MN10300_GOTPC32
)
3310 ? R_MN10300_GOTPC16
:
3313 /* Delete two bytes of data. */
3314 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3315 irel
->r_offset
+ 2, 2))
3318 /* That will change things, so, we should relax again.
3319 Note that this is not required, and it may be slow. */
3323 else if (code
== 0xfe)
3325 /* add imm32,sp -> add imm16,sp */
3327 /* Note that we've changed the relocation contents, etc. */
3328 elf_section_data (sec
)->relocs
= internal_relocs
;
3329 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3330 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3332 /* Fix the opcode. */
3333 bfd_put_8 (abfd
, 0xfa, contents
+ irel
->r_offset
- 2);
3334 bfd_put_8 (abfd
, 0xfe, contents
+ irel
->r_offset
- 1);
3336 /* Fix the relocation's type. */
3337 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
3338 (ELF32_R_TYPE (irel
->r_info
)
3339 == (int) R_MN10300_GOT32
)
3341 : (ELF32_R_TYPE (irel
->r_info
)
3342 == (int) R_MN10300_GOTOFF32
)
3343 ? R_MN10300_GOTOFF16
3344 : (ELF32_R_TYPE (irel
->r_info
)
3345 == (int) R_MN10300_GOTPC32
)
3346 ? R_MN10300_GOTPC16
:
3349 /* Delete two bytes of data. */
3350 if (!mn10300_elf_relax_delete_bytes (abfd
, sec
,
3351 irel
->r_offset
+ 2, 2))
3354 /* That will change things, so, we should relax again.
3355 Note that this is not required, and it may be slow. */
3364 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3366 if (! link_info
->keep_memory
)
3370 /* Cache the symbols for elf_link_input_bfd. */
3371 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
3375 if (contents
!= NULL
3376 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
3378 if (! link_info
->keep_memory
)
3382 /* Cache the section contents for elf_link_input_bfd. */
3383 elf_section_data (sec
)->this_hdr
.contents
= contents
;
3387 if (internal_relocs
!= NULL
3388 && elf_section_data (sec
)->relocs
!= internal_relocs
)
3389 free (internal_relocs
);
3395 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3397 if (contents
!= NULL
3398 && elf_section_data (section
)->this_hdr
.contents
!= contents
)
3400 if (internal_relocs
!= NULL
3401 && elf_section_data (section
)->relocs
!= internal_relocs
)
3402 free (internal_relocs
);
3407 /* Compute the stack size and movm arguments for the function
3408 referred to by HASH at address ADDR in section with
3409 contents CONTENTS, store the information in the hash table. */
3411 compute_function_info (abfd
, hash
, addr
, contents
)
3413 struct elf32_mn10300_link_hash_entry
*hash
;
3415 unsigned char *contents
;
3417 unsigned char byte1
, byte2
;
3418 /* We only care about a very small subset of the possible prologue
3419 sequences here. Basically we look for:
3421 movm [d2,d3,a2,a3],sp (optional)
3422 add <size>,sp (optional, and only for sizes which fit in an unsigned
3425 If we find anything else, we quit. */
3427 /* Look for movm [regs],sp */
3428 byte1
= bfd_get_8 (abfd
, contents
+ addr
);
3429 byte2
= bfd_get_8 (abfd
, contents
+ addr
+ 1);
3433 hash
->movm_args
= byte2
;
3435 byte1
= bfd_get_8 (abfd
, contents
+ addr
);
3436 byte2
= bfd_get_8 (abfd
, contents
+ addr
+ 1);
3439 /* Now figure out how much stack space will be allocated by the movm
3440 instruction. We need this kept separate from the function's normal
3442 if (hash
->movm_args
)
3445 if (hash
->movm_args
& 0x80)
3446 hash
->movm_stack_size
+= 4;
3449 if (hash
->movm_args
& 0x40)
3450 hash
->movm_stack_size
+= 4;
3453 if (hash
->movm_args
& 0x20)
3454 hash
->movm_stack_size
+= 4;
3457 if (hash
->movm_args
& 0x10)
3458 hash
->movm_stack_size
+= 4;
3460 /* "other" space. d0, d1, a0, a1, mdr, lir, lar, 4 byte pad. */
3461 if (hash
->movm_args
& 0x08)
3462 hash
->movm_stack_size
+= 8 * 4;
3464 if (bfd_get_mach (abfd
) == bfd_mach_am33
3465 || bfd_get_mach (abfd
) == bfd_mach_am33_2
)
3467 /* "exother" space. e0, e1, mdrq, mcrh, mcrl, mcvf */
3468 if (hash
->movm_args
& 0x1)
3469 hash
->movm_stack_size
+= 6 * 4;
3471 /* exreg1 space. e4, e5, e6, e7 */
3472 if (hash
->movm_args
& 0x2)
3473 hash
->movm_stack_size
+= 4 * 4;
3475 /* exreg0 space. e2, e3 */
3476 if (hash
->movm_args
& 0x4)
3477 hash
->movm_stack_size
+= 2 * 4;
3481 /* Now look for the two stack adjustment variants. */
3482 if (byte1
== 0xf8 && byte2
== 0xfe)
3484 int temp
= bfd_get_8 (abfd
, contents
+ addr
+ 2);
3485 temp
= ((temp
& 0xff) ^ (~0x7f)) + 0x80;
3487 hash
->stack_size
= -temp
;
3489 else if (byte1
== 0xfa && byte2
== 0xfe)
3491 int temp
= bfd_get_16 (abfd
, contents
+ addr
+ 2);
3492 temp
= ((temp
& 0xffff) ^ (~0x7fff)) + 0x8000;
3496 hash
->stack_size
= temp
;
3499 /* If the total stack to be allocated by the call instruction is more
3500 than 255 bytes, then we can't remove the stack adjustment by using
3501 "call" (we might still be able to remove the "movm" instruction. */
3502 if (hash
->stack_size
+ hash
->movm_stack_size
> 255)
3503 hash
->stack_size
= 0;
3508 /* Delete some bytes from a section while relaxing. */
3511 mn10300_elf_relax_delete_bytes (abfd
, sec
, addr
, count
)
3517 Elf_Internal_Shdr
*symtab_hdr
;
3518 unsigned int sec_shndx
;
3520 Elf_Internal_Rela
*irel
, *irelend
;
3521 Elf_Internal_Rela
*irelalign
;
3523 Elf_Internal_Sym
*isym
, *isymend
;
3524 struct elf_link_hash_entry
**sym_hashes
;
3525 struct elf_link_hash_entry
**end_hashes
;
3526 unsigned int symcount
;
3528 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
3530 contents
= elf_section_data (sec
)->this_hdr
.contents
;
3532 /* The deletion must stop at the next ALIGN reloc for an aligment
3533 power larger than the number of bytes we are deleting. */
3538 irel
= elf_section_data (sec
)->relocs
;
3539 irelend
= irel
+ sec
->reloc_count
;
3541 /* Actually delete the bytes. */
3542 memmove (contents
+ addr
, contents
+ addr
+ count
,
3543 (size_t) (toaddr
- addr
- count
));
3546 /* Adjust all the relocs. */
3547 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
3549 /* Get the new reloc address. */
3550 if ((irel
->r_offset
> addr
3551 && irel
->r_offset
< toaddr
))
3552 irel
->r_offset
-= count
;
3555 /* Adjust the local symbols defined in this section. */
3556 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3557 isym
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
3558 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
3560 if (isym
->st_shndx
== sec_shndx
3561 && isym
->st_value
> addr
3562 && isym
->st_value
< toaddr
)
3563 isym
->st_value
-= count
;
3566 /* Now adjust the global symbols defined in this section. */
3567 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
3568 - symtab_hdr
->sh_info
);
3569 sym_hashes
= elf_sym_hashes (abfd
);
3570 end_hashes
= sym_hashes
+ symcount
;
3571 for (; sym_hashes
< end_hashes
; sym_hashes
++)
3573 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
3574 if ((sym_hash
->root
.type
== bfd_link_hash_defined
3575 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
3576 && sym_hash
->root
.u
.def
.section
== sec
3577 && sym_hash
->root
.u
.def
.value
> addr
3578 && sym_hash
->root
.u
.def
.value
< toaddr
)
3580 sym_hash
->root
.u
.def
.value
-= count
;
3587 /* Return TRUE if a symbol exists at the given address, else return
3590 mn10300_elf_symbol_address_p (abfd
, sec
, isym
, addr
)
3593 Elf_Internal_Sym
*isym
;
3596 Elf_Internal_Shdr
*symtab_hdr
;
3597 unsigned int sec_shndx
;
3598 Elf_Internal_Sym
*isymend
;
3599 struct elf_link_hash_entry
**sym_hashes
;
3600 struct elf_link_hash_entry
**end_hashes
;
3601 unsigned int symcount
;
3603 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
3605 /* Examine all the symbols. */
3606 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
3607 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
3609 if (isym
->st_shndx
== sec_shndx
3610 && isym
->st_value
== addr
)
3614 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
3615 - symtab_hdr
->sh_info
);
3616 sym_hashes
= elf_sym_hashes (abfd
);
3617 end_hashes
= sym_hashes
+ symcount
;
3618 for (; sym_hashes
< end_hashes
; sym_hashes
++)
3620 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
3621 if ((sym_hash
->root
.type
== bfd_link_hash_defined
3622 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
3623 && sym_hash
->root
.u
.def
.section
== sec
3624 && sym_hash
->root
.u
.def
.value
== addr
)
3631 /* This is a version of bfd_generic_get_relocated_section_contents
3632 which uses mn10300_elf_relocate_section. */
3635 mn10300_elf_get_relocated_section_contents (output_bfd
, link_info
, link_order
,
3636 data
, relocatable
, symbols
)
3638 struct bfd_link_info
*link_info
;
3639 struct bfd_link_order
*link_order
;
3641 bfd_boolean relocatable
;
3644 Elf_Internal_Shdr
*symtab_hdr
;
3645 asection
*input_section
= link_order
->u
.indirect
.section
;
3646 bfd
*input_bfd
= input_section
->owner
;
3647 asection
**sections
= NULL
;
3648 Elf_Internal_Rela
*internal_relocs
= NULL
;
3649 Elf_Internal_Sym
*isymbuf
= NULL
;
3651 /* We only need to handle the case of relaxing, or of having a
3652 particular set of section contents, specially. */
3654 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
3655 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
3660 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
3662 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
3663 (size_t) input_section
->size
);
3665 if ((input_section
->flags
& SEC_RELOC
) != 0
3666 && input_section
->reloc_count
> 0)
3669 Elf_Internal_Sym
*isym
, *isymend
;
3672 internal_relocs
= (_bfd_elf_link_read_relocs
3673 (input_bfd
, input_section
, (PTR
) NULL
,
3674 (Elf_Internal_Rela
*) NULL
, FALSE
));
3675 if (internal_relocs
== NULL
)
3678 if (symtab_hdr
->sh_info
!= 0)
3680 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
3681 if (isymbuf
== NULL
)
3682 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
3683 symtab_hdr
->sh_info
, 0,
3685 if (isymbuf
== NULL
)
3689 amt
= symtab_hdr
->sh_info
;
3690 amt
*= sizeof (asection
*);
3691 sections
= (asection
**) bfd_malloc (amt
);
3692 if (sections
== NULL
&& amt
!= 0)
3695 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
3696 for (isym
= isymbuf
, secpp
= sections
; isym
< isymend
; ++isym
, ++secpp
)
3700 if (isym
->st_shndx
== SHN_UNDEF
)
3701 isec
= bfd_und_section_ptr
;
3702 else if (isym
->st_shndx
== SHN_ABS
)
3703 isec
= bfd_abs_section_ptr
;
3704 else if (isym
->st_shndx
== SHN_COMMON
)
3705 isec
= bfd_com_section_ptr
;
3707 isec
= bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
3712 if (! mn10300_elf_relocate_section (output_bfd
, link_info
, input_bfd
,
3713 input_section
, data
, internal_relocs
,
3717 if (sections
!= NULL
)
3719 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3721 if (internal_relocs
!= elf_section_data (input_section
)->relocs
)
3722 free (internal_relocs
);
3728 if (sections
!= NULL
)
3730 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
3732 if (internal_relocs
!= NULL
3733 && internal_relocs
!= elf_section_data (input_section
)->relocs
)
3734 free (internal_relocs
);
3738 /* Assorted hash table functions. */
3740 /* Initialize an entry in the link hash table. */
3742 /* Create an entry in an MN10300 ELF linker hash table. */
3744 static struct bfd_hash_entry
*
3745 elf32_mn10300_link_hash_newfunc (entry
, table
, string
)
3746 struct bfd_hash_entry
*entry
;
3747 struct bfd_hash_table
*table
;
3750 struct elf32_mn10300_link_hash_entry
*ret
=
3751 (struct elf32_mn10300_link_hash_entry
*) entry
;
3753 /* Allocate the structure if it has not already been allocated by a
3755 if (ret
== (struct elf32_mn10300_link_hash_entry
*) NULL
)
3756 ret
= ((struct elf32_mn10300_link_hash_entry
*)
3757 bfd_hash_allocate (table
,
3758 sizeof (struct elf32_mn10300_link_hash_entry
)));
3759 if (ret
== (struct elf32_mn10300_link_hash_entry
*) NULL
)
3760 return (struct bfd_hash_entry
*) ret
;
3762 /* Call the allocation method of the superclass. */
3763 ret
= ((struct elf32_mn10300_link_hash_entry
*)
3764 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
3766 if (ret
!= (struct elf32_mn10300_link_hash_entry
*) NULL
)
3768 ret
->direct_calls
= 0;
3769 ret
->stack_size
= 0;
3771 ret
->movm_stack_size
= 0;
3776 return (struct bfd_hash_entry
*) ret
;
3779 /* Create an mn10300 ELF linker hash table. */
3781 static struct bfd_link_hash_table
*
3782 elf32_mn10300_link_hash_table_create (abfd
)
3785 struct elf32_mn10300_link_hash_table
*ret
;
3786 bfd_size_type amt
= sizeof (struct elf32_mn10300_link_hash_table
);
3788 ret
= (struct elf32_mn10300_link_hash_table
*) bfd_malloc (amt
);
3789 if (ret
== (struct elf32_mn10300_link_hash_table
*) NULL
)
3792 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
3793 elf32_mn10300_link_hash_newfunc
,
3794 sizeof (struct elf32_mn10300_link_hash_entry
)))
3801 amt
= sizeof (struct elf_link_hash_table
);
3802 ret
->static_hash_table
3803 = (struct elf32_mn10300_link_hash_table
*) bfd_malloc (amt
);
3804 if (ret
->static_hash_table
== NULL
)
3810 if (!_bfd_elf_link_hash_table_init (&ret
->static_hash_table
->root
, abfd
,
3811 elf32_mn10300_link_hash_newfunc
,
3812 sizeof (struct elf32_mn10300_link_hash_entry
)))
3814 free (ret
->static_hash_table
);
3818 return &ret
->root
.root
;
3821 /* Free an mn10300 ELF linker hash table. */
3824 elf32_mn10300_link_hash_table_free (hash
)
3825 struct bfd_link_hash_table
*hash
;
3827 struct elf32_mn10300_link_hash_table
*ret
3828 = (struct elf32_mn10300_link_hash_table
*) hash
;
3830 _bfd_generic_link_hash_table_free
3831 ((struct bfd_link_hash_table
*) ret
->static_hash_table
);
3832 _bfd_generic_link_hash_table_free
3833 ((struct bfd_link_hash_table
*) ret
);
3836 static unsigned long
3837 elf_mn10300_mach (flags
)
3840 switch (flags
& EF_MN10300_MACH
)
3842 case E_MN10300_MACH_MN10300
:
3844 return bfd_mach_mn10300
;
3846 case E_MN10300_MACH_AM33
:
3847 return bfd_mach_am33
;
3849 case E_MN10300_MACH_AM33_2
:
3850 return bfd_mach_am33_2
;
3854 /* The final processing done just before writing out a MN10300 ELF object
3855 file. This gets the MN10300 architecture right based on the machine
3859 _bfd_mn10300_elf_final_write_processing (abfd
, linker
)
3861 bfd_boolean linker ATTRIBUTE_UNUSED
;
3865 switch (bfd_get_mach (abfd
))
3868 case bfd_mach_mn10300
:
3869 val
= E_MN10300_MACH_MN10300
;
3873 val
= E_MN10300_MACH_AM33
;
3876 case bfd_mach_am33_2
:
3877 val
= E_MN10300_MACH_AM33_2
;
3881 elf_elfheader (abfd
)->e_flags
&= ~ (EF_MN10300_MACH
);
3882 elf_elfheader (abfd
)->e_flags
|= val
;
3886 _bfd_mn10300_elf_object_p (abfd
)
3889 bfd_default_set_arch_mach (abfd
, bfd_arch_mn10300
,
3890 elf_mn10300_mach (elf_elfheader (abfd
)->e_flags
));
3894 /* Merge backend specific data from an object file to the output
3895 object file when linking. */
3898 _bfd_mn10300_elf_merge_private_bfd_data (ibfd
, obfd
)
3902 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
3903 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
3906 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
3907 && bfd_get_mach (obfd
) < bfd_get_mach (ibfd
))
3909 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
3910 bfd_get_mach (ibfd
)))
3917 #define PLT0_ENTRY_SIZE 15
3918 #define PLT_ENTRY_SIZE 20
3919 #define PIC_PLT_ENTRY_SIZE 24
3921 static const bfd_byte elf_mn10300_plt0_entry
[PLT0_ENTRY_SIZE
] =
3923 0xfc, 0xa0, 0, 0, 0, 0, /* mov (.got+8),a0 */
3924 0xfe, 0xe, 0x10, 0, 0, 0, 0, /* mov (.got+4),r1 */
3925 0xf0, 0xf4, /* jmp (a0) */
3928 static const bfd_byte elf_mn10300_plt_entry
[PLT_ENTRY_SIZE
] =
3930 0xfc, 0xa0, 0, 0, 0, 0, /* mov (nameN@GOT + .got),a0 */
3931 0xf0, 0xf4, /* jmp (a0) */
3932 0xfe, 8, 0, 0, 0, 0, 0, /* mov reloc-table-address,r0 */
3933 0xdc, 0, 0, 0, 0, /* jmp .plt0 */
3936 static const bfd_byte elf_mn10300_pic_plt_entry
[PIC_PLT_ENTRY_SIZE
] =
3938 0xfc, 0x22, 0, 0, 0, 0, /* mov (nameN@GOT,a2),a0 */
3939 0xf0, 0xf4, /* jmp (a0) */
3940 0xfe, 8, 0, 0, 0, 0, 0, /* mov reloc-table-address,r0 */
3941 0xf8, 0x22, 8, /* mov (8,a2),a0 */
3942 0xfb, 0xa, 0x1a, 4, /* mov (4,a2),r1 */
3943 0xf0, 0xf4, /* jmp (a0) */
3946 /* Return size of the first PLT entry. */
3947 #define elf_mn10300_sizeof_plt0(info) \
3948 (info->shared ? PIC_PLT_ENTRY_SIZE : PLT0_ENTRY_SIZE)
3950 /* Return size of a PLT entry. */
3951 #define elf_mn10300_sizeof_plt(info) \
3952 (info->shared ? PIC_PLT_ENTRY_SIZE : PLT_ENTRY_SIZE)
3954 /* Return offset of the PLT0 address in an absolute PLT entry. */
3955 #define elf_mn10300_plt_plt0_offset(info) 16
3957 /* Return offset of the linker in PLT0 entry. */
3958 #define elf_mn10300_plt0_linker_offset(info) 2
3960 /* Return offset of the GOT id in PLT0 entry. */
3961 #define elf_mn10300_plt0_gotid_offset(info) 9
3963 /* Return offset of the temporary in PLT entry */
3964 #define elf_mn10300_plt_temp_offset(info) 8
3966 /* Return offset of the symbol in PLT entry. */
3967 #define elf_mn10300_plt_symbol_offset(info) 2
3969 /* Return offset of the relocation in PLT entry. */
3970 #define elf_mn10300_plt_reloc_offset(info) 11
3972 /* The name of the dynamic interpreter. This is put in the .interp
3975 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
3977 /* Create dynamic sections when linking against a dynamic object. */
3980 _bfd_mn10300_elf_create_dynamic_sections (abfd
, info
)
3982 struct bfd_link_info
*info
;
3986 const struct elf_backend_data
* bed
= get_elf_backend_data (abfd
);
3989 switch (bed
->s
->arch_size
)
4000 bfd_set_error (bfd_error_bad_value
);
4004 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
4005 .rel[a].bss sections. */
4007 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
4008 | SEC_LINKER_CREATED
);
4010 s
= bfd_make_section_with_flags (abfd
,
4011 (bed
->default_use_rela_p
4012 ? ".rela.plt" : ".rel.plt"),
4013 flags
| SEC_READONLY
);
4015 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
4018 if (! _bfd_mn10300_elf_create_got_section (abfd
, info
))
4022 const char * secname
;
4027 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
4029 secflags
= bfd_get_section_flags (abfd
, sec
);
4030 if ((secflags
& (SEC_DATA
| SEC_LINKER_CREATED
))
4031 || ((secflags
& SEC_HAS_CONTENTS
) != SEC_HAS_CONTENTS
))
4034 secname
= bfd_get_section_name (abfd
, sec
);
4035 relname
= (char *) bfd_malloc (strlen (secname
) + 6);
4036 strcpy (relname
, ".rela");
4037 strcat (relname
, secname
);
4039 s
= bfd_make_section_with_flags (abfd
, relname
,
4040 flags
| SEC_READONLY
);
4042 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
4047 if (bed
->want_dynbss
)
4049 /* The .dynbss section is a place to put symbols which are defined
4050 by dynamic objects, are referenced by regular objects, and are
4051 not functions. We must allocate space for them in the process
4052 image and use a R_*_COPY reloc to tell the dynamic linker to
4053 initialize them at run time. The linker script puts the .dynbss
4054 section into the .bss section of the final image. */
4055 s
= bfd_make_section_with_flags (abfd
, ".dynbss",
4056 SEC_ALLOC
| SEC_LINKER_CREATED
);
4060 /* The .rel[a].bss section holds copy relocs. This section is not
4061 normally needed. We need to create it here, though, so that the
4062 linker will map it to an output section. We can't just create it
4063 only if we need it, because we will not know whether we need it
4064 until we have seen all the input files, and the first time the
4065 main linker code calls BFD after examining all the input files
4066 (size_dynamic_sections) the input sections have already been
4067 mapped to the output sections. If the section turns out not to
4068 be needed, we can discard it later. We will never need this
4069 section when generating a shared object, since they do not use
4073 s
= bfd_make_section_with_flags (abfd
,
4074 (bed
->default_use_rela_p
4075 ? ".rela.bss" : ".rel.bss"),
4076 flags
| SEC_READONLY
);
4078 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
4086 /* Adjust a symbol defined by a dynamic object and referenced by a
4087 regular object. The current definition is in some section of the
4088 dynamic object, but we're not including those sections. We have to
4089 change the definition to something the rest of the link can
4093 _bfd_mn10300_elf_adjust_dynamic_symbol (info
, h
)
4094 struct bfd_link_info
* info
;
4095 struct elf_link_hash_entry
* h
;
4099 unsigned int power_of_two
;
4101 dynobj
= elf_hash_table (info
)->dynobj
;
4103 /* Make sure we know what is going on here. */
4104 BFD_ASSERT (dynobj
!= NULL
4106 || h
->u
.weakdef
!= NULL
4109 && !h
->def_regular
)));
4111 /* If this is a function, put it in the procedure linkage table. We
4112 will fill in the contents of the procedure linkage table later,
4113 when we know the address of the .got section. */
4114 if (h
->type
== STT_FUNC
4121 /* This case can occur if we saw a PLT reloc in an input
4122 file, but the symbol was never referred to by a dynamic
4123 object. In such a case, we don't actually need to build
4124 a procedure linkage table, and we can just do a REL32
4126 BFD_ASSERT (h
->needs_plt
);
4130 /* Make sure this symbol is output as a dynamic symbol. */
4131 if (h
->dynindx
== -1)
4133 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
4137 s
= bfd_get_section_by_name (dynobj
, ".plt");
4138 BFD_ASSERT (s
!= NULL
);
4140 /* If this is the first .plt entry, make room for the special
4143 s
->size
+= elf_mn10300_sizeof_plt0 (info
);
4145 /* If this symbol is not defined in a regular file, and we are
4146 not generating a shared library, then set the symbol to this
4147 location in the .plt. This is required to make function
4148 pointers compare as equal between the normal executable and
4149 the shared library. */
4153 h
->root
.u
.def
.section
= s
;
4154 h
->root
.u
.def
.value
= s
->size
;
4157 h
->plt
.offset
= s
->size
;
4159 /* Make room for this entry. */
4160 s
->size
+= elf_mn10300_sizeof_plt (info
);
4162 /* We also need to make an entry in the .got.plt section, which
4163 will be placed in the .got section by the linker script. */
4165 s
= bfd_get_section_by_name (dynobj
, ".got.plt");
4166 BFD_ASSERT (s
!= NULL
);
4169 /* We also need to make an entry in the .rela.plt section. */
4171 s
= bfd_get_section_by_name (dynobj
, ".rela.plt");
4172 BFD_ASSERT (s
!= NULL
);
4173 s
->size
+= sizeof (Elf32_External_Rela
);
4178 /* If this is a weak symbol, and there is a real definition, the
4179 processor independent code will have arranged for us to see the
4180 real definition first, and we can just use the same value. */
4181 if (h
->u
.weakdef
!= NULL
)
4183 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
4184 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
4185 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
4186 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
4190 /* This is a reference to a symbol defined by a dynamic object which
4191 is not a function. */
4193 /* If we are creating a shared library, we must presume that the
4194 only references to the symbol are via the global offset table.
4195 For such cases we need not do anything here; the relocations will
4196 be handled correctly by relocate_section. */
4200 /* If there are no references to this symbol that do not use the
4201 GOT, we don't need to generate a copy reloc. */
4202 if (!h
->non_got_ref
)
4207 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
4208 h
->root
.root
.string
);
4212 /* We must allocate the symbol in our .dynbss section, which will
4213 become part of the .bss section of the executable. There will be
4214 an entry for this symbol in the .dynsym section. The dynamic
4215 object will contain position independent code, so all references
4216 from the dynamic object to this symbol will go through the global
4217 offset table. The dynamic linker will use the .dynsym entry to
4218 determine the address it must put in the global offset table, so
4219 both the dynamic object and the regular object will refer to the
4220 same memory location for the variable. */
4222 s
= bfd_get_section_by_name (dynobj
, ".dynbss");
4223 BFD_ASSERT (s
!= NULL
);
4225 /* We must generate a R_MN10300_COPY reloc to tell the dynamic linker to
4226 copy the initial value out of the dynamic object and into the
4227 runtime process image. We need to remember the offset into the
4228 .rela.bss section we are going to use. */
4229 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
4233 srel
= bfd_get_section_by_name (dynobj
, ".rela.bss");
4234 BFD_ASSERT (srel
!= NULL
);
4235 srel
->size
+= sizeof (Elf32_External_Rela
);
4239 /* We need to figure out the alignment required for this symbol. I
4240 have no idea how ELF linkers handle this. */
4241 power_of_two
= bfd_log2 (h
->size
);
4242 if (power_of_two
> 3)
4245 /* Apply the required alignment. */
4246 s
->size
= BFD_ALIGN (s
->size
, (bfd_size_type
) (1 << power_of_two
));
4247 if (power_of_two
> bfd_get_section_alignment (dynobj
, s
))
4249 if (! bfd_set_section_alignment (dynobj
, s
, power_of_two
))
4253 /* Define the symbol as being at this point in the section. */
4254 h
->root
.u
.def
.section
= s
;
4255 h
->root
.u
.def
.value
= s
->size
;
4257 /* Increment the section size to make room for the symbol. */
4263 /* Set the sizes of the dynamic sections. */
4266 _bfd_mn10300_elf_size_dynamic_sections (output_bfd
, info
)
4268 struct bfd_link_info
* info
;
4274 bfd_boolean reltext
;
4276 dynobj
= elf_hash_table (info
)->dynobj
;
4277 BFD_ASSERT (dynobj
!= NULL
);
4279 if (elf_hash_table (info
)->dynamic_sections_created
)
4281 /* Set the contents of the .interp section to the interpreter. */
4282 if (info
->executable
)
4284 s
= bfd_get_section_by_name (dynobj
, ".interp");
4285 BFD_ASSERT (s
!= NULL
);
4286 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
4287 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
4292 /* We may have created entries in the .rela.got section.
4293 However, if we are not creating the dynamic sections, we will
4294 not actually use these entries. Reset the size of .rela.got,
4295 which will cause it to get stripped from the output file
4297 s
= bfd_get_section_by_name (dynobj
, ".rela.got");
4302 /* The check_relocs and adjust_dynamic_symbol entry points have
4303 determined the sizes of the various dynamic sections. Allocate
4308 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
4312 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
4315 /* It's OK to base decisions on the section name, because none
4316 of the dynobj section names depend upon the input files. */
4317 name
= bfd_get_section_name (dynobj
, s
);
4319 if (strcmp (name
, ".plt") == 0)
4321 /* Remember whether there is a PLT. */
4324 else if (CONST_STRNEQ (name
, ".rela"))
4330 /* Remember whether there are any reloc sections other
4332 if (strcmp (name
, ".rela.plt") != 0)
4334 const char * outname
;
4338 /* If this relocation section applies to a read only
4339 section, then we probably need a DT_TEXTREL
4340 entry. The entries in the .rela.plt section
4341 really apply to the .got section, which we
4342 created ourselves and so know is not readonly. */
4343 outname
= bfd_get_section_name (output_bfd
,
4345 target
= bfd_get_section_by_name (output_bfd
, outname
+ 5);
4347 && (target
->flags
& SEC_READONLY
) != 0
4348 && (target
->flags
& SEC_ALLOC
) != 0)
4352 /* We use the reloc_count field as a counter if we need
4353 to copy relocs into the output file. */
4357 else if (! CONST_STRNEQ (name
, ".got")
4358 && strcmp (name
, ".dynbss") != 0)
4359 /* It's not one of our sections, so don't allocate space. */
4364 /* If we don't need this section, strip it from the
4365 output file. This is mostly to handle .rela.bss and
4366 .rela.plt. We must create both sections in
4367 create_dynamic_sections, because they must be created
4368 before the linker maps input sections to output
4369 sections. The linker does that before
4370 adjust_dynamic_symbol is called, and it is that
4371 function which decides whether anything needs to go
4372 into these sections. */
4373 s
->flags
|= SEC_EXCLUDE
;
4377 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
4380 /* Allocate memory for the section contents. We use bfd_zalloc
4381 here in case unused entries are not reclaimed before the
4382 section's contents are written out. This should not happen,
4383 but this way if it does, we get a R_MN10300_NONE reloc
4384 instead of garbage. */
4385 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
4386 if (s
->contents
== NULL
)
4390 if (elf_hash_table (info
)->dynamic_sections_created
)
4392 /* Add some entries to the .dynamic section. We fill in the
4393 values later, in _bfd_mn10300_elf_finish_dynamic_sections,
4394 but we must add the entries now so that we get the correct
4395 size for the .dynamic section. The DT_DEBUG entry is filled
4396 in by the dynamic linker and used by the debugger. */
4399 if (!_bfd_elf_add_dynamic_entry (info
, DT_DEBUG
, 0))
4405 if (!_bfd_elf_add_dynamic_entry (info
, DT_PLTGOT
, 0)
4406 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTRELSZ
, 0)
4407 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTREL
, DT_RELA
)
4408 || !_bfd_elf_add_dynamic_entry (info
, DT_JMPREL
, 0))
4414 if (!_bfd_elf_add_dynamic_entry (info
, DT_RELA
, 0)
4415 || !_bfd_elf_add_dynamic_entry (info
, DT_RELASZ
, 0)
4416 || !_bfd_elf_add_dynamic_entry (info
, DT_RELAENT
,
4417 sizeof (Elf32_External_Rela
)))
4423 if (!_bfd_elf_add_dynamic_entry (info
, DT_TEXTREL
, 0))
4431 /* Finish up dynamic symbol handling. We set the contents of various
4432 dynamic sections here. */
4435 _bfd_mn10300_elf_finish_dynamic_symbol (output_bfd
, info
, h
, sym
)
4437 struct bfd_link_info
* info
;
4438 struct elf_link_hash_entry
* h
;
4439 Elf_Internal_Sym
* sym
;
4443 dynobj
= elf_hash_table (info
)->dynobj
;
4445 if (h
->plt
.offset
!= (bfd_vma
) -1)
4452 Elf_Internal_Rela rel
;
4454 /* This symbol has an entry in the procedure linkage table. Set
4457 BFD_ASSERT (h
->dynindx
!= -1);
4459 splt
= bfd_get_section_by_name (dynobj
, ".plt");
4460 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
4461 srel
= bfd_get_section_by_name (dynobj
, ".rela.plt");
4462 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srel
!= NULL
);
4464 /* Get the index in the procedure linkage table which
4465 corresponds to this symbol. This is the index of this symbol
4466 in all the symbols for which we are making plt entries. The
4467 first entry in the procedure linkage table is reserved. */
4468 plt_index
= ((h
->plt
.offset
- elf_mn10300_sizeof_plt0 (info
))
4469 / elf_mn10300_sizeof_plt (info
));
4471 /* Get the offset into the .got table of the entry that
4472 corresponds to this function. Each .got entry is 4 bytes.
4473 The first three are reserved. */
4474 got_offset
= (plt_index
+ 3) * 4;
4476 /* Fill in the entry in the procedure linkage table. */
4479 memcpy (splt
->contents
+ h
->plt
.offset
, elf_mn10300_plt_entry
,
4480 elf_mn10300_sizeof_plt (info
));
4481 bfd_put_32 (output_bfd
,
4482 (sgot
->output_section
->vma
4483 + sgot
->output_offset
4485 (splt
->contents
+ h
->plt
.offset
4486 + elf_mn10300_plt_symbol_offset (info
)));
4488 bfd_put_32 (output_bfd
,
4489 (1 - h
->plt
.offset
- elf_mn10300_plt_plt0_offset (info
)),
4490 (splt
->contents
+ h
->plt
.offset
4491 + elf_mn10300_plt_plt0_offset (info
)));
4495 memcpy (splt
->contents
+ h
->plt
.offset
, elf_mn10300_pic_plt_entry
,
4496 elf_mn10300_sizeof_plt (info
));
4498 bfd_put_32 (output_bfd
, got_offset
,
4499 (splt
->contents
+ h
->plt
.offset
4500 + elf_mn10300_plt_symbol_offset (info
)));
4503 bfd_put_32 (output_bfd
, plt_index
* sizeof (Elf32_External_Rela
),
4504 (splt
->contents
+ h
->plt
.offset
4505 + elf_mn10300_plt_reloc_offset (info
)));
4507 /* Fill in the entry in the global offset table. */
4508 bfd_put_32 (output_bfd
,
4509 (splt
->output_section
->vma
4510 + splt
->output_offset
4512 + elf_mn10300_plt_temp_offset (info
)),
4513 sgot
->contents
+ got_offset
);
4515 /* Fill in the entry in the .rela.plt section. */
4516 rel
.r_offset
= (sgot
->output_section
->vma
4517 + sgot
->output_offset
4519 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_JMP_SLOT
);
4521 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4522 (bfd_byte
*) ((Elf32_External_Rela
*) srel
->contents
4525 if (!h
->def_regular
)
4526 /* Mark the symbol as undefined, rather than as defined in
4527 the .plt section. Leave the value alone. */
4528 sym
->st_shndx
= SHN_UNDEF
;
4531 if (h
->got
.offset
!= (bfd_vma
) -1)
4535 Elf_Internal_Rela rel
;
4537 /* This symbol has an entry in the global offset table. Set it up. */
4539 sgot
= bfd_get_section_by_name (dynobj
, ".got");
4540 srel
= bfd_get_section_by_name (dynobj
, ".rela.got");
4541 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
4543 rel
.r_offset
= (sgot
->output_section
->vma
4544 + sgot
->output_offset
4545 + (h
->got
.offset
&~ 1));
4547 /* If this is a -Bsymbolic link, and the symbol is defined
4548 locally, we just want to emit a RELATIVE reloc. Likewise if
4549 the symbol was forced to be local because of a version file.
4550 The entry in the global offset table will already have been
4551 initialized in the relocate_section function. */
4553 && (info
->symbolic
|| h
->dynindx
== -1)
4556 rel
.r_info
= ELF32_R_INFO (0, R_MN10300_RELATIVE
);
4557 rel
.r_addend
= (h
->root
.u
.def
.value
4558 + h
->root
.u
.def
.section
->output_section
->vma
4559 + h
->root
.u
.def
.section
->output_offset
);
4563 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
4564 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_GLOB_DAT
);
4568 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4569 (bfd_byte
*) ((Elf32_External_Rela
*) srel
->contents
4570 + srel
->reloc_count
));
4571 ++ srel
->reloc_count
;
4577 Elf_Internal_Rela rel
;
4579 /* This symbol needs a copy reloc. Set it up. */
4580 BFD_ASSERT (h
->dynindx
!= -1
4581 && (h
->root
.type
== bfd_link_hash_defined
4582 || h
->root
.type
== bfd_link_hash_defweak
));
4584 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
4586 BFD_ASSERT (s
!= NULL
);
4588 rel
.r_offset
= (h
->root
.u
.def
.value
4589 + h
->root
.u
.def
.section
->output_section
->vma
4590 + h
->root
.u
.def
.section
->output_offset
);
4591 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_MN10300_COPY
);
4593 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
4594 (bfd_byte
*) ((Elf32_External_Rela
*) s
->contents
4599 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
4600 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
4601 || h
== elf_hash_table (info
)->hgot
)
4602 sym
->st_shndx
= SHN_ABS
;
4607 /* Finish up the dynamic sections. */
4610 _bfd_mn10300_elf_finish_dynamic_sections (output_bfd
, info
)
4612 struct bfd_link_info
* info
;
4618 dynobj
= elf_hash_table (info
)->dynobj
;
4620 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
4621 BFD_ASSERT (sgot
!= NULL
);
4622 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
4624 if (elf_hash_table (info
)->dynamic_sections_created
)
4627 Elf32_External_Dyn
* dyncon
;
4628 Elf32_External_Dyn
* dynconend
;
4630 BFD_ASSERT (sdyn
!= NULL
);
4632 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
4633 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
4635 for (; dyncon
< dynconend
; dyncon
++)
4637 Elf_Internal_Dyn dyn
;
4641 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
4655 s
= bfd_get_section_by_name (output_bfd
, name
);
4656 BFD_ASSERT (s
!= NULL
);
4657 dyn
.d_un
.d_ptr
= s
->vma
;
4658 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4662 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
4663 BFD_ASSERT (s
!= NULL
);
4664 dyn
.d_un
.d_val
= s
->size
;
4665 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4669 /* My reading of the SVR4 ABI indicates that the
4670 procedure linkage table relocs (DT_JMPREL) should be
4671 included in the overall relocs (DT_RELA). This is
4672 what Solaris does. However, UnixWare can not handle
4673 that case. Therefore, we override the DT_RELASZ entry
4674 here to make it not include the JMPREL relocs. Since
4675 the linker script arranges for .rela.plt to follow all
4676 other relocation sections, we don't have to worry
4677 about changing the DT_RELA entry. */
4678 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
4680 dyn
.d_un
.d_val
-= s
->size
;
4681 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
4686 /* Fill in the first entry in the procedure linkage table. */
4687 splt
= bfd_get_section_by_name (dynobj
, ".plt");
4688 if (splt
&& splt
->size
> 0)
4692 memcpy (splt
->contents
, elf_mn10300_pic_plt_entry
,
4693 elf_mn10300_sizeof_plt (info
));
4697 memcpy (splt
->contents
, elf_mn10300_plt0_entry
, PLT0_ENTRY_SIZE
);
4698 bfd_put_32 (output_bfd
,
4699 sgot
->output_section
->vma
+ sgot
->output_offset
+ 4,
4700 splt
->contents
+ elf_mn10300_plt0_gotid_offset (info
));
4701 bfd_put_32 (output_bfd
,
4702 sgot
->output_section
->vma
+ sgot
->output_offset
+ 8,
4703 splt
->contents
+ elf_mn10300_plt0_linker_offset (info
));
4706 /* UnixWare sets the entsize of .plt to 4, although that doesn't
4707 really seem like the right value. */
4708 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
= 4;
4712 /* Fill in the first three entries in the global offset table. */
4716 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
4718 bfd_put_32 (output_bfd
,
4719 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
4721 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 4);
4722 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 8);
4725 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
4730 /* Classify relocation types, such that combreloc can sort them
4733 static enum elf_reloc_type_class
4734 _bfd_mn10300_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
4736 switch ((int) ELF32_R_TYPE (rela
->r_info
))
4738 case R_MN10300_RELATIVE
:
4739 return reloc_class_relative
;
4740 case R_MN10300_JMP_SLOT
:
4741 return reloc_class_plt
;
4742 case R_MN10300_COPY
:
4743 return reloc_class_copy
;
4745 return reloc_class_normal
;
4750 #define TARGET_LITTLE_SYM bfd_elf32_mn10300_vec
4751 #define TARGET_LITTLE_NAME "elf32-mn10300"
4752 #define ELF_ARCH bfd_arch_mn10300
4753 #define ELF_MACHINE_CODE EM_MN10300
4754 #define ELF_MACHINE_ALT1 EM_CYGNUS_MN10300
4755 #define ELF_MAXPAGESIZE 0x1000
4758 #define elf_info_to_howto mn10300_info_to_howto
4759 #define elf_info_to_howto_rel 0
4760 #define elf_backend_can_gc_sections 1
4761 #define elf_backend_rela_normal 1
4762 #define elf_backend_check_relocs mn10300_elf_check_relocs
4763 #define elf_backend_gc_mark_hook mn10300_elf_gc_mark_hook
4764 #define elf_backend_relocate_section mn10300_elf_relocate_section
4765 #define bfd_elf32_bfd_relax_section mn10300_elf_relax_section
4766 #define bfd_elf32_bfd_get_relocated_section_contents \
4767 mn10300_elf_get_relocated_section_contents
4768 #define bfd_elf32_bfd_link_hash_table_create \
4769 elf32_mn10300_link_hash_table_create
4770 #define bfd_elf32_bfd_link_hash_table_free \
4771 elf32_mn10300_link_hash_table_free
4773 #ifndef elf_symbol_leading_char
4774 #define elf_symbol_leading_char '_'
4777 /* So we can set bits in e_flags. */
4778 #define elf_backend_final_write_processing \
4779 _bfd_mn10300_elf_final_write_processing
4780 #define elf_backend_object_p _bfd_mn10300_elf_object_p
4782 #define bfd_elf32_bfd_merge_private_bfd_data \
4783 _bfd_mn10300_elf_merge_private_bfd_data
4785 #define elf_backend_can_gc_sections 1
4786 #define elf_backend_create_dynamic_sections \
4787 _bfd_mn10300_elf_create_dynamic_sections
4788 #define elf_backend_adjust_dynamic_symbol \
4789 _bfd_mn10300_elf_adjust_dynamic_symbol
4790 #define elf_backend_size_dynamic_sections \
4791 _bfd_mn10300_elf_size_dynamic_sections
4792 #define elf_backend_omit_section_dynsym \
4793 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
4794 #define elf_backend_finish_dynamic_symbol \
4795 _bfd_mn10300_elf_finish_dynamic_symbol
4796 #define elf_backend_finish_dynamic_sections \
4797 _bfd_mn10300_elf_finish_dynamic_sections
4799 #define elf_backend_reloc_type_class \
4800 _bfd_mn10300_elf_reloc_type_class
4802 #define elf_backend_want_got_plt 1
4803 #define elf_backend_plt_readonly 1
4804 #define elf_backend_want_plt_sym 0
4805 #define elf_backend_got_header_size 12
4807 #include "elf32-target.h"