HomeSort by relevance Sort by last modified time
    Searched refs:OPN (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 424 const PHINode *OPN = PHIToResolve[phino];
425 unsigned NumPreds = OPN->getNumIncomingValues();
426 const BasicBlock *OldBB = OPN->getParent();
433 OPN = PHIToResolve[phino];
434 PHINode *PN = cast<PHINode>(VMap[OPN]);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 212 PHINode *OPN = cast<PHINode>(I);
213 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues());
214 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) {
215 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
216 NPN->addIncoming(V, OPN->getIncomingBlock(i));
    [all...]

Completed in 273 milliseconds