Home
last modified time | relevance | path

Searched refs:ugt (Results 1 – 25 of 43) sorted by relevance

12

/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dext-trunc-greater.c6 short ugt(unsigned char x) in ugt() function
Dbinops-same-args.c21 u32 ugt(u32 a) { return a > a; } in ugt() function
/third_party/ltp/tools/sparse/sparse-src/validation/
Dtautological-compare.c13 u32 ugt(u32 a) { return a > a; } in ugt() function
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.def81 X(Ugt, "ugt") \
94 X(Ugt, Ult, "ugt") \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp313 return Lower.ugt(Upper) && !Upper.isNullValue(); in isWrappedSet()
317 return Lower.ugt(Upper); in isUpperWrapped()
344 return APInt::getMaxValue(getBitWidth()).ugt(MaxSize - 1); in isSizeLargerThan()
346 return (Upper - Lower).ugt(MaxSize); in isSizeLargerThan()
575 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith()
621 APInt U = CR.Upper.ugt(Upper) ? CR.Upper : Upper; in unionWith()
1179 if (MinLHS.ugt(-MinAbsRHS)) in srem()
1227 if (Other_umax.ugt(max.countLeadingZeros())) in shl()
1439 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1441 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h487 return ugt(Limit) ? Limit : getZExtValue();
1251 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule()
1275 bool ugt(const APInt &RHS) const { return !ule(RHS); } in ugt() function
1283 bool ugt(uint64_t RHS) const { in ugt() function
2178 return A.ugt(B) ? A : B; in umax()
DAPSInt.h158 return IsUnsigned ? ugt(RHS) : sgt(RHS);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h1059 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule()
1083 bool ugt(const APInt &RHS) const { return !ult(RHS) && !eq(RHS); } in ugt() function
1091 bool ugt(uint64_t RHS) const { in ugt() function
1799 return A.ugt(B) ? A : B; in umax()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTypePromotion.cpp374 if (Total.ugt(Max.zext(Total.getBitWidth()))) in isSafeWrap()
377 if (Total.zext(Max.getBitWidth()).ugt(Max)) in isSafeWrap()
379 } else if (Total.ugt(Max)) in isSafeWrap()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_fcmp.pnacl.ll186 %cmp = fcmp ugt float %a, %b
196 %cmp = fcmp ugt double %a, %b
506 %cmp = fcmp ugt float %a, %b
516 %cmp = fcmp ugt double %a, %b
749 %res.trunc = fcmp ugt <4 x float> %a, %b
Dtest_icmp_i1vec.ll23 %cmp = icmp ugt <16 x i1> %a.trunc, %b.trunc
113 %cmp = icmp ugt <8 x i1> %a.trunc, %b.trunc
203 %cmp = icmp ugt <4 x i1> %a.trunc, %b.trunc
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFunctionComparator.cpp69 if (L.ugt(R)) return 1; in cmpAPInts()
70 if (R.ugt(L)) return -1; in cmpAPInts()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp826 if (C1->ugt(*C2)) in foldAndOrOfEqualityCmpsWithConstants()
940 Pred == ICmpInst::ICMP_ULT && I1->ugt(*I01) && I01->shl(1) == *I1)) in foldSignedTruncationCheck()
1274 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue()); in foldAndOfICmps()
2224 LAddC->getValue().ugt(LHSC->getValue()) && in foldOrOfICmps()
2225 RAddC->getValue().ugt(LHSC->getValue())) { in foldOrOfICmps()
2245 RangeDiff.ugt(LHSC->getValue())) { in foldOrOfICmps()
2366 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue()); in foldOrOfICmps()
DInstCombineShifts.cpp453 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift()
1095 if (ShOp1->ugt(ShAmt)) { in visitLShr()
DInstCombineCompares.cpp2093 assert(C.ugt(0) && "ult 0 should have been eliminated"); in foldICmpShlConstant()
3442 assert(BitWidth.ugt(MaskedBits) && "shifts should leave some bits untouched"); in foldICmpWithTruncSignExtendedVal()
3446 assert(KeptBits.ugt(0) && KeptBits.ult(BitWidth) && "unreachable"); in foldICmpWithTruncSignExtendedVal()
5013 if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max)) { in foldICmpUsingKnownBits()
5087 if (Op0Min.ugt(Op1Max)) // A >u B -> true if min(A) > max(B) in foldICmpUsingKnownBits()
5169 if (Op0Min.ugt(Op1Max)) // A <=u B -> false if min(A) > max(B) in foldICmpUsingKnownBits()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DREADME.txt591 %tmp3 = fcmp ugt double %x, %y ; <i1> [#uses=1]
616 %Cond = fcmp ugt double %D, -0.000000e+00 ; <i1> [#uses=1]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DGuardWidening.cpp694 .ugt(APInt::getSignedMinValue(BitWidth))) in combineRangeChecks()
DSeparateConstOffsetFromGEP.cpp1308 Offset.ugt(ObjectSize)) { in swapGEPOperand()
DSROA.cpp762 if (GEPOffset.ugt(AllocSize)) in visitGetElementPtrInst()
815 if (Size > AllocSize || Offset.ugt(AllocSize - Size)) { in visitStoreInst()
1489 if (NumSkippedElements.ugt(VecTy->getNumElements())) in getNaturalGEPRecursively()
1501 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DLegalizerHelper.cpp3104 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant()
3106 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant()
3122 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant()
3124 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant()
3142 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant()
3145 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp757 if (A.ugt(B)) { in GreatestCommonDivisor()
1978 Overflow = Res.ugt(*this); in usub_ov()
2033 Overflow = ShAmt.ugt(countLeadingZeros()); in ushl_ov()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLLexer.cpp710 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1972 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant()
1974 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant()
1993 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant()
1995 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant()
2014 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant()
2017 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemoryBuiltins.cpp684 if (Size.ugt(MaxSize)) in visitCallSite()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DREADME.txt1315 %687 = icmp ugt i32 %686, 254 ; <i1> [#uses=1]
1570 %cmp2 = icmp ugt i32 %sub, 9
1864 %cmp = icmp ugt i32 %add, %mul
2160 %cmp = icmp ugt i32 %and, 1

12