Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1147 const SCEV *ConstantMaxNotTaken; // The exit is not taken at most this many
1165 ExitLimit(const SCEV *E, const SCEV *ConstantMaxNotTaken,
1169 LLVM_ABI ExitLimit(const SCEV *E, const SCEV *ConstantMaxNotTaken,
1177 !isa<SCEVCouldNotCompute>(ConstantMaxNotTaken);
1534 const SCEV *ConstantMaxNotTaken;
1540 const SCEV *ConstantMaxNotTaken,
1544 ConstantMaxNotTaken(ConstantMaxNotTaken),
1653 return ENT->ConstantMaxNotTaken;
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp8734 const SCEV *E, const SCEV *ConstantMaxNotTaken, in ExitLimit() argument
8737 : ExactNotTaken(E), ConstantMaxNotTaken(ConstantMaxNotTaken), in ExitLimit()
8742 if (ConstantMaxNotTaken->isZero()) { in ExitLimit()
8743 this->ExactNotTaken = E = ConstantMaxNotTaken; in ExitLimit()
8744 this->SymbolicMaxNotTaken = SymbolicMaxNotTaken = ConstantMaxNotTaken; in ExitLimit()
8748 !isa<SCEVCouldNotCompute>(ConstantMaxNotTaken)) && in ExitLimit()
8754 !isa<SCEVCouldNotCompute>(ConstantMaxNotTaken)) && in ExitLimit()
8756 assert((isa<SCEVCouldNotCompute>(ConstantMaxNotTaken) || in ExitLimit()
8757 isa<SCEVConstant>(ConstantMaxNotTaken)) && in ExitLimit()
8770 assert((isa<SCEVCouldNotCompute>(ConstantMaxNotTaken) || in ExitLimit()
[all …]