/external/llvm/lib/Transforms/Utils/ |
D | SimplifyInstructions.cpp | 102 const DominatorTreeWrapperPass *DTWP = in runOnFunction() local 104 const DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | BreakCriticalEdges.cpp | 45 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 46 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopInstSimplify.cpp | 71 DominatorTreeWrapperPass *DTWP = in runOnLoop() local 73 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnLoop()
|
D | LoopRotation.cpp | 672 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnLoop() local 673 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnLoop()
|
/external/llvm-project/llvm/lib/Transforms/Utils/ |
D | AssumeBundleBuilder.cpp | 553 DominatorTreeWrapperPass *DTWP = in runOnFunction() local 555 return simplifyAssumes(F, &AC, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction() 598 DominatorTreeWrapperPass *DTWP = in runOnFunction() local 601 salvageKnowledge(&I, &AC, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction()
|
D | BreakCriticalEdges.cpp | 51 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 52 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | LibCallsShrinkWrap.cpp | 538 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 539 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | DomPrinter.cpp | 101 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph() 102 return &DTWP->getDomTree(); in getGraph()
|
/external/llvm/lib/Analysis/ |
D | DomPrinter.cpp | 85 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph() 86 return &DTWP->getDomTree(); in getGraph()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | DomPrinter.cpp | 101 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph() 102 return &DTWP->getDomTree(); in getGraph()
|
/external/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 89 DominatorTreeWrapperPass *DTWP = in runOnFunction() local 91 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | PGOMemOPSizeOpt.cpp | 432 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 433 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 85 DominatorTreeWrapperPass *DTWP = in runOnFunction() local 87 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BreakCriticalEdges.cpp | 51 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 52 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | LibCallsShrinkWrap.cpp | 538 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 539 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 86 DominatorTreeWrapperPass *DTWP = in runOnFunction() local 88 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCLoopPreIncPrep.cpp | 152 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 153 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm-project/llvm/lib/Transforms/Scalar/ |
D | ADCE.cpp | 718 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 719 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | LoopFlatten.cpp | 722 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 723 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | TailRecursionElimination.cpp | 849 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 850 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | ADCE.cpp | 710 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 711 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
D | TailRecursionElimination.cpp | 832 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 833 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm-project/llvm/lib/Transforms/Instrumentation/ |
D | PGOMemOPSizeOpt.cpp | 503 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 504 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/external/llvm-project/llvm/lib/Target/AMDGPU/ |
D | AMDGPUPrintfRuntimeBinding.cpp | 584 auto DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnModule() local 585 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnModule()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUPrintfRuntimeBinding.cpp | 595 auto DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnModule() local 596 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnModule()
|