Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1439 const SCEV *getConstantMax() const { return ConstantMax; }
1456 !isa<SCEVCouldNotCompute>(getConstantMax());
1491 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1494 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7261 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
7278 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
7340 isLoopInvariant(Result.getConstantMax(this), L) && in getBackedgeTakenInfo()
7343 } else if (Result.getConstantMax(this) == getCouldNotCompute() && in getBackedgeTakenInfo()
7585 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7596 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7601 if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getConstantMax()) in getConstantMax()
7604 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
7605 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
7607 return getConstantMax(); in getConstantMax()