Home
last modified time | relevance | path

Searched refs:ult (Results 1 - 25 of 58) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DConstantRange.cpp142 // However for non-singleton RHS, for example ult [2,5) makeAllowedICmpRegion in makeExactICmpRegion()
335 return (Upper - Lower).ult(Other.Upper - Other.Lower); in isSizeStrictlySmallerThan()
393 return Lower.ule(V) && V.ult(Upper); in contains()
394 return Lower.ule(V) || V.ult(Upper); in contains()
460 if (Lower.ult(CR.Lower)) { in intersectWith()
468 if (Upper.ult(CR.Upper)) in intersectWith()
477 if (Upper.ult(CR.Upper)) in intersectWith()
482 if (Lower.ult(CR.Upper)) in intersectWith()
491 if (CR.Lower.ult(Upper)) { in intersectWith()
494 if (CR.Upper.ult(Uppe in intersectWith()
[all...]
H A DConstantFold.cpp1280 if (C2V.ult(C1V.getBitWidth())) in ConstantFoldBinaryInstruction()
1284 if (C2V.ult(C1V.getBitWidth())) in ConstantFoldBinaryInstruction()
1288 if (C2V.ult(C1V.getBitWidth())) in ConstantFoldBinaryInstruction()
1897 case ICmpInst::ICMP_ULT: return ConstantInt::get(ResultTy, V1.ult(V2)); in ConstantFoldCompareInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPInt.h1015 bool ult(const APInt &RHS) const;
1023 bool ult(uint64_t RHS) const {
1051 bool ule(const APInt &RHS) const { return ult(RHS) || eq(RHS); }
1083 bool ugt(const APInt &RHS) const { return !ult(RHS) && !eq(RHS); }
1119 bool uge(const APInt &RHS) const { return !ult(RHS); }
1127 bool uge(uint64_t RHS) const { return !ult(RHS); }
1794 return A.ult(B) ? A : B;
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
H A Dext-trunc-smaller.c6 char ult(unsigned short x) in ult() function
H A Dbinops-same-args.c20 u32 ult(u32 a) { return a < a; } in ult() function
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dtautological-compare.c12 u32 ult(u32 a) { return a < a; } in ult() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DLint.cpp532 Assert(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()), in visitLShr()
539 Assert(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()), in visitAShr()
546 Assert(CI->getValue().ult(cast<IntegerType>(I.getType())->getBitWidth()), in visitShl()
630 Assert(CI->getValue().ult(I.getVectorOperandType()->getNumElements()), in visitExtractElementInst()
637 Assert(CI->getValue().ult(I.getType()->getNumElements()), in visitInsertElementInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPInt.cpp1163 if (this->ult(square))
1168 if (offset.ult(midpoint))
1181 assert(ult(modulo) && "This APInt must be smaller than the modulo");
1256 } while (q1.ult(delta) || (q1 == delta && r1 == 0));
1308 (q1.ult(delta) || (q1 == delta && r1 == 0)));
1623 if (lhsWords < rhsWords || this->ult(RHS))
1656 if (this->ult(RHS))
1716 if (lhsWords < rhsWords || this->ult(RHS))
1748 if (this->ult(RHS))
1819 if (lhsWords < rhsWords || LHS.ult(RH
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A DAPInt.cpp486 bool APInt::ult(const APInt& RHS) const { in ult() function in APInt
535 return ult(RHS); in slt()
1324 if (this->ult(square)) in sqrt()
1329 if (offset.ult(midpoint)) in sqrt()
1340 assert(ult(modulo) && "This APInt must be smaller than the modulo"); in multiplicativeInverse()
1412 } while (q1.ult(delta) || (q1 == delta && r1 == 0)); in magic()
1464 (q1.ult(delta) || (q1 == delta && r1 == 0))); in magicu()
1822 else if (lhsWords < rhsWords || this->ult(RHS)) {
1870 } else if (lhsWords < rhsWords || this->ult(RHS)) {
1925 if (lhsWords < rhsWords || LHS.ult(RH
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp78 if (MaximalRepresentableShiftAmount.ult(MaximalPossibleTotalShiftAmount)) in reassociateShiftAmtsOfTwoSameDirectionShifts()
345 (*C0 + *C1).ult(Ty->getScalarSizeInBits()); in foldShiftOfShiftedLogic()
453 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift()
1080 if (match(Op0, m_Shl(m_Value(X), m_APInt(ShOp1))) && ShOp1->ult(BitWidth)) { in visitLShr()
1081 if (ShOp1->ult(ShAmt)) { in visitLShr()
1260 if (match(Op1, m_APInt(ShAmtAPInt)) && ShAmtAPInt->ult(BitWidth)) { in visitAShr()
1275 ShOp1->ult(BitWidth)) { in visitAShr()
1294 ShOp1->ult(BitWidth)) { in visitAShr()
H A DInstCombineCompares.cpp2093 assert(C.ugt(0) && "ult 0 should have been eliminated"); in foldICmpShlConstant()
2213 // icmp ult (lshr X, ShAmtC), C --> icmp ult X, (C << ShAmtC) in foldICmpShrConstant()
2313 // (icmp ult (udiv C2, Y), C) -> (icmp ugt Y, C2/C) in foldICmpUDivConstant()
2315 assert(C != 0 && "icmp ult X, 0 should have been simplified already."); in foldICmpUDivConstant()
3120 if (Cmp.getPredicate() == ICmpInst::ICMP_UGT && C.ult(BitWidth)) { in foldICmpIntrinsicWithConstant()
3143 if (Cmp.getPredicate() == ICmpInst::ICMP_UGT && C.ult(BitWidth)) { in foldICmpIntrinsicWithConstant()
3446 assert(KeptBits.ugt(0) && KeptBits.ult(BitWidth) && "unreachable"); in foldICmpWithTruncSignExtendedVal()
3452 assert(AddCst.ult(ICmpCst) && AddCst.isPowerOf2()); in foldICmpWithTruncSignExtendedVal()
3551 if (MaximalRepresentableShiftAmount.ult(MaximalPossibleTotalShiftAmoun in foldShiftIntoShiftInAnotherHandOfAndInICmp()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPInt.h1205 bool ult(const APInt &RHS) const { return compare(RHS) < 0; }
1213 bool ult(uint64_t RHS) const {
1313 bool uge(const APInt &RHS) const { return !ult(RHS); }
1321 bool uge(uint64_t RHS) const { return !ult(RHS); }
2173 return A.ult(B) ? A : B;
H A DAPSInt.h154 return IsUnsigned ? ult(RHS) : slt(RHS); in operator <()
/third_party/curl/docs/examples/
H A Dephiperfifo.c344 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument
348 (void)ult; in prog_cb()
H A Devhiperfifo.c322 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument
326 (void)ult; in prog_cb()
H A Dhiperfifo.c318 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument
322 (void)ult; in prog_cb()
H A Dghiper.c285 static int prog_cb(void *p, double dltotal, double dlnow, double ult, in prog_cb() argument
/third_party/node/deps/v8/src/codegen/loong64/
H A Dconstants-loong64.h581 ult = Uless,
600 case ult:
613 return ult;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86Subtarget.cpp134 if (CR->getUnsignedMax().ult(128)) in classifyGlobalReference()
/third_party/node/deps/v8/src/diagnostics/mips64/
H A Ddisasm-mips64.cc1170 Format(instr, "c.ult.'t 'fs, 'ft, 'Cc"); in DecodeTypeRegisterRsType()
1243 Format(instr, "cmp.ult.d 'fd, 'fs, 'ft"); in DecodeTypeRegisterLRsType()
1289 Format(instr, "cmp.ult.s 'fd, 'fs, 'ft"); in DecodeTypeRegisterWRsType()
/third_party/node/deps/v8/src/diagnostics/mips/
H A Ddisasm-mips.cc1098 Format(instr, "c.ult.'t 'fs, 'ft, 'Cc"); in DecodeTypeRegisterRsType()
1171 Format(instr, "cmp.ult.d 'fd, 'fs, 'ft"); in DecodeTypeRegisterLRsType()
1217 Format(instr, "cmp.ult.s 'fd, 'fs, 'ft"); in DecodeTypeRegisterWRsType()
/third_party/node/deps/v8/src/codegen/mips64/
H A Dconstants-mips64.h1101 ult = Uless,
1120 case ult:
1133 return ult;
/third_party/node/deps/v8/src/codegen/mips/
H A Dconstants-mips.h1052 ult = Uless,
1071 case ult:
1084 return ult;
/third_party/node/deps/v8/src/codegen/riscv64/
H A Dconstants-riscv64.h1142 ult = Uless,
1160 case ult:
1173 return ult;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
H A DConstantHoisting.cpp660 return LHS.ConstInt->getValue().ult(RHS.ConstInt->getValue()); in findBaseConstants()

Completed in 44 milliseconds

123