/external/llvm/lib/Transforms/Utils/ |
D | CmpInstAnalysis.cpp | 52 case ICmpInst::ICMP_UGE: return 3; // 011 in getICmpCode() 80 case 3: NewICmpPred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break; in getICmpValue()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 136 case ICmpInst::ICMP_UGE: in isSignBitCheck() 830 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE) in FoldICmpAddOpCst() 979 ICmpInst::ICMP_UGE, X, LoBound); in FoldICmpDivCst() 993 ICmpInst::ICMP_UGE, X, HiBound); in FoldICmpDivCst() 1010 return new ICmpInst(ICmpInst::ICMP_UGE, X, HiBound); in FoldICmpDivCst() 1156 return getICmp(I.ICMP_UGE, A, ConstantInt::get(A->getType(), Shift)); in FoldICmpCstShrCst() 1195 return getICmp(I.ICMP_UGE, A, in FoldICmpCstShlCst() 1310 return new ICmpInst(ICmpInst::ICMP_UGE, LHSI->getOperand(0), XorCst); in visitICmpInstWithInstAndIntCst() 1613 else if (Pred == ICmpInst::ICMP_UGE) in visitICmpInstWithInstAndIntCst() 1621 if (Pred == ICmpInst::ICMP_UGE) in visitICmpInstWithInstAndIntCst() [all …]
|
D | InstCombineAndOrXor.cpp | 971 if (LHSCC == ICmpInst::ICMP_UGE || LHSCC == ICmpInst::ICMP_ULE || in FoldAndOfICmps() 972 RHSCC == ICmpInst::ICMP_UGE || RHSCC == ICmpInst::ICMP_ULE || in FoldAndOfICmps() 1918 ICmpInst::ICMP_UGE, in FoldOrOfICmps() 1955 if (LHSCC == ICmpInst::ICMP_UGE || LHSCC == ICmpInst::ICMP_ULE || in FoldOrOfICmps() 1956 RHSCC == ICmpInst::ICMP_UGE || RHSCC == ICmpInst::ICMP_ULE || in FoldOrOfICmps()
|
D | InstCombineCalls.cpp | 658 Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; in SimplifyX86vpcom()
|
D | InstructionCombining.cpp | 2126 IPred == ICmpInst::ICMP_SLE || IPred == ICmpInst::ICMP_UGE || in visitBranchInst()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1491 if (UnsignedPred == ICmpInst::ICMP_UGE && !IsAnd) { in simplifyUnsignedRangeCheck() 1692 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_SLE) in SimplifyOrOfICmps() 1706 if (Pred0 == ICmpInst::ICMP_UGE && Pred1 == ICmpInst::ICMP_ULE) in SimplifyOrOfICmps() 1988 case CmpInst::ICMP_UGE: in computePointerICmp() 2174 case ICmpInst::ICMP_UGE: in SimplifyICmpInst() 2216 case ICmpInst::ICMP_UGE: in SimplifyICmpInst() 2483 case ICmpInst::ICMP_UGE: in SimplifyICmpInst() 2559 case ICmpInst::ICMP_UGE: in SimplifyICmpInst() 2658 if (Pred == ICmpInst::ICMP_UGE) in SimplifyICmpInst() 2681 if (Pred == ICmpInst::ICMP_UGE) in SimplifyICmpInst() [all …]
|
D | ScalarEvolution.cpp | 3164 isKnownPredicate(ICmpInst::ICMP_UGE, Ops[i], Ops[i+1])) { in getUMaxExpr() 4033 case ICmpInst::ICMP_UGE: in createNodeForSelectOrPHI() 6855 case ICmpInst::ICMP_UGE: in SimplifyICmpOperands() 7035 case ICmpInst::ICMP_UGE: in SimplifyICmpOperands() 7172 case ICmpInst::ICMP_UGE: in isMonotonicPredicateImpl() 7178 Increasing = Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE; in isMonotonicPredicateImpl() 7303 case ICmpInst::ICMP_UGE: in isKnownPredicateWithRanges() 7720 case ICmpInst::ICMP_UGE: in isImpliedCond() 8018 case ICmpInst::ICMP_UGE: in IsKnownPredicateViaMinOrMax() 8070 IsKnownPredicateFull(ICmpInst::ICMP_UGE, RHS, FoundRHS)) in isImpliedCondOperandsHelper() [all …]
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerTraceState.cpp | 105 ICMP_UGE = 35, ///< unsigned greater or equal enumerator 120 case ICMP_UGE: return Arg1 >= Arg2; in ComputeCmp()
|
/external/llvm/lib/IR/ |
D | Instructions.cpp | 3366 case ICMP_ULT: return ICMP_UGE; in getInversePredicate() 3367 case ICMP_UGE: return ICMP_ULT; in getInversePredicate() 3403 case ICMP_UGE: return ICMP_SGE; in getSignedPredicate() 3412 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE: in getUnsignedPredicate() 3416 case ICMP_SGE: return ICMP_UGE; in getUnsignedPredicate() 3468 case ICmpInst::ICMP_UGE: in makeConstantRange() 3495 case ICMP_UGE: return ICMP_ULE; in getSwappedPredicate() 3496 case ICMP_ULE: return ICMP_UGE; in getSwappedPredicate() 3526 case CmpInst::ICMP_UGE: in getSignedPredicate() 3535 case ICmpInst::ICMP_UGE: return true; in isUnsigned() [all …]
|
D | ConstantFold.cpp | 1543 return isSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; in evaluateICmpRelation() 1745 case ICmpInst::ICMP_UGE: return ConstantInt::get(ResultTy, V1.uge(V2)); in ConstantFoldCompareInstruction() 1886 case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_UGE: in ConstantFoldCompareInstruction() 1900 case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGE: in ConstantFoldCompareInstruction() 1922 case ICmpInst::ICMP_UGE: in ConstantFoldCompareInstruction() 1924 if (pred == ICmpInst::ICMP_UGT || pred == ICmpInst::ICMP_UGE) Result = 1; in ConstantFoldCompareInstruction()
|
D | ConstantRange.cpp | 105 case CmpInst::ICMP_UGE: { in makeAllowedICmpRegion()
|
D | Constants.cpp | 1940 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE: in getCompare()
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 207 case ICmpInst::ICMP_UGE: return ISD::SETUGE; in getICmpCondCode()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 895 case ICmpInst::ICMP_UGE: Out << "UGE"; break; in printConstant() 1294 case ICmpInst::ICMP_UGE: Out << "ICmpInst::ICMP_UGE"; break; in printInstruction()
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 549 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGE, in TEST()
|
/external/llvm/include/llvm/IR/ |
D | InstrTypes.h | 906 ICMP_UGE = 35, ///< unsigned greater or equal
|
D | PatternMatch.h | 1001 return Pred == CmpInst::ICMP_UGT || Pred == CmpInst::ICMP_UGE; in match()
|
D | IRBuilder.h | 1427 return CreateICmp(ICmpInst::ICMP_UGE, LHS, RHS, Name);
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 294 case ICmpInst::ICMP_UGE: R = executeICMP_UGE(Src1, Src2, Ty); break; in visitICmpInst() 655 case ICmpInst::ICMP_UGE: return executeICMP_UGE(Src1, Src2, Ty); in executeCmpInst()
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 615 case CmpInst::ICMP_UGE: { in emitCmp()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 2210 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 236 case CmpInst::ICMP_UGE: in getComparePred()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 924 case ICmpInst::ICMP_UGE: in OptimizeGlobalAddressOfMalloc()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 4233 Value *CmpRes = Builder.CreateICmp(ICmpInst::ICMP_UGE, Ops[2], EightV); in EmitAArch64TblBuiltinExpr() 4251 Value *CmpRes = Builder.CreateICmp(ICmpInst::ICMP_UGE, Ops[4], in EmitAArch64TblBuiltinExpr() 4774 case NEON::BI__builtin_neon_vcged_u64:P = llvm::ICmpInst::ICMP_UGE;break; in EmitAArch64BuiltinExpr()
|
/external/llvm/lib/Target/ARM/ |
D | ARMFastISel.cpp | 1239 case CmpInst::ICMP_UGE: in getComparePred()
|