| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
| H A D | int128.d | 667 bool ugt(Cent c1, Cent c2) in ugt() function 683 return !ugt(c2, c1); in uge() 697 return ugt(c2, c1); in ult() 711 return !ugt(c1, c2); in ule() 832 assert( ugt(C1, C0) ); 837 assert( !ugt(C0, C1) ); 842 assert( !ugt(C1, C1) ); 847 assert( ugt(C10_3, C10_1) ); 848 assert( ugt(C11_3, C10_3) ); 849 assert( !ugt(C9_3, C10_3) ); [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | APFixedPoint.cpp | 91 if (ThisVal.ugt(OtherVal)) in compare() 98 else if (ThisVal.ugt(OtherVal)) in compare() 106 else if (ThisVal.ugt(OtherVal)) in compare() 432 *Overflow = Result.isNegative() || Result.ugt(DstMax); in convertToInt() 434 *Overflow = Result.ugt(DstMax); in convertToInt()
|
| H A D | KnownBits.cpp | 347 Optional<bool> KnownBits::ugt(const KnownBits &LHS, const KnownBits &RHS) { in ugt() function in KnownBits 352 if (LHS.getMinValue().ugt(RHS.getMaxValue())) in ugt() 358 if (Optional<bool> IsUGT = ugt(RHS, LHS)) in uge() 364 return ugt(RHS, LHS); in ult()
|
| H A D | APInt.cpp | 750 if (A.ugt(B)) { in GreatestCommonDivisor() 1977 Overflow = Res.ugt(*this); in usub_ov() 2032 Overflow = ShAmt.ugt(countLeadingZeros()); in ushl_ov()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 319 return Lower.ugt(Upper) && !Upper.isNullValue(); in isWrappedSet() 323 return Lower.ugt(Upper); in isUpperWrapped() 350 return APInt::getMaxValue(getBitWidth()).ugt(MaxSize - 1); in isSizeLargerThan() 352 return (Upper - Lower).ugt(MaxSize); in isSizeLargerThan() 596 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith() 642 APInt U = CR.Upper.ugt(Upper) ? CR.Upper : Upper; in unionWith() 1262 if (MinLHS.ugt(-MinAbsRHS)) in srem() 1340 if (Other_umax.ugt(max.countLeadingZeros())) in shl() 1563 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow() 1565 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| H A D | APInt.h | 488 return ugt(Limit) ? Limit : getZExtValue(); 1251 bool ule(uint64_t RHS) const { return !ugt(RHS); } 1275 bool ugt(const APInt &RHS) const { return !ule(RHS); } 1283 bool ugt(uint64_t RHS) const { 2191 return A.ugt(B) ? A : B;
|
| H A D | APSInt.h | 158 return IsUnsigned ? ugt(RHS) : sgt(RHS);
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | fixed-value.c | 191 if (a.ugt (max)) in fixed_saturate1() 251 if (a_high.ugt (max_r) in fixed_saturate2() 253 a_low.ugt (max_s))) in fixed_saturate2() 277 a_low.ugt (max_s))) in fixed_saturate2()
|
| H A D | double-int.h | 177 bool ugt (double_int b) const;
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | fixed-value.cc | 191 if (a.ugt (max)) in fixed_saturate1() 251 if (a_high.ugt (max_r) in fixed_saturate2() 253 a_low.ugt (max_s))) in fixed_saturate2() 277 a_low.ugt (max_s))) in fixed_saturate2()
|
| H A D | double-int.h | 177 bool ugt (double_int b) const;
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | TypePromotion.cpp | 376 if (Total.ugt(Max.zext(Total.getBitWidth()))) in isSafeWrap() 379 if (Total.zext(Max.getBitWidth()).ugt(Max)) in isSafeWrap() 381 } else if (Total.ugt(Max)) in isSafeWrap()
|
| H A D | StackProtector.cpp | 211 if (!GEP->accumulateConstantOffset(DL, Offset) || Offset.ugt(MaxOffset)) in HasAddressTaken()
|
| /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/Target/AMDGPU/ |
| H A D | AMDGPURegBankCombiner.cpp | 127 if (OpcodeTriple.Med == AMDGPU::G_AMDGPU_UMED3 && K0_Imm.ugt(K1_Imm)) in matchIntMinMaxToMed3()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| H A D | KnownBits.h | 350 static Optional<bool> ugt(const KnownBits &LHS, const KnownBits &RHS);
|
| /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/Transforms/Utils/ |
| H A D | FunctionComparator.cpp | 72 if (L.ugt(R)) in cmpAPInts() 74 if (R.ugt(L)) in cmpAPInts()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | README.txt | 530 %tmp3 = fcmp ugt double %x, %y ; <i1> [#uses=1] 555 %Cond = fcmp ugt double %D, -0.000000e+00 ; <i1> [#uses=1]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineAndOrXor.cpp | 765 if (C1->ugt(*C2)) in foldAndOrOfEqualityCmpsWithConstants() 879 Pred == ICmpInst::ICMP_ULT && I1->ugt(*I01) && I01->shl(1) == *I1)) in foldSignedTruncationCheck() 1345 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue()); in foldAndOfICmps() 2399 LAddC->getValue().ugt(LHSC->getValue()) && in foldOrOfICmps() 2400 RAddC->getValue().ugt(LHSC->getValue())) { in foldOrOfICmps() 2420 RangeDiff.ugt(LHSC->getValue())) { in foldOrOfICmps() 2548 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue()); in foldOrOfICmps()
|
| H A D | InstCombineShifts.cpp | 461 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift() 1086 if (ShOp1->ugt(ShAmt)) { in visitLShr()
|
| H A D | InstCombineCompares.cpp | 2117 assert(C.ugt(0) && "ult 0 should have been eliminated"); in foldICmpShlConstant() 3490 assert(BitWidth.ugt(MaskedBits) && "shifts should leave some bits untouched"); in foldICmpWithTruncSignExtendedVal() 3494 assert(KeptBits.ugt(0) && KeptBits.ult(BitWidth) && "unreachable"); in foldICmpWithTruncSignExtendedVal() 5090 if (Op0Max.ult(Op1Min) || Op0Min.ugt(Op1Max)) in foldICmpUsingKnownBits() 5162 if (Op0Min.ugt(Op1Max)) // A >u B -> true if min(A) > max(B) in foldICmpUsingKnownBits() 5244 if (Op0Min.ugt(Op1Max)) // A <=u B -> false if min(A) > max(B) in foldICmpUsingKnownBits()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 1206 IntOverflowOccurred |= Val.ugt(MaxVal.zext(Val.getBitWidth())); in GetFixedPointValue() 1209 IntOverflowOccurred |= Val.zext(MaxVal.getBitWidth()).ugt(MaxVal); in GetFixedPointValue()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | GuardWidening.cpp | 692 .ugt(APInt::getSignedMinValue(BitWidth))) in combineRangeChecks()
|
| H A D | SeparateConstOffsetFromGEP.cpp | 1365 Offset.ugt(ObjectSize)) { in swapGEPOperand()
|