HomeSort by relevance Sort by last modified time
    Searched refs:DTWP (Results 1 - 15 of 15) sorted by null

  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 51 const DominatorTreeWrapperPass *DTWP =
53 const DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr;
BreakCriticalEdges.cpp 45 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>();
46 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
LoopUnrollRuntime.cpp 338 auto *DTWP = LPM->getAnalysisIfAvailable<DominatorTreeWrapperPass>();
339 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
LoopUnroll.cpp 490 if (DominatorTreeWrapperPass *DTWP =
492 DT = &DTWP->getDomTree();
LoopSimplify.cpp 120 auto *DTWP = PP->getAnalysisIfAvailable<DominatorTreeWrapperPass>();
121 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopInstSimplify.cpp 76 DominatorTreeWrapperPass *DTWP =
78 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr;
LoopRotation.cpp 111 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>();
112 DT = DTWP ? &DTWP->getDomTree() : nullptr;
LoopInterchange.cpp 434 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>();
435 DT = DTWP ? &DTWP->getDomTree() : nullptr;
    [all...]
LoopUnswitch.cpp 393 DominatorTreeWrapperPass *DTWP =
395 DT = DTWP ? &DTWP->getDomTree() : nullptr;
    [all...]
SROA.cpp     [all...]
  /external/llvm/lib/Analysis/
DomPrinter.cpp 85 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) {
86 return &DTWP->getDomTree();
BasicAliasAnalysis.cpp     [all...]
LazyValueInfo.cpp     [all...]
MemoryDependenceAnalysis.cpp 96 DominatorTreeWrapperPass *DTWP =
98 DT = DTWP ? &DTWP->getDomTree() : nullptr;
    [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 88 DominatorTreeWrapperPass *DTWP =
90 DT = DTWP ? &DTWP->getDomTree() : nullptr;

Completed in 585 milliseconds