2006-09-22 06:13:18 +08:00
|
|
|
// output.h -- manage the output file for gold -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef GOLD_OUTPUT_H
|
|
|
|
#define GOLD_OUTPUT_H
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
#include <cassert>
|
2006-09-22 06:13:18 +08:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include "elfcpp.h"
|
2006-09-27 05:00:34 +08:00
|
|
|
#include "layout.h"
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
|
|
|
class Object;
|
|
|
|
class Output_file;
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
template<int size, bool big_endian>
|
|
|
|
class Sized_target;
|
|
|
|
|
|
|
|
// An abtract class for data which has to go into the output file.
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
class Output_data
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
explicit Output_data(off_t data_size = 0)
|
|
|
|
: address_(0), data_size_(data_size), offset_(0)
|
2006-09-22 06:13:18 +08:00
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual
|
|
|
|
~Output_data();
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Return the address.
|
|
|
|
uint64_t
|
|
|
|
address() const
|
|
|
|
{ return this->address_; }
|
|
|
|
|
|
|
|
// Return the size of the data.
|
2006-09-22 06:13:18 +08:00
|
|
|
off_t
|
2006-09-28 06:53:42 +08:00
|
|
|
data_size() const
|
|
|
|
{ return this->data_size_; }
|
|
|
|
|
|
|
|
// Return the file offset.
|
|
|
|
off_t
|
|
|
|
offset() const
|
|
|
|
{ return this->offset_; }
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
uint64_t
|
|
|
|
addralign() const
|
|
|
|
{ return this->do_addralign(); }
|
|
|
|
|
|
|
|
// Return whether this is an Output_section.
|
|
|
|
bool
|
|
|
|
is_section() const
|
|
|
|
{ return this->do_is_section(); }
|
|
|
|
|
|
|
|
// Return whether this is an Output_section of the specified type.
|
|
|
|
bool
|
|
|
|
is_section_type(elfcpp::Elf_Word stt) const
|
|
|
|
{ return this->do_is_section_type(stt); }
|
|
|
|
|
|
|
|
// Return whether this is an Output_section with the specified flag
|
|
|
|
// set.
|
|
|
|
bool
|
|
|
|
is_section_flag_set(elfcpp::Elf_Xword shf) const
|
|
|
|
{ return this->do_is_section_flag_set(shf); }
|
|
|
|
|
|
|
|
// Set the address and file offset of this data.
|
|
|
|
void
|
|
|
|
set_address(uint64_t addr, off_t off);
|
|
|
|
|
|
|
|
// Write the data to the output file.
|
|
|
|
void
|
|
|
|
write(Output_file* file)
|
|
|
|
{ this->do_write(file); }
|
2006-09-22 06:13:18 +08:00
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
protected:
|
|
|
|
// Functions that child classes may or in some cases must implement.
|
|
|
|
|
|
|
|
// Write the data to the output file.
|
2006-09-22 06:13:18 +08:00
|
|
|
virtual void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file*) = 0;
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
virtual uint64_t
|
|
|
|
do_addralign() const = 0;
|
|
|
|
|
|
|
|
// Return whether this is an Output_section.
|
|
|
|
virtual bool
|
|
|
|
do_is_section() const
|
|
|
|
{ return false; }
|
2006-09-22 06:13:18 +08:00
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// Return whether this is an Output_section of the specified type.
|
2006-09-28 06:53:42 +08:00
|
|
|
// This only needs to be implement by Output_section.
|
2006-09-27 05:00:34 +08:00
|
|
|
virtual bool
|
2006-09-28 06:53:42 +08:00
|
|
|
do_is_section_type(elfcpp::Elf_Word) const
|
2006-09-27 05:00:34 +08:00
|
|
|
{ return false; }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Return whether this is an Output_section with the specific flag
|
|
|
|
// set. This only needs to be implemented by Output_section.
|
2006-09-27 05:00:34 +08:00
|
|
|
virtual bool
|
2006-09-28 06:53:42 +08:00
|
|
|
do_is_section_flag_set(elfcpp::Elf_Xword) const
|
2006-09-27 05:00:34 +08:00
|
|
|
{ return false; }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Set the address and file offset of the data. This only needs to
|
|
|
|
// be implemented if the child needs to know.
|
|
|
|
virtual void
|
|
|
|
do_set_address(uint64_t, off_t)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
// Functions that child classes may call.
|
|
|
|
|
2006-09-22 06:13:18 +08:00
|
|
|
// Set the size of the data.
|
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
set_data_size(off_t data_size)
|
|
|
|
{ this->data_size_ = data_size; }
|
|
|
|
|
|
|
|
// Return default alignment for a size--32 or 64.
|
|
|
|
static uint64_t
|
|
|
|
default_alignment(int size);
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
Output_data(const Output_data&);
|
|
|
|
Output_data& operator=(const Output_data&);
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Memory address in file (not always meaningful).
|
|
|
|
uint64_t address_;
|
2006-09-22 06:13:18 +08:00
|
|
|
// Size of data in file.
|
2006-09-28 06:53:42 +08:00
|
|
|
off_t data_size_;
|
|
|
|
// Offset within file.
|
|
|
|
off_t offset_;
|
2006-09-22 06:13:18 +08:00
|
|
|
};
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// A simple case of Output_data in which we have constant data to
|
2006-09-22 06:13:18 +08:00
|
|
|
// output.
|
|
|
|
|
|
|
|
class Output_data_const : public Output_data
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_data_const(const std::string& data, uint64_t addralign)
|
|
|
|
: Output_data(data.size()), data_(data), addralign_(addralign)
|
2006-09-22 06:13:18 +08:00
|
|
|
{ }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_data_const(const char* p, off_t len, uint64_t addralign)
|
|
|
|
: Output_data(len), data_(p, len), addralign_(addralign)
|
2006-09-22 06:13:18 +08:00
|
|
|
{ }
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// Write the data to the file.
|
2006-09-22 06:13:18 +08:00
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file* output);
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
uint64_t
|
|
|
|
do_addralign() const
|
|
|
|
{ return this->addralign_; }
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string data_;
|
2006-09-28 06:53:42 +08:00
|
|
|
uint64_t addralign_;
|
2006-09-22 06:13:18 +08:00
|
|
|
};
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// Output the section headers.
|
|
|
|
|
|
|
|
class Output_section_headers : public Output_data
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_section_headers(int size,
|
|
|
|
const Layout::Segment_list&,
|
2006-09-27 05:00:34 +08:00
|
|
|
const Layout::Section_list&);
|
|
|
|
|
|
|
|
// Write the data to the file.
|
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file*);
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
uint64_t
|
|
|
|
do_addralign() const
|
|
|
|
{ return Output_data::default_alignment(this->size_); }
|
2006-09-27 05:00:34 +08:00
|
|
|
|
|
|
|
private:
|
2006-09-28 06:53:42 +08:00
|
|
|
int size_;
|
2006-09-27 05:00:34 +08:00
|
|
|
const Layout::Segment_list& segment_list_;
|
|
|
|
const Layout::Section_list& section_list_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Output the segment headers.
|
|
|
|
|
|
|
|
class Output_segment_headers : public Output_data
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_segment_headers(int size, const Layout::Segment_list& segment_list)
|
|
|
|
: size_(size), segment_list_(segment_list)
|
2006-09-27 05:00:34 +08:00
|
|
|
{ }
|
|
|
|
|
|
|
|
// Write the data to the file.
|
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file*);
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
uint64_t
|
|
|
|
do_addralign() const
|
|
|
|
{ return Output_data::default_alignment(this->size_); }
|
2006-09-27 05:00:34 +08:00
|
|
|
|
|
|
|
private:
|
2006-09-28 06:53:42 +08:00
|
|
|
int size_;
|
2006-09-27 05:00:34 +08:00
|
|
|
const Layout::Segment_list& segment_list_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Output the ELF file header.
|
|
|
|
|
|
|
|
class Output_file_header : public Output_data
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_file_header(int size,
|
|
|
|
const General_options&,
|
2006-09-27 05:00:34 +08:00
|
|
|
const Target*,
|
|
|
|
const Symbol_table*,
|
2006-09-28 06:53:42 +08:00
|
|
|
const Output_segment_headers*);
|
|
|
|
|
|
|
|
// Add information about the section headers. We lay out the ELF
|
|
|
|
// file header before we create the section headers.
|
|
|
|
void set_section_info(const Output_section_headers*,
|
|
|
|
const Output_section* shstrtab);
|
2006-09-27 05:00:34 +08:00
|
|
|
|
|
|
|
// Write the data to the file.
|
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file*);
|
|
|
|
|
|
|
|
// Return the required alignment.
|
|
|
|
uint64_t
|
|
|
|
do_addralign() const
|
|
|
|
{ return Output_data::default_alignment(this->size_); }
|
|
|
|
|
|
|
|
// Set the address and offset--we only implement this for error
|
|
|
|
// checking.
|
|
|
|
void
|
|
|
|
do_set_address(uint64_t, off_t off) const
|
|
|
|
{ assert(off == 0); }
|
2006-09-27 05:00:34 +08:00
|
|
|
|
|
|
|
private:
|
2006-09-28 06:53:42 +08:00
|
|
|
int size_;
|
2006-09-27 05:00:34 +08:00
|
|
|
const General_options& options_;
|
|
|
|
const Target* target_;
|
|
|
|
const Symbol_table* symtab_;
|
|
|
|
const Output_segment_headers* program_header_;
|
|
|
|
const Output_section_headers* section_header_;
|
|
|
|
const Output_section* shstrtab_;
|
|
|
|
};
|
|
|
|
|
2006-09-22 06:13:18 +08:00
|
|
|
// An output section. We don't expect to have too many output
|
|
|
|
// sections, so we don't bother to do a template on the size.
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
class Output_section : public Output_data
|
2006-09-22 06:13:18 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Create an output section, giving the name, type, and flags.
|
|
|
|
Output_section(const char* name, elfcpp::Elf_Word, elfcpp::Elf_Xword);
|
2006-09-27 05:00:34 +08:00
|
|
|
virtual ~Output_section();
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
// Add a new input section named NAME with header SHDR from object
|
|
|
|
// OBJECT. Return the offset within the output section.
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
off_t
|
|
|
|
add_input_section(Object* object, const char *name,
|
|
|
|
const elfcpp::Shdr<size, big_endian>& shdr);
|
|
|
|
|
|
|
|
// Return the section name.
|
|
|
|
const char*
|
|
|
|
name() const
|
|
|
|
{ return this->name_; }
|
|
|
|
|
|
|
|
// Return the section type.
|
|
|
|
elfcpp::Elf_Word
|
|
|
|
type() const
|
|
|
|
{ return this->type_; }
|
|
|
|
|
|
|
|
// Return the section flags.
|
|
|
|
elfcpp::Elf_Xword
|
|
|
|
flags() const
|
|
|
|
{ return this->flags_; }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Return the address alignment.
|
|
|
|
uint64_t
|
|
|
|
addralign() const
|
|
|
|
{ return this->addralign_; }
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// Write the data to the file. For a typical Output_section, this
|
|
|
|
// does nothing. We write out the data by looping over all the
|
|
|
|
// input sections.
|
|
|
|
virtual void
|
2006-09-28 06:53:42 +08:00
|
|
|
do_write(Output_file*)
|
2006-09-27 05:00:34 +08:00
|
|
|
{ }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Return the address alignment--function required by parent class.
|
|
|
|
uint64_t
|
|
|
|
do_addralign() const
|
|
|
|
{ return this->addralign_; }
|
|
|
|
|
|
|
|
// Return whether this is an Output_section.
|
|
|
|
bool
|
|
|
|
do_is_section() const
|
|
|
|
{ return true; }
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// Return whether this is a section of the specified type.
|
|
|
|
bool
|
2006-09-28 06:53:42 +08:00
|
|
|
do_is_section_type(elfcpp::Elf_Word type) const
|
2006-09-27 05:00:34 +08:00
|
|
|
{ return this->type_ == type; }
|
|
|
|
|
|
|
|
// Return whether the specified section flag is set.
|
|
|
|
bool
|
2006-09-28 06:53:42 +08:00
|
|
|
do_is_section_flag_set(elfcpp::Elf_Xword flag) const
|
2006-09-27 05:00:34 +08:00
|
|
|
{ return (this->flags_ & flag) != 0; }
|
|
|
|
|
2006-09-22 06:13:18 +08:00
|
|
|
private:
|
|
|
|
// Most of these fields are only valid after layout.
|
|
|
|
|
|
|
|
// The name of the section. This will point into a Stringpool.
|
|
|
|
const char* name_;
|
2006-09-28 06:53:42 +08:00
|
|
|
// The section address is in the parent class.
|
2006-09-22 06:13:18 +08:00
|
|
|
// The section alignment.
|
|
|
|
uint64_t addralign_;
|
|
|
|
// The section entry size.
|
|
|
|
uint64_t entsize_;
|
2006-09-28 06:53:42 +08:00
|
|
|
// The file offset is in the parent class.
|
2006-09-22 06:13:18 +08:00
|
|
|
// The section link field.
|
|
|
|
unsigned int link_;
|
|
|
|
// The section info field.
|
|
|
|
unsigned int info_;
|
|
|
|
// The section type.
|
|
|
|
elfcpp::Elf_Word type_;
|
|
|
|
// The section flags.
|
|
|
|
elfcpp::Elf_Xword flags_;
|
|
|
|
};
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
// A special Output_section which represents the symbol table
|
|
|
|
// (SHT_SYMTAB).
|
|
|
|
|
|
|
|
class Output_section_symtab : public Output_section
|
|
|
|
{
|
|
|
|
public:
|
2006-09-28 06:53:42 +08:00
|
|
|
Output_section_symtab(const char* name, off_t size);
|
|
|
|
};
|
|
|
|
|
|
|
|
// A special Output_section which holds a string table.
|
|
|
|
|
|
|
|
class Output_section_strtab : public Output_section
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Output_section_strtab(const char* name, Stringpool* contents);
|
|
|
|
|
|
|
|
// Write out the data.
|
|
|
|
void
|
|
|
|
do_write(Output_file*);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Stringpool* contents_;
|
2006-09-27 05:00:34 +08:00
|
|
|
};
|
|
|
|
|
2006-09-22 06:13:18 +08:00
|
|
|
// An output segment. PT_LOAD segments are built from collections of
|
|
|
|
// output sections. Other segments typically point within PT_LOAD
|
|
|
|
// segments, and are built directly as needed.
|
|
|
|
|
|
|
|
class Output_segment
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// Create an output segment, specifying the type and flags.
|
|
|
|
Output_segment(elfcpp::Elf_Word, elfcpp::Elf_Word);
|
|
|
|
|
|
|
|
// Return the virtual address.
|
|
|
|
uint64_t
|
|
|
|
vaddr() const
|
|
|
|
{ return this->vaddr_; }
|
|
|
|
|
|
|
|
// Return the physical address.
|
|
|
|
uint64_t
|
|
|
|
paddr() const
|
|
|
|
{ return this->paddr_; }
|
|
|
|
|
|
|
|
// Return the segment type.
|
|
|
|
elfcpp::Elf_Word
|
|
|
|
type() const
|
|
|
|
{ return this->type_; }
|
|
|
|
|
|
|
|
// Return the segment flags.
|
|
|
|
elfcpp::Elf_Word
|
|
|
|
flags() const
|
|
|
|
{ return this->flags_; }
|
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Return the maximum alignment of the Output_data.
|
|
|
|
uint64_t
|
|
|
|
max_data_align() const;
|
|
|
|
|
2006-09-22 06:13:18 +08:00
|
|
|
// Add an Output_section to this segment.
|
|
|
|
void
|
2006-09-28 06:53:42 +08:00
|
|
|
add_output_section(Output_section*, elfcpp::Elf_Word seg_flags);
|
|
|
|
|
|
|
|
// Add an Output_data (which is not an Output_section) to the start
|
|
|
|
// of this segment.
|
|
|
|
void
|
|
|
|
add_initial_output_data(Output_data*);
|
|
|
|
|
|
|
|
// Set the address of the segment to ADDR and the offset to *POFF
|
|
|
|
// (aligned if necessary), and set the addresses and offsets of all
|
|
|
|
// contained output sections accordingly. Return the address of the
|
|
|
|
// immediately following segment. Update *POFF. This should only
|
|
|
|
// be called for a PT_LOAD segment.
|
|
|
|
uint64_t
|
|
|
|
set_section_addresses(uint64_t addr, off_t* poff);
|
|
|
|
|
|
|
|
// Set the offset of this segment based on the section. This should
|
|
|
|
// only be called for a non-PT_LOAD segment.
|
|
|
|
void
|
|
|
|
set_offset();
|
|
|
|
|
|
|
|
// Return the number of output sections.
|
|
|
|
unsigned int
|
|
|
|
output_section_count() const;
|
2006-09-22 06:13:18 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
Output_segment(const Output_segment&);
|
|
|
|
Output_segment& operator=(const Output_segment&);
|
|
|
|
|
2006-09-27 05:00:34 +08:00
|
|
|
typedef std::list<Output_data*> Output_data_list;
|
2006-09-22 06:13:18 +08:00
|
|
|
|
2006-09-28 06:53:42 +08:00
|
|
|
// Set the section addresses in an Output_data_list.
|
|
|
|
uint64_t
|
|
|
|
set_section_list_addresses(Output_data_list*, uint64_t addr, off_t* poff);
|
|
|
|
|
|
|
|
// Return the number of Output_sections in an Output_data_list.
|
|
|
|
unsigned int
|
|
|
|
output_section_count_list(const Output_data_list*) const;
|
|
|
|
|
|
|
|
// The list of output data with contents attached to this segment.
|
2006-09-27 05:00:34 +08:00
|
|
|
Output_data_list output_data_;
|
2006-09-28 06:53:42 +08:00
|
|
|
// The list of output data without contents attached to this segment.
|
|
|
|
Output_data_list output_bss_;
|
2006-09-22 06:13:18 +08:00
|
|
|
// The segment virtual address.
|
|
|
|
uint64_t vaddr_;
|
|
|
|
// The segment physical address.
|
|
|
|
uint64_t paddr_;
|
|
|
|
// The size of the segment in memory.
|
|
|
|
uint64_t memsz_;
|
|
|
|
// The segment alignment.
|
|
|
|
uint64_t align_;
|
|
|
|
// The offset of the segment data within the file.
|
|
|
|
off_t offset_;
|
|
|
|
// The size of the segment data in the file.
|
|
|
|
off_t filesz_;
|
|
|
|
// The segment type;
|
|
|
|
elfcpp::Elf_Word type_;
|
|
|
|
// The segment flags.
|
|
|
|
elfcpp::Elf_Word flags_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This class represents the output file. The output file is a
|
|
|
|
// collection of output segments and a collection of output sections
|
|
|
|
// which are not associated with segments.
|
|
|
|
|
|
|
|
class Output_file
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Output_file();
|
|
|
|
~Output_file();
|
|
|
|
|
|
|
|
// Write data to the output file.
|
|
|
|
void
|
|
|
|
write(off_t off, const void* data, off_t len);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace gold.
|
|
|
|
|
|
|
|
#endif // !defined(GOLD_OUTPUT_H)
|