Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/Analysis/
DScalarEvolution.h1371 const SCEV *getConstantMax() const { return ConstantMax; }
1388 !isa<SCEVCouldNotCompute>(getConstantMax());
1423 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1426 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
/external/llvm-project/llvm/lib/Analysis/
DScalarEvolution.cpp6896 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this); in getExitCount()
6913 return getBackedgeTakenInfo(L).getConstantMax(this); in getBackedgeTakenCount()
6975 isLoopInvariant(Result.getConstantMax(this), L) && in getBackedgeTakenInfo()
6978 } else if (Result.getConstantMax(this) == getCouldNotCompute() && in getBackedgeTakenInfo()
7229 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax( in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7240 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const { in getConstantMax() function in ScalarEvolution::BackedgeTakenInfo
7245 if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getConstantMax()) in getConstantMax()
7248 assert((isa<SCEVCouldNotCompute>(getConstantMax()) || in getConstantMax()
7249 isa<SCEVConstant>(getConstantMax())) && in getConstantMax()
7251 return getConstantMax(); in getConstantMax()
[all …]