7d9e3d9854
* mapfile.h: New file. * options.h (class General_options): Add -M/--print-map and -Map. * options.cc (General_options::finalize): Make -M equivalent to -Map -. * main.cc: Include <cstdio> and "mapfile.h". (main): Open mapfile if requested. * gold.cc (class Middle_runner): Add mapfile_ field. Update constructor. Change caller. (queue_initial_tasks): Add mapfile parameter. Change caller. (queue_middle_tasks): Likewise. * gold.h (queue_initial_tasks, queue_middle_tasks): Update declarations. * archive.cc: Include "mapfile.h". (Archive::add_symbols): Add mapfile parameter. Change all callers. Pass mapfile, symbol, and reason to include_member. (Archive::include_all_members): Add mapfile parameter. Change all callers. (Archive::include_member): Add mapfile, sym, and why parameters. Change all callers. Report inclusion to map file. * archive.h: Include "fileread.h". (class Archive): Update declarations. (Archive::file): New const method. (class Add_archive_symbols): Add mapfile_ field. Update constructor. Change all callers. * readsyms.h (class Read_symbols): Likewise. (class Finish_group): Likewise. (class Read_script): Likewise. * common.cc: Include "mapfile.h". (Symbol_table::allocate_commons): Add mapfile parameter. Change all callers. (Symbol_table::do_allocate_commons): Likewise. (Symbol_table::do_allocate_commons_list): Likewise. Report common symbol allocation to mapfile. * common.h (class Allocate_commons_task): Add mapfile_ field. Update constructor. Change all callers. * symtab.h (class Symbol_table): Update declarations. * layout.cc: Include "mapfile.h". (Layout_task_runner::run): Print information to mapfile. (Layout::create_gold_note): Change Output_data_fixed_space to Output_data_zero_fill. (Layout::create_build_id): Likewise. (Layout::print_to_mapfile): New function. * layout.h (class Layout_task_runner): Add mapfile_ field. Update constructor. Change caller. (class Layout): Declare print_to_mapfile. * output.cc (Output_section::Input_section::print_to_mapfile): New function. (Output_section::add_input_section): If producing a map, always add to input_sections_ list. (Output_section::do_print_to_mapfile): New function. (Output_segment::print_sections_to_mapfile): New function. (Output_segment::print_section_list_to_mapfile): New function. * output.h: Include "mapfile.h". (Output_data::print_to_mapfile): New function. (Output_data::do_print_to_mapfile): New virtual function. (Output_segment_headers::do_print_to_mapfile): New function. (Output_file_header::do_print_to_mapfile): New function. (Output_data_const::do_print_to_mapfile): New function. (class Output_data_const_buffer): Add map_name_ field. Update constructor. Change all callers. Add do_print_to_mapfile function. (class Output_data_fixed_space): Likewise. (class Output_data_space): Likewise. (class Output_data_zero_fill): New class. (Output_data_strtab::do_print_to_mapfile): New function. (Output_data_reloc_base::do_print_to_mapfile): New function. (Output_relocatable_relocs::do_print_to_mapfile): New function. (Output_data_group::do_print_to_mapfile): New function. (Output_data_got::do_print_to_mapfile): New function. (Output_data_dynamic::do_print_to_mapfile): New function. (Output_symtab_xindex::do_print_to_mapfile): New function. (class Output_section): Declare do_print_to_mapflie. Declare print_to_mapfile in Input_section. (class Output_segment): Declare new functions. * object.h (Sized_relobj::symbol_count): New function. * script-sections.cc (Output_section_element_dot_assignment::set_section_addresses): Change Output_data_fixed_space to Output_data_zero_fill. (Output_data_expression::do_print_to_mapfile): New function. * script.cc (read_input_script): Add mapfile parameter. Change all callers. * script.h (read_input_script): Update declaration. * ehframe.h (Eh_frame_hdr::do_print_to_mapfile): New function. (Eh_frame::do_print_to_mapfile): New function. * merge.h (Output_merge_data::do_print_to_mapfile): New function. (Output_merge_string::do_print_to_mapfile): New function. * i386.cc (Output_data_plt_i386::do_print_to_mapfile): New function. * sparc.cc (Output_data_plt_sparc::do_print_to_mapfile): New function. * x86_64.cc (Output_data_plt_x86_64::do_print_to_mapfile): New function. * Makefile.am (CCFILES): Add mapfile.cc. (HFILES): Add mapfile.h. * Makefile.in: Rebuild.
253 lines
6.9 KiB
C++
253 lines
6.9 KiB
C++
// archive.h -- archive support for gold -*- C++ -*-
|
|
|
|
// Copyright 2006, 2007, 2008 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.
|
|
|
|
#ifndef GOLD_ARCHIVE_H
|
|
#define GOLD_ARCHIVE_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "fileread.h"
|
|
#include "workqueue.h"
|
|
|
|
namespace gold
|
|
{
|
|
|
|
class Task;
|
|
class Input_file;
|
|
class Input_objects;
|
|
class Input_group;
|
|
class Layout;
|
|
class Symbol_table;
|
|
|
|
// This class represents an archive--generally a libNAME.a file.
|
|
// Archives have a symbol table and a list of objects.
|
|
|
|
class Archive
|
|
{
|
|
public:
|
|
Archive(const std::string& name, Input_file* input_file,
|
|
bool is_thin_archive, Dirsearch* dirpath, Task* task)
|
|
: name_(name), input_file_(input_file), armap_(), armap_names_(),
|
|
extended_names_(), armap_checked_(), seen_offsets_(),
|
|
is_thin_archive_(is_thin_archive), dirpath_(dirpath), task_(task)
|
|
{ }
|
|
|
|
// The length of the magic string at the start of an archive.
|
|
static const int sarmag = 8;
|
|
|
|
// The magic string at the start of an archive.
|
|
static const char armag[sarmag];
|
|
static const char armagt[sarmag];
|
|
|
|
// The string expected at the end of an archive member header.
|
|
static const char arfmag[2];
|
|
|
|
// The name of the object.
|
|
const std::string&
|
|
name() const
|
|
{ return this->name_; }
|
|
|
|
// Set up the archive: read the symbol map.
|
|
void
|
|
setup();
|
|
|
|
// Get a reference to the underlying file.
|
|
File_read&
|
|
file()
|
|
{ return this->input_file_->file(); }
|
|
|
|
const File_read&
|
|
file() const
|
|
{ return this->input_file_->file(); }
|
|
|
|
// Lock the underlying file.
|
|
void
|
|
lock(const Task* t)
|
|
{ this->input_file_->file().lock(t); }
|
|
|
|
// Unlock the underlying file.
|
|
void
|
|
unlock(const Task* t)
|
|
{ this->input_file_->file().unlock(t); }
|
|
|
|
// Return whether the underlying file is locked.
|
|
bool
|
|
is_locked() const
|
|
{ return this->input_file_->file().is_locked(); }
|
|
|
|
// Return the token, so that the task can be queued.
|
|
Task_token*
|
|
token()
|
|
{ return this->input_file_->file().token(); }
|
|
|
|
// Release the underlying file.
|
|
void
|
|
release()
|
|
{ this->input_file_->file().release(); }
|
|
|
|
// Clear uncached views in the underlying file.
|
|
void
|
|
clear_uncached_views()
|
|
{ this->input_file_->file().clear_uncached_views(); }
|
|
|
|
// Unlock any nested archives.
|
|
void
|
|
unlock_nested_archives();
|
|
|
|
// Select members from the archive as needed and add them to the
|
|
// link.
|
|
void
|
|
add_symbols(Symbol_table*, Layout*, Input_objects*, Mapfile*);
|
|
|
|
private:
|
|
Archive(const Archive&);
|
|
Archive& operator=(const Archive&);
|
|
|
|
struct Archive_header;
|
|
|
|
// Get a view into the underlying file.
|
|
const unsigned char*
|
|
get_view(off_t start, section_size_type size, bool aligned, bool cache)
|
|
{ return this->input_file_->file().get_view(0, start, size, aligned, cache); }
|
|
|
|
// Read the archive symbol map.
|
|
void
|
|
read_armap(off_t start, section_size_type size);
|
|
|
|
// Read an archive member header at OFF. CACHE is whether to cache
|
|
// the file view. Return the size of the member, and set *PNAME to
|
|
// the name.
|
|
off_t
|
|
read_header(off_t off, bool cache, std::string* pname, off_t* nested_off);
|
|
|
|
// Interpret an archive header HDR at OFF. Return the size of the
|
|
// member, and set *PNAME to the name.
|
|
off_t
|
|
interpret_header(const Archive_header* hdr, off_t off, std::string* pname,
|
|
off_t* nested_off);
|
|
|
|
// Include all the archive members in the link.
|
|
void
|
|
include_all_members(Symbol_table*, Layout*, Input_objects*, Mapfile*);
|
|
|
|
// Include an archive member in the link.
|
|
void
|
|
include_member(Symbol_table*, Layout*, Input_objects*, off_t off,
|
|
Mapfile*, Symbol*, const char* why);
|
|
|
|
// An entry in the archive map of symbols to object files.
|
|
struct Armap_entry
|
|
{
|
|
// The offset to the symbol name in armap_names_.
|
|
off_t name_offset;
|
|
// The file offset to the object in the archive.
|
|
off_t file_offset;
|
|
};
|
|
|
|
// A simple hash code for off_t values.
|
|
class Seen_hash
|
|
{
|
|
public:
|
|
size_t operator()(off_t val) const
|
|
{ return static_cast<size_t>(val); }
|
|
};
|
|
|
|
// For keeping track of open nested archives in a thin archive file.
|
|
typedef Unordered_map<std::string, Archive*> Nested_archive_table;
|
|
|
|
// Name of object as printed to user.
|
|
std::string name_;
|
|
// For reading the file.
|
|
Input_file* input_file_;
|
|
// The archive map.
|
|
std::vector<Armap_entry> armap_;
|
|
// The names in the archive map.
|
|
std::string armap_names_;
|
|
// The extended name table.
|
|
std::string extended_names_;
|
|
// Track which symbols in the archive map are for elements which are
|
|
// defined or which have already been included in the link.
|
|
std::vector<bool> armap_checked_;
|
|
// Track which elements have been included by offset.
|
|
Unordered_set<off_t, Seen_hash> seen_offsets_;
|
|
// True if this is a thin archive.
|
|
const bool is_thin_archive_;
|
|
// Table of nested archives, indexed by filename.
|
|
Nested_archive_table nested_archives_;
|
|
// The directory search path.
|
|
Dirsearch* dirpath_;
|
|
// The task reading this archive.
|
|
Task *task_;
|
|
};
|
|
|
|
// This class is used to read an archive and pick out the desired
|
|
// elements and add them to the link.
|
|
|
|
class Add_archive_symbols : public Task
|
|
{
|
|
public:
|
|
Add_archive_symbols(Symbol_table* symtab, Layout* layout,
|
|
Input_objects* input_objects, Mapfile* mapfile,
|
|
Archive* archive, Input_group* input_group,
|
|
Task_token* this_blocker,
|
|
Task_token* next_blocker)
|
|
: symtab_(symtab), layout_(layout), input_objects_(input_objects),
|
|
mapfile_(mapfile), archive_(archive), input_group_(input_group),
|
|
this_blocker_(this_blocker), next_blocker_(next_blocker)
|
|
{ }
|
|
|
|
~Add_archive_symbols();
|
|
|
|
// The standard Task methods.
|
|
|
|
Task_token*
|
|
is_runnable();
|
|
|
|
void
|
|
locks(Task_locker*);
|
|
|
|
void
|
|
run(Workqueue*);
|
|
|
|
std::string
|
|
get_name() const
|
|
{
|
|
if (this->archive_ == NULL)
|
|
return "Add_archive_symbols";
|
|
return "Add_archive_symbols " + this->archive_->file().filename();
|
|
}
|
|
|
|
private:
|
|
Symbol_table* symtab_;
|
|
Layout* layout_;
|
|
Input_objects* input_objects_;
|
|
Mapfile* mapfile_;
|
|
Archive* archive_;
|
|
Input_group* input_group_;
|
|
Task_token* this_blocker_;
|
|
Task_token* next_blocker_;
|
|
};
|
|
|
|
} // End namespace gold.
|
|
|
|
#endif // !defined(GOLD_ARCHIVE_H)
|