Home
last modified time | relevance | path

Searched refs:ICMP_UGE (Results 1 – 25 of 31) sorted by relevance

12

/external/llvm/lib/Transforms/Utils/
DCmpInstAnalysis.cpp52 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/
DInstCombineCompares.cpp136 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 …]
DInstCombineAndOrXor.cpp971 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()
DInstCombineCalls.cpp658 Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; in SimplifyX86vpcom()
DInstructionCombining.cpp2126 IPred == ICmpInst::ICMP_SLE || IPred == ICmpInst::ICMP_UGE || in visitBranchInst()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp1491 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 …]
DScalarEvolution.cpp3164 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/
DFuzzerTraceState.cpp105 ICMP_UGE = 35, ///< unsigned greater or equal enumerator
120 case ICMP_UGE: return Arg1 >= Arg2; in ComputeCmp()
/external/llvm/lib/IR/
DInstructions.cpp3366 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 …]
DConstantFold.cpp1543 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()
DConstantRange.cpp105 case CmpInst::ICMP_UGE: { in makeAllowedICmpRegion()
DConstants.cpp1940 case CmpInst::ICMP_UGE: case CmpInst::ICMP_ULT: case CmpInst::ICMP_ULE: in getCompare()
/external/llvm/lib/CodeGen/
DAnalysis.cpp207 case ICmpInst::ICMP_UGE: return ISD::SETUGE; in getICmpCondCode()
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp895 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/
DConstantRangeTest.cpp549 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGE, in TEST()
/external/llvm/include/llvm/IR/
DInstrTypes.h906 ICMP_UGE = 35, ///< unsigned greater or equal
DPatternMatch.h1001 return Pred == CmpInst::ICMP_UGT || Pred == CmpInst::ICMP_UGE; in match()
DIRBuilder.h1427 return CreateICmp(ICmpInst::ICMP_UGE, LHS, RHS, Name);
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp294 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/
DMipsFastISel.cpp615 case CmpInst::ICMP_UGE: { in emitCmp()
/external/llvm/lib/CodeGen/SelectionDAG/
DFastISel.cpp2210 case CmpInst::ICMP_UGE: Predicate = CmpInst::FCMP_TRUE; break; in optimizeCmpPredicate()
/external/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp236 case CmpInst::ICMP_UGE: in getComparePred()
/external/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp924 case ICmpInst::ICMP_UGE: in OptimizeGlobalAddressOfMalloc()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp4233 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/
DARMFastISel.cpp1239 case CmpInst::ICMP_UGE: in getComparePred()

12