Lines Matching refs:Incr
1806 BinaryOperator *Incr =
1808 if (!Incr) continue;
1809 if (Incr->getOpcode() != Instruction::Add
1810 && Incr->getOpcode() != Instruction::Sub)
1815 if (Incr->getOperand(0) == PH)
1816 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1817 else if (Incr->getOperand(1) == PH)
1818 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1834 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1836 NewPH, CFP, "IV.S.next.", Incr);