Home | History | Annotate | Download | only in Scalar

Lines Matching defs:Incr

1867     BinaryOperator *Incr =
1869 if (!Incr) continue;
1870 if (Incr->getOpcode() != Instruction::Add
1871 && Incr->getOpcode() != Instruction::Sub)
1876 if (Incr->getOperand(0) == PH)
1877 C = dyn_cast<ConstantInt>(Incr->getOperand(1));
1878 else if (Incr->getOperand(1) == PH)
1879 C = dyn_cast<ConstantInt>(Incr->getOperand(0));
1895 BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
1897 NewPH, CFP, "IV.S.next.", Incr);