Lines Matching refs:NewPN
1329 auto &NewPN = JointValueMap[std::make_pair(DifferentOp1, DifferentOp2)]; in SinkThenElseCodeToEnd() local
1330 if (!NewPN) { in SinkThenElseCodeToEnd()
1331 NewPN = in SinkThenElseCodeToEnd()
1334 NewPN->addIncoming(DifferentOp1, BB1); in SinkThenElseCodeToEnd()
1335 NewPN->addIncoming(DifferentOp2, BB2); in SinkThenElseCodeToEnd()
1336 DEBUG(dbgs() << "Create PHI node " << *NewPN << "\n";); in SinkThenElseCodeToEnd()
1339 I1->setOperand(Op1Idx, NewPN); in SinkThenElseCodeToEnd()
2373 PHINode *NewPN = PHINode::Create(Type::getInt1Ty(BB->getContext()), in SimplifyCondBranchToCondBranch() local
2387 NewPN->addIncoming(ConstantInt::get(Type::getInt1Ty(BB->getContext()), in SimplifyCondBranchToCondBranch()
2390 NewPN->addIncoming(BI->getCondition(), P); in SimplifyCondBranchToCondBranch()
2394 BI->setCondition(NewPN); in SimplifyCondBranchToCondBranch()