2006-09-22 00:13:18 +02:00
|
|
|
// layout.cc -- lay out output file sections for gold
|
|
|
|
|
2010-01-07 08:14:30 +01:00
|
|
|
// Copyright 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
2007-09-22 23:02:10 +02:00
|
|
|
// 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.
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
#include <cerrno>
|
2006-09-22 00:13:18 +02:00
|
|
|
#include <cstring>
|
2006-09-26 23:00:34 +02:00
|
|
|
#include <algorithm>
|
2006-09-22 00:13:18 +02:00
|
|
|
#include <iostream>
|
2010-06-02 01:37:58 +02:00
|
|
|
#include <fstream>
|
2006-09-22 00:13:18 +02:00
|
|
|
#include <utility>
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
#include <fcntl.h>
|
2010-06-02 01:37:58 +02:00
|
|
|
#include <fnmatch.h>
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include "libiberty.h"
|
|
|
|
#include "md5.h"
|
|
|
|
#include "sha1.h"
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "parameters.h"
|
2008-01-19 00:26:48 +01:00
|
|
|
#include "options.h"
|
2008-05-21 23:37:44 +02:00
|
|
|
#include "mapfile.h"
|
2008-02-04 06:43:05 +01:00
|
|
|
#include "script.h"
|
|
|
|
#include "script-sections.h"
|
2006-09-22 00:13:18 +02:00
|
|
|
#include "output.h"
|
2006-11-06 23:46:08 +01:00
|
|
|
#include "symtab.h"
|
2006-11-29 18:56:40 +01:00
|
|
|
#include "dynobj.h"
|
2007-09-26 07:44:38 +02:00
|
|
|
#include "ehframe.h"
|
2007-12-01 07:34:12 +01:00
|
|
|
#include "compressed_output.h"
|
2008-05-28 22:48:16 +02:00
|
|
|
#include "reduced_debug_output.h"
|
2008-02-06 09:13:50 +01:00
|
|
|
#include "reloc.h"
|
2008-07-25 06:25:49 +02:00
|
|
|
#include "descriptors.h"
|
2008-12-10 20:50:14 +01:00
|
|
|
#include "plugin.h"
|
2009-04-24 17:44:02 +02:00
|
|
|
#include "incremental.h"
|
|
|
|
#include "layout.h"
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
// Layout::Relaxation_debug_check methods.
|
|
|
|
|
|
|
|
// Check that sections and special data are in reset states.
|
|
|
|
// We do not save states for Output_sections and special Output_data.
|
|
|
|
// So we check that they have not assigned any addresses or offsets.
|
|
|
|
// clean_up_after_relaxation simply resets their addresses and offsets.
|
|
|
|
void
|
|
|
|
Layout::Relaxation_debug_check::check_output_data_for_reset_values(
|
|
|
|
const Layout::Section_list& sections,
|
|
|
|
const Layout::Data_list& special_outputs)
|
|
|
|
{
|
|
|
|
for(Layout::Section_list::const_iterator p = sections.begin();
|
|
|
|
p != sections.end();
|
|
|
|
++p)
|
|
|
|
gold_assert((*p)->address_and_file_offset_have_reset_values());
|
|
|
|
|
|
|
|
for(Layout::Data_list::const_iterator p = special_outputs.begin();
|
|
|
|
p != special_outputs.end();
|
|
|
|
++p)
|
|
|
|
gold_assert((*p)->address_and_file_offset_have_reset_values());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save information of SECTIONS for checking later.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::Relaxation_debug_check::read_sections(
|
|
|
|
const Layout::Section_list& sections)
|
|
|
|
{
|
|
|
|
for(Layout::Section_list::const_iterator p = sections.begin();
|
|
|
|
p != sections.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
Output_section* os = *p;
|
|
|
|
Section_info info;
|
|
|
|
info.output_section = os;
|
|
|
|
info.address = os->is_address_valid() ? os->address() : 0;
|
|
|
|
info.data_size = os->is_data_size_valid() ? os->data_size() : -1;
|
|
|
|
info.offset = os->is_offset_valid()? os->offset() : -1 ;
|
|
|
|
this->section_infos_.push_back(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify SECTIONS using previously recorded information.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::Relaxation_debug_check::verify_sections(
|
|
|
|
const Layout::Section_list& sections)
|
|
|
|
{
|
|
|
|
size_t i = 0;
|
|
|
|
for(Layout::Section_list::const_iterator p = sections.begin();
|
|
|
|
p != sections.end();
|
|
|
|
++p, ++i)
|
|
|
|
{
|
|
|
|
Output_section* os = *p;
|
|
|
|
uint64_t address = os->is_address_valid() ? os->address() : 0;
|
|
|
|
off_t data_size = os->is_data_size_valid() ? os->data_size() : -1;
|
|
|
|
off_t offset = os->is_offset_valid()? os->offset() : -1 ;
|
|
|
|
|
|
|
|
if (i >= this->section_infos_.size())
|
|
|
|
{
|
|
|
|
gold_fatal("Section_info of %s missing.\n", os->name());
|
|
|
|
}
|
|
|
|
const Section_info& info = this->section_infos_[i];
|
|
|
|
if (os != info.output_section)
|
|
|
|
gold_fatal("Section order changed. Expecting %s but see %s\n",
|
|
|
|
info.output_section->name(), os->name());
|
|
|
|
if (address != info.address
|
|
|
|
|| data_size != info.data_size
|
|
|
|
|| offset != info.offset)
|
|
|
|
gold_fatal("Section %s changed.\n", os->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-20 22:40:49 +02:00
|
|
|
// Layout_task_runner methods.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
// Lay out the sections. This is called after all the input objects
|
|
|
|
// have been read.
|
|
|
|
|
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
Layout_task_runner::run(Workqueue* workqueue, const Task* task)
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
2006-10-06 22:40:16 +02:00
|
|
|
off_t file_size = this->layout_->finalize(this->input_objects_,
|
2007-12-14 20:00:21 +01:00
|
|
|
this->symtab_,
|
2008-02-28 01:18:24 +01:00
|
|
|
this->target_,
|
2007-12-14 20:00:21 +01:00
|
|
|
task);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// Now we know the final size of the output file and we know where
|
|
|
|
// each piece of information goes.
|
2008-05-21 23:37:44 +02:00
|
|
|
|
|
|
|
if (this->mapfile_ != NULL)
|
|
|
|
{
|
|
|
|
this->mapfile_->print_discarded_sections(this->input_objects_);
|
|
|
|
this->layout_->print_to_mapfile(this->mapfile_);
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
Output_file* of = new Output_file(parameters->options().output_file_name());
|
2008-03-04 19:21:43 +01:00
|
|
|
if (this->options_.oformat_enum() != General_options::OBJECT_FORMAT_ELF)
|
2008-02-07 08:33:46 +01:00
|
|
|
of->set_is_temporary();
|
2006-09-29 21:58:17 +02:00
|
|
|
of->open(file_size);
|
|
|
|
|
|
|
|
// Queue up the final set of tasks.
|
|
|
|
gold::queue_final_tasks(this->options_, this->input_objects_,
|
2006-10-06 22:40:16 +02:00
|
|
|
this->symtab_, this->layout_, workqueue, of);
|
2006-09-22 00:13:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Layout methods.
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
Layout::Layout(int number_of_input_files, Script_options* script_options)
|
2009-04-02 06:19:03 +02:00
|
|
|
: number_of_input_files_(number_of_input_files),
|
2009-12-14 20:53:05 +01:00
|
|
|
script_options_(script_options),
|
2008-04-19 20:30:58 +02:00
|
|
|
namepool_(),
|
|
|
|
sympool_(),
|
|
|
|
dynpool_(),
|
|
|
|
signatures_(),
|
|
|
|
section_name_map_(),
|
|
|
|
segment_list_(),
|
|
|
|
section_list_(),
|
|
|
|
unattached_section_list_(),
|
|
|
|
special_output_list_(),
|
|
|
|
section_headers_(NULL),
|
|
|
|
tls_segment_(NULL),
|
2008-05-20 06:00:47 +02:00
|
|
|
relro_segment_(NULL),
|
2009-12-30 07:57:17 +01:00
|
|
|
increase_relro_(0),
|
2008-04-19 20:30:58 +02:00
|
|
|
symtab_section_(NULL),
|
|
|
|
symtab_xindex_(NULL),
|
|
|
|
dynsym_section_(NULL),
|
|
|
|
dynsym_xindex_(NULL),
|
|
|
|
dynamic_section_(NULL),
|
2009-12-30 05:16:50 +01:00
|
|
|
dynamic_symbol_(NULL),
|
2008-04-19 20:30:58 +02:00
|
|
|
dynamic_data_(NULL),
|
|
|
|
eh_frame_section_(NULL),
|
|
|
|
eh_frame_data_(NULL),
|
|
|
|
added_eh_frame_data_(false),
|
|
|
|
eh_frame_hdr_section_(NULL),
|
|
|
|
build_id_note_(NULL),
|
2008-05-28 22:48:16 +02:00
|
|
|
debug_abbrev_(NULL),
|
|
|
|
debug_info_(NULL),
|
2008-04-19 20:30:58 +02:00
|
|
|
group_signatures_(),
|
|
|
|
output_file_size_(-1),
|
2009-12-31 04:48:46 +01:00
|
|
|
have_added_input_section_(false),
|
2009-04-02 06:19:03 +02:00
|
|
|
sections_are_attached_(false),
|
2007-10-23 07:05:48 +02:00
|
|
|
input_requires_executable_stack_(false),
|
|
|
|
input_with_gnu_stack_note_(false),
|
2007-12-12 00:30:52 +01:00
|
|
|
input_without_gnu_stack_note_(false),
|
2007-12-14 20:00:21 +01:00
|
|
|
has_static_tls_(false),
|
2009-04-02 06:19:03 +02:00
|
|
|
any_postprocessing_sections_(false),
|
2009-04-24 17:44:02 +02:00
|
|
|
resized_signatures_(false),
|
2009-06-24 02:38:00 +02:00
|
|
|
have_stabstr_section_(false),
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
incremental_inputs_(NULL),
|
|
|
|
record_output_section_data_from_script_(false),
|
|
|
|
script_output_section_data_list_(),
|
|
|
|
segment_states_(NULL),
|
|
|
|
relaxation_debug_check_(NULL)
|
2006-09-26 23:00:34 +02:00
|
|
|
{
|
|
|
|
// Make space for more than enough segments for a typical file.
|
|
|
|
// This is just for efficiency--it's OK if we wind up needing more.
|
2006-11-29 18:56:40 +01:00
|
|
|
this->segment_list_.reserve(12);
|
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
// We expect two unattached Output_data objects: the file header and
|
|
|
|
// the segment headers.
|
|
|
|
this->special_output_list_.reserve(2);
|
2009-04-24 17:44:02 +02:00
|
|
|
|
|
|
|
// Initialize structure needed for an incremental build.
|
|
|
|
if (parameters->options().incremental())
|
|
|
|
this->incremental_inputs_ = new Incremental_inputs;
|
2009-06-23 09:04:10 +02:00
|
|
|
|
|
|
|
// The section name pool is worth optimizing in all cases, because
|
|
|
|
// it is small, but there are often overlaps due to .rel sections.
|
|
|
|
this->namepool_.set_optimize();
|
2006-09-26 23:00:34 +02:00
|
|
|
}
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// Hash a key we use to look up an output section mapping.
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Layout::Hash_key::operator()(const Layout::Key& k) const
|
|
|
|
{
|
2006-11-07 05:40:46 +01:00
|
|
|
return k.first + k.second.first + k.second.second;
|
2006-09-22 00:13:18 +02:00
|
|
|
}
|
|
|
|
|
2007-11-16 00:03:45 +01:00
|
|
|
// Returns whether the given section is in the list of
|
|
|
|
// debug-sections-used-by-some-version-of-gdb. Currently,
|
|
|
|
// we've checked versions of gdb up to and including 6.7.1.
|
|
|
|
|
|
|
|
static const char* gdb_sections[] =
|
|
|
|
{ ".debug_abbrev",
|
|
|
|
// ".debug_aranges", // not used by gdb as of 6.7.1
|
|
|
|
".debug_frame",
|
|
|
|
".debug_info",
|
|
|
|
".debug_line",
|
|
|
|
".debug_loc",
|
|
|
|
".debug_macinfo",
|
|
|
|
// ".debug_pubnames", // not used by gdb as of 6.7.1
|
|
|
|
".debug_ranges",
|
|
|
|
".debug_str",
|
|
|
|
};
|
|
|
|
|
2008-05-28 22:48:16 +02:00
|
|
|
static const char* lines_only_debug_sections[] =
|
|
|
|
{ ".debug_abbrev",
|
|
|
|
// ".debug_aranges", // not used by gdb as of 6.7.1
|
|
|
|
// ".debug_frame",
|
|
|
|
".debug_info",
|
|
|
|
".debug_line",
|
|
|
|
// ".debug_loc",
|
|
|
|
// ".debug_macinfo",
|
|
|
|
// ".debug_pubnames", // not used by gdb as of 6.7.1
|
|
|
|
// ".debug_ranges",
|
|
|
|
".debug_str",
|
|
|
|
};
|
|
|
|
|
2007-11-16 00:03:45 +01:00
|
|
|
static inline bool
|
|
|
|
is_gdb_debug_section(const char* str)
|
|
|
|
{
|
|
|
|
// We can do this faster: binary search or a hashtable. But why bother?
|
|
|
|
for (size_t i = 0; i < sizeof(gdb_sections)/sizeof(*gdb_sections); ++i)
|
|
|
|
if (strcmp(str, gdb_sections[i]) == 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-28 22:48:16 +02:00
|
|
|
static inline bool
|
|
|
|
is_lines_only_debug_section(const char* str)
|
|
|
|
{
|
|
|
|
// We can do this faster: binary search or a hashtable. But why bother?
|
|
|
|
for (size_t i = 0;
|
|
|
|
i < sizeof(lines_only_debug_sections)/sizeof(*lines_only_debug_sections);
|
|
|
|
++i)
|
|
|
|
if (strcmp(str, lines_only_debug_sections[i]) == 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// Whether to include this section in the link.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
bool
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::include_section(Sized_relobj<size, big_endian>*, const char* name,
|
2006-09-22 00:13:18 +02:00
|
|
|
const elfcpp::Shdr<size, big_endian>& shdr)
|
|
|
|
{
|
2008-12-05 22:13:35 +01:00
|
|
|
if (shdr.get_sh_flags() & elfcpp::SHF_EXCLUDE)
|
|
|
|
return false;
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
switch (shdr.get_sh_type())
|
|
|
|
{
|
|
|
|
case elfcpp::SHT_NULL:
|
|
|
|
case elfcpp::SHT_SYMTAB:
|
|
|
|
case elfcpp::SHT_DYNSYM:
|
|
|
|
case elfcpp::SHT_HASH:
|
|
|
|
case elfcpp::SHT_DYNAMIC:
|
|
|
|
case elfcpp::SHT_SYMTAB_SHNDX:
|
|
|
|
return false;
|
|
|
|
|
2008-07-04 05:34:01 +02:00
|
|
|
case elfcpp::SHT_STRTAB:
|
|
|
|
// Discard the sections which have special meanings in the ELF
|
|
|
|
// ABI. Keep others (e.g., .stabstr). We could also do this by
|
|
|
|
// checking the sh_link fields of the appropriate sections.
|
|
|
|
return (strcmp(name, ".dynstr") != 0
|
|
|
|
&& strcmp(name, ".strtab") != 0
|
|
|
|
&& strcmp(name, ".shstrtab") != 0);
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
case elfcpp::SHT_RELA:
|
|
|
|
case elfcpp::SHT_REL:
|
|
|
|
case elfcpp::SHT_GROUP:
|
2008-02-27 23:38:18 +01:00
|
|
|
// If we are emitting relocations these should be handled
|
|
|
|
// elsewhere.
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!parameters->options().relocatable()
|
|
|
|
&& !parameters->options().emit_relocs());
|
2008-02-06 09:13:50 +01:00
|
|
|
return false;
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2007-10-10 21:02:56 +02:00
|
|
|
case elfcpp::SHT_PROGBITS:
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().strip_debug()
|
2007-10-10 21:02:56 +02:00
|
|
|
&& (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
|
|
|
|
{
|
2008-05-01 03:23:21 +02:00
|
|
|
if (is_debug_info_section(name))
|
2007-10-10 21:02:56 +02:00
|
|
|
return false;
|
|
|
|
}
|
2008-05-28 22:48:16 +02:00
|
|
|
if (parameters->options().strip_debug_non_line()
|
|
|
|
&& (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
|
|
|
|
{
|
|
|
|
// Debugging sections can only be recognized by name.
|
|
|
|
if (is_prefix_of(".debug", name)
|
|
|
|
&& !is_lines_only_debug_section(name))
|
|
|
|
return false;
|
|
|
|
}
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().strip_debug_gdb()
|
2007-11-16 00:03:45 +01:00
|
|
|
&& (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
|
|
|
|
{
|
|
|
|
// Debugging sections can only be recognized by name.
|
|
|
|
if (is_prefix_of(".debug", name)
|
|
|
|
&& !is_gdb_debug_section(name))
|
|
|
|
return false;
|
|
|
|
}
|
2008-12-05 22:13:35 +01:00
|
|
|
if (parameters->options().strip_lto_sections()
|
|
|
|
&& !parameters->options().relocatable()
|
|
|
|
&& (shdr.get_sh_flags() & elfcpp::SHF_ALLOC) == 0)
|
|
|
|
{
|
|
|
|
// Ignore LTO sections containing intermediate code.
|
|
|
|
if (is_prefix_of(".gnu.lto_", name))
|
|
|
|
return false;
|
|
|
|
}
|
2010-01-08 22:07:34 +01:00
|
|
|
// The GNU linker strips .gnu_debuglink sections, so we do too.
|
|
|
|
// This is a feature used to keep debugging information in
|
|
|
|
// separate files.
|
|
|
|
if (strcmp(name, ".gnu_debuglink") == 0)
|
|
|
|
return false;
|
2007-10-10 21:02:56 +02:00
|
|
|
return true;
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Return an output section named NAME, or NULL if there is none.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
Output_section*
|
2006-11-03 19:26:11 +01:00
|
|
|
Layout::find_output_section(const char* name) const
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
2008-02-04 06:43:05 +01:00
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
2006-11-03 19:26:11 +01:00
|
|
|
++p)
|
2008-02-04 06:43:05 +01:00
|
|
|
if (strcmp((*p)->name(), name) == 0)
|
|
|
|
return *p;
|
2006-11-03 19:26:11 +01:00
|
|
|
return NULL;
|
|
|
|
}
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Return an output segment of type TYPE, with segment flags SET set
|
|
|
|
// and segment flags CLEAR clear. Return NULL if there is none.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
Output_segment*
|
|
|
|
Layout::find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
|
|
|
|
elfcpp::Elf_Word clear) const
|
|
|
|
{
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
if (static_cast<elfcpp::PT>((*p)->type()) == type
|
|
|
|
&& ((*p)->flags() & set) == set
|
|
|
|
&& ((*p)->flags() & clear) == 0)
|
|
|
|
return *p;
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Return the output section to use for section NAME with type TYPE
|
2008-02-04 06:43:05 +01:00
|
|
|
// and section flags FLAGS. NAME must be canonicalized in the string
|
2009-11-04 16:56:03 +01:00
|
|
|
// pool, and NAME_KEY is the key. IS_INTERP is true if this is the
|
|
|
|
// .interp section. IS_DYNAMIC_LINKER_SECTION is true if this section
|
2009-12-30 07:57:17 +01:00
|
|
|
// is used by the dynamic linker. IS_RELRO is true for a relro
|
|
|
|
// section. IS_LAST_RELRO is true for the last relro section.
|
|
|
|
// IS_FIRST_NON_RELRO is true for the first non-relro section.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
Output_section*
|
2006-11-07 05:40:46 +01:00
|
|
|
Layout::get_output_section(const char* name, Stringpool::Key name_key,
|
2009-11-04 16:56:03 +01:00
|
|
|
elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
|
2009-12-30 07:57:17 +01:00
|
|
|
bool is_interp, bool is_dynamic_linker_section,
|
|
|
|
bool is_relro, bool is_last_relro,
|
|
|
|
bool is_first_non_relro)
|
2006-11-03 19:26:11 +01:00
|
|
|
{
|
2008-04-15 06:06:41 +02:00
|
|
|
elfcpp::Elf_Xword lookup_flags = flags;
|
|
|
|
|
|
|
|
// Ignoring SHF_WRITE and SHF_EXECINSTR here means that we combine
|
|
|
|
// read-write with read-only sections. Some other ELF linkers do
|
|
|
|
// not do this. FIXME: Perhaps there should be an option
|
|
|
|
// controlling this.
|
|
|
|
lookup_flags &= ~(elfcpp::SHF_WRITE | elfcpp::SHF_EXECINSTR);
|
|
|
|
|
|
|
|
const Key key(name_key, std::make_pair(type, lookup_flags));
|
2006-09-22 00:13:18 +02:00
|
|
|
const std::pair<Key, Output_section*> v(key, NULL);
|
|
|
|
std::pair<Section_name_map::iterator, bool> ins(
|
|
|
|
this->section_name_map_.insert(v));
|
|
|
|
|
|
|
|
if (!ins.second)
|
2006-11-03 19:26:11 +01:00
|
|
|
return ins.first->second;
|
2006-09-22 00:13:18 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is the first time we've seen this name/type/flags
|
2008-03-11 17:50:08 +01:00
|
|
|
// combination. For compatibility with the GNU linker, we
|
|
|
|
// combine sections with contents and zero flags with sections
|
|
|
|
// with non-zero flags. This is a workaround for cases where
|
|
|
|
// assembler code forgets to set section flags. FIXME: Perhaps
|
|
|
|
// there should be an option to control this.
|
2008-02-28 01:51:07 +01:00
|
|
|
Output_section* os = NULL;
|
2008-03-11 17:50:08 +01:00
|
|
|
|
|
|
|
if (type == elfcpp::SHT_PROGBITS)
|
2008-02-28 01:51:07 +01:00
|
|
|
{
|
2008-03-11 17:50:08 +01:00
|
|
|
if (flags == 0)
|
|
|
|
{
|
|
|
|
Output_section* same_name = this->find_output_section(name);
|
|
|
|
if (same_name != NULL
|
|
|
|
&& same_name->type() == elfcpp::SHT_PROGBITS
|
|
|
|
&& (same_name->flags() & elfcpp::SHF_TLS) == 0)
|
|
|
|
os = same_name;
|
|
|
|
}
|
|
|
|
else if ((flags & elfcpp::SHF_TLS) == 0)
|
|
|
|
{
|
|
|
|
elfcpp::Elf_Xword zero_flags = 0;
|
|
|
|
const Key zero_key(name_key, std::make_pair(type, zero_flags));
|
|
|
|
Section_name_map::iterator p =
|
|
|
|
this->section_name_map_.find(zero_key);
|
|
|
|
if (p != this->section_name_map_.end())
|
2008-04-15 06:06:41 +02:00
|
|
|
os = p->second;
|
2008-03-11 17:50:08 +01:00
|
|
|
}
|
2008-02-28 01:51:07 +01:00
|
|
|
}
|
2008-03-11 17:50:08 +01:00
|
|
|
|
2008-02-28 01:51:07 +01:00
|
|
|
if (os == NULL)
|
2009-11-04 16:56:03 +01:00
|
|
|
os = this->make_output_section(name, type, flags, is_interp,
|
2009-12-30 07:57:17 +01:00
|
|
|
is_dynamic_linker_section, is_relro,
|
|
|
|
is_last_relro, is_first_non_relro);
|
2006-09-22 00:13:18 +02:00
|
|
|
ins.first->second = os;
|
2006-11-03 19:26:11 +01:00
|
|
|
return os;
|
2006-09-22 00:13:18 +02:00
|
|
|
}
|
2006-11-03 19:26:11 +01:00
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// Pick the output section to use for section NAME, in input file
|
|
|
|
// RELOBJ, with type TYPE and flags FLAGS. RELOBJ may be NULL for a
|
2008-04-15 06:06:41 +02:00
|
|
|
// linker created section. IS_INPUT_SECTION is true if we are
|
|
|
|
// choosing an output section for an input section found in a input
|
2009-11-04 16:56:03 +01:00
|
|
|
// file. IS_INTERP is true if this is the .interp section.
|
|
|
|
// IS_DYNAMIC_LINKER_SECTION is true if this section is used by the
|
2009-12-30 07:57:17 +01:00
|
|
|
// dynamic linker. IS_RELRO is true for a relro section.
|
|
|
|
// IS_LAST_RELRO is true for the last relro section.
|
|
|
|
// IS_FIRST_NON_RELRO is true for the first non-relro section. This
|
|
|
|
// will return NULL if the input section should be discarded.
|
2008-02-04 06:43:05 +01:00
|
|
|
|
|
|
|
Output_section*
|
|
|
|
Layout::choose_output_section(const Relobj* relobj, const char* name,
|
|
|
|
elfcpp::Elf_Word type, elfcpp::Elf_Xword flags,
|
2009-11-04 16:56:03 +01:00
|
|
|
bool is_input_section, bool is_interp,
|
2009-12-30 07:57:17 +01:00
|
|
|
bool is_dynamic_linker_section, bool is_relro,
|
|
|
|
bool is_last_relro, bool is_first_non_relro)
|
2008-02-04 06:43:05 +01:00
|
|
|
{
|
2008-04-15 06:06:41 +02:00
|
|
|
// We should not see any input sections after we have attached
|
|
|
|
// sections to segments.
|
|
|
|
gold_assert(!is_input_section || !this->sections_are_attached_);
|
|
|
|
|
|
|
|
// Some flags in the input section should not be automatically
|
|
|
|
// copied to the output section.
|
2008-02-04 06:43:05 +01:00
|
|
|
flags &= ~ (elfcpp::SHF_INFO_LINK
|
|
|
|
| elfcpp::SHF_LINK_ORDER
|
|
|
|
| elfcpp::SHF_GROUP
|
|
|
|
| elfcpp::SHF_MERGE
|
|
|
|
| elfcpp::SHF_STRINGS);
|
|
|
|
|
|
|
|
if (this->script_options_->saw_sections_clause())
|
|
|
|
{
|
|
|
|
// We are using a SECTIONS clause, so the output section is
|
|
|
|
// chosen based only on the name.
|
|
|
|
|
|
|
|
Script_sections* ss = this->script_options_->script_sections();
|
|
|
|
const char* file_name = relobj == NULL ? NULL : relobj->name().c_str();
|
|
|
|
Output_section** output_section_slot;
|
2010-04-09 19:32:58 +02:00
|
|
|
Script_sections::Section_type script_section_type;
|
|
|
|
name = ss->output_section_name(file_name, name, &output_section_slot,
|
|
|
|
&script_section_type);
|
2008-02-04 06:43:05 +01:00
|
|
|
if (name == NULL)
|
|
|
|
{
|
|
|
|
// The SECTIONS clause says to discard this input section.
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-04-09 19:32:58 +02:00
|
|
|
// We can only handle script section types ST_NONE and ST_NOLOAD.
|
|
|
|
switch (script_section_type)
|
|
|
|
{
|
|
|
|
case Script_sections::ST_NONE:
|
|
|
|
break;
|
|
|
|
case Script_sections::ST_NOLOAD:
|
|
|
|
flags &= elfcpp::SHF_ALLOC;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// If this is an orphan section--one not mentioned in the linker
|
|
|
|
// script--then OUTPUT_SECTION_SLOT will be NULL, and we do the
|
|
|
|
// default processing below.
|
|
|
|
|
|
|
|
if (output_section_slot != NULL)
|
|
|
|
{
|
|
|
|
if (*output_section_slot != NULL)
|
2009-06-24 21:48:51 +02:00
|
|
|
{
|
|
|
|
(*output_section_slot)->update_flags_for_input_section(flags);
|
|
|
|
return *output_section_slot;
|
|
|
|
}
|
2008-02-04 06:43:05 +01:00
|
|
|
|
|
|
|
// We don't put sections found in the linker script into
|
|
|
|
// SECTION_NAME_MAP_. That keeps us from getting confused
|
|
|
|
// if an orphan section is mapped to a section with the same
|
|
|
|
// name as one in the linker script.
|
|
|
|
|
|
|
|
name = this->namepool_.add(name, false, NULL);
|
|
|
|
|
2009-11-04 16:56:03 +01:00
|
|
|
Output_section* os =
|
|
|
|
this->make_output_section(name, type, flags, is_interp,
|
2009-12-30 07:57:17 +01:00
|
|
|
is_dynamic_linker_section, is_relro,
|
|
|
|
is_last_relro, is_first_non_relro);
|
2008-02-04 06:43:05 +01:00
|
|
|
os->set_found_in_sections_clause();
|
2010-04-09 19:32:58 +02:00
|
|
|
|
|
|
|
// Special handling for NOLOAD sections.
|
|
|
|
if (script_section_type == Script_sections::ST_NOLOAD)
|
|
|
|
{
|
|
|
|
os->set_is_noload();
|
|
|
|
|
|
|
|
// The constructor of Output_section sets addresses of non-ALLOC
|
|
|
|
// sections to 0 by default. We don't want that for NOLOAD
|
|
|
|
// sections even if they have no SHF_ALLOC flag.
|
|
|
|
if ((os->flags() & elfcpp::SHF_ALLOC) == 0
|
|
|
|
&& os->is_address_valid())
|
|
|
|
{
|
|
|
|
gold_assert(os->address() == 0
|
|
|
|
&& !os->is_offset_valid()
|
|
|
|
&& !os->is_data_size_valid());
|
|
|
|
os->reset_address_and_file_offset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
*output_section_slot = os;
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Handle SHF_OS_NONCONFORMING somewhere.
|
|
|
|
|
|
|
|
// Turn NAME from the name of the input section into the name of the
|
|
|
|
// output section.
|
|
|
|
|
|
|
|
size_t len = strlen(name);
|
2009-02-25 20:05:21 +01:00
|
|
|
if (is_input_section
|
|
|
|
&& !this->script_options_->saw_sections_clause()
|
|
|
|
&& !parameters->options().relocatable())
|
2008-02-04 06:43:05 +01:00
|
|
|
name = Layout::output_section_name(name, &len);
|
|
|
|
|
|
|
|
Stringpool::Key name_key;
|
|
|
|
name = this->namepool_.add_with_length(name, len, true, &name_key);
|
|
|
|
|
|
|
|
// Find or make the output section. The output section is selected
|
|
|
|
// based on the section name, type, and flags.
|
2009-11-04 16:56:03 +01:00
|
|
|
return this->get_output_section(name, name_key, type, flags, is_interp,
|
2009-12-30 07:57:17 +01:00
|
|
|
is_dynamic_linker_section, is_relro,
|
|
|
|
is_last_relro, is_first_non_relro);
|
2008-02-04 06:43:05 +01:00
|
|
|
}
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Return the output section to use for input section SHNDX, with name
|
2007-11-09 08:00:15 +01:00
|
|
|
// NAME, with header HEADER, from object OBJECT. RELOC_SHNDX is the
|
|
|
|
// index of a relocation section which applies to this section, or 0
|
|
|
|
// if none, or -1U if more than one. RELOC_TYPE is the type of the
|
|
|
|
// relocation section if there is one. Set *OFF to the offset of this
|
|
|
|
// input section without the output section. Return NULL if the
|
|
|
|
// section should be discarded. Set *OFF to -1 if the section
|
|
|
|
// contents should not be written directly to the output file, but
|
|
|
|
// will instead receive special handling.
|
2006-11-03 19:26:11 +01:00
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
Output_section*
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::layout(Sized_relobj<size, big_endian>* object, unsigned int shndx,
|
|
|
|
const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
|
|
|
|
unsigned int reloc_shndx, unsigned int, off_t* off)
|
2006-11-03 19:26:11 +01:00
|
|
|
{
|
2008-07-11 01:01:20 +02:00
|
|
|
*off = 0;
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
if (!this->include_section(object, name, shdr))
|
|
|
|
return NULL;
|
|
|
|
|
2008-02-06 09:13:50 +01:00
|
|
|
Output_section* os;
|
|
|
|
|
2010-03-01 22:43:50 +01:00
|
|
|
// Sometimes .init_array*, .preinit_array* and .fini_array* do not have
|
|
|
|
// correct section types. Force them here.
|
|
|
|
elfcpp::Elf_Word sh_type = shdr.get_sh_type();
|
|
|
|
if (sh_type == elfcpp::SHT_PROGBITS)
|
|
|
|
{
|
|
|
|
static const char init_array_prefix[] = ".init_array";
|
|
|
|
static const char preinit_array_prefix[] = ".preinit_array";
|
|
|
|
static const char fini_array_prefix[] = ".fini_array";
|
|
|
|
static size_t init_array_prefix_size = sizeof(init_array_prefix) - 1;
|
|
|
|
static size_t preinit_array_prefix_size =
|
|
|
|
sizeof(preinit_array_prefix) - 1;
|
|
|
|
static size_t fini_array_prefix_size = sizeof(fini_array_prefix) - 1;
|
|
|
|
|
|
|
|
if (strncmp(name, init_array_prefix, init_array_prefix_size) == 0)
|
|
|
|
sh_type = elfcpp::SHT_INIT_ARRAY;
|
|
|
|
else if (strncmp(name, preinit_array_prefix, preinit_array_prefix_size)
|
|
|
|
== 0)
|
|
|
|
sh_type = elfcpp::SHT_PREINIT_ARRAY;
|
|
|
|
else if (strncmp(name, fini_array_prefix, fini_array_prefix_size) == 0)
|
|
|
|
sh_type = elfcpp::SHT_FINI_ARRAY;
|
|
|
|
}
|
|
|
|
|
2008-02-06 09:13:50 +01:00
|
|
|
// In a relocatable link a grouped section must not be combined with
|
|
|
|
// any other sections.
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().relocatable()
|
2008-02-06 09:13:50 +01:00
|
|
|
&& (shdr.get_sh_flags() & elfcpp::SHF_GROUP) != 0)
|
|
|
|
{
|
|
|
|
name = this->namepool_.add(name, true, NULL);
|
2010-03-01 22:43:50 +01:00
|
|
|
os = this->make_output_section(name, sh_type, shdr.get_sh_flags(), false,
|
|
|
|
false, false, false, false);
|
2008-02-06 09:13:50 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-03-01 22:43:50 +01:00
|
|
|
os = this->choose_output_section(object, name, sh_type,
|
2009-11-04 16:56:03 +01:00
|
|
|
shdr.get_sh_flags(), true, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false);
|
2008-02-06 09:13:50 +01:00
|
|
|
if (os == NULL)
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-28 23:42:34 +01:00
|
|
|
// By default the GNU linker sorts input sections whose names match
|
|
|
|
// .ctor.*, .dtor.*, .init_array.*, or .fini_array.*. The sections
|
|
|
|
// are sorted by name. This is used to implement constructor
|
|
|
|
// priority ordering. We are compatible.
|
|
|
|
if (!this->script_options_->saw_sections_clause()
|
|
|
|
&& (is_prefix_of(".ctors.", name)
|
|
|
|
|| is_prefix_of(".dtors.", name)
|
|
|
|
|| is_prefix_of(".init_array.", name)
|
|
|
|
|| is_prefix_of(".fini_array.", name)))
|
|
|
|
os->set_must_sort_attached_input_sections();
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// FIXME: Handle SHF_LINK_ORDER somewhere.
|
|
|
|
|
2010-06-02 01:37:58 +02:00
|
|
|
*off = os->add_input_section(this, object, shndx, name, shdr, reloc_shndx,
|
2008-02-04 06:43:05 +01:00
|
|
|
this->script_options_->saw_sections_clause());
|
2009-12-31 04:48:46 +01:00
|
|
|
this->have_added_input_section_ = true;
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2008-02-06 09:13:50 +01:00
|
|
|
// Handle a relocation section when doing a relocatable link.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_reloc(Sized_relobj<size, big_endian>* object,
|
|
|
|
unsigned int,
|
|
|
|
const elfcpp::Shdr<size, big_endian>& shdr,
|
|
|
|
Output_section* data_section,
|
|
|
|
Relocatable_relocs* rr)
|
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(parameters->options().relocatable()
|
|
|
|
|| parameters->options().emit_relocs());
|
2008-02-06 09:13:50 +01:00
|
|
|
|
|
|
|
int sh_type = shdr.get_sh_type();
|
|
|
|
|
|
|
|
std::string name;
|
|
|
|
if (sh_type == elfcpp::SHT_REL)
|
|
|
|
name = ".rel";
|
|
|
|
else if (sh_type == elfcpp::SHT_RELA)
|
|
|
|
name = ".rela";
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
name += data_section->name();
|
|
|
|
|
2010-04-24 16:32:23 +02:00
|
|
|
// In a relocatable link relocs for a grouped section must not be
|
|
|
|
// combined with other reloc sections.
|
|
|
|
Output_section* os;
|
|
|
|
if (!parameters->options().relocatable()
|
|
|
|
|| (data_section->flags() & elfcpp::SHF_GROUP) == 0)
|
|
|
|
os = this->choose_output_section(object, name.c_str(), sh_type,
|
|
|
|
shdr.get_sh_flags(), false, false,
|
|
|
|
false, false, false, false);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const char* n = this->namepool_.add(name.c_str(), true, NULL);
|
|
|
|
os = this->make_output_section(n, sh_type, shdr.get_sh_flags(),
|
|
|
|
false, false, false, false, false);
|
|
|
|
}
|
2008-02-06 09:13:50 +01:00
|
|
|
|
|
|
|
os->set_should_link_to_symtab();
|
|
|
|
os->set_info_section(data_section);
|
|
|
|
|
|
|
|
Output_section_data* posd;
|
|
|
|
if (sh_type == elfcpp::SHT_REL)
|
|
|
|
{
|
|
|
|
os->set_entsize(elfcpp::Elf_sizes<size>::rel_size);
|
|
|
|
posd = new Output_relocatable_relocs<elfcpp::SHT_REL,
|
|
|
|
size,
|
|
|
|
big_endian>(rr);
|
|
|
|
}
|
|
|
|
else if (sh_type == elfcpp::SHT_RELA)
|
|
|
|
{
|
|
|
|
os->set_entsize(elfcpp::Elf_sizes<size>::rela_size);
|
|
|
|
posd = new Output_relocatable_relocs<elfcpp::SHT_RELA,
|
|
|
|
size,
|
|
|
|
big_endian>(rr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
|
|
|
|
os->add_output_section_data(posd);
|
|
|
|
rr->set_output_data(posd);
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle a group section when doing a relocatable link.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Layout::layout_group(Symbol_table* symtab,
|
|
|
|
Sized_relobj<size, big_endian>* object,
|
|
|
|
unsigned int,
|
|
|
|
const char* group_section_name,
|
|
|
|
const char* signature,
|
|
|
|
const elfcpp::Shdr<size, big_endian>& shdr,
|
2008-05-05 21:16:43 +02:00
|
|
|
elfcpp::Elf_Word flags,
|
|
|
|
std::vector<unsigned int>* shndxes)
|
2008-02-06 09:13:50 +01:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(parameters->options().relocatable());
|
2008-02-06 09:13:50 +01:00
|
|
|
gold_assert(shdr.get_sh_type() == elfcpp::SHT_GROUP);
|
|
|
|
group_section_name = this->namepool_.add(group_section_name, true, NULL);
|
|
|
|
Output_section* os = this->make_output_section(group_section_name,
|
|
|
|
elfcpp::SHT_GROUP,
|
2009-11-04 16:56:03 +01:00
|
|
|
shdr.get_sh_flags(),
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false,
|
2009-11-04 16:56:03 +01:00
|
|
|
false, false);
|
2008-02-06 09:13:50 +01:00
|
|
|
|
|
|
|
// We need to find a symbol with the signature in the symbol table.
|
2008-02-06 20:32:32 +01:00
|
|
|
// If we don't find one now, we need to look again later.
|
2008-02-06 09:13:50 +01:00
|
|
|
Symbol* sym = symtab->lookup(signature, NULL);
|
2008-02-06 20:32:32 +01:00
|
|
|
if (sym != NULL)
|
|
|
|
os->set_info_symndx(sym);
|
|
|
|
else
|
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
// Reserve some space to minimize reallocations.
|
|
|
|
if (this->group_signatures_.empty())
|
|
|
|
this->group_signatures_.reserve(this->number_of_input_files_ * 16);
|
|
|
|
|
2008-02-06 20:32:32 +01:00
|
|
|
// We will wind up using a symbol whose name is the signature.
|
|
|
|
// So just put the signature in the symbol name pool to save it.
|
|
|
|
signature = symtab->canonicalize_name(signature);
|
|
|
|
this->group_signatures_.push_back(Group_signature(os, signature));
|
|
|
|
}
|
2008-02-06 09:13:50 +01:00
|
|
|
|
|
|
|
os->set_should_link_to_symtab();
|
|
|
|
os->set_entsize(4);
|
|
|
|
|
|
|
|
section_size_type entry_count =
|
|
|
|
convert_to_section_size_type(shdr.get_sh_size() / 4);
|
|
|
|
Output_section_data* posd =
|
2008-05-05 21:16:43 +02:00
|
|
|
new Output_data_group<size, big_endian>(object, entry_count, flags,
|
|
|
|
shndxes);
|
2008-02-06 09:13:50 +01:00
|
|
|
os->add_output_section_data(posd);
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
// Special GNU handling of sections name .eh_frame. They will
|
|
|
|
// normally hold exception frame data as defined by the C++ ABI
|
|
|
|
// (http://codesourcery.com/cxx-abi/).
|
2007-09-26 07:44:38 +02:00
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
2007-11-09 08:00:15 +01:00
|
|
|
Output_section*
|
|
|
|
Layout::layout_eh_frame(Sized_relobj<size, big_endian>* object,
|
|
|
|
const unsigned char* symbols,
|
|
|
|
off_t symbols_size,
|
|
|
|
const unsigned char* symbol_names,
|
|
|
|
off_t symbol_names_size,
|
2007-09-26 07:44:38 +02:00
|
|
|
unsigned int shndx,
|
|
|
|
const elfcpp::Shdr<size, big_endian>& shdr,
|
2007-11-09 08:00:15 +01:00
|
|
|
unsigned int reloc_shndx, unsigned int reloc_type,
|
|
|
|
off_t* off)
|
2007-09-26 07:44:38 +02:00
|
|
|
{
|
2007-11-09 08:00:15 +01:00
|
|
|
gold_assert(shdr.get_sh_type() == elfcpp::SHT_PROGBITS);
|
2008-03-12 05:38:42 +01:00
|
|
|
gold_assert((shdr.get_sh_flags() & elfcpp::SHF_ALLOC) != 0);
|
2007-11-09 08:00:15 +01:00
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
const char* const name = ".eh_frame";
|
|
|
|
Output_section* os = this->choose_output_section(object,
|
|
|
|
name,
|
|
|
|
elfcpp::SHT_PROGBITS,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false,
|
2009-11-04 16:56:03 +01:00
|
|
|
false, false, false);
|
2008-02-04 06:43:05 +01:00
|
|
|
if (os == NULL)
|
|
|
|
return NULL;
|
2007-11-09 08:00:15 +01:00
|
|
|
|
2007-09-26 07:44:38 +02:00
|
|
|
if (this->eh_frame_section_ == NULL)
|
|
|
|
{
|
|
|
|
this->eh_frame_section_ = os;
|
2007-11-09 08:00:15 +01:00
|
|
|
this->eh_frame_data_ = new Eh_frame();
|
2007-09-26 07:44:38 +02:00
|
|
|
|
2009-04-02 06:19:03 +02:00
|
|
|
if (parameters->options().eh_frame_hdr())
|
2007-09-26 07:44:38 +02:00
|
|
|
{
|
|
|
|
Output_section* hdr_os =
|
2008-02-04 06:43:05 +01:00
|
|
|
this->choose_output_section(NULL,
|
|
|
|
".eh_frame_hdr",
|
|
|
|
elfcpp::SHT_PROGBITS,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false,
|
2009-11-04 16:56:03 +01:00
|
|
|
false, false, false);
|
2007-09-26 07:44:38 +02:00
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
if (hdr_os != NULL)
|
|
|
|
{
|
|
|
|
Eh_frame_hdr* hdr_posd = new Eh_frame_hdr(os,
|
|
|
|
this->eh_frame_data_);
|
|
|
|
hdr_os->add_output_section_data(hdr_posd);
|
2007-09-26 07:44:38 +02:00
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
hdr_os->set_after_input_sections();
|
2007-11-09 08:00:15 +01:00
|
|
|
|
2008-02-04 23:54:31 +01:00
|
|
|
if (!this->script_options_->saw_phdrs_clause())
|
|
|
|
{
|
|
|
|
Output_segment* hdr_oseg;
|
|
|
|
hdr_oseg = this->make_output_segment(elfcpp::PT_GNU_EH_FRAME,
|
|
|
|
elfcpp::PF_R);
|
2009-11-04 16:56:03 +01:00
|
|
|
hdr_oseg->add_output_section(hdr_os, elfcpp::PF_R, false);
|
2008-02-04 23:54:31 +01:00
|
|
|
}
|
2007-11-09 08:00:15 +01:00
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
this->eh_frame_data_->set_eh_frame_hdr(hdr_posd);
|
|
|
|
}
|
2007-09-26 07:44:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gold_assert(this->eh_frame_section_ == os);
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
if (this->eh_frame_data_->add_ehframe_input_section(object,
|
|
|
|
symbols,
|
|
|
|
symbols_size,
|
|
|
|
symbol_names,
|
|
|
|
symbol_names_size,
|
|
|
|
shndx,
|
|
|
|
reloc_shndx,
|
|
|
|
reloc_type))
|
2008-04-09 02:26:48 +02:00
|
|
|
{
|
2008-04-15 06:06:41 +02:00
|
|
|
os->update_flags_for_input_section(shdr.get_sh_flags());
|
|
|
|
|
2008-04-09 02:26:48 +02:00
|
|
|
// We found a .eh_frame section we are going to optimize, so now
|
|
|
|
// we can add the set of optimized sections to the output
|
|
|
|
// section. We need to postpone adding this until we've found a
|
|
|
|
// section we can optimize so that the .eh_frame section in
|
|
|
|
// crtbegin.o winds up at the start of the output section.
|
|
|
|
if (!this->added_eh_frame_data_)
|
|
|
|
{
|
|
|
|
os->add_output_section_data(this->eh_frame_data_);
|
|
|
|
this->added_eh_frame_data_ = true;
|
|
|
|
}
|
|
|
|
*off = -1;
|
|
|
|
}
|
2007-11-09 08:00:15 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// We couldn't handle this .eh_frame section for some reason.
|
|
|
|
// Add it as a normal section.
|
2008-02-04 06:43:05 +01:00
|
|
|
bool saw_sections_clause = this->script_options_->saw_sections_clause();
|
2010-06-02 01:37:58 +02:00
|
|
|
*off = os->add_input_section(this, object, shndx, name, shdr, reloc_shndx,
|
2008-02-04 06:43:05 +01:00
|
|
|
saw_sections_clause);
|
2009-12-31 04:48:46 +01:00
|
|
|
this->have_added_input_section_ = true;
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return os;
|
2007-09-26 07:44:38 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 06:00:47 +02:00
|
|
|
// Add POSD to an output section using NAME, TYPE, and FLAGS. Return
|
|
|
|
// the output section.
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2008-05-20 06:00:47 +02:00
|
|
|
Output_section*
|
2006-11-03 19:26:11 +01:00
|
|
|
Layout::add_output_section_data(const char* name, elfcpp::Elf_Word type,
|
|
|
|
elfcpp::Elf_Xword flags,
|
2009-11-04 16:56:03 +01:00
|
|
|
Output_section_data* posd,
|
2009-12-30 07:57:17 +01:00
|
|
|
bool is_dynamic_linker_section,
|
|
|
|
bool is_relro, bool is_last_relro,
|
|
|
|
bool is_first_non_relro)
|
2006-11-03 19:26:11 +01:00
|
|
|
{
|
2008-02-04 06:43:05 +01:00
|
|
|
Output_section* os = this->choose_output_section(NULL, name, type, flags,
|
2009-11-04 16:56:03 +01:00
|
|
|
false, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
is_dynamic_linker_section,
|
|
|
|
is_relro, is_last_relro,
|
|
|
|
is_first_non_relro);
|
2008-02-04 06:43:05 +01:00
|
|
|
if (os != NULL)
|
|
|
|
os->add_output_section_data(posd);
|
2008-05-20 06:00:47 +02:00
|
|
|
return os;
|
2006-11-03 19:26:11 +01:00
|
|
|
}
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// Map section flags to segment flags.
|
|
|
|
|
|
|
|
elfcpp::Elf_Word
|
|
|
|
Layout::section_flags_to_segment(elfcpp::Elf_Xword flags)
|
|
|
|
{
|
|
|
|
elfcpp::Elf_Word ret = elfcpp::PF_R;
|
|
|
|
if ((flags & elfcpp::SHF_WRITE) != 0)
|
|
|
|
ret |= elfcpp::PF_W;
|
|
|
|
if ((flags & elfcpp::SHF_EXECINSTR) != 0)
|
|
|
|
ret |= elfcpp::PF_X;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-12-01 07:34:12 +01:00
|
|
|
// Sometimes we compress sections. This is typically done for
|
|
|
|
// sections that are not part of normal program execution (such as
|
|
|
|
// .debug_* sections), and where the readers of these sections know
|
2009-07-25 01:13:51 +02:00
|
|
|
// how to deal with compressed sections. This routine doesn't say for
|
|
|
|
// certain whether we'll compress -- it depends on commandline options
|
|
|
|
// as well -- just whether this section is a candidate for compression.
|
|
|
|
// (The Output_compressed_section class decides whether to compress
|
|
|
|
// a given section, and picks the name of the compressed section.)
|
2007-12-01 07:34:12 +01:00
|
|
|
|
|
|
|
static bool
|
|
|
|
is_compressible_debug_section(const char* secname)
|
|
|
|
{
|
|
|
|
return (strncmp(secname, ".debug", sizeof(".debug") - 1) == 0);
|
|
|
|
}
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// Make a new Output_section, and attach it to segments as
|
2009-11-04 16:56:03 +01:00
|
|
|
// appropriate. IS_INTERP is true if this is the .interp section.
|
|
|
|
// IS_DYNAMIC_LINKER_SECTION is true if this section is used by the
|
2009-12-30 07:57:17 +01:00
|
|
|
// dynamic linker. IS_RELRO is true if this is a relro section.
|
|
|
|
// IS_LAST_RELRO is true if this is the last relro section.
|
|
|
|
// IS_FIRST_NON_RELRO is true if this is the first non relro section.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
Output_section*
|
|
|
|
Layout::make_output_section(const char* name, elfcpp::Elf_Word type,
|
2009-11-04 16:56:03 +01:00
|
|
|
elfcpp::Elf_Xword flags, bool is_interp,
|
2009-12-30 07:57:17 +01:00
|
|
|
bool is_dynamic_linker_section, bool is_relro,
|
|
|
|
bool is_last_relro, bool is_first_non_relro)
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
2007-12-01 07:34:12 +01:00
|
|
|
Output_section* os;
|
|
|
|
if ((flags & elfcpp::SHF_ALLOC) == 0
|
2009-04-02 06:19:03 +02:00
|
|
|
&& strcmp(parameters->options().compress_debug_sections(), "none") != 0
|
2007-12-01 07:34:12 +01:00
|
|
|
&& is_compressible_debug_section(name))
|
2009-04-02 06:19:03 +02:00
|
|
|
os = new Output_compressed_section(¶meters->options(), name, type,
|
|
|
|
flags);
|
2008-05-28 22:48:16 +02:00
|
|
|
else if ((flags & elfcpp::SHF_ALLOC) == 0
|
2009-04-02 06:19:03 +02:00
|
|
|
&& parameters->options().strip_debug_non_line()
|
2008-05-28 22:48:16 +02:00
|
|
|
&& strcmp(".debug_abbrev", name) == 0)
|
|
|
|
{
|
|
|
|
os = this->debug_abbrev_ = new Output_reduced_debug_abbrev_section(
|
|
|
|
name, type, flags);
|
|
|
|
if (this->debug_info_)
|
|
|
|
this->debug_info_->set_abbreviations(this->debug_abbrev_);
|
|
|
|
}
|
|
|
|
else if ((flags & elfcpp::SHF_ALLOC) == 0
|
2009-04-02 06:19:03 +02:00
|
|
|
&& parameters->options().strip_debug_non_line()
|
2008-05-28 22:48:16 +02:00
|
|
|
&& strcmp(".debug_info", name) == 0)
|
|
|
|
{
|
|
|
|
os = this->debug_info_ = new Output_reduced_debug_info_section(
|
|
|
|
name, type, flags);
|
|
|
|
if (this->debug_abbrev_)
|
|
|
|
this->debug_info_->set_abbreviations(this->debug_abbrev_);
|
|
|
|
}
|
|
|
|
else
|
2009-10-09 Doug Kwan <dougkwan@google.com>
* layout.cc (Layout::make_output_section): Call target hook to make
ordinary output section.
(Layout::finalize): Adjust parameter list of call the
Target::may_relax().
* layout.h (class Layout::section_list): New method.
* merge.h (Output_merge_base::entsize): Change visibility to public.
(Output_merge_base::is_string, Output_merge_base::do_is_string):
New methods.
(Output_merge_string::do_is_string): New method.
* object.cc (Sized_relobj::do_setup): renamed from
Sized_relobj::set_up.
* object.h (Sized_relobj::adjust_shndx,
Sized_relobj::initializ_input_to_output_maps,
Sized_relobj::free_input_to_output_maps): Change visibilities to
protected.
(Sized_relobj::setup): Virtualize.
(Sized_relobj::do_setup): New method declaration.
(Sized_relobj::invalidate_section_offset,
Sized_relobj::do_invalidate_section_offset): New method decfinitions.
(Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
* options.cc (parse_int): New function.
* options.h (parse_int): New declaration.
(DEFINE_int): New macro.
(stub_group_size): New option.
* output.cc (Output_section::Output_section): Initialize memebers
merge_section_map_, merge_section_by_properties_map_,
relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
(Output_section::add_input_section): Handled deferred code-fill
generation and remove an old comment.
(Output_section::add_relaxed_input_section): New method definition.
(Output_section::add_merge_input_section): Use merge section by
properties map to speed to search. Update merge section maps
as appropriate.
(Output_section::build_relaxation_map): New method definition.
(Output_section::convert_input_sections_in_list_to_relaxed_sections):
Same.
(Output_section::relax_input_section): Renamed to
Output_section::convert_input_sections_to_relaxed_sections and change
interface to take a vector of pointers to relaxed sections.
(Output_section::find_merge_section,
Output_section::find_relaxed_input_section): New method definitions.
(Output_section::is_input_address_mapped,
Output_section::output_offset, Output_section::output_address):
Use output section data maps to speed up searching.
(Output_section::find_starting_output_address): Add comments.
(Output_section::do_write,
Output_section::write_to_postprocessing_buffer): Do code-fill
generation as appropriate.
(Output_section::get_input_sections): Invalidate relaxed input section
map.
(Output_section::restore_states): Adjust type of checkpoint .
Invalidate relaxed input section map.
* output.h (Output_merge_base): New class declaration.
(Input_section_specifier): New class defintion.
(class Output_relaxed_input_section) Change base class to
Output_section_data_build.
(Output_relaxed_input_section::Output_relaxed_input_section): Adjust
base class initializer.
(Output_section::add_relaxed_input_section): New method declaration.
(Output_section::Input_section): Change visibility to protected.
(Output_section::Input_section::relobj,
Output_section::Input_section::shndx): Handle relaxed input sections.
Output_section::input_sections) Change visibility to protected. Also
define overload to return a non-const pointer.
(Output_section::Merge_section_properties): New class defintion.
(Output_section::Merge_section_by_properties_map,
Output_section::Output_section_data_by_input_section_map,
Output_section::Relaxation_map): New types.
(Output_section::relax_input_section): Rename method to
Output_section::convert_input_sections_to_relaxed_sections and change
interface to take a vector of relaxed section pointers.
(Output_section::find_merge_section,
Output_section::find_relaxed_input_section,
Output_section::build_relaxation_map,
Output_section::convert_input_sections_in_list_to_relaxed_sections):
New method declarations.
(Output_section::merge_section_map_
Output_section::merge_section_by_properties_map_,
Output_section::relaxed_input_section_map_,
Output_section::is_relaxed_input_section_map_valid_,
Output_section::generate_code_fills_at_write_): New data members.
* script-sections.cc
(Output_section_element_input::set_section_addresses): Call
current_data_size and addralign methods of relaxed input sections.
(Orphan_output_section::set_section_addresses): Call current_data_size
and addralign methods of relaxed input sections.
* symtab.cc (Symbol_table::compute_final_value): Extract template
from the body of Symbol_table::sized_finalize_symbol.
(Symbol_table::sized_finalized_symbol): Call
Symbol_table::compute_final_value.
* symtab.h (Symbol_table::Compute_final_value_status): New enum type.
(Symbol_table::compute_final_value): New templated method declaration.
* target.cc (Target::do_make_output_section): New method defintion.
* target.h (Target::make_output_section): New method declaration.
(Target::relax): Add more parameters for input objects, symbol table
and layout. Adjust call to do_relax.
(Target::do_make_output_section): New method declaration.
(Target::do_relax): Add parameters for input objects, symbol table
and layout.
2009-10-10 01:18:19 +02:00
|
|
|
{
|
|
|
|
// FIXME: const_cast is ugly.
|
|
|
|
Target* target = const_cast<Target*>(¶meters->target());
|
|
|
|
os = target->make_output_section(name, type, flags);
|
|
|
|
}
|
2007-12-01 07:34:12 +01:00
|
|
|
|
2009-11-04 16:56:03 +01:00
|
|
|
if (is_interp)
|
|
|
|
os->set_is_interp();
|
|
|
|
if (is_dynamic_linker_section)
|
|
|
|
os->set_is_dynamic_linker_section();
|
2009-12-30 07:57:17 +01:00
|
|
|
if (is_relro)
|
|
|
|
os->set_is_relro();
|
|
|
|
if (is_last_relro)
|
|
|
|
os->set_is_last_relro();
|
|
|
|
if (is_first_non_relro)
|
|
|
|
os->set_is_first_non_relro();
|
2009-11-04 16:56:03 +01:00
|
|
|
|
2009-06-22 08:51:53 +02:00
|
|
|
parameters->target().new_output_section(os);
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
this->section_list_.push_back(os);
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-28 23:42:34 +01:00
|
|
|
// The GNU linker by default sorts some sections by priority, so we
|
|
|
|
// do the same. We need to know that this might happen before we
|
|
|
|
// attach any input sections.
|
|
|
|
if (!this->script_options_->saw_sections_clause()
|
|
|
|
&& (strcmp(name, ".ctors") == 0
|
|
|
|
|| strcmp(name, ".dtors") == 0
|
|
|
|
|| strcmp(name, ".init_array") == 0
|
|
|
|
|| strcmp(name, ".fini_array") == 0))
|
|
|
|
os->set_may_sort_attached_input_sections();
|
|
|
|
|
2008-05-20 06:00:47 +02:00
|
|
|
// With -z relro, we have to recognize the special sections by name.
|
|
|
|
// There is no other way.
|
|
|
|
if (!this->script_options_->saw_sections_clause()
|
|
|
|
&& parameters->options().relro()
|
|
|
|
&& type == elfcpp::SHT_PROGBITS
|
|
|
|
&& (flags & elfcpp::SHF_ALLOC) != 0
|
|
|
|
&& (flags & elfcpp::SHF_WRITE) != 0)
|
|
|
|
{
|
|
|
|
if (strcmp(name, ".data.rel.ro") == 0)
|
|
|
|
os->set_is_relro();
|
|
|
|
else if (strcmp(name, ".data.rel.ro.local") == 0)
|
|
|
|
{
|
|
|
|
os->set_is_relro();
|
|
|
|
os->set_is_relro_local();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 02:38:00 +02:00
|
|
|
// Check for .stab*str sections, as .stab* sections need to link to
|
|
|
|
// them.
|
|
|
|
if (type == elfcpp::SHT_STRTAB
|
|
|
|
&& !this->have_stabstr_section_
|
|
|
|
&& strncmp(name, ".stab", 5) == 0
|
|
|
|
&& strcmp(name + strlen(name) - 3, "str") == 0)
|
|
|
|
this->have_stabstr_section_ = true;
|
|
|
|
|
2008-04-15 06:06:41 +02:00
|
|
|
// If we have already attached the sections to segments, then we
|
|
|
|
// need to attach this one now. This happens for sections created
|
|
|
|
// directly by the linker.
|
|
|
|
if (this->sections_are_attached_)
|
|
|
|
this->attach_section_to_segment(os);
|
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
return os;
|
|
|
|
}
|
2008-02-04 06:43:05 +01:00
|
|
|
|
2008-04-15 06:06:41 +02:00
|
|
|
// Attach output sections to segments. This is called after we have
|
|
|
|
// seen all the input sections.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::attach_sections_to_segments()
|
|
|
|
{
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
this->attach_section_to_segment(*p);
|
|
|
|
|
|
|
|
this->sections_are_attached_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attach an output section to a segment.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::attach_section_to_segment(Output_section* os)
|
|
|
|
{
|
|
|
|
if ((os->flags() & elfcpp::SHF_ALLOC) == 0)
|
|
|
|
this->unattached_section_list_.push_back(os);
|
|
|
|
else
|
|
|
|
this->attach_allocated_section_to_segment(os);
|
|
|
|
}
|
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
// Attach an allocated output section to a segment.
|
2008-02-04 23:54:31 +01:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
void
|
2008-04-15 06:06:41 +02:00
|
|
|
Layout::attach_allocated_section_to_segment(Output_section* os)
|
2008-03-11 17:50:08 +01:00
|
|
|
{
|
2008-04-15 06:06:41 +02:00
|
|
|
elfcpp::Elf_Xword flags = os->flags();
|
2008-03-11 17:50:08 +01:00
|
|
|
gold_assert((flags & elfcpp::SHF_ALLOC) != 0);
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
if (parameters->options().relocatable())
|
|
|
|
return;
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
// If we have a SECTIONS clause, we can't handle the attachment to
|
|
|
|
// segments until after we've seen all the sections.
|
|
|
|
if (this->script_options_->saw_sections_clause())
|
|
|
|
return;
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
gold_assert(!this->script_options_->saw_phdrs_clause());
|
2008-02-13 23:47:28 +01:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
// This output section goes into a PT_LOAD segment.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
elfcpp::Elf_Word seg_flags = Layout::section_flags_to_segment(flags);
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2010-01-06 23:37:18 +01:00
|
|
|
// Check for --section-start.
|
|
|
|
uint64_t addr;
|
|
|
|
bool is_address_set = parameters->options().section_start(os->name(), &addr);
|
2009-11-04 16:56:03 +01:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
// In general the only thing we really care about for PT_LOAD
|
|
|
|
// segments is whether or not they are writable, so that is how we
|
2009-06-22 08:51:53 +02:00
|
|
|
// search for them. Large data sections also go into their own
|
|
|
|
// PT_LOAD segment. People who need segments sorted on some other
|
2008-03-11 17:50:08 +01:00
|
|
|
// basis will have to use a linker script.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
Segment_list::const_iterator p;
|
|
|
|
for (p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
2009-06-22 08:51:53 +02:00
|
|
|
if ((*p)->type() != elfcpp::PT_LOAD)
|
|
|
|
continue;
|
|
|
|
if (!parameters->options().omagic()
|
|
|
|
&& ((*p)->flags() & elfcpp::PF_W) != (seg_flags & elfcpp::PF_W))
|
|
|
|
continue;
|
|
|
|
// If -Tbss was specified, we need to separate the data and BSS
|
|
|
|
// segments.
|
|
|
|
if (parameters->options().user_set_Tbss())
|
|
|
|
{
|
|
|
|
if ((os->type() == elfcpp::SHT_NOBITS)
|
|
|
|
== (*p)->has_any_data_sections())
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (os->is_large_data_section() && !(*p)->is_large_data_segment())
|
|
|
|
continue;
|
2008-03-11 17:50:08 +01:00
|
|
|
|
2010-01-06 23:37:18 +01:00
|
|
|
if (is_address_set)
|
|
|
|
{
|
|
|
|
if ((*p)->are_addresses_set())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
(*p)->add_initial_output_data(os);
|
|
|
|
(*p)->update_flags_for_output_section(seg_flags);
|
|
|
|
(*p)->set_addresses(addr, addr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*p)->add_output_section(os, seg_flags, true);
|
2009-06-22 08:51:53 +02:00
|
|
|
break;
|
2008-03-11 17:50:08 +01:00
|
|
|
}
|
2006-09-26 23:00:34 +02:00
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
if (p == this->segment_list_.end())
|
|
|
|
{
|
|
|
|
Output_segment* oseg = this->make_output_segment(elfcpp::PT_LOAD,
|
|
|
|
seg_flags);
|
2009-06-22 08:51:53 +02:00
|
|
|
if (os->is_large_data_section())
|
|
|
|
oseg->set_is_large_data_segment();
|
2010-01-06 23:37:18 +01:00
|
|
|
oseg->add_output_section(os, seg_flags, true);
|
|
|
|
if (is_address_set)
|
|
|
|
oseg->set_addresses(addr, addr);
|
2006-09-22 00:13:18 +02:00
|
|
|
}
|
|
|
|
|
2008-03-11 17:50:08 +01:00
|
|
|
// If we see a loadable SHT_NOTE section, we create a PT_NOTE
|
|
|
|
// segment.
|
|
|
|
if (os->type() == elfcpp::SHT_NOTE)
|
|
|
|
{
|
|
|
|
// See if we already have an equivalent PT_NOTE segment.
|
|
|
|
for (p = this->segment_list_.begin();
|
|
|
|
p != segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() == elfcpp::PT_NOTE
|
|
|
|
&& (((*p)->flags() & elfcpp::PF_W)
|
|
|
|
== (seg_flags & elfcpp::PF_W)))
|
|
|
|
{
|
2009-11-04 16:56:03 +01:00
|
|
|
(*p)->add_output_section(os, seg_flags, false);
|
2008-03-11 17:50:08 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p == this->segment_list_.end())
|
|
|
|
{
|
|
|
|
Output_segment* oseg = this->make_output_segment(elfcpp::PT_NOTE,
|
|
|
|
seg_flags);
|
2009-11-04 16:56:03 +01:00
|
|
|
oseg->add_output_section(os, seg_flags, false);
|
2008-03-11 17:50:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we see a loadable SHF_TLS section, we create a PT_TLS
|
|
|
|
// segment. There can only be one such segment.
|
|
|
|
if ((flags & elfcpp::SHF_TLS) != 0)
|
|
|
|
{
|
|
|
|
if (this->tls_segment_ == NULL)
|
2008-08-13 09:37:46 +02:00
|
|
|
this->make_output_segment(elfcpp::PT_TLS, seg_flags);
|
2009-11-04 16:56:03 +01:00
|
|
|
this->tls_segment_->add_output_section(os, seg_flags, false);
|
2008-03-11 17:50:08 +01:00
|
|
|
}
|
2008-05-20 06:00:47 +02:00
|
|
|
|
|
|
|
// If -z relro is in effect, and we see a relro section, we create a
|
|
|
|
// PT_GNU_RELRO segment. There can only be one such segment.
|
|
|
|
if (os->is_relro() && parameters->options().relro())
|
|
|
|
{
|
|
|
|
gold_assert(seg_flags == (elfcpp::PF_R | elfcpp::PF_W));
|
|
|
|
if (this->relro_segment_ == NULL)
|
2008-08-13 09:37:46 +02:00
|
|
|
this->make_output_segment(elfcpp::PT_GNU_RELRO, seg_flags);
|
2009-11-04 16:56:03 +01:00
|
|
|
this->relro_segment_->add_output_section(os, seg_flags, false);
|
2008-05-20 06:00:47 +02:00
|
|
|
}
|
2006-09-22 00:13:18 +02:00
|
|
|
}
|
|
|
|
|
2008-02-28 05:45:47 +01:00
|
|
|
// Make an output section for a script.
|
|
|
|
|
|
|
|
Output_section*
|
2010-04-09 19:32:58 +02:00
|
|
|
Layout::make_output_section_for_script(
|
|
|
|
const char* name,
|
|
|
|
Script_sections::Section_type section_type)
|
2008-02-28 05:45:47 +01:00
|
|
|
{
|
|
|
|
name = this->namepool_.add(name, false, NULL);
|
2010-04-09 19:32:58 +02:00
|
|
|
elfcpp::Elf_Xword sh_flags = elfcpp::SHF_ALLOC;
|
|
|
|
if (section_type == Script_sections::ST_NOLOAD)
|
|
|
|
sh_flags = 0;
|
2008-02-28 05:45:47 +01:00
|
|
|
Output_section* os = this->make_output_section(name, elfcpp::SHT_PROGBITS,
|
2010-04-09 19:32:58 +02:00
|
|
|
sh_flags, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false);
|
2008-02-28 05:45:47 +01:00
|
|
|
os->set_found_in_sections_clause();
|
2010-04-09 19:32:58 +02:00
|
|
|
if (section_type == Script_sections::ST_NOLOAD)
|
|
|
|
os->set_is_noload();
|
2008-02-28 05:45:47 +01:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
// Return the number of segments we expect to see.
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Layout::expected_segment_count() const
|
|
|
|
{
|
|
|
|
size_t ret = this->segment_list_.size();
|
|
|
|
|
|
|
|
// If we didn't see a SECTIONS clause in a linker script, we should
|
|
|
|
// already have the complete list of segments. Otherwise we ask the
|
|
|
|
// SECTIONS clause how many segments it expects, and add in the ones
|
|
|
|
// we already have (PT_GNU_STACK, PT_GNU_EH_FRAME, etc.)
|
|
|
|
|
|
|
|
if (!this->script_options_->saw_sections_clause())
|
|
|
|
return ret;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
const Script_sections* ss = this->script_options_->script_sections();
|
|
|
|
return ret + ss->expected_segment_count(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-23 07:05:48 +02:00
|
|
|
// Handle the .note.GNU-stack section at layout time. SEEN_GNU_STACK
|
|
|
|
// is whether we saw a .note.GNU-stack section in the object file.
|
|
|
|
// GNU_STACK_FLAGS is the section flags. The flags give the
|
|
|
|
// protection required for stack memory. We record this in an
|
|
|
|
// executable as a PT_GNU_STACK segment. If an object file does not
|
|
|
|
// have a .note.GNU-stack segment, we must assume that it is an old
|
|
|
|
// object. On some targets that will force an executable stack.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags)
|
|
|
|
{
|
|
|
|
if (!seen_gnu_stack)
|
|
|
|
this->input_without_gnu_stack_note_ = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this->input_with_gnu_stack_note_ = true;
|
|
|
|
if ((gnu_stack_flags & elfcpp::SHF_EXECINSTR) != 0)
|
|
|
|
this->input_requires_executable_stack_ = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 21:48:51 +02:00
|
|
|
// Create automatic note sections.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::create_notes()
|
|
|
|
{
|
|
|
|
this->create_gold_note();
|
|
|
|
this->create_executable_stack_info();
|
|
|
|
this->create_build_id();
|
|
|
|
}
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
// Create the dynamic sections which are needed before we read the
|
|
|
|
// relocs.
|
|
|
|
|
|
|
|
void
|
2008-01-26 02:17:45 +01:00
|
|
|
Layout::create_initial_dynamic_sections(Symbol_table* symtab)
|
2006-11-29 18:56:40 +01:00
|
|
|
{
|
2007-10-17 01:23:08 +02:00
|
|
|
if (parameters->doing_static_link())
|
2006-11-29 18:56:40 +01:00
|
|
|
return;
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
this->dynamic_section_ = this->choose_output_section(NULL, ".dynamic",
|
|
|
|
elfcpp::SHT_DYNAMIC,
|
|
|
|
(elfcpp::SHF_ALLOC
|
|
|
|
| elfcpp::SHF_WRITE),
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
true, false, false);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2009-12-30 05:16:50 +01:00
|
|
|
this->dynamic_symbol_ =
|
|
|
|
symtab->define_in_output_data("_DYNAMIC", NULL, Symbol_table::PREDEFINED,
|
|
|
|
this->dynamic_section_, 0, 0,
|
|
|
|
elfcpp::STT_OBJECT, elfcpp::STB_LOCAL,
|
|
|
|
elfcpp::STV_HIDDEN, 0, false, false);
|
2006-12-01 17:51:25 +01:00
|
|
|
|
2007-09-26 09:01:35 +02:00
|
|
|
this->dynamic_data_ = new Output_data_dynamic(&this->dynpool_);
|
2006-12-01 17:51:25 +01:00
|
|
|
|
|
|
|
this->dynamic_section_->add_output_section_data(this->dynamic_data_);
|
2006-11-29 18:56:40 +01:00
|
|
|
}
|
|
|
|
|
2007-09-22 06:42:09 +02:00
|
|
|
// For each output section whose name can be represented as C symbol,
|
|
|
|
// define __start and __stop symbols for the section. This is a GNU
|
|
|
|
// extension.
|
|
|
|
|
|
|
|
void
|
2008-01-26 02:17:45 +01:00
|
|
|
Layout::define_section_symbols(Symbol_table* symtab)
|
2007-09-22 06:42:09 +02:00
|
|
|
{
|
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
const char* const name = (*p)->name();
|
2010-01-07 08:14:30 +01:00
|
|
|
if (is_cident(name))
|
2007-09-22 06:42:09 +02:00
|
|
|
{
|
|
|
|
const std::string name_string(name);
|
2010-01-07 08:14:30 +01:00
|
|
|
const std::string start_name(cident_section_start_prefix
|
|
|
|
+ name_string);
|
|
|
|
const std::string stop_name(cident_section_stop_prefix
|
|
|
|
+ name_string);
|
2007-09-22 06:42:09 +02:00
|
|
|
|
2008-01-26 02:17:45 +01:00
|
|
|
symtab->define_in_output_data(start_name.c_str(),
|
2007-09-22 06:42:09 +02:00
|
|
|
NULL, // version
|
2009-12-29 01:31:48 +01:00
|
|
|
Symbol_table::PREDEFINED,
|
2007-09-22 06:42:09 +02:00
|
|
|
*p,
|
|
|
|
0, // value
|
|
|
|
0, // symsize
|
|
|
|
elfcpp::STT_NOTYPE,
|
|
|
|
elfcpp::STB_GLOBAL,
|
|
|
|
elfcpp::STV_DEFAULT,
|
|
|
|
0, // nonvis
|
|
|
|
false, // offset_is_from_end
|
2008-02-04 06:43:05 +01:00
|
|
|
true); // only_if_ref
|
2007-09-22 06:42:09 +02:00
|
|
|
|
2008-01-26 02:17:45 +01:00
|
|
|
symtab->define_in_output_data(stop_name.c_str(),
|
2007-09-22 06:42:09 +02:00
|
|
|
NULL, // version
|
2009-12-29 01:31:48 +01:00
|
|
|
Symbol_table::PREDEFINED,
|
2007-09-22 06:42:09 +02:00
|
|
|
*p,
|
|
|
|
0, // value
|
|
|
|
0, // symsize
|
|
|
|
elfcpp::STT_NOTYPE,
|
|
|
|
elfcpp::STB_GLOBAL,
|
|
|
|
elfcpp::STV_DEFAULT,
|
|
|
|
0, // nonvis
|
|
|
|
true, // offset_is_from_end
|
2008-02-04 06:43:05 +01:00
|
|
|
true); // only_if_ref
|
2007-09-22 06:42:09 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-06 20:32:32 +01:00
|
|
|
// Define symbols for group signatures.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::define_group_signatures(Symbol_table* symtab)
|
|
|
|
{
|
|
|
|
for (Group_signatures::iterator p = this->group_signatures_.begin();
|
|
|
|
p != this->group_signatures_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
Symbol* sym = symtab->lookup(p->signature, NULL);
|
|
|
|
if (sym != NULL)
|
|
|
|
p->section->set_info_symndx(sym);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Force the name of the group section to the group
|
|
|
|
// signature, and use the group's section symbol as the
|
|
|
|
// signature symbol.
|
|
|
|
if (strcmp(p->section->name(), p->signature) != 0)
|
|
|
|
{
|
|
|
|
const char* name = this->namepool_.add(p->signature,
|
|
|
|
true, NULL);
|
|
|
|
p->section->set_name(name);
|
|
|
|
}
|
|
|
|
p->section->set_needs_symtab_index();
|
|
|
|
p->section->set_info_section_symndx(p->section);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this->group_signatures_.clear();
|
|
|
|
}
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Find the first read-only PT_LOAD segment, creating one if
|
|
|
|
// necessary.
|
2006-09-26 23:00:34 +02:00
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
Output_segment*
|
|
|
|
Layout::find_first_load_seg()
|
2006-09-26 23:00:34 +02:00
|
|
|
{
|
2006-09-28 00:53:42 +02:00
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() == elfcpp::PT_LOAD
|
|
|
|
&& ((*p)->flags() & elfcpp::PF_R) != 0
|
2008-07-23 01:01:20 +02:00
|
|
|
&& (parameters->options().omagic()
|
|
|
|
|| ((*p)->flags() & elfcpp::PF_W) == 0))
|
2006-09-28 00:53:42 +02:00
|
|
|
return *p;
|
|
|
|
}
|
|
|
|
|
2008-02-04 23:54:31 +01:00
|
|
|
gold_assert(!this->script_options_->saw_phdrs_clause());
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_segment* load_seg = this->make_output_segment(elfcpp::PT_LOAD,
|
|
|
|
elfcpp::PF_R);
|
2006-09-28 00:53:42 +02:00
|
|
|
return load_seg;
|
2006-09-26 23:00:34 +02:00
|
|
|
}
|
|
|
|
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
// Save states of all current output segments. Store saved states
|
|
|
|
// in SEGMENT_STATES.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::save_segments(Segment_states* segment_states)
|
|
|
|
{
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
Output_segment* segment = *p;
|
|
|
|
// Shallow copy.
|
|
|
|
Output_segment* copy = new Output_segment(*segment);
|
|
|
|
(*segment_states)[segment] = copy;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restore states of output segments and delete any segment not found in
|
|
|
|
// SEGMENT_STATES.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::restore_segments(const Segment_states* segment_states)
|
|
|
|
{
|
|
|
|
// Go through the segment list and remove any segment added in the
|
|
|
|
// relaxation loop.
|
|
|
|
this->tls_segment_ = NULL;
|
|
|
|
this->relro_segment_ = NULL;
|
|
|
|
Segment_list::iterator list_iter = this->segment_list_.begin();
|
|
|
|
while (list_iter != this->segment_list_.end())
|
|
|
|
{
|
|
|
|
Output_segment* segment = *list_iter;
|
|
|
|
Segment_states::const_iterator states_iter =
|
|
|
|
segment_states->find(segment);
|
|
|
|
if (states_iter != segment_states->end())
|
|
|
|
{
|
|
|
|
const Output_segment* copy = states_iter->second;
|
|
|
|
// Shallow copy to restore states.
|
|
|
|
*segment = *copy;
|
|
|
|
|
|
|
|
// Also fix up TLS and RELRO segment pointers as appropriate.
|
|
|
|
if (segment->type() == elfcpp::PT_TLS)
|
|
|
|
this->tls_segment_ = segment;
|
|
|
|
else if (segment->type() == elfcpp::PT_GNU_RELRO)
|
|
|
|
this->relro_segment_ = segment;
|
|
|
|
|
|
|
|
++list_iter;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
list_iter = this->segment_list_.erase(list_iter);
|
|
|
|
// This is a segment created during section layout. It should be
|
|
|
|
// safe to remove it since we should have removed all pointers to it.
|
|
|
|
delete segment;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clean up after relaxation so that sections can be laid out again.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::clean_up_after_relaxation()
|
|
|
|
{
|
|
|
|
// Restore the segments to point state just prior to the relaxation loop.
|
|
|
|
Script_sections* script_section = this->script_options_->script_sections();
|
|
|
|
script_section->release_segments();
|
|
|
|
this->restore_segments(this->segment_states_);
|
|
|
|
|
|
|
|
// Reset section addresses and file offsets
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
(*p)->restore_states();
|
2010-01-23 02:07:59 +01:00
|
|
|
|
|
|
|
// If an input section changes size because of relaxation,
|
|
|
|
// we need to adjust the section offsets of all input sections.
|
|
|
|
// after such a section.
|
|
|
|
if ((*p)->section_offsets_need_adjustment())
|
|
|
|
(*p)->adjust_section_offsets();
|
|
|
|
|
|
|
|
(*p)->reset_address_and_file_offset();
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reset special output object address and file offsets.
|
|
|
|
for (Data_list::iterator p = this->special_output_list_.begin();
|
|
|
|
p != this->special_output_list_.end();
|
|
|
|
++p)
|
|
|
|
(*p)->reset_address_and_file_offset();
|
|
|
|
|
|
|
|
// A linker script may have created some output section data objects.
|
|
|
|
// They are useless now.
|
|
|
|
for (Output_section_data_list::const_iterator p =
|
|
|
|
this->script_output_section_data_list_.begin();
|
|
|
|
p != this->script_output_section_data_list_.end();
|
|
|
|
++p)
|
|
|
|
delete *p;
|
|
|
|
this->script_output_section_data_list_.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Prepare for relaxation.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::prepare_for_relaxation()
|
|
|
|
{
|
|
|
|
// Create an relaxation debug check if in debugging mode.
|
|
|
|
if (is_debugging_enabled(DEBUG_RELAXATION))
|
|
|
|
this->relaxation_debug_check_ = new Relaxation_debug_check();
|
|
|
|
|
|
|
|
// Save segment states.
|
|
|
|
this->segment_states_ = new Segment_states();
|
|
|
|
this->save_segments(this->segment_states_);
|
|
|
|
|
|
|
|
for(Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
(*p)->save_states();
|
|
|
|
|
|
|
|
if (is_debugging_enabled(DEBUG_RELAXATION))
|
|
|
|
this->relaxation_debug_check_->check_output_data_for_reset_values(
|
|
|
|
this->section_list_, this->special_output_list_);
|
|
|
|
|
|
|
|
// Also enable recording of output section data from scripts.
|
|
|
|
this->record_output_section_data_from_script_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Relaxation loop body: If target has no relaxation, this runs only once
|
|
|
|
// Otherwise, the target relaxation hook is called at the end of
|
|
|
|
// each iteration. If the hook returns true, it means re-layout of
|
|
|
|
// section is required.
|
|
|
|
//
|
|
|
|
// The number of segments created by a linking script without a PHDRS
|
|
|
|
// clause may be affected by section sizes and alignments. There is
|
|
|
|
// a remote chance that relaxation causes different number of PT_LOAD
|
|
|
|
// segments are created and sections are attached to different segments.
|
|
|
|
// Therefore, we always throw away all segments created during section
|
|
|
|
// layout. In order to be able to restart the section layout, we keep
|
|
|
|
// a copy of the segment list right before the relaxation loop and use
|
|
|
|
// that to restore the segments.
|
|
|
|
//
|
|
|
|
// PASS is the current relaxation pass number.
|
|
|
|
// SYMTAB is a symbol table.
|
|
|
|
// PLOAD_SEG is the address of a pointer for the load segment.
|
|
|
|
// PHDR_SEG is a pointer to the PHDR segment.
|
|
|
|
// SEGMENT_HEADERS points to the output segment header.
|
|
|
|
// FILE_HEADER points to the output file header.
|
|
|
|
// PSHNDX is the address to store the output section index.
|
|
|
|
|
|
|
|
off_t inline
|
|
|
|
Layout::relaxation_loop_body(
|
|
|
|
int pass,
|
|
|
|
Target* target,
|
|
|
|
Symbol_table* symtab,
|
|
|
|
Output_segment** pload_seg,
|
|
|
|
Output_segment* phdr_seg,
|
|
|
|
Output_segment_headers* segment_headers,
|
|
|
|
Output_file_header* file_header,
|
|
|
|
unsigned int* pshndx)
|
|
|
|
{
|
|
|
|
// If this is not the first iteration, we need to clean up after
|
|
|
|
// relaxation so that we can lay out the sections again.
|
|
|
|
if (pass != 0)
|
|
|
|
this->clean_up_after_relaxation();
|
|
|
|
|
|
|
|
// If there is a SECTIONS clause, put all the input sections into
|
|
|
|
// the required order.
|
|
|
|
Output_segment* load_seg;
|
|
|
|
if (this->script_options_->saw_sections_clause())
|
|
|
|
load_seg = this->set_section_addresses_from_script(symtab);
|
|
|
|
else if (parameters->options().relocatable())
|
|
|
|
load_seg = NULL;
|
|
|
|
else
|
|
|
|
load_seg = this->find_first_load_seg();
|
|
|
|
|
|
|
|
if (parameters->options().oformat_enum()
|
|
|
|
!= General_options::OBJECT_FORMAT_ELF)
|
|
|
|
load_seg = NULL;
|
|
|
|
|
2009-12-31 06:43:29 +01:00
|
|
|
// If the user set the address of the text segment, that may not be
|
|
|
|
// compatible with putting the segment headers and file headers into
|
|
|
|
// that segment.
|
|
|
|
if (parameters->options().user_set_Ttext())
|
|
|
|
load_seg = NULL;
|
|
|
|
|
2009-10-16 07:16:09 +02:00
|
|
|
gold_assert(phdr_seg == NULL
|
|
|
|
|| load_seg != NULL
|
|
|
|
|| this->script_options_->saw_sections_clause());
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
|
2010-01-06 23:37:18 +01:00
|
|
|
// If the address of the load segment we found has been set by
|
|
|
|
// --section-start rather than by a script, then we don't want to
|
|
|
|
// use it for the file and segment headers.
|
|
|
|
if (load_seg != NULL
|
|
|
|
&& load_seg->are_addresses_set()
|
|
|
|
&& !this->script_options_->saw_sections_clause())
|
|
|
|
load_seg = NULL;
|
|
|
|
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
// Lay out the segment headers.
|
|
|
|
if (!parameters->options().relocatable())
|
|
|
|
{
|
|
|
|
gold_assert(segment_headers != NULL);
|
|
|
|
if (load_seg != NULL)
|
|
|
|
load_seg->add_initial_output_data(segment_headers);
|
|
|
|
if (phdr_seg != NULL)
|
|
|
|
phdr_seg->add_initial_output_data(segment_headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Lay out the file header.
|
|
|
|
if (load_seg != NULL)
|
|
|
|
load_seg->add_initial_output_data(file_header);
|
|
|
|
|
|
|
|
if (this->script_options_->saw_phdrs_clause()
|
|
|
|
&& !parameters->options().relocatable())
|
|
|
|
{
|
|
|
|
// Support use of FILEHDRS and PHDRS attachments in a PHDRS
|
|
|
|
// clause in a linker script.
|
|
|
|
Script_sections* ss = this->script_options_->script_sections();
|
|
|
|
ss->put_headers_in_phdrs(file_header, segment_headers);
|
|
|
|
}
|
|
|
|
|
|
|
|
// We set the output section indexes in set_segment_offsets and
|
|
|
|
// set_section_indexes.
|
|
|
|
*pshndx = 1;
|
|
|
|
|
|
|
|
// Set the file offsets of all the segments, and all the sections
|
|
|
|
// they contain.
|
|
|
|
off_t off;
|
|
|
|
if (!parameters->options().relocatable())
|
|
|
|
off = this->set_segment_offsets(target, load_seg, pshndx);
|
|
|
|
else
|
|
|
|
off = this->set_relocatable_section_offsets(file_header, pshndx);
|
|
|
|
|
|
|
|
// Verify that the dummy relaxation does not change anything.
|
|
|
|
if (is_debugging_enabled(DEBUG_RELAXATION))
|
|
|
|
{
|
|
|
|
if (pass == 0)
|
|
|
|
this->relaxation_debug_check_->read_sections(this->section_list_);
|
|
|
|
else
|
|
|
|
this->relaxation_debug_check_->verify_sections(this->section_list_);
|
|
|
|
}
|
|
|
|
|
|
|
|
*pload_seg = load_seg;
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2010-06-02 01:37:58 +02:00
|
|
|
// Search the list of patterns and find the postion of the given section
|
|
|
|
// name in the output section. If the section name matches a glob
|
|
|
|
// pattern and a non-glob name, then the non-glob position takes
|
|
|
|
// precedence. Return 0 if no match is found.
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
Layout::find_section_order_index(const std::string& section_name)
|
|
|
|
{
|
|
|
|
Unordered_map<std::string, unsigned int>::iterator map_it;
|
|
|
|
map_it = this->input_section_position_.find(section_name);
|
|
|
|
if (map_it != this->input_section_position_.end())
|
|
|
|
return map_it->second;
|
|
|
|
|
|
|
|
// Absolute match failed. Linear search the glob patterns.
|
|
|
|
std::vector<std::string>::iterator it;
|
|
|
|
for (it = this->input_section_glob_.begin();
|
|
|
|
it != this->input_section_glob_.end();
|
|
|
|
++it)
|
|
|
|
{
|
|
|
|
if (fnmatch((*it).c_str(), section_name.c_str(), FNM_NOESCAPE) == 0)
|
|
|
|
{
|
|
|
|
map_it = this->input_section_position_.find(*it);
|
|
|
|
gold_assert(map_it != this->input_section_position_.end());
|
|
|
|
return map_it->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read the sequence of input sections from the file specified with
|
|
|
|
// --section-ordering-file.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::read_layout_from_file()
|
|
|
|
{
|
|
|
|
const char* filename = parameters->options().section_ordering_file();
|
|
|
|
std::ifstream in;
|
|
|
|
std::string line;
|
|
|
|
|
|
|
|
in.open(filename);
|
|
|
|
if (!in)
|
|
|
|
gold_fatal(_("unable to open --section-ordering-file file %s: %s"),
|
|
|
|
filename, strerror(errno));
|
|
|
|
|
|
|
|
std::getline(in, line); // this chops off the trailing \n, if any
|
|
|
|
unsigned int position = 1;
|
|
|
|
|
|
|
|
while (in)
|
|
|
|
{
|
|
|
|
if (!line.empty() && line[line.length() - 1] == '\r') // Windows
|
|
|
|
line.resize(line.length() - 1);
|
|
|
|
// Ignore comments, beginning with '#'
|
|
|
|
if (line[0] == '#')
|
|
|
|
{
|
|
|
|
std::getline(in, line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
this->input_section_position_[line] = position;
|
|
|
|
// Store all glob patterns in a vector.
|
|
|
|
if (is_wildcard_string(line.c_str()))
|
|
|
|
this->input_section_glob_.push_back(line);
|
|
|
|
position++;
|
|
|
|
std::getline(in, line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-26 23:00:34 +02:00
|
|
|
// Finalize the layout. When this is called, we have created all the
|
|
|
|
// output sections and all the output segments which are based on
|
|
|
|
// input sections. We have several things to do, and we have to do
|
|
|
|
// them in the right order, so that we get the right results correctly
|
|
|
|
// and efficiently.
|
|
|
|
|
|
|
|
// 1) Finalize the list of output segments and create the segment
|
|
|
|
// table header.
|
|
|
|
|
|
|
|
// 2) Finalize the dynamic symbol table and associated sections.
|
|
|
|
|
|
|
|
// 3) Determine the final file offset of all the output segments.
|
|
|
|
|
|
|
|
// 4) Determine the final file offset of all the SHF_ALLOC output
|
|
|
|
// sections.
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// 5) Create the symbol table sections and the section name table
|
|
|
|
// section.
|
|
|
|
|
|
|
|
// 6) Finalize the symbol table: set symbol values to their final
|
2006-09-26 23:00:34 +02:00
|
|
|
// value and make a final determination of which symbols are going
|
|
|
|
// into the output symbol table.
|
|
|
|
|
|
|
|
// 7) Create the section table header.
|
|
|
|
|
|
|
|
// 8) Determine the final file offset of all the output sections which
|
|
|
|
// are not SHF_ALLOC, including the section table header.
|
|
|
|
|
|
|
|
// 9) Finalize the ELF file header.
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// This function returns the size of the output file.
|
|
|
|
|
|
|
|
off_t
|
2007-12-14 20:00:21 +01:00
|
|
|
Layout::finalize(const Input_objects* input_objects, Symbol_table* symtab,
|
2008-02-28 01:18:24 +01:00
|
|
|
Target* target, const Task* task)
|
2006-09-26 23:00:34 +02:00
|
|
|
{
|
2009-12-04 00:13:55 +01:00
|
|
|
target->finalize_sections(this, input_objects, symtab);
|
2006-12-01 00:52:50 +01:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
this->count_local_symbols(task, input_objects);
|
2007-12-06 06:55:50 +01:00
|
|
|
|
2009-06-24 02:38:00 +02:00
|
|
|
this->link_stabs_sections();
|
2007-10-09 23:37:55 +02:00
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_segment* phdr_seg = NULL;
|
2008-02-28 01:18:24 +01:00
|
|
|
if (!parameters->options().relocatable() && !parameters->doing_static_link())
|
2006-09-26 23:00:34 +02:00
|
|
|
{
|
2006-11-14 20:21:05 +01:00
|
|
|
// There was a dynamic object in the link. We need to create
|
|
|
|
// some information for the dynamic linker.
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
// Create the PT_PHDR segment which will hold the program
|
|
|
|
// headers.
|
2008-02-04 23:54:31 +01:00
|
|
|
if (!this->script_options_->saw_phdrs_clause())
|
|
|
|
phdr_seg = this->make_output_segment(elfcpp::PT_PHDR, elfcpp::PF_R);
|
2008-02-04 07:45:50 +01:00
|
|
|
|
2006-12-06 01:02:36 +01:00
|
|
|
// Create the dynamic symbol table, including the hash table.
|
|
|
|
Output_section* dynstr;
|
|
|
|
std::vector<Symbol*> dynamic_symbols;
|
|
|
|
unsigned int local_dynamic_count;
|
2008-02-26 23:48:08 +01:00
|
|
|
Versions versions(*this->script_options()->version_script_info(),
|
|
|
|
&this->dynpool_);
|
2008-01-26 02:17:45 +01:00
|
|
|
this->create_dynamic_symtab(input_objects, symtab, &dynstr,
|
2006-12-06 01:02:36 +01:00
|
|
|
&local_dynamic_count, &dynamic_symbols,
|
|
|
|
&versions);
|
2006-11-14 20:21:05 +01:00
|
|
|
|
|
|
|
// Create the .interp section to hold the name of the
|
|
|
|
// interpreter, and put it in a PT_INTERP segment.
|
2008-02-28 01:18:24 +01:00
|
|
|
if (!parameters->options().shared())
|
2007-11-01 01:19:30 +01:00
|
|
|
this->create_interp(target);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
|
|
|
// Finish the .dynamic section to hold the dynamic data, and put
|
|
|
|
// it in a PT_DYNAMIC segment.
|
2006-12-01 17:51:25 +01:00
|
|
|
this->finish_dynamic_section(input_objects, symtab);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
// We should have added everything we need to the dynamic string
|
|
|
|
// table.
|
|
|
|
this->dynpool_.set_string_offsets();
|
|
|
|
|
|
|
|
// Create the version sections. We can't do this until the
|
|
|
|
// dynamic string table is complete.
|
2007-10-23 01:08:22 +02:00
|
|
|
this->create_version_sections(&versions, symtab, local_dynamic_count,
|
2006-12-06 01:02:36 +01:00
|
|
|
dynamic_symbols, dynstr);
|
2009-12-30 05:16:50 +01:00
|
|
|
|
|
|
|
// Set the size of the _DYNAMIC symbol. We can't do this until
|
|
|
|
// after we call create_version_sections.
|
|
|
|
this->set_dynamic_symbol_size(symtab);
|
2006-09-26 23:00:34 +02:00
|
|
|
}
|
2009-04-24 17:44:02 +02:00
|
|
|
|
|
|
|
if (this->incremental_inputs_)
|
|
|
|
{
|
|
|
|
this->incremental_inputs_->finalize();
|
|
|
|
this->create_incremental_info_sections();
|
|
|
|
}
|
2006-09-26 23:00:34 +02:00
|
|
|
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
// Create segment headers.
|
|
|
|
Output_segment_headers* segment_headers =
|
|
|
|
(parameters->options().relocatable()
|
|
|
|
? NULL
|
|
|
|
: new Output_segment_headers(this->segment_list_));
|
2006-09-28 00:53:42 +02:00
|
|
|
|
|
|
|
// Lay out the file header.
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
Output_file_header* file_header
|
|
|
|
= new Output_file_header(target, symtab, segment_headers,
|
|
|
|
parameters->options().entry());
|
2008-02-04 06:43:05 +01:00
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
this->special_output_list_.push_back(file_header);
|
2008-02-06 09:13:50 +01:00
|
|
|
if (segment_headers != NULL)
|
|
|
|
this->special_output_list_.push_back(segment_headers);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
// Find approriate places for orphan output sections if we are using
|
|
|
|
// a linker script.
|
|
|
|
if (this->script_options_->saw_sections_clause())
|
|
|
|
this->place_orphan_sections_in_script();
|
|
|
|
|
|
|
|
Output_segment* load_seg;
|
|
|
|
off_t off;
|
|
|
|
unsigned int shndx;
|
|
|
|
int pass = 0;
|
|
|
|
|
|
|
|
// Take a snapshot of the section layout as needed.
|
|
|
|
if (target->may_relax())
|
|
|
|
this->prepare_for_relaxation();
|
|
|
|
|
|
|
|
// Run the relaxation loop to lay out sections.
|
|
|
|
do
|
2008-02-04 23:54:31 +01:00
|
|
|
{
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
off = this->relaxation_loop_body(pass, target, symtab, &load_seg,
|
|
|
|
phdr_seg, segment_headers, file_header,
|
|
|
|
&shndx);
|
|
|
|
pass++;
|
2008-02-04 23:54:31 +01:00
|
|
|
}
|
2009-10-09 Doug Kwan <dougkwan@google.com>
* layout.cc (Layout::make_output_section): Call target hook to make
ordinary output section.
(Layout::finalize): Adjust parameter list of call the
Target::may_relax().
* layout.h (class Layout::section_list): New method.
* merge.h (Output_merge_base::entsize): Change visibility to public.
(Output_merge_base::is_string, Output_merge_base::do_is_string):
New methods.
(Output_merge_string::do_is_string): New method.
* object.cc (Sized_relobj::do_setup): renamed from
Sized_relobj::set_up.
* object.h (Sized_relobj::adjust_shndx,
Sized_relobj::initializ_input_to_output_maps,
Sized_relobj::free_input_to_output_maps): Change visibilities to
protected.
(Sized_relobj::setup): Virtualize.
(Sized_relobj::do_setup): New method declaration.
(Sized_relobj::invalidate_section_offset,
Sized_relobj::do_invalidate_section_offset): New method decfinitions.
(Sized_relobj::elf_file, Sized_relobj::local_values): New methods.
* options.cc (parse_int): New function.
* options.h (parse_int): New declaration.
(DEFINE_int): New macro.
(stub_group_size): New option.
* output.cc (Output_section::Output_section): Initialize memebers
merge_section_map_, merge_section_by_properties_map_,
relaxed_input_section_map_, is_relaxed_input_section_map_valid_.
(Output_section::add_input_section): Handled deferred code-fill
generation and remove an old comment.
(Output_section::add_relaxed_input_section): New method definition.
(Output_section::add_merge_input_section): Use merge section by
properties map to speed to search. Update merge section maps
as appropriate.
(Output_section::build_relaxation_map): New method definition.
(Output_section::convert_input_sections_in_list_to_relaxed_sections):
Same.
(Output_section::relax_input_section): Renamed to
Output_section::convert_input_sections_to_relaxed_sections and change
interface to take a vector of pointers to relaxed sections.
(Output_section::find_merge_section,
Output_section::find_relaxed_input_section): New method definitions.
(Output_section::is_input_address_mapped,
Output_section::output_offset, Output_section::output_address):
Use output section data maps to speed up searching.
(Output_section::find_starting_output_address): Add comments.
(Output_section::do_write,
Output_section::write_to_postprocessing_buffer): Do code-fill
generation as appropriate.
(Output_section::get_input_sections): Invalidate relaxed input section
map.
(Output_section::restore_states): Adjust type of checkpoint .
Invalidate relaxed input section map.
* output.h (Output_merge_base): New class declaration.
(Input_section_specifier): New class defintion.
(class Output_relaxed_input_section) Change base class to
Output_section_data_build.
(Output_relaxed_input_section::Output_relaxed_input_section): Adjust
base class initializer.
(Output_section::add_relaxed_input_section): New method declaration.
(Output_section::Input_section): Change visibility to protected.
(Output_section::Input_section::relobj,
Output_section::Input_section::shndx): Handle relaxed input sections.
Output_section::input_sections) Change visibility to protected. Also
define overload to return a non-const pointer.
(Output_section::Merge_section_properties): New class defintion.
(Output_section::Merge_section_by_properties_map,
Output_section::Output_section_data_by_input_section_map,
Output_section::Relaxation_map): New types.
(Output_section::relax_input_section): Rename method to
Output_section::convert_input_sections_to_relaxed_sections and change
interface to take a vector of relaxed section pointers.
(Output_section::find_merge_section,
Output_section::find_relaxed_input_section,
Output_section::build_relaxation_map,
Output_section::convert_input_sections_in_list_to_relaxed_sections):
New method declarations.
(Output_section::merge_section_map_
Output_section::merge_section_by_properties_map_,
Output_section::relaxed_input_section_map_,
Output_section::is_relaxed_input_section_map_valid_,
Output_section::generate_code_fills_at_write_): New data members.
* script-sections.cc
(Output_section_element_input::set_section_addresses): Call
current_data_size and addralign methods of relaxed input sections.
(Orphan_output_section::set_section_addresses): Call current_data_size
and addralign methods of relaxed input sections.
* symtab.cc (Symbol_table::compute_final_value): Extract template
from the body of Symbol_table::sized_finalize_symbol.
(Symbol_table::sized_finalized_symbol): Call
Symbol_table::compute_final_value.
* symtab.h (Symbol_table::Compute_final_value_status): New enum type.
(Symbol_table::compute_final_value): New templated method declaration.
* target.cc (Target::do_make_output_section): New method defintion.
* target.h (Target::make_output_section): New method declaration.
(Target::relax): Add more parameters for input objects, symbol table
and layout. Adjust call to do_relax.
(Target::do_make_output_section): New method declaration.
(Target::do_relax): Add parameters for input objects, symbol table
and layout.
2009-10-10 01:18:19 +02:00
|
|
|
while (target->may_relax()
|
|
|
|
&& target->relax(pass, input_objects, symtab, this));
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2007-12-21 22:19:45 +01:00
|
|
|
// Set the file offsets of all the non-data sections we've seen so
|
|
|
|
// far which don't have to wait for the input sections. We need
|
|
|
|
// this in order to finalize local symbols in non-allocated
|
|
|
|
// sections.
|
|
|
|
off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
|
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
// Set the section indexes of all unallocated sections seen so far,
|
|
|
|
// in case any of them are somehow referenced by a symbol.
|
|
|
|
shndx = this->set_section_indexes(shndx);
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Create the symbol table sections.
|
2008-04-19 20:30:58 +02:00
|
|
|
this->create_symtab_sections(input_objects, symtab, shndx, &off);
|
2007-12-06 06:55:50 +01:00
|
|
|
if (!parameters->doing_static_link())
|
|
|
|
this->assign_local_dynsym_offsets(input_objects);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2008-01-09 20:57:45 +01:00
|
|
|
// Process any symbol assignments from a linker script. This must
|
|
|
|
// be called after the symbol table has been finalized.
|
|
|
|
this->script_options_->finalize_symbols(symtab, this);
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Create the .shstrtab section.
|
|
|
|
Output_section* shstrtab_section = this->create_shstrtab();
|
|
|
|
|
2007-12-21 22:19:45 +01:00
|
|
|
// Set the file offsets of the rest of the non-data sections which
|
|
|
|
// don't have to wait for the input sections.
|
2007-11-30 01:35:27 +01:00
|
|
|
off = this->set_section_offsets(off, BEFORE_INPUT_SECTIONS_PASS);
|
2007-11-07 23:33:30 +01:00
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
// Now that all sections have been created, set the section indexes
|
|
|
|
// for any sections which haven't been done yet.
|
2007-11-07 23:33:30 +01:00
|
|
|
shndx = this->set_section_indexes(shndx);
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Create the section table header.
|
2008-04-19 20:30:58 +02:00
|
|
|
this->create_shdrs(shstrtab_section, &off);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
// If there are no sections which require postprocessing, we can
|
|
|
|
// handle the section names now, and avoid a resize later.
|
|
|
|
if (!this->any_postprocessing_sections_)
|
|
|
|
off = this->set_section_offsets(off,
|
|
|
|
STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
|
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
file_header->set_section_info(this->section_headers_, shstrtab_section);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
// Now we know exactly where everything goes in the output file
|
|
|
|
// (except for non-allocated sections which require postprocessing).
|
2006-11-29 18:56:40 +01:00
|
|
|
Output_data::layout_complete();
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2007-10-12 07:51:25 +02:00
|
|
|
this->output_file_size_ = off;
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
// Create a note header following the format defined in the ELF ABI.
|
2009-06-24 07:09:11 +02:00
|
|
|
// NAME is the name, NOTE_TYPE is the type, SECTION_NAME is the name
|
|
|
|
// of the section to create, DESCSZ is the size of the descriptor.
|
|
|
|
// ALLOCATE is true if the section should be allocated in memory.
|
|
|
|
// This returns the new note section. It sets *TRAILING_PADDING to
|
|
|
|
// the number of trailing zero bytes required.
|
2007-10-09 23:37:55 +02:00
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
Output_section*
|
2009-03-17 21:36:30 +01:00
|
|
|
Layout::create_note(const char* name, int note_type,
|
|
|
|
const char* section_name, size_t descsz,
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
bool allocate, size_t* trailing_padding)
|
2007-10-09 23:37:55 +02:00
|
|
|
{
|
2007-10-14 05:12:53 +02:00
|
|
|
// Authorities all agree that the values in a .note field should
|
|
|
|
// be aligned on 4-byte boundaries for 32-bit binaries. However,
|
|
|
|
// they differ on what the alignment is for 64-bit binaries.
|
|
|
|
// The GABI says unambiguously they take 8-byte alignment:
|
|
|
|
// http://sco.com/developers/gabi/latest/ch5.pheader.html#note_section
|
|
|
|
// Other documentation says alignment should always be 4 bytes:
|
|
|
|
// http://www.netbsd.org/docs/kernel/elf-notes.html#note-format
|
|
|
|
// GNU ld and GNU readelf both support the latter (at least as of
|
|
|
|
// version 2.16.91), and glibc always generates the latter for
|
|
|
|
// .note.ABI-tag (as of version 1.6), so that's the one we go with
|
|
|
|
// here.
|
2007-10-23 07:05:48 +02:00
|
|
|
#ifdef GABI_FORMAT_FOR_DOTNOTE_SECTION // This is not defined by default.
|
2008-02-28 01:18:24 +01:00
|
|
|
const int size = parameters->target().get_size();
|
2007-10-14 05:12:53 +02:00
|
|
|
#else
|
|
|
|
const int size = 32;
|
|
|
|
#endif
|
2007-10-09 23:37:55 +02:00
|
|
|
|
|
|
|
// The contents of the .note section.
|
|
|
|
size_t namesz = strlen(name) + 1;
|
|
|
|
size_t aligned_namesz = align_address(namesz, size / 8);
|
|
|
|
size_t aligned_descsz = align_address(descsz, size / 8);
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
size_t notehdrsz = 3 * (size / 8) + aligned_namesz;
|
2007-10-09 23:37:55 +02:00
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
unsigned char* buffer = new unsigned char[notehdrsz];
|
|
|
|
memset(buffer, 0, notehdrsz);
|
2007-10-09 23:37:55 +02:00
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
bool is_big_endian = parameters->target().is_big_endian();
|
2007-10-09 23:37:55 +02:00
|
|
|
|
|
|
|
if (size == 32)
|
|
|
|
{
|
|
|
|
if (!is_big_endian)
|
|
|
|
{
|
|
|
|
elfcpp::Swap<32, false>::writeval(buffer, namesz);
|
|
|
|
elfcpp::Swap<32, false>::writeval(buffer + 4, descsz);
|
|
|
|
elfcpp::Swap<32, false>::writeval(buffer + 8, note_type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
elfcpp::Swap<32, true>::writeval(buffer, namesz);
|
|
|
|
elfcpp::Swap<32, true>::writeval(buffer + 4, descsz);
|
|
|
|
elfcpp::Swap<32, true>::writeval(buffer + 8, note_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (size == 64)
|
|
|
|
{
|
|
|
|
if (!is_big_endian)
|
|
|
|
{
|
|
|
|
elfcpp::Swap<64, false>::writeval(buffer, namesz);
|
|
|
|
elfcpp::Swap<64, false>::writeval(buffer + 8, descsz);
|
|
|
|
elfcpp::Swap<64, false>::writeval(buffer + 16, note_type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
elfcpp::Swap<64, true>::writeval(buffer, namesz);
|
|
|
|
elfcpp::Swap<64, true>::writeval(buffer + 8, descsz);
|
|
|
|
elfcpp::Swap<64, true>::writeval(buffer + 16, note_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
|
|
|
|
memcpy(buffer + 3 * (size / 8), name, namesz);
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
elfcpp::Elf_Xword flags = 0;
|
|
|
|
if (allocate)
|
|
|
|
flags = elfcpp::SHF_ALLOC;
|
2009-06-24 07:09:11 +02:00
|
|
|
Output_section* os = this->choose_output_section(NULL, section_name,
|
|
|
|
elfcpp::SHT_NOTE,
|
2009-11-04 16:56:03 +01:00
|
|
|
flags, false, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false);
|
2009-06-24 21:48:51 +02:00
|
|
|
if (os == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
Output_section_data* posd = new Output_data_const_buffer(buffer, notehdrsz,
|
2008-05-21 23:37:44 +02:00
|
|
|
size / 8,
|
|
|
|
"** note header");
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
os->add_output_section_data(posd);
|
|
|
|
|
|
|
|
*trailing_padding = aligned_descsz - descsz;
|
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
// For an executable or shared library, create a note to record the
|
|
|
|
// version of gold used to create the binary.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::create_gold_note()
|
|
|
|
{
|
|
|
|
if (parameters->options().relocatable())
|
|
|
|
return;
|
|
|
|
|
|
|
|
std::string desc = std::string("gold ") + gold::get_version_string();
|
|
|
|
|
|
|
|
size_t trailing_padding;
|
|
|
|
Output_section *os = this->create_note("GNU", elfcpp::NT_GNU_GOLD_VERSION,
|
2009-03-17 21:36:30 +01:00
|
|
|
".note.gnu.gold-version", desc.size(),
|
|
|
|
false, &trailing_padding);
|
2009-06-24 21:48:51 +02:00
|
|
|
if (os == NULL)
|
|
|
|
return;
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
|
|
|
|
Output_section_data* posd = new Output_data_const(desc, 4);
|
2007-10-09 23:37:55 +02:00
|
|
|
os->add_output_section_data(posd);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
|
|
|
|
if (trailing_padding > 0)
|
|
|
|
{
|
2008-05-21 23:37:44 +02:00
|
|
|
posd = new Output_data_zero_fill(trailing_padding, 0);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
os->add_output_section_data(posd);
|
|
|
|
}
|
2007-10-09 23:37:55 +02:00
|
|
|
}
|
|
|
|
|
2007-10-23 07:05:48 +02:00
|
|
|
// Record whether the stack should be executable. This can be set
|
|
|
|
// from the command line using the -z execstack or -z noexecstack
|
|
|
|
// options. Otherwise, if any input file has a .note.GNU-stack
|
|
|
|
// section with the SHF_EXECINSTR flag set, the stack should be
|
|
|
|
// executable. Otherwise, if at least one input file a
|
|
|
|
// .note.GNU-stack section, and some input file has no .note.GNU-stack
|
|
|
|
// section, we use the target default for whether the stack should be
|
|
|
|
// executable. Otherwise, we don't generate a stack note. When
|
|
|
|
// generating a object file, we create a .note.GNU-stack section with
|
|
|
|
// the appropriate marking. When generating an executable or shared
|
|
|
|
// library, we create a PT_GNU_STACK segment.
|
|
|
|
|
|
|
|
void
|
2009-06-24 21:48:51 +02:00
|
|
|
Layout::create_executable_stack_info()
|
2007-10-23 07:05:48 +02:00
|
|
|
{
|
|
|
|
bool is_stack_executable;
|
2009-04-02 06:19:03 +02:00
|
|
|
if (parameters->options().is_execstack_set())
|
|
|
|
is_stack_executable = parameters->options().is_stack_executable();
|
2007-10-23 07:05:48 +02:00
|
|
|
else if (!this->input_with_gnu_stack_note_)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (this->input_requires_executable_stack_)
|
|
|
|
is_stack_executable = true;
|
|
|
|
else if (this->input_without_gnu_stack_note_)
|
2009-06-24 21:48:51 +02:00
|
|
|
is_stack_executable =
|
|
|
|
parameters->target().is_default_stack_executable();
|
2007-10-23 07:05:48 +02:00
|
|
|
else
|
|
|
|
is_stack_executable = false;
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().relocatable())
|
2007-10-23 07:05:48 +02:00
|
|
|
{
|
|
|
|
const char* name = this->namepool_.add(".note.GNU-stack", false, NULL);
|
|
|
|
elfcpp::Elf_Xword flags = 0;
|
|
|
|
if (is_stack_executable)
|
|
|
|
flags |= elfcpp::SHF_EXECINSTR;
|
2009-11-04 16:56:03 +01:00
|
|
|
this->make_output_section(name, elfcpp::SHT_PROGBITS, flags, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false);
|
2007-10-23 07:05:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-02-04 23:54:31 +01:00
|
|
|
if (this->script_options_->saw_phdrs_clause())
|
|
|
|
return;
|
2007-10-23 07:05:48 +02:00
|
|
|
int flags = elfcpp::PF_R | elfcpp::PF_W;
|
|
|
|
if (is_stack_executable)
|
|
|
|
flags |= elfcpp::PF_X;
|
2008-02-04 07:45:50 +01:00
|
|
|
this->make_output_segment(elfcpp::PT_GNU_STACK, flags);
|
2007-10-23 07:05:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
// If --build-id was used, set up the build ID note.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::create_build_id()
|
|
|
|
{
|
|
|
|
if (!parameters->options().user_set_build_id())
|
|
|
|
return;
|
|
|
|
|
|
|
|
const char* style = parameters->options().build_id();
|
|
|
|
if (strcmp(style, "none") == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Set DESCSZ to the size of the note descriptor. When possible,
|
|
|
|
// set DESC to the note descriptor contents.
|
|
|
|
size_t descsz;
|
|
|
|
std::string desc;
|
|
|
|
if (strcmp(style, "md5") == 0)
|
|
|
|
descsz = 128 / 8;
|
|
|
|
else if (strcmp(style, "sha1") == 0)
|
|
|
|
descsz = 160 / 8;
|
|
|
|
else if (strcmp(style, "uuid") == 0)
|
|
|
|
{
|
|
|
|
const size_t uuidsz = 128 / 8;
|
|
|
|
|
|
|
|
char buffer[uuidsz];
|
|
|
|
memset(buffer, 0, uuidsz);
|
|
|
|
|
2008-07-25 06:25:49 +02:00
|
|
|
int descriptor = open_descriptor(-1, "/dev/urandom", O_RDONLY);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
if (descriptor < 0)
|
|
|
|
gold_error(_("--build-id=uuid failed: could not open /dev/urandom: %s"),
|
|
|
|
strerror(errno));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ssize_t got = ::read(descriptor, buffer, uuidsz);
|
2008-07-25 06:25:49 +02:00
|
|
|
release_descriptor(descriptor, true);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
if (got < 0)
|
|
|
|
gold_error(_("/dev/urandom: read failed: %s"), strerror(errno));
|
|
|
|
else if (static_cast<size_t>(got) != uuidsz)
|
|
|
|
gold_error(_("/dev/urandom: expected %zu bytes, got %zd bytes"),
|
|
|
|
uuidsz, got);
|
|
|
|
}
|
|
|
|
|
|
|
|
desc.assign(buffer, uuidsz);
|
|
|
|
descsz = uuidsz;
|
|
|
|
}
|
|
|
|
else if (strncmp(style, "0x", 2) == 0)
|
|
|
|
{
|
|
|
|
hex_init();
|
|
|
|
const char* p = style + 2;
|
|
|
|
while (*p != '\0')
|
|
|
|
{
|
|
|
|
if (hex_p(p[0]) && hex_p(p[1]))
|
|
|
|
{
|
|
|
|
char c = (hex_value(p[0]) << 4) | hex_value(p[1]);
|
|
|
|
desc += c;
|
|
|
|
p += 2;
|
|
|
|
}
|
|
|
|
else if (*p == '-' || *p == ':')
|
|
|
|
++p;
|
|
|
|
else
|
|
|
|
gold_fatal(_("--build-id argument '%s' not a valid hex number"),
|
|
|
|
style);
|
|
|
|
}
|
|
|
|
descsz = desc.size();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_fatal(_("unrecognized --build-id argument '%s'"), style);
|
|
|
|
|
|
|
|
// Create the note.
|
|
|
|
size_t trailing_padding;
|
|
|
|
Output_section* os = this->create_note("GNU", elfcpp::NT_GNU_BUILD_ID,
|
2009-03-17 21:36:30 +01:00
|
|
|
".note.gnu.build-id", descsz, true,
|
|
|
|
&trailing_padding);
|
2009-06-24 21:48:51 +02:00
|
|
|
if (os == NULL)
|
|
|
|
return;
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
|
|
|
|
if (!desc.empty())
|
|
|
|
{
|
|
|
|
// We know the value already, so we fill it in now.
|
|
|
|
gold_assert(desc.size() == descsz);
|
|
|
|
|
|
|
|
Output_section_data* posd = new Output_data_const(desc, 4);
|
|
|
|
os->add_output_section_data(posd);
|
|
|
|
|
|
|
|
if (trailing_padding != 0)
|
|
|
|
{
|
2008-05-21 23:37:44 +02:00
|
|
|
posd = new Output_data_zero_fill(trailing_padding, 0);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
os->add_output_section_data(posd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We need to compute a checksum after we have completed the
|
|
|
|
// link.
|
|
|
|
gold_assert(trailing_padding == 0);
|
2008-05-21 23:37:44 +02:00
|
|
|
this->build_id_note_ = new Output_data_zero_fill(descsz, 4);
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
os->add_output_section_data(this->build_id_note_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-24 02:38:00 +02:00
|
|
|
// If we have both .stabXX and .stabXXstr sections, then the sh_link
|
|
|
|
// field of the former should point to the latter. I'm not sure who
|
|
|
|
// started this, but the GNU linker does it, and some tools depend
|
|
|
|
// upon it.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::link_stabs_sections()
|
|
|
|
{
|
|
|
|
if (!this->have_stabstr_section_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() != elfcpp::SHT_STRTAB)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
const char* name = (*p)->name();
|
|
|
|
if (strncmp(name, ".stab", 5) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
size_t len = strlen(name);
|
|
|
|
if (strcmp(name + len - 3, "str") != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::string stab_name(name, len - 3);
|
|
|
|
Output_section* stab_sec;
|
|
|
|
stab_sec = this->find_output_section(stab_name.c_str());
|
|
|
|
if (stab_sec != NULL)
|
|
|
|
stab_sec->set_link_section(*p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-24 17:44:02 +02:00
|
|
|
// Create .gnu_incremental_inputs and .gnu_incremental_strtab sections needed
|
|
|
|
// for the next run of incremental linking to check what has changed.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::create_incremental_info_sections()
|
|
|
|
{
|
|
|
|
gold_assert(this->incremental_inputs_ != NULL);
|
|
|
|
|
|
|
|
// Add the .gnu_incremental_inputs section.
|
|
|
|
const char *incremental_inputs_name =
|
|
|
|
this->namepool_.add(".gnu_incremental_inputs", false, NULL);
|
|
|
|
Output_section* inputs_os =
|
|
|
|
this->make_output_section(incremental_inputs_name,
|
2009-11-04 16:56:03 +01:00
|
|
|
elfcpp::SHT_GNU_INCREMENTAL_INPUTS, 0,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false, false);
|
2009-04-24 17:44:02 +02:00
|
|
|
Output_section_data* posd =
|
|
|
|
this->incremental_inputs_->create_incremental_inputs_section_data();
|
|
|
|
inputs_os->add_output_section_data(posd);
|
|
|
|
|
|
|
|
// Add the .gnu_incremental_strtab section.
|
|
|
|
const char *incremental_strtab_name =
|
|
|
|
this->namepool_.add(".gnu_incremental_strtab", false, NULL);
|
|
|
|
Output_section* strtab_os = this->make_output_section(incremental_strtab_name,
|
|
|
|
elfcpp::SHT_STRTAB,
|
2009-12-30 07:57:17 +01:00
|
|
|
0, false, false,
|
|
|
|
false, false, false);
|
2009-04-24 17:44:02 +02:00
|
|
|
Output_data_strtab* strtab_data =
|
|
|
|
new Output_data_strtab(this->incremental_inputs_->get_stringpool());
|
|
|
|
strtab_os->add_output_section_data(strtab_data);
|
|
|
|
|
|
|
|
inputs_os->set_link_section(strtab_data);
|
|
|
|
}
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Return whether SEG1 should be before SEG2 in the output file. This
|
|
|
|
// is based entirely on the segment type and flags. When this is
|
|
|
|
// called the segment addresses has normally not yet been set.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Layout::segment_precedes(const Output_segment* seg1,
|
|
|
|
const Output_segment* seg2)
|
|
|
|
{
|
|
|
|
elfcpp::Elf_Word type1 = seg1->type();
|
|
|
|
elfcpp::Elf_Word type2 = seg2->type();
|
|
|
|
|
|
|
|
// The single PT_PHDR segment is required to precede any loadable
|
|
|
|
// segment. We simply make it always first.
|
|
|
|
if (type1 == elfcpp::PT_PHDR)
|
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(type2 != elfcpp::PT_PHDR);
|
2006-09-28 00:53:42 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (type2 == elfcpp::PT_PHDR)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// The single PT_INTERP segment is required to precede any loadable
|
|
|
|
// segment. We simply make it always second.
|
|
|
|
if (type1 == elfcpp::PT_INTERP)
|
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(type2 != elfcpp::PT_INTERP);
|
2006-09-28 00:53:42 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (type2 == elfcpp::PT_INTERP)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We then put PT_LOAD segments before any other segments.
|
|
|
|
if (type1 == elfcpp::PT_LOAD && type2 != elfcpp::PT_LOAD)
|
|
|
|
return true;
|
|
|
|
if (type2 == elfcpp::PT_LOAD && type1 != elfcpp::PT_LOAD)
|
|
|
|
return false;
|
|
|
|
|
2008-05-20 06:00:47 +02:00
|
|
|
// We put the PT_TLS segment last except for the PT_GNU_RELRO
|
|
|
|
// segment, because that is where the dynamic linker expects to find
|
|
|
|
// it (this is just for efficiency; other positions would also work
|
|
|
|
// correctly).
|
|
|
|
if (type1 == elfcpp::PT_TLS
|
|
|
|
&& type2 != elfcpp::PT_TLS
|
|
|
|
&& type2 != elfcpp::PT_GNU_RELRO)
|
|
|
|
return false;
|
|
|
|
if (type2 == elfcpp::PT_TLS
|
|
|
|
&& type1 != elfcpp::PT_TLS
|
|
|
|
&& type1 != elfcpp::PT_GNU_RELRO)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// We put the PT_GNU_RELRO segment last, because that is where the
|
|
|
|
// dynamic linker expects to find it (as with PT_TLS, this is just
|
|
|
|
// for efficiency).
|
|
|
|
if (type1 == elfcpp::PT_GNU_RELRO && type2 != elfcpp::PT_GNU_RELRO)
|
2006-10-20 22:40:49 +02:00
|
|
|
return false;
|
2008-05-20 06:00:47 +02:00
|
|
|
if (type2 == elfcpp::PT_GNU_RELRO && type1 != elfcpp::PT_GNU_RELRO)
|
2006-10-20 22:40:49 +02:00
|
|
|
return true;
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
const elfcpp::Elf_Word flags1 = seg1->flags();
|
|
|
|
const elfcpp::Elf_Word flags2 = seg2->flags();
|
|
|
|
|
|
|
|
// The order of non-PT_LOAD segments is unimportant. We simply sort
|
|
|
|
// by the numeric segment type and flags values. There should not
|
|
|
|
// be more than one segment with the same type and flags.
|
|
|
|
if (type1 != elfcpp::PT_LOAD)
|
|
|
|
{
|
|
|
|
if (type1 != type2)
|
|
|
|
return type1 < type2;
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(flags1 != flags2);
|
2006-09-28 00:53:42 +02:00
|
|
|
return flags1 < flags2;
|
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// If the addresses are set already, sort by load address.
|
|
|
|
if (seg1->are_addresses_set())
|
|
|
|
{
|
|
|
|
if (!seg2->are_addresses_set())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
unsigned int section_count1 = seg1->output_section_count();
|
|
|
|
unsigned int section_count2 = seg2->output_section_count();
|
|
|
|
if (section_count1 == 0 && section_count2 > 0)
|
|
|
|
return true;
|
|
|
|
if (section_count1 > 0 && section_count2 == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
uint64_t paddr1 = seg1->first_section_load_address();
|
|
|
|
uint64_t paddr2 = seg2->first_section_load_address();
|
|
|
|
if (paddr1 != paddr2)
|
|
|
|
return paddr1 < paddr2;
|
|
|
|
}
|
|
|
|
else if (seg2->are_addresses_set())
|
|
|
|
return false;
|
|
|
|
|
2009-06-22 08:51:53 +02:00
|
|
|
// A segment which holds large data comes after a segment which does
|
|
|
|
// not hold large data.
|
|
|
|
if (seg1->is_large_data_segment())
|
|
|
|
{
|
|
|
|
if (!seg2->is_large_data_segment())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (seg2->is_large_data_segment())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Otherwise, we sort PT_LOAD segments based on the flags. Readonly
|
|
|
|
// segments come before writable segments. Then writable segments
|
|
|
|
// with data come before writable segments without data. Then
|
|
|
|
// executable segments come before non-executable segments. Then
|
|
|
|
// the unlikely case of a non-readable segment comes before the
|
|
|
|
// normal case of a readable segment. If there are multiple
|
|
|
|
// segments with the same type and flags, we require that the
|
|
|
|
// address be set, and we sort by virtual address and then physical
|
|
|
|
// address.
|
2006-09-28 00:53:42 +02:00
|
|
|
if ((flags1 & elfcpp::PF_W) != (flags2 & elfcpp::PF_W))
|
|
|
|
return (flags1 & elfcpp::PF_W) == 0;
|
2008-02-13 23:47:28 +01:00
|
|
|
if ((flags1 & elfcpp::PF_W) != 0
|
|
|
|
&& seg1->has_any_data_sections() != seg2->has_any_data_sections())
|
|
|
|
return seg1->has_any_data_sections();
|
2006-09-28 00:53:42 +02:00
|
|
|
if ((flags1 & elfcpp::PF_X) != (flags2 & elfcpp::PF_X))
|
|
|
|
return (flags1 & elfcpp::PF_X) != 0;
|
|
|
|
if ((flags1 & elfcpp::PF_R) != (flags2 & elfcpp::PF_R))
|
|
|
|
return (flags1 & elfcpp::PF_R) == 0;
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// We shouldn't get here--we shouldn't create segments which we
|
|
|
|
// can't distinguish.
|
|
|
|
gold_unreachable();
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
|
2009-06-22 08:51:53 +02:00
|
|
|
// Increase OFF so that it is congruent to ADDR modulo ABI_PAGESIZE.
|
|
|
|
|
|
|
|
static off_t
|
|
|
|
align_file_offset(off_t off, uint64_t addr, uint64_t abi_pagesize)
|
|
|
|
{
|
|
|
|
uint64_t unsigned_off = off;
|
|
|
|
uint64_t aligned_off = ((unsigned_off & ~(abi_pagesize - 1))
|
|
|
|
| (addr & (abi_pagesize - 1)));
|
|
|
|
if (aligned_off < unsigned_off)
|
|
|
|
aligned_off += abi_pagesize;
|
|
|
|
return aligned_off;
|
|
|
|
}
|
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Set the file offsets of all the segments, and all the sections they
|
|
|
|
// contain. They have all been created. LOAD_SEG must be be laid out
|
|
|
|
// first. Return the offset of the data to follow.
|
2006-09-28 00:53:42 +02:00
|
|
|
|
|
|
|
off_t
|
2006-11-03 19:26:11 +01:00
|
|
|
Layout::set_segment_offsets(const Target* target, Output_segment* load_seg,
|
|
|
|
unsigned int *pshndx)
|
2006-09-28 00:53:42 +02:00
|
|
|
{
|
|
|
|
// Sort them into the final order.
|
2006-09-26 23:00:34 +02:00
|
|
|
std::sort(this->segment_list_.begin(), this->segment_list_.end(),
|
|
|
|
Layout::Compare_segments());
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Find the PT_LOAD segments, and set their addresses and offsets
|
|
|
|
// and their section's addresses and offsets.
|
2007-10-17 00:38:36 +02:00
|
|
|
uint64_t addr;
|
2009-04-02 06:19:03 +02:00
|
|
|
if (parameters->options().user_set_Ttext())
|
|
|
|
addr = parameters->options().Ttext();
|
2009-10-14 07:25:02 +02:00
|
|
|
else if (parameters->options().output_is_position_independent())
|
2008-02-04 06:43:05 +01:00
|
|
|
addr = 0;
|
2007-10-17 00:38:36 +02:00
|
|
|
else
|
|
|
|
addr = target->default_text_segment_address();
|
2006-09-28 00:53:42 +02:00
|
|
|
off_t off = 0;
|
2008-02-04 06:43:05 +01:00
|
|
|
|
|
|
|
// If LOAD_SEG is NULL, then the file header and segment headers
|
|
|
|
// will not be loadable. But they still need to be at offset 0 in
|
|
|
|
// the file. Set their offsets now.
|
|
|
|
if (load_seg == NULL)
|
|
|
|
{
|
|
|
|
for (Data_list::iterator p = this->special_output_list_.begin();
|
|
|
|
p != this->special_output_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
off = align_address(off, (*p)->addralign());
|
|
|
|
(*p)->set_address_and_file_offset(0, off);
|
|
|
|
off += (*p)->data_size();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-30 07:57:17 +01:00
|
|
|
unsigned int increase_relro = this->increase_relro_;
|
|
|
|
if (this->script_options_->saw_sections_clause())
|
|
|
|
increase_relro = 0;
|
|
|
|
|
2008-07-23 01:55:24 +02:00
|
|
|
const bool check_sections = parameters->options().check_sections();
|
|
|
|
Output_segment* last_load_segment = NULL;
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
bool was_readonly = false;
|
|
|
|
for (Segment_list::iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() == elfcpp::PT_LOAD)
|
|
|
|
{
|
|
|
|
if (load_seg != NULL && load_seg != *p)
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_unreachable();
|
2006-09-28 00:53:42 +02:00
|
|
|
load_seg = NULL;
|
|
|
|
|
2008-02-13 23:47:28 +01:00
|
|
|
bool are_addresses_set = (*p)->are_addresses_set();
|
|
|
|
if (are_addresses_set)
|
|
|
|
{
|
|
|
|
// When it comes to setting file offsets, we care about
|
|
|
|
// the physical address.
|
|
|
|
addr = (*p)->paddr();
|
|
|
|
}
|
2009-04-02 06:19:03 +02:00
|
|
|
else if (parameters->options().user_set_Tdata()
|
2008-02-13 23:47:28 +01:00
|
|
|
&& ((*p)->flags() & elfcpp::PF_W) != 0
|
2009-04-02 06:19:03 +02:00
|
|
|
&& (!parameters->options().user_set_Tbss()
|
2008-02-13 23:47:28 +01:00
|
|
|
|| (*p)->has_any_data_sections()))
|
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
addr = parameters->options().Tdata();
|
2008-02-13 23:47:28 +01:00
|
|
|
are_addresses_set = true;
|
|
|
|
}
|
2009-04-02 06:19:03 +02:00
|
|
|
else if (parameters->options().user_set_Tbss()
|
2008-02-13 23:47:28 +01:00
|
|
|
&& ((*p)->flags() & elfcpp::PF_W) != 0
|
|
|
|
&& !(*p)->has_any_data_sections())
|
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
addr = parameters->options().Tbss();
|
2008-02-13 23:47:28 +01:00
|
|
|
are_addresses_set = true;
|
|
|
|
}
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
uint64_t orig_addr = addr;
|
|
|
|
uint64_t orig_off = off;
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
uint64_t aligned_addr = 0;
|
2006-09-28 00:53:42 +02:00
|
|
|
uint64_t abi_pagesize = target->abi_pagesize();
|
2008-07-23 01:01:20 +02:00
|
|
|
uint64_t common_pagesize = target->common_pagesize();
|
2007-08-21 23:03:50 +02:00
|
|
|
|
2008-07-23 01:01:20 +02:00
|
|
|
if (!parameters->options().nmagic()
|
|
|
|
&& !parameters->options().omagic())
|
|
|
|
(*p)->set_minimum_p_align(common_pagesize);
|
2007-08-21 23:03:50 +02:00
|
|
|
|
2009-06-22 08:51:53 +02:00
|
|
|
if (!are_addresses_set)
|
2008-02-04 06:43:05 +01:00
|
|
|
{
|
|
|
|
// If the last segment was readonly, and this one is
|
|
|
|
// not, then skip the address forward one page,
|
|
|
|
// maintaining the same position within the page. This
|
|
|
|
// lets us store both segments overlapping on a single
|
|
|
|
// page in the file, but the loader will put them on
|
|
|
|
// different pages in memory.
|
|
|
|
|
|
|
|
addr = align_address(addr, (*p)->maximum_alignment());
|
2006-09-28 00:53:42 +02:00
|
|
|
aligned_addr = addr;
|
2008-02-04 06:43:05 +01:00
|
|
|
|
|
|
|
if (was_readonly && ((*p)->flags() & elfcpp::PF_W) != 0)
|
|
|
|
{
|
|
|
|
if ((addr & (abi_pagesize - 1)) != 0)
|
|
|
|
addr = addr + abi_pagesize;
|
|
|
|
}
|
|
|
|
|
|
|
|
off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
|
2009-06-22 08:51:53 +02:00
|
|
|
if (!parameters->options().nmagic()
|
|
|
|
&& !parameters->options().omagic())
|
|
|
|
off = align_file_offset(off, addr, abi_pagesize);
|
2009-10-16 07:00:29 +02:00
|
|
|
else if (load_seg == NULL)
|
|
|
|
{
|
|
|
|
// This is -N or -n with a section script which prevents
|
|
|
|
// us from using a load segment. We need to ensure that
|
|
|
|
// the file offset is aligned to the alignment of the
|
|
|
|
// segment. This is because the linker script
|
|
|
|
// implicitly assumed a zero offset. If we don't align
|
|
|
|
// here, then the alignment of the sections in the
|
|
|
|
// linker script may not match the alignment of the
|
|
|
|
// sections in the set_section_addresses call below,
|
|
|
|
// causing an error about dot moving backward.
|
|
|
|
off = align_address(off, (*p)->maximum_alignment());
|
|
|
|
}
|
2009-06-22 08:51:53 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
unsigned int shndx_hold = *pshndx;
|
2008-03-19 22:41:38 +01:00
|
|
|
uint64_t new_addr = (*p)->set_section_addresses(this, false, addr,
|
2009-12-30 07:57:17 +01:00
|
|
|
increase_relro,
|
2008-03-19 22:41:38 +01:00
|
|
|
&off, pshndx);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
|
|
|
// Now that we know the size of this segment, we may be able
|
|
|
|
// to save a page in memory, at the cost of wasting some
|
|
|
|
// file space, by instead aligning to the start of a new
|
|
|
|
// page. Here we use the real machine page size rather than
|
|
|
|
// the ABI mandated page size.
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
if (!are_addresses_set && aligned_addr != addr)
|
2006-09-28 00:53:42 +02:00
|
|
|
{
|
|
|
|
uint64_t first_off = (common_pagesize
|
|
|
|
- (aligned_addr
|
|
|
|
& (common_pagesize - 1)));
|
|
|
|
uint64_t last_off = new_addr & (common_pagesize - 1);
|
|
|
|
if (first_off > 0
|
|
|
|
&& last_off > 0
|
|
|
|
&& ((aligned_addr & ~ (common_pagesize - 1))
|
|
|
|
!= (new_addr & ~ (common_pagesize - 1)))
|
|
|
|
&& first_off + last_off <= common_pagesize)
|
|
|
|
{
|
2006-11-03 19:26:11 +01:00
|
|
|
*pshndx = shndx_hold;
|
|
|
|
addr = align_address(aligned_addr, common_pagesize);
|
2008-02-04 06:43:05 +01:00
|
|
|
addr = align_address(addr, (*p)->maximum_alignment());
|
2006-09-28 00:53:42 +02:00
|
|
|
off = orig_off + ((addr - orig_addr) & (abi_pagesize - 1));
|
2009-06-22 08:51:53 +02:00
|
|
|
off = align_file_offset(off, addr, abi_pagesize);
|
2008-03-19 22:41:38 +01:00
|
|
|
new_addr = (*p)->set_section_addresses(this, true, addr,
|
2009-12-30 07:57:17 +01:00
|
|
|
increase_relro,
|
2008-03-19 22:41:38 +01:00
|
|
|
&off, pshndx);
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = new_addr;
|
|
|
|
|
|
|
|
if (((*p)->flags() & elfcpp::PF_W) == 0)
|
|
|
|
was_readonly = true;
|
2008-07-23 01:55:24 +02:00
|
|
|
|
|
|
|
// Implement --check-sections. We know that the segments
|
|
|
|
// are sorted by LMA.
|
|
|
|
if (check_sections && last_load_segment != NULL)
|
|
|
|
{
|
|
|
|
gold_assert(last_load_segment->paddr() <= (*p)->paddr());
|
|
|
|
if (last_load_segment->paddr() + last_load_segment->memsz()
|
|
|
|
> (*p)->paddr())
|
|
|
|
{
|
|
|
|
unsigned long long lb1 = last_load_segment->paddr();
|
|
|
|
unsigned long long le1 = lb1 + last_load_segment->memsz();
|
|
|
|
unsigned long long lb2 = (*p)->paddr();
|
|
|
|
unsigned long long le2 = lb2 + (*p)->memsz();
|
|
|
|
gold_error(_("load segment overlap [0x%llx -> 0x%llx] and "
|
|
|
|
"[0x%llx -> 0x%llx]"),
|
|
|
|
lb1, le1, lb2, le2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
last_load_segment = *p;
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the non-PT_LOAD segments, setting their offsets from their
|
|
|
|
// section's offsets.
|
|
|
|
for (Segment_list::iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() != elfcpp::PT_LOAD)
|
2009-12-30 07:57:17 +01:00
|
|
|
(*p)->set_offset((*p)->type() == elfcpp::PT_GNU_RELRO
|
|
|
|
? increase_relro
|
|
|
|
: 0);
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
|
2007-12-06 06:55:50 +01:00
|
|
|
// Set the TLS offsets for each section in the PT_TLS segment.
|
|
|
|
if (this->tls_segment_ != NULL)
|
|
|
|
this->tls_segment_->set_tls_offsets();
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2008-02-06 09:13:50 +01:00
|
|
|
// Set the offsets of all the allocated sections when doing a
|
|
|
|
// relocatable link. This does the same jobs as set_segment_offsets,
|
|
|
|
// only for a relocatable link.
|
|
|
|
|
|
|
|
off_t
|
|
|
|
Layout::set_relocatable_section_offsets(Output_data* file_header,
|
|
|
|
unsigned int *pshndx)
|
|
|
|
{
|
|
|
|
off_t off = 0;
|
|
|
|
|
|
|
|
file_header->set_address_and_file_offset(0, 0);
|
|
|
|
off += file_header->data_size();
|
|
|
|
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
// We skip unallocated sections here, except that group sections
|
|
|
|
// have to come first.
|
|
|
|
if (((*p)->flags() & elfcpp::SHF_ALLOC) == 0
|
|
|
|
&& (*p)->type() != elfcpp::SHT_GROUP)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
off = align_address(off, (*p)->addralign());
|
|
|
|
|
|
|
|
// The linker script might have set the address.
|
|
|
|
if (!(*p)->is_address_valid())
|
|
|
|
(*p)->set_address(0);
|
|
|
|
(*p)->set_file_offset(off);
|
|
|
|
(*p)->finalize_data_size();
|
|
|
|
off += (*p)->data_size();
|
|
|
|
|
|
|
|
(*p)->set_out_shndx(*pshndx);
|
|
|
|
++*pshndx;
|
|
|
|
}
|
|
|
|
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2006-09-28 00:53:42 +02:00
|
|
|
// Set the file offset of all the sections not associated with a
|
|
|
|
// segment.
|
|
|
|
|
|
|
|
off_t
|
2007-11-30 01:35:27 +01:00
|
|
|
Layout::set_section_offsets(off_t off, Layout::Section_offset_pass pass)
|
2006-09-28 00:53:42 +02:00
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
for (Section_list::iterator p = this->unattached_section_list_.begin();
|
|
|
|
p != this->unattached_section_list_.end();
|
2006-09-28 00:53:42 +02:00
|
|
|
++p)
|
|
|
|
{
|
2007-11-29 21:10:17 +01:00
|
|
|
// The symtab section is handled in create_symtab_sections.
|
|
|
|
if (*p == this->symtab_section_)
|
2006-09-29 21:58:17 +02:00
|
|
|
continue;
|
2007-11-29 21:10:17 +01:00
|
|
|
|
2007-12-21 22:19:45 +01:00
|
|
|
// If we've already set the data size, don't set it again.
|
|
|
|
if ((*p)->is_offset_valid() && (*p)->is_data_size_valid())
|
|
|
|
continue;
|
|
|
|
|
2007-12-01 07:34:12 +01:00
|
|
|
if (pass == BEFORE_INPUT_SECTIONS_PASS
|
|
|
|
&& (*p)->requires_postprocessing())
|
2007-12-14 20:00:21 +01:00
|
|
|
{
|
|
|
|
(*p)->create_postprocessing_buffer();
|
|
|
|
this->any_postprocessing_sections_ = true;
|
|
|
|
}
|
2007-12-01 07:34:12 +01:00
|
|
|
|
2007-11-30 01:35:27 +01:00
|
|
|
if (pass == BEFORE_INPUT_SECTIONS_PASS
|
|
|
|
&& (*p)->after_input_sections())
|
|
|
|
continue;
|
2007-12-14 20:00:21 +01:00
|
|
|
else if (pass == POSTPROCESSING_SECTIONS_PASS
|
2007-11-30 01:35:27 +01:00
|
|
|
&& (!(*p)->after_input_sections()
|
|
|
|
|| (*p)->type() == elfcpp::SHT_STRTAB))
|
|
|
|
continue;
|
2007-12-14 20:00:21 +01:00
|
|
|
else if (pass == STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS
|
2007-11-30 01:35:27 +01:00
|
|
|
&& (!(*p)->after_input_sections()
|
|
|
|
|| (*p)->type() != elfcpp::SHT_STRTAB))
|
|
|
|
continue;
|
2007-11-29 21:10:17 +01:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
off = align_address(off, (*p)->addralign());
|
2007-11-29 21:10:17 +01:00
|
|
|
(*p)->set_file_offset(off);
|
|
|
|
(*p)->finalize_data_size();
|
2006-09-28 00:53:42 +02:00
|
|
|
off += (*p)->data_size();
|
2007-12-01 07:34:12 +01:00
|
|
|
|
|
|
|
// At this point the name must be set.
|
2007-12-14 20:00:21 +01:00
|
|
|
if (pass != STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS)
|
2007-12-01 07:34:12 +01:00
|
|
|
this->namepool_.add((*p)->name(), false, NULL);
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
return off;
|
|
|
|
}
|
|
|
|
|
2007-11-07 23:33:30 +01:00
|
|
|
// Set the section indexes of all the sections not associated with a
|
|
|
|
// segment.
|
|
|
|
|
|
|
|
unsigned int
|
|
|
|
Layout::set_section_indexes(unsigned int shndx)
|
|
|
|
{
|
|
|
|
for (Section_list::iterator p = this->unattached_section_list_.begin();
|
|
|
|
p != this->unattached_section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
2008-04-19 20:30:58 +02:00
|
|
|
if (!(*p)->has_out_shndx())
|
|
|
|
{
|
|
|
|
(*p)->set_out_shndx(shndx);
|
|
|
|
++shndx;
|
|
|
|
}
|
2007-11-07 23:33:30 +01:00
|
|
|
}
|
|
|
|
return shndx;
|
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// Set the section addresses according to the linker script. This is
|
|
|
|
// only called when we see a SECTIONS clause. This returns the
|
|
|
|
// program segment which should hold the file header and segment
|
|
|
|
// headers, if any. It will return NULL if they should not be in a
|
|
|
|
// segment.
|
|
|
|
|
|
|
|
Output_segment*
|
|
|
|
Layout::set_section_addresses_from_script(Symbol_table* symtab)
|
2009-09-17 Doug Kwan <dougkwan@google.com>
* debug.h (DEBUG_RELAXATION): New constant.
(DEBUG_ALL): Add DEBUG_RELAXATION.
(debug_string_to_enum): Add relaxation debug option.
* layout.cc
(Layout::Relaxation_debug_check::check_output_data_for_reset_values,
Layout::Relaxation_debug_check::read_sections,
Layout::Relaxation_debug_check::read_sections): New method definitions.
(Layout::Layout): Initialize data members
record_output_section_data_from_scrips_,
script_output_section_data_list_ and relaxation_debug_check_.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method definitions.
(Layout::finalize): Support relaxation. Move section layout code to
Layout::relaxation_loop_body.
(Layout::set_asection_address_from_script): Move code for orphan
section placement out.
(Layout::place_orphan_sections_in_script): New method definition.
* layout.h (Output_segment_headers, Output_file_header):
New forward class declarations.
(Layout::~Layout): Define.
(Layout::new_output_section_data_from_script): New method definition.
(Layout::place_orphan_sections_in_script): New method declaration.
(Layout::Segment_states): New type declaration.
(Layout::save_segments, Layout::restore_segments,
Layout::clean_up_after_relaxation, Layout::prepare_for_relaxation,
Layout::relaxation_loop_body): New method declarations.
(Layout::Output_section_data_list): New type declaration.
(Layout::Relaxation_debug_check): New class definition.
(Layout::record_output_section_data_from_script_,
Layout::script_output_section_data_list_, Layout::segment_states_,
Layout::relaxation_debug_check_): New data members.
* output.cc: (Output_section_headers::do_size): New method definition.
(Output_section_headers::Output_section_headers): Move size
computation to Output_section_headers::do_size.
(Output_segment_headers::do_size): New method definition.
(Output_file_header::Output_file_header): Move size computation to
Output_file_header::do_size and call it.
(Output_file_header::do_size): New method definition.
(Output_data_group::Output_data_group): Adjust call to
Output_section_data.
(Output_data_dynamic::set_final_data_size): Add DT_NULL tag only once.
(Output_symtab_xindex::do_write): Add array bound check.
(Output_section::Input_section::print_to_mapfile): Handle
RELAXED_INPUT_SECTION_CODE.
(Output_section::Output_section): Initialize data member checkpoint_.
(Output_section::~Output_section): Delete checkpoint object pointed
by checkpoint_.
(Output_section::add_input_section): Always add an Input_section if
relaxing.
(Output_section::add_merge_input_section): Add assert.
(Output_section::relax_input_section): New method definition.
(Output_section::set_final_data_size): Set load address to zero for
an unallocated section.
(Output_section::do_address_and_file_offset_have_reset_values):
New method definition.
(Output_section::Input_section_sort_enty::Input_section_sort_enty):
Handle relaxed input section.
(Output_section::sort_attached_input_sections): Checkpoint input
section list lazily.
(Output_section::get_input_sections): Change type of input_sections to
list of Simple_input_section pointers. Checkpoint input section list
lazily. Also handle relaxed input sections.
(Output_section::add_input_section_for_script): Take a reference to
a Simple_input_section object instead of Relobj pointer and section
index as parameter. Handle relaxed input sections.
(Output_section::save_states, Output_section::restore_states): New
method definitions.
* output.h (Output_data::Output_data): Initialize is_data_size_fixed_.
(Output_data::is_data_size_fixed): New method definition.
(Output_data::reset_addresss_and_file_offset): Do not reset data size
if it is fixed.
(Output_data::address_and_file_offset_have_reset_values): New method
definition.
(Output_data::do_address_and_file_offset_have_reset_values): New method
definition.
(Output_data::set_data_size): Check that data size is not fixed.
(Output_data::fix_data_size): New method definition.
(Output_data::is_data_size_fixed_): New data member.
(Output_section_headers::set_final_data_size): New method definition.
(Output_section_headers::do_size): New method declaration.
(Output_segment_headers::set_final_data_size): New method definition.
(Output_segment_headers::do_size): New method declaration.
(Output_file_header::set_final_data_size)::New method definition.
(Output_file_header::do_size)::New method declaration.
(Output_section_data::Output_section_data): Add new parameter
is_data_size_fixed and use it to fix data size.
(Output_data_const::Output_data_const): Adjust call to base class
constructor and fix data size.
(Output_data_const_buffer::Output_data_const_buffer): Adjust call to
base class constructor and fix data size.
(Output_data_fixed_space::Output_data_fixed_space): Adjust call to
base class constructor and fix data size.
(Output_data_zero_fill::Output_data_zero_fill): Adjust call to base
class constructor and fix data size.
(Output_data_group::set_final_data_size): New method definition.
(Output_data_dynamic::Dynamic_entry::tag): New method definition.
(Output_symtab_xindex::Output_symtab_xindex): Adjust call to base
class constructor and fix data size.
(Output_relaxed_input_section): New class definition.
(Output_section::Simple_input_section): New class definition.
(Output_section::get_input_sections): Adjust parameter list.
(Output_section::add_input_section_for_script): Same.
(Output_section::save_states, Output_section::restore_states,
Output_section::do_address_and_file_offset_have_reset_values,
(Output_section::Input_section::Input_section): Handle
RELAXED_INPUT_SECTION_CODE. Add new overload for
Output_relaxed_input_section.
(Output_section::Input_section::is_input_section,
Output_section::Input_section::set_output_section): Handle relaxed
input section.
(Output_section::Input_section::is_relaxed_input_section,
Output_section::Input_section::output_section_data,
Output_section::Input_section::relaxed_input_section): New method
definitions.
(Output_section::Input_section::RELAXED_INPUT_SECTION_CODE): New enum
value.
(Output_section::Input_section::u1_): Update comments.
(Output_section::Input_section::u2_): Add new union member poris.
(Output_section::Checkpoint_output_section): New classs definition.
(Output_section::relax_input_section): New method declaration.
(Output_section::checkpoint_): New data member.
(Output_segment): Update comments.
(Output_segment::Output_segment): Un-privatize copy constructor.
(Output_segment::operator=): Un-privatize.
* script-sections.cc (Output_section_element::Input_section_list):
Change element type to Output_section::Simple_input_section.
(Output_section_element_dot_assignment::set_section_addresses):
Register output section data for relaxation clean up.
(Output_data_exression::Output_data_expression): Adjust call to base
constructor to fix data size.
(Output_section_element_data::set_section_addresses): Register
Output_data_expression object for relaxation clean up.
(struct Input_section_info): Replace Relobj pointer and section index
pair with Output_section::Simple_input_section and Convert struct to a
class.
(Input_section_sorter::operator()): Adjust access to
Input_section_info data member to use accessors.
(Output_section_element_input::set_section_addresses): Use layout
parameter. Adjust code to use Output_section::Simple_input_section
and Input_secction_info classes. Register filler for relaxation
clean up.
(Orphan_output_section::set_section_addresses): Replace Relobj pointer
and section index pair with Output_section::Simple_input_section
class. Adjust code accordingly.
(Phdrs_element::release_segment): New method definition.
(Script_sections::attach_sections_using_phdrs_clause): Do not modify
segment list.
(Script_sections::release_segments): New method definition.
* gold/script-sections.h (Script_sections::release_segments): New
method declaration.
* gold/target.h (Target::may_relax, Target::relax,
Target::do_may_relax, Target::do_relax): New method definitions.
2009-09-18 03:10:38 +02:00
|
|
|
{
|
|
|
|
Script_sections* ss = this->script_options_->script_sections();
|
|
|
|
gold_assert(ss->saw_sections_clause());
|
|
|
|
return this->script_options_->set_section_addresses(symtab, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Place the orphan sections in the linker script.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::place_orphan_sections_in_script()
|
2008-02-04 06:43:05 +01:00
|
|
|
{
|
|
|
|
Script_sections* ss = this->script_options_->script_sections();
|
|
|
|
gold_assert(ss->saw_sections_clause());
|
|
|
|
|
|
|
|
// Place each orphaned output section in the script.
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (!(*p)->found_in_sections_clause())
|
|
|
|
ss->place_orphan(*p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-06 06:55:50 +01:00
|
|
|
// Count the local symbols in the regular symbol table and the dynamic
|
|
|
|
// symbol table, and build the respective string pools.
|
|
|
|
|
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
Layout::count_local_symbols(const Task* task,
|
|
|
|
const Input_objects* input_objects)
|
2007-12-06 06:55:50 +01:00
|
|
|
{
|
2007-12-14 06:24:17 +01:00
|
|
|
// First, figure out an upper bound on the number of symbols we'll
|
|
|
|
// be inserting into each pool. This helps us create the pools with
|
|
|
|
// the right size, to avoid unnecessary hashtable resizing.
|
|
|
|
unsigned int symbol_count = 0;
|
|
|
|
for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
|
|
|
|
p != input_objects->relobj_end();
|
|
|
|
++p)
|
|
|
|
symbol_count += (*p)->local_symbol_count();
|
|
|
|
|
|
|
|
// Go from "upper bound" to "estimate." We overcount for two
|
|
|
|
// reasons: we double-count symbols that occur in more than one
|
|
|
|
// object file, and we count symbols that are dropped from the
|
|
|
|
// output. Add it all together and assume we overcount by 100%.
|
|
|
|
symbol_count /= 2;
|
|
|
|
|
|
|
|
// We assume all symbols will go into both the sympool and dynpool.
|
|
|
|
this->sympool_.reserve(symbol_count);
|
|
|
|
this->dynpool_.reserve(symbol_count);
|
|
|
|
|
2007-12-06 06:55:50 +01:00
|
|
|
for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
|
|
|
|
p != input_objects->relobj_end();
|
|
|
|
++p)
|
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_lock_obj<Object> tlo(task, *p);
|
2007-12-06 06:55:50 +01:00
|
|
|
(*p)->count_local_symbols(&this->sympool_, &this->dynpool_);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-16 19:42:48 +02:00
|
|
|
// Create the symbol table sections. Here we also set the final
|
|
|
|
// values of the symbols. At this point all the loadable sections are
|
2008-04-19 20:30:58 +02:00
|
|
|
// fully laid out. SHNUM is the number of sections so far.
|
2006-09-28 00:53:42 +02:00
|
|
|
|
|
|
|
void
|
2007-09-26 09:01:35 +02:00
|
|
|
Layout::create_symtab_sections(const Input_objects* input_objects,
|
2006-09-28 00:53:42 +02:00
|
|
|
Symbol_table* symtab,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int shnum,
|
2006-12-01 17:51:25 +01:00
|
|
|
off_t* poff)
|
2006-09-28 00:53:42 +02:00
|
|
|
{
|
2006-09-29 21:58:17 +02:00
|
|
|
int symsize;
|
|
|
|
unsigned int align;
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->target().get_size() == 32)
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
|
|
|
symsize = elfcpp::Elf_sizes<32>::sym_size;
|
|
|
|
align = 4;
|
|
|
|
}
|
2008-02-28 01:18:24 +01:00
|
|
|
else if (parameters->target().get_size() == 64)
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
|
|
|
symsize = elfcpp::Elf_sizes<64>::sym_size;
|
|
|
|
align = 8;
|
|
|
|
}
|
|
|
|
else
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_unreachable();
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
off_t off = *poff;
|
2006-11-03 19:26:11 +01:00
|
|
|
off = align_address(off, align);
|
2006-09-29 21:58:17 +02:00
|
|
|
off_t startoff = off;
|
|
|
|
|
|
|
|
// Save space for the dummy symbol at the start of the section. We
|
|
|
|
// never bother to write this out--it will just be left as zero.
|
|
|
|
off += symsize;
|
2006-11-16 01:38:25 +01:00
|
|
|
unsigned int local_symbol_index = 1;
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
// Add STT_SECTION symbols for each Output section which needs one.
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (!(*p)->needs_symtab_index())
|
|
|
|
(*p)->set_symtab_index(-1U);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*p)->set_symtab_index(local_symbol_index);
|
|
|
|
++local_symbol_index;
|
|
|
|
off += symsize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-06 23:46:08 +01:00
|
|
|
for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
|
|
|
|
p != input_objects->relobj_end();
|
2006-09-28 00:53:42 +02:00
|
|
|
++p)
|
|
|
|
{
|
2006-11-16 01:38:25 +01:00
|
|
|
unsigned int index = (*p)->finalize_local_symbols(local_symbol_index,
|
2009-08-05 22:51:56 +02:00
|
|
|
off, symtab);
|
2006-11-16 01:38:25 +01:00
|
|
|
off += (index - local_symbol_index) * symsize;
|
|
|
|
local_symbol_index = index;
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
|
2006-11-16 01:38:25 +01:00
|
|
|
unsigned int local_symcount = local_symbol_index;
|
2009-10-10 01:05:21 +02:00
|
|
|
gold_assert(static_cast<off_t>(local_symcount * symsize) == off - startoff);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2006-12-01 17:51:25 +01:00
|
|
|
off_t dynoff;
|
|
|
|
size_t dyn_global_index;
|
|
|
|
size_t dyncount;
|
|
|
|
if (this->dynsym_section_ == NULL)
|
|
|
|
{
|
|
|
|
dynoff = 0;
|
|
|
|
dyn_global_index = 0;
|
|
|
|
dyncount = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dyn_global_index = this->dynsym_section_->info();
|
|
|
|
off_t locsize = dyn_global_index * this->dynsym_section_->entsize();
|
|
|
|
dynoff = this->dynsym_section_->offset() + locsize;
|
|
|
|
dyncount = (this->dynsym_section_->data_size() - locsize) / symsize;
|
2007-10-02 22:52:18 +02:00
|
|
|
gold_assert(static_cast<off_t>(dyncount * symsize)
|
2006-12-01 17:51:25 +01:00
|
|
|
== this->dynsym_section_->data_size() - locsize);
|
|
|
|
}
|
|
|
|
|
2008-01-24 01:15:00 +01:00
|
|
|
off = symtab->finalize(off, dynoff, dyn_global_index, dyncount,
|
|
|
|
&this->sympool_, &local_symcount);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
if (!parameters->options().strip_all())
|
2007-10-10 21:02:56 +02:00
|
|
|
{
|
|
|
|
this->sympool_.set_string_offsets();
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2007-10-12 08:06:34 +02:00
|
|
|
const char* symtab_name = this->namepool_.add(".symtab", false, NULL);
|
2007-10-10 21:02:56 +02:00
|
|
|
Output_section* osymtab = this->make_output_section(symtab_name,
|
|
|
|
elfcpp::SHT_SYMTAB,
|
2009-12-30 07:57:17 +01:00
|
|
|
0, false, false,
|
|
|
|
false, false, false);
|
2007-10-10 21:02:56 +02:00
|
|
|
this->symtab_section_ = osymtab;
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
Output_section_data* pos = new Output_data_fixed_space(off - startoff,
|
2008-05-21 23:37:44 +02:00
|
|
|
align,
|
|
|
|
"** symtab");
|
2007-10-10 21:02:56 +02:00
|
|
|
osymtab->add_output_section_data(pos);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
// We generate a .symtab_shndx section if we have more than
|
|
|
|
// SHN_LORESERVE sections. Technically it is possible that we
|
|
|
|
// don't need one, because it is possible that there are no
|
|
|
|
// symbols in any of sections with indexes larger than
|
|
|
|
// SHN_LORESERVE. That is probably unusual, though, and it is
|
|
|
|
// easier to always create one than to compute section indexes
|
|
|
|
// twice (once here, once when writing out the symbols).
|
|
|
|
if (shnum >= elfcpp::SHN_LORESERVE)
|
|
|
|
{
|
|
|
|
const char* symtab_xindex_name = this->namepool_.add(".symtab_shndx",
|
|
|
|
false, NULL);
|
|
|
|
Output_section* osymtab_xindex =
|
|
|
|
this->make_output_section(symtab_xindex_name,
|
2009-11-04 16:56:03 +01:00
|
|
|
elfcpp::SHT_SYMTAB_SHNDX, 0, false,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false);
|
2008-04-19 20:30:58 +02:00
|
|
|
|
|
|
|
size_t symcount = (off - startoff) / symsize;
|
|
|
|
this->symtab_xindex_ = new Output_symtab_xindex(symcount);
|
|
|
|
|
|
|
|
osymtab_xindex->add_output_section_data(this->symtab_xindex_);
|
|
|
|
|
|
|
|
osymtab_xindex->set_link_section(osymtab);
|
|
|
|
osymtab_xindex->set_addralign(4);
|
|
|
|
osymtab_xindex->set_entsize(4);
|
|
|
|
|
|
|
|
osymtab_xindex->set_after_input_sections();
|
|
|
|
|
|
|
|
// This tells the driver code to wait until the symbol table
|
|
|
|
// has written out before writing out the postprocessing
|
|
|
|
// sections, including the .symtab_shndx section.
|
|
|
|
this->any_postprocessing_sections_ = true;
|
|
|
|
}
|
|
|
|
|
2007-10-12 08:06:34 +02:00
|
|
|
const char* strtab_name = this->namepool_.add(".strtab", false, NULL);
|
2007-10-10 21:02:56 +02:00
|
|
|
Output_section* ostrtab = this->make_output_section(strtab_name,
|
|
|
|
elfcpp::SHT_STRTAB,
|
2009-12-30 07:57:17 +01:00
|
|
|
0, false, false,
|
|
|
|
false, false, false);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2007-10-10 21:02:56 +02:00
|
|
|
Output_section_data* pstr = new Output_data_strtab(&this->sympool_);
|
|
|
|
ostrtab->add_output_section_data(pstr);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
osymtab->set_file_offset(startoff);
|
|
|
|
osymtab->finalize_data_size();
|
2007-10-10 21:02:56 +02:00
|
|
|
osymtab->set_link_section(ostrtab);
|
|
|
|
osymtab->set_info(local_symcount);
|
|
|
|
osymtab->set_entsize(symsize);
|
2006-09-29 21:58:17 +02:00
|
|
|
|
2007-10-10 21:02:56 +02:00
|
|
|
*poff = off;
|
|
|
|
}
|
2006-09-28 00:53:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the .shstrtab section, which holds the names of the
|
|
|
|
// sections. At the time this is called, we have created all the
|
|
|
|
// output sections except .shstrtab itself.
|
|
|
|
|
|
|
|
Output_section*
|
|
|
|
Layout::create_shstrtab()
|
|
|
|
{
|
|
|
|
// FIXME: We don't need to create a .shstrtab section if we are
|
|
|
|
// stripping everything.
|
|
|
|
|
2007-10-12 08:06:34 +02:00
|
|
|
const char* name = this->namepool_.add(".shstrtab", false, NULL);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2009-11-04 16:56:03 +01:00
|
|
|
Output_section* os = this->make_output_section(name, elfcpp::SHT_STRTAB, 0,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, false, false,
|
|
|
|
false);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
2009-12-15 23:20:25 +01:00
|
|
|
if (strcmp(parameters->options().compress_debug_sections(), "none") != 0)
|
|
|
|
{
|
|
|
|
// We can't write out this section until we've set all the
|
|
|
|
// section names, and we don't set the names of compressed
|
|
|
|
// output sections until relocations are complete. FIXME: With
|
|
|
|
// the current names we use, this is unnecessary.
|
|
|
|
os->set_after_input_sections();
|
|
|
|
}
|
2007-11-29 21:10:17 +01:00
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
Output_section_data* posd = new Output_data_strtab(&this->namepool_);
|
|
|
|
os->add_output_section_data(posd);
|
2006-09-28 00:53:42 +02:00
|
|
|
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the section headers. SIZE is 32 or 64. OFF is the file
|
|
|
|
// offset.
|
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
void
|
2008-04-19 20:30:58 +02:00
|
|
|
Layout::create_shdrs(const Output_section* shstrtab_section, off_t* poff)
|
2006-09-28 00:53:42 +02:00
|
|
|
{
|
|
|
|
Output_section_headers* oshdrs;
|
2007-09-26 09:01:35 +02:00
|
|
|
oshdrs = new Output_section_headers(this,
|
2006-12-01 17:51:25 +01:00
|
|
|
&this->segment_list_,
|
2008-02-06 09:13:50 +01:00
|
|
|
&this->section_list_,
|
2006-12-01 17:51:25 +01:00
|
|
|
&this->unattached_section_list_,
|
2008-04-19 20:30:58 +02:00
|
|
|
&this->namepool_,
|
|
|
|
shstrtab_section);
|
2006-11-03 19:26:11 +01:00
|
|
|
off_t off = align_address(*poff, oshdrs->addralign());
|
2007-11-29 21:10:17 +01:00
|
|
|
oshdrs->set_address_and_file_offset(0, off);
|
2006-09-29 21:58:17 +02:00
|
|
|
off += oshdrs->data_size();
|
|
|
|
*poff = off;
|
2007-11-29 21:10:17 +01:00
|
|
|
this->section_headers_ = oshdrs;
|
2006-09-26 23:00:34 +02:00
|
|
|
}
|
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
// Count the allocated sections.
|
|
|
|
|
|
|
|
size_t
|
|
|
|
Layout::allocated_output_section_count() const
|
|
|
|
{
|
|
|
|
size_t section_count = 0;
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
section_count += (*p)->output_section_count();
|
|
|
|
return section_count;
|
|
|
|
}
|
|
|
|
|
2006-11-14 20:21:05 +01:00
|
|
|
// Create the dynamic symbol table.
|
|
|
|
|
|
|
|
void
|
2007-12-06 06:55:50 +01:00
|
|
|
Layout::create_dynamic_symtab(const Input_objects* input_objects,
|
2008-01-26 02:17:45 +01:00
|
|
|
Symbol_table* symtab,
|
2006-12-06 01:02:36 +01:00
|
|
|
Output_section **pdynstr,
|
|
|
|
unsigned int* plocal_dynamic_count,
|
|
|
|
std::vector<Symbol*>* pdynamic_symbols,
|
|
|
|
Versions* pversions)
|
2006-11-14 20:21:05 +01:00
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
// Count all the symbols in the dynamic symbol table, and set the
|
|
|
|
// dynamic symbol indexes.
|
2006-11-14 20:21:05 +01:00
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
// Skip symbol 0, which is always all zeroes.
|
|
|
|
unsigned int index = 1;
|
2006-11-14 20:21:05 +01:00
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
// Add STT_SECTION symbols for each Output section which needs one.
|
|
|
|
for (Section_list::iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (!(*p)->needs_dynsym_index())
|
|
|
|
(*p)->set_dynsym_index(-1U);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
(*p)->set_dynsym_index(index);
|
|
|
|
++index;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-06 06:55:50 +01:00
|
|
|
// Count the local symbols that need to go in the dynamic symbol table,
|
|
|
|
// and set the dynamic symbol indexes.
|
|
|
|
for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
|
|
|
|
p != input_objects->relobj_end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
unsigned int new_index = (*p)->set_local_dynsym_indexes(index);
|
|
|
|
index = new_index;
|
|
|
|
}
|
2006-11-29 18:56:40 +01:00
|
|
|
|
|
|
|
unsigned int local_symcount = index;
|
2006-12-06 01:02:36 +01:00
|
|
|
*plocal_dynamic_count = local_symcount;
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-01-26 02:17:45 +01:00
|
|
|
index = symtab->set_dynsym_indexes(index, pdynamic_symbols,
|
2007-10-23 07:05:48 +02:00
|
|
|
&this->dynpool_, pversions);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
|
|
|
int symsize;
|
|
|
|
unsigned int align;
|
2008-02-28 01:18:24 +01:00
|
|
|
const int size = parameters->target().get_size();
|
2006-11-29 18:56:40 +01:00
|
|
|
if (size == 32)
|
|
|
|
{
|
|
|
|
symsize = elfcpp::Elf_sizes<32>::sym_size;
|
|
|
|
align = 4;
|
|
|
|
}
|
|
|
|
else if (size == 64)
|
|
|
|
{
|
|
|
|
symsize = elfcpp::Elf_sizes<64>::sym_size;
|
|
|
|
align = 8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
|
2006-12-06 01:02:36 +01:00
|
|
|
// Create the dynamic symbol table section.
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_section* dynsym = this->choose_output_section(NULL, ".dynsym",
|
|
|
|
elfcpp::SHT_DYNSYM,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
false, false, false);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2007-11-29 21:10:17 +01:00
|
|
|
Output_section_data* odata = new Output_data_fixed_space(index * symsize,
|
2008-05-21 23:37:44 +02:00
|
|
|
align,
|
|
|
|
"** dynsym");
|
2006-11-29 18:56:40 +01:00
|
|
|
dynsym->add_output_section_data(odata);
|
|
|
|
|
|
|
|
dynsym->set_info(local_symcount);
|
|
|
|
dynsym->set_entsize(symsize);
|
|
|
|
dynsym->set_addralign(align);
|
|
|
|
|
|
|
|
this->dynsym_section_ = dynsym;
|
|
|
|
|
2006-12-01 17:51:25 +01:00
|
|
|
Output_data_dynamic* const odyn = this->dynamic_data_;
|
2006-11-29 18:56:40 +01:00
|
|
|
odyn->add_section_address(elfcpp::DT_SYMTAB, dynsym);
|
|
|
|
odyn->add_constant(elfcpp::DT_SYMENT, symsize);
|
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
// If there are more than SHN_LORESERVE allocated sections, we
|
|
|
|
// create a .dynsym_shndx section. It is possible that we don't
|
|
|
|
// need one, because it is possible that there are no dynamic
|
|
|
|
// symbols in any of the sections with indexes larger than
|
|
|
|
// SHN_LORESERVE. This is probably unusual, though, and at this
|
|
|
|
// time we don't know the actual section indexes so it is
|
|
|
|
// inconvenient to check.
|
|
|
|
if (this->allocated_output_section_count() >= elfcpp::SHN_LORESERVE)
|
|
|
|
{
|
2009-12-14 20:53:05 +01:00
|
|
|
Output_section* dynsym_xindex =
|
2008-04-19 20:30:58 +02:00
|
|
|
this->choose_output_section(NULL, ".dynsym_shndx",
|
|
|
|
elfcpp::SHT_SYMTAB_SHNDX,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true, false, false, false);
|
2008-04-19 20:30:58 +02:00
|
|
|
|
|
|
|
this->dynsym_xindex_ = new Output_symtab_xindex(index);
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
dynsym_xindex->add_output_section_data(this->dynsym_xindex_);
|
2008-04-19 20:30:58 +02:00
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
dynsym_xindex->set_link_section(dynsym);
|
|
|
|
dynsym_xindex->set_addralign(4);
|
|
|
|
dynsym_xindex->set_entsize(4);
|
2008-04-19 20:30:58 +02:00
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
dynsym_xindex->set_after_input_sections();
|
2008-04-19 20:30:58 +02:00
|
|
|
|
|
|
|
// This tells the driver code to wait until the symbol table has
|
|
|
|
// written out before writing out the postprocessing sections,
|
|
|
|
// including the .dynsym_shndx section.
|
|
|
|
this->any_postprocessing_sections_ = true;
|
|
|
|
}
|
|
|
|
|
2006-12-06 01:02:36 +01:00
|
|
|
// Create the dynamic string table section.
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_section* dynstr = this->choose_output_section(NULL, ".dynstr",
|
|
|
|
elfcpp::SHT_STRTAB,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
false, false, false);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
|
|
|
Output_section_data* strdata = new Output_data_strtab(&this->dynpool_);
|
|
|
|
dynstr->add_output_section_data(strdata);
|
|
|
|
|
2006-12-01 17:51:25 +01:00
|
|
|
dynsym->set_link_section(dynstr);
|
|
|
|
this->dynamic_section_->set_link_section(dynstr);
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
odyn->add_section_address(elfcpp::DT_STRTAB, dynstr);
|
|
|
|
odyn->add_section_size(elfcpp::DT_STRSZ, dynstr);
|
|
|
|
|
2006-12-06 01:02:36 +01:00
|
|
|
*pdynstr = dynstr;
|
|
|
|
|
|
|
|
// Create the hash tables.
|
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
if (strcmp(parameters->options().hash_style(), "sysv") == 0
|
|
|
|
|| strcmp(parameters->options().hash_style(), "both") == 0)
|
|
|
|
{
|
|
|
|
unsigned char* phash;
|
|
|
|
unsigned int hashlen;
|
|
|
|
Dynobj::create_elf_hash_table(*pdynamic_symbols, local_symcount,
|
|
|
|
&phash, &hashlen);
|
|
|
|
|
|
|
|
Output_section* hashsec = this->choose_output_section(NULL, ".hash",
|
|
|
|
elfcpp::SHT_HASH,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
false, false,
|
|
|
|
false);
|
2008-03-06 01:15:04 +01:00
|
|
|
|
|
|
|
Output_section_data* hashdata = new Output_data_const_buffer(phash,
|
|
|
|
hashlen,
|
2008-05-21 23:37:44 +02:00
|
|
|
align,
|
|
|
|
"** hash");
|
2008-03-06 01:15:04 +01:00
|
|
|
hashsec->add_output_section_data(hashdata);
|
|
|
|
|
|
|
|
hashsec->set_link_section(dynsym);
|
|
|
|
hashsec->set_entsize(4);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
odyn->add_section_address(elfcpp::DT_HASH, hashsec);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(parameters->options().hash_style(), "gnu") == 0
|
|
|
|
|| strcmp(parameters->options().hash_style(), "both") == 0)
|
|
|
|
{
|
|
|
|
unsigned char* phash;
|
|
|
|
unsigned int hashlen;
|
|
|
|
Dynobj::create_gnu_hash_table(*pdynamic_symbols, local_symcount,
|
|
|
|
&phash, &hashlen);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
Output_section* hashsec = this->choose_output_section(NULL, ".gnu.hash",
|
|
|
|
elfcpp::SHT_GNU_HASH,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
false, false,
|
|
|
|
false);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
Output_section_data* hashdata = new Output_data_const_buffer(phash,
|
|
|
|
hashlen,
|
2008-05-21 23:37:44 +02:00
|
|
|
align,
|
|
|
|
"** hash");
|
2008-03-06 01:15:04 +01:00
|
|
|
hashsec->add_output_section_data(hashdata);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
hashsec->set_link_section(dynsym);
|
2009-12-30 08:45:32 +01:00
|
|
|
|
|
|
|
// For a 64-bit target, the entries in .gnu.hash do not have a
|
|
|
|
// uniform size, so we only set the entry size for a 32-bit
|
|
|
|
// target.
|
|
|
|
if (parameters->target().get_size() == 32)
|
|
|
|
hashsec->set_entsize(4);
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2008-03-06 01:15:04 +01:00
|
|
|
odyn->add_section_address(elfcpp::DT_GNU_HASH, hashsec);
|
|
|
|
}
|
2006-11-14 20:21:05 +01:00
|
|
|
}
|
|
|
|
|
2007-12-06 06:55:50 +01:00
|
|
|
// Assign offsets to each local portion of the dynamic symbol table.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::assign_local_dynsym_offsets(const Input_objects* input_objects)
|
|
|
|
{
|
|
|
|
Output_section* dynsym = this->dynsym_section_;
|
|
|
|
gold_assert(dynsym != NULL);
|
|
|
|
|
|
|
|
off_t off = dynsym->offset();
|
|
|
|
|
|
|
|
// Skip the dummy symbol at the start of the section.
|
|
|
|
off += dynsym->entsize();
|
|
|
|
|
|
|
|
for (Input_objects::Relobj_iterator p = input_objects->relobj_begin();
|
|
|
|
p != input_objects->relobj_end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
unsigned int count = (*p)->set_local_dynsym_offset(off);
|
|
|
|
off += count * dynsym->entsize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-06 01:02:36 +01:00
|
|
|
// Create the version sections.
|
|
|
|
|
|
|
|
void
|
2007-09-26 09:01:35 +02:00
|
|
|
Layout::create_version_sections(const Versions* versions,
|
2007-10-23 01:08:22 +02:00
|
|
|
const Symbol_table* symtab,
|
2006-12-06 01:02:36 +01:00
|
|
|
unsigned int local_symcount,
|
|
|
|
const std::vector<Symbol*>& dynamic_symbols,
|
|
|
|
const Output_section* dynstr)
|
|
|
|
{
|
|
|
|
if (!versions->any_defs() && !versions->any_needs())
|
|
|
|
return;
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
switch (parameters->size_and_endianness())
|
2006-12-06 01:02:36 +01:00
|
|
|
{
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
2008-02-28 01:18:24 +01:00
|
|
|
case Parameters::TARGET_32_LITTLE:
|
2008-02-29 20:19:17 +01:00
|
|
|
this->sized_create_version_sections<32, false>(versions, symtab,
|
|
|
|
local_symcount,
|
|
|
|
dynamic_symbols, dynstr);
|
2008-02-28 01:18:24 +01:00
|
|
|
break;
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2008-02-28 01:18:24 +01:00
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
case Parameters::TARGET_32_BIG:
|
2008-02-29 20:19:17 +01:00
|
|
|
this->sized_create_version_sections<32, true>(versions, symtab,
|
|
|
|
local_symcount,
|
|
|
|
dynamic_symbols, dynstr);
|
2008-02-28 01:18:24 +01:00
|
|
|
break;
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
2008-02-28 01:18:24 +01:00
|
|
|
case Parameters::TARGET_64_LITTLE:
|
2008-02-29 20:19:17 +01:00
|
|
|
this->sized_create_version_sections<64, false>(versions, symtab,
|
|
|
|
local_symcount,
|
|
|
|
dynamic_symbols, dynstr);
|
2008-02-28 01:18:24 +01:00
|
|
|
break;
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2008-02-28 01:18:24 +01:00
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
case Parameters::TARGET_64_BIG:
|
2008-02-29 20:19:17 +01:00
|
|
|
this->sized_create_version_sections<64, true>(versions, symtab,
|
|
|
|
local_symcount,
|
|
|
|
dynamic_symbols, dynstr);
|
2008-02-28 01:18:24 +01:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
gold_unreachable();
|
2006-12-06 01:02:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the version sections, sized version.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Layout::sized_create_version_sections(
|
|
|
|
const Versions* versions,
|
2007-10-23 01:08:22 +02:00
|
|
|
const Symbol_table* symtab,
|
2006-12-06 01:02:36 +01:00
|
|
|
unsigned int local_symcount,
|
|
|
|
const std::vector<Symbol*>& dynamic_symbols,
|
2008-02-29 20:19:17 +01:00
|
|
|
const Output_section* dynstr)
|
2006-12-06 01:02:36 +01:00
|
|
|
{
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_section* vsec = this->choose_output_section(NULL, ".gnu.version",
|
|
|
|
elfcpp::SHT_GNU_versym,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true,
|
|
|
|
false, false, false);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
unsigned char* vbuf;
|
|
|
|
unsigned int vsize;
|
2008-02-29 20:19:17 +01:00
|
|
|
versions->symbol_section_contents<size, big_endian>(symtab, &this->dynpool_,
|
|
|
|
local_symcount,
|
|
|
|
dynamic_symbols,
|
|
|
|
&vbuf, &vsize);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
Output_section_data* vdata = new Output_data_const_buffer(vbuf, vsize, 2,
|
|
|
|
"** versions");
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
vsec->add_output_section_data(vdata);
|
|
|
|
vsec->set_entsize(2);
|
|
|
|
vsec->set_link_section(this->dynsym_section_);
|
|
|
|
|
|
|
|
Output_data_dynamic* const odyn = this->dynamic_data_;
|
|
|
|
odyn->add_section_address(elfcpp::DT_VERSYM, vsec);
|
|
|
|
|
|
|
|
if (versions->any_defs())
|
|
|
|
{
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_section* vdsec;
|
|
|
|
vdsec= this->choose_output_section(NULL, ".gnu.version_d",
|
|
|
|
elfcpp::SHT_GNU_verdef,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true, false, false,
|
|
|
|
false);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
unsigned char* vdbuf;
|
|
|
|
unsigned int vdsize;
|
|
|
|
unsigned int vdentries;
|
2008-02-29 20:19:17 +01:00
|
|
|
versions->def_section_contents<size, big_endian>(&this->dynpool_, &vdbuf,
|
|
|
|
&vdsize, &vdentries);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
Output_section_data* vddata =
|
|
|
|
new Output_data_const_buffer(vdbuf, vdsize, 4, "** version defs");
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
vdsec->add_output_section_data(vddata);
|
|
|
|
vdsec->set_link_section(dynstr);
|
|
|
|
vdsec->set_info(vdentries);
|
|
|
|
|
|
|
|
odyn->add_section_address(elfcpp::DT_VERDEF, vdsec);
|
|
|
|
odyn->add_constant(elfcpp::DT_VERDEFNUM, vdentries);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (versions->any_needs())
|
|
|
|
{
|
|
|
|
Output_section* vnsec;
|
2008-02-04 07:45:50 +01:00
|
|
|
vnsec = this->choose_output_section(NULL, ".gnu.version_r",
|
|
|
|
elfcpp::SHT_GNU_verneed,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, false, true, false, false,
|
|
|
|
false);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
unsigned char* vnbuf;
|
|
|
|
unsigned int vnsize;
|
|
|
|
unsigned int vnentries;
|
2008-02-29 20:19:17 +01:00
|
|
|
versions->need_section_contents<size, big_endian>(&this->dynpool_,
|
|
|
|
&vnbuf, &vnsize,
|
|
|
|
&vnentries);
|
2006-12-06 01:02:36 +01:00
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
Output_section_data* vndata =
|
|
|
|
new Output_data_const_buffer(vnbuf, vnsize, 4, "** version refs");
|
2006-12-06 01:02:36 +01:00
|
|
|
|
|
|
|
vnsec->add_output_section_data(vndata);
|
|
|
|
vnsec->set_link_section(dynstr);
|
|
|
|
vnsec->set_info(vnentries);
|
|
|
|
|
|
|
|
odyn->add_section_address(elfcpp::DT_VERNEED, vnsec);
|
|
|
|
odyn->add_constant(elfcpp::DT_VERNEEDNUM, vnentries);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-14 20:21:05 +01:00
|
|
|
// Create the .interp section and PT_INTERP segment.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::create_interp(const Target* target)
|
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
const char* interp = parameters->options().dynamic_linker();
|
2006-11-14 20:21:05 +01:00
|
|
|
if (interp == NULL)
|
|
|
|
{
|
|
|
|
interp = target->dynamic_linker();
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(interp != NULL);
|
2006-11-14 20:21:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t len = strlen(interp) + 1;
|
|
|
|
|
|
|
|
Output_section_data* odata = new Output_data_const(interp, len, 1);
|
|
|
|
|
2008-02-04 07:45:50 +01:00
|
|
|
Output_section* osec = this->choose_output_section(NULL, ".interp",
|
|
|
|
elfcpp::SHT_PROGBITS,
|
|
|
|
elfcpp::SHF_ALLOC,
|
2009-12-30 07:57:17 +01:00
|
|
|
false, true, true,
|
|
|
|
false, false, false);
|
2006-11-14 20:21:05 +01:00
|
|
|
osec->add_output_section_data(odata);
|
|
|
|
|
2008-02-04 23:54:31 +01:00
|
|
|
if (!this->script_options_->saw_phdrs_clause())
|
|
|
|
{
|
|
|
|
Output_segment* oseg = this->make_output_segment(elfcpp::PT_INTERP,
|
|
|
|
elfcpp::PF_R);
|
2009-11-04 16:56:03 +01:00
|
|
|
oseg->add_output_section(osec, elfcpp::PF_R, false);
|
2008-02-04 23:54:31 +01:00
|
|
|
}
|
2006-11-14 20:21:05 +01:00
|
|
|
}
|
|
|
|
|
2010-01-07 21:43:35 +01:00
|
|
|
// Add dynamic tags for the PLT and the dynamic relocs. This is
|
|
|
|
// called by the target-specific code. This does nothing if not doing
|
|
|
|
// a dynamic link.
|
|
|
|
|
|
|
|
// USE_REL is true for REL relocs rather than RELA relocs.
|
|
|
|
|
|
|
|
// If PLT_GOT is not NULL, then DT_PLTGOT points to it.
|
|
|
|
|
|
|
|
// If PLT_REL is not NULL, it is used for DT_PLTRELSZ, and DT_JMPREL,
|
2010-01-08 20:33:18 +01:00
|
|
|
// and we also set DT_PLTREL. We use PLT_REL's output section, since
|
|
|
|
// some targets have multiple reloc sections in PLT_REL.
|
2010-01-07 21:43:35 +01:00
|
|
|
|
|
|
|
// If DYN_REL is not NULL, it is used for DT_REL/DT_RELA,
|
|
|
|
// DT_RELSZ/DT_RELASZ, DT_RELENT/DT_RELAENT.
|
|
|
|
|
|
|
|
// If ADD_DEBUG is true, we add a DT_DEBUG entry when generating an
|
|
|
|
// executable.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::add_target_dynamic_tags(bool use_rel, const Output_data* plt_got,
|
|
|
|
const Output_data* plt_rel,
|
2010-01-07 22:09:31 +01:00
|
|
|
const Output_data_reloc_generic* dyn_rel,
|
2010-02-09 21:29:44 +01:00
|
|
|
bool add_debug, bool dynrel_includes_plt)
|
2010-01-07 21:43:35 +01:00
|
|
|
{
|
|
|
|
Output_data_dynamic* odyn = this->dynamic_data_;
|
|
|
|
if (odyn == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (plt_got != NULL && plt_got->output_section() != NULL)
|
|
|
|
odyn->add_section_address(elfcpp::DT_PLTGOT, plt_got);
|
|
|
|
|
|
|
|
if (plt_rel != NULL && plt_rel->output_section() != NULL)
|
|
|
|
{
|
2010-01-08 20:33:18 +01:00
|
|
|
odyn->add_section_size(elfcpp::DT_PLTRELSZ, plt_rel->output_section());
|
|
|
|
odyn->add_section_address(elfcpp::DT_JMPREL, plt_rel->output_section());
|
2010-01-07 21:43:35 +01:00
|
|
|
odyn->add_constant(elfcpp::DT_PLTREL,
|
|
|
|
use_rel ? elfcpp::DT_REL : elfcpp::DT_RELA);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (dyn_rel != NULL && dyn_rel->output_section() != NULL)
|
|
|
|
{
|
|
|
|
odyn->add_section_address(use_rel ? elfcpp::DT_REL : elfcpp::DT_RELA,
|
|
|
|
dyn_rel);
|
2010-02-09 21:29:44 +01:00
|
|
|
if (plt_rel != NULL && dynrel_includes_plt)
|
|
|
|
odyn->add_section_size(use_rel ? elfcpp::DT_RELSZ : elfcpp::DT_RELASZ,
|
|
|
|
dyn_rel, plt_rel);
|
|
|
|
else
|
|
|
|
odyn->add_section_size(use_rel ? elfcpp::DT_RELSZ : elfcpp::DT_RELASZ,
|
|
|
|
dyn_rel);
|
2010-01-07 21:43:35 +01:00
|
|
|
const int size = parameters->target().get_size();
|
|
|
|
elfcpp::DT rel_tag;
|
|
|
|
int rel_size;
|
|
|
|
if (use_rel)
|
|
|
|
{
|
|
|
|
rel_tag = elfcpp::DT_RELENT;
|
|
|
|
if (size == 32)
|
|
|
|
rel_size = Reloc_types<elfcpp::SHT_REL, 32, false>::reloc_size;
|
|
|
|
else if (size == 64)
|
|
|
|
rel_size = Reloc_types<elfcpp::SHT_REL, 64, false>::reloc_size;
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
rel_tag = elfcpp::DT_RELAENT;
|
|
|
|
if (size == 32)
|
|
|
|
rel_size = Reloc_types<elfcpp::SHT_RELA, 32, false>::reloc_size;
|
|
|
|
else if (size == 64)
|
|
|
|
rel_size = Reloc_types<elfcpp::SHT_RELA, 64, false>::reloc_size;
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
odyn->add_constant(rel_tag, rel_size);
|
2010-01-07 22:09:31 +01:00
|
|
|
|
|
|
|
if (parameters->options().combreloc())
|
|
|
|
{
|
|
|
|
size_t c = dyn_rel->relative_reloc_count();
|
|
|
|
if (c > 0)
|
|
|
|
odyn->add_constant((use_rel
|
|
|
|
? elfcpp::DT_RELCOUNT
|
|
|
|
: elfcpp::DT_RELACOUNT),
|
|
|
|
c);
|
|
|
|
}
|
2010-01-07 21:43:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (add_debug && !parameters->options().shared())
|
|
|
|
{
|
|
|
|
// The value of the DT_DEBUG tag is filled in by the dynamic
|
|
|
|
// linker at run time, and used by the debugger.
|
|
|
|
odyn->add_constant(elfcpp::DT_DEBUG, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
// Finish the .dynamic section and PT_DYNAMIC segment.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::finish_dynamic_section(const Input_objects* input_objects,
|
2006-12-01 17:51:25 +01:00
|
|
|
const Symbol_table* symtab)
|
2006-11-29 18:56:40 +01:00
|
|
|
{
|
2008-02-04 23:54:31 +01:00
|
|
|
if (!this->script_options_->saw_phdrs_clause())
|
|
|
|
{
|
|
|
|
Output_segment* oseg = this->make_output_segment(elfcpp::PT_DYNAMIC,
|
|
|
|
(elfcpp::PF_R
|
|
|
|
| elfcpp::PF_W));
|
2008-05-17 00:29:04 +02:00
|
|
|
oseg->add_output_section(this->dynamic_section_,
|
2009-11-04 16:56:03 +01:00
|
|
|
elfcpp::PF_R | elfcpp::PF_W,
|
|
|
|
false);
|
2008-02-04 23:54:31 +01:00
|
|
|
}
|
2006-11-29 18:56:40 +01:00
|
|
|
|
2006-12-01 17:51:25 +01:00
|
|
|
Output_data_dynamic* const odyn = this->dynamic_data_;
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
for (Input_objects::Dynobj_iterator p = input_objects->dynobj_begin();
|
|
|
|
p != input_objects->dynobj_end();
|
|
|
|
++p)
|
|
|
|
{
|
2009-11-05 07:24:39 +01:00
|
|
|
if (!(*p)->is_needed()
|
|
|
|
&& (*p)->input_file()->options().as_needed())
|
|
|
|
{
|
|
|
|
// This dynamic object was linked with --as-needed, but it
|
|
|
|
// is not needed.
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2006-11-29 18:56:40 +01:00
|
|
|
odyn->add_string(elfcpp::DT_NEEDED, (*p)->soname());
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().shared())
|
2008-01-04 06:35:24 +01:00
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
const char* soname = parameters->options().soname();
|
2008-01-04 06:35:24 +01:00
|
|
|
if (soname != NULL)
|
|
|
|
odyn->add_string(elfcpp::DT_SONAME, soname);
|
|
|
|
}
|
|
|
|
|
2009-10-13 23:23:00 +02:00
|
|
|
Symbol* sym = symtab->lookup(parameters->options().init());
|
2006-12-06 01:02:36 +01:00
|
|
|
if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
|
2006-11-29 18:56:40 +01:00
|
|
|
odyn->add_symbol(elfcpp::DT_INIT, sym);
|
|
|
|
|
2009-10-13 23:23:00 +02:00
|
|
|
sym = symtab->lookup(parameters->options().fini());
|
2006-12-06 01:02:36 +01:00
|
|
|
if (sym != NULL && sym->is_defined() && !sym->is_from_dynobj())
|
2006-11-29 18:56:40 +01:00
|
|
|
odyn->add_symbol(elfcpp::DT_FINI, sym);
|
|
|
|
|
2009-10-15 20:17:48 +02:00
|
|
|
// Look for .init_array, .preinit_array and .fini_array by checking
|
|
|
|
// section types.
|
|
|
|
for(Layout::Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
switch((*p)->type())
|
|
|
|
{
|
|
|
|
case elfcpp::SHT_FINI_ARRAY:
|
|
|
|
odyn->add_section_address(elfcpp::DT_FINI_ARRAY, *p);
|
|
|
|
odyn->add_section_size(elfcpp::DT_FINI_ARRAYSZ, *p);
|
|
|
|
break;
|
|
|
|
case elfcpp::SHT_INIT_ARRAY:
|
|
|
|
odyn->add_section_address(elfcpp::DT_INIT_ARRAY, *p);
|
|
|
|
odyn->add_section_size(elfcpp::DT_INIT_ARRAYSZ, *p);
|
|
|
|
break;
|
|
|
|
case elfcpp::SHT_PREINIT_ARRAY:
|
|
|
|
odyn->add_section_address(elfcpp::DT_PREINIT_ARRAY, *p);
|
|
|
|
odyn->add_section_size(elfcpp::DT_PREINIT_ARRAYSZ, *p);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-08-21 22:37:32 +02:00
|
|
|
// Add a DT_RPATH entry if needed.
|
2009-04-02 06:19:03 +02:00
|
|
|
const General_options::Dir_list& rpath(parameters->options().rpath());
|
2007-08-21 22:37:32 +02:00
|
|
|
if (!rpath.empty())
|
|
|
|
{
|
|
|
|
std::string rpath_val;
|
|
|
|
for (General_options::Dir_list::const_iterator p = rpath.begin();
|
|
|
|
p != rpath.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (rpath_val.empty())
|
2007-10-04 07:49:04 +02:00
|
|
|
rpath_val = p->name();
|
2007-08-21 22:37:32 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
// Eliminate duplicates.
|
|
|
|
General_options::Dir_list::const_iterator q;
|
|
|
|
for (q = rpath.begin(); q != p; ++q)
|
2007-10-04 07:49:04 +02:00
|
|
|
if (q->name() == p->name())
|
2007-08-21 22:37:32 +02:00
|
|
|
break;
|
|
|
|
if (q == p)
|
|
|
|
{
|
|
|
|
rpath_val += ':';
|
2007-10-04 07:49:04 +02:00
|
|
|
rpath_val += p->name();
|
2007-08-21 22:37:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
odyn->add_string(elfcpp::DT_RPATH, rpath_val);
|
elfcpp/
* elfcpp.h (DF_1_NOW, DF_1_GLOBAL, DF_1_GROUP,
DF_1_NODELETE, DF_1_LOADFLTR, DF_1_INITFIRST,
DF_1_NOOPEN, DF_1_ORIGIN, DF_1_DIRECT, DF_1_TRANS,
DF_1_INTERPOSE, DF_1_NODEFLIB, DF_1_NODUMP,
DF_1_CONLFAT): New enum constants.
gold/
* options.h (DEFINE_enable): New macro.
(new_dtags): New enable option.
(initfirst, interpose, loadfltr, nodefaultlib,
nodelete, nodlopen, nodump): New -z options.
* layout.cc (Layout:finish_dynamic_section): If new
dtags enabled, emit DT_RUNPATH. Also, emit a
DT_FLAGS_1 containing any specified -z flags.
2008-04-17 01:21:01 +02:00
|
|
|
if (parameters->options().enable_new_dtags())
|
|
|
|
odyn->add_string(elfcpp::DT_RUNPATH, rpath_val);
|
2007-08-21 22:37:32 +02:00
|
|
|
}
|
2007-11-16 00:46:46 +01:00
|
|
|
|
|
|
|
// Look for text segments that have dynamic relocations.
|
|
|
|
bool have_textrel = false;
|
2008-02-12 01:24:00 +01:00
|
|
|
if (!this->script_options_->saw_sections_clause())
|
2007-11-16 00:46:46 +01:00
|
|
|
{
|
2008-02-12 01:24:00 +01:00
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (((*p)->flags() & elfcpp::PF_W) == 0
|
|
|
|
&& (*p)->dynamic_reloc_count() > 0)
|
|
|
|
{
|
|
|
|
have_textrel = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We don't know the section -> segment mapping, so we are
|
|
|
|
// conservative and just look for readonly sections with
|
|
|
|
// relocations. If those sections wind up in writable segments,
|
|
|
|
// then we have created an unnecessary DT_TEXTREL entry.
|
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0
|
|
|
|
&& ((*p)->flags() & elfcpp::SHF_WRITE) == 0
|
|
|
|
&& ((*p)->dynamic_reloc_count() > 0))
|
|
|
|
{
|
|
|
|
have_textrel = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-11-16 00:46:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Add a DT_FLAGS entry. We add it even if no flags are set so that
|
|
|
|
// post-link tools can easily modify these flags if desired.
|
|
|
|
unsigned int flags = 0;
|
|
|
|
if (have_textrel)
|
2007-12-08 00:26:51 +01:00
|
|
|
{
|
|
|
|
// Add a DT_TEXTREL for compatibility with older loaders.
|
|
|
|
odyn->add_constant(elfcpp::DT_TEXTREL, 0);
|
|
|
|
flags |= elfcpp::DF_TEXTREL;
|
2010-01-07 07:05:23 +01:00
|
|
|
|
2010-01-07 19:16:24 +01:00
|
|
|
if (parameters->options().text())
|
|
|
|
gold_error(_("read-only segment has dynamic relocations"));
|
|
|
|
else if (parameters->options().warn_shared_textrel()
|
|
|
|
&& parameters->options().shared())
|
2010-01-07 07:05:23 +01:00
|
|
|
gold_warning(_("shared library text segment is not shareable"));
|
2007-12-08 00:26:51 +01:00
|
|
|
}
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().shared() && this->has_static_tls())
|
2007-12-12 00:30:52 +01:00
|
|
|
flags |= elfcpp::DF_STATIC_TLS;
|
2008-09-12 07:42:29 +02:00
|
|
|
if (parameters->options().origin())
|
|
|
|
flags |= elfcpp::DF_ORIGIN;
|
2009-10-15 20:17:48 +02:00
|
|
|
if (parameters->options().Bsymbolic())
|
|
|
|
{
|
|
|
|
flags |= elfcpp::DF_SYMBOLIC;
|
|
|
|
// Add DT_SYMBOLIC for compatibility with older loaders.
|
|
|
|
odyn->add_constant(elfcpp::DT_SYMBOLIC, 0);
|
|
|
|
}
|
2009-06-22 22:23:21 +02:00
|
|
|
if (parameters->options().now())
|
|
|
|
flags |= elfcpp::DF_BIND_NOW;
|
2007-11-16 00:46:46 +01:00
|
|
|
odyn->add_constant(elfcpp::DT_FLAGS, flags);
|
elfcpp/
* elfcpp.h (DF_1_NOW, DF_1_GLOBAL, DF_1_GROUP,
DF_1_NODELETE, DF_1_LOADFLTR, DF_1_INITFIRST,
DF_1_NOOPEN, DF_1_ORIGIN, DF_1_DIRECT, DF_1_TRANS,
DF_1_INTERPOSE, DF_1_NODEFLIB, DF_1_NODUMP,
DF_1_CONLFAT): New enum constants.
gold/
* options.h (DEFINE_enable): New macro.
(new_dtags): New enable option.
(initfirst, interpose, loadfltr, nodefaultlib,
nodelete, nodlopen, nodump): New -z options.
* layout.cc (Layout:finish_dynamic_section): If new
dtags enabled, emit DT_RUNPATH. Also, emit a
DT_FLAGS_1 containing any specified -z flags.
2008-04-17 01:21:01 +02:00
|
|
|
|
|
|
|
flags = 0;
|
|
|
|
if (parameters->options().initfirst())
|
|
|
|
flags |= elfcpp::DF_1_INITFIRST;
|
|
|
|
if (parameters->options().interpose())
|
|
|
|
flags |= elfcpp::DF_1_INTERPOSE;
|
|
|
|
if (parameters->options().loadfltr())
|
|
|
|
flags |= elfcpp::DF_1_LOADFLTR;
|
|
|
|
if (parameters->options().nodefaultlib())
|
|
|
|
flags |= elfcpp::DF_1_NODEFLIB;
|
|
|
|
if (parameters->options().nodelete())
|
|
|
|
flags |= elfcpp::DF_1_NODELETE;
|
|
|
|
if (parameters->options().nodlopen())
|
|
|
|
flags |= elfcpp::DF_1_NOOPEN;
|
|
|
|
if (parameters->options().nodump())
|
|
|
|
flags |= elfcpp::DF_1_NODUMP;
|
|
|
|
if (!parameters->options().shared())
|
|
|
|
flags &= ~(elfcpp::DF_1_INITFIRST
|
|
|
|
| elfcpp::DF_1_NODELETE
|
|
|
|
| elfcpp::DF_1_NOOPEN);
|
2008-09-12 07:42:29 +02:00
|
|
|
if (parameters->options().origin())
|
|
|
|
flags |= elfcpp::DF_1_ORIGIN;
|
2009-06-22 22:23:21 +02:00
|
|
|
if (parameters->options().now())
|
|
|
|
flags |= elfcpp::DF_1_NOW;
|
elfcpp/
* elfcpp.h (DF_1_NOW, DF_1_GLOBAL, DF_1_GROUP,
DF_1_NODELETE, DF_1_LOADFLTR, DF_1_INITFIRST,
DF_1_NOOPEN, DF_1_ORIGIN, DF_1_DIRECT, DF_1_TRANS,
DF_1_INTERPOSE, DF_1_NODEFLIB, DF_1_NODUMP,
DF_1_CONLFAT): New enum constants.
gold/
* options.h (DEFINE_enable): New macro.
(new_dtags): New enable option.
(initfirst, interpose, loadfltr, nodefaultlib,
nodelete, nodlopen, nodump): New -z options.
* layout.cc (Layout:finish_dynamic_section): If new
dtags enabled, emit DT_RUNPATH. Also, emit a
DT_FLAGS_1 containing any specified -z flags.
2008-04-17 01:21:01 +02:00
|
|
|
if (flags)
|
|
|
|
odyn->add_constant(elfcpp::DT_FLAGS_1, flags);
|
2006-11-29 18:56:40 +01:00
|
|
|
}
|
|
|
|
|
2009-12-30 05:16:50 +01:00
|
|
|
// Set the size of the _DYNAMIC symbol table to be the size of the
|
|
|
|
// dynamic data.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::set_dynamic_symbol_size(const Symbol_table* symtab)
|
|
|
|
{
|
|
|
|
Output_data_dynamic* const odyn = this->dynamic_data_;
|
|
|
|
odyn->finalize_data_size();
|
|
|
|
off_t data_size = odyn->data_size();
|
|
|
|
const int size = parameters->target().get_size();
|
|
|
|
if (size == 32)
|
|
|
|
symtab->get_sized_symbol<32>(this->dynamic_symbol_)->set_symsize(data_size);
|
|
|
|
else if (size == 64)
|
|
|
|
symtab->get_sized_symbol<64>(this->dynamic_symbol_)->set_symsize(data_size);
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
}
|
|
|
|
|
2009-06-04 02:43:11 +02:00
|
|
|
// The mapping of input section name prefixes to output section names.
|
|
|
|
// In some cases one prefix is itself a prefix of another prefix; in
|
|
|
|
// such a case the longer prefix must come first. These prefixes are
|
|
|
|
// based on the GNU linker default ELF linker script.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
#define MAPPING_INIT(f, t) { f, sizeof(f) - 1, t, sizeof(t) - 1 }
|
2009-06-04 02:43:11 +02:00
|
|
|
const Layout::Section_name_mapping Layout::section_name_mapping[] =
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
2009-06-04 02:43:11 +02:00
|
|
|
MAPPING_INIT(".text.", ".text"),
|
|
|
|
MAPPING_INIT(".ctors.", ".ctors"),
|
|
|
|
MAPPING_INIT(".dtors.", ".dtors"),
|
|
|
|
MAPPING_INIT(".rodata.", ".rodata"),
|
|
|
|
MAPPING_INIT(".data.rel.ro.local", ".data.rel.ro.local"),
|
|
|
|
MAPPING_INIT(".data.rel.ro", ".data.rel.ro"),
|
|
|
|
MAPPING_INIT(".data.", ".data"),
|
|
|
|
MAPPING_INIT(".bss.", ".bss"),
|
|
|
|
MAPPING_INIT(".tdata.", ".tdata"),
|
|
|
|
MAPPING_INIT(".tbss.", ".tbss"),
|
|
|
|
MAPPING_INIT(".init_array.", ".init_array"),
|
|
|
|
MAPPING_INIT(".fini_array.", ".fini_array"),
|
|
|
|
MAPPING_INIT(".sdata.", ".sdata"),
|
|
|
|
MAPPING_INIT(".sbss.", ".sbss"),
|
|
|
|
// FIXME: In the GNU linker, .sbss2 and .sdata2 are handled
|
|
|
|
// differently depending on whether it is creating a shared library.
|
|
|
|
MAPPING_INIT(".sdata2.", ".sdata"),
|
|
|
|
MAPPING_INIT(".sbss2.", ".sbss"),
|
|
|
|
MAPPING_INIT(".lrodata.", ".lrodata"),
|
|
|
|
MAPPING_INIT(".ldata.", ".ldata"),
|
|
|
|
MAPPING_INIT(".lbss.", ".lbss"),
|
|
|
|
MAPPING_INIT(".gcc_except_table.", ".gcc_except_table"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.d.rel.ro.local.", ".data.rel.ro.local"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.d.rel.ro.", ".data.rel.ro"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.t.", ".text"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.r.", ".rodata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.d.", ".data"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.b.", ".bss"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.s.", ".sdata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.sb.", ".sbss"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.s2.", ".sdata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.sb2.", ".sbss"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.wi.", ".debug_info"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.td.", ".tdata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.tb.", ".tbss"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.lr.", ".lrodata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.l.", ".ldata"),
|
|
|
|
MAPPING_INIT(".gnu.linkonce.lb.", ".lbss"),
|
2010-02-24 21:45:12 +01:00
|
|
|
MAPPING_INIT(".ARM.extab", ".ARM.extab"),
|
2009-06-04 23:14:11 +02:00
|
|
|
MAPPING_INIT(".gnu.linkonce.armextab.", ".ARM.extab"),
|
2010-02-24 21:45:12 +01:00
|
|
|
MAPPING_INIT(".ARM.exidx", ".ARM.exidx"),
|
2009-06-04 23:14:11 +02:00
|
|
|
MAPPING_INIT(".gnu.linkonce.armexidx.", ".ARM.exidx"),
|
2006-09-22 00:13:18 +02:00
|
|
|
};
|
|
|
|
#undef MAPPING_INIT
|
|
|
|
|
2009-06-04 02:43:11 +02:00
|
|
|
const int Layout::section_name_mapping_count =
|
|
|
|
(sizeof(Layout::section_name_mapping)
|
|
|
|
/ sizeof(Layout::section_name_mapping[0]));
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2006-11-03 19:26:11 +01:00
|
|
|
// Choose the output section name to use given an input section name.
|
|
|
|
// Set *PLEN to the length of the name. *PLEN is initialized to the
|
|
|
|
// length of NAME.
|
|
|
|
|
|
|
|
const char*
|
|
|
|
Layout::output_section_name(const char* name, size_t* plen)
|
|
|
|
{
|
2007-10-18 21:56:12 +02:00
|
|
|
// gcc 4.3 generates the following sorts of section names when it
|
|
|
|
// needs a section name specific to a function:
|
|
|
|
// .text.FN
|
|
|
|
// .rodata.FN
|
|
|
|
// .sdata2.FN
|
|
|
|
// .data.FN
|
|
|
|
// .data.rel.FN
|
|
|
|
// .data.rel.local.FN
|
|
|
|
// .data.rel.ro.FN
|
|
|
|
// .data.rel.ro.local.FN
|
|
|
|
// .sdata.FN
|
|
|
|
// .bss.FN
|
|
|
|
// .sbss.FN
|
|
|
|
// .tdata.FN
|
|
|
|
// .tbss.FN
|
|
|
|
|
|
|
|
// The GNU linker maps all of those to the part before the .FN,
|
|
|
|
// except that .data.rel.local.FN is mapped to .data, and
|
|
|
|
// .data.rel.ro.local.FN is mapped to .data.rel.ro. The sections
|
|
|
|
// beginning with .data.rel.ro.local are grouped together.
|
|
|
|
|
|
|
|
// For an anonymous namespace, the string FN can contain a '.'.
|
|
|
|
|
|
|
|
// Also of interest: .rodata.strN.N, .rodata.cstN, both of which the
|
|
|
|
// GNU linker maps to .rodata.
|
|
|
|
|
2009-06-04 02:43:11 +02:00
|
|
|
// The .data.rel.ro sections are used with -z relro. The sections
|
|
|
|
// are recognized by name. We use the same names that the GNU
|
|
|
|
// linker does for these sections.
|
2007-10-18 21:56:12 +02:00
|
|
|
|
2009-06-04 02:43:11 +02:00
|
|
|
// It is hard to handle this in a principled way, so we don't even
|
|
|
|
// try. We use a table of mappings. If the input section name is
|
|
|
|
// not found in the table, we simply use it as the output section
|
|
|
|
// name.
|
2007-10-18 21:56:12 +02:00
|
|
|
|
2009-06-04 02:43:11 +02:00
|
|
|
const Section_name_mapping* psnm = section_name_mapping;
|
|
|
|
for (int i = 0; i < section_name_mapping_count; ++i, ++psnm)
|
2006-11-03 19:26:11 +01:00
|
|
|
{
|
2009-06-04 02:43:11 +02:00
|
|
|
if (strncmp(name, psnm->from, psnm->fromlen) == 0)
|
|
|
|
{
|
|
|
|
*plen = psnm->tolen;
|
|
|
|
return psnm->to;
|
|
|
|
}
|
2006-11-03 19:26:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2009-03-01 23:22:02 +01:00
|
|
|
// Check if a comdat group or .gnu.linkonce section with the given
|
|
|
|
// NAME is selected for the link. If there is already a section,
|
2009-07-17 03:07:33 +02:00
|
|
|
// *KEPT_SECTION is set to point to the existing section and the
|
|
|
|
// function returns false. Otherwise, OBJECT, SHNDX, IS_COMDAT, and
|
|
|
|
// IS_GROUP_NAME are recorded for this NAME in the layout object,
|
|
|
|
// *KEPT_SECTION is set to the internal copy and the function returns
|
|
|
|
// true.
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
bool
|
2009-04-02 06:19:03 +02:00
|
|
|
Layout::find_or_add_kept_section(const std::string& name,
|
2009-07-17 03:07:33 +02:00
|
|
|
Relobj* object,
|
|
|
|
unsigned int shndx,
|
|
|
|
bool is_comdat,
|
|
|
|
bool is_group_name,
|
2009-03-01 23:22:02 +01:00
|
|
|
Kept_section** kept_section)
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
// It's normal to see a couple of entries here, for the x86 thunk
|
|
|
|
// sections. If we see more than a few, we're linking a C++
|
|
|
|
// program, and we resize to get more space to minimize rehashing.
|
|
|
|
if (this->signatures_.size() > 4
|
|
|
|
&& !this->resized_signatures_)
|
|
|
|
{
|
|
|
|
reserve_unordered_map(&this->signatures_,
|
|
|
|
this->number_of_input_files_ * 64);
|
|
|
|
this->resized_signatures_ = true;
|
|
|
|
}
|
|
|
|
|
2009-07-17 03:07:33 +02:00
|
|
|
Kept_section candidate;
|
|
|
|
std::pair<Signatures::iterator, bool> ins =
|
|
|
|
this->signatures_.insert(std::make_pair(name, candidate));
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2009-07-17 03:07:33 +02:00
|
|
|
if (kept_section != NULL)
|
2009-03-01 23:22:02 +01:00
|
|
|
*kept_section = &ins.first->second;
|
2006-09-22 00:13:18 +02:00
|
|
|
if (ins.second)
|
|
|
|
{
|
|
|
|
// This is the first time we've seen this signature.
|
2009-07-17 03:07:33 +02:00
|
|
|
ins.first->second.set_object(object);
|
|
|
|
ins.first->second.set_shndx(shndx);
|
|
|
|
if (is_comdat)
|
|
|
|
ins.first->second.set_is_comdat();
|
|
|
|
if (is_group_name)
|
|
|
|
ins.first->second.set_is_group_name();
|
2006-09-22 00:13:18 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-07-17 03:07:33 +02:00
|
|
|
// We have already seen this signature.
|
|
|
|
|
|
|
|
if (ins.first->second.is_group_name())
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
|
|
|
// We've already seen a real section group with this signature.
|
2009-07-17 03:07:33 +02:00
|
|
|
// If the kept group is from a plugin object, and we're in the
|
|
|
|
// replacement phase, accept the new one as a replacement.
|
|
|
|
if (ins.first->second.object() == NULL
|
2008-12-10 20:50:14 +01:00
|
|
|
&& parameters->options().plugins()->in_replacement_phase())
|
|
|
|
{
|
2009-07-17 03:07:33 +02:00
|
|
|
ins.first->second.set_object(object);
|
|
|
|
ins.first->second.set_shndx(shndx);
|
2008-12-10 20:50:14 +01:00
|
|
|
return true;
|
|
|
|
}
|
2006-09-22 00:13:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2009-07-17 03:07:33 +02:00
|
|
|
else if (is_group_name)
|
2006-09-22 00:13:18 +02:00
|
|
|
{
|
|
|
|
// This is a real section group, and we've already seen a
|
2007-09-23 21:50:33 +02:00
|
|
|
// linkonce section with this signature. Record that we've seen
|
2006-09-22 00:13:18 +02:00
|
|
|
// a section group, and don't include this section group.
|
2009-07-17 03:07:33 +02:00
|
|
|
ins.first->second.set_is_group_name();
|
2006-09-22 00:13:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// We've already seen a linkonce section and this is a linkonce
|
|
|
|
// section. These don't block each other--this may be the same
|
|
|
|
// symbol name with different section types.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
// Store the allocated sections into the section list.
|
|
|
|
|
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Layout::get_allocated_sections(Section_list* section_list) const
|
2008-02-04 06:43:05 +01:00
|
|
|
{
|
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
if (((*p)->flags() & elfcpp::SHF_ALLOC) != 0)
|
2009-12-14 20:53:05 +01:00
|
|
|
section_list->push_back(*p);
|
2008-02-04 06:43:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create an output segment.
|
|
|
|
|
|
|
|
Output_segment*
|
|
|
|
Layout::make_output_segment(elfcpp::Elf_Word type, elfcpp::Elf_Word flags)
|
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!parameters->options().relocatable());
|
2008-02-04 06:43:05 +01:00
|
|
|
Output_segment* oseg = new Output_segment(type, flags);
|
|
|
|
this->segment_list_.push_back(oseg);
|
2008-08-13 09:37:46 +02:00
|
|
|
|
|
|
|
if (type == elfcpp::PT_TLS)
|
|
|
|
this->tls_segment_ = oseg;
|
|
|
|
else if (type == elfcpp::PT_GNU_RELRO)
|
|
|
|
this->relro_segment_ = oseg;
|
|
|
|
|
2008-02-04 06:43:05 +01:00
|
|
|
return oseg;
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
// Write out the Output_sections. Most won't have anything to write,
|
|
|
|
// since most of the data will come from input sections which are
|
|
|
|
// handled elsewhere. But some Output_sections do have Output_data.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::write_output_sections(Output_file* of) const
|
|
|
|
{
|
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if (!(*p)->after_input_sections())
|
|
|
|
(*p)->write(of);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Write out data not associated with a section or the symbol table.
|
|
|
|
|
|
|
|
void
|
2007-09-26 09:01:35 +02:00
|
|
|
Layout::write_data(const Symbol_table* symtab, Output_file* of) const
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
if (!parameters->options().strip_all())
|
2006-11-29 18:56:40 +01:00
|
|
|
{
|
2009-12-14 20:53:05 +01:00
|
|
|
const Output_section* symtab_section = this->symtab_section_;
|
2007-10-10 21:02:56 +02:00
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
2006-11-29 18:56:40 +01:00
|
|
|
{
|
2007-10-10 21:02:56 +02:00
|
|
|
if ((*p)->needs_symtab_index())
|
|
|
|
{
|
2009-12-14 20:53:05 +01:00
|
|
|
gold_assert(symtab_section != NULL);
|
2007-10-10 21:02:56 +02:00
|
|
|
unsigned int index = (*p)->symtab_index();
|
|
|
|
gold_assert(index > 0 && index != -1U);
|
2009-12-14 20:53:05 +01:00
|
|
|
off_t off = (symtab_section->offset()
|
|
|
|
+ index * symtab_section->entsize());
|
2008-04-19 20:30:58 +02:00
|
|
|
symtab->write_section_symbol(*p, this->symtab_xindex_, of, off);
|
2007-10-10 21:02:56 +02:00
|
|
|
}
|
2006-11-29 18:56:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-14 20:53:05 +01:00
|
|
|
const Output_section* dynsym_section = this->dynsym_section_;
|
2006-11-29 18:56:40 +01:00
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->needs_dynsym_index())
|
|
|
|
{
|
2009-12-14 20:53:05 +01:00
|
|
|
gold_assert(dynsym_section != NULL);
|
2006-11-29 18:56:40 +01:00
|
|
|
unsigned int index = (*p)->dynsym_index();
|
|
|
|
gold_assert(index > 0 && index != -1U);
|
2009-12-14 20:53:05 +01:00
|
|
|
off_t off = (dynsym_section->offset()
|
|
|
|
+ index * dynsym_section->entsize());
|
2008-04-19 20:30:58 +02:00
|
|
|
symtab->write_section_symbol(*p, this->dynsym_xindex_, of, off);
|
2006-11-29 18:56:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write out the Output_data which are not in an Output_section.
|
2006-09-29 21:58:17 +02:00
|
|
|
for (Data_list::const_iterator p = this->special_output_list_.begin();
|
|
|
|
p != this->special_output_list_.end();
|
|
|
|
++p)
|
|
|
|
(*p)->write(of);
|
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
// Write out the Output_sections which can only be written after the
|
|
|
|
// input sections are complete.
|
|
|
|
|
|
|
|
void
|
2007-11-29 21:10:17 +01:00
|
|
|
Layout::write_sections_after_input_sections(Output_file* of)
|
2007-11-09 08:00:15 +01:00
|
|
|
{
|
2007-11-29 21:10:17 +01:00
|
|
|
// Determine the final section offsets, and thus the final output
|
2007-11-30 01:35:27 +01:00
|
|
|
// file size. Note we finalize the .shstrab last, to allow the
|
|
|
|
// after_input_section sections to modify their section-names before
|
|
|
|
// writing.
|
2007-12-14 20:00:21 +01:00
|
|
|
if (this->any_postprocessing_sections_)
|
2007-11-29 21:10:17 +01:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
off_t off = this->output_file_size_;
|
|
|
|
off = this->set_section_offsets(off, POSTPROCESSING_SECTIONS_PASS);
|
2009-03-01 23:22:02 +01:00
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
// Now that we've finalized the names, we can finalize the shstrab.
|
|
|
|
off =
|
|
|
|
this->set_section_offsets(off,
|
|
|
|
STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS);
|
|
|
|
|
|
|
|
if (off > this->output_file_size_)
|
|
|
|
{
|
|
|
|
of->resize(off);
|
|
|
|
this->output_file_size_ = off;
|
|
|
|
}
|
2007-11-29 21:10:17 +01:00
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->after_input_sections())
|
|
|
|
(*p)->write(of);
|
|
|
|
}
|
2007-11-29 21:10:17 +01:00
|
|
|
|
|
|
|
this->section_headers_->write(of);
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
// If the build ID requires computing a checksum, do so here, and
|
|
|
|
// write it out. We compute a checksum over the entire file because
|
|
|
|
// that is simplest.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::write_build_id(Output_file* of) const
|
|
|
|
{
|
|
|
|
if (this->build_id_note_ == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const unsigned char* iv = of->get_input_view(0, this->output_file_size_);
|
|
|
|
|
|
|
|
unsigned char* ov = of->get_output_view(this->build_id_note_->offset(),
|
|
|
|
this->build_id_note_->data_size());
|
|
|
|
|
|
|
|
const char* style = parameters->options().build_id();
|
|
|
|
if (strcmp(style, "sha1") == 0)
|
|
|
|
{
|
|
|
|
sha1_ctx ctx;
|
|
|
|
sha1_init_ctx(&ctx);
|
|
|
|
sha1_process_bytes(iv, this->output_file_size_, &ctx);
|
|
|
|
sha1_finish_ctx(&ctx, ov);
|
|
|
|
}
|
|
|
|
else if (strcmp(style, "md5") == 0)
|
|
|
|
{
|
|
|
|
md5_ctx ctx;
|
|
|
|
md5_init_ctx(&ctx);
|
|
|
|
md5_process_bytes(iv, this->output_file_size_, &ctx);
|
|
|
|
md5_finish_ctx(&ctx, ov);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
|
|
|
|
|
|
|
of->write_output_view(this->build_id_note_->offset(),
|
|
|
|
this->build_id_note_->data_size(),
|
|
|
|
ov);
|
|
|
|
|
|
|
|
of->free_input_view(0, this->output_file_size_, iv);
|
|
|
|
}
|
|
|
|
|
2008-02-07 08:33:46 +01:00
|
|
|
// Write out a binary file. This is called after the link is
|
|
|
|
// complete. IN is the temporary output file we used to generate the
|
|
|
|
// ELF code. We simply walk through the segments, read them from
|
|
|
|
// their file offset in IN, and write them to their load address in
|
|
|
|
// the output file. FIXME: with a bit more work, we could support
|
|
|
|
// S-records and/or Intel hex format here.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::write_binary(Output_file* in) const
|
|
|
|
{
|
2009-04-02 06:19:03 +02:00
|
|
|
gold_assert(parameters->options().oformat_enum()
|
2008-02-08 08:06:58 +01:00
|
|
|
== General_options::OBJECT_FORMAT_BINARY);
|
2008-02-07 08:33:46 +01:00
|
|
|
|
|
|
|
// Get the size of the binary file.
|
|
|
|
uint64_t max_load_address = 0;
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
|
|
|
|
{
|
|
|
|
uint64_t max_paddr = (*p)->paddr() + (*p)->filesz();
|
|
|
|
if (max_paddr > max_load_address)
|
|
|
|
max_load_address = max_paddr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
Output_file out(parameters->options().output_file_name());
|
2008-02-07 08:33:46 +01:00
|
|
|
out.open(max_load_address);
|
|
|
|
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
{
|
|
|
|
if ((*p)->type() == elfcpp::PT_LOAD && (*p)->filesz() > 0)
|
|
|
|
{
|
|
|
|
const unsigned char* vin = in->get_input_view((*p)->offset(),
|
|
|
|
(*p)->filesz());
|
|
|
|
unsigned char* vout = out.get_output_view((*p)->paddr(),
|
|
|
|
(*p)->filesz());
|
|
|
|
memcpy(vout, vin, (*p)->filesz());
|
|
|
|
out.write_output_view((*p)->paddr(), (*p)->filesz(), vout);
|
|
|
|
in->free_input_view((*p)->offset(), (*p)->filesz(), vin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
out.close();
|
|
|
|
}
|
|
|
|
|
2008-05-21 23:37:44 +02:00
|
|
|
// Print the output sections to the map file.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::print_to_mapfile(Mapfile* mapfile) const
|
|
|
|
{
|
|
|
|
for (Segment_list::const_iterator p = this->segment_list_.begin();
|
|
|
|
p != this->segment_list_.end();
|
|
|
|
++p)
|
|
|
|
(*p)->print_sections_to_mapfile(mapfile);
|
|
|
|
}
|
|
|
|
|
2007-12-05 01:48:49 +01:00
|
|
|
// Print statistical information to stderr. This is used for --stats.
|
|
|
|
|
|
|
|
void
|
|
|
|
Layout::print_stats() const
|
|
|
|
{
|
|
|
|
this->namepool_.print_stats("section name pool");
|
|
|
|
this->sympool_.print_stats("output symbol name pool");
|
|
|
|
this->dynpool_.print_stats("dynamic name pool");
|
2007-12-18 22:24:10 +01:00
|
|
|
|
|
|
|
for (Section_list::const_iterator p = this->section_list_.begin();
|
|
|
|
p != this->section_list_.end();
|
|
|
|
++p)
|
|
|
|
(*p)->print_merge_stats();
|
2007-12-05 01:48:49 +01:00
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
// Write_sections_task methods.
|
|
|
|
|
|
|
|
// We can always run this task.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_token*
|
|
|
|
Write_sections_task::is_runnable()
|
2007-11-09 08:00:15 +01:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
return NULL;
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to unlock both OUTPUT_SECTIONS_BLOCKER and FINAL_BLOCKER
|
|
|
|
// when finished.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
Write_sections_task::locks(Task_locker* tl)
|
2007-11-09 08:00:15 +01:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
tl->add(this, this->output_sections_blocker_);
|
|
|
|
tl->add(this, this->final_blocker_);
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the task--write out the data.
|
|
|
|
|
|
|
|
void
|
|
|
|
Write_sections_task::run(Workqueue*)
|
|
|
|
{
|
|
|
|
this->layout_->write_output_sections(this->of_);
|
|
|
|
}
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
// Write_data_task methods.
|
|
|
|
|
|
|
|
// We can always run this task.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_token*
|
|
|
|
Write_data_task::is_runnable()
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
return NULL;
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to unlock FINAL_BLOCKER when finished.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
Write_data_task::locks(Task_locker* tl)
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
tl->add(this, this->final_blocker_);
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the task--write out the data.
|
|
|
|
|
|
|
|
void
|
|
|
|
Write_data_task::run(Workqueue*)
|
|
|
|
{
|
2007-09-26 09:01:35 +02:00
|
|
|
this->layout_->write_data(this->symtab_, this->of_);
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Write_symbols_task methods.
|
|
|
|
|
|
|
|
// We can always run this task.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_token*
|
|
|
|
Write_symbols_task::is_runnable()
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
return NULL;
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to unlock FINAL_BLOCKER when finished.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
Write_symbols_task::locks(Task_locker* tl)
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
tl->add(this, this->final_blocker_);
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the task--write out the symbols.
|
|
|
|
|
|
|
|
void
|
|
|
|
Write_symbols_task::run(Workqueue*)
|
|
|
|
{
|
2009-02-28 05:39:57 +01:00
|
|
|
this->symtab_->write_globals(this->sympool_, this->dynpool_,
|
|
|
|
this->layout_->symtab_xindex(),
|
2008-04-19 20:30:58 +02:00
|
|
|
this->layout_->dynsym_xindex(), this->of_);
|
2006-09-29 21:58:17 +02:00
|
|
|
}
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
// Write_after_input_sections_task methods.
|
|
|
|
|
|
|
|
// We can only run this task after the input sections have completed.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
Task_token*
|
|
|
|
Write_after_input_sections_task::is_runnable()
|
2007-11-09 08:00:15 +01:00
|
|
|
{
|
|
|
|
if (this->input_sections_blocker_->is_blocked())
|
2007-12-14 20:00:21 +01:00
|
|
|
return this->input_sections_blocker_;
|
|
|
|
return NULL;
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// We need to unlock FINAL_BLOCKER when finished.
|
|
|
|
|
2007-12-14 20:00:21 +01:00
|
|
|
void
|
|
|
|
Write_after_input_sections_task::locks(Task_locker* tl)
|
2007-11-09 08:00:15 +01:00
|
|
|
{
|
2007-12-14 20:00:21 +01:00
|
|
|
tl->add(this, this->final_blocker_);
|
2007-11-09 08:00:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run the task.
|
|
|
|
|
|
|
|
void
|
|
|
|
Write_after_input_sections_task::run(Workqueue*)
|
|
|
|
{
|
|
|
|
this->layout_->write_sections_after_input_sections(this->of_);
|
|
|
|
}
|
|
|
|
|
2006-10-20 22:40:49 +02:00
|
|
|
// Close_task_runner methods.
|
2006-09-29 21:58:17 +02:00
|
|
|
|
|
|
|
// Run the task--close the file.
|
|
|
|
|
|
|
|
void
|
2007-12-14 20:00:21 +01:00
|
|
|
Close_task_runner::run(Workqueue*, const Task*)
|
2006-09-29 21:58:17 +02:00
|
|
|
{
|
* options.h (class General_options): Define build_id option.
* layout.h (class Layout): Declare write_build_id, create_note,
create_build_id. Add build_id_note_ member.
* layout.cc: Include <cerrno>, <fcntl.h>, <unistd.h>,
"libiberty.h", "md5.h", "sha1.h".
(Layout::Layout): Initialize eh_frame_data_,
eh_frame_hdr_section_, and build_id_note_.
(Layout::finalize): Call create_build_id.
(Layout::create_note): New function, broken out of
Layout::create_gold_note.
(Layout::create_gold_note): Call create_note.
(Layout::create_build_id): New function.
(Layout::write_build_id): New function.
(Close_task_runner::run): Call write_build_id.
2008-03-25 06:11:41 +01:00
|
|
|
// If we need to compute a checksum for the BUILD if, we do so here.
|
|
|
|
this->layout_->write_build_id(this->of_);
|
|
|
|
|
2008-02-07 08:33:46 +01:00
|
|
|
// If we've been asked to create a binary file, we do so here.
|
2008-03-04 19:21:43 +01:00
|
|
|
if (this->options_->oformat_enum() != General_options::OBJECT_FORMAT_ELF)
|
2008-02-07 08:33:46 +01:00
|
|
|
this->layout_->write_binary(this->of_);
|
|
|
|
|
2006-09-29 21:58:17 +02:00
|
|
|
this->of_->close();
|
|
|
|
}
|
|
|
|
|
2006-09-22 00:13:18 +02:00
|
|
|
// Instantiate the templates we need. We could use the configure
|
|
|
|
// script to restrict this to only the ones for implemented targets.
|
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
2006-09-22 00:13:18 +02:00
|
|
|
template
|
|
|
|
Output_section*
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::layout<32, false>(Sized_relobj<32, false>* object, unsigned int shndx,
|
|
|
|
const char* name,
|
|
|
|
const elfcpp::Shdr<32, false>& shdr,
|
|
|
|
unsigned int, unsigned int, off_t*);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
2006-09-22 00:13:18 +02:00
|
|
|
template
|
|
|
|
Output_section*
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::layout<32, true>(Sized_relobj<32, true>* object, unsigned int shndx,
|
|
|
|
const char* name,
|
|
|
|
const elfcpp::Shdr<32, true>& shdr,
|
|
|
|
unsigned int, unsigned int, off_t*);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
2006-09-22 00:13:18 +02:00
|
|
|
template
|
|
|
|
Output_section*
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::layout<64, false>(Sized_relobj<64, false>* object, unsigned int shndx,
|
|
|
|
const char* name,
|
|
|
|
const elfcpp::Shdr<64, false>& shdr,
|
|
|
|
unsigned int, unsigned int, off_t*);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
2006-09-22 00:13:18 +02:00
|
|
|
template
|
|
|
|
Output_section*
|
2007-11-09 08:00:15 +01:00
|
|
|
Layout::layout<64, true>(Sized_relobj<64, true>* object, unsigned int shndx,
|
|
|
|
const char* name,
|
|
|
|
const elfcpp::Shdr<64, true>& shdr,
|
|
|
|
unsigned int, unsigned int, off_t*);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-09-22 00:13:18 +02:00
|
|
|
|
2008-02-06 09:13:50 +01:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_reloc<32, false>(Sized_relobj<32, false>* object,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
const elfcpp::Shdr<32, false>& shdr,
|
|
|
|
Output_section* data_section,
|
|
|
|
Relocatable_relocs* rr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_reloc<32, true>(Sized_relobj<32, true>* object,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
const elfcpp::Shdr<32, true>& shdr,
|
|
|
|
Output_section* data_section,
|
|
|
|
Relocatable_relocs* rr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_reloc<64, false>(Sized_relobj<64, false>* object,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
const elfcpp::Shdr<64, false>& shdr,
|
|
|
|
Output_section* data_section,
|
|
|
|
Relocatable_relocs* rr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_reloc<64, true>(Sized_relobj<64, true>* object,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
const elfcpp::Shdr<64, true>& shdr,
|
|
|
|
Output_section* data_section,
|
|
|
|
Relocatable_relocs* rr);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
|
|
template
|
|
|
|
void
|
|
|
|
Layout::layout_group<32, false>(Symbol_table* symtab,
|
|
|
|
Sized_relobj<32, false>* object,
|
|
|
|
unsigned int,
|
|
|
|
const char* group_section_name,
|
|
|
|
const char* signature,
|
|
|
|
const elfcpp::Shdr<32, false>& shdr,
|
2008-05-05 21:16:43 +02:00
|
|
|
elfcpp::Elf_Word flags,
|
|
|
|
std::vector<unsigned int>* shndxes);
|
2008-02-06 09:13:50 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
template
|
|
|
|
void
|
|
|
|
Layout::layout_group<32, true>(Symbol_table* symtab,
|
|
|
|
Sized_relobj<32, true>* object,
|
|
|
|
unsigned int,
|
|
|
|
const char* group_section_name,
|
|
|
|
const char* signature,
|
|
|
|
const elfcpp::Shdr<32, true>& shdr,
|
2008-05-05 21:16:43 +02:00
|
|
|
elfcpp::Elf_Word flags,
|
|
|
|
std::vector<unsigned int>* shndxes);
|
2008-02-06 09:13:50 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
|
|
template
|
|
|
|
void
|
|
|
|
Layout::layout_group<64, false>(Symbol_table* symtab,
|
|
|
|
Sized_relobj<64, false>* object,
|
|
|
|
unsigned int,
|
|
|
|
const char* group_section_name,
|
|
|
|
const char* signature,
|
|
|
|
const elfcpp::Shdr<64, false>& shdr,
|
2008-05-05 21:16:43 +02:00
|
|
|
elfcpp::Elf_Word flags,
|
|
|
|
std::vector<unsigned int>* shndxes);
|
2008-02-06 09:13:50 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
template
|
|
|
|
void
|
|
|
|
Layout::layout_group<64, true>(Symbol_table* symtab,
|
|
|
|
Sized_relobj<64, true>* object,
|
|
|
|
unsigned int,
|
|
|
|
const char* group_section_name,
|
|
|
|
const char* signature,
|
|
|
|
const elfcpp::Shdr<64, true>& shdr,
|
2008-05-05 21:16:43 +02:00
|
|
|
elfcpp::Elf_Word flags,
|
|
|
|
std::vector<unsigned int>* shndxes);
|
2008-02-06 09:13:50 +01:00
|
|
|
#endif
|
|
|
|
|
2007-11-09 08:00:15 +01:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_eh_frame<32, false>(Sized_relobj<32, false>* object,
|
|
|
|
const unsigned char* symbols,
|
|
|
|
off_t symbols_size,
|
|
|
|
const unsigned char* symbol_names,
|
|
|
|
off_t symbol_names_size,
|
|
|
|
unsigned int shndx,
|
|
|
|
const elfcpp::Shdr<32, false>& shdr,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
unsigned int reloc_type,
|
|
|
|
off_t* off);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_eh_frame<32, true>(Sized_relobj<32, true>* object,
|
|
|
|
const unsigned char* symbols,
|
|
|
|
off_t symbols_size,
|
|
|
|
const unsigned char* symbol_names,
|
|
|
|
off_t symbol_names_size,
|
|
|
|
unsigned int shndx,
|
|
|
|
const elfcpp::Shdr<32, true>& shdr,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
unsigned int reloc_type,
|
|
|
|
off_t* off);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_eh_frame<64, false>(Sized_relobj<64, false>* object,
|
|
|
|
const unsigned char* symbols,
|
|
|
|
off_t symbols_size,
|
|
|
|
const unsigned char* symbol_names,
|
|
|
|
off_t symbol_names_size,
|
|
|
|
unsigned int shndx,
|
|
|
|
const elfcpp::Shdr<64, false>& shdr,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
unsigned int reloc_type,
|
|
|
|
off_t* off);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
template
|
|
|
|
Output_section*
|
|
|
|
Layout::layout_eh_frame<64, true>(Sized_relobj<64, true>* object,
|
|
|
|
const unsigned char* symbols,
|
|
|
|
off_t symbols_size,
|
|
|
|
const unsigned char* symbol_names,
|
|
|
|
off_t symbol_names_size,
|
|
|
|
unsigned int shndx,
|
|
|
|
const elfcpp::Shdr<64, true>& shdr,
|
|
|
|
unsigned int reloc_shndx,
|
|
|
|
unsigned int reloc_type,
|
|
|
|
off_t* off);
|
|
|
|
#endif
|
2006-09-22 00:13:18 +02:00
|
|
|
|
|
|
|
} // End namespace gold.
|