Disable unrolling in the loop vectorizer when disabled in the pass manager
authorHal Finkel <hfinkel@anl.gov>
Wed, 28 Aug 2013 18:33:10 +0000 (18:33 +0000)
committerHal Finkel <hfinkel@anl.gov>
Wed, 28 Aug 2013 18:33:10 +0000 (18:33 +0000)
commit435798e96a64738b55a01055dde1bc9a88a15191
tree085525155e3ac51b8f7b9ed02f0f4326c5a0c0cd
parent4f066b6db8a7a95b206725aecf99a64fd6e9415c
Disable unrolling in the loop vectorizer when disabled in the pass manager

When unrolling is disabled in the pass manager, the loop vectorizer should also
not unroll loops. This will allow the -fno-unroll-loops option in Clang to
behave as expected (even for vectorizable loops). The loop vectorizer's
-force-vector-unroll option will (continue to) override the pass-manager
setting (including -force-vector-unroll=0 to force use of the internal
auto-selection logic).

In order to test this, I added a flag to opt (-disable-loop-unrolling) to force
disable unrolling through opt (the analog of -fno-unroll-loops in Clang). Also,
this fixes a small bug in opt where the loop vectorizer was enabled only after
the pass manager populated the queue of passes (the global_alias.ll test needed
a slight update to the RUN line as a result of this fix).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@189499 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Transforms/Vectorize.h
lib/Transforms/IPO/PassManagerBuilder.cpp
lib/Transforms/Vectorize/LoopVectorize.cpp
test/Transforms/LoopVectorize/X86/unroll-pm.ll [new file with mode: 0644]
test/Transforms/LoopVectorize/global_alias.ll
tools/opt/opt.cpp