Home
last modified time | relevance | path

Searched refs:DTWP (Results 1 – 24 of 24) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DAssumeBundleBuilder.cpp585 DominatorTreeWrapperPass *DTWP = in runOnFunction() local
587 return simplifyAssumes(F, &AC, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction()
630 DominatorTreeWrapperPass *DTWP = in runOnFunction() local
633 salvageKnowledge(&I, &AC, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction()
DBreakCriticalEdges.cpp51 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
52 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
DLibCallsShrinkWrap.cpp538 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
539 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DDomPrinter.cpp101 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph()
102 return &DTWP->getDomTree(); in getGraph()
DBasicAliasAnalysis.cpp1824 auto &DTWP = getAnalysis<DominatorTreeWrapperPass>(); in runOnFunction() local
1829 &DTWP.getDomTree(), in runOnFunction()
DInstructionSimplify.cpp6333 auto *DTWP = P.getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in getBestSimplifyQuery() local
6334 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in getBestSimplifyQuery()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLowerConstantIntrinsics.cpp178 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
179 DT = &DTWP->getDomTree(); in runOnFunction()
DPartiallyInlineLibCalls.cpp192 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
193 DT = &DTWP->getDomTree(); in runOnFunction()
DADCE.cpp723 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
724 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
DLoopFlatten.cpp730 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
731 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
DTailRecursionElimination.cpp894 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
895 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
DMergeICmps.cpp888 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
890 return runImpl(F, TLI, TTI, AA, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction()
DScalarizeMaskedMemIntrin.cpp896 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
897 DT = &DTWP->getDomTree(); in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DIndirectBrExpandPass.cpp98 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
99 DTU.emplace(DTWP->getDomTree(), DomTreeUpdater::UpdateStrategy::Lazy); in runOnFunction()
DStackProtector.cpp87 DominatorTreeWrapperPass *DTWP = in runOnFunction() local
89 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
DDwarfEHPrepare.cpp311 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
312 DT = &DTWP->getDomTree(); in runOnFunction()
DShadowStackGCLowering.cpp310 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
311 DTU.emplace(DTWP->getDomTree(), DomTreeUpdater::UpdateStrategy::Lazy); in runOnFunction()
DSafeStack.cpp909 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) { in runOnFunction() local
910 DT = &DTWP->getDomTree(); in runOnFunction()
DExpandMemCmp.cpp824 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local
825 DT = &DTWP->getDomTree(); in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
DPGOMemOPSizeOpt.cpp524 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
525 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
DPPCLoopInstrFormPrep.cpp294 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
295 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86LowerAMXIntrinsics.cpp651 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
652 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUCodeGenPrepare.cpp1401 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local
1402 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp445 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnMachineFunction() local
446 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnMachineFunction()