Home | History | Annotate | Download | only in Utils

Lines Matching refs:PHINode

69   if (!isa<PHINode>(BB->begin())) return;
78 while (PHINode *PN = dyn_cast<PHINode>(BB->begin())) {
103 PHINode *PN = dyn_cast<PHINode>(I); ++I)
108 if (PHINode *PN = dyn_cast_or_null<PHINode>(PHIs[i].operator Value*()))
142 if (PHINode *PN = dyn_cast<PHINode>(BI)) {
151 if (isa<PHINode>(BB->front()))
274 while (isa<PHINode>(SplitIt) || isa<LandingPadInst>(SplitIt))
385 for (BasicBlock::iterator I = OrigBB->begin(); isa<PHINode>(I); ) {
386 PHINode *PN = cast<PHINode>(I++);
409 PHINode *NewPHI =
410 PHINode::Create(PN->getType(), Preds.size(), PN->getName() + ".ph", BI);
465 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I)
466 cast<PHINode>(I)->addIncoming(UndefValue::get(I->getType()), NewBB);
573 PHINode *PN = PHINode::Create(LPad->getType(), 2, "lpad.phi", LPad);
612 if (PHINode *PN = dyn_cast<PHINode>(V)) {
680 PHINode *SomePHI = dyn_cast<PHINode>(BB->begin());