2007-09-21 09:20:01 +02:00
|
|
|
// parameters.cc -- general parameters for a link using gold
|
|
|
|
|
2016-01-01 12:25:12 +01:00
|
|
|
// Copyright (C) 2006-2016 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.
|
|
|
|
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
2008-03-05 00:10:38 +01:00
|
|
|
#include "debug.h"
|
2007-09-21 09:20:01 +02:00
|
|
|
#include "options.h"
|
2007-12-01 07:34:12 +01:00
|
|
|
#include "target.h"
|
2008-02-28 01:18:24 +01:00
|
|
|
#include "target-select.h"
|
2007-09-21 09:20:01 +02:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2010-02-12 04:23:26 +01:00
|
|
|
// Our local version of the variable, which is not const.
|
|
|
|
|
|
|
|
static Parameters static_parameters;
|
|
|
|
|
|
|
|
// The global variable.
|
|
|
|
|
|
|
|
const Parameters* parameters = &static_parameters;
|
|
|
|
|
|
|
|
// A helper class to set the target once.
|
|
|
|
|
|
|
|
class Set_parameters_target_once : public Once
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Set_parameters_target_once(Parameters* parameters)
|
|
|
|
: parameters_(parameters)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void
|
|
|
|
do_run_once(void* arg)
|
|
|
|
{ this->parameters_->set_target_once(static_cast<Target*>(arg)); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
Parameters* parameters_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// We only need one Set_parameters_target_once.
|
|
|
|
|
|
|
|
static
|
|
|
|
Set_parameters_target_once set_parameters_target_once(&static_parameters);
|
|
|
|
|
|
|
|
// Class Parameters.
|
|
|
|
|
|
|
|
Parameters::Parameters()
|
2011-10-18 02:06:10 +02:00
|
|
|
: errors_(NULL), timer_(NULL), options_(NULL), target_(NULL),
|
2010-02-12 04:23:26 +01:00
|
|
|
doing_static_link_valid_(false), doing_static_link_(false),
|
2010-10-15 00:10:22 +02:00
|
|
|
debug_(0), incremental_mode_(General_options::INCREMENTAL_OFF),
|
2010-02-12 04:23:26 +01:00
|
|
|
set_parameters_target_once_(&set_parameters_target_once)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_errors(Errors* errors)
|
2007-09-21 09:20:01 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(this->errors_ == NULL);
|
2009-12-14 20:53:05 +01:00
|
|
|
this->errors_ = errors;
|
2007-10-27 02:29:34 +02:00
|
|
|
}
|
|
|
|
|
2011-10-18 02:06:10 +02:00
|
|
|
void
|
|
|
|
Parameters::set_timer(Timer* timer)
|
|
|
|
{
|
|
|
|
gold_assert(this->timer_ == NULL);
|
|
|
|
this->timer_ = timer;
|
|
|
|
}
|
|
|
|
|
2007-10-27 02:29:34 +02:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_options(const General_options* options)
|
2007-10-27 02:29:34 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!this->options_valid());
|
2009-12-14 20:53:05 +01:00
|
|
|
this->options_ = options;
|
2008-03-05 00:10:38 +01:00
|
|
|
// For speed, we convert the options() debug var from a string to an
|
|
|
|
// enum (from debug.h).
|
|
|
|
this->debug_ = debug_string_to_enum(this->options().debug());
|
2010-10-15 00:10:22 +02:00
|
|
|
// Set incremental_mode_ based on the value of the --incremental option.
|
|
|
|
// We copy the mode into parameters because it can change based on inputs.
|
|
|
|
this->incremental_mode_ = this->options().incremental_mode();
|
2008-03-13 02:46:17 +01:00
|
|
|
// If --verbose is set, it acts as "--debug=files".
|
2009-12-14 20:53:05 +01:00
|
|
|
if (options->verbose())
|
2008-03-13 02:46:17 +01:00
|
|
|
this->debug_ |= DEBUG_FILES;
|
2010-04-07 23:42:22 +02:00
|
|
|
if (this->target_valid())
|
|
|
|
this->check_target_endianness();
|
2007-09-21 09:20:01 +02:00
|
|
|
}
|
|
|
|
|
2007-09-28 08:36:25 +02:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_doing_static_link(bool doing_static_link)
|
2007-09-28 08:36:25 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
gold_assert(!this->doing_static_link_valid_);
|
2009-12-14 20:53:05 +01:00
|
|
|
this->doing_static_link_ = doing_static_link;
|
2008-02-28 01:18:24 +01:00
|
|
|
this->doing_static_link_valid_ = true;
|
2007-09-28 08:36:25 +02:00
|
|
|
}
|
|
|
|
|
2007-09-26 09:01:35 +02:00
|
|
|
void
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::set_target(Target* target)
|
2007-09-26 09:01:35 +02:00
|
|
|
{
|
2010-02-12 04:23:26 +01:00
|
|
|
this->set_parameters_target_once_->run_once(static_cast<void*>(target));
|
|
|
|
gold_assert(target == this->target_);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is called at most once.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::set_target_once(Target* target)
|
|
|
|
{
|
|
|
|
gold_assert(this->target_ == NULL);
|
|
|
|
this->target_ = target;
|
2015-03-05 00:17:09 +01:00
|
|
|
target->select_as_default_target();
|
2010-04-07 23:42:22 +02:00
|
|
|
if (this->options_valid())
|
2013-07-20 01:07:08 +02:00
|
|
|
{
|
|
|
|
this->check_target_endianness();
|
|
|
|
this->check_rodata_segment();
|
|
|
|
}
|
2010-02-12 04:23:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the target, for testing.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::clear_target()
|
|
|
|
{
|
|
|
|
this->target_ = NULL;
|
|
|
|
// We need a new Set_parameters_target_once so that we can set the
|
|
|
|
// target again.
|
|
|
|
this->set_parameters_target_once_ = new Set_parameters_target_once(this);
|
2007-09-26 09:01:35 +02:00
|
|
|
}
|
|
|
|
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
// Return whether TARGET is compatible with the target we are using.
|
|
|
|
|
|
|
|
bool
|
2009-12-14 20:53:05 +01:00
|
|
|
Parameters::is_compatible_target(const Target* target) const
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
{
|
|
|
|
if (this->target_ == NULL)
|
|
|
|
return true;
|
2009-12-14 20:53:05 +01:00
|
|
|
return target == this->target_;
|
* readsyms.cc (Read_symbols::incompatible_warning): New function.
(Read_symbols::requeue): New function.
(Read_symbols::do_read_symbols): If make_elf_object fails because
the target type is not configured, and the file was searched for,
issue a warning and retry with the next directory.
(Add_symbols::run): If the file has an incompatible format, and
it was searched for, requeue the Read_symbols task. On error,
release the object.
* readsyms.h (class Read_symbols): Add dirindex_ field. Add
dirindex parameter to constructor. Change all callers. Declare
incompatible_warning and requeue.
(class Add_symbols): Add dirpath_, dirindex_, mapfile_,
input_argument_ and input_group_ fields. Add them to
constructor. Change all callers.
(class Read_script): Add dirindex_ field. Add it to constructor.
Change all callers.
* archive.cc (Archive::setup): Remove input_objects parameter.
Change all callers.
(Archive::get_file_and_offset): Likewise.
(Archive::read_all_symbols): Likewise.
(Archive::read_symbols): Likewise.
(Archive::get_elf_object_for_member): Remove input_objects
parameter. Add punconfigured parameter. Change all callers.
(Archive::add_symbols): Change return type to bool. Check return
value of include_member.
(Archive::include_all_members): Likewise.
(Archive::include_member): Change return type to bool. Return
false if first included object has incompatible target. Set
included_member_ field.
(Add_archive_symbols::run): If add_symbols returns false, requeue
Read_symbols task.
* archive.h (class Archive): Add included_member_ field.
Initialize it in constructor. Add input_file and searched_for
methods. Update declarations.
(class Add_archive_symbols): Add dirpath_, dirindex_, and
input_argument_ fields. Add them to constructor. Change all
callers.
* script.cc: Include "target-select.h".
(class Parser_closure): Add skip_on_incompatible_target_ and
found_incompatible_target_ fields. Add
skip_on_incompatible_target parameter to constructor. Change all
callers. Add methods skip_on_incompatible_target,
clear_skip_on_incompatible_target, found_incompatible_target, and
set_found_incompatible_target.
(read_input_script): Add dirindex parameter. Change all callers.
If parser finds an incompatible target, requeue Read_symbols
task.
(script_set_symbol): Clear skip_on_incompatible_target in
closure.
(script_add_assertion, script_parse_option): Likewise.
(script_start_sections, script_add_phdr): Likewise.
(script_check_output_format): New function.
* script.h (read_input_script): Update declaration.
* script-c.h (script_check_output_format): Declare.
* yyscript.y (file_cmd): Handle OUTPUT_FORMAT.
(ignore_cmd): Remove OUTPUT_FORMAT.
* fileread.cc (Input_file::Input_file): Add explicit this.
(Input_file::will_search_for): New function.
(Input_file::open): Add pindex parameter. Change all callers.
* fileread.h (class Input_file): Add input_file_argument method.
Declare will_search_for. Update declarations.
* object.cc (make_elf_object): Add punconfigured parameter.
Change all callers.
* object.h (class Object): Make input_file public. Add
searched_for method.
(make_elf_object): Update declaration.
* dirsearch.cc (Dirsearch::find): Add pindex parameter. Use it to
restart search.
* dirsearch.h (class Dirsearch): Update declaration.
* options.h (class General_options): Add --warn-search-mismatch.
* parameters.cc (Parameters::is_compatible_target): New function.
* parameters.h (class Parameters): Declare is_compatible_target.
* workqueue.cc (Workqueue::add_blocker): New function.
* workqueue.h (class Workqueue): Declare add_blocker.
2009-03-14 06:56:46 +01:00
|
|
|
}
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
Parameters::Target_size_endianness
|
|
|
|
Parameters::size_and_endianness() const
|
2007-10-27 02:29:34 +02:00
|
|
|
{
|
2008-02-28 01:18:24 +01:00
|
|
|
if (this->target().get_size() == 32)
|
|
|
|
{
|
|
|
|
if (!this->target().is_big_endian())
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
|
|
return TARGET_32_LITTLE;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
|
|
return TARGET_32_BIG;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (parameters->target().get_size() == 64)
|
|
|
|
{
|
|
|
|
if (!parameters->target().is_big_endian())
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
|
|
return TARGET_64_LITTLE;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
|
|
return TARGET_64_BIG;
|
|
|
|
#else
|
|
|
|
gold_unreachable();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
gold_unreachable();
|
2007-10-27 02:29:34 +02:00
|
|
|
}
|
|
|
|
|
2010-04-07 23:42:22 +02:00
|
|
|
// If output endianness is specified in command line, check that it does
|
|
|
|
// not conflict with the target.
|
|
|
|
|
|
|
|
void
|
|
|
|
Parameters::check_target_endianness()
|
|
|
|
{
|
|
|
|
General_options::Endianness endianness = this->options().endianness();
|
|
|
|
if (endianness != General_options::ENDIANNESS_NOT_SET)
|
|
|
|
{
|
|
|
|
bool big_endian;
|
|
|
|
if (endianness == General_options::ENDIANNESS_BIG)
|
|
|
|
big_endian = true;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gold_assert(endianness == General_options::ENDIANNESS_LITTLE);
|
|
|
|
big_endian = false;;
|
|
|
|
}
|
* configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
* configure: Regenerate.
gold/
* nacl.cc: New file.
* nacl.h: New file.
* Makefile.am (CCFILES, HFILES): Add them.
* Makefile.in: Regenerate.
* i386.cc (Output_data_plt_i386_nacl): New class.
(Output_data_plt_i386_nacl_exec): New class.
(Output_data_plt_i386_nacl_dyn): New class.
(Target_i386_nacl): New class.
(Target_selector_i386_nacl): New class.
(target_selector_i386): Use it instead of Target_selector_i386.
* x86_64.cc (Output_data_plt_x86_64_nacl): New class.
(Target_x86_64_nacl): New class.
(Target_selector_x86_64_nacl): New class.
(target_selector_x86_64, target_selector_x32): Use it instead of
Target_selector_x86_64.
* arm.cc (Output_data_plt_arm_nacl): New class.
(Target_arm_nacl): New class.
(Target_selector_arm_nacl): New class.
(target_selector_arm, target_selector_armbe): Use it instead of
Target_selector_arm.
* target-select.cc (select_target): Take new Input_file* and off_t
arguments, pass them on to recognize method of selector.
* object.cc (make_elf_sized_object): Update caller.
* parameters.cc (parameters_force_valid_target): Likewise.
* incremental.cc (make_sized_incremental_binary): Likewise.
* target-select.h: Update decl.
(Target_selector::recognize): Take new Input_file* argument,
pass it on to do_recognize.
(Target_selector::do_recognize): Take new Input_file* argument.
* freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
* powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
* sparc.cc (Target_selector_sparc::do_recognize): Likewise.
* testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
* target.h (Target::Target_info): New members isolate_execinstr
and rosegment_gap.
(Target::isolate_execinstr, Target::rosegment_gap): New methods.
* arm.cc (Target_arm::arm_info): Update initializer.
* i386.cc (Target_i386::i386_info): Likewise.
* powerpc.cc (Target_powerpc::powerpc_info): Likewise.
* sparc.cc (Target_sparc::sparc_info): Likewise.
* x86_64.cc (Target_x86_64::x86_64_info): Likewise.
* testsuite/testfile.cc (Target_test::test_target_info): Likewise.
* layout.cc (Layout::attach_allocated_section_to_segment):
Take new const Target* argument. If target->isolate_execinstr(), act
like --rosegment.
(Layout::find_first_load_seg): Take new const Target* argument;
if target->isolate_execinstr(), reject PF_X segments.
(Layout::relaxation_loop_body): Update caller.
(Layout::set_segment_offsets): If target->isolate_execinstr(),
reset file offset to zero when we hit LOAD_SEG, and then do a second
loop over the segments before LOAD_SEG to reassign offsets after
addresses have been determined. Handle target->rosegment_gap().
(Layout::attach_section_to_segment): Take new const Target* argument;
pass it to attach_allocated_section_to_segment.
(Layout::make_output_section): Update caller.
(Layout::attach_sections_to_segments): Take new const Target* argument;
pass it to attach_section_to_segment.
* gold.cc (queue_middle_tasks): Update caller.
* layout.h (Layout): Update method decls with new arguments.
* arm.cc (Target_arm::Target_arm): Take optional argument for the
Target_info pointer to use.
(Target_arm::do_make_data_plt): New virtual method.
(Target_arm::make_data_plt): New method that calls it.
(Target_arm::make_plt_entry): Use it.
(Output_data_plt_arm::Output_data_plt_arm): Take additional argument
for the section alignment.
(Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
method.
(Output_data_plt_arm::first_plt_entry_offset): Call it.
(Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_arm::get_plt_entry_size): Call it.
(Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
(Output_data_plt_arm::fill_plt_entry): New method that calls it.
(Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
method.
(Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
(Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
method instead of sizeof(plt_entry).
(Output_data_plt_arm::add_entry): Likewise.
Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
(Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
than static method.
(Target_arm::plt_entry_size): Likewise.
(Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
Move to ...
(Output_data_plt_arm_standard): ... here, new class.
(Output_data_plt_arm::do_write): Move guts of PLT filling to...
(Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
(Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
* x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
Take additional argument for the PLT entry size.
(Output_data_plt_x86_64::get_tlsdesc_plt_offset):
Use get_plt_entry_size method rather than plt_entry_size variable.
(Output_data_plt_x86_64::reserve_slot): Likewise.
(Output_data_plt_x86_64::do_adjust_output_section): Likewise.
(Output_data_plt_x86_64::add_entry): Likewise.
(Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
(Output_data_plt_x86_64::address_for_global): Likewise.
(Output_data_plt_x86_64::address_for_local): Likewise.
(Output_data_plt_x86_64::set_final_data_size): Likewise.
(Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
Make method non-static.
(Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_x86_64::get_plt_entry_size): Just call that.
(Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
(Output_data_plt_x86_64::add_eh_frame): New method to call it.
(Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
(Output_data_plt_x86_64::do_fill_plt_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_plt_entry): New method to call it.
(Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
(Output_data_plt_x86_64::plt_entry_size)
(Output_data_plt_x86_64::first_plt_entry)
(Output_data_plt_x86_64::plt_entry)
(Output_data_plt_x86_64::tlsdesc_plt_entry)
(Output_data_plt_x86_64::plt_eh_frame_fde_size)
(Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
(Output_data_plt_x86_64_standard): ... here, new class.
(Target_x86_64::Target_x86_64): Take optional argument for the
Target_info pointer to use.
(Target_x86_64::do_make_data_plt): New virtual method.
(Target_x86_64::make_data_plt): New method to call it.
(Target_x86_64::init_got_plt_for_update): Use that.
Call this->plt_->add_eh_frame method here.
(Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
(Target_x86_64::first_plt_entry_offset): Call method on this->plt_
rather than static method.
(Target_x86_64::plt_entry_size): Likewise.
(Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
rather than plt_entry_size variable. Move guts of PLT filling to...
(Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
(Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
(Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
* i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
additional argument for the section alignment.
Don't do add_eh_frame_for_plt here.
(Output_data_plt_i386::first_plt_entry_offset): Make the method
non-static. Use get_plt_entry_size method rather than plt_entry_size
variable.
(Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_i386::get_plt_entry_size): Call it.
(Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
(Output_data_plt_i386::add_eh_frame): New method to call it.
(Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
method.
(Output_data_plt_i386::fill_first_plt_entry): New method to call it.
(Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
method.
(Output_data_plt_i386::fill_plt_entry): New method to call it.
(Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
method instead of plt_entry_size.
(Output_data_plt_i386::plt_entry_size)
(Output_data_plt_i386::plt_eh_frame_fde_size)
(Output_data_plt_i386::plt_eh_frame_fde): Move to ...
(Output_data_plt_i386_standard): ... here, new class.
(Output_data_plt_i386_exec): New class.
(Output_data_plt_i386::exec_first_plt_entry): Move to ...
(Output_data_plt_i386_exec::first_plt_entry): ... here.
(Output_data_plt_i386::exec_plt_entry): Move to ...
(Output_data_plt_i386_exec::plt_entry): ... here.
(Output_data_plt_i386_dyn): New class.
(Output_data_plt_i386::first_plt_entry): Move to ...
(Output_data_plt_i386_dyn::first_plt_entry): ... here.
(Output_data_plt_i386::dyn_plt_entry): Move to ...
(Output_data_plt_i386_dyn::plt_entry): ... here.
(Target_i386::Target_i386): Take optional argument for the Target_info
pointer to use.
(Target_i386::do_make_data_plt): New virtual method.
(Target_i386::make_data_plt): New method to call it.
(Target_i386::make_plt_section): Use that.
Call this->plt_->add_eh_frame method here.
(Output_data_plt_i386::add_entry): Use get_plt_entry_size method
rather than plt_entry_size variable.
(Output_data_plt_i386::add_local_ifunc_entry): Likewise.
(Output_data_plt_i386::address_for_local): Likewise.
(Output_data_plt_i386::do_write): Likewise.
Move guts of PLT filling to...
(Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
(Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
(Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
(Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
Change-Id: Id24b95600489835ff5e860a39c147203d4380c2b
2012-05-02 23:37:24 +02:00
|
|
|
|
2010-04-07 23:42:22 +02:00
|
|
|
if (this->target().is_big_endian() != big_endian)
|
|
|
|
gold_error(_("input file does not match -EB/EL option"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-20 01:07:08 +02:00
|
|
|
void
|
|
|
|
Parameters::check_rodata_segment()
|
|
|
|
{
|
|
|
|
if (this->options().user_set_Trodata_segment()
|
|
|
|
&& !this->options().rosegment()
|
|
|
|
&& !this->target().isolate_execinstr())
|
|
|
|
gold_error(_("-Trodata-segment is meaningless without --rosegment"));
|
|
|
|
}
|
|
|
|
|
2011-05-25 02:17:47 +02:00
|
|
|
// Return the name of the entry symbol.
|
|
|
|
|
|
|
|
const char*
|
|
|
|
Parameters::entry() const
|
|
|
|
{
|
|
|
|
const char* ret = this->options().entry();
|
2015-07-21 21:42:07 +02:00
|
|
|
if (ret == NULL && parameters->target_valid())
|
2013-07-30 23:26:53 +02:00
|
|
|
ret = parameters->target().entry_symbol_name();
|
2011-05-25 02:17:47 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-10-15 00:10:22 +02:00
|
|
|
// Set the incremental linking mode to INCREMENTAL_FULL. Used when
|
|
|
|
// the linker determines that an incremental update is not possible.
|
|
|
|
// Returns false if the incremental mode was INCREMENTAL_UPDATE,
|
|
|
|
// indicating that the linker should exit if an update is not possible.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Parameters::set_incremental_full()
|
|
|
|
{
|
|
|
|
gold_assert(this->incremental_mode_ != General_options::INCREMENTAL_OFF);
|
|
|
|
if (this->incremental_mode_ == General_options::INCREMENTAL_UPDATE)
|
|
|
|
return false;
|
|
|
|
this->incremental_mode_ = General_options::INCREMENTAL_FULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return true if we need to prepare incremental linking information.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Parameters::incremental() const
|
|
|
|
{
|
|
|
|
return this->incremental_mode_ != General_options::INCREMENTAL_OFF;
|
|
|
|
}
|
|
|
|
|
2011-07-06 23:19:32 +02:00
|
|
|
// Return true if we are doing a full incremental link.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Parameters::incremental_full() const
|
|
|
|
{
|
|
|
|
return this->incremental_mode_ == General_options::INCREMENTAL_FULL;
|
|
|
|
}
|
|
|
|
|
2010-10-15 00:10:22 +02:00
|
|
|
// Return true if we are doing an incremental update.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Parameters::incremental_update() const
|
|
|
|
{
|
|
|
|
return (this->incremental_mode_ == General_options::INCREMENTAL_UPDATE
|
|
|
|
|| this->incremental_mode_ == General_options::INCREMENTAL_AUTO);
|
|
|
|
}
|
|
|
|
|
2007-09-28 08:36:25 +02:00
|
|
|
void
|
2008-02-28 01:18:24 +01:00
|
|
|
set_parameters_errors(Errors* errors)
|
|
|
|
{ static_parameters.set_errors(errors); }
|
2007-09-28 08:36:25 +02:00
|
|
|
|
2011-10-18 02:06:10 +02:00
|
|
|
void
|
|
|
|
set_parameters_timer(Timer* timer)
|
|
|
|
{ static_parameters.set_timer(timer); }
|
|
|
|
|
2008-02-28 01:18:24 +01:00
|
|
|
void
|
|
|
|
set_parameters_options(const General_options* options)
|
|
|
|
{ static_parameters.set_options(options); }
|
2007-09-28 08:36:25 +02:00
|
|
|
|
2007-09-26 09:01:35 +02:00
|
|
|
void
|
2009-10-01 00:21:13 +02:00
|
|
|
set_parameters_target(Target* target)
|
2010-02-03 06:36:55 +01:00
|
|
|
{
|
|
|
|
static_parameters.set_target(target);
|
|
|
|
}
|
2008-02-28 01:18:24 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
set_parameters_doing_static_link(bool doing_static_link)
|
|
|
|
{ static_parameters.set_doing_static_link(doing_static_link); }
|
2007-09-21 09:20:01 +02:00
|
|
|
|
2010-10-15 00:10:22 +02:00
|
|
|
// Set the incremental linking mode to INCREMENTAL_FULL. Used when
|
|
|
|
// the linker determines that an incremental update is not possible.
|
|
|
|
// Returns false if the incremental mode was INCREMENTAL_UPDATE,
|
|
|
|
// indicating that the linker should exit if an update is not possible.
|
|
|
|
bool
|
|
|
|
set_parameters_incremental_full()
|
|
|
|
{ return static_parameters.set_incremental_full(); }
|
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
// Force the target to be valid by using the default. Use the
|
|
|
|
// --oformat option is set; this supports the x86_64 kernel build,
|
|
|
|
// which converts a binary file to an object file using -r --format
|
|
|
|
// binary --oformat elf32-i386 foo.o. Otherwise use the configured
|
|
|
|
// default.
|
|
|
|
|
|
|
|
void
|
|
|
|
parameters_force_valid_target()
|
|
|
|
{
|
|
|
|
if (parameters->target_valid())
|
|
|
|
return;
|
|
|
|
|
|
|
|
gold_assert(parameters->options_valid());
|
|
|
|
if (parameters->options().user_set_oformat())
|
|
|
|
{
|
2011-06-29 01:12:31 +02:00
|
|
|
const char* bfd_name = parameters->options().oformat();
|
|
|
|
Target* target = select_target_by_bfd_name(bfd_name);
|
2009-10-01 00:21:13 +02:00
|
|
|
if (target != NULL)
|
|
|
|
{
|
|
|
|
set_parameters_target(target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-06-29 01:12:31 +02:00
|
|
|
gold_error(_("unrecognized output format %s"), bfd_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (parameters->options().user_set_m())
|
|
|
|
{
|
|
|
|
const char* emulation = parameters->options().m();
|
|
|
|
Target* target = select_target_by_emulation(emulation);
|
|
|
|
if (target != NULL)
|
|
|
|
{
|
|
|
|
set_parameters_target(target);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gold_error(_("unrecognized emulation %s"), emulation);
|
2009-10-01 00:21:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// The GOLD_DEFAULT_xx macros are defined by the configure script.
|
2010-04-07 23:42:22 +02:00
|
|
|
bool is_big_endian;
|
|
|
|
General_options::Endianness endianness = parameters->options().endianness();
|
|
|
|
if (endianness == General_options::ENDIANNESS_BIG)
|
|
|
|
is_big_endian = true;
|
|
|
|
else if (endianness == General_options::ENDIANNESS_LITTLE)
|
|
|
|
is_big_endian = false;
|
|
|
|
else
|
|
|
|
is_big_endian = GOLD_DEFAULT_BIG_ENDIAN;
|
|
|
|
|
* configure.ac (ENABLE_GOLD): Consider *-*-nacl* targets ELF.
* configure: Regenerate.
gold/
* nacl.cc: New file.
* nacl.h: New file.
* Makefile.am (CCFILES, HFILES): Add them.
* Makefile.in: Regenerate.
* i386.cc (Output_data_plt_i386_nacl): New class.
(Output_data_plt_i386_nacl_exec): New class.
(Output_data_plt_i386_nacl_dyn): New class.
(Target_i386_nacl): New class.
(Target_selector_i386_nacl): New class.
(target_selector_i386): Use it instead of Target_selector_i386.
* x86_64.cc (Output_data_plt_x86_64_nacl): New class.
(Target_x86_64_nacl): New class.
(Target_selector_x86_64_nacl): New class.
(target_selector_x86_64, target_selector_x32): Use it instead of
Target_selector_x86_64.
* arm.cc (Output_data_plt_arm_nacl): New class.
(Target_arm_nacl): New class.
(Target_selector_arm_nacl): New class.
(target_selector_arm, target_selector_armbe): Use it instead of
Target_selector_arm.
* target-select.cc (select_target): Take new Input_file* and off_t
arguments, pass them on to recognize method of selector.
* object.cc (make_elf_sized_object): Update caller.
* parameters.cc (parameters_force_valid_target): Likewise.
* incremental.cc (make_sized_incremental_binary): Likewise.
* target-select.h: Update decl.
(Target_selector::recognize): Take new Input_file* argument,
pass it on to do_recognize.
(Target_selector::do_recognize): Take new Input_file* argument.
* freebsd.h (Target_selector_freebsd::do_recognize): Likewise.
* powerpc.cc (Target_selector_powerpc::do_recognize): Likewise.
* sparc.cc (Target_selector_sparc::do_recognize): Likewise.
* testsuite/testfile.cc (Target_selector::do_recognize): Likewise.
* target.h (Target::Target_info): New members isolate_execinstr
and rosegment_gap.
(Target::isolate_execinstr, Target::rosegment_gap): New methods.
* arm.cc (Target_arm::arm_info): Update initializer.
* i386.cc (Target_i386::i386_info): Likewise.
* powerpc.cc (Target_powerpc::powerpc_info): Likewise.
* sparc.cc (Target_sparc::sparc_info): Likewise.
* x86_64.cc (Target_x86_64::x86_64_info): Likewise.
* testsuite/testfile.cc (Target_test::test_target_info): Likewise.
* layout.cc (Layout::attach_allocated_section_to_segment):
Take new const Target* argument. If target->isolate_execinstr(), act
like --rosegment.
(Layout::find_first_load_seg): Take new const Target* argument;
if target->isolate_execinstr(), reject PF_X segments.
(Layout::relaxation_loop_body): Update caller.
(Layout::set_segment_offsets): If target->isolate_execinstr(),
reset file offset to zero when we hit LOAD_SEG, and then do a second
loop over the segments before LOAD_SEG to reassign offsets after
addresses have been determined. Handle target->rosegment_gap().
(Layout::attach_section_to_segment): Take new const Target* argument;
pass it to attach_allocated_section_to_segment.
(Layout::make_output_section): Update caller.
(Layout::attach_sections_to_segments): Take new const Target* argument;
pass it to attach_section_to_segment.
* gold.cc (queue_middle_tasks): Update caller.
* layout.h (Layout): Update method decls with new arguments.
* arm.cc (Target_arm::Target_arm): Take optional argument for the
Target_info pointer to use.
(Target_arm::do_make_data_plt): New virtual method.
(Target_arm::make_data_plt): New method that calls it.
(Target_arm::make_plt_entry): Use it.
(Output_data_plt_arm::Output_data_plt_arm): Take additional argument
for the section alignment.
(Output_data_plt_arm::do_first_plt_entry_offset): New abstract virtual
method.
(Output_data_plt_arm::first_plt_entry_offset): Call it.
(Output_data_plt_arm::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_arm::get_plt_entry_size): Call it.
(Output_data_plt_arm::do_fill_plt_entry): New abstract virtual method.
(Output_data_plt_arm::fill_plt_entry): New method that calls it.
(Output_data_plt_arm::do_fill_first_plt_entry): New abstract virtual
method.
(Output_data_plt_arm::fill_first_plt_entry): New method that calls it.
(Output_data_plt_arm::set_final_data_size): Use get_plt_entry_size
method instead of sizeof(plt_entry).
(Output_data_plt_arm::add_entry): Likewise.
Use first_plt_entry_offset method instead of sizeof(first_plt_entry).
(Target_arm::first_plt_entry_offset): Call method on this->plt_ rather
than static method.
(Target_arm::plt_entry_size): Likewise.
(Output_data_plt_arm::first_plt_entry, Output_data_plt_arm::plt_entry):
Move to ...
(Output_data_plt_arm_standard): ... here, new class.
(Output_data_plt_arm::do_write): Move guts of PLT filling to...
(Output_data_plt_arm_standard::do_fill_first_plt_entry): ... here ...
(Output_data_plt_arm_standard::do_fill_plt_entry): ... and here.
* x86_64.cc (Output_data_plt_x86_64::Output_data_plt_x86_64):
Take additional argument for the PLT entry size.
(Output_data_plt_x86_64::get_tlsdesc_plt_offset):
Use get_plt_entry_size method rather than plt_entry_size variable.
(Output_data_plt_x86_64::reserve_slot): Likewise.
(Output_data_plt_x86_64::do_adjust_output_section): Likewise.
(Output_data_plt_x86_64::add_entry): Likewise.
(Output_data_plt_x86_64::add_local_ifunc_entry): Likewise.
(Output_data_plt_x86_64::address_for_global): Likewise.
(Output_data_plt_x86_64::address_for_local): Likewise.
(Output_data_plt_x86_64::set_final_data_size): Likewise.
(Output_data_plt_x86_64::first_plt_entry_offset): Likewise.
Make method non-static.
(Output_data_plt_x86_64::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_x86_64::get_plt_entry_size): Just call that.
(Output_data_plt_x86_64::do_add_eh_frame): New abstract virtual method.
(Output_data_plt_x86_64::add_eh_frame): New method to call it.
(Output_data_plt_x86_64::do_fill_first_plt_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_first_plt_entry): New method to call it.
(Output_data_plt_x86_64::do_fill_plt_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_plt_entry): New method to call it.
(Output_data_plt_x86_64::do_fill_tlsdesc_entry): New abstract
virtual method.
(Output_data_plt_x86_64::fill_tlsdesc_entry): New method to call it.
(Output_data_plt_x86_64::plt_entry_size)
(Output_data_plt_x86_64::first_plt_entry)
(Output_data_plt_x86_64::plt_entry)
(Output_data_plt_x86_64::tlsdesc_plt_entry)
(Output_data_plt_x86_64::plt_eh_frame_fde_size)
(Output_data_plt_x86_64::plt_eh_frame_fde): Move to ...
(Output_data_plt_x86_64_standard): ... here, new class.
(Target_x86_64::Target_x86_64): Take optional argument for the
Target_info pointer to use.
(Target_x86_64::do_make_data_plt): New virtual method.
(Target_x86_64::make_data_plt): New method to call it.
(Target_x86_64::init_got_plt_for_update): Use that.
Call this->plt_->add_eh_frame method here.
(Output_data_plt_x86_64::init): Don't do add_eh_frame_for_plt here.
(Target_x86_64::first_plt_entry_offset): Call method on this->plt_
rather than static method.
(Target_x86_64::plt_entry_size): Likewise.
(Output_data_plt_x86_64::do_write): Use get_plt_entry_size method
rather than plt_entry_size variable. Move guts of PLT filling to...
(Output_data_plt_x86_64_standard::do_fill_first_plt_entry): ... here ...
(Output_data_plt_x86_64_standard::do_fill_plt_entry): ... and here ...
(Output_data_plt_x86_64_standard::do_fill_tlsdesc_entry): ... and here.
* i386.cc (Output_data_plt_i386::Output_data_plt_i386): Take
additional argument for the section alignment.
Don't do add_eh_frame_for_plt here.
(Output_data_plt_i386::first_plt_entry_offset): Make the method
non-static. Use get_plt_entry_size method rather than plt_entry_size
variable.
(Output_data_plt_i386::do_get_plt_entry_size): New abstract virtual
method.
(Output_data_plt_i386::get_plt_entry_size): Call it.
(Output_data_plt_i386::do_add_eh_frame): New abstract virtual method.
(Output_data_plt_i386::add_eh_frame): New method to call it.
(Output_data_plt_i386::do_fill_first_plt_entry): New abstract virtual
method.
(Output_data_plt_i386::fill_first_plt_entry): New method to call it.
(Output_data_plt_i386::do_fill_plt_entry): New abstract virtual
method.
(Output_data_plt_i386::fill_plt_entry): New method to call it.
(Output_data_plt_i386::set_final_data_size): Use get_plt_entry_size
method instead of plt_entry_size.
(Output_data_plt_i386::plt_entry_size)
(Output_data_plt_i386::plt_eh_frame_fde_size)
(Output_data_plt_i386::plt_eh_frame_fde): Move to ...
(Output_data_plt_i386_standard): ... here, new class.
(Output_data_plt_i386_exec): New class.
(Output_data_plt_i386::exec_first_plt_entry): Move to ...
(Output_data_plt_i386_exec::first_plt_entry): ... here.
(Output_data_plt_i386::exec_plt_entry): Move to ...
(Output_data_plt_i386_exec::plt_entry): ... here.
(Output_data_plt_i386_dyn): New class.
(Output_data_plt_i386::first_plt_entry): Move to ...
(Output_data_plt_i386_dyn::first_plt_entry): ... here.
(Output_data_plt_i386::dyn_plt_entry): Move to ...
(Output_data_plt_i386_dyn::plt_entry): ... here.
(Target_i386::Target_i386): Take optional argument for the Target_info
pointer to use.
(Target_i386::do_make_data_plt): New virtual method.
(Target_i386::make_data_plt): New method to call it.
(Target_i386::make_plt_section): Use that.
Call this->plt_->add_eh_frame method here.
(Output_data_plt_i386::add_entry): Use get_plt_entry_size method
rather than plt_entry_size variable.
(Output_data_plt_i386::add_local_ifunc_entry): Likewise.
(Output_data_plt_i386::address_for_local): Likewise.
(Output_data_plt_i386::do_write): Likewise.
Move guts of PLT filling to...
(Output_data_plt_i386_exec::do_fill_first_plt_entry): ... here ...
(Output_data_plt_i386_exec::do_fill_plt_entry): ... and here ...
(Output_data_plt_i386_dyn::do_fill_first_plt_entry): ... and here ...
(Output_data_plt_i386_dyn::do_fill_plt_entry): ... and here.
Change-Id: Id24b95600489835ff5e860a39c147203d4380c2b
2012-05-02 23:37:24 +02:00
|
|
|
Target* target = select_target(NULL, 0,
|
|
|
|
elfcpp::GOLD_DEFAULT_MACHINE,
|
2009-10-01 00:21:13 +02:00
|
|
|
GOLD_DEFAULT_SIZE,
|
2010-04-07 23:42:22 +02:00
|
|
|
is_big_endian,
|
2009-10-01 00:21:13 +02:00
|
|
|
elfcpp::GOLD_DEFAULT_OSABI,
|
|
|
|
0);
|
2011-07-15 23:43:08 +02:00
|
|
|
|
|
|
|
if (target == NULL)
|
|
|
|
{
|
|
|
|
gold_assert(is_big_endian != GOLD_DEFAULT_BIG_ENDIAN);
|
|
|
|
gold_fatal(_("no supported target for -EB/-EL option"));
|
|
|
|
}
|
|
|
|
|
2009-10-01 00:21:13 +02:00
|
|
|
set_parameters_target(target);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the current target, for testing.
|
|
|
|
|
|
|
|
void
|
|
|
|
parameters_clear_target()
|
|
|
|
{
|
|
|
|
static_parameters.clear_target();
|
|
|
|
}
|
|
|
|
|
2007-09-21 09:20:01 +02:00
|
|
|
} // End namespace gold.
|