Fix a pessimization due to sucky LI testing
authorChris Lattner <sabre@nondot.org>
Tue, 4 Dec 2001 08:12:47 +0000 (08:12 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 4 Dec 2001 08:12:47 +0000 (08:12 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1412 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/InductionVariable.cpp

index 339bc3862aebf2c03b97b8bd4f93eb7991ee9b67..a340a771963159c019276aad0c4703a553efc772 100644 (file)
@@ -127,6 +127,21 @@ InductionVariable::InductionVariable(PHINode *P, cfg::LoopInfo *LoopInfo) {
       if (StepE.ExprTy != ExprType::Linear ||
          StepE.Var != Phi) return;
 
+      const Type *ETy = Phi->getType();
+      if (ETy->isPointerType()) ETy = Type::ULongTy;
+      Step  = (Value*)(StepE.Offset ? StepE.Offset : ConstantInt::get(ETy, 0));
+    } else {   // We were able to get a step value, simplify with expr analysis
+      ExprType StepE = analysis::ClassifyExpression(Step);
+      if (StepE.ExprTy == ExprType::Linear && StepE.Offset == 0) {
+        // No offset from variable?  Grab the variable
+        Step = StepE.Var;
+      } else if (StepE.ExprTy == ExprType::Constant) {
+        if (StepE.Offset)
+          Step = (Value*)StepE.Offset;
+        else
+          Step = Constant::getNullConstant(Step->getType());
+      }
+
       const Type *ETy = Phi->getType();
       if (ETy->isPointerType()) ETy = Type::ULongTy;
       Step  = (Value*)(StepE.Offset ? StepE.Offset : ConstantInt::get(ETy, 0));