- Jun 22, 2016
-
-
Rui Ueyama authored
Previously, relocations for MIPS were scanned twice; once in regular scanRelocs() and the other is in scanRelocsForThunks. In the former function, we computed types of relocations and skipped R_THUNK relocations. In the latter function, we computed the same value again and skipped all but R_THUNK relocations. It was wasteful. This patch fixes that. Now R_THUNK relocations are handled in the regular manner. llvm-svn: 273346
-
Rui Ueyama authored
Previously, `Buf + 4` was written twice. llvm-svn: 273337
-
- Jun 21, 2016
-
-
Rafael Espindola authored
This reverts commit r273247. lld should always use the new relocations. llvm-svn: 273266
-
Rui Ueyama authored
This is a follow-up patch to r273218. GNU ld accepts both "--" and "-" for all multi-letter options except "-o". This patch makes lld compatible with that behavior. llvm-svn: 273256
-
Rui Ueyama authored
It is an ABI requirement that the relocation must be used in MOVQ or LEAQ instructions. Previously, we ignored invalid relocations. llvm-svn: 273248
-
James Y Knight authored
This reverts commit r273074. Reverting this too, after revert in llvm in r273245. llvm-svn: 273247
-
Rui Ueyama authored
`Inst` and `Op` variables are removed since they are not always point to an instruction nor an operand. For 5-byte MOV instruction, Op points to an instruction, which is confusing. llvm-svn: 273246
-
Rui Ueyama authored
llvm-svn: 273243
-
Rui Ueyama authored
llvm-svn: 273242
-
Rui Ueyama authored
This patch is to rewrite the function with a table-lookup-ish approach so that it can read as a series of "convert this pattern to this" pattern. llvm-svn: 273238
-
Rui Ueyama authored
GNU ld's manual page says that all options whose names are multiple letters, except those who start with "o", can start either with one or two dashes. llvm-svn: 273218
-
- Jun 20, 2016
-
-
Tom Stellard authored
Reviewers: rafael, ruiu Subscribers: kzhuravl, llvm-commits Differential Revision: http://reviews.llvm.org/D21294 llvm-svn: 273192
-
Davide Italiano authored
Update an existing test to exercise the new functionality, while I'm here. llvm-svn: 273175
-
Rafael Espindola authored
Thanks to Will Dietz for reporting the issue. llvm-svn: 273157
-
George Rimar authored
llvm-svn: 273156
-
George Rimar authored
llvm-svn: 273155
-
George Rimar authored
llvm-svn: 273154
-
George Rimar authored
With fix: -soname flag was not set in testcase. Hash calculated for base def was different on local and bot machines because filename fos used for calculating. Initial commit message: Patch implements basic support of versioned symbols. There is no wildcards patterns matching except local: *; There is no support for hierarchies. There is no support for symbols overrides (@ vs @@ not handled). This patch allows programs that using simple scripts to link and run. Differential revision: http://reviews.llvm.org/D21018 llvm-svn: 273152
-
Simon Atanasyan authored
Now it conforms requirement for std::stable_sort predicates. That resolves build-bot failures on Windows hosts. llvm-svn: 273151
-
George Rimar authored
It broke buildbot: http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-ubuntu-fast llvm-svn: 273146
-
George Rimar authored
Patch implements basic support of versioned symbols. There is no wildcards patterns matching except local: *; There is no support for hierarchies. There is no support for symbols overrides (@ vs @@ not handled). This patch allows programs that using simple scripts to link and run. Differential revision: http://reviews.llvm.org/D21018 llvm-svn: 273143
-
George Rimar authored
llvm-svn: 273142
-
Rui Ueyama authored
llvm-svn: 273140
-
Rui Ueyama authored
llvm-svn: 273134
-
- Jun 19, 2016
-
-
Simon Atanasyan authored
There are two motivations for this patch. The first one is a preparation for support MIPS TLS relocations. It might sound like a joke but for GOT entries related to TLS relocations MIPS ABI uses almost regular approach with creation of dynamic relocations for each GOT enty etc. But we need to separate these 'regular' TLS related entries from MIPS specific local and global parts of GOT. ABI declare simple solution - all TLS related entries allocated at the end of GOT after local/global parts. The second motivation it to support GOT relocations for non-preemptible symbols with addends. If we have more than one GOT relocations against symbol S with different addends we need to create GOT entries for each unique Symbol/Addend pairs. So we store all MIPS GOT entries in separate containers. For non-preemptible symbols we have to maintain two data structures. The first one is MipsLocal vector. Each entry corresponds to the GOT entry from the 'local' part of the GOT contains the symbol's address plus addend. The second one is MipsLocalMap. It is a map from Symbol/Addend pair to the GOT index. Differential Revision: http://reviews.llvm.org/D21297 llvm-svn: 273127
-
- Jun 18, 2016
-
-
Rafael Espindola authored
llvm-svn: 273074
-
- Jun 17, 2016
-
-
Rafael Espindola authored
Make that explicit. llvm-svn: 273013
-
Rafael Espindola authored
llvm-svn: 273006
-
Rafael Espindola authored
llvm-svn: 273004
-
Rafael Espindola authored
Doing that in an anonymous version is a bit silly, but this opens the way for supporting it in general. Since we don't support actual versions, for now we just disable the version script if we detect that it is missing a local. llvm-svn: 273000
-
Rui Ueyama authored
I think it is me who named these variables, but I always find that they are slightly confusing because align is a verb. Adding four letters is worth it. llvm-svn: 272984
-
Rui Ueyama authored
llvm-svn: 272976
-
Rui Ueyama authored
llvm-svn: 272975
-
Rui Ueyama authored
llvm-svn: 272974
-
Rui Ueyama authored
llvm-svn: 272973
-
Rui Ueyama authored
llvm-svn: 272972
-
- Jun 16, 2016
-
-
Rui Ueyama authored
They are equivalent in C (and in C++ in this case). llvm-svn: 272942
-
George Rimar authored
Patch updates the version script parser to parse versioned files. In a simple way, just adding them to VersionScriptGlobals list. Differential revision: http://reviews.llvm.org/D21439 llvm-svn: 272934
-
Rui Ueyama authored
llvm-svn: 272924
-
Rui Ueyama authored
llvm-svn: 272923
-