From b487ad64e5aa3da0c80b8648f7079b5415c45a3a Mon Sep 17 00:00:00 2001 From: Sriraman Tallam Date: Sun, 21 Feb 2010 00:57:59 +0000 Subject: 2010-02-20 Sriraman Tallam * gc.h (gc_process_relocs): Change vectors to point to the new list. Add reloc offset information. * icf.cc (get_section_contents): Change iterators to point to the new vectors. Add reloc offset information to the contents. * icf.h (Icf::Sections_reachable_info): New typedef. (Icf::Sections_reachable_list): New typedef. (Icf::Offset_info): New typedef. (Icf::Reloc_info): New struct typedef. (Icf::Reloc_info_list): New typedef. (Icf::symbol_reloc_list): Delete method. (Icf::addend_reloc_list): Delete method. (Icf::section_reloc_list): Delete method. (Icf::reloc_info_list): New method. (Icf::reloc_info_list_): New member. --- gold/icf.h | 53 +++++++++++++++++++++++------------------------------ 1 file changed, 23 insertions(+), 30 deletions(-) (limited to 'gold/icf.h') diff --git a/gold/icf.h b/gold/icf.h index 76e491c..c1db8e5 100644 --- a/gold/icf.h +++ b/gold/icf.h @@ -39,25 +39,34 @@ class Symbol_table; class Icf { public: - typedef std::vector Sections_reachable_list; + typedef std::vector Sections_reachable_info; typedef std::vector Symbol_info; typedef std::vector > Addend_info; - typedef Unordered_map Section_list; - typedef Unordered_map Symbol_list; - typedef Unordered_map Addend_list; + typedef std::vector Offset_info; typedef Unordered_map Uniq_secn_id_map; typedef Unordered_set Secn_fptr_taken_set; + typedef struct + { + // This stores the section corresponding to the reloc. + Sections_reachable_info section_info; + // This stores the symbol corresponding to the reloc. + Symbol_info symbol_info; + // This stores the symbol value and the addend for a reloc. + Addend_info addend_info; + Offset_info offset_info; + } Reloc_info; + + typedef Unordered_map Reloc_info_list; + Icf() : id_section_(), section_id_(), kept_section_id_(), fptr_section_id_(), num_tracked_relocs(NULL), icf_ready_(false), - section_reloc_list_(), symbol_reloc_list_(), - addend_reloc_list_() + reloc_info_list_() { } // Returns the kept folded identical section corresponding to @@ -121,23 +130,10 @@ class Icf && !is_prefix_of(".eh_frame", section_name.c_str())); } - // Returns a map of a section to a list of all sections referenced - // by its relocations. - Section_list& - section_reloc_list() - { return this->section_reloc_list_; } - - // Returns a map of a section to a list of all symbols referenced - // by its relocations. - Symbol_list& - symbol_reloc_list() - { return this->symbol_reloc_list_; } - - // Returns a maps of a section to a list of symbol values and addends - // of its relocations. - Addend_list& - addend_reloc_list() - { return this->addend_reloc_list_; } + // Returns a map of a section to info (Reloc_info) about its relocations. + Reloc_info_list& + reloc_info_list() + { return this->reloc_info_list_; } // Returns a mapping of each section to a unique integer. Uniq_secn_id_map& @@ -161,11 +157,8 @@ class Icf unsigned int* num_tracked_relocs; // Flag to indicate if ICF has been run. bool icf_ready_; - - // These lists are populated by gc_process_relocs in gc.h. - Section_list section_reloc_list_; - Symbol_list symbol_reloc_list_; - Addend_list addend_reloc_list_; + // This list is populated by gc_process_relocs in gc.h. + Reloc_info_list reloc_info_list_; }; // This function returns true if this section corresponds to a function that -- cgit v1.1