Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1394 const SCEV *getConstantMax() const { return ConstantMax; }
1411 !isa<SCEVCouldNotCompute>(getConstantMax());
1446 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1449 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DScalarEvolution.cpp7030 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
7047 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
7109 isLoopInvariant(Result.getConstantMax(this), L) && in getBackedgeTakenInfo()
7112 } else if (Result.getConstantMax(this) == getCouldNotCompute() && in getBackedgeTakenInfo()
7354 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7365 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7370 if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getConstantMax()) in getConstantMax()
7373 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
7374 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
7376 return getConstantMax(); in getConstantMax()
[all …]