Lines Matching refs:CmpInst
341 CmpInst::Predicate NewPred = CmpInst::BAD_ICMP_PREDICATE;
344 case CmpInst::FCMP_OEQ:
345 case CmpInst::FCMP_UEQ: NewPred = CmpInst::ICMP_EQ; break;
346 case CmpInst::FCMP_ONE:
347 case CmpInst::FCMP_UNE: NewPred = CmpInst::ICMP_NE; break;
348 case CmpInst::FCMP_OGT:
349 case CmpInst::FCMP_UGT: NewPred = CmpInst::ICMP_SGT; break;
350 case CmpInst::FCMP_OGE:
351 case CmpInst::FCMP_UGE: NewPred = CmpInst::ICMP_SGE; break;
352 case CmpInst::FCMP_OLT:
353 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
354 case CmpInst::FCMP_OLE:
355 case CmpInst::FCMP_ULE: NewPred = CmpInst::ICMP_SLE; break;
377 NewPred == CmpInst::ICMP_SGT || NewPred == CmpInst::ICMP_SGE)
381 if (NewPred == CmpInst::ICMP_SLE) {
391 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&
404 NewPred == CmpInst::ICMP_SLT || NewPred == CmpInst::ICMP_SLE)
408 if (NewPred == CmpInst::ICMP_SGE) {
418 if ((NewPred == CmpInst::ICMP_EQ || NewPred == CmpInst::ICMP_NE) &&