diff --git a/llvm/include/llvm/Analysis/ScalarEvolution.h b/llvm/include/llvm/Analysis/ScalarEvolution.h --- a/llvm/include/llvm/Analysis/ScalarEvolution.h +++ b/llvm/include/llvm/Analysis/ScalarEvolution.h @@ -1693,12 +1693,6 @@ BasicBlock *ExitingBB, bool IsSubExpr); - /// Given an exit condition of 'icmp op load X, cst', try to see if we can - /// compute the backedge-taken count. - ExitLimit computeLoadConstantCompareExitLimit(LoadInst *LI, Constant *RHS, - const Loop *L, - ICmpInst::Predicate p); - /// Compute the exit limit of a loop that is controlled by a /// "(IV >> 1) != 0" type comparison. We cannot compute the exact trip /// count in these cases (since SCEV has no way of expressing them), but we diff --git a/llvm/lib/Analysis/ScalarEvolution.cpp b/llvm/lib/Analysis/ScalarEvolution.cpp --- a/llvm/lib/Analysis/ScalarEvolution.cpp +++ b/llvm/lib/Analysis/ScalarEvolution.cpp @@ -139,8 +139,6 @@ #define DEBUG_TYPE "scalar-evolution" -STATISTIC(NumArrayLenItCounts, - "Number of trip counts computed with array length"); STATISTIC(NumTripCountsComputed, "Number of loops with predictable loop counts"); STATISTIC(NumTripCountsNotComputed, @@ -8116,15 +8114,6 @@ Pred = ExitCond->getInversePredicate(); const ICmpInst::Predicate OriginalPred = Pred; - // Handle common loops like: for (X = "string"; *X; ++X) - if (LoadInst *LI = dyn_cast(ExitCond->getOperand(0))) - if (Constant *RHS = dyn_cast(ExitCond->getOperand(1))) { - ExitLimit ItCnt = - computeLoadConstantCompareExitLimit(LI, RHS, L, Pred); - if (ItCnt.hasAnyInfo()) - return ItCnt; - } - const SCEV *LHS = getSCEV(ExitCond->getOperand(0)); const SCEV *RHS = getSCEV(ExitCond->getOperand(1)); @@ -8255,85 +8244,6 @@ return cast(Val)->getValue(); } -/// Given an exit condition of 'icmp op load X, cst', try to see if we can -/// compute the backedge execution count. -ScalarEvolution::ExitLimit -ScalarEvolution::computeLoadConstantCompareExitLimit( - LoadInst *LI, - Constant *RHS, - const Loop *L, - ICmpInst::Predicate predicate) { - if (LI->isVolatile()) return getCouldNotCompute(); - - // Check to see if the loaded pointer is a getelementptr of a global. - // TODO: Use SCEV instead of manually grubbing with GEPs. - GetElementPtrInst *GEP = dyn_cast(LI->getOperand(0)); - if (!GEP) return getCouldNotCompute(); - - // Make sure that it is really a constant global we are gepping, with an - // initializer, and make sure the first IDX is really 0. - GlobalVariable *GV = dyn_cast(GEP->getOperand(0)); - if (!GV || !GV->isConstant() || !GV->hasDefinitiveInitializer() || - GEP->getNumOperands() < 3 || !isa(GEP->getOperand(1)) || - !cast(GEP->getOperand(1))->isNullValue()) - return getCouldNotCompute(); - - // Okay, we allow one non-constant index into the GEP instruction. - Value *VarIdx = nullptr; - std::vector Indexes; - unsigned VarIdxNum = 0; - for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i) - if (ConstantInt *CI = dyn_cast(GEP->getOperand(i))) { - Indexes.push_back(CI); - } else if (!isa(GEP->getOperand(i))) { - if (VarIdx) return getCouldNotCompute(); // Multiple non-constant idx's. - VarIdx = GEP->getOperand(i); - VarIdxNum = i-2; - Indexes.push_back(nullptr); - } - - // Loop-invariant loads may be a byproduct of loop optimization. Skip them. - if (!VarIdx) - return getCouldNotCompute(); - - // Okay, we know we have a (load (gep GV, 0, X)) comparison with a constant. - // Check to see if X is a loop variant variable value now. - const SCEV *Idx = getSCEV(VarIdx); - Idx = getSCEVAtScope(Idx, L); - - // We can only recognize very limited forms of loop index expressions, in - // particular, only affine AddRec's like {C1,+,C2}. - const SCEVAddRecExpr *IdxExpr = dyn_cast(Idx); - if (!IdxExpr || IdxExpr->getLoop() != L || !IdxExpr->isAffine() || - isLoopInvariant(IdxExpr, L) || - !isa(IdxExpr->getOperand(0)) || - !isa(IdxExpr->getOperand(1))) - return getCouldNotCompute(); - - unsigned MaxSteps = MaxBruteForceIterations; - for (unsigned IterationNum = 0; IterationNum != MaxSteps; ++IterationNum) { - ConstantInt *ItCst = ConstantInt::get( - cast(IdxExpr->getType()), IterationNum); - ConstantInt *Val = EvaluateConstantChrecAtConstant(IdxExpr, ItCst, *this); - - // Form the GEP offset. - Indexes[VarIdxNum] = Val; - - Constant *Result = ConstantFoldLoadThroughGEPIndices(GV->getInitializer(), - Indexes); - if (!Result) break; // Cannot compute! - - // Evaluate the condition for this iteration. - Result = ConstantExpr::getICmp(predicate, Result, RHS); - if (!isa(Result)) break; // Couldn't decide for sure - if (cast(Result)->getValue().isMinValue()) { - ++NumArrayLenItCounts; - return getConstant(ItCst); // Found terminating iteration! - } - } - return getCouldNotCompute(); -} - ScalarEvolution::ExitLimit ScalarEvolution::computeShiftCompareExitLimit( Value *LHS, Value *RHSV, const Loop *L, ICmpInst::Predicate Pred) { ConstantInt *RHS = dyn_cast(RHSV);