/external/llvm/lib/Transforms/Utils/ |
D | CmpInstAnalysis.cpp | 49 case ICmpInst::ICMP_UGT: return 1; // 001 in getICmpCode() 78 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break; in getICmpValue()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 132 case ICmpInst::ICMP_UGT: in isSignBitCheck() 469 return new ICmpInst(ICmpInst::ICMP_UGT, Idx, End); in FoldCmpLoadFromIndexedGlobal() 754 return new ICmpInst(ICmpInst::ICMP_UGT, X, R); in FoldICmpAddOpCst() 760 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_UGE) in FoldICmpAddOpCst() 934 case ICmpInst::ICMP_UGT: in FoldICmpDivCst() 940 if (Pred == ICmpInst::ICMP_UGT) in FoldICmpDivCst() 1071 return getICmp(I.ICMP_UGT, A, in FoldICmpCstShrCst() 1222 if (ICI.getPredicate() == ICmpInst::ICMP_UGT && in visitICmpInstWithInstAndIntCst() 1420 if (ICI.getPredicate() == ICmpInst::ICMP_UGT) { in visitICmpInstWithInstAndIntCst() 1447 ICI.getPredicate() == ICmpInst::ICMP_EQ ? ICmpInst::ICMP_UGT in visitICmpInstWithInstAndIntCst() [all …]
|
D | InstCombineAndOrXor.cpp | 331 ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT); in InsertRangeTest() 573 case ICmpInst::ICMP_UGT: in decomposeBitTestICmp() 1040 case ICmpInst::ICMP_UGT: // (X != 13 & X u> 15) -> X u> 15 in FoldAndOfICmps() 1061 case ICmpInst::ICMP_UGT: // (X u< 13 & X u> 15) -> false in FoldAndOfICmps() 1075 case ICmpInst::ICMP_UGT: // (X s< 13 & X u> 15) -> no change in FoldAndOfICmps() 1084 case ICmpInst::ICMP_UGT: in FoldAndOfICmps() 1088 case ICmpInst::ICMP_UGT: // (X u> 13 & X u> 15) -> X u> 15 in FoldAndOfICmps() 1108 case ICmpInst::ICMP_UGT: // (X s> 13 & X u> 15) -> no change in FoldAndOfICmps() 1815 else if (RHSCC == ICmpInst::ICMP_UGT && Val == Val2) in FoldOrOfICmps() 1824 else if (LHSCC == ICmpInst::ICMP_UGT && Val2 == Val) in FoldOrOfICmps() [all …]
|
D | InstCombineSelect.cpp | 47 case ICmpInst::ICMP_UGT: in MatchSelectPattern() 62 case ICmpInst::ICMP_UGT: in MatchSelectPattern() 518 else if ((Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_UGT) in visitSelectInstWithICmp() 525 case ICmpInst::ICMP_UGT: in visitSelectInstWithICmp() 533 if (Pred == ICmpInst::ICMP_UGT || Pred == ICmpInst::ICMP_SGT) in visitSelectInstWithICmp()
|
D | InstructionCombining.cpp | 2228 return new ICmpInst(ICmpInst::ICMP_UGT, II->getArgOperand(0), in visitExtractValueInst()
|
/external/llvm/lib/Fuzzer/ |
D | FuzzerDFSan.cpp | 94 ICMP_UGT = 34, ///< unsigned greater than enumerator 109 case ICMP_UGT: return Arg1 > Arg2; in ComputeCmp()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1433 pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1541 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1548 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1572 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1619 case 1: return isSigned ? ICmpInst::ICMP_SGT:ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1628 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; in evaluateICmpRelation() 1737 case ICmpInst::ICMP_UGT: return ConstantInt::get(ResultTy, V1.ugt(V2)); in ConstantFoldCompareInstruction() 1879 case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_EQ: case ICmpInst::ICMP_UGE: in ConstantFoldCompareInstruction() 1891 case ICmpInst::ICMP_UGT: in ConstantFoldCompareInstruction() 1893 case ICmpInst::ICMP_UGT: case ICmpInst::ICMP_NE: case ICmpInst::ICMP_UGE: in ConstantFoldCompareInstruction() [all …]
|
D | Instructions.cpp | 3094 case ICMP_UGT: return ICMP_ULE; in getInversePredicate() 3097 case ICMP_ULE: return ICMP_UGT; in getInversePredicate() 3128 case ICMP_UGT: return ICMP_SGT; in getSignedPredicate() 3139 case ICMP_UGT: case ICMP_ULT: case ICMP_UGE: case ICMP_ULE: in getUnsignedPredicate() 3141 case ICMP_SGT: return ICMP_UGT; in getUnsignedPredicate() 3171 case ICmpInst::ICMP_UGT: in makeConstantRange() 3220 case ICMP_UGT: return ICMP_ULT; in getSwappedPredicate() 3221 case ICMP_ULT: return ICMP_UGT; in getSwappedPredicate() 3244 case ICmpInst::ICMP_ULT: case ICmpInst::ICMP_ULE: case ICmpInst::ICMP_UGT: in isUnsigned() 3285 case ICMP_NE: case ICMP_UGT: case ICMP_ULT: case ICMP_SGT: case ICMP_SLT: in isFalseWhenEqual()
|
D | ConstantRange.cpp | 91 case CmpInst::ICMP_UGT: { in makeAllowedICmpRegion()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 1533 if (Pred0 == ICmpInst::ICMP_ULT && Pred1 == ICmpInst::ICMP_UGT) in SimplifyAndOfICmps() 1536 if (Pred0 == ICmpInst::ICMP_ULE && Pred1 == ICmpInst::ICMP_UGT) in SimplifyAndOfICmps() 1684 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_SLE) in SimplifyOrOfICmps() 1695 if (Pred0 == ICmpInst::ICMP_UGT && Pred1 == ICmpInst::ICMP_ULE) in SimplifyOrOfICmps() 1973 case CmpInst::ICMP_UGT: in computePointerICmp() 2156 case ICmpInst::ICMP_UGT: in SimplifyICmpInst() 2194 case ICmpInst::ICMP_UGT: in SimplifyICmpInst() 2418 case ICmpInst::ICMP_UGT: in SimplifyICmpInst() 2494 case ICmpInst::ICMP_UGT: in SimplifyICmpInst() 2594 if (Pred == ICmpInst::ICMP_UGT) in SimplifyICmpInst() [all …]
|
D | ScalarEvolution.cpp | 1543 if (isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, AR, N) || in getZeroExtendExpr() 1544 (isLoopEntryGuardedByCond(L, ICmpInst::ICMP_UGT, Start, N) && in getZeroExtendExpr() 1545 isLoopBackedgeGuardedByCond(L, ICmpInst::ICMP_UGT, in getZeroExtendExpr() 4371 case ICmpInst::ICMP_UGT: in createSCEV() 5150 case ICmpInst::ICMP_UGT: { // while (X > Y) in ComputeExitLimitFromICmp() 6328 Pred = ICmpInst::ICMP_UGT; in SimplifyICmpOperands() 6386 case ICmpInst::ICMP_UGT: in SimplifyICmpOperands() 6499 Pred = ICmpInst::ICMP_UGT; in SimplifyICmpOperands() 6504 Pred = ICmpInst::ICMP_UGT; in SimplifyICmpOperands() 6623 case ICmpInst::ICMP_UGT: in isKnownPredicateWithRanges() [all …]
|
/external/lldb/source/Expression/ |
D | IRInterpreter.cpp | 493 case CmpInst::ICMP_UGT: in CanInterpret() 1048 case CmpInst::ICMP_UGT: in Interpret()
|
/external/llvm/lib/CodeGen/ |
D | Analysis.cpp | 209 case ICmpInst::ICMP_UGT: return ISD::SETUGT; in getICmpCondCode()
|
/external/llvm/include/llvm/IR/ |
D | PatternMatch.h | 1001 return Pred == CmpInst::ICMP_UGT || Pred == CmpInst::ICMP_UGE; in match() 1137 if (Pred == ICmpInst::ICMP_UGT) in match()
|
D | InstrTypes.h | 716 ICMP_UGT = 34, ///< unsigned greater than
|
D | IRBuilder.h | 1347 return CreateICmp(ICmpInst::ICMP_UGT, LHS, RHS, Name);
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopIdiomRecognize.cpp | 554 CmpInst::ICMP_UGT : CmpInst::ICMP_SLE; in transform()
|
D | InductiveRangeCheckElimination.cpp | 311 case ICmpInst::ICMP_UGT: in parseRangeCheckICmp()
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 544 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGT, in TEST()
|
/external/llvm/lib/Target/CppBackend/ |
D | CPPBackend.cpp | 892 case ICmpInst::ICMP_UGT: Out << "UGT"; break; in printConstant() 1299 case ICmpInst::ICMP_UGT: Out << "ICmpInst::ICMP_UGT"; break; in printInstruction()
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 290 case ICmpInst::ICMP_UGT: R = executeICMP_UGT(Src1, Src2, Ty); break; in visitICmpInst() 651 case ICmpInst::ICMP_UGT: return executeICMP_UGT(Src1, Src2, Ty); in executeCmpInst()
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 521 case CmpInst::ICMP_UGT: { in emitCmp()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 226 case CmpInst::ICMP_UGT: in getComparePred()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 2187 case CmpInst::ICMP_UGT: Predicate = CmpInst::FCMP_FALSE; break; in optimizeCmpPredicate()
|
/external/llvm/lib/Transforms/IPO/ |
D | GlobalOpt.cpp | 924 case ICmpInst::ICMP_UGT: in OptimizeGlobalAddressOfMalloc()
|