HomeSort by: relevance | last modified time | path
    Searched refs:getConstantMax (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ScalarEvolution.h 1394 const SCEV *getConstantMax() const { return ConstantMax; }
1411 !isa<SCEVCouldNotCompute>(getConstantMax());
1446 const SCEV *getConstantMax(ScalarEvolution *SE) const;
1449 const SCEV *getConstantMax(const BasicBlock *ExitingBlock,
1456 /// value returned by getConstantMax or zero.
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ScalarEvolution.cpp 7030 return getBackedgeTakenInfo(L).getConstantMax(ExitingBlock, this);
7047 return getBackedgeTakenInfo(L).getConstantMax(this);
7109 isLoopInvariant(Result.getConstantMax(this), L) &&
7112 } else if (Result.getConstantMax(this) == getCouldNotCompute() &&
7354 const SCEV *ScalarEvolution::BackedgeTakenInfo::getConstantMax(
7363 /// getConstantMax - Get the constant max backedge taken count for the loop.
7365 ScalarEvolution::BackedgeTakenInfo::getConstantMax(ScalarEvolution *SE) const {
7370 if (any_of(ExitNotTaken, PredicateNotAlwaysTrue) || !getConstantMax())
7373 assert((isa<SCEVCouldNotCompute>(getConstantMax()) ||
7374 isa<SCEVConstant>(getConstantMax())) &
    [all...]

Completed in 30 milliseconds