Add a basic-block autovectorization pass.
authorHal Finkel <hfinkel@anl.gov>
Wed, 1 Feb 2012 03:51:43 +0000 (03:51 +0000)
committerHal Finkel <hfinkel@anl.gov>
Wed, 1 Feb 2012 03:51:43 +0000 (03:51 +0000)
commitde5e5ec3045a73a06b1054417f9ac6c02929e9ce
tree02f43070729c0328db2d86e33acd94df3ab52d53
parentd0e277d272d517ca1cda368267d199f0da7cad95
Add a basic-block autovectorization pass.

This is the initial checkin of the basic-block autovectorization pass along with some supporting vectorization infrastructure.
Special thanks to everyone who helped review this code over the last several months (especially Tobias Grosser).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149468 91177308-0d34-0410-b5e6-96231b3b80d8
35 files changed:
docs/Passes.html
include/llvm-c/Initialization.h
include/llvm-c/Transforms/Vectorize.h [new file with mode: 0644]
include/llvm/InitializePasses.h
include/llvm/LinkAllPasses.h
include/llvm/Transforms/IPO/PassManagerBuilder.h
include/llvm/Transforms/Vectorize.h [new file with mode: 0644]
lib/Transforms/CMakeLists.txt
lib/Transforms/IPO/LLVMBuild.txt
lib/Transforms/IPO/PassManagerBuilder.cpp
lib/Transforms/LLVMBuild.txt
lib/Transforms/Makefile
lib/Transforms/Vectorize/BBVectorize.cpp [new file with mode: 0644]
lib/Transforms/Vectorize/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/Vectorize/LLVMBuild.txt [new file with mode: 0644]
lib/Transforms/Vectorize/Makefile [new file with mode: 0644]
lib/Transforms/Vectorize/Vectorize.cpp [new file with mode: 0644]
test/Transforms/BBVectorize/cycle.ll [new file with mode: 0644]
test/Transforms/BBVectorize/dg.exp [new file with mode: 0644]
test/Transforms/BBVectorize/ld1.ll [new file with mode: 0644]
test/Transforms/BBVectorize/loop1.ll [new file with mode: 0644]
test/Transforms/BBVectorize/req-depth.ll [new file with mode: 0644]
test/Transforms/BBVectorize/search-limit.ll [new file with mode: 0644]
test/Transforms/BBVectorize/simple-int.ll [new file with mode: 0644]
test/Transforms/BBVectorize/simple-ldstr.ll [new file with mode: 0644]
test/Transforms/BBVectorize/simple.ll [new file with mode: 0644]
tools/bugpoint/CMakeLists.txt
tools/bugpoint/Makefile
tools/llvm-ld/CMakeLists.txt
tools/llvm-ld/Makefile
tools/lto/CMakeLists.txt
tools/lto/Makefile
tools/opt/CMakeLists.txt
tools/opt/Makefile
tools/opt/opt.cpp