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()))
275 while (isa<PHINode>(SplitIt) || isa<LandingPadInst>(SplitIt))
389 for (BasicBlock::iterator I = OrigBB->begin(); isa<PHINode>(I); ) {
390 PHINode *PN = cast<PHINode>(I++);
431 PHINode *NewPHI =
432 PHINode::Create(PN->getType(), Preds.size(), PN->getName() + ".ph", BI);
489 for (BasicBlock::iterator I = BB->begin(); isa<PHINode>(I); ++I)
490 cast<PHINode>(I)->addIncoming(UndefValue::get(I->getType()), NewBB);
597 PHINode *PN = PHINode::Create(LPad->getType(), 2, "lpad.phi", LPad);
636 if (PHINode *PN = dyn_cast<PHINode>(V)) {
743 PHINode *SomePHI = dyn_cast<PHINode>(BB->begin());