binutils-gdb/gold
Doug Kwan 20e6d0d602 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 01:10:38 +00:00
..
po Update Indonesian translations. 2009-05-26 16:49:41 +00:00
testsuite * testsuite/Makefile.am (MOSTLYCLEANFILES): Add more generated files. 2009-09-16 20:57:27 +00:00
aclocal.m4 Regenerate tree using Autoconf 2.64 and Automake 1.11. 2009-08-22 16:56:56 +00:00
archive.cc 2009-05-19 Doug Kwan <dougkwan@google.com> 2009-05-19 22:14:17 +00:00
archive.h 2009-05-19 Doug Kwan <dougkwan@google.com> 2009-05-19 22:14:17 +00:00
arm.cc * arm.cc (has_signed_unsigned_overflow): New function. 2009-09-18 00:45:53 +00:00
binary.cc * binary.cc: Fix file comment. 2009-02-07 01:03:32 +00:00
binary.h
ChangeLog 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
common.cc * layout.cc (Layout::make_output_section): Call 2009-06-22 06:51:53 +00:00
common.h
compressed_output.cc
compressed_output.h
config.in Regenerate tree using Autoconf 2.64 and Automake 1.11. 2009-08-22 16:56:56 +00:00
configure Regenerate tree using Autoconf 2.64 and Automake 1.11. 2009-08-22 16:56:56 +00:00
configure.ac 2009-06-23 Doug Kwan <dougkwan@google.com> 2009-06-23 18:10:42 +00:00
configure.tgt 2009-05-28 Doug Kwan <dougkwan@google.com> 2009-05-29 00:15:12 +00:00
copy-relocs.cc
copy-relocs.h
cref.cc
cref.h
debug.h 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
defstd.cc
defstd.h
descriptors.cc 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
descriptors.h 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
dirsearch.cc * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
dirsearch.h * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
dwarf_reader.cc
dwarf_reader.h
dynobj.cc 2009-08-18 Doug Kwan <dougkwan@google.com> 2009-08-18 23:49:29 +00:00
dynobj.h 2009-08-18 Doug Kwan <dougkwan@google.com> 2009-08-18 23:49:29 +00:00
ehframe.cc
ehframe.h
errors.cc 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
errors.h 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
expression.cc
ffsll.c * ffsll.c (ffsll): Correct implementation. 2009-03-30 23:17:11 +00:00
fileread.cc * fileread.cc (File_read::get_mtime): New method. 2009-07-06 23:11:21 +00:00
fileread.h * fileread.cc (File_read::get_mtime): New method. 2009-07-06 23:11:21 +00:00
freebsd.h * freebsd.h (Target_freebsd::do_adjust_elf_header): Use size 2009-07-01 16:21:36 +00:00
ftruncate.c * ffsll.c: New file. 2009-03-28 05:22:30 +00:00
gc.cc 2009-01-20 Sriraman Tallam <tmsriram@google.com> 2009-01-28 02:25:33 +00:00
gc.h *** empty log message *** 2009-08-05 20:51:56 +00:00
gold-threads.cc * target-select.cc (instantiate_target): Don't acquire the lock if 2009-03-24 17:32:43 +00:00
gold-threads.h 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
gold.cc * gold.cc: Include "incremental.h". 2009-09-01 17:32:35 +00:00
gold.h * gold.h (FUNCTION_NAME): Define. 2009-08-14 09:35:38 +00:00
i386.cc * layout.cc (Layout::make_output_section): Call 2009-06-22 06:51:53 +00:00
icf.cc 2009-08-12 Sriraman Tallam <tmsriram@google.com> 2009-08-13 00:03:43 +00:00
icf.h Sriraman Tallam <tmsriram@google.com> 2009-08-12 19:03:16 +00:00
incremental.cc * gold.cc: Include "incremental.h". 2009-09-01 17:32:35 +00:00
incremental.h * gold.cc: Include "incremental.h". 2009-09-01 17:32:35 +00:00
layout.cc 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
layout.h 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
main.cc *** empty log message *** 2009-08-05 20:51:56 +00:00
Makefile.am Fix yacc and lex reruns with maintainer-mode off. 2009-08-24 05:55:55 +00:00
Makefile.in Fix yacc and lex reruns with maintainer-mode off. 2009-08-24 05:55:55 +00:00
mapfile.cc
mapfile.h
merge.cc * merge.cc (Object_merge_map::initialize_input_to_output_map): 2009-07-09 23:29:55 +00:00
merge.h
mremap.c * ffsll.c: New file. 2009-03-28 05:22:30 +00:00
NEWS
object.cc 2009-08-18 Doug Kwan <dougkwan@google.com> 2009-08-18 23:49:29 +00:00
object.h 2009-08-18 Doug Kwan <dougkwan@google.com> 2009-08-18 23:49:29 +00:00
options.cc * options.h (Command_line::Pre_options): New class. 2009-08-25 01:10:48 +00:00
options.h * options.h (Command_line::Pre_options): New class. 2009-08-25 01:10:48 +00:00
output.cc 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
output.h 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
parameters.cc 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 00:31:29 +00:00
parameters.h * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
plugin.cc *** empty log message *** 2009-08-05 20:51:56 +00:00
plugin.h *** empty log message *** 2009-08-05 20:51:56 +00:00
powerpc.cc * layout.cc (Layout::make_output_section): Call 2009-06-22 06:51:53 +00:00
pread.c * ffsll.c: New file. 2009-03-28 05:22:30 +00:00
README * README: --gc-sections and map files are now supported. Document 2009-02-28 18:08:30 +00:00
readsyms.cc * gold.h (Incremental_argument_list): Remove (invalid) forward 2009-05-15 17:01:04 +00:00
readsyms.h * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
reduced_debug_output.cc * gold.h: Include <cstring> and <stdint.h>. 2009-01-28 20:09:18 +00:00
reduced_debug_output.h PR 9812 2009-02-04 15:18:51 +00:00
reloc-types.h
reloc.cc *** empty log message *** 2009-08-05 20:51:56 +00:00
reloc.h 2009-06-23 Doug Kwan <dougkwan@google.com> 2009-06-23 18:10:42 +00:00
resolve.cc * resolve.cc (Symbol_table::resolve): Don't complain about defined 2009-08-19 17:53:50 +00:00
script-c.h PR 10030 2009-06-23 06:39:47 +00:00
script-sections.cc 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
script-sections.h 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
script.cc * fileread.cc (File_read::get_mtime): New method. 2009-07-06 23:11:21 +00:00
script.h * fileread.cc (File_read::get_mtime): New method. 2009-07-06 23:11:21 +00:00
sparc.cc * layout.cc (Layout::make_output_section): Call 2009-06-22 06:51:53 +00:00
stringpool.cc PR 10133 2009-06-23 07:04:10 +00:00
stringpool.h PR 10133 2009-06-23 07:04:10 +00:00
symtab.cc *** empty log message *** 2009-08-05 20:51:56 +00:00
symtab.h *** empty log message *** 2009-08-05 20:51:56 +00:00
target-reloc.h *** empty log message *** 2009-08-05 20:51:56 +00:00
target-select.cc * target-select.cc (instantiate_target): Don't acquire the lock if 2009-03-24 17:32:43 +00:00
target-select.h 2009-03-23 Ian Lance Taylor <iant@google.com> 2009-03-24 04:50:32 +00:00
target.cc 2009-08-18 Doug Kwan <dougkwan@google.com> 2009-08-18 23:49:29 +00:00
target.h 2009-09-17 Doug Kwan <dougkwan@google.com> 2009-09-18 01:10:38 +00:00
tls.h
TODO
token.h
version.cc * version.cc (version_string): Bump to 1.8. 2009-01-28 20:18:11 +00:00
workqueue-internal.h
workqueue-threads.cc
workqueue.cc * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
workqueue.h * readsyms.cc (Read_symbols::incompatible_warning): New function. 2009-03-14 05:56:46 +00:00
x86_64.cc *** empty log message *** 2009-08-07 18:29:54 +00:00
yyscript.y PR 10030 2009-06-23 06:39:47 +00:00

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:
  * MEMORY regions in linker scripts
  * MRI compatible linker scripts
  * cross-reference reports (--cref)
  * position independent executables (-pie)
  * 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++/17_intro/C++STYLE
    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 is known to work.  g++ 3.2 and g++
3.4.3 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.