1 /* Lattice Mico32-specific support for 32-bit ELF
2 Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
3 Contributed by Jon Beniston <jon@beniston.com>
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. */
28 #define DEFAULT_STACK_SIZE 0x20000
30 #define PLT_ENTRY_SIZE 20
32 #define PLT0_ENTRY_WORD0 0
33 #define PLT0_ENTRY_WORD1 0
34 #define PLT0_ENTRY_WORD2 0
35 #define PLT0_ENTRY_WORD3 0
36 #define PLT0_ENTRY_WORD4 0
38 #define PLT0_PIC_ENTRY_WORD0 0
39 #define PLT0_PIC_ENTRY_WORD1 0
40 #define PLT0_PIC_ENTRY_WORD2 0
41 #define PLT0_PIC_ENTRY_WORD3 0
42 #define PLT0_PIC_ENTRY_WORD4 0
44 #define ELF_DYNAMIC_INTERPRETER "/usr/lib/libc.so.1"
46 extern const bfd_target bfd_elf32_lm32fdpic_vec
;
48 #define IS_FDPIC(bfd) ((bfd)->xvec == &bfd_elf32_lm32fdpic_vec)
50 static bfd_reloc_status_type lm32_elf_gprel_reloc
51 (bfd
*, arelent
*, asymbol
*, void *, asection
*, bfd
*, char **);
53 /* The linker needs to keep track of the number of relocs that it
54 decides to copy as dynamic relocs in check_relocs for each symbol.
55 This is so that it can later discard them if they are found to be
56 unnecessary. We store the information in a field extending the
57 regular ELF linker hash table. */
59 struct elf_lm32_dyn_relocs
61 struct elf_lm32_dyn_relocs
*next
;
63 /* The input section of the reloc. */
66 /* Total number of relocs copied for the input section. */
69 /* Number of pc-relative relocs copied for the input section. */
70 bfd_size_type pc_count
;
73 /* lm32 ELF linker hash entry. */
75 struct elf_lm32_link_hash_entry
77 struct elf_link_hash_entry root
;
79 /* Track dynamic relocs copied for this symbol. */
80 struct elf_lm32_dyn_relocs
*dyn_relocs
;
83 /* lm32 ELF linker hash table. */
85 struct elf_lm32_link_hash_table
87 struct elf_link_hash_table root
;
89 /* Short-cuts to get to dynamic linker sections. */
102 /* Get the lm32 ELF linker hash table from a link_info structure. */
104 #define lm32_elf_hash_table(p) \
105 (elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) \
106 == LM32_ELF_DATA ? ((struct elf_lm32_link_hash_table *) ((p)->hash)) : NULL)
108 #define lm32fdpic_got_section(info) \
109 (lm32_elf_hash_table (info)->sgot)
110 #define lm32fdpic_gotrel_section(info) \
111 (lm32_elf_hash_table (info)->srelgot)
112 #define lm32fdpic_fixup32_section(info) \
113 (lm32_elf_hash_table (info)->sfixup32)
115 struct weak_symbol_list
118 struct weak_symbol_list
*next
;
121 /* Create an entry in an lm32 ELF linker hash table. */
123 static struct bfd_hash_entry
*
124 lm32_elf_link_hash_newfunc (struct bfd_hash_entry
*entry
,
125 struct bfd_hash_table
*table
,
128 struct elf_lm32_link_hash_entry
*ret
=
129 (struct elf_lm32_link_hash_entry
*) entry
;
131 /* Allocate the structure if it has not already been allocated by a
134 ret
= bfd_hash_allocate (table
,
135 sizeof (struct elf_lm32_link_hash_entry
));
139 /* Call the allocation method of the superclass. */
140 ret
= ((struct elf_lm32_link_hash_entry
*)
141 _bfd_elf_link_hash_newfunc ((struct bfd_hash_entry
*) ret
,
145 struct elf_lm32_link_hash_entry
*eh
;
147 eh
= (struct elf_lm32_link_hash_entry
*) ret
;
148 eh
->dyn_relocs
= NULL
;
151 return (struct bfd_hash_entry
*) ret
;
154 /* Create an lm32 ELF linker hash table. */
156 static struct bfd_link_hash_table
*
157 lm32_elf_link_hash_table_create (bfd
*abfd
)
159 struct elf_lm32_link_hash_table
*ret
;
160 bfd_size_type amt
= sizeof (struct elf_lm32_link_hash_table
);
162 ret
= bfd_malloc (amt
);
166 if (!_bfd_elf_link_hash_table_init (&ret
->root
, abfd
,
167 lm32_elf_link_hash_newfunc
,
168 sizeof (struct elf_lm32_link_hash_entry
),
178 ret
->sfixup32
= NULL
;
185 return &ret
->root
.root
;
188 /* Add a fixup to the ROFIXUP section. */
191 _lm32fdpic_add_rofixup (bfd
*output_bfd
, asection
*rofixup
, bfd_vma relocation
)
193 bfd_vma fixup_offset
;
195 if (rofixup
->flags
& SEC_EXCLUDE
)
198 fixup_offset
= rofixup
->reloc_count
* 4;
199 if (rofixup
->contents
)
201 BFD_ASSERT (fixup_offset
< rofixup
->size
);
202 if (fixup_offset
< rofixup
->size
)
203 bfd_put_32 (output_bfd
, relocation
, rofixup
->contents
+ fixup_offset
);
205 rofixup
->reloc_count
++;
210 /* Create .got, .gotplt, and .rela.got sections in DYNOBJ, and set up
211 shortcuts to them in our hash table. */
214 create_got_section (bfd
*dynobj
, struct bfd_link_info
*info
)
216 struct elf_lm32_link_hash_table
*htab
;
219 /* This function may be called more than once. */
220 s
= bfd_get_section_by_name (dynobj
, ".got");
221 if (s
!= NULL
&& (s
->flags
& SEC_LINKER_CREATED
) != 0)
224 htab
= lm32_elf_hash_table (info
);
228 if (! _bfd_elf_create_got_section (dynobj
, info
))
231 htab
->sgot
= bfd_get_section_by_name (dynobj
, ".got");
232 htab
->sgotplt
= bfd_get_section_by_name (dynobj
, ".got.plt");
233 htab
->srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
234 if (! htab
->sgot
|| ! htab
->sgotplt
|| ! htab
->srelgot
)
240 /* Create .rofixup sections in DYNOBJ, and set up
241 shortcuts to them in our hash table. */
244 create_rofixup_section (bfd
*dynobj
, struct bfd_link_info
*info
)
246 struct elf_lm32_link_hash_table
*htab
;
247 htab
= lm32_elf_hash_table (info
);
252 /* Fixup section for R_LM32_32 relocs. */
253 lm32fdpic_fixup32_section (info
) = bfd_make_section_with_flags (dynobj
,
261 if (lm32fdpic_fixup32_section (info
) == NULL
262 || ! bfd_set_section_alignment (dynobj
, lm32fdpic_fixup32_section (info
), 2))
268 static reloc_howto_type lm32_elf_howto_table
[] =
270 /* This reloc does nothing. */
271 HOWTO (R_LM32_NONE
, /* type */
273 2, /* size (0 = byte, 1 = short, 2 = long) */
275 FALSE
, /* pc_relative */
277 complain_overflow_bitfield
,/* complain_on_overflow */
278 bfd_elf_generic_reloc
, /* special_function */
279 "R_LM32_NONE", /* name */
280 FALSE
, /* partial_inplace */
283 FALSE
), /* pcrel_offset */
285 /* An 8 bit absolute relocation. */
286 HOWTO (R_LM32_8
, /* type */
288 0, /* size (0 = byte, 1 = short, 2 = long) */
290 FALSE
, /* pc_relative */
292 complain_overflow_bitfield
,/* complain_on_overflow */
293 bfd_elf_generic_reloc
, /* special_function */
294 "R_LM32_8", /* name */
295 FALSE
, /* partial_inplace */
298 FALSE
), /* pcrel_offset */
300 /* A 16 bit absolute relocation. */
301 HOWTO (R_LM32_16
, /* type */
303 1, /* size (0 = byte, 1 = short, 2 = long) */
305 FALSE
, /* pc_relative */
307 complain_overflow_bitfield
,/* complain_on_overflow */
308 bfd_elf_generic_reloc
, /* special_function */
309 "R_LM32_16", /* name */
310 FALSE
, /* partial_inplace */
312 0xffff, /* dst_mask */
313 FALSE
), /* pcrel_offset */
315 /* A 32 bit absolute relocation. */
316 HOWTO (R_LM32_32
, /* type */
318 2, /* size (0 = byte, 1 = short, 2 = long) */
320 FALSE
, /* pc_relative */
322 complain_overflow_bitfield
,/* complain_on_overflow */
323 bfd_elf_generic_reloc
, /* special_function */
324 "R_LM32_32", /* name */
325 FALSE
, /* partial_inplace */
327 0xffffffff, /* dst_mask */
328 FALSE
), /* pcrel_offset */
330 HOWTO (R_LM32_HI16
, /* type */
332 2, /* size (0 = byte, 1 = short, 2 = long) */
334 FALSE
, /* pc_relative */
336 complain_overflow_bitfield
,/* complain_on_overflow */
337 bfd_elf_generic_reloc
, /* special_function */
338 "R_LM32_HI16", /* name */
339 FALSE
, /* partial_inplace */
341 0xffff, /* dst_mask */
342 FALSE
), /* pcrel_offset */
344 HOWTO (R_LM32_LO16
, /* type */
346 2, /* size (0 = byte, 1 = short, 2 = long) */
348 FALSE
, /* pc_relative */
350 complain_overflow_dont
, /* complain_on_overflow */
351 bfd_elf_generic_reloc
, /* special_function */
352 "R_LM32_LO16", /* name */
353 FALSE
, /* partial_inplace */
355 0xffff, /* dst_mask */
356 FALSE
), /* pcrel_offset */
358 HOWTO (R_LM32_GPREL16
, /* type */
360 2, /* size (0 = byte, 1 = short, 2 = long) */
362 FALSE
, /* pc_relative */
364 complain_overflow_dont
, /* complain_on_overflow */
365 lm32_elf_gprel_reloc
, /* special_function */
366 "R_LM32_GPREL16", /* name */
367 FALSE
, /* partial_inplace */
369 0xffff, /* dst_mask */
370 FALSE
), /* pcrel_offset */
372 HOWTO (R_LM32_CALL
, /* type */
374 2, /* size (0 = byte, 1 = short, 2 = long) */
376 TRUE
, /* pc_relative */
378 complain_overflow_signed
, /* complain_on_overflow */
379 bfd_elf_generic_reloc
, /* special_function */
380 "R_LM32_CALL", /* name */
381 FALSE
, /* partial_inplace */
383 0x3ffffff, /* dst_mask */
384 TRUE
), /* pcrel_offset */
386 HOWTO (R_LM32_BRANCH
, /* type */
388 2, /* size (0 = byte, 1 = short, 2 = long) */
390 TRUE
, /* pc_relative */
392 complain_overflow_signed
, /* complain_on_overflow */
393 bfd_elf_generic_reloc
, /* special_function */
394 "R_LM32_BRANCH", /* name */
395 FALSE
, /* partial_inplace */
397 0xffff, /* dst_mask */
398 TRUE
), /* pcrel_offset */
400 /* GNU extension to record C++ vtable hierarchy. */
401 HOWTO (R_LM32_GNU_VTINHERIT
, /* type */
403 2, /* size (0 = byte, 1 = short, 2 = long) */
405 FALSE
, /* pc_relative */
407 complain_overflow_dont
, /* complain_on_overflow */
408 NULL
, /* special_function */
409 "R_LM32_GNU_VTINHERIT", /* name */
410 FALSE
, /* partial_inplace */
413 FALSE
), /* pcrel_offset */
415 /* GNU extension to record C++ vtable member usage. */
416 HOWTO (R_LM32_GNU_VTENTRY
, /* type */
418 2, /* size (0 = byte, 1 = short, 2 = long) */
420 FALSE
, /* pc_relative */
422 complain_overflow_dont
, /* complain_on_overflow */
423 _bfd_elf_rel_vtable_reloc_fn
,/* special_function */
424 "R_LM32_GNU_VTENTRY", /* name */
425 FALSE
, /* partial_inplace */
428 FALSE
), /* pcrel_offset */
430 HOWTO (R_LM32_16_GOT
, /* type */
432 2, /* size (0 = byte, 1 = short, 2 = long) */
434 FALSE
, /* pc_relative */
436 complain_overflow_signed
, /* complain_on_overflow */
437 bfd_elf_generic_reloc
, /* special_function */
438 "R_LM32_16_GOT", /* name */
439 FALSE
, /* partial_inplace */
441 0xffff, /* dst_mask */
442 FALSE
), /* pcrel_offset */
444 HOWTO (R_LM32_GOTOFF_HI16
, /* type */
446 2, /* size (0 = byte, 1 = short, 2 = long) */
448 FALSE
, /* pc_relative */
450 complain_overflow_dont
, /* complain_on_overflow */
451 bfd_elf_generic_reloc
, /* special_function */
452 "R_LM32_GOTOFF_HI16", /* name */
453 FALSE
, /* partial_inplace */
454 0xffff, /* src_mask */
455 0xffff, /* dst_mask */
456 FALSE
), /* pcrel_offset */
458 HOWTO (R_LM32_GOTOFF_LO16
, /* type */
460 2, /* size (0 = byte, 1 = short, 2 = long) */
462 FALSE
, /* pc_relative */
464 complain_overflow_dont
, /* complain_on_overflow */
465 bfd_elf_generic_reloc
, /* special_function */
466 "R_LM32_GOTOFF_LO16", /* name */
467 FALSE
, /* partial_inplace */
468 0xffff, /* src_mask */
469 0xffff, /* dst_mask */
470 FALSE
), /* pcrel_offset */
472 HOWTO (R_LM32_COPY
, /* type */
474 2, /* size (0 = byte, 1 = short, 2 = long) */
476 FALSE
, /* pc_relative */
478 complain_overflow_bitfield
, /* complain_on_overflow */
479 bfd_elf_generic_reloc
, /* special_function */
480 "R_LM32_COPY", /* name */
481 FALSE
, /* partial_inplace */
482 0xffffffff, /* src_mask */
483 0xffffffff, /* dst_mask */
484 FALSE
), /* pcrel_offset */
486 HOWTO (R_LM32_GLOB_DAT
, /* type */
488 2, /* size (0 = byte, 1 = short, 2 = long) */
490 FALSE
, /* pc_relative */
492 complain_overflow_bitfield
, /* complain_on_overflow */
493 bfd_elf_generic_reloc
, /* special_function */
494 "R_LM32_GLOB_DAT", /* name */
495 FALSE
, /* partial_inplace */
496 0xffffffff, /* src_mask */
497 0xffffffff, /* dst_mask */
498 FALSE
), /* pcrel_offset */
500 HOWTO (R_LM32_JMP_SLOT
, /* type */
502 2, /* size (0 = byte, 1 = short, 2 = long) */
504 FALSE
, /* pc_relative */
506 complain_overflow_bitfield
, /* complain_on_overflow */
507 bfd_elf_generic_reloc
, /* special_function */
508 "R_LM32_JMP_SLOT", /* name */
509 FALSE
, /* partial_inplace */
510 0xffffffff, /* src_mask */
511 0xffffffff, /* dst_mask */
512 FALSE
), /* pcrel_offset */
514 HOWTO (R_LM32_RELATIVE
, /* type */
516 2, /* size (0 = byte, 1 = short, 2 = long) */
518 FALSE
, /* pc_relative */
520 complain_overflow_bitfield
, /* complain_on_overflow */
521 bfd_elf_generic_reloc
, /* special_function */
522 "R_LM32_RELATIVE", /* name */
523 FALSE
, /* partial_inplace */
524 0xffffffff, /* src_mask */
525 0xffffffff, /* dst_mask */
526 FALSE
), /* pcrel_offset */
530 /* Map BFD reloc types to lm32 ELF reloc types. */
532 struct lm32_reloc_map
534 bfd_reloc_code_real_type bfd_reloc_val
;
535 unsigned char elf_reloc_val
;
538 static const struct lm32_reloc_map lm32_reloc_map
[] =
540 { BFD_RELOC_NONE
, R_LM32_NONE
},
541 { BFD_RELOC_8
, R_LM32_8
},
542 { BFD_RELOC_16
, R_LM32_16
},
543 { BFD_RELOC_32
, R_LM32_32
},
544 { BFD_RELOC_HI16
, R_LM32_HI16
},
545 { BFD_RELOC_LO16
, R_LM32_LO16
},
546 { BFD_RELOC_GPREL16
, R_LM32_GPREL16
},
547 { BFD_RELOC_LM32_CALL
, R_LM32_CALL
},
548 { BFD_RELOC_LM32_BRANCH
, R_LM32_BRANCH
},
549 { BFD_RELOC_VTABLE_INHERIT
, R_LM32_GNU_VTINHERIT
},
550 { BFD_RELOC_VTABLE_ENTRY
, R_LM32_GNU_VTENTRY
},
551 { BFD_RELOC_LM32_16_GOT
, R_LM32_16_GOT
},
552 { BFD_RELOC_LM32_GOTOFF_HI16
, R_LM32_GOTOFF_HI16
},
553 { BFD_RELOC_LM32_GOTOFF_LO16
, R_LM32_GOTOFF_LO16
},
554 { BFD_RELOC_LM32_COPY
, R_LM32_COPY
},
555 { BFD_RELOC_LM32_GLOB_DAT
, R_LM32_GLOB_DAT
},
556 { BFD_RELOC_LM32_JMP_SLOT
, R_LM32_JMP_SLOT
},
557 { BFD_RELOC_LM32_RELATIVE
, R_LM32_RELATIVE
},
560 static reloc_howto_type
*
561 lm32_reloc_type_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
562 bfd_reloc_code_real_type code
)
566 for (i
= 0; i
< sizeof (lm32_reloc_map
) / sizeof (lm32_reloc_map
[0]); i
++)
567 if (lm32_reloc_map
[i
].bfd_reloc_val
== code
)
568 return &lm32_elf_howto_table
[lm32_reloc_map
[i
].elf_reloc_val
];
572 static reloc_howto_type
*
573 lm32_reloc_name_lookup (bfd
*abfd ATTRIBUTE_UNUSED
,
579 i
< sizeof (lm32_elf_howto_table
) / sizeof (lm32_elf_howto_table
[0]);
581 if (lm32_elf_howto_table
[i
].name
!= NULL
582 && strcasecmp (lm32_elf_howto_table
[i
].name
, r_name
) == 0)
583 return &lm32_elf_howto_table
[i
];
589 /* Set the howto pointer for an Lattice Mico32 ELF reloc. */
592 lm32_info_to_howto_rela (bfd
*abfd ATTRIBUTE_UNUSED
,
594 Elf_Internal_Rela
*dst
)
598 r_type
= ELF32_R_TYPE (dst
->r_info
);
599 BFD_ASSERT (r_type
< (unsigned int) R_LM32_max
);
600 cache_ptr
->howto
= &lm32_elf_howto_table
[r_type
];
603 /* Set the right machine number for an Lattice Mico32 ELF file. */
606 lm32_elf_object_p (bfd
*abfd
)
608 return bfd_default_set_arch_mach (abfd
, bfd_arch_lm32
, bfd_mach_lm32
);
611 /* Set machine type flags just before file is written out. */
614 lm32_elf_final_write_processing (bfd
*abfd
, bfd_boolean linker ATTRIBUTE_UNUSED
)
616 elf_elfheader (abfd
)->e_machine
= EM_LATTICEMICO32
;
617 elf_elfheader (abfd
)->e_flags
&=~ EF_LM32_MACH
;
618 switch (bfd_get_mach (abfd
))
621 elf_elfheader (abfd
)->e_flags
|= E_LM32_MACH
;
628 /* Set the GP value for OUTPUT_BFD. Returns FALSE if this is a
629 dangerous relocation. */
632 lm32_elf_assign_gp (bfd
*output_bfd
, bfd_vma
*pgp
)
638 /* If we've already figured out what GP will be, just return it. */
639 *pgp
= _bfd_get_gp_value (output_bfd
);
643 count
= bfd_get_symcount (output_bfd
);
644 sym
= bfd_get_outsymbols (output_bfd
);
646 /* The linker script will have created a symbol named `_gp' with the
647 appropriate value. */
652 for (i
= 0; i
< count
; i
++, sym
++)
656 name
= bfd_asymbol_name (*sym
);
657 if (*name
== '_' && strcmp (name
, "_gp") == 0)
659 *pgp
= bfd_asymbol_value (*sym
);
660 _bfd_set_gp_value (output_bfd
, *pgp
);
668 /* Only get the error once. */
670 _bfd_set_gp_value (output_bfd
, *pgp
);
677 /* We have to figure out the gp value, so that we can adjust the
678 symbol value correctly. We look up the symbol _gp in the output
679 BFD. If we can't find it, we're stuck. We cache it in the ELF
680 target data. We don't need to adjust the symbol value for an
681 external symbol if we are producing relocatable output. */
683 static bfd_reloc_status_type
684 lm32_elf_final_gp (bfd
*output_bfd
, asymbol
*symbol
, bfd_boolean relocatable
,
685 char **error_message
, bfd_vma
*pgp
)
687 if (bfd_is_und_section (symbol
->section
) && !relocatable
)
690 return bfd_reloc_undefined
;
693 *pgp
= _bfd_get_gp_value (output_bfd
);
694 if (*pgp
== 0 && (!relocatable
|| (symbol
->flags
& BSF_SECTION_SYM
) != 0))
698 /* Make up a value. */
699 *pgp
= symbol
->section
->output_section
->vma
+ 0x4000;
700 _bfd_set_gp_value (output_bfd
, *pgp
);
702 else if (!lm32_elf_assign_gp (output_bfd
, pgp
))
706 _("global pointer relative relocation when _gp not defined");
707 return bfd_reloc_dangerous
;
714 static bfd_reloc_status_type
715 lm32_elf_do_gprel_relocate (bfd
*abfd
,
716 reloc_howto_type
*howto
,
717 asection
*input_section ATTRIBUTE_UNUSED
,
720 bfd_vma symbol_value
,
723 return _bfd_final_link_relocate (howto
, abfd
, input_section
,
724 data
, offset
, symbol_value
, addend
);
727 static bfd_reloc_status_type
728 lm32_elf_gprel_reloc (bfd
*abfd
,
729 arelent
*reloc_entry
,
732 asection
*input_section
,
738 bfd_reloc_status_type r
;
740 if (output_bfd
!= (bfd
*) NULL
741 && (symbol
->flags
& BSF_SECTION_SYM
) == 0
742 && (!reloc_entry
->howto
->partial_inplace
|| reloc_entry
->addend
== 0))
744 reloc_entry
->address
+= input_section
->output_offset
;
748 if (output_bfd
!= NULL
)
751 relocation
= symbol
->value
752 + symbol
->section
->output_section
->vma
+ symbol
->section
->output_offset
;
755 lm32_elf_final_gp (abfd
, symbol
, FALSE
, msg
, &gp
)) == bfd_reloc_ok
)
757 relocation
= relocation
+ reloc_entry
->addend
- gp
;
758 reloc_entry
->addend
= 0;
759 if ((signed) relocation
< -32768 || (signed) relocation
> 32767)
761 *msg
= _("global pointer relative address out of range");
762 r
= bfd_reloc_outofrange
;
766 r
= lm32_elf_do_gprel_relocate (abfd
, reloc_entry
->howto
,
768 data
, reloc_entry
->address
,
769 relocation
, reloc_entry
->addend
);
776 /* Find the segment number in which OSEC, and output section, is
780 _lm32fdpic_osec_to_segment (bfd
*output_bfd
, asection
*osec
)
782 struct elf_segment_map
*m
;
783 Elf_Internal_Phdr
*p
;
785 /* Find the segment that contains the output_section. */
786 for (m
= elf_tdata (output_bfd
)->segment_map
,
787 p
= elf_tdata (output_bfd
)->phdr
;
793 for (i
= m
->count
- 1; i
>= 0; i
--)
794 if (m
->sections
[i
] == osec
)
801 return p
- elf_tdata (output_bfd
)->phdr
;
804 /* Determine if an output section is read-only. */
806 inline static bfd_boolean
807 _lm32fdpic_osec_readonly_p (bfd
*output_bfd
, asection
*osec
)
809 unsigned seg
= _lm32fdpic_osec_to_segment (output_bfd
, osec
);
811 return ! (elf_tdata (output_bfd
)->phdr
[seg
].p_flags
& PF_W
);
814 /* Relocate a section */
817 lm32_elf_relocate_section (bfd
*output_bfd
,
818 struct bfd_link_info
*info
,
820 asection
*input_section
,
822 Elf_Internal_Rela
*relocs
,
823 Elf_Internal_Sym
*local_syms
,
824 asection
**local_sections
)
826 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
827 struct elf_link_hash_entry
**sym_hashes
= elf_sym_hashes (input_bfd
);
828 Elf_Internal_Rela
*rel
, *relend
;
829 struct elf_lm32_link_hash_table
*htab
= lm32_elf_hash_table (info
);
831 bfd_vma
*local_got_offsets
;
832 asection
*sgot
, *splt
, *sreloc
;
837 dynobj
= htab
->root
.dynobj
;
838 local_got_offsets
= elf_local_got_offsets (input_bfd
);
844 symtab_hdr
= &elf_tdata (input_bfd
)->symtab_hdr
;
845 sym_hashes
= elf_sym_hashes (input_bfd
);
848 relend
= relocs
+ input_section
->reloc_count
;
849 for (; rel
< relend
; rel
++)
851 reloc_howto_type
*howto
;
853 unsigned long r_symndx
;
854 Elf_Internal_Sym
*sym
;
856 struct elf_link_hash_entry
*h
;
859 bfd_reloc_status_type r
;
860 const char *name
= NULL
;
863 r_symndx
= ELF32_R_SYM (rel
->r_info
);
864 r_type
= ELF32_R_TYPE (rel
->r_info
);
866 if (r_type
== R_LM32_GNU_VTENTRY
867 || r_type
== R_LM32_GNU_VTINHERIT
)
874 howto
= lm32_elf_howto_table
+ r_type
;
876 if (r_symndx
< symtab_hdr
->sh_info
)
878 /* It's a local symbol. */
879 sym
= local_syms
+ r_symndx
;
880 osec
= sec
= local_sections
[r_symndx
];
881 relocation
= _bfd_elf_rela_local_sym (output_bfd
, sym
, &sec
, rel
);
882 name
= bfd_elf_string_from_elf_section
883 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
);
884 name
= (name
== NULL
) ? bfd_section_name (input_bfd
, sec
) : name
;
888 /* It's a global symbol. */
889 bfd_boolean unresolved_reloc
;
892 RELOC_FOR_GLOBAL_SYMBOL (info
, input_bfd
, input_section
, rel
,
893 r_symndx
, symtab_hdr
, sym_hashes
,
895 unresolved_reloc
, warned
);
897 name
= h
->root
.root
.string
;
900 if (sec
!= NULL
&& elf_discarded_section (sec
))
902 /* For relocs against symbols from removed linkonce sections,
903 or sections discarded by a linker script, we just want the
904 section contents zeroed. Avoid any special processing. */
905 _bfd_clear_contents (howto
, input_bfd
, contents
+ rel
->r_offset
);
911 if (info
->relocatable
)
913 /* This is a relocatable link. We don't have to change
914 anything, unless the reloc is against a section symbol,
915 in which case we have to adjust according to where the
916 section symbol winds up in the output section. */
917 if (sym
== NULL
|| ELF_ST_TYPE (sym
->st_info
) != STT_SECTION
)
920 /* If partial_inplace, we need to store any additional addend
921 back in the section. */
922 if (! howto
->partial_inplace
)
925 /* Shouldn't reach here. */
934 if (!lm32_elf_assign_gp (output_bfd
, &gp
))
935 r
= bfd_reloc_dangerous
;
938 relocation
= relocation
+ rel
->r_addend
- gp
;
940 if ((signed)relocation
< -32768 || (signed)relocation
> 32767)
941 r
= bfd_reloc_outofrange
;
944 r
= _bfd_final_link_relocate (howto
, input_bfd
,
945 input_section
, contents
,
946 rel
->r_offset
, relocation
,
952 /* Relocation is to the entry for this symbol in the global
954 BFD_ASSERT (sgot
!= NULL
);
961 BFD_ASSERT (off
!= (bfd_vma
) -1);
963 dyn
= htab
->root
.dynamic_sections_created
;
964 if (! WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
)
971 /* This is actually a static link, or it is a
972 -Bsymbolic link and the symbol is defined
973 locally, or the symbol was forced to be local
974 because of a version file. We must initialize
975 this entry in the global offset table. Since the
976 offset must always be a multiple of 4, we use the
977 least significant bit to record whether we have
978 initialized it already.
980 When doing a dynamic link, we create a .rela.got
981 relocation entry to initialize the value. This
982 is done in the finish_dynamic_symbol routine. */
987 /* Write entry in GOT */
988 bfd_put_32 (output_bfd
, relocation
,
989 sgot
->contents
+ off
);
990 /* Create entry in .rofixup pointing to GOT entry. */
991 if (IS_FDPIC (output_bfd
) && h
->root
.type
!= bfd_link_hash_undefweak
)
993 _lm32fdpic_add_rofixup (output_bfd
,
994 lm32fdpic_fixup32_section
996 sgot
->output_section
->vma
997 + sgot
->output_offset
1000 /* Mark GOT entry as having been written. */
1005 relocation
= sgot
->output_offset
+ off
;
1012 BFD_ASSERT (local_got_offsets
!= NULL
1013 && local_got_offsets
[r_symndx
] != (bfd_vma
) -1);
1015 /* Get offset into GOT table. */
1016 off
= local_got_offsets
[r_symndx
];
1018 /* The offset must always be a multiple of 4. We use
1019 the least significant bit to record whether we have
1020 already processed this entry. */
1025 /* Write entry in GOT. */
1026 bfd_put_32 (output_bfd
, relocation
, sgot
->contents
+ off
);
1027 /* Create entry in .rofixup pointing to GOT entry. */
1028 if (IS_FDPIC (output_bfd
))
1030 _lm32fdpic_add_rofixup (output_bfd
,
1031 lm32fdpic_fixup32_section
1033 sgot
->output_section
->vma
1034 + sgot
->output_offset
1041 Elf_Internal_Rela outrel
;
1043 /* We need to generate a R_LM32_RELATIVE reloc
1044 for the dynamic linker. */
1045 srelgot
= bfd_get_section_by_name (dynobj
, ".rela.got");
1046 BFD_ASSERT (srelgot
!= NULL
);
1048 outrel
.r_offset
= (sgot
->output_section
->vma
1049 + sgot
->output_offset
1051 outrel
.r_info
= ELF32_R_INFO (0, R_LM32_RELATIVE
);
1052 outrel
.r_addend
= relocation
;
1053 loc
= srelgot
->contents
;
1054 loc
+= srelgot
->reloc_count
* sizeof (Elf32_External_Rela
);
1055 bfd_elf32_swap_reloca_out (output_bfd
, &outrel
,loc
);
1056 ++srelgot
->reloc_count
;
1059 local_got_offsets
[r_symndx
] |= 1;
1063 relocation
= sgot
->output_offset
+ off
;
1066 /* Addend should be zero. */
1067 if (rel
->r_addend
!= 0)
1068 (*_bfd_error_handler
) (_("internal error: addend should be zero for R_LM32_16_GOT"));
1070 r
= _bfd_final_link_relocate (howto
,
1079 case R_LM32_GOTOFF_LO16
:
1080 case R_LM32_GOTOFF_HI16
:
1081 /* Relocation is offset from GOT. */
1082 BFD_ASSERT (sgot
!= NULL
);
1083 relocation
-= sgot
->output_section
->vma
;
1084 /* Account for sign-extension. */
1085 if ((r_type
== R_LM32_GOTOFF_HI16
)
1086 && ((relocation
+ rel
->r_addend
) & 0x8000))
1087 rel
->r_addend
+= 0x10000;
1088 r
= _bfd_final_link_relocate (howto
,
1098 if (IS_FDPIC (output_bfd
))
1100 if ((!h
) || (h
&& h
->root
.type
!= bfd_link_hash_undefweak
))
1102 /* Only create .rofixup entries for relocs in loadable sections. */
1103 if ((bfd_get_section_flags (output_bfd
, input_section
->output_section
)
1104 & (SEC_ALLOC
| SEC_LOAD
)) == (SEC_ALLOC
| SEC_LOAD
))
1107 /* Check address to be modified is writable. */
1108 if (_lm32fdpic_osec_readonly_p (output_bfd
,
1112 info
->callbacks
->warning
1114 _("cannot emit dynamic relocations in read-only section"),
1115 name
, input_bfd
, input_section
, rel
->r_offset
);
1118 /* Create entry in .rofixup section. */
1119 _lm32fdpic_add_rofixup (output_bfd
,
1120 lm32fdpic_fixup32_section (info
),
1121 input_section
->output_section
->vma
1122 + input_section
->output_offset
1130 r
= _bfd_final_link_relocate (howto
,
1141 if (r
!= bfd_reloc_ok
)
1143 const char *msg
= NULL
;
1146 lm32_info_to_howto_rela (input_bfd
, &bfd_reloc
, rel
);
1147 howto
= bfd_reloc
.howto
;
1150 name
= h
->root
.root
.string
;
1153 name
= (bfd_elf_string_from_elf_section
1154 (input_bfd
, symtab_hdr
->sh_link
, sym
->st_name
));
1155 if (name
== NULL
|| *name
== '\0')
1156 name
= bfd_section_name (input_bfd
, sec
);
1161 case bfd_reloc_overflow
:
1163 && (h
->root
.type
== bfd_link_hash_undefweak
))
1165 if (! ((*info
->callbacks
->reloc_overflow
)
1166 (info
, (h
? &h
->root
: NULL
), name
, howto
->name
,
1167 (bfd_vma
) 0, input_bfd
, input_section
, rel
->r_offset
)))
1171 case bfd_reloc_undefined
:
1172 if (! ((*info
->callbacks
->undefined_symbol
)
1173 (info
, name
, input_bfd
, input_section
,
1174 rel
->r_offset
, TRUE
)))
1178 case bfd_reloc_outofrange
:
1179 msg
= _("internal error: out of range error");
1182 case bfd_reloc_notsupported
:
1183 msg
= _("internal error: unsupported relocation error");
1186 case bfd_reloc_dangerous
:
1187 msg
= _("internal error: dangerous error");
1191 msg
= _("internal error: unknown error");
1195 if (!((*info
->callbacks
->warning
)
1196 (info
, msg
, name
, input_bfd
, input_section
,
1208 lm32_elf_gc_mark_hook (asection
*sec
,
1209 struct bfd_link_info
*info
,
1210 Elf_Internal_Rela
*rel
,
1211 struct elf_link_hash_entry
*h
,
1212 Elf_Internal_Sym
*sym
)
1215 switch (ELF32_R_TYPE (rel
->r_info
))
1217 case R_LM32_GNU_VTINHERIT
:
1218 case R_LM32_GNU_VTENTRY
:
1222 return _bfd_elf_gc_mark_hook (sec
, info
, rel
, h
, sym
);
1226 lm32_elf_gc_sweep_hook (bfd
*abfd
,
1227 struct bfd_link_info
*info ATTRIBUTE_UNUSED
,
1229 const Elf_Internal_Rela
*relocs ATTRIBUTE_UNUSED
)
1231 /* Update the got entry reference counts for the section being removed. */
1232 Elf_Internal_Shdr
*symtab_hdr
;
1233 struct elf_link_hash_entry
**sym_hashes
;
1234 bfd_signed_vma
*local_got_refcounts
;
1235 const Elf_Internal_Rela
*rel
, *relend
;
1237 elf_section_data (sec
)->local_dynrel
= NULL
;
1239 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1240 sym_hashes
= elf_sym_hashes (abfd
);
1241 local_got_refcounts
= elf_local_got_refcounts (abfd
);
1243 relend
= relocs
+ sec
->reloc_count
;
1244 for (rel
= relocs
; rel
< relend
; rel
++)
1246 unsigned long r_symndx
;
1247 struct elf_link_hash_entry
*h
= NULL
;
1249 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1250 if (r_symndx
>= symtab_hdr
->sh_info
)
1252 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1253 while (h
->root
.type
== bfd_link_hash_indirect
1254 || h
->root
.type
== bfd_link_hash_warning
)
1255 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1258 switch (ELF32_R_TYPE (rel
->r_info
))
1263 if (h
->got
.refcount
> 0)
1268 if (local_got_refcounts
&& local_got_refcounts
[r_symndx
] > 0)
1269 local_got_refcounts
[r_symndx
]--;
1280 /* Look through the relocs for a section during the first phase. */
1283 lm32_elf_check_relocs (bfd
*abfd
,
1284 struct bfd_link_info
*info
,
1286 const Elf_Internal_Rela
*relocs
)
1288 Elf_Internal_Shdr
*symtab_hdr
;
1289 struct elf_link_hash_entry
**sym_hashes
, **sym_hashes_end
;
1290 const Elf_Internal_Rela
*rel
;
1291 const Elf_Internal_Rela
*rel_end
;
1292 struct elf_lm32_link_hash_table
*htab
;
1294 bfd_vma
*local_got_offsets
;
1295 asection
*sgot
, *srelgot
, *sreloc
;
1297 if (info
->relocatable
)
1300 sgot
= srelgot
= sreloc
= NULL
;
1302 symtab_hdr
= &elf_tdata (abfd
)->symtab_hdr
;
1303 sym_hashes
= elf_sym_hashes (abfd
);
1304 sym_hashes_end
= sym_hashes
+ symtab_hdr
->sh_size
/sizeof (Elf32_External_Sym
);
1305 if (!elf_bad_symtab (abfd
))
1306 sym_hashes_end
-= symtab_hdr
->sh_info
;
1308 htab
= lm32_elf_hash_table (info
);
1312 dynobj
= htab
->root
.dynobj
;
1313 local_got_offsets
= elf_local_got_offsets (abfd
);
1315 rel_end
= relocs
+ sec
->reloc_count
;
1316 for (rel
= relocs
; rel
< rel_end
; rel
++)
1319 struct elf_link_hash_entry
*h
;
1320 unsigned long r_symndx
;
1322 r_symndx
= ELF32_R_SYM (rel
->r_info
);
1323 r_type
= ELF32_R_TYPE (rel
->r_info
);
1324 if (r_symndx
< symtab_hdr
->sh_info
)
1328 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
1329 while (h
->root
.type
== bfd_link_hash_indirect
1330 || h
->root
.type
== bfd_link_hash_warning
)
1331 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1334 /* Some relocs require a global offset table. */
1335 if (htab
->sgot
== NULL
)
1340 case R_LM32_GOTOFF_HI16
:
1341 case R_LM32_GOTOFF_LO16
:
1343 htab
->root
.dynobj
= dynobj
= abfd
;
1344 if (! create_got_section (dynobj
, info
))
1350 /* Some relocs require a rofixup table. */
1351 if (IS_FDPIC (abfd
))
1356 /* FDPIC requires a GOT if there is a .rofixup section
1357 (Normal ELF doesn't). */
1359 htab
->root
.dynobj
= dynobj
= abfd
;
1360 if (! create_got_section (dynobj
, info
))
1362 /* Create .rofixup section */
1363 if (htab
->sfixup32
== NULL
)
1365 if (! create_rofixup_section (abfd
, info
))
1370 case R_LM32_GOTOFF_HI16
:
1371 case R_LM32_GOTOFF_LO16
:
1372 /* Create .rofixup section. */
1373 if (htab
->sfixup32
== NULL
)
1375 if (! create_rofixup_section (abfd
, info
))
1386 h
->got
.refcount
+= 1;
1389 bfd_signed_vma
*local_got_refcounts
;
1391 /* This is a global offset table entry for a local symbol. */
1392 local_got_refcounts
= elf_local_got_refcounts (abfd
);
1393 if (local_got_refcounts
== NULL
)
1397 size
= symtab_hdr
->sh_info
;
1398 size
*= sizeof (bfd_signed_vma
);
1399 local_got_refcounts
= bfd_zalloc (abfd
, size
);
1400 if (local_got_refcounts
== NULL
)
1402 elf_local_got_refcounts (abfd
) = local_got_refcounts
;
1404 local_got_refcounts
[r_symndx
] += 1;
1408 /* This relocation describes the C++ object vtable hierarchy.
1409 Reconstruct it for later use during GC. */
1410 case R_LM32_GNU_VTINHERIT
:
1411 if (!bfd_elf_gc_record_vtinherit (abfd
, sec
, h
, rel
->r_offset
))
1415 /* This relocation describes which C++ vtable entries are actually
1416 used. Record for later use during GC. */
1417 case R_LM32_GNU_VTENTRY
:
1418 if (!bfd_elf_gc_record_vtentry (abfd
, sec
, h
, rel
->r_addend
))
1428 /* Finish up the dynamic sections. */
1431 lm32_elf_finish_dynamic_sections (bfd
*output_bfd
,
1432 struct bfd_link_info
*info
)
1434 struct elf_lm32_link_hash_table
*htab
;
1439 htab
= lm32_elf_hash_table (info
);
1443 dynobj
= htab
->root
.dynobj
;
1445 sgot
= htab
->sgotplt
;
1446 sdyn
= bfd_get_section_by_name (dynobj
, ".dynamic");
1448 if (htab
->root
.dynamic_sections_created
)
1451 Elf32_External_Dyn
*dyncon
, *dynconend
;
1453 BFD_ASSERT (sgot
!= NULL
&& sdyn
!= NULL
);
1455 dyncon
= (Elf32_External_Dyn
*) sdyn
->contents
;
1456 dynconend
= (Elf32_External_Dyn
*) (sdyn
->contents
+ sdyn
->size
);
1458 for (; dyncon
< dynconend
; dyncon
++)
1460 Elf_Internal_Dyn dyn
;
1464 bfd_elf32_swap_dyn_in (dynobj
, dyncon
, &dyn
);
1473 s
= htab
->sgot
->output_section
;
1477 s
= htab
->srelplt
->output_section
;
1479 BFD_ASSERT (s
!= NULL
);
1480 dyn
.d_un
.d_ptr
= s
->vma
;
1481 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
1485 s
= htab
->srelplt
->output_section
;
1486 BFD_ASSERT (s
!= NULL
);
1487 dyn
.d_un
.d_val
= s
->size
;
1488 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
1492 /* My reading of the SVR4 ABI indicates that the
1493 procedure linkage table relocs (DT_JMPREL) should be
1494 included in the overall relocs (DT_RELA). This is
1495 what Solaris does. However, UnixWare can not handle
1496 that case. Therefore, we override the DT_RELASZ entry
1497 here to make it not include the JMPREL relocs. Since
1498 the linker script arranges for .rela.plt to follow all
1499 other relocation sections, we don't have to worry
1500 about changing the DT_RELA entry. */
1501 if (htab
->srelplt
!= NULL
)
1503 s
= htab
->srelplt
->output_section
;
1504 dyn
.d_un
.d_val
-= s
->size
;
1506 bfd_elf32_swap_dyn_out (output_bfd
, &dyn
, dyncon
);
1511 /* Fill in the first entry in the procedure linkage table. */
1513 if (splt
&& splt
->size
> 0)
1517 bfd_put_32 (output_bfd
, PLT0_PIC_ENTRY_WORD0
, splt
->contents
);
1518 bfd_put_32 (output_bfd
, PLT0_PIC_ENTRY_WORD1
, splt
->contents
+ 4);
1519 bfd_put_32 (output_bfd
, PLT0_PIC_ENTRY_WORD2
, splt
->contents
+ 8);
1520 bfd_put_32 (output_bfd
, PLT0_PIC_ENTRY_WORD3
, splt
->contents
+ 12);
1521 bfd_put_32 (output_bfd
, PLT0_PIC_ENTRY_WORD4
, splt
->contents
+ 16);
1526 /* addr = .got + 4 */
1527 addr
= sgot
->output_section
->vma
+ sgot
->output_offset
+ 4;
1528 bfd_put_32 (output_bfd
,
1529 PLT0_ENTRY_WORD0
| ((addr
>> 16) & 0xffff),
1531 bfd_put_32 (output_bfd
,
1532 PLT0_ENTRY_WORD1
| (addr
& 0xffff),
1533 splt
->contents
+ 4);
1534 bfd_put_32 (output_bfd
, PLT0_ENTRY_WORD2
, splt
->contents
+ 8);
1535 bfd_put_32 (output_bfd
, PLT0_ENTRY_WORD3
, splt
->contents
+ 12);
1536 bfd_put_32 (output_bfd
, PLT0_ENTRY_WORD4
, splt
->contents
+ 16);
1539 elf_section_data (splt
->output_section
)->this_hdr
.sh_entsize
=
1544 /* Fill in the first three entries in the global offset table. */
1545 if (sgot
&& sgot
->size
> 0)
1548 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
);
1550 bfd_put_32 (output_bfd
,
1551 sdyn
->output_section
->vma
+ sdyn
->output_offset
,
1553 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 4);
1554 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ 8);
1556 /* FIXME: This can be null if create_dynamic_sections wasn't called. */
1557 if (elf_section_data (sgot
->output_section
) != NULL
)
1558 elf_section_data (sgot
->output_section
)->this_hdr
.sh_entsize
= 4;
1561 if (lm32fdpic_fixup32_section (info
))
1563 struct elf_link_hash_entry
*hgot
= elf_hash_table (info
)->hgot
;
1564 bfd_vma got_value
= hgot
->root
.u
.def
.value
1565 + hgot
->root
.u
.def
.section
->output_section
->vma
1566 + hgot
->root
.u
.def
.section
->output_offset
;
1567 struct bfd_link_hash_entry
*hend
;
1569 /* Last entry is pointer to GOT. */
1570 _lm32fdpic_add_rofixup (output_bfd
, lm32fdpic_fixup32_section (info
), got_value
);
1572 /* Check we wrote enough entries. */
1573 if (lm32fdpic_fixup32_section (info
)->size
1574 != (lm32fdpic_fixup32_section (info
)->reloc_count
* 4))
1576 (*_bfd_error_handler
)
1577 ("LINKER BUG: .rofixup section size mismatch: size/4 %d != relocs %d",
1578 lm32fdpic_fixup32_section (info
)->size
/4,
1579 lm32fdpic_fixup32_section (info
)->reloc_count
);
1583 hend
= bfd_link_hash_lookup (info
->hash
, "__ROFIXUP_END__",
1584 FALSE
, FALSE
, TRUE
);
1586 && (hend
->type
== bfd_link_hash_defined
1587 || hend
->type
== bfd_link_hash_defweak
))
1590 lm32fdpic_fixup32_section (info
)->output_section
->vma
1591 + lm32fdpic_fixup32_section (info
)->output_offset
1592 + lm32fdpic_fixup32_section (info
)->size
1593 - hend
->u
.def
.section
->output_section
->vma
1594 - hend
->u
.def
.section
->output_offset
;
1595 BFD_ASSERT (hend
->u
.def
.value
== value
);
1596 if (hend
->u
.def
.value
!= value
)
1598 (*_bfd_error_handler
)
1599 ("LINKER BUG: .rofixup section hend->u.def.value != value: %ld != %ld", hend
->u
.def
.value
, value
);
1608 /* Finish up dynamic symbol handling. We set the contents of various
1609 dynamic sections here. */
1612 lm32_elf_finish_dynamic_symbol (bfd
*output_bfd
,
1613 struct bfd_link_info
*info
,
1614 struct elf_link_hash_entry
*h
,
1615 Elf_Internal_Sym
*sym
)
1617 struct elf_lm32_link_hash_table
*htab
;
1621 htab
= lm32_elf_hash_table (info
);
1625 dynobj
= htab
->root
.dynobj
;
1627 if (h
->plt
.offset
!= (bfd_vma
) -1)
1635 Elf_Internal_Rela rela
;
1637 /* This symbol has an entry in the procedure linkage table. Set
1639 BFD_ASSERT (h
->dynindx
!= -1);
1642 sgot
= htab
->sgotplt
;
1643 srela
= htab
->srelplt
;
1644 BFD_ASSERT (splt
!= NULL
&& sgot
!= NULL
&& srela
!= NULL
);
1646 /* Get the index in the procedure linkage table which
1647 corresponds to this symbol. This is the index of this symbol
1648 in all the symbols for which we are making plt entries. The
1649 first entry in the procedure linkage table is reserved. */
1650 plt_index
= h
->plt
.offset
/ PLT_ENTRY_SIZE
- 1;
1652 /* Get the offset into the .got table of the entry that
1653 corresponds to this function. Each .got entry is 4 bytes.
1654 The first three are reserved. */
1655 got_offset
= (plt_index
+ 3) * 4;
1657 /* Fill in the entry in the procedure linkage table. */
1667 /* Fill in the entry in the global offset table. */
1668 bfd_put_32 (output_bfd
,
1669 (splt
->output_section
->vma
1670 + splt
->output_offset
1672 + 12), /* same offset */
1673 sgot
->contents
+ got_offset
);
1675 /* Fill in the entry in the .rela.plt section. */
1676 rela
.r_offset
= (sgot
->output_section
->vma
1677 + sgot
->output_offset
1679 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_LM32_JMP_SLOT
);
1681 loc
= srela
->contents
;
1682 loc
+= plt_index
* sizeof (Elf32_External_Rela
);
1683 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
1685 if (!h
->def_regular
)
1687 /* Mark the symbol as undefined, rather than as defined in
1688 the .plt section. Leave the value alone. */
1689 sym
->st_shndx
= SHN_UNDEF
;
1694 if (h
->got
.offset
!= (bfd_vma
) -1)
1698 Elf_Internal_Rela rela
;
1700 /* This symbol has an entry in the global offset table. Set it
1703 srela
= htab
->srelgot
;
1704 BFD_ASSERT (sgot
!= NULL
&& srela
!= NULL
);
1706 rela
.r_offset
= (sgot
->output_section
->vma
1707 + sgot
->output_offset
1708 + (h
->got
.offset
&~ 1));
1710 /* If this is a -Bsymbolic link, and the symbol is defined
1711 locally, we just want to emit a RELATIVE reloc. Likewise if
1712 the symbol was forced to be local because of a version file.
1713 The entry in the global offset table will already have been
1714 initialized in the relocate_section function. */
1721 rela
.r_info
= ELF32_R_INFO (0, R_LM32_RELATIVE
);
1722 rela
.r_addend
= (h
->root
.u
.def
.value
1723 + h
->root
.u
.def
.section
->output_section
->vma
1724 + h
->root
.u
.def
.section
->output_offset
);
1728 BFD_ASSERT ((h
->got
.offset
& 1) == 0);
1729 bfd_put_32 (output_bfd
, (bfd_vma
) 0, sgot
->contents
+ h
->got
.offset
);
1730 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_LM32_GLOB_DAT
);
1734 loc
= srela
->contents
;
1735 loc
+= srela
->reloc_count
* sizeof (Elf32_External_Rela
);
1736 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
1737 ++srela
->reloc_count
;
1743 Elf_Internal_Rela rela
;
1745 /* This symbols needs a copy reloc. Set it up. */
1746 BFD_ASSERT (h
->dynindx
!= -1
1747 && (h
->root
.type
== bfd_link_hash_defined
1748 || h
->root
.type
== bfd_link_hash_defweak
));
1750 s
= bfd_get_section_by_name (h
->root
.u
.def
.section
->owner
,
1752 BFD_ASSERT (s
!= NULL
);
1754 rela
.r_offset
= (h
->root
.u
.def
.value
1755 + h
->root
.u
.def
.section
->output_section
->vma
1756 + h
->root
.u
.def
.section
->output_offset
);
1757 rela
.r_info
= ELF32_R_INFO (h
->dynindx
, R_LM32_COPY
);
1760 loc
+= s
->reloc_count
* sizeof (Elf32_External_Rela
);
1761 bfd_elf32_swap_reloca_out (output_bfd
, &rela
, loc
);
1765 /* Mark some specially defined symbols as absolute. */
1766 if (strcmp (h
->root
.root
.string
, "_DYNAMIC") == 0
1767 || h
== htab
->root
.hgot
)
1768 sym
->st_shndx
= SHN_ABS
;
1773 static enum elf_reloc_type_class
1774 lm32_elf_reloc_type_class (const Elf_Internal_Rela
*rela
)
1776 switch ((int) ELF32_R_TYPE (rela
->r_info
))
1778 case R_LM32_RELATIVE
: return reloc_class_relative
;
1779 case R_LM32_JMP_SLOT
: return reloc_class_plt
;
1780 case R_LM32_COPY
: return reloc_class_copy
;
1781 default: return reloc_class_normal
;
1785 /* Adjust a symbol defined by a dynamic object and referenced by a
1786 regular object. The current definition is in some section of the
1787 dynamic object, but we're not including those sections. We have to
1788 change the definition to something the rest of the link can
1792 lm32_elf_adjust_dynamic_symbol (struct bfd_link_info
*info
,
1793 struct elf_link_hash_entry
*h
)
1795 struct elf_lm32_link_hash_table
*htab
;
1796 struct elf_lm32_link_hash_entry
*eh
;
1797 struct elf_lm32_dyn_relocs
*p
;
1801 dynobj
= elf_hash_table (info
)->dynobj
;
1803 /* Make sure we know what is going on here. */
1804 BFD_ASSERT (dynobj
!= NULL
1806 || h
->u
.weakdef
!= NULL
1809 && !h
->def_regular
)));
1811 /* If this is a function, put it in the procedure linkage table. We
1812 will fill in the contents of the procedure linkage table later,
1813 when we know the address of the .got section. */
1814 if (h
->type
== STT_FUNC
1820 && h
->root
.type
!= bfd_link_hash_undefweak
1821 && h
->root
.type
!= bfd_link_hash_undefined
)
1823 /* This case can occur if we saw a PLT reloc in an input
1824 file, but the symbol was never referred to by a dynamic
1825 object. In such a case, we don't actually need to build
1826 a procedure linkage table, and we can just do a PCREL
1828 h
->plt
.offset
= (bfd_vma
) -1;
1835 h
->plt
.offset
= (bfd_vma
) -1;
1837 /* If this is a weak symbol, and there is a real definition, the
1838 processor independent code will have arranged for us to see the
1839 real definition first, and we can just use the same value. */
1840 if (h
->u
.weakdef
!= NULL
)
1842 BFD_ASSERT (h
->u
.weakdef
->root
.type
== bfd_link_hash_defined
1843 || h
->u
.weakdef
->root
.type
== bfd_link_hash_defweak
);
1844 h
->root
.u
.def
.section
= h
->u
.weakdef
->root
.u
.def
.section
;
1845 h
->root
.u
.def
.value
= h
->u
.weakdef
->root
.u
.def
.value
;
1849 /* This is a reference to a symbol defined by a dynamic object which
1850 is not a function. */
1852 /* If we are creating a shared library, we must presume that the
1853 only references to the symbol are via the global offset table.
1854 For such cases we need not do anything here; the relocations will
1855 be handled correctly by relocate_section. */
1859 /* If there are no references to this symbol that do not use the
1860 GOT, we don't need to generate a copy reloc. */
1861 if (!h
->non_got_ref
)
1864 /* If -z nocopyreloc was given, we won't generate them either. */
1865 if (info
->nocopyreloc
)
1871 eh
= (struct elf_lm32_link_hash_entry
*) h
;
1872 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
1874 s
= p
->sec
->output_section
;
1875 if (s
!= NULL
&& (s
->flags
& (SEC_READONLY
| SEC_HAS_CONTENTS
)) != 0)
1879 /* If we didn't find any dynamic relocs in sections which needs the
1880 copy reloc, then we'll be keeping the dynamic relocs and avoiding
1890 (*_bfd_error_handler
) (_("dynamic variable `%s' is zero size"),
1891 h
->root
.root
.string
);
1895 /* We must allocate the symbol in our .dynbss section, which will
1896 become part of the .bss section of the executable. There will be
1897 an entry for this symbol in the .dynsym section. The dynamic
1898 object will contain position independent code, so all references
1899 from the dynamic object to this symbol will go through the global
1900 offset table. The dynamic linker will use the .dynsym entry to
1901 determine the address it must put in the global offset table, so
1902 both the dynamic object and the regular object will refer to the
1903 same memory location for the variable. */
1905 htab
= lm32_elf_hash_table (info
);
1910 BFD_ASSERT (s
!= NULL
);
1912 /* We must generate a R_LM32_COPY reloc to tell the dynamic linker
1913 to copy the initial value out of the dynamic object and into the
1914 runtime process image. We need to remember the offset into the
1915 .rela.bss section we are going to use. */
1916 if ((h
->root
.u
.def
.section
->flags
& SEC_ALLOC
) != 0)
1920 srel
= htab
->srelbss
;
1921 BFD_ASSERT (srel
!= NULL
);
1922 srel
->size
+= sizeof (Elf32_External_Rela
);
1926 return _bfd_elf_adjust_dynamic_copy (h
, s
);
1929 /* Allocate space in .plt, .got and associated reloc sections for
1933 allocate_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
1935 struct bfd_link_info
*info
;
1936 struct elf_lm32_link_hash_table
*htab
;
1937 struct elf_lm32_link_hash_entry
*eh
;
1938 struct elf_lm32_dyn_relocs
*p
;
1940 if (h
->root
.type
== bfd_link_hash_indirect
)
1943 if (h
->root
.type
== bfd_link_hash_warning
)
1944 /* When warning symbols are created, they **replace** the "real"
1945 entry in the hash table, thus we never get to see the real
1946 symbol in a hash traversal. So look at it now. */
1947 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
1949 info
= (struct bfd_link_info
*) inf
;
1950 htab
= lm32_elf_hash_table (info
);
1954 eh
= (struct elf_lm32_link_hash_entry
*) h
;
1956 if (htab
->root
.dynamic_sections_created
1957 && h
->plt
.refcount
> 0)
1959 /* Make sure this symbol is output as a dynamic symbol.
1960 Undefined weak syms won't yet be marked as dynamic. */
1961 if (h
->dynindx
== -1
1962 && !h
->forced_local
)
1964 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
1968 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (1, info
->shared
, h
))
1970 asection
*s
= htab
->splt
;
1972 /* If this is the first .plt entry, make room for the special
1975 s
->size
+= PLT_ENTRY_SIZE
;
1977 h
->plt
.offset
= s
->size
;
1979 /* If this symbol is not defined in a regular file, and we are
1980 not generating a shared library, then set the symbol to this
1981 location in the .plt. This is required to make function
1982 pointers compare as equal between the normal executable and
1983 the shared library. */
1987 h
->root
.u
.def
.section
= s
;
1988 h
->root
.u
.def
.value
= h
->plt
.offset
;
1991 /* Make room for this entry. */
1992 s
->size
+= PLT_ENTRY_SIZE
;
1994 /* We also need to make an entry in the .got.plt section, which
1995 will be placed in the .got section by the linker script. */
1996 htab
->sgotplt
->size
+= 4;
1998 /* We also need to make an entry in the .rel.plt section. */
1999 htab
->srelplt
->size
+= sizeof (Elf32_External_Rela
);
2003 h
->plt
.offset
= (bfd_vma
) -1;
2009 h
->plt
.offset
= (bfd_vma
) -1;
2013 if (h
->got
.refcount
> 0)
2018 /* Make sure this symbol is output as a dynamic symbol.
2019 Undefined weak syms won't yet be marked as dynamic. */
2020 if (h
->dynindx
== -1
2021 && !h
->forced_local
)
2023 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2029 h
->got
.offset
= s
->size
;
2031 dyn
= htab
->root
.dynamic_sections_created
;
2032 if (WILL_CALL_FINISH_DYNAMIC_SYMBOL (dyn
, info
->shared
, h
))
2033 htab
->srelgot
->size
+= sizeof (Elf32_External_Rela
);
2036 h
->got
.offset
= (bfd_vma
) -1;
2038 if (eh
->dyn_relocs
== NULL
)
2041 /* In the shared -Bsymbolic case, discard space allocated for
2042 dynamic pc-relative relocs against symbols which turn out to be
2043 defined in regular objects. For the normal shared case, discard
2044 space for pc-relative relocs that have become local due to symbol
2045 visibility changes. */
2053 struct elf_lm32_dyn_relocs
**pp
;
2055 for (pp
= &eh
->dyn_relocs
; (p
= *pp
) != NULL
;)
2057 p
->count
-= p
->pc_count
;
2066 /* Also discard relocs on undefined weak syms with non-default
2068 if (eh
->dyn_relocs
!= NULL
2069 && h
->root
.type
== bfd_link_hash_undefweak
)
2071 if (ELF_ST_VISIBILITY (h
->other
) != STV_DEFAULT
)
2072 eh
->dyn_relocs
= NULL
;
2074 /* Make sure undefined weak symbols are output as a dynamic
2076 else if (h
->dynindx
== -1
2077 && !h
->forced_local
)
2079 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2086 /* For the non-shared case, discard space for relocs against
2087 symbols which turn out to need copy relocs or are not
2093 || (htab
->root
.dynamic_sections_created
2094 && (h
->root
.type
== bfd_link_hash_undefweak
2095 || h
->root
.type
== bfd_link_hash_undefined
))))
2097 /* Make sure this symbol is output as a dynamic symbol.
2098 Undefined weak syms won't yet be marked as dynamic. */
2099 if (h
->dynindx
== -1
2100 && !h
->forced_local
)
2102 if (! bfd_elf_link_record_dynamic_symbol (info
, h
))
2106 /* If that succeeded, we know we'll be keeping all the
2108 if (h
->dynindx
!= -1)
2112 eh
->dyn_relocs
= NULL
;
2117 /* Finally, allocate space. */
2118 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2120 asection
*sreloc
= elf_section_data (p
->sec
)->sreloc
;
2121 sreloc
->size
+= p
->count
* sizeof (Elf32_External_Rela
);
2127 /* Find any dynamic relocs that apply to read-only sections. */
2130 readonly_dynrelocs (struct elf_link_hash_entry
*h
, void * inf
)
2132 struct elf_lm32_link_hash_entry
*eh
;
2133 struct elf_lm32_dyn_relocs
*p
;
2135 if (h
->root
.type
== bfd_link_hash_warning
)
2136 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2138 eh
= (struct elf_lm32_link_hash_entry
*) h
;
2139 for (p
= eh
->dyn_relocs
; p
!= NULL
; p
= p
->next
)
2141 asection
*s
= p
->sec
->output_section
;
2143 if (s
!= NULL
&& (s
->flags
& SEC_READONLY
) != 0)
2145 struct bfd_link_info
*info
= (struct bfd_link_info
*) inf
;
2147 info
->flags
|= DF_TEXTREL
;
2149 /* Not an error, just cut short the traversal. */
2156 /* Set the sizes of the dynamic sections. */
2159 lm32_elf_size_dynamic_sections (bfd
*output_bfd
,
2160 struct bfd_link_info
*info
)
2162 struct elf_lm32_link_hash_table
*htab
;
2168 htab
= lm32_elf_hash_table (info
);
2172 dynobj
= htab
->root
.dynobj
;
2173 BFD_ASSERT (dynobj
!= NULL
);
2175 if (htab
->root
.dynamic_sections_created
)
2177 /* Set the contents of the .interp section to the interpreter. */
2178 if (info
->executable
)
2180 s
= bfd_get_section_by_name (dynobj
, ".interp");
2181 BFD_ASSERT (s
!= NULL
);
2182 s
->size
= sizeof ELF_DYNAMIC_INTERPRETER
;
2183 s
->contents
= (unsigned char *) ELF_DYNAMIC_INTERPRETER
;
2187 /* Set up .got offsets for local syms, and space for local dynamic
2189 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
2191 bfd_signed_vma
*local_got
;
2192 bfd_signed_vma
*end_local_got
;
2193 bfd_size_type locsymcount
;
2194 Elf_Internal_Shdr
*symtab_hdr
;
2197 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
)
2200 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
2202 struct elf_lm32_dyn_relocs
*p
;
2204 for (p
= ((struct elf_lm32_dyn_relocs
*)
2205 elf_section_data (s
)->local_dynrel
);
2209 if (! bfd_is_abs_section (p
->sec
)
2210 && bfd_is_abs_section (p
->sec
->output_section
))
2212 /* Input section has been discarded, either because
2213 it is a copy of a linkonce section or due to
2214 linker script /DISCARD/, so we'll be discarding
2217 else if (p
->count
!= 0)
2219 srel
= elf_section_data (p
->sec
)->sreloc
;
2220 srel
->size
+= p
->count
* sizeof (Elf32_External_Rela
);
2221 if ((p
->sec
->output_section
->flags
& SEC_READONLY
) != 0)
2222 info
->flags
|= DF_TEXTREL
;
2227 local_got
= elf_local_got_refcounts (ibfd
);
2231 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
2232 locsymcount
= symtab_hdr
->sh_info
;
2233 end_local_got
= local_got
+ locsymcount
;
2235 srel
= htab
->srelgot
;
2236 for (; local_got
< end_local_got
; ++local_got
)
2240 *local_got
= s
->size
;
2243 srel
->size
+= sizeof (Elf32_External_Rela
);
2246 *local_got
= (bfd_vma
) -1;
2250 /* Allocate global sym .plt and .got entries, and space for global
2251 sym dynamic relocs. */
2252 elf_link_hash_traverse (&htab
->root
, allocate_dynrelocs
, info
);
2254 /* We now have determined the sizes of the various dynamic sections.
2255 Allocate memory for them. */
2257 for (s
= dynobj
->sections
; s
!= NULL
; s
= s
->next
)
2259 if ((s
->flags
& SEC_LINKER_CREATED
) == 0)
2264 || s
== htab
->sgotplt
2265 || s
== htab
->sdynbss
)
2267 /* Strip this section if we don't need it; see the
2270 else if (CONST_STRNEQ (bfd_get_section_name (dynobj
, s
), ".rela"))
2272 if (s
->size
!= 0 && s
!= htab
->srelplt
)
2275 /* We use the reloc_count field as a counter if we need
2276 to copy relocs into the output file. */
2280 /* It's not one of our sections, so don't allocate space. */
2285 /* If we don't need this section, strip it from the
2286 output file. This is mostly to handle .rela.bss and
2287 .rela.plt. We must create both sections in
2288 create_dynamic_sections, because they must be created
2289 before the linker maps input sections to output
2290 sections. The linker does that before
2291 adjust_dynamic_symbol is called, and it is that
2292 function which decides whether anything needs to go
2293 into these sections. */
2294 s
->flags
|= SEC_EXCLUDE
;
2298 if ((s
->flags
& SEC_HAS_CONTENTS
) == 0)
2301 /* Allocate memory for the section contents. We use bfd_zalloc
2302 here in case unused entries are not reclaimed before the
2303 section's contents are written out. This should not happen,
2304 but this way if it does, we get a R_LM32_NONE reloc instead
2306 s
->contents
= bfd_zalloc (dynobj
, s
->size
);
2307 if (s
->contents
== NULL
)
2311 if (htab
->root
.dynamic_sections_created
)
2313 /* Add some entries to the .dynamic section. We fill in the
2314 values later, in lm32_elf_finish_dynamic_sections, but we
2315 must add the entries now so that we get the correct size for
2316 the .dynamic section. The DT_DEBUG entry is filled in by the
2317 dynamic linker and used by the debugger. */
2318 #define add_dynamic_entry(TAG, VAL) \
2319 _bfd_elf_add_dynamic_entry (info, TAG, VAL)
2321 if (info
->executable
)
2323 if (! add_dynamic_entry (DT_DEBUG
, 0))
2327 if (htab
->splt
->size
!= 0)
2329 if (! add_dynamic_entry (DT_PLTGOT
, 0)
2330 || ! add_dynamic_entry (DT_PLTRELSZ
, 0)
2331 || ! add_dynamic_entry (DT_PLTREL
, DT_RELA
)
2332 || ! add_dynamic_entry (DT_JMPREL
, 0))
2338 if (! add_dynamic_entry (DT_RELA
, 0)
2339 || ! add_dynamic_entry (DT_RELASZ
, 0)
2340 || ! add_dynamic_entry (DT_RELAENT
,
2341 sizeof (Elf32_External_Rela
)))
2344 /* If any dynamic relocs apply to a read-only section,
2345 then we need a DT_TEXTREL entry. */
2346 if ((info
->flags
& DF_TEXTREL
) == 0)
2347 elf_link_hash_traverse (&htab
->root
, readonly_dynrelocs
,
2350 if ((info
->flags
& DF_TEXTREL
) != 0)
2352 if (! add_dynamic_entry (DT_TEXTREL
, 0))
2357 #undef add_dynamic_entry
2359 /* Allocate .rofixup section. */
2360 if (IS_FDPIC (output_bfd
))
2362 struct weak_symbol_list
*list_start
= NULL
, *list_end
= NULL
;
2363 int rgot_weak_count
= 0;
2366 /* Look for deleted sections. */
2367 for (ibfd
= info
->input_bfds
; ibfd
!= NULL
; ibfd
= ibfd
->link_next
)
2369 for (s
= ibfd
->sections
; s
!= NULL
; s
= s
->next
)
2373 /* Count relocs that need .rofixup entires. */
2374 Elf_Internal_Rela
*internal_relocs
, *end
;
2375 internal_relocs
= elf_section_data (s
)->relocs
;
2376 if (internal_relocs
== NULL
)
2377 internal_relocs
= (_bfd_elf_link_read_relocs (ibfd
, s
, NULL
, NULL
, FALSE
));
2378 if (internal_relocs
!= NULL
)
2380 end
= internal_relocs
+ s
->reloc_count
;
2381 while (internal_relocs
< end
)
2383 Elf_Internal_Shdr
*symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
2384 struct elf_link_hash_entry
**sym_hashes
= elf_sym_hashes (ibfd
);
2385 unsigned long r_symndx
;
2386 struct elf_link_hash_entry
*h
;
2388 symtab_hdr
= &elf_tdata (ibfd
)->symtab_hdr
;
2389 sym_hashes
= elf_sym_hashes (ibfd
);
2390 r_symndx
= ELF32_R_SYM (internal_relocs
->r_info
);
2392 if (r_symndx
< symtab_hdr
->sh_info
)
2397 h
= sym_hashes
[r_symndx
- symtab_hdr
->sh_info
];
2398 while (h
->root
.type
== bfd_link_hash_indirect
2399 || h
->root
.type
== bfd_link_hash_warning
)
2400 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2403 /* Don't generate entries for weak symbols. */
2404 if (!h
|| (h
&& h
->root
.type
!= bfd_link_hash_undefweak
))
2406 if (!elf_discarded_section (s
) && !((bfd_get_section_flags (ibfd
, s
) & SEC_ALLOC
) == 0))
2408 switch (ELF32_R_TYPE (internal_relocs
->r_info
))
2421 struct weak_symbol_list
*current
, *new_entry
;
2422 /* Is this symbol already in the list? */
2423 for (current
= list_start
; current
; current
= current
->next
)
2425 if (!strcmp (current
->name
, h
->root
.root
.string
))
2428 if (!current
&& !elf_discarded_section (s
) && (bfd_get_section_flags (ibfd
, s
) & SEC_ALLOC
))
2430 /* Will this have an entry in the GOT. */
2431 if (ELF32_R_TYPE (internal_relocs
->r_info
) == R_LM32_16_GOT
)
2433 /* Create a new entry. */
2434 new_entry
= malloc (sizeof (struct weak_symbol_list
));
2437 new_entry
->name
= h
->root
.root
.string
;
2438 new_entry
->next
= NULL
;
2440 if (list_start
== NULL
)
2442 list_start
= new_entry
;
2443 list_end
= new_entry
;
2447 list_end
->next
= new_entry
;
2448 list_end
= new_entry
;
2450 /* Increase count of undefined weak symbols in the got. */
2466 list_end
= list_start
->next
;
2468 list_start
= list_end
;
2471 /* Size sections. */
2472 lm32fdpic_fixup32_section (info
)->size
= (r32_count
+ (htab
->sgot
->size
/ 4) - rgot_weak_count
+ 1) * 4;
2473 if (lm32fdpic_fixup32_section (info
)->size
== 0)
2474 lm32fdpic_fixup32_section (info
)->flags
|= SEC_EXCLUDE
;
2477 lm32fdpic_fixup32_section (info
)->contents
=
2478 bfd_zalloc (dynobj
, lm32fdpic_fixup32_section (info
)->size
);
2479 if (lm32fdpic_fixup32_section (info
)->contents
== NULL
)
2487 /* Create dynamic sections when linking against a dynamic object. */
2490 lm32_elf_create_dynamic_sections (bfd
*abfd
, struct bfd_link_info
*info
)
2492 struct elf_lm32_link_hash_table
*htab
;
2493 flagword flags
, pltflags
;
2495 const struct elf_backend_data
*bed
= get_elf_backend_data (abfd
);
2496 int ptralign
= 2; /* 32bit */
2498 htab
= lm32_elf_hash_table (info
);
2502 /* Make sure we have a GOT - For the case where we have a dynamic object
2503 but none of the relocs in check_relocs */
2504 if (! create_got_section (abfd
, info
))
2506 if (IS_FDPIC (abfd
) && (htab
->sfixup32
== NULL
))
2508 if (! create_rofixup_section (abfd
, info
))
2512 /* We need to create .plt, .rel[a].plt, .got, .got.plt, .dynbss, and
2513 .rel[a].bss sections. */
2514 flags
= (SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
| SEC_IN_MEMORY
2515 | SEC_LINKER_CREATED
);
2518 pltflags
|= SEC_CODE
;
2519 if (bed
->plt_not_loaded
)
2520 pltflags
&= ~ (SEC_LOAD
| SEC_HAS_CONTENTS
);
2521 if (bed
->plt_readonly
)
2522 pltflags
|= SEC_READONLY
;
2524 s
= bfd_make_section_with_flags (abfd
, ".plt", pltflags
);
2527 || ! bfd_set_section_alignment (abfd
, s
, bed
->plt_alignment
))
2530 if (bed
->want_plt_sym
)
2532 /* Define the symbol _PROCEDURE_LINKAGE_TABLE_ at the start of the
2534 struct bfd_link_hash_entry
*bh
= NULL
;
2535 struct elf_link_hash_entry
*h
;
2537 if (! (_bfd_generic_link_add_one_symbol
2538 (info
, abfd
, "_PROCEDURE_LINKAGE_TABLE_", BSF_GLOBAL
, s
,
2539 (bfd_vma
) 0, NULL
, FALSE
,
2540 get_elf_backend_data (abfd
)->collect
, &bh
)))
2542 h
= (struct elf_link_hash_entry
*) bh
;
2544 h
->type
= STT_OBJECT
;
2545 htab
->root
.hplt
= h
;
2548 && ! bfd_elf_link_record_dynamic_symbol (info
, h
))
2552 s
= bfd_make_section_with_flags (abfd
,
2553 bed
->default_use_rela_p
? ".rela.plt" : ".rel.plt",
2554 flags
| SEC_READONLY
);
2557 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2560 if (htab
->sgot
== NULL
2561 && ! create_got_section (abfd
, info
))
2565 const char *secname
;
2570 for (sec
= abfd
->sections
; sec
; sec
= sec
->next
)
2572 secflags
= bfd_get_section_flags (abfd
, sec
);
2573 if ((secflags
& (SEC_DATA
| SEC_LINKER_CREATED
))
2574 || ((secflags
& SEC_HAS_CONTENTS
) != SEC_HAS_CONTENTS
))
2576 secname
= bfd_get_section_name (abfd
, sec
);
2577 relname
= bfd_malloc ((bfd_size_type
) strlen (secname
) + 6);
2578 strcpy (relname
, ".rela");
2579 strcat (relname
, secname
);
2580 if (bfd_get_section_by_name (abfd
, secname
))
2582 s
= bfd_make_section_with_flags (abfd
, relname
,
2583 flags
| SEC_READONLY
);
2585 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2590 if (bed
->want_dynbss
)
2592 /* The .dynbss section is a place to put symbols which are defined
2593 by dynamic objects, are referenced by regular objects, and are
2594 not functions. We must allocate space for them in the process
2595 image and use a R_*_COPY reloc to tell the dynamic linker to
2596 initialize them at run time. The linker script puts the .dynbss
2597 section into the .bss section of the final image. */
2598 s
= bfd_make_section_with_flags (abfd
, ".dynbss",
2599 SEC_ALLOC
| SEC_LINKER_CREATED
);
2603 /* The .rel[a].bss section holds copy relocs. This section is not
2604 normally needed. We need to create it here, though, so that the
2605 linker will map it to an output section. We can't just create it
2606 only if we need it, because we will not know whether we need it
2607 until we have seen all the input files, and the first time the
2608 main linker code calls BFD after examining all the input files
2609 (size_dynamic_sections) the input sections have already been
2610 mapped to the output sections. If the section turns out not to
2611 be needed, we can discard it later. We will never need this
2612 section when generating a shared object, since they do not use
2616 s
= bfd_make_section_with_flags (abfd
,
2617 (bed
->default_use_rela_p
2618 ? ".rela.bss" : ".rel.bss"),
2619 flags
| SEC_READONLY
);
2622 || ! bfd_set_section_alignment (abfd
, s
, ptralign
))
2630 /* Copy the extra info we tack onto an elf_link_hash_entry. */
2633 lm32_elf_copy_indirect_symbol (struct bfd_link_info
*info
,
2634 struct elf_link_hash_entry
*dir
,
2635 struct elf_link_hash_entry
*ind
)
2637 struct elf_lm32_link_hash_entry
* edir
;
2638 struct elf_lm32_link_hash_entry
* eind
;
2640 edir
= (struct elf_lm32_link_hash_entry
*) dir
;
2641 eind
= (struct elf_lm32_link_hash_entry
*) ind
;
2643 if (eind
->dyn_relocs
!= NULL
)
2645 if (edir
->dyn_relocs
!= NULL
)
2647 struct elf_lm32_dyn_relocs
**pp
;
2648 struct elf_lm32_dyn_relocs
*p
;
2650 /* Add reloc counts against the indirect sym to the direct sym
2651 list. Merge any entries against the same section. */
2652 for (pp
= &eind
->dyn_relocs
; (p
= *pp
) != NULL
;)
2654 struct elf_lm32_dyn_relocs
*q
;
2656 for (q
= edir
->dyn_relocs
; q
!= NULL
; q
= q
->next
)
2657 if (q
->sec
== p
->sec
)
2659 q
->pc_count
+= p
->pc_count
;
2660 q
->count
+= p
->count
;
2667 *pp
= edir
->dyn_relocs
;
2670 edir
->dyn_relocs
= eind
->dyn_relocs
;
2671 eind
->dyn_relocs
= NULL
;
2674 _bfd_elf_link_hash_copy_indirect (info
, dir
, ind
);
2678 lm32_elf_always_size_sections (bfd
*output_bfd
,
2679 struct bfd_link_info
*info
)
2681 if (!info
->relocatable
)
2683 struct elf_link_hash_entry
*h
;
2685 /* Force a PT_GNU_STACK segment to be created. */
2686 if (! elf_tdata (output_bfd
)->stack_flags
)
2687 elf_tdata (output_bfd
)->stack_flags
= PF_R
| PF_W
| PF_X
;
2689 /* Define __stacksize if it's not defined yet. */
2690 h
= elf_link_hash_lookup (elf_hash_table (info
), "__stacksize",
2691 FALSE
, FALSE
, FALSE
);
2692 if (! h
|| h
->root
.type
!= bfd_link_hash_defined
2693 || h
->type
!= STT_OBJECT
2696 struct bfd_link_hash_entry
*bh
= NULL
;
2698 if (!(_bfd_generic_link_add_one_symbol
2699 (info
, output_bfd
, "__stacksize",
2700 BSF_GLOBAL
, bfd_abs_section_ptr
, DEFAULT_STACK_SIZE
,
2701 (const char *) NULL
, FALSE
,
2702 get_elf_backend_data (output_bfd
)->collect
, &bh
)))
2705 h
= (struct elf_link_hash_entry
*) bh
;
2707 h
->type
= STT_OBJECT
;
2708 /* This one must NOT be hidden. */
2716 lm32_elf_modify_segment_map (bfd
*output_bfd
,
2717 struct bfd_link_info
*info
)
2719 struct elf_segment_map
*m
;
2721 /* objcopy and strip preserve what's already there using elf32_lm32fdpic_copy_
2722 private_bfd_data (). */
2726 for (m
= elf_tdata (output_bfd
)->segment_map
; m
!= NULL
; m
= m
->next
)
2727 if (m
->p_type
== PT_GNU_STACK
)
2732 asection
*sec
= bfd_get_section_by_name (output_bfd
, ".stack");
2733 struct elf_link_hash_entry
*h
;
2737 /* Obtain the pointer to the __stacksize symbol. */
2738 h
= elf_link_hash_lookup (elf_hash_table (info
), "__stacksize",
2739 FALSE
, FALSE
, FALSE
);
2740 while (h
->root
.type
== bfd_link_hash_indirect
2741 || h
->root
.type
== bfd_link_hash_warning
)
2742 h
= (struct elf_link_hash_entry
*)h
->root
.u
.i
.link
;
2743 BFD_ASSERT (h
->root
.type
== bfd_link_hash_defined
);
2745 /* Set the section size from the symbol value. We
2746 intentionally ignore the symbol section. */
2747 if (h
->root
.type
== bfd_link_hash_defined
)
2748 sec
->size
= h
->root
.u
.def
.value
;
2750 sec
->size
= DEFAULT_STACK_SIZE
;
2752 /* Add the stack section to the PT_GNU_STACK segment,
2753 such that its size and alignment requirements make it
2755 m
->sections
[m
->count
] = sec
;
2764 lm32_elf_modify_program_headers (bfd
*output_bfd
,
2765 struct bfd_link_info
*info
)
2767 struct elf_obj_tdata
*tdata
= elf_tdata (output_bfd
);
2768 struct elf_segment_map
*m
;
2769 Elf_Internal_Phdr
*p
;
2774 for (p
= tdata
->phdr
, m
= tdata
->segment_map
; m
!= NULL
; m
= m
->next
, p
++)
2775 if (m
->p_type
== PT_GNU_STACK
)
2780 struct elf_link_hash_entry
*h
;
2782 /* Obtain the pointer to the __stacksize symbol. */
2783 h
= elf_link_hash_lookup (elf_hash_table (info
), "__stacksize",
2784 FALSE
, FALSE
, FALSE
);
2787 while (h
->root
.type
== bfd_link_hash_indirect
2788 || h
->root
.type
== bfd_link_hash_warning
)
2789 h
= (struct elf_link_hash_entry
*) h
->root
.u
.i
.link
;
2790 BFD_ASSERT (h
->root
.type
== bfd_link_hash_defined
);
2793 /* Set the header p_memsz from the symbol value. We
2794 intentionally ignore the symbol section. */
2795 if (h
&& h
->root
.type
== bfd_link_hash_defined
)
2796 p
->p_memsz
= h
->root
.u
.def
.value
;
2798 p
->p_memsz
= DEFAULT_STACK_SIZE
;
2808 lm32_elf_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
2810 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
2811 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
2814 BFD_ASSERT (!elf_flags_init (obfd
)
2815 || elf_elfheader (obfd
)->e_flags
== elf_elfheader (ibfd
)->e_flags
);
2817 elf_elfheader (obfd
)->e_flags
= elf_elfheader (ibfd
)->e_flags
;
2818 elf_flags_init (obfd
) = TRUE
;
2820 /* Copy object attributes. */
2821 _bfd_elf_copy_obj_attributes (ibfd
, obfd
);
2828 lm32_elf_fdpic_copy_private_bfd_data (bfd
*ibfd
, bfd
*obfd
)
2832 if (bfd_get_flavour (ibfd
) != bfd_target_elf_flavour
2833 || bfd_get_flavour (obfd
) != bfd_target_elf_flavour
)
2836 if (! lm32_elf_copy_private_bfd_data (ibfd
, obfd
))
2839 if (! elf_tdata (ibfd
) || ! elf_tdata (ibfd
)->phdr
2840 || ! elf_tdata (obfd
) || ! elf_tdata (obfd
)->phdr
)
2843 /* Copy the stack size. */
2844 for (i
= 0; i
< elf_elfheader (ibfd
)->e_phnum
; i
++)
2845 if (elf_tdata (ibfd
)->phdr
[i
].p_type
== PT_GNU_STACK
)
2847 Elf_Internal_Phdr
*iphdr
= &elf_tdata (ibfd
)->phdr
[i
];
2849 for (i
= 0; i
< elf_elfheader (obfd
)->e_phnum
; i
++)
2850 if (elf_tdata (obfd
)->phdr
[i
].p_type
== PT_GNU_STACK
)
2852 memcpy (&elf_tdata (obfd
)->phdr
[i
], iphdr
, sizeof (*iphdr
));
2854 /* Rewrite the phdrs, since we're only called after they were first written. */
2855 if (bfd_seek (obfd
, (bfd_signed_vma
) get_elf_backend_data (obfd
)
2856 ->s
->sizeof_ehdr
, SEEK_SET
) != 0
2857 || get_elf_backend_data (obfd
)->s
->write_out_phdrs (obfd
, elf_tdata (obfd
)->phdr
,
2858 elf_elfheader (obfd
)->e_phnum
) != 0)
2870 #define ELF_ARCH bfd_arch_lm32
2871 #define ELF_MACHINE_CODE EM_LATTICEMICO32
2872 #define ELF_MAXPAGESIZE 0x1000
2874 #define TARGET_BIG_SYM bfd_elf32_lm32_vec
2875 #define TARGET_BIG_NAME "elf32-lm32"
2877 #define bfd_elf32_bfd_reloc_type_lookup lm32_reloc_type_lookup
2878 #define bfd_elf32_bfd_reloc_name_lookup lm32_reloc_name_lookup
2879 #define elf_info_to_howto lm32_info_to_howto_rela
2880 #define elf_info_to_howto_rel 0
2881 #define elf_backend_rela_normal 1
2882 #define elf_backend_object_p lm32_elf_object_p
2883 #define elf_backend_final_write_processing lm32_elf_final_write_processing
2884 #define elf_backend_can_gc_sections 1
2885 #define elf_backend_can_refcount 1
2886 #define elf_backend_gc_mark_hook lm32_elf_gc_mark_hook
2887 #define elf_backend_gc_sweep_hook lm32_elf_gc_sweep_hook
2888 #define elf_backend_plt_readonly 1
2889 #define elf_backend_want_got_plt 1
2890 #define elf_backend_want_plt_sym 0
2891 #define elf_backend_got_header_size 12
2892 #define bfd_elf32_bfd_link_hash_table_create lm32_elf_link_hash_table_create
2893 #define elf_backend_check_relocs lm32_elf_check_relocs
2894 #define elf_backend_reloc_type_class lm32_elf_reloc_type_class
2895 #define elf_backend_copy_indirect_symbol lm32_elf_copy_indirect_symbol
2896 #define elf_backend_size_dynamic_sections lm32_elf_size_dynamic_sections
2897 #define elf_backend_omit_section_dynsym ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
2898 #define elf_backend_create_dynamic_sections lm32_elf_create_dynamic_sections
2899 #define elf_backend_finish_dynamic_sections lm32_elf_finish_dynamic_sections
2900 #define elf_backend_adjust_dynamic_symbol lm32_elf_adjust_dynamic_symbol
2901 #define elf_backend_finish_dynamic_symbol lm32_elf_finish_dynamic_symbol
2902 #define elf_backend_relocate_section lm32_elf_relocate_section
2904 #include "elf32-target.h"
2906 #undef ELF_MAXPAGESIZE
2907 #define ELF_MAXPAGESIZE 0x4000
2910 #undef TARGET_BIG_SYM
2911 #define TARGET_BIG_SYM bfd_elf32_lm32fdpic_vec
2912 #undef TARGET_BIG_NAME
2913 #define TARGET_BIG_NAME "elf32-lm32fdpic"
2915 #define elf32_bed elf32_lm32fdpic_bed
2917 #undef elf_backend_always_size_sections
2918 #define elf_backend_always_size_sections lm32_elf_always_size_sections
2919 #undef elf_backend_modify_segment_map
2920 #define elf_backend_modify_segment_map lm32_elf_modify_segment_map
2921 #undef elf_backend_modify_program_headers
2922 #define elf_backend_modify_program_headers lm32_elf_modify_program_headers
2923 #undef bfd_elf32_bfd_copy_private_bfd_data
2924 #define bfd_elf32_bfd_copy_private_bfd_data lm32_elf_fdpic_copy_private_bfd_data
2926 #include "elf32-target.h"