Home | History | Annotate | Download | only in InstCombine

Lines Matching refs:ICMP_SGE

119       Pred = ICmpInst::ICMP_SGE;
1124 assert(Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE);
1721 auto NewPred = Cmp.getPredicate() == CmpInst::ICMP_EQ ? CmpInst::ICMP_SGE
1855 if (Pred == ICmpInst::ICMP_SGT || Pred == ICmpInst::ICMP_SGE)
2231 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
2248 return new ICmpInst(DivIsSigned ? ICmpInst::ICMP_SGE :
2270 return new ICmpInst(ICmpInst::ICMP_SGE, X,
2292 return new ICmpInst(ICmpInst::ICMP_SGE, X, Y);
2361 return new ICmpInst(ICmpInst::ICMP_SGE, X, ConstantInt::get(Ty, Lower));
2686 auto NewPred = isICMP_NE ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_SGE;
2923 case ICmpInst::Predicate::ICMP_SGE:
3113 if (A && NoOp0WrapProblem && Pred == CmpInst::ICMP_SGE &&
3123 return new ICmpInst(CmpInst::ICMP_SGE, A, Op1);
3128 return new ICmpInst(CmpInst::ICMP_SGE, Op0, C);
3136 if (C && NoOp1WrapProblem && Pred == CmpInst::ICMP_SGE && match(D, m_One()))
3265 case ICmpInst::ICMP_SGE:
3396 if (Pred == CmpInst::ICMP_EQ || Pred == CmpInst::ICMP_SGE)
3414 return new ICmpInst(ICmpInst::ICMP_SGE, X, Y);
4429 case ICmpInst::ICMP_SGE:
4430 assert(!isa<ConstantInt>(Op1) && "ICMP_SGE with ConstantInt not folded!");
4482 if (Pred != ICmpInst::ICMP_SLE && Pred != ICmpInst::ICMP_SGE &&
4548 case CmpInst::ICMP_SGE: // A >=s 0 -> !A
4599 case ICmpInst::ICMP_SGE:
4964 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
5023 Pred == ICmpInst::ICMP_SGE)
5096 Pred = ICmpInst::ICMP_SGE;
5105 case ICmpInst::ICMP_SGE: