Home | History | Annotate | Download | only in Scalar

Lines Matching refs:IncV

1183 /// getLoopPhiForCounter - Return the loop header phi IFF IncV adds a loop
1185 static PHINode *getLoopPhiForCounter(Value *IncV, Loop *L, DominatorTree *DT) {
1186 Instruction *IncI = dyn_cast<Instruction>(IncV);
1270 Value *IncV = Phi->getIncomingValue(Idx);
1271 return Phi != getLoopPhiForCounter(IncV, L, DT);
1320 Value *IncV = Phi->getIncomingValue(LatchIdx);
1324 if (*UI != Cond && *UI != IncV) return false;
1327 for (Value::use_iterator UI = IncV->use_begin(), UE = IncV->use_end();
1386 Value *IncV = Phi->getIncomingValue(LatchIdx);
1387 if (getLoopPhiForCounter(IncV, L, DT) != Phi)