Home | History | Annotate | Download | only in Scalar

Lines Matching defs:IncV

1222 /// getLoopPhiForCounter - Return the loop header phi IFF IncV adds a loop
1224 static PHINode *getLoopPhiForCounter(Value *IncV, Loop *L, DominatorTree *DT) {
1225 Instruction *IncI = dyn_cast<Instruction>(IncV);
1309 Value *IncV = Phi->getIncomingValue(Idx);
1310 return Phi != getLoopPhiForCounter(IncV, L, DT);
1359 Value *IncV = Phi->getIncomingValue(LatchIdx);
1363 if (*UI != Cond && *UI != IncV) return false;
1366 for (Value::use_iterator UI = IncV->use_begin(), UE = IncV->use_end();
1425 Value *IncV = Phi->getIncomingValue(LatchIdx);
1426 if (getLoopPhiForCounter(IncV, L, DT) != Phi)