/external/swiftshader/third_party/LLVM/lib/Support/ |
D | ConstantRange.cpp | 63 return ConstantRange(CR.getUpper(), CR.getLower()); in makeICmpRegion() 165 return getUpper() - 1; in getUnsignedMax() 172 if (isFullSet() || (isWrappedSet() && getUpper() != 0)) in getUnsignedMin() 184 if (getLower().sle(getUpper() - 1)) in getSignedMax() 185 return getUpper() - 1; in getSignedMax() 189 if (getLower().isNegative() == getUpper().isNegative()) in getSignedMax() 192 return getUpper() - 1; in getSignedMax() 202 if (getLower().sle(getUpper() - 1)) in getSignedMin() 207 if ((getUpper() - 1).slt(getLower())) { in getSignedMin() 208 if (getUpper() != SignedMin) in getSignedMin() [all …]
|
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 67 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion() 153 RHS = getUpper(); in getEquivalentICmp() 155 } else if (getUpper().isMinSignedValue() || getUpper().isMinValue()) { in getEquivalentICmp() 157 getUpper().isMinSignedValue() ? CmpInst::ICMP_SGE : CmpInst::ICMP_UGE; in getEquivalentICmp() 273 return getUpper() - 1; in getUnsignedMax() 280 if (isFullSet() || (isWrappedSet() && getUpper() != 0)) in getUnsignedMin() 291 if (getLower().sle(getUpper() - 1)) in getSignedMax() 292 return getUpper() - 1; in getSignedMax() 295 if (getLower().isNegative() == getUpper().isNegative()) in getSignedMax() 297 return getUpper() - 1; in getSignedMax() [all …]
|
D | Metadata.cpp | 915 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous() 935 cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper())); in tryMergeRange()
|
D | Verifier.cpp | 2915 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 179 One.getUpper().trunc(10))); in TEST_F() 192 One.getUpper().zext(20))); in TEST_F() 194 Some.getUpper().zext(20))); in TEST_F() 212 One.getUpper().sext(20))); in TEST_F() 214 Some.getUpper().sext(20))); in TEST_F() 635 for (APInt I = NUWRegion.getLower(), E = NUWRegion.getUpper(); I != E; in TEST() 642 for (APInt I = NSWRegion.getLower(), E = NSWRegion.getUpper(); I != E; in TEST() 649 for (APInt I = NoWrapRegion.getLower(), E = NoWrapRegion.getUpper(); I != E; in TEST()
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ConstantRangeTest.cpp | 175 One.getUpper().trunc(10))); in TEST_F() 188 One.getUpper().zext(20))); in TEST_F() 190 Some.getUpper().zext(20))); in TEST_F() 204 One.getUpper().sext(20))); in TEST_F() 206 Some.getUpper().sext(20))); in TEST_F()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ConstantRange.h | 75 const APInt &getUpper() const { return Upper; } in getUpper() function
|
/external/llvm/include/llvm/IR/ |
D | ConstantRange.h | 128 const APInt &getUpper() const { return Upper; } in getUpper() function
|
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
D | Camera2Enumerator.java | 92 defaultMaxFps = Math.max(defaultMaxFps, fpsRange.getUpper()); in getSupportedFormats()
|
/external/llvm/lib/Transforms/Scalar/ |
D | Float2Int.cpp | 397 R.getUpper().getMinSignedBits()) + 1; in validateAndTransform()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1344 ConstantInt::get(ICI.getContext(),CR.getUpper())); in visitICmpInstWithInstAndIntCst() 1345 } else if (CR.getUpper().isSignBit()) { in visitICmpInstWithInstAndIntCst() 1352 ConstantInt::get(ICI.getContext(),CR.getUpper())); in visitICmpInstWithInstAndIntCst() 1353 } else if (CR.getUpper().isMinValue()) { in visitICmpInstWithInstAndIntCst()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LazyValueInfo.cpp | 282 << Val.getConstantRange().getUpper() << '>'; in operator <<()
|
D | ScalarEvolution.cpp | 6245 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange() 6270 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2163 Builder->getInt(CR.getUpper())); in visitICmpInstWithInstAndIntCst() 2164 } else if (CR.getUpper().isSignBit()) { in visitICmpInstWithInstAndIntCst() 2171 Builder->getInt(CR.getUpper())); in visitICmpInstWithInstAndIntCst() 2172 } else if (CR.getUpper().isMinValue()) { in visitICmpInstWithInstAndIntCst()
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 293 << Val.getConstantRange().getUpper() << '>'; in operator <<()
|
D | ScalarEvolution.cpp | 8832 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower(); in getNumIterationsInRange() 8857 NewOps[0] = SE.getNegativeSCEV(SE.getConstant(Range.getUpper())); in getNumIterationsInRange()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 381 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in GatherConstantCompares()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 568 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()
|