Chris Lattner | d0e9bd1 | 2002-04-28 20:42:50 +0000 | [diff] [blame] | 1 | //===- PassManagerT.h - Container for Passes ---------------------*- C++ -*--=// |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | d0e9bd1 | 2002-04-28 20:42:50 +0000 | [diff] [blame] | 3 | // This file defines the PassManagerT class. This class is used to hold, |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 4 | // maintain, and optimize execution of Pass's. The PassManager class ensures |
| 5 | // that analysis results are available before a pass runs, and that Pass's are |
| 6 | // destroyed when the PassManager is destroyed. |
| 7 | // |
Chris Lattner | d0e9bd1 | 2002-04-28 20:42:50 +0000 | [diff] [blame] | 8 | // The PassManagerT template is instantiated three times to do its job. The |
| 9 | // public PassManager class is a Pimpl around the PassManagerT<Module> interface |
| 10 | // to avoid having all of the PassManager clients being exposed to the |
| 11 | // implementation details herein. |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | d0e9bd1 | 2002-04-28 20:42:50 +0000 | [diff] [blame] | 15 | #ifndef LLVM_PASSMANAGER_T_H |
| 16 | #define LLVM_PASSMANAGER_T_H |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 17 | |
| 18 | #include "llvm/Pass.h" |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 19 | #include "Support/CommandLine.h" |
Chris Lattner | ed6504b | 2002-09-08 19:00:07 +0000 | [diff] [blame] | 20 | #include "Support/LeakDetector.h" |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 21 | #include <algorithm> |
Chris Lattner | 395c27a | 2002-07-31 18:04:17 +0000 | [diff] [blame] | 22 | #include <iostream> |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 23 | class Annotable; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 24 | |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 25 | //===----------------------------------------------------------------------===// |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 26 | // Pass debugging information. Often it is useful to find out what pass is |
| 27 | // running when a crash occurs in a utility. When this library is compiled with |
| 28 | // debugging on, a command line option (--debug-pass) is enabled that causes the |
| 29 | // pass name to be printed before it executes. |
| 30 | // |
| 31 | |
| 32 | // Different debug levels that can be enabled... |
| 33 | enum PassDebugLevel { |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 34 | None, Arguments, Structure, Executions, Details |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | static cl::opt<enum PassDebugLevel> |
| 38 | PassDebugging("debug-pass", cl::Hidden, |
| 39 | cl::desc("Print PassManager debugging information"), |
| 40 | cl::values( |
| 41 | clEnumVal(None , "disable debug output"), |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 42 | clEnumVal(Arguments , "print pass arguments to pass to 'opt'"), |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 43 | clEnumVal(Structure , "print pass structure before run()"), |
| 44 | clEnumVal(Executions, "print pass name before it is executed"), |
| 45 | clEnumVal(Details , "print pass details when it is executed"), |
| 46 | 0)); |
| 47 | |
| 48 | //===----------------------------------------------------------------------===// |
Chris Lattner | 57d2ba3 | 2002-04-04 19:35:24 +0000 | [diff] [blame] | 49 | // PMDebug class - a set of debugging functions, that are not to be |
| 50 | // instantiated by the template. |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 51 | // |
| 52 | struct PMDebug { |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 53 | static void PerformPassStartupStuff(Pass *P) { |
| 54 | // If debugging is enabled, print out argument information... |
| 55 | if (PassDebugging >= Arguments) { |
| 56 | std::cerr << "Pass Arguments: "; |
| 57 | PrintArgumentInformation(P); |
| 58 | std::cerr << "\n"; |
| 59 | |
| 60 | // Print the pass execution structure |
| 61 | if (PassDebugging >= Structure) |
| 62 | P->dumpPassStructure(); |
| 63 | } |
Chris Lattner | 198cf42 | 2002-07-30 16:27:02 +0000 | [diff] [blame] | 64 | } |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 65 | |
| 66 | static void PrintArgumentInformation(const Pass *P); |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 67 | static void PrintPassInformation(unsigned,const char*,Pass *, Annotable *); |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 68 | static void PrintAnalysisSetInfo(unsigned,const char*,Pass *P, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 69 | const std::vector<AnalysisID> &); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 70 | }; |
| 71 | |
| 72 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 73 | //===----------------------------------------------------------------------===// |
| 74 | // TimingInfo Class - This class is used to calculate information about the |
| 75 | // amount of time each pass takes to execute. This only happens when |
| 76 | // -time-passes is enabled on the command line. |
| 77 | // |
Chris Lattner | 6a33d6f | 2002-08-01 19:33:09 +0000 | [diff] [blame] | 78 | struct TimeRecord { // TimeRecord - Data we collect and print for each pass |
| 79 | double Elapsed; // Wall clock time elapsed in seconds |
| 80 | double UserTime; // User time elapsed |
| 81 | double SystemTime; // System time elapsed |
| 82 | unsigned long MaxRSS; // Maximum resident set size (in bytes) |
| 83 | unsigned long RSSTemp; // Temp for calculating maxrss |
| 84 | |
| 85 | TimeRecord() : Elapsed(0), UserTime(0), SystemTime(0), MaxRSS(0) {} |
| 86 | void passStart(const TimeRecord &T); |
| 87 | void passEnd(const TimeRecord &T); |
| 88 | void sum(const TimeRecord &TR); |
Chris Lattner | e821d78 | 2002-08-20 18:47:53 +0000 | [diff] [blame] | 89 | bool operator<(const TimeRecord &TR) const; |
Chris Lattner | 6a33d6f | 2002-08-01 19:33:09 +0000 | [diff] [blame] | 90 | |
| 91 | void print(const char *PassName, const TimeRecord &TotalTime) const; |
| 92 | }; |
| 93 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 94 | class TimingInfo { |
Chris Lattner | 6a33d6f | 2002-08-01 19:33:09 +0000 | [diff] [blame] | 95 | std::map<Pass*, TimeRecord> TimingData; |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 96 | TimingInfo() {} // Private ctor, must use create member |
| 97 | public: |
| 98 | // Create method. If Timing is enabled, this creates and returns a new timing |
| 99 | // object, otherwise it returns null. |
| 100 | // |
| 101 | static TimingInfo *create(); |
| 102 | |
| 103 | // TimingDtor - Print out information about timing information |
| 104 | ~TimingInfo(); |
| 105 | |
| 106 | void passStarted(Pass *P); |
| 107 | void passEnded(Pass *P); |
| 108 | }; |
| 109 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 110 | //===----------------------------------------------------------------------===// |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 111 | // Declare the PassManagerTraits which will be specialized... |
| 112 | // |
| 113 | template<class UnitType> class PassManagerTraits; // Do not define. |
| 114 | |
| 115 | |
| 116 | //===----------------------------------------------------------------------===// |
| 117 | // PassManagerT - Container object for passes. The PassManagerT destructor |
| 118 | // deletes all passes contained inside of the PassManagerT, so you shouldn't |
| 119 | // delete passes manually, and all passes should be dynamically allocated. |
| 120 | // |
| 121 | template<typename UnitType> |
| 122 | class PassManagerT : public PassManagerTraits<UnitType>,public AnalysisResolver{ |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 123 | typedef PassManagerTraits<UnitType> Traits; |
| 124 | typedef typename Traits::PassClass PassClass; |
| 125 | typedef typename Traits::SubPassClass SubPassClass; |
| 126 | typedef typename Traits::BatcherClass BatcherClass; |
| 127 | typedef typename Traits::ParentClass ParentClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 128 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 129 | friend typename Traits::PassClass; |
| 130 | friend typename Traits::SubPassClass; |
| 131 | friend class Traits; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 132 | |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 133 | std::vector<PassClass*> Passes; // List of passes to run |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 134 | |
| 135 | // The parent of this pass manager... |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 136 | ParentClass * const Parent; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 137 | |
| 138 | // The current batcher if one is in use, or null |
| 139 | BatcherClass *Batcher; |
| 140 | |
| 141 | // CurrentAnalyses - As the passes are being run, this map contains the |
| 142 | // analyses that are available to the current pass for use. This is accessed |
| 143 | // through the getAnalysis() function in this class and in Pass. |
| 144 | // |
| 145 | std::map<AnalysisID, Pass*> CurrentAnalyses; |
| 146 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 147 | // LastUseOf - This map keeps track of the last usage in our pipeline of a |
| 148 | // particular pass. When executing passes, the memory for .first is free'd |
| 149 | // after .second is run. |
| 150 | // |
| 151 | std::map<Pass*, Pass*> LastUseOf; |
| 152 | |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 153 | public: |
| 154 | PassManagerT(ParentClass *Par = 0) : Parent(Par), Batcher(0) {} |
| 155 | ~PassManagerT() { |
| 156 | // Delete all of the contained passes... |
Chris Lattner | a82ee2d | 2002-07-24 22:08:53 +0000 | [diff] [blame] | 157 | for (typename std::vector<PassClass*>::iterator |
| 158 | I = Passes.begin(), E = Passes.end(); I != E; ++I) |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 159 | delete *I; |
| 160 | } |
| 161 | |
| 162 | // run - Run all of the queued passes on the specified module in an optimal |
| 163 | // way. |
| 164 | virtual bool runOnUnit(UnitType *M) { |
| 165 | bool MadeChanges = false; |
| 166 | closeBatcher(); |
| 167 | CurrentAnalyses.clear(); |
| 168 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 169 | // LastUserOf - This contains the inverted LastUseOfMap... |
| 170 | std::map<Pass *, std::vector<Pass*> > LastUserOf; |
| 171 | for (std::map<Pass*, Pass*>::iterator I = LastUseOf.begin(), |
| 172 | E = LastUseOf.end(); I != E; ++I) |
| 173 | LastUserOf[I->second].push_back(I->first); |
| 174 | |
| 175 | |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 176 | // Output debug information... |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 177 | if (Parent == 0) PMDebug::PerformPassStartupStuff(this); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 178 | |
| 179 | // Run all of the passes |
| 180 | for (unsigned i = 0, e = Passes.size(); i < e; ++i) { |
| 181 | PassClass *P = Passes[i]; |
| 182 | |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 183 | PMDebug::PrintPassInformation(getDepth(), "Executing Pass", P, |
| 184 | (Annotable*)M); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 185 | |
| 186 | // Get information about what analyses the pass uses... |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 187 | AnalysisUsage AnUsage; |
| 188 | P->getAnalysisUsage(AnUsage); |
| 189 | PMDebug::PrintAnalysisSetInfo(getDepth(), "Required", P, |
| 190 | AnUsage.getRequiredSet()); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 191 | |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 192 | // All Required analyses should be available to the pass as it runs! Here |
| 193 | // we fill in the AnalysisImpls member of the pass so that it can |
| 194 | // successfully use the getAnalysis() method to retrieve the |
| 195 | // implementations it needs. |
| 196 | // |
| 197 | P->AnalysisImpls.clear(); |
| 198 | P->AnalysisImpls.reserve(AnUsage.getRequiredSet().size()); |
| 199 | for (std::vector<const PassInfo *>::const_iterator |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 200 | I = AnUsage.getRequiredSet().begin(), |
| 201 | E = AnUsage.getRequiredSet().end(); I != E; ++I) { |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 202 | Pass *Impl = getAnalysisOrNullUp(*I); |
| 203 | if (Impl == 0) { |
| 204 | std::cerr << "Analysis '" << (*I)->getPassName() |
| 205 | << "' used but not available!"; |
| 206 | assert(0 && "Analysis used but not available!"); |
| 207 | } else if (PassDebugging == Details) { |
| 208 | if ((*I)->getPassName() != std::string(Impl->getPassName())) |
| 209 | std::cerr << " Interface '" << (*I)->getPassName() |
| 210 | << "' implemented by '" << Impl->getPassName() << "'\n"; |
| 211 | } |
| 212 | P->AnalysisImpls.push_back(std::make_pair(*I, Impl)); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 213 | } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 214 | |
| 215 | // Run the sub pass! |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 216 | startPass(P); |
| 217 | bool Changed = runPass(P, M); |
| 218 | endPass(P); |
Chris Lattner | f2f31bd | 2002-02-01 04:53:36 +0000 | [diff] [blame] | 219 | MadeChanges |= Changed; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 220 | |
Chris Lattner | ed6504b | 2002-09-08 19:00:07 +0000 | [diff] [blame] | 221 | // Check for memory leaks by the pass... |
| 222 | LeakDetector::checkForGarbage(std::string("after running pass '") + |
| 223 | P->getPassName() + "'"); |
| 224 | |
Chris Lattner | f2f31bd | 2002-02-01 04:53:36 +0000 | [diff] [blame] | 225 | if (Changed) |
| 226 | PMDebug::PrintPassInformation(getDepth()+1, "Made Modification", P, |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 227 | (Annotable*)M); |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 228 | PMDebug::PrintAnalysisSetInfo(getDepth(), "Preserved", P, |
| 229 | AnUsage.getPreservedSet()); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 230 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 231 | |
| 232 | // Erase all analyses not in the preserved set... |
| 233 | if (!AnUsage.preservesAll()) { |
| 234 | const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet(); |
| 235 | for (std::map<AnalysisID, Pass*>::iterator I = CurrentAnalyses.begin(), |
| 236 | E = CurrentAnalyses.end(); I != E; ) |
| 237 | if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) != |
| 238 | PreservedSet.end()) |
| 239 | ++I; // This analysis is preserved, leave it in the available set... |
| 240 | else { |
| 241 | #if MAP_DOESNT_HAVE_BROKEN_ERASE_MEMBER |
| 242 | I = CurrentAnalyses.erase(I); // Analysis not preserved! |
| 243 | #else |
| 244 | // GCC 2.95.3 STL doesn't have correct erase member! |
| 245 | CurrentAnalyses.erase(I); |
| 246 | I = CurrentAnalyses.begin(); |
| 247 | #endif |
| 248 | } |
| 249 | } |
| 250 | |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 251 | // Add the current pass to the set of passes that have been run, and are |
| 252 | // thus available to users. |
| 253 | // |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 254 | if (const PassInfo *PI = P->getPassInfo()) { |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 255 | CurrentAnalyses[PI] = P; |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 256 | |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 257 | // This pass is the current implementation of all of the interfaces it |
| 258 | // implements as well. |
| 259 | // |
| 260 | const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented(); |
| 261 | for (unsigned i = 0, e = II.size(); i != e; ++i) |
| 262 | CurrentAnalyses[II[i]] = P; |
| 263 | } |
| 264 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 265 | // Free memory for any passes that we are the last use of... |
| 266 | std::vector<Pass*> &DeadPass = LastUserOf[P]; |
| 267 | for (std::vector<Pass*>::iterator I = DeadPass.begin(),E = DeadPass.end(); |
| 268 | I != E; ++I) { |
| 269 | PMDebug::PrintPassInformation(getDepth()+1, "Freeing Pass", *I, |
Chris Lattner | a454b5b | 2002-04-28 05:14:06 +0000 | [diff] [blame] | 270 | (Annotable*)M); |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 271 | (*I)->releaseMemory(); |
| 272 | } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 273 | } |
| 274 | return MadeChanges; |
| 275 | } |
| 276 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 277 | // dumpPassStructure - Implement the -debug-passes=PassStructure option |
| 278 | virtual void dumpPassStructure(unsigned Offset = 0) { |
| 279 | std::cerr << std::string(Offset*2, ' ') << Traits::getPMName() |
| 280 | << " Pass Manager\n"; |
Chris Lattner | a82ee2d | 2002-07-24 22:08:53 +0000 | [diff] [blame] | 281 | for (typename std::vector<PassClass*>::iterator |
| 282 | I = Passes.begin(), E = Passes.end(); I != E; ++I) { |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 283 | PassClass *P = *I; |
| 284 | P->dumpPassStructure(Offset+1); |
| 285 | |
| 286 | // Loop through and see which classes are destroyed after this one... |
| 287 | for (std::map<Pass*, Pass*>::iterator I = LastUseOf.begin(), |
| 288 | E = LastUseOf.end(); I != E; ++I) { |
| 289 | if (P == I->second) { |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 290 | std::cerr << "--" << std::string(Offset*2, ' '); |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 291 | I->first->dumpPassStructure(0); |
| 292 | } |
| 293 | } |
| 294 | } |
| 295 | } |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 296 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 297 | Pass *getAnalysisOrNullDown(const PassInfo *ID) const { |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 298 | std::map<AnalysisID, Pass*>::const_iterator I = CurrentAnalyses.find(ID); |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 299 | |
| 300 | if (I != CurrentAnalyses.end()) |
| 301 | return I->second; // Found it. |
| 302 | |
| 303 | if (Batcher) |
| 304 | return ((AnalysisResolver*)Batcher)->getAnalysisOrNullDown(ID); |
| 305 | return 0; |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 308 | Pass *getAnalysisOrNullUp(const PassInfo *ID) const { |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 309 | std::map<AnalysisID, Pass*>::const_iterator I = CurrentAnalyses.find(ID); |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 310 | if (I != CurrentAnalyses.end()) |
| 311 | return I->second; // Found it. |
| 312 | |
| 313 | if (Parent) // Try scanning... |
| 314 | return Parent->getAnalysisOrNullUp(ID); |
| 315 | return 0; |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 318 | // {start/end}Pass - Called when a pass is started, it just propogates |
| 319 | // information up to the top level PassManagerT object to tell it that a pass |
| 320 | // has started or ended. This is used to gather timing information about |
| 321 | // passes. |
| 322 | // |
| 323 | void startPass(Pass *P) { |
| 324 | if (Parent) Parent->startPass(P); |
| 325 | else PassStarted(P); |
| 326 | } |
| 327 | void endPass(Pass *P) { |
| 328 | if (Parent) Parent->endPass(P); |
| 329 | else PassEnded(P); |
| 330 | } |
| 331 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 332 | // markPassUsed - Inform higher level pass managers (and ourselves) |
| 333 | // that these analyses are being used by this pass. This is used to |
| 334 | // make sure that analyses are not free'd before we have to use |
| 335 | // them... |
| 336 | // |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 337 | void markPassUsed(const PassInfo *P, Pass *User) { |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 338 | std::map<AnalysisID, Pass*>::const_iterator I = CurrentAnalyses.find(P); |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 339 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 340 | if (I != CurrentAnalyses.end()) { |
| 341 | LastUseOf[I->second] = User; // Local pass, extend the lifetime |
| 342 | } else { |
| 343 | // Pass not in current available set, must be a higher level pass |
| 344 | // available to us, propogate to parent pass manager... We tell the |
| 345 | // parent that we (the passmanager) are using the analysis so that it |
| 346 | // frees the analysis AFTER this pass manager runs. |
| 347 | // |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 348 | assert(Parent != 0 && "Pass available but not found!"); |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 349 | Parent->markPassUsed(P, this); |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | // Return the number of parent PassManagers that exist |
| 354 | virtual unsigned getDepth() const { |
| 355 | if (Parent == 0) return 0; |
| 356 | return 1 + Parent->getDepth(); |
| 357 | } |
| 358 | |
Chris Lattner | 1e4867f | 2002-07-30 19:51:02 +0000 | [diff] [blame] | 359 | virtual unsigned getNumContainedPasses() const { return Passes.size(); } |
| 360 | virtual const Pass *getContainedPass(unsigned N) const { |
| 361 | assert(N < Passes.size() && "Pass number out of range!"); |
| 362 | return Passes[N]; |
| 363 | } |
| 364 | |
Chris Lattner | 6e041bd | 2002-08-21 22:17:09 +0000 | [diff] [blame] | 365 | // add - Add a pass to the queue of passes to run. This gives ownership of |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 366 | // the Pass to the PassManager. When the PassManager is destroyed, the pass |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 367 | // will be destroyed as well, so there is no need to delete the pass. This |
| 368 | // implies that all passes MUST be new'd. |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 369 | // |
| 370 | void add(PassClass *P) { |
| 371 | // Get information about what analyses the pass uses... |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 372 | AnalysisUsage AnUsage; |
| 373 | P->getAnalysisUsage(AnUsage); |
| 374 | const std::vector<AnalysisID> &Required = AnUsage.getRequiredSet(); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 375 | |
| 376 | // Loop over all of the analyses used by this pass, |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 377 | for (std::vector<AnalysisID>::const_iterator I = Required.begin(), |
| 378 | E = Required.end(); I != E; ++I) { |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 379 | if (getAnalysisOrNullDown(*I) == 0) |
Chris Lattner | 2675007 | 2002-07-27 01:12:17 +0000 | [diff] [blame] | 380 | add((PassClass*)(*I)->createPass()); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | // Tell the pass to add itself to this PassManager... the way it does so |
| 384 | // depends on the class of the pass, and is critical to laying out passes in |
| 385 | // an optimal order.. |
| 386 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 387 | P->addToPassManager(this, AnUsage); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | private: |
| 391 | |
| 392 | // addPass - These functions are used to implement the subclass specific |
| 393 | // behaviors present in PassManager. Basically the add(Pass*) method ends up |
| 394 | // reflecting its behavior into a Pass::addToPassManager call. Subclasses of |
| 395 | // Pass override it specifically so that they can reflect the type |
| 396 | // information inherent in "this" back to the PassManager. |
| 397 | // |
| 398 | // For generic Pass subclasses (which are interprocedural passes), we simply |
| 399 | // add the pass to the end of the pass list and terminate any accumulation of |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 400 | // FunctionPass's that are present. |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 401 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 402 | void addPass(PassClass *P, AnalysisUsage &AnUsage) { |
| 403 | const std::vector<AnalysisID> &RequiredSet = AnUsage.getRequiredSet(); |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 404 | |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 405 | // FIXME: If this pass being added isn't killed by any of the passes in the |
| 406 | // batcher class then we can reorder to pass to execute before the batcher |
| 407 | // does, which will potentially allow us to batch more passes! |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 408 | // |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 409 | //const std::vector<AnalysisID> &ProvidedSet = AnUsage.getProvidedSet(); |
| 410 | if (Batcher /*&& ProvidedSet.empty()*/) |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 411 | closeBatcher(); // This pass cannot be batched! |
| 412 | |
| 413 | // Set the Resolver instance variable in the Pass so that it knows where to |
| 414 | // find this object... |
| 415 | // |
| 416 | setAnalysisResolver(P, this); |
| 417 | Passes.push_back(P); |
| 418 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 419 | // Inform higher level pass managers (and ourselves) that these analyses are |
| 420 | // being used by this pass. This is used to make sure that analyses are not |
| 421 | // free'd before we have to use them... |
| 422 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 423 | for (std::vector<AnalysisID>::const_iterator I = RequiredSet.begin(), |
| 424 | E = RequiredSet.end(); I != E; ++I) |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 425 | markPassUsed(*I, P); // Mark *I as used by P |
| 426 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 427 | // Erase all analyses not in the preserved set... |
| 428 | if (!AnUsage.preservesAll()) { |
| 429 | const std::vector<AnalysisID> &PreservedSet = AnUsage.getPreservedSet(); |
| 430 | for (std::map<AnalysisID, Pass*>::iterator I = CurrentAnalyses.begin(), |
| 431 | E = CurrentAnalyses.end(); I != E; ) |
| 432 | if (std::find(PreservedSet.begin(), PreservedSet.end(), I->first) != |
| 433 | PreservedSet.end()) |
| 434 | ++I; // This analysis is preserved, leave it in the available set... |
| 435 | else { |
| 436 | #if MAP_DOESNT_HAVE_BROKEN_ERASE_MEMBER |
| 437 | I = CurrentAnalyses.erase(I); // Analysis not preserved! |
| 438 | #else |
| 439 | CurrentAnalyses.erase(I);// GCC 2.95.3 STL doesn't have correct erase! |
| 440 | I = CurrentAnalyses.begin(); |
| 441 | #endif |
| 442 | } |
| 443 | } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 444 | |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 445 | // Add this pass to the currently available set... |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 446 | if (const PassInfo *PI = P->getPassInfo()) { |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 447 | CurrentAnalyses[PI] = P; |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 448 | |
Chris Lattner | 216edd4 | 2002-08-30 20:25:01 +0000 | [diff] [blame] | 449 | // This pass is the current implementation of all of the interfaces it |
| 450 | // implements as well. |
| 451 | // |
| 452 | const std::vector<const PassInfo*> &II = PI->getInterfacesImplemented(); |
| 453 | for (unsigned i = 0, e = II.size(); i != e; ++i) |
| 454 | CurrentAnalyses[II[i]] = P; |
| 455 | } |
| 456 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 457 | // For now assume that our results are never used... |
| 458 | LastUseOf[P] = P; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 459 | } |
| 460 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 461 | // For FunctionPass subclasses, we must be sure to batch the FunctionPass's |
| 462 | // together in a BatcherClass object so that all of the analyses are run |
| 463 | // together a function at a time. |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 464 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 465 | void addPass(SubPassClass *MP, AnalysisUsage &AnUsage) { |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 466 | if (Batcher == 0) // If we don't have a batcher yet, make one now. |
| 467 | Batcher = new BatcherClass(this); |
Chris Lattner | 7350317 | 2002-07-29 21:03:38 +0000 | [diff] [blame] | 468 | // The Batcher will queue the passes up |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 469 | MP->addToPassManager(Batcher, AnUsage); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 470 | } |
| 471 | |
| 472 | // closeBatcher - Terminate the batcher that is being worked on. |
| 473 | void closeBatcher() { |
| 474 | if (Batcher) { |
| 475 | Passes.push_back(Batcher); |
| 476 | Batcher = 0; |
| 477 | } |
| 478 | } |
| 479 | }; |
| 480 | |
| 481 | |
| 482 | |
| 483 | //===----------------------------------------------------------------------===// |
| 484 | // PassManagerTraits<BasicBlock> Specialization |
| 485 | // |
| 486 | // This pass manager is used to group together all of the BasicBlockPass's |
| 487 | // into a single unit. |
| 488 | // |
| 489 | template<> struct PassManagerTraits<BasicBlock> : public BasicBlockPass { |
| 490 | // PassClass - The type of passes tracked by this PassManager |
| 491 | typedef BasicBlockPass PassClass; |
| 492 | |
| 493 | // SubPassClass - The types of classes that should be collated together |
| 494 | // This is impossible to match, so BasicBlock instantiations of PassManagerT |
| 495 | // do not collate. |
| 496 | // |
| 497 | typedef PassManagerT<Module> SubPassClass; |
| 498 | |
| 499 | // BatcherClass - The type to use for collation of subtypes... This class is |
| 500 | // never instantiated for the PassManager<BasicBlock>, but it must be an |
| 501 | // instance of PassClass to typecheck. |
| 502 | // |
| 503 | typedef PassClass BatcherClass; |
| 504 | |
| 505 | // ParentClass - The type of the parent PassManager... |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 506 | typedef PassManagerT<Function> ParentClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 507 | |
Chris Lattner | 2eaac39 | 2002-01-31 00:40:44 +0000 | [diff] [blame] | 508 | // PMType - The type of the passmanager that subclasses this class |
| 509 | typedef PassManagerT<BasicBlock> PMType; |
| 510 | |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 511 | // runPass - Specify how the pass should be run on the UnitType |
| 512 | static bool runPass(PassClass *P, BasicBlock *M) { |
| 513 | // todo, init and finalize |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 514 | return P->runOnBasicBlock(*M); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 517 | // Dummy implementation of PassStarted/PassEnded |
| 518 | static void PassStarted(Pass *P) {} |
| 519 | static void PassEnded(Pass *P) {} |
| 520 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 521 | // getPMName() - Return the name of the unit the PassManager operates on for |
| 522 | // debugging. |
| 523 | const char *getPMName() const { return "BasicBlock"; } |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 524 | virtual const char *getPassName() const { return "BasicBlock Pass Manager"; } |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 525 | |
Chris Lattner | 2eaac39 | 2002-01-31 00:40:44 +0000 | [diff] [blame] | 526 | // Implement the BasicBlockPass interface... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 527 | virtual bool doInitialization(Module &M); |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame^] | 528 | virtual bool doInitialization(Function &F); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 529 | virtual bool runOnBasicBlock(BasicBlock &BB); |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame^] | 530 | virtual bool doFinalization(Function &F); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 531 | virtual bool doFinalization(Module &M); |
Chris Lattner | cb42906 | 2002-04-30 18:50:17 +0000 | [diff] [blame] | 532 | |
| 533 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 534 | AU.setPreservesAll(); |
| 535 | } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 536 | }; |
| 537 | |
| 538 | |
| 539 | |
| 540 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 541 | // PassManagerTraits<Function> Specialization |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 542 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 543 | // This pass manager is used to group together all of the FunctionPass's |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 544 | // into a single unit. |
| 545 | // |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 546 | template<> struct PassManagerTraits<Function> : public FunctionPass { |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 547 | // PassClass - The type of passes tracked by this PassManager |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 548 | typedef FunctionPass PassClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 549 | |
| 550 | // SubPassClass - The types of classes that should be collated together |
| 551 | typedef BasicBlockPass SubPassClass; |
| 552 | |
| 553 | // BatcherClass - The type to use for collation of subtypes... |
| 554 | typedef PassManagerT<BasicBlock> BatcherClass; |
| 555 | |
| 556 | // ParentClass - The type of the parent PassManager... |
| 557 | typedef PassManagerT<Module> ParentClass; |
| 558 | |
| 559 | // PMType - The type of the passmanager that subclasses this class |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 560 | typedef PassManagerT<Function> PMType; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 561 | |
| 562 | // runPass - Specify how the pass should be run on the UnitType |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 563 | static bool runPass(PassClass *P, Function *F) { |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 564 | return P->runOnFunction(*F); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 565 | } |
| 566 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 567 | // Dummy implementation of PassStarted/PassEnded |
| 568 | static void PassStarted(Pass *P) {} |
| 569 | static void PassEnded(Pass *P) {} |
| 570 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 571 | // getPMName() - Return the name of the unit the PassManager operates on for |
| 572 | // debugging. |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 573 | const char *getPMName() const { return "Function"; } |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 574 | virtual const char *getPassName() const { return "Function Pass Manager"; } |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 575 | |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 576 | // Implement the FunctionPass interface... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 577 | virtual bool doInitialization(Module &M); |
| 578 | virtual bool runOnFunction(Function &F); |
| 579 | virtual bool doFinalization(Module &M); |
Chris Lattner | cb42906 | 2002-04-30 18:50:17 +0000 | [diff] [blame] | 580 | |
| 581 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 582 | AU.setPreservesAll(); |
| 583 | } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 584 | }; |
| 585 | |
| 586 | |
| 587 | |
| 588 | //===----------------------------------------------------------------------===// |
| 589 | // PassManagerTraits<Module> Specialization |
| 590 | // |
| 591 | // This is the top level PassManager implementation that holds generic passes. |
| 592 | // |
| 593 | template<> struct PassManagerTraits<Module> : public Pass { |
| 594 | // PassClass - The type of passes tracked by this PassManager |
| 595 | typedef Pass PassClass; |
| 596 | |
| 597 | // SubPassClass - The types of classes that should be collated together |
Chris Lattner | c8e6654 | 2002-04-27 06:56:12 +0000 | [diff] [blame] | 598 | typedef FunctionPass SubPassClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 599 | |
| 600 | // BatcherClass - The type to use for collation of subtypes... |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 601 | typedef PassManagerT<Function> BatcherClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 602 | |
| 603 | // ParentClass - The type of the parent PassManager... |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 604 | typedef AnalysisResolver ParentClass; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 605 | |
| 606 | // runPass - Specify how the pass should be run on the UnitType |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 607 | static bool runPass(PassClass *P, Module *M) { return P->run(*M); } |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 608 | |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 609 | // getPMName() - Return the name of the unit the PassManager operates on for |
| 610 | // debugging. |
| 611 | const char *getPMName() const { return "Module"; } |
Chris Lattner | 37104aa | 2002-04-29 14:57:45 +0000 | [diff] [blame] | 612 | virtual const char *getPassName() const { return "Module Pass Manager"; } |
Chris Lattner | ac3e060 | 2002-01-31 18:32:27 +0000 | [diff] [blame] | 613 | |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 614 | // TimingInformation - This data member maintains timing information for each |
| 615 | // of the passes that is executed. |
| 616 | // |
| 617 | TimingInfo *TimeInfo; |
| 618 | |
| 619 | // PassStarted/Ended - This callback is notified any time a pass is started |
| 620 | // or stops. This is used to collect timing information about the different |
| 621 | // passes being executed. |
| 622 | // |
| 623 | void PassStarted(Pass *P) { |
| 624 | if (TimeInfo) TimeInfo->passStarted(P); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 625 | } |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 626 | void PassEnded(Pass *P) { |
| 627 | if (TimeInfo) TimeInfo->passEnded(P); |
| 628 | } |
| 629 | |
| 630 | // run - Implement the PassManager interface... |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 631 | bool run(Module &M) { |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 632 | TimeInfo = TimingInfo::create(); |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 633 | bool Result = ((PassManagerT<Module>*)this)->runOnUnit(&M); |
Chris Lattner | e2eb99e | 2002-04-29 04:04:29 +0000 | [diff] [blame] | 634 | if (TimeInfo) { |
| 635 | delete TimeInfo; |
| 636 | TimeInfo = 0; |
| 637 | } |
| 638 | return Result; |
| 639 | } |
| 640 | |
| 641 | // PassManagerTraits constructor - Create a timing info object if the user |
| 642 | // specified timing info should be collected on the command line. |
| 643 | // |
| 644 | PassManagerTraits() : TimeInfo(0) {} |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 645 | }; |
| 646 | |
| 647 | |
| 648 | |
| 649 | //===----------------------------------------------------------------------===// |
| 650 | // PassManagerTraits Method Implementations |
| 651 | // |
| 652 | |
| 653 | // PassManagerTraits<BasicBlock> Implementations |
| 654 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 655 | inline bool PassManagerTraits<BasicBlock>::doInitialization(Module &M) { |
Chris Lattner | 2eaac39 | 2002-01-31 00:40:44 +0000 | [diff] [blame] | 656 | bool Changed = false; |
| 657 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 658 | ((PMType*)this)->Passes[i]->doInitialization(M); |
| 659 | return Changed; |
| 660 | } |
| 661 | |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame^] | 662 | inline bool PassManagerTraits<BasicBlock>::doInitialization(Function &F) { |
| 663 | bool Changed = false; |
| 664 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 665 | ((PMType*)this)->Passes[i]->doInitialization(F); |
| 666 | return Changed; |
| 667 | } |
| 668 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 669 | inline bool PassManagerTraits<BasicBlock>::runOnBasicBlock(BasicBlock &BB) { |
| 670 | return ((PMType*)this)->runOnUnit(&BB); |
Chris Lattner | 2eaac39 | 2002-01-31 00:40:44 +0000 | [diff] [blame] | 671 | } |
| 672 | |
Chris Lattner | bae3c67 | 2002-09-12 17:06:40 +0000 | [diff] [blame^] | 673 | inline bool PassManagerTraits<BasicBlock>::doFinalization(Function &F) { |
| 674 | bool Changed = false; |
| 675 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 676 | ((PMType*)this)->Passes[i]->doFinalization(F); |
| 677 | return Changed; |
| 678 | } |
| 679 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 680 | inline bool PassManagerTraits<BasicBlock>::doFinalization(Module &M) { |
Chris Lattner | 2eaac39 | 2002-01-31 00:40:44 +0000 | [diff] [blame] | 681 | bool Changed = false; |
| 682 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 683 | ((PMType*)this)->Passes[i]->doFinalization(M); |
| 684 | return Changed; |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | |
Chris Lattner | 4e8c487 | 2002-03-23 22:51:58 +0000 | [diff] [blame] | 688 | // PassManagerTraits<Function> Implementations |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 689 | // |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 690 | inline bool PassManagerTraits<Function>::doInitialization(Module &M) { |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 691 | bool Changed = false; |
| 692 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 693 | ((PMType*)this)->Passes[i]->doInitialization(M); |
| 694 | return Changed; |
| 695 | } |
| 696 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 697 | inline bool PassManagerTraits<Function>::runOnFunction(Function &F) { |
| 698 | return ((PMType*)this)->runOnUnit(&F); |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 699 | } |
| 700 | |
Chris Lattner | 113f4f4 | 2002-06-25 16:13:24 +0000 | [diff] [blame] | 701 | inline bool PassManagerTraits<Function>::doFinalization(Module &M) { |
Chris Lattner | 67d2565 | 2002-01-30 23:20:39 +0000 | [diff] [blame] | 702 | bool Changed = false; |
| 703 | for (unsigned i = 0, e = ((PMType*)this)->Passes.size(); i != e; ++i) |
| 704 | ((PMType*)this)->Passes[i]->doFinalization(M); |
| 705 | return Changed; |
| 706 | } |
| 707 | |
| 708 | #endif |