reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Scalar/LoopStrengthReduce.cpp
 2144     if (!Incr) continue;
 2145     if (Incr->getOpcode() != Instruction::Add
 2146         && Incr->getOpcode() != Instruction::Sub)
 2151     if (Incr->getOperand(0) == PH)
 2152       C = dyn_cast<ConstantInt>(Incr->getOperand(1));
 2153     else if (Incr->getOperand(1) == PH)
 2154       C = dyn_cast<ConstantInt>(Incr->getOperand(0));
 2170       BinaryOperator::Create(Incr->getOpcode() == Instruction::Add ?
 2172                              NewPH, CFP, "IV.S.next.", Incr);