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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp1877 BasicBlock *CommonPred = *KillingBlocks.begin(); local
1880 if (!CommonPred)
1882 CommonPred = PDT.findNearestCommonDominator(CommonPred, *I);
1885 // If CommonPred is in the set of killing blocks, just check if it
1887 if (KillingBlocks.count(CommonPred)) {
1888 if (PDT.dominates(CommonPred, DomAccess->getBlock()))
1895 if (PDT.dominates(CommonPred, DomAccess->getBlock())) {
1903 // If CommonPred is null, there are multiple exits from the function.
1905 if (CommonPred)
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp1112 BasicBlock *CommonPred = Pred1->getSinglePredecessor(); local
1113 if (CommonPred == nullptr || CommonPred != Pred2->getSinglePredecessor())
1117 BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator());

Completed in 80 milliseconds