Searched refs:IncV (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp849 bool SCEVExpander::isNormalAddRecExprPHI(PHINode *PN, Instruction *IncV, argument
851 if (IncV->getNumOperands() == 0 || isa<PHINode>(IncV) ||
852 (isa<CastInst>(IncV) && !isa<BitCastInst>(IncV)))
858 for (User::op_iterator OI = IncV->op_begin()+1,
859 OE = IncV->op_end(); OI != OE; ++OI)
865 IncV = dyn_cast<Instruction>(IncV->getOperand(0));
866 if (!IncV)
883 isExpandedAddRecExprPHI(PHINode *PN, Instruction *IncV, const Loop *L) argument
953 Instruction *IncV = local
1032 Value *IncV; local
1495 hoistStep(Instruction *IncV, Instruction *InsertPos, const DominatorTree *DT) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpander.h112 static bool hoistStep(Instruction *IncV, Instruction *InsertPos,
238 bool isNormalAddRecExprPHI(PHINode *PN, Instruction *IncV, const Loop *L);
240 bool isExpandedAddRecExprPHI(PHINode *PN, Instruction *IncV, const Loop *L);
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1331 /// getLoopPhiForCounter - Return the loop header phi IFF IncV adds a loop
1333 static PHINode *getLoopPhiForCounter(Value *IncV, Loop *L, DominatorTree *DT) { argument
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); local
1420 if (*UI != Cond && *UI != IncV) return false;
1423 for (Value::use_iterator UI = IncV->use_begin(), UE = IncV->use_end();
1477 Value *IncV local
[all...]

Completed in 69 milliseconds