Remove BasicBlockPass::runOnFunction, which was unused.
[oota-llvm.git] / lib / VMCore / Pass.cpp
1 //===- Pass.cpp - LLVM Pass Infrastructure Implementation -----------------===//
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 implements the LLVM Pass infrastructure.  It is primarily
11 // responsible with ensuring that passes are executed and batched together
12 // optimally.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "llvm/Pass.h"
17 #include "llvm/PassManager.h"
18 #include "llvm/PassRegistry.h"
19 #include "llvm/Module.h"
20 #include "llvm/ADT/StringMap.h"
21 #include "llvm/Assembly/PrintModulePass.h"
22 #include "llvm/Support/Debug.h"
23 #include "llvm/Support/PassNameParser.h"
24 #include "llvm/Support/raw_ostream.h"
25 #include "llvm/System/Atomic.h"
26 #include "llvm/System/Mutex.h"
27 #include "llvm/System/Threading.h"
28 using namespace llvm;
29
30 //===----------------------------------------------------------------------===//
31 // Pass Implementation
32 //
33
34 Pass::Pass(PassKind K, char &pid) : Resolver(0), PassID(&pid), Kind(K) { }
35
36 // Force out-of-line virtual method.
37 Pass::~Pass() { 
38   delete Resolver; 
39 }
40
41 // Force out-of-line virtual method.
42 ModulePass::~ModulePass() { }
43
44 Pass *ModulePass::createPrinterPass(raw_ostream &O,
45                                     const std::string &Banner) const {
46   return createPrintModulePass(&O, false, Banner);
47 }
48
49 PassManagerType ModulePass::getPotentialPassManagerType() const {
50   return PMT_ModulePassManager;
51 }
52
53 bool Pass::mustPreserveAnalysisID(char &AID) const {
54   return Resolver->getAnalysisIfAvailable(&AID, true) != 0;
55 }
56
57 // dumpPassStructure - Implement the -debug-passes=Structure option
58 void Pass::dumpPassStructure(unsigned Offset) {
59   dbgs().indent(Offset*2) << getPassName() << "\n";
60 }
61
62 /// getPassName - Return a nice clean name for a pass.  This usually
63 /// implemented in terms of the name that is registered by one of the
64 /// Registration templates, but can be overloaded directly.
65 ///
66 const char *Pass::getPassName() const {
67   AnalysisID AID =  getPassID();
68   const PassInfo *PI = PassRegistry::getPassRegistry()->getPassInfo(AID);
69   if (PI)
70     return PI->getPassName();
71   return "Unnamed pass: implement Pass::getPassName()";
72 }
73
74 void Pass::preparePassManager(PMStack &) {
75   // By default, don't do anything.
76 }
77
78 PassManagerType Pass::getPotentialPassManagerType() const {
79   // Default implementation.
80   return PMT_Unknown; 
81 }
82
83 void Pass::getAnalysisUsage(AnalysisUsage &) const {
84   // By default, no analysis results are used, all are invalidated.
85 }
86
87 void Pass::releaseMemory() {
88   // By default, don't do anything.
89 }
90
91 void Pass::verifyAnalysis() const {
92   // By default, don't do anything.
93 }
94
95 void *Pass::getAdjustedAnalysisPointer(AnalysisID AID) {
96   return this;
97 }
98
99 ImmutablePass *Pass::getAsImmutablePass() {
100   return 0;
101 }
102
103 PMDataManager *Pass::getAsPMDataManager() {
104   return 0;
105 }
106
107 void Pass::setResolver(AnalysisResolver *AR) {
108   assert(!Resolver && "Resolver is already set");
109   Resolver = AR;
110 }
111
112 // print - Print out the internal state of the pass.  This is called by Analyze
113 // to print out the contents of an analysis.  Otherwise it is not necessary to
114 // implement this method.
115 //
116 void Pass::print(raw_ostream &O,const Module*) const {
117   O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
118 }
119
120 // dump - call print(cerr);
121 void Pass::dump() const {
122   print(dbgs(), 0);
123 }
124
125 //===----------------------------------------------------------------------===//
126 // ImmutablePass Implementation
127 //
128 // Force out-of-line virtual method.
129 ImmutablePass::~ImmutablePass() { }
130
131 void ImmutablePass::initializePass() {
132   // By default, don't do anything.
133 }
134
135 //===----------------------------------------------------------------------===//
136 // FunctionPass Implementation
137 //
138
139 Pass *FunctionPass::createPrinterPass(raw_ostream &O,
140                                       const std::string &Banner) const {
141   return createPrintFunctionPass(Banner, &O);
142 }
143
144 bool FunctionPass::doInitialization(Module &) {
145   // By default, don't do anything.
146   return false;
147 }
148
149 bool FunctionPass::doFinalization(Module &) {
150   // By default, don't do anything.
151   return false;
152 }
153
154 PassManagerType FunctionPass::getPotentialPassManagerType() const {
155   return PMT_FunctionPassManager;
156 }
157
158 //===----------------------------------------------------------------------===//
159 // BasicBlockPass Implementation
160 //
161
162 Pass *BasicBlockPass::createPrinterPass(raw_ostream &O,
163                                         const std::string &Banner) const {
164   
165   llvm_unreachable("BasicBlockPass printing unsupported.");
166   return 0;
167 }
168
169 bool BasicBlockPass::doInitialization(Module &) {
170   // By default, don't do anything.
171   return false;
172 }
173
174 bool BasicBlockPass::doInitialization(Function &) {
175   // By default, don't do anything.
176   return false;
177 }
178
179 bool BasicBlockPass::doFinalization(Function &) {
180   // By default, don't do anything.
181   return false;
182 }
183
184 bool BasicBlockPass::doFinalization(Module &) {
185   // By default, don't do anything.
186   return false;
187 }
188
189 PassManagerType BasicBlockPass::getPotentialPassManagerType() const {
190   return PMT_BasicBlockPassManager; 
191 }
192
193 const PassInfo *Pass::lookupPassInfo(const void *TI) {
194   return PassRegistry::getPassRegistry()->getPassInfo(TI);
195 }
196
197 const PassInfo *Pass::lookupPassInfo(StringRef Arg) {
198   return PassRegistry::getPassRegistry()->getPassInfo(Arg);
199 }
200
201 Pass *PassInfo::createPass() const {
202   assert((!isAnalysisGroup() || NormalCtor) &&
203          "No default implementation found for analysis group!");
204   assert(NormalCtor &&
205          "Cannot call createPass on PassInfo without default ctor!");
206   return NormalCtor();
207 }
208
209 //===----------------------------------------------------------------------===//
210 //                  Analysis Group Implementation Code
211 //===----------------------------------------------------------------------===//
212
213 // RegisterAGBase implementation
214 //
215 RegisterAGBase::RegisterAGBase(const char *Name, const void *InterfaceID,
216                                const void *PassID, bool isDefault)
217     : PassInfo(Name, InterfaceID) {
218   PassRegistry::getPassRegistry()->registerAnalysisGroup(InterfaceID, PassID,
219                                                          *this, isDefault);
220 }
221
222
223 //===----------------------------------------------------------------------===//
224 // PassRegistrationListener implementation
225 //
226
227 // PassRegistrationListener ctor - Add the current object to the list of
228 // PassRegistrationListeners...
229 PassRegistrationListener::PassRegistrationListener() {
230   PassRegistry::getPassRegistry()->addRegistrationListener(this);
231 }
232
233 // dtor - Remove object from list of listeners...
234 PassRegistrationListener::~PassRegistrationListener() {
235   PassRegistry::getPassRegistry()->removeRegistrationListener(this);
236 }
237
238 // enumeratePasses - Iterate over the registered passes, calling the
239 // passEnumerate callback on each PassInfo object.
240 //
241 void PassRegistrationListener::enumeratePasses() {
242   PassRegistry::getPassRegistry()->enumerateWith(this);
243 }
244
245 PassNameParser::~PassNameParser() {}
246
247 //===----------------------------------------------------------------------===//
248 //   AnalysisUsage Class Implementation
249 //
250
251 namespace {
252   struct GetCFGOnlyPasses : public PassRegistrationListener {
253     typedef AnalysisUsage::VectorType VectorType;
254     VectorType &CFGOnlyList;
255     GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}
256     
257     void passEnumerate(const PassInfo *P) {
258       if (P->isCFGOnlyPass())
259         CFGOnlyList.push_back(P->getTypeInfo());
260     }
261   };
262 }
263
264 // setPreservesCFG - This function should be called to by the pass, iff they do
265 // not:
266 //
267 //  1. Add or remove basic blocks from the function
268 //  2. Modify terminator instructions in any way.
269 //
270 // This function annotates the AnalysisUsage info object to say that analyses
271 // that only depend on the CFG are preserved by this pass.
272 //
273 void AnalysisUsage::setPreservesCFG() {
274   // Since this transformation doesn't modify the CFG, it preserves all analyses
275   // that only depend on the CFG (like dominators, loop info, etc...)
276   GetCFGOnlyPasses(Preserved).enumeratePasses();
277 }
278
279 AnalysisUsage &AnalysisUsage::addPreserved(StringRef Arg) {
280   const PassInfo *PI = Pass::lookupPassInfo(Arg);
281   // If the pass exists, preserve it. Otherwise silently do nothing.
282   if (PI) Preserved.push_back(PI->getTypeInfo());
283   return *this;
284 }
285
286 AnalysisUsage &AnalysisUsage::addRequiredID(const void *ID) {
287   Required.push_back(ID);
288   return *this;
289 }
290
291 AnalysisUsage &AnalysisUsage::addRequiredID(char &ID) {
292   Required.push_back(&ID);
293   return *this;
294 }
295
296 AnalysisUsage &AnalysisUsage::addRequiredTransitiveID(char &ID) {
297   Required.push_back(&ID);
298   RequiredTransitive.push_back(&ID);
299   return *this;
300 }