Put the threshold magic number in a variable.
authorNadav Rotem <nrotem@apple.com>
Wed, 31 Oct 2012 16:22:16 +0000 (16:22 +0000)
committerNadav Rotem <nrotem@apple.com>
Wed, 31 Oct 2012 16:22:16 +0000 (16:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167134 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Vectorize/LoopVectorize.cpp

index 40235ef104380d16ef205bd879cbeb9ee4ba5c38..94e56a171315ea572b03bc158bc00ec83968ab5a 100644 (file)
@@ -75,6 +75,9 @@ static cl::opt<unsigned>
 VectorizationFactor("force-vector-width", cl::init(0), cl::Hidden,
           cl::desc("Set the default vectorization width. Zero is autoselect."));
 
+/// We don't vectorize loops with a known constant trip count below this number.
+const int TinyTripCountThreshold = 16;
+
 namespace {
 
 // Forward declarations.
@@ -1147,7 +1150,7 @@ bool LoopVectorizationLegality::canVectorize() {
 
   // Do not loop-vectorize loops with a tiny trip count.
   unsigned TC = SE->getSmallConstantTripCount(TheLoop, BB);
-  if (TC > 0 && TC < 16) {
+  if (TC > 0 && TC < TinyTripCountThreshold) {
     DEBUG(dbgs() << "LV: Found a loop with a very small trip count. " <<
           "This loop is not worth vectorizing.\n");
     return false;