029ba97335
sized_target, and set_target methods. (Object::sized_target): Remove. (class Sized_relobj): Update declarations. Remove sized_target. * object.cc (Sized_relobj::setup): Remove target parameter. Change all callers. (Input_objects::add_object): Don't do anything with the target. (make_elf_sized_object): Add punconfigured parameter. Change all callers. Set or test parameter target. * dynobj.cc (Sized_dynobj::target): Remove target parameter. Change all callers. * parameters.cc (Parameters::set_target): Change parameter type to be non-const. (Parameters::default_target): Remove. (set_parameters_target): Change parameter type to be non-const. (parameters_force_valid_target): New function. (parameters_clear_target): New function. * parameters.h (class Parameters): Update declarations. Remove default_target method. Add sized_target and clear_target methods. Change target_ to be non-const. (set_parameters_target): Update declaration. (parameters_force_valid_target): Declare. (parameters_clear_target): Declare. * readsyms.cc (Read_symbols::do_read_symbols): Pass punconfigured as NULL if we aren't searching. (Add_symbols::run): Don't check for compatible target. * fileread.cc (Input_file::open_binary): Call parameters_force_valid_target. * gold.cc (queue_middle_tasks): Likewise. * plugin.cc (make_sized_plugin_object): Likewise. Don't call set_target on object. * dynobj.h (class Sized_dynobj): Update declarations. * archive.cc (Archive::get_elf_object_for_member): Return NULL if make_elf_object returns NULL. (Archive::include_member): Don't check whether object target is compatible. * output.cc (Output_section::add_input_section): Get target from parameters. (Output_section::relax_input_section): Likewise. * reloc.cc (Sized_relobj::do_gc_process_relocs): Get target from parameters. (Sized_relobj::do_scan_relocs): Likewise. (Sized_relobj::relocate_sections): Likewise. * resolve.cc (Symbol_table::resolve): Likewise. * symtab.cc (Symbol_table::wrap_symbol): Likewise. Remove object parameter. Change all callers. (Symbol_table::add_from_object): Get target from parameters. (Symbol_table::add_from_relobj): Don't check object target. (Symbol_table::add_from_dynobj): Likewise. (Symbol_table::define_special_symbol): Get target from parameters. * symtab.h (class Symbol_table): Update declaration. * testsuite/binary_unittest.cc (gold_testsuite): Remove target parameter. Change all callers. Clear parameter target. (Binary_test): Test target here. * testsuite/object_unittest.cc (gold_testsuite): Remove target_test_pointer parameter. Change all callers. (Object_test): Test target here.
156 lines
4.3 KiB
C++
156 lines
4.3 KiB
C++
// binary_unittest.cc -- test Binary_to_elf
|
|
|
|
// Copyright 2008 Free Software Foundation, Inc.
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
// This file is part of gold.
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
// MA 02110-1301, USA.
|
|
|
|
#include "gold.h"
|
|
|
|
#include <unistd.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#include "elfcpp.h"
|
|
#include "parameters.h"
|
|
#include "errors.h"
|
|
#include "options.h"
|
|
#include "binary.h"
|
|
#include "object.h"
|
|
|
|
#include "test.h"
|
|
#include "testfile.h"
|
|
|
|
namespace gold_testsuite
|
|
{
|
|
|
|
using namespace gold;
|
|
|
|
template<int size, bool big_endian>
|
|
bool
|
|
Sized_binary_test()
|
|
{
|
|
parameters_clear_target();
|
|
// We need a pretend Task.
|
|
const Task* task = reinterpret_cast<const Task*>(-1);
|
|
|
|
// Use the executable itself as the binary data.
|
|
struct stat st;
|
|
CHECK(::stat(gold::program_name, &st) == 0);
|
|
int o = ::open(gold::program_name, O_RDONLY);
|
|
CHECK(o >= 0);
|
|
unsigned char* filedata = new unsigned char[st.st_size];
|
|
CHECK(::read(o, filedata, st.st_size) == st.st_size);
|
|
CHECK(::close(o) == 0);
|
|
|
|
Binary_to_elf binary(static_cast<elfcpp::EM>(0xffff), size, big_endian,
|
|
gold::program_name);
|
|
|
|
CHECK(binary.convert(task));
|
|
|
|
Input_file input_file(task, "test.o", binary.converted_data(),
|
|
binary.converted_size());
|
|
Object* object = make_elf_object("test.o", &input_file, 0,
|
|
binary.converted_data(),
|
|
binary.converted_size(), NULL);
|
|
CHECK(object != NULL);
|
|
if (object == NULL)
|
|
return false;
|
|
|
|
CHECK(!object->is_dynamic());
|
|
CHECK(object->shnum() == 5);
|
|
CHECK(object->section_name(1) == ".data");
|
|
CHECK(object->section_flags(1) == (elfcpp::SHF_ALLOC | elfcpp::SHF_WRITE));
|
|
section_size_type len;
|
|
const unsigned char* contents = object->section_contents(1, &len, false);
|
|
CHECK(len == convert_to_section_size_type(st.st_size));
|
|
CHECK(memcmp(filedata, contents, len) == 0);
|
|
|
|
// Force the symbols to be read internally, so that
|
|
// symbol_section_and_value will work.
|
|
Read_symbols_data sd;
|
|
object->read_symbols(&sd);
|
|
delete sd.section_headers;
|
|
delete sd.section_names;
|
|
delete sd.symbols;
|
|
delete sd.symbol_names;
|
|
|
|
Sized_relobj<size, big_endian>* relobj =
|
|
static_cast<Sized_relobj<size, big_endian>*>(object);
|
|
typename Sized_relobj<size, big_endian>::Address value;
|
|
bool is_ordinary;
|
|
CHECK(relobj->symbol_section_and_value(0, &value, &is_ordinary) == 0);
|
|
CHECK(is_ordinary);
|
|
CHECK(value == 0);
|
|
CHECK(relobj->symbol_section_and_value(1, &value, &is_ordinary) == 1);
|
|
CHECK(is_ordinary);
|
|
CHECK(value == 0);
|
|
CHECK(relobj->symbol_section_and_value(2, &value, &is_ordinary) == 1);
|
|
CHECK(is_ordinary);
|
|
CHECK(static_cast<off_t>(value) == st.st_size);
|
|
CHECK(relobj->symbol_section_and_value(3, &value, &is_ordinary)
|
|
== elfcpp::SHN_ABS);
|
|
CHECK(!is_ordinary);
|
|
CHECK(static_cast<off_t>(value) == st.st_size);
|
|
|
|
object->unlock(task);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
Binary_test(Test_report*)
|
|
{
|
|
Errors errors(gold::program_name);
|
|
set_parameters_errors(&errors);
|
|
|
|
General_options options;
|
|
set_parameters_options(&options);
|
|
|
|
int fail = 0;
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
if (!Sized_binary_test<32, false>())
|
|
++fail;
|
|
CHECK(¶meters->target() == target_test_pointer_32_little);
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
if (!Sized_binary_test<32, true>())
|
|
++fail;
|
|
CHECK(¶meters->target() == target_test_pointer_32_big);
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
if (!Sized_binary_test<64, false>())
|
|
++fail;
|
|
CHECK(¶meters->target() == target_test_pointer_64_little);
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
if (!Sized_binary_test<64, true>())
|
|
++fail;
|
|
CHECK(¶meters->target() == target_test_pointer_64_big);
|
|
#endif
|
|
|
|
return fail == 0;
|
|
}
|
|
|
|
Register_test binary_register("Binary", Binary_test);
|
|
|
|
} // End namespace gold_testsuite.
|