m68k: Check UNDEFWEAK_NO_DYNAMIC_RELOC
Don't generate dynamic relocation against weak undefined symbol if it is resolved to zero. FIXME: UNDEFWEAK_NO_DYNAMIC_RELOC may need to be checked in more places. PR ld/22269 * elf32-m68k.c (elf_m68k_check_relocs): Don't allocate dynamic relocations if UNDEFWEAK_NO_DYNAMIC_RELOC is true. (elf_m68k_adjust_dynamic_symbol): Don't make symbol dynamic if UNDEFWEAK_NO_DYNAMIC_RELOC is true. (elf_m68k_relocate_section): Don't generate dynamic relocation if UNDEFWEAK_NO_DYNAMIC_RELOC is true.
This commit is contained in:
parent
60c1b909df
commit
5056ba1d4d
@ -1,3 +1,13 @@
|
|||||||
|
2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR ld/22269
|
||||||
|
* elf32-m68k.c (elf_m68k_check_relocs): Don't allocate dynamic
|
||||||
|
relocations if UNDEFWEAK_NO_DYNAMIC_RELOC is true.
|
||||||
|
(elf_m68k_adjust_dynamic_symbol): Don't make symbol dynamic if
|
||||||
|
UNDEFWEAK_NO_DYNAMIC_RELOC is true.
|
||||||
|
(elf_m68k_relocate_section): Don't generate dynamic relocation
|
||||||
|
if UNDEFWEAK_NO_DYNAMIC_RELOC is true.
|
||||||
|
|
||||||
2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
|
2017-10-14 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR ld/22269
|
PR ld/22269
|
||||||
|
@ -2773,7 +2773,9 @@ elf_m68k_check_relocs (bfd *abfd,
|
|||||||
|
|
||||||
/* If we are creating a shared library, we need to copy the
|
/* If we are creating a shared library, we need to copy the
|
||||||
reloc into the shared library. */
|
reloc into the shared library. */
|
||||||
if (bfd_link_pic (info))
|
if (bfd_link_pic (info)
|
||||||
|
&& (h == NULL
|
||||||
|
|| !UNDEFWEAK_NO_DYNAMIC_RELOC (info, h)))
|
||||||
{
|
{
|
||||||
/* When creating a shared object, we must copy these
|
/* When creating a shared object, we must copy these
|
||||||
reloc types into the output file. We create a reloc
|
reloc types into the output file. We create a reloc
|
||||||
@ -3095,7 +3097,8 @@ elf_m68k_adjust_dynamic_symbol (struct bfd_link_info *info,
|
|||||||
{
|
{
|
||||||
if ((h->plt.refcount <= 0
|
if ((h->plt.refcount <= 0
|
||||||
|| SYMBOL_CALLS_LOCAL (info, h)
|
|| SYMBOL_CALLS_LOCAL (info, h)
|
||||||
|| (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
|
|| ((ELF_ST_VISIBILITY (h->other) != STV_DEFAULT
|
||||||
|
|| UNDEFWEAK_NO_DYNAMIC_RELOC (info, h))
|
||||||
&& h->root.type == bfd_link_hash_undefweak))
|
&& h->root.type == bfd_link_hash_undefweak))
|
||||||
/* We must always create the plt entry if it was referenced
|
/* We must always create the plt entry if it was referenced
|
||||||
by a PLTxxO relocation. In this case we already recorded
|
by a PLTxxO relocation. In this case we already recorded
|
||||||
@ -3622,6 +3625,7 @@ elf_m68k_relocate_section (bfd *output_bfd,
|
|||||||
bfd_vma relocation;
|
bfd_vma relocation;
|
||||||
bfd_boolean unresolved_reloc;
|
bfd_boolean unresolved_reloc;
|
||||||
bfd_reloc_status_type r;
|
bfd_reloc_status_type r;
|
||||||
|
bfd_boolean resolved_to_zero;
|
||||||
|
|
||||||
r_type = ELF32_R_TYPE (rel->r_info);
|
r_type = ELF32_R_TYPE (rel->r_info);
|
||||||
if (r_type < 0 || r_type >= (int) R_68K_max)
|
if (r_type < 0 || r_type >= (int) R_68K_max)
|
||||||
@ -3661,6 +3665,9 @@ elf_m68k_relocate_section (bfd *output_bfd,
|
|||||||
if (bfd_link_relocatable (info))
|
if (bfd_link_relocatable (info))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
resolved_to_zero = (h != NULL
|
||||||
|
&& UNDEFWEAK_NO_DYNAMIC_RELOC (info, h));
|
||||||
|
|
||||||
switch (r_type)
|
switch (r_type)
|
||||||
{
|
{
|
||||||
case R_68K_GOT8:
|
case R_68K_GOT8:
|
||||||
@ -3785,7 +3792,8 @@ elf_m68k_relocate_section (bfd *output_bfd,
|
|||||||
h)
|
h)
|
||||||
|| (bfd_link_pic (info)
|
|| (bfd_link_pic (info)
|
||||||
&& SYMBOL_REFERENCES_LOCAL (info, h))
|
&& SYMBOL_REFERENCES_LOCAL (info, h))
|
||||||
|| (ELF_ST_VISIBILITY (h->other)
|
|| ((ELF_ST_VISIBILITY (h->other)
|
||||||
|
|| resolved_to_zero)
|
||||||
&& h->root.type == bfd_link_hash_undefweak))
|
&& h->root.type == bfd_link_hash_undefweak))
|
||||||
{
|
{
|
||||||
/* This is actually a static link, or it is a
|
/* This is actually a static link, or it is a
|
||||||
@ -3954,7 +3962,8 @@ elf_m68k_relocate_section (bfd *output_bfd,
|
|||||||
&& r_symndx != STN_UNDEF
|
&& r_symndx != STN_UNDEF
|
||||||
&& (input_section->flags & SEC_ALLOC) != 0
|
&& (input_section->flags & SEC_ALLOC) != 0
|
||||||
&& (h == NULL
|
&& (h == NULL
|
||||||
|| ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
|
|| (ELF_ST_VISIBILITY (h->other) == STV_DEFAULT
|
||||||
|
&& !resolved_to_zero)
|
||||||
|| h->root.type != bfd_link_hash_undefweak)
|
|| h->root.type != bfd_link_hash_undefweak)
|
||||||
&& ((r_type != R_68K_PC8
|
&& ((r_type != R_68K_PC8
|
||||||
&& r_type != R_68K_PC16
|
&& r_type != R_68K_PC16
|
||||||
|
Loading…
Reference in New Issue
Block a user