- Nov 21, 2016
-
-
Rui Ueyama authored
LLD's error messages contain line numbers, function names or section names. Currently they are formatter as follows. foo.c (32): symbol 'foo' not found foo.c (function bar): symbol 'foo' not found foo.c (.text+0x1234): symbol 'foo' not found This patch changes them so that they are consistent with Clang's output. foo.c:32: symbol 'foo' not found foo.c:(function bar): symbol 'foo' not found foo.c:(.text+0x1234): symbol 'foo' not found Differential Revision: https://reviews.llvm.org/D26901 llvm-svn: 287537
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D26852 llvm-svn: 287527
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D26854 llvm-svn: 287526
-
Rui Ueyama authored
This patch rearranges code a bit to make it easy to explain. llvm-svn: 287515
-
Rui Ueyama authored
llvm-svn: 287514
-
Rui Ueyama authored
llvm-svn: 287510
-
Rui Ueyama authored
llvm-svn: 287509
-
Rui Ueyama authored
Previously, we set (uintptr_t)-1 to InputSectionBase::OutSec to record that a section has already been set to be assigned to some output section by linker scripts. Later, we restored nullptr to the pointer to use the field for the original purpose. That overloading is not very easy to understand. This patch adds a bit flag for that purpose, so that we don't need to piggyback the flag on an unrelated pointer. llvm-svn: 287508
-
- Nov 20, 2016
-
-
Rui Ueyama authored
llvm-svn: 287481
-
Rui Ueyama authored
Also this patch uses file-scope functions instead of class member function. Now that ICF class is not visible from outside, InputSection class can no longer be "friend" of it. So I removed the friend relation and just make it expose the features to public. llvm-svn: 287480
-
Rui Ueyama authored
We have a .cpp and a .h for parseDynamicList(). This patch moves the function to DriverUtil.cpp. llvm-svn: 287468
-
Rui Ueyama authored
llvm-svn: 287467
-
Rui Ueyama authored
In order to use forEachGroup in the final loop in ICF::run, I changed some function parameter types. llvm-svn: 287466
-
- Nov 19, 2016
-
-
Rui Ueyama authored
llvm-svn: 287460
-
Rui Ueyama authored
llvm-svn: 287457
-
Rui Ueyama authored
llvm-svn: 287456
-
Rui Ueyama authored
This patch also changes its return type to simplify callers. llvm-svn: 287455
-
Rui Ueyama authored
We do not have an option taking more than one arguments, so we can just say "missing argument" instead of "missing argument(s)". llvm-svn: 287454
-
Rui Ueyama authored
llvm-svn: 287452
-
Rui Ueyama authored
llvm-svn: 287451
-
George Rimar authored
GNU linkers disagree here. Though both -version and -v are mentioned in help to print the version information, GNU ld just normally exits, while gold can continue linking. We are compatible with ld.bfd here. This fixes PR31057. Differential revision: https://reviews.llvm.org/D26865 llvm-svn: 287448
-
Rui Ueyama authored
llvm-svn: 287446
-
Rui Ueyama authored
Filler expressions in linker script "=fillexp" are always handled as 32-bit integers. Thus the new type is more natural. llvm-svn: 287445
-
- Nov 18, 2016
-
-
Rui Ueyama authored
llvm-svn: 287372
-
Rafael Espindola authored
It seems a lot simpler to just sort the sections and let the relocations do the rest. llvm-svn: 287365
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D26842 llvm-svn: 287346
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D26834 llvm-svn: 287326
-
Rui Ueyama authored
llvm-svn: 287325
-
Rui Ueyama authored
llvm-svn: 287324
-
Rui Ueyama authored
llvm-svn: 287323
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D26792 llvm-svn: 287322
-
Rui Ueyama authored
readVersionDeclaration was to read anonymous version definition and named version definition. Splitting it into two functions should improve readability as the two cases are different enough. I also changed a few helper functions to return values instead of mutating given references. llvm-svn: 287319
-
Rui Ueyama authored
llvm-svn: 287318
-
Rui Ueyama authored
MergeOutputSection class was a bit hard to use because it provdes a series of finalize functions that have to be called in a right way at a right time. It also intereacted with MergeInputSection, and the logic was somewhat entangled between the two classes. This patch simplifies it by providing only one finalize function. Now, all you have to do is to call MergeOutputSection::finalize when you have added all sections to the output section. Then, it internally merges strings and initliazes StringPiece objects. I think this is much easier to understand. This patch also adds comments. llvm-svn: 287314
-
Davide Italiano authored
llvm-svn: 287297
-
Davide Italiano authored
llvm-svn: 287296
-
Rafael Espindola authored
Since the output has a section table too, it is meaningful to compute the sh_link. In a more practical note, the binutils' strip crashes if sh_link is not set for SHT_ARM_EXIDX. llvm-svn: 287280
-
- Nov 17, 2016
-
-
Simon Atanasyan authored
Also add new comments with MIPS GOT description. llvm-svn: 287264
-
Rafael Espindola authored
I hit an internal linker script that was defining _DYNAMIC instead of letting the linker do it. It turns out that both bfd and gold allow that. This is pretty easy to implement, just make the linker defined symbol weak. This should have no impact in the case where there is no user defined symbol: The visibility is hidden, which causes the output to still be local. llvm-svn: 287260
-
Rui Ueyama authored
Linker script doesn't create a section if it has no content. So the following script doesn't create .norelocs section if it doesn't have any .rel* sections. .norelocs : { *(.rel*) } Later, if you assert that the size of .norelocs is 0, LLD printed out an error message, because it didn't allow calling SIZEOF() on nonexistent sections. This patch allows SIZEOF() on nonexistent sections, so that you can do something like this. ASSERT(SIZEOF(.norelocs), "shouldn't contain .rel sections!") Note that this behavior is compatible with GNU. Differential Revision: https://reviews.llvm.org/D26810 llvm-svn: 287257
-