Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1621 BasicBlock *CommonPred = *KillingBlocks.begin(); in getDomMemoryDef() local
1624 if (!CommonPred) in getDomMemoryDef()
1626 CommonPred = PDT.findNearestCommonDominator(CommonPred, *I); in getDomMemoryDef()
1631 if (KillingBlocks.count(CommonPred)) { in getDomMemoryDef()
1632 if (PDT.dominates(CommonPred, EarlierAccess->getBlock())) in getDomMemoryDef()
1640 if (PDT.dominates(CommonPred, EarlierAccess->getBlock())) { in getDomMemoryDef()
1645 if (CommonPred) in getDomMemoryDef()
1646 WorkList.insert(CommonPred); in getDomMemoryDef()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1532 BasicBlock *CommonPred = Pred1->getSinglePredecessor(); in GetIfCondition() local
1533 if (CommonPred == nullptr || CommonPred != Pred2->getSinglePredecessor()) in GetIfCondition()
1537 BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator()); in GetIfCondition()