blob: 2480d70bb2fbd53cef0257d2080ab0b826ac5fc2 [file] [log] [blame]
Chris Lattner26e4f892002-01-21 07:37:31 +00001//===- Pass.cpp - LLVM Pass Infrastructure Impementation ------------------===//
2//
3// This file implements the LLVM Pass infrastructure. It is primarily
4// responsible with ensuring that passes are executed and batched together
5// optimally.
6//
7//===----------------------------------------------------------------------===//
8
Chris Lattnercdd09c22002-01-31 00:45:31 +00009#include "llvm/PassManager.h"
Chris Lattner37c86672002-04-28 20:46:05 +000010#include "PassManagerT.h" // PassManagerT implementation
Chris Lattnercdd09c22002-01-31 00:45:31 +000011#include "llvm/Module.h"
Chris Lattner26e4f892002-01-21 07:37:31 +000012#include "Support/STLExtras.h"
Chris Lattner37c86672002-04-28 20:46:05 +000013#include "Support/CommandLine.h"
Chris Lattner37d3c952002-07-23 18:08:00 +000014#include "Support/TypeInfo.h"
Chris Lattner37c86672002-04-28 20:46:05 +000015#include <typeinfo>
16#include <iostream>
Chris Lattnere2eb99e2002-04-29 04:04:29 +000017#include <sys/time.h>
18#include <stdio.h>
Chris Lattnerd013ba92002-01-23 05:49:41 +000019
Chris Lattner7e0dbe62002-05-06 19:31:52 +000020//===----------------------------------------------------------------------===//
21// AnalysisID Class Implementation
22//
23
24static std::vector<AnalysisID> CFGOnlyAnalyses;
25
Chris Lattnercdd09c22002-01-31 00:45:31 +000026// Source of unique analysis ID #'s.
27unsigned AnalysisID::NextID = 0;
28
Chris Lattner7e0dbe62002-05-06 19:31:52 +000029AnalysisID::AnalysisID(const AnalysisID &AID, bool DependsOnlyOnCFG) {
30 ID = AID.ID; // Implement the copy ctor part...
31 Constructor = AID.Constructor;
32
33 // If this analysis only depends on the CFG of the function, add it to the CFG
34 // only list...
35 if (DependsOnlyOnCFG)
36 CFGOnlyAnalyses.push_back(AID);
37}
38
39//===----------------------------------------------------------------------===//
40// AnalysisResolver Class Implementation
41//
42
Chris Lattnercdd09c22002-01-31 00:45:31 +000043void AnalysisResolver::setAnalysisResolver(Pass *P, AnalysisResolver *AR) {
44 assert(P->Resolver == 0 && "Pass already in a PassManager!");
45 P->Resolver = AR;
46}
47
Chris Lattner7e0dbe62002-05-06 19:31:52 +000048//===----------------------------------------------------------------------===//
49// AnalysisUsage Class Implementation
50//
Chris Lattneree2ff5d2002-04-28 21:25:41 +000051
52// preservesCFG - This function should be called to by the pass, iff they do
53// not:
54//
55// 1. Add or remove basic blocks from the function
56// 2. Modify terminator instructions in any way.
57//
58// This function annotates the AnalysisUsage info object to say that analyses
59// that only depend on the CFG are preserved by this pass.
60//
61void AnalysisUsage::preservesCFG() {
Chris Lattner7e0dbe62002-05-06 19:31:52 +000062 // Since this transformation doesn't modify the CFG, it preserves all analyses
63 // that only depend on the CFG (like dominators, loop info, etc...)
64 //
65 Preserved.insert(Preserved.end(),
66 CFGOnlyAnalyses.begin(), CFGOnlyAnalyses.end());
Chris Lattneree2ff5d2002-04-28 21:25:41 +000067}
68
69
Chris Lattner37c86672002-04-28 20:46:05 +000070//===----------------------------------------------------------------------===//
71// PassManager implementation - The PassManager class is a simple Pimpl class
72// that wraps the PassManagerT template.
73//
74PassManager::PassManager() : PM(new PassManagerT<Module>()) {}
75PassManager::~PassManager() { delete PM; }
76void PassManager::add(Pass *P) { PM->add(P); }
Chris Lattner113f4f42002-06-25 16:13:24 +000077bool PassManager::run(Module &M) { return PM->run(M); }
Chris Lattnercdd09c22002-01-31 00:45:31 +000078
Chris Lattner37c86672002-04-28 20:46:05 +000079
80//===----------------------------------------------------------------------===//
Chris Lattnere2eb99e2002-04-29 04:04:29 +000081// TimingInfo Class - This class is used to calculate information about the
82// amount of time each pass takes to execute. This only happens with
83// -time-passes is enabled on the command line.
84//
Chris Lattnerf5cad152002-07-22 02:10:13 +000085static cl::opt<bool>
86EnableTiming("time-passes",
87 cl::desc("Time each pass, printing elapsed time for each on exit"));
Chris Lattnere2eb99e2002-04-29 04:04:29 +000088
89static double getTime() {
90 struct timeval T;
91 gettimeofday(&T, 0);
92 return T.tv_sec + T.tv_usec/1000000.0;
93}
94
95// Create method. If Timing is enabled, this creates and returns a new timing
96// object, otherwise it returns null.
97//
98TimingInfo *TimingInfo::create() {
99 return EnableTiming ? new TimingInfo() : 0;
100}
101
102void TimingInfo::passStarted(Pass *P) { TimingData[P] -= getTime(); }
103void TimingInfo::passEnded(Pass *P) { TimingData[P] += getTime(); }
104
105// TimingDtor - Print out information about timing information
106TimingInfo::~TimingInfo() {
107 // Iterate over all of the data, converting it into the dual of the data map,
108 // so that the data is sorted by amount of time taken, instead of pointer.
109 //
Anand Shukla8c377892002-06-25 22:07:38 +0000110 std::vector<std::pair<double, Pass*> > Data;
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000111 double TotalTime = 0;
112 for (std::map<Pass*, double>::iterator I = TimingData.begin(),
113 E = TimingData.end(); I != E; ++I)
114 // Throw out results for "grouping" pass managers...
115 if (!dynamic_cast<AnalysisResolver*>(I->first)) {
116 Data.push_back(std::make_pair(I->second, I->first));
117 TotalTime += I->second;
118 }
119
120 // Sort the data by time as the primary key, in reverse order...
Anand Shukla8c377892002-06-25 22:07:38 +0000121 std::sort(Data.begin(), Data.end(), std::greater<std::pair<double, Pass*> >());
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000122
123 // Print out timing header...
Anand Shukla8c377892002-06-25 22:07:38 +0000124 std::cerr << std::string(79, '=') << "\n"
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000125 << " ... Pass execution timing report ...\n"
126 << std::string(79, '=') << "\n Total Execution Time: " << TotalTime
Chris Lattner37104aa2002-04-29 14:57:45 +0000127 << " seconds\n\n % Time: Seconds:\tPass Name:\n";
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000128
129 // Loop through all of the timing data, printing it out...
130 for (unsigned i = 0, e = Data.size(); i != e; ++i) {
131 fprintf(stderr, " %6.2f%% %fs\t%s\n", Data[i].first*100 / TotalTime,
Chris Lattner37104aa2002-04-29 14:57:45 +0000132 Data[i].first, Data[i].second->getPassName());
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000133 }
Anand Shukla8c377892002-06-25 22:07:38 +0000134 std::cerr << " 100.00% " << TotalTime << "s\tTOTAL\n"
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000135 << std::string(79, '=') << "\n";
136}
137
138
139//===----------------------------------------------------------------------===//
Chris Lattnerd013ba92002-01-23 05:49:41 +0000140// Pass debugging information. Often it is useful to find out what pass is
141// running when a crash occurs in a utility. When this library is compiled with
142// debugging on, a command line option (--debug-pass) is enabled that causes the
143// pass name to be printed before it executes.
144//
Chris Lattnerd013ba92002-01-23 05:49:41 +0000145
Chris Lattnercdd09c22002-01-31 00:45:31 +0000146// Different debug levels that can be enabled...
147enum PassDebugLevel {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000148 None, Structure, Executions, Details
Chris Lattnercdd09c22002-01-31 00:45:31 +0000149};
Chris Lattnerd013ba92002-01-23 05:49:41 +0000150
Chris Lattnerf5cad152002-07-22 02:10:13 +0000151static cl::opt<enum PassDebugLevel>
152PassDebugging("debug-pass", cl::Hidden,
153 cl::desc("Print PassManager debugging information"),
154 cl::values(
155 clEnumVal(None , "disable debug output"),
156 // TODO: add option to print out pass names "PassOptions"
157 clEnumVal(Structure , "print pass structure before run()"),
158 clEnumVal(Executions, "print pass name before it is executed"),
159 clEnumVal(Details , "print pass details when it is executed"),
160 0));
Chris Lattnercdd09c22002-01-31 00:45:31 +0000161
162void PMDebug::PrintPassStructure(Pass *P) {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000163 if (PassDebugging >= Structure)
Chris Lattnercdd09c22002-01-31 00:45:31 +0000164 P->dumpPassStructure();
165}
166
167void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
Chris Lattnera454b5b2002-04-28 05:14:06 +0000168 Pass *P, Annotable *V) {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000169 if (PassDebugging >= Executions) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000170 std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
Chris Lattner37104aa2002-04-29 14:57:45 +0000171 << P->getPassName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000172 if (V) {
173 std::cerr << "' on ";
Chris Lattnera454b5b2002-04-28 05:14:06 +0000174
175 if (dynamic_cast<Module*>(V)) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000176 std::cerr << "Module\n"; return;
Chris Lattnera454b5b2002-04-28 05:14:06 +0000177 } else if (Function *F = dynamic_cast<Function*>(V))
178 std::cerr << "Function '" << F->getName();
179 else if (BasicBlock *BB = dynamic_cast<BasicBlock*>(V))
180 std::cerr << "BasicBlock '" << BB->getName();
181 else if (Value *Val = dynamic_cast<Value*>(V))
182 std::cerr << typeid(*Val).name() << " '" << Val->getName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000183 }
184 std::cerr << "'...\n";
185 }
186}
187
188void PMDebug::PrintAnalysisSetInfo(unsigned Depth, const char *Msg,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000189 Pass *P, const std::vector<AnalysisID> &Set){
Chris Lattnerf5cad152002-07-22 02:10:13 +0000190 if (PassDebugging >= Details && !Set.empty()) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000191 std::cerr << (void*)P << std::string(Depth*2+3, ' ') << Msg << " Analyses:";
Chris Lattnerc8e66542002-04-27 06:56:12 +0000192 for (unsigned i = 0; i != Set.size(); ++i) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000193 Pass *P = Set[i].createPass(); // Good thing this is just debug code...
Chris Lattner37104aa2002-04-29 14:57:45 +0000194 std::cerr << " " << P->getPassName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000195 delete P;
196 }
197 std::cerr << "\n";
198 }
199}
200
Chris Lattnerf5cad152002-07-22 02:10:13 +0000201// dumpPassStructure - Implement the -debug-passes=Structure option
Chris Lattnercdd09c22002-01-31 00:45:31 +0000202void Pass::dumpPassStructure(unsigned Offset = 0) {
Chris Lattner37104aa2002-04-29 14:57:45 +0000203 std::cerr << std::string(Offset*2, ' ') << getPassName() << "\n";
Chris Lattnerd013ba92002-01-23 05:49:41 +0000204}
Chris Lattnerd013ba92002-01-23 05:49:41 +0000205
206
Chris Lattnercdd09c22002-01-31 00:45:31 +0000207//===----------------------------------------------------------------------===//
208// Pass Implementation
Chris Lattner654b5bc2002-01-22 00:17:48 +0000209//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000210
Chris Lattnerc8e66542002-04-27 06:56:12 +0000211void Pass::addToPassManager(PassManagerT<Module> *PM, AnalysisUsage &AU) {
212 PM->addPass(this, AU);
Chris Lattner654b5bc2002-01-22 00:17:48 +0000213}
Chris Lattner26e4f892002-01-21 07:37:31 +0000214
Chris Lattner37104aa2002-04-29 14:57:45 +0000215
216// getPassName - Use C++ RTTI to get a SOMEWHAT intelligable name for the pass.
217//
218const char *Pass::getPassName() const { return typeid(*this).name(); }
219
Chris Lattnercdd09c22002-01-31 00:45:31 +0000220//===----------------------------------------------------------------------===//
Chris Lattnerc8e66542002-04-27 06:56:12 +0000221// FunctionPass Implementation
Chris Lattner26e4f892002-01-21 07:37:31 +0000222//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000223
Chris Lattnerc8e66542002-04-27 06:56:12 +0000224// run - On a module, we run this pass by initializing, runOnFunction'ing once
225// for every function in the module, then by finalizing.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000226//
Chris Lattner113f4f42002-06-25 16:13:24 +0000227bool FunctionPass::run(Module &M) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000228 bool Changed = doInitialization(M);
229
Chris Lattner113f4f42002-06-25 16:13:24 +0000230 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
231 if (!I->isExternal()) // Passes are not run on external functions!
Chris Lattnerc8e66542002-04-27 06:56:12 +0000232 Changed |= runOnFunction(*I);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000233
234 return Changed | doFinalization(M);
Chris Lattner26e4f892002-01-21 07:37:31 +0000235}
236
Chris Lattnerc8e66542002-04-27 06:56:12 +0000237// run - On a function, we simply initialize, run the function, then finalize.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000238//
Chris Lattner113f4f42002-06-25 16:13:24 +0000239bool FunctionPass::run(Function &F) {
240 if (F.isExternal()) return false;// Passes are not run on external functions!
Chris Lattnercdd09c22002-01-31 00:45:31 +0000241
Chris Lattner113f4f42002-06-25 16:13:24 +0000242 return doInitialization(*F.getParent()) | runOnFunction(F)
243 | doFinalization(*F.getParent());
Chris Lattner26e4f892002-01-21 07:37:31 +0000244}
Chris Lattnerd013ba92002-01-23 05:49:41 +0000245
Chris Lattnerc8e66542002-04-27 06:56:12 +0000246void FunctionPass::addToPassManager(PassManagerT<Module> *PM,
247 AnalysisUsage &AU) {
248 PM->addPass(this, AU);
Chris Lattnerd013ba92002-01-23 05:49:41 +0000249}
Chris Lattnercdd09c22002-01-31 00:45:31 +0000250
Chris Lattnerc8e66542002-04-27 06:56:12 +0000251void FunctionPass::addToPassManager(PassManagerT<Function> *PM,
252 AnalysisUsage &AU) {
253 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000254}
255
256//===----------------------------------------------------------------------===//
257// BasicBlockPass Implementation
258//
259
Chris Lattnerc8e66542002-04-27 06:56:12 +0000260// To run this pass on a function, we simply call runOnBasicBlock once for each
261// function.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000262//
Chris Lattner113f4f42002-06-25 16:13:24 +0000263bool BasicBlockPass::runOnFunction(Function &F) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000264 bool Changed = false;
Chris Lattner113f4f42002-06-25 16:13:24 +0000265 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnercdd09c22002-01-31 00:45:31 +0000266 Changed |= runOnBasicBlock(*I);
267 return Changed;
268}
269
270// To run directly on the basic block, we initialize, runOnBasicBlock, then
271// finalize.
272//
Chris Lattner113f4f42002-06-25 16:13:24 +0000273bool BasicBlockPass::run(BasicBlock &BB) {
274 Module &M = *BB.getParent()->getParent();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000275 return doInitialization(M) | runOnBasicBlock(BB) | doFinalization(M);
276}
277
Chris Lattner57698e22002-03-26 18:01:55 +0000278void BasicBlockPass::addToPassManager(PassManagerT<Function> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000279 AnalysisUsage &AU) {
280 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000281}
282
283void BasicBlockPass::addToPassManager(PassManagerT<BasicBlock> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000284 AnalysisUsage &AU) {
285 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000286}
287
Chris Lattner37d3c952002-07-23 18:08:00 +0000288
289//===----------------------------------------------------------------------===//
290// Pass Registration mechanism
291//
292static std::map<TypeInfo, PassInfo*> *PassInfoMap = 0;
293static std::vector<PassRegistrationListener*> *Listeners = 0;
294
295// getPassInfo - Return the PassInfo data structure that corresponds to this
296// pass...
297const PassInfo *Pass::getPassInfo() const {
298 assert(PassInfoMap && "PassInfoMap not constructed yet??");
299 std::map<TypeInfo, PassInfo*>::iterator I =
300 PassInfoMap->find(typeid(*this));
301 assert(I != PassInfoMap->end() && "Pass has not been registered!");
302 return I->second;
303}
304
305void RegisterPassBase::registerPass(PassInfo *PI) {
306 if (PassInfoMap == 0)
307 PassInfoMap = new std::map<TypeInfo, PassInfo*>();
308
309 assert(PassInfoMap->find(PI->getTypeInfo()) == PassInfoMap->end() &&
310 "Pass already registered!");
311 PIObj = PI;
312 PassInfoMap->insert(std::make_pair(TypeInfo(PI->getTypeInfo()), PI));
313
314 // Notify any listeners...
315 if (Listeners)
316 for (std::vector<PassRegistrationListener*>::iterator
317 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
318 (*I)->passRegistered(PI);
319}
320
321RegisterPassBase::~RegisterPassBase() {
322 assert(PassInfoMap && "Pass registered but not in map!");
323 std::map<TypeInfo, PassInfo*>::iterator I =
324 PassInfoMap->find(PIObj->getTypeInfo());
325 assert(I != PassInfoMap->end() && "Pass registered but not in map!");
326
327 // Remove pass from the map...
328 PassInfoMap->erase(I);
329 if (PassInfoMap->empty()) {
330 delete PassInfoMap;
331 PassInfoMap = 0;
332 }
333
334 // Notify any listeners...
335 if (Listeners)
336 for (std::vector<PassRegistrationListener*>::iterator
337 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
338 (*I)->passUnregistered(PIObj);
339
340 // Delete the PassInfo object itself...
341 delete PIObj;
342}
343
344
345
346//===----------------------------------------------------------------------===//
347// PassRegistrationListener implementation
348//
349
350// PassRegistrationListener ctor - Add the current object to the list of
351// PassRegistrationListeners...
352PassRegistrationListener::PassRegistrationListener() {
353 if (!Listeners) Listeners = new std::vector<PassRegistrationListener*>();
354 Listeners->push_back(this);
355}
356
357// dtor - Remove object from list of listeners...
358PassRegistrationListener::~PassRegistrationListener() {
359 std::vector<PassRegistrationListener*>::iterator I =
360 std::find(Listeners->begin(), Listeners->end(), this);
361 assert(Listeners && I != Listeners->end() &&
362 "PassRegistrationListener not registered!");
363 Listeners->erase(I);
364
365 if (Listeners->empty()) {
366 delete Listeners;
367 Listeners = 0;
368 }
369}
370
371// enumeratePasses - Iterate over the registered passes, calling the
372// passEnumerate callback on each PassInfo object.
373//
374void PassRegistrationListener::enumeratePasses() {
375 if (PassInfoMap)
376 for (std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->begin(),
377 E = PassInfoMap->end(); I != E; ++I)
378 passEnumerate(I->second);
379}