Home
last modified time | relevance | path

Searched refs:UndefAllowed (Results 1 – 3 of 3) sorted by relevance

/freebsd-14-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDValueLattice.h249 bool isConstantRange(bool UndefAllowed = true) const {
251 (UndefAllowed || Range.isSingleElement()));
269 const ConstantRange &getConstantRange(bool UndefAllowed = true) const {
270 assert(isConstantRange(UndefAllowed) &&
284 ConstantRange asConstantRange(unsigned BW, bool UndefAllowed = false) const {
285 if (isConstantRange(UndefAllowed))
294 ConstantRange asConstantRange(Type *Ty, bool UndefAllowed = false) const {
296 return asConstantRange(Ty->getScalarSizeInBits(), UndefAllowed);
HDLazyValueInfo.h95 bool UndefAllowed);
99 ConstantRange getConstantRangeAtUse(const Use &U, bool UndefAllowed);
/freebsd-14-stable/contrib/llvm-project/llvm/lib/Analysis/
HDLazyValueInfo.cpp1743 bool UndefAllowed) { in getConstantRange() argument
1747 return Result.asConstantRange(V->getType(), UndefAllowed); in getConstantRange()
1751 bool UndefAllowed) { in getConstantRangeAtUse() argument
1755 return Result.asConstantRange(U->getType(), UndefAllowed); in getConstantRangeAtUse()