Chris Lattner | ab16a65 | 2003-10-13 05:33:01 +0000 | [diff] [blame] | 1 | //===- Pass.cpp - LLVM Pass Infrastructure Implementation -----------------===// |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 2 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 7 | // |
John Criswell | 482202a | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 26e4f89 | 2002-01-21 07:37:31 +0000 | [diff] [blame] | 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 | |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 16 | #include "llvm/PassManager.h" |
Chris Lattner | 37c8667 | 2002-04-28 20:46:05 +0000 | [diff] [blame] | 17 | #include "PassManagerT.h" // PassManagerT implementation |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 18 | #include "llvm/Module.h" |
Misha Brukman | 56a8642 | 2003-10-14 21:38:42 +0000 | [diff] [blame] | 19 | #include "llvm/ModuleProvider.h" |
Reid Spencer | 7c16caa | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 20 | #include "llvm/ADT/STLExtras.h" |
| 21 | #include "llvm/Support/TypeInfo.h" |
Reid Spencer | 8baf8e2 | 2004-07-04 11:55:37 +0000 | [diff] [blame] | 22 | #include <iostream> |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 23 | #include <set> |
Chris Lattner | 189d19f | 2003-11-21 20:23:48 +0000 | [diff] [blame] | 24 | using namespace llvm; |
Brian Gaeke | 960707c | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 25 | |
Chris Lattner | 7e0dbe6 | 2002-05-06 19:31:52 +0000 | [diff] [blame] | 26 | //===----------------------------------------------------------------------===// |
| 27 | // AnalysisID Class Implementation |
| 28 | // |
| 29 | |
Chris Lattner | ab16a65 | 2003-10-13 05:33:01 +0000 | [diff] [blame] | 30 | // getCFGOnlyAnalyses - A wrapper around the CFGOnlyAnalyses which make it |
| 31 | // initializer order independent. |
| 32 | static std::vector<const PassInfo*> &getCFGOnlyAnalyses() { |
| 33 | static std::vector<const PassInfo*> CFGOnlyAnalyses; |
| 34 | return CFGOnlyAnalyses; |
| 35 | } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 36 | |
Chris Lattner | dd99f5b | 2003-10-12 18:52:12 +0000 | [diff] [blame] | 37 | void RegisterPassBase::setOnlyUsesCFG() { |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 38 | getCFGOnlyAnalyses().push_back(&PIObj); |
Chris Lattner | 7e0dbe6 | 2002-05-06 19:31:52 +0000 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | //===----------------------------------------------------------------------===// |
| 42 | // AnalysisResolver Class Implementation |
| 43 | // |
| 44 | |
Reid Spencer | 8edc8be | 2005-04-25 01:01:35 +0000 | [diff] [blame] | 45 | AnalysisResolver::~AnalysisResolver() { |
| 46 | } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 47 | void AnalysisResolver::setAnalysisResolver(Pass *P, AnalysisResolver *AR) { |
| 48 | assert(P->Resolver == 0 && "Pass already in a PassManager!"); |
| 49 | P->Resolver = AR; |
| 50 | } |
| 51 | |
Chris Lattner | 7e0dbe6 | 2002-05-06 19:31:52 +0000 | [diff] [blame] | 52 | //===----------------------------------------------------------------------===// |
| 53 | // AnalysisUsage Class Implementation |
| 54 | // |
Chris Lattner | ee2ff5d | 2002-04-28 21:25:41 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 820d971 | 2002-10-21 20:00:28 +0000 | [diff] [blame] | 56 | // setPreservesCFG - This function should be called to by the pass, iff they do |
Chris Lattner | ee2ff5d | 2002-04-28 21:25:41 +0000 | [diff] [blame] | 57 | // not: |
| 58 | // |
| 59 | // 1. Add or remove basic blocks from the function |
| 60 | // 2. Modify terminator instructions in any way. |
| 61 | // |
| 62 | // This function annotates the AnalysisUsage info object to say that analyses |
| 63 | // that only depend on the CFG are preserved by this pass. |
| 64 | // |
Chris Lattner | 820d971 | 2002-10-21 20:00:28 +0000 | [diff] [blame] | 65 | void AnalysisUsage::setPreservesCFG() { |
Chris Lattner | 7e0dbe6 | 2002-05-06 19:31:52 +0000 | [diff] [blame] | 66 | // Since this transformation doesn't modify the CFG, it preserves all analyses |
| 67 | // that only depend on the CFG (like dominators, loop info, etc...) |
| 68 | // |
| 69 | Preserved.insert(Preserved.end(), |
Chris Lattner | ab16a65 | 2003-10-13 05:33:01 +0000 | [diff] [blame] | 70 | getCFGOnlyAnalyses().begin(), getCFGOnlyAnalyses().end()); |
Chris Lattner | ee2ff5d | 2002-04-28 21:25:41 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | |
Chris Lattner | 37c8667 | 2002-04-28 20:46:05 +0000 | [diff] [blame] | 74 | //===----------------------------------------------------------------------===// |
| 75 | // PassManager implementation - The PassManager class is a simple Pimpl class |
| 76 | // that wraps the PassManagerT template. |
| 77 | // |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 78 | PassManager::PassManager() : PM(new ModulePassManager()) {} |
Chris Lattner | 37c8667 | 2002-04-28 20:46:05 +0000 | [diff] [blame] | 79 | PassManager::~PassManager() { delete PM; } |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 80 | void PassManager::add(Pass *P) { |
| 81 | ModulePass *MP = dynamic_cast<ModulePass*>(P); |
| 82 | assert(MP && "Not a modulepass?"); |
| 83 | PM->add(MP); |
| 84 | } |
| 85 | bool PassManager::run(Module &M) { return PM->runOnModule(M); } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 86 | |
Brian Gaeke | b7a8388 | 2003-08-12 17:22:39 +0000 | [diff] [blame] | 87 | //===----------------------------------------------------------------------===// |
| 88 | // FunctionPassManager implementation - The FunctionPassManager class |
| 89 | // is a simple Pimpl class that wraps the PassManagerT template. It |
| 90 | // is like PassManager, but only deals in FunctionPasses. |
| 91 | // |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 92 | FunctionPassManager::FunctionPassManager(ModuleProvider *P) : |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 93 | PM(new FunctionPassManagerT()), MP(P) {} |
Brian Gaeke | b7a8388 | 2003-08-12 17:22:39 +0000 | [diff] [blame] | 94 | FunctionPassManager::~FunctionPassManager() { delete PM; } |
| 95 | void FunctionPassManager::add(FunctionPass *P) { PM->add(P); } |
Brian Gaeke | 2cc4b9d | 2003-08-14 06:07:57 +0000 | [diff] [blame] | 96 | void FunctionPassManager::add(ImmutablePass *IP) { PM->add(IP); } |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 97 | bool FunctionPassManager::run(Function &F) { |
Reid Spencer | 6967cd5 | 2004-07-07 21:01:38 +0000 | [diff] [blame] | 98 | try { |
| 99 | MP->materializeFunction(&F); |
| 100 | } catch (std::string& errstr) { |
| 101 | std::cerr << "Error reading bytecode file: " << errstr << "\n"; |
| 102 | abort(); |
| 103 | } catch (...) { |
Misha Brukman | 4233155 | 2004-07-07 21:22:05 +0000 | [diff] [blame] | 104 | std::cerr << "Error reading bytecode file!\n"; |
Reid Spencer | 6967cd5 | 2004-07-07 21:01:38 +0000 | [diff] [blame] | 105 | abort(); |
| 106 | } |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 107 | return PM->run(F); |
Misha Brukman | 56a8642 | 2003-10-14 21:38:42 +0000 | [diff] [blame] | 108 | } |
Brian Gaeke | b7a8388 | 2003-08-12 17:22:39 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 37c8667 | 2002-04-28 20:46:05 +0000 | [diff] [blame] | 110 | |
| 111 | //===----------------------------------------------------------------------===// |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 112 | // TimingInfo Class - This class is used to calculate information about the |
| 113 | // amount of time each pass takes to execute. This only happens with |
| 114 | // -time-passes is enabled on the command line. |
| 115 | // |
Reid Spencer | 2e4bfff | 2004-08-24 17:52:35 +0000 | [diff] [blame] | 116 | bool llvm::TimePassesIsEnabled = false; |
| 117 | static cl::opt<bool,true> |
| 118 | EnableTiming("time-passes", cl::location(TimePassesIsEnabled), |
Chris Lattner | f5cad15 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 119 | cl::desc("Time each pass, printing elapsed time for each on exit")); |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 120 | |
Chris Lattner | e7e0944 | 2003-08-14 05:20:28 +0000 | [diff] [blame] | 121 | // createTheTimeInfo - This method either initializes the TheTimeInfo pointer to |
| 122 | // a non null value (if the -time-passes option is enabled) or it leaves it |
| 123 | // null. It may be called multiple times. |
| 124 | void TimingInfo::createTheTimeInfo() { |
Reid Spencer | 2e4bfff | 2004-08-24 17:52:35 +0000 | [diff] [blame] | 125 | if (!TimePassesIsEnabled || TheTimeInfo) return; |
Chris Lattner | e7e0944 | 2003-08-14 05:20:28 +0000 | [diff] [blame] | 126 | |
| 127 | // Constructed the first time this is called, iff -time-passes is enabled. |
| 128 | // This guarantees that the object will be constructed before static globals, |
| 129 | // thus it will be destroyed before them. |
| 130 | static TimingInfo TTI; |
| 131 | TheTimeInfo = &TTI; |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 134 | void PMDebug::PrintArgumentInformation(const Pass *P) { |
| 135 | // Print out passes in pass manager... |
| 136 | if (const AnalysisResolver *PM = dynamic_cast<const AnalysisResolver*>(P)) { |
| 137 | for (unsigned i = 0, e = PM->getNumContainedPasses(); i != e; ++i) |
| 138 | PrintArgumentInformation(PM->getContainedPass(i)); |
| 139 | |
| 140 | } else { // Normal pass. Print argument information... |
| 141 | // Print out arguments for registered passes that are _optimizations_ |
| 142 | if (const PassInfo *PI = P->getPassInfo()) |
| 143 | if (PI->getPassType() & PassInfo::Optimization) |
| 144 | std::cerr << " -" << PI->getPassArgument(); |
| 145 | } |
| 146 | } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 147 | |
| 148 | void PMDebug::PrintPassInformation(unsigned Depth, const char *Action, |
Chris Lattner | 43640d7 | 2004-02-29 22:37:04 +0000 | [diff] [blame] | 149 | Pass *P, Module *M) { |
Chris Lattner | f5cad15 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 150 | if (PassDebugging >= Executions) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 151 | std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '" |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 152 | << P->getPassName(); |
Chris Lattner | 43640d7 | 2004-02-29 22:37:04 +0000 | [diff] [blame] | 153 | if (M) std::cerr << "' on Module '" << M->getModuleIdentifier() << "'\n"; |
| 154 | std::cerr << "'...\n"; |
| 155 | } |
| 156 | } |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 157 | |
Chris Lattner | 43640d7 | 2004-02-29 22:37:04 +0000 | [diff] [blame] | 158 | void PMDebug::PrintPassInformation(unsigned Depth, const char *Action, |
| 159 | Pass *P, Function *F) { |
| 160 | if (PassDebugging >= Executions) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 161 | std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '" |
Chris Lattner | 43640d7 | 2004-02-29 22:37:04 +0000 | [diff] [blame] | 162 | << P->getPassName(); |
| 163 | if (F) std::cerr << "' on Function '" << F->getName(); |
| 164 | std::cerr << "'...\n"; |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | void PMDebug::PrintPassInformation(unsigned Depth, const char *Action, |
| 169 | Pass *P, BasicBlock *BB) { |
| 170 | if (PassDebugging >= Executions) { |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 171 | std::cerr << (void*)P << std::string(Depth*2+1, ' ') << Action << " '" |
Chris Lattner | 43640d7 | 2004-02-29 22:37:04 +0000 | [diff] [blame] | 172 | << P->getPassName(); |
| 173 | if (BB) std::cerr << "' on BasicBlock '" << BB->getName(); |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 174 | std::cerr << "'...\n"; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | void PMDebug::PrintAnalysisSetInfo(unsigned Depth, const char *Msg, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 179 | Pass *P, const std::vector<AnalysisID> &Set){ |
Chris Lattner | f5cad15 | 2002-07-22 02:10:13 +0000 | [diff] [blame] | 180 | if (PassDebugging >= Details && !Set.empty()) { |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 181 | std::cerr << (void*)P << std::string(Depth*2+3, ' ') << Msg << " Analyses:"; |
Chris Lattner | b3708e2 | 2002-08-30 20:23:45 +0000 | [diff] [blame] | 182 | for (unsigned i = 0; i != Set.size(); ++i) { |
| 183 | if (i) std::cerr << ","; |
| 184 | std::cerr << " " << Set[i]->getPassName(); |
| 185 | } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 186 | std::cerr << "\n"; |
| 187 | } |
| 188 | } |
| 189 | |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 190 | //===----------------------------------------------------------------------===// |
| 191 | // Pass Implementation |
Chris Lattner | 654b5bc | 2002-01-22 00:17:48 +0000 | [diff] [blame] | 192 | // |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 193 | |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 194 | void ModulePass::addToPassManager(ModulePassManager *PM, AnalysisUsage &AU) { |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 195 | PM->addPass(this, AU); |
Chris Lattner | 654b5bc | 2002-01-22 00:17:48 +0000 | [diff] [blame] | 196 | } |
Chris Lattner | 26e4f89 | 2002-01-21 07:37:31 +0000 | [diff] [blame] | 197 | |
Chris Lattner | 9ad7757 | 2003-03-21 21:41:02 +0000 | [diff] [blame] | 198 | bool Pass::mustPreserveAnalysisID(const PassInfo *AnalysisID) const { |
| 199 | return Resolver->getAnalysisToUpdate(AnalysisID) != 0; |
| 200 | } |
| 201 | |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 202 | // dumpPassStructure - Implement the -debug-passes=Structure option |
| 203 | void Pass::dumpPassStructure(unsigned Offset) { |
| 204 | std::cerr << std::string(Offset*2, ' ') << getPassName() << "\n"; |
| 205 | } |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 206 | |
Brian Gaeke | 465a5cc | 2004-02-28 21:55:18 +0000 | [diff] [blame] | 207 | // getPassName - Use C++ RTTI to get a SOMEWHAT intelligible name for the pass. |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 208 | // |
Chris Lattner | 071577d | 2002-07-29 21:02:31 +0000 | [diff] [blame] | 209 | const char *Pass::getPassName() const { |
| 210 | if (const PassInfo *PI = getPassInfo()) |
| 211 | return PI->getPassName(); |
| 212 | return typeid(*this).name(); |
| 213 | } |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 214 | |
Misha Brukman | 56a8642 | 2003-10-14 21:38:42 +0000 | [diff] [blame] | 215 | // print - Print out the internal state of the pass. This is called by Analyze |
Misha Brukman | 7eb05a1 | 2003-08-18 14:43:39 +0000 | [diff] [blame] | 216 | // to print out the contents of an analysis. Otherwise it is not necessary to |
Chris Lattner | 2675007 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 217 | // implement this method. |
| 218 | // |
Reid Spencer | 9083936 | 2004-12-07 04:03:45 +0000 | [diff] [blame] | 219 | void Pass::print(std::ostream &O,const Module*) const { |
Chris Lattner | 2675007 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 220 | O << "Pass::print not implemented for pass: '" << getPassName() << "'!\n"; |
| 221 | } |
| 222 | |
| 223 | // dump - call print(std::cerr); |
| 224 | void Pass::dump() const { |
| 225 | print(std::cerr, 0); |
| 226 | } |
| 227 | |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 228 | //===----------------------------------------------------------------------===// |
Chris Lattner | ee0788d | 2002-09-25 21:59:11 +0000 | [diff] [blame] | 229 | // ImmutablePass Implementation |
| 230 | // |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 231 | void ImmutablePass::addToPassManager(ModulePassManager *PM, |
Chris Lattner | ee0788d | 2002-09-25 21:59:11 +0000 | [diff] [blame] | 232 | AnalysisUsage &AU) { |
| 233 | PM->addPass(this, AU); |
| 234 | } |
| 235 | |
| 236 | |
| 237 | //===----------------------------------------------------------------------===// |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 238 | // FunctionPass Implementation |
Chris Lattner | 26e4f89 | 2002-01-21 07:37:31 +0000 | [diff] [blame] | 239 | // |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 240 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 241 | // run - On a module, we run this pass by initializing, runOnFunction'ing once |
| 242 | // for every function in the module, then by finalizing. |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 243 | // |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 244 | bool FunctionPass::runOnModule(Module &M) { |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 245 | bool Changed = doInitialization(M); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 246 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 247 | for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) |
| 248 | if (!I->isExternal()) // Passes are not run on external functions! |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 249 | Changed |= runOnFunction(*I); |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 250 | |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 251 | return Changed | doFinalization(M); |
Chris Lattner | 26e4f89 | 2002-01-21 07:37:31 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 254 | // run - On a function, we simply initialize, run the function, then finalize. |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 255 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 256 | bool FunctionPass::run(Function &F) { |
| 257 | if (F.isExternal()) return false;// Passes are not run on external functions! |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 258 | |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 259 | bool Changed = doInitialization(*F.getParent()); |
| 260 | Changed |= runOnFunction(F); |
| 261 | return Changed | doFinalization(*F.getParent()); |
Chris Lattner | 26e4f89 | 2002-01-21 07:37:31 +0000 | [diff] [blame] | 262 | } |
Chris Lattner | d013ba9 | 2002-01-23 05:49:41 +0000 | [diff] [blame] | 263 | |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 264 | void FunctionPass::addToPassManager(ModulePassManager *PM, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 265 | AnalysisUsage &AU) { |
| 266 | PM->addPass(this, AU); |
Chris Lattner | d013ba9 | 2002-01-23 05:49:41 +0000 | [diff] [blame] | 267 | } |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 268 | |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 269 | void FunctionPass::addToPassManager(FunctionPassManagerT *PM, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 270 | AnalysisUsage &AU) { |
| 271 | PM->addPass(this, AU); |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | //===----------------------------------------------------------------------===// |
| 275 | // BasicBlockPass Implementation |
| 276 | // |
| 277 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 278 | // To run this pass on a function, we simply call runOnBasicBlock once for each |
| 279 | // function. |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 280 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 281 | bool BasicBlockPass::runOnFunction(Function &F) { |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame] | 282 | bool Changed = doInitialization(F); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 283 | for (Function::iterator I = F.begin(), E = F.end(); I != E; ++I) |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 284 | Changed |= runOnBasicBlock(*I); |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame] | 285 | return Changed | doFinalization(F); |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 286 | } |
| 287 | |
| 288 | // To run directly on the basic block, we initialize, runOnBasicBlock, then |
| 289 | // finalize. |
| 290 | // |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 291 | bool BasicBlockPass::runPass(BasicBlock &BB) { |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame] | 292 | Function &F = *BB.getParent(); |
| 293 | Module &M = *F.getParent(); |
Chris Lattner | 79e523d | 2004-09-20 04:47:19 +0000 | [diff] [blame] | 294 | bool Changed = doInitialization(M); |
| 295 | Changed |= doInitialization(F); |
| 296 | Changed |= runOnBasicBlock(BB); |
| 297 | Changed |= doFinalization(F); |
| 298 | Changed |= doFinalization(M); |
| 299 | return Changed; |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 300 | } |
| 301 | |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 302 | void BasicBlockPass::addToPassManager(FunctionPassManagerT *PM, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 303 | AnalysisUsage &AU) { |
| 304 | PM->addPass(this, AU); |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Chris Lattner | c47b081 | 2006-01-04 07:47:13 +0000 | [diff] [blame] | 307 | void BasicBlockPass::addToPassManager(BasicBlockPassManager *PM, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 308 | AnalysisUsage &AU) { |
| 309 | PM->addPass(this, AU); |
Chris Lattner | cdd09c2 | 2002-01-31 00:45:31 +0000 | [diff] [blame] | 310 | } |
| 311 | |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 312 | |
| 313 | //===----------------------------------------------------------------------===// |
| 314 | // Pass Registration mechanism |
| 315 | // |
| 316 | static std::map<TypeInfo, PassInfo*> *PassInfoMap = 0; |
| 317 | static std::vector<PassRegistrationListener*> *Listeners = 0; |
| 318 | |
| 319 | // getPassInfo - Return the PassInfo data structure that corresponds to this |
| 320 | // pass... |
| 321 | const PassInfo *Pass::getPassInfo() const { |
Chris Lattner | 071577d | 2002-07-29 21:02:31 +0000 | [diff] [blame] | 322 | if (PassInfoCache) return PassInfoCache; |
Chris Lattner | 4b16963 | 2002-08-21 17:08:37 +0000 | [diff] [blame] | 323 | return lookupPassInfo(typeid(*this)); |
| 324 | } |
| 325 | |
| 326 | const PassInfo *Pass::lookupPassInfo(const std::type_info &TI) { |
Chris Lattner | 071577d | 2002-07-29 21:02:31 +0000 | [diff] [blame] | 327 | if (PassInfoMap == 0) return 0; |
Chris Lattner | 4b16963 | 2002-08-21 17:08:37 +0000 | [diff] [blame] | 328 | std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->find(TI); |
Chris Lattner | 071577d | 2002-07-29 21:02:31 +0000 | [diff] [blame] | 329 | return (I != PassInfoMap->end()) ? I->second : 0; |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 330 | } |
| 331 | |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 332 | void RegisterPassBase::registerPass() { |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 333 | if (PassInfoMap == 0) |
| 334 | PassInfoMap = new std::map<TypeInfo, PassInfo*>(); |
| 335 | |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 336 | assert(PassInfoMap->find(PIObj.getTypeInfo()) == PassInfoMap->end() && |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 337 | "Pass already registered!"); |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 338 | PassInfoMap->insert(std::make_pair(TypeInfo(PIObj.getTypeInfo()), &PIObj)); |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 339 | |
| 340 | // Notify any listeners... |
| 341 | if (Listeners) |
| 342 | for (std::vector<PassRegistrationListener*>::iterator |
| 343 | I = Listeners->begin(), E = Listeners->end(); I != E; ++I) |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 344 | (*I)->passRegistered(&PIObj); |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 345 | } |
| 346 | |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 347 | void RegisterPassBase::unregisterPass() { |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 348 | assert(PassInfoMap && "Pass registered but not in map!"); |
| 349 | std::map<TypeInfo, PassInfo*>::iterator I = |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 350 | PassInfoMap->find(PIObj.getTypeInfo()); |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 351 | assert(I != PassInfoMap->end() && "Pass registered but not in map!"); |
| 352 | |
| 353 | // Remove pass from the map... |
| 354 | PassInfoMap->erase(I); |
| 355 | if (PassInfoMap->empty()) { |
| 356 | delete PassInfoMap; |
| 357 | PassInfoMap = 0; |
| 358 | } |
| 359 | |
| 360 | // Notify any listeners... |
| 361 | if (Listeners) |
| 362 | for (std::vector<PassRegistrationListener*>::iterator |
| 363 | I = Listeners->begin(), E = Listeners->end(); I != E; ++I) |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 364 | (*I)->passUnregistered(&PIObj); |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 365 | } |
| 366 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 367 | //===----------------------------------------------------------------------===// |
| 368 | // Analysis Group Implementation Code |
| 369 | //===----------------------------------------------------------------------===// |
| 370 | |
| 371 | struct AnalysisGroupInfo { |
| 372 | const PassInfo *DefaultImpl; |
| 373 | std::set<const PassInfo *> Implementations; |
| 374 | AnalysisGroupInfo() : DefaultImpl(0) {} |
| 375 | }; |
| 376 | |
| 377 | static std::map<const PassInfo *, AnalysisGroupInfo> *AnalysisGroupInfoMap = 0; |
| 378 | |
| 379 | // RegisterAGBase implementation |
| 380 | // |
| 381 | RegisterAGBase::RegisterAGBase(const std::type_info &Interface, |
| 382 | const std::type_info *Pass, bool isDefault) |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 383 | : RegisterPassBase(Interface, PassInfo::AnalysisGroup), |
| 384 | ImplementationInfo(0), isDefaultImplementation(isDefault) { |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 385 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 386 | InterfaceInfo = const_cast<PassInfo*>(Pass::lookupPassInfo(Interface)); |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 387 | if (InterfaceInfo == 0) { |
| 388 | // First reference to Interface, register it now. |
| 389 | registerPass(); |
| 390 | InterfaceInfo = &PIObj; |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 391 | } |
| 392 | assert(InterfaceInfo->getPassType() == PassInfo::AnalysisGroup && |
| 393 | "Trying to join an analysis group that is a normal pass!"); |
| 394 | |
| 395 | if (Pass) { |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 396 | ImplementationInfo = Pass::lookupPassInfo(*Pass); |
| 397 | assert(ImplementationInfo && |
| 398 | "Must register pass before adding to AnalysisGroup!"); |
| 399 | |
Chris Lattner | b3708e2 | 2002-08-30 20:23:45 +0000 | [diff] [blame] | 400 | // Make sure we keep track of the fact that the implementation implements |
| 401 | // the interface. |
| 402 | PassInfo *IIPI = const_cast<PassInfo*>(ImplementationInfo); |
| 403 | IIPI->addInterfaceImplemented(InterfaceInfo); |
| 404 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 405 | // Lazily allocate to avoid nasty initialization order dependencies |
| 406 | if (AnalysisGroupInfoMap == 0) |
| 407 | AnalysisGroupInfoMap = new std::map<const PassInfo *,AnalysisGroupInfo>(); |
| 408 | |
| 409 | AnalysisGroupInfo &AGI = (*AnalysisGroupInfoMap)[InterfaceInfo]; |
| 410 | assert(AGI.Implementations.count(ImplementationInfo) == 0 && |
| 411 | "Cannot add a pass to the same analysis group more than once!"); |
| 412 | AGI.Implementations.insert(ImplementationInfo); |
| 413 | if (isDefault) { |
| 414 | assert(AGI.DefaultImpl == 0 && InterfaceInfo->getNormalCtor() == 0 && |
| 415 | "Default implementation for analysis group already specified!"); |
| 416 | assert(ImplementationInfo->getNormalCtor() && |
| 417 | "Cannot specify pass as default if it does not have a default ctor"); |
| 418 | AGI.DefaultImpl = ImplementationInfo; |
| 419 | InterfaceInfo->setNormalCtor(ImplementationInfo->getNormalCtor()); |
| 420 | } |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | void RegisterAGBase::setGroupName(const char *Name) { |
| 425 | assert(InterfaceInfo->getPassName()[0] == 0 && "Interface Name already set!"); |
| 426 | InterfaceInfo->setPassName(Name); |
| 427 | } |
| 428 | |
| 429 | RegisterAGBase::~RegisterAGBase() { |
| 430 | if (ImplementationInfo) { |
| 431 | assert(AnalysisGroupInfoMap && "Inserted into map, but map doesn't exist?"); |
| 432 | AnalysisGroupInfo &AGI = (*AnalysisGroupInfoMap)[InterfaceInfo]; |
| 433 | |
| 434 | assert(AGI.Implementations.count(ImplementationInfo) && |
| 435 | "Pass not a member of analysis group?"); |
| 436 | |
| 437 | if (AGI.DefaultImpl == ImplementationInfo) |
| 438 | AGI.DefaultImpl = 0; |
Misha Brukman | b1c9317 | 2005-04-21 23:48:37 +0000 | [diff] [blame] | 439 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 440 | AGI.Implementations.erase(ImplementationInfo); |
| 441 | |
| 442 | // Last member of this analysis group? Unregister PassInfo, delete map entry |
| 443 | if (AGI.Implementations.empty()) { |
| 444 | assert(AGI.DefaultImpl == 0 && |
| 445 | "Default implementation didn't unregister?"); |
| 446 | AnalysisGroupInfoMap->erase(InterfaceInfo); |
| 447 | if (AnalysisGroupInfoMap->empty()) { // Delete map if empty |
| 448 | delete AnalysisGroupInfoMap; |
| 449 | AnalysisGroupInfoMap = 0; |
| 450 | } |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 451 | } |
| 452 | } |
Chris Lattner | c66da83 | 2006-01-23 01:01:04 +0000 | [diff] [blame] | 453 | |
| 454 | if (InterfaceInfo == &PIObj) |
| 455 | unregisterPass(); |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | |
Chris Lattner | 37d3c95 | 2002-07-23 18:08:00 +0000 | [diff] [blame] | 459 | //===----------------------------------------------------------------------===// |
| 460 | // PassRegistrationListener implementation |
| 461 | // |
| 462 | |
| 463 | // PassRegistrationListener ctor - Add the current object to the list of |
| 464 | // PassRegistrationListeners... |
| 465 | PassRegistrationListener::PassRegistrationListener() { |
| 466 | if (!Listeners) Listeners = new std::vector<PassRegistrationListener*>(); |
| 467 | Listeners->push_back(this); |
| 468 | } |
| 469 | |
| 470 | // dtor - Remove object from list of listeners... |
| 471 | PassRegistrationListener::~PassRegistrationListener() { |
| 472 | std::vector<PassRegistrationListener*>::iterator I = |
| 473 | std::find(Listeners->begin(), Listeners->end(), this); |
| 474 | assert(Listeners && I != Listeners->end() && |
| 475 | "PassRegistrationListener not registered!"); |
| 476 | Listeners->erase(I); |
| 477 | |
| 478 | if (Listeners->empty()) { |
| 479 | delete Listeners; |
| 480 | Listeners = 0; |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | // enumeratePasses - Iterate over the registered passes, calling the |
| 485 | // passEnumerate callback on each PassInfo object. |
| 486 | // |
| 487 | void PassRegistrationListener::enumeratePasses() { |
| 488 | if (PassInfoMap) |
| 489 | for (std::map<TypeInfo, PassInfo*>::iterator I = PassInfoMap->begin(), |
| 490 | E = PassInfoMap->end(); I != E; ++I) |
| 491 | passEnumerate(I->second); |
| 492 | } |
Reid Spencer | 8edc8be | 2005-04-25 01:01:35 +0000 | [diff] [blame] | 493 | |