Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1606 BasicBlock *CommonPred = *KillingBlocks.begin(); in getDomMemoryDef() local
1608 if (!CommonPred) in getDomMemoryDef()
1610 CommonPred = PDT.findNearestCommonDominator(CommonPred, BB); in getDomMemoryDef()
1616 if (!PDT.dominates(CommonPred, MaybeDeadAccess->getBlock())) { in getDomMemoryDef()
1622 CommonPred = nullptr; in getDomMemoryDef()
1626 if (KillingBlocks.count(CommonPred)) in getDomMemoryDef()
1632 if (CommonPred) in getDomMemoryDef()
1633 WorkList.insert(CommonPred); in getDomMemoryDef()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1675 BasicBlock *CommonPred = Pred1->getSinglePredecessor(); in GetIfCondition() local
1676 if (CommonPred == nullptr || CommonPred != Pred2->getSinglePredecessor()) in GetIfCondition()
1680 BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator()); in GetIfCondition()