Lines Matching defs:StartValue
1272 : StartValue(Start), IK(K), Step(Step), InductionBinOp(BOp) {
1277 assert(StartValue && "StartValue is null");
1278 assert((IK != IK_PtrInduction || StartValue->getType()->isPointerTy()) &&
1279 "StartValue is not a pointer for pointer induction");
1280 assert((IK != IK_IntInduction || StartValue->getType()->isIntegerTy()) &&
1281 "StartValue is not an integer for integer induction");
1325 Value *BEValue = nullptr, *StartValue = nullptr;
1328 StartValue = Phi->getIncomingValue(1);
1333 StartValue = Phi->getIncomingValue(0);
1360 D = InductionDescriptor(StartValue, IK_FpInduction, Step, BOp);
1545 Value *StartValue =
1562 D = InductionDescriptor(StartValue, IK_IntInduction, Step, BOp,
1570 D = InductionDescriptor(StartValue, IK_PtrInduction, Step);