- Jul 15, 2016
-
-
Rui Ueyama authored
This patch corresponds to r275511 for COFF. llvm-svn: 275521
-
Rui Ueyama authored
Previously, it checked for the EC parameter and set HasError only when there was an error. But in most places we called error only when error had occurred, so this behavior was confusing. llvm-svn: 275517
-
Rui Ueyama authored
llvm-svn: 275513
-
Rui Ueyama authored
llvm-svn: 275512
-
Rui Ueyama authored
Previously, one of two check functions didn't return a value. It was confusing. This patch makes both functions return values. llvm-svn: 275511
-
Rui Ueyama authored
This change makes the control flow more explicit. llvm-svn: 275504
-
Rui Ueyama authored
llvm-svn: 275501
-
Rui Ueyama authored
This new name is also consistent with ELF. llvm-svn: 275500
-
Rui Ueyama authored
The new name is consistent with ELF. llvm-svn: 275499
-
- Jul 14, 2016
-
-
Peter Collingbourne authored
llvm-svn: 275480
-
Peter Collingbourne authored
llvm-svn: 275477
-
Rui Ueyama authored
Dispatching based on argv[0] seems to be more convenient for users than dispatching based on -flavor option. Currently, when a user invoke LLD as "lld", we recommend them pass -flavor option. This patch changes the message so that we recommend use ld.lld, ld or lld-link instead. Differential Revision: http://reviews.llvm.org/D22321 llvm-svn: 275448
-
Rui Ueyama authored
llvm-svn: 275447
-
Rui Ueyama authored
Differential Revision: http://reviews.llvm.org/D22323 llvm-svn: 275446
-
Benjamin Kramer authored
llvm-svn: 275409
-
Eugene Leviant authored
llvm-svn: 275385
-
Eugene Leviant authored
llvm-svn: 275383
-
Rui Ueyama authored
ELF spec says that alignment of 0 is equivalent to 1. Previously, we arbitrary set to 0 or 1, but always setting to 1 makes our program simpler. llvm-svn: 275374
-
Rui Ueyama authored
r275301 made .got section be aligned on Target->GotEntrySize, so GotEntrySize must have been initialized. We didn't initialize it for AMDGPU. llvm-svn: 275373
-
Lang Hames authored
llvm-svn: 275362
-
- Jul 13, 2016
-
-
Rui Ueyama authored
llvm-svn: 275305
-
Rui Ueyama authored
Patch by H.J Lu. For x86-64 psABI, the entry size of .got and .got.plt sections is 8 bytes for both LP64 and ILP32. Add GotEntrySize and GotPltEntrySize to ELF target instead of using size of ELFT::uint. Now we can generate a simple working x32 executable. Differential Revision: http://reviews.llvm.org/D22288 llvm-svn: 275301
-
Rui Ueyama authored
Config members are named after corresponding command line options. This patch renames VAStart ImageBase so that they are in line with --image-base. Differential Revision: http://reviews.llvm.org/D22277 llvm-svn: 275298
-
Petr Hosek authored
This is to follow the convention of naming the test after the name of the option. Differential Revision: http://reviews.llvm.org/D22276 llvm-svn: 275295
-
George Rimar authored
Minor cleanup. Currently it looks wierd that having method addPredefinedSections() we still add 2 sections outside it without real reasons. Patch fixes that. Differential revision: http://reviews.llvm.org/D19981 llvm-svn: 275269
-
George Rimar authored
It broke build bots: http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/8204 http://lab.llvm.org:8011/builders/lld-x86_64-freebsd/builds/19432 llvm-svn: 275258
-
George Rimar authored
Patch implements 'extern' version script tag. Currently only values in quotes(") are supported. Matching of externs is performed in the same pass as exact match of globals. Differential revision: http://reviews.llvm.org/D21930 llvm-svn: 275257
-
Saleem Abdulrasool authored
lld currently relies on lib.exe in order to generate an empty import library. The "empty" import library consists of 5 members: - first linker member - second linker member - Import Descriptor - NULL Import Descriptor - NULl Thunk The first two entries (first and second linker members) are string tables which are never updated. Therefore, they may as well as not be present. A subsequent change to add that is probably warranted. However, this does not prevent the use of the linker. The Import Descriptor is the content which is most important. It provides an Import Name Table entry for the library (as specified by the LIBRARY directive in the DEF file). Additionally, it contains undefined references to the NULL Import Descriptor and the library NULL Thunk Data. This ensures that the linker will pull in the subsequent objects from the import library for the link. The Import Descriptor has a single symbol (__IMPORT_DESCRIPTOR_<Library>) which contains 3 relocations, one to the INT (Import Name Table) entry, one to the ILT (Import Lookup Table) entry, and one to the IAT (Import Address Table) entry. The NULL Import Descriptor is the last import descriptor and terminates the import descriptor array. It contains a single symbol (__NULL_IMPORT_DESCRIPTOR). The NULL Thunk contains a single symbol (\x7f<Library>_NULL_THUNK_DATA) and provides the terminator for the ILT and IAT. These files are currently constructed manually following the example of the Short Import Library format. This is arguably less than ideal, and it may be possible to use MCAssembler and feed it the fragments to construct the object. The major difference between the LIB (LINK) generated objects and the ones generated here is that they are all one section shorter (.debug$S) as they do not contain the debug information and one symbol shorter (@comp.id) as they do not contain the RICH signature. Move the logic related to the librarian into a new source file (Librarian.cpp). llvm-svn: 275242
-
Rui Ueyama authored
Patch by H.J. Lu. This patch adds -m elf32_x86_64 to lld. But it doesn't generate working x32 binaries. Differential Revision: http://reviews.llvm.org/D22268 llvm-svn: 275236
-
Rui Ueyama authored
Patch by H.J. Lu. As x86-64 psABI supports both LP64 and ILP32, this patch adds <ELFT> template to X86_64TargetInfo. Differential Revision: http://reviews.llvm.org/D22287 llvm-svn: 275235
-
Rui Ueyama authored
Config->Pic is true if (Config->Pie || Config->Shared) is true, so this extra check was redundant. llvm-svn: 275234
-
- Jul 12, 2016
-
-
Petr Hosek authored
The -image-base option allows for overriding the base address. Differential Revision: http://reviews.llvm.org/D22116 llvm-svn: 275206
-
George Rimar authored
With fix: * fixed compilation error under linux: template <class ELFT> class OutputSectionFactory { ... typedef typename SectionKey<ELFT::Is64Bits> Key; changed to: template <class ELFT> class OutputSectionFactory { ... typedef typename elf::SectionKey<ELFT::Is64Bits> Key; llvm-svn: 275166
-
George Rimar authored
It broke build bot: http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-debian-fast/builds/39652 llvm-svn: 275163
-
George Rimar authored
Creating sections on linkerscript side requires some methods that can be reused if are exported from writer. Patch implements that change. Differential revision: http://reviews.llvm.org/D20104 llvm-svn: 275162
-
George Rimar authored
Since linkerscript should create sections by itself (if SECTIONS command is present), then we might want to reuse the OutputSectionFactory (D19976 already do that now), so this patch moves it out from writer cpp file for that purpose. Differential revision: http://reviews.llvm.org/D19977 llvm-svn: 275161
-
George Rimar authored
That helps to avoid expressions like I + 2 in code that assigns version number to symbols. Change was suggested by Rui Ueyama. Differential revision: http://reviews.llvm.org/D22086 llvm-svn: 275159
-
Eugene Leviant authored
llvm-svn: 275158
-
Rui Ueyama authored
llvm-svn: 275153
-
- Jul 10, 2016
-
-
Rui Ueyama authored
llvm-svn: 275003
-