mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-17 04:24:00 +00:00
More ProfileInfo improvements.
- Part of optimal static profiling patch sequence by Andreas Neustifter. - Store edge, block, and function information separately for each functions (instead of in one giant map). - Return frequencies as double instead of int, and use a sentinel value for missing information. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -14,56 +14,78 @@
|
|||||||
//
|
//
|
||||||
// Note that to be useful, all profile-based optimizations should preserve
|
// Note that to be useful, all profile-based optimizations should preserve
|
||||||
// ProfileInfo, which requires that they notify it when changes to the CFG are
|
// ProfileInfo, which requires that they notify it when changes to the CFG are
|
||||||
// made.
|
// made. (This is not implemented yet.)
|
||||||
//
|
//
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#ifndef LLVM_ANALYSIS_PROFILEINFO_H
|
#ifndef LLVM_ANALYSIS_PROFILEINFO_H
|
||||||
#define LLVM_ANALYSIS_PROFILEINFO_H
|
#define LLVM_ANALYSIS_PROFILEINFO_H
|
||||||
|
|
||||||
|
#include "llvm/BasicBlock.h"
|
||||||
|
#include <cassert>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
class BasicBlock;
|
|
||||||
class Function;
|
class Function;
|
||||||
class Pass;
|
class Pass;
|
||||||
|
|
||||||
/// ProfileInfo Class - This class holds and maintains edge profiling
|
/// ProfileInfo Class - This class holds and maintains profiling
|
||||||
/// information for some unit of code.
|
/// information for some unit of code.
|
||||||
class ProfileInfo {
|
class ProfileInfo {
|
||||||
public:
|
public:
|
||||||
// Types for handling profiling information.
|
// Types for handling profiling information.
|
||||||
typedef std::pair<const BasicBlock*, const BasicBlock*> Edge;
|
typedef std::pair<const BasicBlock*, const BasicBlock*> Edge;
|
||||||
|
typedef std::map<Edge, double> EdgeCounts;
|
||||||
|
typedef std::map<const BasicBlock*, double> BlockCounts;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// EdgeCounts - Count the number of times a transition between two blocks is
|
// EdgeCounts - Count the number of times a transition between two blocks is
|
||||||
// executed. As a special case, we also hold an edge from the null
|
// executed. As a special case, we also hold an edge from the null
|
||||||
// BasicBlock to the entry block to indicate how many times the function was
|
// BasicBlock to the entry block to indicate how many times the function was
|
||||||
// entered.
|
// entered.
|
||||||
std::map<Edge, unsigned> EdgeCounts;
|
std::map<const Function*, EdgeCounts> EdgeInformation;
|
||||||
|
|
||||||
// BlockCounts - Count the number of times a block is executed.
|
// BlockCounts - Count the number of times a block is executed.
|
||||||
std::map<const BasicBlock*, unsigned> BlockCounts;
|
std::map<const Function*, BlockCounts> BlockInformation;
|
||||||
|
|
||||||
// FunctionCounts - Count the number of times a function is executed.
|
// FunctionCounts - Count the number of times a function is executed.
|
||||||
std::map<const Function*, unsigned> FunctionCounts;
|
std::map<const Function*, double> FunctionInformation;
|
||||||
public:
|
public:
|
||||||
static char ID; // Class identification, replacement for typeinfo
|
static char ID; // Class identification, replacement for typeinfo
|
||||||
virtual ~ProfileInfo(); // We want to be subclassed
|
virtual ~ProfileInfo(); // We want to be subclassed
|
||||||
|
|
||||||
|
// MissingValue - The value that is returned for execution counts in case
|
||||||
|
// no value is available.
|
||||||
|
static const int MissingValue = -1;
|
||||||
|
|
||||||
|
// getFunction() - Returns the Function for an Edge, checking for validity.
|
||||||
|
static const Function* getFunction(Edge e) {
|
||||||
|
assert(e.second && "Invalid ProfileInfo::Edge");
|
||||||
|
return e.second->getParent();
|
||||||
|
}
|
||||||
|
|
||||||
|
// getEdge() - Creates an Edge from two BasicBlocks.
|
||||||
|
static Edge getEdge(const BasicBlock* Src, const BasicBlock* Dest) {
|
||||||
|
return std::make_pair(Src,Dest);
|
||||||
|
}
|
||||||
|
|
||||||
//===------------------------------------------------------------------===//
|
//===------------------------------------------------------------------===//
|
||||||
/// Profile Information Queries
|
/// Profile Information Queries
|
||||||
///
|
///
|
||||||
unsigned getExecutionCount(const Function *F) const;
|
double getExecutionCount(const Function *F);
|
||||||
|
|
||||||
unsigned getExecutionCount(const BasicBlock *BB) const;
|
double getExecutionCount(const BasicBlock *BB);
|
||||||
|
|
||||||
unsigned getEdgeWeight(const BasicBlock *Src,
|
double getEdgeWeight(Edge e) const {
|
||||||
const BasicBlock *Dest) const {
|
std::map<const Function*, EdgeCounts>::const_iterator J =
|
||||||
std::map<Edge, unsigned>::const_iterator I =
|
EdgeInformation.find(getFunction(e));
|
||||||
EdgeCounts.find(std::make_pair(Src, Dest));
|
if (J == EdgeInformation.end()) return MissingValue;
|
||||||
return I != EdgeCounts.end() ? I->second : 0;
|
|
||||||
|
EdgeCounts::const_iterator I = J->second.find(e);
|
||||||
|
if (I == J->second.end()) return MissingValue;
|
||||||
|
|
||||||
|
return I->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
//===------------------------------------------------------------------===//
|
//===------------------------------------------------------------------===//
|
||||||
|
@ -26,9 +26,14 @@ char ProfileInfo::ID = 0;
|
|||||||
|
|
||||||
ProfileInfo::~ProfileInfo() {}
|
ProfileInfo::~ProfileInfo() {}
|
||||||
|
|
||||||
unsigned ProfileInfo::getExecutionCount(const BasicBlock *BB) const {
|
double ProfileInfo::getExecutionCount(const BasicBlock *BB) {
|
||||||
if (BlockCounts.find(BB) != BlockCounts.end())
|
std::map<const Function*, BlockCounts>::iterator J =
|
||||||
return BlockCounts.find(BB)->second;
|
BlockInformation.find(BB->getParent());
|
||||||
|
if (J != BlockInformation.end()) {
|
||||||
|
BlockCounts::iterator I = J->second.find(BB);
|
||||||
|
if (I != J->second.end())
|
||||||
|
return I->second;
|
||||||
|
}
|
||||||
|
|
||||||
pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
|
pred_const_iterator PI = pred_begin(BB), PE = pred_end(BB);
|
||||||
|
|
||||||
@ -36,53 +41,37 @@ unsigned ProfileInfo::getExecutionCount(const BasicBlock *BB) const {
|
|||||||
if (PI == PE) {
|
if (PI == PE) {
|
||||||
// If this is the entry block, look for the Null -> Entry edge.
|
// If this is the entry block, look for the Null -> Entry edge.
|
||||||
if (BB == &BB->getParent()->getEntryBlock())
|
if (BB == &BB->getParent()->getEntryBlock())
|
||||||
return getEdgeWeight(0, BB);
|
return getEdgeWeight(getEdge(0, BB));
|
||||||
else
|
else
|
||||||
return 0; // Otherwise, this is a dead block.
|
return 0; // Otherwise, this is a dead block.
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise, if there are predecessors, the execution count of this block is
|
// Otherwise, if there are predecessors, the execution count of this block is
|
||||||
// the sum of the edge frequencies from the incoming edges. Note that if
|
// the sum of the edge frequencies from the incoming edges.
|
||||||
// there are multiple edges from a predecessor to this block that we don't
|
|
||||||
// want to count its weight multiple times. For this reason, we keep track of
|
|
||||||
// the predecessors we've seen and only count them if we haven't run into them
|
|
||||||
// yet.
|
|
||||||
//
|
|
||||||
// We don't want to create an std::set unless we are dealing with a block that
|
|
||||||
// has a LARGE number of in-edges. Handle the common case of having only a
|
|
||||||
// few in-edges with special code.
|
|
||||||
//
|
|
||||||
const BasicBlock *FirstPred = *PI;
|
|
||||||
unsigned Count = getEdgeWeight(FirstPred, BB);
|
|
||||||
++PI;
|
|
||||||
if (PI == PE) return Count; // Quick exit for single predecessor blocks
|
|
||||||
|
|
||||||
const BasicBlock *SecondPred = *PI;
|
|
||||||
if (SecondPred != FirstPred) Count += getEdgeWeight(SecondPred, BB);
|
|
||||||
++PI;
|
|
||||||
if (PI == PE) return Count; // Quick exit for two predecessor blocks
|
|
||||||
|
|
||||||
const BasicBlock *ThirdPred = *PI;
|
|
||||||
if (ThirdPred != FirstPred && ThirdPred != SecondPred)
|
|
||||||
Count += getEdgeWeight(ThirdPred, BB);
|
|
||||||
++PI;
|
|
||||||
if (PI == PE) return Count; // Quick exit for three predecessor blocks
|
|
||||||
|
|
||||||
std::set<const BasicBlock*> ProcessedPreds;
|
std::set<const BasicBlock*> ProcessedPreds;
|
||||||
ProcessedPreds.insert(FirstPred);
|
double Count = 0;
|
||||||
ProcessedPreds.insert(SecondPred);
|
|
||||||
ProcessedPreds.insert(ThirdPred);
|
|
||||||
for (; PI != PE; ++PI)
|
for (; PI != PE; ++PI)
|
||||||
if (ProcessedPreds.insert(*PI).second)
|
if (ProcessedPreds.insert(*PI).second) {
|
||||||
Count += getEdgeWeight(*PI, BB);
|
double w = getEdgeWeight(getEdge(*PI, BB));
|
||||||
|
if (w == MissingValue) {
|
||||||
|
Count = MissingValue; break;
|
||||||
|
}
|
||||||
|
Count += w;
|
||||||
|
}
|
||||||
|
|
||||||
|
BlockInformation[BB->getParent()][BB] = Count;
|
||||||
return Count;
|
return Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned ProfileInfo::getExecutionCount(const Function *F) const {
|
double ProfileInfo::getExecutionCount(const Function *F) {
|
||||||
if (FunctionCounts.find(F) != FunctionCounts.end())
|
std::map<const Function*, double>::iterator J =
|
||||||
return FunctionCounts.find(F)->second;
|
FunctionInformation.find(F);
|
||||||
|
if (J != FunctionInformation.end())
|
||||||
|
return J->second;
|
||||||
|
|
||||||
return getExecutionCount(&F->getEntryBlock());
|
double Count = getExecutionCount(&F->getEntryBlock());
|
||||||
|
FunctionInformation[F] = Count;
|
||||||
|
return Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -69,35 +69,64 @@ Pass *llvm::createProfileLoaderPass(const std::string &Filename) {
|
|||||||
|
|
||||||
bool LoaderPass::runOnModule(Module &M) {
|
bool LoaderPass::runOnModule(Module &M) {
|
||||||
ProfileInfoLoader PIL("profile-loader", Filename, M);
|
ProfileInfoLoader PIL("profile-loader", Filename, M);
|
||||||
EdgeCounts.clear();
|
|
||||||
|
|
||||||
|
EdgeInformation.clear();
|
||||||
std::vector<unsigned> ECs = PIL.getRawEdgeCounts();
|
std::vector<unsigned> ECs = PIL.getRawEdgeCounts();
|
||||||
std::vector<unsigned> BCs = PIL.getRawBlockCounts();
|
if (ECs.size() > 0) {
|
||||||
std::vector<unsigned> FCs = PIL.getRawFunctionCounts();
|
|
||||||
// Instrument all of the edges...
|
|
||||||
unsigned ei = 0;
|
unsigned ei = 0;
|
||||||
unsigned bi = 0;
|
|
||||||
unsigned fi = 0;
|
|
||||||
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
||||||
if (F->isDeclaration()) continue;
|
if (F->isDeclaration()) continue;
|
||||||
if (fi<FCs.size()) FunctionCounts[F] = FCs[fi++];
|
if (ei < ECs.size())
|
||||||
|
EdgeInformation[F][ProfileInfo::getEdge(0,&F->getEntryBlock())] +=
|
||||||
|
ECs[ei++];
|
||||||
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
||||||
if (bi<BCs.size()) BlockCounts[BB] = BCs[bi++];
|
|
||||||
// Okay, we have to add a counter of each outgoing edge. If the
|
// Okay, we have to add a counter of each outgoing edge. If the
|
||||||
// outgoing edge is not critical don't split it, just insert the counter
|
// outgoing edge is not critical don't split it, just insert the counter
|
||||||
// in the source or destination of the edge.
|
// in the source or destination of the edge.
|
||||||
TerminatorInst *TI = BB->getTerminator();
|
TerminatorInst *TI = BB->getTerminator();
|
||||||
for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
|
for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
|
||||||
if (ei < ECs.size())
|
if (ei < ECs.size())
|
||||||
EdgeCounts[std::make_pair(BB, TI->getSuccessor(s))]+= ECs[ei++];
|
EdgeInformation[F][ProfileInfo::getEdge(BB, TI->getSuccessor(s))] +=
|
||||||
|
ECs[ei++];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ei != ECs.size()) {
|
if (ei != ECs.size()) {
|
||||||
cerr << "WARNING: profile information is inconsistent with "
|
cerr << "WARNING: profile information is inconsistent with "
|
||||||
<< "the current program!\n";
|
<< "the current program!\n";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
BlockInformation.clear();
|
||||||
|
std::vector<unsigned> BCs = PIL.getRawBlockCounts();
|
||||||
|
if (BCs.size() > 0) {
|
||||||
|
unsigned bi = 0;
|
||||||
|
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
||||||
|
if (F->isDeclaration()) continue;
|
||||||
|
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|
||||||
|
if (bi < BCs.size())
|
||||||
|
BlockInformation[F][BB] = BCs[bi++];
|
||||||
|
}
|
||||||
|
if (bi != BCs.size()) {
|
||||||
|
cerr << "WARNING: profile information is inconsistent with "
|
||||||
|
<< "the current program!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
FunctionInformation.clear();
|
||||||
|
std::vector<unsigned> FCs = PIL.getRawFunctionCounts();
|
||||||
|
if (FCs.size() > 0) {
|
||||||
|
unsigned fi = 0;
|
||||||
|
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
||||||
|
if (F->isDeclaration()) continue;
|
||||||
|
if (fi < FCs.size())
|
||||||
|
FunctionInformation[F] = FCs[fi++];
|
||||||
|
}
|
||||||
|
if (fi != FCs.size()) {
|
||||||
|
cerr << "WARNING: profile information is inconsistent with "
|
||||||
|
<< "the current program!\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -106,6 +106,7 @@ bool BlockProfiler::runOnModule(Module &M) {
|
|||||||
|
|
||||||
unsigned NumBlocks = 0;
|
unsigned NumBlocks = 0;
|
||||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
||||||
|
if (!I->isDeclaration())
|
||||||
NumBlocks += I->size();
|
NumBlocks += I->size();
|
||||||
|
|
||||||
const Type *ATy = ArrayType::get(Type::Int32Ty, NumBlocks);
|
const Type *ATy = ArrayType::get(Type::Int32Ty, NumBlocks);
|
||||||
@ -115,10 +116,12 @@ bool BlockProfiler::runOnModule(Module &M) {
|
|||||||
|
|
||||||
// Instrument all of the blocks...
|
// Instrument all of the blocks...
|
||||||
unsigned i = 0;
|
unsigned i = 0;
|
||||||
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
|
for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I) {
|
||||||
|
if (I->isDeclaration()) continue;
|
||||||
for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
|
for (Function::iterator BB = I->begin(), E = I->end(); BB != E; ++BB)
|
||||||
// Insert counter at the start of the block
|
// Insert counter at the start of the block
|
||||||
IncrementCounterInBlock(BB, i++, Counters);
|
IncrementCounterInBlock(BB, i++, Counters);
|
||||||
|
}
|
||||||
|
|
||||||
// Add the initialization call to main.
|
// Add the initialization call to main.
|
||||||
InsertProfilingInitCall(Main, "llvm_start_block_profiling", Counters);
|
InsertProfilingInitCall(Main, "llvm_start_block_profiling", Counters);
|
||||||
|
@ -55,7 +55,10 @@ bool EdgeProfiler::runOnModule(Module &M) {
|
|||||||
|
|
||||||
std::set<BasicBlock*> BlocksToInstrument;
|
std::set<BasicBlock*> BlocksToInstrument;
|
||||||
unsigned NumEdges = 0;
|
unsigned NumEdges = 0;
|
||||||
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
|
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
||||||
|
if (F->isDeclaration()) continue;
|
||||||
|
// Reserve space for (0,entry) edge.
|
||||||
|
++NumEdges;
|
||||||
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB) {
|
||||||
// Keep track of which blocks need to be instrumented. We don't want to
|
// Keep track of which blocks need to be instrumented. We don't want to
|
||||||
// instrument blocks that are added as the result of breaking critical
|
// instrument blocks that are added as the result of breaking critical
|
||||||
@ -63,6 +66,7 @@ bool EdgeProfiler::runOnModule(Module &M) {
|
|||||||
BlocksToInstrument.insert(BB);
|
BlocksToInstrument.insert(BB);
|
||||||
NumEdges += BB->getTerminator()->getNumSuccessors();
|
NumEdges += BB->getTerminator()->getNumSuccessors();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const Type *ATy = ArrayType::get(Type::Int32Ty, NumEdges);
|
const Type *ATy = ArrayType::get(Type::Int32Ty, NumEdges);
|
||||||
GlobalVariable *Counters =
|
GlobalVariable *Counters =
|
||||||
@ -71,7 +75,10 @@ bool EdgeProfiler::runOnModule(Module &M) {
|
|||||||
|
|
||||||
// Instrument all of the edges...
|
// Instrument all of the edges...
|
||||||
unsigned i = 0;
|
unsigned i = 0;
|
||||||
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
|
for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
|
||||||
|
if (F->isDeclaration()) continue;
|
||||||
|
// Create counter for (0,entry) edge.
|
||||||
|
IncrementCounterInBlock(&F->getEntryBlock(), i++, Counters);
|
||||||
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|
for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
|
||||||
if (BlocksToInstrument.count(BB)) { // Don't instrument inserted blocks
|
if (BlocksToInstrument.count(BB)) { // Don't instrument inserted blocks
|
||||||
// Okay, we have to add a counter of each outgoing edge. If the
|
// Okay, we have to add a counter of each outgoing edge. If the
|
||||||
@ -94,6 +101,7 @@ bool EdgeProfiler::runOnModule(Module &M) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Add the initialization call to main.
|
// Add the initialization call to main.
|
||||||
InsertProfilingInitCall(Main, "llvm_start_edge_profiling", Counters);
|
InsertProfilingInitCall(Main, "llvm_start_edge_profiling", Counters);
|
||||||
|
@ -127,13 +127,13 @@ void BlockPlacement::PlaceBlocks(BasicBlock *BB) {
|
|||||||
/*empty*/;
|
/*empty*/;
|
||||||
if (SI == E) return; // No more successors to place.
|
if (SI == E) return; // No more successors to place.
|
||||||
|
|
||||||
unsigned MaxExecutionCount = PI->getExecutionCount(*SI);
|
double MaxExecutionCount = PI->getExecutionCount(*SI);
|
||||||
BasicBlock *MaxSuccessor = *SI;
|
BasicBlock *MaxSuccessor = *SI;
|
||||||
|
|
||||||
// Scan for more frequently executed successors
|
// Scan for more frequently executed successors
|
||||||
for (; SI != E; ++SI)
|
for (; SI != E; ++SI)
|
||||||
if (!PlacedBlocks.count(*SI)) {
|
if (!PlacedBlocks.count(*SI)) {
|
||||||
unsigned Count = PI->getExecutionCount(*SI);
|
double Count = PI->getExecutionCount(*SI);
|
||||||
if (Count > MaxExecutionCount ||
|
if (Count > MaxExecutionCount ||
|
||||||
// Prefer to not disturb the code.
|
// Prefer to not disturb the code.
|
||||||
(Count == MaxExecutionCount && *SI == &*InsertPos)) {
|
(Count == MaxExecutionCount && *SI == &*InsertPos)) {
|
||||||
|
@ -66,6 +66,11 @@ struct PairSecondSortReverse
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static double ignoreMissing(double w) {
|
||||||
|
if (w == ProfileInfo::MissingValue) return 0;
|
||||||
|
return w;
|
||||||
|
}
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
class ProfileAnnotator : public AssemblyAnnotationWriter {
|
class ProfileAnnotator : public AssemblyAnnotationWriter {
|
||||||
ProfileInfo &PI;
|
ProfileInfo &PI;
|
||||||
@ -73,12 +78,20 @@ namespace {
|
|||||||
ProfileAnnotator(ProfileInfo& pi) : PI(pi) {}
|
ProfileAnnotator(ProfileInfo& pi) : PI(pi) {}
|
||||||
|
|
||||||
virtual void emitFunctionAnnot(const Function *F, raw_ostream &OS) {
|
virtual void emitFunctionAnnot(const Function *F, raw_ostream &OS) {
|
||||||
OS << ";;; %" << F->getName() << " called " << PI.getExecutionCount(F)
|
OS << ";;; %" << F->getName() << " called ";
|
||||||
<< " times.\n;;;\n";
|
double w = PI.getExecutionCount(F);
|
||||||
|
if (w == ProfileInfo::MissingValue)
|
||||||
|
OS << "(no value)";
|
||||||
|
else
|
||||||
|
OS << (unsigned)w;
|
||||||
|
OS << " times.\n;;;\n";
|
||||||
}
|
}
|
||||||
virtual void emitBasicBlockStartAnnot(const BasicBlock *BB,
|
virtual void emitBasicBlockStartAnnot(const BasicBlock *BB,
|
||||||
raw_ostream &OS) {
|
raw_ostream &OS) {
|
||||||
unsigned w = PI.getExecutionCount(BB);
|
double w = PI.getExecutionCount(BB);
|
||||||
|
if (w == ProfileInfo::MissingValue)
|
||||||
|
OS << "\t;;; (no value)\n";
|
||||||
|
else
|
||||||
if (w != 0)
|
if (w != 0)
|
||||||
OS << "\t;;; Basic block executed " << w << " times.\n";
|
OS << "\t;;; Basic block executed " << w << " times.\n";
|
||||||
else
|
else
|
||||||
@ -92,8 +105,8 @@ namespace {
|
|||||||
const TerminatorInst *TI = BB->getTerminator();
|
const TerminatorInst *TI = BB->getTerminator();
|
||||||
for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
|
for (unsigned s = 0, e = TI->getNumSuccessors(); s != e; ++s) {
|
||||||
BasicBlock* Succ = TI->getSuccessor(s);
|
BasicBlock* Succ = TI->getSuccessor(s);
|
||||||
SuccCounts.push_back(std::make_pair(std::make_pair(BB,Succ),
|
double w = ignoreMissing(PI.getEdgeWeight(std::make_pair(BB,Succ)));
|
||||||
PI.getEdgeWeight(BB,Succ)));
|
SuccCounts.push_back(std::make_pair(std::make_pair(BB,Succ), w));
|
||||||
}
|
}
|
||||||
if (!SuccCounts.empty()) {
|
if (!SuccCounts.empty()) {
|
||||||
OS << "\t;;; Out-edge counts:";
|
OS << "\t;;; Out-edge counts:";
|
||||||
@ -143,10 +156,12 @@ bool ProfileInfoPrinterPass::runOnModule(Module &M) {
|
|||||||
std::vector<std::pair<BasicBlock*, unsigned> > Counts;
|
std::vector<std::pair<BasicBlock*, unsigned> > Counts;
|
||||||
for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
|
for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
|
||||||
if (FI->isDeclaration()) continue;
|
if (FI->isDeclaration()) continue;
|
||||||
FunctionCounts.push_back(std::make_pair(FI,PI.getExecutionCount(FI)));
|
double w = ignoreMissing(PI.getExecutionCount(FI));
|
||||||
|
FunctionCounts.push_back(std::make_pair(FI,w));
|
||||||
for (Function::iterator BB = FI->begin(), BBE = FI->end();
|
for (Function::iterator BB = FI->begin(), BBE = FI->end();
|
||||||
BB != BBE; ++BB) {
|
BB != BBE; ++BB) {
|
||||||
Counts.push_back(std::make_pair(BB,PI.getExecutionCount(BB)));
|
double w = ignoreMissing(PI.getExecutionCount(BB));
|
||||||
|
Counts.push_back(std::make_pair(BB,w));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user