Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1519 const SCEV *getConstantMax() const { return ConstantMax; }
1536 !isa<SCEVCouldNotCompute>(getConstantMax());
1571 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1574 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp8281 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
8298 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
8625 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8645 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
8650 if (!getConstantMax() || any_of(ExitNotTaken, PredicateNotAlwaysTrue)) in getConstantMax()
8653 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
8654 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
8656 return getConstantMax(); in getConstantMax()