blob: a7fc4c49d5ee2b36ffc386269c98bcd0b17e6dbd [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) {
Daniel Dunbarc43782c2009-08-08 18:59:03 +000070 if (F->isDeclaration()) return MissingValue;
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000071 std::map<const Function*, double>::iterator J =
72 FunctionInformation.find(F);
73 if (J != FunctionInformation.end())
74 return J->second;
Daniel Dunbarc9008c52009-08-05 21:51:16 +000075
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000076 double Count = getExecutionCount(&F->getEntryBlock());
Andreas Neustifter96135b62009-08-24 21:37:48 +000077 if (Count != MissingValue) FunctionInformation[F] = Count;
Daniel Dunbarcaaa4932009-08-08 17:43:09 +000078 return Count;
Daniel Dunbar858cb8a2009-07-14 06:58:59 +000079}
Chris Lattner96ab5ca2004-03-08 22:04:08 +000080
Chris Lattner171de652004-02-10 22:11:42 +000081
82//===----------------------------------------------------------------------===//
83// NoProfile ProfileInfo implementation
84//
85
86namespace {
Reid Spencerd7d83db2007-02-05 23:42:17 +000087 struct VISIBILITY_HIDDEN NoProfileInfo
Devang Patel794fd752007-05-01 21:15:47 +000088 : public ImmutablePass, public ProfileInfo {
Devang Patel19974732007-05-03 01:11:54 +000089 static char ID; // Class identification, replacement for typeinfo
Dan Gohmanae73dc12008-09-04 17:05:41 +000090 NoProfileInfo() : ImmutablePass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +000091 };
Chris Lattner171de652004-02-10 22:11:42 +000092} // End of anonymous namespace
Jeff Cohen534927d2005-01-08 22:01:16 +000093
Dan Gohman844731a2008-05-13 00:00:25 +000094char NoProfileInfo::ID = 0;
95// Register this pass...
96static RegisterPass<NoProfileInfo>
97X("no-profile", "No Profile Information", false, true);
98
99// Declare that we implement the ProfileInfo interface
100static RegisterAnalysisGroup<ProfileInfo, true> Y(X);
101
Jeff Cohen534927d2005-01-08 22:01:16 +0000102ImmutablePass *llvm::createNoProfileInfoPass() { return new NoProfileInfo(); }