diff options
author | Miranda Cupertino <Cupertino.Miranda@synopsys.com> | 2016-01-19 15:25:58 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2016-01-19 15:25:58 +0000 |
commit | 34e967a5f3ac5fd0353731a259e358d462823290 (patch) | |
tree | 35296c70f96fcc39f3196a8d54a09a047ace5e27 /include/elf | |
parent | c2f4122d5cc2a21a441470336c8637b6a6965c6e (diff) | |
download | gdb-34e967a5f3ac5fd0353731a259e358d462823290.zip gdb-34e967a5f3ac5fd0353731a259e358d462823290.tar.gz gdb-34e967a5f3ac5fd0353731a259e358d462823290.tar.bz2 |
Add PIC and TLS support to the ARC target.
bfd/ChangeLog:
* arc-plt.def: New file.
* arc-plt.h: Likewise.
* elf32-arc.c (elf_arc_abs_plt0_entry, elf_arc_abs_pltn_entry,
elf_arcV2_abs_plt0_entry, elf_arcV2_abs_pltn_entry,
elf_arc_pic_plt0_entry, elf_arc_pic_pltn_entry,
elf_arcV2_pic_plt0_entry, elf_arcV2_pic_pltn_entry): Remove.
(name_for_global_symbol): Added.
(ADD_RELA): Helper to create dynamic relocs.
(new_got_entry_to_list): Create a new got entry in linked list.
(symbol_has_entry_of_type): Search for specific type of entry in
list.
(is_reloc_for_GOT): return FALSE for any TLS related relocs.
(is_reloc_for_TLS, arc_elf_set_private_flags)
(arc_elf_print_private_bfd_data, arc_elf_copy_private_bfd_data)
(arc_elf_merge_private_bfd_data): New functions.
(debug_arc_reloc): Cleaned debug info printing.
(PDATA reloc): Changed not to perform address alignment.
(reverse_me): Added. Fix for ARC_32 relocs.
(arc_do_relocation): Return bfd_reloc_of when no relocation should
occur.
(arc_get_local_got_ents): Renamed from arc_get_local_got_offsets.
Changed function to access an array of list of GOT entries instead
of just an array of offsets.
(elf_arc_relocate_section): Added support for PIC and TLS related relocations.
(elf_arc_check_relocs): Likewise.
(elf_arc_adjust_dynamic_symbol, elf_arc_finish_dynamic_symbol,
(elf_arc_finish_dynamic_sections): Likewise
(arc_create_dynamic_sections): Modified conditions to create
dynamic sections.
(ADD_SYMBOL_REF_SEC_AND_RELOC): New macro.
(plt_do_relocs_for_symbol, relocate_plt_for_symbol)
(relocate_plt_for_entry): Changed to support new way to define PLT
related code.
(add_symbol_to_plt): Likewise.
(arc_elf_link_hash_table_create): New function.
include/ChangeLog:
* elf/arc-reloc.def (ARC_32, ARC_GOTPC, ARC_TLS_GD_GOT)
(ARC_TLS_IE_GOT, ARC_TLS_DTPOFF, ARC_TLS_DTPOFF_S9, ARC_TLS_LE_S9)
(ARC_TLS_LE_32): Fixed formula.
(ARC_TLS_GD_LD): Use new special function.
* opcode/arc-func.h: Changed all the replacement
functions to clear the patching bits before doing an or it with the value
argument.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/arc-reloc.def | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/elf/arc-reloc.def b/include/elf/arc-reloc.def index 893291f..96123de 100644 --- a/include/elf/arc-reloc.def +++ b/include/elf/arc-reloc.def @@ -31,7 +31,7 @@ ARC_RELOC_HOWTO(ARC_32, 4, \ 32, \ replace_word32, \ bitfield, \ - ( S + A )) + (NON_ME ( S + A ) )) ARC_RELOC_HOWTO(ARC_N8, 8, \ 0, \ @@ -360,7 +360,7 @@ ARC_RELOC_HOWTO(ARC_GOTPC, 58, \ 32, \ replace_word32, \ signed, \ - ( ( GOT + A ) - P )) + ( GOT_BEGIN - P )) ARC_RELOC_HOWTO(ARC_S21W_PCREL_PLT, 60, \ 2, \ @@ -395,12 +395,12 @@ ARC_RELOC_HOWTO(ARC_TLS_GD_GOT, 69, \ 32, \ replace_word32, \ dont, \ - 0) + ( G + GOT - P)) ARC_RELOC_HOWTO(ARC_TLS_GD_LD, 70, \ 2, \ - 32, \ - replace_word32, \ + 0, \ + replace_none, \ dont, \ 0) @@ -416,35 +416,35 @@ ARC_RELOC_HOWTO(ARC_TLS_IE_GOT, 72, \ 32, \ replace_word32, \ dont, \ - 0) + ( G + GOT - P)) ARC_RELOC_HOWTO(ARC_TLS_DTPOFF, 67, \ 2, \ 32, \ replace_word32, \ dont, \ - 0) + ( S - TLS_REL )) ARC_RELOC_HOWTO(ARC_TLS_DTPOFF_S9, 73, \ 2, \ 32, \ replace_word32, \ dont, \ - 0) + ( S - TLS_REL )) ARC_RELOC_HOWTO(ARC_TLS_LE_S9, 74, \ 2, \ 32, \ replace_word32, \ dont, \ - 0) + ( ( S + TCB_SIZE ) - TLS_REL )) ARC_RELOC_HOWTO(ARC_TLS_LE_32, 75, \ 2, \ 32, \ replace_word32, \ dont, \ - 0) + ( ( S + A + TCB_SIZE ) - TLS_REL )) ARC_RELOC_HOWTO(ARC_S25W_PCREL_PLT, 76, \ 2, \ |