Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DConstantRange.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 …]
DMetadata.cpp821 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
841 cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper())); in tryMergeRange()
DVerifier.cpp2487 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
/external/llvm/unittests/IR/
DConstantRangeTest.cpp178 One.getUpper().trunc(10))); in TEST_F()
191 One.getUpper().zext(20))); in TEST_F()
193 Some.getUpper().zext(20))); in TEST_F()
211 One.getUpper().sext(20))); in TEST_F()
213 Some.getUpper().sext(20))); in TEST_F()
/external/llvm/include/llvm/IR/
DConstantRange.h91 const APInt &getUpper() const { return Upper; } in getUpper() function
/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp402 R.getUpper().getMinSignedBits()) + 1; in validateAndTransform()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.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()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp286 << Val.getConstantRange().getUpper() << '>'; in operator <<()
DScalarEvolution.cpp7471 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange()
7496 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp451 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()