Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DValueLattice.h247 bool isConstantRange(bool UndefAllowed = true) const {
249 (UndefAllowed || Range.isSingleElement()));
267 const ConstantRange &getConstantRange(bool UndefAllowed = true) const {
268 assert(isConstantRange(UndefAllowed) &&
282 ConstantRange asConstantRange(unsigned BW, bool UndefAllowed = false) const {
283 if (isConstantRange(UndefAllowed))
292 ConstantRange asConstantRange(Type *Ty, bool UndefAllowed = false) const {
294 return asConstantRange(Ty->getScalarSizeInBits(), UndefAllowed);
H A DLazyValueInfo.h93 bool UndefAllowed);
97 ConstantRange getConstantRangeAtUse(const Use &U, bool UndefAllowed);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp1817 bool UndefAllowed) { in getConstantRange() argument
1821 return Result.asConstantRange(V->getType(), UndefAllowed); in getConstantRange()
1825 bool UndefAllowed) { in getConstantRangeAtUse() argument
1829 return Result.asConstantRange(U->getType(), UndefAllowed); in getConstantRangeAtUse()