Home | History | Annotate | Download | only in gold

Lines Matching defs:Mapfile

0 // mapfile.cc -- map file generation for gold
32 #include "mapfile.h"
40 // Mapfile constructor.
42 Mapfile::Mapfile()
50 // Mapfile destructor.
52 Mapfile::~Mapfile()
61 Mapfile::open(const char* map_filename)
81 Mapfile::close()
91 Mapfile::advance_to_column(size_t from, size_t to)
108 Mapfile::report_include_archive_member(const std::string& member_name,
155 Mapfile::report_allocate_common(const Symbol* sym, uint64_t symsize)
186 const size_t Mapfile::section_name_map_length = 16;
191 Mapfile::print_memory_map_header()
204 Mapfile::print_input_section_symbols(
220 for (size_t i = 0; i < Mapfile::section_name_map_length; ++i)
236 Mapfile::print_input_section(Relobj* relobj, unsigned int shndx)
243 this->advance_to_column(name.length() + 1, Mapfile::section_name_map_length);
322 Mapfile::print_output_data(const Output_data* od, const char* name)
330 this->advance_to_column(strlen(name) + 1, Mapfile::section_name_map_length);
347 Mapfile::print_discarded_sections(const Input_objects* input_objects)
385 Mapfile::print_output_section(const Output_section* os)
391 this->advance_to_column(strlen(os->name()), Mapfile::section_name_map_length);