old-cross-binutils/gold
Cary Coutant 4d625b70fc Refactor gold to enable support for MIPS-64 relocation format.
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.
2016-01-11 18:51:18 -08:00
..
po Copyright update for binutils 2016-01-01 23:00:01 +10:30
testsuite Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
aarch64-reloc-property.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-reloc-property.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64-reloc.def Copyright update for binutils 2016-01-01 23:00:01 +10:30
aarch64.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
aclocal.m4 * configure.ac (HAVE_ZLIB): Use AM_ZLIB instead of AC_SEARCH_LIBS. 2012-12-07 04:28:52 +00:00
archive.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
archive.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
arm-reloc-property.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
arm-reloc-property.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
arm-reloc.def Copyright update for binutils 2016-01-01 23:00:01 +10:30
arm.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
attributes.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
attributes.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
binary.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
binary.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ChangeLog Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
ChangeLog-0815 binutils ChangeLog rotation 2016-01-01 22:59:17 +10:30
common.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
common.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
compressed_output.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
compressed_output.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
config.in Regenerate configure in gold 2015-04-01 06:40:35 -07:00
configure Add s390 backend. 2015-10-28 16:47:27 -07:00
configure.ac Copyright update for binutils 2016-01-01 23:00:01 +10:30
configure.tgt Copyright update for binutils 2016-01-01 23:00:01 +10:30
copy-relocs.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
copy-relocs.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
cref.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
cref.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
debug.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
defstd.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
defstd.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
descriptors.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
descriptors.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
dirsearch.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
dirsearch.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
dwarf_reader.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
dwarf_reader.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
dwp.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
dwp.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
dynobj.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
dynobj.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ehframe.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
ehframe.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
errors.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
errors.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
expression.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
ffsll.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
fileread.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
fileread.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
freebsd.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
ftruncate.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
gc.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
gc.h Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
gdb-index.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
gdb-index.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
gold-threads.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
gold-threads.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
gold.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
gold.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
i386.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
icf.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
icf.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
incremental-dump.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
incremental.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
incremental.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
int_encoding.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
int_encoding.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
layout.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
layout.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
main.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
Makefile.am Copyright update for binutils 2016-01-01 23:00:01 +10:30
Makefile.in Copyright update for binutils 2016-01-01 23:00:01 +10:30
mapfile.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
mapfile.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
merge.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
merge.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
mips.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
mremap.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
nacl.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
nacl.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
NEWS Copyright update for binutils 2016-01-01 23:00:01 +10:30
object.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
object.h Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
options.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
options.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
output.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
output.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
parameters.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
parameters.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
plugin.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
plugin.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
powerpc.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
pread.c Copyright update for binutils 2016-01-01 23:00:01 +10:30
README Copyright update for binutils 2016-01-01 23:00:01 +10:30
readsyms.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
readsyms.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
reduced_debug_output.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
reduced_debug_output.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
reloc-types.h Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
reloc.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
reloc.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
resolve.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
s390.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
script-c.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
script-sections.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
script-sections.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
script.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
script.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
sparc.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
stringpool.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
stringpool.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
symtab.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
symtab.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
system.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
target-reloc.h Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
target-select.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
target-select.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
target.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
target.h Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
tilegx.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
timer.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
timer.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
tls.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
TODO * TODO: New file. 2008-04-03 00:33:37 +00:00
token.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
version.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
workqueue-internal.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
workqueue-threads.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
workqueue.cc Copyright update for binutils 2016-01-01 23:00:01 +10:30
workqueue.h Copyright update for binutils 2016-01-01 23:00:01 +10:30
x86_64.cc Refactor gold to enable support for MIPS-64 relocation format. 2016-01-11 18:51:18 -08:00
yyscript.y Copyright update for binutils 2016-01-01 23:00:01 +10:30

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

gold is an ELF linker.  It is intended to have complete support for
ELF and to run as fast as possible on modern systems.  For normal use
it is a drop-in replacement for the older GNU linker.

gold is part of the GNU binutils.  See ../binutils/README for more
general notes, including where to send bug reports.

gold was originally developed at Google, and was contributed to the
Free Software Foundation in March 2008.  At Google it was designed by
Ian Lance Taylor, with major contributions by Cary Coutant, Craig
Silverstein, and Andrew Chatham.

The existing GNU linker manual is intended to be accurate
documentation for features which gold supports.  gold supports most of
the features of the GNU linker for ELF targets.  Notable
omissions--features of the GNU linker not currently supported in
gold--are:
  * MRI compatible linker scripts
  * cross-reference reports (--cref)
  * various other minor options


Notes on the code
=================

These are some notes which may be helpful to people working on the
source code of gold itself.

gold is written in C++.  It is a GNU program, and therefore follows
the GNU formatting standards as modified for C++.  Source documents in
order of decreasing precedence:
    http://www.gnu.org/prep/standards/
    http://gcc.gnu.org/onlinedocs/libstdc++/manual/source_code_style.html
    http://www.zembu.com/eng/procs/c++style.html

The linker is intended to have complete support for cross-compilation,
while still supporting the normal case of native linking as fast as
possible.  In order to do this, many classes are actually templates
whose parameter is the ELF file class (e.g., 32 bits or 64 bits).  The
C++ code is the same, but we don't pay the execution time cost of
always using 64-bit integers if the target is 32 bits.  Many of these
class templates also have an endianness parameter: true for
big-endian, false for little-endian.

The linker is multi-threaded.  The Task class represents a single unit
of work.  Task objects are stored on a single Workqueue object.  Tasks
communicate via Task_token objects.  Task_token objects are only
manipulated while holding the master Workqueue lock.  Relatively few
mutexes are used.


Build requirements
==================

The gold source code uses templates heavily.  Building it requires a
recent version of g++.  g++ 4.0.3 and 4.1.3 are known to work.  g++
3.2, 3.4.3, and 4.1.2 are known to fail.

The linker script parser uses features which are only in newer
versions of bison.  bison 2.3 is known to work.  bison 1.26 is known
to fail.  If you are building gold from an official binutils release,
the bison output should already be included.


Copyright (C) 2012-2016 Free Software Foundation, Inc.

Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.