- Mar 18, 2017
-
-
Rui Ueyama authored
isLE() return true if the target is little-endian. wordsize() returns 8 for 64-bit and 4 for 32-bit. llvm-svn: 298167
-
- Mar 17, 2017
-
-
Peter Collingbourne authored
ELF: Change check(Expected<T>, const Twine &) to call toString instead of converting to an error code. llvm-svn: 298155
-
Evgeniy Stepanov authored
__start_xxx symbol keeps section xxx alive only if it is not SHF_LINK_ORDER. Such sections can be used for user metadata, when __start_xxx is used to iterate over section contents at runtime, and the liveness is determined solely by the linked (associated) section. This was earlier implemented in r294592, and broken in r296723. Differential Revision: https://reviews.llvm.org/D30964 llvm-svn: 298154
-
Bob Haarman authored
recommend using llvm-ar when finding undefined references and empty archives Summary: When we perform LTO builds with a version of ar that does not understand LLVM bitcode objects, we end up with undefined references, because our archive files do not list the bitcode symbols in their indices. The error messages do not make it clear what the real problem is. This change adds a note that points out the likely problem and solution. It is similar in spirit to r282633, but aims to avoid false positives by only triggering when we see both undefined references and archives without symbols in their indices. Fixes PR32281. Reviewers: davide, ruiu, tejohnson Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D31011 llvm-svn: 298124
-
George Rimar authored
To be consistent with other code, addresses post commit review comments. llvm-svn: 298102
-
Rafael Espindola authored
Handling & in particular is probably important because of its use in aligning addresses. llvm-svn: 298096
-
Rafael Espindola authored
Since there is no way to produce the correct answer at runtime, it is probably better to just err. llvm-svn: 298094
-
Simon Atanasyan authored
Do not take in account the `Live` flag while collecting .reginfo, .MIPS.options, and .MIPS.abiflags input sections to produce corresponding output sections. These sections have information purpose and should be always produced per ABI requirements. llvm-svn: 298093
-
George Rimar authored
llvm-svn: 298091
-
Rafael Espindola authored
llvm-svn: 298088
-
George Rimar authored
llvm-svn: 298087
-
George Rimar authored
With fix of next warning: Writer.cpp:361:3: warning: suggest parentheses around assignment used as truth value [-Wparentheses] Original commit message: Patch reuses BssSection section to simplify creation of COMMON section. Differential revision: https://reviews.llvm.org/D30690 llvm-svn: 298086
-
George Rimar authored
It segfaults. llvm-svn: 298084
-
Rafael Espindola authored
llvm-svn: 298083
-
George Rimar authored
Writer.cpp:361:3: warning: suggest parentheses around assignment used as truth value [-Wparentheses] llvm-svn: 298082
-
Rafael Espindola authored
This fixes pr32031 by representing the expressions results as a SectionBase and offset. This allows us to use an input section directly instead of getting lost trying to compute an offset in an outputsection when not all the information is available yet. This also creates a struct to represent the *value* of and expression, allowing the expression itself to be a simple typedef. I think this is easier to read and will make it easier to extend the expression computation to handle more complicated cases. llvm-svn: 298079
-
George Rimar authored
Patch reuses BssSection section to simplify creation of COMMON section. Differential revision: https://reviews.llvm.org/D30690 llvm-svn: 298078
-
Rafael Espindola authored
llvm-svn: 298076
-
George Rimar authored
llvm-svn: 298072
-
George Rimar authored
llvm-svn: 298071
-
George Rimar authored
Error was: Relocations.cpp:792:38: error: expected primary-expression before ‘>’ token In<ELFT>::Iplt->addEntry<ELFT>(Body); llvm-svn: 298070
-
George Rimar authored
Alternative approach can be remove templated method either, like D31028 do. llvm-svn: 298065
-
George Rimar authored
It failed for me under windows, touch reported invalid date format. Seems related to 12h/24h format, though I don't understant why 197001010200 does not work, but 197001010300 works, I see no logic here. Changed to 197001011200. llvm-svn: 298064
-
George Rimar authored
Was fixed, details on review page. Original commit message: That removes CopyRelSection class completely, making Bss/BssRelRo to be just regular synthetics. This is splitted from D30541 and polished. Difference from D30541 that all logic of SharedSymbol converting to DefinedRegular was removed for now and probably will be posted as separate patch. Differential revision: https://reviews.llvm.org/D30892 llvm-svn: 298062
-
Andre Vieira authored
Patch to fix lld tests after my llvm-objdump patch to fix branch labels for Thumb targets. Reviewed by: emaste Differential Revision: https://reviews.llvm.org/D30986 llvm-svn: 298055
-
Peter Collingbourne authored
llvm-svn: 298038
-
Peter Collingbourne authored
This patch causes us to use pruneCache() to prune the ThinLTO cache after completing LTO. A new flag --thinlto-cache-policy allows users to configure the policy. Differential Revision: https://reviews.llvm.org/D31021 llvm-svn: 298036
-
Peter Collingbourne authored
llvm-svn: 298035
-
Peter Collingbourne authored
The MSVC linker doesn't support them. Differential Revision: https://reviews.llvm.org/D31067 llvm-svn: 298034
-
Peter Collingbourne authored
The Archive object owns the memory buffers of any thin archive members, so we need to make sure the object is still in scope when we access archive members. Differential Revision: https://reviews.llvm.org/D31066 llvm-svn: 298033
-
Peter Collingbourne authored
After the call to sys::fs::exists succeeds, indicating a cache hit, we call AddFile and the client will open the file using the supplied path. If the client is using cache pruning, there is a potential race between the pruner and the client. To avoid this, change the caching API so that it provides a MemoryBuffer to the client, and have clients use that MemoryBuffer where possible. This scheme won't work with the gold plugin because the plugin API expects a file path. So we have the gold plugin use the buffer identifier as a path and live with the race for now. (Note that the gold plugin isn't actually affected by the problem at the moment because it doesn't support cache pruning.) This effectively reverts r279883 modulo the change to use the existing path in the gold plugin. Differential Revision: https://reviews.llvm.org/D31063 llvm-svn: 298020
-
- Mar 16, 2017
-
-
Rui Ueyama authored
This reverts commit r297850 because this change was made based on a miscommunication. llvm-svn: 298001
-
Rui Ueyama authored
The MSVC linker doesn't like archive files containing non-native object files. When we are doing an LTO build, we may create archive files containing both LLVM bitcode files and native object files. For example, if a project contains assembly files and C++ files, we create native object files for the assembly files and LLVM bitcode files for the C++ files. With the /msvclto option, LLD passes archive files to the MSVC linker. Previously, we didn't pass archive files if they contain at least one bitcode files. That wasn't correct because the native object files that weren't passed to the MSVC linker may be needed to complete linking. In this patch, we create new temporary archive files to strip bitcode files. Differential Revision: https://reviews.llvm.org/D31053 llvm-svn: 297997
-
George Rimar authored
Addresses post commit review comment. llvm-svn: 297953
-
George Rimar authored
That opens road to detemplate PltSection<ELFT>, what allows then to detemplate all methods of SymbolBody. llvm-svn: 297950
-
George Rimar authored
Excessive typename keyword. llvm-svn: 297949
-
George Rimar authored
This test would have been broken if we convert SharedSymbols to DefinerRegular without saving the symbol version information when creating .bss/.bss.rel.ro sections for copy relocations. Relative to D30541, PR32167 llvm-svn: 297948
-
George Rimar authored
That allows to detemplate getGotPltOffset/getGotPltVA methods of SymbolBody and also will help to detemplate DynamicReloc itself later. llvm-svn: 297946
-
George Rimar authored
llvm-svn: 297944
-
George Rimar authored
llvm-svn: 297943
-