Home
last modified time | relevance | path

Searched refs:PhiPred (Results 1 – 2 of 2) sorted by relevance

/dports/devel/intel-graphics-compiler/intel-graphics-compiler-igc-1.0.9636/IGC/VectorCompiler/lib/GenXCodeGen/
H A DGenXCoalescing.cpp396 PHINode *copyNonCoalescedPhi(PHINode *PhiPred, PHINode *PhiSucc);
1222 if (auto *PhiPred = dyn_cast<PHINode>(Incoming)) { in processPhiBranchingJoinLabelCopy() local
1231 if (!DomTree->dominates(PhiPred->getParent(), InsertPoint->getParent())) { in processPhiBranchingJoinLabelCopy()
1232 auto *PhiCopy = copyNonCoalescedPhi(PhiPred, Phi); in processPhiBranchingJoinLabelCopy()
1261 PHINode *GenXCoalescing::copyNonCoalescedPhi(PHINode *PhiPred, in copyNonCoalescedPhi() argument
1264 auto *PhiCopy = cast<PHINode>(PhiPred->clone()); in copyNonCoalescedPhi()
1265 PhiCopy->insertBefore(PhiPred->getNextNode()); in copyNonCoalescedPhi()
1266 PhiCopy->setName(PhiPred->getName() + ".copy"); in copyNonCoalescedPhi()
1267 Numbering->setNumber(PhiCopy, Numbering->getNumber(PhiPred)); in copyNonCoalescedPhi()
1278 if (IncValue == PhiPred) in copyNonCoalescedPhi()
H A DGenXSimdCFConformance.cpp3377 BasicBlock *PhiPred = nullptr; in checkInterference() local
3379 PhiPred = Phi->getIncomingBlock(OpNo); in checkInterference()
3395 if (PhiPred) { in checkInterference()
3396 if (LiveOut.insert(PhiPred).second) in checkInterference()
3397 PendingBBStack.push_back(PhiPred); in checkInterference()
3398 PhiPred = nullptr; in checkInterference()