HomeSort by: relevance | last modified time | path
    Searched refs:CommonPred (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
DeadStoreElimination.cpp 1580 BasicBlock *CommonPred = *KillingBlocks.begin();
1583 if (!CommonPred)
1585 CommonPred = PDT.findNearestCommonDominator(CommonPred, *I);
1588 // If CommonPred is in the set of killing blocks, just check if it
1590 if (KillingBlocks.count(CommonPred)) {
1591 if (PDT.dominates(CommonPred, EarlierAccess->getBlock()))
1599 if (PDT.dominates(CommonPred, EarlierAccess->getBlock())) {
1602 // If CommonPred is null, there are multiple exits from the function.
1604 if (CommonPred)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BasicBlockUtils.cpp 1532 BasicBlock *CommonPred = Pred1->getSinglePredecessor();
1533 if (CommonPred == nullptr || CommonPred != Pred2->getSinglePredecessor())
1537 BranchInst *BI = dyn_cast<BranchInst>(CommonPred->getTerminator());

Completed in 75 milliseconds