Lines Matching defs:BOp
1234 const SCEV *Step, BinaryOperator *BOp,
1236 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) {
1300 BinaryOperator *BOp = dyn_cast<BinaryOperator>(BEValue);
1301 if (!BOp)
1305 if (BOp->getOpcode() == Instruction::FAdd) {
1306 if (BOp->getOperand(0) == Phi)
1307 Addend = BOp->getOperand(1);
1308 else if (BOp->getOperand(1) == Phi)
1309 Addend = BOp->getOperand(0);
1310 } else if (BOp->getOpcode() == Instruction::FSub)
1311 if (BOp->getOperand(0) == Phi)
1312 Addend = BOp->getOperand(1);
1324 D = InductionDescriptor(StartValue, IK_FpInduction, Step, BOp);
1524 BinaryOperator *BOp =
1526 D = InductionDescriptor(StartValue, IK_IntInduction, Step, BOp,