Home
last modified time | relevance | path

Searched refs:PostDominatorTreeWrapperPass (Results 1 – 22 of 22) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DDomPrinter.cpp131 static PostDominatorTree *getGraph(PostDominatorTreeWrapperPass *PDTWP) { in getGraph()
137 PostDominatorTreeWrapperPass, false,
142 DOTGraphTraitsViewer<PostDominatorTreeWrapperPass, false, in PostDomViewer()
151 PostDominatorTreeWrapperPass, true,
156 DOTGraphTraitsViewer<PostDominatorTreeWrapperPass, true, in PostDomOnlyViewer()
211 PostDominatorTreeWrapperPass, false,
216 DOTGraphTraitsPrinter<PostDominatorTreeWrapperPass, false, in PostDomPrinter()
226 PostDominatorTreeWrapperPass, true,
231 DOTGraphTraitsPrinter<PostDominatorTreeWrapperPass, true, in PostDomOnlyPrinter()
DPostDominators.cpp34 char PostDominatorTreeWrapperPass::ID = 0;
36 INITIALIZE_PASS(PostDominatorTreeWrapperPass, "postdomtree",
48 bool PostDominatorTreeWrapperPass::runOnFunction(Function &F) { in runOnFunction()
53 void PostDominatorTreeWrapperPass::verifyAnalysis() const { in verifyAnalysis()
60 void PostDominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { in print()
65 return new PostDominatorTreeWrapperPass(); in createPostDomTree()
DRegionInfo.cpp130 auto PDT = &getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
148 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
167 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
DDivergenceAnalysis.cpp272 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
282 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
298 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
/external/llvm/lib/Analysis/
DDomPrinter.cpp115 static PostDominatorTree *getGraph(PostDominatorTreeWrapperPass *PDTWP) { in getGraph()
121 PostDominatorTreeWrapperPass, false,
126 DOTGraphTraitsViewer<PostDominatorTreeWrapperPass, false, in PostDomViewer()
135 PostDominatorTreeWrapperPass, true,
140 DOTGraphTraitsViewer<PostDominatorTreeWrapperPass, true, in PostDomOnlyViewer()
195 PostDominatorTreeWrapperPass, false,
200 DOTGraphTraitsPrinter<PostDominatorTreeWrapperPass, false, in PostDomPrinter()
210 PostDominatorTreeWrapperPass, true,
215 DOTGraphTraitsPrinter<PostDominatorTreeWrapperPass, true, in PostDomOnlyPrinter()
DPostDominators.cpp30 char PostDominatorTreeWrapperPass::ID = 0;
31 INITIALIZE_PASS(PostDominatorTreeWrapperPass, "postdomtree",
34 bool PostDominatorTreeWrapperPass::runOnFunction(Function &F) { in runOnFunction()
39 void PostDominatorTreeWrapperPass::print(raw_ostream &OS, const Module *) const { in print()
44 return new PostDominatorTreeWrapperPass(); in createPostDomTree()
DRegionInfo.cpp129 auto PDT = &getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
147 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
166 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
DDivergenceAnalysis.cpp271 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
281 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
297 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUUnifyDivergentExitNodes.cpp72 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY() argument
79 AU.addRequired<PostDominatorTreeWrapperPass>(); in INITIALIZE_PASS_DEPENDENCY()
162 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DPostDominators.h67 struct PostDominatorTreeWrapperPass : public FunctionPass { struct
72 PostDominatorTreeWrapperPass() : FunctionPass(ID) { in PostDominatorTreeWrapperPass() argument
/external/llvm/include/llvm/Analysis/
DPostDominators.h64 struct PostDominatorTreeWrapperPass : public FunctionPass { struct
68 PostDominatorTreeWrapperPass() : FunctionPass(ID) { in PostDominatorTreeWrapperPass() argument
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DGuardWidening.cpp753 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
761 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
780 auto *PDTWP = getAnalysisIfAvailable<PostDominatorTreeWrapperPass>(); in runOnLoop()
795 AU.addPreserved<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
806 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
815 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
DADCE.cpp701 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
709 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
714 AU.addPreserved<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
727 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
DGVNHoist.cpp1156 auto &PDT = getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
1167 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
1203 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
DGVNSink.cpp919 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/unittests/IR/
DDominatorTreeTest.cpp33 &getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
210 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
259 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
/external/llvm/lib/Transforms/Scalar/
DGuardWidening.cpp227 getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(), in runOnFunction()
234 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
684 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp170 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
374 &getAnalysis<PostDominatorTreeWrapperPass>(F).getPostDomTree(); in runOnFunction()
589 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/lib/CodeGen/
DMachineRegionInfo.cpp107 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DSanitizerCoverage.cpp190 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
504 &getAnalysis<PostDominatorTreeWrapperPass>(F).getPostDomTree(); in runOnFunction()
837 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) in INITIALIZE_PASS_DEPENDENCY()
/external/llvm/lib/Target/Hexagon/
DHexagonCommonGEP.cpp93 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
94 AU.addPreserved<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
150 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
1281 PDT = &getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonCommonGEP.cpp110 AU.addRequired<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
111 AU.addPreserved<PostDominatorTreeWrapperPass>(); in getAnalysisUsage()
168 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass)
1285 PDT = &getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); in runOnFunction()