Home
last modified time | relevance | path

Searched refs:getConstantMax (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1391 const SCEV *getConstantMax() const { return ConstantMax; }
1408 !isa<SCEVCouldNotCompute>(getConstantMax());
1443 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1446 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp8128 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
8145 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
8209 isLoopInvariant(Result.getConstantMax(this), L) && in getBackedgeTakenInfo()
8212 } else if (Result.getConstantMax(this) == getCouldNotCompute() && in getBackedgeTakenInfo()
8415 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8426 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8431 if (!getConstantMax() || any_of(ExitNotTaken, PredicateNotAlwaysTrue)) in getConstantMax()
8434 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
8435 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
8437 return getConstantMax(); in getConstantMax()