d87f60465bb7d712d0495ef4da85a560746a83a1
[oota-llvm.git] / include / llvm / Analysis / PostDominators.h
1 //=- llvm/Analysis/PostDominators.h - Post Dominator Calculation-*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file exposes interfaces to post dominance information.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ANALYSIS_POST_DOMINATORS_H
15 #define LLVM_ANALYSIS_POST_DOMINATORS_H
16
17 #include "llvm/Analysis/Dominators.h"
18
19 namespace llvm {
20
21 /// PostDominatorTree Class - Concrete subclass of DominatorTree that is used to
22 /// compute the a post-dominator tree.
23 ///
24 struct PostDominatorTree : public DominatorTreeBase {
25   static char ID; // Pass identification, replacement for typeid
26
27   PostDominatorTree() : 
28     DominatorTreeBase((intptr_t)&ID, true) {}
29
30   virtual bool runOnFunction(Function &F) {
31     reset();     // Reset from the last time we were run...
32     PDTcalculate(*this, F);
33     return false;
34   }
35
36   virtual void getAnalysisUsage(AnalysisUsage &AU) const {
37     AU.setPreservesAll();
38   }
39 private:
40   friend void PDTcalculate(PostDominatorTree& PDT, Function &F);
41 };
42
43
44 /// PostDominanceFrontier Class - Concrete subclass of DominanceFrontier that is
45 /// used to compute the a post-dominance frontier.
46 ///
47 struct PostDominanceFrontier : public DominanceFrontierBase {
48   static char ID;
49   PostDominanceFrontier() 
50     : DominanceFrontierBase((intptr_t) &ID, true) {}
51
52   virtual bool runOnFunction(Function &) {
53     Frontiers.clear();
54     PostDominatorTree &DT = getAnalysis<PostDominatorTree>();
55     Roots = DT.getRoots();
56     if (const DomTreeNode *Root = DT.getRootNode())
57       calculate(DT, Root);
58     return false;
59   }
60
61   virtual void getAnalysisUsage(AnalysisUsage &AU) const {
62     AU.setPreservesAll();
63     AU.addRequired<PostDominatorTree>();
64   }
65
66 private:
67   const DomSetType &calculate(const PostDominatorTree &DT,
68                               const DomTreeNode *Node);
69 };
70
71 } // End llvm namespace
72
73 // Make sure that any clients of this file link in PostDominators.cpp
74 FORCE_DEFINING_FILE_TO_BE_LINKED(PostDominanceFrontier)
75
76 #endif