1 /* ADI Blackfin BFD support for 32-bit ELF.
2 Copyright 2005, 2006, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of BFD, the Binary File Descriptor library.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 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
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
30 /* FUNCTION : bfin_pltpc_reloc
31 ABSTRACT : TODO : figure out how to handle pltpc relocs. */
32 static bfd_reloc_status_type
34 bfd *abfd ATTRIBUTE_UNUSED,
35 arelent *reloc_entry ATTRIBUTE_UNUSED,
36 asymbol *symbol ATTRIBUTE_UNUSED,
37 PTR data ATTRIBUTE_UNUSED,
38 asection *input_section ATTRIBUTE_UNUSED,
39 bfd *output_bfd ATTRIBUTE_UNUSED,
40 char **error_message ATTRIBUTE_UNUSED)
42 bfd_reloc_status_type flag = bfd_reloc_ok;
47 static bfd_reloc_status_type
48 bfin_pcrel24_reloc (bfd *abfd,
52 asection *input_section,
54 char **error_message ATTRIBUTE_UNUSED)
57 bfd_size_type addr = reloc_entry->address;
58 bfd_vma output_base = 0;
59 reloc_howto_type *howto = reloc_entry->howto;
60 asection *output_section;
61 bfd_boolean relocatable = (output_bfd != NULL);
63 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
64 return bfd_reloc_outofrange;
66 if (bfd_is_und_section (symbol->section)
67 && (symbol->flags & BSF_WEAK) == 0
69 return bfd_reloc_undefined;
71 if (bfd_is_com_section (symbol->section))
74 relocation = symbol->value;
76 output_section = symbol->section->output_section;
81 output_base = output_section->vma;
83 if (!relocatable || !strcmp (symbol->name, symbol->section->name))
84 relocation += output_base + symbol->section->output_offset;
86 if (!relocatable && !strcmp (symbol->name, symbol->section->name))
87 relocation += reloc_entry->addend;
89 relocation -= input_section->output_section->vma + input_section->output_offset;
90 relocation -= reloc_entry->address;
92 if (howto->complain_on_overflow != complain_overflow_dont)
94 bfd_reloc_status_type status;
95 status = bfd_check_overflow (howto->complain_on_overflow,
98 bfd_arch_bits_per_address(abfd),
100 if (status != bfd_reloc_ok)
104 /* if rightshift is 1 and the number odd, return error. */
105 if (howto->rightshift && (relocation & 0x01))
107 fprintf(stderr, "relocation should be even number\n");
108 return bfd_reloc_overflow;
111 relocation >>= (bfd_vma) howto->rightshift;
112 /* Shift everything up to where it's going to be used. */
114 relocation <<= (bfd_vma) howto->bitpos;
118 reloc_entry->address += input_section->output_offset;
119 reloc_entry->addend += symbol->section->output_offset;
125 /* We are getting reloc_entry->address 2 byte off from
126 the start of instruction. Assuming absolute postion
127 of the reloc data. But, following code had been written assuming
128 reloc address is starting at begining of instruction.
129 To compensate that I have increased the value of
130 relocation by 1 (effectively 2) and used the addr -2 instead of addr. */
133 x = bfd_get_16 (abfd, (bfd_byte *) data + addr - 2);
134 x = (x & 0xff00) | ((relocation >> 16) & 0xff);
135 bfd_put_16 (abfd, x, (unsigned char *) data + addr - 2);
137 x = bfd_get_16 (abfd, (bfd_byte *) data + addr);
138 x = relocation & 0xFFFF;
139 bfd_put_16 (abfd, x, (unsigned char *) data + addr );
144 static bfd_reloc_status_type
145 bfin_imm16_reloc (bfd *abfd,
146 arelent *reloc_entry,
149 asection *input_section,
151 char **error_message ATTRIBUTE_UNUSED)
153 bfd_vma relocation, x;
154 bfd_size_type reloc_addr = reloc_entry->address;
155 bfd_vma output_base = 0;
156 reloc_howto_type *howto = reloc_entry->howto;
157 asection *output_section;
158 bfd_boolean relocatable = (output_bfd != NULL);
160 /* Is the address of the relocation really within the section? */
161 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
162 return bfd_reloc_outofrange;
164 if (bfd_is_und_section (symbol->section)
165 && (symbol->flags & BSF_WEAK) == 0
167 return bfd_reloc_undefined;
169 output_section = symbol->section->output_section;
170 relocation = symbol->value;
172 /* Convert input-section-relative symbol value to absolute. */
176 output_base = output_section->vma;
178 if (!relocatable || !strcmp (symbol->name, symbol->section->name))
179 relocation += output_base + symbol->section->output_offset;
181 /* Add in supplied addend. */
182 relocation += reloc_entry->addend;
186 reloc_entry->address += input_section->output_offset;
187 reloc_entry->addend += symbol->section->output_offset;
191 reloc_entry->addend = 0;
194 if (howto->complain_on_overflow != complain_overflow_dont)
196 bfd_reloc_status_type flag;
197 flag = bfd_check_overflow (howto->complain_on_overflow,
200 bfd_arch_bits_per_address(abfd),
202 if (flag != bfd_reloc_ok)
206 /* Here the variable relocation holds the final address of the
207 symbol we are relocating against, plus any addend. */
209 relocation >>= (bfd_vma) howto->rightshift;
211 bfd_put_16 (abfd, x, (unsigned char *) data + reloc_addr);
216 static bfd_reloc_status_type
217 bfin_byte4_reloc (bfd *abfd,
218 arelent *reloc_entry,
221 asection *input_section,
223 char **error_message ATTRIBUTE_UNUSED)
225 bfd_vma relocation, x;
226 bfd_size_type addr = reloc_entry->address;
227 bfd_vma output_base = 0;
228 asection *output_section;
229 bfd_boolean relocatable = (output_bfd != NULL);
231 /* Is the address of the relocation really within the section? */
232 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
233 return bfd_reloc_outofrange;
235 if (bfd_is_und_section (symbol->section)
236 && (symbol->flags & BSF_WEAK) == 0
238 return bfd_reloc_undefined;
240 output_section = symbol->section->output_section;
241 relocation = symbol->value;
242 /* Convert input-section-relative symbol value to absolute. */
246 output_base = output_section->vma;
249 && symbol->section->name
250 && !strcmp (symbol->name, symbol->section->name))
253 relocation += output_base + symbol->section->output_offset;
256 relocation += reloc_entry->addend;
260 /* This output will be relocatable ... like ld -r. */
261 reloc_entry->address += input_section->output_offset;
262 reloc_entry->addend += symbol->section->output_offset;
266 reloc_entry->addend = 0;
269 /* Here the variable relocation holds the final address of the
270 symbol we are relocating against, plus any addend. */
271 x = relocation & 0xFFFF0000;
273 bfd_put_16 (abfd, x, (unsigned char *) data + addr + 2);
275 x = relocation & 0x0000FFFF;
276 bfd_put_16 (abfd, x, (unsigned char *) data + addr);
280 /* bfin_bfd_reloc handles the blackfin arithmetic relocations.
281 Use this instead of bfd_perform_relocation. */
282 static bfd_reloc_status_type
283 bfin_bfd_reloc (bfd *abfd,
284 arelent *reloc_entry,
287 asection *input_section,
289 char **error_message ATTRIBUTE_UNUSED)
292 bfd_size_type addr = reloc_entry->address;
293 bfd_vma output_base = 0;
294 reloc_howto_type *howto = reloc_entry->howto;
295 asection *output_section;
296 bfd_boolean relocatable = (output_bfd != NULL);
298 /* Is the address of the relocation really within the section? */
299 if (reloc_entry->address > bfd_get_section_limit (abfd, input_section))
300 return bfd_reloc_outofrange;
302 if (bfd_is_und_section (symbol->section)
303 && (symbol->flags & BSF_WEAK) == 0
305 return bfd_reloc_undefined;
307 /* Get symbol value. (Common symbols are special.) */
308 if (bfd_is_com_section (symbol->section))
311 relocation = symbol->value;
313 output_section = symbol->section->output_section;
315 /* Convert input-section-relative symbol value to absolute. */
319 output_base = output_section->vma;
321 if (!relocatable || !strcmp (symbol->name, symbol->section->name))
322 relocation += output_base + symbol->section->output_offset;
324 if (!relocatable && !strcmp (symbol->name, symbol->section->name))
326 /* Add in supplied addend. */
327 relocation += reloc_entry->addend;
330 /* Here the variable relocation holds the final address of the
331 symbol we are relocating against, plus any addend. */
333 if (howto->pc_relative == TRUE)
335 relocation -= input_section->output_section->vma + input_section->output_offset;
337 if (howto->pcrel_offset == TRUE)
338 relocation -= reloc_entry->address;
343 reloc_entry->address += input_section->output_offset;
344 reloc_entry->addend += symbol->section->output_offset;
347 if (howto->complain_on_overflow != complain_overflow_dont)
349 bfd_reloc_status_type status;
351 status = bfd_check_overflow (howto->complain_on_overflow,
354 bfd_arch_bits_per_address(abfd),
356 if (status != bfd_reloc_ok)
360 /* If rightshift is 1 and the number odd, return error. */
361 if (howto->rightshift && (relocation & 0x01))
363 fprintf(stderr, "relocation should be even number\n");
364 return bfd_reloc_overflow;
367 relocation >>= (bfd_vma) howto->rightshift;
369 /* Shift everything up to where it's going to be used. */
371 relocation <<= (bfd_vma) howto->bitpos;
374 x = ( (x & ~howto->dst_mask) | (relocation & howto->dst_mask))
376 /* handle 8 and 16 bit relocations here. */
381 char x = bfd_get_8 (abfd, (char *) data + addr);
383 bfd_put_8 (abfd, x, (unsigned char *) data + addr);
389 unsigned short x = bfd_get_16 (abfd, (bfd_byte *) data + addr);
391 bfd_put_16 (abfd, (bfd_vma) x, (unsigned char *) data + addr);
396 return bfd_reloc_other;
402 /* HOWTO Table for blackfin.
403 Blackfin relocations are fairly complicated.
404 Some of the salient features are
405 a. Even numbered offsets. A number of (not all) relocations are
406 even numbered. This means that the rightmost bit is not stored.
407 Needs to right shift by 1 and check to see if value is not odd
408 b. A relocation can be an expression. An expression takes on
409 a variety of relocations arranged in a stack.
410 As a result, we cannot use the standard generic function as special
411 function. We will have our own, which is very similar to the standard
412 generic function except that it understands how to get the value from
413 the relocation stack. . */
415 #define BFIN_RELOC_MIN 0
416 #define BFIN_RELOC_MAX 0x21
417 #define BFIN_GNUEXT_RELOC_MIN 0x40
418 #define BFIN_GNUEXT_RELOC_MAX 0x43
419 #define BFIN_ARELOC_MIN 0xE0
420 #define BFIN_ARELOC_MAX 0xF3
422 static reloc_howto_type bfin_howto_table [] =
424 /* This reloc does nothing. . */
425 HOWTO (R_BFIN_UNUSED0, /* type. */
427 2, /* size (0 = byte, 1 = short, 2 = long). */
429 FALSE, /* pc_relative. */
431 complain_overflow_bitfield, /* complain_on_overflow. */
432 bfd_elf_generic_reloc, /* special_function. */
433 "R_BFIN_UNUSED0", /* name. */
434 FALSE, /* partial_inplace. */
437 FALSE), /* pcrel_offset. */
439 HOWTO (R_BFIN_PCREL5M2, /* type. */
441 1, /* size (0 = byte, 1 = short, 2 = long).. */
443 TRUE, /* pc_relative. */
445 complain_overflow_unsigned, /* complain_on_overflow. */
446 bfin_bfd_reloc, /* special_function. */
447 "R_BFIN_PCREL5M2", /* name. */
448 FALSE, /* partial_inplace. */
450 0x0000000F, /* dst_mask. */
451 FALSE), /* pcrel_offset. */
453 HOWTO (R_BFIN_UNUSED1, /* type. */
455 2, /* size (0 = byte, 1 = short, 2 = long). */
457 FALSE, /* pc_relative. */
459 complain_overflow_bitfield, /* complain_on_overflow. */
460 bfd_elf_generic_reloc, /* special_function. */
461 "R_BFIN_UNUSED1", /* name. */
462 FALSE, /* partial_inplace. */
465 FALSE), /* pcrel_offset. */
467 HOWTO (R_BFIN_PCREL10, /* type. */
469 1, /* size (0 = byte, 1 = short, 2 = long). */
471 TRUE, /* pc_relative. */
473 complain_overflow_signed, /* complain_on_overflow. */
474 bfin_bfd_reloc, /* special_function. */
475 "R_BFIN_PCREL10", /* name. */
476 FALSE, /* partial_inplace. */
478 0x000003FF, /* dst_mask. */
479 TRUE), /* pcrel_offset. */
481 HOWTO (R_BFIN_PCREL12_JUMP, /* type. */
483 /* the offset is actually 13 bit
484 aligned on a word boundary so
485 only 12 bits have to be used.
486 Right shift the rightmost bit.. */
487 1, /* size (0 = byte, 1 = short, 2 = long). */
489 TRUE, /* pc_relative. */
491 complain_overflow_signed, /* complain_on_overflow. */
492 bfin_bfd_reloc, /* special_function. */
493 "R_BFIN_PCREL12_JUMP", /* name. */
494 FALSE, /* partial_inplace. */
496 0x0FFF, /* dst_mask. */
497 TRUE), /* pcrel_offset. */
499 HOWTO (R_BFIN_RIMM16, /* type. */
501 1, /* size (0 = byte, 1 = short, 2 = long). */
503 FALSE, /* pc_relative. */
505 complain_overflow_signed, /* complain_on_overflow. */
506 bfin_imm16_reloc, /* special_function. */
507 "R_BFIN_RIMM16", /* name. */
508 FALSE, /* partial_inplace. */
510 0x0000FFFF, /* dst_mask. */
511 TRUE), /* pcrel_offset. */
513 HOWTO (R_BFIN_LUIMM16, /* type. */
515 1, /* size (0 = byte, 1 = short, 2 = long). */
517 FALSE, /* pc_relative. */
519 complain_overflow_dont, /* complain_on_overflow. */
520 bfin_imm16_reloc, /* special_function. */
521 "R_BFIN_LUIMM16", /* name. */
522 FALSE, /* partial_inplace. */
524 0x0000FFFF, /* dst_mask. */
525 TRUE), /* pcrel_offset. */
527 HOWTO (R_BFIN_HUIMM16, /* type. */
528 16, /* rightshift. */
529 1, /* size (0 = byte, 1 = short, 2 = long). */
531 FALSE, /* pc_relative. */
533 complain_overflow_unsigned, /* complain_on_overflow. */
534 bfin_imm16_reloc, /* special_function. */
535 "R_BFIN_HUIMM16", /* name. */
536 FALSE, /* partial_inplace. */
538 0x0000FFFF, /* dst_mask. */
539 TRUE), /* pcrel_offset. */
541 HOWTO (R_BFIN_PCREL12_JUMP_S, /* type. */
543 1, /* size (0 = byte, 1 = short, 2 = long). */
545 TRUE, /* pc_relative. */
547 complain_overflow_signed, /* complain_on_overflow. */
548 bfin_bfd_reloc, /* special_function. */
549 "R_BFIN_PCREL12_JUMP_S", /* name. */
550 FALSE, /* partial_inplace. */
552 0x00000FFF, /* dst_mask. */
553 TRUE), /* pcrel_offset. */
555 HOWTO (R_BFIN_PCREL24_JUMP_X, /* type. */
557 2, /* size (0 = byte, 1 = short, 2 = long). */
559 TRUE, /* pc_relative. */
561 complain_overflow_signed, /* complain_on_overflow. */
562 bfin_pcrel24_reloc, /* special_function. */
563 "R_BFIN_PCREL24_JUMP_X", /* name. */
564 FALSE, /* partial_inplace. */
566 0x00FFFFFF, /* dst_mask. */
567 TRUE), /* pcrel_offset. */
569 HOWTO (R_BFIN_PCREL24, /* type. */
571 2, /* size (0 = byte, 1 = short, 2 = long). */
573 TRUE, /* pc_relative. */
575 complain_overflow_signed, /* complain_on_overflow. */
576 bfin_pcrel24_reloc, /* special_function. */
577 "R_BFIN_PCREL24", /* name. */
578 FALSE, /* partial_inplace. */
580 0x00FFFFFF, /* dst_mask. */
581 TRUE), /* pcrel_offset. */
583 HOWTO (R_BFIN_UNUSEDB, /* type. */
585 2, /* size (0 = byte, 1 = short, 2 = long). */
587 FALSE, /* pc_relative. */
589 complain_overflow_dont, /* complain_on_overflow. */
590 bfd_elf_generic_reloc, /* special_function. */
591 "R_BFIN_UNUSEDB", /* name. */
592 FALSE, /* partial_inplace. */
595 FALSE), /* pcrel_offset. */
597 HOWTO (R_BFIN_UNUSEDC, /* type. */
599 2, /* size (0 = byte, 1 = short, 2 = long). */
601 FALSE, /* pc_relative. */
603 complain_overflow_dont, /* complain_on_overflow. */
604 bfd_elf_generic_reloc, /* special_function. */
605 "R_BFIN_UNUSEDC", /* name. */
606 FALSE, /* partial_inplace. */
609 FALSE), /* pcrel_offset. */
611 HOWTO (R_BFIN_PCREL24_JUMP_L, /* type. */
613 2, /* size (0 = byte, 1 = short, 2 = long). */
615 TRUE, /* pc_relative. */
617 complain_overflow_signed, /* complain_on_overflow. */
618 bfin_pcrel24_reloc, /* special_function. */
619 "R_BFIN_PCREL24_JUMP_L", /* name. */
620 FALSE, /* partial_inplace. */
622 0x00FFFFFF, /* dst_mask. */
623 TRUE), /* pcrel_offset. */
625 HOWTO (R_BFIN_PCREL24_CALL_X, /* type. */
627 2, /* size (0 = byte, 1 = short, 2 = long). */
629 TRUE, /* pc_relative. */
631 complain_overflow_signed, /* complain_on_overflow. */
632 bfin_pcrel24_reloc, /* special_function. */
633 "R_BFIN_PCREL24_CALL_X", /* name. */
634 FALSE, /* partial_inplace. */
636 0x00FFFFFF, /* dst_mask. */
637 TRUE), /* pcrel_offset. */
639 HOWTO (R_BFIN_VAR_EQ_SYMB, /* type. */
641 2, /* size (0 = byte, 1 = short, 2 = long). */
643 FALSE, /* pc_relative. */
645 complain_overflow_bitfield, /* complain_on_overflow. */
646 bfin_bfd_reloc, /* special_function. */
647 "R_BFIN_VAR_EQ_SYMB", /* name. */
648 FALSE, /* partial_inplace. */
651 FALSE), /* pcrel_offset. */
653 HOWTO (R_BFIN_BYTE_DATA, /* type. */
655 0, /* size (0 = byte, 1 = short, 2 = long). */
657 FALSE, /* pc_relative. */
659 complain_overflow_unsigned, /* complain_on_overflow. */
660 bfin_bfd_reloc, /* special_function. */
661 "R_BFIN_BYTE_DATA", /* name. */
662 FALSE, /* partial_inplace. */
664 0xFF, /* dst_mask. */
665 TRUE), /* pcrel_offset. */
667 HOWTO (R_BFIN_BYTE2_DATA, /* type. */
669 1, /* size (0 = byte, 1 = short, 2 = long). */
671 FALSE, /* pc_relative. */
673 complain_overflow_signed, /* complain_on_overflow. */
674 bfin_bfd_reloc, /* special_function. */
675 "R_BFIN_BYTE2_DATA", /* name. */
676 FALSE, /* partial_inplace. */
678 0xFFFF, /* dst_mask. */
679 TRUE), /* pcrel_offset. */
681 HOWTO (R_BFIN_BYTE4_DATA, /* type. */
683 2, /* size (0 = byte, 1 = short, 2 = long). */
685 FALSE, /* pc_relative. */
687 complain_overflow_unsigned, /* complain_on_overflow. */
688 bfin_byte4_reloc, /* special_function. */
689 "R_BFIN_BYTE4_DATA", /* name. */
690 FALSE, /* partial_inplace. */
692 0xFFFFFFFF, /* dst_mask. */
693 TRUE), /* pcrel_offset. */
695 HOWTO (R_BFIN_PCREL11, /* type. */
697 1, /* size (0 = byte, 1 = short, 2 = long). */
699 TRUE, /* pc_relative. */
701 complain_overflow_unsigned, /* complain_on_overflow. */
702 bfin_bfd_reloc, /* special_function. */
703 "R_BFIN_PCREL11", /* name. */
704 FALSE, /* partial_inplace. */
706 0x000003FF, /* dst_mask. */
707 FALSE), /* pcrel_offset. */
710 /* A 18-bit signed operand with the GOT offset for the address of
712 HOWTO (R_BFIN_GOT17M4, /* type */
714 1, /* size (0 = byte, 1 = short, 2 = long) */
716 FALSE, /* pc_relative */
718 complain_overflow_signed, /* complain_on_overflow */
719 bfd_elf_generic_reloc, /* special_function */
720 "R_BFIN_GOT17M4", /* name */
721 FALSE, /* partial_inplace */
722 0xffff, /* src_mask */
723 0xffff, /* dst_mask */
724 FALSE), /* pcrel_offset */
726 /* The upper 16 bits of the GOT offset for the address of the
728 HOWTO (R_BFIN_GOTHI, /* type */
730 1, /* size (0 = byte, 1 = short, 2 = long) */
732 FALSE, /* pc_relative */
734 complain_overflow_dont, /* complain_on_overflow */
735 bfd_elf_generic_reloc, /* special_function */
736 "R_BFIN_GOTHI", /* name */
737 FALSE, /* partial_inplace */
738 0xffff, /* src_mask */
739 0xffff, /* dst_mask */
740 FALSE), /* pcrel_offset */
742 /* The lower 16 bits of the GOT offset for the address of the
744 HOWTO (R_BFIN_GOTLO, /* type */
746 1, /* size (0 = byte, 1 = short, 2 = long) */
748 FALSE, /* pc_relative */
750 complain_overflow_dont, /* complain_on_overflow */
751 bfd_elf_generic_reloc, /* special_function */
752 "R_BFIN_GOTLO", /* name */
753 FALSE, /* partial_inplace */
754 0xffff, /* src_mask */
755 0xffff, /* dst_mask */
756 FALSE), /* pcrel_offset */
758 /* The 32-bit address of the canonical descriptor of a function. */
759 HOWTO (R_BFIN_FUNCDESC, /* type */
761 2, /* size (0 = byte, 1 = short, 2 = long) */
763 FALSE, /* pc_relative */
765 complain_overflow_bitfield, /* complain_on_overflow */
766 bfd_elf_generic_reloc, /* special_function */
767 "R_BFIN_FUNCDESC", /* name */
768 FALSE, /* partial_inplace */
769 0xffffffff, /* src_mask */
770 0xffffffff, /* dst_mask */
771 FALSE), /* pcrel_offset */
773 /* A 12-bit signed operand with the GOT offset for the address of
774 canonical descriptor of a function. */
775 HOWTO (R_BFIN_FUNCDESC_GOT17M4, /* type */
777 1, /* size (0 = byte, 1 = short, 2 = long) */
779 FALSE, /* pc_relative */
781 complain_overflow_signed, /* complain_on_overflow */
782 bfd_elf_generic_reloc, /* special_function */
783 "R_BFIN_FUNCDESC_GOT17M4", /* name */
784 FALSE, /* partial_inplace */
785 0xffff, /* src_mask */
786 0xffff, /* dst_mask */
787 FALSE), /* pcrel_offset */
789 /* The upper 16 bits of the GOT offset for the address of the
790 canonical descriptor of a function. */
791 HOWTO (R_BFIN_FUNCDESC_GOTHI, /* type */
793 1, /* size (0 = byte, 1 = short, 2 = long) */
795 FALSE, /* pc_relative */
797 complain_overflow_dont, /* complain_on_overflow */
798 bfd_elf_generic_reloc, /* special_function */
799 "R_BFIN_FUNCDESC_GOTHI", /* name */
800 FALSE, /* partial_inplace */
801 0xffff, /* src_mask */
802 0xffff, /* dst_mask */
803 FALSE), /* pcrel_offset */
805 /* The lower 16 bits of the GOT offset for the address of the
806 canonical descriptor of a function. */
807 HOWTO (R_BFIN_FUNCDESC_GOTLO, /* type */
809 1, /* size (0 = byte, 1 = short, 2 = long) */
811 FALSE, /* pc_relative */
813 complain_overflow_dont, /* complain_on_overflow */
814 bfd_elf_generic_reloc, /* special_function */
815 "R_BFIN_FUNCDESC_GOTLO", /* name */
816 FALSE, /* partial_inplace */
817 0xffff, /* src_mask */
818 0xffff, /* dst_mask */
819 FALSE), /* pcrel_offset */
821 /* The 32-bit address of the canonical descriptor of a function. */
822 HOWTO (R_BFIN_FUNCDESC_VALUE, /* type */
824 2, /* size (0 = byte, 1 = short, 2 = long) */
826 FALSE, /* pc_relative */
828 complain_overflow_bitfield, /* complain_on_overflow */
829 bfd_elf_generic_reloc, /* special_function */
830 "R_BFIN_FUNCDESC_VALUE", /* name */
831 FALSE, /* partial_inplace */
832 0xffffffff, /* src_mask */
833 0xffffffff, /* dst_mask */
834 FALSE), /* pcrel_offset */
836 /* A 12-bit signed operand with the GOT offset for the address of
837 canonical descriptor of a function. */
838 HOWTO (R_BFIN_FUNCDESC_GOTOFF17M4, /* type */
840 1, /* size (0 = byte, 1 = short, 2 = long) */
842 FALSE, /* pc_relative */
844 complain_overflow_signed, /* complain_on_overflow */
845 bfd_elf_generic_reloc, /* special_function */
846 "R_BFIN_FUNCDESC_GOTOFF17M4", /* name */
847 FALSE, /* partial_inplace */
848 0xffff, /* src_mask */
849 0xffff, /* dst_mask */
850 FALSE), /* pcrel_offset */
852 /* The upper 16 bits of the GOT offset for the address of the
853 canonical descriptor of a function. */
854 HOWTO (R_BFIN_FUNCDESC_GOTOFFHI, /* type */
856 1, /* size (0 = byte, 1 = short, 2 = long) */
858 FALSE, /* pc_relative */
860 complain_overflow_dont, /* complain_on_overflow */
861 bfd_elf_generic_reloc, /* special_function */
862 "R_BFIN_FUNCDESC_GOTOFFHI", /* name */
863 FALSE, /* partial_inplace */
864 0xffff, /* src_mask */
865 0xffff, /* dst_mask */
866 FALSE), /* pcrel_offset */
868 /* The lower 16 bits of the GOT offset for the address of the
869 canonical descriptor of a function. */
870 HOWTO (R_BFIN_FUNCDESC_GOTOFFLO, /* type */
872 1, /* size (0 = byte, 1 = short, 2 = long) */
874 FALSE, /* pc_relative */
876 complain_overflow_dont, /* complain_on_overflow */
877 bfd_elf_generic_reloc, /* special_function */
878 "R_BFIN_FUNCDESC_GOTOFFLO", /* name */
879 FALSE, /* partial_inplace */
880 0xffff, /* src_mask */
881 0xffff, /* dst_mask */
882 FALSE), /* pcrel_offset */
884 /* A 12-bit signed operand with the GOT offset for the address of
886 HOWTO (R_BFIN_GOTOFF17M4, /* type */
888 1, /* size (0 = byte, 1 = short, 2 = long) */
890 FALSE, /* pc_relative */
892 complain_overflow_signed, /* complain_on_overflow */
893 bfd_elf_generic_reloc, /* special_function */
894 "R_BFIN_GOTOFF17M4", /* name */
895 FALSE, /* partial_inplace */
896 0xffff, /* src_mask */
897 0xffff, /* dst_mask */
898 FALSE), /* pcrel_offset */
900 /* The upper 16 bits of the GOT offset for the address of the
902 HOWTO (R_BFIN_GOTOFFHI, /* type */
904 1, /* size (0 = byte, 1 = short, 2 = long) */
906 FALSE, /* pc_relative */
908 complain_overflow_dont, /* complain_on_overflow */
909 bfd_elf_generic_reloc, /* special_function */
910 "R_BFIN_GOTOFFHI", /* name */
911 FALSE, /* partial_inplace */
912 0xffff, /* src_mask */
913 0xffff, /* dst_mask */
914 FALSE), /* pcrel_offset */
916 /* The lower 16 bits of the GOT offset for the address of the
918 HOWTO (R_BFIN_GOTOFFLO, /* type */
920 1, /* size (0 = byte, 1 = short, 2 = long) */
922 FALSE, /* pc_relative */
924 complain_overflow_dont, /* complain_on_overflow */
925 bfd_elf_generic_reloc, /* special_function */
926 "R_BFIN_GOTOFFLO", /* name */
927 FALSE, /* partial_inplace */
928 0xffff, /* src_mask */
929 0xffff, /* dst_mask */
930 FALSE), /* pcrel_offset */
933 static reloc_howto_type bfin_gnuext_howto_table [] =
935 HOWTO (R_BFIN_PLTPC, /* type. */
937 1, /* size (0 = byte, 1 = short, 2 = long). */
939 FALSE, /* pc_relative. */
941 complain_overflow_bitfield, /* complain_on_overflow. */
942 bfin_pltpc_reloc, /* special_function. */
943 "R_BFIN_PLTPC", /* name. */
944 FALSE, /* partial_inplace. */
945 0xffff, /* src_mask. */
946 0xffff, /* dst_mask. */
947 FALSE), /* pcrel_offset. */
949 HOWTO (R_BFIN_GOT, /* type. */
951 1, /* size (0 = byte, 1 = short, 2 = long). */
953 FALSE, /* pc_relative. */
955 complain_overflow_bitfield, /* complain_on_overflow. */
956 bfd_elf_generic_reloc, /* special_function. */
957 "R_BFIN_GOT", /* name. */
958 FALSE, /* partial_inplace. */
959 0x7fff, /* src_mask. */
960 0x7fff, /* dst_mask. */
961 FALSE), /* pcrel_offset. */
963 /* GNU extension to record C++ vtable hierarchy. */
964 HOWTO (R_BFIN_GNU_VTINHERIT, /* type. */
966 2, /* size (0 = byte, 1 = short, 2 = long). */
968 FALSE, /* pc_relative. */
970 complain_overflow_dont, /* complain_on_overflow. */
971 NULL, /* special_function. */
972 "R_BFIN_GNU_VTINHERIT", /* name. */
973 FALSE, /* partial_inplace. */
976 FALSE), /* pcrel_offset. */
978 /* GNU extension to record C++ vtable member usage. */
979 HOWTO (R_BFIN_GNU_VTENTRY, /* type. */
981 2, /* size (0 = byte, 1 = short, 2 = long). */
983 FALSE, /* pc_relative. */
985 complain_overflow_dont, /* complain_on_overflow. */
986 _bfd_elf_rel_vtable_reloc_fn, /* special_function. */
987 "R_BFIN_GNU_VTENTRY", /* name. */
988 FALSE, /* partial_inplace. */
991 FALSE) /* pcrel_offset. */
994 struct bfin_reloc_map
996 bfd_reloc_code_real_type bfd_reloc_val;
997 unsigned int bfin_reloc_val;
1000 static const struct bfin_reloc_map bfin_reloc_map [] =
1002 { BFD_RELOC_NONE, R_BFIN_UNUSED0 },
1003 { BFD_RELOC_BFIN_5_PCREL, R_BFIN_PCREL5M2 },
1004 { BFD_RELOC_NONE, R_BFIN_UNUSED1 },
1005 { BFD_RELOC_BFIN_10_PCREL, R_BFIN_PCREL10 },
1006 { BFD_RELOC_BFIN_12_PCREL_JUMP, R_BFIN_PCREL12_JUMP },
1007 { BFD_RELOC_BFIN_16_IMM, R_BFIN_RIMM16 },
1008 { BFD_RELOC_BFIN_16_LOW, R_BFIN_LUIMM16 },
1009 { BFD_RELOC_BFIN_16_HIGH, R_BFIN_HUIMM16 },
1010 { BFD_RELOC_BFIN_12_PCREL_JUMP_S, R_BFIN_PCREL12_JUMP_S },
1011 { BFD_RELOC_24_PCREL, R_BFIN_PCREL24 },
1012 { BFD_RELOC_24_PCREL, R_BFIN_PCREL24 },
1013 { BFD_RELOC_BFIN_24_PCREL_JUMP_L, R_BFIN_PCREL24_JUMP_L },
1014 { BFD_RELOC_NONE, R_BFIN_UNUSEDB },
1015 { BFD_RELOC_NONE, R_BFIN_UNUSEDC },
1016 { BFD_RELOC_BFIN_24_PCREL_CALL_X, R_BFIN_PCREL24_CALL_X },
1017 { BFD_RELOC_8, R_BFIN_BYTE_DATA },
1018 { BFD_RELOC_16, R_BFIN_BYTE2_DATA },
1019 { BFD_RELOC_32, R_BFIN_BYTE4_DATA },
1020 { BFD_RELOC_BFIN_11_PCREL, R_BFIN_PCREL11 },
1021 { BFD_RELOC_BFIN_GOT, R_BFIN_GOT },
1022 { BFD_RELOC_BFIN_PLTPC, R_BFIN_PLTPC },
1024 { BFD_RELOC_BFIN_GOT17M4, R_BFIN_GOT17M4 },
1025 { BFD_RELOC_BFIN_GOTHI, R_BFIN_GOTHI },
1026 { BFD_RELOC_BFIN_GOTLO, R_BFIN_GOTLO },
1027 { BFD_RELOC_BFIN_FUNCDESC, R_BFIN_FUNCDESC },
1028 { BFD_RELOC_BFIN_FUNCDESC_GOT17M4, R_BFIN_FUNCDESC_GOT17M4 },
1029 { BFD_RELOC_BFIN_FUNCDESC_GOTHI, R_BFIN_FUNCDESC_GOTHI },
1030 { BFD_RELOC_BFIN_FUNCDESC_GOTLO, R_BFIN_FUNCDESC_GOTLO },
1031 { BFD_RELOC_BFIN_FUNCDESC_VALUE, R_BFIN_FUNCDESC_VALUE },
1032 { BFD_RELOC_BFIN_FUNCDESC_GOTOFF17M4, R_BFIN_FUNCDESC_GOTOFF17M4 },
1033 { BFD_RELOC_BFIN_FUNCDESC_GOTOFFHI, R_BFIN_FUNCDESC_GOTOFFHI },
1034 { BFD_RELOC_BFIN_FUNCDESC_GOTOFFLO, R_BFIN_FUNCDESC_GOTOFFLO },
1035 { BFD_RELOC_BFIN_GOTOFF17M4, R_BFIN_GOTOFF17M4 },
1036 { BFD_RELOC_BFIN_GOTOFFHI, R_BFIN_GOTOFFHI },
1037 { BFD_RELOC_BFIN_GOTOFFLO, R_BFIN_GOTOFFLO },
1039 { BFD_RELOC_VTABLE_INHERIT, R_BFIN_GNU_VTINHERIT },
1040 { BFD_RELOC_VTABLE_ENTRY, R_BFIN_GNU_VTENTRY },
1045 bfin_info_to_howto (bfd *abfd ATTRIBUTE_UNUSED,
1047 Elf_Internal_Rela *dst)
1049 unsigned int r_type;
1051 r_type = ELF32_R_TYPE (dst->r_info);
1053 if (r_type <= BFIN_RELOC_MAX)
1054 cache_ptr->howto = &bfin_howto_table [r_type];
1056 else if (r_type >= BFIN_GNUEXT_RELOC_MIN && r_type <= BFIN_GNUEXT_RELOC_MAX)
1057 cache_ptr->howto = &bfin_gnuext_howto_table [r_type - BFIN_GNUEXT_RELOC_MIN];
1060 cache_ptr->howto = (reloc_howto_type *) NULL;
1063 /* Given a BFD reloc type, return the howto. */
1064 static reloc_howto_type *
1065 bfin_bfd_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
1066 bfd_reloc_code_real_type code)
1069 unsigned int r_type = BFIN_RELOC_MIN;
1071 for (i = sizeof (bfin_reloc_map) / sizeof (bfin_reloc_map[0]); --i;)
1072 if (bfin_reloc_map[i].bfd_reloc_val == code)
1073 r_type = bfin_reloc_map[i].bfin_reloc_val;
1075 if (r_type <= BFIN_RELOC_MAX && r_type > BFIN_RELOC_MIN)
1076 return &bfin_howto_table [r_type];
1078 else if (r_type >= BFIN_GNUEXT_RELOC_MIN && r_type <= BFIN_GNUEXT_RELOC_MAX)
1079 return &bfin_gnuext_howto_table [r_type - BFIN_GNUEXT_RELOC_MIN];
1081 return (reloc_howto_type *) NULL;
1084 static reloc_howto_type *
1085 bfin_bfd_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED,
1091 i < (sizeof (bfin_howto_table)
1092 / sizeof (bfin_howto_table[0]));
1094 if (bfin_howto_table[i].name != NULL
1095 && strcasecmp (bfin_howto_table[i].name, r_name) == 0)
1096 return &bfin_howto_table[i];
1099 i < (sizeof (bfin_gnuext_howto_table)
1100 / sizeof (bfin_gnuext_howto_table[0]));
1102 if (bfin_gnuext_howto_table[i].name != NULL
1103 && strcasecmp (bfin_gnuext_howto_table[i].name, r_name) == 0)
1104 return &bfin_gnuext_howto_table[i];
1109 /* Given a bfin relocation type, return the howto. */
1110 static reloc_howto_type *
1111 bfin_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED,
1112 unsigned int r_type)
1114 if (r_type <= BFIN_RELOC_MAX)
1115 return &bfin_howto_table [r_type];
1117 else if (r_type >= BFIN_GNUEXT_RELOC_MIN && r_type <= BFIN_GNUEXT_RELOC_MAX)
1118 return &bfin_gnuext_howto_table [r_type - BFIN_GNUEXT_RELOC_MIN];
1120 return (reloc_howto_type *) NULL;
1123 /* Return TRUE if the name is a local label.
1124 bfin local labels begin with L$. */
1126 bfin_is_local_label_name (
1130 if (label[0] == 'L' && label[1] == '$' )
1133 return _bfd_elf_is_local_label_name (abfd, label);
1136 /* Look through the relocs for a section during the first phase, and
1137 allocate space in the global offset table or procedure linkage
1141 bfin_check_relocs (bfd * abfd,
1142 struct bfd_link_info *info,
1144 const Elf_Internal_Rela *relocs)
1147 Elf_Internal_Shdr *symtab_hdr;
1148 struct elf_link_hash_entry **sym_hashes;
1149 bfd_signed_vma *local_got_refcounts;
1150 const Elf_Internal_Rela *rel;
1151 const Elf_Internal_Rela *rel_end;
1154 if (info->relocatable)
1157 dynobj = elf_hash_table (info)->dynobj;
1158 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1159 sym_hashes = elf_sym_hashes (abfd);
1160 local_got_refcounts = elf_local_got_refcounts (abfd);
1165 rel_end = relocs + sec->reloc_count;
1166 for (rel = relocs; rel < rel_end; rel++)
1168 unsigned long r_symndx;
1169 struct elf_link_hash_entry *h;
1171 r_symndx = ELF32_R_SYM (rel->r_info);
1172 if (r_symndx < symtab_hdr->sh_info)
1175 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1177 switch (ELF32_R_TYPE (rel->r_info))
1179 /* This relocation describes the C++ object vtable hierarchy.
1180 Reconstruct it for later use during GC. */
1181 case R_BFIN_GNU_VTINHERIT:
1182 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
1186 /* This relocation describes which C++ vtable entries
1187 are actually used. Record for later use during GC. */
1188 case R_BFIN_GNU_VTENTRY:
1189 BFD_ASSERT (h != NULL);
1191 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
1197 && strcmp (h->root.root.string, "__GLOBAL_OFFSET_TABLE_") == 0)
1203 /* Create the .got section. */
1204 elf_hash_table (info)->dynobj = dynobj = abfd;
1205 if (!_bfd_elf_create_got_section (dynobj, info))
1211 sgot = bfd_get_section_by_name (dynobj, ".got");
1212 BFD_ASSERT (sgot != NULL);
1215 if (srelgot == NULL && (h != NULL || info->shared))
1217 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
1218 if (srelgot == NULL)
1220 flagword flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS
1221 | SEC_IN_MEMORY | SEC_LINKER_CREATED
1223 srelgot = bfd_make_section_with_flags (dynobj, ".rela.got",
1226 || !bfd_set_section_alignment (dynobj, srelgot, 2))
1233 if (h->got.refcount == 0)
1235 /* Make sure this symbol is output as a dynamic symbol. */
1236 if (h->dynindx == -1 && !h->forced_local)
1238 if (!bfd_elf_link_record_dynamic_symbol (info, h))
1242 /* Allocate space in the .got section. */
1244 /* Allocate relocation space. */
1245 srelgot->size += sizeof (Elf32_External_Rela);
1251 /* This is a global offset table entry for a local symbol. */
1252 if (local_got_refcounts == NULL)
1256 size = symtab_hdr->sh_info;
1257 size *= sizeof (bfd_signed_vma);
1258 local_got_refcounts = ((bfd_signed_vma *)
1259 bfd_zalloc (abfd, size));
1260 if (local_got_refcounts == NULL)
1262 elf_local_got_refcounts (abfd) = local_got_refcounts;
1264 if (local_got_refcounts[r_symndx] == 0)
1269 /* If we are generating a shared object, we need to
1270 output a R_68K_RELATIVE reloc so that the dynamic
1271 linker can adjust this GOT entry. */
1272 srelgot->size += sizeof (Elf32_External_Rela);
1275 local_got_refcounts[r_symndx]++;
1287 static enum elf_reloc_type_class
1288 elf32_bfin_reloc_type_class (const Elf_Internal_Rela * rela)
1290 switch ((int) ELF32_R_TYPE (rela->r_info))
1293 return reloc_class_normal;
1297 static bfd_reloc_status_type
1298 bfin_final_link_relocate (Elf_Internal_Rela *rel, reloc_howto_type *howto,
1299 bfd *input_bfd, asection *input_section,
1300 bfd_byte *contents, bfd_vma address,
1301 bfd_vma value, bfd_vma addend)
1303 int r_type = ELF32_R_TYPE (rel->r_info);
1305 if (r_type == R_BFIN_PCREL24 || r_type == R_BFIN_PCREL24_JUMP_L)
1307 bfd_reloc_status_type r = bfd_reloc_ok;
1310 if (address > bfd_get_section_limit (input_bfd, input_section))
1311 return bfd_reloc_outofrange;
1315 /* Perform usual pc-relative correction. */
1316 value -= input_section->output_section->vma + input_section->output_offset;
1319 /* We are getting reloc_entry->address 2 byte off from
1320 the start of instruction. Assuming absolute postion
1321 of the reloc data. But, following code had been written assuming
1322 reloc address is starting at begining of instruction.
1323 To compensate that I have increased the value of
1324 relocation by 1 (effectively 2) and used the addr -2 instead of addr. */
1329 if ((value & 0xFF000000) != 0
1330 && (value & 0xFF000000) != 0xFF000000)
1331 r = bfd_reloc_overflow;
1335 x = bfd_get_16 (input_bfd, contents + address);
1336 x = (x & 0xff00) | ((value >> 16) & 0xff);
1337 bfd_put_16 (input_bfd, x, contents + address);
1339 x = bfd_get_16 (input_bfd, contents + address + 2);
1341 bfd_put_16 (input_bfd, x, contents + address + 2);
1345 return _bfd_final_link_relocate (howto, input_bfd, input_section, contents,
1346 rel->r_offset, value, addend);
1351 bfin_relocate_section (bfd * output_bfd,
1352 struct bfd_link_info *info,
1354 asection * input_section,
1355 bfd_byte * contents,
1356 Elf_Internal_Rela * relocs,
1357 Elf_Internal_Sym * local_syms,
1358 asection ** local_sections)
1361 Elf_Internal_Shdr *symtab_hdr;
1362 struct elf_link_hash_entry **sym_hashes;
1363 bfd_vma *local_got_offsets;
1365 Elf_Internal_Rela *rel;
1366 Elf_Internal_Rela *relend;
1369 dynobj = elf_hash_table (info)->dynobj;
1370 symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr;
1371 sym_hashes = elf_sym_hashes (input_bfd);
1372 local_got_offsets = elf_local_got_offsets (input_bfd);
1377 relend = relocs + input_section->reloc_count;
1378 for (; rel < relend; rel++, i++)
1381 reloc_howto_type *howto;
1382 unsigned long r_symndx;
1383 struct elf_link_hash_entry *h;
1384 Elf_Internal_Sym *sym;
1386 bfd_vma relocation = 0;
1387 bfd_boolean unresolved_reloc;
1388 bfd_reloc_status_type r;
1391 r_type = ELF32_R_TYPE (rel->r_info);
1392 if (r_type < 0 || r_type >= 243)
1394 bfd_set_error (bfd_error_bad_value);
1398 if (r_type == R_BFIN_GNU_VTENTRY
1399 || r_type == R_BFIN_GNU_VTINHERIT)
1402 howto = bfin_reloc_type_lookup (input_bfd, r_type);
1405 bfd_set_error (bfd_error_bad_value);
1408 r_symndx = ELF32_R_SYM (rel->r_info);
1413 unresolved_reloc = FALSE;
1415 if (r_symndx < symtab_hdr->sh_info)
1417 sym = local_syms + r_symndx;
1418 sec = local_sections[r_symndx];
1419 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
1425 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
1426 r_symndx, symtab_hdr, sym_hashes,
1428 unresolved_reloc, warned);
1431 if (sec != NULL && elf_discarded_section (sec))
1433 /* For relocs against symbols from removed linkonce sections,
1434 or sections discarded by a linker script, we just want the
1435 section contents zeroed. Avoid any special processing. */
1436 _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
1442 if (info->relocatable)
1445 address = rel->r_offset;
1447 /* Then, process normally. */
1450 case R_BFIN_GNU_VTINHERIT:
1451 case R_BFIN_GNU_VTENTRY:
1452 return bfd_reloc_ok;
1455 /* Relocation is to the address of the entry for this symbol
1456 in the global offset table. */
1458 && strcmp (h->root.root.string, "__GLOBAL_OFFSET_TABLE_") == 0)
1461 /* Relocation is the offset of the entry for this symbol in
1462 the global offset table. */
1469 /* Create the .got section. */
1470 elf_hash_table (info)->dynobj = dynobj = output_bfd;
1471 if (!_bfd_elf_create_got_section (dynobj, info))
1477 sgot = bfd_get_section_by_name (dynobj, ".got");
1478 BFD_ASSERT (sgot != NULL);
1485 off = h->got.offset;
1486 BFD_ASSERT (off != (bfd_vma) - 1);
1487 dyn = elf_hash_table (info)->dynamic_sections_created;
1489 if (!WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn, info->shared, h)
1496 /* This is actually a static link, or it is a
1497 -Bsymbolic link and the symbol is defined
1498 locally, or the symbol was forced to be local
1499 because of a version file.. We must initialize
1500 this entry in the global offset table. Since
1501 the offset must always be a multiple of 4, we
1502 use the least significant bit to record whether
1503 we have initialized it already.
1505 When doing a dynamic link, we create a .rela.got
1506 relocation entry to initialize the value. This
1507 is done in the finish_dynamic_symbol routine. */
1512 bfd_put_32 (output_bfd, relocation,
1513 sgot->contents + off);
1518 unresolved_reloc = FALSE;
1522 BFD_ASSERT (local_got_offsets != NULL);
1523 off = local_got_offsets[r_symndx];
1524 BFD_ASSERT (off != (bfd_vma) - 1);
1526 /* The offset must always be a multiple of 4. We use
1527 the least significant bit to record whether we have
1528 already generated the necessary reloc. */
1533 bfd_put_32 (output_bfd, relocation, sgot->contents + off);
1538 Elf_Internal_Rela outrel;
1541 s = bfd_get_section_by_name (dynobj, ".rela.got");
1542 BFD_ASSERT (s != NULL);
1544 outrel.r_offset = (sgot->output_section->vma
1545 + sgot->output_offset + off);
1547 ELF32_R_INFO (0, R_BFIN_PCREL24);
1548 outrel.r_addend = relocation;
1551 s->reloc_count++ * sizeof (Elf32_External_Rela);
1552 bfd_elf32_swap_reloca_out (output_bfd, &outrel, loc);
1555 local_got_offsets[r_symndx] |= 1;
1559 relocation = sgot->output_offset + off;
1561 /* bfin : preg = [preg + 17bitdiv4offset] relocation is div by 4. */
1568 r = bfin_final_link_relocate (rel, howto, input_bfd, input_section,
1570 relocation, rel->r_addend);
1575 /* Dynamic relocs are not propagated for SEC_DEBUGGING sections
1576 because such sections are not SEC_ALLOC and thus ld.so will
1577 not process them. */
1578 if (unresolved_reloc
1579 && !((input_section->flags & SEC_DEBUGGING) != 0 && h->def_dynamic))
1581 (*_bfd_error_handler)
1582 (_("%B(%A+0x%lx): unresolvable relocation against symbol `%s'"),
1584 input_section, (long) rel->r_offset, h->root.root.string);
1588 if (r != bfd_reloc_ok)
1593 name = h->root.root.string;
1596 name = bfd_elf_string_from_elf_section (input_bfd,
1597 symtab_hdr->sh_link,
1602 name = bfd_section_name (input_bfd, sec);
1605 if (r == bfd_reloc_overflow)
1607 if (!(info->callbacks->reloc_overflow
1608 (info, (h ? &h->root : NULL), name, howto->name,
1609 (bfd_vma) 0, input_bfd, input_section, rel->r_offset)))
1614 (*_bfd_error_handler)
1615 (_("%B(%A+0x%lx): reloc against `%s': error %d"),
1616 input_bfd, input_section,
1617 (long) rel->r_offset, name, (int) r);
1627 bfin_gc_mark_hook (asection * sec,
1628 struct bfd_link_info *info,
1629 Elf_Internal_Rela * rel,
1630 struct elf_link_hash_entry *h,
1631 Elf_Internal_Sym * sym)
1634 switch (ELF32_R_TYPE (rel->r_info))
1636 case R_BFIN_GNU_VTINHERIT:
1637 case R_BFIN_GNU_VTENTRY:
1641 return _bfd_elf_gc_mark_hook (sec, info, rel, h, sym);
1644 /* Update the got entry reference counts for the section being removed. */
1647 bfin_gc_sweep_hook (bfd * abfd,
1648 struct bfd_link_info *info,
1650 const Elf_Internal_Rela * relocs)
1652 Elf_Internal_Shdr *symtab_hdr;
1653 struct elf_link_hash_entry **sym_hashes;
1654 bfd_signed_vma *local_got_refcounts;
1655 const Elf_Internal_Rela *rel, *relend;
1660 dynobj = elf_hash_table (info)->dynobj;
1664 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
1665 sym_hashes = elf_sym_hashes (abfd);
1666 local_got_refcounts = elf_local_got_refcounts (abfd);
1668 sgot = bfd_get_section_by_name (dynobj, ".got");
1669 srelgot = bfd_get_section_by_name (dynobj, ".rela.got");
1671 relend = relocs + sec->reloc_count;
1672 for (rel = relocs; rel < relend; rel++)
1674 unsigned long r_symndx;
1675 struct elf_link_hash_entry *h;
1677 switch (ELF32_R_TYPE (rel->r_info))
1680 r_symndx = ELF32_R_SYM (rel->r_info);
1681 if (r_symndx >= symtab_hdr->sh_info)
1683 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
1684 if (h->got.refcount > 0)
1687 if (h->got.refcount == 0)
1689 /* We don't need the .got entry any more. */
1691 srelgot->size -= sizeof (Elf32_External_Rela);
1695 else if (local_got_refcounts != NULL)
1697 if (local_got_refcounts[r_symndx] > 0)
1699 --local_got_refcounts[r_symndx];
1700 if (local_got_refcounts[r_symndx] == 0)
1702 /* We don't need the .got entry any more. */
1705 srelgot->size -= sizeof (Elf32_External_Rela);
1717 extern const bfd_target bfd_elf32_bfinfdpic_vec;
1718 #define IS_FDPIC(bfd) ((bfd)->xvec == &bfd_elf32_bfinfdpic_vec)
1720 /* An extension of the elf hash table data structure,
1721 containing some additional Blackfin-specific data. */
1722 struct bfinfdpic_elf_link_hash_table
1724 struct elf_link_hash_table elf;
1726 /* A pointer to the .got section. */
1728 /* A pointer to the .rel.got section. */
1730 /* A pointer to the .rofixup section. */
1731 asection *sgotfixup;
1732 /* A pointer to the .plt section. */
1734 /* A pointer to the .rel.plt section. */
1736 /* GOT base offset. */
1738 /* Location of the first non-lazy PLT entry, i.e., the number of
1739 bytes taken by lazy PLT entries. */
1741 /* A hash table holding information about which symbols were
1742 referenced with which PIC-related relocations. */
1743 struct htab *relocs_info;
1744 /* Summary reloc information collected by
1745 _bfinfdpic_count_got_plt_entries. */
1746 struct _bfinfdpic_dynamic_got_info *g;
1749 /* Get the Blackfin ELF linker hash table from a link_info structure. */
1751 #define bfinfdpic_hash_table(info) \
1752 (elf_hash_table_id ((struct elf_link_hash_table *) ((info)->hash)) \
1753 == BFIN_ELF_DATA ? ((struct bfinfdpic_elf_link_hash_table *) ((info)->hash)) : NULL)
1755 #define bfinfdpic_got_section(info) \
1756 (bfinfdpic_hash_table (info)->sgot)
1757 #define bfinfdpic_gotrel_section(info) \
1758 (bfinfdpic_hash_table (info)->sgotrel)
1759 #define bfinfdpic_gotfixup_section(info) \
1760 (bfinfdpic_hash_table (info)->sgotfixup)
1761 #define bfinfdpic_plt_section(info) \
1762 (bfinfdpic_hash_table (info)->splt)
1763 #define bfinfdpic_pltrel_section(info) \
1764 (bfinfdpic_hash_table (info)->spltrel)
1765 #define bfinfdpic_relocs_info(info) \
1766 (bfinfdpic_hash_table (info)->relocs_info)
1767 #define bfinfdpic_got_initial_offset(info) \
1768 (bfinfdpic_hash_table (info)->got0)
1769 #define bfinfdpic_plt_initial_offset(info) \
1770 (bfinfdpic_hash_table (info)->plt0)
1771 #define bfinfdpic_dynamic_got_plt_info(info) \
1772 (bfinfdpic_hash_table (info)->g)
1774 /* The name of the dynamic interpreter. This is put in the .interp
1777 #define ELF_DYNAMIC_INTERPRETER "/lib/ld.so.1"
1779 #define DEFAULT_STACK_SIZE 0x20000
1781 /* This structure is used to collect the number of entries present in
1782 each addressable range of the got. */
1783 struct _bfinfdpic_dynamic_got_info
1785 /* Several bits of information about the current link. */
1786 struct bfd_link_info *info;
1787 /* Total size needed for GOT entries within the 18- or 32-bit
1789 bfd_vma got17m4, gothilo;
1790 /* Total size needed for function descriptor entries within the 18-
1791 or 32-bit ranges. */
1792 bfd_vma fd17m4, fdhilo;
1793 /* Total size needed function descriptor entries referenced in PLT
1794 entries, that would be profitable to place in offsets close to
1795 the PIC register. */
1797 /* Total size needed by lazy PLT entries. */
1799 /* Number of relocations carried over from input object files. */
1800 unsigned long relocs;
1801 /* Number of fixups introduced by relocations in input object files. */
1802 unsigned long fixups;
1805 /* Create a Blackfin ELF linker hash table. */
1807 static struct bfd_link_hash_table *
1808 bfinfdpic_elf_link_hash_table_create (bfd *abfd)
1810 struct bfinfdpic_elf_link_hash_table *ret;
1811 bfd_size_type amt = sizeof (struct bfinfdpic_elf_link_hash_table);
1813 ret = bfd_zalloc (abfd, amt);
1817 if (!_bfd_elf_link_hash_table_init (&ret->elf, abfd,
1818 _bfd_elf_link_hash_newfunc,
1819 sizeof (struct elf_link_hash_entry),
1826 return &ret->elf.root;
1829 /* Decide whether a reference to a symbol can be resolved locally or
1830 not. If the symbol is protected, we want the local address, but
1831 its function descriptor must be assigned by the dynamic linker. */
1832 #define BFINFDPIC_SYM_LOCAL(INFO, H) \
1833 (_bfd_elf_symbol_refs_local_p ((H), (INFO), 1) \
1834 || ! elf_hash_table (INFO)->dynamic_sections_created)
1835 #define BFINFDPIC_FUNCDESC_LOCAL(INFO, H) \
1836 ((H)->dynindx == -1 || ! elf_hash_table (INFO)->dynamic_sections_created)
1838 /* This structure collects information on what kind of GOT, PLT or
1839 function descriptors are required by relocations that reference a
1841 struct bfinfdpic_relocs_info
1843 /* The index of the symbol, as stored in the relocation r_info, if
1844 we have a local symbol; -1 otherwise. */
1848 /* The input bfd in which the symbol is defined, if it's a local
1851 /* If symndx == -1, the hash table entry corresponding to a global
1852 symbol (even if it turns out to bind locally, in which case it
1853 should ideally be replaced with section's symndx + addend). */
1854 struct elf_link_hash_entry *h;
1856 /* The addend of the relocation that references the symbol. */
1859 /* The fields above are used to identify an entry. The fields below
1860 contain information on how an entry is used and, later on, which
1861 locations it was assigned. */
1862 /* The following 2 fields record whether the symbol+addend above was
1863 ever referenced with a GOT relocation. The 17M4 suffix indicates a
1864 GOT17M4 relocation; hilo is used for GOTLO/GOTHI pairs. */
1867 /* Whether a FUNCDESC relocation references symbol+addend. */
1869 /* Whether a FUNCDESC_GOT relocation references symbol+addend. */
1872 /* Whether a FUNCDESC_GOTOFF relocation references symbol+addend. */
1873 unsigned fdgoff17m4;
1874 unsigned fdgoffhilo;
1875 /* Whether symbol+addend is referenced with GOTOFF17M4, GOTOFFLO or
1876 GOTOFFHI relocations. The addend doesn't really matter, since we
1877 envision that this will only be used to check whether the symbol
1878 is mapped to the same segment as the got. */
1880 /* Whether symbol+addend is referenced by a LABEL24 relocation. */
1882 /* Whether symbol+addend is referenced by a 32 or FUNCDESC_VALUE
1885 /* Whether we need a PLT entry for a symbol. Should be implied by
1887 (call && symndx == -1 && ! BFINFDPIC_SYM_LOCAL (info, d.h)) */
1889 /* Whether a function descriptor should be created in this link unit
1890 for symbol+addend. Should be implied by something like:
1891 (plt || fdgotoff17m4 || fdgotofflohi
1892 || ((fd || fdgot17m4 || fdgothilo)
1893 && (symndx != -1 || BFINFDPIC_FUNCDESC_LOCAL (info, d.h)))) */
1895 /* Whether a lazy PLT entry is needed for this symbol+addend.
1896 Should be implied by something like:
1897 (privfd && symndx == -1 && ! BFINFDPIC_SYM_LOCAL (info, d.h)
1898 && ! (info->flags & DF_BIND_NOW)) */
1900 /* Whether we've already emitted GOT relocations and PLT entries as
1901 needed for this symbol. */
1904 /* The number of R_BFIN_BYTE4_DATA, R_BFIN_FUNCDESC and R_BFIN_FUNCDESC_VALUE
1905 relocations referencing the symbol. */
1906 unsigned relocs32, relocsfd, relocsfdv;
1908 /* The number of .rofixups entries and dynamic relocations allocated
1909 for this symbol, minus any that might have already been used. */
1910 unsigned fixups, dynrelocs;
1912 /* The offsets of the GOT entries assigned to symbol+addend, to the
1913 function descriptor's address, and to a function descriptor,
1914 respectively. Should be zero if unassigned. The offsets are
1915 counted from the value that will be assigned to the PIC register,
1916 not from the beginning of the .got section. */
1917 bfd_signed_vma got_entry, fdgot_entry, fd_entry;
1918 /* The offsets of the PLT entries assigned to symbol+addend,
1919 non-lazy and lazy, respectively. If unassigned, should be
1921 bfd_vma plt_entry, lzplt_entry;
1924 /* Compute a hash with the key fields of an bfinfdpic_relocs_info entry. */
1926 bfinfdpic_relocs_info_hash (const void *entry_)
1928 const struct bfinfdpic_relocs_info *entry = entry_;
1930 return (entry->symndx == -1
1931 ? (long) entry->d.h->root.root.hash
1932 : entry->symndx + (long) entry->d.abfd->id * 257) + entry->addend;
1935 /* Test whether the key fields of two bfinfdpic_relocs_info entries are
1938 bfinfdpic_relocs_info_eq (const void *entry1, const void *entry2)
1940 const struct bfinfdpic_relocs_info *e1 = entry1;
1941 const struct bfinfdpic_relocs_info *e2 = entry2;
1943 return e1->symndx == e2->symndx && e1->addend == e2->addend
1944 && (e1->symndx == -1 ? e1->d.h == e2->d.h : e1->d.abfd == e2->d.abfd);
1947 /* Find or create an entry in a hash table HT that matches the key
1948 fields of the given ENTRY. If it's not found, memory for a new
1949 entry is allocated in ABFD's obstack. */
1950 static struct bfinfdpic_relocs_info *
1951 bfinfdpic_relocs_info_find (struct htab *ht,
1953 const struct bfinfdpic_relocs_info *entry,
1954 enum insert_option insert)
1956 struct bfinfdpic_relocs_info **loc;
1961 loc = (struct bfinfdpic_relocs_info **) htab_find_slot (ht, entry, insert);
1969 *loc = bfd_zalloc (abfd, sizeof (**loc));
1974 (*loc)->symndx = entry->symndx;
1975 (*loc)->d = entry->d;
1976 (*loc)->addend = entry->addend;
1977 (*loc)->plt_entry = (bfd_vma)-1;
1978 (*loc)->lzplt_entry = (bfd_vma)-1;
1983 /* Obtain the address of the entry in HT associated with H's symbol +
1984 addend, creating a new entry if none existed. ABFD is only used
1985 for memory allocation purposes. */
1986 inline static struct bfinfdpic_relocs_info *
1987 bfinfdpic_relocs_info_for_global (struct htab *ht,
1989 struct elf_link_hash_entry *h,
1991 enum insert_option insert)
1993 struct bfinfdpic_relocs_info entry;
1997 entry.addend = addend;
1999 return bfinfdpic_relocs_info_find (ht, abfd, &entry, insert);
2002 /* Obtain the address of the entry in HT associated with the SYMNDXth
2003 local symbol of the input bfd ABFD, plus the addend, creating a new
2004 entry if none existed. */
2005 inline static struct bfinfdpic_relocs_info *
2006 bfinfdpic_relocs_info_for_local (struct htab *ht,
2010 enum insert_option insert)
2012 struct bfinfdpic_relocs_info entry;
2014 entry.symndx = symndx;
2015 entry.d.abfd = abfd;
2016 entry.addend = addend;
2018 return bfinfdpic_relocs_info_find (ht, abfd, &entry, insert);
2021 /* Merge fields set by check_relocs() of two entries that end up being
2022 mapped to the same (presumably global) symbol. */
2025 bfinfdpic_pic_merge_early_relocs_info (struct bfinfdpic_relocs_info *e2,
2026 struct bfinfdpic_relocs_info const *e1)
2028 e2->got17m4 |= e1->got17m4;
2029 e2->gothilo |= e1->gothilo;
2031 e2->fdgot17m4 |= e1->fdgot17m4;
2032 e2->fdgothilo |= e1->fdgothilo;
2033 e2->fdgoff17m4 |= e1->fdgoff17m4;
2034 e2->fdgoffhilo |= e1->fdgoffhilo;
2035 e2->gotoff |= e1->gotoff;
2036 e2->call |= e1->call;
2040 /* Every block of 65535 lazy PLT entries shares a single call to the
2041 resolver, inserted in the 32768th lazy PLT entry (i.e., entry #
2042 32767, counting from 0). All other lazy PLT entries branch to it
2043 in a single instruction. */
2045 #define LZPLT_RESOLVER_EXTRA 10
2046 #define LZPLT_NORMAL_SIZE 6
2047 #define LZPLT_ENTRIES 1362
2049 #define BFINFDPIC_LZPLT_BLOCK_SIZE ((bfd_vma) LZPLT_NORMAL_SIZE * LZPLT_ENTRIES + LZPLT_RESOLVER_EXTRA)
2050 #define BFINFDPIC_LZPLT_RESOLV_LOC (LZPLT_NORMAL_SIZE * LZPLT_ENTRIES / 2)
2052 /* Add a dynamic relocation to the SRELOC section. */
2054 inline static bfd_vma
2055 _bfinfdpic_add_dyn_reloc (bfd *output_bfd, asection *sreloc, bfd_vma offset,
2056 int reloc_type, long dynindx, bfd_vma addend,
2057 struct bfinfdpic_relocs_info *entry)
2059 Elf_Internal_Rela outrel;
2060 bfd_vma reloc_offset;
2062 outrel.r_offset = offset;
2063 outrel.r_info = ELF32_R_INFO (dynindx, reloc_type);
2064 outrel.r_addend = addend;
2066 reloc_offset = sreloc->reloc_count * sizeof (Elf32_External_Rel);
2067 BFD_ASSERT (reloc_offset < sreloc->size);
2068 bfd_elf32_swap_reloc_out (output_bfd, &outrel,
2069 sreloc->contents + reloc_offset);
2070 sreloc->reloc_count++;
2072 /* If the entry's index is zero, this relocation was probably to a
2073 linkonce section that got discarded. We reserved a dynamic
2074 relocation, but it was for another entry than the one we got at
2075 the time of emitting the relocation. Unfortunately there's no
2076 simple way for us to catch this situation, since the relocation
2077 is cleared right before calling relocate_section, at which point
2078 we no longer know what the relocation used to point to. */
2081 BFD_ASSERT (entry->dynrelocs > 0);
2085 return reloc_offset;
2088 /* Add a fixup to the ROFIXUP section. */
2091 _bfinfdpic_add_rofixup (bfd *output_bfd, asection *rofixup, bfd_vma offset,
2092 struct bfinfdpic_relocs_info *entry)
2094 bfd_vma fixup_offset;
2096 if (rofixup->flags & SEC_EXCLUDE)
2099 fixup_offset = rofixup->reloc_count * 4;
2100 if (rofixup->contents)
2102 BFD_ASSERT (fixup_offset < rofixup->size);
2103 bfd_put_32 (output_bfd, offset, rofixup->contents + fixup_offset);
2105 rofixup->reloc_count++;
2107 if (entry && entry->symndx)
2109 /* See discussion about symndx == 0 in _bfinfdpic_add_dyn_reloc
2111 BFD_ASSERT (entry->fixups > 0);
2115 return fixup_offset;
2118 /* Find the segment number in which OSEC, and output section, is
2122 _bfinfdpic_osec_to_segment (bfd *output_bfd, asection *osec)
2124 Elf_Internal_Phdr *p = _bfd_elf_find_segment_containing_section (output_bfd, osec);
2126 return (p != NULL) ? p - elf_tdata (output_bfd)->phdr : -1;
2129 inline static bfd_boolean
2130 _bfinfdpic_osec_readonly_p (bfd *output_bfd, asection *osec)
2132 unsigned seg = _bfinfdpic_osec_to_segment (output_bfd, osec);
2134 return ! (elf_tdata (output_bfd)->phdr[seg].p_flags & PF_W);
2137 /* Generate relocations for GOT entries, function descriptors, and
2138 code for PLT and lazy PLT entries. */
2140 inline static bfd_boolean
2141 _bfinfdpic_emit_got_relocs_plt_entries (struct bfinfdpic_relocs_info *entry,
2143 struct bfd_link_info *info,
2145 Elf_Internal_Sym *sym,
2149 bfd_vma fd_lazy_rel_offset = (bfd_vma)-1;
2156 if (entry->got_entry || entry->fdgot_entry || entry->fd_entry)
2158 /* If the symbol is dynamic, consider it for dynamic
2159 relocations, otherwise decay to section + offset. */
2160 if (entry->symndx == -1 && entry->d.h->dynindx != -1)
2161 dynindx = entry->d.h->dynindx;
2165 && sec->output_section
2166 && ! bfd_is_abs_section (sec->output_section)
2167 && ! bfd_is_und_section (sec->output_section))
2168 dynindx = elf_section_data (sec->output_section)->dynindx;
2174 /* Generate relocation for GOT entry pointing to the symbol. */
2175 if (entry->got_entry)
2178 bfd_vma ad = addend;
2180 /* If the symbol is dynamic but binds locally, use
2182 if (sec && (entry->symndx != -1
2183 || BFINFDPIC_SYM_LOCAL (info, entry->d.h)))
2185 if (entry->symndx == -1)
2186 ad += entry->d.h->root.u.def.value;
2188 ad += sym->st_value;
2189 ad += sec->output_offset;
2190 if (sec->output_section && elf_section_data (sec->output_section))
2191 idx = elf_section_data (sec->output_section)->dynindx;
2196 /* If we're linking an executable at a fixed address, we can
2197 omit the dynamic relocation as long as the symbol is local to
2199 if (info->executable && !info->pie
2200 && (entry->symndx != -1
2201 || BFINFDPIC_SYM_LOCAL (info, entry->d.h)))
2204 ad += sec->output_section->vma;
2205 if (entry->symndx != -1
2206 || entry->d.h->root.type != bfd_link_hash_undefweak)
2207 _bfinfdpic_add_rofixup (output_bfd,
2208 bfinfdpic_gotfixup_section (info),
2209 bfinfdpic_got_section (info)->output_section
2211 + bfinfdpic_got_section (info)->output_offset
2212 + bfinfdpic_got_initial_offset (info)
2213 + entry->got_entry, entry);
2216 _bfinfdpic_add_dyn_reloc (output_bfd, bfinfdpic_gotrel_section (info),
2217 _bfd_elf_section_offset
2219 bfinfdpic_got_section (info),
2220 bfinfdpic_got_initial_offset (info)
2222 + bfinfdpic_got_section (info)
2223 ->output_section->vma
2224 + bfinfdpic_got_section (info)->output_offset,
2225 R_BFIN_BYTE4_DATA, idx, ad, entry);
2227 bfd_put_32 (output_bfd, ad,
2228 bfinfdpic_got_section (info)->contents
2229 + bfinfdpic_got_initial_offset (info)
2230 + entry->got_entry);
2233 /* Generate relocation for GOT entry pointing to a canonical
2234 function descriptor. */
2235 if (entry->fdgot_entry)
2240 if (! (entry->symndx == -1
2241 && entry->d.h->root.type == bfd_link_hash_undefweak
2242 && BFINFDPIC_SYM_LOCAL (info, entry->d.h)))
2244 /* If the symbol is dynamic and there may be dynamic symbol
2245 resolution because we are, or are linked with, a shared
2246 library, emit a FUNCDESC relocation such that the dynamic
2247 linker will allocate the function descriptor. If the
2248 symbol needs a non-local function descriptor but binds
2249 locally (e.g., its visibility is protected, emit a
2250 dynamic relocation decayed to section+offset. */
2251 if (entry->symndx == -1
2252 && ! BFINFDPIC_FUNCDESC_LOCAL (info, entry->d.h)
2253 && BFINFDPIC_SYM_LOCAL (info, entry->d.h)
2254 && !(info->executable && !info->pie))
2256 reloc = R_BFIN_FUNCDESC;
2257 idx = elf_section_data (entry->d.h->root.u.def.section
2258 ->output_section)->dynindx;
2259 ad = entry->d.h->root.u.def.section->output_offset
2260 + entry->d.h->root.u.def.value;
2262 else if (entry->symndx == -1
2263 && ! BFINFDPIC_FUNCDESC_LOCAL (info, entry->d.h))
2265 reloc = R_BFIN_FUNCDESC;
2273 /* Otherwise, we know we have a private function descriptor,
2274 so reference it directly. */
2275 if (elf_hash_table (info)->dynamic_sections_created)
2276 BFD_ASSERT (entry->privfd);
2277 reloc = R_BFIN_BYTE4_DATA;
2278 idx = elf_section_data (bfinfdpic_got_section (info)
2279 ->output_section)->dynindx;
2280 ad = bfinfdpic_got_section (info)->output_offset
2281 + bfinfdpic_got_initial_offset (info) + entry->fd_entry;
2284 /* If there is room for dynamic symbol resolution, emit the
2285 dynamic relocation. However, if we're linking an
2286 executable at a fixed location, we won't have emitted a
2287 dynamic symbol entry for the got section, so idx will be
2288 zero, which means we can and should compute the address
2289 of the private descriptor ourselves. */
2290 if (info->executable && !info->pie
2291 && (entry->symndx != -1
2292 || BFINFDPIC_FUNCDESC_LOCAL (info, entry->d.h)))
2294 ad += bfinfdpic_got_section (info)->output_section->vma;
2295 _bfinfdpic_add_rofixup (output_bfd,
2296 bfinfdpic_gotfixup_section (info),
2297 bfinfdpic_got_section (info)
2298 ->output_section->vma
2299 + bfinfdpic_got_section (info)
2301 + bfinfdpic_got_initial_offset (info)
2302 + entry->fdgot_entry, entry);
2305 _bfinfdpic_add_dyn_reloc (output_bfd,
2306 bfinfdpic_gotrel_section (info),
2307 _bfd_elf_section_offset
2309 bfinfdpic_got_section (info),
2310 bfinfdpic_got_initial_offset (info)
2311 + entry->fdgot_entry)
2312 + bfinfdpic_got_section (info)
2313 ->output_section->vma
2314 + bfinfdpic_got_section (info)
2316 reloc, idx, ad, entry);
2319 bfd_put_32 (output_bfd, ad,
2320 bfinfdpic_got_section (info)->contents
2321 + bfinfdpic_got_initial_offset (info)
2322 + entry->fdgot_entry);
2325 /* Generate relocation to fill in a private function descriptor in
2327 if (entry->fd_entry)
2330 bfd_vma ad = addend;
2332 long lowword, highword;
2334 /* If the symbol is dynamic but binds locally, use
2336 if (sec && (entry->symndx != -1
2337 || BFINFDPIC_SYM_LOCAL (info, entry->d.h)))
2339 if (entry->symndx == -1)
2340 ad += entry->d.h->root.u.def.value;
2342 ad += sym->st_value;
2343 ad += sec->output_offset;
2344 if (sec->output_section && elf_section_data (sec->output_section))
2345 idx = elf_section_data (sec->output_section)->dynindx;
2350 /* If we're linking an executable at a fixed address, we can
2351 omit the dynamic relocation as long as the symbol is local to
2353 if (info->executable && !info->pie
2354 && (entry->symndx != -1 || BFINFDPIC_SYM_LOCAL (info, entry->d.h)))
2357 ad += sec->output_section->vma;
2359 if (entry->symndx != -1
2360 || entry->d.h->root.type != bfd_link_hash_undefweak)
2362 _bfinfdpic_add_rofixup (output_bfd,
2363 bfinfdpic_gotfixup_section (info),
2364 bfinfdpic_got_section (info)
2365 ->output_section->vma
2366 + bfinfdpic_got_section (info)
2368 + bfinfdpic_got_initial_offset (info)
2369 + entry->fd_entry, entry);
2370 _bfinfdpic_add_rofixup (output_bfd,
2371 bfinfdpic_gotfixup_section (info),
2372 bfinfdpic_got_section (info)
2373 ->output_section->vma
2374 + bfinfdpic_got_section (info)
2376 + bfinfdpic_got_initial_offset (info)
2377 + entry->fd_entry + 4, entry);
2383 = _bfinfdpic_add_dyn_reloc (output_bfd,
2385 ? bfinfdpic_pltrel_section (info)
2386 : bfinfdpic_gotrel_section (info),
2387 _bfd_elf_section_offset
2389 bfinfdpic_got_section (info),
2390 bfinfdpic_got_initial_offset (info)
2392 + bfinfdpic_got_section (info)
2393 ->output_section->vma
2394 + bfinfdpic_got_section (info)
2396 R_BFIN_FUNCDESC_VALUE, idx, ad, entry);
2399 /* If we've omitted the dynamic relocation, just emit the fixed
2400 addresses of the symbol and of the local GOT base offset. */
2401 if (info->executable && !info->pie && sec && sec->output_section)
2404 highword = bfinfdpic_got_section (info)->output_section->vma
2405 + bfinfdpic_got_section (info)->output_offset
2406 + bfinfdpic_got_initial_offset (info);
2408 else if (entry->lazyplt)
2413 fd_lazy_rel_offset = ofst;
2415 /* A function descriptor used for lazy or local resolving is
2416 initialized such that its high word contains the output
2417 section index in which the PLT entries are located, and
2418 the low word contains the address of the lazy PLT entry
2419 entry point, that must be within the memory region
2420 assigned to that section. */
2421 lowword = entry->lzplt_entry + 4
2422 + bfinfdpic_plt_section (info)->output_offset
2423 + bfinfdpic_plt_section (info)->output_section->vma;
2424 highword = _bfinfdpic_osec_to_segment
2425 (output_bfd, bfinfdpic_plt_section (info)->output_section);
2429 /* A function descriptor for a local function gets the index
2430 of the section. For a non-local function, it's
2434 || (entry->symndx == -1 && entry->d.h->dynindx != -1
2435 && entry->d.h->dynindx == idx))
2438 highword = _bfinfdpic_osec_to_segment
2439 (output_bfd, sec->output_section);
2442 bfd_put_32 (output_bfd, lowword,
2443 bfinfdpic_got_section (info)->contents
2444 + bfinfdpic_got_initial_offset (info)
2446 bfd_put_32 (output_bfd, highword,
2447 bfinfdpic_got_section (info)->contents
2448 + bfinfdpic_got_initial_offset (info)
2449 + entry->fd_entry + 4);
2452 /* Generate code for the PLT entry. */
2453 if (entry->plt_entry != (bfd_vma) -1)
2455 bfd_byte *plt_code = bfinfdpic_plt_section (info)->contents
2458 BFD_ASSERT (entry->fd_entry);
2460 /* Figure out what kind of PLT entry we need, depending on the
2461 location of the function descriptor within the GOT. */
2462 if (entry->fd_entry >= -(1 << (18 - 1))
2463 && entry->fd_entry + 4 < (1 << (18 - 1)))
2465 /* P1 = [P3 + fd_entry]; P3 = [P3 + fd_entry + 4] */
2466 bfd_put_32 (output_bfd,
2467 0xe519 | ((entry->fd_entry << 14) & 0xFFFF0000),
2469 bfd_put_32 (output_bfd,
2470 0xe51b | (((entry->fd_entry + 4) << 14) & 0xFFFF0000),
2476 /* P1.L = fd_entry; P1.H = fd_entry;
2480 bfd_put_32 (output_bfd,
2481 0xe109 | (entry->fd_entry << 16),
2483 bfd_put_32 (output_bfd,
2484 0xe149 | (entry->fd_entry & 0xFFFF0000),
2486 bfd_put_16 (output_bfd, 0x5ad9, plt_code + 8);
2487 bfd_put_16 (output_bfd, 0x9159, plt_code + 10);
2488 bfd_put_16 (output_bfd, 0xac5b, plt_code + 12);
2492 bfd_put_16 (output_bfd, 0x0051, plt_code);
2495 /* Generate code for the lazy PLT entry. */
2496 if (entry->lzplt_entry != (bfd_vma) -1)
2498 bfd_byte *lzplt_code = bfinfdpic_plt_section (info)->contents
2499 + entry->lzplt_entry;
2500 bfd_vma resolverStub_addr;
2502 bfd_put_32 (output_bfd, fd_lazy_rel_offset, lzplt_code);
2505 resolverStub_addr = entry->lzplt_entry / BFINFDPIC_LZPLT_BLOCK_SIZE
2506 * BFINFDPIC_LZPLT_BLOCK_SIZE + BFINFDPIC_LZPLT_RESOLV_LOC;
2507 if (resolverStub_addr >= bfinfdpic_plt_initial_offset (info))
2508 resolverStub_addr = bfinfdpic_plt_initial_offset (info) - LZPLT_NORMAL_SIZE - LZPLT_RESOLVER_EXTRA;
2510 if (entry->lzplt_entry == resolverStub_addr)
2512 /* This is a lazy PLT entry that includes a resolver call.
2516 bfd_put_32 (output_bfd,
2519 bfd_put_16 (output_bfd, 0x0052, lzplt_code + 4);
2523 /* JUMP.S resolverStub */
2524 bfd_put_16 (output_bfd,
2526 | (((resolverStub_addr - entry->lzplt_entry)
2527 / 2) & (((bfd_vma)1 << 12) - 1)),
2535 /* Relocate an Blackfin ELF section.
2537 The RELOCATE_SECTION function is called by the new ELF backend linker
2538 to handle the relocations for a section.
2540 The relocs are always passed as Rela structures; if the section
2541 actually uses Rel structures, the r_addend field will always be
2544 This function is responsible for adjusting the section contents as
2545 necessary, and (if using Rela relocs and generating a relocatable
2546 output file) adjusting the reloc addend as necessary.
2548 This function does not have to worry about setting the reloc
2549 address or the reloc symbol index.
2551 LOCAL_SYMS is a pointer to the swapped in local symbols.
2553 LOCAL_SECTIONS is an array giving the section in the input file
2554 corresponding to the st_shndx field of each local symbol.
2556 The global hash table entry for the global symbols can be found
2557 via elf_sym_hashes (input_bfd).
2559 When generating relocatable output, this function must handle
2560 STB_LOCAL/STT_SECTION symbols specially. The output symbol is
2561 going to be the section symbol corresponding to the output
2562 section, which means that the addend must be adjusted
2566 bfinfdpic_relocate_section (bfd * output_bfd,
2567 struct bfd_link_info *info,
2569 asection * input_section,
2570 bfd_byte * contents,
2571 Elf_Internal_Rela * relocs,
2572 Elf_Internal_Sym * local_syms,
2573 asection ** local_sections)
2575 Elf_Internal_Shdr *symtab_hdr;
2576 struct elf_link_hash_entry **sym_hashes;
2577 Elf_Internal_Rela *rel;
2578 Elf_Internal_Rela *relend;
2579 unsigned isec_segment, got_segment, plt_segment,
2581 int silence_segment_error = !(info->shared || info->pie);
2583 symtab_hdr = & elf_tdata (input_bfd)->symtab_hdr;
2584 sym_hashes = elf_sym_hashes (input_bfd);
2585 relend = relocs + input_section->reloc_count;
2587 isec_segment = _bfinfdpic_osec_to_segment (output_bfd,
2588 input_section->output_section);
2589 if (IS_FDPIC (output_bfd) && bfinfdpic_got_section (info))
2590 got_segment = _bfinfdpic_osec_to_segment (output_bfd,
2591 bfinfdpic_got_section (info)
2595 if (IS_FDPIC (output_bfd) && elf_hash_table (info)->dynamic_sections_created)
2596 plt_segment = _bfinfdpic_osec_to_segment (output_bfd,
2597 bfinfdpic_plt_section (info)
2602 for (rel = relocs; rel < relend; rel ++)
2604 reloc_howto_type *howto;
2605 unsigned long r_symndx;
2606 Elf_Internal_Sym *sym;
2608 struct elf_link_hash_entry *h;
2610 bfd_reloc_status_type r;
2611 const char * name = NULL;
2614 struct bfinfdpic_relocs_info *picrel;
2615 bfd_vma orig_addend = rel->r_addend;
2617 r_type = ELF32_R_TYPE (rel->r_info);
2619 if (r_type == R_BFIN_GNU_VTINHERIT
2620 || r_type == R_BFIN_GNU_VTENTRY)
2623 r_symndx = ELF32_R_SYM (rel->r_info);
2624 howto = bfin_reloc_type_lookup (input_bfd, r_type);
2627 bfd_set_error (bfd_error_bad_value);
2635 if (r_symndx < symtab_hdr->sh_info)
2637 sym = local_syms + r_symndx;
2638 osec = sec = local_sections [r_symndx];
2639 relocation = _bfd_elf_rela_local_sym (output_bfd, sym, &sec, rel);
2641 name = bfd_elf_string_from_elf_section
2642 (input_bfd, symtab_hdr->sh_link, sym->st_name);
2643 name = (name == NULL) ? bfd_section_name (input_bfd, sec) : name;
2648 bfd_boolean unresolved_reloc;
2650 RELOC_FOR_GLOBAL_SYMBOL (info, input_bfd, input_section, rel,
2651 r_symndx, symtab_hdr, sym_hashes,
2653 unresolved_reloc, warned);
2657 if (sec != NULL && elf_discarded_section (sec))
2659 /* For relocs against symbols from removed linkonce sections,
2660 or sections discarded by a linker script, we just want the
2661 section contents zeroed. Avoid any special processing. */
2662 _bfd_clear_contents (howto, input_bfd, contents + rel->r_offset);
2668 if (info->relocatable)
2672 && (h->root.type == bfd_link_hash_defined
2673 || h->root.type == bfd_link_hash_defweak)
2674 && !BFINFDPIC_SYM_LOCAL (info, h))
2682 case R_BFIN_PCREL24:
2683 case R_BFIN_PCREL24_JUMP_L:
2684 case R_BFIN_BYTE4_DATA:
2685 if (! IS_FDPIC (output_bfd))
2688 case R_BFIN_GOT17M4:
2691 case R_BFIN_FUNCDESC_GOT17M4:
2692 case R_BFIN_FUNCDESC_GOTHI:
2693 case R_BFIN_FUNCDESC_GOTLO:
2694 case R_BFIN_GOTOFF17M4:
2695 case R_BFIN_GOTOFFHI:
2696 case R_BFIN_GOTOFFLO:
2697 case R_BFIN_FUNCDESC_GOTOFF17M4:
2698 case R_BFIN_FUNCDESC_GOTOFFHI:
2699 case R_BFIN_FUNCDESC_GOTOFFLO:
2700 case R_BFIN_FUNCDESC:
2701 case R_BFIN_FUNCDESC_VALUE:
2703 picrel = bfinfdpic_relocs_info_for_global (bfinfdpic_relocs_info
2704 (info), input_bfd, h,
2705 orig_addend, INSERT);
2707 /* In order to find the entry we created before, we must
2708 use the original addend, not the one that may have been
2709 modified by _bfd_elf_rela_local_sym(). */
2710 picrel = bfinfdpic_relocs_info_for_local (bfinfdpic_relocs_info
2711 (info), input_bfd, r_symndx,
2712 orig_addend, INSERT);
2716 if (!_bfinfdpic_emit_got_relocs_plt_entries (picrel, output_bfd, info,
2720 (*_bfd_error_handler)
2721 (_("%B: relocation at `%A+0x%x' references symbol `%s' with nonzero addend"),
2722 input_bfd, input_section, rel->r_offset, name);
2732 if (h && ! BFINFDPIC_SYM_LOCAL (info, h))
2734 info->callbacks->warning
2735 (info, _("relocation references symbol not defined in the module"),
2736 name, input_bfd, input_section, rel->r_offset);
2744 case R_BFIN_PCREL24:
2745 case R_BFIN_PCREL24_JUMP_L:
2746 check_segment[0] = isec_segment;
2747 if (! IS_FDPIC (output_bfd))
2748 check_segment[1] = isec_segment;
2749 else if (picrel->plt)
2751 relocation = bfinfdpic_plt_section (info)->output_section->vma
2752 + bfinfdpic_plt_section (info)->output_offset
2753 + picrel->plt_entry;
2754 check_segment[1] = plt_segment;
2756 /* We don't want to warn on calls to undefined weak symbols,
2757 as calls to them must be protected by non-NULL tests
2758 anyway, and unprotected calls would invoke undefined
2760 else if (picrel->symndx == -1
2761 && picrel->d.h->root.type == bfd_link_hash_undefweak)
2762 check_segment[1] = check_segment[0];
2764 check_segment[1] = sec
2765 ? _bfinfdpic_osec_to_segment (output_bfd, sec->output_section)
2769 case R_BFIN_GOT17M4:
2772 relocation = picrel->got_entry;
2773 check_segment[0] = check_segment[1] = got_segment;
2776 case R_BFIN_FUNCDESC_GOT17M4:
2777 case R_BFIN_FUNCDESC_GOTHI:
2778 case R_BFIN_FUNCDESC_GOTLO:
2779 relocation = picrel->fdgot_entry;
2780 check_segment[0] = check_segment[1] = got_segment;
2783 case R_BFIN_GOTOFFHI:
2784 case R_BFIN_GOTOFF17M4:
2785 case R_BFIN_GOTOFFLO:
2786 relocation -= bfinfdpic_got_section (info)->output_section->vma
2787 + bfinfdpic_got_section (info)->output_offset
2788 + bfinfdpic_got_initial_offset (info);
2789 check_segment[0] = got_segment;
2790 check_segment[1] = sec
2791 ? _bfinfdpic_osec_to_segment (output_bfd, sec->output_section)
2795 case R_BFIN_FUNCDESC_GOTOFF17M4:
2796 case R_BFIN_FUNCDESC_GOTOFFHI:
2797 case R_BFIN_FUNCDESC_GOTOFFLO:
2798 relocation = picrel->fd_entry;
2799 check_segment[0] = check_segment[1] = got_segment;
2802 case R_BFIN_FUNCDESC:
2805 bfd_vma addend = rel->r_addend;
2807 if (! (h && h->root.type == bfd_link_hash_undefweak
2808 && BFINFDPIC_SYM_LOCAL (info, h)))
2810 /* If the symbol is dynamic and there may be dynamic
2811 symbol resolution because we are or are linked with a
2812 shared library, emit a FUNCDESC relocation such that
2813 the dynamic linker will allocate the function
2814 descriptor. If the symbol needs a non-local function
2815 descriptor but binds locally (e.g., its visibility is
2816 protected, emit a dynamic relocation decayed to
2818 if (h && ! BFINFDPIC_FUNCDESC_LOCAL (info, h)
2819 && BFINFDPIC_SYM_LOCAL (info, h)
2820 && !(info->executable && !info->pie))
2822 dynindx = elf_section_data (h->root.u.def.section
2823 ->output_section)->dynindx;
2824 addend += h->root.u.def.section->output_offset
2825 + h->root.u.def.value;
2827 else if (h && ! BFINFDPIC_FUNCDESC_LOCAL (info, h))
2831 info->callbacks->warning
2832 (info, _("R_BFIN_FUNCDESC references dynamic symbol with nonzero addend"),
2833 name, input_bfd, input_section, rel->r_offset);
2836 dynindx = h->dynindx;
2840 /* Otherwise, we know we have a private function
2841 descriptor, so reference it directly. */
2842 BFD_ASSERT (picrel->privfd);
2843 r_type = R_BFIN_BYTE4_DATA;
2844 dynindx = elf_section_data (bfinfdpic_got_section (info)
2845 ->output_section)->dynindx;
2846 addend = bfinfdpic_got_section (info)->output_offset
2847 + bfinfdpic_got_initial_offset (info)
2851 /* If there is room for dynamic symbol resolution, emit
2852 the dynamic relocation. However, if we're linking an
2853 executable at a fixed location, we won't have emitted a
2854 dynamic symbol entry for the got section, so idx will
2855 be zero, which means we can and should compute the
2856 address of the private descriptor ourselves. */
2857 if (info->executable && !info->pie
2858 && (!h || BFINFDPIC_FUNCDESC_LOCAL (info, h)))
2862 addend += bfinfdpic_got_section (info)->output_section->vma;
2863 if ((bfd_get_section_flags (output_bfd,
2864 input_section->output_section)
2865 & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
2867 if (_bfinfdpic_osec_readonly_p (output_bfd,
2871 info->callbacks->warning
2873 _("cannot emit fixups in read-only section"),
2874 name, input_bfd, input_section, rel->r_offset);
2878 offset = _bfd_elf_section_offset
2880 input_section, rel->r_offset);
2882 if (offset != (bfd_vma)-1)
2883 _bfinfdpic_add_rofixup (output_bfd,
2884 bfinfdpic_gotfixup_section
2886 offset + input_section
2887 ->output_section->vma
2888 + input_section->output_offset,
2892 else if ((bfd_get_section_flags (output_bfd,
2893 input_section->output_section)
2894 & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
2898 if (_bfinfdpic_osec_readonly_p (output_bfd,
2902 info->callbacks->warning
2904 _("cannot emit dynamic relocations in read-only section"),
2905 name, input_bfd, input_section, rel->r_offset);
2908 offset = _bfd_elf_section_offset (output_bfd, info,
2909 input_section, rel->r_offset);
2911 if (offset != (bfd_vma)-1)
2912 _bfinfdpic_add_dyn_reloc (output_bfd,
2913 bfinfdpic_gotrel_section (info),
2914 offset + input_section
2915 ->output_section->vma
2916 + input_section->output_offset,
2918 dynindx, addend, picrel);
2921 addend += bfinfdpic_got_section (info)->output_section->vma;
2924 /* We want the addend in-place because dynamic
2925 relocations are REL. Setting relocation to it should
2926 arrange for it to be installed. */
2927 relocation = addend - rel->r_addend;
2929 check_segment[0] = check_segment[1] = got_segment;
2932 case R_BFIN_BYTE4_DATA:
2933 if (! IS_FDPIC (output_bfd))
2935 check_segment[0] = check_segment[1] = -1;
2939 case R_BFIN_FUNCDESC_VALUE:
2942 bfd_vma addend = rel->r_addend;
2944 offset = _bfd_elf_section_offset (output_bfd, info,
2945 input_section, rel->r_offset);
2947 /* If the symbol is dynamic but binds locally, use
2949 if (h && ! BFINFDPIC_SYM_LOCAL (info, h))
2951 if (addend && r_type == R_BFIN_FUNCDESC_VALUE)
2953 info->callbacks->warning
2954 (info, _("R_BFIN_FUNCDESC_VALUE references dynamic symbol with nonzero addend"),
2955 name, input_bfd, input_section, rel->r_offset);
2958 dynindx = h->dynindx;
2963 addend += h->root.u.def.value;
2965 addend += sym->st_value;
2967 addend += osec->output_offset;
2968 if (osec && osec->output_section
2969 && ! bfd_is_abs_section (osec->output_section)
2970 && ! bfd_is_und_section (osec->output_section))
2971 dynindx = elf_section_data (osec->output_section)->dynindx;
2976 /* If we're linking an executable at a fixed address, we
2977 can omit the dynamic relocation as long as the symbol
2978 is defined in the current link unit (which is implied
2979 by its output section not being NULL). */
2980 if (info->executable && !info->pie
2981 && (!h || BFINFDPIC_SYM_LOCAL (info, h)))
2984 addend += osec->output_section->vma;
2985 if (IS_FDPIC (input_bfd)
2986 && (bfd_get_section_flags (output_bfd,
2987 input_section->output_section)
2988 & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
2990 if (_bfinfdpic_osec_readonly_p (output_bfd,
2994 info->callbacks->warning
2996 _("cannot emit fixups in read-only section"),
2997 name, input_bfd, input_section, rel->r_offset);
3000 if (!h || h->root.type != bfd_link_hash_undefweak)
3002 if (offset != (bfd_vma)-1)
3004 _bfinfdpic_add_rofixup (output_bfd,
3005 bfinfdpic_gotfixup_section
3007 offset + input_section
3008 ->output_section->vma
3009 + input_section->output_offset,
3012 if (r_type == R_BFIN_FUNCDESC_VALUE)
3013 _bfinfdpic_add_rofixup
3015 bfinfdpic_gotfixup_section (info),
3016 offset + input_section->output_section->vma
3017 + input_section->output_offset + 4, picrel);
3024 if ((bfd_get_section_flags (output_bfd,
3025 input_section->output_section)
3026 & (SEC_ALLOC | SEC_LOAD)) == (SEC_ALLOC | SEC_LOAD))
3028 if (_bfinfdpic_osec_readonly_p (output_bfd,
3032 info->callbacks->warning
3034 _("cannot emit dynamic relocations in read-only section"),
3035 name, input_bfd, input_section, rel->r_offset);
3039 if (offset != (bfd_vma)-1)
3040 _bfinfdpic_add_dyn_reloc (output_bfd,
3041 bfinfdpic_gotrel_section (info),
3043 + input_section->output_section->vma
3044 + input_section->output_offset,
3045 r_type, dynindx, addend, picrel);
3048 addend += osec->output_section->vma;
3049 /* We want the addend in-place because dynamic
3050 relocations are REL. Setting relocation to it
3051 should arrange for it to be installed. */
3052 relocation = addend - rel->r_addend;
3055 if (r_type == R_BFIN_FUNCDESC_VALUE)
3057 /* If we've omitted the dynamic relocation, just emit
3058 the fixed addresses of the symbol and of the local
3060 if (info->executable && !info->pie
3061 && (!h || BFINFDPIC_SYM_LOCAL (info, h)))
3062 bfd_put_32 (output_bfd,
3063 bfinfdpic_got_section (info)->output_section->vma
3064 + bfinfdpic_got_section (info)->output_offset
3065 + bfinfdpic_got_initial_offset (info),
3066 contents + rel->r_offset + 4);
3068 /* A function descriptor used for lazy or local
3069 resolving is initialized such that its high word
3070 contains the output section index in which the
3071 PLT entries are located, and the low word
3072 contains the offset of the lazy PLT entry entry
3073 point into that section. */
3074 bfd_put_32 (output_bfd,
3075 h && ! BFINFDPIC_SYM_LOCAL (info, h)
3077 : _bfinfdpic_osec_to_segment (output_bfd,
3080 contents + rel->r_offset + 4);
3083 check_segment[0] = check_segment[1] = got_segment;
3087 check_segment[0] = isec_segment;
3088 check_segment[1] = sec
3089 ? _bfinfdpic_osec_to_segment (output_bfd, sec->output_section)
3094 if (check_segment[0] != check_segment[1] && IS_FDPIC (output_bfd))
3096 #if 1 /* If you take this out, remove the #error from fdpic-static-6.d
3097 in the ld testsuite. */
3098 /* This helps catch problems in GCC while we can't do more
3099 than static linking. The idea is to test whether the
3100 input file basename is crt0.o only once. */
3101 if (silence_segment_error == 1)
3102 silence_segment_error =
3103 (strlen (input_bfd->filename) == 6
3104 && strcmp (input_bfd->filename, "crt0.o") == 0)
3105 || (strlen (input_bfd->filename) > 6
3106 && strcmp (input_bfd->filename
3107 + strlen (input_bfd->filename) - 7,
3111 if (!silence_segment_error
3112 /* We don't want duplicate errors for undefined
3114 && !(picrel && picrel->symndx == -1
3115 && picrel->d.h->root.type == bfd_link_hash_undefined))
3116 info->callbacks->warning
3118 (info->shared || info->pie)
3119 ? _("relocations between different segments are not supported")
3120 : _("warning: relocation references a different segment"),
3121 name, input_bfd, input_section, rel->r_offset);
3122 if (!silence_segment_error && (info->shared || info->pie))
3124 elf_elfheader (output_bfd)->e_flags |= EF_BFIN_PIC;
3129 case R_BFIN_GOTOFFHI:
3130 /* We need the addend to be applied before we shift the
3132 relocation += rel->r_addend;
3135 case R_BFIN_FUNCDESC_GOTHI:
3136 case R_BFIN_FUNCDESC_GOTOFFHI:
3141 case R_BFIN_FUNCDESC_GOTLO:
3142 case R_BFIN_GOTOFFLO:
3143 case R_BFIN_FUNCDESC_GOTOFFLO:
3144 relocation &= 0xffff;
3153 case R_BFIN_PCREL24:
3154 case R_BFIN_PCREL24_JUMP_L:
3155 if (! IS_FDPIC (output_bfd) || ! picrel->plt)
3159 /* When referencing a GOT entry, a function descriptor or a
3160 PLT, we don't want the addend to apply to the reference,
3161 but rather to the referenced symbol. The actual entry
3162 will have already been created taking the addend into
3163 account, so cancel it out here. */
3164 case R_BFIN_GOT17M4:
3167 case R_BFIN_FUNCDESC_GOT17M4:
3168 case R_BFIN_FUNCDESC_GOTHI:
3169 case R_BFIN_FUNCDESC_GOTLO:
3170 case R_BFIN_FUNCDESC_GOTOFF17M4:
3171 case R_BFIN_FUNCDESC_GOTOFFHI:
3172 case R_BFIN_FUNCDESC_GOTOFFLO:
3173 /* Note that we only want GOTOFFHI, not GOTOFFLO or GOTOFF17M4
3174 here, since we do want to apply the addend to the others.
3175 Note that we've applied the addend to GOTOFFHI before we
3176 shifted it right. */
3177 case R_BFIN_GOTOFFHI:
3178 relocation -= rel->r_addend;
3185 r = bfin_final_link_relocate (rel, howto, input_bfd, input_section,
3186 contents, rel->r_offset,
3187 relocation, rel->r_addend);
3189 if (r != bfd_reloc_ok)
3191 const char * msg = (const char *) NULL;
3195 case bfd_reloc_overflow:
3196 r = info->callbacks->reloc_overflow
3197 (info, (h ? &h->root : NULL), name, howto->name,
3198 (bfd_vma) 0, input_bfd, input_section, rel->r_offset);
3201 case bfd_reloc_undefined:
3202 r = info->callbacks->undefined_symbol
3203 (info, name, input_bfd, input_section, rel->r_offset, TRUE);
3206 case bfd_reloc_outofrange:
3207 msg = _("internal error: out of range error");
3210 case bfd_reloc_notsupported:
3211 msg = _("internal error: unsupported relocation error");
3214 case bfd_reloc_dangerous:
3215 msg = _("internal error: dangerous relocation");
3219 msg = _("internal error: unknown error");
3224 r = info->callbacks->warning
3225 (info, msg, name, input_bfd, input_section, rel->r_offset);
3235 /* Update the relocation information for the relocations of the section
3239 bfinfdpic_gc_sweep_hook (bfd *abfd,
3240 struct bfd_link_info *info,
3242 const Elf_Internal_Rela *relocs)
3244 Elf_Internal_Shdr *symtab_hdr;
3245 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
3246 const Elf_Internal_Rela *rel;
3247 const Elf_Internal_Rela *rel_end;
3248 struct bfinfdpic_relocs_info *picrel;
3250 BFD_ASSERT (IS_FDPIC (abfd));
3252 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
3253 sym_hashes = elf_sym_hashes (abfd);
3254 sym_hashes_end = sym_hashes + symtab_hdr->sh_size/sizeof(Elf32_External_Sym);
3255 if (!elf_bad_symtab (abfd))
3256 sym_hashes_end -= symtab_hdr->sh_info;
3258 rel_end = relocs + sec->reloc_count;
3259 for (rel = relocs; rel < rel_end; rel++)
3261 struct elf_link_hash_entry *h;
3262 unsigned long r_symndx;
3264 r_symndx = ELF32_R_SYM (rel->r_info);
3265 if (r_symndx < symtab_hdr->sh_info)
3268 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
3271 picrel = bfinfdpic_relocs_info_for_global (bfinfdpic_relocs_info (info),
3273 rel->r_addend, NO_INSERT);
3275 picrel = bfinfdpic_relocs_info_for_local (bfinfdpic_relocs_info
3276 (info), abfd, r_symndx,
3277 rel->r_addend, NO_INSERT);
3282 switch (ELF32_R_TYPE (rel->r_info))
3284 case R_BFIN_PCREL24:
3285 case R_BFIN_PCREL24_JUMP_L:
3289 case R_BFIN_FUNCDESC_VALUE:
3290 picrel->relocsfdv--;
3291 if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
3295 case R_BFIN_BYTE4_DATA:
3297 if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
3301 case R_BFIN_GOT17M4:
3310 case R_BFIN_FUNCDESC_GOT17M4:
3311 picrel->fdgot17m4--;
3314 case R_BFIN_FUNCDESC_GOTHI:
3315 case R_BFIN_FUNCDESC_GOTLO:
3316 picrel->fdgothilo--;
3319 case R_BFIN_GOTOFF17M4:
3320 case R_BFIN_GOTOFFHI:
3321 case R_BFIN_GOTOFFLO:
3325 case R_BFIN_FUNCDESC_GOTOFF17M4:
3326 picrel->fdgoff17m4--;
3329 case R_BFIN_FUNCDESC_GOTOFFHI:
3330 case R_BFIN_FUNCDESC_GOTOFFLO:
3331 picrel->fdgoffhilo--;
3334 case R_BFIN_FUNCDESC:
3347 /* We need dynamic symbols for every section, since segments can
3348 relocate independently. */
3350 _bfinfdpic_link_omit_section_dynsym (bfd *output_bfd ATTRIBUTE_UNUSED,
3351 struct bfd_link_info *info ATTRIBUTE_UNUSED,
3354 switch (elf_section_data (p)->this_hdr.sh_type)
3358 /* If sh_type is yet undecided, assume it could be
3359 SHT_PROGBITS/SHT_NOBITS. */
3363 /* There shouldn't be section relative relocations
3364 against any other section. */
3370 /* Create a .got section, as well as its additional info field. This
3371 is almost entirely copied from
3372 elflink.c:_bfd_elf_create_got_section(). */
3375 _bfin_create_got_section (bfd *abfd, struct bfd_link_info *info)
3377 flagword flags, pltflags;
3379 struct elf_link_hash_entry *h;
3380 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3383 /* This function may be called more than once. */
3384 s = bfd_get_section_by_name (abfd, ".got");
3385 if (s != NULL && (s->flags & SEC_LINKER_CREATED) != 0)
3388 /* Machine specific: although pointers are 32-bits wide, we want the
3389 GOT to be aligned to a 64-bit boundary, such that function
3390 descriptors in it can be accessed with 64-bit loads and
3394 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
3395 | SEC_LINKER_CREATED);
3398 s = bfd_make_section_with_flags (abfd, ".got", flags);
3400 || !bfd_set_section_alignment (abfd, s, ptralign))
3403 if (bed->want_got_plt)
3405 s = bfd_make_section_with_flags (abfd, ".got.plt", flags);
3407 || !bfd_set_section_alignment (abfd, s, ptralign))
3411 if (bed->want_got_sym)
3413 /* Define the symbol _GLOBAL_OFFSET_TABLE_ at the start of the .got
3414 (or .got.plt) section. We don't do this in the linker script
3415 because we don't want to define the symbol if we are not creating
3416 a global offset table. */
3417 h = _bfd_elf_define_linkage_sym (abfd, info, s, "__GLOBAL_OFFSET_TABLE_");
3418 elf_hash_table (info)->hgot = h;
3422 /* Machine-specific: we want the symbol for executables as
3424 if (! bfd_elf_link_record_dynamic_symbol (info, h))
3428 /* The first bit of the global offset table is the header. */
3429 s->size += bed->got_header_size;
3431 /* This is the machine-specific part. Create and initialize section
3432 data for the got. */
3433 if (IS_FDPIC (abfd))
3435 bfinfdpic_got_section (info) = s;
3436 bfinfdpic_relocs_info (info) = htab_try_create (1,
3437 bfinfdpic_relocs_info_hash,
3438 bfinfdpic_relocs_info_eq,
3440 if (! bfinfdpic_relocs_info (info))
3443 s = bfd_make_section_with_flags (abfd, ".rel.got",
3444 (flags | SEC_READONLY));
3446 || ! bfd_set_section_alignment (abfd, s, 2))
3449 bfinfdpic_gotrel_section (info) = s;
3451 /* Machine-specific. */
3452 s = bfd_make_section_with_flags (abfd, ".rofixup",
3453 (flags | SEC_READONLY));
3455 || ! bfd_set_section_alignment (abfd, s, 2))
3458 bfinfdpic_gotfixup_section (info) = s;
3463 flags = BSF_GLOBAL | BSF_WEAK;
3467 pltflags |= SEC_CODE;
3468 if (bed->plt_not_loaded)
3469 pltflags &= ~ (SEC_CODE | SEC_LOAD | SEC_HAS_CONTENTS);
3470 if (bed->plt_readonly)
3471 pltflags |= SEC_READONLY;
3473 s = bfd_make_section_with_flags (abfd, ".plt", pltflags);
3475 || ! bfd_set_section_alignment (abfd, s, bed->plt_alignment))
3477 /* Blackfin-specific: remember it. */
3478 bfinfdpic_plt_section (info) = s;
3480 if (bed->want_plt_sym)
3482 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
3484 struct bfd_link_hash_entry *bh = NULL;
3486 if (! (_bfd_generic_link_add_one_symbol
3487 (info, abfd, "__PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL, s, 0, NULL,
3488 FALSE, get_elf_backend_data (abfd)->collect, &bh)))
3490 h = (struct elf_link_hash_entry *) bh;
3492 h->type = STT_OBJECT;
3494 if (! info->executable
3495 && ! bfd_elf_link_record_dynamic_symbol (info, h))
3499 /* Blackfin-specific: we want rel relocations for the plt. */
3500 s = bfd_make_section_with_flags (abfd, ".rel.plt", flags | SEC_READONLY);
3502 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
3504 /* Blackfin-specific: remember it. */
3505 bfinfdpic_pltrel_section (info) = s;
3510 /* Make sure the got and plt sections exist, and that our pointers in
3511 the link hash table point to them. */
3514 elf32_bfinfdpic_create_dynamic_sections (bfd *abfd, struct bfd_link_info *info)
3516 /* This is mostly copied from
3517 elflink.c:_bfd_elf_create_dynamic_sections(). */
3520 const struct elf_backend_data *bed = get_elf_backend_data (abfd);
3522 flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS | SEC_IN_MEMORY
3523 | SEC_LINKER_CREATED);
3525 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
3526 .rel[a].bss sections. */
3528 /* Blackfin-specific: we want to create the GOT in the Blackfin way. */
3529 if (! _bfin_create_got_section (abfd, info))
3532 /* Blackfin-specific: make sure we created everything we wanted. */
3533 BFD_ASSERT (bfinfdpic_got_section (info) && bfinfdpic_gotrel_section (info)
3534 /* && bfinfdpic_gotfixup_section (info) */
3535 && bfinfdpic_plt_section (info)
3536 && bfinfdpic_pltrel_section (info));
3538 if (bed->want_dynbss)
3540 /* The .dynbss section is a place to put symbols which are defined
3541 by dynamic objects, are referenced by regular objects, and are
3542 not functions. We must allocate space for them in the process
3543 image and use a R_*_COPY reloc to tell the dynamic linker to
3544 initialize them at run time. The linker script puts the .dynbss
3545 section into the .bss section of the final image. */
3546 s = bfd_make_section_with_flags (abfd, ".dynbss",
3547 SEC_ALLOC | SEC_LINKER_CREATED);
3551 /* The .rel[a].bss section holds copy relocs. This section is not
3552 normally needed. We need to create it here, though, so that the
3553 linker will map it to an output section. We can't just create it
3554 only if we need it, because we will not know whether we need it
3555 until we have seen all the input files, and the first time the
3556 main linker code calls BFD after examining all the input files
3557 (size_dynamic_sections) the input sections have already been
3558 mapped to the output sections. If the section turns out not to
3559 be needed, we can discard it later. We will never need this
3560 section when generating a shared object, since they do not use
3564 s = bfd_make_section_with_flags (abfd,
3566 flags | SEC_READONLY);
3568 || ! bfd_set_section_alignment (abfd, s, bed->s->log_file_align))
3576 /* Compute the total GOT size required by each symbol in each range.
3577 Symbols may require up to 4 words in the GOT: an entry pointing to
3578 the symbol, an entry pointing to its function descriptor, and a
3579 private function descriptors taking two words. */
3582 _bfinfdpic_count_nontls_entries (struct bfinfdpic_relocs_info *entry,
3583 struct _bfinfdpic_dynamic_got_info *dinfo)
3585 /* Allocate space for a GOT entry pointing to the symbol. */
3587 dinfo->got17m4 += 4;
3588 else if (entry->gothilo)
3589 dinfo->gothilo += 4;
3594 /* Allocate space for a GOT entry pointing to the function
3596 if (entry->fdgot17m4)
3597 dinfo->got17m4 += 4;
3598 else if (entry->fdgothilo)
3599 dinfo->gothilo += 4;
3604 /* Decide whether we need a PLT entry, a function descriptor in the
3605 GOT, and a lazy PLT entry for this symbol. */
3606 entry->plt = entry->call
3607 && entry->symndx == -1 && ! BFINFDPIC_SYM_LOCAL (dinfo->info, entry->d.h)
3608 && elf_hash_table (dinfo->info)->dynamic_sections_created;
3609 entry->privfd = entry->plt
3610 || entry->fdgoff17m4 || entry->fdgoffhilo
3611 || ((entry->fd || entry->fdgot17m4 || entry->fdgothilo)
3612 && (entry->symndx != -1
3613 || BFINFDPIC_FUNCDESC_LOCAL (dinfo->info, entry->d.h)));
3614 entry->lazyplt = entry->privfd
3615 && entry->symndx == -1 && ! BFINFDPIC_SYM_LOCAL (dinfo->info, entry->d.h)
3616 && ! (dinfo->info->flags & DF_BIND_NOW)
3617 && elf_hash_table (dinfo->info)->dynamic_sections_created;
3619 /* Allocate space for a function descriptor. */
3620 if (entry->fdgoff17m4)
3622 else if (entry->privfd && entry->plt)
3624 else if (entry->privfd)
3631 dinfo->lzplt += LZPLT_NORMAL_SIZE;
3634 /* Compute the number of dynamic relocations and fixups that a symbol
3635 requires, and add (or subtract) from the grand and per-symbol
3639 _bfinfdpic_count_relocs_fixups (struct bfinfdpic_relocs_info *entry,
3640 struct _bfinfdpic_dynamic_got_info *dinfo,
3641 bfd_boolean subtract)
3643 bfd_vma relocs = 0, fixups = 0;
3645 if (!dinfo->info->executable || dinfo->info->pie)
3646 relocs = entry->relocs32 + entry->relocsfd + entry->relocsfdv;
3649 if (entry->symndx != -1 || BFINFDPIC_SYM_LOCAL (dinfo->info, entry->d.h))
3651 if (entry->symndx != -1
3652 || entry->d.h->root.type != bfd_link_hash_undefweak)
3653 fixups += entry->relocs32 + 2 * entry->relocsfdv;
3656 relocs += entry->relocs32 + entry->relocsfdv;
3658 if (entry->symndx != -1
3659 || BFINFDPIC_FUNCDESC_LOCAL (dinfo->info, entry->d.h))
3661 if (entry->symndx != -1
3662 || entry->d.h->root.type != bfd_link_hash_undefweak)
3663 fixups += entry->relocsfd;
3666 relocs += entry->relocsfd;
3675 entry->dynrelocs += relocs;
3676 entry->fixups += fixups;
3677 dinfo->relocs += relocs;
3678 dinfo->fixups += fixups;
3681 /* Compute the total GOT and PLT size required by each symbol in each range. *
3682 Symbols may require up to 4 words in the GOT: an entry pointing to
3683 the symbol, an entry pointing to its function descriptor, and a
3684 private function descriptors taking two words. */
3687 _bfinfdpic_count_got_plt_entries (void **entryp, void *dinfo_)
3689 struct bfinfdpic_relocs_info *entry = *entryp;
3690 struct _bfinfdpic_dynamic_got_info *dinfo = dinfo_;
3692 _bfinfdpic_count_nontls_entries (entry, dinfo);
3694 _bfinfdpic_count_relocs_fixups (entry, dinfo, FALSE);
3699 /* This structure is used to assign offsets to got entries, function
3700 descriptors, plt entries and lazy plt entries. */
3702 struct _bfinfdpic_dynamic_got_plt_info
3704 /* Summary information collected with _bfinfdpic_count_got_plt_entries. */
3705 struct _bfinfdpic_dynamic_got_info g;
3707 /* For each addressable range, we record a MAX (positive) and MIN
3708 (negative) value. CUR is used to assign got entries, and it's
3709 incremented from an initial positive value to MAX, then from MIN
3710 to FDCUR (unless FDCUR wraps around first). FDCUR is used to
3711 assign function descriptors, and it's decreased from an initial
3712 non-positive value to MIN, then from MAX down to CUR (unless CUR
3713 wraps around first). All of MIN, MAX, CUR and FDCUR always point
3714 to even words. ODD, if non-zero, indicates an odd word to be
3715 used for the next got entry, otherwise CUR is used and
3716 incremented by a pair of words, wrapping around when it reaches
3717 MAX. FDCUR is decremented (and wrapped) before the next function
3718 descriptor is chosen. FDPLT indicates the number of remaining
3719 slots that can be used for function descriptors used only by PLT
3721 struct _bfinfdpic_dynamic_got_alloc_data
3723 bfd_signed_vma max, cur, odd, fdcur, min;
3728 /* Determine the positive and negative ranges to be used by each
3729 offset range in the GOT. FDCUR and CUR, that must be aligned to a
3730 double-word boundary, are the minimum (negative) and maximum
3731 (positive) GOT offsets already used by previous ranges, except for
3732 an ODD entry that may have been left behind. GOT and FD indicate
3733 the size of GOT entries and function descriptors that must be
3734 placed within the range from -WRAP to WRAP. If there's room left,
3735 up to FDPLT bytes should be reserved for additional function
3738 inline static bfd_signed_vma
3739 _bfinfdpic_compute_got_alloc_data (struct _bfinfdpic_dynamic_got_alloc_data *gad,
3740 bfd_signed_vma fdcur,
3748 bfd_signed_vma wrapmin = -wrap;
3750 /* Start at the given initial points. */
3754 /* If we had an incoming odd word and we have any got entries that
3755 are going to use it, consume it, otherwise leave gad->odd at
3756 zero. We might force gad->odd to zero and return the incoming
3757 odd such that it is used by the next range, but then GOT entries
3758 might appear to be out of order and we wouldn't be able to
3759 shorten the GOT by one word if it turns out to end with an
3760 unpaired GOT entry. */
3770 /* If we're left with an unpaired GOT entry, compute its location
3771 such that we can return it. Otherwise, if got doesn't require an
3772 odd number of words here, either odd was already zero in the
3773 block above, or it was set to zero because got was non-zero, or
3774 got was already zero. In the latter case, we want the value of
3775 odd to carry over to the return statement, so we don't want to
3776 reset odd unless the condition below is true. */
3783 /* Compute the tentative boundaries of this range. */
3784 gad->max = cur + got;
3785 gad->min = fdcur - fd;
3788 /* If function descriptors took too much space, wrap some of them
3790 if (gad->min < wrapmin)
3792 gad->max += wrapmin - gad->min;
3795 /* If there is space left and we have function descriptors
3796 referenced in PLT entries that could take advantage of shorter
3797 offsets, place them here. */
3798 else if (fdplt && gad->min > wrapmin)
3801 if ((bfd_vma) (gad->min - wrapmin) < fdplt)
3802 fds = gad->min - wrapmin;
3811 /* If GOT entries took too much space, wrap some of them around.
3812 This may well cause gad->min to become lower than wrapmin. This
3813 will cause a relocation overflow later on, so we don't have to
3815 if ((bfd_vma) gad->max > wrap)
3817 gad->min -= gad->max - wrap;
3820 /* If there is more space left, try to place some more function
3821 descriptors for PLT entries. */
3822 else if (fdplt && (bfd_vma) gad->max < wrap)
3825 if ((bfd_vma) (wrap - gad->max) < fdplt)
3826 fds = wrap - gad->max;
3835 /* If odd was initially computed as an offset past the wrap point,
3838 odd = gad->min + odd - gad->max;
3840 /* _bfinfdpic_get_got_entry() below will always wrap gad->cur if needed
3841 before returning, so do it here too. This guarantees that,
3842 should cur and fdcur meet at the wrap point, they'll both be
3844 if (gad->cur == gad->max)
3845 gad->cur = gad->min;
3850 /* Compute the location of the next GOT entry, given the allocation
3851 data for a range. */
3853 inline static bfd_signed_vma
3854 _bfinfdpic_get_got_entry (struct _bfinfdpic_dynamic_got_alloc_data *gad)
3860 /* If there was an odd word left behind, use it. */
3866 /* Otherwise, use the word pointed to by cur, reserve the next
3867 as an odd word, and skip to the next pair of words, possibly
3870 gad->odd = gad->cur + 4;
3872 if (gad->cur == gad->max)
3873 gad->cur = gad->min;
3879 /* Compute the location of the next function descriptor entry in the
3880 GOT, given the allocation data for a range. */
3882 inline static bfd_signed_vma
3883 _bfinfdpic_get_fd_entry (struct _bfinfdpic_dynamic_got_alloc_data *gad)
3885 /* If we're at the bottom, wrap around, and only then allocate the
3886 next pair of words. */
3887 if (gad->fdcur == gad->min)
3888 gad->fdcur = gad->max;
3889 return gad->fdcur -= 8;
3892 /* Assign GOT offsets for every GOT entry and function descriptor.
3893 Doing everything in a single pass is tricky. */
3896 _bfinfdpic_assign_got_entries (void **entryp, void *info_)
3898 struct bfinfdpic_relocs_info *entry = *entryp;
3899 struct _bfinfdpic_dynamic_got_plt_info *dinfo = info_;
3902 entry->got_entry = _bfinfdpic_get_got_entry (&dinfo->got17m4);
3903 else if (entry->gothilo)
3904 entry->got_entry = _bfinfdpic_get_got_entry (&dinfo->gothilo);
3906 if (entry->fdgot17m4)
3907 entry->fdgot_entry = _bfinfdpic_get_got_entry (&dinfo->got17m4);
3908 else if (entry->fdgothilo)
3909 entry->fdgot_entry = _bfinfdpic_get_got_entry (&dinfo->gothilo);
3911 if (entry->fdgoff17m4)
3912 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->got17m4);
3913 else if (entry->plt && dinfo->got17m4.fdplt)
3915 dinfo->got17m4.fdplt -= 8;
3916 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->got17m4);
3918 else if (entry->plt)
3920 dinfo->gothilo.fdplt -= 8;
3921 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->gothilo);
3923 else if (entry->privfd)
3924 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->gothilo);
3929 /* Assign GOT offsets to private function descriptors used by PLT
3930 entries (or referenced by 32-bit offsets), as well as PLT entries
3931 and lazy PLT entries. */
3934 _bfinfdpic_assign_plt_entries (void **entryp, void *info_)
3936 struct bfinfdpic_relocs_info *entry = *entryp;
3937 struct _bfinfdpic_dynamic_got_plt_info *dinfo = info_;
3939 /* If this symbol requires a local function descriptor, allocate
3941 if (entry->privfd && entry->fd_entry == 0)
3943 if (dinfo->got17m4.fdplt)
3945 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->got17m4);
3946 dinfo->got17m4.fdplt -= 8;
3950 BFD_ASSERT (dinfo->gothilo.fdplt);
3951 entry->fd_entry = _bfinfdpic_get_fd_entry (&dinfo->gothilo);
3952 dinfo->gothilo.fdplt -= 8;
3960 /* We use the section's raw size to mark the location of the
3962 entry->plt_entry = bfinfdpic_plt_section (dinfo->g.info)->size;
3964 /* Figure out the length of this PLT entry based on the
3965 addressing mode we need to reach the function descriptor. */
3966 BFD_ASSERT (entry->fd_entry);
3967 if (entry->fd_entry >= -(1 << (18 - 1))
3968 && entry->fd_entry + 4 < (1 << (18 - 1)))
3973 bfinfdpic_plt_section (dinfo->g.info)->size += size;
3978 entry->lzplt_entry = dinfo->g.lzplt;
3979 dinfo->g.lzplt += LZPLT_NORMAL_SIZE;
3980 /* If this entry is the one that gets the resolver stub, account
3981 for the additional instruction. */
3982 if (entry->lzplt_entry % BFINFDPIC_LZPLT_BLOCK_SIZE
3983 == BFINFDPIC_LZPLT_RESOLV_LOC)
3984 dinfo->g.lzplt += LZPLT_RESOLVER_EXTRA;
3990 /* Cancel out any effects of calling _bfinfdpic_assign_got_entries and
3991 _bfinfdpic_assign_plt_entries. */
3994 _bfinfdpic_reset_got_plt_entries (void **entryp, void *ignore ATTRIBUTE_UNUSED)
3996 struct bfinfdpic_relocs_info *entry = *entryp;
3998 entry->got_entry = 0;
3999 entry->fdgot_entry = 0;
4000 entry->fd_entry = 0;
4001 entry->plt_entry = (bfd_vma)-1;
4002 entry->lzplt_entry = (bfd_vma)-1;
4007 /* Follow indirect and warning hash entries so that each got entry
4008 points to the final symbol definition. P must point to a pointer
4009 to the hash table we're traversing. Since this traversal may
4010 modify the hash table, we set this pointer to NULL to indicate
4011 we've made a potentially-destructive change to the hash table, so
4012 the traversal must be restarted. */
4014 _bfinfdpic_resolve_final_relocs_info (void **entryp, void *p)
4016 struct bfinfdpic_relocs_info *entry = *entryp;
4019 if (entry->symndx == -1)
4021 struct elf_link_hash_entry *h = entry->d.h;
4022 struct bfinfdpic_relocs_info *oentry;
4024 while (h->root.type == bfd_link_hash_indirect
4025 || h->root.type == bfd_link_hash_warning)
4026 h = (struct elf_link_hash_entry *)h->root.u.i.link;
4028 if (entry->d.h == h)
4031 oentry = bfinfdpic_relocs_info_for_global (*htab, 0, h, entry->addend,
4036 /* Merge the two entries. */
4037 bfinfdpic_pic_merge_early_relocs_info (oentry, entry);
4038 htab_clear_slot (*htab, entryp);
4044 /* If we can't find this entry with the new bfd hash, re-insert
4045 it, and get the traversal restarted. */
4046 if (! htab_find (*htab, entry))
4048 htab_clear_slot (*htab, entryp);
4049 entryp = htab_find_slot (*htab, entry, INSERT);
4052 /* Abort the traversal, since the whole table may have
4053 moved, and leave it up to the parent to restart the
4055 *(htab_t *)p = NULL;
4063 /* Compute the total size of the GOT, the PLT, the dynamic relocations
4064 section and the rofixup section. Assign locations for GOT and PLT
4068 _bfinfdpic_size_got_plt (bfd *output_bfd,
4069 struct _bfinfdpic_dynamic_got_plt_info *gpinfop)
4073 struct bfd_link_info *info = gpinfop->g.info;
4074 bfd *dynobj = elf_hash_table (info)->dynobj;
4076 memcpy (bfinfdpic_dynamic_got_plt_info (info), &gpinfop->g,
4077 sizeof (gpinfop->g));
4080 /* Compute the total size taken by entries in the 18-bit range,
4081 to tell how many PLT function descriptors we can bring into it
4082 without causing it to overflow. */
4083 limit = odd + gpinfop->g.got17m4 + gpinfop->g.fd17m4;
4084 if (limit < (bfd_vma)1 << 18)
4085 limit = ((bfd_vma)1 << 18) - limit;
4088 if (gpinfop->g.fdplt < limit)
4089 limit = gpinfop->g.fdplt;
4091 /* Determine the ranges of GOT offsets that we can use for each
4092 range of addressing modes. */
4093 odd = _bfinfdpic_compute_got_alloc_data (&gpinfop->got17m4,
4100 (bfd_vma)1 << (18-1));
4101 odd = _bfinfdpic_compute_got_alloc_data (&gpinfop->gothilo,
4102 gpinfop->got17m4.min,
4104 gpinfop->got17m4.max,
4107 gpinfop->g.fdplt - gpinfop->got17m4.fdplt,
4108 (bfd_vma)1 << (32-1));
4110 /* Now assign (most) GOT offsets. */
4111 htab_traverse (bfinfdpic_relocs_info (info), _bfinfdpic_assign_got_entries,
4114 bfinfdpic_got_section (info)->size = gpinfop->gothilo.max
4115 - gpinfop->gothilo.min
4116 /* If an odd word is the last word of the GOT, we don't need this
4117 word to be part of the GOT. */
4118 - (odd + 4 == gpinfop->gothilo.max ? 4 : 0);
4119 if (bfinfdpic_got_section (info)->size == 0)
4120 bfinfdpic_got_section (info)->flags |= SEC_EXCLUDE;
4121 else if (bfinfdpic_got_section (info)->size == 12
4122 && ! elf_hash_table (info)->dynamic_sections_created)
4124 bfinfdpic_got_section (info)->flags |= SEC_EXCLUDE;
4125 bfinfdpic_got_section (info)->size = 0;
4129 bfinfdpic_got_section (info)->contents =
4130 (bfd_byte *) bfd_zalloc (dynobj,
4131 bfinfdpic_got_section (info)->size);
4132 if (bfinfdpic_got_section (info)->contents == NULL)
4136 if (elf_hash_table (info)->dynamic_sections_created)
4137 /* Subtract the number of lzplt entries, since those will generate
4138 relocations in the pltrel section. */
4139 bfinfdpic_gotrel_section (info)->size =
4140 (gpinfop->g.relocs - gpinfop->g.lzplt / LZPLT_NORMAL_SIZE)
4141 * get_elf_backend_data (output_bfd)->s->sizeof_rel;
4143 BFD_ASSERT (gpinfop->g.relocs == 0);
4144 if (bfinfdpic_gotrel_section (info)->size == 0)
4145 bfinfdpic_gotrel_section (info)->flags |= SEC_EXCLUDE;
4148 bfinfdpic_gotrel_section (info)->contents =
4149 (bfd_byte *) bfd_zalloc (dynobj,
4150 bfinfdpic_gotrel_section (info)->size);
4151 if (bfinfdpic_gotrel_section (info)->contents == NULL)
4155 bfinfdpic_gotfixup_section (info)->size = (gpinfop->g.fixups + 1) * 4;
4156 if (bfinfdpic_gotfixup_section (info)->size == 0)
4157 bfinfdpic_gotfixup_section (info)->flags |= SEC_EXCLUDE;
4160 bfinfdpic_gotfixup_section (info)->contents =
4161 (bfd_byte *) bfd_zalloc (dynobj,
4162 bfinfdpic_gotfixup_section (info)->size);
4163 if (bfinfdpic_gotfixup_section (info)->contents == NULL)
4167 if (elf_hash_table (info)->dynamic_sections_created)
4168 bfinfdpic_pltrel_section (info)->size =
4169 gpinfop->g.lzplt / LZPLT_NORMAL_SIZE * get_elf_backend_data (output_bfd)->s->sizeof_rel;
4170 if (bfinfdpic_pltrel_section (info)->size == 0)
4171 bfinfdpic_pltrel_section (info)->flags |= SEC_EXCLUDE;
4174 bfinfdpic_pltrel_section (info)->contents =
4175 (bfd_byte *) bfd_zalloc (dynobj,
4176 bfinfdpic_pltrel_section (info)->size);
4177 if (bfinfdpic_pltrel_section (info)->contents == NULL)
4181 /* Add 4 bytes for every block of at most 65535 lazy PLT entries,
4182 such that there's room for the additional instruction needed to
4183 call the resolver. Since _bfinfdpic_assign_got_entries didn't
4184 account for them, our block size is 4 bytes smaller than the real
4186 if (elf_hash_table (info)->dynamic_sections_created)
4188 bfinfdpic_plt_section (info)->size = gpinfop->g.lzplt
4189 + ((gpinfop->g.lzplt + (BFINFDPIC_LZPLT_BLOCK_SIZE - 4) - LZPLT_NORMAL_SIZE)
4190 / (BFINFDPIC_LZPLT_BLOCK_SIZE - 4) * LZPLT_RESOLVER_EXTRA);
4193 /* Reset it, such that _bfinfdpic_assign_plt_entries() can use it to
4194 actually assign lazy PLT entries addresses. */
4195 gpinfop->g.lzplt = 0;
4197 /* Save information that we're going to need to generate GOT and PLT
4199 bfinfdpic_got_initial_offset (info) = -gpinfop->gothilo.min;
4201 if (get_elf_backend_data (output_bfd)->want_got_sym)
4202 elf_hash_table (info)->hgot->root.u.def.value
4203 = bfinfdpic_got_initial_offset (info);
4205 if (elf_hash_table (info)->dynamic_sections_created)
4206 bfinfdpic_plt_initial_offset (info) =
4207 bfinfdpic_plt_section (info)->size;
4209 htab_traverse (bfinfdpic_relocs_info (info), _bfinfdpic_assign_plt_entries,
4212 /* Allocate the PLT section contents only after
4213 _bfinfdpic_assign_plt_entries has a chance to add the size of the
4214 non-lazy PLT entries. */
4215 if (bfinfdpic_plt_section (info)->size == 0)
4216 bfinfdpic_plt_section (info)->flags |= SEC_EXCLUDE;
4219 bfinfdpic_plt_section (info)->contents =
4220 (bfd_byte *) bfd_zalloc (dynobj,
4221 bfinfdpic_plt_section (info)->size);
4222 if (bfinfdpic_plt_section (info)->contents == NULL)
4229 /* Set the sizes of the dynamic sections. */
4232 elf32_bfinfdpic_size_dynamic_sections (bfd *output_bfd,
4233 struct bfd_link_info *info)
4235 struct elf_link_hash_table *htab;
4238 struct _bfinfdpic_dynamic_got_plt_info gpinfo;
4240 htab = elf_hash_table (info);
4241 dynobj = htab->dynobj;
4242 BFD_ASSERT (dynobj != NULL);
4244 if (htab->dynamic_sections_created)
4246 /* Set the contents of the .interp section to the interpreter. */
4247 if (info->executable)
4249 s = bfd_get_section_by_name (dynobj, ".interp");
4250 BFD_ASSERT (s != NULL);
4251 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
4252 s->contents = (bfd_byte *) ELF_DYNAMIC_INTERPRETER;
4256 memset (&gpinfo, 0, sizeof (gpinfo));
4257 gpinfo.g.info = info;
4261 htab_t relocs = bfinfdpic_relocs_info (info);
4263 htab_traverse (relocs, _bfinfdpic_resolve_final_relocs_info, &relocs);
4265 if (relocs == bfinfdpic_relocs_info (info))
4269 htab_traverse (bfinfdpic_relocs_info (info), _bfinfdpic_count_got_plt_entries,
4272 /* Allocate space to save the summary information, we're going to
4273 use it if we're doing relaxations. */
4274 bfinfdpic_dynamic_got_plt_info (info) = bfd_alloc (dynobj, sizeof (gpinfo.g));
4276 if (!_bfinfdpic_size_got_plt (output_bfd, &gpinfo))
4279 if (elf_hash_table (info)->dynamic_sections_created)
4281 if (bfinfdpic_got_section (info)->size)
4282 if (!_bfd_elf_add_dynamic_entry (info, DT_PLTGOT, 0))
4285 if (bfinfdpic_pltrel_section (info)->size)
4286 if (!_bfd_elf_add_dynamic_entry (info, DT_PLTRELSZ, 0)
4287 || !_bfd_elf_add_dynamic_entry (info, DT_PLTREL, DT_REL)
4288 || !_bfd_elf_add_dynamic_entry (info, DT_JMPREL, 0))
4291 if (bfinfdpic_gotrel_section (info)->size)
4292 if (!_bfd_elf_add_dynamic_entry (info, DT_REL, 0)
4293 || !_bfd_elf_add_dynamic_entry (info, DT_RELSZ, 0)
4294 || !_bfd_elf_add_dynamic_entry (info, DT_RELENT,
4295 sizeof (Elf32_External_Rel)))
4299 s = bfd_get_section_by_name (dynobj, ".dynbss");
4300 if (s && s->size == 0)
4301 s->flags |= SEC_EXCLUDE;
4303 s = bfd_get_section_by_name (dynobj, ".rela.bss");
4304 if (s && s->size == 0)
4305 s->flags |= SEC_EXCLUDE;
4311 elf32_bfinfdpic_always_size_sections (bfd *output_bfd,
4312 struct bfd_link_info *info)
4314 if (!info->relocatable)
4316 struct elf_link_hash_entry *h;
4318 /* Force a PT_GNU_STACK segment to be created. */
4319 if (! elf_tdata (output_bfd)->stack_flags)
4320 elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X;
4322 /* Define __stacksize if it's not defined yet. */
4323 h = elf_link_hash_lookup (elf_hash_table (info), "__stacksize",
4324 FALSE, FALSE, FALSE);
4325 if (! h || h->root.type != bfd_link_hash_defined
4326 || h->type != STT_OBJECT
4329 struct bfd_link_hash_entry *bh = NULL;
4331 if (!(_bfd_generic_link_add_one_symbol
4332 (info, output_bfd, "__stacksize",
4333 BSF_GLOBAL, bfd_abs_section_ptr, DEFAULT_STACK_SIZE,
4334 (const char *) NULL, FALSE,
4335 get_elf_backend_data (output_bfd)->collect, &bh)))
4338 h = (struct elf_link_hash_entry *) bh;
4340 h->type = STT_OBJECT;
4347 /* Check whether any of the relocations was optimized away, and
4348 subtract it from the relocation or fixup count. */
4350 _bfinfdpic_check_discarded_relocs (bfd *abfd, asection *sec,
4351 struct bfd_link_info *info,
4353 bfd_boolean *changed)
4355 Elf_Internal_Shdr *symtab_hdr;
4356 struct elf_link_hash_entry **sym_hashes, **sym_hashes_end;
4357 Elf_Internal_Rela *rel, *erel;
4359 if ((sec->flags & SEC_RELOC) == 0
4360 || sec->reloc_count == 0)
4363 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
4364 sym_hashes = elf_sym_hashes (abfd);
4365 sym_hashes_end = sym_hashes + symtab_hdr->sh_size/sizeof(Elf32_External_Sym);
4366 if (!elf_bad_symtab (abfd))
4367 sym_hashes_end -= symtab_hdr->sh_info;
4369 rel = elf_section_data (sec)->relocs;
4371 /* Now examine each relocation. */
4372 for (erel = rel + sec->reloc_count; rel < erel; rel++)
4374 struct elf_link_hash_entry *h;
4375 unsigned long r_symndx;
4376 struct bfinfdpic_relocs_info *picrel;
4377 struct _bfinfdpic_dynamic_got_info *dinfo;
4379 if (ELF32_R_TYPE (rel->r_info) != R_BFIN_BYTE4_DATA
4380 && ELF32_R_TYPE (rel->r_info) != R_BFIN_FUNCDESC)
4383 if (_bfd_elf_section_offset (sec->output_section->owner,
4384 info, sec, rel->r_offset)
4388 r_symndx = ELF32_R_SYM (rel->r_info);
4389 if (r_symndx < symtab_hdr->sh_info)
4393 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4394 while (h->root.type == bfd_link_hash_indirect
4395 || h->root.type == bfd_link_hash_warning)
4396 h = (struct elf_link_hash_entry *)h->root.u.i.link;
4400 picrel = bfinfdpic_relocs_info_for_global (bfinfdpic_relocs_info (info),
4402 rel->r_addend, NO_INSERT);
4404 picrel = bfinfdpic_relocs_info_for_local (bfinfdpic_relocs_info (info),
4406 rel->r_addend, NO_INSERT);
4412 dinfo = bfinfdpic_dynamic_got_plt_info (info);
4414 _bfinfdpic_count_relocs_fixups (picrel, dinfo, TRUE);
4415 if (ELF32_R_TYPE (rel->r_info) == R_BFIN_BYTE4_DATA)
4417 else /* we know (ELF32_R_TYPE (rel->r_info) == R_BFIN_FUNCDESC) */
4419 _bfinfdpic_count_relocs_fixups (picrel, dinfo, FALSE);
4426 bfinfdpic_elf_discard_info (bfd *ibfd,
4427 struct elf_reloc_cookie *cookie ATTRIBUTE_UNUSED,
4428 struct bfd_link_info *info)
4430 bfd_boolean changed = FALSE;
4434 /* Account for relaxation of .eh_frame section. */
4435 for (s = ibfd->sections; s; s = s->next)
4436 if (s->sec_info_type == ELF_INFO_TYPE_EH_FRAME)
4438 if (!_bfinfdpic_check_discarded_relocs (ibfd, s, info, &changed))
4440 obfd = s->output_section->owner;
4445 struct _bfinfdpic_dynamic_got_plt_info gpinfo;
4447 memset (&gpinfo, 0, sizeof (gpinfo));
4448 memcpy (&gpinfo.g, bfinfdpic_dynamic_got_plt_info (info),
4451 /* Clear GOT and PLT assignments. */
4452 htab_traverse (bfinfdpic_relocs_info (info),
4453 _bfinfdpic_reset_got_plt_entries,
4456 if (!_bfinfdpic_size_got_plt (obfd, &gpinfo))
4464 elf32_bfinfdpic_modify_program_headers (bfd *output_bfd,
4465 struct bfd_link_info *info)
4467 struct elf_obj_tdata *tdata = elf_tdata (output_bfd);
4468 struct elf_segment_map *m;
4469 Elf_Internal_Phdr *p;
4471 /* objcopy and strip preserve what's already there using
4472 elf32_bfinfdpic_copy_private_bfd_data (). */
4476 for (p = tdata->phdr, m = tdata->segment_map; m != NULL; m = m->next, p++)
4477 if (m->p_type == PT_GNU_STACK)
4482 struct elf_link_hash_entry *h;
4484 /* Obtain the pointer to the __stacksize symbol. */
4485 h = elf_link_hash_lookup (elf_hash_table (info), "__stacksize",
4486 FALSE, FALSE, FALSE);
4489 while (h->root.type == bfd_link_hash_indirect
4490 || h->root.type == bfd_link_hash_warning)
4491 h = (struct elf_link_hash_entry *) h->root.u.i.link;
4492 BFD_ASSERT (h->root.type == bfd_link_hash_defined);
4495 /* Set the header p_memsz from the symbol value. We
4496 intentionally ignore the symbol section. */
4497 if (h && h->root.type == bfd_link_hash_defined)
4498 p->p_memsz = h->root.u.def.value;
4500 p->p_memsz = DEFAULT_STACK_SIZE;
4509 elf32_bfinfdpic_finish_dynamic_sections (bfd *output_bfd,
4510 struct bfd_link_info *info)
4515 dynobj = elf_hash_table (info)->dynobj;
4517 if (bfinfdpic_got_section (info))
4519 BFD_ASSERT (bfinfdpic_gotrel_section (info)->size
4520 == (bfinfdpic_gotrel_section (info)->reloc_count
4521 * sizeof (Elf32_External_Rel)));
4523 if (bfinfdpic_gotfixup_section (info))
4525 struct elf_link_hash_entry *hgot = elf_hash_table (info)->hgot;
4526 bfd_vma got_value = hgot->root.u.def.value
4527 + hgot->root.u.def.section->output_section->vma
4528 + hgot->root.u.def.section->output_offset;
4530 _bfinfdpic_add_rofixup (output_bfd, bfinfdpic_gotfixup_section (info),
4533 if (bfinfdpic_gotfixup_section (info)->size
4534 != (bfinfdpic_gotfixup_section (info)->reloc_count * 4))
4536 (*_bfd_error_handler)
4537 ("LINKER BUG: .rofixup section size mismatch");
4542 if (elf_hash_table (info)->dynamic_sections_created)
4544 BFD_ASSERT (bfinfdpic_pltrel_section (info)->size
4545 == (bfinfdpic_pltrel_section (info)->reloc_count
4546 * sizeof (Elf32_External_Rel)));
4549 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
4551 if (elf_hash_table (info)->dynamic_sections_created)
4553 Elf32_External_Dyn * dyncon;
4554 Elf32_External_Dyn * dynconend;
4556 BFD_ASSERT (sdyn != NULL);
4558 dyncon = (Elf32_External_Dyn *) sdyn->contents;
4559 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
4561 for (; dyncon < dynconend; dyncon++)
4563 Elf_Internal_Dyn dyn;
4565 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
4573 dyn.d_un.d_ptr = bfinfdpic_got_section (info)->output_section->vma
4574 + bfinfdpic_got_section (info)->output_offset
4575 + bfinfdpic_got_initial_offset (info);
4576 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4580 dyn.d_un.d_ptr = bfinfdpic_pltrel_section (info)
4581 ->output_section->vma
4582 + bfinfdpic_pltrel_section (info)->output_offset;
4583 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4587 dyn.d_un.d_val = bfinfdpic_pltrel_section (info)->size;
4588 bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
4597 /* Adjust a symbol defined by a dynamic object and referenced by a
4601 elf32_bfinfdpic_adjust_dynamic_symbol
4602 (struct bfd_link_info *info,
4603 struct elf_link_hash_entry *h)
4607 dynobj = elf_hash_table (info)->dynobj;
4609 /* Make sure we know what is going on here. */
4610 BFD_ASSERT (dynobj != NULL
4611 && (h->u.weakdef != NULL
4614 && !h->def_regular)));
4616 /* If this is a weak symbol, and there is a real definition, the
4617 processor independent code will have arranged for us to see the
4618 real definition first, and we can just use the same value. */
4619 if (h->u.weakdef != NULL)
4621 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
4622 || h->u.weakdef->root.type == bfd_link_hash_defweak);
4623 h->root.u.def.section = h->u.weakdef->root.u.def.section;
4624 h->root.u.def.value = h->u.weakdef->root.u.def.value;
4630 /* Perform any actions needed for dynamic symbols. */
4633 elf32_bfinfdpic_finish_dynamic_symbol
4634 (bfd *output_bfd ATTRIBUTE_UNUSED,
4635 struct bfd_link_info *info ATTRIBUTE_UNUSED,
4636 struct elf_link_hash_entry *h ATTRIBUTE_UNUSED,
4637 Elf_Internal_Sym *sym ATTRIBUTE_UNUSED)
4642 /* Decide whether to attempt to turn absptr or lsda encodings in
4643 shared libraries into pcrel within the given input section. */
4646 bfinfdpic_elf_use_relative_eh_frame
4647 (bfd *input_bfd ATTRIBUTE_UNUSED,
4648 struct bfd_link_info *info ATTRIBUTE_UNUSED,
4649 asection *eh_frame_section ATTRIBUTE_UNUSED)
4651 /* We can't use PC-relative encodings in FDPIC binaries, in general. */
4655 /* Adjust the contents of an eh_frame_hdr section before they're output. */
4658 bfinfdpic_elf_encode_eh_address (bfd *abfd,
4659 struct bfd_link_info *info,
4660 asection *osec, bfd_vma offset,
4661 asection *loc_sec, bfd_vma loc_offset,
4664 struct elf_link_hash_entry *h;
4666 h = elf_hash_table (info)->hgot;
4667 BFD_ASSERT (h && h->root.type == bfd_link_hash_defined);
4669 if (! h || (_bfinfdpic_osec_to_segment (abfd, osec)
4670 == _bfinfdpic_osec_to_segment (abfd, loc_sec->output_section)))
4671 return _bfd_elf_encode_eh_address (abfd, info, osec, offset,
4672 loc_sec, loc_offset, encoded);
4674 BFD_ASSERT (_bfinfdpic_osec_to_segment (abfd, osec)
4675 == (_bfinfdpic_osec_to_segment
4676 (abfd, h->root.u.def.section->output_section)));
4678 *encoded = osec->vma + offset
4679 - (h->root.u.def.value
4680 + h->root.u.def.section->output_section->vma
4681 + h->root.u.def.section->output_offset);
4683 return DW_EH_PE_datarel | DW_EH_PE_sdata4;
4688 /* Look through the relocs for a section during the first phase.
4690 Besides handling virtual table relocs for gc, we have to deal with
4691 all sorts of PIC-related relocations. We describe below the
4692 general plan on how to handle such relocations, even though we only
4693 collect information at this point, storing them in hash tables for
4694 perusal of later passes.
4696 32 relocations are propagated to the linker output when creating
4697 position-independent output. LO16 and HI16 relocations are not
4698 supposed to be encountered in this case.
4700 LABEL16 should always be resolvable by the linker, since it's only
4703 LABEL24, on the other hand, is used by calls. If it turns out that
4704 the target of a call is a dynamic symbol, a PLT entry must be
4705 created for it, which triggers the creation of a private function
4706 descriptor and, unless lazy binding is disabled, a lazy PLT entry.
4708 GPREL relocations require the referenced symbol to be in the same
4709 segment as _gp, but this can only be checked later.
4711 All GOT, GOTOFF and FUNCDESC relocations require a .got section to
4712 exist. LABEL24 might as well, since it may require a PLT entry,
4713 that will require a got.
4715 Non-FUNCDESC GOT relocations require a GOT entry to be created
4716 regardless of whether the symbol is dynamic. However, since a
4717 global symbol that turns out to not be exported may have the same
4718 address of a non-dynamic symbol, we don't assign GOT entries at
4719 this point, such that we can share them in this case. A relocation
4720 for the GOT entry always has to be created, be it to offset a
4721 private symbol by the section load address, be it to get the symbol
4722 resolved dynamically.
4724 FUNCDESC GOT relocations require a GOT entry to be created, and
4725 handled as if a FUNCDESC relocation was applied to the GOT entry in
4728 FUNCDESC relocations referencing a symbol that turns out to NOT be
4729 dynamic cause a private function descriptor to be created. The
4730 FUNCDESC relocation then decays to a 32 relocation that points at
4731 the private descriptor. If the symbol is dynamic, the FUNCDESC
4732 relocation is propagated to the linker output, such that the
4733 dynamic linker creates the canonical descriptor, pointing to the
4734 dynamically-resolved definition of the function.
4736 Non-FUNCDESC GOTOFF relocations must always refer to non-dynamic
4737 symbols that are assigned to the same segment as the GOT, but we
4738 can only check this later, after we know the complete set of
4739 symbols defined and/or exported.
4741 FUNCDESC GOTOFF relocations require a function descriptor to be
4742 created and, unless lazy binding is disabled or the symbol is not
4743 dynamic, a lazy PLT entry. Since we can't tell at this point
4744 whether a symbol is going to be dynamic, we have to decide later
4745 whether to create a lazy PLT entry or bind the descriptor directly
4746 to the private function.
4748 FUNCDESC_VALUE relocations are not supposed to be present in object
4749 files, but they may very well be simply propagated to the linker
4750 output, since they have no side effect.
4753 A function descriptor always requires a FUNCDESC_VALUE relocation.
4754 Whether it's in .plt.rel or not depends on whether lazy binding is
4755 enabled and on whether the referenced symbol is dynamic.
4757 The existence of a lazy PLT requires the resolverStub lazy PLT
4758 entry to be present.
4761 As for assignment of GOT, PLT and lazy PLT entries, and private
4762 descriptors, we might do them all sequentially, but we can do
4763 better than that. For example, we can place GOT entries and
4764 private function descriptors referenced using 12-bit operands
4765 closer to the PIC register value, such that these relocations don't
4766 overflow. Those that are only referenced with LO16 relocations
4767 could come next, but we may as well place PLT-required function
4768 descriptors in the 12-bit range to make them shorter. Symbols
4769 referenced with LO16/HI16 may come next, but we may place
4770 additional function descriptors in the 16-bit range if we can
4771 reliably tell that we've already placed entries that are ever
4772 referenced with only LO16. PLT entries are therefore generated as
4773 small as possible, while not introducing relocation overflows in
4774 GOT or FUNCDESC_GOTOFF relocations. Lazy PLT entries could be
4775 generated before or after PLT entries, but not intermingled with
4776 them, such that we can have more lazy PLT entries in range for a
4777 branch to the resolverStub. The resolverStub should be emitted at
4778 the most distant location from the first lazy PLT entry such that
4779 it's still in range for a branch, or closer, if there isn't a need
4780 for so many lazy PLT entries. Additional lazy PLT entries may be
4781 emitted after the resolverStub, as long as branches are still in
4782 range. If the branch goes out of range, longer lazy PLT entries
4785 We could further optimize PLT and lazy PLT entries by giving them
4786 priority in assignment to closer-to-gr17 locations depending on the
4787 number of occurrences of references to them (assuming a function
4788 that's called more often is more important for performance, so its
4789 PLT entry should be faster), or taking hints from the compiler.
4790 Given infinite time and money... :-) */
4793 bfinfdpic_check_relocs (bfd *abfd, struct bfd_link_info *info,
4794 asection *sec, const Elf_Internal_Rela *relocs)
4796 Elf_Internal_Shdr *symtab_hdr;
4797 struct elf_link_hash_entry **sym_hashes;
4798 const Elf_Internal_Rela *rel;
4799 const Elf_Internal_Rela *rel_end;
4801 struct bfinfdpic_relocs_info *picrel;
4803 if (info->relocatable)
4806 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
4807 sym_hashes = elf_sym_hashes (abfd);
4809 dynobj = elf_hash_table (info)->dynobj;
4810 rel_end = relocs + sec->reloc_count;
4811 for (rel = relocs; rel < rel_end; rel++)
4813 struct elf_link_hash_entry *h;
4814 unsigned long r_symndx;
4816 r_symndx = ELF32_R_SYM (rel->r_info);
4817 if (r_symndx < symtab_hdr->sh_info)
4820 h = sym_hashes[r_symndx - symtab_hdr->sh_info];
4822 switch (ELF32_R_TYPE (rel->r_info))
4824 case R_BFIN_GOT17M4:
4827 case R_BFIN_FUNCDESC_GOT17M4:
4828 case R_BFIN_FUNCDESC_GOTHI:
4829 case R_BFIN_FUNCDESC_GOTLO:
4830 case R_BFIN_GOTOFF17M4:
4831 case R_BFIN_GOTOFFHI:
4832 case R_BFIN_GOTOFFLO:
4833 case R_BFIN_FUNCDESC_GOTOFF17M4:
4834 case R_BFIN_FUNCDESC_GOTOFFHI:
4835 case R_BFIN_FUNCDESC_GOTOFFLO:
4836 case R_BFIN_FUNCDESC:
4837 case R_BFIN_FUNCDESC_VALUE:
4838 if (! IS_FDPIC (abfd))
4841 case R_BFIN_PCREL24:
4842 case R_BFIN_PCREL24_JUMP_L:
4843 case R_BFIN_BYTE4_DATA:
4844 if (IS_FDPIC (abfd) && ! dynobj)
4846 elf_hash_table (info)->dynobj = dynobj = abfd;
4847 if (! _bfin_create_got_section (abfd, info))
4850 if (! IS_FDPIC (abfd))
4857 if (h->dynindx == -1)
4858 switch (ELF_ST_VISIBILITY (h->other))
4864 bfd_elf_link_record_dynamic_symbol (info, h);
4868 = bfinfdpic_relocs_info_for_global (bfinfdpic_relocs_info (info),
4870 rel->r_addend, INSERT);
4873 picrel = bfinfdpic_relocs_info_for_local (bfinfdpic_relocs_info
4874 (info), abfd, r_symndx,
4875 rel->r_addend, INSERT);
4885 switch (ELF32_R_TYPE (rel->r_info))
4887 case R_BFIN_PCREL24:
4888 case R_BFIN_PCREL24_JUMP_L:
4889 if (IS_FDPIC (abfd))
4893 case R_BFIN_FUNCDESC_VALUE:
4894 picrel->relocsfdv++;
4895 if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
4899 case R_BFIN_BYTE4_DATA:
4900 if (! IS_FDPIC (abfd))
4904 if (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)
4908 case R_BFIN_GOT17M4:
4917 case R_BFIN_FUNCDESC_GOT17M4:
4918 picrel->fdgot17m4++;
4921 case R_BFIN_FUNCDESC_GOTHI:
4922 case R_BFIN_FUNCDESC_GOTLO:
4923 picrel->fdgothilo++;
4926 case R_BFIN_GOTOFF17M4:
4927 case R_BFIN_GOTOFFHI:
4928 case R_BFIN_GOTOFFLO:
4932 case R_BFIN_FUNCDESC_GOTOFF17M4:
4933 picrel->fdgoff17m4++;
4936 case R_BFIN_FUNCDESC_GOTOFFHI:
4937 case R_BFIN_FUNCDESC_GOTOFFLO:
4938 picrel->fdgoffhilo++;
4941 case R_BFIN_FUNCDESC:
4946 /* This relocation describes the C++ object vtable hierarchy.
4947 Reconstruct it for later use during GC. */
4948 case R_BFIN_GNU_VTINHERIT:
4949 if (!bfd_elf_gc_record_vtinherit (abfd, sec, h, rel->r_offset))
4953 /* This relocation describes which C++ vtable entries are actually
4954 used. Record for later use during GC. */
4955 case R_BFIN_GNU_VTENTRY:
4956 BFD_ASSERT (h != NULL);
4958 && !bfd_elf_gc_record_vtentry (abfd, sec, h, rel->r_addend))
4962 case R_BFIN_HUIMM16:
4963 case R_BFIN_LUIMM16:
4964 case R_BFIN_PCREL12_JUMP_S:
4965 case R_BFIN_PCREL10:
4970 (*_bfd_error_handler)
4971 (_("%B: unsupported relocation type %i"),
4972 abfd, ELF32_R_TYPE (rel->r_info));
4980 /* Set the right machine number for a Blackfin ELF file. */
4983 elf32_bfin_object_p (bfd *abfd)
4985 bfd_default_set_arch_mach (abfd, bfd_arch_bfin, 0);
4986 return (((elf_elfheader (abfd)->e_flags & EF_BFIN_FDPIC) != 0)
4987 == (IS_FDPIC (abfd)));
4991 elf32_bfin_set_private_flags (bfd * abfd, flagword flags)
4993 elf_elfheader (abfd)->e_flags = flags;
4994 elf_flags_init (abfd) = TRUE;
4998 /* Copy backend specific data from one object module to another. */
5001 bfin_elf_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
5003 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5004 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5007 BFD_ASSERT (!elf_flags_init (obfd)
5008 || elf_elfheader (obfd)->e_flags == elf_elfheader (ibfd)->e_flags);
5010 elf_elfheader (obfd)->e_flags = elf_elfheader (ibfd)->e_flags;
5011 elf_flags_init (obfd) = TRUE;
5013 /* Copy object attributes. */
5014 _bfd_elf_copy_obj_attributes (ibfd, obfd);
5020 elf32_bfinfdpic_copy_private_bfd_data (bfd *ibfd, bfd *obfd)
5024 if (bfd_get_flavour (ibfd) != bfd_target_elf_flavour
5025 || bfd_get_flavour (obfd) != bfd_target_elf_flavour)
5028 if (! bfin_elf_copy_private_bfd_data (ibfd, obfd))
5031 if (! elf_tdata (ibfd) || ! elf_tdata (ibfd)->phdr
5032 || ! elf_tdata (obfd) || ! elf_tdata (obfd)->phdr)
5035 /* Copy the stack size. */
5036 for (i = 0; i < elf_elfheader (ibfd)->e_phnum; i++)
5037 if (elf_tdata (ibfd)->phdr[i].p_type == PT_GNU_STACK)
5039 Elf_Internal_Phdr *iphdr = &elf_tdata (ibfd)->phdr[i];
5041 for (i = 0; i < elf_elfheader (obfd)->e_phnum; i++)
5042 if (elf_tdata (obfd)->phdr[i].p_type == PT_GNU_STACK)
5044 memcpy (&elf_tdata (obfd)->phdr[i], iphdr, sizeof (*iphdr));
5046 /* Rewrite the phdrs, since we're only called after they
5047 were first written. */
5048 if (bfd_seek (obfd, (bfd_signed_vma) get_elf_backend_data (obfd)
5049 ->s->sizeof_ehdr, SEEK_SET) != 0
5050 || get_elf_backend_data (obfd)->s
5051 ->write_out_phdrs (obfd, elf_tdata (obfd)->phdr,
5052 elf_elfheader (obfd)->e_phnum) != 0)
5064 /* Display the flags field. */
5066 elf32_bfin_print_private_bfd_data (bfd * abfd, PTR ptr)
5068 FILE *file = (FILE *) ptr;
5071 BFD_ASSERT (abfd != NULL && ptr != NULL);
5073 /* Print normal ELF private data. */
5074 _bfd_elf_print_private_bfd_data (abfd, ptr);
5076 flags = elf_elfheader (abfd)->e_flags;
5078 /* xgettext:c-format */
5079 fprintf (file, _("private flags = %lx:"), elf_elfheader (abfd)->e_flags);
5081 if (flags & EF_BFIN_PIC)
5082 fprintf (file, " -fpic");
5084 if (flags & EF_BFIN_FDPIC)
5085 fprintf (file, " -mfdpic");
5092 /* Merge backend specific data from an object file to the output
5093 object file when linking. */
5096 elf32_bfin_merge_private_bfd_data (bfd *ibfd, bfd *obfd)
5098 flagword old_flags, new_flags;
5099 bfd_boolean error = FALSE;
5101 new_flags = elf_elfheader (ibfd)->e_flags;
5102 old_flags = elf_elfheader (obfd)->e_flags;
5104 if (new_flags & EF_BFIN_FDPIC)
5105 new_flags &= ~EF_BFIN_PIC;
5110 (*_bfd_error_handler) ("old_flags = 0x%.8lx, new_flags = 0x%.8lx, init = %s, filename = %s",
5111 old_flags, new_flags, elf_flags_init (obfd) ? "yes" : "no",
5112 bfd_get_filename (ibfd));
5114 if (!elf_flags_init (obfd)) /* First call, no flags set. */
5116 elf_flags_init (obfd) = TRUE;
5117 elf_elfheader (obfd)->e_flags = new_flags;
5120 if (((new_flags & EF_BFIN_FDPIC) == 0) != (! IS_FDPIC (obfd)))
5123 if (IS_FDPIC (obfd))
5124 (*_bfd_error_handler)
5125 (_("%s: cannot link non-fdpic object file into fdpic executable"),
5126 bfd_get_filename (ibfd));
5128 (*_bfd_error_handler)
5129 (_("%s: cannot link fdpic object file into non-fdpic executable"),
5130 bfd_get_filename (ibfd));
5134 bfd_set_error (bfd_error_bad_value);
5139 /* bfin ELF linker hash entry. */
5141 struct bfin_link_hash_entry
5143 struct elf_link_hash_entry root;
5145 /* Number of PC relative relocs copied for this symbol. */
5146 struct bfin_pcrel_relocs_copied *pcrel_relocs_copied;
5149 /* bfin ELF linker hash table. */
5151 struct bfin_link_hash_table
5153 struct elf_link_hash_table root;
5155 /* Small local sym cache. */
5156 struct sym_cache sym_cache;
5159 #define bfin_hash_entry(ent) ((struct bfin_link_hash_entry *) (ent))
5161 static struct bfd_hash_entry *
5162 bfin_link_hash_newfunc (struct bfd_hash_entry *entry,
5163 struct bfd_hash_table *table, const char *string)
5165 struct bfd_hash_entry *ret = entry;
5167 /* Allocate the structure if it has not already been allocated by a
5170 ret = bfd_hash_allocate (table, sizeof (struct bfin_link_hash_entry));
5174 /* Call the allocation method of the superclass. */
5175 ret = _bfd_elf_link_hash_newfunc (ret, table, string);
5177 bfin_hash_entry (ret)->pcrel_relocs_copied = NULL;
5182 /* Create an bfin ELF linker hash table. */
5184 static struct bfd_link_hash_table *
5185 bfin_link_hash_table_create (bfd * abfd)
5187 struct bfin_link_hash_table *ret;
5188 bfd_size_type amt = sizeof (struct bfin_link_hash_table);
5190 ret = bfd_zalloc (abfd, amt);
5194 if (!_bfd_elf_link_hash_table_init (&ret->root, abfd,
5195 bfin_link_hash_newfunc,
5196 sizeof (struct elf_link_hash_entry),
5203 ret->sym_cache.abfd = NULL;
5205 return &ret->root.root;
5208 /* The size in bytes of an entry in the procedure linkage table. */
5210 /* Finish up the dynamic sections. */
5213 bfin_finish_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
5214 struct bfd_link_info *info)
5219 dynobj = elf_hash_table (info)->dynobj;
5221 sdyn = bfd_get_section_by_name (dynobj, ".dynamic");
5223 if (elf_hash_table (info)->dynamic_sections_created)
5225 Elf32_External_Dyn *dyncon, *dynconend;
5227 BFD_ASSERT (sdyn != NULL);
5229 dyncon = (Elf32_External_Dyn *) sdyn->contents;
5230 dynconend = (Elf32_External_Dyn *) (sdyn->contents + sdyn->size);
5231 for (; dyncon < dynconend; dyncon++)
5233 Elf_Internal_Dyn dyn;
5235 bfd_elf32_swap_dyn_in (dynobj, dyncon, &dyn);
5243 /* Finish up dynamic symbol handling. We set the contents of various
5244 dynamic sections here. */
5247 bfin_finish_dynamic_symbol (bfd * output_bfd,
5248 struct bfd_link_info *info,
5249 struct elf_link_hash_entry *h,
5250 Elf_Internal_Sym * sym)
5254 dynobj = elf_hash_table (info)->dynobj;
5256 if (h->got.offset != (bfd_vma) - 1)
5260 Elf_Internal_Rela rela;
5263 /* This symbol has an entry in the global offset table.
5266 sgot = bfd_get_section_by_name (dynobj, ".got");
5267 srela = bfd_get_section_by_name (dynobj, ".rela.got");
5268 BFD_ASSERT (sgot != NULL && srela != NULL);
5270 rela.r_offset = (sgot->output_section->vma
5271 + sgot->output_offset
5272 + (h->got.offset & ~(bfd_vma) 1));
5274 /* If this is a -Bsymbolic link, and the symbol is defined
5275 locally, we just want to emit a RELATIVE reloc. Likewise if
5276 the symbol was forced to be local because of a version file.
5277 The entry in the global offset table will already have been
5278 initialized in the relocate_section function. */
5281 || h->dynindx == -1 || h->forced_local) && h->def_regular)
5283 fprintf(stderr, "*** check this relocation %s\n", __FUNCTION__);
5284 rela.r_info = ELF32_R_INFO (0, R_BFIN_PCREL24);
5285 rela.r_addend = bfd_get_signed_32 (output_bfd,
5289 offset & ~(bfd_vma) 1)));
5293 bfd_put_32 (output_bfd, (bfd_vma) 0,
5294 sgot->contents + (h->got.offset & ~(bfd_vma) 1));
5295 rela.r_info = ELF32_R_INFO (h->dynindx, R_BFIN_GOT);
5299 loc = srela->contents;
5300 loc += srela->reloc_count++ * sizeof (Elf32_External_Rela);
5301 bfd_elf32_swap_reloca_out (output_bfd, &rela, loc);
5308 /* Mark _DYNAMIC and _GLOBAL_OFFSET_TABLE_ as absolute. */
5309 if (strcmp (h->root.root.string, "__DYNAMIC") == 0
5310 || h == elf_hash_table (info)->hgot)
5311 sym->st_shndx = SHN_ABS;
5316 /* Adjust a symbol defined by a dynamic object and referenced by a
5317 regular object. The current definition is in some section of the
5318 dynamic object, but we're not including those sections. We have to
5319 change the definition to something the rest of the link can
5323 bfin_adjust_dynamic_symbol (struct bfd_link_info *info,
5324 struct elf_link_hash_entry *h)
5328 unsigned int power_of_two;
5330 dynobj = elf_hash_table (info)->dynobj;
5332 /* Make sure we know what is going on here. */
5333 BFD_ASSERT (dynobj != NULL
5335 || h->u.weakdef != NULL
5336 || (h->def_dynamic && h->ref_regular && !h->def_regular)));
5338 /* If this is a function, put it in the procedure linkage table. We
5339 will fill in the contents of the procedure linkage table later,
5340 when we know the address of the .got section. */
5341 if (h->type == STT_FUNC || h->needs_plt)
5346 /* If this is a weak symbol, and there is a real definition, the
5347 processor independent code will have arranged for us to see the
5348 real definition first, and we can just use the same value. */
5349 if (h->u.weakdef != NULL)
5351 BFD_ASSERT (h->u.weakdef->root.type == bfd_link_hash_defined
5352 || h->u.weakdef->root.type == bfd_link_hash_defweak);
5353 h->root.u.def.section = h->u.weakdef->root.u.def.section;
5354 h->root.u.def.value = h->u.weakdef->root.u.def.value;
5358 /* This is a reference to a symbol defined by a dynamic object which
5359 is not a function. */
5361 /* If we are creating a shared library, we must presume that the
5362 only references to the symbol are via the global offset table.
5363 For such cases we need not do anything here; the relocations will
5364 be handled correctly by relocate_section. */
5368 /* We must allocate the symbol in our .dynbss section, which will
5369 become part of the .bss section of the executable. There will be
5370 an entry for this symbol in the .dynsym section. The dynamic
5371 object will contain position independent code, so all references
5372 from the dynamic object to this symbol will go through the global
5373 offset table. The dynamic linker will use the .dynsym entry to
5374 determine the address it must put in the global offset table, so
5375 both the dynamic object and the regular object will refer to the
5376 same memory location for the variable. */
5378 s = bfd_get_section_by_name (dynobj, ".dynbss");
5379 BFD_ASSERT (s != NULL);
5381 /* We must generate a R_68K_COPY reloc to tell the dynamic linker to
5382 copy the initial value out of the dynamic object and into the
5383 runtime process image. We need to remember the offset into the
5384 .rela.bss section we are going to use. */
5385 if ((h->root.u.def.section->flags & SEC_ALLOC) != 0)
5389 srel = bfd_get_section_by_name (dynobj, ".rela.bss");
5390 BFD_ASSERT (srel != NULL);
5391 srel->size += sizeof (Elf32_External_Rela);
5395 /* We need to figure out the alignment required for this symbol. I
5396 have no idea how ELF linkers handle this. */
5397 power_of_two = bfd_log2 (h->size);
5398 if (power_of_two > 3)
5401 /* Apply the required alignment. */
5402 s->size = BFD_ALIGN (s->size, (bfd_size_type) (1 << power_of_two));
5403 if (power_of_two > bfd_get_section_alignment (dynobj, s))
5405 if (!bfd_set_section_alignment (dynobj, s, power_of_two))
5409 /* Define the symbol as being at this point in the section. */
5410 h->root.u.def.section = s;
5411 h->root.u.def.value = s->size;
5413 /* Increment the section size to make room for the symbol. */
5419 /* The bfin linker needs to keep track of the number of relocs that it
5420 decides to copy in check_relocs for each symbol. This is so that it
5421 can discard PC relative relocs if it doesn't need them when linking
5422 with -Bsymbolic. We store the information in a field extending the
5423 regular ELF linker hash table. */
5425 /* This structure keeps track of the number of PC relative relocs we have
5426 copied for a given symbol. */
5428 struct bfin_pcrel_relocs_copied
5431 struct bfin_pcrel_relocs_copied *next;
5432 /* A section in dynobj. */
5434 /* Number of relocs copied in this section. */
5435 bfd_size_type count;
5438 /* This function is called via elf_link_hash_traverse if we are
5439 creating a shared object. In the -Bsymbolic case it discards the
5440 space allocated to copy PC relative relocs against symbols which
5441 are defined in regular objects. For the normal shared case, it
5442 discards space for pc-relative relocs that have become local due to
5443 symbol visibility changes. We allocated space for them in the
5444 check_relocs routine, but we won't fill them in in the
5445 relocate_section routine.
5447 We also check whether any of the remaining relocations apply
5448 against a readonly section, and set the DF_TEXTREL flag in this
5452 bfin_discard_copies (struct elf_link_hash_entry *h, PTR inf)
5454 struct bfd_link_info *info = (struct bfd_link_info *) inf;
5455 struct bfin_pcrel_relocs_copied *s;
5457 if (h->root.type == bfd_link_hash_warning)
5458 h = (struct elf_link_hash_entry *) h->root.u.i.link;
5460 if (!h->def_regular || (!info->symbolic && !h->forced_local))
5462 if ((info->flags & DF_TEXTREL) == 0)
5464 /* Look for relocations against read-only sections. */
5465 for (s = bfin_hash_entry (h)->pcrel_relocs_copied;
5466 s != NULL; s = s->next)
5467 if ((s->section->flags & SEC_READONLY) != 0)
5469 info->flags |= DF_TEXTREL;
5477 for (s = bfin_hash_entry (h)->pcrel_relocs_copied;
5478 s != NULL; s = s->next)
5479 s->section->size -= s->count * sizeof (Elf32_External_Rela);
5485 bfin_size_dynamic_sections (bfd * output_bfd ATTRIBUTE_UNUSED,
5486 struct bfd_link_info *info)
5492 dynobj = elf_hash_table (info)->dynobj;
5493 BFD_ASSERT (dynobj != NULL);
5495 if (elf_hash_table (info)->dynamic_sections_created)
5497 /* Set the contents of the .interp section to the interpreter. */
5498 if (info->executable)
5500 s = bfd_get_section_by_name (dynobj, ".interp");
5501 BFD_ASSERT (s != NULL);
5502 s->size = sizeof ELF_DYNAMIC_INTERPRETER;
5503 s->contents = (unsigned char *) ELF_DYNAMIC_INTERPRETER;
5508 /* We may have created entries in the .rela.got section.
5509 However, if we are not creating the dynamic sections, we will
5510 not actually use these entries. Reset the size of .rela.got,
5511 which will cause it to get stripped from the output file
5513 s = bfd_get_section_by_name (dynobj, ".rela.got");
5518 /* If this is a -Bsymbolic shared link, then we need to discard all
5519 PC relative relocs against symbols defined in a regular object.
5520 For the normal shared case we discard the PC relative relocs
5521 against symbols that have become local due to visibility changes.
5522 We allocated space for them in the check_relocs routine, but we
5523 will not fill them in in the relocate_section routine. */
5525 elf_link_hash_traverse (elf_hash_table (info),
5526 bfin_discard_copies, (PTR) info);
5528 /* The check_relocs and adjust_dynamic_symbol entry points have
5529 determined the sizes of the various dynamic sections. Allocate
5532 for (s = dynobj->sections; s != NULL; s = s->next)
5537 if ((s->flags & SEC_LINKER_CREATED) == 0)
5540 /* It's OK to base decisions on the section name, because none
5541 of the dynobj section names depend upon the input files. */
5542 name = bfd_get_section_name (dynobj, s);
5546 if (CONST_STRNEQ (name, ".rela"))
5550 /* If we don't need this section, strip it from the
5551 output file. This is mostly to handle .rela.bss and
5552 .rela.plt. We must create both sections in
5553 create_dynamic_sections, because they must be created
5554 before the linker maps input sections to output
5555 sections. The linker does that before
5556 adjust_dynamic_symbol is called, and it is that
5557 function which decides whether anything needs to go
5558 into these sections. */
5565 /* We use the reloc_count field as a counter if we need
5566 to copy relocs into the output file. */
5570 else if (! CONST_STRNEQ (name, ".got"))
5572 /* It's not one of our sections, so don't allocate space. */
5578 s->flags |= SEC_EXCLUDE;
5582 /* Allocate memory for the section contents. */
5583 /* FIXME: This should be a call to bfd_alloc not bfd_zalloc.
5584 Unused entries should be reclaimed before the section's contents
5585 are written out, but at the moment this does not happen. Thus in
5586 order to prevent writing out garbage, we initialise the section's
5587 contents to zero. */
5588 s->contents = (bfd_byte *) bfd_zalloc (dynobj, s->size);
5589 if (s->contents == NULL && s->size != 0)
5593 if (elf_hash_table (info)->dynamic_sections_created)
5595 /* Add some entries to the .dynamic section. We fill in the
5596 values later, in bfin_finish_dynamic_sections, but we
5597 must add the entries now so that we get the correct size for
5598 the .dynamic section. The DT_DEBUG entry is filled in by the
5599 dynamic linker and used by the debugger. */
5600 #define add_dynamic_entry(TAG, VAL) \
5601 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
5605 if (!add_dynamic_entry (DT_DEBUG, 0))
5612 if (!add_dynamic_entry (DT_RELA, 0)
5613 || !add_dynamic_entry (DT_RELASZ, 0)
5614 || !add_dynamic_entry (DT_RELAENT,
5615 sizeof (Elf32_External_Rela)))
5619 if ((info->flags & DF_TEXTREL) != 0)
5621 if (!add_dynamic_entry (DT_TEXTREL, 0))
5625 #undef add_dynamic_entry
5630 /* Given a .data section and a .emreloc in-memory section, store
5631 relocation information into the .emreloc section which can be
5632 used at runtime to relocate the section. This is called by the
5633 linker when the --embedded-relocs switch is used. This is called
5634 after the add_symbols entry point has been called for all the
5635 objects, and before the final_link entry point is called. */
5637 bfd_boolean bfd_bfin_elf32_create_embedded_relocs
5638 PARAMS ((bfd *, struct bfd_link_info *, asection *, asection *, char **));
5641 bfd_bfin_elf32_create_embedded_relocs (
5643 struct bfd_link_info *info,
5648 Elf_Internal_Shdr *symtab_hdr;
5649 Elf_Internal_Sym *isymbuf = NULL;
5650 Elf_Internal_Rela *internal_relocs = NULL;
5651 Elf_Internal_Rela *irel, *irelend;
5655 BFD_ASSERT (! info->relocatable);
5659 if (datasec->reloc_count == 0)
5662 symtab_hdr = &elf_tdata (abfd)->symtab_hdr;
5664 /* Get a copy of the native relocations. */
5665 internal_relocs = (_bfd_elf_link_read_relocs
5666 (abfd, datasec, (PTR) NULL, (Elf_Internal_Rela *) NULL,
5667 info->keep_memory));
5668 if (internal_relocs == NULL)
5671 amt = (bfd_size_type) datasec->reloc_count * 12;
5672 relsec->contents = (bfd_byte *) bfd_alloc (abfd, amt);
5673 if (relsec->contents == NULL)
5676 p = relsec->contents;
5678 irelend = internal_relocs + datasec->reloc_count;
5679 for (irel = internal_relocs; irel < irelend; irel++, p += 12)
5681 asection *targetsec;
5683 /* We are going to write a four byte longword into the runtime
5684 reloc section. The longword will be the address in the data
5685 section which must be relocated. It is followed by the name
5686 of the target section NUL-padded or truncated to 8
5689 /* We can only relocate absolute longword relocs at run time. */
5690 if (ELF32_R_TYPE (irel->r_info) != (int) R_BFIN_BYTE4_DATA)
5692 *errmsg = _("unsupported reloc type");
5693 bfd_set_error (bfd_error_bad_value);
5697 /* Get the target section referred to by the reloc. */
5698 if (ELF32_R_SYM (irel->r_info) < symtab_hdr->sh_info)
5700 /* A local symbol. */
5701 Elf_Internal_Sym *isym;
5703 /* Read this BFD's local symbols if we haven't done so already. */
5704 if (isymbuf == NULL)
5706 isymbuf = (Elf_Internal_Sym *) symtab_hdr->contents;
5707 if (isymbuf == NULL)
5708 isymbuf = bfd_elf_get_elf_syms (abfd, symtab_hdr,
5709 symtab_hdr->sh_info, 0,
5711 if (isymbuf == NULL)
5715 isym = isymbuf + ELF32_R_SYM (irel->r_info);
5716 targetsec = bfd_section_from_elf_index (abfd, isym->st_shndx);
5721 struct elf_link_hash_entry *h;
5723 /* An external symbol. */
5724 indx = ELF32_R_SYM (irel->r_info) - symtab_hdr->sh_info;
5725 h = elf_sym_hashes (abfd)[indx];
5726 BFD_ASSERT (h != NULL);
5727 if (h->root.type == bfd_link_hash_defined
5728 || h->root.type == bfd_link_hash_defweak)
5729 targetsec = h->root.u.def.section;
5734 bfd_put_32 (abfd, irel->r_offset + datasec->output_offset, p);
5735 memset (p + 4, 0, 8);
5736 if (targetsec != NULL)
5737 strncpy ((char *) p + 4, targetsec->output_section->name, 8);
5740 if (isymbuf != NULL && symtab_hdr->contents != (unsigned char *) isymbuf)
5742 if (internal_relocs != NULL
5743 && elf_section_data (datasec)->relocs != internal_relocs)
5744 free (internal_relocs);
5748 if (isymbuf != NULL && symtab_hdr->contents != (unsigned char *) isymbuf)
5750 if (internal_relocs != NULL
5751 && elf_section_data (datasec)->relocs != internal_relocs)
5752 free (internal_relocs);
5756 struct bfd_elf_special_section const elf32_bfin_special_sections[] =
5758 { ".l1.text", 8, -2, SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR },
5759 { ".l1.data", 8, -2, SHT_PROGBITS, SHF_ALLOC + SHF_WRITE },
5760 { NULL, 0, 0, 0, 0 }
5764 #define TARGET_LITTLE_SYM bfd_elf32_bfin_vec
5765 #define TARGET_LITTLE_NAME "elf32-bfin"
5766 #define ELF_ARCH bfd_arch_bfin
5767 #define ELF_TARGET_ID BFIN_ELF_DATA
5768 #define ELF_MACHINE_CODE EM_BLACKFIN
5769 #define ELF_MAXPAGESIZE 0x1000
5770 #define elf_symbol_leading_char '_'
5772 #define bfd_elf32_bfd_reloc_type_lookup bfin_bfd_reloc_type_lookup
5773 #define bfd_elf32_bfd_reloc_name_lookup \
5774 bfin_bfd_reloc_name_lookup
5775 #define elf_info_to_howto bfin_info_to_howto
5776 #define elf_info_to_howto_rel 0
5777 #define elf_backend_object_p elf32_bfin_object_p
5779 #define bfd_elf32_bfd_is_local_label_name \
5780 bfin_is_local_label_name
5781 #define bfin_hash_table(p) \
5782 ((struct bfin_link_hash_table *) (p)->hash)
5786 #define elf_backend_create_dynamic_sections \
5787 _bfd_elf_create_dynamic_sections
5788 #define bfd_elf32_bfd_link_hash_table_create \
5789 bfin_link_hash_table_create
5790 #define bfd_elf32_bfd_final_link bfd_elf_gc_common_final_link
5792 #define elf_backend_check_relocs bfin_check_relocs
5793 #define elf_backend_adjust_dynamic_symbol \
5794 bfin_adjust_dynamic_symbol
5795 #define elf_backend_size_dynamic_sections \
5796 bfin_size_dynamic_sections
5797 #define elf_backend_relocate_section bfin_relocate_section
5798 #define elf_backend_finish_dynamic_symbol \
5799 bfin_finish_dynamic_symbol
5800 #define elf_backend_finish_dynamic_sections \
5801 bfin_finish_dynamic_sections
5802 #define elf_backend_gc_mark_hook bfin_gc_mark_hook
5803 #define elf_backend_gc_sweep_hook bfin_gc_sweep_hook
5804 #define bfd_elf32_bfd_merge_private_bfd_data \
5805 elf32_bfin_merge_private_bfd_data
5806 #define bfd_elf32_bfd_set_private_flags \
5807 elf32_bfin_set_private_flags
5808 #define bfd_elf32_bfd_print_private_bfd_data \
5809 elf32_bfin_print_private_bfd_data
5810 #define elf_backend_reloc_type_class elf32_bfin_reloc_type_class
5811 #define elf_backend_can_gc_sections 1
5812 #define elf_backend_special_sections elf32_bfin_special_sections
5813 #define elf_backend_can_refcount 1
5814 #define elf_backend_want_got_plt 0
5815 #define elf_backend_plt_readonly 1
5816 #define elf_backend_want_plt_sym 0
5817 #define elf_backend_got_header_size 12
5818 #define elf_backend_rela_normal 1
5820 #include "elf32-target.h"
5822 #undef TARGET_LITTLE_SYM
5823 #define TARGET_LITTLE_SYM bfd_elf32_bfinfdpic_vec
5824 #undef TARGET_LITTLE_NAME
5825 #define TARGET_LITTLE_NAME "elf32-bfinfdpic"
5827 #define elf32_bed elf32_bfinfdpic_bed
5829 #undef elf_backend_gc_sweep_hook
5830 #define elf_backend_gc_sweep_hook bfinfdpic_gc_sweep_hook
5832 #undef elf_backend_got_header_size
5833 #define elf_backend_got_header_size 0
5835 #undef elf_backend_relocate_section
5836 #define elf_backend_relocate_section bfinfdpic_relocate_section
5837 #undef elf_backend_check_relocs
5838 #define elf_backend_check_relocs bfinfdpic_check_relocs
5840 #undef bfd_elf32_bfd_link_hash_table_create
5841 #define bfd_elf32_bfd_link_hash_table_create \
5842 bfinfdpic_elf_link_hash_table_create
5843 #undef elf_backend_always_size_sections
5844 #define elf_backend_always_size_sections \
5845 elf32_bfinfdpic_always_size_sections
5846 #undef elf_backend_modify_program_headers
5847 #define elf_backend_modify_program_headers \
5848 elf32_bfinfdpic_modify_program_headers
5849 #undef bfd_elf32_bfd_copy_private_bfd_data
5850 #define bfd_elf32_bfd_copy_private_bfd_data \
5851 elf32_bfinfdpic_copy_private_bfd_data
5853 #undef elf_backend_create_dynamic_sections
5854 #define elf_backend_create_dynamic_sections \
5855 elf32_bfinfdpic_create_dynamic_sections
5856 #undef elf_backend_adjust_dynamic_symbol
5857 #define elf_backend_adjust_dynamic_symbol \
5858 elf32_bfinfdpic_adjust_dynamic_symbol
5859 #undef elf_backend_size_dynamic_sections
5860 #define elf_backend_size_dynamic_sections \
5861 elf32_bfinfdpic_size_dynamic_sections
5862 #undef elf_backend_finish_dynamic_symbol
5863 #define elf_backend_finish_dynamic_symbol \
5864 elf32_bfinfdpic_finish_dynamic_symbol
5865 #undef elf_backend_finish_dynamic_sections
5866 #define elf_backend_finish_dynamic_sections \
5867 elf32_bfinfdpic_finish_dynamic_sections
5869 #undef elf_backend_discard_info
5870 #define elf_backend_discard_info \
5871 bfinfdpic_elf_discard_info
5872 #undef elf_backend_can_make_relative_eh_frame
5873 #define elf_backend_can_make_relative_eh_frame \
5874 bfinfdpic_elf_use_relative_eh_frame
5875 #undef elf_backend_can_make_lsda_relative_eh_frame
5876 #define elf_backend_can_make_lsda_relative_eh_frame \
5877 bfinfdpic_elf_use_relative_eh_frame
5878 #undef elf_backend_encode_eh_address
5879 #define elf_backend_encode_eh_address \
5880 bfinfdpic_elf_encode_eh_address
5882 #undef elf_backend_may_use_rel_p
5883 #define elf_backend_may_use_rel_p 1
5884 #undef elf_backend_may_use_rela_p
5885 #define elf_backend_may_use_rela_p 1
5886 /* We use REL for dynamic relocations only. */
5887 #undef elf_backend_default_use_rela_p
5888 #define elf_backend_default_use_rela_p 1
5890 #undef elf_backend_omit_section_dynsym
5891 #define elf_backend_omit_section_dynsym _bfinfdpic_link_omit_section_dynsym
5893 #include "elf32-target.h"