blob: 106d70b31aaece26debdd2fd5c297e3459d716d9 [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 Lattner37d3c952002-07-23 18:08:00 +000013#include "Support/TypeInfo.h"
Chris Lattner37c86672002-04-28 20:46:05 +000014#include <typeinfo>
Chris Lattnere2eb99e2002-04-29 04:04:29 +000015#include <stdio.h>
Chris Lattner6a33d6f2002-08-01 19:33:09 +000016#include <sys/resource.h>
17#include <sys/unistd.h>
Chris Lattnerd013ba92002-01-23 05:49:41 +000018
Chris Lattner7e0dbe62002-05-06 19:31:52 +000019//===----------------------------------------------------------------------===//
20// AnalysisID Class Implementation
21//
22
Chris Lattner198cf422002-07-30 16:27:02 +000023static std::vector<const PassInfo*> CFGOnlyAnalyses;
Chris Lattnercdd09c22002-01-31 00:45:31 +000024
Chris Lattner198cf422002-07-30 16:27:02 +000025void RegisterPassBase::setPreservesCFG() {
26 CFGOnlyAnalyses.push_back(PIObj);
Chris Lattner7e0dbe62002-05-06 19:31:52 +000027}
28
29//===----------------------------------------------------------------------===//
30// AnalysisResolver Class Implementation
31//
32
Chris Lattnercdd09c22002-01-31 00:45:31 +000033void AnalysisResolver::setAnalysisResolver(Pass *P, AnalysisResolver *AR) {
34 assert(P->Resolver == 0 && "Pass already in a PassManager!");
35 P->Resolver = AR;
36}
37
Chris Lattner7e0dbe62002-05-06 19:31:52 +000038//===----------------------------------------------------------------------===//
39// AnalysisUsage Class Implementation
40//
Chris Lattneree2ff5d2002-04-28 21:25:41 +000041
42// preservesCFG - This function should be called to by the pass, iff they do
43// not:
44//
45// 1. Add or remove basic blocks from the function
46// 2. Modify terminator instructions in any way.
47//
48// This function annotates the AnalysisUsage info object to say that analyses
49// that only depend on the CFG are preserved by this pass.
50//
51void AnalysisUsage::preservesCFG() {
Chris Lattner7e0dbe62002-05-06 19:31:52 +000052 // Since this transformation doesn't modify the CFG, it preserves all analyses
53 // that only depend on the CFG (like dominators, loop info, etc...)
54 //
55 Preserved.insert(Preserved.end(),
56 CFGOnlyAnalyses.begin(), CFGOnlyAnalyses.end());
Chris Lattneree2ff5d2002-04-28 21:25:41 +000057}
58
59
Chris Lattner37c86672002-04-28 20:46:05 +000060//===----------------------------------------------------------------------===//
61// PassManager implementation - The PassManager class is a simple Pimpl class
62// that wraps the PassManagerT template.
63//
64PassManager::PassManager() : PM(new PassManagerT<Module>()) {}
65PassManager::~PassManager() { delete PM; }
66void PassManager::add(Pass *P) { PM->add(P); }
Chris Lattner113f4f42002-06-25 16:13:24 +000067bool PassManager::run(Module &M) { return PM->run(M); }
Chris Lattnercdd09c22002-01-31 00:45:31 +000068
Chris Lattner37c86672002-04-28 20:46:05 +000069
70//===----------------------------------------------------------------------===//
Chris Lattnere2eb99e2002-04-29 04:04:29 +000071// TimingInfo Class - This class is used to calculate information about the
72// amount of time each pass takes to execute. This only happens with
73// -time-passes is enabled on the command line.
74//
Chris Lattnerf5cad152002-07-22 02:10:13 +000075static cl::opt<bool>
76EnableTiming("time-passes",
77 cl::desc("Time each pass, printing elapsed time for each on exit"));
Chris Lattnere2eb99e2002-04-29 04:04:29 +000078
Chris Lattner6a33d6f2002-08-01 19:33:09 +000079static TimeRecord getTimeRecord() {
80 static unsigned long PageSize = 0;
81
82 if (PageSize == 0) {
83#ifdef _SC_PAGE_SIZE
84 PageSize = sysconf(_SC_PAGE_SIZE);
85#else
86#ifdef _SC_PAGESIZE
87 PageSize = sysconf(_SC_PAGESIZE);
88#else
89 PageSize = getpagesize();
90#endif
91#endif
92 }
93
94 struct rusage RU;
Chris Lattnere2eb99e2002-04-29 04:04:29 +000095 struct timeval T;
96 gettimeofday(&T, 0);
Chris Lattner6a33d6f2002-08-01 19:33:09 +000097 if (getrusage(RUSAGE_SELF, &RU)) {
98 perror("getrusage call failed: -time-passes info incorrect!");
99 }
100
101 TimeRecord Result;
102 Result.Elapsed = T.tv_sec + T.tv_usec/1000000.0;
103 Result.UserTime = RU.ru_utime.tv_sec + RU.ru_utime.tv_usec/1000000.0;
104 Result.SystemTime = RU.ru_stime.tv_sec + RU.ru_stime.tv_usec/1000000.0;
105 Result.MaxRSS = RU.ru_maxrss*PageSize;
106
107 return Result;
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000108}
109
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000110void TimeRecord::passStart(const TimeRecord &T) {
111 Elapsed -= T.Elapsed;
112 UserTime -= T.UserTime;
113 SystemTime -= T.SystemTime;
114 RSSTemp = T.MaxRSS;
115}
116
117void TimeRecord::passEnd(const TimeRecord &T) {
118 Elapsed += T.Elapsed;
119 UserTime += T.UserTime;
120 SystemTime += T.SystemTime;
121 RSSTemp = T.MaxRSS - RSSTemp;
122 MaxRSS = std::max(MaxRSS, RSSTemp);
123}
124
125void TimeRecord::print(const char *PassName, const TimeRecord &Total) const {
126 fprintf(stderr,
127 " %7.4f (%5.1f%%) %7.4f (%5.1f%%) %7.4f (%5.1f%%) %7.4f (%5.1f%%) ",
128 UserTime , UserTime *100/Total.UserTime,
129 SystemTime, SystemTime*100/Total.SystemTime,
130 UserTime+SystemTime, (UserTime+SystemTime)*100/(Total.UserTime+Total.SystemTime),
131 Elapsed , Elapsed *100/Total.Elapsed);
132
133 if (Total.MaxRSS)
134 std::cerr << MaxRSS << "\t";
135 std::cerr << PassName << "\n";
136}
137
138
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000139// Create method. If Timing is enabled, this creates and returns a new timing
140// object, otherwise it returns null.
141//
142TimingInfo *TimingInfo::create() {
143 return EnableTiming ? new TimingInfo() : 0;
144}
145
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000146void TimingInfo::passStarted(Pass *P) {
147 TimingData[P].passStart(getTimeRecord());
148}
149void TimingInfo::passEnded(Pass *P) {
150 TimingData[P].passEnd(getTimeRecord());
151}
152void TimeRecord::sum(const TimeRecord &TR) {
153 Elapsed += TR.Elapsed;
154 UserTime += TR.UserTime;
155 SystemTime += TR.SystemTime;
156 MaxRSS += TR.MaxRSS;
157}
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000158
159// TimingDtor - Print out information about timing information
160TimingInfo::~TimingInfo() {
161 // Iterate over all of the data, converting it into the dual of the data map,
162 // so that the data is sorted by amount of time taken, instead of pointer.
163 //
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000164 std::vector<std::pair<TimeRecord, Pass*> > Data;
165 TimeRecord Total;
166 for (std::map<Pass*, TimeRecord>::iterator I = TimingData.begin(),
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000167 E = TimingData.end(); I != E; ++I)
168 // Throw out results for "grouping" pass managers...
169 if (!dynamic_cast<AnalysisResolver*>(I->first)) {
170 Data.push_back(std::make_pair(I->second, I->first));
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000171 Total.sum(I->second);
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000172 }
173
174 // Sort the data by time as the primary key, in reverse order...
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000175 std::sort(Data.begin(), Data.end(),
176 std::greater<std::pair<TimeRecord, Pass*> >());
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000177
178 // Print out timing header...
Anand Shukla8c377892002-06-25 22:07:38 +0000179 std::cerr << std::string(79, '=') << "\n"
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000180 << " ... Pass execution timing report ...\n"
181 << std::string(79, '=') << "\n Total Execution Time: "
182 << (Total.UserTime+Total.SystemTime) << " seconds ("
183 << Total.Elapsed << " wall clock)\n\n ---User Time--- "
184 << "--System Time-- --User+System-- ---Wall Time---";
185
186 if (Total.MaxRSS)
187 std::cerr << " ---Mem---";
188 std::cerr << " --- Pass Name ---\n";
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000189
190 // Loop through all of the timing data, printing it out...
Chris Lattner6a33d6f2002-08-01 19:33:09 +0000191 for (unsigned i = 0, e = Data.size(); i != e; ++i)
192 Data[i].first.print(Data[i].second->getPassName(), Total);
193
194 Total.print("TOTAL", Total);
Chris Lattnere2eb99e2002-04-29 04:04:29 +0000195}
196
197
Chris Lattner1e4867f2002-07-30 19:51:02 +0000198void PMDebug::PrintArgumentInformation(const Pass *P) {
199 // Print out passes in pass manager...
200 if (const AnalysisResolver *PM = dynamic_cast<const AnalysisResolver*>(P)) {
201 for (unsigned i = 0, e = PM->getNumContainedPasses(); i != e; ++i)
202 PrintArgumentInformation(PM->getContainedPass(i));
203
204 } else { // Normal pass. Print argument information...
205 // Print out arguments for registered passes that are _optimizations_
206 if (const PassInfo *PI = P->getPassInfo())
207 if (PI->getPassType() & PassInfo::Optimization)
208 std::cerr << " -" << PI->getPassArgument();
209 }
210}
Chris Lattnercdd09c22002-01-31 00:45:31 +0000211
212void PMDebug::PrintPassInformation(unsigned Depth, const char *Action,
Chris Lattnera454b5b2002-04-28 05:14:06 +0000213 Pass *P, Annotable *V) {
Chris Lattnerf5cad152002-07-22 02:10:13 +0000214 if (PassDebugging >= Executions) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000215 std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '"
Chris Lattner37104aa2002-04-29 14:57:45 +0000216 << P->getPassName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000217 if (V) {
218 std::cerr << "' on ";
Chris Lattnera454b5b2002-04-28 05:14:06 +0000219
220 if (dynamic_cast<Module*>(V)) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000221 std::cerr << "Module\n"; return;
Chris Lattnera454b5b2002-04-28 05:14:06 +0000222 } else if (Function *F = dynamic_cast<Function*>(V))
223 std::cerr << "Function '" << F->getName();
224 else if (BasicBlock *BB = dynamic_cast<BasicBlock*>(V))
225 std::cerr << "BasicBlock '" << BB->getName();
226 else if (Value *Val = dynamic_cast<Value*>(V))
227 std::cerr << typeid(*Val).name() << " '" << Val->getName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000228 }
229 std::cerr << "'...\n";
230 }
231}
232
233void PMDebug::PrintAnalysisSetInfo(unsigned Depth, const char *Msg,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000234 Pass *P, const std::vector<AnalysisID> &Set){
Chris Lattnerf5cad152002-07-22 02:10:13 +0000235 if (PassDebugging >= Details && !Set.empty()) {
Chris Lattnerac3e0602002-01-31 18:32:27 +0000236 std::cerr << (void*)P << std::string(Depth*2+3, ' ') << Msg << " Analyses:";
Chris Lattner198cf422002-07-30 16:27:02 +0000237 for (unsigned i = 0; i != Set.size(); ++i)
238 std::cerr << " " << Set[i]->getPassName();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000239 std::cerr << "\n";
240 }
241}
242
Chris Lattnercdd09c22002-01-31 00:45:31 +0000243//===----------------------------------------------------------------------===//
244// Pass Implementation
Chris Lattner654b5bc2002-01-22 00:17:48 +0000245//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000246
Chris Lattnerc8e66542002-04-27 06:56:12 +0000247void Pass::addToPassManager(PassManagerT<Module> *PM, AnalysisUsage &AU) {
248 PM->addPass(this, AU);
Chris Lattner654b5bc2002-01-22 00:17:48 +0000249}
Chris Lattner26e4f892002-01-21 07:37:31 +0000250
Chris Lattner198cf422002-07-30 16:27:02 +0000251// dumpPassStructure - Implement the -debug-passes=Structure option
252void Pass::dumpPassStructure(unsigned Offset) {
253 std::cerr << std::string(Offset*2, ' ') << getPassName() << "\n";
254}
Chris Lattner37104aa2002-04-29 14:57:45 +0000255
256// getPassName - Use C++ RTTI to get a SOMEWHAT intelligable name for the pass.
257//
Chris Lattner071577d2002-07-29 21:02:31 +0000258const char *Pass::getPassName() const {
259 if (const PassInfo *PI = getPassInfo())
260 return PI->getPassName();
261 return typeid(*this).name();
262}
Chris Lattner37104aa2002-04-29 14:57:45 +0000263
Chris Lattner26750072002-07-27 01:12:17 +0000264// print - Print out the internal state of the pass. This is called by Analyse
265// to print out the contents of an analysis. Otherwise it is not neccesary to
266// implement this method.
267//
268void Pass::print(std::ostream &O) const {
269 O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n";
270}
271
272// dump - call print(std::cerr);
273void Pass::dump() const {
274 print(std::cerr, 0);
275}
276
Chris Lattnercdd09c22002-01-31 00:45:31 +0000277//===----------------------------------------------------------------------===//
Chris Lattnerc8e66542002-04-27 06:56:12 +0000278// FunctionPass Implementation
Chris Lattner26e4f892002-01-21 07:37:31 +0000279//
Chris Lattnercdd09c22002-01-31 00:45:31 +0000280
Chris Lattnerc8e66542002-04-27 06:56:12 +0000281// run - On a module, we run this pass by initializing, runOnFunction'ing once
282// for every function in the module, then by finalizing.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000283//
Chris Lattner113f4f42002-06-25 16:13:24 +0000284bool FunctionPass::run(Module &M) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000285 bool Changed = doInitialization(M);
286
Chris Lattner113f4f42002-06-25 16:13:24 +0000287 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
288 if (!I->isExternal()) // Passes are not run on external functions!
Chris Lattnerc8e66542002-04-27 06:56:12 +0000289 Changed |= runOnFunction(*I);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000290
291 return Changed | doFinalization(M);
Chris Lattner26e4f892002-01-21 07:37:31 +0000292}
293
Chris Lattnerc8e66542002-04-27 06:56:12 +0000294// run - On a function, we simply initialize, run the function, then finalize.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000295//
Chris Lattner113f4f42002-06-25 16:13:24 +0000296bool FunctionPass::run(Function &F) {
297 if (F.isExternal()) return false;// Passes are not run on external functions!
Chris Lattnercdd09c22002-01-31 00:45:31 +0000298
Chris Lattner113f4f42002-06-25 16:13:24 +0000299 return doInitialization(*F.getParent()) | runOnFunction(F)
300 | doFinalization(*F.getParent());
Chris Lattner26e4f892002-01-21 07:37:31 +0000301}
Chris Lattnerd013ba92002-01-23 05:49:41 +0000302
Chris Lattnerc8e66542002-04-27 06:56:12 +0000303void FunctionPass::addToPassManager(PassManagerT<Module> *PM,
304 AnalysisUsage &AU) {
305 PM->addPass(this, AU);
Chris Lattnerd013ba92002-01-23 05:49:41 +0000306}
Chris Lattnercdd09c22002-01-31 00:45:31 +0000307
Chris Lattnerc8e66542002-04-27 06:56:12 +0000308void FunctionPass::addToPassManager(PassManagerT<Function> *PM,
309 AnalysisUsage &AU) {
310 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000311}
312
313//===----------------------------------------------------------------------===//
314// BasicBlockPass Implementation
315//
316
Chris Lattnerc8e66542002-04-27 06:56:12 +0000317// To run this pass on a function, we simply call runOnBasicBlock once for each
318// function.
Chris Lattnercdd09c22002-01-31 00:45:31 +0000319//
Chris Lattner113f4f42002-06-25 16:13:24 +0000320bool BasicBlockPass::runOnFunction(Function &F) {
Chris Lattnercdd09c22002-01-31 00:45:31 +0000321 bool Changed = false;
Chris Lattner113f4f42002-06-25 16:13:24 +0000322 for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I)
Chris Lattnercdd09c22002-01-31 00:45:31 +0000323 Changed |= runOnBasicBlock(*I);
324 return Changed;
325}
326
327// To run directly on the basic block, we initialize, runOnBasicBlock, then
328// finalize.
329//
Chris Lattner113f4f42002-06-25 16:13:24 +0000330bool BasicBlockPass::run(BasicBlock &BB) {
331 Module &M = *BB.getParent()->getParent();
Chris Lattnercdd09c22002-01-31 00:45:31 +0000332 return doInitialization(M) | runOnBasicBlock(BB) | doFinalization(M);
333}
334
Chris Lattner57698e22002-03-26 18:01:55 +0000335void BasicBlockPass::addToPassManager(PassManagerT<Function> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000336 AnalysisUsage &AU) {
337 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000338}
339
340void BasicBlockPass::addToPassManager(PassManagerT<BasicBlock> *PM,
Chris Lattnerc8e66542002-04-27 06:56:12 +0000341 AnalysisUsage &AU) {
342 PM->addPass(this, AU);
Chris Lattnercdd09c22002-01-31 00:45:31 +0000343}
344
Chris Lattner37d3c952002-07-23 18:08:00 +0000345
346//===----------------------------------------------------------------------===//
347// Pass Registration mechanism
348//
349static std::map<TypeInfo, PassInfo*> *PassInfoMap = 0;
350static std::vector<PassRegistrationListener*> *Listeners = 0;
351
352// getPassInfo - Return the PassInfo data structure that corresponds to this
353// pass...
354const PassInfo *Pass::getPassInfo() const {
Chris Lattner071577d2002-07-29 21:02:31 +0000355 if (PassInfoCache) return PassInfoCache;
356 if (PassInfoMap == 0) return 0;
357 std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->find(typeid(*this));
358 return (I != PassInfoMap->end()) ? I->second : 0;
Chris Lattner37d3c952002-07-23 18:08:00 +0000359}
360
361void RegisterPassBase::registerPass(PassInfo *PI) {
362 if (PassInfoMap == 0)
363 PassInfoMap = new std::map<TypeInfo, PassInfo*>();
364
365 assert(PassInfoMap->find(PI->getTypeInfo()) == PassInfoMap->end() &&
366 "Pass already registered!");
367 PIObj = PI;
368 PassInfoMap->insert(std::make_pair(TypeInfo(PI->getTypeInfo()), PI));
369
370 // Notify any listeners...
371 if (Listeners)
372 for (std::vector<PassRegistrationListener*>::iterator
373 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
374 (*I)->passRegistered(PI);
375}
376
377RegisterPassBase::~RegisterPassBase() {
378 assert(PassInfoMap && "Pass registered but not in map!");
379 std::map<TypeInfo, PassInfo*>::iterator I =
380 PassInfoMap->find(PIObj->getTypeInfo());
381 assert(I != PassInfoMap->end() && "Pass registered but not in map!");
382
383 // Remove pass from the map...
384 PassInfoMap->erase(I);
385 if (PassInfoMap->empty()) {
386 delete PassInfoMap;
387 PassInfoMap = 0;
388 }
389
390 // Notify any listeners...
391 if (Listeners)
392 for (std::vector<PassRegistrationListener*>::iterator
393 I = Listeners->begin(), E = Listeners->end(); I != E; ++I)
394 (*I)->passUnregistered(PIObj);
395
396 // Delete the PassInfo object itself...
397 delete PIObj;
398}
399
400
401
402//===----------------------------------------------------------------------===//
403// PassRegistrationListener implementation
404//
405
406// PassRegistrationListener ctor - Add the current object to the list of
407// PassRegistrationListeners...
408PassRegistrationListener::PassRegistrationListener() {
409 if (!Listeners) Listeners = new std::vector<PassRegistrationListener*>();
410 Listeners->push_back(this);
411}
412
413// dtor - Remove object from list of listeners...
414PassRegistrationListener::~PassRegistrationListener() {
415 std::vector<PassRegistrationListener*>::iterator I =
416 std::find(Listeners->begin(), Listeners->end(), this);
417 assert(Listeners && I != Listeners->end() &&
418 "PassRegistrationListener not registered!");
419 Listeners->erase(I);
420
421 if (Listeners->empty()) {
422 delete Listeners;
423 Listeners = 0;
424 }
425}
426
427// enumeratePasses - Iterate over the registered passes, calling the
428// passEnumerate callback on each PassInfo object.
429//
430void PassRegistrationListener::enumeratePasses() {
431 if (PassInfoMap)
432 for (std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->begin(),
433 E = PassInfoMap->end(); I != E; ++I)
434 passEnumerate(I->second);
435}