75ee17cd5a5c880c5012b1caecab2aa44e61a997
[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/STLExtras.h"
21 #include "llvm/ADT/StringMap.h"
22 #include "llvm/Assembly/PrintModulePass.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/ManagedStatic.h"
25 #include "llvm/Support/PassNameParser.h"
26 #include "llvm/Support/raw_ostream.h"
27 #include "llvm/System/Atomic.h"
28 #include "llvm/System/Mutex.h"
29 #include "llvm/System/Threading.h"
30 #include <algorithm>
31 #include <map>
32 #include <set>
33 using namespace llvm;
34
35 //===----------------------------------------------------------------------===//
36 // Pass Implementation
37 //
38
39 Pass::Pass(PassKind K, intptr_t pid) : Resolver(0), PassID(pid), Kind(K) {
40   assert(pid && "pid cannot be 0");
41 }
42
43 Pass::Pass(PassKind K, const void *pid)
44   : Resolver(0), PassID((intptr_t)pid), Kind(K) {
45   assert(pid && "pid cannot be 0");
46 }
47
48 // Force out-of-line virtual method.
49 Pass::~Pass() { 
50   delete Resolver; 
51 }
52
53 // Force out-of-line virtual method.
54 ModulePass::~ModulePass() { }
55
56 Pass *ModulePass::createPrinterPass(raw_ostream &O,
57                                     const std::string &Banner) const {
58   return createPrintModulePass(&O, false, Banner);
59 }
60
61 PassManagerType ModulePass::getPotentialPassManagerType() const {
62   return PMT_ModulePassManager;
63 }
64
65 bool Pass::mustPreserveAnalysisID(const PassInfo *AnalysisID) const {
66   return Resolver->getAnalysisIfAvailable(AnalysisID, true) != 0;
67 }
68
69 // dumpPassStructure - Implement the -debug-passes=Structure option
70 void Pass::dumpPassStructure(unsigned Offset) {
71   dbgs().indent(Offset*2) << getPassName() << "\n";
72 }
73
74 /// getPassName - Return a nice clean name for a pass.  This usually
75 /// implemented in terms of the name that is registered by one of the
76 /// Registration templates, but can be overloaded directly.
77 ///
78 const char *Pass::getPassName() const {
79   if (const PassInfo *PI = getPassInfo())
80     return PI->getPassName();
81   return "Unnamed pass: implement Pass::getPassName()";
82 }
83
84 void Pass::preparePassManager(PMStack &) {
85   // By default, don't do anything.
86 }
87
88 PassManagerType Pass::getPotentialPassManagerType() const {
89   // Default implementation.
90   return PMT_Unknown; 
91 }
92
93 void Pass::getAnalysisUsage(AnalysisUsage &) const {
94   // By default, no analysis results are used, all are invalidated.
95 }
96
97 void Pass::releaseMemory() {
98   // By default, don't do anything.
99 }
100
101 void Pass::verifyAnalysis() const {
102   // By default, don't do anything.
103 }
104
105 void *Pass::getAdjustedAnalysisPointer(const PassInfo *) {
106   return this;
107 }
108
109 ImmutablePass *Pass::getAsImmutablePass() {
110   return 0;
111 }
112
113 PMDataManager *Pass::getAsPMDataManager() {
114   return 0;
115 }
116
117 void Pass::setResolver(AnalysisResolver *AR) {
118   assert(!Resolver && "Resolver is already set");
119   Resolver = AR;
120 }
121
122 // print - Print out the internal state of the pass.  This is called by Analyze
123 // to print out the contents of an analysis.  Otherwise it is not necessary to
124 // implement this method.
125 //
126 void Pass::print(raw_ostream &O,const Module*) const {
127   O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
128 }
129
130 // dump - call print(cerr);
131 void Pass::dump() const {
132   print(dbgs(), 0);
133 }
134
135 //===----------------------------------------------------------------------===//
136 // ImmutablePass Implementation
137 //
138 // Force out-of-line virtual method.
139 ImmutablePass::~ImmutablePass() { }
140
141 void ImmutablePass::initializePass() {
142   // By default, don't do anything.
143 }
144
145 //===----------------------------------------------------------------------===//
146 // FunctionPass Implementation
147 //
148
149 Pass *FunctionPass::createPrinterPass(raw_ostream &O,
150                                       const std::string &Banner) const {
151   return createPrintFunctionPass(Banner, &O);
152 }
153
154 // run - On a module, we run this pass by initializing, runOnFunction'ing once
155 // for every function in the module, then by finalizing.
156 //
157 bool FunctionPass::runOnModule(Module &M) {
158   bool Changed = doInitialization(M);
159
160   for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
161     if (!I->isDeclaration())      // Passes are not run on external functions!
162     Changed |= runOnFunction(*I);
163
164   return Changed | doFinalization(M);
165 }
166
167 // run - On a function, we simply initialize, run the function, then finalize.
168 //
169 bool FunctionPass::run(Function &F) {
170   // Passes are not run on external functions!
171   if (F.isDeclaration()) return false;
172
173   bool Changed = doInitialization(*F.getParent());
174   Changed |= runOnFunction(F);
175   return Changed | doFinalization(*F.getParent());
176 }
177
178 bool FunctionPass::doInitialization(Module &) {
179   // By default, don't do anything.
180   return false;
181 }
182
183 bool FunctionPass::doFinalization(Module &) {
184   // By default, don't do anything.
185   return false;
186 }
187
188 PassManagerType FunctionPass::getPotentialPassManagerType() const {
189   return PMT_FunctionPassManager;
190 }
191
192 //===----------------------------------------------------------------------===//
193 // BasicBlockPass Implementation
194 //
195
196 Pass *BasicBlockPass::createPrinterPass(raw_ostream &O,
197                                         const std::string &Banner) const {
198   
199   llvm_unreachable("BasicBlockPass printing unsupported.");
200   return 0;
201 }
202
203 // To run this pass on a function, we simply call runOnBasicBlock once for each
204 // function.
205 //
206 bool BasicBlockPass::runOnFunction(Function &F) {
207   bool Changed = doInitialization(F);
208   for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
209     Changed |= runOnBasicBlock(*I);
210   return Changed | doFinalization(F);
211 }
212
213 bool BasicBlockPass::doInitialization(Module &) {
214   // By default, don't do anything.
215   return false;
216 }
217
218 bool BasicBlockPass::doInitialization(Function &) {
219   // By default, don't do anything.
220   return false;
221 }
222
223 bool BasicBlockPass::doFinalization(Function &) {
224   // By default, don't do anything.
225   return false;
226 }
227
228 bool BasicBlockPass::doFinalization(Module &) {
229   // By default, don't do anything.
230   return false;
231 }
232
233 PassManagerType BasicBlockPass::getPotentialPassManagerType() const {
234   return PMT_BasicBlockPassManager; 
235 }
236
237 // getPassInfo - Return the PassInfo data structure that corresponds to this
238 // pass...
239 const PassInfo *Pass::getPassInfo() const {
240   return lookupPassInfo(PassID);
241 }
242
243 const PassInfo *Pass::lookupPassInfo(intptr_t TI) {
244   return PassRegistry::getPassRegistry()->getPassInfo(TI);
245 }
246
247 const PassInfo *Pass::lookupPassInfo(StringRef Arg) {
248   return PassRegistry::getPassRegistry()->getPassInfo(Arg);
249 }
250
251 Pass *PassInfo::createPass() const {
252   assert((!isAnalysisGroup() || NormalCtor) &&
253          "No default implementation found for analysis group!");
254   assert(NormalCtor &&
255          "Cannot call createPass on PassInfo without default ctor!");
256   return NormalCtor();
257 }
258
259 //===----------------------------------------------------------------------===//
260 //                  Analysis Group Implementation Code
261 //===----------------------------------------------------------------------===//
262
263 // RegisterAGBase implementation
264 //
265 RegisterAGBase::RegisterAGBase(const char *Name, intptr_t InterfaceID,
266                                intptr_t PassID, bool isDefault)
267   : PassInfo(Name, InterfaceID) {
268
269   PassInfo *InterfaceInfo =
270     const_cast<PassInfo*>(Pass::lookupPassInfo(InterfaceID));
271   if (InterfaceInfo == 0) {
272     // First reference to Interface, register it now.
273     PassRegistry::getPassRegistry()->registerPass(*this);
274     InterfaceInfo = this;
275   }
276   assert(isAnalysisGroup() &&
277          "Trying to join an analysis group that is a normal pass!");
278
279   if (PassID) {
280     const PassInfo *ImplementationInfo = Pass::lookupPassInfo(PassID);
281     assert(ImplementationInfo &&
282            "Must register pass before adding to AnalysisGroup!");
283
284     // Make sure we keep track of the fact that the implementation implements
285     // the interface.
286     PassInfo *IIPI = const_cast<PassInfo*>(ImplementationInfo);
287     IIPI->addInterfaceImplemented(InterfaceInfo);
288     
289     PassRegistry::getPassRegistry()->registerAnalysisGroup(InterfaceInfo, IIPI, isDefault);
290   }
291 }
292
293
294 //===----------------------------------------------------------------------===//
295 // PassRegistrationListener implementation
296 //
297
298 // PassRegistrationListener ctor - Add the current object to the list of
299 // PassRegistrationListeners...
300 PassRegistrationListener::PassRegistrationListener() {
301   PassRegistry::getPassRegistry()->addRegistrationListener(this);
302 }
303
304 // dtor - Remove object from list of listeners...
305 PassRegistrationListener::~PassRegistrationListener() {
306   PassRegistry::getPassRegistry()->removeRegistrationListener(this);
307 }
308
309 // enumeratePasses - Iterate over the registered passes, calling the
310 // passEnumerate callback on each PassInfo object.
311 //
312 void PassRegistrationListener::enumeratePasses() {
313   PassRegistry::getPassRegistry()->enumerateWith(this);
314 }
315
316 PassNameParser::~PassNameParser() {}
317
318 //===----------------------------------------------------------------------===//
319 //   AnalysisUsage Class Implementation
320 //
321
322 namespace {
323   struct GetCFGOnlyPasses : public PassRegistrationListener {
324     typedef AnalysisUsage::VectorType VectorType;
325     VectorType &CFGOnlyList;
326     GetCFGOnlyPasses(VectorType &L) : CFGOnlyList(L) {}
327     
328     void passEnumerate(const PassInfo *P) {
329       if (P->isCFGOnlyPass())
330         CFGOnlyList.push_back(P);
331     }
332   };
333 }
334
335 // setPreservesCFG - This function should be called to by the pass, iff they do
336 // not:
337 //
338 //  1. Add or remove basic blocks from the function
339 //  2. Modify terminator instructions in any way.
340 //
341 // This function annotates the AnalysisUsage info object to say that analyses
342 // that only depend on the CFG are preserved by this pass.
343 //
344 void AnalysisUsage::setPreservesCFG() {
345   // Since this transformation doesn't modify the CFG, it preserves all analyses
346   // that only depend on the CFG (like dominators, loop info, etc...)
347   GetCFGOnlyPasses(Preserved).enumeratePasses();
348 }
349
350 AnalysisUsage &AnalysisUsage::addRequiredID(AnalysisID ID) {
351   assert(ID && "Pass class not registered!");
352   Required.push_back(ID);
353   return *this;
354 }
355
356 AnalysisUsage &AnalysisUsage::addRequiredTransitiveID(AnalysisID ID) {
357   assert(ID && "Pass class not registered!");
358   Required.push_back(ID);
359   RequiredTransitive.push_back(ID);
360   return *this;
361 }