Lines Matching refs:Incr
1722 BinaryOperator *Incr =
1724 if (!Incr) continue;
1725 if (Incr->getOpcode() != Instruction::Add
1726 && Incr->getOpcode() != Instruction::Sub)
1731 if (Incr->getOperand(0) == PH)
1732 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1733 else if (Incr->getOperand(1) == PH)
1734 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1750 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1752 NewPH, CFP, "IV.S.next.", Incr);