diff options
author | Alan Modra <amodra@gmail.com> | 2011-08-14 09:17:17 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2011-08-14 09:17:17 +0000 |
commit | b3874e1a22c1c3732791df6267c000924328592a (patch) | |
tree | 592626a41d1b2e9ec9c01b8e2982ed689b11916c /bfd | |
parent | 8de848d897fe00b6a05d6aa2be81997864641a1a (diff) | |
download | binutils-b3874e1a22c1c3732791df6267c000924328592a.zip binutils-b3874e1a22c1c3732791df6267c000924328592a.tar.gz binutils-b3874e1a22c1c3732791df6267c000924328592a.tar.bz2 |
* elf32-ppc.c (ppc_elf_select_plt_layout): Force bss-plt when
shared and call to _mcount will go via plt.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/elf32-ppc.c | 27 |
2 files changed, 31 insertions, 1 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 0b31af4..d3ec830 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,5 +1,10 @@ 2011-08-14 Alan Modra <amodra@gmail.com> + * elf32-ppc.c (ppc_elf_select_plt_layout): Force bss-plt when + shared and call to _mcount will go via plt. + +2011-08-14 Alan Modra <amodra@gmail.com> + * elf64-ppc.c: Prefix all einfo error strings with "%P: ". * elf32-ppc.c: Likewise. (ppc_elf_select_plt_layout): Use einfo rather than info to report diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 7de93f6..cfb4734 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -4256,8 +4256,27 @@ ppc_elf_select_plt_layout (bfd *output_bfd ATTRIBUTE_UNUSED, if (htab->plt_type == PLT_UNSET) { + struct elf_link_hash_entry *h; + if (plt_style == PLT_OLD) htab->plt_type = PLT_OLD; + else if (info->shared + && htab->elf.dynamic_sections_created + && (h = elf_link_hash_lookup (&htab->elf, "_mcount", + FALSE, FALSE, TRUE)) != NULL + && (h->type == STT_FUNC + || h->needs_plt) + && h->ref_regular + && !(SYMBOL_CALLS_LOCAL (info, h) + || (ELF_ST_VISIBILITY (h->other) != STV_DEFAULT + && h->root.type == bfd_link_hash_undefweak))) + { + /* Profiling of shared libs (and pies) is not supported with + secure plt, because ppc32 does profiling before a + function prologue and a secure plt pic call stubs needs + r30 to be set up. */ + htab->plt_type = PLT_OLD; + } else { bfd *ibfd; @@ -4285,7 +4304,13 @@ ppc_elf_select_plt_layout (bfd *output_bfd ATTRIBUTE_UNUSED, } } if (htab->plt_type == PLT_OLD && plt_style == PLT_NEW) - info->callbacks->einfo (_("%P: bss-plt forced due to %B\n"), htab->old_bfd); + { + if (htab->old_bfd != NULL) + info->callbacks->einfo (_("%P: bss-plt forced due to %B\n"), + htab->old_bfd); + else + info->callbacks->einfo (_("%P: bss-plt forced by profiling\n")); + } BFD_ASSERT (htab->plt_type != PLT_VXWORKS); |