Lines Matching refs:CmpInst

269   CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;  in handleFloatingPointIV()
272 case CmpInst::FCMP_OEQ: in handleFloatingPointIV()
273 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break; in handleFloatingPointIV()
274 case CmpInst::FCMP_ONE: in handleFloatingPointIV()
275 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break; in handleFloatingPointIV()
276 case CmpInst::FCMP_OGT: in handleFloatingPointIV()
277 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break; in handleFloatingPointIV()
278 case CmpInst::FCMP_OGE: in handleFloatingPointIV()
279 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break; in handleFloatingPointIV()
280 case CmpInst::FCMP_OLT: in handleFloatingPointIV()
281 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break; in handleFloatingPointIV()
282 case CmpInst::FCMP_OLE: in handleFloatingPointIV()
283 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break; in handleFloatingPointIV()
310 if (NewPred == CmpInst::ICMP_SLE || NewPred == CmpInst::ICMP_SGT) { in handleFloatingPointIV()
319 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) && in handleFloatingPointIV()
336 if (NewPred == CmpInst::ICMP_SGE || NewPred == CmpInst::ICMP_SLT) { in handleFloatingPointIV()
345 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) && in handleFloatingPointIV()
1275 Pred = CmpInst::getInversePredicate(Pred); in createReplacement()
1703 if (SE->isLoopEntryGuardedByCond(L, CmpInst::ICMP_ULT, MaxBECount, in optimizeLoopExits()