llvm-6502/lib/Transforms/Vectorize
2013-07-22 22:18:07 +00:00
..
BBVectorize.cpp Use SmallVectorImpl& instead of SmallVector to avoid repeating small vector size. 2013-07-14 04:42:23 +00:00
CMakeLists.txt
LLVMBuild.txt
LoopVectorize.cpp Fix an obvious typo in the loop vectorizer where the cost model uses the wrong variable. The variable BlockCost is ignored. 2013-07-22 17:10:48 +00:00
Makefile
SLPVectorizer.cpp When we vectorize across multiple basic blocks we may vectorize PHINodes that create a cycle. We already break the cycle on phi-nodes, but arithmetic operations are still uplicated. This patch adds code that checks if the operation that we are vectorizing was vectorized during the visit of the operands and uses this value if it can. 2013-07-22 22:18:07 +00:00
Vectorize.cpp