Home | History | Annotate | Download | only in Scalar

Lines Matching defs:Incr

1677     BinaryOperator *Incr =
1679 if (!Incr) continue;
1680 if (Incr->getOpcode() != Instruction::Add
1681 && Incr->getOpcode() != Instruction::Sub)
1686 if (Incr->getOperand(0) == PH)
1687 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1688 else if (Incr->getOperand(1) == PH)
1689 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1705 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1707 NewPH, CFP, "IV.S.next.", Incr);