Home
last modified time | relevance | path

Searched refs:getUpper (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/lib/IR/
HDConstantRange.cpp65 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion()
174 return getUpper() - 1; in getUnsignedMax()
181 if (isFullSet() || (isWrappedSet() && getUpper() != 0)) in getUnsignedMin()
192 if (getLower().sle(getUpper() - 1)) in getSignedMax()
193 return getUpper() - 1; in getSignedMax()
196 if (getLower().isNegative() == getUpper().isNegative()) in getSignedMax()
198 return getUpper() - 1; in getSignedMax()
207 if (getLower().sle(getUpper() - 1)) in getSignedMin()
211 if ((getUpper() - 1).slt(getLower())) { in getSignedMin()
212 if (getUpper() != SignedMin) in getSignedMin()
[all …]
HDMetadata.cpp836 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
856 cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper())); in tryMergeRange()
HDVerifier.cpp2572 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
/NextBSD/contrib/llvm/include/llvm/IR/
HDConstantRange.h91 const APInt &getUpper() const { return Upper; } in getUpper() function
/NextBSD/contrib/llvm/lib/Transforms/Scalar/
HDFloat2Int.cpp402 R.getUpper().getMinSignedBits()) + 1; in validateAndTransform()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineCompares.cpp1712 Builder->getInt(CR.getUpper())); in visitICmpInstWithInstAndIntCst()
1713 } else if (CR.getUpper().isSignBit()) { in visitICmpInstWithInstAndIntCst()
1720 Builder->getInt(CR.getUpper())); in visitICmpInstWithInstAndIntCst()
1721 } else if (CR.getUpper().isMinValue()) { in visitICmpInstWithInstAndIntCst()
/NextBSD/contrib/llvm/lib/Analysis/
HDLazyValueInfo.cpp286 << Val.getConstantRange().getUpper() << '>'; in operator <<()
HDScalarEvolution.cpp7500 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange()
7525 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDSimplifyCFG.cpp448 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()