1 /* BFD back-end for National Semiconductor's CR16 ELF
2 Copyright 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3 Written by M R Swami Reddy.
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 3 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 Foundation,
19 Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
25 #include "libiberty.h"
29 /* The cr16 linker needs to keep track of the number of relocs that
30 it decides to copy in check_relocs for each symbol. This is so
31 that it can discard PC relative relocs if it doesn't need them when
32 linking with -Bsymbolic. We store the information in a field
33 extending the regular ELF linker hash table. */
35 struct elf32_cr16_link_hash_entry
37 /* The basic elf link hash table entry. */
38 struct elf_link_hash_entry root
;
40 /* For function symbols, the number of times this function is
41 called directly (ie by name). */
42 unsigned int direct_calls
;
44 /* For function symbols, the size of this function's stack
45 (if <= 255 bytes). We stuff this into "call" instructions
46 to this target when it's valid and profitable to do so.
48 This does not include stack allocated by movm! */
49 unsigned char stack_size
;
51 /* For function symbols, arguments (if any) for movm instruction
52 in the prologue. We stuff this value into "call" instructions
53 to the target when it's valid and profitable to do so. */
54 unsigned char movm_args
;
56 /* For function symbols, the amount of stack space that would be allocated
57 by the movm instruction. This is redundant with movm_args, but we
58 add it to the hash table to avoid computing it over and over. */
59 unsigned char movm_stack_size
;
61 /* Used to mark functions which have had redundant parts of their
63 #define CR16_DELETED_PROLOGUE_BYTES 0x1
66 /* Calculated value. */
70 /* cr16_reloc_map array maps BFD relocation enum into a CRGAS relocation type. */
74 bfd_reloc_code_real_type bfd_reloc_enum
; /* BFD relocation enum. */
75 unsigned short cr16_reloc_type
; /* CR16 relocation type. */
78 static const struct cr16_reloc_map cr16_reloc_map
[R_CR16_MAX
] =
80 {BFD_RELOC_NONE
, R_CR16_NONE
},
81 {BFD_RELOC_CR16_NUM8
, R_CR16_NUM8
},
82 {BFD_RELOC_CR16_NUM16
, R_CR16_NUM16
},
83 {BFD_RELOC_CR16_NUM32
, R_CR16_NUM32
},
84 {BFD_RELOC_CR16_NUM32a
, R_CR16_NUM32a
},
85 {BFD_RELOC_CR16_REGREL4
, R_CR16_REGREL4
},
86 {BFD_RELOC_CR16_REGREL4a
, R_CR16_REGREL4a
},
87 {BFD_RELOC_CR16_REGREL14
, R_CR16_REGREL14
},
88 {BFD_RELOC_CR16_REGREL14a
, R_CR16_REGREL14a
},
89 {BFD_RELOC_CR16_REGREL16
, R_CR16_REGREL16
},
90 {BFD_RELOC_CR16_REGREL20
, R_CR16_REGREL20
},
91 {BFD_RELOC_CR16_REGREL20a
, R_CR16_REGREL20a
},
92 {BFD_RELOC_CR16_ABS20
, R_CR16_ABS20
},
93 {BFD_RELOC_CR16_ABS24
, R_CR16_ABS24
},
94 {BFD_RELOC_CR16_IMM4
, R_CR16_IMM4
},
95 {BFD_RELOC_CR16_IMM8
, R_CR16_IMM8
},
96 {BFD_RELOC_CR16_IMM16
, R_CR16_IMM16
},
97 {BFD_RELOC_CR16_IMM20
, R_CR16_IMM20
},
98 {BFD_RELOC_CR16_IMM24
, R_CR16_IMM24
},
99 {BFD_RELOC_CR16_IMM32
, R_CR16_IMM32
},
100 {BFD_RELOC_CR16_IMM32a
, R_CR16_IMM32a
},
101 {BFD_RELOC_CR16_DISP4
, R_CR16_DISP4
},
102 {BFD_RELOC_CR16_DISP8
, R_CR16_DISP8
},
103 {BFD_RELOC_CR16_DISP16
, R_CR16_DISP16
},
104 {BFD_RELOC_CR16_DISP24
, R_CR16_DISP24
},
105 {BFD_RELOC_CR16_DISP24a
, R_CR16_DISP24a
},
106 {BFD_RELOC_CR16_SWITCH8
, R_CR16_SWITCH8
},
107 {BFD_RELOC_CR16_SWITCH16
, R_CR16_SWITCH16
},
108 {BFD_RELOC_CR16_SWITCH32
, R_CR16_SWITCH32
},
109 {BFD_RELOC_CR16_GOT_REGREL20
, R_CR16_GOT_REGREL20
},
110 {BFD_RELOC_CR16_GOTC_REGREL20
, R_CR16_GOTC_REGREL20
},
111 {BFD_RELOC_CR16_GLOB_DAT
, R_CR16_GLOB_DAT
}
114 static reloc_howto_type cr16_elf_howto_table
[] =
116 HOWTO (R_CR16_NONE
, /* type */
120 FALSE
, /* pc_relative */
122 complain_overflow_dont
, /* complain_on_overflow */
123 bfd_elf_generic_reloc
, /* special_function */
124 "R_CR16_NONE", /* name */
125 FALSE
, /* partial_inplace */
128 FALSE
), /* pcrel_offset */
130 HOWTO (R_CR16_NUM8
, /* type */
134 FALSE
, /* pc_relative */
136 complain_overflow_bitfield
,/* complain_on_overflow */
137 bfd_elf_generic_reloc
, /* special_function */
138 "R_CR16_NUM8", /* name */
139 FALSE
, /* partial_inplace */
142 FALSE
), /* pcrel_offset */
144 HOWTO (R_CR16_NUM16
, /* type */
148 FALSE
, /* pc_relative */
150 complain_overflow_bitfield
,/* complain_on_overflow */
151 bfd_elf_generic_reloc
, /* special_function */
152 "R_CR16_NUM16", /* name */
153 FALSE
, /* partial_inplace */
155 0xffff, /* dst_mask */
156 FALSE
), /* pcrel_offset */
158 HOWTO (R_CR16_NUM32
, /* type */
162 FALSE
, /* pc_relative */
164 complain_overflow_bitfield
,/* complain_on_overflow */
165 bfd_elf_generic_reloc
, /* special_function */
166 "R_CR16_NUM32", /* name */
167 FALSE
, /* partial_inplace */
169 0xffffffff, /* dst_mask */
170 FALSE
), /* pcrel_offset */
172 HOWTO (R_CR16_NUM32a
, /* type */
176 FALSE
, /* pc_relative */
178 complain_overflow_bitfield
,/* complain_on_overflow */
179 bfd_elf_generic_reloc
, /* special_function */
180 "R_CR16_NUM32a", /* name */
181 FALSE
, /* partial_inplace */
183 0xffffffff, /* dst_mask */
184 FALSE
), /* pcrel_offset */
186 HOWTO (R_CR16_REGREL4
, /* type */
190 FALSE
, /* pc_relative */
192 complain_overflow_bitfield
,/* complain_on_overflow */
193 bfd_elf_generic_reloc
, /* special_function */
194 "R_CR16_REGREL4", /* name */
195 FALSE
, /* partial_inplace */
198 FALSE
), /* pcrel_offset */
200 HOWTO (R_CR16_REGREL4a
, /* type */
204 FALSE
, /* pc_relative */
206 complain_overflow_bitfield
,/* complain_on_overflow */
207 bfd_elf_generic_reloc
, /* special_function */
208 "R_CR16_REGREL4a", /* name */
209 FALSE
, /* partial_inplace */
212 FALSE
), /* pcrel_offset */
214 HOWTO (R_CR16_REGREL14
, /* type */
218 FALSE
, /* pc_relative */
220 complain_overflow_bitfield
,/* complain_on_overflow */
221 bfd_elf_generic_reloc
, /* special_function */
222 "R_CR16_REGREL14", /* name */
223 FALSE
, /* partial_inplace */
225 0x3fff, /* dst_mask */
226 FALSE
), /* pcrel_offset */
228 HOWTO (R_CR16_REGREL14a
, /* type */
232 FALSE
, /* pc_relative */
234 complain_overflow_bitfield
,/* complain_on_overflow */
235 bfd_elf_generic_reloc
, /* special_function */
236 "R_CR16_REGREL14a", /* name */
237 FALSE
, /* partial_inplace */
239 0x3fff, /* dst_mask */
240 FALSE
), /* pcrel_offset */
242 HOWTO (R_CR16_REGREL16
, /* type */
246 FALSE
, /* pc_relative */
248 complain_overflow_bitfield
,/* complain_on_overflow */
249 bfd_elf_generic_reloc
, /* special_function */
250 "R_CR16_REGREL16", /* name */
251 FALSE
, /* partial_inplace */
253 0xffff, /* dst_mask */
254 FALSE
), /* pcrel_offset */
256 HOWTO (R_CR16_REGREL20
, /* type */
260 FALSE
, /* pc_relative */
262 complain_overflow_bitfield
,/* complain_on_overflow */
263 bfd_elf_generic_reloc
, /* special_function */
264 "R_CR16_REGREL20", /* name */
265 FALSE
, /* partial_inplace */
267 0xfffff, /* dst_mask */
268 FALSE
), /* pcrel_offset */
270 HOWTO (R_CR16_REGREL20a
, /* type */
274 FALSE
, /* pc_relative */
276 complain_overflow_bitfield
,/* complain_on_overflow */
277 bfd_elf_generic_reloc
, /* special_function */
278 "R_CR16_REGREL20a", /* name */
279 FALSE
, /* partial_inplace */
281 0xfffff, /* dst_mask */
282 FALSE
), /* pcrel_offset */
284 HOWTO (R_CR16_ABS20
, /* type */
288 FALSE
, /* pc_relative */
290 complain_overflow_bitfield
,/* complain_on_overflow */
291 bfd_elf_generic_reloc
, /* special_function */
292 "R_CR16_ABS20", /* name */
293 FALSE
, /* partial_inplace */
295 0xfffff, /* dst_mask */
296 FALSE
), /* pcrel_offset */
298 HOWTO (R_CR16_ABS24
, /* type */
302 FALSE
, /* pc_relative */
304 complain_overflow_bitfield
,/* complain_on_overflow */
305 bfd_elf_generic_reloc
, /* special_function */
306 "R_CR16_ABS24", /* name */
307 FALSE
, /* partial_inplace */
309 0xffffff, /* dst_mask */
310 FALSE
), /* pcrel_offset */
312 HOWTO (R_CR16_IMM4
, /* type */
316 FALSE
, /* pc_relative */
318 complain_overflow_bitfield
,/* complain_on_overflow */
319 bfd_elf_generic_reloc
, /* special_function */
320 "R_CR16_IMM4", /* name */
321 FALSE
, /* partial_inplace */
324 FALSE
), /* pcrel_offset */
326 HOWTO (R_CR16_IMM8
, /* type */
330 FALSE
, /* pc_relative */
332 complain_overflow_bitfield
,/* complain_on_overflow */
333 bfd_elf_generic_reloc
, /* special_function */
334 "R_CR16_IMM8", /* name */
335 FALSE
, /* partial_inplace */
338 FALSE
), /* pcrel_offset */
340 HOWTO (R_CR16_IMM16
, /* type */
344 FALSE
, /* pc_relative */
346 complain_overflow_bitfield
,/* complain_on_overflow */
347 bfd_elf_generic_reloc
, /* special_function */
348 "R_CR16_IMM16", /* name */
349 FALSE
, /* partial_inplace */
351 0xffff, /* dst_mask */
352 FALSE
), /* pcrel_offset */
354 HOWTO (R_CR16_IMM20
, /* type */
358 FALSE
, /* pc_relative */
360 complain_overflow_bitfield
,/* complain_on_overflow */
361 bfd_elf_generic_reloc
, /* special_function */
362 "R_CR16_IMM20", /* name */
363 FALSE
, /* partial_inplace */
365 0xfffff, /* dst_mask */
366 FALSE
), /* pcrel_offset */
368 HOWTO (R_CR16_IMM24
, /* type */
372 FALSE
, /* pc_relative */
374 complain_overflow_bitfield
,/* complain_on_overflow */
375 bfd_elf_generic_reloc
, /* special_function */
376 "R_CR16_IMM24", /* name */
377 FALSE
, /* partial_inplace */
379 0xffffff, /* dst_mask */
380 FALSE
), /* pcrel_offset */
382 HOWTO (R_CR16_IMM32
, /* type */
386 FALSE
, /* pc_relative */
388 complain_overflow_bitfield
,/* complain_on_overflow */
389 bfd_elf_generic_reloc
, /* special_function */
390 "R_CR16_IMM32", /* name */
391 FALSE
, /* partial_inplace */
393 0xffffffff, /* dst_mask */
394 FALSE
), /* pcrel_offset */
396 HOWTO (R_CR16_IMM32a
, /* type */
400 FALSE
, /* pc_relative */
402 complain_overflow_bitfield
,/* complain_on_overflow */
403 bfd_elf_generic_reloc
, /* special_function */
404 "R_CR16_IMM32a", /* name */
405 FALSE
, /* partial_inplace */
407 0xffffffff, /* dst_mask */
408 FALSE
), /* pcrel_offset */
410 HOWTO (R_CR16_DISP4
, /* type */
412 0, /* size (0 = byte, 1 = short, 2 = long) */
414 TRUE
, /* pc_relative */
416 complain_overflow_unsigned
, /* complain_on_overflow */
417 bfd_elf_generic_reloc
, /* special_function */
418 "R_CR16_DISP4", /* name */
419 FALSE
, /* partial_inplace */
422 FALSE
), /* pcrel_offset */
424 HOWTO (R_CR16_DISP8
, /* type */
426 0, /* size (0 = byte, 1 = short, 2 = long) */
428 TRUE
, /* pc_relative */
430 complain_overflow_unsigned
, /* complain_on_overflow */
431 bfd_elf_generic_reloc
, /* special_function */
432 "R_CR16_DISP8", /* name */
433 FALSE
, /* partial_inplace */
435 0x1ff, /* dst_mask */
436 FALSE
), /* pcrel_offset */
438 HOWTO (R_CR16_DISP16
, /* type */
439 0, /* rightshift REVIITS: To sync with WinIDEA*/
440 1, /* size (0 = byte, 1 = short, 2 = long) */
442 TRUE
, /* pc_relative */
444 complain_overflow_unsigned
, /* complain_on_overflow */
445 bfd_elf_generic_reloc
, /* special_function */
446 "R_CR16_DISP16", /* name */
447 FALSE
, /* partial_inplace */
449 0x1ffff, /* dst_mask */
450 FALSE
), /* pcrel_offset */
451 /* REVISIT: DISP24 should be left-shift by 2 as per ISA doc
452 but its not done, to sync with WinIDEA and CR16 4.1 tools */
453 HOWTO (R_CR16_DISP24
, /* type */
455 2, /* size (0 = byte, 1 = short, 2 = long) */
457 TRUE
, /* pc_relative */
459 complain_overflow_unsigned
, /* complain_on_overflow */
460 bfd_elf_generic_reloc
, /* special_function */
461 "R_CR16_DISP24", /* name */
462 FALSE
, /* partial_inplace */
464 0x1ffffff, /* dst_mask */
465 FALSE
), /* pcrel_offset */
467 HOWTO (R_CR16_DISP24a
, /* type */
469 2, /* size (0 = byte, 1 = short, 2 = long) */
471 TRUE
, /* pc_relative */
473 complain_overflow_unsigned
, /* complain_on_overflow */
474 bfd_elf_generic_reloc
, /* special_function */
475 "R_CR16_DISP24a", /* name */
476 FALSE
, /* partial_inplace */
478 0xffffff, /* dst_mask */
479 FALSE
), /* pcrel_offset */
481 /* An 8 bit switch table entry. This is generated for an expression
482 such as ``.byte L1 - L2''. The offset holds the difference
483 between the reloc address and L2. */
484 HOWTO (R_CR16_SWITCH8
, /* type */
486 0, /* size (0 = byte, 1 = short, 2 = long) */
488 FALSE
, /* pc_relative */
490 complain_overflow_unsigned
, /* complain_on_overflow */
491 bfd_elf_generic_reloc
, /* special_function */
492 "R_CR16_SWITCH8", /* name */
493 FALSE
, /* partial_inplace */
496 TRUE
), /* pcrel_offset */
498 /* A 16 bit switch table entry. This is generated for an expression
499 such as ``.word L1 - L2''. The offset holds the difference
500 between the reloc address and L2. */
501 HOWTO (R_CR16_SWITCH16
, /* type */
503 1, /* size (0 = byte, 1 = short, 2 = long) */
505 FALSE
, /* pc_relative */
507 complain_overflow_unsigned
, /* complain_on_overflow */
508 bfd_elf_generic_reloc
, /* special_function */
509 "R_CR16_SWITCH16", /* name */
510 FALSE
, /* partial_inplace */
512 0xffff, /* dst_mask */
513 TRUE
), /* pcrel_offset */
515 /* A 32 bit switch table entry. This is generated for an expression
516 such as ``.long L1 - L2''. The offset holds the difference
517 between the reloc address and L2. */
518 HOWTO (R_CR16_SWITCH32
, /* type */
520 2, /* size (0 = byte, 1 = short, 2 = long) */
522 FALSE
, /* pc_relative */
524 complain_overflow_unsigned
, /* complain_on_overflow */
525 bfd_elf_generic_reloc
, /* special_function */
526 "R_CR16_SWITCH32", /* name */
527 FALSE
, /* partial_inplace */
529 0xffffffff, /* dst_mask */
530 TRUE
), /* pcrel_offset */
532 HOWTO (R_CR16_GOT_REGREL20
, /* type */
536 FALSE
, /* pc_relative */
538 complain_overflow_bitfield
,/* complain_on_overflow */
539 bfd_elf_generic_reloc
, /* special_function */
540 "R_CR16_GOT_REGREL20", /* name */
541 TRUE
, /* partial_inplace */
543 0xfffff, /* dst_mask */
544 FALSE
), /* pcrel_offset */
546 HOWTO (R_CR16_GOTC_REGREL20
, /* type */
550 FALSE
, /* pc_relative */
552 complain_overflow_bitfield
,/* complain_on_overflow */
553 bfd_elf_generic_reloc
, /* special_function */
554 "R_CR16_GOTC_REGREL20", /* name */
555 TRUE
, /* partial_inplace */
557 0xfffff, /* dst_mask */
558 FALSE
), /* pcrel_offset */
560 HOWTO (R_CR16_GLOB_DAT
, /* type */
562 2, /* size (0 = byte, 1 = short, 2 = long) */
564 FALSE
, /* pc_relative */
566 complain_overflow_unsigned
, /* complain_on_overflow */
567 bfd_elf_generic_reloc
, /* special_function */
568 "R_CR16_GLOB_DAT", /* name */
569 FALSE
, /* partial_inplace */
571 0xffffffff, /* dst_mask */
572 TRUE
) /* pcrel_offset */
576 /* Create the GOT section. */
579 _bfd_cr16_elf_create_got_section (bfd
* abfd
, struct bfd_link_info
* info
)
583 struct elf_link_hash_entry
* h
;
584 const struct elf_backend_data
* bed
= get_elf_backend_data (abfd
);
587 /* This function may be called more than once. */
588 if (bfd_get_section_by_name (abfd
, ".got") != NULL
)
591 switch (bed
->s
->arch_size
)
602 bfd_set_error (bfd_error_bad_value
);
606 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
607 | SEC_LINKER_CREATED
);
609 s
= bfd_make_section_with_flags (abfd
, ".got", flags
);
611 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
614 if (bed
->want_got_plt
)
616 s
= bfd_make_section_with_flags (abfd
, ".got.plt", flags
);
618 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
622 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
623 (or .got.plt) section. We don't do this in the linker script
624 because we don't want to define the symbol if we are not creating
625 a global offset table. */
626 h
= _bfd_elf_define_linkage_sym (abfd
, info
, s
, "_GLOBAL_OFFSET_TABLE_");
627 elf_hash_table (info
)->hgot
= h
;
631 /* The first bit of the global offset table is the header. */
632 s
->size
+= bed
->got_header_size
;
638 /* Retrieve a howto ptr using a BFD reloc_code. */
640 static reloc_howto_type
*
641 elf_cr16_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
642 bfd_reloc_code_real_type code
)
646 for (i
= 0; i
< R_CR16_MAX
; i
++)
647 if (code
== cr16_reloc_map
[i
].bfd_reloc_enum
)
648 return &cr16_elf_howto_table
[cr16_reloc_map
[i
].cr16_reloc_type
];
650 _bfd_error_handler ("Unsupported CR16 relocation type: 0x%x\n", code
);
654 static reloc_howto_type
*
655 elf_cr16_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
660 for (i
= 0; ARRAY_SIZE (cr16_elf_howto_table
); i
++)
661 if (cr16_elf_howto_table
[i
].name
!= NULL
662 && strcasecmp (cr16_elf_howto_table
[i
].name
, r_name
) == 0)
663 return cr16_elf_howto_table
+ i
;
668 /* Retrieve a howto ptr using an internal relocation entry. */
671 elf_cr16_info_to_howto (bfd
*abfd ATTRIBUTE_UNUSED
, arelent
*cache_ptr
,
672 Elf_Internal_Rela
*dst
)
674 unsigned int r_type
= ELF32_R_TYPE (dst
->r_info
);
676 BFD_ASSERT (r_type
< (unsigned int) R_CR16_MAX
);
677 cache_ptr
->howto
= cr16_elf_howto_table
+ r_type
;
680 /* Look through the relocs for a section during the first phase.
681 Since we don't do .gots or .plts, we just need to consider the
682 virtual table relocs for gc. */
685 cr16_elf_check_relocs (bfd
*abfd
, struct bfd_link_info
*info
, asection
*sec
,
686 const Elf_Internal_Rela
*relocs
)
688 Elf_Internal_Shdr
*symtab_hdr
;
689 Elf_Internal_Sym
* isymbuf
= NULL
;
690 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
691 const Elf_Internal_Rela
*rel
;
692 const Elf_Internal_Rela
*rel_end
;
694 bfd_vma
* local_got_offsets
;
700 bfd_boolean result
= FALSE
;
702 if (info
->relocatable
)
705 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
706 sym_hashes
= elf_sym_hashes (abfd
);
707 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
708 if (!elf_bad_symtab (abfd
))
709 sym_hashes_end
-= symtab_hdr
->sh_info
;
711 dynobj
= elf_hash_table (info
)->dynobj
;
712 local_got_offsets
= elf_local_got_offsets (abfd
);
713 rel_end
= relocs
+ sec
->reloc_count
;
714 for (rel
= relocs
; rel
< rel_end
; rel
++)
716 struct elf_link_hash_entry
*h
;
717 unsigned long r_symndx
;
719 r_symndx
= ELF32_R_SYM (rel
->r_info
);
720 if (r_symndx
< symtab_hdr
->sh_info
)
724 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
725 while (h
->root
.type
== bfd_link_hash_indirect
726 || h
->root
.type
== bfd_link_hash_warning
)
727 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
730 /* Some relocs require a global offset table. */
733 switch (ELF32_R_TYPE (rel
->r_info
))
735 case R_CR16_GOT_REGREL20
:
736 case R_CR16_GOTC_REGREL20
:
737 elf_hash_table (info
)->dynobj
= dynobj
= abfd
;
738 if (! _bfd_cr16_elf_create_got_section (dynobj
, info
))
747 switch (ELF32_R_TYPE (rel
->r_info
))
749 case R_CR16_GOT_REGREL20
:
750 case R_CR16_GOTC_REGREL20
:
751 /* This symbol requires a global offset table entry. */
755 sgot
= bfd_get_section_by_name (dynobj
, ".got");
756 BFD_ASSERT (sgot
!= NULL
);
760 && (h
!= NULL
|| info
->executable
))
762 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
765 srelgot
= bfd_make_section_with_flags (dynobj
,
774 || ! bfd_set_section_alignment (dynobj
, srelgot
, 2))
781 if (h
->got
.offset
!= (bfd_vma
) -1)
782 /* We have already allocated space in the .got. */
785 h
->got
.offset
= sgot
->size
;
787 /* Make sure this symbol is output as a dynamic symbol. */
788 if (h
->dynindx
== -1)
790 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
794 srelgot
->size
+= sizeof (Elf32_External_Rela
);
798 /* This is a global offset table entry for a local
800 if (local_got_offsets
== NULL
)
805 size
= symtab_hdr
->sh_info
* sizeof (bfd_vma
);
806 local_got_offsets
= (bfd_vma
*) bfd_alloc (abfd
, size
);
808 if (local_got_offsets
== NULL
)
811 elf_local_got_offsets (abfd
) = local_got_offsets
;
813 for (i
= 0; i
< symtab_hdr
->sh_info
; i
++)
814 local_got_offsets
[i
] = (bfd_vma
) -1;
817 if (local_got_offsets
[r_symndx
] != (bfd_vma
) -1)
818 /* We have already allocated space in the .got. */
821 local_got_offsets
[r_symndx
] = sgot
->size
;
823 if (info
->executable
)
824 /* If we are generating a shared object, we need to
825 output a R_CR16_RELATIVE reloc so that the dynamic
826 linker can adjust this GOT entry. */
827 srelgot
->size
+= sizeof (Elf32_External_Rela
);
844 /* Perform a relocation as part of a final link. */
846 static bfd_reloc_status_type
847 cr16_elf_final_link_relocate (reloc_howto_type
*howto
,
849 bfd
*output_bfd ATTRIBUTE_UNUSED
,
850 asection
*input_section
,
855 struct elf_link_hash_entry
* h
,
856 unsigned long symndx ATTRIBUTE_UNUSED
,
857 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
858 asection
*sec ATTRIBUTE_UNUSED
,
859 int is_local ATTRIBUTE_UNUSED
)
861 unsigned short r_type
= howto
->type
;
862 bfd_byte
*hit_data
= contents
+ offset
;
863 bfd_vma reloc_bits
, check
, Rvalue1
;
865 bfd_vma
* local_got_offsets
;
867 dynobj
= elf_hash_table (info
)->dynobj
;
868 local_got_offsets
= elf_local_got_offsets (input_bfd
);
882 case R_CR16_REGREL4a
:
883 case R_CR16_REGREL14
:
884 case R_CR16_REGREL14a
:
885 case R_CR16_REGREL16
:
886 case R_CR16_REGREL20
:
887 case R_CR16_REGREL20a
:
888 case R_CR16_GOT_REGREL20
:
889 case R_CR16_GOTC_REGREL20
:
893 /* 'hit_data' is relative to the start of the instruction, not the
894 relocation offset. Advance it to account for the exact offset. */
914 case R_CR16_SWITCH16
:
915 case R_CR16_SWITCH32
:
916 /* We only care about the addend, where the difference between
917 expressions is kept. */
924 if (howto
->pc_relative
)
926 /* Subtract the address of the section containing the location. */
927 Rvalue
-= (input_section
->output_section
->vma
928 + input_section
->output_offset
);
929 /* Subtract the position of the location within the section. */
933 /* Add in supplied addend. */
936 /* Complain if the bitfield overflows, whether it is considered
937 as signed or unsigned. */
938 check
= Rvalue
>> howto
->rightshift
;
940 /* Assumes two's complement. This expression avoids
941 overflow if howto->bitsize is the number of bits in
943 reloc_bits
= (((1 << (howto
->bitsize
- 1)) - 1) << 1) | 1;
945 /* For GOT and GOTC relocs no boundary checks applied. */
946 if (!((r_type
== R_CR16_GOT_REGREL20
)
947 || (r_type
== R_CR16_GOTC_REGREL20
)))
949 if (((bfd_vma
) check
& ~reloc_bits
) != 0
950 && (((bfd_vma
) check
& ~reloc_bits
)
951 != (-(bfd_vma
) 1 & ~reloc_bits
)))
953 /* The above right shift is incorrect for a signed
954 value. See if turning on the upper bits fixes the
956 if (howto
->rightshift
&& (bfd_signed_vma
) Rvalue
< 0)
958 check
|= ((bfd_vma
) - 1
960 >> howto
->rightshift
));
962 if (((bfd_vma
) check
& ~reloc_bits
)
963 != (-(bfd_vma
) 1 & ~reloc_bits
))
964 return bfd_reloc_overflow
;
967 return bfd_reloc_overflow
;
970 /* Drop unwanted bits from the value we are relocating to. */
971 Rvalue
>>= (bfd_vma
) howto
->rightshift
;
973 /* Apply dst_mask to select only relocatable part of the insn. */
974 Rvalue
&= howto
->dst_mask
;
980 if (r_type
== R_CR16_DISP8
)
982 Rvalue1
= bfd_get_16 (input_bfd
, hit_data
);
983 Rvalue
= ((Rvalue1
& 0xf000) | ((Rvalue
<< 4) & 0xf00)
984 | (Rvalue1
& 0x00f0) | (Rvalue
& 0xf));
985 bfd_put_16 (input_bfd
, Rvalue
, hit_data
);
987 else if (r_type
== R_CR16_IMM4
)
989 Rvalue1
= bfd_get_16 (input_bfd
, hit_data
);
990 Rvalue
= (((Rvalue1
& 0xff) << 8) | ((Rvalue
<< 4) & 0xf0)
991 | ((Rvalue1
& 0x0f00) >> 8));
992 bfd_put_16 (input_bfd
, Rvalue
, hit_data
);
994 else if (r_type
== R_CR16_DISP4
)
996 Rvalue1
= bfd_get_16 (input_bfd
, hit_data
);
997 Rvalue
= (Rvalue1
| ((Rvalue
& 0xf) << 4));
998 bfd_put_16 (input_bfd
, Rvalue
, hit_data
);
1002 bfd_put_8 (input_bfd
, (unsigned char) Rvalue
, hit_data
);
1007 if (r_type
== R_CR16_DISP16
)
1009 Rvalue
|= (bfd_get_16 (input_bfd
, hit_data
));
1010 Rvalue
= ((Rvalue
& 0xfffe) | ((Rvalue
>> 16) & 0x1));
1012 if (r_type
== R_CR16_IMM16
)
1014 Rvalue1
= bfd_get_16 (input_bfd
, hit_data
);
1016 /* Add or subtract the offset value. */
1017 if (Rvalue1
& 0x8000)
1018 Rvalue
-= (~Rvalue1
+ 1) & 0xffff;
1022 /* Check for range. */
1023 if ((long) Rvalue
> 0xffff || (long) Rvalue
< 0x0)
1024 return bfd_reloc_overflow
;
1027 bfd_put_16 (input_bfd
, Rvalue
, hit_data
);
1031 if ((r_type
== R_CR16_ABS20
) || (r_type
== R_CR16_IMM20
))
1033 Rvalue1
= (bfd_get_16 (input_bfd
, hit_data
+ 2)
1034 | (((bfd_get_16 (input_bfd
, hit_data
) & 0xf) <<16)));
1036 /* Add or subtract the offset value. */
1037 if (Rvalue1
& 0x80000)
1038 Rvalue
-= (~Rvalue1
+ 1) & 0xfffff;
1042 /* Check for range. */
1043 if ((long) Rvalue
> 0xfffff || (long) Rvalue
< 0x0)
1044 return bfd_reloc_overflow
;
1046 bfd_put_16 (input_bfd
, ((bfd_get_16 (input_bfd
, hit_data
) & 0xfff0)
1047 | ((Rvalue
>> 16) & 0xf)), hit_data
);
1048 bfd_put_16 (input_bfd
, (Rvalue
) & 0xffff, hit_data
+ 2);
1050 else if (r_type
== R_CR16_GOT_REGREL20
)
1052 asection
* sgot
= bfd_get_section_by_name (dynobj
, ".got");
1058 off
= h
->got
.offset
;
1059 BFD_ASSERT (off
!= (bfd_vma
) -1);
1061 if (! elf_hash_table (info
)->dynamic_sections_created
1062 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1063 /* This is actually a static link, or it is a
1064 -Bsymbolic link and the symbol is defined
1065 locally, or the symbol was forced to be local
1066 because of a version file. We must initialize
1067 this entry in the global offset table.
1068 When doing a dynamic link, we create a .rela.got
1069 relocation entry to initialize the value. This
1070 is done in the finish_dynamic_symbol routine. */
1071 bfd_put_32 (output_bfd
, Rvalue
, sgot
->contents
+ off
);
1073 Rvalue
= sgot
->output_offset
+ off
;
1079 off
= elf_local_got_offsets (input_bfd
)[symndx
];
1080 bfd_put_32 (output_bfd
,Rvalue
, sgot
->contents
+ off
);
1082 Rvalue
= sgot
->output_offset
+ off
;
1087 /* REVISIT: if ((long) Rvalue > 0xffffff ||
1088 (long) Rvalue < -0x800000). */
1089 if ((long) Rvalue
> 0xffffff || (long) Rvalue
< 0)
1090 return bfd_reloc_overflow
;
1093 bfd_put_16 (input_bfd
, (bfd_get_16 (input_bfd
, hit_data
))
1094 | (((Rvalue
>> 16) & 0xf) << 8), hit_data
);
1095 bfd_put_16 (input_bfd
, (Rvalue
) & 0xffff, hit_data
+ 2);
1098 else if (r_type
== R_CR16_GOTC_REGREL20
)
1101 sgot
= bfd_get_section_by_name (dynobj
, ".got");
1107 off
= h
->got
.offset
;
1108 BFD_ASSERT (off
!= (bfd_vma
) -1);
1110 Rvalue
>>=1; /* For code symbols. */
1112 if (! elf_hash_table (info
)->dynamic_sections_created
1113 || SYMBOL_REFERENCES_LOCAL (info
, h
))
1114 /* This is actually a static link, or it is a
1115 -Bsymbolic link and the symbol is defined
1116 locally, or the symbol was forced to be local
1117 because of a version file. We must initialize
1118 this entry in the global offset table.
1119 When doing a dynamic link, we create a .rela.got
1120 relocation entry to initialize the value. This
1121 is done in the finish_dynamic_symbol routine. */
1122 bfd_put_32 (output_bfd
, Rvalue
, sgot
->contents
+ off
);
1124 Rvalue
= sgot
->output_offset
+ off
;
1130 off
= elf_local_got_offsets (input_bfd
)[symndx
];
1132 bfd_put_32 (output_bfd
,Rvalue
, sgot
->contents
+ off
);
1133 Rvalue
= sgot
->output_offset
+ off
;
1138 /* Check if any value in DISP. */
1139 Rvalue1
=((bfd_get_32 (input_bfd
, hit_data
) >>16)
1140 | (((bfd_get_32 (input_bfd
, hit_data
) & 0xfff) >> 8) <<16));
1142 /* Add or subtract the offset value. */
1143 if (Rvalue1
& 0x80000)
1144 Rvalue
-= (~Rvalue1
+ 1) & 0xfffff;
1148 /* Check for range. */
1149 /* REVISIT: if ((long) Rvalue > 0xffffff
1150 || (long) Rvalue < -0x800000). */
1151 if ((long) Rvalue
> 0xffffff || (long) Rvalue
< 0)
1152 return bfd_reloc_overflow
;
1154 bfd_put_16 (input_bfd
, (bfd_get_16 (input_bfd
, hit_data
))
1155 | (((Rvalue
>> 16) & 0xf) << 8), hit_data
);
1156 bfd_put_16 (input_bfd
, (Rvalue
) & 0xffff, hit_data
+ 2);
1160 if (r_type
== R_CR16_ABS24
)
1162 Rvalue1
= ((bfd_get_32 (input_bfd
, hit_data
) >> 16)
1163 | (((bfd_get_32 (input_bfd
, hit_data
) & 0xfff) >> 8) <<16)
1164 | (((bfd_get_32 (input_bfd
, hit_data
) & 0xf) <<20)));
1166 /* Add or subtract the offset value. */
1167 if (Rvalue1
& 0x800000)
1168 Rvalue
-= (~Rvalue1
+ 1) & 0xffffff;
1172 /* Check for Range. */
1173 if ((long) Rvalue
> 0xffffff || (long) Rvalue
< 0x0)
1174 return bfd_reloc_overflow
;
1176 Rvalue
= ((((Rvalue
>> 20) & 0xf) | (((Rvalue
>> 16) & 0xf)<<8)
1177 | (bfd_get_32 (input_bfd
, hit_data
) & 0xf0f0))
1178 | ((Rvalue
& 0xffff) << 16));
1180 else if (r_type
== R_CR16_DISP24
)
1182 Rvalue
= ((((Rvalue
>> 20)& 0xf) | (((Rvalue
>>16) & 0xf)<<8)
1183 | (bfd_get_16 (input_bfd
, hit_data
)))
1184 | (((Rvalue
& 0xfffe) | ((Rvalue
>> 24) & 0x1)) << 16));
1186 else if ((r_type
== R_CR16_IMM32
) || (r_type
== R_CR16_IMM32a
))
1188 Rvalue1
=((((bfd_get_32 (input_bfd
, hit_data
)) >> 16) &0xffff)
1189 | (((bfd_get_32 (input_bfd
, hit_data
)) &0xffff)) << 16);
1191 /* Add or subtract the offset value. */
1192 if (Rvalue1
& 0x80000000)
1193 Rvalue
-= (~Rvalue1
+ 1) & 0xffffffff;
1197 /* Check for range. */
1198 if (Rvalue
> 0xffffffff || (long) Rvalue
< 0x0)
1199 return bfd_reloc_overflow
;
1201 Rvalue
= (((Rvalue
>> 16)& 0xffff) | (Rvalue
& 0xffff) << 16);
1203 else if (r_type
== R_CR16_DISP24a
)
1205 Rvalue
= (((Rvalue
& 0xfffffe) | (Rvalue
>> 23)));
1206 Rvalue
= ((Rvalue
>> 16) & 0xff) | ((Rvalue
& 0xffff) << 16)
1207 | (bfd_get_32 (input_bfd
, hit_data
));
1209 else if ((r_type
== R_CR16_REGREL20
)
1210 || (r_type
== R_CR16_REGREL20a
))
1212 Rvalue1
= ((bfd_get_32 (input_bfd
, hit_data
) >> 16)
1213 | (((bfd_get_32 (input_bfd
, hit_data
) & 0xfff) >> 8) <<16));
1214 /* Add or subtract the offset value. */
1215 if (Rvalue1
& 0x80000)
1216 Rvalue
-= (~Rvalue1
+ 1) & 0xfffff;
1220 /* Check for range. */
1221 if ((long) Rvalue
> 0xfffff || (long) Rvalue
< 0x0)
1222 return bfd_reloc_overflow
;
1224 Rvalue
= (((((Rvalue
>> 20)& 0xf) | (((Rvalue
>>16) & 0xf)<<8)
1225 | ((Rvalue
& 0xffff) << 16)))
1226 | (bfd_get_32 (input_bfd
, hit_data
) & 0xf0ff));
1229 else if (r_type
== R_CR16_NUM32
)
1231 Rvalue1
= (bfd_get_32 (input_bfd
, hit_data
));
1233 /* Add or subtract the offset value */
1234 if (Rvalue1
& 0x80000000)
1235 Rvalue
-= (~Rvalue1
+ 1) & 0xffffffff;
1239 /* Check for Ranga */
1240 if (Rvalue
> 0xffffffff)
1241 return bfd_reloc_overflow
;
1244 bfd_put_32 (input_bfd
, Rvalue
, hit_data
);
1249 return bfd_reloc_notsupported
;
1252 return bfd_reloc_ok
;
1255 /* Delete some bytes from a section while relaxing. */
1258 elf32_cr16_relax_delete_bytes (struct bfd_link_info
*link_info
, bfd
*abfd
,
1259 asection
*sec
, bfd_vma addr
, int count
)
1261 Elf_Internal_Shdr
*symtab_hdr
;
1262 unsigned int sec_shndx
;
1264 Elf_Internal_Rela
*irel
, *irelend
;
1265 Elf_Internal_Rela
*irelalign
;
1267 Elf_Internal_Sym
*isym
;
1268 Elf_Internal_Sym
*isymend
;
1269 struct elf_link_hash_entry
**sym_hashes
;
1270 struct elf_link_hash_entry
**end_hashes
;
1271 struct elf_link_hash_entry
**start_hashes
;
1272 unsigned int symcount
;
1274 sec_shndx
= _bfd_elf_section_from_bfd_section (abfd
, sec
);
1276 contents
= elf_section_data (sec
)->this_hdr
.contents
;
1278 /* The deletion must stop at the next ALIGN reloc for an aligment
1279 power larger than the number of bytes we are deleting. */
1283 irel
= elf_section_data (sec
)->relocs
;
1284 irelend
= irel
+ sec
->reloc_count
;
1286 /* Actually delete the bytes. */
1287 memmove (contents
+ addr
, contents
+ addr
+ count
,
1288 (size_t) (toaddr
- addr
- count
));
1291 /* Adjust all the relocs. */
1292 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
1293 /* Get the new reloc address. */
1294 if ((irel
->r_offset
> addr
&& irel
->r_offset
< toaddr
))
1295 irel
->r_offset
-= count
;
1297 /* Adjust the local symbols defined in this section. */
1298 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1299 isym
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
1300 for (isymend
= isym
+ symtab_hdr
->sh_info
; isym
< isymend
; isym
++)
1302 if (isym
->st_shndx
== sec_shndx
1303 && isym
->st_value
> addr
1304 && isym
->st_value
< toaddr
)
1306 /* Adjust the addend of SWITCH relocations in this section,
1307 which reference this local symbol. */
1309 for (irel
= elf_section_data (sec
)->relocs
; irel
< irelend
; irel
++)
1311 unsigned long r_symndx
;
1312 Elf_Internal_Sym
*rsym
;
1313 bfd_vma addsym
, subsym
;
1315 /* Skip if not a SWITCH relocation. */
1316 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_SWITCH8
1317 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_SWITCH16
1318 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_SWITCH32
)
1321 r_symndx
= ELF32_R_SYM (irel
->r_info
);
1322 rsym
= (Elf_Internal_Sym
*) symtab_hdr
->contents
+ r_symndx
;
1324 /* Skip if not the local adjusted symbol. */
1328 addsym
= isym
->st_value
;
1329 subsym
= addsym
- irel
->r_addend
;
1331 /* Fix the addend only when -->> (addsym > addr >= subsym). */
1333 irel
->r_addend
-= count
;
1339 isym
->st_value
-= count
;
1343 /* Now adjust the global symbols defined in this section. */
1344 symcount
= (symtab_hdr
->sh_size
/ sizeof (Elf32_External_Sym
)
1345 - symtab_hdr
->sh_info
);
1346 sym_hashes
= start_hashes
= elf_sym_hashes (abfd
);
1347 end_hashes
= sym_hashes
+ symcount
;
1349 for (; sym_hashes
< end_hashes
; sym_hashes
++)
1351 struct elf_link_hash_entry
*sym_hash
= *sym_hashes
;
1353 /* The '--wrap SYMBOL' option is causing a pain when the object file,
1354 containing the definition of __wrap_SYMBOL, includes a direct
1355 call to SYMBOL as well. Since both __wrap_SYMBOL and SYMBOL reference
1356 the same symbol (which is __wrap_SYMBOL), but still exist as two
1357 different symbols in 'sym_hashes', we don't want to adjust
1358 the global symbol __wrap_SYMBOL twice.
1359 This check is only relevant when symbols are being wrapped. */
1360 if (link_info
->wrap_hash
!= NULL
)
1362 struct elf_link_hash_entry
**cur_sym_hashes
;
1364 /* Loop only over the symbols whom been already checked. */
1365 for (cur_sym_hashes
= start_hashes
; cur_sym_hashes
< sym_hashes
;
1367 /* If the current symbol is identical to 'sym_hash', that means
1368 the symbol was already adjusted (or at least checked). */
1369 if (*cur_sym_hashes
== sym_hash
)
1372 /* Don't adjust the symbol again. */
1373 if (cur_sym_hashes
< sym_hashes
)
1377 if ((sym_hash
->root
.type
== bfd_link_hash_defined
1378 || sym_hash
->root
.type
== bfd_link_hash_defweak
)
1379 && sym_hash
->root
.u
.def
.section
== sec
1380 && sym_hash
->root
.u
.def
.value
> addr
1381 && sym_hash
->root
.u
.def
.value
< toaddr
)
1382 sym_hash
->root
.u
.def
.value
-= count
;
1388 /* Relocate a CR16 ELF section. */
1391 elf32_cr16_relocate_section (bfd
*output_bfd
, struct bfd_link_info
*info
,
1392 bfd
*input_bfd
, asection
*input_section
,
1393 bfd_byte
*contents
, Elf_Internal_Rela
*relocs
,
1394 Elf_Internal_Sym
*local_syms
,
1395 asection
**local_sections
)
1397 Elf_Internal_Shdr
*symtab_hdr
;
1398 struct elf_link_hash_entry
**sym_hashes
;
1399 Elf_Internal_Rela
*rel
, *relend
;
1401 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1402 sym_hashes
= elf_sym_hashes (input_bfd
);
1405 relend
= relocs
+ input_section
->reloc_count
;
1406 for (; rel
< relend
; rel
++)
1409 reloc_howto_type
*howto
;
1410 unsigned long r_symndx
;
1411 Elf_Internal_Sym
*sym
;
1413 struct elf_link_hash_entry
*h
;
1415 bfd_reloc_status_type r
;
1417 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1418 r_type
= ELF32_R_TYPE (rel
->r_info
);
1419 howto
= cr16_elf_howto_table
+ (r_type
);
1424 if (r_symndx
< symtab_hdr
->sh_info
)
1426 sym
= local_syms
+ r_symndx
;
1427 sec
= local_sections
[r_symndx
];
1428 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
1432 bfd_boolean unresolved_reloc
, warned
;
1434 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
1435 r_symndx
, symtab_hdr
, sym_hashes
,
1437 unresolved_reloc
, warned
);
1440 if (sec
!= NULL
&& elf_discarded_section (sec
))
1442 /* For relocs against symbols from removed linkonce sections,
1443 or sections discarded by a linker script, we just want the
1444 section contents zeroed. Avoid any special processing. */
1445 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
1451 if (info
->relocatable
)
1454 r
= cr16_elf_final_link_relocate (howto
, input_bfd
, output_bfd
,
1456 contents
, rel
->r_offset
,
1457 relocation
, rel
->r_addend
,
1458 (struct elf_link_hash_entry
*) h
,
1460 info
, sec
, h
== NULL
);
1462 if (r
!= bfd_reloc_ok
)
1465 const char *msg
= NULL
;
1468 name
= h
->root
.root
.string
;
1471 name
= (bfd_elf_string_from_elf_section
1472 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
1473 if (name
== NULL
|| *name
== '\0')
1474 name
= bfd_section_name (input_bfd
, sec
);
1479 case bfd_reloc_overflow
:
1480 if (!((*info
->callbacks
->reloc_overflow
)
1481 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
1482 (bfd_vma
) 0, input_bfd
, input_section
,
1487 case bfd_reloc_undefined
:
1488 if (!((*info
->callbacks
->undefined_symbol
)
1489 (info
, name
, input_bfd
, input_section
,
1490 rel
->r_offset
, TRUE
)))
1494 case bfd_reloc_outofrange
:
1495 msg
= _("internal error: out of range error");
1498 case bfd_reloc_notsupported
:
1499 msg
= _("internal error: unsupported relocation error");
1502 case bfd_reloc_dangerous
:
1503 msg
= _("internal error: dangerous error");
1507 msg
= _("internal error: unknown error");
1511 if (!((*info
->callbacks
->warning
)
1512 (info
, msg
, name
, input_bfd
, input_section
,
1523 /* This is a version of bfd_generic_get_relocated_section_contents
1524 which uses elf32_cr16_relocate_section. */
1527 elf32_cr16_get_relocated_section_contents (bfd
*output_bfd
,
1528 struct bfd_link_info
*link_info
,
1529 struct bfd_link_order
*link_order
,
1531 bfd_boolean relocatable
,
1534 Elf_Internal_Shdr
*symtab_hdr
;
1535 asection
*input_section
= link_order
->u
.indirect
.section
;
1536 bfd
*input_bfd
= input_section
->owner
;
1537 asection
**sections
= NULL
;
1538 Elf_Internal_Rela
*internal_relocs
= NULL
;
1539 Elf_Internal_Sym
*isymbuf
= NULL
;
1541 /* We only need to handle the case of relaxing, or of having a
1542 particular set of section contents, specially. */
1544 || elf_section_data (input_section
)->this_hdr
.contents
== NULL
)
1545 return bfd_generic_get_relocated_section_contents (output_bfd
, link_info
,
1550 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
1552 memcpy (data
, elf_section_data (input_section
)->this_hdr
.contents
,
1553 (size_t) input_section
->size
);
1555 if ((input_section
->flags
& SEC_RELOC
) != 0
1556 && input_section
->reloc_count
> 0)
1558 Elf_Internal_Sym
*isym
;
1559 Elf_Internal_Sym
*isymend
;
1563 internal_relocs
= _bfd_elf_link_read_relocs (input_bfd
, input_section
,
1565 if (internal_relocs
== NULL
)
1568 if (symtab_hdr
->sh_info
!= 0)
1570 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
1571 if (isymbuf
== NULL
)
1572 isymbuf
= bfd_elf_get_elf_syms (input_bfd
, symtab_hdr
,
1573 symtab_hdr
->sh_info
, 0,
1575 if (isymbuf
== NULL
)
1579 amt
= symtab_hdr
->sh_info
;
1580 amt
*= sizeof (asection
*);
1581 sections
= bfd_malloc (amt
);
1582 if (sections
== NULL
&& amt
!= 0)
1585 isymend
= isymbuf
+ symtab_hdr
->sh_info
;
1586 for (isym
= isymbuf
, secpp
= sections
; isym
< isymend
; ++isym
, ++secpp
)
1590 if (isym
->st_shndx
== SHN_UNDEF
)
1591 isec
= bfd_und_section_ptr
;
1592 else if (isym
->st_shndx
== SHN_ABS
)
1593 isec
= bfd_abs_section_ptr
;
1594 else if (isym
->st_shndx
== SHN_COMMON
)
1595 isec
= bfd_com_section_ptr
;
1597 isec
= bfd_section_from_elf_index (input_bfd
, isym
->st_shndx
);
1602 if (! elf32_cr16_relocate_section (output_bfd
, link_info
, input_bfd
,
1603 input_section
, data
, internal_relocs
,
1607 if (sections
!= NULL
)
1610 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
1612 if (elf_section_data (input_section
)->relocs
!= internal_relocs
)
1613 free (internal_relocs
);
1619 if (sections
!= NULL
)
1622 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
1624 if (internal_relocs
!= NULL
1625 && elf_section_data (input_section
)->relocs
!= internal_relocs
)
1626 free (internal_relocs
);
1630 /* Assorted hash table functions. */
1632 /* Initialize an entry in the link hash table. */
1634 /* Create an entry in an CR16 ELF linker hash table. */
1636 static struct bfd_hash_entry
*
1637 elf32_cr16_link_hash_newfunc (struct bfd_hash_entry
*entry
,
1638 struct bfd_hash_table
*table
,
1641 struct elf32_cr16_link_hash_entry
*ret
=
1642 (struct elf32_cr16_link_hash_entry
*) entry
;
1644 /* Allocate the structure if it has not already been allocated by a
1646 if (ret
== (struct elf32_cr16_link_hash_entry
*) NULL
)
1647 ret
= ((struct elf32_cr16_link_hash_entry
*)
1648 bfd_hash_allocate (table
,
1649 sizeof (struct elf32_cr16_link_hash_entry
)));
1650 if (ret
== (struct elf32_cr16_link_hash_entry
*) NULL
)
1651 return (struct bfd_hash_entry
*) ret
;
1653 /* Call the allocation method of the superclass. */
1654 ret
= ((struct elf32_cr16_link_hash_entry
*)
1655 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
1657 if (ret
!= (struct elf32_cr16_link_hash_entry
*) NULL
)
1659 ret
->direct_calls
= 0;
1660 ret
->stack_size
= 0;
1662 ret
->movm_stack_size
= 0;
1667 return (struct bfd_hash_entry
*) ret
;
1670 /* Create an cr16 ELF linker hash table. */
1672 static struct bfd_link_hash_table
*
1673 elf32_cr16_link_hash_table_create (bfd
*abfd
)
1675 struct elf_link_hash_table
*ret
;
1676 bfd_size_type amt
= sizeof (struct elf_link_hash_table
);
1678 ret
= (struct elf_link_hash_table
*) bfd_malloc (amt
);
1679 if (ret
== (struct elf_link_hash_table
*) NULL
)
1682 if (!_bfd_elf_link_hash_table_init (ret
, abfd
,
1683 elf32_cr16_link_hash_newfunc
,
1684 sizeof (struct elf32_cr16_link_hash_entry
),
1694 /* Free an cr16 ELF linker hash table. */
1697 elf32_cr16_link_hash_table_free (struct bfd_link_hash_table
*hash
)
1699 struct elf_link_hash_table
*ret
1700 = (struct elf_link_hash_table
*) hash
;
1702 _bfd_generic_link_hash_table_free
1703 ((struct bfd_link_hash_table
*) ret
);
1706 static unsigned long
1707 elf_cr16_mach (flagword flags
)
1713 return bfd_mach_cr16
;
1717 /* The final processing done just before writing out a CR16 ELF object
1718 file. This gets the CR16 architecture right based on the machine
1722 _bfd_cr16_elf_final_write_processing (bfd
*abfd
,
1723 bfd_boolean linker ATTRIBUTE_UNUSED
)
1726 switch (bfd_get_mach (abfd
))
1735 elf_elfheader (abfd
)->e_flags
|= val
;
1740 _bfd_cr16_elf_object_p (bfd
*abfd
)
1742 bfd_default_set_arch_mach (abfd
, bfd_arch_cr16
,
1743 elf_cr16_mach (elf_elfheader (abfd
)->e_flags
));
1747 /* Merge backend specific data from an object file to the output
1748 object file when linking. */
1751 _bfd_cr16_elf_merge_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
1753 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
1754 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
1757 if (bfd_get_arch (obfd
) == bfd_get_arch (ibfd
)
1758 && bfd_get_mach (obfd
) < bfd_get_mach (ibfd
))
1760 if (! bfd_set_arch_mach (obfd
, bfd_get_arch (ibfd
),
1761 bfd_get_mach (ibfd
)))
1769 /* This function handles relaxing for the CR16.
1771 There's quite a few relaxing opportunites available on the CR16:
1773 * bcond:24 -> bcond:16 1 byte
1774 * bcond:16 -> bcond:8 1 byte
1775 * arithmetic imm32 -> arithmetic imm20 12 bits
1776 * arithmetic imm20/imm16 -> arithmetic imm4 12/16 bits
1778 Symbol- and reloc-reading infrastructure copied from elf-m10200.c. */
1781 elf32_cr16_relax_section (bfd
*abfd
, asection
*sec
,
1782 struct bfd_link_info
*link_info
, bfd_boolean
*again
)
1784 Elf_Internal_Shdr
*symtab_hdr
;
1785 Elf_Internal_Rela
*internal_relocs
;
1786 Elf_Internal_Rela
*irel
, *irelend
;
1787 bfd_byte
*contents
= NULL
;
1788 Elf_Internal_Sym
*isymbuf
= NULL
;
1790 /* Assume nothing changes. */
1793 /* We don't have to do anything for a relocatable link, if
1794 this section does not have relocs, or if this is not a
1796 if (link_info
->relocatable
1797 || (sec
->flags
& SEC_RELOC
) == 0
1798 || sec
->reloc_count
== 0
1799 || (sec
->flags
& SEC_CODE
) == 0)
1802 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1804 /* Get a copy of the native relocations. */
1805 internal_relocs
= _bfd_elf_link_read_relocs (abfd
, sec
, NULL
, NULL
,
1806 link_info
->keep_memory
);
1807 if (internal_relocs
== NULL
)
1810 /* Walk through them looking for relaxing opportunities. */
1811 irelend
= internal_relocs
+ sec
->reloc_count
;
1812 for (irel
= internal_relocs
; irel
< irelend
; irel
++)
1816 /* If this isn't something that can be relaxed, then ignore
1818 if (ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_DISP16
1819 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_DISP24
1820 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_IMM32
1821 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_IMM20
1822 && ELF32_R_TYPE (irel
->r_info
) != (int) R_CR16_IMM16
)
1825 /* Get the section contents if we haven't done so already. */
1826 if (contents
== NULL
)
1828 /* Get cached copy if it exists. */
1829 if (elf_section_data (sec
)->this_hdr
.contents
!= NULL
)
1830 contents
= elf_section_data (sec
)->this_hdr
.contents
;
1831 /* Go get them off disk. */
1832 else if (!bfd_malloc_and_get_section (abfd
, sec
, &contents
))
1836 /* Read this BFD's local symbols if we haven't done so already. */
1837 if (isymbuf
== NULL
&& symtab_hdr
->sh_info
!= 0)
1839 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
1840 if (isymbuf
== NULL
)
1841 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
1842 symtab_hdr
->sh_info
, 0,
1844 if (isymbuf
== NULL
)
1848 /* Get the value of the symbol referred to by the reloc. */
1849 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
1851 /* A local symbol. */
1852 Elf_Internal_Sym
*isym
;
1855 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
1856 if (isym
->st_shndx
== SHN_UNDEF
)
1857 sym_sec
= bfd_und_section_ptr
;
1858 else if (isym
->st_shndx
== SHN_ABS
)
1859 sym_sec
= bfd_abs_section_ptr
;
1860 else if (isym
->st_shndx
== SHN_COMMON
)
1861 sym_sec
= bfd_com_section_ptr
;
1863 sym_sec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
1864 symval
= (isym
->st_value
1865 + sym_sec
->output_section
->vma
1866 + sym_sec
->output_offset
);
1871 struct elf_link_hash_entry
*h
;
1873 /* An external symbol. */
1874 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
1875 h
= elf_sym_hashes (abfd
)[indx
];
1876 BFD_ASSERT (h
!= NULL
);
1878 if (h
->root
.type
!= bfd_link_hash_defined
1879 && h
->root
.type
!= bfd_link_hash_defweak
)
1880 /* This appears to be a reference to an undefined
1881 symbol. Just ignore it--it will be caught by the
1882 regular reloc processing. */
1885 symval
= (h
->root
.u
.def
.value
1886 + h
->root
.u
.def
.section
->output_section
->vma
1887 + h
->root
.u
.def
.section
->output_offset
);
1890 /* For simplicity of coding, we are going to modify the section
1891 contents, the section relocs, and the BFD symbol table. We
1892 must tell the rest of the code not to free up this
1893 information. It would be possible to instead create a table
1894 of changes which have to be made, as is done in coff-mips.c;
1895 that would be more work, but would require less memory when
1896 the linker is run. */
1898 /* Try to turn a 24 branch/call into a 16bit relative
1900 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_DISP24
)
1902 bfd_vma value
= symval
;
1904 /* Deal with pc-relative gunk. */
1905 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
1906 value
-= irel
->r_offset
;
1907 value
+= irel
->r_addend
;
1909 /* See if the value will fit in 16 bits, note the high value is
1910 0xfffe + 2 as the target will be two bytes closer if we are
1912 if ((long) value
< 0x10000 && (long) value
> -0x10002)
1916 /* Get the opcode. */
1917 code
= (unsigned int) bfd_get_32 (abfd
, contents
+ irel
->r_offset
);
1919 /* Verify it's a 'bcond' and fix the opcode. */
1920 if ((code
& 0xffff) == 0x0010)
1921 bfd_put_16 (abfd
, 0x1800 | ((0xf & (code
>> 20)) << 4), contents
+ irel
->r_offset
);
1925 /* Note that we've changed the relocs, section contents, etc. */
1926 elf_section_data (sec
)->relocs
= internal_relocs
;
1927 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1928 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
1930 /* Fix the relocation's type. */
1931 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1934 /* Delete two bytes of data. */
1935 if (!elf32_cr16_relax_delete_bytes (link_info
, abfd
, sec
,
1936 irel
->r_offset
+ 2, 2))
1939 /* That will change things, so, we should relax again.
1940 Note that this is not required, and it may be slow. */
1945 /* Try to turn a 16bit pc-relative branch into an
1946 8bit pc-relative branch. */
1947 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_DISP16
)
1949 bfd_vma value
= symval
;
1951 /* Deal with pc-relative gunk. */
1952 value
-= (sec
->output_section
->vma
+ sec
->output_offset
);
1953 value
-= irel
->r_offset
;
1954 value
+= irel
->r_addend
;
1956 /* See if the value will fit in 8 bits, note the high value is
1957 0xfc + 2 as the target will be two bytes closer if we are
1959 /*if ((long) value < 0x1fa && (long) value > -0x100) REVISIT:range */
1960 if ((long) value
< 0xfa && (long) value
> -0x100)
1962 unsigned short code
;
1964 /* Get the opcode. */
1965 code
= (unsigned short) bfd_get_16 (abfd
, contents
+ irel
->r_offset
);
1967 /* Verify it's a 'bcond' and fix the opcode. */
1968 if ((code
& 0xff0f) == 0x1800)
1969 bfd_put_16 (abfd
, (code
& 0xf0f0), contents
+ irel
->r_offset
);
1973 /* Note that we've changed the relocs, section contents, etc. */
1974 elf_section_data (sec
)->relocs
= internal_relocs
;
1975 elf_section_data (sec
)->this_hdr
.contents
= contents
;
1976 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
1978 /* Fix the relocation's type. */
1979 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
1982 /* Delete two bytes of data. */
1983 if (!elf32_cr16_relax_delete_bytes (link_info
, abfd
, sec
,
1984 irel
->r_offset
+ 2, 2))
1987 /* That will change things, so, we should relax again.
1988 Note that this is not required, and it may be slow. */
1993 /* Try to turn a 32-bit IMM address into a 20/16-bit IMM address */
1994 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_IMM32
)
1996 bfd_vma value
= symval
;
1997 unsigned short is_add_mov
= 0;
2000 /* Get the existing value from the mcode */
2001 value1
= ((bfd_get_32 (abfd
, contents
+ irel
->r_offset
+ 2) >> 16)
2002 |(((bfd_get_32 (abfd
, contents
+ irel
->r_offset
+ 2) & 0xffff) << 16)));
2004 /* See if the value will fit in 20 bits. */
2005 if ((long) (value
+ value1
) < 0xfffff && (long) (value
+ value1
) > 0)
2007 unsigned short code
;
2009 /* Get the opcode. */
2010 code
= (unsigned short) bfd_get_16 (abfd
, contents
+ irel
->r_offset
);
2012 /* Verify it's a 'arithmetic ADDD or MOVD instruction'.
2013 For ADDD and MOVD only, convert to IMM32 -> IMM20. */
2015 if (((code
& 0xfff0) == 0x0070) || ((code
& 0xfff0) == 0x0020))
2020 /* Note that we've changed the relocs, section contents,
2022 elf_section_data (sec
)->relocs
= internal_relocs
;
2023 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2024 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2026 /* Fix the opcode. */
2027 if ((code
& 0xfff0) == 0x0070) /* For movd. */
2028 bfd_put_8 (abfd
, 0x05, contents
+ irel
->r_offset
+ 1);
2029 else /* code == 0x0020 for addd. */
2030 bfd_put_8 (abfd
, 0x04, contents
+ irel
->r_offset
+ 1);
2032 bfd_put_8 (abfd
, (code
& 0xf) << 4, contents
+ irel
->r_offset
);
2034 /* If existing value is nagavive adjust approriately
2035 place the 16-20bits (ie 4 bit) in new opcode,
2036 as the 0xffffxxxx, the higher 2 byte values removed. */
2037 if (value1
& 0x80000000)
2038 bfd_put_8 (abfd
, (0x0f | (bfd_get_8(abfd
, contents
+ irel
->r_offset
))), contents
+ irel
->r_offset
);
2040 bfd_put_8 (abfd
, (((value1
>> 16)&0xf) | (bfd_get_8(abfd
, contents
+ irel
->r_offset
))), contents
+ irel
->r_offset
);
2042 /* Fix the relocation's type. */
2043 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2046 /* Delete two bytes of data. */
2047 if (!elf32_cr16_relax_delete_bytes (link_info
, abfd
, sec
,
2048 irel
->r_offset
+ 2, 2))
2051 /* That will change things, so, we should relax again.
2052 Note that this is not required, and it may be slow. */
2057 /* See if the value will fit in 16 bits. */
2059 && ((long)(value
+ value1
) < 0x7fff && (long)(value
+ value1
) > 0))
2061 unsigned short code
;
2063 /* Get the opcode. */
2064 code
= (unsigned short) bfd_get_16 (abfd
, contents
+ irel
->r_offset
);
2066 /* Note that we've changed the relocs, section contents, etc. */
2067 elf_section_data (sec
)->relocs
= internal_relocs
;
2068 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2069 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2071 /* Fix the opcode. */
2072 if ((code
& 0xf0) == 0x70) /* For movd. */
2073 bfd_put_8 (abfd
, 0x54, contents
+ irel
->r_offset
+ 1);
2074 else if ((code
& 0xf0) == 0x20) /* For addd. */
2075 bfd_put_8 (abfd
, 0x60, contents
+ irel
->r_offset
+ 1);
2076 else if ((code
& 0xf0) == 0x90) /* For cmpd. */
2077 bfd_put_8 (abfd
, 0x56, contents
+ irel
->r_offset
+ 1);
2081 bfd_put_8 (abfd
, 0xb0 | (code
& 0xf), contents
+ irel
->r_offset
);
2083 /* If existing value is nagavive adjust approriately
2084 place the 12-16bits (ie 4 bit) in new opcode,
2085 as the 0xfffffxxx, the higher 2 byte values removed. */
2086 if (value1
& 0x80000000)
2087 bfd_put_8 (abfd
, (0x0f | (bfd_get_8(abfd
, contents
+ irel
->r_offset
))), contents
+ irel
->r_offset
);
2089 bfd_put_16 (abfd
, value1
, contents
+ irel
->r_offset
+ 2);
2092 /* Fix the relocation's type. */
2093 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2096 /* Delete two bytes of data. */
2097 if (!elf32_cr16_relax_delete_bytes (link_info
, abfd
, sec
,
2098 irel
->r_offset
+ 2, 2))
2101 /* That will change things, so, we should relax again.
2102 Note that this is not required, and it may be slow. */
2108 /* Try to turn a 16bit immediate address into a 4bit
2109 immediate address. */
2110 if ((ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_IMM20
)
2111 || (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_IMM16
))
2113 bfd_vma value
= symval
;
2116 /* Get the existing value from the mcode */
2117 value1
= ((bfd_get_16 (abfd
, contents
+ irel
->r_offset
+ 2) & 0xffff));
2119 if (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_IMM20
)
2121 value1
|= ((bfd_get_16 (abfd
, contents
+ irel
->r_offset
+ 1) & 0xf000) << 0x4);
2124 /* See if the value will fit in 4 bits. */
2125 if ((((long) (value
+ value1
)) < 0xf)
2126 && (((long) (value
+ value1
)) > 0))
2128 unsigned short code
;
2130 /* Get the opcode. */
2131 code
= (unsigned short) bfd_get_16 (abfd
, contents
+ irel
->r_offset
);
2133 /* Note that we've changed the relocs, section contents, etc. */
2134 elf_section_data (sec
)->relocs
= internal_relocs
;
2135 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2136 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2138 /* Fix the opcode. */
2139 if (((code
& 0x0f00) == 0x0400) || ((code
& 0x0f00) == 0x0500))
2141 if ((code
& 0x0f00) == 0x0400) /* For movd imm20. */
2142 bfd_put_8 (abfd
, 0x60, contents
+ irel
->r_offset
);
2143 else /* For addd imm20. */
2144 bfd_put_8 (abfd
, 0x54, contents
+ irel
->r_offset
);
2145 bfd_put_8 (abfd
, (code
& 0xf0) >> 4, contents
+ irel
->r_offset
+ 1);
2149 if ((code
& 0xfff0) == 0x56b0) /* For cmpd imm16. */
2150 bfd_put_8 (abfd
, 0x56, contents
+ irel
->r_offset
);
2151 else if ((code
& 0xfff0) == 0x54b0) /* For movd imm16. */
2152 bfd_put_8 (abfd
, 0x54, contents
+ irel
->r_offset
);
2153 else if ((code
& 0xfff0) == 0x58b0) /* For movb imm16. */
2154 bfd_put_8 (abfd
, 0x58, contents
+ irel
->r_offset
);
2155 else if ((code
& 0xfff0) == 0x5Ab0) /* For movw imm16. */
2156 bfd_put_8 (abfd
, 0x5A, contents
+ irel
->r_offset
);
2157 else if ((code
& 0xfff0) == 0x60b0) /* For addd imm16. */
2158 bfd_put_8 (abfd
, 0x60, contents
+ irel
->r_offset
);
2159 else if ((code
& 0xfff0) == 0x30b0) /* For addb imm16. */
2160 bfd_put_8 (abfd
, 0x30, contents
+ irel
->r_offset
);
2161 else if ((code
& 0xfff0) == 0x2Cb0) /* For addub imm16. */
2162 bfd_put_8 (abfd
, 0x2C, contents
+ irel
->r_offset
);
2163 else if ((code
& 0xfff0) == 0x32b0) /* For adduw imm16. */
2164 bfd_put_8 (abfd
, 0x32, contents
+ irel
->r_offset
);
2165 else if ((code
& 0xfff0) == 0x38b0) /* For subb imm16. */
2166 bfd_put_8 (abfd
, 0x38, contents
+ irel
->r_offset
);
2167 else if ((code
& 0xfff0) == 0x3Cb0) /* For subcb imm16. */
2168 bfd_put_8 (abfd
, 0x3C, contents
+ irel
->r_offset
);
2169 else if ((code
& 0xfff0) == 0x3Fb0) /* For subcw imm16. */
2170 bfd_put_8 (abfd
, 0x3F, contents
+ irel
->r_offset
);
2171 else if ((code
& 0xfff0) == 0x3Ab0) /* For subw imm16. */
2172 bfd_put_8 (abfd
, 0x3A, contents
+ irel
->r_offset
);
2173 else if ((code
& 0xfff0) == 0x50b0) /* For cmpb imm16. */
2174 bfd_put_8 (abfd
, 0x50, contents
+ irel
->r_offset
);
2175 else if ((code
& 0xfff0) == 0x52b0) /* For cmpw imm16. */
2176 bfd_put_8 (abfd
, 0x52, contents
+ irel
->r_offset
);
2180 bfd_put_8 (abfd
, (code
& 0xf), contents
+ irel
->r_offset
+ 1);
2183 /* Fix the relocation's type. */
2184 irel
->r_info
= ELF32_R_INFO (ELF32_R_SYM (irel
->r_info
),
2187 /* Delete two bytes of data. */
2188 if (!elf32_cr16_relax_delete_bytes (link_info
, abfd
, sec
,
2189 irel
->r_offset
+ 2, 2))
2192 /* That will change things, so, we should relax again.
2193 Note that this is not required, and it may be slow. */
2201 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2203 if (! link_info
->keep_memory
)
2206 /* Cache the symbols for elf_link_input_bfd. */
2207 symtab_hdr
->contents
= (unsigned char *) isymbuf
;
2210 if (contents
!= NULL
2211 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
2213 if (! link_info
->keep_memory
)
2216 /* Cache the section contents for elf_link_input_bfd. */
2217 elf_section_data (sec
)->this_hdr
.contents
= contents
;
2221 if (internal_relocs
!= NULL
2222 && elf_section_data (sec
)->relocs
!= internal_relocs
)
2223 free (internal_relocs
);
2229 && symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2231 if (contents
!= NULL
2232 && elf_section_data (sec
)->this_hdr
.contents
!= contents
)
2234 if (internal_relocs
!= NULL
2235 && elf_section_data (sec
)->relocs
!= internal_relocs
)
2236 free (internal_relocs
);
2242 elf32_cr16_gc_mark_hook (asection
*sec
,
2243 struct bfd_link_info
*info
,
2244 Elf_Internal_Rela
*rel
,
2245 struct elf_link_hash_entry
*h
,
2246 Elf_Internal_Sym
*sym
)
2248 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
2251 /* Update the got entry reference counts for the section being removed. */
2254 elf32_cr16_gc_sweep_hook (bfd
*abfd ATTRIBUTE_UNUSED
,
2255 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
2256 asection
*sec ATTRIBUTE_UNUSED
,
2257 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
)
2259 /* We don't support garbage collection of GOT and PLT relocs yet. */
2263 /* Create dynamic sections when linking against a dynamic object. */
2266 _bfd_cr16_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
2270 const struct elf_backend_data
* bed
= get_elf_backend_data (abfd
);
2273 switch (bed
->s
->arch_size
)
2284 bfd_set_error (bfd_error_bad_value
);
2288 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
2289 .rel[a].bss sections. */
2291 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2292 | SEC_LINKER_CREATED
);
2294 s
= bfd_make_section_with_flags (abfd
,
2295 (bed
->default_use_rela_p
2296 ? ".rela.plt" : ".rel.plt"),
2297 flags
| SEC_READONLY
);
2299 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2302 if (! _bfd_cr16_elf_create_got_section (abfd
, info
))
2306 const char * secname
;
2311 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2313 secflags
= bfd_get_section_flags (abfd
, sec
);
2314 if ((secflags
& (SEC_DATA
| SEC_LINKER_CREATED
))
2315 || ((secflags
& SEC_HAS_CONTENTS
) != SEC_HAS_CONTENTS
))
2318 secname
= bfd_get_section_name (abfd
, sec
);
2319 relname
= (char *) bfd_malloc (strlen (secname
) + 6);
2320 strcpy (relname
, ".rela");
2321 strcat (relname
, secname
);
2323 s
= bfd_make_section_with_flags (abfd
, relname
,
2324 flags
| SEC_READONLY
);
2326 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2331 if (bed
->want_dynbss
)
2333 /* The .dynbss section is a place to put symbols which are defined
2334 by dynamic objects, are referenced by regular objects, and are
2335 not functions. We must allocate space for them in the process
2336 image and use a R_*_COPY reloc to tell the dynamic linker to
2337 initialize them at run time. The linker script puts the .dynbss
2338 section into the .bss section of the final image. */
2339 s
= bfd_make_section_with_flags (abfd
, ".dynbss",
2340 SEC_ALLOC
| SEC_LINKER_CREATED
);
2344 /* The .rel[a].bss section holds copy relocs. This section is not
2345 normally needed. We need to create it here, though, so that the
2346 linker will map it to an output section. We can't just create it
2347 only if we need it, because we will not know whether we need it
2348 until we have seen all the input files, and the first time the
2349 main linker code calls BFD after examining all the input files
2350 (size_dynamic_sections) the input sections have already been
2351 mapped to the output sections. If the section turns out not to
2352 be needed, we can discard it later. We will never need this
2353 section when generating a shared object, since they do not use
2355 if (! info
->executable
)
2357 s
= bfd_make_section_with_flags (abfd
,
2358 (bed
->default_use_rela_p
2359 ? ".rela.bss" : ".rel.bss"),
2360 flags
| SEC_READONLY
);
2362 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2370 /* Adjust a symbol defined by a dynamic object and referenced by a
2371 regular object. The current definition is in some section of the
2372 dynamic object, but we're not including those sections. We have to
2373 change the definition to something the rest of the link can
2377 _bfd_cr16_elf_adjust_dynamic_symbol (struct bfd_link_info
* info
,
2378 struct elf_link_hash_entry
* h
)
2383 dynobj
= elf_hash_table (info
)->dynobj
;
2385 /* Make sure we know what is going on here. */
2386 BFD_ASSERT (dynobj
!= NULL
2388 || h
->u
.weakdef
!= NULL
2391 && !h
->def_regular
)));
2393 /* If this is a function, put it in the procedure linkage table. We
2394 will fill in the contents of the procedure linkage table later,
2395 when we know the address of the .got section. */
2396 if (h
->type
== STT_FUNC
2399 if (! info
->executable
2403 /* This case can occur if we saw a PLT reloc in an input
2404 file, but the symbol was never referred to by a dynamic
2405 object. In such a case, we don't actually need to build
2406 a procedure linkage table, and we can just do a REL32
2408 BFD_ASSERT (h
->needs_plt
);
2412 /* Make sure this symbol is output as a dynamic symbol. */
2413 if (h
->dynindx
== -1)
2415 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2419 /* We also need to make an entry in the .got.plt section, which
2420 will be placed in the .got section by the linker script. */
2422 s
= bfd_get_section_by_name (dynobj
, ".got.plt");
2423 BFD_ASSERT (s
!= NULL
);
2426 /* We also need to make an entry in the .rela.plt section. */
2428 s
= bfd_get_section_by_name (dynobj
, ".rela.plt");
2429 BFD_ASSERT (s
!= NULL
);
2430 s
->size
+= sizeof (Elf32_External_Rela
);
2435 /* If this is a weak symbol, and there is a real definition, the
2436 processor independent code will have arranged for us to see the
2437 real definition first, and we can just use the same value. */
2438 if (h
->u
.weakdef
!= NULL
)
2440 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
2441 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
2442 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
2443 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
2447 /* This is a reference to a symbol defined by a dynamic object which
2448 is not a function. */
2450 /* If we are creating a shared library, we must presume that the
2451 only references to the symbol are via the global offset table.
2452 For such cases we need not do anything here; the relocations will
2453 be handled correctly by relocate_section. */
2454 if (info
->executable
)
2457 /* If there are no references to this symbol that do not use the
2458 GOT, we don't need to generate a copy reloc. */
2459 if (!h
->non_got_ref
)
2464 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
2465 h
->root
.root
.string
);
2469 /* We must allocate the symbol in our .dynbss section, which will
2470 become part of the .bss section of the executable. There will be
2471 an entry for this symbol in the .dynsym section. The dynamic
2472 object will contain position independent code, so all references
2473 from the dynamic object to this symbol will go through the global
2474 offset table. The dynamic linker will use the .dynsym entry to
2475 determine the address it must put in the global offset table, so
2476 both the dynamic object and the regular object will refer to the
2477 same memory location for the variable. */
2479 s
= bfd_get_section_by_name (dynobj
, ".dynbss");
2480 BFD_ASSERT (s
!= NULL
);
2482 /* We must generate a R_CR16_COPY reloc to tell the dynamic linker to
2483 copy the initial value out of the dynamic object and into the
2484 runtime process image. We need to remember the offset into the
2485 .rela.bss section we are going to use. */
2486 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
2490 srel
= bfd_get_section_by_name (dynobj
, ".rela.bss");
2491 BFD_ASSERT (srel
!= NULL
);
2492 srel
->size
+= sizeof (Elf32_External_Rela
);
2496 return _bfd_elf_adjust_dynamic_copy (h
, s
);
2499 /* Set the sizes of the dynamic sections. */
2502 _bfd_cr16_elf_size_dynamic_sections (bfd
* output_bfd
,
2503 struct bfd_link_info
* info
)
2509 bfd_boolean reltext
;
2511 dynobj
= elf_hash_table (info
)->dynobj
;
2512 BFD_ASSERT (dynobj
!= NULL
);
2514 if (elf_hash_table (info
)->dynamic_sections_created
)
2516 /* Set the contents of the .interp section to the interpreter. */
2517 if (info
->executable
)
2520 s
= bfd_get_section_by_name (dynobj
, ".interp");
2521 BFD_ASSERT (s
!= NULL
);
2522 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
2523 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
2529 /* We may have created entries in the .rela.got section.
2530 However, if we are not creating the dynamic sections, we will
2531 not actually use these entries. Reset the size of .rela.got,
2532 which will cause it to get stripped from the output file
2534 s
= bfd_get_section_by_name (dynobj
, ".rela.got");
2539 /* The check_relocs and adjust_dynamic_symbol entry points have
2540 determined the sizes of the various dynamic sections. Allocate
2545 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
2549 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
2552 /* It's OK to base decisions on the section name, because none
2553 of the dynobj section names depend upon the input files. */
2554 name
= bfd_get_section_name (dynobj
, s
);
2556 if (strcmp (name
, ".plt") == 0)
2558 /* Remember whether there is a PLT. */
2561 else if (CONST_STRNEQ (name
, ".rela"))
2567 /* Remember whether there are any reloc sections other
2569 if (strcmp (name
, ".rela.plt") != 0)
2571 const char * outname
;
2575 /* If this relocation section applies to a read only
2576 section, then we probably need a DT_TEXTREL
2577 entry. The entries in the .rela.plt section
2578 really apply to the .got section, which we
2579 created ourselves and so know is not readonly. */
2580 outname
= bfd_get_section_name (output_bfd
,
2582 target
= bfd_get_section_by_name (output_bfd
, outname
+ 5);
2584 && (target
->flags
& SEC_READONLY
) != 0
2585 && (target
->flags
& SEC_ALLOC
) != 0)
2589 /* We use the reloc_count field as a counter if we need
2590 to copy relocs into the output file. */
2594 else if (! CONST_STRNEQ (name
, ".got")
2595 && strcmp (name
, ".dynbss") != 0)
2596 /* It's not one of our sections, so don't allocate space. */
2601 /* If we don't need this section, strip it from the
2602 output file. This is mostly to handle .rela.bss and
2603 .rela.plt. We must create both sections in
2604 create_dynamic_sections, because they must be created
2605 before the linker maps input sections to output
2606 sections. The linker does that before
2607 adjust_dynamic_symbol is called, and it is that
2608 function which decides whether anything needs to go
2609 into these sections. */
2610 s
->flags
|= SEC_EXCLUDE
;
2614 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
2617 /* Allocate memory for the section contents. We use bfd_zalloc
2618 here in case unused entries are not reclaimed before the
2619 section's contents are written out. This should not happen,
2620 but this way if it does, we get a R_CR16_NONE reloc
2621 instead of garbage. */
2622 s
->contents
= (bfd_byte
*) bfd_zalloc (dynobj
, s
->size
);
2623 if (s
->contents
== NULL
)
2627 if (elf_hash_table (info
)->dynamic_sections_created
)
2629 /* Add some entries to the .dynamic section. We fill in the
2630 values later, in _bfd_cr16_elf_finish_dynamic_sections,
2631 but we must add the entries now so that we get the correct
2632 size for the .dynamic section. The DT_DEBUG entry is filled
2633 in by the dynamic linker and used by the debugger. */
2634 if (! info
->executable
)
2636 if (!_bfd_elf_add_dynamic_entry (info
, DT_DEBUG
, 0))
2642 if (!_bfd_elf_add_dynamic_entry (info
, DT_PLTGOT
, 0)
2643 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTRELSZ
, 0)
2644 || !_bfd_elf_add_dynamic_entry (info
, DT_PLTREL
, DT_RELA
)
2645 || !_bfd_elf_add_dynamic_entry (info
, DT_JMPREL
, 0))
2651 if (!_bfd_elf_add_dynamic_entry (info
, DT_RELA
, 0)
2652 || !_bfd_elf_add_dynamic_entry (info
, DT_RELASZ
, 0)
2653 || !_bfd_elf_add_dynamic_entry (info
, DT_RELAENT
,
2654 sizeof (Elf32_External_Rela
)))
2660 if (!_bfd_elf_add_dynamic_entry (info
, DT_TEXTREL
, 0))
2668 /* Finish up dynamic symbol handling. We set the contents of various
2669 dynamic sections here. */
2672 _bfd_cr16_elf_finish_dynamic_symbol (bfd
* output_bfd
,
2673 struct bfd_link_info
* info
,
2674 struct elf_link_hash_entry
* h
,
2675 Elf_Internal_Sym
* sym
)
2679 dynobj
= elf_hash_table (info
)->dynobj
;
2681 if (h
->got
.offset
!= (bfd_vma
) -1)
2685 Elf_Internal_Rela rel
;
2687 /* This symbol has an entry in the global offset table. Set it up. */
2689 sgot
= bfd_get_section_by_name (dynobj
, ".got");
2690 srel
= bfd_get_section_by_name (dynobj
, ".rela.got");
2691 BFD_ASSERT (sgot
!= NULL
&& srel
!= NULL
);
2693 rel
.r_offset
= (sgot
->output_section
->vma
2694 + sgot
->output_offset
2695 + (h
->got
.offset
& ~1));
2697 /* If this is a -Bsymbolic link, and the symbol is defined
2698 locally, we just want to emit a RELATIVE reloc. Likewise if
2699 the symbol was forced to be local because of a version file.
2700 The entry in the global offset table will already have been
2701 initialized in the relocate_section function. */
2702 if (info
->executable
2703 && (info
->symbolic
|| h
->dynindx
== -1)
2706 rel
.r_info
= ELF32_R_INFO (0, R_CR16_GOT_REGREL20
);
2707 rel
.r_addend
= (h
->root
.u
.def
.value
2708 + h
->root
.u
.def
.section
->output_section
->vma
2709 + h
->root
.u
.def
.section
->output_offset
);
2713 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
2714 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_CR16_GOT_REGREL20
);
2718 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
2719 (bfd_byte
*) ((Elf32_External_Rela
*) srel
->contents
2720 + srel
->reloc_count
));
2721 ++ srel
->reloc_count
;
2727 Elf_Internal_Rela rel
;
2729 /* This symbol needs a copy reloc. Set it up. */
2730 BFD_ASSERT (h
->dynindx
!= -1
2731 && (h
->root
.type
== bfd_link_hash_defined
2732 || h
->root
.type
== bfd_link_hash_defweak
));
2734 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
2736 BFD_ASSERT (s
!= NULL
);
2738 rel
.r_offset
= (h
->root
.u
.def
.value
2739 + h
->root
.u
.def
.section
->output_section
->vma
2740 + h
->root
.u
.def
.section
->output_offset
);
2741 rel
.r_info
= ELF32_R_INFO (h
->dynindx
, R_CR16_GOT_REGREL20
);
2743 bfd_elf32_swap_reloca_out (output_bfd
, &rel
,
2744 (bfd_byte
*) ((Elf32_External_Rela
*) s
->contents
2749 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
2750 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
2751 || h
== elf_hash_table (info
)->hgot
)
2752 sym
->st_shndx
= SHN_ABS
;
2757 /* Finish up the dynamic sections. */
2760 _bfd_cr16_elf_finish_dynamic_sections (bfd
* output_bfd
,
2761 struct bfd_link_info
* info
)
2767 dynobj
= elf_hash_table (info
)->dynobj
;
2769 sgot
= bfd_get_section_by_name (dynobj
, ".got.plt");
2770 BFD_ASSERT (sgot
!= NULL
);
2771 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
2773 if (elf_hash_table (info
)->dynamic_sections_created
)
2775 Elf32_External_Dyn
* dyncon
;
2776 Elf32_External_Dyn
* dynconend
;
2778 BFD_ASSERT (sdyn
!= NULL
);
2780 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
2781 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
2783 for (; dyncon
< dynconend
; dyncon
++)
2785 Elf_Internal_Dyn dyn
;
2789 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
2803 s
= bfd_get_section_by_name (output_bfd
, name
);
2804 BFD_ASSERT (s
!= NULL
);
2805 dyn
.d_un
.d_ptr
= s
->vma
;
2806 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
2810 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
2811 BFD_ASSERT (s
!= NULL
);
2812 dyn
.d_un
.d_val
= s
->size
;
2813 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
2817 /* My reading of the SVR4 ABI indicates that the
2818 procedure linkage table relocs (DT_JMPREL) should be
2819 included in the overall relocs (DT_RELA). This is
2820 what Solaris does. However, UnixWare can not handle
2821 that case. Therefore, we override the DT_RELASZ entry
2822 here to make it not include the JMPREL relocs. Since
2823 the linker script arranges for .rela.plt to follow all
2824 other relocation sections, we don't have to worry
2825 about changing the DT_RELA entry. */
2826 s
= bfd_get_section_by_name (output_bfd
, ".rela.plt");
2828 dyn
.d_un
.d_val
-= s
->size
;
2829 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
2836 /* Fill in the first three entries in the global offset table. */
2840 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
2842 bfd_put_32 (output_bfd
,
2843 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
2847 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
2852 /* Given a .data.rel section and a .emreloc in-memory section, store
2853 relocation information into the .emreloc section which can be
2854 used at runtime to relocate the section. This is called by the
2855 linker when the --embedded-relocs switch is used. This is called
2856 after the add_symbols entry point has been called for all the
2857 objects, and before the final_link entry point is called. */
2860 bfd_cr16_elf32_create_embedded_relocs (bfd
*abfd
,
2861 struct bfd_link_info
*info
,
2866 Elf_Internal_Shdr
*symtab_hdr
;
2867 Elf_Internal_Sym
*isymbuf
= NULL
;
2868 Elf_Internal_Rela
*internal_relocs
= NULL
;
2869 Elf_Internal_Rela
*irel
, *irelend
;
2873 BFD_ASSERT (! info
->relocatable
);
2877 if (datasec
->reloc_count
== 0)
2880 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
2882 /* Get a copy of the native relocations. */
2883 internal_relocs
= (_bfd_elf_link_read_relocs
2884 (abfd
, datasec
, NULL
, NULL
, info
->keep_memory
));
2885 if (internal_relocs
== NULL
)
2888 amt
= (bfd_size_type
) datasec
->reloc_count
* 8;
2889 relsec
->contents
= (bfd_byte
*) bfd_alloc (abfd
, amt
);
2890 if (relsec
->contents
== NULL
)
2893 p
= relsec
->contents
;
2895 irelend
= internal_relocs
+ datasec
->reloc_count
;
2896 for (irel
= internal_relocs
; irel
< irelend
; irel
++, p
+= 8)
2898 asection
*targetsec
;
2900 /* We are going to write a four byte longword into the runtime
2901 reloc section. The longword will be the address in the data
2902 section which must be relocated. It is followed by the name
2903 of the target section NUL-padded or truncated to 8
2906 /* We can only relocate absolute longword relocs at run time. */
2907 if (!((ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_NUM32a
)
2908 || (ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_NUM32
)))
2910 *errmsg
= _("unsupported reloc type");
2911 bfd_set_error (bfd_error_bad_value
);
2915 /* Get the target section referred to by the reloc. */
2916 if (ELF32_R_SYM (irel
->r_info
) < symtab_hdr
->sh_info
)
2918 /* A local symbol. */
2919 Elf_Internal_Sym
*isym
;
2921 /* Read this BFD's local symbols if we haven't done so already. */
2922 if (isymbuf
== NULL
)
2924 isymbuf
= (Elf_Internal_Sym
*) symtab_hdr
->contents
;
2925 if (isymbuf
== NULL
)
2926 isymbuf
= bfd_elf_get_elf_syms (abfd
, symtab_hdr
,
2927 symtab_hdr
->sh_info
, 0,
2929 if (isymbuf
== NULL
)
2933 isym
= isymbuf
+ ELF32_R_SYM (irel
->r_info
);
2934 targetsec
= bfd_section_from_elf_index (abfd
, isym
->st_shndx
);
2939 struct elf_link_hash_entry
*h
;
2941 /* An external symbol. */
2942 indx
= ELF32_R_SYM (irel
->r_info
) - symtab_hdr
->sh_info
;
2943 h
= elf_sym_hashes (abfd
)[indx
];
2944 BFD_ASSERT (h
!= NULL
);
2945 if (h
->root
.type
== bfd_link_hash_defined
2946 || h
->root
.type
== bfd_link_hash_defweak
)
2947 targetsec
= h
->root
.u
.def
.section
;
2952 bfd_put_32 (abfd
, irel
->r_offset
+ datasec
->output_offset
, p
);
2953 memset (p
+ 4, 0, 4);
2954 if ((ELF32_R_TYPE (irel
->r_info
) == (int) R_CR16_NUM32a
)
2955 && (targetsec
!= NULL
) )
2956 strncpy ((char *) p
+ 4, targetsec
->output_section
->name
, 4);
2959 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2961 if (internal_relocs
!= NULL
2962 && elf_section_data (datasec
)->relocs
!= internal_relocs
)
2963 free (internal_relocs
);
2967 if (isymbuf
!= NULL
&& symtab_hdr
->contents
!= (unsigned char *) isymbuf
)
2969 if (internal_relocs
!= NULL
2970 && elf_section_data (datasec
)->relocs
!= internal_relocs
)
2971 free (internal_relocs
);
2976 /* Classify relocation types, such that combreloc can sort them
2979 static enum elf_reloc_type_class
2980 _bfd_cr16_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
2982 switch ((int) ELF32_R_TYPE (rela
->r_info
))
2984 case R_CR16_GOT_REGREL20
:
2985 case R_CR16_GOTC_REGREL20
:
2986 return reloc_class_relative
;
2988 return reloc_class_normal
;
2992 /* Definitions for setting CR16 target vector. */
2993 #define TARGET_LITTLE_SYM bfd_elf32_cr16_vec
2994 #define TARGET_LITTLE_NAME "elf32-cr16"
2995 #define ELF_ARCH bfd_arch_cr16
2996 #define ELF_MACHINE_CODE EM_CR16
2997 #define ELF_MACHINE_ALT1 EM_CR16_OLD
2998 #define ELF_MAXPAGESIZE 0x1
2999 #define elf_symbol_leading_char '_'
3001 #define bfd_elf32_bfd_reloc_type_lookup elf_cr16_reloc_type_lookup
3002 #define bfd_elf32_bfd_reloc_name_lookup elf_cr16_reloc_name_lookup
3003 #define elf_info_to_howto elf_cr16_info_to_howto
3004 #define elf_info_to_howto_rel 0
3005 #define elf_backend_relocate_section elf32_cr16_relocate_section
3006 #define bfd_elf32_bfd_relax_section elf32_cr16_relax_section
3007 #define bfd_elf32_bfd_get_relocated_section_contents \
3008 elf32_cr16_get_relocated_section_contents
3009 #define elf_backend_gc_mark_hook elf32_cr16_gc_mark_hook
3010 #define elf_backend_gc_sweep_hook elf32_cr16_gc_sweep_hook
3011 #define elf_backend_can_gc_sections 1
3012 #define elf_backend_rela_normal 1
3013 #define elf_backend_check_relocs cr16_elf_check_relocs
3014 /* So we can set bits in e_flags. */
3015 #define elf_backend_final_write_processing \
3016 _bfd_cr16_elf_final_write_processing
3017 #define elf_backend_object_p _bfd_cr16_elf_object_p
3019 #define bfd_elf32_bfd_merge_private_bfd_data \
3020 _bfd_cr16_elf_merge_private_bfd_data
3023 #define bfd_elf32_bfd_link_hash_table_create \
3024 elf32_cr16_link_hash_table_create
3025 #define bfd_elf32_bfd_link_hash_table_free \
3026 elf32_cr16_link_hash_table_free
3028 #define elf_backend_create_dynamic_sections \
3029 _bfd_cr16_elf_create_dynamic_sections
3030 #define elf_backend_adjust_dynamic_symbol \
3031 _bfd_cr16_elf_adjust_dynamic_symbol
3032 #define elf_backend_size_dynamic_sections \
3033 _bfd_cr16_elf_size_dynamic_sections
3034 #define elf_backend_omit_section_dynsym \
3035 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
3036 #define elf_backend_finish_dynamic_symbol \
3037 _bfd_cr16_elf_finish_dynamic_symbol
3038 #define elf_backend_finish_dynamic_sections \
3039 _bfd_cr16_elf_finish_dynamic_sections
3041 #define elf_backend_reloc_type_class _bfd_cr16_elf_reloc_type_class
3044 #define elf_backend_want_got_plt 1
3045 #define elf_backend_plt_readonly 1
3046 #define elf_backend_want_plt_sym 0
3047 #define elf_backend_got_header_size 12
3049 #include "elf32-target.h"