Revert "Add const to a bunch of Type* in DataLayout. NFC."
[oota-llvm.git] / include / llvm / IR / Dominators.h
1 //===- Dominators.h - Dominator Info Calculation ----------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the DominatorTree class, which provides fast and efficient
11 // dominance queries.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_IR_DOMINATORS_H
16 #define LLVM_IR_DOMINATORS_H
17
18 #include "llvm/ADT/DenseMap.h"
19 #include "llvm/ADT/DepthFirstIterator.h"
20 #include "llvm/ADT/GraphTraits.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/IR/BasicBlock.h"
24 #include "llvm/IR/CFG.h"
25 #include "llvm/IR/Function.h"
26 #include "llvm/Pass.h"
27 #include "llvm/Support/Compiler.h"
28 #include "llvm/Support/GenericDomTree.h"
29 #include "llvm/Support/raw_ostream.h"
30 #include <algorithm>
31
32 namespace llvm {
33
34 // FIXME: Replace this brittle forward declaration with the include of the new
35 // PassManager.h when doing so doesn't break the PassManagerBuilder.
36 template <typename IRUnitT> class AnalysisManager;
37 class PreservedAnalyses;
38
39 extern template class DomTreeNodeBase<BasicBlock>;
40 extern template class DominatorTreeBase<BasicBlock>;
41
42 extern template void Calculate<Function, BasicBlock *>(
43     DominatorTreeBase<GraphTraits<BasicBlock *>::NodeType> &DT, Function &F);
44 extern template void Calculate<Function, Inverse<BasicBlock *>>(
45     DominatorTreeBase<GraphTraits<Inverse<BasicBlock *>>::NodeType> &DT,
46     Function &F);
47
48 typedef DomTreeNodeBase<BasicBlock> DomTreeNode;
49
50 class BasicBlockEdge {
51   const BasicBlock *Start;
52   const BasicBlock *End;
53 public:
54   BasicBlockEdge(const BasicBlock *Start_, const BasicBlock *End_) :
55     Start(Start_), End(End_) { }
56   const BasicBlock *getStart() const {
57     return Start;
58   }
59   const BasicBlock *getEnd() const {
60     return End;
61   }
62   bool isSingleEdge() const;
63 };
64
65 /// \brief Concrete subclass of DominatorTreeBase that is used to compute a
66 /// normal dominator tree.
67 class DominatorTree : public DominatorTreeBase<BasicBlock> {
68 public:
69   typedef DominatorTreeBase<BasicBlock> Base;
70
71   DominatorTree() : DominatorTreeBase<BasicBlock>(false) {}
72   explicit DominatorTree(Function &F) : DominatorTreeBase<BasicBlock>(false) {
73     recalculate(F);
74   }
75
76   DominatorTree(DominatorTree &&Arg)
77       : Base(std::move(static_cast<Base &>(Arg))) {}
78   DominatorTree &operator=(DominatorTree &&RHS) {
79     Base::operator=(std::move(static_cast<Base &>(RHS)));
80     return *this;
81   }
82
83   /// \brief Returns *false* if the other dominator tree matches this dominator
84   /// tree.
85   inline bool compare(const DominatorTree &Other) const {
86     const DomTreeNode *R = getRootNode();
87     const DomTreeNode *OtherR = Other.getRootNode();
88
89     if (!R || !OtherR || R->getBlock() != OtherR->getBlock())
90       return true;
91
92     if (Base::compare(Other))
93       return true;
94
95     return false;
96   }
97
98   // Ensure base-class overloads are visible.
99   using Base::dominates;
100
101   /// \brief Return true if Def dominates a use in User.
102   ///
103   /// This performs the special checks necessary if Def and User are in the same
104   /// basic block. Note that Def doesn't dominate a use in Def itself!
105   bool dominates(const Instruction *Def, const Use &U) const;
106   bool dominates(const Instruction *Def, const Instruction *User) const;
107   bool dominates(const Instruction *Def, const BasicBlock *BB) const;
108   bool dominates(const BasicBlockEdge &BBE, const Use &U) const;
109   bool dominates(const BasicBlockEdge &BBE, const BasicBlock *BB) const;
110
111   // Ensure base class overloads are visible.
112   using Base::isReachableFromEntry;
113
114   /// \brief Provide an overload for a Use.
115   bool isReachableFromEntry(const Use &U) const;
116
117   /// \brief Verify the correctness of the domtree by re-computing it.
118   ///
119   /// This should only be used for debugging as it aborts the program if the
120   /// verification fails.
121   void verifyDomTree() const;
122 };
123
124 //===-------------------------------------
125 // DominatorTree GraphTraits specializations so the DominatorTree can be
126 // iterable by generic graph iterators.
127
128 template <> struct GraphTraits<DomTreeNode*> {
129   typedef DomTreeNode NodeType;
130   typedef NodeType::iterator  ChildIteratorType;
131
132   static NodeType *getEntryNode(NodeType *N) {
133     return N;
134   }
135   static inline ChildIteratorType child_begin(NodeType *N) {
136     return N->begin();
137   }
138   static inline ChildIteratorType child_end(NodeType *N) {
139     return N->end();
140   }
141
142   typedef df_iterator<DomTreeNode*> nodes_iterator;
143
144   static nodes_iterator nodes_begin(DomTreeNode *N) {
145     return df_begin(getEntryNode(N));
146   }
147
148   static nodes_iterator nodes_end(DomTreeNode *N) {
149     return df_end(getEntryNode(N));
150   }
151 };
152
153 template <> struct GraphTraits<const DomTreeNode *> {
154   typedef const DomTreeNode NodeType;
155   typedef NodeType::const_iterator ChildIteratorType;
156
157   static NodeType *getEntryNode(NodeType *N) {
158     return N;
159   }
160   static inline ChildIteratorType child_begin(NodeType *N) {
161     return N->begin();
162   }
163   static inline ChildIteratorType child_end(NodeType *N) {
164     return N->end();
165   }
166
167   typedef df_iterator<const DomTreeNode *> nodes_iterator;
168
169   static nodes_iterator nodes_begin(const DomTreeNode *N) {
170     return df_begin(getEntryNode(N));
171   }
172
173   static nodes_iterator nodes_end(const DomTreeNode *N) {
174     return df_end(getEntryNode(N));
175   }
176 };
177
178 template <> struct GraphTraits<DominatorTree*>
179   : public GraphTraits<DomTreeNode*> {
180   static NodeType *getEntryNode(DominatorTree *DT) {
181     return DT->getRootNode();
182   }
183
184   static nodes_iterator nodes_begin(DominatorTree *N) {
185     return df_begin(getEntryNode(N));
186   }
187
188   static nodes_iterator nodes_end(DominatorTree *N) {
189     return df_end(getEntryNode(N));
190   }
191 };
192
193 /// \brief Analysis pass which computes a \c DominatorTree.
194 class DominatorTreeAnalysis {
195 public:
196   /// \brief Provide the result typedef for this analysis pass.
197   typedef DominatorTree Result;
198
199   /// \brief Opaque, unique identifier for this analysis pass.
200   static void *ID() { return (void *)&PassID; }
201
202   /// \brief Run the analysis pass over a function and produce a dominator tree.
203   DominatorTree run(Function &F);
204
205   /// \brief Provide access to a name for this pass for debugging purposes.
206   static StringRef name() { return "DominatorTreeAnalysis"; }
207
208 private:
209   static char PassID;
210 };
211
212 /// \brief Printer pass for the \c DominatorTree.
213 class DominatorTreePrinterPass {
214   raw_ostream &OS;
215
216 public:
217   explicit DominatorTreePrinterPass(raw_ostream &OS);
218   PreservedAnalyses run(Function &F, AnalysisManager<Function> *AM);
219
220   static StringRef name() { return "DominatorTreePrinterPass"; }
221 };
222
223 /// \brief Verifier pass for the \c DominatorTree.
224 struct DominatorTreeVerifierPass {
225   PreservedAnalyses run(Function &F, AnalysisManager<Function> *AM);
226
227   static StringRef name() { return "DominatorTreeVerifierPass"; }
228 };
229
230 /// \brief Legacy analysis pass which computes a \c DominatorTree.
231 class DominatorTreeWrapperPass : public FunctionPass {
232   DominatorTree DT;
233
234 public:
235   static char ID;
236
237   DominatorTreeWrapperPass() : FunctionPass(ID) {
238     initializeDominatorTreeWrapperPassPass(*PassRegistry::getPassRegistry());
239   }
240
241   DominatorTree &getDomTree() { return DT; }
242   const DominatorTree &getDomTree() const { return DT; }
243
244   bool runOnFunction(Function &F) override;
245
246   void verifyAnalysis() const override;
247
248   void getAnalysisUsage(AnalysisUsage &AU) const override {
249     AU.setPreservesAll();
250   }
251
252   void releaseMemory() override { DT.releaseMemory(); }
253
254   void print(raw_ostream &OS, const Module *M = nullptr) const override;
255 };
256
257 } // End llvm namespace
258
259 #endif