mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
53a0552b06
Rewrote the SLP-vectorization as a whole-function vectorization pass. It is now able to vectorize chains across multiple basic blocks. It still does not vectorize PHIs, but this should be easy to do now that we scan the entire function. I removed the support for extracting values from trees. We are now able to vectorize more programs, but there are some serious regressions in many workloads (such as flops-6 and mandel-2). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184647 91177308-0d34-0410-b5e6-96231b3b80d8
9 lines
157 B
CMake
9 lines
157 B
CMake
add_llvm_library(LLVMVectorize
|
|
BBVectorize.cpp
|
|
Vectorize.cpp
|
|
LoopVectorize.cpp
|
|
SLPVectorizer.cpp
|
|
)
|
|
|
|
add_dependencies(LLVMVectorize intrinsics_gen)
|