binutils-gdb/gold
Ian Lance Taylor d830e0e0c9 Add RELA versions of the relocation routines. Original patch from
Craig Silverstein, with Symbol_value<> versions added.
2007-10-01 00:05:08 +00:00
..
po Add basic exception frame header, plus test. 2007-09-26 05:44:38 +00:00
testsuite Clean up target handling--only build required files, warn about 2007-09-30 23:41:32 +00:00
aclocal.m4
archive.cc Add cache parameter to get_view. Discard uncached views on unlock. 2007-09-25 17:50:26 +00:00
archive.h Add cache parameter to get_view. Discard uncached views on unlock. 2007-09-25 17:50:26 +00:00
common.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
common.h
config.in Rework File_read interface. Get file size. Use pread when 2007-09-25 06:43:17 +00:00
configure Clean up target handling--only build required files, warn about 2007-09-30 23:41:32 +00:00
configure.ac Clean up target handling--only build required files, warn about 2007-09-30 23:41:32 +00:00
defstd.cc
defstd.h
dirsearch.cc
dirsearch.h
dynobj.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
dynobj.h Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
ehframe.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
ehframe.h Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
fileread.cc Use mmap to read from input files. 2007-09-25 23:08:30 +00:00
fileread.h Use mmap to read from input files. 2007-09-25 23:08:30 +00:00
gold-threads.cc
gold-threads.h
gold.cc Use parameters to track whether we are doing a static link. Fix up 2007-09-28 06:36:25 +00:00
gold.h Rework File_read interface. Get file size. Use pread when 2007-09-25 06:43:17 +00:00
i386.cc
layout.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
layout.h Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
main.cc
Makefile.am Clean up target handling--only build required files, warn about 2007-09-30 23:41:32 +00:00
Makefile.in Clean up target handling--only build required files, warn about 2007-09-30 23:41:32 +00:00
merge.cc Add cache parameter to get_view. Discard uncached views on unlock. 2007-09-25 17:50:26 +00:00
merge.h
object.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
object.h Add cache parameter to get_view. Discard uncached views on unlock. 2007-09-25 17:50:26 +00:00
options.cc
options.h
output.cc Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
output.h Put size and endianness in parameters. 2007-09-26 07:01:35 +00:00
parameters.cc Use parameters to track whether we are doing a static link. Fix up 2007-09-28 06:36:25 +00:00
parameters.h Use parameters to track whether we are doing a static link. Fix up 2007-09-28 06:36:25 +00:00
pread.c Rework File_read interface. Get file size. Use pread when 2007-09-25 06:43:17 +00:00
README
readsyms.cc Rework File_read interface. Get file size. Use pread when 2007-09-25 06:43:17 +00:00
readsyms.h
reloc-types.h
reloc.cc Add cache parameter to get_view. Discard uncached views on unlock. 2007-09-25 17:50:26 +00:00
reloc.h Add RELA versions of the relocation routines. Original patch from 2007-10-01 00:05:08 +00:00
resolve.cc
script-c.h
script.cc Rework File_read interface. Get file size. Use pread when 2007-09-25 06:43:17 +00:00
script.h
stringpool.cc
stringpool.h
strtab.h
symtab.cc Use parameters to track whether we are doing a static link. Fix up 2007-09-28 06:36:25 +00:00
symtab.h Use parameters to track whether we are doing a static link. Fix up 2007-09-28 06:36:25 +00:00
target-reloc.h
target-select.cc
target-select.h
target.h
workqueue.cc
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.