diff options
author | David S. Miller <davem@redhat.com> | 2012-04-17 01:57:23 +0000 |
---|---|---|
committer | David S. Miller <davem@redhat.com> | 2012-04-17 01:57:23 +0000 |
commit | 8c2bf391c45bdef4221494db53295b88da0bc813 (patch) | |
tree | b1cd839dba96cdf9f91bba363548dccc0e88871c /elfcpp | |
parent | 13cf9988bc2852ba66d6096578a518c94bfccdcd (diff) | |
download | gdb-8c2bf391c45bdef4221494db53295b88da0bc813.zip gdb-8c2bf391c45bdef4221494db53295b88da0bc813.tar.gz gdb-8c2bf391c45bdef4221494db53295b88da0bc813.tar.bz2 |
gold: Add sparc IFUNC support to Gold.
elfcpp/
* sparc.h (R_SPARC_JMP_IREL): New relocation.
gold/
* sparc.cc (class Target_sparc): Add rela_ifunc_.
(Target_sparc::Target_sparc): Initialize new field.
(Target_sparc::do_plt_section_for_global): New function.
(Target_sparc::do_plt_section_for_local): New function.
(Target_sparc::reloc_needs_plt_for_ifunc): New function.
(Target_sparc::make_plt_section): New function, broken out of
make_plt_entry. Use ORDER_NON_RELRO_FIRST for ".plt".
(Target_sparc::make_plt_entry): Call make_plt_section.
(Target_sparc::make_local_ifunc_plt_entry): New function.
(Target_sparc::rela_ifunc_section): New function.
(Target_sparc::plt_section): Remove const.
(Output_data_plt_sparc): Update declarations. Define Global_ifunc
and Local_ifunc types. Add global_ifuncs_, local_ifuncs_, ifunc_rel_,
and ifunc_count_ fields.
(Output_data_plt_sparc::Output_data_plt_sparc): Initialize new fields.
(Output_data_plt_sparc::add_entry): Handle IFUNC symbols.
(Output_data_plt_sparc::add_local_ifunc_entry): New function.
(Output_data_plt_sparc::rela_ifunc): New function.
(Output_data_plt_sparc::emit_pending_ifunc_relocs): New function.
(Output_data_plt_sparc::has_ifunc_section): New function.
(Output_data_plt_sparc::entry_count): Include ifunc_count_.
(Output_data_plt_sparc::address_for_global): New function.
(Output_data_plt_sparc::address_for_local): New function.
(Output_data_plt_sparc::plt_index_to_offset): New function.
(Output_data_plt_sparc::set_final_data_size): Use plt_index_to_offset
and entry_count.
(Output_data_plt_sparc::do_write): Use first_plt_entry_offset and
entry_count.
(Target_sparc::Scan::get_reference_flags): Add R_SPARC_IRELATIVE and
R_SPARC_JMP_IREL to switch.
(Target_sparc::Scan::check_non_pic): Likewise.
(Target_sparc::Scan::local): Handle IFUNC symbols.
(Target_sparc::Scan::local): Likewise.
(Target_sparc::Relocate::relocate): Likewise, use plt_address_for_global
and plt_address_for_local.
(Target_sparc::do_finalize_sections): Call emit_pending_ifunc_relocs.
Define __rel_iplt_start and __rel_iplt_end if doing a static link.
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 4 | ||||
-rw-r--r-- | elfcpp/sparc.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index 3a76401..25502df 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,7 @@ +2012-04-16 David S. Miller <davem@davemloft.net> + + * sparc.h (R_SPARC_JMP_IREL): New relocation. + 2012-04-12 David S. Miller <davem@davemloft.net> * sparc.h (R_SPARC_WDISP10): New relocation. diff --git a/elfcpp/sparc.h b/elfcpp/sparc.h index 77c4668..6b561be 100644 --- a/elfcpp/sparc.h +++ b/elfcpp/sparc.h @@ -142,6 +142,7 @@ enum R_SPARC_SIZE64 = 87, // size of symbol, 64-bit R_SPARC_WDISP10 = 88, // PC relative 10 bit shifted + R_SPARC_JMP_IREL = 248, // Create PLT slot to IFUNC function R_SPARC_IRELATIVE = 249, // Adjust indirectly by program base // GNU vtable garbage collection extensions. |