blob: fdbf03cc34d0068e0a14f02e1a68e06da7a332c0 [file] [log] [blame]
Chris Lattner171de652004-02-10 22:11:42 +00001//===- ProfileInfo.cpp - Profile Info Interface ---------------------------===//
Misha Brukman2b37d7c2005-04-21 21:13:18 +00002//
Chris Lattner171de652004-02-10 22:11:42 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman2b37d7c2005-04-21 21:13:18 +00007//
Chris Lattner171de652004-02-10 22:11:42 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the abstract ProfileInfo interface, and the default
11// "no profile" implementation.
12//
13//===----------------------------------------------------------------------===//
14
Jeff Cohen534927d2005-01-08 22:01:16 +000015#include "llvm/Analysis/Passes.h"
Chris Lattner171de652004-02-10 22:11:42 +000016#include "llvm/Analysis/ProfileInfo.h"
17#include "llvm/Pass.h"
Chris Lattner96ab5ca2004-03-08 22:04:08 +000018#include "llvm/Support/CFG.h"
Reid Spencerd7d83db2007-02-05 23:42:17 +000019#include "llvm/Support/Compiler.h"
Chris Lattner96ab5ca2004-03-08 22:04:08 +000020#include <set>
Chris Lattner171de652004-02-10 22:11:42 +000021using namespace llvm;
22
Chris Lattnerecefc962004-02-11 06:10:18 +000023// Register the ProfileInfo interface, providing a nice name to refer to.
Dan Gohman844731a2008-05-13 00:00:25 +000024static RegisterAnalysisGroup<ProfileInfo> Z("Profile Information");
Devang Patel19974732007-05-03 01:11:54 +000025char ProfileInfo::ID = 0;
Chris Lattner171de652004-02-10 22:11:42 +000026
27ProfileInfo::~ProfileInfo() {}
28
Andreas Neustifter96135b62009-08-24 21:37:48 +000029const double ProfileInfo::MissingValue = -1;
30
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000031double ProfileInfo::getExecutionCount(const BasicBlock *BB) {
32 std::map<const Function*, BlockCounts>::iterator J =
33 BlockInformation.find(BB->getParent());
34 if (J != BlockInformation.end()) {
35 BlockCounts::iterator I = J->second.find(BB);
36 if (I != J->second.end())
37 return I->second;
38 }
Daniel Dunbarc9008c52009-08-05 21:51:16 +000039
Daniel Dunbar858cb8a2009-07-14 06:58:59 +000040 pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
Chris Lattner96ab5ca2004-03-08 22:04:08 +000041
42 // Are there zero predecessors of this block?
43 if (PI == PE) {
44 // If this is the entry block, look for the Null -> Entry edge.
Dan Gohmanecb7a772007-03-22 16:38:57 +000045 if (BB == &BB->getParent()->getEntryBlock())
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000046 return getEdgeWeight(getEdge(0, BB));
Chris Lattner96ab5ca2004-03-08 22:04:08 +000047 else
48 return 0; // Otherwise, this is a dead block.
49 }
50
51 // Otherwise, if there are predecessors, the execution count of this block is
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000052 // the sum of the edge frequencies from the incoming edges.
Daniel Dunbar858cb8a2009-07-14 06:58:59 +000053 std::set<const BasicBlock*> ProcessedPreds;
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000054 double Count = 0;
Chris Lattner96ab5ca2004-03-08 22:04:08 +000055 for (; PI != PE; ++PI)
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000056 if (ProcessedPreds.insert(*PI).second) {
57 double w = getEdgeWeight(getEdge(*PI, BB));
58 if (w == MissingValue) {
Andreas Neustifter0a324aa2009-08-19 05:44:39 +000059 Count = MissingValue;
60 break;
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000061 }
62 Count += w;
63 }
64
Andreas Neustifter96135b62009-08-24 21:37:48 +000065 if (Count != MissingValue) BlockInformation[BB->getParent()][BB] = Count;
Chris Lattner96ab5ca2004-03-08 22:04:08 +000066 return Count;
67}
68
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000069double ProfileInfo::getExecutionCount(const Function *F) {
70 std::map<const Function*, double>::iterator J =
71 FunctionInformation.find(F);
72 if (J != FunctionInformation.end())
73 return J->second;
Daniel Dunbarc9008c52009-08-05 21:51:16 +000074
Andreas Neustifter3772fb12009-08-26 13:33:09 +000075 // isDeclaration() is checked here and not at start of function to allow
76 // functions without a body still to have a execution count.
77 if (F->isDeclaration()) return MissingValue;
78
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000079 double Count = getExecutionCount(&F->getEntryBlock());
Andreas Neustifter96135b62009-08-24 21:37:48 +000080 if (Count != MissingValue) FunctionInformation[F] = Count;
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000081 return Count;
Daniel Dunbar858cb8a2009-07-14 06:58:59 +000082}
Chris Lattner96ab5ca2004-03-08 22:04:08 +000083
Chris Lattner171de652004-02-10 22:11:42 +000084
85//===----------------------------------------------------------------------===//
86// NoProfile ProfileInfo implementation
87//
88
89namespace {
Reid Spencerd7d83db2007-02-05 23:42:17 +000090 struct VISIBILITY_HIDDEN NoProfileInfo
Devang Patel794fd752007-05-01 21:15:47 +000091 : public ImmutablePass, public ProfileInfo {
Devang Patel19974732007-05-03 01:11:54 +000092 static char ID; // Class identification, replacement for typeinfo
Dan Gohmanae73dc12008-09-04 17:05:41 +000093 NoProfileInfo() : ImmutablePass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000094 };
Chris Lattner171de652004-02-10 22:11:42 +000095} // End of anonymous namespace
Jeff Cohen534927d2005-01-08 22:01:16 +000096
Dan Gohman844731a2008-05-13 00:00:25 +000097char NoProfileInfo::ID = 0;
98// Register this pass...
99static RegisterPass<NoProfileInfo>
100X("no-profile", "No Profile Information", false, true);
101
102// Declare that we implement the ProfileInfo interface
103static RegisterAnalysisGroup<ProfileInfo, true> Y(X);
104
Jeff Cohen534927d2005-01-08 22:01:16 +0000105ImmutablePass *llvm::createNoProfileInfoPass() { return new NoProfileInfo(); }