Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 1 | //===- ProfileInfoLoaderPass.cpp - LLVM Pass to load profile info ---------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +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 | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements a concrete implementation of profiling information that |
| 11 | // loads the information from a profile dump file. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 15 | #include "llvm/BasicBlock.h" |
| 16 | #include "llvm/InstrTypes.h" |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 17 | #include "llvm/Pass.h" |
Jeff Cohen | 534927d | 2005-01-08 22:01:16 +0000 | [diff] [blame] | 18 | #include "llvm/Analysis/Passes.h" |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/ProfileInfo.h" |
| 20 | #include "llvm/Analysis/ProfileInfoLoader.h" |
Reid Spencer | 551ccae | 2004-09-01 22:55:40 +0000 | [diff] [blame] | 21 | #include "llvm/Support/CommandLine.h" |
Bill Wendling | 6f81b51 | 2006-11-28 22:46:12 +0000 | [diff] [blame] | 22 | #include "llvm/Support/Streams.h" |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 23 | using namespace llvm; |
| 24 | |
| 25 | namespace { |
Chris Lattner | 945871d | 2004-02-11 18:21:05 +0000 | [diff] [blame] | 26 | cl::opt<std::string> |
| 27 | ProfileInfoFilename("profile-info-file", cl::init("llvmprof.out"), |
Chris Lattner | d6a556b | 2004-02-11 19:14:04 +0000 | [diff] [blame] | 28 | cl::value_desc("filename"), |
| 29 | cl::desc("Profile file loaded by -profile-loader")); |
Chris Lattner | 945871d | 2004-02-11 18:21:05 +0000 | [diff] [blame] | 30 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 31 | class LoaderPass : public ModulePass, public ProfileInfo { |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 32 | std::string Filename; |
| 33 | public: |
Chris Lattner | 945871d | 2004-02-11 18:21:05 +0000 | [diff] [blame] | 34 | LoaderPass(const std::string &filename = "") |
| 35 | : Filename(filename) { |
| 36 | if (filename.empty()) Filename = ProfileInfoFilename; |
| 37 | } |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 38 | |
| 39 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 40 | AU.setPreservesAll(); |
| 41 | } |
| 42 | |
| 43 | virtual const char *getPassName() const { |
| 44 | return "Profiling information loader"; |
| 45 | } |
| 46 | |
| 47 | /// run - Load the profile information from the specified file. |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 48 | virtual bool runOnModule(Module &M); |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 49 | }; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 50 | |
Chris Lattner | 7f8897f | 2006-08-27 22:42:52 +0000 | [diff] [blame] | 51 | RegisterPass<LoaderPass> |
Chris Lattner | 3dd965c | 2006-08-21 17:20:01 +0000 | [diff] [blame] | 52 | X("profile-loader", "Load profile information from llvmprof.out"); |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 53 | |
Chris Lattner | a537017 | 2006-08-28 00:42:29 +0000 | [diff] [blame] | 54 | RegisterAnalysisGroup<ProfileInfo> Y(X); |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 55 | } // End of anonymous namespace |
| 56 | |
Jeff Cohen | 6e400f7 | 2005-01-10 03:56:27 +0000 | [diff] [blame] | 57 | ModulePass *llvm::createProfileLoaderPass() { return new LoaderPass(); } |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 58 | |
| 59 | /// createProfileLoaderPass - This function returns a Pass that loads the |
| 60 | /// profiling information for the module from the specified filename, making it |
| 61 | /// available to the optimizers. |
| 62 | Pass *llvm::createProfileLoaderPass(const std::string &Filename) { |
| 63 | return new LoaderPass(Filename); |
| 64 | } |
| 65 | |
Chris Lattner | b12914b | 2004-09-20 04:48:05 +0000 | [diff] [blame] | 66 | bool LoaderPass::runOnModule(Module &M) { |
Chris Lattner | 62e84f3 | 2004-03-08 21:30:35 +0000 | [diff] [blame] | 67 | ProfileInfoLoader PIL("profile-loader", Filename, M); |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 68 | EdgeCounts.clear(); |
| 69 | bool PrintedWarning = false; |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 70 | |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 71 | std::vector<std::pair<ProfileInfoLoader::Edge, unsigned> > ECs; |
| 72 | PIL.getEdgeCounts(ECs); |
| 73 | for (unsigned i = 0, e = ECs.size(); i != e; ++i) { |
| 74 | BasicBlock *BB = ECs[i].first.first; |
| 75 | unsigned SuccNum = ECs[i].first.second; |
| 76 | TerminatorInst *TI = BB->getTerminator(); |
| 77 | if (SuccNum >= TI->getNumSuccessors()) { |
| 78 | if (!PrintedWarning) { |
Bill Wendling | e815619 | 2006-12-07 01:30:32 +0000 | [diff] [blame^] | 79 | cerr << "WARNING: profile information is inconsistent with " |
| 80 | << "the current program!\n"; |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 81 | PrintedWarning = true; |
| 82 | } |
| 83 | } else { |
| 84 | EdgeCounts[std::make_pair(BB, TI->getSuccessor(SuccNum))]+= ECs[i].second; |
| 85 | } |
Chris Lattner | 945871d | 2004-02-11 18:21:05 +0000 | [diff] [blame] | 86 | } |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 87 | |
Chris Lattner | 927fec3 | 2004-02-11 06:10:05 +0000 | [diff] [blame] | 88 | return false; |
| 89 | } |