- Jun 25, 2015
-
-
Rui Ueyama authored
Only SectionChunk can be dead-stripped. Previously, all types of chunks implemented these functions, but their functions were blank. Likewise, only DefinedRegular and DefinedCOMDAT symbols can be dead-stripped. markLive() function was implemented for other symbol types, but they were blank. I started thinking that the change I made in r240319 was a mistake. I separated DefinedCOMDAT from DefinedRegular because I thought that would make the code cleaner, but now we want to handle them as the same type here. Maybe we should roll it back. This change should improve readability a bit as this removes some dubious uses of reinterpret_cast. Previously, we assumed that all COMDAT chunks are actually SectionChunks, which was not very obvious. llvm-svn: 240675
-
Rui Ueyama authored
llvm-svn: 240666
-
Rui Ueyama authored
llvm-svn: 240665
-
Rui Ueyama authored
The size of the field is 16 bit, so it's inaccurate if the number of relocations in a section is more than 65535. llvm-svn: 240661
-
Rafael Espindola authored
llvm-svn: 240658
-
Rui Ueyama authored
The change I made in r240620 was not correct. If a symbol foo is defined, and if you use __imp_foo, __imp_foo symbol is automatically defined as a pointer (not just an alias) to foo. Now that we need to create a chunk for automatically-created symbols. I defined LocalImportChunk class for them. llvm-svn: 240622
-
Rui Ueyama authored
MSVC linker is able to link an object file created from the following code. Note that __imp_hello is not defined anywhere. void hello() { printf("Hello\n"); } extern void (*__imp_hello)(); int main() { __imp_hello(); } Function symbols exported from DLLs are automatically mangled by appending __imp_ prefix, so they have two names (original one and with the prefix). This "feature" seems to simulate that behavior even for non-DLL symbols. This is in my opnion very odd feature. Even MSVC linker warns if you use this. I'm adding that anyway for the sake of compatibiltiy. llvm-svn: 240620
-
Rui Ueyama authored
llvm-svn: 240614
-
Rui Ueyama authored
Getting an iterator to the relocation table is very hot operation in the linker. We do that not only to apply relocations but also to mark live sections and to do ICF. libObject's interface is slow. By caching pointers to the first relocation table entries makes the linker 6% faster to self-link. We probably need to fix libObject as well. llvm-svn: 240603
-
- Jun 24, 2015
-
-
Rui Ueyama authored
llvm-svn: 240590
-
Adhemerval Zanella authored
Some compilers may not add the section symbol in '.symtab' for the .init_array and 'ldd' just ignore it. It results in global constructor not being called in final executable. This patch add both '.init_array' and '.fini_array' to be added in Atom graph generation even when the section contains no symbol. An already existing testcase is modified to check for such scenario. The issue fixes the llvm test-suite regressions for both Single and MultiSource files. llvm-svn: 240570
-
Rui Ueyama authored
Identical COMDAT Folding (ICF) is an optimization to reduce binary size by merging COMDAT sections that contain the same metadata, actual data and relocations. MSVC link.exe and many other linkers have this feature. LLD achieves on per with MSVC in terms produced binary size with this patch. This technique is pretty effective. For example, LLD's size is reduced from 64MB to 54MB by enaling this optimization. The algorithm implemented in this patch is extremely inefficient. It puts all COMDAT sections into a set to identify duplicates. Time to self-link with/without ICF are 3.3 and 320 seconds, respectively. So this option roughly makes LLD 100x slower. But it's okay as I wanted to achieve correctness first. LLD is still able to link itself with this optimization. I'm going to make it more efficient in followup patches. Note that this optimization is *not* entirely safe. C/C++ require different functions have different addresses. If your program relies on that property, your program wouldn't work with ICF. However, it's not going to be an issue on Windows because MSVC link.exe turns ICF on by default. As long as your program works with default settings (or not passing /opt:noicf), your program would work with LLD too. llvm-svn: 240519
-
Peter Collingbourne authored
llvm-svn: 240512
-
Peter Collingbourne authored
llvm-svn: 240511
-
Peter Collingbourne authored
Differential Revision: http://reviews.llvm.org/D10675 llvm-svn: 240487
-
Rui Ueyama authored
Chunks are basically unnamed chunks of bytes, and we don't like to give them names. However, for logging or debugging, we want to know symbols names of functions for COMDAT chunks. (For example, we want to print out "we have removed unreferenced COMDAT section which contains a function FOOBAR.") This patch is to do that. llvm-svn: 240484
-
Rui Ueyama authored
Previously, we added files in directive sections to the symbol table as we read the sections, so the link order was depth-first. That's not compatible with MSVC link.exe nor the old LLD. This patch is to queue files so that new files are added to the end of the queue and processed last. Now addFile() doesn't parse files nor resolve symbols. You need to call run() to process queued files. llvm-svn: 240483
-
- Jun 23, 2015
-
-
Lang Hames authored
This allows LLD to correctly link MachO objects that use thread-local storage. Differential Revision: http://reviews.llvm.org/D10578 llvm-svn: 240454
-
Peter Collingbourne authored
llvm-svn: 240447
-
Benjamin Kramer authored
The ObjectFileYAML.roundTrip serializes a default-constructed NormalizedFile to YAML, triggering uninitialized memory reads. While there use in-class member initializers. llvm-svn: 240446
-
Benjamin Kramer authored
llvm-svn: 240445
-
David Blaikie authored
Update for LLVM API change to return by InputArgList directly (rather than by pointer) from ParseArgs llvm-svn: 240347
-
David Blaikie authored
llvm-svn: 240346
-
- Jun 22, 2015
-
-
Rui Ueyama authored
Before this change, you got to cast a symbol to DefinedRegular and then call isCOMDAT() to determine if a given symbol is a COMDAT symbol. Now you can just use isa<DefinedCOMDAT>(). As to the class definition of DefinedCOMDAT, I could remove duplicate code from DefinedRegular and DefinedCOMDAT by introducing another base class for them, but I chose to not do that to keep the class hierarchy shallow. This amount of code duplication doesn't worth to define a new class. llvm-svn: 240319
-
Rui Ueyama authored
llvm-svn: 240298
-
Simon Atanasyan authored
llvm-svn: 240268
-
Simon Atanasyan authored
llvm-svn: 240267
-
Simon Atanasyan authored
llvm-svn: 240266
-
Simon Atanasyan authored
llvm-svn: 240265
-
Simon Atanasyan authored
llvm-svn: 240264
-
Simon Atanasyan authored
No functional changes. llvm-svn: 240263
-
Simon Atanasyan authored
llvm-svn: 240262
-
Simon Atanasyan authored
No functional changes. llvm-svn: 240261
-
Simon Atanasyan authored
llvm-svn: 240260
-
Simon Atanasyan authored
llvm-svn: 240259
-
Rui Ueyama authored
DLLs are usually resolved at process startup, but you can delay-load them by passing /delayload option to the linker. If a /delayload is specified, the linker has to create data which is similar to regular import table. One notable difference is that the pointers in a delay-load import table are originally pointing to thunks that resolves themselves. Each thunk loads a DLL, resolve its name, and then overwrites the pointer with the result so that subsequent function calls directly call a desired function. The linker has to emit thunks. llvm-svn: 240250
-
- Jun 21, 2015
-
-
David Blaikie authored
llvm-svn: 240236
-
David Blaikie authored
llvm-svn: 240235
-
Rui Ueyama authored
llvm-svn: 240232
-
Rui Ueyama authored
.pdata section contains a list of triplets of function start address, function end address and its unwind information. Linkers have to sort section contents by function start address and set the section address to the file header (so that runtime is able to find it and do binary search.) This change seems to resolve all but one remaining test failures in check{,-clang,-lld} when building the entire stuff with clang-cl and lld-link. llvm-svn: 240231
-