| /netbsd-src/external/gpl3/gdb/dist/sim/testsuite/mips/ |
| H A D | r6-fpu.s | 241 r6ck_3s cmp.ule.s, 0x0, 0x3f800000, 0x7fc00000, 0xffffffff 242 r6ck_3s cmp.ule.s, 0x0, 0x7fc00000, 0x7fc00000, 0xffffffff 243 r6ck_3s cmp.ule.s, 0x0, 0x3f800000, 0x3f800000, 0xffffffff 244 r6ck_3s cmp.ule.s, 0x0, 0x00000000, 0x3f800000, 0xffffffff 245 r6ck_3s cmp.ule.s, 0x0, 0xbf800000, 0x3f800000, 0xffffffff 246 r6ck_3s cmp.ule.s, 0x0, 0x3f800000, 0xbf800000, 0x0 247 r6ck_3s cmp.ule.s, 0x0, 0x3f800000, 0xff800000, 0x0 250 r6ck_3d cmp.ule.d, 0x0, 0x3ff0000000000000, 0x7ff8000000000000, 0xffffffffffffffff 251 r6ck_3d cmp.ule.d, 0x0, 0x7ff8000000000000, 0x7ff8000000000000, 0xffffffffffffffff 252 r6ck_3d cmp.ule.d, 0x0, 0x3ff0000000000000, 0x3ff0000000000000, 0xffffffffffffffff [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 399 return Lower.ule(V) && V.ult(Upper); in contains() 400 return Lower.ule(V) || V.ult(Upper); in contains() 411 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains() 415 return Other.getUpper().ule(Upper) || in contains() 416 Lower.ule(Other.getLower()); in contains() 418 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains() 484 if (Upper.ule(CR.Lower)) in intersectWith() 520 if (CR.Upper.ule(Lower)) in intersectWith() 530 if (CR.Upper.ule(Lower)) in intersectWith() 558 if (CR.Upper.ule(Lower)) { in intersectWith() [all …]
|
| H A D | ConstantFold.cpp | 284 if (ShAmt.ule(CSize - (ByteStart + ByteSize))) in ExtractConstantBytes() 307 if (ShAmt.ule(ByteStart)) in ExtractConstantBytes() 2053 case ICmpInst::ICMP_ULE: return ConstantInt::get(ResultTy, V1.ule(V2)); in ConstantFoldCompareInstruction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | ScalarEvolutionAliasAnalysis.cpp | 60 if (ASizeInt.ule(SE.getUnsignedRange(BA).getUnsignedMin()) && in alias() 74 if (BSizeInt.ule(SE.getUnsignedRange(AB).getUnsignedMin()) && in alias()
|
| H A D | BasicAliasAnalysis.cpp | 1122 if (VRightSize.hasValue() && Off.ule(INT32_MAX) && in aliasGEP() 1123 (Off + VRightSize.getValue()).ule(LSize)) { in aliasGEP()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
| H A D | int128.d | 709 bool ule(Cent c1, Cent c2) in ule() function 835 assert( ule(C1, C2) ); 840 assert( !ule(C2, C1) ); 845 assert( ule(C2, C2) );
|
| /netbsd-src/external/gpl3/binutils/dist/cpu/ |
| H A D | mep-fmax.cpu | 95 ("f" "u" "e" "ue" "l" "ul" "le" "ule" 257 (define-pmacro (fmax-ule-sem x y) (not (gt x y))) 287 (fmax-comp ule "" 0) 297 (fmax-comp ule i 1)
|
| /netbsd-src/external/gpl3/gdb.old/dist/cpu/ |
| H A D | mep-fmax.cpu | 95 ("f" "u" "e" "ue" "l" "ul" "le" "ule" 257 (define-pmacro (fmax-ule-sem x y) (not (gt x y))) 287 (fmax-comp ule "" 0) 297 (fmax-comp ule i 1)
|
| /netbsd-src/external/gpl3/gdb/dist/cpu/ |
| H A D | mep-fmax.cpu | 95 ("f" "u" "e" "ue" "l" "ul" "le" "ule" 257 (define-pmacro (fmax-ule-sem x y) (not (gt x y))) 287 (fmax-comp ule "" 0) 297 (fmax-comp ule i 1)
|
| /netbsd-src/external/gpl3/binutils.old/dist/cpu/ |
| H A D | mep-fmax.cpu | 95 ("f" "u" "e" "ue" "l" "ul" "le" "ule" 257 (define-pmacro (fmax-ule-sem x y) (not (gt x y))) 287 (fmax-comp ule "" 0) 297 (fmax-comp ule i 1)
|
| /netbsd-src/external/apache2/llvm/dist/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 ;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | KnownBits.cpp | 349 if (LHS.getMaxValue().ule(RHS.getMinValue())) in ugt() 367 Optional<bool> KnownBits::ule(const KnownBits &LHS, const KnownBits &RHS) { in ule() function in KnownBits
|
| H A D | APInt.cpp | 1141 if (i >= nbits || this->ule(testy)) { in sqrt() 1149 if (x_old.ule(x_new)) in sqrt() 1164 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 1243 bool ule(const APInt &RHS) const { return compare(RHS) <= 0; } 1251 bool ule(uint64_t RHS) const { return !ugt(RHS); } 1275 bool ugt(const APInt &RHS) const { return !ule(RHS); }
|
| H A D | APSInt.h | 162 return IsUnsigned ? ule(RHS) : sle(RHS);
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | double-int.h | 176 bool ule (double_int b) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | KnownBits.h | 359 static Optional<bool> ule(const KnownBits &LHS, const KnownBits &RHS);
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | double-int.h | 176 bool ule (double_int b) const;
|
| H A D | double-int.cc | 1334 double_int::ule (double_int b) const in ule() function in double_int
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/vim/syntax/ |
| H A D | llvm.vim | 35 syn keyword llvmStatement store sub switch trunc udiv ueq uge ugt uitofp ule ult
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/ |
| H A D | MicroMipsInstrFPU.td | 327 def C_ULE_#NAME#_MM : MMRel, C_COND_FT<"ule", TypeStr, RC, itin>, 329 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 | 261 CMP_CONDN_DESC_BASE<"ule", Typestr, FGROpnd, Itin, 263 MipsR6Arch<!strconcat("cmp.ule.", Typestr)>,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 3202 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant() 3224 if (Pred == ICmpInst::ICMP_ULT && C.uge(1) && C.ule(BitWidth)) { in foldICmpIntrinsicWithConstant() 3643 if (NewShAmtSplat && NewShAmtSplat->getUniqueInteger().ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp() 3657 if (AdjNewShAmt.ule(MinLeadZero)) in foldShiftIntoShiftInAnotherHandOfAndInICmp() 3936 bool HasNUW = BO0->hasNoUnsignedWrap() && C3->getValue().ule(AP1); in foldICmpBinOp() 3942 bool HasNUW = BO1->hasNoUnsignedWrap() && C3->getValue().ule(AP2); in foldICmpBinOp() 5164 if (Op0Max.ule(Op1Min)) // A >u B -> false if max(A) <= max(B) in foldICmpUsingKnownBits() 5242 if (Op0Max.ule(Op1Min)) // A <=u B -> true if max(A) <= min(B) in foldICmpUsingKnownBits()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/AsmParser/ |
| H A D | LLLexer.cpp | 723 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
|