2009-01-28 03:25:33 +01:00
|
|
|
// gc.h -- garbage collection of unused sections
|
|
|
|
|
2010-01-04 20:08:39 +01:00
|
|
|
// Copyright 2009, 2010 Free Software Foundation, Inc.
|
2009-01-28 03:25:33 +01:00
|
|
|
// Written by Sriraman Tallam <tmsriram@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
|
|
|
#ifndef GOLD_GC_H
|
|
|
|
#define GOLD_GC_H
|
|
|
|
|
|
|
|
#include <queue>
|
2009-08-05 22:51:56 +02:00
|
|
|
#include <vector>
|
2009-01-28 03:25:33 +01:00
|
|
|
|
|
|
|
#include "elfcpp.h"
|
|
|
|
#include "symtab.h"
|
2010-01-20 18:29:52 +01:00
|
|
|
#include "object.h"
|
2009-10-13 02:39:31 +02:00
|
|
|
#include "icf.h"
|
2009-01-28 03:25:33 +01:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
|
|
|
class Object;
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
class Sized_relobj;
|
|
|
|
|
|
|
|
template<int sh_type, int size, bool big_endian>
|
|
|
|
class Reloc_types;
|
|
|
|
|
|
|
|
class Output_section;
|
|
|
|
class General_options;
|
|
|
|
class Layout;
|
|
|
|
|
|
|
|
class Garbage_collection
|
|
|
|
{
|
2009-08-05 22:51:56 +02:00
|
|
|
public:
|
|
|
|
|
2009-01-28 03:25:33 +01:00
|
|
|
typedef Unordered_set<Section_id, Section_id_hash> Sections_reachable;
|
|
|
|
typedef std::map<Section_id, Sections_reachable> Section_ref;
|
|
|
|
typedef std::queue<Section_id> Worklist_type;
|
2010-01-07 08:14:30 +01:00
|
|
|
// This maps the name of the section which can be represented as a C
|
|
|
|
// identifier (cident) to the list of sections that have that name.
|
|
|
|
// Different object files can have cident sections with the same name.
|
|
|
|
typedef std::map<std::string, Sections_reachable> Cident_section_map;
|
2009-01-28 03:25:33 +01:00
|
|
|
|
2009-08-05 22:51:56 +02:00
|
|
|
Garbage_collection()
|
|
|
|
: is_worklist_ready_(false)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// Accessor methods for the private members.
|
|
|
|
|
|
|
|
Sections_reachable&
|
|
|
|
referenced_list()
|
|
|
|
{ return referenced_list_; }
|
|
|
|
|
|
|
|
Section_ref&
|
|
|
|
section_reloc_map()
|
|
|
|
{ return this->section_reloc_map_; }
|
|
|
|
|
|
|
|
Worklist_type&
|
|
|
|
worklist()
|
|
|
|
{ return this->work_list_; }
|
|
|
|
|
|
|
|
bool
|
|
|
|
is_worklist_ready()
|
|
|
|
{ return this->is_worklist_ready_; }
|
|
|
|
|
|
|
|
void
|
|
|
|
worklist_ready()
|
|
|
|
{ this->is_worklist_ready_ = true; }
|
|
|
|
|
|
|
|
void
|
|
|
|
do_transitive_closure();
|
|
|
|
|
|
|
|
bool
|
|
|
|
is_section_garbage(Object* obj, unsigned int shndx)
|
|
|
|
{ return (this->referenced_list().find(Section_id(obj, shndx))
|
|
|
|
== this->referenced_list().end()); }
|
2010-01-07 08:14:30 +01:00
|
|
|
|
|
|
|
Cident_section_map*
|
|
|
|
cident_sections()
|
|
|
|
{ return &cident_sections_; }
|
|
|
|
|
|
|
|
void
|
|
|
|
add_cident_section(std::string section_name,
|
|
|
|
Section_id secn)
|
|
|
|
{ this->cident_sections_[section_name].insert(secn); }
|
|
|
|
|
2010-01-12 08:22:56 +01:00
|
|
|
// Add a reference from the SRC_SHNDX-th section of SRC_OBJECT to
|
|
|
|
// DST_SHNDX-th section of DST_OBJECT.
|
|
|
|
void
|
|
|
|
add_reference(Object* src_object, unsigned int src_shndx,
|
|
|
|
Object* dst_object, unsigned int dst_shndx)
|
|
|
|
{
|
|
|
|
Section_id src_id(src_object, src_shndx);
|
|
|
|
Section_id dst_id(dst_object, dst_shndx);
|
|
|
|
Section_ref::iterator p = this->section_reloc_map_.find(src_id);
|
|
|
|
if (p == this->section_reloc_map_.end())
|
|
|
|
this->section_reloc_map_[src_id].insert(dst_id);
|
|
|
|
else
|
|
|
|
p->second.insert(dst_id);
|
|
|
|
}
|
|
|
|
|
2009-08-05 22:51:56 +02:00
|
|
|
private:
|
|
|
|
|
|
|
|
Worklist_type work_list_;
|
|
|
|
bool is_worklist_ready_;
|
|
|
|
Section_ref section_reloc_map_;
|
|
|
|
Sections_reachable referenced_list_;
|
2010-01-07 08:14:30 +01:00
|
|
|
Cident_section_map cident_sections_;
|
2009-01-28 03:25:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Data to pass between successive invocations of do_layout
|
|
|
|
// in object.cc while garbage collecting. This data structure
|
|
|
|
// is filled by using the data from Read_symbols_data.
|
|
|
|
|
|
|
|
struct Symbols_data
|
|
|
|
{
|
|
|
|
// Section headers.
|
|
|
|
unsigned char* section_headers_data;
|
|
|
|
// Section names.
|
|
|
|
unsigned char* section_names_data;
|
|
|
|
// Size of section name data in bytes.
|
|
|
|
section_size_type section_names_size;
|
|
|
|
// Symbol data.
|
|
|
|
unsigned char* symbols_data;
|
|
|
|
// Size of symbol data in bytes.
|
|
|
|
section_size_type symbols_size;
|
|
|
|
// Offset of external symbols within symbol data. This structure
|
|
|
|
// sometimes contains only external symbols, in which case this will
|
|
|
|
// be zero. Sometimes it contains all symbols.
|
|
|
|
section_offset_type external_symbols_offset;
|
|
|
|
// Symbol names.
|
|
|
|
unsigned char* symbol_names_data;
|
|
|
|
// Size of symbol name data in bytes.
|
|
|
|
section_size_type symbol_names_size;
|
|
|
|
};
|
|
|
|
|
2009-08-05 22:51:56 +02:00
|
|
|
// This function implements the generic part of reloc
|
|
|
|
// processing to map a section to all the sections it
|
|
|
|
// references through relocs. It is called only during
|
|
|
|
// garbage collection (--gc-sections) and identical code
|
|
|
|
// folding (--icf).
|
2009-01-28 03:25:33 +01:00
|
|
|
|
|
|
|
template<int size, bool big_endian, typename Target_type, int sh_type,
|
|
|
|
typename Scan>
|
|
|
|
inline void
|
|
|
|
gc_process_relocs(
|
|
|
|
Symbol_table* symtab,
|
|
|
|
Layout*,
|
2010-02-13 03:04:21 +01:00
|
|
|
Target_type* target,
|
2009-08-05 22:51:56 +02:00
|
|
|
Sized_relobj<size, big_endian>* src_obj,
|
|
|
|
unsigned int src_indx,
|
2009-01-28 03:25:33 +01:00
|
|
|
const unsigned char* prelocs,
|
|
|
|
size_t reloc_count,
|
|
|
|
Output_section*,
|
2010-02-13 03:04:21 +01:00
|
|
|
bool,
|
2009-01-28 03:25:33 +01:00
|
|
|
size_t local_count,
|
|
|
|
const unsigned char* plocal_syms)
|
|
|
|
{
|
2009-08-05 22:51:56 +02:00
|
|
|
Object *dst_obj;
|
|
|
|
unsigned int dst_indx;
|
2010-02-13 03:04:21 +01:00
|
|
|
Scan scan;
|
2009-01-28 03:25:33 +01:00
|
|
|
|
|
|
|
typedef typename Reloc_types<sh_type, size, big_endian>::Reloc Reltype;
|
|
|
|
const int reloc_size = Reloc_types<sh_type, size, big_endian>::reloc_size;
|
|
|
|
const int sym_size = elfcpp::Elf_sizes<size>::sym_size;
|
|
|
|
|
2010-02-21 01:57:59 +01:00
|
|
|
Icf::Sections_reachable_info* secvec = NULL;
|
|
|
|
Icf::Symbol_info* symvec = NULL;
|
|
|
|
Icf::Addend_info* addendvec = NULL;
|
|
|
|
Icf::Offset_info* offsetvec = NULL;
|
2009-08-05 22:51:56 +02:00
|
|
|
bool is_icf_tracked = false;
|
2010-01-07 08:14:30 +01:00
|
|
|
const char* cident_section_name = NULL;
|
2009-08-05 22:51:56 +02:00
|
|
|
|
2010-02-13 03:04:21 +01:00
|
|
|
std::string src_section_name = (parameters->options().icf_enabled()
|
|
|
|
? src_obj->section_name(src_indx)
|
|
|
|
: "");
|
|
|
|
|
|
|
|
bool check_section_for_function_pointers = false;
|
|
|
|
|
2009-10-13 23:17:43 +02:00
|
|
|
if (parameters->options().icf_enabled()
|
2010-02-13 03:04:21 +01:00
|
|
|
&& is_section_foldable_candidate(src_section_name.c_str()))
|
2009-08-05 22:51:56 +02:00
|
|
|
{
|
|
|
|
is_icf_tracked = true;
|
|
|
|
Section_id src_id(src_obj, src_indx);
|
2010-02-21 01:57:59 +01:00
|
|
|
Icf::Reloc_info* reloc_info =
|
|
|
|
&symtab->icf()->reloc_info_list()[src_id];
|
|
|
|
secvec = &reloc_info->section_info;
|
|
|
|
symvec = &reloc_info->symbol_info;
|
|
|
|
addendvec = &reloc_info->addend_info;
|
|
|
|
offsetvec = &reloc_info->offset_info;
|
2009-08-05 22:51:56 +02:00
|
|
|
}
|
|
|
|
|
2010-02-13 03:04:21 +01:00
|
|
|
check_section_for_function_pointers =
|
|
|
|
symtab->icf()->check_section_for_function_pointers(src_section_name,
|
|
|
|
target);
|
|
|
|
|
2009-01-28 03:25:33 +01:00
|
|
|
for (size_t i = 0; i < reloc_count; ++i, prelocs += reloc_size)
|
|
|
|
{
|
|
|
|
Reltype reloc(prelocs);
|
|
|
|
typename elfcpp::Elf_types<size>::Elf_WXword r_info = reloc.get_r_info();
|
|
|
|
unsigned int r_sym = elfcpp::elf_r_sym<size>(r_info);
|
2010-02-13 03:04:21 +01:00
|
|
|
unsigned int r_type = elfcpp::elf_r_type<size>(r_info);
|
2009-08-05 22:51:56 +02:00
|
|
|
typename elfcpp::Elf_types<size>::Elf_Swxword addend =
|
|
|
|
Reloc_types<sh_type, size, big_endian>::get_reloc_addend_noerror(&reloc);
|
|
|
|
|
2009-01-28 03:25:33 +01:00
|
|
|
if (r_sym < local_count)
|
|
|
|
{
|
|
|
|
gold_assert(plocal_syms != NULL);
|
|
|
|
typename elfcpp::Sym<size, big_endian> lsym(plocal_syms
|
|
|
|
+ r_sym * sym_size);
|
|
|
|
unsigned int shndx = lsym.get_st_shndx();
|
|
|
|
bool is_ordinary;
|
2009-08-05 22:51:56 +02:00
|
|
|
shndx = src_obj->adjust_sym_shndx(r_sym, shndx, &is_ordinary);
|
2009-01-28 03:25:33 +01:00
|
|
|
dst_obj = src_obj;
|
|
|
|
dst_indx = shndx;
|
2009-08-05 22:51:56 +02:00
|
|
|
if (is_icf_tracked)
|
|
|
|
{
|
2010-04-23 20:49:23 +02:00
|
|
|
if (is_ordinary)
|
|
|
|
(*secvec).push_back(Section_id(dst_obj, dst_indx));
|
|
|
|
else
|
|
|
|
(*secvec).push_back(Section_id(NULL, 0));
|
2009-08-05 22:51:56 +02:00
|
|
|
(*symvec).push_back(NULL);
|
|
|
|
long long symvalue = static_cast<long long>(lsym.get_st_value());
|
|
|
|
(*addendvec).push_back(std::make_pair(symvalue,
|
|
|
|
static_cast<long long>(addend)));
|
2010-02-21 01:57:59 +01:00
|
|
|
uint64_t reloc_offset =
|
|
|
|
convert_to_section_size_type(reloc.get_r_offset());
|
|
|
|
(*offsetvec).push_back(reloc_offset);
|
2009-08-05 22:51:56 +02:00
|
|
|
}
|
2010-02-13 03:04:21 +01:00
|
|
|
|
|
|
|
// When doing safe folding, check to see if this relocation is that
|
|
|
|
// of a function pointer being taken.
|
2010-04-23 20:49:23 +02:00
|
|
|
if (is_ordinary
|
|
|
|
&& check_section_for_function_pointers
|
2010-02-13 03:04:21 +01:00
|
|
|
&& lsym.get_st_type() != elfcpp::STT_OBJECT
|
|
|
|
&& scan.local_reloc_may_be_function_pointer(symtab, NULL, NULL,
|
|
|
|
src_obj, src_indx,
|
|
|
|
NULL, reloc, r_type,
|
|
|
|
lsym))
|
|
|
|
symtab->icf()->set_section_has_function_pointers(
|
|
|
|
src_obj, lsym.get_st_shndx());
|
|
|
|
|
2010-04-23 20:49:23 +02:00
|
|
|
if (!is_ordinary || shndx == src_indx)
|
2009-08-05 22:51:56 +02:00
|
|
|
continue;
|
2009-01-28 03:25:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-08-05 22:51:56 +02:00
|
|
|
Symbol* gsym = src_obj->global_symbol(r_sym);
|
2009-01-28 03:25:33 +01:00
|
|
|
gold_assert(gsym != NULL);
|
|
|
|
if (gsym->is_forwarder())
|
|
|
|
gsym = symtab->resolve_forwards(gsym);
|
2010-04-23 20:49:23 +02:00
|
|
|
|
|
|
|
dst_obj = NULL;
|
|
|
|
dst_indx = 0;
|
|
|
|
bool is_ordinary = false;
|
|
|
|
if (gsym->source() == Symbol::FROM_OBJECT)
|
|
|
|
{
|
|
|
|
dst_obj = gsym->object();
|
|
|
|
dst_indx = gsym->shndx(&is_ordinary);
|
|
|
|
}
|
2010-02-13 03:04:21 +01:00
|
|
|
|
|
|
|
// When doing safe folding, check to see if this relocation is that
|
|
|
|
// of a function pointer being taken.
|
2010-04-23 20:49:23 +02:00
|
|
|
if (gsym->source() == Symbol::FROM_OBJECT
|
|
|
|
&& check_section_for_function_pointers
|
2010-02-13 03:04:21 +01:00
|
|
|
&& gsym->type() != elfcpp::STT_OBJECT
|
|
|
|
&& (!is_ordinary
|
|
|
|
|| scan.global_reloc_may_be_function_pointer(
|
|
|
|
symtab, NULL, NULL, src_obj, src_indx, NULL, reloc,
|
|
|
|
r_type, gsym)))
|
|
|
|
symtab->icf()->set_section_has_function_pointers(dst_obj, dst_indx);
|
|
|
|
|
2010-01-07 08:14:30 +01:00
|
|
|
// If the symbol name matches '__start_XXX' then the section with
|
|
|
|
// the C identifier like name 'XXX' should not be garbage collected.
|
|
|
|
// A similar treatment to symbols with the name '__stop_XXX'.
|
|
|
|
if (is_prefix_of(cident_section_start_prefix, gsym->name()))
|
|
|
|
{
|
|
|
|
cident_section_name = (gsym->name()
|
|
|
|
+ strlen(cident_section_start_prefix));
|
|
|
|
}
|
|
|
|
else if (is_prefix_of(cident_section_stop_prefix, gsym->name()))
|
|
|
|
{
|
|
|
|
cident_section_name = (gsym->name()
|
|
|
|
+ strlen(cident_section_stop_prefix));
|
|
|
|
}
|
2009-08-05 22:51:56 +02:00
|
|
|
if (is_icf_tracked)
|
|
|
|
{
|
2010-04-23 20:49:23 +02:00
|
|
|
if (is_ordinary && gsym->source() == Symbol::FROM_OBJECT)
|
|
|
|
(*secvec).push_back(Section_id(dst_obj, dst_indx));
|
|
|
|
else
|
|
|
|
(*secvec).push_back(Section_id(NULL, 0));
|
2009-08-05 22:51:56 +02:00
|
|
|
(*symvec).push_back(gsym);
|
|
|
|
Sized_symbol<size>* sized_gsym =
|
|
|
|
static_cast<Sized_symbol<size>* >(gsym);
|
|
|
|
long long symvalue =
|
|
|
|
static_cast<long long>(sized_gsym->value());
|
|
|
|
(*addendvec).push_back(std::make_pair(symvalue,
|
|
|
|
static_cast<long long>(addend)));
|
2010-02-21 01:57:59 +01:00
|
|
|
uint64_t reloc_offset =
|
|
|
|
convert_to_section_size_type(reloc.get_r_offset());
|
|
|
|
(*offsetvec).push_back(reloc_offset);
|
2010-02-13 03:04:21 +01:00
|
|
|
}
|
2010-04-23 20:49:23 +02:00
|
|
|
|
|
|
|
if (gsym->source() != Symbol::FROM_OBJECT)
|
|
|
|
continue;
|
|
|
|
if (!is_ordinary)
|
|
|
|
continue;
|
2009-01-28 03:25:33 +01:00
|
|
|
}
|
2009-08-05 22:51:56 +02:00
|
|
|
if (parameters->options().gc_sections())
|
2009-01-28 03:25:33 +01:00
|
|
|
{
|
2010-01-12 08:22:56 +01:00
|
|
|
symtab->gc()->add_reference(src_obj, src_indx, dst_obj, dst_indx);
|
2010-01-07 08:14:30 +01:00
|
|
|
if (cident_section_name != NULL)
|
|
|
|
{
|
|
|
|
Garbage_collection::Cident_section_map::iterator ele =
|
|
|
|
symtab->gc()->cident_sections()->find(std::string(cident_section_name));
|
|
|
|
if (ele == symtab->gc()->cident_sections()->end())
|
|
|
|
continue;
|
2010-01-12 08:22:56 +01:00
|
|
|
Section_id src_id(src_obj, src_indx);
|
2010-01-07 08:14:30 +01:00
|
|
|
Garbage_collection::Sections_reachable&
|
|
|
|
v(symtab->gc()->section_reloc_map()[src_id]);
|
|
|
|
Garbage_collection::Sections_reachable& cident_secn(ele->second);
|
|
|
|
for (Garbage_collection::Sections_reachable::iterator it_v
|
|
|
|
= cident_secn.begin();
|
|
|
|
it_v != cident_secn.end();
|
|
|
|
++it_v)
|
|
|
|
{
|
|
|
|
v.insert(*it_v);
|
|
|
|
}
|
|
|
|
}
|
2009-01-28 03:25:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // End of namespace gold.
|
|
|
|
|
|
|
|
#endif
|