/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | DomPrinter.cpp | 46 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph() 47 return &DTWP->getDomTree(); in getGraph()
|
H A D | BasicAliasAnalysis.cpp | 1968 auto &DTWP = getAnalysis<DominatorTreeWrapperPass>(); in runOnFunction() local 1972 &DTWP.getDomTree())); in runOnFunction()
|
H A D | InstructionSimplify.cpp | 7287 auto *DTWP = P.getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in getBestSimplifyQuery() local 7288 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in getBestSimplifyQuery()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LowerConstantIntrinsics.cpp | 189 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 190 DT = &DTWP->getDomTree(); in runOnFunction()
|
H A D | PartiallyInlineLibCalls.cpp | 196 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 197 DT = &DTWP->getDomTree(); in runOnFunction()
|
H A D | TailRecursionElimination.cpp | 912 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 913 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
H A D | MergeICmps.cpp | 887 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 889 return runImpl(F, TLI, TTI, AA, DTWP ? &DTWP->getDomTree() : nullptr); in runOnFunction()
|
H A D | InferAddressSpaces.cpp | 1342 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 1343 DominatorTree *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
H A D | ScalarizeMaskedMemIntrin.cpp | 957 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 958 DT = &DTWP->getDomTree(); in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | BreakCriticalEdges.cpp | 49 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 50 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | CallBrPrepare.cpp | 238 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 239 DT = &DTWP->getDomTree(); in runOnFunction()
|
H A D | IndirectBrExpandPass.cpp | 292 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 293 DTU.emplace(DTWP->getDomTree(), DomTreeUpdater::UpdateStrategy::Lazy); in runOnFunction()
|
H A D | ShadowStackGCLowering.cpp | 102 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) 103 DTU.emplace(DTWP->getDomTree(), DomTreeUpdater::UpdateStrategy::Lazy); in ShadowStackGCLowering() 310 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) runOnFunction() local
|
H A D | DwarfEHPrepare.cpp | 350 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 351 DT = &DTWP->getDomTree(); in runOnFunction()
|
H A D | StackProtector.cpp | 174 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in HasAddressTaken() 175 DTU.emplace(DTWP->getDomTree(), DomTreeUpdater::UpdateStrategy::Lazy); in HasAddressTaken() 90 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) runOnFunction() local
|
H A D | SafeStack.cpp | 904 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) { in runOnFunction() local 905 DT = &DTWP->getDomTree(); in runOnFunction()
|
H A D | ExpandMemCmp.cpp | 929 if (auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>()) in runOnFunction() local 930 DT = &DTWP->getDomTree(); in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86LowerAMXIntrinsics.cpp | 649 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 650 auto *DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCLoopInstrFormPrep.cpp | 408 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 409 DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUCodeGenPrepare.cpp | 2285 auto *DTWP = getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction() local 2286 Impl.DT = DTWP ? &DTWP->getDomTree() : nullptr; in runOnFunction()
|