Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp90 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion()
168 RHS = getUpper(); in getEquivalentICmp()
170 } else if (getUpper().isMinSignedValue() || getUpper().isMinValue()) { in getEquivalentICmp()
172 getUpper().isMinSignedValue() ? CmpInst::ICMP_SGE : CmpInst::ICMP_UGE; in getEquivalentICmp()
367 return getUpper() - 1; in getUnsignedMax()
379 return getUpper() - 1; in getSignedMax()
405 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
409 return Other.getUpper().ule(Upper) || in contains()
412 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
844 APInt NewUpper = getUpper() + Other.getUpper() - 1; in add()
[all …]
DMetadata.cpp943 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
963 cast<ConstantInt>(ConstantInt::get(Ty, Union.getUpper())); in tryMergeRange()
DVerifier.cpp3348 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueLattice.cpp22 << Val.getConstantRange().getUpper() << ">"; in operator <<()
DScalarEvolution.cpp5839 APInt StartUpper = StartRange.getUpper() - 1; in getRangeForAffineARHelper()
8714 APInt Upper = Range.getUpper().sextOrSelf(A.getBitWidth()); in SolveQuadraticAddRecRange()
10900 APInt End = A.sge(1) ? (Range.getUpper() - 1) : Range.getLower(); in getNumIterationsInRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h162 const APInt &getUpper() const { return Upper; } in getUpper() function
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js251 this.getUpper = function (...args) { method
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp403 R.getUpper().getMinSignedBits()) + 1; in validateAndTransform()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp623 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DAttributor.cpp5239 Ty, AssumedConstantRange.getUpper()))}; in getMDNodeForConstantRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp2588 const APInt &Upper = CR.getUpper(); in foldICmpAddConstant()