binutils-gdb/gold
2006-11-30 23:52:50 +00:00
..
po Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
testsuite Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
aclocal.m4
archive.cc
archive.h
common.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
common.h
config.in
configure Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
configure.ac Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
defstd.cc
defstd.h
dirsearch.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
dirsearch.h
dynobj.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
dynobj.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
fileread.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
fileread.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +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 Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
gold.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
i386.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
layout.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
layout.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
main.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
Makefile.am Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
Makefile.in Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
object.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
object.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
options.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
options.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
output.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
output.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
README
readsyms.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
readsyms.h
reloc-types.h Snapshot. Includes first cut at output relocation sections. 2006-11-16 00:38:25 +00:00
reloc.cc Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
reloc.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +00:00
resolve.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
script-c.h
script.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
script.h
stringpool.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
stringpool.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
strtab.h
symtab.cc Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
symtab.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
target-reloc.h Hash tables, dynamic section, i386 PLT, gold_assert. 2006-11-29 17:56:40 +00:00
target-select.cc
target-select.h
target.h Added a testsuite. More support for COPY relocations. 2006-11-30 23:52:50 +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.