binutils-gdb/gold
2007-09-22 05:03:56 +00:00
..
po Update. 2007-09-22 04:38:33 +00:00
testsuite Update for have_code_fill field. 2007-09-21 06:25:35 +00:00
aclocal.m4
archive.cc Add global parameters. 2007-09-21 07:20:01 +00:00
archive.h Add global parameters. 2007-09-21 07:20:01 +00:00
common.cc Add control over template specialization. 2007-09-19 06:01:35 +00:00
common.h
config.in Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
configure Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
configure.ac Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
defstd.cc Fix some errors in symbol placement. 2007-09-22 04:38:13 +00:00
defstd.h
dirsearch.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
dirsearch.h
dynobj.cc Add global parameters. 2007-09-21 07:20:01 +00:00
dynobj.h Add global parameters. 2007-09-21 07:20:01 +00:00
fileread.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
fileread.h From Andrew Chatham: Make File_read::View::data_ a const pointer. 2007-09-22 05:03:56 +00:00
gold-threads.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
gold-threads.h
gold.cc Define __start and __stop symbols. 2007-09-22 04:42:09 +00:00
gold.h Actually define GOLD_GOLD_H multiple inclusion macro. 2007-09-21 06:25:19 +00:00
i386.cc Initialize count_ field, tweak parameters testing. 2007-09-21 07:34:51 +00:00
layout.cc Define __start and __stop symbols. 2007-09-22 04:42:09 +00:00
layout.h Define __start and __stop symbols. 2007-09-22 04:42:09 +00:00
main.cc Add global parameters. 2007-09-21 07:20:01 +00:00
Makefile.am Add global parameters. 2007-09-21 07:20:01 +00:00
Makefile.in Add global parameters. 2007-09-21 07:20:01 +00:00
merge.cc Add support for SHF_MERGE sections. 2007-05-16 17:42:48 +00:00
merge.h Set Stringpool zero_null option via a call, not a default constructor 2007-09-21 06:12:32 +00:00
object.cc Add global parameters. 2007-09-21 07:20:01 +00:00
object.h Add global parameters. 2007-09-21 07:20:01 +00:00
options.cc From Craig Silverstein: Add -O option. 2007-09-21 05:43:33 +00:00
options.h From Craig Silverstein: Add -O option. 2007-09-21 05:43:33 +00:00
output.cc Add global parameters. 2007-09-21 07:20:01 +00:00
output.h Add global parameters. 2007-09-21 07:20:01 +00:00
parameters.cc Add global parameters. 2007-09-21 07:20:01 +00:00
parameters.h Add global parameters. 2007-09-21 07:20:01 +00:00
README
readsyms.cc Add global parameters. 2007-09-21 07:20:01 +00:00
readsyms.h Add global parameters. 2007-09-21 07:20:01 +00:00
reloc-types.h
reloc.cc Add support for --enable-target to control which template 2007-09-04 20:00:53 +00:00
reloc.h Add support for SHF_MERGE sections. 2007-05-16 17:42:48 +00:00
resolve.cc Let special symbols override existing symbols rather than 2007-09-19 06:02:29 +00:00
script-c.h
script.cc Make relative references in linker scripts absolute and update a 2007-08-21 21:29:12 +00:00
script.h
stringpool.cc From Craig Silverstein: Only sort for suffixes with -O2. 2007-09-21 15:54:07 +00:00
stringpool.h Set Stringpool zero_null option via a call, not a default constructor 2007-09-21 06:12:32 +00:00
strtab.h
symtab.cc Canonicalize name and version when working with special symbols. 2007-09-22 04:40:13 +00:00
symtab.h Canonicalize name and version when working with special symbols. 2007-09-22 04:40:13 +00:00
target-reloc.h Make relative references in linker scripts absolute and update a 2007-08-21 21:29:12 +00:00
target-select.cc
target-select.h
target.h Add global parameters. 2007-09-21 07:20:01 +00:00
workqueue.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
workqueue.h
yyscript.y

gold is an ELF linker.  It is intended to have complete support for
ELF and to run as fast as possible on modern systems.

It is written in C++.  It is (intended to be) a GNU program, and
therefore follows the GNU formatting standards as modified for C++.
Source documents in order of 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,
which still supporting the normal case of native linking as fast as
possible.  This makes the code more complex.

Many functions are actually templates whose parameter is the ELF file
class (e.g., 32 bits or 64 bits).  The code is the same, but we don't
want to pay the execution time cost of always using 64-bit integers if
the target is 32 bits.