Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DConstantRange.cpp63 return ConstantRange(CR.getUpper(), CR.getLower()); in makeICmpRegion()
174 return getLower(); in getUnsignedMin()
183 if (getLower().sle(getUpper() - 1)) in getSignedMax()
187 if (getLower().isNegative() == getUpper().isNegative()) in getSignedMax()
198 if (getLower().sle(getUpper() - 1)) in getSignedMin()
199 return getLower(); in getSignedMin()
202 if ((getUpper() - 1).slt(getLower())) { in getSignedMin()
206 return getLower(); in getSignedMin()
232 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
237 Lower.ule(Other.getLower()); in contains()
[all …]
/external/llvm/unittests/Support/
DConstantRangeTest.cpp178 EXPECT_EQ(TOne, ConstantRange(One.getLower().trunc(10), in TEST_F()
191 EXPECT_EQ(ZOne, ConstantRange(One.getLower().zext(20), in TEST_F()
193 EXPECT_EQ(ZSome, ConstantRange(Some.getLower().zext(20), in TEST_F()
211 EXPECT_EQ(SOne, ConstantRange(One.getLower().sext(20), in TEST_F()
213 EXPECT_EQ(SSome, ConstantRange(Some.getLower().sext(20), in TEST_F()
/external/llvm/include/llvm/Support/
DConstantRange.h71 const APInt &getLower() const { return Lower; } in getLower() function
/external/llvm/lib/VMCore/
DMetadata.cpp453 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
470 EndPoints[Size - 2] = ConstantInt::get(Ty, Union.getLower()); in tryMergeRange()
DVerifier.cpp1367 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
1419 Assert1(LowV.sgt(LastRange.getLower()), "Intervals are not in order", in visitLoadInst()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1369 if (CR.getLower().isSignBit()) { in visitICmpInstWithInstAndIntCst()
1374 ConstantInt::get(ICI.getContext(),CR.getLower())); in visitICmpInstWithInstAndIntCst()
1377 if (CR.getLower().isMinValue()) { in visitICmpInstWithInstAndIntCst()
1382 ConstantInt::get(ICI.getContext(),CR.getLower())); in visitICmpInstWithInstAndIntCst()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp286 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", " in operator <<()
DScalarEvolution.cpp6455 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp440 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in GatherConstantCompares()