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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 254 const auto &DstBlock = Edge.second;
255 return (DstBlock.getLoop() &&
256 !DstBlock.getLoop()->contains(SrcBlock.getLoop())) ||
258 (DstBlock.getSccNum() != -1 &&
259 SrcBlock.getSccNum() != DstBlock.getSccNum());
273 const auto &DstBlock = Edge.second;
274 return SrcBlock.belongsToSameLoop(DstBlock) &&
275 ((DstBlock.getLoop() &&
276 DstBlock.getLoop()->getHeader() == DstBlock.getBlock()) |
    [all...]
DependenceAnalysis.cpp 747 const BasicBlock *DstBlock = Dst->getParent();
749 unsigned DstLevel = LI->getLoopDepth(DstBlock);
751 const Loop *DstLoop = LI->getLoopFor(DstBlock);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LICM.cpp 825 static bool worthSinkOrHoistInst(Instruction &I, BasicBlock *DstBlock,
831 if (!DstBlock->getParent()->hasProfileData())
838 if (BFI->getBlockFreq(DstBlock).getFrequency() / HoistSinkColdnessThreshold >

Completed in 52 milliseconds