Home
last modified time | relevance | path

Searched refs:ule (Results 1 – 25 of 55) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp269 return getUnsignedMax().ule(Other.getUnsignedMin()); in icmp()
522 return Lower.ule(V) && V.ult(Upper); in contains()
523 return Lower.ule(V) || V.ult(Upper); in contains()
534 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
538 return Other.getUpper().ule(Upper) || in contains()
539 Lower.ule(Other.getLower()); in contains()
541 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
607 if (Upper.ule(CR.Lower)) in intersectWith()
643 if (CR.Upper.ule(Lower)) in intersectWith()
653 if (CR.Upper.ule(Lower)) in intersectWith()
[all …]
H A DInstructions.cpp3823 return LHS.ule(RHS); in compare()
3891 return KnownBits::ule(LHS, RHS); in compare()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp84 ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias()
99 BSizeInt.ule(SE.getUnsignedRange(AB).getUnsignedMin()) && in alias()
H A DBasicAliasAnalysis.cpp1194 Off.ule(INT32_MAX) && (Off + VRightSize.getValue()).ule(LSize)) { in aliasGEP()
1342 return Var.Scale.ule( in aliasGEP()
H A DLoads.cpp131 if (!Size.ule(V->getPointerDereferenceableBytes(DL, CheckForNonNull, in isDereferenceableAndAlignedPointer()
H A DInstructionSimplify.cpp2340 C->ule(X->getType()->getScalarSizeInBits())) { in simplifyOrInst()
3195 C1->ule(*C2)) || in simplifyICmpWithBinOpOnLHS()
3197 C1->ule(APInt(C2->getBitWidth(), 1) << *C2)) || in simplifyICmpWithBinOpOnLHS()
3199 (APInt(C1->getBitWidth(), 1) << *C1).ule(*C2))) { in simplifyICmpWithBinOpOnLHS()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h1150 bool ule(const APInt &RHS) const { return compare(RHS) <= 0; } in ule() function
1158 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() function
1182 bool ugt(const APInt &RHS) const { return !ule(RHS); } in ugt()
H A DAPSInt.h177 return IsUnsigned ? ule(RHS) : sle(RHS);
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMicroMipsInstrFPU.td341 def C_ULE_#NAME#_MM : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
343 let BaseOpcode = "c.ule."#NAME;
H A DMipsInstrFPU.td318 def C_ULE_#NAME : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>,
320 let BaseOpcode = "c.ule."#NAME;
883 def : MipsInstAlias<!strconcat("c.ule.", TypeStr, " $fs, $ft"),
H A DMips32r6InstrInfo.td264 CMP_CONDN_DESC_BASE<"ule", Typestr, FGROpnd, Itin,
266 MipsR6Arch<!strconcat("cmp.ule.", Typestr)>,
H A DMicroMips32r6InstrInfo.td976 !strconcat("cmp.ule.", Typestr), format, FIELD_CMP_COND_ULE>,
977 CMP_CONDN_DESC_BASE<"ule", Typestr, FGROpnd, Itin, setule>, HARDFLOAT,
H A DMipsSEISelLowering.cpp806 if ((Val - Floor).ule(Ceil - Val)) { in shouldTransformMulToShiftsAddsSubs()
854 if ((C - Floor).ule(Ceil - C)) { in genConstMult()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DKnownBits.h462 LLVM_ABI static std::optional<bool> ule(const KnownBits &LHS,
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp504 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt()
522 std::optional<bool> KnownBits::ule(const KnownBits &LHS, const KnownBits &RHS) { in ule() function in KnownBits
H A DAPInt.cpp1242 if (i >= nbits || this->ule(testy)) { in sqrt()
1250 if (x_old.ule(x_new)) in sqrt()
1265 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1798 if (Cmp.getPredicate() == ICmpInst::ICMP_SGT && C1.ule(~*C2) && in foldICmpAndConstConst()
1804 (C1 - 1).ule(~*C2) && C2->isNegatedPowerOf2() && !C2->isSignMask()) in foldICmpAndConstConst()
2012 C.ule(*Msk)) { in foldICmpAndConstant()
4247 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant()
4269 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant()
4839 if (NewShAmtSplat && NewShAmtSplat->getUniqueInteger().ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp()
4853 if (AdjNewShAmt.ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp()
5371 A, C3, "", Op0HasNUW && Diff.ule(*AP1), Op0HasNSW); in foldICmpBinOp()
5377 C, C3, "", Op1HasNUW && Diff.ule(*AP2), Op1HasNSW); in foldICmpBinOp()
H A DInstCombineSimplifyDemanded.cpp434 C->ule(DemandedMask.countl_zero())) { in SimplifyDemandedUseBits()
/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.cpp280 IMPLEMENT_INTEGER_ICMP(ule,Ty); in executeICMP_ULE()
281 IMPLEMENT_VECTOR_INTEGER_ICMP(ule,Ty); in executeICMP_ULE()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp1218 if (!LRange.getUnsignedMax().ule(*RHS)) in processAnd()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcInstrAliases.td394 defm : fp_cond_alias<"ule", 0b1110>;
/freebsd/sys/kern/
H A Dsched_ule.c3469 SYSCTL_NODE(_kern_sched, OID_AUTO, ule, CTLFLAG_RD | CTLFLAG_MPSAFE, 0,
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DUtils.cpp1065 return GetICmpResultCst(LHSCst->ule(*RHSCst)); in ConstantFoldICmp()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSCCPSolver.cpp249 if (LRange.getUnsignedMax().ule(*RHSC)) in simplifyInstruction()

123