- Sep 29, 2016
-
-
Rui Ueyama authored
llvm-svn: 282668
-
Rui Ueyama authored
llvm-svn: 282664
-
Rafael Espindola authored
llvm-svn: 282663
-
Davide Italiano authored
llvm-svn: 282662
-
Rui Ueyama authored
llvm-svn: 282658
-
Davide Italiano authored
Differential Revision: https://reviews.llvm.org/D24492 llvm-svn: 282656
-
- Sep 28, 2016
-
-
Rui Ueyama authored
Differential Revision: https://reviews.llvm.org/D25044 llvm-svn: 282633
-
Rafael Espindola authored
llvm-svn: 282603
-
Petr Hosek authored
This options issupported by both BFD ld and gold and allows overriding the max page size whose default values are defined by the target. https://llvm.org/bugs/show_bug.cgi?id=30541 Differential Revision: https://reviews.llvm.org/D24891 llvm-svn: 282596
-
George Rimar authored
This subfolder just like "linkerscript" subfolder keeps testcases with invalid input. According to PR30540 it seems we might have many new ones soon, so it is seems reasonable to separate them from regular testcases. Differential revision: https://reviews.llvm.org/D25010 llvm-svn: 282595
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D24966 llvm-svn: 282568
-
Petr Hosek authored
This matches the behavior of Binutils linkers. We also change the default MaxPageSize on x86-64 to 0x1000 to preserver the current behavior, which is the same as the behavior implemented by gold. https://llvm.org/bugs/show_bug.cgi?id=30541 Differential Revision: https://reviews.llvm.org/D24987 llvm-svn: 282560
-
- Sep 27, 2016
-
-
Martin Storsjö authored
Handle this in the exact same way as IMAGE_REL_AMD64_SECREL and IMAGE_REL_I386_SECREL. Differential revision: https://reviews.llvm.org/D24608 llvm-svn: 282531
-
Rafael Espindola authored
The speed improvements I got were: firefox master 7.050784981 patch 6.842361079 0.970439617353 chromium master 4.260626249 patch 4.183148025 0.981815296749 chromium fast master 1.829028591 patch 1.806439277 0.987649556649 the gold plugin master 0.336154128 patch 0.331893374 0.987324998728 clang master 0.561869781 patch 0.558640828 0.994253200458 llvm-as master 0.034025959 patch 0.033984389 0.99877828572 the gold plugin fsds master 0.360710529 patch 0.356483564 0.988281559145 clang fsds master 0.640518422 patch 0.632329874 0.987215749432 llvm-as fsds master 0.031569416 patch 0.030822055 0.976326423017 scylla master 3.154770529 patch 3.11982016 0.988921422754 llvm-svn: 282505
-
George Rimar authored
llvm-svn: 282497
-
George Rimar authored
r282444 introduced new issue, sample program below fails to link on assert(Piece.Live); int main() { return 0; } clang test.cpp -c -o out.o -g ld.lld -flavor gnu --gc-sections out.o -o out Problem is that .debug_info contains relocations to .debug_str: Section (7) .rela.debug_info { .. 0xC R_X86_64_32 .debug_str 0x0 0x12 R_X86_64_32 .debug_str 0x37 .. But we do not preserve .debug_str in a right way now. To fix this we should ignore relocations from non-allocatable sections to allocatable to allow GC work at full power, but still should proccess relocations from non-allocatable to non-allocatable sections as usual to mark some parts of debug sections alive to keep them so we do not end up with such assert when trying to access dead pieces. That looks like what gold/ld do, they do not strip .debug_str section from what I saw using sample provided. Thanks to Evgeny Leviant for suggestions about how to fix this. Differential revision: https://reviews.llvm.org/D24967 llvm-svn: 282495
-
Rui Ueyama authored
So that it is clear that FileOutputBuffer does not depend on PDB file builder. Eventually we will have to to get the file size info from the file builder to create a file with the exact size. NFC. llvm-svn: 282454
-
- Sep 26, 2016
-
-
Rafael Espindola authored
This matches the gold behaviour and is important to prevent debug info from effectively disabling gc. llvm-svn: 282444
-
George Rimar authored
The BYTE, SHORT, LONG, and QUAD commands store one, two, four, and eight bytes (respectively). After storing the bytes, the location counter is incremented by the number of bytes stored. Previously our scripts handles these commands incorrectly. For example: SECTIONS { .foo : { *(.foo.1) BYTE(0x11) ... We accepted the script above treating BYTE as input section description. These commands are used in the wild though. Differential revision: https://reviews.llvm.org/D24830 llvm-svn: 282429
-
George Rimar authored
PR30521 was about linking shared library. After r282295 code when linking -shared produced "entry symbol not found" warning, what in combination with --fatal-errors failed linkage. Patch fixes logic (and adds testcases) to follow next rules: 1) If entry was specified and not found report warning. 2) If entry was not specified then: a) Emit warning if not -shared. b) Do not emit warning if -shared. Differential revision: https://reviews.llvm.org/D24913 llvm-svn: 282427
-
George Rimar authored
llvm-svn: 282395
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D24870 llvm-svn: 282393
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D24733 llvm-svn: 282391
-
- Sep 24, 2016
-
-
Davide Italiano authored
I found out this wasn't tested when looking at Vedant's coverage bot numbers, so, thanks to him. While I'm here, switch the error message to be lld-compliant (first letter lowercase). llvm-svn: 282335
-
Rui Ueyama authored
llvm-svn: 282307
-
- Sep 23, 2016
-
-
Rafael Espindola authored
Fixes pr30465. llvm-svn: 282295
-
Rafael Espindola authored
We were counting the size of the bss section holding common symbols twice: Dot += CurOutSec->getSize(); flush(); The new code is also simpler as now flush is the only function that inserts in AlreadyOutputOS, which makes sense since the set hold fully output sections. llvm-svn: 282285
-
Davide Italiano authored
If we pass --gc-sections to lld and .tbss is not referenced, the section is reclaimed and lld doesn't create a TLS program header. R_TLS tries to access the program header -> lld crashes. Mimic what bfd/gold do in this case and resolve a weak undefined TLS symbol to the base of the TLS block, i.e. give it a value of zero. Differential Revision: https://reviews.llvm.org/D24832 llvm-svn: 282279
-
Rui Ueyama authored
llvm-svn: 282268
-
Rafael Espindola authored
It would fail for example if the directory contained an @. Both gold and bfd require quotes for @, so just change the test to quote the directory name. Thanks to Vedant Kumar for the bug report. llvm-svn: 282256
-
Peter Smith authored
The ARM TLS relocations are placed on literal data and not the code-sequence, it is therefore not possible to implement the relaxTls* functions. This change updates handleMipsTlsRelocation() to handleNoRelaxTlsRelocation() and incorporates ARM as well as Mips. The ARM support in handleNoRelaxTlsRelocation() currently needs to ouput the module index dynamic relocation in all cases as it is relying on the dynamic linker to set the module index in the got. Should address PR30218 Differential Revision: https://reviews.llvm.org/D24827 llvm-svn: 282250
-
George Rimar authored
Previously we failed to parse next scripts because disallowed a space between filler value and '=': .text : { ... } :text = 0x9090 Differential revision: https://reviews.llvm.org/D24831 llvm-svn: 282248
-
George Rimar authored
DEFINED(symbol) Return 1 if symbol is in the linker global symbol table and is defined before the statement using DEFINED in the script, otherwise return 0. Can be used to define default values for symbols. Found it in the wild. Differential revision: https://reviews.llvm.org/D24858 llvm-svn: 282245
-
Eugene Leviant authored
If section contains local symbols ldd crashes, because local symbols are added to symbol table before section is discarded by linker script processor. This patch calls copyLocalSymbols() after createSections, so discarded section symbols are not copied llvm-svn: 282244
-
George Rimar authored
Found this operators used in the wild scripts, for example: __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2; __fixup_entries = (. - _FIXUP_TABLE_)>>2; Differential revision: https://reviews.llvm.org/D24860 llvm-svn: 282243
-
- Sep 22, 2016
-
-
Davide Italiano authored
The ELF spec doesn't allow relocations to point directly to a deduplicated COMDAT section but this unfortunately happens in practice. Bail out early instead of crashing. Differential Revision: https://reviews.llvm.org/D24750 llvm-svn: 282197
-
Vedant Kumar authored
Reviewed-by: rafael llvm-svn: 282187
-
Rafael Espindola authored
Should fix the windows bots. llvm-svn: 282181
-
Rafael Espindola authored
This fixes a case where we would produce an unaligned PT_LOAD. llvm-svn: 282180
-
Rafael Espindola authored
With the recent changes there should always be a 1:1 correspondence in the correct order between OutputSections and OutputSectionCommands. llvm-svn: 282176
-