Add the 'explicit' keyword to several constructors that accept one
[oota-llvm.git] / include / llvm / PassAnalysisSupport.h
1 //===- llvm/PassAnalysisSupport.h - Analysis Pass Support code --*- 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 defines stuff that is used to define and "use" Analysis Passes.
11 // This file is automatically #included by Pass.h, so:
12 //
13 //           NO .CPP FILES SHOULD INCLUDE THIS FILE DIRECTLY
14 //
15 // Instead, #include Pass.h
16 //
17 //===----------------------------------------------------------------------===//
18
19 #ifndef LLVM_PASS_ANALYSIS_SUPPORT_H
20 #define LLVM_PASS_ANALYSIS_SUPPORT_H
21
22 #include <vector>
23
24 namespace llvm {
25
26 // No need to include Pass.h, we are being included by it!
27
28 //===----------------------------------------------------------------------===//
29 // AnalysisUsage - Represent the analysis usage information of a pass.  This
30 // tracks analyses that the pass REQUIRES (must be available when the pass
31 // runs), REQUIRES TRANSITIVE (must be available throughout the lifetime of the
32 // pass), and analyses that the pass PRESERVES (the pass does not invalidate the
33 // results of these analyses).  This information is provided by a pass to the
34 // Pass infrastructure through the getAnalysisUsage virtual function.
35 //
36 class AnalysisUsage {
37   // Sets of analyses required and preserved by a pass
38   std::vector<AnalysisID> Required, RequiredTransitive, Preserved;
39   bool PreservesAll;
40 public:
41   AnalysisUsage() : PreservesAll(false) {}
42
43   // addRequired - Add the specified ID to the required set of the usage info
44   // for a pass.
45   //
46   AnalysisUsage &addRequiredID(AnalysisID ID) {
47     Required.push_back(ID);
48     return *this;
49   }
50   template<class PassClass>
51   AnalysisUsage &addRequired() {
52     assert(Pass::getClassPassInfo<PassClass>() && "Pass class not registered!");
53     Required.push_back(Pass::getClassPassInfo<PassClass>());
54     return *this;
55   }
56
57   template<class PassClass>
58   AnalysisUsage &addRequiredTransitive() {
59     AnalysisID ID = Pass::getClassPassInfo<PassClass>();
60     assert(ID && "Pass class not registered!");
61     Required.push_back(ID);
62     RequiredTransitive.push_back(ID);
63     return *this;
64   }
65
66   // addPreserved - Add the specified ID to the set of analyses preserved by
67   // this pass
68   //
69   AnalysisUsage &addPreservedID(AnalysisID ID) {
70     Preserved.push_back(ID);
71     return *this;
72   }
73
74   template<class PassClass>
75   AnalysisUsage &addPreserved() {
76     assert(Pass::getClassPassInfo<PassClass>() && "Pass class not registered!");
77     Preserved.push_back(Pass::getClassPassInfo<PassClass>());
78     return *this;
79   }
80
81   // setPreservesAll - Set by analyses that do not transform their input at all
82   void setPreservesAll() { PreservesAll = true; }
83   bool getPreservesAll() const { return PreservesAll; }
84
85   /// setPreservesCFG - This function should be called by the pass, iff they do
86   /// not:
87   ///
88   ///  1. Add or remove basic blocks from the function
89   ///  2. Modify terminator instructions in any way.
90   ///
91   /// This function annotates the AnalysisUsage info object to say that analyses
92   /// that only depend on the CFG are preserved by this pass.
93   ///
94   void setPreservesCFG();
95
96   const std::vector<AnalysisID> &getRequiredSet() const { return Required; }
97   const std::vector<AnalysisID> &getRequiredTransitiveSet() const {
98     return RequiredTransitive;
99   }
100   const std::vector<AnalysisID> &getPreservedSet() const { return Preserved; }
101 };
102
103 //===----------------------------------------------------------------------===//
104 // AnalysisResolver - Simple interface used by Pass objects to pull all
105 // analysis information out of pass manager that is responsible to manage
106 // the pass.
107 //
108 class PMDataManager;
109 class AnalysisResolver {
110 private:
111   AnalysisResolver();  // DO NOT IMPLEMENT
112
113 public:
114   explicit AnalysisResolver(PMDataManager &P) : PM(P) { }
115   
116   inline PMDataManager &getPMDataManager() { return PM; }
117
118   // Find pass that is implementing PI.
119   Pass *findImplPass(const PassInfo *PI) {
120     Pass *ResultPass = 0;
121     for (unsigned i = 0; i < AnalysisImpls.size() ; ++i) {
122       if (AnalysisImpls[i].first == PI) {
123         ResultPass = AnalysisImpls[i].second;
124         break;
125       }
126     }
127     return ResultPass;
128   }
129
130   void addAnalysisImplsPair(const PassInfo *PI, Pass *P) {
131     std::pair<const PassInfo*, Pass*> pir = std::make_pair(PI,P);
132     AnalysisImpls.push_back(pir);
133   }
134
135   // getAnalysisToUpdate - Return an analysis result or null if it doesn't exist
136   Pass *getAnalysisToUpdate(AnalysisID ID, bool Direction) const;
137
138   // AnalysisImpls - This keeps track of which passes implements the interfaces
139   // that are required by the current pass (to implement getAnalysis()).
140   // NOTE : Remove AnalysisImpls from class Pass, when AnalysisResolver
141   // replaces AnalysisResolver
142   std::vector<std::pair<const PassInfo*, Pass*> > AnalysisImpls;
143
144 private:
145   // PassManager that is used to resolve analysis info
146   PMDataManager &PM;
147 };
148
149 /// getAnalysisToUpdate<AnalysisType>() - This function is used by subclasses
150 /// to get to the analysis information that might be around that needs to be
151 /// updated.  This is different than getAnalysis in that it can fail (ie the
152 /// analysis results haven't been computed), so should only be used if you
153 /// provide the capability to update an analysis that exists.  This method is
154 /// often used by transformation APIs to update analysis results for a pass
155 /// automatically as the transform is performed.
156 ///
157 template<typename AnalysisType>
158 AnalysisType *Pass::getAnalysisToUpdate() const {
159   assert(Resolver && "Pass not resident in a PassManager object!");
160
161   const PassInfo *PI = getClassPassInfo<AnalysisType>();
162   if (PI == 0) return 0;
163   return dynamic_cast<AnalysisType*>
164     (Resolver->getAnalysisToUpdate(PI, true));
165 }
166
167 /// getAnalysis<AnalysisType>() - This function is used by subclasses to get
168 /// to the analysis information that they claim to use by overriding the
169 /// getAnalysisUsage function.
170 ///
171 template<typename AnalysisType>
172 AnalysisType &Pass::getAnalysis() const {
173   assert(Resolver &&"Pass has not been inserted into a PassManager object!");
174
175   return getAnalysisID<AnalysisType>(getClassPassInfo<AnalysisType>());
176 }
177
178 template<typename AnalysisType>
179 AnalysisType &Pass::getAnalysisID(const PassInfo *PI) const {
180   assert(PI && "getAnalysis for unregistered pass!");
181   assert(Resolver&&"Pass has not been inserted into a PassManager object!");
182   // PI *must* appear in AnalysisImpls.  Because the number of passes used
183   // should be a small number, we just do a linear search over a (dense)
184   // vector.
185   Pass *ResultPass = Resolver->findImplPass(PI);
186   assert (ResultPass && 
187           "getAnalysis*() called on an analysis that was not "
188           "'required' by pass!");
189
190   // Because the AnalysisType may not be a subclass of pass (for
191   // AnalysisGroups), we must use dynamic_cast here to potentially adjust the
192   // return pointer (because the class may multiply inherit, once from pass,
193   // once from AnalysisType).
194   //
195   AnalysisType *Result = dynamic_cast<AnalysisType*>(ResultPass);
196   assert(Result && "Pass does not implement interface required!");
197   return *Result;
198 }
199
200 } // End llvm namespace
201
202 #endif