2007-05-17 01:42:48 +08:00
|
|
|
// merge.h -- handle section merging for gold -*- C++ -*-
|
|
|
|
|
2007-09-23 05:02:10 +08:00
|
|
|
// Copyright 2006, 2007 Free Software Foundation, Inc.
|
|
|
|
// Written by Ian Lance Taylor <iant@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.
|
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
#ifndef GOLD_MERGE_H
|
|
|
|
#define GOLD_MERGE_H
|
|
|
|
|
|
|
|
#include <climits>
|
|
|
|
|
|
|
|
#include "stringpool.h"
|
|
|
|
#include "output.h"
|
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2007-11-09 15:00:15 +08:00
|
|
|
// This class manages mappings from input sections to offsets in an
|
2007-11-27 14:13:33 +08:00
|
|
|
// output section. This is used where input sections are merged. The
|
|
|
|
// actual data is stored in fields in Object.
|
2007-11-09 15:00:15 +08:00
|
|
|
|
|
|
|
class Merge_map
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Merge_map()
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// Add a mapping for the bytes from OFFSET to OFFSET + LENGTH in the
|
|
|
|
// input section SHNDX in object OBJECT to OUTPUT_OFFSET in the
|
|
|
|
// output section. An OUTPUT_OFFSET of -1 means that the bytes are
|
2007-12-21 00:27:34 +08:00
|
|
|
// discarded. OUTPUT_OFFSET is not the offset from the start of the
|
|
|
|
// output section, it is the offset from the start of the merged
|
|
|
|
// data within the output section.
|
2007-11-09 15:00:15 +08:00
|
|
|
void
|
2007-12-18 08:48:04 +08:00
|
|
|
add_mapping(Relobj* object, unsigned int shndx,
|
|
|
|
section_offset_type offset, section_size_type length,
|
|
|
|
section_offset_type output_offset);
|
2007-11-09 15:00:15 +08:00
|
|
|
|
|
|
|
// Return the output offset for an input address. The input address
|
|
|
|
// is at offset OFFSET in section SHNDX in OBJECT. This sets
|
|
|
|
// *OUTPUT_OFFSET to the offset in the output section; this will be
|
|
|
|
// -1 if the bytes are not being copied to the output. This returns
|
2007-12-21 00:27:34 +08:00
|
|
|
// true if the mapping is known, false otherwise. This returns the
|
|
|
|
// value stored by add_mapping, namely the offset from the start of
|
|
|
|
// the merged data within the output section.
|
2007-11-09 15:00:15 +08:00
|
|
|
bool
|
2007-12-18 08:48:04 +08:00
|
|
|
get_output_offset(const Relobj* object, unsigned int shndx,
|
|
|
|
section_offset_type offset,
|
|
|
|
section_offset_type *output_offset) const;
|
2007-11-09 15:00:15 +08:00
|
|
|
};
|
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
// A general class for SHF_MERGE data, to hold functions shared by
|
|
|
|
// fixed-size constant data and string data.
|
|
|
|
|
|
|
|
class Output_merge_base : public Output_section_data
|
|
|
|
{
|
|
|
|
public:
|
2007-10-19 01:46:23 +08:00
|
|
|
Output_merge_base(uint64_t entsize, uint64_t addralign)
|
|
|
|
: Output_section_data(addralign), merge_map_(), entsize_(entsize)
|
2007-05-17 01:42:48 +08:00
|
|
|
{ }
|
|
|
|
|
2007-11-09 15:00:15 +08:00
|
|
|
// Return the output offset for an input offset.
|
2007-05-17 01:42:48 +08:00
|
|
|
bool
|
2007-12-18 08:48:04 +08:00
|
|
|
do_output_offset(const Relobj* object, unsigned int shndx,
|
|
|
|
section_offset_type offset,
|
|
|
|
section_offset_type* poutput) const;
|
2007-05-17 01:42:48 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// Return the entry size.
|
|
|
|
uint64_t
|
|
|
|
entsize() const
|
|
|
|
{ return this->entsize_; }
|
|
|
|
|
|
|
|
// Add a mapping from an OFFSET in input section SHNDX in object
|
2007-12-21 00:27:34 +08:00
|
|
|
// OBJECT to an OUTPUT_OFFSET in the output section. OUTPUT_OFFSET
|
|
|
|
// is the offset from the start of the merged data in the output
|
|
|
|
// section.
|
2007-05-17 01:42:48 +08:00
|
|
|
void
|
2007-12-18 08:48:04 +08:00
|
|
|
add_mapping(Relobj* object, unsigned int shndx, section_offset_type offset,
|
|
|
|
section_size_type length, section_offset_type output_offset)
|
2007-05-17 01:42:48 +08:00
|
|
|
{
|
2007-11-09 15:00:15 +08:00
|
|
|
this->merge_map_.add_mapping(object, shndx, offset, length, output_offset);
|
|
|
|
}
|
2007-05-17 01:42:48 +08:00
|
|
|
|
2007-11-09 15:00:15 +08:00
|
|
|
private:
|
2007-05-17 01:42:48 +08:00
|
|
|
// A mapping from input object/section/offset to offset in output
|
|
|
|
// section.
|
|
|
|
Merge_map merge_map_;
|
|
|
|
// The entry size. For fixed-size constants, this is the size of
|
|
|
|
// the constants. For strings, this is the size of a character.
|
|
|
|
uint64_t entsize_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Handle SHF_MERGE sections with fixed-size constant data.
|
|
|
|
|
|
|
|
class Output_merge_data : public Output_merge_base
|
|
|
|
{
|
|
|
|
public:
|
2007-10-19 01:46:23 +08:00
|
|
|
Output_merge_data(uint64_t entsize, uint64_t addralign)
|
|
|
|
: Output_merge_base(entsize, addralign), p_(NULL), len_(0), alc_(0),
|
2007-12-19 05:24:10 +08:00
|
|
|
input_count_(0),
|
2007-05-17 01:42:48 +08:00
|
|
|
hashtable_(128, Merge_data_hash(this), Merge_data_eq(this))
|
|
|
|
{ }
|
|
|
|
|
2007-12-19 05:24:10 +08:00
|
|
|
protected:
|
2007-05-17 01:42:48 +08:00
|
|
|
// Add an input section.
|
|
|
|
bool
|
|
|
|
do_add_input_section(Relobj* object, unsigned int shndx);
|
|
|
|
|
|
|
|
// Set the final data size.
|
|
|
|
void
|
2007-11-30 04:10:17 +08:00
|
|
|
set_final_data_size();
|
2007-05-17 01:42:48 +08:00
|
|
|
|
|
|
|
// Write the data to the file.
|
|
|
|
void
|
|
|
|
do_write(Output_file*);
|
|
|
|
|
2007-12-01 14:34:12 +08:00
|
|
|
// Write the data to a buffer.
|
|
|
|
void
|
|
|
|
do_write_to_buffer(unsigned char*);
|
|
|
|
|
2007-12-19 05:24:10 +08:00
|
|
|
// Print merge stats to stderr.
|
|
|
|
void
|
|
|
|
do_print_merge_stats(const char* section_name);
|
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
private:
|
|
|
|
// We build a hash table of the fixed-size constants. Each constant
|
|
|
|
// is stored as a pointer into the section data we are accumulating.
|
|
|
|
|
|
|
|
// A key in the hash table. This is an offset in the section
|
|
|
|
// contents we are building.
|
2007-12-18 08:48:04 +08:00
|
|
|
typedef section_offset_type Merge_data_key;
|
2007-05-17 01:42:48 +08:00
|
|
|
|
|
|
|
// Compute the hash code. To do this we need a pointer back to the
|
|
|
|
// object holding the data.
|
|
|
|
class Merge_data_hash
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Merge_data_hash(const Output_merge_data* pomd)
|
|
|
|
: pomd_(pomd)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
size_t
|
|
|
|
operator()(Merge_data_key) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Output_merge_data* pomd_;
|
|
|
|
};
|
|
|
|
|
|
|
|
friend class Merge_data_hash;
|
|
|
|
|
|
|
|
// Compare two entries in the hash table for equality. To do this
|
|
|
|
// we need a pointer back to the object holding the data. Note that
|
|
|
|
// we now have a pointer to the object stored in two places in the
|
|
|
|
// hash table. Fixing this would require specializing the hash
|
|
|
|
// table, which would be hard to do portably.
|
|
|
|
class Merge_data_eq
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Merge_data_eq(const Output_merge_data* pomd)
|
|
|
|
: pomd_(pomd)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
bool
|
|
|
|
operator()(Merge_data_key k1, Merge_data_key k2) const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const Output_merge_data* pomd_;
|
|
|
|
};
|
|
|
|
|
|
|
|
friend class Merge_data_eq;
|
|
|
|
|
|
|
|
// The type of the hash table.
|
|
|
|
typedef Unordered_set<Merge_data_key, Merge_data_hash, Merge_data_eq>
|
|
|
|
Merge_data_hashtable;
|
|
|
|
|
|
|
|
// Given a hash table key, which is just an offset into the section
|
|
|
|
// data, return a pointer to the corresponding constant.
|
|
|
|
const unsigned char*
|
|
|
|
constant(Merge_data_key k) const
|
|
|
|
{
|
2007-12-18 08:48:04 +08:00
|
|
|
gold_assert(k >= 0 && k < static_cast<section_offset_type>(this->len_));
|
2007-05-17 01:42:48 +08:00
|
|
|
return this->p_ + k;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add a constant to the output.
|
|
|
|
void
|
|
|
|
add_constant(const unsigned char*);
|
|
|
|
|
|
|
|
// The accumulated data.
|
|
|
|
unsigned char* p_;
|
|
|
|
// The length of the accumulated data.
|
2007-12-18 08:48:04 +08:00
|
|
|
section_size_type len_;
|
2007-05-17 01:42:48 +08:00
|
|
|
// The size of the allocated buffer.
|
2007-12-18 08:48:04 +08:00
|
|
|
section_size_type alc_;
|
2007-12-19 05:24:10 +08:00
|
|
|
// The number of entries seen in input files.
|
|
|
|
size_t input_count_;
|
2007-05-17 01:42:48 +08:00
|
|
|
// The hash table.
|
|
|
|
Merge_data_hashtable hashtable_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Handle SHF_MERGE sections with string data. This is a template
|
|
|
|
// based on the type of the characters in the string.
|
|
|
|
|
|
|
|
template<typename Char_type>
|
|
|
|
class Output_merge_string : public Output_merge_base
|
|
|
|
{
|
|
|
|
public:
|
2007-10-19 01:46:23 +08:00
|
|
|
Output_merge_string(uint64_t addralign)
|
|
|
|
: Output_merge_base(sizeof(Char_type), addralign), stringpool_(),
|
2007-12-19 05:24:10 +08:00
|
|
|
merged_strings_(), input_count_(0)
|
2007-10-19 01:46:23 +08:00
|
|
|
{
|
|
|
|
gold_assert(addralign <= sizeof(Char_type));
|
|
|
|
this->stringpool_.set_no_zero_null();
|
|
|
|
}
|
2007-05-17 01:42:48 +08:00
|
|
|
|
2007-11-30 08:35:27 +08:00
|
|
|
protected:
|
2007-05-17 01:42:48 +08:00
|
|
|
// Add an input section.
|
|
|
|
bool
|
|
|
|
do_add_input_section(Relobj* object, unsigned int shndx);
|
|
|
|
|
2007-11-30 08:35:27 +08:00
|
|
|
// Do all the final processing after the input sections are read in.
|
|
|
|
// Returns the final data size.
|
2007-12-18 08:48:04 +08:00
|
|
|
section_size_type
|
2007-11-30 08:35:27 +08:00
|
|
|
finalize_merged_data();
|
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
// Set the final data size.
|
|
|
|
void
|
2007-11-30 04:10:17 +08:00
|
|
|
set_final_data_size();
|
2007-05-17 01:42:48 +08:00
|
|
|
|
|
|
|
// Write the data to the file.
|
|
|
|
void
|
|
|
|
do_write(Output_file*);
|
|
|
|
|
2007-12-01 14:34:12 +08:00
|
|
|
// Write the data to a buffer.
|
|
|
|
void
|
|
|
|
do_write_to_buffer(unsigned char*);
|
|
|
|
|
2007-12-19 05:24:10 +08:00
|
|
|
// Print merge stats to stderr.
|
|
|
|
void
|
|
|
|
do_print_merge_stats(const char* section_name);
|
|
|
|
|
2007-11-30 08:35:27 +08:00
|
|
|
// Writes the stringpool to a buffer.
|
|
|
|
void
|
2007-12-18 08:48:04 +08:00
|
|
|
stringpool_to_buffer(unsigned char* buffer, section_size_type buffer_size)
|
2007-11-30 08:35:27 +08:00
|
|
|
{ this->stringpool_.write_to_buffer(buffer, buffer_size); }
|
|
|
|
|
|
|
|
// Clears all the data in the stringpool, to save on memory.
|
|
|
|
void
|
|
|
|
clear_stringpool()
|
2007-12-08 11:05:27 +08:00
|
|
|
{ this->stringpool_.clear(); }
|
2007-11-30 08:35:27 +08:00
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
private:
|
2007-12-19 05:24:10 +08:00
|
|
|
// The name of the string type, for stats.
|
|
|
|
const char*
|
|
|
|
string_name();
|
|
|
|
|
2007-05-17 01:42:48 +08:00
|
|
|
// As we see input sections, we build a mapping from object, section
|
|
|
|
// index and offset to strings.
|
2007-09-22 13:38:12 +08:00
|
|
|
struct Merged_string
|
2007-05-17 01:42:48 +08:00
|
|
|
{
|
2007-09-22 13:38:12 +08:00
|
|
|
// The input object where the string was found.
|
2007-05-17 01:42:48 +08:00
|
|
|
Relobj* object;
|
2007-09-22 13:38:12 +08:00
|
|
|
// The input section in the input object.
|
2007-05-17 01:42:48 +08:00
|
|
|
unsigned int shndx;
|
2007-09-22 13:38:12 +08:00
|
|
|
// The offset in the input section.
|
2007-12-18 08:48:04 +08:00
|
|
|
section_offset_type offset;
|
2007-09-22 13:38:12 +08:00
|
|
|
// The string itself, a pointer into a Stringpool.
|
|
|
|
const Char_type* string;
|
2007-11-09 15:00:15 +08:00
|
|
|
// The length of the string in bytes, including the null terminator.
|
|
|
|
size_t length;
|
2007-12-19 09:23:46 +08:00
|
|
|
// The key in the Stringpool.
|
|
|
|
Stringpool::Key stringpool_key;
|
2007-05-17 01:42:48 +08:00
|
|
|
|
2007-12-18 08:48:04 +08:00
|
|
|
Merged_string(Relobj *objecta, unsigned int shndxa,
|
|
|
|
section_offset_type offseta, const Char_type* stringa,
|
2007-12-19 09:23:46 +08:00
|
|
|
size_t lengtha, Stringpool::Key stringpool_keya)
|
2007-11-09 15:00:15 +08:00
|
|
|
: object(objecta), shndx(shndxa), offset(offseta), string(stringa),
|
2007-12-19 09:23:46 +08:00
|
|
|
length(lengtha), stringpool_key(stringpool_keya)
|
2007-05-17 01:42:48 +08:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
|
2007-09-22 13:38:12 +08:00
|
|
|
typedef std::vector<Merged_string> Merged_strings;
|
2007-05-17 01:42:48 +08:00
|
|
|
|
|
|
|
// As we see the strings, we add them to a Stringpool.
|
|
|
|
Stringpool_template<Char_type> stringpool_;
|
|
|
|
// Map from a location in an input object to an entry in the
|
|
|
|
// Stringpool.
|
2007-09-22 13:38:12 +08:00
|
|
|
Merged_strings merged_strings_;
|
2007-12-19 05:24:10 +08:00
|
|
|
// The number of entries seen in input files.
|
|
|
|
size_t input_count_;
|
2007-05-17 01:42:48 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace gold.
|
|
|
|
|
|
|
|
#endif // !defined(GOLD_MERGE_H)
|