- Sep 29, 2016
-
-
Rui Ueyama authored
It's better because it's a verb. llvm-svn: 282763
-
Rafael Espindola authored
If there is not sufficient address space, just give up and don't put the header in the PT_LOAD. This matches bfd behaviour and I found at least one script that depends on having a section at address 0. llvm-svn: 282750
-
Rafael Espindola authored
llvm-svn: 282725
-
Rafael Espindola authored
It is not clear if we need a different layout, so for now handle them like regular ELF output. llvm-svn: 282724
-
Simon Atanasyan authored
LLD does not update relocations addends when generate a relocatable object. That is why we should not write a non-zero GP0 value into the .reginfo and .MIPS.options sections. And we should not accept input object files with non-zero GP0 value because we cannot handle them properly. llvm-svn: 282716
-
Simon Atanasyan authored
In case of linking PIC and non-PIC code together and generation of a relocatable object, all PIC symbols should have STO_MIPS_PIC flag in the symbol table of the ouput file. llvm-svn: 282714
-
George Rimar authored
I took the input from https://llvm.org/bugs/show_bug.cgi?id=30540, it was "id_000000,sig_11,src_000000,op_flip1,pos_98" File contains invalid symbol name offset (too large) and lld just crashes, patch fixes the issue. Differential revision: https://reviews.llvm.org/D24970 llvm-svn: 282709
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D25033 llvm-svn: 282708
-
Eugene Leviant authored
If we two sections reside in the same PT_LOAD segment, we compute second section using the following formula: Off2 = Off1 + VA2 - VA1. This allows OS kernel allocating sections correctly when loading an image. Differential revision: https://reviews.llvm.org/D25014 llvm-svn: 282705
-
Rui Ueyama authored
llvm-svn: 282670
-
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
-
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
-
-
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
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
-
- 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
-
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
-