| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFixedPoint.cpp | 105 if (ThisVal.ugt(OtherVal)) in compare() 112 else if (ThisVal.ugt(OtherVal)) in compare() 120 else if (ThisVal.ugt(OtherVal)) in compare() 486 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt() 488 *Overflow = Result.ugt(DstMax); in convertToInt()
|
| H A D | KnownBits.cpp | 502 std::optional<bool> KnownBits::ugt(const KnownBits &LHS, const KnownBits &RHS) { in ugt() function in KnownBits 507 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt() 513 if (std::optional<bool> IsUGT = ugt(RHS, LHS)) in uge() 519 return ugt(RHS, LHS); in ult()
|
| H A D | APInt.cpp | 829 if (A.ugt(B)) { in GreatestCommonDivisor() 1950 Overflow = Res.ugt(*this); in usub_ov()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 271 return getUnsignedMin().ugt(Other.getUnsignedMax()); in icmp() 433 return Lower.ugt(Upper) && !Upper.isZero(); in isWrappedSet() 437 return Lower.ugt(Upper); in isUpperWrapped() 463 return MaxSize == 0 || APInt::getMaxValue(getBitWidth()).ugt(MaxSize - 1); in isSizeLargerThan() 465 return (Upper - Lower).ugt(MaxSize); in isSizeLargerThan() 719 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith() 765 APInt U = CR.Upper.ugt(Upper) ? CR.Upper : Upper; in unionWith() 1510 if (MinLHS.ugt(-MinAbsRHS)) in srem() 1678 if (OtherMax.ugt(Max.countl_zero())) in shl() 2150 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | IntegralAP.h | 112 return getValue().ugt(RHS.getValue()); 229 if (V1.ugt(V2)) in compare()
|
| H A D | InterpBuiltin.cpp | 1420 unsigned CarryInBit = CarryIn.ugt(0) ? 1 : 0; in interp__builtin_ia32_addcarry_subborrow() 1522 NumElems.ugt(Descriptor::MaxArrayElemBytes / ElemSize.getQuantity())) { in interp__builtin_operator_new() 1533 bool IsArray = NumElems.ugt(1); in interp__builtin_operator_new() 1852 if (Size.ugt(RemainingDestBytes) || Size.ugt(RemainingSrcBytes)) { in interp__builtin_memcpy() 1856 << Move << WChar << (Size.ugt(RemainingSrcBytes) ? 1 : 2) in interp__builtin_memcpy()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 476 return ugt(Limit) ? Limit : getZExtValue(); 1158 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() 1182 bool ugt(const APInt &RHS) const { return !ule(RHS); } in ugt() function 1190 bool ugt(uint64_t RHS) const { in ugt() function 2264 return A.ugt(B) ? A : B;
|
| H A D | APSInt.h | 173 return IsUnsigned ? ugt(RHS) : sgt(RHS);
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LowerSwitch.cpp | 138 for (; LocalNumMergedCases.ugt(0) && Idx < E; ++Idx) in FixPhis() 464 if ((Pop += N).ugt(MaxPop)) { in ProcessSwitchInst()
|
| H A D | FunctionComparator.cpp | 79 if (L.ugt(R)) in cmpAPInts() 81 if (R.ugt(L)) in cmpAPInts()
|
| H A D | Evaluator.cpp | 393 if (Len.ugt(64 * 1024)) { in EvaluateBlock()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineOrder.cpp | 169 return LHS.ugt(RHS); in isMoreDesirable()
|
| H A D | Loads.cpp | 324 if (EltSize.ugt(Step->getAPInt().abs())) in isDereferenceableAndAlignedInLoop()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | KnownBits.h | 450 LLVM_ABI static std::optional<bool> ugt(const KnownBits &LHS,
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPURegBankCombiner.cpp | 212 if (OpcodeTriple.Med == AMDGPU::G_AMDGPU_UMED3 && K0->Value.ugt(K1->Value)) in matchIntMinMaxToMed3()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | SPIR.cpp | 395 while (Value.ugt(0)) { in getInlineSpirvConstant()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
| H A D | CSKYISelLowering.cpp | 1371 if (Imm.ugt(0xffff) && ((Imm - 2).isPowerOf2() || (Imm - 4).isPowerOf2()) && in decomposeMulByConstant() 1374 if (Imm.ugt(0xffff) && (Imm - 8).isPowerOf2() && Subtarget.has2E3()) in decomposeMulByConstant()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 1696 IntOverflowOccurred |= Val.ugt(MaxVal.zext(Val.getBitWidth())); in GetFixedPointValue() 1699 IntOverflowOccurred |= Val.zext(MaxVal.getBitWidth()).ugt(MaxVal); in GetFixedPointValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 370 if (OverflowConst == 0 || OverflowConst.ugt(ICmpConst)) { in isSafeWrap()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | GuardWidening.cpp | 907 .ugt(APInt::getSignedMinValue(BitWidth))) in combineRangeChecks()
|
| H A D | SeparateConstOffsetFromGEP.cpp | 1448 Offset.ugt(ObjectSize)) { in swapGEPOperand()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineShifts.cpp | 565 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift() 1398 } else if (C1->ugt(ShAmtC)) { in visitLShr()
|
| H A D | InstCombineLoadStoreAlloca.cpp | 862 .ugt(MaxSize)) in isObjectSizeLessThanOrEq()
|
| /freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 746 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Execution.cpp | 252 IMPLEMENT_INTEGER_ICMP(ugt,Ty); in executeICMP_UGT() 253 IMPLEMENT_VECTOR_INTEGER_ICMP(ugt,Ty); in executeICMP_UGT()
|