diff options
author | Alan Modra <amodra@gmail.com> | 2012-05-19 06:58:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-05-19 06:58:48 +0000 |
commit | 94caa966375d53b07f39beac80f1f9af4cac18da (patch) | |
tree | f76c215bcf08b7a259a206770a2889d61b3887e4 /bfd/elf32-ppc.h | |
parent | d791e1550cc8fbf4454437815e4193b6990d1014 (diff) | |
download | gdb-94caa966375d53b07f39beac80f1f9af4cac18da.zip gdb-94caa966375d53b07f39beac80f1f9af4cac18da.tar.gz gdb-94caa966375d53b07f39beac80f1f9af4cac18da.tar.bz2 |
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.
Diffstat (limited to 'bfd/elf32-ppc.h')
-rw-r--r-- | bfd/elf32-ppc.h | 20 |
1 files changed, 0 insertions, 20 deletions
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); |