1 /* BFD back-end for National Semiconductor's CR16 ELF
2 Copyright 2007, 2008, 2009 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 {
36 /* The basic elf link hash table entry. */
37 struct elf_link_hash_entry root;
39 /* For function symbols, the number of times this function is
40 called directly (ie by name). */
41 unsigned int direct_calls;
43 /* For function symbols, the size of this function's stack
44 (if <= 255 bytes). We stuff this into "call" instructions
45 to this target when it's valid and profitable to do so.
47 This does not include stack allocated by movm! */
48 unsigned char stack_size;
50 /* For function symbols, arguments (if any) for movm instruction
51 in the prologue. We stuff this value into "call" instructions
52 to the target when it's valid and profitable to do so. */
53 unsigned char movm_args;
55 /* For function symbols, the amount of stack space that would be allocated
56 by the movm instruction. This is redundant with movm_args, but we
57 add it to the hash table to avoid computing it over and over. */
58 unsigned char movm_stack_size;
60 /* Used to mark functions which have had redundant parts of their
62 #define CR16_DELETED_PROLOGUE_BYTES 0x1
65 /* Calculated value. */
69 /* We derive a hash table from the main elf linker hash table so
70 we can store state variables and a secondary hash table without
71 resorting to global variables. */
72 struct elf32_cr16_link_hash_table {
73 /* The main hash table. */
74 struct elf_link_hash_table root;
76 /* A hash table for static functions. We could derive a new hash table
77 instead of using the full elf32_cr16_link_hash_table if we wanted
78 to save some memory. */
79 struct elf32_cr16_link_hash_table *static_hash_table;
81 /* Random linker state flags. */
82 #define CR16_HASH_ENTRIES_INITIALIZED 0x1
86 /* For CR16 linker hash table. */
88 /* Get the CR16 ELF linker hash table from a link_info structure. */
90 #define elf32_cr16_hash_table(p) \
91 ((struct elf32_cr16_link_hash_table *) ((p)->hash))
93 #define elf32_cr16_link_hash_traverse(table, func, info) \
94 (elf_link_hash_traverse \
96 (bfd_boolean (*) ((struct elf_link_hash_entry *, void *))) (func), (info)))
98 /* cr16_reloc_map array maps BFD relocation enum into a CRGAS relocation type. */
100 struct cr16_reloc_map
102 bfd_reloc_code_real_type bfd_reloc_enum; /* BFD relocation enum. */
103 unsigned short cr16_reloc_type; /* CR16 relocation type. */
106 static const struct cr16_reloc_map cr16_reloc_map[R_CR16_MAX] =
108 {BFD_RELOC_NONE, R_CR16_NONE},
109 {BFD_RELOC_CR16_NUM8, R_CR16_NUM8},
110 {BFD_RELOC_CR16_NUM16, R_CR16_NUM16},
111 {BFD_RELOC_CR16_NUM32, R_CR16_NUM32},
112 {BFD_RELOC_CR16_NUM32a, R_CR16_NUM32a},
113 {BFD_RELOC_CR16_REGREL4, R_CR16_REGREL4},
114 {BFD_RELOC_CR16_REGREL4a, R_CR16_REGREL4a},
115 {BFD_RELOC_CR16_REGREL14, R_CR16_REGREL14},
116 {BFD_RELOC_CR16_REGREL14a, R_CR16_REGREL14a},
117 {BFD_RELOC_CR16_REGREL16, R_CR16_REGREL16},
118 {BFD_RELOC_CR16_REGREL20, R_CR16_REGREL20},
119 {BFD_RELOC_CR16_REGREL20a, R_CR16_REGREL20a},
120 {BFD_RELOC_CR16_ABS20, R_CR16_ABS20},
121 {BFD_RELOC_CR16_ABS24, R_CR16_ABS24},
122 {BFD_RELOC_CR16_IMM4, R_CR16_IMM4},
123 {BFD_RELOC_CR16_IMM8, R_CR16_IMM8},
124 {BFD_RELOC_CR16_IMM16, R_CR16_IMM16},
125 {BFD_RELOC_CR16_IMM20, R_CR16_IMM20},
126 {BFD_RELOC_CR16_IMM24, R_CR16_IMM24},
127 {BFD_RELOC_CR16_IMM32, R_CR16_IMM32},
128 {BFD_RELOC_CR16_IMM32a, R_CR16_IMM32a},
129 {BFD_RELOC_CR16_DISP4, R_CR16_DISP4},
130 {BFD_RELOC_CR16_DISP8, R_CR16_DISP8},
131 {BFD_RELOC_CR16_DISP16, R_CR16_DISP16},
132 {BFD_RELOC_CR16_DISP24, R_CR16_DISP24},
133 {BFD_RELOC_CR16_DISP24a, R_CR16_DISP24a},
134 {BFD_RELOC_CR16_SWITCH8, R_CR16_SWITCH8},
135 {BFD_RELOC_CR16_SWITCH16, R_CR16_SWITCH16},
136 {BFD_RELOC_CR16_SWITCH32, R_CR16_SWITCH32},
137 {BFD_RELOC_CR16_GOT_REGREL20, R_CR16_GOT_REGREL20},
138 {BFD_RELOC_CR16_GOTC_REGREL20, R_CR16_GOTC_REGREL20},
139 {BFD_RELOC_CR16_GLOB_DAT, R_CR16_GLOB_DAT}
142 static reloc_howto_type cr16_elf_howto_table[] =
144 HOWTO (R_CR16_NONE, /* type */
148 FALSE, /* pc_relative */
150 complain_overflow_dont, /* complain_on_overflow */
151 bfd_elf_generic_reloc, /* special_function */
152 "R_CR16_NONE", /* name */
153 FALSE, /* partial_inplace */
156 FALSE), /* pcrel_offset */
158 HOWTO (R_CR16_NUM8, /* type */
162 FALSE, /* pc_relative */
164 complain_overflow_bitfield,/* complain_on_overflow */
165 bfd_elf_generic_reloc, /* special_function */
166 "R_CR16_NUM8", /* name */
167 FALSE, /* partial_inplace */
170 FALSE), /* pcrel_offset */
172 HOWTO (R_CR16_NUM16, /* type */
176 FALSE, /* pc_relative */
178 complain_overflow_bitfield,/* complain_on_overflow */
179 bfd_elf_generic_reloc, /* special_function */
180 "R_CR16_NUM16", /* name */
181 FALSE, /* partial_inplace */
183 0xffff, /* dst_mask */
184 FALSE), /* pcrel_offset */
186 HOWTO (R_CR16_NUM32, /* type */
190 FALSE, /* pc_relative */
192 complain_overflow_bitfield,/* complain_on_overflow */
193 bfd_elf_generic_reloc, /* special_function */
194 "R_CR16_NUM32", /* name */
195 FALSE, /* partial_inplace */
197 0xffffffff, /* dst_mask */
198 FALSE), /* pcrel_offset */
200 HOWTO (R_CR16_NUM32a, /* type */
204 FALSE, /* pc_relative */
206 complain_overflow_bitfield,/* complain_on_overflow */
207 bfd_elf_generic_reloc, /* special_function */
208 "R_CR16_NUM32a", /* name */
209 FALSE, /* partial_inplace */
211 0xffffffff, /* dst_mask */
212 FALSE), /* pcrel_offset */
214 HOWTO (R_CR16_REGREL4, /* type */
218 FALSE, /* pc_relative */
220 complain_overflow_bitfield,/* complain_on_overflow */
221 bfd_elf_generic_reloc, /* special_function */
222 "R_CR16_REGREL4", /* name */
223 FALSE, /* partial_inplace */
226 FALSE), /* pcrel_offset */
228 HOWTO (R_CR16_REGREL4a, /* type */
232 FALSE, /* pc_relative */
234 complain_overflow_bitfield,/* complain_on_overflow */
235 bfd_elf_generic_reloc, /* special_function */
236 "R_CR16_REGREL4a", /* name */
237 FALSE, /* partial_inplace */
240 FALSE), /* pcrel_offset */
242 HOWTO (R_CR16_REGREL14, /* type */
246 FALSE, /* pc_relative */
248 complain_overflow_bitfield,/* complain_on_overflow */
249 bfd_elf_generic_reloc, /* special_function */
250 "R_CR16_REGREL14", /* name */
251 FALSE, /* partial_inplace */
253 0x3fff, /* dst_mask */
254 FALSE), /* pcrel_offset */
256 HOWTO (R_CR16_REGREL14a, /* type */
260 FALSE, /* pc_relative */
262 complain_overflow_bitfield,/* complain_on_overflow */
263 bfd_elf_generic_reloc, /* special_function */
264 "R_CR16_REGREL14a", /* name */
265 FALSE, /* partial_inplace */
267 0x3fff, /* dst_mask */
268 FALSE), /* pcrel_offset */
270 HOWTO (R_CR16_REGREL16, /* type */
274 FALSE, /* pc_relative */
276 complain_overflow_bitfield,/* complain_on_overflow */
277 bfd_elf_generic_reloc, /* special_function */
278 "R_CR16_REGREL16", /* name */
279 FALSE, /* partial_inplace */
281 0xffff, /* dst_mask */
282 FALSE), /* pcrel_offset */
284 HOWTO (R_CR16_REGREL20, /* type */
288 FALSE, /* pc_relative */
290 complain_overflow_bitfield,/* complain_on_overflow */
291 bfd_elf_generic_reloc, /* special_function */
292 "R_CR16_REGREL20", /* name */
293 FALSE, /* partial_inplace */
295 0xfffff, /* dst_mask */
296 FALSE), /* pcrel_offset */
298 HOWTO (R_CR16_REGREL20a, /* type */
302 FALSE, /* pc_relative */
304 complain_overflow_bitfield,/* complain_on_overflow */
305 bfd_elf_generic_reloc, /* special_function */
306 "R_CR16_REGREL20a", /* name */
307 FALSE, /* partial_inplace */
309 0xfffff, /* dst_mask */
310 FALSE), /* pcrel_offset */
312 HOWTO (R_CR16_ABS20, /* type */
316 FALSE, /* pc_relative */
318 complain_overflow_bitfield,/* complain_on_overflow */
319 bfd_elf_generic_reloc, /* special_function */
320 "R_CR16_ABS20", /* name */
321 FALSE, /* partial_inplace */
323 0xfffff, /* dst_mask */
324 FALSE), /* pcrel_offset */
326 HOWTO (R_CR16_ABS24, /* type */
330 FALSE, /* pc_relative */
332 complain_overflow_bitfield,/* complain_on_overflow */
333 bfd_elf_generic_reloc, /* special_function */
334 "R_CR16_ABS24", /* name */
335 FALSE, /* partial_inplace */
337 0xffffff, /* dst_mask */
338 FALSE), /* pcrel_offset */
340 HOWTO (R_CR16_IMM4, /* type */
344 FALSE, /* pc_relative */
346 complain_overflow_bitfield,/* complain_on_overflow */
347 bfd_elf_generic_reloc, /* special_function */
348 "R_CR16_IMM4", /* name */
349 FALSE, /* partial_inplace */
352 FALSE), /* pcrel_offset */
354 HOWTO (R_CR16_IMM8, /* type */
358 FALSE, /* pc_relative */
360 complain_overflow_bitfield,/* complain_on_overflow */
361 bfd_elf_generic_reloc, /* special_function */
362 "R_CR16_IMM8", /* name */
363 FALSE, /* partial_inplace */
366 FALSE), /* pcrel_offset */
368 HOWTO (R_CR16_IMM16, /* type */
372 FALSE, /* pc_relative */
374 complain_overflow_bitfield,/* complain_on_overflow */
375 bfd_elf_generic_reloc, /* special_function */
376 "R_CR16_IMM16", /* name */
377 FALSE, /* partial_inplace */
379 0xffff, /* dst_mask */
380 FALSE), /* pcrel_offset */
382 HOWTO (R_CR16_IMM20, /* type */
386 FALSE, /* pc_relative */
388 complain_overflow_bitfield,/* complain_on_overflow */
389 bfd_elf_generic_reloc, /* special_function */
390 "R_CR16_IMM20", /* name */
391 FALSE, /* partial_inplace */
393 0xfffff, /* dst_mask */
394 FALSE), /* pcrel_offset */
396 HOWTO (R_CR16_IMM24, /* type */
400 FALSE, /* pc_relative */
402 complain_overflow_bitfield,/* complain_on_overflow */
403 bfd_elf_generic_reloc, /* special_function */
404 "R_CR16_IMM24", /* name */
405 FALSE, /* partial_inplace */
407 0xffffff, /* dst_mask */
408 FALSE), /* pcrel_offset */
410 HOWTO (R_CR16_IMM32, /* type */
414 FALSE, /* pc_relative */
416 complain_overflow_bitfield,/* complain_on_overflow */
417 bfd_elf_generic_reloc, /* special_function */
418 "R_CR16_IMM32", /* name */
419 FALSE, /* partial_inplace */
421 0xffffffff, /* dst_mask */
422 FALSE), /* pcrel_offset */
424 HOWTO (R_CR16_IMM32a, /* type */
428 FALSE, /* pc_relative */
430 complain_overflow_bitfield,/* complain_on_overflow */
431 bfd_elf_generic_reloc, /* special_function */
432 "R_CR16_IMM32a", /* name */
433 FALSE, /* partial_inplace */
435 0xffffffff, /* dst_mask */
436 FALSE), /* pcrel_offset */
438 HOWTO (R_CR16_DISP4, /* type */
440 0, /* 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_DISP4", /* name */
447 FALSE, /* partial_inplace */
450 FALSE), /* pcrel_offset */
452 HOWTO (R_CR16_DISP8, /* type */
454 0, /* size (0 = byte, 1 = short, 2 = long) */
456 TRUE, /* pc_relative */
458 complain_overflow_unsigned, /* complain_on_overflow */
459 bfd_elf_generic_reloc, /* special_function */
460 "R_CR16_DISP8", /* name */
461 FALSE, /* partial_inplace */
463 0x1ff, /* dst_mask */
464 FALSE), /* pcrel_offset */
466 HOWTO (R_CR16_DISP16, /* type */
467 0, /* rightshift REVIITS: To sync with WinIDEA*/
468 1, /* size (0 = byte, 1 = short, 2 = long) */
470 TRUE, /* pc_relative */
472 complain_overflow_unsigned, /* complain_on_overflow */
473 bfd_elf_generic_reloc, /* special_function */
474 "R_CR16_DISP16", /* name */
475 FALSE, /* partial_inplace */
477 0x1ffff, /* dst_mask */
478 FALSE), /* pcrel_offset */
479 /* REVISIT: DISP24 should be left-shift by 2 as per ISA doc
480 but its not done, to sync with WinIDEA and CR16 4.1 tools */
481 HOWTO (R_CR16_DISP24, /* type */
483 2, /* size (0 = byte, 1 = short, 2 = long) */
485 TRUE, /* pc_relative */
487 complain_overflow_unsigned, /* complain_on_overflow */
488 bfd_elf_generic_reloc, /* special_function */
489 "R_CR16_DISP24", /* name */
490 FALSE, /* partial_inplace */
492 0x1ffffff, /* dst_mask */
493 FALSE), /* pcrel_offset */
495 HOWTO (R_CR16_DISP24a, /* type */
497 2, /* size (0 = byte, 1 = short, 2 = long) */
499 TRUE, /* pc_relative */
501 complain_overflow_unsigned, /* complain_on_overflow */
502 bfd_elf_generic_reloc, /* special_function */
503 "R_CR16_DISP24a", /* name */
504 FALSE, /* partial_inplace */
506 0xffffff, /* dst_mask */
507 FALSE), /* pcrel_offset */
509 /* An 8 bit switch table entry. This is generated for an expression
510 such as ``.byte L1 - L2''. The offset holds the difference
511 between the reloc address and L2. */
512 HOWTO (R_CR16_SWITCH8, /* type */
514 0, /* size (0 = byte, 1 = short, 2 = long) */
516 FALSE, /* pc_relative */
518 complain_overflow_unsigned, /* complain_on_overflow */
519 bfd_elf_generic_reloc, /* special_function */
520 "R_CR16_SWITCH8", /* name */
521 FALSE, /* partial_inplace */
524 TRUE), /* pcrel_offset */
526 /* A 16 bit switch table entry. This is generated for an expression
527 such as ``.word L1 - L2''. The offset holds the difference
528 between the reloc address and L2. */
529 HOWTO (R_CR16_SWITCH16, /* type */
531 1, /* size (0 = byte, 1 = short, 2 = long) */
533 FALSE, /* pc_relative */
535 complain_overflow_unsigned, /* complain_on_overflow */
536 bfd_elf_generic_reloc, /* special_function */
537 "R_CR16_SWITCH16", /* name */
538 FALSE, /* partial_inplace */
540 0xffff, /* dst_mask */
541 TRUE), /* pcrel_offset */
543 /* A 32 bit switch table entry. This is generated for an expression
544 such as ``.long L1 - L2''. The offset holds the difference
545 between the reloc address and L2. */
546 HOWTO (R_CR16_SWITCH32, /* type */
548 2, /* size (0 = byte, 1 = short, 2 = long) */
550 FALSE, /* pc_relative */
552 complain_overflow_unsigned, /* complain_on_overflow */
553 bfd_elf_generic_reloc, /* special_function */
554 "R_CR16_SWITCH32", /* name */
555 FALSE, /* partial_inplace */
557 0xffffffff, /* dst_mask */
558 TRUE), /* pcrel_offset */
560 HOWTO (R_CR16_GOT_REGREL20, /* type */
564 FALSE, /* pc_relative */
566 complain_overflow_bitfield,/* complain_on_overflow */
567 bfd_elf_generic_reloc, /* special_function */
568 "R_CR16_GOT_REGREL20", /* name */
569 TRUE, /* partial_inplace */
571 0xfffff, /* dst_mask */
572 FALSE), /* pcrel_offset */
574 HOWTO (R_CR16_GOTC_REGREL20, /* type */
578 FALSE, /* pc_relative */
580 complain_overflow_bitfield,/* complain_on_overflow */
581 bfd_elf_generic_reloc, /* special_function */
582 "R_CR16_GOTC_REGREL20", /* name */
583 TRUE, /* partial_inplace */
585 0xfffff, /* dst_mask */
586 FALSE), /* pcrel_offset */
588 HOWTO (R_CR16_GLOB_DAT, /* type */
590 2, /* size (0 = byte, 1 = short, 2 = long) */
592 FALSE, /* pc_relative */
594 complain_overflow_unsigned, /* complain_on_overflow */
595 bfd_elf_generic_reloc, /* special_function */
596 "R_CR16_GLOB_DAT", /* name */
597 FALSE, /* partial_inplace */
599 0xffffffff, /* dst_mask */
600 TRUE) /* pcrel_offset */
604 /* Create the GOT section. */
607 _bfd_cr16_elf_create_got_section (bfd * abfd, struct bfd_link_info * info)
611 struct elf_link_hash_entry * h;
612 const struct elf_backend_data * bed = get_elf_backend_data (abfd);
615 /* This function may be called more than once. */
616 if (bfd_get_section_by_name (abfd, ".got") != NULL)
619 switch (bed->s->arch_size)
630 bfd_set_error (bfd_error_bad_value);
634 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
635 | SEC_LINKER_CREATED);
637 s = bfd_make_section_with_flags (abfd, ".got", flags);
639 || ! bfd_set_section_alignment (abfd, s, ptralign))
642 if (bed->want_got_plt)
644 s = bfd_make_section_with_flags (abfd, ".got.plt", flags);
646 || ! bfd_set_section_alignment (abfd, s, ptralign))
650 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
651 (or .got.plt) section. We don't do this in the linker script
652 because we don't want to define the symbol if we are not creating
653 a global offset table. */
654 h = _bfd_elf_define_linkage_sym (abfd, info, s, "_GLOBAL_OFFSET_TABLE_");
655 elf_hash_table (info)->hgot = h;
659 /* The first bit of the global offset table is the header. */
660 s->size += bed->got_header_size;
666 /* Retrieve a howto ptr using a BFD reloc_code. */
668 static reloc_howto_type *
669 elf_cr16_reloc_type_lookup (bfd *abfd ATTRIBUTE_UNUSED,
670 bfd_reloc_code_real_type code)
674 for (i = 0; i < R_CR16_MAX; i++)
675 if (code == cr16_reloc_map[i].bfd_reloc_enum)
676 return &cr16_elf_howto_table[cr16_reloc_map[i].cr16_reloc_type];
678 _bfd_error_handler ("Unsupported CR16 relocation type: 0x%x\n", code);
682 static reloc_howto_type *
683 elf_cr16_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
688 for (i = 0; ARRAY_SIZE (cr16_elf_howto_table); i++)
689 if (cr16_elf_howto_table[i].name != NULL
690 && strcasecmp (cr16_elf_howto_table[i].name, r_name) == 0)
691 return cr16_elf_howto_table + i;
696 /* Retrieve a howto ptr using an internal relocation entry. */
699 elf_cr16_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED, arelent *cache_ptr,
700 Elf_Internal_Rela *dst)
702 unsigned int r_type = ELF32_R_TYPE (dst->r_info);
704 BFD_ASSERT (r_type < (unsigned int) R_CR16_MAX);
705 cache_ptr->howto = cr16_elf_howto_table + r_type;
708 /* Look through the relocs for a section during the first phase.
709 Since we don't do .gots or .plts, we just need to consider the
710 virtual table relocs for gc. */
713 cr16_elf_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec,
714 const Elf_Internal_Rela *relocs)
716 Elf_Internal_Shdr *symtab_hdr;
717 Elf_Internal_Sym * isymbuf = NULL;
718 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
719 const Elf_Internal_Rela *rel;
720 const Elf_Internal_Rela *rel_end;
722 bfd_vma * local_got_offsets;
728 bfd_boolean result = FALSE;
730 if (info->relocatable)
733 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
734 sym_hashes = elf_sym_hashes (abfd);
735 sym_hashes_end = sym_hashes + symtab_hdr->sh_size/sizeof (Elf32_External_Sym);
736 if (!elf_bad_symtab (abfd))
737 sym_hashes_end -= symtab_hdr->sh_info;
739 dynobj = elf_hash_table (info)->dynobj;
740 local_got_offsets = elf_local_got_offsets (abfd);
741 rel_end = relocs + sec->reloc_count;
742 for (rel = relocs; rel < rel_end; rel++)
744 struct elf_link_hash_entry *h;
745 unsigned long r_symndx;
747 r_symndx = ELF32_R_SYM (rel->r_info);
748 if (r_symndx < symtab_hdr->sh_info)
752 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
753 while (h->root.type == bfd_link_hash_indirect
754 || h->root.type == bfd_link_hash_warning)
755 h = (struct elf_link_hash_entry *) h->root.u.i.link;
758 /* Some relocs require a global offset table. */
761 switch (ELF32_R_TYPE (rel->r_info))
763 case R_CR16_GOT_REGREL20:
764 case R_CR16_GOTC_REGREL20:
765 elf_hash_table (info)->dynobj = dynobj = abfd;
766 if (! _bfd_cr16_elf_create_got_section (dynobj, info))
775 switch (ELF32_R_TYPE (rel->r_info))
777 case R_CR16_GOT_REGREL20:
778 case R_CR16_GOTC_REGREL20:
779 /* This symbol requires a global offset table entry. */
783 sgot = bfd_get_section_by_name (dynobj, ".got");
784 BFD_ASSERT (sgot != NULL);
788 && (h != NULL || info->executable))
790 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
793 srelgot = bfd_make_section_with_flags (dynobj,
802 || ! bfd_set_section_alignment (dynobj, srelgot, 2))
809 if (h->got.offset != (bfd_vma) -1)
810 /* We have already allocated space in the .got. */
813 h->got.offset = sgot->size;
815 /* Make sure this symbol is output as a dynamic symbol. */
816 if (h->dynindx == -1)
818 if (! bfd_elf_link_record_dynamic_symbol (info, h))
822 srelgot->size += sizeof (Elf32_External_Rela);
826 /* This is a global offset table entry for a local
828 if (local_got_offsets == NULL)
833 size = symtab_hdr->sh_info * sizeof (bfd_vma);
834 local_got_offsets = (bfd_vma *) bfd_alloc (abfd, size);
836 if (local_got_offsets == NULL)
839 elf_local_got_offsets (abfd) = local_got_offsets;
841 for (i = 0; i < symtab_hdr->sh_info; i++)
842 local_got_offsets[i] = (bfd_vma) -1;
845 if (local_got_offsets[r_symndx] != (bfd_vma) -1)
846 /* We have already allocated space in the .got. */
849 local_got_offsets[r_symndx] = sgot->size;
851 if (info->executable)
852 /* If we are generating a shared object, we need to
853 output a R_CR16_RELATIVE reloc so that the dynamic
854 linker can adjust this GOT entry. */
855 srelgot->size += sizeof (Elf32_External_Rela);
872 /* Perform a relocation as part of a final link. */
874 static bfd_reloc_status_type
875 cr16_elf_final_link_relocate (reloc_howto_type *howto,
877 bfd *output_bfd ATTRIBUTE_UNUSED,
878 asection *input_section,
883 struct elf_link_hash_entry * h,
884 unsigned long symndx ATTRIBUTE_UNUSED,
885 struct bfd_link_info *info ATTRIBUTE_UNUSED,
886 asection *sec ATTRIBUTE_UNUSED,
887 int is_local ATTRIBUTE_UNUSED)
889 unsigned short r_type = howto->type;
890 bfd_byte *hit_data = contents + offset;
891 bfd_vma reloc_bits, check, Rvalue1;
893 bfd_vma * local_got_offsets;
895 dynobj = elf_hash_table (info)->dynobj;
896 local_got_offsets = elf_local_got_offsets (input_bfd);
910 case R_CR16_REGREL4a:
911 case R_CR16_REGREL14:
912 case R_CR16_REGREL14a:
913 case R_CR16_REGREL16:
914 case R_CR16_REGREL20:
915 case R_CR16_REGREL20a:
916 case R_CR16_GOT_REGREL20:
917 case R_CR16_GOTC_REGREL20:
921 /* 'hit_data' is relative to the start of the instruction, not the
922 relocation offset. Advance it to account for the exact offset. */
942 case R_CR16_SWITCH16:
943 case R_CR16_SWITCH32:
944 /* We only care about the addend, where the difference between
945 expressions is kept. */
952 if (howto->pc_relative)
954 /* Subtract the address of the section containing the location. */
955 Rvalue -= (input_section->output_section->vma
956 + input_section->output_offset);
957 /* Subtract the position of the location within the section. */
961 /* Add in supplied addend. */
964 /* Complain if the bitfield overflows, whether it is considered
965 as signed or unsigned. */
966 check = Rvalue >> howto->rightshift;
968 /* Assumes two's complement. This expression avoids
969 overflow if howto->bitsize is the number of bits in
971 reloc_bits = (((1 << (howto->bitsize - 1)) - 1) << 1) | 1;
973 /* For GOT and GOTC relocs no boundary checks applied. */
974 if (!((r_type == R_CR16_GOT_REGREL20)
975 || (r_type == R_CR16_GOTC_REGREL20)))
977 if (((bfd_vma) check & ~reloc_bits) != 0
978 && (((bfd_vma) check & ~reloc_bits)
979 != (-(bfd_vma) 1 & ~reloc_bits)))
981 /* The above right shift is incorrect for a signed
982 value. See if turning on the upper bits fixes the
984 if (howto->rightshift && (bfd_signed_vma) Rvalue < 0)
986 check |= ((bfd_vma) - 1
988 >> howto->rightshift));
990 if (((bfd_vma) check & ~reloc_bits)
991 != (-(bfd_vma) 1 & ~reloc_bits))
992 return bfd_reloc_overflow;
995 return bfd_reloc_overflow;
998 /* Drop unwanted bits from the value we are relocating to. */
999 Rvalue >>= (bfd_vma) howto->rightshift;
1001 /* Apply dst_mask to select only relocatable part of the insn. */
1002 Rvalue &= howto->dst_mask;
1005 switch (howto->size)
1008 if (r_type == R_CR16_DISP8)
1010 Rvalue1 = bfd_get_16 (input_bfd, hit_data);
1011 Rvalue = ((Rvalue1 & 0xf000) | ((Rvalue << 4) & 0xf00)
1012 | (Rvalue1 & 0x00f0) | (Rvalue & 0xf));
1013 bfd_put_16 (input_bfd, Rvalue, hit_data);
1015 else if (r_type == R_CR16_IMM4)
1017 Rvalue1 = bfd_get_16 (input_bfd, hit_data);
1018 Rvalue = (((Rvalue1 & 0xff) << 8) | ((Rvalue << 4) & 0xf0)
1019 | ((Rvalue1 & 0x0f00) >> 8));
1020 bfd_put_16 (input_bfd, Rvalue, hit_data);
1022 else if (r_type == R_CR16_DISP4)
1024 Rvalue1 = bfd_get_16 (input_bfd, hit_data);
1025 Rvalue = (Rvalue1 | ((Rvalue & 0xf) << 4));
1026 bfd_put_16 (input_bfd, Rvalue, hit_data);
1030 bfd_put_8 (input_bfd, (unsigned char) Rvalue, hit_data);
1035 if (r_type == R_CR16_DISP16)
1037 Rvalue |= (bfd_get_16 (input_bfd, hit_data));
1038 Rvalue = ((Rvalue & 0xfffe) | ((Rvalue >> 16) & 0x1));
1040 if (r_type == R_CR16_IMM16)
1042 Rvalue1 = bfd_get_16 (input_bfd, hit_data);
1044 /* Add or subtract the offset value. */
1045 if (Rvalue1 & 0x8000)
1046 Rvalue -= (~Rvalue1 + 1) & 0xffff;
1050 /* Check for range. */
1051 if ((long) Rvalue > 0xffff || (long) Rvalue < 0x0)
1052 return bfd_reloc_overflow;
1055 bfd_put_16 (input_bfd, Rvalue, hit_data);
1059 if ((r_type == R_CR16_ABS20) || (r_type == R_CR16_IMM20))
1061 Rvalue1 = (bfd_get_16 (input_bfd, hit_data + 2)
1062 | (((bfd_get_16 (input_bfd, hit_data) & 0xf) <<16)));
1064 /* Add or subtract the offset value. */
1065 if (Rvalue1 & 0x80000)
1066 Rvalue -= (~Rvalue1 + 1) & 0xfffff;
1070 /* Check for range. */
1071 if ((long) Rvalue > 0xfffff || (long) Rvalue < 0x0)
1072 return bfd_reloc_overflow;
1074 bfd_put_16 (input_bfd, ((bfd_get_16 (input_bfd, hit_data) & 0xfff0)
1075 | ((Rvalue >> 16) & 0xf)), hit_data);
1076 bfd_put_16 (input_bfd, (Rvalue) & 0xffff, hit_data + 2);
1078 else if (r_type == R_CR16_GOT_REGREL20)
1080 asection * sgot = bfd_get_section_by_name (dynobj, ".got");
1086 off = h->got.offset;
1087 BFD_ASSERT (off != (bfd_vma) -1);
1089 if (! elf_hash_table (info)->dynamic_sections_created
1090 || SYMBOL_REFERENCES_LOCAL (info, h))
1091 /* This is actually a static link, or it is a
1092 -Bsymbolic link and the symbol is defined
1093 locally, or the symbol was forced to be local
1094 because of a version file. We must initialize
1095 this entry in the global offset table.
1096 When doing a dynamic link, we create a .rela.got
1097 relocation entry to initialize the value. This
1098 is done in the finish_dynamic_symbol routine. */
1099 bfd_put_32 (output_bfd, Rvalue, sgot->contents + off);
1101 Rvalue = sgot->output_offset + off;
1107 off = elf_local_got_offsets (input_bfd)[symndx];
1108 bfd_put_32 (output_bfd,Rvalue, sgot->contents + off);
1110 Rvalue = sgot->output_offset + off;
1115 /* REVISIT: if ((long) Rvalue > 0xffffff ||
1116 (long) Rvalue < -0x800000). */
1117 if ((long) Rvalue > 0xffffff || (long) Rvalue < 0)
1118 return bfd_reloc_overflow;
1121 bfd_put_16 (input_bfd, (bfd_get_16 (input_bfd, hit_data))
1122 | (((Rvalue >> 16) & 0xf) << 8), hit_data);
1123 bfd_put_16 (input_bfd, (Rvalue) & 0xffff, hit_data + 2);
1126 else if (r_type == R_CR16_GOTC_REGREL20)
1129 sgot = bfd_get_section_by_name (dynobj, ".got");
1135 off = h->got.offset;
1136 BFD_ASSERT (off != (bfd_vma) -1);
1138 Rvalue >>=1; /* For code symbols. */
1140 if (! elf_hash_table (info)->dynamic_sections_created
1141 || SYMBOL_REFERENCES_LOCAL (info, h))
1142 /* This is actually a static link, or it is a
1143 -Bsymbolic link and the symbol is defined
1144 locally, or the symbol was forced to be local
1145 because of a version file. We must initialize
1146 this entry in the global offset table.
1147 When doing a dynamic link, we create a .rela.got
1148 relocation entry to initialize the value. This
1149 is done in the finish_dynamic_symbol routine. */
1150 bfd_put_32 (output_bfd, Rvalue, sgot->contents + off);
1152 Rvalue = sgot->output_offset + off;
1158 off = elf_local_got_offsets (input_bfd)[symndx];
1160 bfd_put_32 (output_bfd,Rvalue, sgot->contents + off);
1161 Rvalue = sgot->output_offset + off;
1166 /* Check if any value in DISP. */
1167 Rvalue1 =((bfd_get_32 (input_bfd, hit_data) >>16)
1168 | (((bfd_get_32 (input_bfd, hit_data) & 0xfff) >> 8) <<16));
1170 /* Add or subtract the offset value. */
1171 if (Rvalue1 & 0x80000)
1172 Rvalue -= (~Rvalue1 + 1) & 0xfffff;
1176 /* Check for range. */
1177 /* REVISIT: if ((long) Rvalue > 0xffffff
1178 || (long) Rvalue < -0x800000). */
1179 if ((long) Rvalue > 0xffffff || (long) Rvalue < 0)
1180 return bfd_reloc_overflow;
1182 bfd_put_16 (input_bfd, (bfd_get_16 (input_bfd, hit_data))
1183 | (((Rvalue >> 16) & 0xf) << 8), hit_data);
1184 bfd_put_16 (input_bfd, (Rvalue) & 0xffff, hit_data + 2);
1188 if (r_type == R_CR16_ABS24)
1190 Rvalue1 = ((bfd_get_32 (input_bfd, hit_data) >> 16)
1191 | (((bfd_get_32 (input_bfd, hit_data) & 0xfff) >> 8) <<16)
1192 | (((bfd_get_32 (input_bfd, hit_data) & 0xf) <<20)));
1194 /* Add or subtract the offset value. */
1195 if (Rvalue1 & 0x800000)
1196 Rvalue -= (~Rvalue1 + 1) & 0xffffff;
1200 /* Check for Range. */
1201 if ((long) Rvalue > 0xffffff || (long) Rvalue < 0x0)
1202 return bfd_reloc_overflow;
1204 Rvalue = ((((Rvalue >> 20) & 0xf) | (((Rvalue >> 16) & 0xf)<<8)
1205 | (bfd_get_32 (input_bfd, hit_data) & 0xf0f0))
1206 | ((Rvalue & 0xffff) << 16));
1208 else if (r_type == R_CR16_DISP24)
1210 Rvalue = ((((Rvalue >> 20)& 0xf) | (((Rvalue >>16) & 0xf)<<8)
1211 | (bfd_get_16 (input_bfd, hit_data)))
1212 | (((Rvalue & 0xfffe) | ((Rvalue >> 24) & 0x1)) << 16));
1214 else if ((r_type == R_CR16_IMM32) || (r_type == R_CR16_IMM32a))
1216 Rvalue1 =((((bfd_get_32 (input_bfd, hit_data)) >> 16) &0xffff)
1217 | (((bfd_get_32 (input_bfd, hit_data)) &0xffff)) << 16);
1219 /* Add or subtract the offset value. */
1220 if (Rvalue1 & 0x80000000)
1221 Rvalue -= (~Rvalue1 + 1) & 0xffffffff;
1225 /* Check for range. */
1226 if (Rvalue > 0xffffffff || (long) Rvalue < 0x0)
1227 return bfd_reloc_overflow;
1229 Rvalue = (((Rvalue >> 16)& 0xffff) | (Rvalue & 0xffff) << 16);
1231 else if (r_type == R_CR16_DISP24a)
1233 Rvalue = (((Rvalue & 0xfffffe) | (Rvalue >> 23)));
1234 Rvalue = ((Rvalue >> 16) & 0xff) | ((Rvalue & 0xffff) << 16)
1235 | (bfd_get_32 (input_bfd, hit_data));
1237 else if ((r_type == R_CR16_REGREL20)
1238 || (r_type == R_CR16_REGREL20a))
1240 Rvalue1 = ((bfd_get_32 (input_bfd, hit_data) >> 16)
1241 | (((bfd_get_32 (input_bfd, hit_data) & 0xfff) >> 8) <<16));
1242 /* Add or subtract the offset value. */
1243 if (Rvalue1 & 0x80000)
1244 Rvalue -= (~Rvalue1 + 1) & 0xfffff;
1248 /* Check for range. */
1249 if ((long) Rvalue > 0xfffff || (long) Rvalue < 0x0)
1250 return bfd_reloc_overflow;
1252 Rvalue = (((((Rvalue >> 20)& 0xf) | (((Rvalue >>16) & 0xf)<<8)
1253 | ((Rvalue & 0xffff) << 16)))
1254 | (bfd_get_32 (input_bfd, hit_data) & 0xf0ff));
1257 else if (r_type == R_CR16_NUM32)
1259 Rvalue1 = (bfd_get_32 (input_bfd, hit_data));
1261 /* Add or subtract the offset value */
1262 if (Rvalue1 & 0x80000000)
1263 Rvalue -= (~Rvalue1 + 1) & 0xffffffff;
1267 /* Check for Ranga */
1268 if (Rvalue > 0xffffffff)
1269 return bfd_reloc_overflow;
1272 bfd_put_32 (input_bfd, Rvalue, hit_data);
1277 return bfd_reloc_notsupported;
1280 return bfd_reloc_ok;
1283 /* Delete some bytes from a section while relaxing. */
1286 elf32_cr16_relax_delete_bytes (struct bfd_link_info *link_info, bfd *abfd,
1287 asection *sec, bfd_vma addr, int count)
1289 Elf_Internal_Shdr *symtab_hdr;
1290 unsigned int sec_shndx;
1292 Elf_Internal_Rela *irel, *irelend;
1293 Elf_Internal_Rela *irelalign;
1295 Elf_Internal_Sym *isym;
1296 Elf_Internal_Sym *isymend;
1297 struct elf_link_hash_entry **sym_hashes;
1298 struct elf_link_hash_entry **end_hashes;
1299 struct elf_link_hash_entry **start_hashes;
1300 unsigned int symcount;
1302 sec_shndx = _bfd_elf_section_from_bfd_section (abfd, sec);
1304 contents = elf_section_data (sec)->this_hdr.contents;
1306 /* The deletion must stop at the next ALIGN reloc for an aligment
1307 power larger than the number of bytes we are deleting. */
1311 irel = elf_section_data (sec)->relocs;
1312 irelend = irel + sec->reloc_count;
1314 /* Actually delete the bytes. */
1315 memmove (contents + addr, contents + addr + count,
1316 (size_t) (toaddr - addr - count));
1319 /* Adjust all the relocs. */
1320 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
1321 /* Get the new reloc address. */
1322 if ((irel->r_offset > addr && irel->r_offset < toaddr))
1323 irel->r_offset -= count;
1325 /* Adjust the local symbols defined in this section. */
1326 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1327 isym = (Elf_Internal_Sym *) symtab_hdr->contents;
1328 for (isymend = isym + symtab_hdr->sh_info; isym < isymend; isym++)
1330 if (isym->st_shndx == sec_shndx
1331 && isym->st_value > addr
1332 && isym->st_value < toaddr)
1334 /* Adjust the addend of SWITCH relocations in this section,
1335 which reference this local symbol. */
1337 for (irel = elf_section_data (sec)->relocs; irel < irelend; irel++)
1339 unsigned long r_symndx;
1340 Elf_Internal_Sym *rsym;
1341 bfd_vma addsym, subsym;
1343 /* Skip if not a SWITCH relocation. */
1344 if (ELF32_R_TYPE (irel->r_info) != (int) R_CR16_SWITCH8
1345 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_SWITCH16
1346 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_SWITCH32)
1349 r_symndx = ELF32_R_SYM (irel->r_info);
1350 rsym = (Elf_Internal_Sym *) symtab_hdr->contents + r_symndx;
1352 /* Skip if not the local adjusted symbol. */
1356 addsym = isym->st_value;
1357 subsym = addsym - irel->r_addend;
1359 /* Fix the addend only when -->> (addsym > addr >= subsym). */
1361 irel->r_addend -= count;
1367 isym->st_value -= count;
1371 /* Now adjust the global symbols defined in this section. */
1372 symcount = (symtab_hdr->sh_size / sizeof (Elf32_External_Sym)
1373 - symtab_hdr->sh_info);
1374 sym_hashes = start_hashes = elf_sym_hashes (abfd);
1375 end_hashes = sym_hashes + symcount;
1377 for (; sym_hashes < end_hashes; sym_hashes++)
1379 struct elf_link_hash_entry *sym_hash = *sym_hashes;
1381 /* The '--wrap SYMBOL' option is causing a pain when the object file,
1382 containing the definition of __wrap_SYMBOL, includes a direct
1383 call to SYMBOL as well. Since both __wrap_SYMBOL and SYMBOL reference
1384 the same symbol (which is __wrap_SYMBOL), but still exist as two
1385 different symbols in 'sym_hashes', we don't want to adjust
1386 the global symbol __wrap_SYMBOL twice.
1387 This check is only relevant when symbols are being wrapped. */
1388 if (link_info->wrap_hash != NULL)
1390 struct elf_link_hash_entry **cur_sym_hashes;
1392 /* Loop only over the symbols whom been already checked. */
1393 for (cur_sym_hashes = start_hashes; cur_sym_hashes < sym_hashes;
1395 /* If the current symbol is identical to 'sym_hash', that means
1396 the symbol was already adjusted (or at least checked). */
1397 if (*cur_sym_hashes == sym_hash)
1400 /* Don't adjust the symbol again. */
1401 if (cur_sym_hashes < sym_hashes)
1405 if ((sym_hash->root.type == bfd_link_hash_defined
1406 || sym_hash->root.type == bfd_link_hash_defweak)
1407 && sym_hash->root.u.def.section == sec
1408 && sym_hash->root.u.def.value > addr
1409 && sym_hash->root.u.def.value < toaddr)
1410 sym_hash->root.u.def.value -= count;
1416 /* Relocate a CR16 ELF section. */
1419 elf32_cr16_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
1420 bfd *input_bfd, asection *input_section,
1421 bfd_byte *contents, Elf_Internal_Rela *relocs,
1422 Elf_Internal_Sym *local_syms,
1423 asection **local_sections)
1425 Elf_Internal_Shdr *symtab_hdr;
1426 struct elf_link_hash_entry **sym_hashes;
1427 Elf_Internal_Rela *rel, *relend;
1429 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
1430 sym_hashes = elf_sym_hashes (input_bfd);
1433 relend = relocs + input_section->reloc_count;
1434 for (; rel < relend; rel++)
1437 reloc_howto_type *howto;
1438 unsigned long r_symndx;
1439 Elf_Internal_Sym *sym;
1441 struct elf_link_hash_entry *h;
1443 bfd_reloc_status_type r;
1445 r_symndx = ELF32_R_SYM (rel->r_info);
1446 r_type = ELF32_R_TYPE (rel->r_info);
1447 howto = cr16_elf_howto_table + (r_type);
1452 if (r_symndx < symtab_hdr->sh_info)
1454 sym = local_syms + r_symndx;
1455 sec = local_sections[r_symndx];
1456 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
1460 bfd_boolean unresolved_reloc, warned;
1462 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
1463 r_symndx, symtab_hdr, sym_hashes,
1465 unresolved_reloc, warned);
1468 if (sec != NULL && elf_discarded_section (sec))
1470 /* For relocs against symbols from removed linkonce sections,
1471 or sections discarded by a linker script, we just want the
1472 section contents zeroed. Avoid any special processing. */
1473 _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
1479 if (info->relocatable)
1482 r = cr16_elf_final_link_relocate (howto, input_bfd, output_bfd,
1484 contents, rel->r_offset,
1485 relocation, rel->r_addend,
1486 (struct elf_link_hash_entry *) h,
1488 info, sec, h == NULL);
1490 if (r != bfd_reloc_ok)
1493 const char *msg = NULL;
1496 name = h->root.root.string;
1499 name = (bfd_elf_string_from_elf_section
1500 (input_bfd, symtab_hdr->sh_link, sym->st_name));
1501 if (name == NULL || *name == '\0')
1502 name = bfd_section_name (input_bfd, sec);
1507 case bfd_reloc_overflow:
1508 if (!((*info->callbacks->reloc_overflow)
1509 (info, (h ? &h->root : NULL), name, howto->name,
1510 (bfd_vma) 0, input_bfd, input_section,
1515 case bfd_reloc_undefined:
1516 if (!((*info->callbacks->undefined_symbol)
1517 (info, name, input_bfd, input_section,
1518 rel->r_offset, TRUE)))
1522 case bfd_reloc_outofrange:
1523 msg = _("internal error: out of range error");
1526 case bfd_reloc_notsupported:
1527 msg = _("internal error: unsupported relocation error");
1530 case bfd_reloc_dangerous:
1531 msg = _("internal error: dangerous error");
1535 msg = _("internal error: unknown error");
1539 if (!((*info->callbacks->warning)
1540 (info, msg, name, input_bfd, input_section,
1551 /* This is a version of bfd_generic_get_relocated_section_contents
1552 which uses elf32_cr16_relocate_section. */
1555 elf32_cr16_get_relocated_section_contents (bfd *output_bfd,
1556 struct bfd_link_info *link_info,
1557 struct bfd_link_order *link_order,
1559 bfd_boolean relocatable,
1562 Elf_Internal_Shdr *symtab_hdr;
1563 asection *input_section = link_order->u.indirect.section;
1564 bfd *input_bfd = input_section->owner;
1565 asection **sections = NULL;
1566 Elf_Internal_Rela *internal_relocs = NULL;
1567 Elf_Internal_Sym *isymbuf = NULL;
1569 /* We only need to handle the case of relaxing, or of having a
1570 particular set of section contents, specially. */
1572 || elf_section_data (input_section)->this_hdr.contents == NULL)
1573 return bfd_generic_get_relocated_section_contents (output_bfd, link_info,
1578 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
1580 memcpy (data, elf_section_data (input_section)->this_hdr.contents,
1581 (size_t) input_section->size);
1583 if ((input_section->flags & SEC_RELOC) != 0
1584 && input_section->reloc_count > 0)
1586 Elf_Internal_Sym *isym;
1587 Elf_Internal_Sym *isymend;
1591 internal_relocs = _bfd_elf_link_read_relocs (input_bfd, input_section,
1593 if (internal_relocs == NULL)
1596 if (symtab_hdr->sh_info != 0)
1598 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
1599 if (isymbuf == NULL)
1600 isymbuf = bfd_elf_get_elf_syms (input_bfd, symtab_hdr,
1601 symtab_hdr->sh_info, 0,
1603 if (isymbuf == NULL)
1607 amt = symtab_hdr->sh_info;
1608 amt *= sizeof (asection *);
1609 sections = bfd_malloc (amt);
1610 if (sections == NULL && amt != 0)
1613 isymend = isymbuf + symtab_hdr->sh_info;
1614 for (isym = isymbuf, secpp = sections; isym < isymend; ++isym, ++secpp)
1618 if (isym->st_shndx == SHN_UNDEF)
1619 isec = bfd_und_section_ptr;
1620 else if (isym->st_shndx == SHN_ABS)
1621 isec = bfd_abs_section_ptr;
1622 else if (isym->st_shndx == SHN_COMMON)
1623 isec = bfd_com_section_ptr;
1625 isec = bfd_section_from_elf_index (input_bfd, isym->st_shndx);
1630 if (! elf32_cr16_relocate_section (output_bfd, link_info, input_bfd,
1631 input_section, data, internal_relocs,
1635 if (sections != NULL)
1638 && symtab_hdr->contents != (unsigned char *) isymbuf)
1640 if (elf_section_data (input_section)->relocs != internal_relocs)
1641 free (internal_relocs);
1647 if (sections != NULL)
1650 && symtab_hdr->contents != (unsigned char *) isymbuf)
1652 if (internal_relocs != NULL
1653 && elf_section_data (input_section)->relocs != internal_relocs)
1654 free (internal_relocs);
1658 /* Assorted hash table functions. */
1660 /* Initialize an entry in the link hash table. */
1662 /* Create an entry in an CR16 ELF linker hash table. */
1664 static struct bfd_hash_entry *
1665 elf32_cr16_link_hash_newfunc (struct bfd_hash_entry *entry,
1666 struct bfd_hash_table *table,
1669 struct elf32_cr16_link_hash_entry *ret =
1670 (struct elf32_cr16_link_hash_entry *) entry;
1672 /* Allocate the structure if it has not already been allocated by a
1674 if (ret == (struct elf32_cr16_link_hash_entry *) NULL)
1675 ret = ((struct elf32_cr16_link_hash_entry *)
1676 bfd_hash_allocate (table,
1677 sizeof (struct elf32_cr16_link_hash_entry)));
1678 if (ret == (struct elf32_cr16_link_hash_entry *) NULL)
1679 return (struct bfd_hash_entry *) ret;
1681 /* Call the allocation method of the superclass. */
1682 ret = ((struct elf32_cr16_link_hash_entry *)
1683 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry *) ret,
1685 if (ret != (struct elf32_cr16_link_hash_entry *) NULL)
1687 ret->direct_calls = 0;
1688 ret->stack_size = 0;
1690 ret->movm_stack_size = 0;
1695 return (struct bfd_hash_entry *) ret;
1698 /* Create an cr16 ELF linker hash table. */
1700 static struct bfd_link_hash_table *
1701 elf32_cr16_link_hash_table_create (bfd *abfd)
1703 struct elf32_cr16_link_hash_table *ret;
1704 bfd_size_type amt = sizeof (struct elf32_cr16_link_hash_table);
1706 ret = (struct elf32_cr16_link_hash_table *) bfd_malloc (amt);
1707 if (ret == (struct elf32_cr16_link_hash_table *) NULL)
1710 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
1711 elf32_cr16_link_hash_newfunc,
1712 sizeof (struct elf32_cr16_link_hash_entry)))
1719 amt = sizeof (struct elf_link_hash_table);
1720 ret->static_hash_table
1721 = (struct elf32_cr16_link_hash_table *) bfd_malloc (amt);
1722 if (ret->static_hash_table == NULL)
1728 if (!_bfd_elf_link_hash_table_init (&ret->static_hash_table->root, abfd,
1729 elf32_cr16_link_hash_newfunc,
1730 sizeof (struct elf32_cr16_link_hash_entry)))
1732 free (ret->static_hash_table);
1736 return &ret->root.root;
1739 /* Free an cr16 ELF linker hash table. */
1742 elf32_cr16_link_hash_table_free (struct bfd_link_hash_table *hash)
1744 struct elf32_cr16_link_hash_table *ret
1745 = (struct elf32_cr16_link_hash_table *) hash;
1747 _bfd_generic_link_hash_table_free
1748 ((struct bfd_link_hash_table *) ret->static_hash_table);
1749 _bfd_generic_link_hash_table_free
1750 ((struct bfd_link_hash_table *) ret);
1753 static unsigned long
1754 elf_cr16_mach (flagword flags)
1760 return bfd_mach_cr16;
1764 /* The final processing done just before writing out a CR16 ELF object
1765 file. This gets the CR16 architecture right based on the machine
1769 _bfd_cr16_elf_final_write_processing (bfd *abfd,
1770 bfd_boolean linker ATTRIBUTE_UNUSED)
1773 switch (bfd_get_mach (abfd))
1782 elf_elfheader (abfd)->e_flags |= val;
1787 _bfd_cr16_elf_object_p (bfd *abfd)
1789 bfd_default_set_arch_mach (abfd, bfd_arch_cr16,
1790 elf_cr16_mach (elf_elfheader (abfd)->e_flags));
1794 /* Merge backend specific data from an object file to the output
1795 object file when linking. */
1798 _bfd_cr16_elf_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
1800 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
1801 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
1804 if (bfd_get_arch (obfd) == bfd_get_arch (ibfd)
1805 && bfd_get_mach (obfd) < bfd_get_mach (ibfd))
1807 if (! bfd_set_arch_mach (obfd, bfd_get_arch (ibfd),
1808 bfd_get_mach (ibfd)))
1816 /* This function handles relaxing for the CR16.
1818 There's quite a few relaxing opportunites available on the CR16:
1820 * bcond:24 -> bcond:16 1 byte
1821 * bcond:16 -> bcond:8 1 byte
1822 * arithmetic imm32 -> arithmetic imm20 12 bits
1823 * arithmetic imm20/imm16 -> arithmetic imm4 12/16 bits
1825 Symbol- and reloc-reading infrastructure copied from elf-m10200.c. */
1828 elf32_cr16_relax_section (bfd *abfd, asection *sec,
1829 struct bfd_link_info *link_info, bfd_boolean *again)
1831 Elf_Internal_Shdr *symtab_hdr;
1832 Elf_Internal_Rela *internal_relocs;
1833 Elf_Internal_Rela *irel, *irelend;
1834 bfd_byte *contents = NULL;
1835 Elf_Internal_Sym *isymbuf = NULL;
1837 /* Assume nothing changes. */
1840 /* We don't have to do anything for a relocatable link, if
1841 this section does not have relocs, or if this is not a
1843 if (link_info->relocatable
1844 || (sec->flags & SEC_RELOC) == 0
1845 || sec->reloc_count == 0
1846 || (sec->flags & SEC_CODE) == 0)
1849 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1851 /* Get a copy of the native relocations. */
1852 internal_relocs = _bfd_elf_link_read_relocs (abfd, sec, NULL, NULL,
1853 link_info->keep_memory);
1854 if (internal_relocs == NULL)
1857 /* Walk through them looking for relaxing opportunities. */
1858 irelend = internal_relocs + sec->reloc_count;
1859 for (irel = internal_relocs; irel < irelend; irel++)
1863 /* If this isn't something that can be relaxed, then ignore
1865 if (ELF32_R_TYPE (irel->r_info) != (int) R_CR16_DISP16
1866 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_DISP24
1867 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_IMM32
1868 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_IMM20
1869 && ELF32_R_TYPE (irel->r_info) != (int) R_CR16_IMM16)
1872 /* Get the section contents if we haven't done so already. */
1873 if (contents == NULL)
1875 /* Get cached copy if it exists. */
1876 if (elf_section_data (sec)->this_hdr.contents != NULL)
1877 contents = elf_section_data (sec)->this_hdr.contents;
1878 /* Go get them off disk. */
1879 else if (!bfd_malloc_and_get_section (abfd, sec, &contents))
1883 /* Read this BFD's local symbols if we haven't done so already. */
1884 if (isymbuf == NULL && symtab_hdr->sh_info != 0)
1886 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
1887 if (isymbuf == NULL)
1888 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
1889 symtab_hdr->sh_info, 0,
1891 if (isymbuf == NULL)
1895 /* Get the value of the symbol referred to by the reloc. */
1896 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
1898 /* A local symbol. */
1899 Elf_Internal_Sym *isym;
1902 isym = isymbuf + ELF32_R_SYM (irel->r_info);
1903 if (isym->st_shndx == SHN_UNDEF)
1904 sym_sec = bfd_und_section_ptr;
1905 else if (isym->st_shndx == SHN_ABS)
1906 sym_sec = bfd_abs_section_ptr;
1907 else if (isym->st_shndx == SHN_COMMON)
1908 sym_sec = bfd_com_section_ptr;
1910 sym_sec = bfd_section_from_elf_index (abfd, isym->st_shndx);
1911 symval = (isym->st_value
1912 + sym_sec->output_section->vma
1913 + sym_sec->output_offset);
1918 struct elf_link_hash_entry *h;
1920 /* An external symbol. */
1921 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
1922 h = elf_sym_hashes (abfd)[indx];
1923 BFD_ASSERT (h != NULL);
1925 if (h->root.type != bfd_link_hash_defined
1926 && h->root.type != bfd_link_hash_defweak)
1927 /* This appears to be a reference to an undefined
1928 symbol. Just ignore it--it will be caught by the
1929 regular reloc processing. */
1932 symval = (h->root.u.def.value
1933 + h->root.u.def.section->output_section->vma
1934 + h->root.u.def.section->output_offset);
1937 /* For simplicity of coding, we are going to modify the section
1938 contents, the section relocs, and the BFD symbol table. We
1939 must tell the rest of the code not to free up this
1940 information. It would be possible to instead create a table
1941 of changes which have to be made, as is done in coff-mips.c;
1942 that would be more work, but would require less memory when
1943 the linker is run. */
1945 /* Try to turn a 24 branch/call into a 16bit relative
1947 if (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_DISP24)
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 16 bits, note the high value is
1957 0xfffe + 2 as the target will be two bytes closer if we are
1959 if ((long) value < 0x10000 && (long) value > -0x10002)
1963 /* Get the opcode. */
1964 code = (unsigned int) bfd_get_32 (abfd, contents + irel->r_offset);
1966 /* Verify it's a 'bcond' and fix the opcode. */
1967 if ((code & 0xffff) == 0x0010)
1968 bfd_put_16 (abfd, 0x1800 | ((0xf & (code >> 20)) << 4), contents + irel->r_offset);
1972 /* Note that we've changed the relocs, section contents, etc. */
1973 elf_section_data (sec)->relocs = internal_relocs;
1974 elf_section_data (sec)->this_hdr.contents = contents;
1975 symtab_hdr->contents = (unsigned char *) isymbuf;
1977 /* Fix the relocation's type. */
1978 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
1981 /* Delete two bytes of data. */
1982 if (!elf32_cr16_relax_delete_bytes (link_info, abfd, sec,
1983 irel->r_offset + 2, 2))
1986 /* That will change things, so, we should relax again.
1987 Note that this is not required, and it may be slow. */
1992 /* Try to turn a 16bit pc-relative branch into an
1993 8bit pc-relative branch. */
1994 if (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_DISP16)
1996 bfd_vma value = symval;
1998 /* Deal with pc-relative gunk. */
1999 value -= (sec->output_section->vma + sec->output_offset);
2000 value -= irel->r_offset;
2001 value += irel->r_addend;
2003 /* See if the value will fit in 8 bits, note the high value is
2004 0xfc + 2 as the target will be two bytes closer if we are
2006 /*if ((long) value < 0x1fa && (long) value > -0x100) REVISIT:range */
2007 if ((long) value < 0xfa && (long) value > -0x100)
2009 unsigned short code;
2011 /* Get the opcode. */
2012 code = (unsigned short) bfd_get_16 (abfd, contents + irel->r_offset);
2014 /* Verify it's a 'bcond' and fix the opcode. */
2015 if ((code & 0xff0f) == 0x1800)
2016 bfd_put_16 (abfd, (code & 0xf0f0), contents + irel->r_offset);
2020 /* Note that we've changed the relocs, section contents, etc. */
2021 elf_section_data (sec)->relocs = internal_relocs;
2022 elf_section_data (sec)->this_hdr.contents = contents;
2023 symtab_hdr->contents = (unsigned char *) isymbuf;
2025 /* Fix the relocation's type. */
2026 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
2029 /* Delete two bytes of data. */
2030 if (!elf32_cr16_relax_delete_bytes (link_info, abfd, sec,
2031 irel->r_offset + 2, 2))
2034 /* That will change things, so, we should relax again.
2035 Note that this is not required, and it may be slow. */
2040 /* Try to turn a 32-bit IMM address into a 20/16-bit IMM address */
2041 if (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_IMM32)
2043 bfd_vma value = symval;
2044 unsigned short is_add_mov = 0;
2047 /* Get the existing value from the mcode */
2048 value1 = ((bfd_get_32 (abfd, contents + irel->r_offset + 2) >> 16)
2049 |(((bfd_get_32 (abfd, contents + irel->r_offset + 2) & 0xffff) << 16)));
2051 /* See if the value will fit in 20 bits. */
2052 if ((long) (value + value1) < 0xfffff && (long) (value + value1) > 0)
2054 unsigned short code;
2056 /* Get the opcode. */
2057 code = (unsigned short) bfd_get_16 (abfd, contents + irel->r_offset);
2059 /* Verify it's a 'arithmetic ADDD or MOVD instruction'.
2060 For ADDD and MOVD only, convert to IMM32 -> IMM20. */
2062 if (((code & 0xfff0) == 0x0070) || ((code & 0xfff0) == 0x0020))
2067 /* Note that we've changed the relocs, section contents,
2069 elf_section_data (sec)->relocs = internal_relocs;
2070 elf_section_data (sec)->this_hdr.contents = contents;
2071 symtab_hdr->contents = (unsigned char *) isymbuf;
2073 /* Fix the opcode. */
2074 if ((code & 0xfff0) == 0x0070) /* For movd. */
2075 bfd_put_8 (abfd, 0x05, contents + irel->r_offset + 1);
2076 else /* code == 0x0020 for addd. */
2077 bfd_put_8 (abfd, 0x04, contents + irel->r_offset + 1);
2079 bfd_put_8 (abfd, (code & 0xf) << 4, contents + irel->r_offset);
2081 /* If existing value is nagavive adjust approriately
2082 place the 16-20bits (ie 4 bit) in new opcode,
2083 as the 0xffffxxxx, the higher 2 byte values removed. */
2084 if (value1 & 0x80000000)
2085 bfd_put_8 (abfd, (0x0f | (bfd_get_8(abfd, contents + irel->r_offset))), contents + irel->r_offset);
2087 bfd_put_8 (abfd, (((value1 >> 16)&0xf) | (bfd_get_8(abfd, contents + irel->r_offset))), contents + irel->r_offset);
2089 /* Fix the relocation's type. */
2090 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
2093 /* Delete two bytes of data. */
2094 if (!elf32_cr16_relax_delete_bytes (link_info, abfd, sec,
2095 irel->r_offset + 2, 2))
2098 /* That will change things, so, we should relax again.
2099 Note that this is not required, and it may be slow. */
2104 /* See if the value will fit in 16 bits. */
2106 && ((long)(value + value1) < 0x7fff && (long)(value + value1) > 0))
2108 unsigned short code;
2110 /* Get the opcode. */
2111 code = (unsigned short) bfd_get_16 (abfd, contents + irel->r_offset);
2113 /* Note that we've changed the relocs, section contents, etc. */
2114 elf_section_data (sec)->relocs = internal_relocs;
2115 elf_section_data (sec)->this_hdr.contents = contents;
2116 symtab_hdr->contents = (unsigned char *) isymbuf;
2118 /* Fix the opcode. */
2119 if ((code & 0xf0) == 0x70) /* For movd. */
2120 bfd_put_8 (abfd, 0x54, contents + irel->r_offset + 1);
2121 else if ((code & 0xf0) == 0x20) /* For addd. */
2122 bfd_put_8 (abfd, 0x60, contents + irel->r_offset + 1);
2123 else if ((code & 0xf0) == 0x90) /* For cmpd. */
2124 bfd_put_8 (abfd, 0x56, contents + irel->r_offset + 1);
2128 bfd_put_8 (abfd, 0xb0 | (code & 0xf), contents + irel->r_offset);
2130 /* If existing value is nagavive adjust approriately
2131 place the 12-16bits (ie 4 bit) in new opcode,
2132 as the 0xfffffxxx, the higher 2 byte values removed. */
2133 if (value1 & 0x80000000)
2134 bfd_put_8 (abfd, (0x0f | (bfd_get_8(abfd, contents + irel->r_offset))), contents + irel->r_offset);
2136 bfd_put_16 (abfd, value1, contents + irel->r_offset + 2);
2139 /* Fix the relocation's type. */
2140 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
2143 /* Delete two bytes of data. */
2144 if (!elf32_cr16_relax_delete_bytes (link_info, abfd, sec,
2145 irel->r_offset + 2, 2))
2148 /* That will change things, so, we should relax again.
2149 Note that this is not required, and it may be slow. */
2155 /* Try to turn a 16bit immediate address into a 4bit
2156 immediate address. */
2157 if ((ELF32_R_TYPE (irel->r_info) == (int) R_CR16_IMM20)
2158 || (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_IMM16))
2160 bfd_vma value = symval;
2163 /* Get the existing value from the mcode */
2164 value1 = ((bfd_get_16 (abfd, contents + irel->r_offset + 2) & 0xffff));
2166 if (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_IMM20)
2168 value1 |= ((bfd_get_16 (abfd, contents + irel->r_offset + 1) & 0xf000) << 0x4);
2171 /* See if the value will fit in 4 bits. */
2172 if ((((long) (value + value1)) < 0xf)
2173 && (((long) (value + value1)) > 0))
2175 unsigned short code;
2177 /* Get the opcode. */
2178 code = (unsigned short) bfd_get_16 (abfd, contents + irel->r_offset);
2180 /* Note that we've changed the relocs, section contents, etc. */
2181 elf_section_data (sec)->relocs = internal_relocs;
2182 elf_section_data (sec)->this_hdr.contents = contents;
2183 symtab_hdr->contents = (unsigned char *) isymbuf;
2185 /* Fix the opcode. */
2186 if (((code & 0x0f00) == 0x0400) || ((code & 0x0f00) == 0x0500))
2188 if ((code & 0x0f00) == 0x0400) /* For movd imm20. */
2189 bfd_put_8 (abfd, 0x60, contents + irel->r_offset);
2190 else /* For addd imm20. */
2191 bfd_put_8 (abfd, 0x54, contents + irel->r_offset);
2192 bfd_put_8 (abfd, (code & 0xf0) >> 4, contents + irel->r_offset + 1);
2196 if ((code & 0xfff0) == 0x56b0) /* For cmpd imm16. */
2197 bfd_put_8 (abfd, 0x56, contents + irel->r_offset);
2198 else if ((code & 0xfff0) == 0x54b0) /* For movd imm16. */
2199 bfd_put_8 (abfd, 0x54, contents + irel->r_offset);
2200 else if ((code & 0xfff0) == 0x58b0) /* For movb imm16. */
2201 bfd_put_8 (abfd, 0x58, contents + irel->r_offset);
2202 else if ((code & 0xfff0) == 0x5Ab0) /* For movw imm16. */
2203 bfd_put_8 (abfd, 0x5A, contents + irel->r_offset);
2204 else if ((code & 0xfff0) == 0x60b0) /* For addd imm16. */
2205 bfd_put_8 (abfd, 0x60, contents + irel->r_offset);
2206 else if ((code & 0xfff0) == 0x30b0) /* For addb imm16. */
2207 bfd_put_8 (abfd, 0x30, contents + irel->r_offset);
2208 else if ((code & 0xfff0) == 0x2Cb0) /* For addub imm16. */
2209 bfd_put_8 (abfd, 0x2C, contents + irel->r_offset);
2210 else if ((code & 0xfff0) == 0x32b0) /* For adduw imm16. */
2211 bfd_put_8 (abfd, 0x32, contents + irel->r_offset);
2212 else if ((code & 0xfff0) == 0x38b0) /* For subb imm16. */
2213 bfd_put_8 (abfd, 0x38, contents + irel->r_offset);
2214 else if ((code & 0xfff0) == 0x3Cb0) /* For subcb imm16. */
2215 bfd_put_8 (abfd, 0x3C, contents + irel->r_offset);
2216 else if ((code & 0xfff0) == 0x3Fb0) /* For subcw imm16. */
2217 bfd_put_8 (abfd, 0x3F, contents + irel->r_offset);
2218 else if ((code & 0xfff0) == 0x3Ab0) /* For subw imm16. */
2219 bfd_put_8 (abfd, 0x3A, contents + irel->r_offset);
2220 else if ((code & 0xfff0) == 0x50b0) /* For cmpb imm16. */
2221 bfd_put_8 (abfd, 0x50, contents + irel->r_offset);
2222 else if ((code & 0xfff0) == 0x52b0) /* For cmpw imm16. */
2223 bfd_put_8 (abfd, 0x52, contents + irel->r_offset);
2227 bfd_put_8 (abfd, (code & 0xf), contents + irel->r_offset + 1);
2230 /* Fix the relocation's type. */
2231 irel->r_info = ELF32_R_INFO (ELF32_R_SYM (irel->r_info),
2234 /* Delete two bytes of data. */
2235 if (!elf32_cr16_relax_delete_bytes (link_info, abfd, sec,
2236 irel->r_offset + 2, 2))
2239 /* That will change things, so, we should relax again.
2240 Note that this is not required, and it may be slow. */
2248 && symtab_hdr->contents != (unsigned char *) isymbuf)
2250 if (! link_info->keep_memory)
2253 /* Cache the symbols for elf_link_input_bfd. */
2254 symtab_hdr->contents = (unsigned char *) isymbuf;
2257 if (contents != NULL
2258 && elf_section_data (sec)->this_hdr.contents != contents)
2260 if (! link_info->keep_memory)
2263 /* Cache the section contents for elf_link_input_bfd. */
2264 elf_section_data (sec)->this_hdr.contents = contents;
2268 if (internal_relocs != NULL
2269 && elf_section_data (sec)->relocs != internal_relocs)
2270 free (internal_relocs);
2276 && symtab_hdr->contents != (unsigned char *) isymbuf)
2278 if (contents != NULL
2279 && elf_section_data (sec)->this_hdr.contents != contents)
2281 if (internal_relocs != NULL
2282 && elf_section_data (sec)->relocs != internal_relocs)
2283 free (internal_relocs);
2289 elf32_cr16_gc_mark_hook (asection *sec,
2290 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2291 Elf_Internal_Rela *rel ATTRIBUTE_UNUSED,
2292 struct elf_link_hash_entry *h,
2293 Elf_Internal_Sym *sym)
2296 return bfd_section_from_elf_index (sec->owner, sym->st_shndx);
2298 switch (h->root.type)
2300 case bfd_link_hash_defined:
2301 case bfd_link_hash_defweak:
2302 return h->root.u.def.section;
2304 case bfd_link_hash_common:
2305 return h->root.u.c.p->section;
2312 /* Update the got entry reference counts for the section being removed. */
2315 elf32_cr16_gc_sweep_hook (bfd *abfd ATTRIBUTE_UNUSED,
2316 struct bfd_link_info *info ATTRIBUTE_UNUSED,
2317 asection *sec ATTRIBUTE_UNUSED,
2318 const Elf_Internal_Rela *relocs ATTRIBUTE_UNUSED)
2320 /* We don't support garbage collection of GOT and PLT relocs yet. */
2324 /* Create dynamic sections when linking against a dynamic object. */
2327 _bfd_cr16_elf_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
2331 const struct elf_backend_data * bed = get_elf_backend_data (abfd);
2334 switch (bed->s->arch_size)
2345 bfd_set_error (bfd_error_bad_value);
2349 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
2350 .rel[a].bss sections. */
2352 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
2353 | SEC_LINKER_CREATED);
2355 s = bfd_make_section_with_flags (abfd,
2356 (bed->default_use_rela_p
2357 ? ".rela.plt" : ".rel.plt"),
2358 flags | SEC_READONLY);
2360 || ! bfd_set_section_alignment (abfd, s, ptralign))
2363 if (! _bfd_cr16_elf_create_got_section (abfd, info))
2367 const char * secname;
2372 for (sec = abfd->sections; sec; sec = sec->next)
2374 secflags = bfd_get_section_flags (abfd, sec);
2375 if ((secflags & (SEC_DATA | SEC_LINKER_CREATED))
2376 || ((secflags & SEC_HAS_CONTENTS) != SEC_HAS_CONTENTS))
2379 secname = bfd_get_section_name (abfd, sec);
2380 relname = (char *) bfd_malloc (strlen (secname) + 6);
2381 strcpy (relname, ".rela");
2382 strcat (relname, secname);
2384 s = bfd_make_section_with_flags (abfd, relname,
2385 flags | SEC_READONLY);
2387 || ! bfd_set_section_alignment (abfd, s, ptralign))
2392 if (bed->want_dynbss)
2394 /* The .dynbss section is a place to put symbols which are defined
2395 by dynamic objects, are referenced by regular objects, and are
2396 not functions. We must allocate space for them in the process
2397 image and use a R_*_COPY reloc to tell the dynamic linker to
2398 initialize them at run time. The linker script puts the .dynbss
2399 section into the .bss section of the final image. */
2400 s = bfd_make_section_with_flags (abfd, ".dynbss",
2401 SEC_ALLOC | SEC_LINKER_CREATED);
2405 /* The .rel[a].bss section holds copy relocs. This section is not
2406 normally needed. We need to create it here, though, so that the
2407 linker will map it to an output section. We can't just create it
2408 only if we need it, because we will not know whether we need it
2409 until we have seen all the input files, and the first time the
2410 main linker code calls BFD after examining all the input files
2411 (size_dynamic_sections) the input sections have already been
2412 mapped to the output sections. If the section turns out not to
2413 be needed, we can discard it later. We will never need this
2414 section when generating a shared object, since they do not use
2416 if (! info->executable)
2418 s = bfd_make_section_with_flags (abfd,
2419 (bed->default_use_rela_p
2420 ? ".rela.bss" : ".rel.bss"),
2421 flags | SEC_READONLY);
2423 || ! bfd_set_section_alignment (abfd, s, ptralign))
2431 /* Adjust a symbol defined by a dynamic object and referenced by a
2432 regular object. The current definition is in some section of the
2433 dynamic object, but we're not including those sections. We have to
2434 change the definition to something the rest of the link can
2438 _bfd_cr16_elf_adjust_dynamic_symbol (struct bfd_link_info * info,
2439 struct elf_link_hash_entry * h)
2444 dynobj = elf_hash_table (info)->dynobj;
2446 /* Make sure we know what is going on here. */
2447 BFD_ASSERT (dynobj != NULL
2449 || h->u.weakdef != NULL
2452 && !h->def_regular)));
2454 /* If this is a function, put it in the procedure linkage table. We
2455 will fill in the contents of the procedure linkage table later,
2456 when we know the address of the .got section. */
2457 if (h->type == STT_FUNC
2460 if (! info->executable
2464 /* This case can occur if we saw a PLT reloc in an input
2465 file, but the symbol was never referred to by a dynamic
2466 object. In such a case, we don't actually need to build
2467 a procedure linkage table, and we can just do a REL32
2469 BFD_ASSERT (h->needs_plt);
2473 /* Make sure this symbol is output as a dynamic symbol. */
2474 if (h->dynindx == -1)
2476 if (! bfd_elf_link_record_dynamic_symbol (info, h))
2480 /* We also need to make an entry in the .got.plt section, which
2481 will be placed in the .got section by the linker script. */
2483 s = bfd_get_section_by_name (dynobj, ".got.plt");
2484 BFD_ASSERT (s != NULL);
2487 /* We also need to make an entry in the .rela.plt section. */
2489 s = bfd_get_section_by_name (dynobj, ".rela.plt");
2490 BFD_ASSERT (s != NULL);
2491 s->size += sizeof (Elf32_External_Rela);
2496 /* If this is a weak symbol, and there is a real definition, the
2497 processor independent code will have arranged for us to see the
2498 real definition first, and we can just use the same value. */
2499 if (h->u.weakdef != NULL)
2501 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
2502 || h->u.weakdef->root.type == bfd_link_hash_defweak);
2503 h->root.u.def.section = h->u.weakdef->root.u.def.section;
2504 h->root.u.def.value = h->u.weakdef->root.u.def.value;
2508 /* This is a reference to a symbol defined by a dynamic object which
2509 is not a function. */
2511 /* If we are creating a shared library, we must presume that the
2512 only references to the symbol are via the global offset table.
2513 For such cases we need not do anything here; the relocations will
2514 be handled correctly by relocate_section. */
2515 if (info->executable)
2518 /* If there are no references to this symbol that do not use the
2519 GOT, we don't need to generate a copy reloc. */
2520 if (!h->non_got_ref)
2525 (*_bfd_error_handler) (_("dynamic variable `%s' is zero size"),
2526 h->root.root.string);
2530 /* We must allocate the symbol in our .dynbss section, which will
2531 become part of the .bss section of the executable. There will be
2532 an entry for this symbol in the .dynsym section. The dynamic
2533 object will contain position independent code, so all references
2534 from the dynamic object to this symbol will go through the global
2535 offset table. The dynamic linker will use the .dynsym entry to
2536 determine the address it must put in the global offset table, so
2537 both the dynamic object and the regular object will refer to the
2538 same memory location for the variable. */
2540 s = bfd_get_section_by_name (dynobj, ".dynbss");
2541 BFD_ASSERT (s != NULL);
2543 /* We must generate a R_CR16_COPY reloc to tell the dynamic linker to
2544 copy the initial value out of the dynamic object and into the
2545 runtime process image. We need to remember the offset into the
2546 .rela.bss section we are going to use. */
2547 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
2551 srel = bfd_get_section_by_name (dynobj, ".rela.bss");
2552 BFD_ASSERT (srel != NULL);
2553 srel->size += sizeof (Elf32_External_Rela);
2557 return _bfd_elf_adjust_dynamic_copy (h, s);
2560 /* Set the sizes of the dynamic sections. */
2563 _bfd_cr16_elf_size_dynamic_sections (bfd * output_bfd,
2564 struct bfd_link_info * info)
2570 bfd_boolean reltext;
2572 dynobj = elf_hash_table (info)->dynobj;
2573 BFD_ASSERT (dynobj != NULL);
2575 if (elf_hash_table (info)->dynamic_sections_created)
2577 /* Set the contents of the .interp section to the interpreter. */
2578 if (info->executable)
2581 s = bfd_get_section_by_name (dynobj, ".interp");
2582 BFD_ASSERT (s != NULL);
2583 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
2584 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
2590 /* We may have created entries in the .rela.got section.
2591 However, if we are not creating the dynamic sections, we will
2592 not actually use these entries. Reset the size of .rela.got,
2593 which will cause it to get stripped from the output file
2595 s = bfd_get_section_by_name (dynobj, ".rela.got");
2600 /* The check_relocs and adjust_dynamic_symbol entry points have
2601 determined the sizes of the various dynamic sections. Allocate
2606 for (s = dynobj->sections; s != NULL; s = s->next)
2610 if ((s->flags & SEC_LINKER_CREATED) == 0)
2613 /* It's OK to base decisions on the section name, because none
2614 of the dynobj section names depend upon the input files. */
2615 name = bfd_get_section_name (dynobj, s);
2617 if (strcmp (name, ".plt") == 0)
2619 /* Remember whether there is a PLT. */
2622 else if (CONST_STRNEQ (name, ".rela"))
2628 /* Remember whether there are any reloc sections other
2630 if (strcmp (name, ".rela.plt") != 0)
2632 const char * outname;
2636 /* If this relocation section applies to a read only
2637 section, then we probably need a DT_TEXTREL
2638 entry. The entries in the .rela.plt section
2639 really apply to the .got section, which we
2640 created ourselves and so know is not readonly. */
2641 outname = bfd_get_section_name (output_bfd,
2643 target = bfd_get_section_by_name (output_bfd, outname + 5);
2645 && (target->flags & SEC_READONLY) != 0
2646 && (target->flags & SEC_ALLOC) != 0)
2650 /* We use the reloc_count field as a counter if we need
2651 to copy relocs into the output file. */
2655 else if (! CONST_STRNEQ (name, ".got")
2656 && strcmp (name, ".dynbss") != 0)
2657 /* It's not one of our sections, so don't allocate space. */
2662 /* If we don't need this section, strip it from the
2663 output file. This is mostly to handle .rela.bss and
2664 .rela.plt. We must create both sections in
2665 create_dynamic_sections, because they must be created
2666 before the linker maps input sections to output
2667 sections. The linker does that before
2668 adjust_dynamic_symbol is called, and it is that
2669 function which decides whether anything needs to go
2670 into these sections. */
2671 s->flags |= SEC_EXCLUDE;
2675 if ((s->flags & SEC_HAS_CONTENTS) == 0)
2678 /* Allocate memory for the section contents. We use bfd_zalloc
2679 here in case unused entries are not reclaimed before the
2680 section's contents are written out. This should not happen,
2681 but this way if it does, we get a R_CR16_NONE reloc
2682 instead of garbage. */
2683 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
2684 if (s->contents == NULL)
2688 if (elf_hash_table (info)->dynamic_sections_created)
2690 /* Add some entries to the .dynamic section. We fill in the
2691 values later, in _bfd_cr16_elf_finish_dynamic_sections,
2692 but we must add the entries now so that we get the correct
2693 size for the .dynamic section. The DT_DEBUG entry is filled
2694 in by the dynamic linker and used by the debugger. */
2695 if (! info->executable)
2697 if (!_bfd_elf_add_dynamic_entry (info, DT_DEBUG, 0))
2703 if (!_bfd_elf_add_dynamic_entry (info, DT_PLTGOT, 0)
2704 || !_bfd_elf_add_dynamic_entry (info, DT_PLTRELSZ, 0)
2705 || !_bfd_elf_add_dynamic_entry (info, DT_PLTREL, DT_RELA)
2706 || !_bfd_elf_add_dynamic_entry (info, DT_JMPREL, 0))
2712 if (!_bfd_elf_add_dynamic_entry (info, DT_RELA, 0)
2713 || !_bfd_elf_add_dynamic_entry (info, DT_RELASZ, 0)
2714 || !_bfd_elf_add_dynamic_entry (info, DT_RELAENT,
2715 sizeof (Elf32_External_Rela)))
2721 if (!_bfd_elf_add_dynamic_entry (info, DT_TEXTREL, 0))
2729 /* Finish up dynamic symbol handling. We set the contents of various
2730 dynamic sections here. */
2733 _bfd_cr16_elf_finish_dynamic_symbol (bfd * output_bfd,
2734 struct bfd_link_info * info,
2735 struct elf_link_hash_entry * h,
2736 Elf_Internal_Sym * sym)
2740 dynobj = elf_hash_table (info)->dynobj;
2742 if (h->got.offset != (bfd_vma) -1)
2746 Elf_Internal_Rela rel;
2748 /* This symbol has an entry in the global offset table. Set it up. */
2750 sgot = bfd_get_section_by_name (dynobj, ".got");
2751 srel = bfd_get_section_by_name (dynobj, ".rela.got");
2752 BFD_ASSERT (sgot != NULL && srel != NULL);
2754 rel.r_offset = (sgot->output_section->vma
2755 + sgot->output_offset
2756 + (h->got.offset & ~1));
2758 /* If this is a -Bsymbolic link, and the symbol is defined
2759 locally, we just want to emit a RELATIVE reloc. Likewise if
2760 the symbol was forced to be local because of a version file.
2761 The entry in the global offset table will already have been
2762 initialized in the relocate_section function. */
2763 if (info->executable
2764 && (info->symbolic || h->dynindx == -1)
2767 rel.r_info = ELF32_R_INFO (0, R_CR16_GOT_REGREL20);
2768 rel.r_addend = (h->root.u.def.value
2769 + h->root.u.def.section->output_section->vma
2770 + h->root.u.def.section->output_offset);
2774 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents + h->got.offset);
2775 rel.r_info = ELF32_R_INFO (h->dynindx, R_CR16_GOT_REGREL20);
2779 bfd_elf32_swap_reloca_out (output_bfd, &rel,
2780 (bfd_byte *) ((Elf32_External_Rela *) srel->contents
2781 + srel->reloc_count));
2782 ++ srel->reloc_count;
2788 Elf_Internal_Rela rel;
2790 /* This symbol needs a copy reloc. Set it up. */
2791 BFD_ASSERT (h->dynindx != -1
2792 && (h->root.type == bfd_link_hash_defined
2793 || h->root.type == bfd_link_hash_defweak));
2795 s = bfd_get_section_by_name (h->root.u.def.section->owner,
2797 BFD_ASSERT (s != NULL);
2799 rel.r_offset = (h->root.u.def.value
2800 + h->root.u.def.section->output_section->vma
2801 + h->root.u.def.section->output_offset);
2802 rel.r_info = ELF32_R_INFO (h->dynindx, R_CR16_GOT_REGREL20);
2804 bfd_elf32_swap_reloca_out (output_bfd, &rel,
2805 (bfd_byte *) ((Elf32_External_Rela *) s->contents
2810 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
2811 if (strcmp (h->root.root.string, "_DYNAMIC") == 0
2812 || h == elf_hash_table (info)->hgot)
2813 sym->st_shndx = SHN_ABS;
2818 /* Finish up the dynamic sections. */
2821 _bfd_cr16_elf_finish_dynamic_sections (bfd * output_bfd,
2822 struct bfd_link_info * info)
2828 dynobj = elf_hash_table (info)->dynobj;
2830 sgot = bfd_get_section_by_name (dynobj, ".got.plt");
2831 BFD_ASSERT (sgot != NULL);
2832 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
2834 if (elf_hash_table (info)->dynamic_sections_created)
2836 Elf32_External_Dyn * dyncon;
2837 Elf32_External_Dyn * dynconend;
2839 BFD_ASSERT (sdyn != NULL);
2841 dyncon = (Elf32_External_Dyn *) sdyn->contents;
2842 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
2844 for (; dyncon < dynconend; dyncon++)
2846 Elf_Internal_Dyn dyn;
2850 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
2864 s = bfd_get_section_by_name (output_bfd, name);
2865 BFD_ASSERT (s != NULL);
2866 dyn.d_un.d_ptr = s->vma;
2867 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
2871 s = bfd_get_section_by_name (output_bfd, ".rela.plt");
2872 BFD_ASSERT (s != NULL);
2873 dyn.d_un.d_val = s->size;
2874 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
2878 /* My reading of the SVR4 ABI indicates that the
2879 procedure linkage table relocs (DT_JMPREL) should be
2880 included in the overall relocs (DT_RELA). This is
2881 what Solaris does. However, UnixWare can not handle
2882 that case. Therefore, we override the DT_RELASZ entry
2883 here to make it not include the JMPREL relocs. Since
2884 the linker script arranges for .rela.plt to follow all
2885 other relocation sections, we don't have to worry
2886 about changing the DT_RELA entry. */
2887 s = bfd_get_section_by_name (output_bfd, ".rela.plt");
2889 dyn.d_un.d_val -= s->size;
2890 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
2897 /* Fill in the first three entries in the global offset table. */
2901 bfd_put_32 (output_bfd, (bfd_vma) 0, sgot->contents);
2903 bfd_put_32 (output_bfd,
2904 sdyn->output_section->vma + sdyn->output_offset,
2908 elf_section_data (sgot->output_section)->this_hdr.sh_entsize = 4;
2913 /* Given a .data.rel section and a .emreloc in-memory section, store
2914 relocation information into the .emreloc section which can be
2915 used at runtime to relocate the section. This is called by the
2916 linker when the --embedded-relocs switch is used. This is called
2917 after the add_symbols entry point has been called for all the
2918 objects, and before the final_link entry point is called. */
2921 bfd_cr16_elf32_create_embedded_relocs (bfd *abfd,
2922 struct bfd_link_info *info,
2927 Elf_Internal_Shdr *symtab_hdr;
2928 Elf_Internal_Sym *isymbuf = NULL;
2929 Elf_Internal_Rela *internal_relocs = NULL;
2930 Elf_Internal_Rela *irel, *irelend;
2934 BFD_ASSERT (! info->relocatable);
2938 if (datasec->reloc_count == 0)
2941 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
2943 /* Get a copy of the native relocations. */
2944 internal_relocs = (_bfd_elf_link_read_relocs
2945 (abfd, datasec, NULL, NULL, info->keep_memory));
2946 if (internal_relocs == NULL)
2949 amt = (bfd_size_type) datasec->reloc_count * 8;
2950 relsec->contents = (bfd_byte *) bfd_alloc (abfd, amt);
2951 if (relsec->contents == NULL)
2954 p = relsec->contents;
2956 irelend = internal_relocs + datasec->reloc_count;
2957 for (irel = internal_relocs; irel < irelend; irel++, p += 8)
2959 asection *targetsec;
2961 /* We are going to write a four byte longword into the runtime
2962 reloc section. The longword will be the address in the data
2963 section which must be relocated. It is followed by the name
2964 of the target section NUL-padded or truncated to 8
2967 /* We can only relocate absolute longword relocs at run time. */
2968 if (!((ELF32_R_TYPE (irel->r_info) == (int) R_CR16_NUM32a)
2969 || (ELF32_R_TYPE (irel->r_info) == (int) R_CR16_NUM32)))
2971 *errmsg = _("unsupported reloc type");
2972 bfd_set_error (bfd_error_bad_value);
2976 /* Get the target section referred to by the reloc. */
2977 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
2979 /* A local symbol. */
2980 Elf_Internal_Sym *isym;
2982 /* Read this BFD's local symbols if we haven't done so already. */
2983 if (isymbuf == NULL)
2985 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
2986 if (isymbuf == NULL)
2987 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
2988 symtab_hdr->sh_info, 0,
2990 if (isymbuf == NULL)
2994 isym = isymbuf + ELF32_R_SYM (irel->r_info);
2995 targetsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
3000 struct elf_link_hash_entry *h;
3002 /* An external symbol. */
3003 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
3004 h = elf_sym_hashes (abfd)[indx];
3005 BFD_ASSERT (h != NULL);
3006 if (h->root.type == bfd_link_hash_defined
3007 || h->root.type == bfd_link_hash_defweak)
3008 targetsec = h->root.u.def.section;
3013 bfd_put_32 (abfd, irel->r_offset + datasec->output_offset, p);
3014 memset (p + 4, 0, 4);
3015 if ((ELF32_R_TYPE (irel->r_info) == (int) R_CR16_NUM32a)
3016 && (targetsec != NULL) )
3017 strncpy ((char *) p + 4, targetsec->output_section->name, 4);
3020 if (isymbuf != NULL && symtab_hdr->contents != (unsigned char *) isymbuf)
3022 if (internal_relocs != NULL
3023 && elf_section_data (datasec)->relocs != internal_relocs)
3024 free (internal_relocs);
3028 if (isymbuf != NULL && symtab_hdr->contents != (unsigned char *) isymbuf)
3030 if (internal_relocs != NULL
3031 && elf_section_data (datasec)->relocs != internal_relocs)
3032 free (internal_relocs);
3037 /* Classify relocation types, such that combreloc can sort them
3040 static enum elf_reloc_type_class
3041 _bfd_cr16_elf_reloc_type_class (const Elf_Internal_Rela *rela)
3043 switch ((int) ELF32_R_TYPE (rela->r_info))
3045 case R_CR16_GOT_REGREL20:
3046 case R_CR16_GOTC_REGREL20:
3047 return reloc_class_relative;
3049 return reloc_class_normal;
3053 /* Definitions for setting CR16 target vector. */
3054 #define TARGET_LITTLE_SYM bfd_elf32_cr16_vec
3055 #define TARGET_LITTLE_NAME "elf32-cr16"
3056 #define ELF_ARCH bfd_arch_cr16
3057 #define ELF_MACHINE_CODE EM_CR16
3058 #define ELF_MACHINE_ALT1 EM_CR16_OLD
3059 #define ELF_MAXPAGESIZE 0x1
3060 #define elf_symbol_leading_char '_'
3062 #define bfd_elf32_bfd_reloc_type_lookup elf_cr16_reloc_type_lookup
3063 #define bfd_elf32_bfd_reloc_name_lookup elf_cr16_reloc_name_lookup
3064 #define elf_info_to_howto elf_cr16_info_to_howto
3065 #define elf_info_to_howto_rel 0
3066 #define elf_backend_relocate_section elf32_cr16_relocate_section
3067 #define bfd_elf32_bfd_relax_section elf32_cr16_relax_section
3068 #define bfd_elf32_bfd_get_relocated_section_contents \
3069 elf32_cr16_get_relocated_section_contents
3070 #define elf_backend_gc_mark_hook elf32_cr16_gc_mark_hook
3071 #define elf_backend_gc_sweep_hook elf32_cr16_gc_sweep_hook
3072 #define elf_backend_can_gc_sections 1
3073 #define elf_backend_rela_normal 1
3074 #define elf_backend_check_relocs cr16_elf_check_relocs
3075 /* So we can set bits in e_flags. */
3076 #define elf_backend_final_write_processing \
3077 _bfd_cr16_elf_final_write_processing
3078 #define elf_backend_object_p _bfd_cr16_elf_object_p
3080 #define bfd_elf32_bfd_merge_private_bfd_data \
3081 _bfd_cr16_elf_merge_private_bfd_data
3084 #define bfd_elf32_bfd_link_hash_table_create \
3085 elf32_cr16_link_hash_table_create
3086 #define bfd_elf32_bfd_link_hash_table_free \
3087 elf32_cr16_link_hash_table_free
3089 #define elf_backend_create_dynamic_sections \
3090 _bfd_cr16_elf_create_dynamic_sections
3091 #define elf_backend_adjust_dynamic_symbol \
3092 _bfd_cr16_elf_adjust_dynamic_symbol
3093 #define elf_backend_size_dynamic_sections \
3094 _bfd_cr16_elf_size_dynamic_sections
3095 #define elf_backend_omit_section_dynsym \
3096 ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
3097 #define elf_backend_finish_dynamic_symbol \
3098 _bfd_cr16_elf_finish_dynamic_symbol
3099 #define elf_backend_finish_dynamic_sections \
3100 _bfd_cr16_elf_finish_dynamic_sections
3102 #define elf_backend_reloc_type_class _bfd_cr16_elf_reloc_type_class
3105 #define elf_backend_want_got_plt 1
3106 #define elf_backend_plt_readonly 1
3107 #define elf_backend_want_plt_sym 0
3108 #define elf_backend_got_header_size 12
3110 #include "elf32-target.h"