Lines Matching refs:IncV
1331 /// getLoopPhiForCounter - Return the loop header phi IFF IncV adds a loop
1333 static PHINode *getLoopPhiForCounter(Value *IncV, Loop *L, DominatorTree *DT) {
1334 Instruction *IncI = dyn_cast<Instruction>(IncV);
1408 Value *IncV = Phi->getIncomingValueForBlock(L->getLoopLatch());
1409 return Phi != getLoopPhiForCounter(IncV, L, DT);
1416 Value *IncV = Phi->getIncomingValue(LatchIdx);
1420 if (*UI != Cond && *UI != IncV) return false;
1423 for (Value::use_iterator UI = IncV->use_begin(), UE = IncV->use_end();
1477 Value *IncV = Phi->getIncomingValue(LatchIdx);
1478 if (getLoopPhiForCounter(IncV, L, DT) != Phi)