Lines Matching defs:Cmp
409 if (auto *Cmp = dyn_cast<CmpInst>(Cond))
410 collectCmpOps(Cmp, Values);
455 if (auto *Cmp = dyn_cast<CmpInst>(Cond))
456 collectCmpOps(Cmp, Values);
791 CmpInst *Cmp = dyn_cast<CmpInst>(Condition);
792 if (!Cmp) {
799 if (Cmp->getOperand(0) == RenamedOp) {
800 Pred = Cmp->getPredicate();
801 OtherOp = Cmp->getOperand(1);
802 } else if (Cmp->getOperand(1) == RenamedOp) {
803 Pred = Cmp->getSwappedPredicate();
804 OtherOp = Cmp->getOperand(0);