From 94caa966375d53b07f39beac80f1f9af4cac18da Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 19 May 2012 06:58:48 +0000 Subject: bfd/ * elf32-ppc.h (has_vle_insns, is_ppc_vle): Delete. (has_tls_reloc, has_tls_get_addr_call): Move back to.. * elf32-ppc.c: ..here. (ppc_elf_section_flags, elf_backend_section_flags): Delete. (ppc_elf_modify_segment_map): Use ELF sh_flags to detect VLE sections. opcodes/ * ppc-dis.c: Don't include elf32-ppc.h, do include elf/ppc.h. (get_powerpc_dialect): Detect VLE sections from ELF sh_flags. ld/testsuite/ * ld-powerpc/vle.ld: New. * ld-powerpc/powerpc.exp (vle reloc tests): Link using vle.ld. --- bfd/ChangeLog | 8 ++++++++ bfd/elf32-ppc.c | 27 +++++++++++++-------------- bfd/elf32-ppc.h | 20 -------------------- 3 files changed, 21 insertions(+), 34 deletions(-) (limited to 'bfd') diff --git a/bfd/ChangeLog b/bfd/ChangeLog index dbe96fe..aee1dbc 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,11 @@ +2012-05-19 Alan Modra + + * elf32-ppc.h (has_vle_insns, is_ppc_vle): Delete. + (has_tls_reloc, has_tls_get_addr_call): Move back to.. + * elf32-ppc.c: ..here. + (ppc_elf_section_flags, elf_backend_section_flags): Delete. + (ppc_elf_modify_segment_map): Use ELF sh_flags to detect VLE sections. + 2012-05-18 H.J. Lu * elf32-i386.c (elf_i386_finish_dynamic_symbol): Don't make diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 63d77d2..fabd065 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -2246,15 +2246,6 @@ ppc_elf_write_core_note (bfd *abfd, char *buf, int *bufsiz, int note_type, ...) } } -static bfd_boolean -ppc_elf_section_flags (flagword *flags ATTRIBUTE_UNUSED, - const Elf_Internal_Shdr *hdr) -{ - if (hdr->sh_flags & SHF_PPC_VLE) - hdr->bfd_section->has_vle_insns = 1; - return TRUE; -} - static flagword ppc_elf_lookup_section_flags (char *flag_name) { @@ -2372,17 +2363,17 @@ ppc_elf_modify_segment_map (bfd *abfd, if (m->count == 0) continue; - sect0_vle = is_ppc_vle (m->sections[0]); + sect0_vle = (elf_section_flags (m->sections[0]) & SHF_PPC_VLE) != 0; for (j = 1; j < m->count; ++j) { - if (is_ppc_vle (m->sections[j]) != sect0_vle) + sectj_vle = (elf_section_flags (m->sections[j]) & SHF_PPC_VLE) != 0; + + if (sectj_vle != sect0_vle) break; } if (j >= m->count) continue; - sectj_vle = is_ppc_vle (m->sections[j]); - /* sections 0..j-1 stay in this (current) segment, the remainder are put in a new segment. The scan resumes with the new segment. */ @@ -3120,6 +3111,15 @@ struct ppc_elf_link_hash_table struct sym_cache sym_cache; }; +/* Rename some of the generic section flags to better document how they + are used for ppc32. The flags are only valid for ppc32 elf objects. */ + +/* Nonzero if this section has TLS related relocations. */ +#define has_tls_reloc sec_flg0 + +/* Nonzero if this section has a call to __tls_get_addr. */ +#define has_tls_get_addr_call sec_flg1 + /* Get the PPC ELF linker hash table from a link_info structure. */ #define ppc_elf_hash_table(p) \ @@ -9710,7 +9710,6 @@ ppc_elf_finish_dynamic_sections (bfd *output_bfd, #define elf_backend_init_index_section _bfd_elf_init_1_index_section #define elf_backend_post_process_headers _bfd_elf_set_osabi #define elf_backend_lookup_section_flags_hook ppc_elf_lookup_section_flags -#define elf_backend_section_flags ppc_elf_section_flags #define elf_backend_section_processing ppc_elf_section_processing #include "elf32-target.h" diff --git a/bfd/elf32-ppc.h b/bfd/elf32-ppc.h index 9d1016c..0bf973c 100644 --- a/bfd/elf32-ppc.h +++ b/bfd/elf32-ppc.h @@ -26,26 +26,6 @@ enum ppc_elf_plt_type PLT_VXWORKS }; -/* Rename some of the generic section flags to better document how they - are used for ppc32. These macros should be private to elf32-ppc.c, - but opcodes/ppc-dis.c needs is_ppc_vle. The flags are only valid - for ppc32 elf objects. */ - -/* Nonzero if this section has TLS related relocations. */ -#define has_tls_reloc sec_flg0 - -/* Nonzero if this section has a call to __tls_get_addr. */ -#define has_tls_get_addr_call sec_flg1 - -/* Nonzero if this section has the VLE bit set. */ -#define has_vle_insns sec_flg2 - -#define is_ppc_vle(SEC) \ - ((SEC)->owner != NULL \ - && bfd_get_flavour ((SEC)->owner) == bfd_target_elf_flavour \ - && elf_object_id ((SEC)->owner) == PPC32_ELF_DATA \ - && (SEC)->has_vle_insns) - int ppc_elf_select_plt_layout (bfd *, struct bfd_link_info *, enum ppc_elf_plt_type, int); asection *ppc_elf_tls_setup (bfd *, struct bfd_link_info *, int); -- cgit v1.1