4d625b70fc
For MIPS-64, the r_info field in the relocation format is replaced by several individual fields, including r_sym and r_type. To enable support for this format, I've refactored target-independent code to remove almost all uses of the r_info field. (I've left alone a couple of routines used only for incremental linking, which I can update if/when the MIPS target adds support for incremental linking.) For routines that are already templated on a Classify_reloc class (namely, gc_process_relocs, relocate_section, and relocate_relocs), I've extended the Classify_reloc interface to include sh_type (which no longer needs to be a separate template parameter) as well as get_r_sym() and get_r_type() methods for extracting the r_sym and r_type fields. For scan_relocatable_relocs, I've extended the Default_scan_relocatable_relocs class by converting it to a class template with Classify_reloc as a template parameter. For the remaining routines that need to access r_sym, I've added a virtual Target::get_r_sym() method with an override for the MIPS target. In elfcpp, I've added Mips64_rel, etc., accessor classes and corresponding internal data structures. The MIPS target uses these new classes within its own Mips_classify_reloc class. The Mips64_ accessor classes also expose the r_ssym, r_type2, and r_type3 fields from the relocation. These changes should be functionally the same for all but the MIPS target. elfcpp/ * elfcpp.h (Mips64_rel, Mips64_rel_write): New classes. (Mips64_rela, Mips64_rela_write): New classes. * elfcpp_internal.h (Mips64_rel_data, Mips64_rela_data): New structs. gold/ * gc.h (get_embedded_addend_size): Remove sh_type parameter. (gc_process_relocs): Remove sh_type template parameter. Use Classify_reloc to access r_sym, r_type, and r_addend fields. * object.h (Sized_relobj_file::split_stack_adjust): Add target parameter. (Sized_relobj_file::split_stack_adjust_reltype): Likewise. * reloc-types.h (Reloc_types::copy_reloc_addend): (SHT_REL and SHT_RELA specializations) Remove. * reloc.cc (Emit_relocs_strategy): Rename and move to target-reloc.h. (Sized_relobj_file::emit_relocs_scan): Call Target::emit_relocs_scan(). (Sized_relobj_file::emit_relocs_scan_reltype): Remove. (Sized_relobj_file::split_stack_adjust): Add target parameter. Adjust all callers. (Sized_relobj_file::split_stack_adjust_reltype): Likewise. Call Target::get_r_sym() to get r_sym field from relocations. (Track_relocs::next_symndx): Call Target::get_r_sym(). * target-reloc.h (scan_relocs): Remove sh_type template parameter; add Classify_reloc template parameter. Use for accessing r_sym and r_type. (relocate_section): Likewise. (Default_classify_reloc): New class (renamed and moved from reloc.cc). (Default_scan_relocatable_relocs): Remove sh_type template parameter. (Default_scan_relocatable_relocs::Reltype): New typedef. (Default_scan_relocatable_relocs::reloc_size): New const. (Default_scan_relocatable_relocs::sh_type): New const. (Default_scan_relocatable_relocs::get_r_sym): New method. (Default_scan_relocatable_relocs::get_r_type): New method. (Default_emit_relocs_strategy): New class. (scan_relocatable_relocs): Replace sh_type template parameter with Scan_relocatable_relocs class. Use it to access r_sym and r_type fields. (relocate_relocs): Replace sh_type template parameter with Classify_reloc class. Use it to access r_sym and r_type fields. * target.h (Target::is_call_to_non_split): Replace r_type parameter with pointer to relocation. Adjust all callers. (Target::do_is_call_to_non_split): Likewise. (Target::emit_relocs_scan): New virtual method. (Sized_target::get_r_sym): New virtual method. * target.cc (Target::do_is_call_to_non_split): Replace r_type parameter with pointer to relocation. * aarch64.cc (Target_aarch64::emit_relocs_scan): New method. (Target_aarch64::Relocatable_size_for_reloc): Remove. (Target_aarch64::gc_process_relocs): Use Default_classify_reloc. (Target_aarch64::scan_relocs): Likewise. (Target_aarch64::relocate_section): Likewise. (Target_aarch64::Relocatable_size_for_reloc::get_size_for_reloc): Remove. (Target_aarch64::scan_relocatable_relocs): Use Default_classify_reloc. (Target_aarch64::relocate_relocs): Use Default_classify_reloc. * arm.cc (Target_arm::Arm_scan_relocatable_relocs): Remove sh_type template parameter. (Target_arm::emit_relocs_scan): New method. (Target_arm::Relocatable_size_for_reloc): Replace with... (Target_arm::Classify_reloc): ...this. (Target_arm::gc_process_relocs): Use Classify_reloc. (Target_arm::scan_relocs): Likewise. (Target_arm::relocate_section): Likewise. (Target_arm::scan_relocatable_relocs): Likewise. (Target_arm::relocate_relocs): Likewise. * i386.cc (Target_i386::emit_relocs_scan): New method. (Target_i386::Relocatable_size_for_reloc): Replace with... (Target_i386::Classify_reloc): ...this. (Target_i386::gc_process_relocs): Use Classify_reloc. (Target_i386::scan_relocs): Likewise. (Target_i386::relocate_section): Likewise. (Target_i386::scan_relocatable_relocs): Likewise. (Target_i386::relocate_relocs): Likewise. * mips.cc (Mips_scan_relocatable_relocs): Remove sh_type template parameter. (Mips_reloc_types): New class template. (Mips_classify_reloc): New class template. (Target_mips::Reltype): New typedef. (Target_mips::Relatype): New typedef. (Target_mips::emit_relocs_scan): New method. (Target_mips::get_r_sym): New method. (Target_mips::Relocatable_size_for_reloc): Replace with Mips_classify_reloc. (Target_mips::copy_reloc): Use Mips_classify_reloc. (Target_mips::gc_process_relocs): Likewise. (Target_mips::scan_relocs): Likewise. (Target_mips::relocate_section): Likewise. (Target_mips::scan_relocatable_relocs): Likewise. (Target_mips::relocate_relocs): Likewise. (mips_get_size_for_reloc): New function, factored out from Relocatable_size_for_reloc::get_size_for_reloc. (Target_mips::Scan::local): Use Mips_classify_reloc. (Target_mips::Scan::global): Likewise. (Target_mips::Relocate::relocate): Likewise. * powerpc.cc (Target_powerpc::emit_relocs_scan): New method. (Target_powerpc::Relocatable_size_for_reloc): Remove. (Target_powerpc::gc_process_relocs): Use Default_classify_reloc. (Target_powerpc::scan_relocs): Likewise. (Target_powerpc::relocate_section): Likewise. (Powerpc_scan_relocatable_reloc): Convert to class template. (Powerpc_scan_relocatable_reloc::Reltype): New typedef. (Powerpc_scan_relocatable_reloc::reloc_size): New const. (Powerpc_scan_relocatable_reloc::sh_type): New const. (Powerpc_scan_relocatable_reloc::get_r_sym): New method. (Powerpc_scan_relocatable_reloc::get_r_type): New method. (Target_powerpc::scan_relocatable_relocs): Use Powerpc_scan_relocatable_reloc. (Target_powerpc::relocate_relocs): Use Default_classify_reloc. * s390.cc (Target_s390::emit_relocs_scan): New method. (Target_s390::Relocatable_size_for_reloc): Remove. (Target_s390::gc_process_relocs): Use Default_classify_reloc. (Target_s390::scan_relocs): Likewise. (Target_s390::relocate_section): Likewise. (Target_s390::Relocatable_size_for_reloc::get_size_for_reloc): Remove. (Target_s390::scan_relocatable_relocs): Use Default_classify_reloc. (Target_s390::relocate_relocs): Use Default_classify_reloc. * sparc.cc (Target_sparc::emit_relocs_scan): New method. (Target_sparc::Relocatable_size_for_reloc): Remove. (Target_sparc::gc_process_relocs): Use Default_classify_reloc. (Target_sparc::scan_relocs): Likewise. (Target_sparc::relocate_section): Likewise. (Target_sparc::Relocatable_size_for_reloc::get_size_for_reloc): Remove. (Target_sparc::scan_relocatable_relocs): Use Default_classify_reloc. (Target_sparc::relocate_relocs): Use Default_classify_reloc. * tilegx.cc (Target_tilegx::emit_relocs_scan): New method. (Target_tilegx::Relocatable_size_for_reloc): Remove. (Target_tilegx::gc_process_relocs): Use Default_classify_reloc. (Target_tilegx::scan_relocs): Likewise. (Target_tilegx::relocate_section): Likewise. (Target_tilegx::Relocatable_size_for_reloc::get_size_for_reloc): Remove. (Target_tilegx::scan_relocatable_relocs): Use Default_classify_reloc. (Target_tilegx::relocate_relocs): Use Default_classify_reloc. * x86_64.cc (Target_x86_64::emit_relocs_scan): New method. (Target_x86_64::Relocatable_size_for_reloc): Remove. (Target_x86_64::gc_process_relocs): Use Default_classify_reloc. (Target_x86_64::scan_relocs): Likewise. (Target_x86_64::relocate_section): Likewise. (Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc): Remove. (Target_x86_64::scan_relocatable_relocs): Use Default_classify_reloc. (Target_x86_64::relocate_relocs): Use Default_classify_reloc. * testsuite/testfile.cc (Target_test::emit_relocs_scan): New method.
261 lines
7.3 KiB
C++
261 lines
7.3 KiB
C++
// target.cc -- target support for gold.
|
|
|
|
// Copyright (C) 2009-2016 Free Software Foundation, Inc.
|
|
// Written by Doug Kwan <dougkwan@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 "elfcpp.h"
|
|
#include "dynobj.h"
|
|
#include "symtab.h"
|
|
#include "output.h"
|
|
#include "target.h"
|
|
|
|
namespace gold
|
|
{
|
|
|
|
// Return whether NAME is a local label name. This is used to implement the
|
|
// --discard-locals options and can be overridden by child classes to
|
|
// implement system-specific behaviour. The logic here is the same as that
|
|
// in _bfd_elf_is_local_label_name().
|
|
|
|
bool
|
|
Target::do_is_local_label_name(const char* name) const
|
|
{
|
|
// Normal local symbols start with ``.L''.
|
|
if (name[0] == '.' && name[1] == 'L')
|
|
return true;
|
|
|
|
// At least some SVR4 compilers (e.g., UnixWare 2.1 cc) generate
|
|
// DWARF debugging symbols starting with ``..''.
|
|
if (name[0] == '.' && name[1] == '.')
|
|
return true;
|
|
|
|
// gcc will sometimes generate symbols beginning with ``_.L_'' when
|
|
// emitting DWARF debugging output. I suspect this is actually a
|
|
// small bug in gcc (it calls ASM_OUTPUT_LABEL when it should call
|
|
// ASM_GENERATE_INTERNAL_LABEL, and this causes the leading
|
|
// underscore to be emitted on some ELF targets). For ease of use,
|
|
// we treat such symbols as local.
|
|
if (name[0] == '_' && name[1] == '.' && name[2] == 'L' && name[3] == '_')
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
// Implementations of methods Target::do_make_elf_object are almost identical
|
|
// except for the address sizes and endianities. So we extract this
|
|
// into a template.
|
|
|
|
template<int size, bool big_endian>
|
|
inline Object*
|
|
Target::do_make_elf_object_implementation(
|
|
const std::string& name,
|
|
Input_file* input_file,
|
|
off_t offset,
|
|
const elfcpp::Ehdr<size, big_endian>& ehdr)
|
|
{
|
|
int et = ehdr.get_e_type();
|
|
// ET_EXEC files are valid input for --just-symbols/-R,
|
|
// and we treat them as relocatable objects.
|
|
if (et == elfcpp::ET_REL
|
|
|| (et == elfcpp::ET_EXEC && input_file->just_symbols()))
|
|
{
|
|
Sized_relobj_file<size, big_endian>* obj =
|
|
new Sized_relobj_file<size, big_endian>(name, input_file, offset, ehdr);
|
|
obj->setup();
|
|
return obj;
|
|
}
|
|
else if (et == elfcpp::ET_DYN)
|
|
{
|
|
Sized_dynobj<size, big_endian>* obj =
|
|
new Sized_dynobj<size, big_endian>(name, input_file, offset, ehdr);
|
|
obj->setup();
|
|
return obj;
|
|
}
|
|
else
|
|
{
|
|
gold_error(_("%s: unsupported ELF file type %d"),
|
|
name.c_str(), et);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
// Make an ELF object called NAME by reading INPUT_FILE at OFFSET. EHDR
|
|
// is the ELF header of the object. There are four versions of this
|
|
// for different address sizes and endianities.
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
Object*
|
|
Target::do_make_elf_object(const std::string& name, Input_file* input_file,
|
|
off_t offset, const elfcpp::Ehdr<32, false>& ehdr)
|
|
{
|
|
return this->do_make_elf_object_implementation<32, false>(name, input_file,
|
|
offset, ehdr);
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
Object*
|
|
Target::do_make_elf_object(const std::string& name, Input_file* input_file,
|
|
off_t offset, const elfcpp::Ehdr<32, true>& ehdr)
|
|
{
|
|
return this->do_make_elf_object_implementation<32, true>(name, input_file,
|
|
offset, ehdr);
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
Object*
|
|
Target::do_make_elf_object(const std::string& name, Input_file* input_file,
|
|
off_t offset, const elfcpp::Ehdr<64, false>& ehdr)
|
|
{
|
|
return this->do_make_elf_object_implementation<64, false>(name, input_file,
|
|
offset, ehdr);
|
|
}
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
Object*
|
|
Target::do_make_elf_object(const std::string& name, Input_file* input_file,
|
|
off_t offset, const elfcpp::Ehdr<64, true>& ehdr)
|
|
{
|
|
return this->do_make_elf_object_implementation<64, true>(name, input_file,
|
|
offset, ehdr);
|
|
}
|
|
#endif
|
|
|
|
Output_section*
|
|
Target::do_make_output_section(const char* name, elfcpp::Elf_Word type,
|
|
elfcpp::Elf_Xword flags)
|
|
{
|
|
return new Output_section(name, type, flags);
|
|
}
|
|
|
|
// Default for whether a reloc is a call to a non-split function is
|
|
// whether the symbol is a function.
|
|
|
|
bool
|
|
Target::do_is_call_to_non_split(const Symbol* sym, const unsigned char*) const
|
|
{
|
|
return sym->type() == elfcpp::STT_FUNC;
|
|
}
|
|
|
|
// Default conversion for -fsplit-stack is to give an error.
|
|
|
|
void
|
|
Target::do_calls_non_split(Relobj* object, unsigned int, section_offset_type,
|
|
section_size_type, const unsigned char*, size_t,
|
|
unsigned char*, section_size_type,
|
|
std::string*, std::string*) const
|
|
{
|
|
static bool warned;
|
|
if (!warned)
|
|
{
|
|
gold_error(_("linker does not include stack split support "
|
|
"required by %s"),
|
|
object->name().c_str());
|
|
warned = true;
|
|
}
|
|
}
|
|
|
|
// Return whether BYTES/LEN matches VIEW/VIEW_SIZE at OFFSET.
|
|
|
|
bool
|
|
Target::match_view(const unsigned char* view, section_size_type view_size,
|
|
section_offset_type offset, const char* bytes,
|
|
size_t len) const
|
|
{
|
|
if (offset + len > view_size)
|
|
return false;
|
|
return memcmp(view + offset, bytes, len) == 0;
|
|
}
|
|
|
|
// Set the contents of a VIEW/VIEW_SIZE to nops starting at OFFSET
|
|
// for LEN bytes.
|
|
|
|
void
|
|
Target::set_view_to_nop(unsigned char* view, section_size_type view_size,
|
|
section_offset_type offset, size_t len) const
|
|
{
|
|
gold_assert(offset >= 0 && offset + len <= view_size);
|
|
if (!this->has_code_fill())
|
|
memset(view + offset, 0, len);
|
|
else
|
|
{
|
|
std::string fill = this->code_fill(len);
|
|
memcpy(view + offset, fill.data(), len);
|
|
}
|
|
}
|
|
|
|
// Return address and size to plug into eh_frame FDEs associated with a PLT.
|
|
void
|
|
Target::do_plt_fde_location(const Output_data* plt, unsigned char*,
|
|
uint64_t* address, off_t* len) const
|
|
{
|
|
*address = plt->address();
|
|
*len = plt->data_size();
|
|
}
|
|
|
|
// Class Sized_target.
|
|
|
|
// Set the EI_OSABI field of the ELF header if requested.
|
|
|
|
template<int size, bool big_endian>
|
|
void
|
|
Sized_target<size, big_endian>::do_adjust_elf_header(unsigned char* view,
|
|
int len)
|
|
{
|
|
elfcpp::ELFOSABI osabi = this->osabi();
|
|
if (osabi != elfcpp::ELFOSABI_NONE)
|
|
{
|
|
gold_assert(len == elfcpp::Elf_sizes<size>::ehdr_size);
|
|
|
|
elfcpp::Ehdr<size, big_endian> ehdr(view);
|
|
unsigned char e_ident[elfcpp::EI_NIDENT];
|
|
memcpy(e_ident, ehdr.get_e_ident(), elfcpp::EI_NIDENT);
|
|
|
|
e_ident[elfcpp::EI_OSABI] = osabi;
|
|
|
|
elfcpp::Ehdr_write<size, big_endian> oehdr(view);
|
|
oehdr.put_e_ident(e_ident);
|
|
}
|
|
}
|
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
|
template
|
|
class Sized_target<32, false>;
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
|
template
|
|
class Sized_target<32, true>;
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
|
template
|
|
class Sized_target<64, false>;
|
|
#endif
|
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
|
template
|
|
class Sized_target<64, true>;
|
|
#endif
|
|
|
|
} // End namespace gold.
|