- Jun 29, 2015
-
-
Rui Ueyama authored
The previous logic to find default entry name or subsystem does not seem correct (i.e. was not compatible with MSVC linker). Previously, default entry name was inferred from CRT functions and user-defined entry functions. Subsystem was inferred from CRT functions. Default entry name and subsystem are now inferred based on the following table. Note that we no longer use CRT functions to infer them. Entry name Subsystem main mainCRTStartup console wmain wmainCRTStartup console WinMain WinMainCRTStartup windows wWinMain wWinMainCRTStartup windows llvm-svn: 240922
-
David Majnemer authored
We had two separate paths for member pointer conversion: one which takes a constant and another which takes an arbitrary value. In the latter case, we are permitted to construct arbitrary instructions. It turns out that the bulk of the member pointer conversion is sharable if we construct an artificial IRBuilder. llvm-svn: 240921
-
NAKAMURA Takumi authored
Revert r240872, "Suppress clang/test/CodeGen/builtins-ppc-p8vector.c for -Asserts for now. Will fix later." This has been fixed since r240912. llvm-svn: 240920
-
Rui Ueyama authored
Usually dllexported symbols are defined with 'extern "C"', so identifying them is easy. We can just do hash table lookup to look up exported symbols. However, C++ non-member functions are also allowed to be exported, and they can be specified with unmangled name. So, if /export:foo is given, we need to look up not only "foo" but also its all mangled names. In MSVC mangling scheme, that means that we need to look up any symbol which starts with "?foo@@Y". In this patch, we scan the entire symbol table to search for a mangled symbol. The symbol table is a DenseMap, and that doesn't support table lookup by string prefix. This is of course very inefficient. But that should be probably OK because the user should always add 'extern "C"' to dllexported symbols. llvm-svn: 240919
-
Rui Ueyama authored
This test was flaky because stdout and stderr can be mixed. llvm-svn: 240918
-
- Jun 28, 2015
-
-
Rui Ueyama authored
llvm-svn: 240917
-
Rui Ueyama authored
llvm-svn: 240916
-
Rui Ueyama authored
This option is sometimes used to create a resource-only DLL that doesn't need any initialization. llvm-svn: 240915
-
Rui Ueyama authored
llvm-svn: 240914
-
Rui Ueyama authored
This option is to ignore remaining undefined symbols and force the linker to create an output file anyways. The existing code assumes that there's no undefined symbol after reportRemainingUndefines(). That assumption is legitimate. I also don't want to mess up the existing code for this minor feature. In order to keep it as is, remaining undefined symbols are replaced with dummy defined symbols. llvm-svn: 240913
-
Jingyue Wu authored
The extra ] causes %{{[0-9]]*}} to match only %<single digit> such as %1. llvm-svn: 240912
-
Matt Arsenault authored
llvm-svn: 240911
-
Jingyue Wu authored
llvm-svn: 240910
-
Birunthan Mohanathas authored
Summary: Depends on D10785. Reviewers: djasper Reviewed By: djasper Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D10786 llvm-svn: 240909
-
Birunthan Mohanathas authored
Summary: Depends on D10784. Reviewers: djasper Reviewed By: djasper Subscribers: dblaikie, klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D10785 llvm-svn: 240908
-
Birunthan Mohanathas authored
Reviewers: djasper Reviewed By: djasper Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D10784 llvm-svn: 240907
-
Asaf Badouh authored
Add vscalef support include encoding and intrinsics review: http://reviews.llvm.org/D10730 llvm-svn: 240906
-
Elena Demikhovsky authored
Added intrinsics. Added encoding and tests. llvm-svn: 240905
-
David Majnemer authored
This fixes PR23963. llvm-svn: 240902
-
Rui Ueyama authored
llvm-svn: 240901
-
Rui Ueyama authored
If LINK is defined and not empty, it's supposed to contain command line options. llvm-svn: 240900
-
Rui Ueyama authored
llvm-svn: 240899
-
Rui Ueyama authored
llvm-svn: 240898
-
Rui Ueyama authored
When comparing two COMDAT sections, we need to take section values and associative sections into account. This patch fixes that bug. It fixes a crash bug of llvm-tblgen when linked with /opt:lldicf. One thing I don't understand yet is that this logic seems to be too strict. MSVC linker is able to create more compact executables (which of course work correctly). With this ICF algorithm, LLD is able to make executable smaller, but the outputs are larger than MSVC's. There must be something I'm missing here. llvm-svn: 240897
-
Nico Weber authored
Format @autoreleasepool properly for the Attach brace style by recognizing @autoreleasepool as a block introducer. Patch from Strager Neds! http://reviews.llvm.org/D10372 llvm-svn: 240896
-
Chaoren Lin authored
Reviewers: clayborg, vharron Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10787 llvm-svn: 240895
-
Chaoren Lin authored
Reviewers: vharron Reviewed By: vharron Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D10778 llvm-svn: 240894
-
- Jun 27, 2015
-
-
Adrian Prantl authored
This reverts commit 240890. Breaking the gdb buildbot. llvm-svn: 240893
-
Benjamin Kramer authored
Should fix running them on windows. llvm-svn: 240892
-
Benjamin Kramer authored
[SDAG] Now that we have a way to communicate the exact bit on sdiv use it to simplify sdiv by a constant. We had a hack in SDAGBuilder in place to work around this but now we can avoid that. Call BuildExactSDIV from BuildSDIV so DAGCombiner can perform this trick automatically. The added check in DAGCombiner is necessary to prevent exact sdiv by pow2 from regressing as the target-specific pow2 lowering is not aware of exact bits yet. This is mostly covered by existing tests. One side effect is that we get the better lowering for exact vector sdivs now too :) llvm-svn: 240891
-
Adrian Prantl authored
the DW_AT_bit_offset computation, the byte offset is in fact also endian-dependent as it needs to point to the storage unit containing the most-significant bit of the the bitfield. I'm so looking forward to emitting the endian-agnostic DWARF 3 version instead. llvm-svn: 240890
-
Davide Italiano authored
PR: PR23931 Differential Revision: http://reviews.llvm.org/D10752 Reviewed by: rsmith llvm-svn: 240889
-
Alex Denisov authored
llvm-svn: 240888
-
Daniel Sanders authored
llvm-svn: 240887
-
Keno Fischer authored
The Makefile build was broken without this. llvm-svn: 240886
-
Daniel Sanders authored
llvm-svn: 240885
-
Daniel Sanders authored
Most are named *-el.txt. Renamed the three that were *-le.txt llvm-svn: 240884
-
Daniel Sanders authored
Summary: Previously it (incorrectly) used GPR's. Patch by Simon Dardis. A couple small corrections by myself. Reviewers: dsanders Reviewed By: dsanders Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D10567 llvm-svn: 240883
-
Peter Zotov authored
ctypes 0.3 and earlier contains an interface-definig bug: its ptr_of_raw_address accepts Int64 and not Nativeint. ctypes 0.4 was not released during the 3.6 cycle, and because of that, LLVM 3.6 was released with ctypes 0.3 as a dependency, which now breaks the build on modern ctypes. Unbreak. llvm-svn: 240882
-
Jeroen Ketema authored
llvm-svn: 240881
-