Home | History | Annotate | Download | only in Scalar

Lines Matching refs:IncV

1282 /// getLoopPhiForCounter - Return the loop header phi IFF IncV adds a loop
1284 static PHINode *getLoopPhiForCounter(Value *IncV, Loop *L, DominatorTree *DT) {
1285 Instruction *IncI = dyn_cast<Instruction>(IncV);
1369 Value *IncV = Phi->getIncomingValue(Idx);
1370 return Phi != getLoopPhiForCounter(IncV, L, DT);
1419 Value *IncV = Phi->getIncomingValue(LatchIdx);
1422 if (U != Cond && U != IncV) return false;
1424 for (User *U : IncV->users())
1481 Value *IncV = Phi->getIncomingValue(LatchIdx);
1482 if (getLoopPhiForCounter(IncV, L, DT) != Phi)