+2010-09-28 Sriraman Tallam <tmsriram@google.com>
+
+ * target.h (Target::can_icf_inline_merge_sections): New virtual
+ function.
+ * x86_64.cc (Target__x86_64::can_icf_inline_merge_sections): New
+ virtual function.
+ * i386.cc (Target_i386::can_icf_inline_merge_sections): New
+ virtual function.
+ * icf.cc (get_section_contents): Inline merge sections only when
+ target allows it.
+
2010-09-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* configure: Regenerate.
can_check_for_function_pointers() const
{ return true; }
+ virtual bool
+ can_icf_inline_merge_sections () const
+ { return true; }
+
// Process the relocations to determine unreferenced sections for
// garbage collection.
void
uint64_t secn_flags = (it_v->first)->section_flags(it_v->second);
// This reloc points to a merge section. Hash the
// contents of this section.
- if ((secn_flags & elfcpp::SHF_MERGE) != 0)
+ if ((secn_flags & elfcpp::SHF_MERGE) != 0
+ && parameters->target().can_icf_inline_merge_sections ())
{
uint64_t entsize =
(it_v->first)->section_entsize(it_v->second);
can_check_for_function_pointers() const
{ return false; }
+ // This function is used in ICF (icf.cc). This is set to true by
+ // the target if a relocation to a merged section can be processed
+ // to retrieve the contents of the merged section.
+ virtual bool
+ can_icf_inline_merge_sections () const
+ { return false; }
+
// Whether a section called SECTION_NAME may have function pointers to
// sections not eligible for safe ICF folding.
virtual bool
can_check_for_function_pointers() const
{ return !parameters->options().pie(); }
+ virtual bool
+ can_icf_inline_merge_sections () const
+ { return true; }
+
// Hook for a new output section.
void
do_new_output_section(Output_section*) const;