- Feb 10, 2015
-
-
Andrey Churbanov authored
llvm-svn: 228721
-
Dan Albert authored
Since we've added a new header to libc++abi (__cxxabi_config.h), we now have a case where we might not always find all the ABI headers: building libc++ against the system's libc++abi on Darwin. Since this isn't actually a fatal error, degrade it to a warning. llvm-svn: 228720
-
Hal Finkel authored
Some old assembly code uses the cntlz alias for cntlzw, binutils supports this, and we should too. Fixes PR22519. llvm-svn: 228719
-
Andrey Churbanov authored
llvm-svn: 228718
-
Rui Ueyama authored
llvm-svn: 228717
-
Chaoren Lin authored
llvm-svn: 228716
-
Chaoren Lin authored
llvm-svn: 228715
-
Hafiz Abid Qadeer authored
This file MICmnStreamStdinLinux.cpp is wrongly added in the windows build. It has no use there. CMakeList.txt for lldb-mi needs to be re-factored to include the right file for each build. This is quick fix to un-break the build. llvm-svn: 228714
-
Michael Zolotukhin authored
THe heuristics were added in r228265 and r228434. llvm-svn: 228713
-
Eric Fiselier authored
llvm-svn: 228712
-
Eric Fiselier authored
llvm-svn: 228711
-
Sylvestre Ledru authored
Summary: I don't know if there is a better way for the change in source/Host/freebsd/ThisThread.cpp Reviewers: emaste Subscribers: hansw, emaste, lldb-commits Differential Revision: http://reviews.llvm.org/D7441 llvm-svn: 228710
-
Hafiz Abid Qadeer authored
Summary: One of the problem is reported here. http://llvm.org/bugs/show_bug.cgi?id=22411 A fix was committed for this problem that works only for OSX. This revision extends that fix to other system. The select system call has some limitation with multi-threaded application which have been addresses here. LLDB-mi exits if quit command is given but needs an extra retur if -gdb-exit is given. That issue has also been addressed. Reviewers: ki.stfu, emaste Reviewed By: ki.stfu Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D7529 llvm-svn: 228709
-
Colin LeMahieu authored
[Hexagon] Adding vector load with post-increment instructions. Adding decoder function for 64bit control register class. llvm-svn: 228708
-
Greg Clayton authored
The problem occurred when we had incorrect address ranges in the debug map that included the padding between functions causing the end address of a line table entry to fall into an inlinked (next function) address range. <rdar://problem/19721144> llvm-svn: 228707
-
Eric Fiselier authored
llvm-svn: 228706
-
Eric Fiselier authored
Summary: The bug can be found here: http://llvm.org/bugs/show_bug.cgi?id=22468 `__invoke_void_return_wrapper` is needed to properly handle calling a function that returns a value but where the std::function return type is void. Without this '-Wsystem-headers' will cause `function::operator()(...)` to not compile. Reviewers: eugenis, K-ballo, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D7444 llvm-svn: 228705
-
Eric Fiselier authored
Summary: The requirement on the `Size` type passed to *_n algorithms is that it is convertible to an integral type. This means we can't use a variable of type `Size` directly. Instead we need to convert it to an integral type first. The problem is finding out what integral type to convert it to. `__convert_to_integral` figures out what integral type to convert it to and performs the conversion, It also promotes the resulting integral type so that it is at least as big as an integer. `__convert_to_integral` also has a special case for converting enums. This should only work on non-scoped enumerations because it does not apply an explicit conversion from the enum to its underlying type. Reviewers: chandlerc, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D7449 llvm-svn: 228704
-
Zoran Jovanovic authored
Differential Revision: http://reviews.llvm.org/D7465 llvm-svn: 228703
-
Timur Iskhodzhanov authored
llvm-svn: 228702
-
Timur Iskhodzhanov authored
This should fix symbolization in those cases when the .exe file is moved together with the .pdb llvm-svn: 228701
-
Jonas Paulsson authored
llvm-svn: 228700
-
Paul Robinson authored
Works around a Visual C++ issue. Patch by Douglas Yung! llvm-svn: 228699
-
Eric Fiselier authored
llvm-svn: 228698
-
Bradley Smith authored
llvm-svn: 228697
-
Bradley Smith authored
llvm-svn: 228696
-
John Thompson authored
llvm-svn: 228695
-
Samuel Benzaquen authored
Summary: Add translationUnitDecl matcher. Reviewers: alexfh Subscribers: klimek, cfe-commits Differential Revision: http://reviews.llvm.org/D7512 llvm-svn: 228694
-
John Thompson authored
llvm-svn: 228693
-
John Thompson authored
llvm-svn: 228692
-
Aaron Ballman authored
On Windows, we now use RaiseException to generate the kind of trap we require (one which calls our vectored exception handler), and fall back to using a volatile write to simulate a trap elsewhere. llvm-svn: 228691
-
Renato Golin authored
Patch by Vinicius Tinti. llvm-svn: 228690
-
John Thompson authored
llvm-svn: 228689
-
Simon Pilgrim authored
Added most of the missing vector folding patterns for AVX2 (as well as fixing the vpermpd and verpmq patterns) Differential Revision: http://reviews.llvm.org/D7492 llvm-svn: 228688
-
Jozef Kolek authored
Differential Revision: http://reviews.llvm.org/D7443 llvm-svn: 228687
-
Jonas Paulsson authored
Background: When handling underlying objects for a store, the vector of previous mem uses, mapped to the same Value, is afterwards cleared (regardless of ThisMayAlias). This means that during handling of the next store using the same Value, adjustChainDeps() must be called, otherwise a dependency might be missed. For example, three spill/reload (NonAliasing) memory accesses using the same Value 'a', with different offsets: SU(2): store @a SU(1): store @a, Offset:1 SU(0): load @a In this case we have: * SU(1) does not need a dep against SU(0). Therefore,SU(0) ends up in RejectMemNodes and is removed from the mem-uses list (AliasMemUses or NonAliasMemUses), as this list is cleared. * SU(2) needs a dep against SU(0). Therefore, SU(2) must check RejectMemNodes by calling adjustChainDeps(). Previously, for store SUs, adjustChainDeps() was only called if MayAlias was true, missing the S(2) to S(0) dependency in the case above. The fix is to always call adjustChainDeps(), regardless of MayAlias, since this applies both for AliasMemUses and NonAliasMemUses. No testcase found for any in-tree target. llvm-svn: 228686
-
Simon Pilgrim authored
This patch adds the complete AMD Bulldozer XOP instruction set to the memory folding pattern tables for stack folding, etc. Note: Many of the XOP instructions have multiple table entries as it can fold loads from different sources. Differential Revision: http://reviews.llvm.org/D7484 llvm-svn: 228685
-
Jozef Kolek authored
Differential Revision: http://reviews.llvm.org/D7436 llvm-svn: 228683
-
Andrea Di Biagio authored
This patch teaches X86FastISel how to select AVX instructions for scalar float/double convert operations. Before this patch, X86FastISel always selected legacy SSE instructions for FPExt (from float to double) and FPTrunc (from double to float). For example: \code define double @foo(float %f) { %conv = fpext float %f to double ret double %conv } \end code Before (with -mattr=+avx -fast-isel) X86FastIsel selected a CVTSS2SDrr which is legacy SSE: cvtss2sd %xmm0, %xmm0 With this patch, X86FastIsel selects a VCVTSS2SDrr instead: vcvtss2sd %xmm0, %xmm0, %xmm0 Added test fast-isel-fptrunc-fpext.ll to check both the register-register and the register-memory float/double conversion variants. Differential Revision: http://reviews.llvm.org/D7438 llvm-svn: 228682
-
Ilia K authored
Summary: Add thread-id field in *stopped notification (MI) + tests All tests pass on OS X Reviewers: zturner, clayborg, abidh Reviewed By: clayborg Subscribers: lldb-commits, zturner, clayborg, abidh Differential Revision: http://reviews.llvm.org/D7501 llvm-svn: 228681
-