Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFixedPoint.cpp105 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 DKnownBits.cpp502 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 DAPInt.cpp829 if (A.ugt(B)) { in GreatestCommonDivisor()
1950 Overflow = Res.ugt(*this); in usub_ov()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp271 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 DIntegralAP.h112 return getValue().ugt(RHS.getValue());
229 if (V1.ugt(V2)) in compare()
H A DInterpBuiltin.cpp1420 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 DAPInt.h476 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 DAPSInt.h173 return IsUnsigned ? ugt(RHS) : sgt(RHS);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp138 for (; LocalNumMergedCases.ugt(0) && Idx < E; ++Idx) in FixPhis()
464 if ((Pop += N).ugt(MaxPop)) { in ProcessSwitchInst()
H A DFunctionComparator.cpp79 if (L.ugt(R)) in cmpAPInts()
81 if (R.ugt(L)) in cmpAPInts()
H A DEvaluator.cpp393 if (Len.ugt(64 * 1024)) { in EvaluateBlock()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineOrder.cpp169 return LHS.ugt(RHS); in isMoreDesirable()
H A DLoads.cpp324 if (EltSize.ugt(Step->getAPInt().abs())) in isDereferenceableAndAlignedInLoop()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h450 LLVM_ABI static std::optional<bool> ugt(const KnownBits &LHS,
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPURegBankCombiner.cpp212 if (OpcodeTriple.Med == AMDGPU::G_AMDGPU_UMED3 && K0->Value.ugt(K1->Value)) in matchIntMinMaxToMed3()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DSPIR.cpp395 while (Value.ugt(0)) { in getInlineSpirvConstant()
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/
H A DCSKYISelLowering.cpp1371 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 DLiteralSupport.cpp1696 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 DTypePromotion.cpp370 if (OverflowConst == 0 || OverflowConst.ugt(ICmpConst)) { in isSafeWrap()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp907 .ugt(APInt::getSignedMinValue(BitWidth))) in combineRangeChecks()
H A DSeparateConstOffsetFromGEP.cpp1448 Offset.ugt(ObjectSize)) { in swapGEPOperand()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp565 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift()
1398 } else if (C1->ugt(ShAmtC)) { in visitLShr()
H A DInstCombineLoadStoreAlloca.cpp862 .ugt(MaxSize)) in isObjectSizeLessThanOrEq()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp746 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp252 IMPLEMENT_INTEGER_ICMP(ugt,Ty); in executeICMP_UGT()
253 IMPLEMENT_VECTOR_INTEGER_ICMP(ugt,Ty); in executeICMP_UGT()

123