- Jun 10, 2016
-
-
Simon Atanasyan authored
Just for consistency with other parts of the code. llvm-svn: 272390
-
Simon Atanasyan authored
llvm-svn: 272389
-
Simon Atanasyan authored
In isPreemptible routine we interested in R_MIPS_GPREL16 relocation only. This relocation fits 0xf. So the new mask 0xff is just to conform the ABI specification. llvm-svn: 272388
-
George Rimar authored
Initially we wanted to check that these two relocations are not present when linking DSO because of possible overflow in runtime. Patch moves them to writable segment in testcases to allow proper error check to trigger. Otherwise error message about using dynamic relocations against text segment was shown. Differential revision: http://reviews.llvm.org/D21184 llvm-svn: 272379
-
George Rimar authored
It was reported in PR28020, that lld does not link code which gold do. But in fact that is expected behavior as we do not support DT_TEXTREL. This patch changes error message as it can report about relocations against text segments exclusively, other dynamic relocations errors can be handled separately. Differential revision: http://reviews.llvm.org/D21133 llvm-svn: 272377
-
- Jun 09, 2016
-
-
Rafael Espindola authored
llvm-svn: 272305
-
Rafael Espindola authored
It produces an error, so that was a bad name. llvm-svn: 272304
-
Rafael Espindola authored
They point to a shared library, so they would still overflow at runtime. llvm-svn: 272303
-
Rafael Espindola authored
llvm-svn: 272302
-
Peter Collingbourne authored
We can now use this to decide whether to emit a verneed during the final pass over the symbols. We were previously wrongly creating a verneed entry in the case where all references to a DSO's symbols were weak. In a future change we may also want to use the used bit to control whether shared symbols are preemptible and appear in the dynsym. This seems a little tricky to do at the moment because isNeeded() is templated. The only other functional change here is that we emit a DT_NEEDED for DSOs whose symbols are all preempted by objects that appear later in the link. But that doesn't seem too important to me. Differential Revision: http://reviews.llvm.org/D21171 llvm-svn: 272282
-
Rafael Espindola authored
We should not ignore the symbol, just the version. Fixes error with -z defs. llvm-svn: 272270
-
George Rimar authored
llvm-svn: 272265
-
Richard Smith authored
llvm-svn: 272234
-
- Jun 08, 2016
-
-
Rafael Espindola authored
If the symbol is local we don't need to create a R_X86_64_DTPOFF64, we can just write the correct value in the got. Should fix pr28018. llvm-svn: 272205
-
Rui Ueyama authored
llvm-svn: 272146
-
George Rimar authored
It was one line global static function that looks nicer to inline, patch do that. llvm-svn: 272137
-
George Rimar authored
llvm-svn: 272134
-
George Rimar authored
That made few places in code a bit shorter. llvm-svn: 272133
-
George Rimar authored
llvm-svn: 272131
-
George Rimar authored
llvm-svn: 272130
-
George Rimar authored
llvm-svn: 272129
-
George Rimar authored
Previously this test performed check of binary data. Since llvm-readobj currently able to dump all 3 types of version relative sections, that can be used to make this test more transparent. Patch do that. Differential revision: http://reviews.llvm.org/D21024 llvm-svn: 272120
-
- Jun 07, 2016
-
-
Rui Ueyama authored
llvm-svn: 272046
-
Rui Ueyama authored
llvm-svn: 272034
-
Rui Ueyama authored
llvm-svn: 272032
-
Rui Ueyama authored
llvm-svn: 272030
-
Peter Smith authored
llvm-svn: 271994
-
Peter Smith authored
Add support for an ARM Target and the initial set of relocations and PLT entries that are necessary for an ARM only hello world to link. This has been tested against an ARM only sysroot from the 4.2.0 CodeSourcery Lite release. Tests have been added to test/ELF for the support that has been implemented. Main limitations: - No Thumb support - Relocations incomplete - No C++ exceptions support - No TLS support - No range extension or interworking veneer (thunk) support - No Build Attribute support - No Big-endian support The deprecated relocations R_ARM_PLT32 and R_ARM_PC24 have been implemented as these are used by the 4.2.0 CodeSourcery Lite release. llvm-svn: 271993
-
Rafael Espindola authored
Reduced from a firefox build. llvm-svn: 271950
-
- Jun 06, 2016
-
-
Rui Ueyama authored
Differential Revision: http://reviews.llvm.org/D21008 llvm-svn: 271901
-
George Rimar authored
.gnu.version should have sh_link field initialized with index of DynSymTab section. GNU documentation looks misses that, but Sun docs mention it, according to https://docs.oracle.com/cd/E19120-01/open.solaris/819-0690/chapter6-54676/index.html versym sh_link is indeed supposed to point to the .dynsym section. Binutils readelf tool also relies on that: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob;f=binutils/readelf.c;h=b6454d353279dc57745cd5a2d68b5f3f69f8e17c;hb=5522f910cb539905d6adfdceab208ddfa5e84557#l9988 Both gold/bfd do the same + after this patch I am able to see this section in readelf output, was unable before in my case. Differential revision: http://reviews.llvm.org/D20956 llvm-svn: 271874
-
Rafael Espindola authored
llvm-svn: 271859
-
- Jun 05, 2016
-
-
Rafael Espindola authored
llvm-svn: 271854
-
Rafael Espindola authored
With that we can have local symbols with a tls gd index. llvm-svn: 271852
-
Rafael Espindola authored
llvm-svn: 271829
-
Davide Italiano authored
Otherwise it could just use a leftover a.out from some other test. llvm-svn: 271820
-
Rafael Espindola authored
llvm-svn: 271815
-
Rafael Espindola authored
This remove some EM_386 specific code from InputSection.cpp and opens the way for more relaxations. llvm-svn: 271814
-
Rafael Espindola authored
It will also be used for GT_TO_IE relaxations. llvm-svn: 271813
-
Rafael Espindola authored
It will be used for more than just gots. llvm-svn: 271812
-