| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 451 return Lower.ule(V) && V.ult(Upper); in contains() 452 return Lower.ule(V) || V.ult(Upper); in contains() 463 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains() 467 return Other.getUpper().ule(Upper) || in contains() 468 Lower.ule(Other.getLower()); in contains() 470 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains() 536 if (Upper.ule(CR.Lower)) in intersectWith() 572 if (CR.Upper.ule(Lower)) in intersectWith() 582 if (CR.Upper.ule(Lower)) in intersectWith() 610 if (CR.Upper.ule(Lower)) { in intersectWith() [all …]
|
| H A D | ConstantFold.cpp | 283 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes() 306 if (ShAmt.ule(ByteStart)) in ExtractConstantBytes()
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionAliasAnalysis.cpp | 71 ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 86 BSizeInt.ule(SE.getUnsignedRange(AB).getUnsignedMin()) && in alias()
|
| H A D | BasicAliasAnalysis.cpp | 1113 if (VRightSize.hasValue() && Off.ule(INT32_MAX) && in aliasGEP() 1114 (Off + VRightSize.getValue()).ule(LSize)) { in aliasGEP() 1209 return Var.Scale.ule( in aliasGEP()
|
| H A D | InstructionSimplify.cpp | 2404 C->ule(X->getType()->getScalarSizeInBits())) { in simplifyOrInst() 3204 C1->ule(*C2)) || in simplifyICmpWithBinOpOnLHS() 3206 C1->ule(APInt(C2->getBitWidth(), 1) << *C2)) || in simplifyICmpWithBinOpOnLHS() 3208 (APInt(C1->getBitWidth(), 1) << *C1).ule(*C2))) { in simplifyICmpWithBinOpOnLHS()
|
| H A D | ScalarEvolution.cpp | 2702 ConstAdd.ule(C1)) { in getAddExpr() 2711 ConstAdd.abs().ule(C1.abs())) { in getAddExpr() 6191 if (isa<SCEVConstant>(C) && cast<SCEVConstant>(C)->getAPInt().ule(1)) in createNodeForSelectOrPHIInstWithICmpInstCond() 11312 if (MatchBinaryAddToConst(RHS, LHS, C2, C1, SCEV::FlagNUW) && C1.ule(C2)) in isKnownPredicateViaNoOverflow() 12792 return getUnsignedRangeMax(applyLoopGuards(RHS, L)).ule(Limit); in howManyLessThans()
|
| /openbsd-src/gnu/llvm/llvm/utils/ |
| H A D | llvm.grm | 64 IPredicates ::= eq | ne | slt | sgt | sle | sge | ult | ugt | ule | uge ; 67 | ult | ugt | ule | uge | true | false ;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1128 bool ule(const APInt &RHS) const { return compare(RHS) <= 0; } in ule() function 1136 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() function 1160 bool ugt(const APInt &RHS) const { return !ule(RHS); } in ugt()
|
| H A D | APSInt.h | 176 return IsUnsigned ? ule(RHS) : sle(RHS);
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | KnownBits.cpp | 349 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt() 367 std::optional<bool> KnownBits::ule(const KnownBits &LHS, const KnownBits &RHS) { in ule() function in KnownBits
|
| H A D | APInt.cpp | 1204 if (i >= nbits || this->ule(testy)) { in sqrt() 1212 if (x_old.ule(x_new)) in sqrt() 1227 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | KnownBits.h | 391 static std::optional<bool> ule(const KnownBits &LHS, const KnownBits &RHS);
|
| /openbsd-src/gnu/llvm/llvm/utils/vim/syntax/ |
| H A D | llvm.vim | 36 syn keyword llvmStatement uitofp ule ult umax umin une uno unreachable unwind
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | MicroMipsInstrFPU.td | 341 def C_ULE_#NAME#_MM : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>, 343 let BaseOpcode = "c.ule."#NAME;
|
| H A D | MipsInstrFPU.td | 318 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 D | Mips32r6InstrInfo.td | 263 CMP_CONDN_DESC_BASE<"ule", Typestr, FGROpnd, Itin, 265 MipsR6Arch<!strconcat("cmp.ule.", Typestr)>,
|
| H A D | MicroMips32r6InstrInfo.td | 976 !strconcat("cmp.ule.", Typestr), format, FIELD_CMP_COND_ULE>, 977 CMP_CONDN_DESC_BASE<"ule", Typestr, FGROpnd, Itin, setule>, HARDFLOAT,
|
| H A D | MipsSEISelLowering.cpp | 761 if ((Val - Floor).ule(Ceil - Val)) { in shouldTransformMulToShiftsAddsSubs() 809 if ((C - Floor).ule(Ceil - C)) { in genConstMult()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 3447 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant() 3469 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant() 3893 if (NewShAmtSplat && NewShAmtSplat->getUniqueInteger().ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp() 3907 if (AdjNewShAmt.ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp() 4240 bool HasNUW = BO0->hasNoUnsignedWrap() && Diff.ule(*AP1); in foldICmpBinOp() 4247 bool HasNUW = BO1->hasNoUnsignedWrap() && Diff.ule(*AP2); in foldICmpBinOp() 5664 if (Op0Max.ule(Op1Min)) // A >u B -> false if max(A) <= max(B) in foldICmpUsingKnownBits() 5711 if (Op0Max.ule(Op1Min)) // A <=u B -> true if max(A) <= min(B) in foldICmpUsingKnownBits()
|
| H A D | InstCombineSimplifyDemanded.cpp | 396 C->ule(DemandedMask.countLeadingZeros())) { in SimplifyDemandedUseBits()
|
| /openbsd-src/gnu/llvm/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 669 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/ |
| H A D | CorrelatedValuePropagation.cpp | 1109 if (!LRange.getUnsignedMax().ule(RHS->getValue())) in processAnd()
|
| /openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | Execution.cpp | 280 IMPLEMENT_INTEGER_ICMP(ule,Ty); in executeICMP_ULE() 281 IMPLEMENT_VECTOR_INTEGER_ICMP(ule,Ty); in executeICMP_ULE()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Sparc/ |
| H A D | SparcInstrAliases.td | 343 defm : fp_cond_alias<"ule", 0b1110>;
|
| /openbsd-src/gnu/usr.bin/binutils/cpu/ |
| H A D | frv.cpu | 1726 "eq" "ue" "ge" "uge" "le" "ule" "o" "ra") 5379 (conditional-branch-f fb ule OP_07 Fule "float branch unordered, less or equal") 5492 (conditional-branch-cclr fb ule F OP_0E OPE3_06 Fule FR-ACCESS "float branch unordered, less or equ… 5584 (conditional-branch-ctrlr fcb ule F OP_0E OPE3_07 Fule FR-ACCESS "float branch unordered, less or e… 5778 (trap-r ft ule F OP_04 OPE4_1 Fule FR-ACCESS "float trap unordered less or equal") 5860 (trap-immed fti ule F OP_1D Fule FR-ACCESS "float trap unordered less or equal") 6038 (check-float-condition-code fck ule OP_09 Fule "check float cc unordered less or equal") 6150 (conditional-check-float-condition-code cfck ule OP_6A OPE4_1 Fule "check float cc unordered less o…
|