Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1489 const SCEV *getConstantMax() const { return ConstantMax; }
1506 !isa<SCEVCouldNotCompute>(getConstantMax());
1541 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1544 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DScalarEvolution.cpp8320 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
8337 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
8401 isLoopInvariant(Result.getConstantMax(this), L) && in getBackedgeTakenInfo()
8404 } else if (Result.getConstantMax(this) == getCouldNotCompute() && in getBackedgeTakenInfo()
8643 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8663 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8668 if (!getConstantMax() || any_of(ExitNotTaken, PredicateNotAlwaysTrue)) in getConstantMax()
8671 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
8672 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
8674 return getConstantMax(); in getConstantMax()