diff options
| author | Nick Lewycky <nicholas@mxc.ca> | 2008-11-16 04:14:25 +0000 |
|---|---|---|
| committer | Nick Lewycky <nicholas@mxc.ca> | 2008-11-16 04:14:25 +0000 |
| commit | 625c6f79b2bfe8e5a8cc5650302030ae0268a466 (patch) | |
| tree | a55bfe55896782a4ee20a956a73b31ec5fea553f /llvm/lib/Analysis/ScalarEvolution.cpp | |
| parent | 08c4a35caa1316de8a259cd97216ea147106f9f0 (diff) | |
| download | bcm5719-llvm-625c6f79b2bfe8e5a8cc5650302030ae0268a466.tar.gz bcm5719-llvm-625c6f79b2bfe8e5a8cc5650302030ae0268a466.zip | |
Don't brute-force analyze cubic or higher polynomials.
If this patch causes a performance regression for anyone, please let me know,
and it can be fixed in a different way with much more effort.
llvm-svn: 59384
Diffstat (limited to 'llvm/lib/Analysis/ScalarEvolution.cpp')
| -rw-r--r-- | llvm/lib/Analysis/ScalarEvolution.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp index 3ff0935d8f3..3f43a79bcae 100644 --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -2967,27 +2967,6 @@ SCEVHandle SCEVAddRecExpr::getNumIterationsInRange(ConstantRange Range, } } - // Fallback, if this is a general polynomial, figure out the progression - // through brute force: evaluate until we find an iteration that fails the - // test. This is likely to be slow, but getting an accurate trip count is - // incredibly important, we will be able to simplify the exit test a lot, and - // we are almost guaranteed to get a trip count in this case. - ConstantInt *TestVal = ConstantInt::get(getType(), 0); - ConstantInt *EndVal = TestVal; // Stop when we wrap around. - do { - ++NumBruteForceEvaluations; - SCEVHandle Val = evaluateAtIteration(SE.getConstant(TestVal), SE); - if (!isa<SCEVConstant>(Val)) // This shouldn't happen. - return new SCEVCouldNotCompute(); - - // Check to see if we found the value! - if (!Range.contains(cast<SCEVConstant>(Val)->getValue()->getValue())) - return SE.getConstant(TestVal); - - // Increment to test the next index. - TestVal = ConstantInt::get(TestVal->getValue()+1); - } while (TestVal != EndVal); - return new SCEVCouldNotCompute(); } |

