- Mar 04, 2014
-
-
NAKAMURA Takumi authored
llvm-svn: 202857
-
Tobias Grosser authored
llvm-svn: 202856
-
Tobias Grosser authored
We currently need to always name instructions, as the polly test suite currently matches for certain names. We should improve the test suite at some point. This fixes 'make check-polly' in NDEBUG builds. llvm-svn: 202855
-
Tobias Grosser authored
For now we only mark innermost loops for the loop vectorizer. We could later also mark not-innermost loops to enable the introduction of openmp parallelism. llvm-svn: 202854
-
Tobias Grosser authored
PollyIRBuilder is currently just a typedef to IRBuilder<>. Consequently, this change should not affect behavior. In subsequent patches we will extend its functionality to emit loop.parallel metadata. llvm-svn: 202853
-
Dmitry Vyukov authored
llvm-svn: 202852
-
Dmitry Vyukov authored
everything except linux does not need this hackery with pthread_cond llvm-svn: 202850
-
Alexey Samsonov authored
llvm-svn: 202849
-
Daniel Sanders authored
Summary: Previously, attempting to extract lanes 2 and 3 would actually extract lane 1. The MSA CodeGen tests only covered lanes 0 and 1. Differential Revision: http://llvm-reviews.chandlerc.com/D2935 llvm-svn: 202848
-
Alexey Samsonov authored
llvm-svn: 202847
-
Sergey Matveev authored
llvm-svn: 202846
-
Alexey Samsonov authored
Summary: We don't need to do any work in this case - just take the current PC and caller PC. Reviewers: eugenis, ygribov Reviewed By: eugenis CC: llvm-commits Differential Revision: http://llvm-reviews.chandlerc.com/D2936 llvm-svn: 202845
-
Chandler Carruth authored
now. ;] Tested on both a static and shared CMake build. Hopefully the bots will agree. llvm-svn: 202844
-
Dmitry Vyukov authored
it's LD_PRELOAD-able llvm-svn: 202843
-
Chandler Carruth authored
source file had already been moved. Also move the unittest into the IR unittest library. This may seem an odd thing to put in the IR library but we only really use this with instructions and it needs the LLVM context to work, so it is intrinsically tied to the IR library. llvm-svn: 202842
-
Sergey Matveev authored
llvm-svn: 202841
-
Chandler Carruth authored
llvm-svn: 202840
-
Chandler Carruth authored
PassInfo structures of the legacy pass manager. Also give it the Legacy prefix as it is not a particularly widely used header. llvm-svn: 202839
-
Chandler Carruth authored
a bit surprising, as the class is almost entirely abstracted away from any particular IR, however it encodes the comparsion predicates which mutate ranges as ICmp predicate codes. This is reasonable as they're used for both instructions and constants. Thus, it belongs in the IR library with instructions and constants. llvm-svn: 202838
-
Alexey Samsonov authored
llvm-svn: 202837
-
Chandler Carruth authored
necessary, but is no longer. llvm-svn: 202836
-
Chandler Carruth authored
hardcoded to use IR BasicBlocks. llvm-svn: 202835
-
Chandler Carruth authored
instructions. llvm-svn: 202834
-
Chandler Carruth authored
reference the ConstantExpr implementation. llvm-svn: 202833
-
Chandler Carruth authored
this would have been required because of the use of DataLayout, but that has moved into the IR proper. It is still required because this folder uses the constant folding in the analysis library (which uses the datalayout) as the more aggressive basis of its folder. llvm-svn: 202832
-
Dmitry Vyukov authored
llvm-svn: 202831
-
Chandler Carruth authored
r202827. llvm-svn: 202830
-
Chandler Carruth authored
r202827. llvm-svn: 202828
-
Chandler Carruth authored
IR types. llvm-svn: 202827
-
Dmitry Vyukov authored
llvm-svn: 202826
-
Chandler Carruth authored
one in the tree (or in Polly) is using this. llvm-svn: 202825
-
Chandler Carruth authored
directly care about the Value class (it is templated so that the key can be any arbitrary Value subclass), it is in fact concretely tied to the Value class through the ValueHandle's CallbackVH interface which relies on the key type being some Value subclass to establish the value handle chain. Ironically, the unittest is already in the right library. llvm-svn: 202824
-
Chandler Carruth authored
r202821. llvm-svn: 202822
-
Chandler Carruth authored
Move the test for this class into the IR unittests as well. This uncovers that ValueMap too is in the IR library. Ironically, the unittest for ValueMap is useless in the Support library (honestly, so was the ValueHandle test) and so it already lives in the IR unittests. Mmmm, tasty layering. llvm-svn: 202821
-
Dmitry Vyukov authored
currently tsan hangs when linked with a shared library linked against an old version of pthread this change is another attempt to fix pthread_cond interceptors in different scenarios see the comment for implementation details llvm-svn: 202820
-
Tim Northover authored
llvm-svn: 202819
-
Chandler Carruth authored
obviously is coupled to the IR. llvm-svn: 202818
-
Chandler Carruth authored
LLVM r202816. llvm-svn: 202817
-
Chandler Carruth authored
abstracting between a CallInst and an InvokeInst, both of which are IR concepts. llvm-svn: 202816
-
Chandler Carruth authored
name might indicate, it is an iterator over the types in an instruction in the IR.... You see where this is going. Another step of modularizing the support library. llvm-svn: 202815
-