- Aug 30, 2016
-
-
Davide Italiano authored
Differential Revision: https://reviews.llvm.org/D24037 llvm-svn: 280144
-
George Rimar authored
ADDR(section) Return the absolute address (the VMA) of the named section. Used in the wild, eg.: https://searchcode.com/file/53617342/arch/x86/kernel/vmlinux.lds.S Differential revision: https://reviews.llvm.org/D23913 llvm-svn: 280070
-
George Rimar authored
FreeBSD/mips script has non-wildcard filename specifications: .text : { start.o(.text*) Patch adds support for that, this is PR29115. Differential revision: https://reviews.llvm.org/D23839 llvm-svn: 280069
-
George Rimar authored
This addresses forgotten review comment for r280067: "[ELF] - Versionscript: support wildcards for extern "c++" tag." llvm-svn: 280068
-
George Rimar authored
Previously for extern keyword only names in quotes (exact match) was supported. Patch adds support for wildcards, so next scripts can be handled properly: LIBSAMPLE_1.0 { global: extern "C++" { foo*; }; }; Differential revision: https://reviews.llvm.org/D23794 llvm-svn: 280067
-
George Rimar authored
llvm-svn: 280066
-
Rui Ueyama authored
GNU gold handles output section fillers as 32-bit values. This patch makes LLD compatible with that behavior. Differential revision: https://reviews.llvm.org/D23181 llvm-svn: 280018
-
- Aug 29, 2016
-
-
Saleem Abdulrasool authored
This disambiguates `llvm::make_unqiue` and `std::make_unique` for the Windows buildbots. llvm-svn: 280014
-
Saleem Abdulrasool authored
The IMAGE_FILE_HEADER structure contains a (RVA, size) to an array of COFF_DEBUG_DIRECTORY records. Each one of these records contains an RVA to a OMF Debug Directory. These OMF debug directories are derived into newer types such as PDB70, PDB20, etc. This constructs a PDB70 structure which will allow us to associate a GUID with a build to actually tie debug information. llvm-svn: 280012
-
- Aug 26, 2016
-
-
Eugene Leviant authored
Differential revision: https://reviews.llvm.org/D23349 llvm-svn: 279810
-
Eugene Leviant authored
llvm-svn: 279809
-
- Aug 25, 2016
-
-
Hemant Kulkarni authored
llvm-svn: 279775
-
George Rimar authored
llvm-svn: 279729
-
George Rimar authored
-oformat output-format `-oformat' option can be used to specify the binary format for the output object file. Patch implements binary format output type. Differential revision: https://reviews.llvm.org/D23769 llvm-svn: 279726
-
- Aug 24, 2016
-
-
Nico Weber authored
llvm-svn: 279638
-
Peter Smith authored
The ARM Exception handling ABI requires that all ARM exception index table sections have a prefix of .ARM.exidx and are combined into a single contiguous block either in their own output section or as part of another output section. In general clang will output a single .ARM.exidx section per object, but will use .ARM.exidx.<section name> when -ffunction-sections is used. This change canonicalizes the names of sections with the .ARM.exidx prefix to just .ARM.exidx, which ensures that there is only a single output section. Differential Revision: https://reviews.llvm.org/D23775 llvm-svn: 279617
-
- Aug 22, 2016
-
-
Rafael Espindola authored
llvm-svn: 279480
-
Petr Hosek authored
Not only symbols (like sections) have names, in case where we fail to create relocation against such symbol, we should not print out an empty string, instead we should print a generic message. Differential Revision: https://reviews.llvm.org/D23731 llvm-svn: 279459
-
Duncan P. N. Exon Smith authored
llvm-svn: 279458
-
Petr Hosek authored
When performing ICF, we have to respect the alignment requirement of each section within each group. Differential Revision: https://reviews.llvm.org/D23732 llvm-svn: 279456
-
Petr Hosek authored
This symbol can be used by the program to examine its own headers. Differential Revision: https://reviews.llvm.org/D23750 llvm-svn: 279452
-
Rui Ueyama authored
llvm-svn: 279415
-
Rui Ueyama authored
Summary: We previously added these output sections to segments just by type. Therefore, if there's a PHDRS command like this PHDRS { headers PT_PHDR PHDRS; interp PT_INTERP; } SECTIONS { . = SIZEOF_HEADERS; .interp : { *(.interp) } :text } then .interp was added to "interp" segment even though the linker is not instructed to do so by SECTIONS command. This patch removes the default behavior to simplify. Differential Revision: https://reviews.llvm.org/D23702 llvm-svn: 279414
-
Saleem Abdulrasool authored
Create a local variable for the rdata section. NFC. llvm-svn: 279407
-
- Aug 20, 2016
-
-
Ed Schouten authored
TLS on i386 in non-PIE/PIC code seems broken right now, because we don't properly add the addend encoded in the instruction to the resulting offset when processing R_386_TLS_LE relocations. Extend one of the existing tests for TLS on i686 to use an addend. PR: https://llvm.org/bugs/show_bug.cgi?id=29068 Reviewed by: ruiu Differential Revision: https://reviews.llvm.org/D23741 llvm-svn: 279368
-
- Aug 19, 2016
-
-
George Rimar authored
This is fix for PR28976. Problem was that in scanRelocs, we computed relocation offset too early for case when linkerscript was used. Patch fixes the issue delaying the calculation. Differential revision: https://reviews.llvm.org/D23655 llvm-svn: 279264
-
George Rimar authored
This patch is opposite to D19024, which made this symbols to be hidden by default. Unfortunately FreeBSD loader wants to see start_set_modmetadata_set/stop_set_modmetadata_set in the dynamic symbol table. They were not placed there because had hidden visibility. Patch makes them to have default visibility again. Differential revision: https://reviews.llvm.org/D23552 llvm-svn: 279262
-
George Rimar authored
Previously DT_PREINIT_ARRAYSZ, DT_INIT_ARRAYSZ and DT_FINI_ARRAYSZ were set to zero when lincerscript was used becase sections sizes are calculated later that were taken. Patch delays values calculation for these entries. Testcase is provided. Differential revision: https://reviews.llvm.org/D23663 llvm-svn: 279258
-
George Rimar authored
You can force input section alignment within an output section by using SUBALIGN. The value specified overrides any alignment given by input sections, whether larger or smaller. SUBALIGN is used in many projects in the wild. Differential revision: https://reviews.llvm.org/D23063 llvm-svn: 279256
-
George Rimar authored
llvm-svn: 279236
-
George Rimar authored
Spec says "A hidden symbol contained in a relocatable object must be either removed or converted to STB_LOCAL binding by the link-editor when the relocatable object is included in an executable file or shared object". But we previously converted symbols to STB_LOCAL even when -r was specified. Broken binary was produced, this is PR28967, patch fixes the issue. Differential revision: https://reviews.llvm.org/D23514 llvm-svn: 279220
-
- Aug 18, 2016
-
-
Petr Hosek authored
We should always include symbol name when reporting relocations error to simplify debugging of these issues. Without symbol names users have to manually investigate which of the libraries contain invalid relocations which can be cumbersome when linking multiple libraries. Differential Revision: https://reviews.llvm.org/D23690 llvm-svn: 279162
-
Simon Atanasyan authored
llvm-svn: 279119
-
Simon Atanasyan authored
llvm-svn: 279118
-
George Rimar authored
llvm-svn: 279060
-
George Rimar authored
llvm-svn: 279059
-
Ed Maste authored
Differential Revision: https://reviews.llvm.org/D23124 llvm-svn: 279058
-
Eugene Leviant authored
llvm-svn: 279036
-
Petr Hosek authored
We only support assignments inside SECTIONS, but this does not match the behavior of GNU linker which also allows them outside SECTIONS. The only restriction on assignments outside SECTIONS is that they cannot reference . (they have to be absolute expressions). Differential Revision: https://reviews.llvm.org/D23598 llvm-svn: 279033
-
Petr Hosek authored
This option can be used to specify the stack size of the PT_GNU_STACK segment. Differential Revision: https://reviews.llvm.org/D23538 llvm-svn: 279013
-