Searched refs:getLower (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/Support/ |
D | ConstantRange.cpp | 63 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/ |
D | ConstantRangeTest.cpp | 178 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/ |
D | ConstantRange.h | 71 const APInt &getLower() const { return Lower; } in getLower() function
|
/external/llvm/lib/VMCore/ |
D | Metadata.cpp | 453 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous() 470 EndPoints[Size - 2] = ConstantInt::get(Ty, Union.getLower()); in tryMergeRange()
|
D | Verifier.cpp | 1367 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/ |
D | InstCombineCompares.cpp | 1369 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/ |
D | LazyValueInfo.cpp | 286 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", " in operator <<()
|
D | ScalarEvolution.cpp | 6455 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 440 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in GatherConstantCompares()
|