Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 1 | //===- ProfileInfo.cpp - Profile Info Interface ---------------------------===// |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 2b37d7c | 2005-04-21 21:13:18 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements the abstract ProfileInfo interface, and the default |
| 11 | // "no profile" implementation. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Jeff Cohen | 534927d | 2005-01-08 22:01:16 +0000 | [diff] [blame] | 15 | #include "llvm/Analysis/Passes.h" |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 16 | #include "llvm/Analysis/ProfileInfo.h" |
| 17 | #include "llvm/Pass.h" |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CFG.h" |
Reid Spencer | d7d83db | 2007-02-05 23:42:17 +0000 | [diff] [blame] | 19 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 20 | #include <set> |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 21 | using namespace llvm; |
| 22 | |
Chris Lattner | ecefc96 | 2004-02-11 06:10:18 +0000 | [diff] [blame] | 23 | // Register the ProfileInfo interface, providing a nice name to refer to. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 24 | static RegisterAnalysisGroup<ProfileInfo> Z("Profile Information"); |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 25 | char ProfileInfo::ID = 0; |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 26 | |
| 27 | ProfileInfo::~ProfileInfo() {} |
| 28 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 29 | unsigned ProfileInfo::getExecutionCount(const BasicBlock *BB) const { |
Daniel Dunbar | c9008c5 | 2009-08-05 21:51:16 +0000 | [diff] [blame] | 30 | if (BlockCounts.find(BB) != BlockCounts.end()) |
| 31 | return BlockCounts.find(BB)->second; |
| 32 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 33 | pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB); |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 34 | |
| 35 | // Are there zero predecessors of this block? |
| 36 | if (PI == PE) { |
| 37 | // If this is the entry block, look for the Null -> Entry edge. |
Dan Gohman | ecb7a77 | 2007-03-22 16:38:57 +0000 | [diff] [blame] | 38 | if (BB == &BB->getParent()->getEntryBlock()) |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 39 | return getEdgeWeight(0, BB); |
| 40 | else |
| 41 | return 0; // Otherwise, this is a dead block. |
| 42 | } |
| 43 | |
| 44 | // Otherwise, if there are predecessors, the execution count of this block is |
| 45 | // the sum of the edge frequencies from the incoming edges. Note that if |
| 46 | // there are multiple edges from a predecessor to this block that we don't |
| 47 | // want to count its weight multiple times. For this reason, we keep track of |
| 48 | // the predecessors we've seen and only count them if we haven't run into them |
| 49 | // yet. |
| 50 | // |
| 51 | // We don't want to create an std::set unless we are dealing with a block that |
| 52 | // has a LARGE number of in-edges. Handle the common case of having only a |
| 53 | // few in-edges with special code. |
| 54 | // |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 55 | const BasicBlock *FirstPred = *PI; |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 56 | unsigned Count = getEdgeWeight(FirstPred, BB); |
| 57 | ++PI; |
| 58 | if (PI == PE) return Count; // Quick exit for single predecessor blocks |
| 59 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 60 | const BasicBlock *SecondPred = *PI; |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 61 | if (SecondPred != FirstPred) Count += getEdgeWeight(SecondPred, BB); |
| 62 | ++PI; |
| 63 | if (PI == PE) return Count; // Quick exit for two predecessor blocks |
| 64 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 65 | const BasicBlock *ThirdPred = *PI; |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 66 | if (ThirdPred != FirstPred && ThirdPred != SecondPred) |
| 67 | Count += getEdgeWeight(ThirdPred, BB); |
| 68 | ++PI; |
| 69 | if (PI == PE) return Count; // Quick exit for three predecessor blocks |
| 70 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 71 | std::set<const BasicBlock*> ProcessedPreds; |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 72 | ProcessedPreds.insert(FirstPred); |
| 73 | ProcessedPreds.insert(SecondPred); |
| 74 | ProcessedPreds.insert(ThirdPred); |
| 75 | for (; PI != PE; ++PI) |
| 76 | if (ProcessedPreds.insert(*PI).second) |
| 77 | Count += getEdgeWeight(*PI, BB); |
| 78 | return Count; |
| 79 | } |
| 80 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 81 | unsigned ProfileInfo::getExecutionCount(const Function *F) const { |
Daniel Dunbar | c9008c5 | 2009-08-05 21:51:16 +0000 | [diff] [blame] | 82 | if (FunctionCounts.find(F) != FunctionCounts.end()) |
| 83 | return FunctionCounts.find(F)->second; |
| 84 | |
Daniel Dunbar | 858cb8a | 2009-07-14 06:58:59 +0000 | [diff] [blame] | 85 | return getExecutionCount(&F->getEntryBlock()); |
| 86 | } |
Chris Lattner | 96ab5ca | 2004-03-08 22:04:08 +0000 | [diff] [blame] | 87 | |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 88 | |
| 89 | //===----------------------------------------------------------------------===// |
| 90 | // NoProfile ProfileInfo implementation |
| 91 | // |
| 92 | |
| 93 | namespace { |
Reid Spencer | d7d83db | 2007-02-05 23:42:17 +0000 | [diff] [blame] | 94 | struct VISIBILITY_HIDDEN NoProfileInfo |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 95 | : public ImmutablePass, public ProfileInfo { |
Devang Patel | 1997473 | 2007-05-03 01:11:54 +0000 | [diff] [blame] | 96 | static char ID; // Class identification, replacement for typeinfo |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 97 | NoProfileInfo() : ImmutablePass(&ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 98 | }; |
Chris Lattner | 171de65 | 2004-02-10 22:11:42 +0000 | [diff] [blame] | 99 | } // End of anonymous namespace |
Jeff Cohen | 534927d | 2005-01-08 22:01:16 +0000 | [diff] [blame] | 100 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 101 | char NoProfileInfo::ID = 0; |
| 102 | // Register this pass... |
| 103 | static RegisterPass<NoProfileInfo> |
| 104 | X("no-profile", "No Profile Information", false, true); |
| 105 | |
| 106 | // Declare that we implement the ProfileInfo interface |
| 107 | static RegisterAnalysisGroup<ProfileInfo, true> Y(X); |
| 108 | |
Jeff Cohen | 534927d | 2005-01-08 22:01:16 +0000 | [diff] [blame] | 109 | ImmutablePass *llvm::createNoProfileInfoPass() { return new NoProfileInfo(); } |