/external/llvm/lib/Analysis/ |
D | DomPrinter.cpp | 85 static DominatorTree *getGraph(DominatorTreeWrapperPass *DTWP) { in getGraph() 91 DominatorTreeWrapperPass, false, DominatorTree *, 95 : DOTGraphTraitsViewer<DominatorTreeWrapperPass, false, DominatorTree *, in DomViewer() 103 DominatorTreeWrapperPass, true, DominatorTree *, 107 : DOTGraphTraitsViewer<DominatorTreeWrapperPass, true, DominatorTree *, in DomOnlyViewer() 154 DominatorTreeWrapperPass, false, DominatorTree *, 158 : DOTGraphTraitsPrinter<DominatorTreeWrapperPass, false, DominatorTree *, in DomPrinter() 166 DominatorTreeWrapperPass, true, DominatorTree *, 170 : DOTGraphTraitsPrinter<DominatorTreeWrapperPass, true, DominatorTree *, in DomOnlyPrinter()
|
D | DominanceFrontier.cpp | 24 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 40 Base.analyze(getAnalysis<DominatorTreeWrapperPass>().getDomTree()); in runOnFunction() 46 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage()
|
D | RegionInfo.cpp | 130 auto DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction() 148 AU.addRequiredTransitive<DominatorTreeWrapperPass>(); in getAnalysisUsage() 167 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
D | DivergenceAnalysis.cpp | 261 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 271 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 289 getAnalysis<DominatorTreeWrapperPass>().getDomTree(), in runOnFunction()
|
D | IVUsers.cpp | 41 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() 257 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 268 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnLoop()
|
/external/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyOptimizeReturned.cpp | 33 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 34 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 73 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
/external/llvm/lib/Transforms/Utils/ |
D | Mem2Reg.cpp | 43 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 57 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() 71 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in INITIALIZE_PASS_DEPENDENCY()
|
D | SimplifyInstructions.cpp | 51 const DominatorTreeWrapperPass *DTWP = in runOnFunction() 52 getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnFunction()
|
D | LCSSA.cpp | 297 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 310 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 324 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
/external/llvm/lib/IR/ |
D | Dominators.cpp | 339 char DominatorTreeWrapperPass::ID = 0; 340 INITIALIZE_PASS(DominatorTreeWrapperPass, "domtree", 343 bool DominatorTreeWrapperPass::runOnFunction(Function &F) { in runOnFunction() 348 void DominatorTreeWrapperPass::verifyAnalysis() const { in verifyAnalysis() 353 void DominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { in print()
|
/external/llvm/tools/opt/ |
D | GraphPrinters.cpp | 34 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 38 getAnalysis<DominatorTreeWrapperPass>().dump(); in runOnFunction()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64PromoteConstant.cpp | 113 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 114 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 212 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 345 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>( in isDominated() 370 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>( in tryAndMerge() 471 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>( in insertDefinitions()
|
D | AArch64AddressTypePromotion.cpp | 98 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 99 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 149 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 381 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in mergeSExts()
|
/external/llvm/lib/Transforms/Scalar/ |
D | LoopDeletion.cpp | 42 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 49 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 67 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 211 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnLoop()
|
D | Sink.cpp | 52 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 54 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 68 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() 100 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
D | LoopInstSimplify.cpp | 62 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() 76 DominatorTreeWrapperPass *DTWP = in runOnLoop() 77 getAnalysisIfAvailable<DominatorTreeWrapperPass>(); in runOnLoop()
|
D | AlignmentFromAssumptions.cpp | 60 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 66 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 90 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_BEGIN() 417 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
D | LoopLoadElimination.cpp | 513 auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction() 544 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 545 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 558 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|
D | NaryReassociate.cpp | 112 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 116 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 199 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() 215 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonGenExtract.cpp | 61 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 62 AU.addPreserved<DominatorTreeWrapperPass>(); in getAnalysisUsage() 79 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 245 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
/external/llvm/lib/CodeGen/ |
D | DwarfEHPrepare.cpp | 83 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument 94 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 258 DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction()
|
/external/llvm/lib/Transforms/IPO/ |
D | LoopExtractor.cpp | 51 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 62 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 95 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnLoop()
|
/external/llvm/unittests/Analysis/ |
D | CFGTest.cpp | 84 AU.addRequired<DominatorTreeWrapperPass>(); in ExpectPath() 93 &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in ExpectPath()
|
/external/llvm/include/llvm/IR/ |
D | Dominators.h | 226 class DominatorTreeWrapperPass : public FunctionPass { 232 DominatorTreeWrapperPass() : FunctionPass(ID) {
|
/external/llvm/unittests/IR/ |
D | DominatorTreeTest.cpp | 31 &getAnalysis<DominatorTreeWrapperPass>().getDomTree(); in runOnFunction() 208 AU.addRequired<DominatorTreeWrapperPass>(); in getAnalysisUsage() 257 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
|