Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1422 const SCEV *ConstantMax;
1439 const SCEV *getConstantMax() const { return ConstantMax; }
1442 BackedgeTakenInfo() : ConstantMax(nullptr), IsComplete(false) {}
1450 const SCEV *ConstantMax, bool MaxOrZero);
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7681 bool IsComplete, const SCEV *ConstantMax, bool MaxOrZero) in BackedgeTakenInfo() argument
7682 : ConstantMax(ConstantMax), IsComplete(IsComplete), MaxOrZero(MaxOrZero) { in BackedgeTakenInfo()
7702 assert((isa<SCEVCouldNotCompute>(ConstantMax) || in BackedgeTakenInfo()
7703 isa<SCEVConstant>(ConstantMax)) && in BackedgeTakenInfo()
7708 if (!isa<SCEVCouldNotCompute>(ConstantMax)) in BackedgeTakenInfo()
7709 ST.visitAll(ConstantMax); in BackedgeTakenInfo()