- 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
-
- Jul 14, 2016
-
-
Peter Collingbourne authored
llvm-svn: 275477
-
Rui Ueyama authored
llvm-svn: 275447
-
Rui Ueyama authored
Differential Revision: http://reviews.llvm.org/D22323 llvm-svn: 275446
-
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
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
-
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
-
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
-
Rui Ueyama authored
llvm-svn: 275001
-
Rui Ueyama authored
llvm-svn: 274998
-
Rui Ueyama authored
Only MipsThunk were using the function, and the way how it wrote thunk contents was different from ARM thunks. This patch makes them consistent. llvm-svn: 274997
-
Rui Ueyama authored
Although they are in the same .cpp file, the way they were written were slightly different, so they looked more different than they were. This patch makes their styles consistent. llvm-svn: 274996
-
Rui Ueyama authored
llvm-svn: 274994
-
Rui Ueyama authored
llvm-svn: 274993
-
- Jul 08, 2016
-
-
Rui Ueyama authored
llvm-svn: 274917
-
Rafael Espindola authored
llvm-svn: 274909
-
Rui Ueyama authored
Symbol's dtors are not called because they are allocated using BumpPtrAllocators. So, members of std::unique_ptr type are not freed when symbols are deallocated. This patch is to allocate Thunks using BumpPtrAllocators. llvm-svn: 274896
-
Peter Smith authored
The TinyPtrVector of const Thunk<ELFT>* in InputSections.h can cause build failures on certain compiler/library combinations when Thunk<ELFT> is not a complete type or is an abstract class. Fixed by making Thunk<ELFT> non Abstract. type or is an abstract class llvm-svn: 274863
-
Peter Smith authored
This seems to be causing a buildbot failure on lld-x86_64-freebsd. Will reproduce locally and fix. llvm-svn: 274841
-
Peter Smith authored
Generalise the Mips LA25 Thunk code and implement ARM and Thumb interworking Thunks. - Introduce a new module Thunks.cpp to store the Target Specific Thunk implementations. - DefinedRegular and Shared have a ThunkData field to record Thunk. - A Target can have more than one type of Thunk. - Support PC-relative calls to Thunks. - Support Thunks to PLT entries. - Existing Mips LA25 Thunk code integrated. - Support for ARMv7A interworking Thunks. Limitations: - Only one Thunk per SymbolBody, this is sufficient for all currently implemented Thunks. - ARM thunks assume presence of V6T2 MOVT and MOVW instructions. Differential revision: http://reviews.llvm.org/D21891 llvm-svn: 274836
-
George Rimar authored
When building executable usually version script is absent. Before this patch error was shown in the case when symbol name contained version and there was no script to match it. Instead of error out patch allows to create new version declaration in this case and use it. gnu linkers do the same. That is PR28359. Differential revision: http://reviews.llvm.org/D21890 llvm-svn: 274828
-