2004-02-10 23:11:42 +01:00
|
|
|
//===- ProfileInfo.cpp - Profile Info Interface ---------------------------===//
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2004-02-10 23:11:42 +01:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:13:18 +02:00
|
|
|
//
|
2004-02-10 23:11:42 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the abstract ProfileInfo interface, and the default
|
|
|
|
// "no profile" implementation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-12-03 10:30:12 +01:00
|
|
|
#define DEBUG_TYPE "profile-info"
|
2005-01-08 23:01:16 +01:00
|
|
|
#include "llvm/Analysis/Passes.h"
|
2004-02-10 23:11:42 +01:00
|
|
|
#include "llvm/Analysis/ProfileInfo.h"
|
2009-12-03 10:30:12 +01:00
|
|
|
#include "llvm/CodeGen/MachineBasicBlock.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2004-02-10 23:11:42 +01:00
|
|
|
#include "llvm/Pass.h"
|
2004-03-08 23:04:08 +01:00
|
|
|
#include "llvm/Support/CFG.h"
|
2009-12-03 10:30:12 +01:00
|
|
|
#include "llvm/ADT/SmallSet.h"
|
2004-03-08 23:04:08 +01:00
|
|
|
#include <set>
|
2009-12-03 10:30:12 +01:00
|
|
|
#include <queue>
|
|
|
|
#include <limits>
|
2004-02-10 23:11:42 +01:00
|
|
|
using namespace llvm;
|
|
|
|
|
2010-10-07 19:04:18 +02:00
|
|
|
namespace llvm {
|
|
|
|
template<> char ProfileInfoT<Function,BasicBlock>::ID = 0;
|
|
|
|
}
|
2010-10-07 00:23:20 +02:00
|
|
|
|
2004-02-11 07:10:18 +01:00
|
|
|
// Register the ProfileInfo interface, providing a nice name to refer to.
|
2010-10-13 23:49:58 +02:00
|
|
|
INITIALIZE_ANALYSIS_GROUP(ProfileInfo, "Profile Information", NoProfileInfo)
|
2009-12-03 10:30:12 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
template <>
|
|
|
|
ProfileInfoT<MachineFunction, MachineBasicBlock>::ProfileInfoT() {}
|
|
|
|
template <>
|
|
|
|
ProfileInfoT<MachineFunction, MachineBasicBlock>::~ProfileInfoT() {}
|
|
|
|
|
|
|
|
template <>
|
|
|
|
ProfileInfoT<Function, BasicBlock>::ProfileInfoT() {
|
|
|
|
MachineProfile = 0;
|
|
|
|
}
|
|
|
|
template <>
|
|
|
|
ProfileInfoT<Function, BasicBlock>::~ProfileInfoT() {
|
|
|
|
if (MachineProfile) delete MachineProfile;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
char ProfileInfoT<MachineFunction, MachineBasicBlock>::ID = 0;
|
2004-02-10 23:11:42 +01:00
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
const double ProfileInfoT<Function,BasicBlock>::MissingValue = -1;
|
2009-08-24 23:37:48 +02:00
|
|
|
|
2009-12-15 03:35:24 +01:00
|
|
|
template<> const
|
|
|
|
double ProfileInfoT<MachineFunction, MachineBasicBlock>::MissingValue = -1;
|
2009-12-03 10:30:12 +01:00
|
|
|
|
2009-12-15 03:35:24 +01:00
|
|
|
template<> double
|
|
|
|
ProfileInfoT<Function,BasicBlock>::getExecutionCount(const BasicBlock *BB) {
|
2009-08-08 19:43:09 +02:00
|
|
|
std::map<const Function*, BlockCounts>::iterator J =
|
|
|
|
BlockInformation.find(BB->getParent());
|
|
|
|
if (J != BlockInformation.end()) {
|
|
|
|
BlockCounts::iterator I = J->second.find(BB);
|
|
|
|
if (I != J->second.end())
|
|
|
|
return I->second;
|
|
|
|
}
|
2009-08-05 23:51:16 +02:00
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
double Count = MissingValue;
|
|
|
|
|
2010-03-26 00:25:28 +01:00
|
|
|
const_pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
|
2004-03-08 23:04:08 +01:00
|
|
|
|
|
|
|
// Are there zero predecessors of this block?
|
|
|
|
if (PI == PE) {
|
2010-07-15 12:19:23 +02:00
|
|
|
Edge e = getEdge(0, BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
Count = getEdgeWeight(e);
|
|
|
|
} else {
|
|
|
|
// Otherwise, if there are predecessors, the execution count of this block is
|
|
|
|
// the sum of the edge frequencies from the incoming edges.
|
|
|
|
std::set<const BasicBlock*> ProcessedPreds;
|
|
|
|
Count = 0;
|
2010-07-15 12:19:23 +02:00
|
|
|
for (; PI != PE; ++PI) {
|
|
|
|
const BasicBlock *P = *PI;
|
|
|
|
if (ProcessedPreds.insert(P).second) {
|
|
|
|
double w = getEdgeWeight(getEdge(P, BB));
|
2009-12-03 10:30:12 +01:00
|
|
|
if (w == MissingValue) {
|
|
|
|
Count = MissingValue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Count += w;
|
|
|
|
}
|
2010-07-15 12:19:23 +02:00
|
|
|
}
|
2004-03-08 23:04:08 +01:00
|
|
|
}
|
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
// If the predecessors did not suffice to get block weight, try successors.
|
|
|
|
if (Count == MissingValue) {
|
|
|
|
|
|
|
|
succ_const_iterator SI = succ_begin(BB), SE = succ_end(BB);
|
|
|
|
|
|
|
|
// Are there zero successors of this block?
|
|
|
|
if (SI == SE) {
|
|
|
|
Edge e = getEdge(BB,0);
|
|
|
|
Count = getEdgeWeight(e);
|
|
|
|
} else {
|
|
|
|
std::set<const BasicBlock*> ProcessedSuccs;
|
|
|
|
Count = 0;
|
|
|
|
for (; SI != SE; ++SI)
|
|
|
|
if (ProcessedSuccs.insert(*SI).second) {
|
|
|
|
double w = getEdgeWeight(getEdge(BB, *SI));
|
|
|
|
if (w == MissingValue) {
|
|
|
|
Count = MissingValue;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Count += w;
|
|
|
|
}
|
2009-08-08 19:43:09 +02:00
|
|
|
}
|
2009-12-03 10:30:12 +01:00
|
|
|
}
|
2009-08-08 19:43:09 +02:00
|
|
|
|
2009-08-24 23:37:48 +02:00
|
|
|
if (Count != MissingValue) BlockInformation[BB->getParent()][BB] = Count;
|
2004-03-08 23:04:08 +01:00
|
|
|
return Count;
|
|
|
|
}
|
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
double ProfileInfoT<MachineFunction, MachineBasicBlock>::
|
|
|
|
getExecutionCount(const MachineBasicBlock *MBB) {
|
2009-12-03 10:30:12 +01:00
|
|
|
std::map<const MachineFunction*, BlockCounts>::iterator J =
|
|
|
|
BlockInformation.find(MBB->getParent());
|
|
|
|
if (J != BlockInformation.end()) {
|
|
|
|
BlockCounts::iterator I = J->second.find(MBB);
|
|
|
|
if (I != J->second.end())
|
|
|
|
return I->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
return MissingValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
double ProfileInfoT<Function,BasicBlock>::getExecutionCount(const Function *F) {
|
2009-08-08 19:43:09 +02:00
|
|
|
std::map<const Function*, double>::iterator J =
|
|
|
|
FunctionInformation.find(F);
|
|
|
|
if (J != FunctionInformation.end())
|
|
|
|
return J->second;
|
2009-08-05 23:51:16 +02:00
|
|
|
|
2009-08-26 15:33:09 +02:00
|
|
|
// isDeclaration() is checked here and not at start of function to allow
|
|
|
|
// functions without a body still to have a execution count.
|
|
|
|
if (F->isDeclaration()) return MissingValue;
|
|
|
|
|
2009-08-08 19:43:09 +02:00
|
|
|
double Count = getExecutionCount(&F->getEntryBlock());
|
2009-08-24 23:37:48 +02:00
|
|
|
if (Count != MissingValue) FunctionInformation[F] = Count;
|
2009-08-08 19:43:09 +02:00
|
|
|
return Count;
|
2009-07-14 08:58:59 +02:00
|
|
|
}
|
2004-03-08 23:04:08 +01:00
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
double ProfileInfoT<MachineFunction, MachineBasicBlock>::
|
|
|
|
getExecutionCount(const MachineFunction *MF) {
|
2009-12-03 10:30:12 +01:00
|
|
|
std::map<const MachineFunction*, double>::iterator J =
|
|
|
|
FunctionInformation.find(MF);
|
|
|
|
if (J != FunctionInformation.end())
|
|
|
|
return J->second;
|
|
|
|
|
|
|
|
double Count = getExecutionCount(&MF->front());
|
|
|
|
if (Count != MissingValue) FunctionInformation[MF] = Count;
|
|
|
|
return Count;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::
|
|
|
|
setExecutionCount(const BasicBlock *BB, double w) {
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Creating Block " << BB->getName()
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " (weight: " << format("%.20g",w) << ")\n");
|
|
|
|
BlockInformation[BB->getParent()][BB] = w;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<MachineFunction, MachineBasicBlock>::
|
|
|
|
setExecutionCount(const MachineBasicBlock *MBB, double w) {
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Creating Block " << MBB->getBasicBlock()->getName()
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " (weight: " << format("%.20g",w) << ")\n");
|
|
|
|
BlockInformation[MBB->getParent()][MBB] = w;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::addEdgeWeight(Edge e, double w) {
|
2009-12-03 10:30:12 +01:00
|
|
|
double oldw = getEdgeWeight(e);
|
|
|
|
assert (oldw != MissingValue && "Adding weight to Edge with no previous weight");
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Adding to Edge " << e
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " (new weight: " << format("%.20g",oldw + w) << ")\n");
|
|
|
|
EdgeInformation[getFunction(e)][e] = oldw + w;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::
|
|
|
|
addExecutionCount(const BasicBlock *BB, double w) {
|
2009-12-03 10:30:12 +01:00
|
|
|
double oldw = getExecutionCount(BB);
|
|
|
|
assert (oldw != MissingValue && "Adding weight to Block with no previous weight");
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Adding to Block " << BB->getName()
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " (new weight: " << format("%.20g",oldw + w) << ")\n");
|
|
|
|
BlockInformation[BB->getParent()][BB] = oldw + w;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::removeBlock(const BasicBlock *BB) {
|
2009-12-03 10:30:12 +01:00
|
|
|
std::map<const Function*, BlockCounts>::iterator J =
|
|
|
|
BlockInformation.find(BB->getParent());
|
|
|
|
if (J == BlockInformation.end()) return;
|
|
|
|
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Deleting " << BB->getName() << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
J->second.erase(BB);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::removeEdge(Edge e) {
|
2009-12-03 10:30:12 +01:00
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(getFunction(e));
|
|
|
|
if (J == EdgeInformation.end()) return;
|
|
|
|
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Deleting" << e << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
J->second.erase(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::
|
|
|
|
replaceEdge(const Edge &oldedge, const Edge &newedge) {
|
2009-12-03 10:30:12 +01:00
|
|
|
double w;
|
|
|
|
if ((w = getEdgeWeight(newedge)) == MissingValue) {
|
|
|
|
w = getEdgeWeight(oldedge);
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Replacing " << oldedge << " with " << newedge << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
} else {
|
|
|
|
w += getEdgeWeight(oldedge);
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Adding " << oldedge << " to " << newedge << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
}
|
|
|
|
setEdgeWeight(newedge,w);
|
|
|
|
removeEdge(oldedge);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
const BasicBlock *ProfileInfoT<Function,BasicBlock>::
|
|
|
|
GetPath(const BasicBlock *Src, const BasicBlock *Dest,
|
|
|
|
Path &P, unsigned Mode) {
|
2009-12-03 10:30:12 +01:00
|
|
|
const BasicBlock *BB = 0;
|
|
|
|
bool hasFoundPath = false;
|
|
|
|
|
|
|
|
std::queue<const BasicBlock *> BFS;
|
|
|
|
BFS.push(Src);
|
|
|
|
|
|
|
|
while(BFS.size() && !hasFoundPath) {
|
|
|
|
BB = BFS.front();
|
|
|
|
BFS.pop();
|
|
|
|
|
|
|
|
succ_const_iterator Succ = succ_begin(BB), End = succ_end(BB);
|
|
|
|
if (Succ == End) {
|
|
|
|
P[0] = BB;
|
|
|
|
if (Mode & GetPathToExit) {
|
|
|
|
hasFoundPath = true;
|
|
|
|
BB = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(;Succ != End; ++Succ) {
|
|
|
|
if (P.find(*Succ) != P.end()) continue;
|
|
|
|
Edge e = getEdge(BB,*Succ);
|
|
|
|
if ((Mode & GetPathWithNewEdges) && (getEdgeWeight(e) != MissingValue)) continue;
|
|
|
|
P[*Succ] = BB;
|
|
|
|
BFS.push(*Succ);
|
|
|
|
if ((Mode & GetPathToDest) && *Succ == Dest) {
|
|
|
|
hasFoundPath = true;
|
|
|
|
BB = *Succ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((Mode & GetPathToValue) && (getExecutionCount(*Succ) != MissingValue)) {
|
|
|
|
hasFoundPath = true;
|
|
|
|
BB = *Succ;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return BB;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::
|
|
|
|
divertFlow(const Edge &oldedge, const Edge &newedge) {
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Diverting " << oldedge << " via " << newedge );
|
2009-12-03 10:30:12 +01:00
|
|
|
|
|
|
|
// First check if the old edge was taken, if not, just delete it...
|
|
|
|
if (getEdgeWeight(oldedge) == 0) {
|
|
|
|
removeEdge(oldedge);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Path P;
|
|
|
|
P[newedge.first] = 0;
|
|
|
|
P[newedge.second] = newedge.first;
|
|
|
|
const BasicBlock *BB = GetPath(newedge.second,oldedge.second,P,GetPathToExit | GetPathToDest);
|
|
|
|
|
|
|
|
double w = getEdgeWeight (oldedge);
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << ", Weight: " << format("%.20g",w) << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
do {
|
|
|
|
const BasicBlock *Parent = P.find(BB)->second;
|
|
|
|
Edge e = getEdge(Parent,BB);
|
|
|
|
double oldw = getEdgeWeight(e);
|
|
|
|
double oldc = getExecutionCount(e.first);
|
|
|
|
setEdgeWeight(e, w+oldw);
|
|
|
|
if (Parent != oldedge.first) {
|
|
|
|
setExecutionCount(e.first, w+oldc);
|
|
|
|
}
|
|
|
|
BB = Parent;
|
|
|
|
} while (BB != newedge.first);
|
|
|
|
removeEdge(oldedge);
|
|
|
|
}
|
|
|
|
|
2011-04-15 07:18:47 +02:00
|
|
|
/// Replaces all occurrences of RmBB in the ProfilingInfo with DestBB.
|
2009-09-09 19:52:57 +02:00
|
|
|
/// This checks all edges of the function the blocks reside in and replaces the
|
2011-04-15 07:18:47 +02:00
|
|
|
/// occurrences of RmBB with DestBB.
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::
|
|
|
|
replaceAllUses(const BasicBlock *RmBB, const BasicBlock *DestBB) {
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Replacing " << RmBB->getName()
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " with " << DestBB->getName() << "\n");
|
2009-09-09 19:52:57 +02:00
|
|
|
const Function *F = DestBB->getParent();
|
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(F);
|
|
|
|
if (J == EdgeInformation.end()) return;
|
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
Edge e, newedge;
|
|
|
|
bool erasededge = false;
|
|
|
|
EdgeWeights::iterator I = J->second.begin(), E = J->second.end();
|
|
|
|
while(I != E) {
|
|
|
|
e = (I++)->first;
|
|
|
|
bool foundedge = false; bool eraseedge = false;
|
2009-09-09 19:52:57 +02:00
|
|
|
if (e.first == RmBB) {
|
2009-12-03 10:30:12 +01:00
|
|
|
if (e.second == DestBB) {
|
|
|
|
eraseedge = true;
|
|
|
|
} else {
|
|
|
|
newedge = getEdge(DestBB, e.second);
|
|
|
|
foundedge = true;
|
|
|
|
}
|
2009-09-09 19:52:57 +02:00
|
|
|
}
|
|
|
|
if (e.second == RmBB) {
|
2009-12-03 10:30:12 +01:00
|
|
|
if (e.first == DestBB) {
|
|
|
|
eraseedge = true;
|
|
|
|
} else {
|
|
|
|
newedge = getEdge(e.first, DestBB);
|
|
|
|
foundedge = true;
|
|
|
|
}
|
2009-09-09 19:52:57 +02:00
|
|
|
}
|
|
|
|
if (foundedge) {
|
2009-12-03 10:30:12 +01:00
|
|
|
replaceEdge(e, newedge);
|
|
|
|
}
|
|
|
|
if (eraseedge) {
|
|
|
|
if (erasededge) {
|
|
|
|
Edge newedge = getEdge(DestBB, DestBB);
|
|
|
|
replaceEdge(e, newedge);
|
|
|
|
} else {
|
|
|
|
removeEdge(e);
|
|
|
|
erasededge = true;
|
|
|
|
}
|
2009-09-09 19:52:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Splits an edge in the ProfileInfo and redirects flow over NewBB.
|
|
|
|
/// Since its possible that there is more than one edge in the CFG from FristBB
|
|
|
|
/// to SecondBB its necessary to redirect the flow proporionally.
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::splitEdge(const BasicBlock *FirstBB,
|
|
|
|
const BasicBlock *SecondBB,
|
|
|
|
const BasicBlock *NewBB,
|
|
|
|
bool MergeIdenticalEdges) {
|
2009-09-09 19:52:57 +02:00
|
|
|
const Function *F = FirstBB->getParent();
|
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(F);
|
|
|
|
if (J == EdgeInformation.end()) return;
|
|
|
|
|
|
|
|
// Generate edges and read current weight.
|
|
|
|
Edge e = getEdge(FirstBB, SecondBB);
|
|
|
|
Edge n1 = getEdge(FirstBB, NewBB);
|
|
|
|
Edge n2 = getEdge(NewBB, SecondBB);
|
|
|
|
EdgeWeights &ECs = J->second;
|
|
|
|
double w = ECs[e];
|
|
|
|
|
|
|
|
int succ_count = 0;
|
|
|
|
if (!MergeIdenticalEdges) {
|
|
|
|
// First count the edges from FristBB to SecondBB, if there is more than
|
|
|
|
// one, only slice out a proporional part for NewBB.
|
|
|
|
for(succ_const_iterator BBI = succ_begin(FirstBB), BBE = succ_end(FirstBB);
|
|
|
|
BBI != BBE; ++BBI) {
|
|
|
|
if (*BBI == SecondBB) succ_count++;
|
|
|
|
}
|
|
|
|
// When the NewBB is completely new, increment the count by one so that
|
|
|
|
// the counts are properly distributed.
|
|
|
|
if (getExecutionCount(NewBB) == ProfileInfo::MissingValue) succ_count++;
|
|
|
|
} else {
|
|
|
|
// When the edges are merged anyway, then redirect all flow.
|
|
|
|
succ_count = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We know now how many edges there are from FirstBB to SecondBB, reroute a
|
|
|
|
// proportional part of the edge weight over NewBB.
|
2009-12-03 10:30:12 +01:00
|
|
|
double neww = floor(w / succ_count);
|
2009-09-09 19:52:57 +02:00
|
|
|
ECs[n1] += neww;
|
|
|
|
ECs[n2] += neww;
|
|
|
|
BlockInformation[F][NewBB] += neww;
|
|
|
|
if (succ_count == 1) {
|
|
|
|
ECs.erase(e);
|
|
|
|
} else {
|
|
|
|
ECs[e] -= neww;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::splitBlock(const BasicBlock *Old,
|
|
|
|
const BasicBlock* New) {
|
2009-12-03 10:30:12 +01:00
|
|
|
const Function *F = Old->getParent();
|
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(F);
|
|
|
|
if (J == EdgeInformation.end()) return;
|
|
|
|
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Splitting " << Old->getName() << " to " << New->getName() << "\n");
|
2009-12-03 10:30:12 +01:00
|
|
|
|
|
|
|
std::set<Edge> Edges;
|
|
|
|
for (EdgeWeights::iterator ewi = J->second.begin(), ewe = J->second.end();
|
|
|
|
ewi != ewe; ++ewi) {
|
|
|
|
Edge old = ewi->first;
|
|
|
|
if (old.first == Old) {
|
|
|
|
Edges.insert(old);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (std::set<Edge>::iterator EI = Edges.begin(), EE = Edges.end();
|
|
|
|
EI != EE; ++EI) {
|
|
|
|
Edge newedge = getEdge(New, EI->second);
|
|
|
|
replaceEdge(*EI, newedge);
|
|
|
|
}
|
|
|
|
|
|
|
|
double w = getExecutionCount(Old);
|
|
|
|
setEdgeWeight(getEdge(Old, New), w);
|
|
|
|
setExecutionCount(New, w);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::splitBlock(const BasicBlock *BB,
|
|
|
|
const BasicBlock* NewBB,
|
|
|
|
BasicBlock *const *Preds,
|
|
|
|
unsigned NumPreds) {
|
2009-12-03 10:30:12 +01:00
|
|
|
const Function *F = BB->getParent();
|
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(F);
|
|
|
|
if (J == EdgeInformation.end()) return;
|
|
|
|
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Splitting " << NumPreds << " Edges from " << BB->getName()
|
2009-12-03 10:30:12 +01:00
|
|
|
<< " to " << NewBB->getName() << "\n");
|
|
|
|
|
|
|
|
// Collect weight that was redirected over NewBB.
|
|
|
|
double newweight = 0;
|
|
|
|
|
|
|
|
std::set<const BasicBlock *> ProcessedPreds;
|
|
|
|
// For all requestes Predecessors.
|
|
|
|
for (unsigned pred = 0; pred < NumPreds; ++pred) {
|
|
|
|
const BasicBlock * Pred = Preds[pred];
|
|
|
|
if (ProcessedPreds.insert(Pred).second) {
|
|
|
|
// Create edges and read old weight.
|
|
|
|
Edge oldedge = getEdge(Pred, BB);
|
|
|
|
Edge newedge = getEdge(Pred, NewBB);
|
|
|
|
|
|
|
|
// Remember how much weight was redirected.
|
|
|
|
newweight += getEdgeWeight(oldedge);
|
|
|
|
|
|
|
|
replaceEdge(oldedge,newedge);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Edge newedge = getEdge(NewBB,BB);
|
|
|
|
setEdgeWeight(newedge, newweight);
|
|
|
|
setExecutionCount(NewBB, newweight);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::transfer(const Function *Old,
|
|
|
|
const Function *New) {
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "Replacing Function " << Old->getName() << " with "
|
2009-12-03 10:30:12 +01:00
|
|
|
<< New->getName() << "\n");
|
|
|
|
std::map<const Function*, EdgeWeights>::iterator J =
|
|
|
|
EdgeInformation.find(Old);
|
|
|
|
if(J != EdgeInformation.end()) {
|
|
|
|
EdgeInformation[New] = J->second;
|
|
|
|
}
|
|
|
|
EdgeInformation.erase(Old);
|
|
|
|
BlockInformation.erase(Old);
|
|
|
|
FunctionInformation.erase(Old);
|
|
|
|
}
|
|
|
|
|
2009-12-15 03:35:24 +01:00
|
|
|
static double readEdgeOrRemember(ProfileInfo::Edge edge, double w,
|
|
|
|
ProfileInfo::Edge &tocalc, unsigned &uncalc) {
|
2009-12-03 10:30:12 +01:00
|
|
|
if (w == ProfileInfo::MissingValue) {
|
|
|
|
tocalc = edge;
|
|
|
|
uncalc++;
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
bool ProfileInfoT<Function,BasicBlock>::
|
|
|
|
CalculateMissingEdge(const BasicBlock *BB, Edge &removed,
|
|
|
|
bool assumeEmptySelf) {
|
2009-12-03 10:30:12 +01:00
|
|
|
Edge edgetocalc;
|
|
|
|
unsigned uncalculated = 0;
|
|
|
|
|
|
|
|
// collect weights of all incoming and outgoing edges, rememer edges that
|
|
|
|
// have no value
|
|
|
|
double incount = 0;
|
|
|
|
SmallSet<const BasicBlock*,8> pred_visited;
|
2010-03-26 00:25:28 +01:00
|
|
|
const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
if (bbi==bbe) {
|
|
|
|
Edge e = getEdge(0,BB);
|
|
|
|
incount += readEdgeOrRemember(e, getEdgeWeight(e) ,edgetocalc,uncalculated);
|
|
|
|
}
|
|
|
|
for (;bbi != bbe; ++bbi) {
|
|
|
|
if (pred_visited.insert(*bbi)) {
|
|
|
|
Edge e = getEdge(*bbi,BB);
|
|
|
|
incount += readEdgeOrRemember(e, getEdgeWeight(e) ,edgetocalc,uncalculated);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double outcount = 0;
|
|
|
|
SmallSet<const BasicBlock*,8> succ_visited;
|
|
|
|
succ_const_iterator sbbi = succ_begin(BB), sbbe = succ_end(BB);
|
|
|
|
if (sbbi==sbbe) {
|
|
|
|
Edge e = getEdge(BB,0);
|
|
|
|
if (getEdgeWeight(e) == MissingValue) {
|
|
|
|
double w = getExecutionCount(BB);
|
|
|
|
if (w != MissingValue) {
|
|
|
|
setEdgeWeight(e,w);
|
|
|
|
removed = e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
outcount += readEdgeOrRemember(e, getEdgeWeight(e), edgetocalc, uncalculated);
|
|
|
|
}
|
|
|
|
for (;sbbi != sbbe; ++sbbi) {
|
|
|
|
if (succ_visited.insert(*sbbi)) {
|
|
|
|
Edge e = getEdge(BB,*sbbi);
|
|
|
|
outcount += readEdgeOrRemember(e, getEdgeWeight(e), edgetocalc, uncalculated);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// if exactly one edge weight was missing, calculate it and remove it from
|
|
|
|
// spanning tree
|
|
|
|
if (uncalculated == 0 ) {
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
if (uncalculated == 1) {
|
|
|
|
if (incount < outcount) {
|
|
|
|
EdgeInformation[BB->getParent()][edgetocalc] = outcount-incount;
|
|
|
|
} else {
|
|
|
|
EdgeInformation[BB->getParent()][edgetocalc] = incount-outcount;
|
|
|
|
}
|
2009-12-23 22:48:18 +01:00
|
|
|
DEBUG(dbgs() << "--Calc Edge Counter for " << edgetocalc << ": "
|
2009-12-03 10:30:12 +01:00
|
|
|
<< format("%.20g", getEdgeWeight(edgetocalc)) << "\n");
|
|
|
|
removed = edgetocalc;
|
|
|
|
return true;
|
|
|
|
} else
|
|
|
|
if (uncalculated == 2 && assumeEmptySelf && edgetocalc.first == edgetocalc.second && incount == outcount) {
|
|
|
|
setEdgeWeight(edgetocalc, incount * 10);
|
|
|
|
removed = edgetocalc;
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void readEdge(ProfileInfo *PI, ProfileInfo::Edge e, double &calcw, std::set<ProfileInfo::Edge> &misscount) {
|
|
|
|
double w = PI->getEdgeWeight(e);
|
|
|
|
if (w != ProfileInfo::MissingValue) {
|
|
|
|
calcw += w;
|
|
|
|
} else {
|
|
|
|
misscount.insert(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
bool ProfileInfoT<Function,BasicBlock>::EstimateMissingEdges(const BasicBlock *BB) {
|
2009-12-03 10:30:12 +01:00
|
|
|
double inWeight = 0;
|
|
|
|
std::set<Edge> inMissing;
|
|
|
|
std::set<const BasicBlock*> ProcessedPreds;
|
2010-03-26 00:25:28 +01:00
|
|
|
const_pred_iterator bbi = pred_begin(BB), bbe = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
if (bbi == bbe) {
|
|
|
|
readEdge(this,getEdge(0,BB),inWeight,inMissing);
|
|
|
|
}
|
|
|
|
for( ; bbi != bbe; ++bbi ) {
|
|
|
|
if (ProcessedPreds.insert(*bbi).second) {
|
|
|
|
readEdge(this,getEdge(*bbi,BB),inWeight,inMissing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double outWeight = 0;
|
|
|
|
std::set<Edge> outMissing;
|
|
|
|
std::set<const BasicBlock*> ProcessedSuccs;
|
|
|
|
succ_const_iterator sbbi = succ_begin(BB), sbbe = succ_end(BB);
|
2010-06-29 13:39:45 +02:00
|
|
|
if (sbbi == sbbe)
|
2009-12-03 10:30:12 +01:00
|
|
|
readEdge(this,getEdge(BB,0),outWeight,outMissing);
|
|
|
|
for ( ; sbbi != sbbe; ++sbbi ) {
|
|
|
|
if (ProcessedSuccs.insert(*sbbi).second) {
|
|
|
|
readEdge(this,getEdge(BB,*sbbi),outWeight,outMissing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
double share;
|
|
|
|
std::set<Edge>::iterator ei,ee;
|
|
|
|
if (inMissing.size() == 0 && outMissing.size() > 0) {
|
|
|
|
ei = outMissing.begin();
|
|
|
|
ee = outMissing.end();
|
|
|
|
share = inWeight/outMissing.size();
|
|
|
|
setExecutionCount(BB,inWeight);
|
|
|
|
} else
|
|
|
|
if (inMissing.size() > 0 && outMissing.size() == 0 && outWeight == 0) {
|
|
|
|
ei = inMissing.begin();
|
|
|
|
ee = inMissing.end();
|
|
|
|
share = 0;
|
|
|
|
setExecutionCount(BB,0);
|
|
|
|
} else
|
|
|
|
if (inMissing.size() == 0 && outMissing.size() == 0) {
|
|
|
|
setExecutionCount(BB,outWeight);
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
for ( ; ei != ee; ++ei ) {
|
|
|
|
setEdgeWeight(*ei,share);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<>
|
2009-12-15 03:35:24 +01:00
|
|
|
void ProfileInfoT<Function,BasicBlock>::repair(const Function *F) {
|
2009-12-03 10:30:12 +01:00
|
|
|
// if (getExecutionCount(&(F->getEntryBlock())) == 0) {
|
|
|
|
// for (Function::const_iterator FI = F->begin(), FE = F->end();
|
|
|
|
// FI != FE; ++FI) {
|
|
|
|
// const BasicBlock* BB = &(*FI);
|
|
|
|
// {
|
2010-03-26 00:25:28 +01:00
|
|
|
// const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
// if (NBB == End) {
|
|
|
|
// setEdgeWeight(getEdge(0,BB),0);
|
|
|
|
// }
|
|
|
|
// for(;NBB != End; ++NBB) {
|
|
|
|
// setEdgeWeight(getEdge(*NBB,BB),0);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// {
|
|
|
|
// succ_const_iterator NBB = succ_begin(BB), End = succ_end(BB);
|
|
|
|
// if (NBB == End) {
|
|
|
|
// setEdgeWeight(getEdge(0,BB),0);
|
|
|
|
// }
|
|
|
|
// for(;NBB != End; ++NBB) {
|
|
|
|
// setEdgeWeight(getEdge(*NBB,BB),0);
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
// The set of BasicBlocks that are still unvisited.
|
|
|
|
std::set<const BasicBlock*> Unvisited;
|
|
|
|
|
|
|
|
// The set of return edges (Edges with no successors).
|
|
|
|
std::set<Edge> ReturnEdges;
|
|
|
|
double ReturnWeight = 0;
|
|
|
|
|
|
|
|
// First iterate over the whole function and collect:
|
|
|
|
// 1) The blocks in this function in the Unvisited set.
|
|
|
|
// 2) The return edges in the ReturnEdges set.
|
|
|
|
// 3) The flow that is leaving the function already via return edges.
|
|
|
|
|
|
|
|
// Data structure for searching the function.
|
|
|
|
std::queue<const BasicBlock *> BFS;
|
|
|
|
const BasicBlock *BB = &(F->getEntryBlock());
|
|
|
|
BFS.push(BB);
|
|
|
|
Unvisited.insert(BB);
|
|
|
|
|
|
|
|
while (BFS.size()) {
|
|
|
|
BB = BFS.front(); BFS.pop();
|
|
|
|
succ_const_iterator NBB = succ_begin(BB), End = succ_end(BB);
|
|
|
|
if (NBB == End) {
|
|
|
|
Edge e = getEdge(BB,0);
|
|
|
|
double w = getEdgeWeight(e);
|
|
|
|
if (w == MissingValue) {
|
|
|
|
// If the return edge has no value, try to read value from block.
|
|
|
|
double bw = getExecutionCount(BB);
|
|
|
|
if (bw != MissingValue) {
|
|
|
|
setEdgeWeight(e,bw);
|
|
|
|
ReturnWeight += bw;
|
|
|
|
} else {
|
|
|
|
// If both return edge and block provide no value, collect edge.
|
|
|
|
ReturnEdges.insert(e);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If the return edge has a proper value, collect it.
|
|
|
|
ReturnWeight += w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (;NBB != End; ++NBB) {
|
|
|
|
if (Unvisited.insert(*NBB).second) {
|
|
|
|
BFS.push(*NBB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (Unvisited.size() > 0) {
|
|
|
|
unsigned oldUnvisitedCount = Unvisited.size();
|
|
|
|
bool FoundPath = false;
|
|
|
|
|
|
|
|
// If there is only one edge left, calculate it.
|
|
|
|
if (ReturnEdges.size() == 1) {
|
|
|
|
ReturnWeight = getExecutionCount(&(F->getEntryBlock())) - ReturnWeight;
|
|
|
|
|
|
|
|
Edge e = *ReturnEdges.begin();
|
|
|
|
setEdgeWeight(e,ReturnWeight);
|
|
|
|
setExecutionCount(e.first,ReturnWeight);
|
|
|
|
|
|
|
|
Unvisited.erase(e.first);
|
|
|
|
ReturnEdges.erase(e);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate all blocks where only one edge is missing, this may also
|
|
|
|
// resolve furhter return edges.
|
|
|
|
std::set<const BasicBlock *>::iterator FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
Edge e;
|
|
|
|
if(CalculateMissingEdge(BB,e,true)) {
|
|
|
|
if (BlockInformation[F].find(BB) == BlockInformation[F].end()) {
|
|
|
|
setExecutionCount(BB,getExecutionCount(BB));
|
|
|
|
}
|
|
|
|
Unvisited.erase(BB);
|
|
|
|
if (e.first != 0 && e.second == 0) {
|
|
|
|
ReturnEdges.erase(e);
|
|
|
|
ReturnWeight += getEdgeWeight(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (oldUnvisitedCount > Unvisited.size()) continue;
|
|
|
|
|
|
|
|
// Estimate edge weights by dividing the flow proportionally.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
const BasicBlock *Dest = 0;
|
|
|
|
bool AllEdgesHaveSameReturn = true;
|
|
|
|
// Check each Successor, these must all end up in the same or an empty
|
|
|
|
// return block otherwise its dangerous to do an estimation on them.
|
|
|
|
for (succ_const_iterator Succ = succ_begin(BB), End = succ_end(BB);
|
|
|
|
Succ != End; ++Succ) {
|
|
|
|
Path P;
|
|
|
|
GetPath(*Succ, 0, P, GetPathToExit);
|
|
|
|
if (Dest && Dest != P[0]) {
|
|
|
|
AllEdgesHaveSameReturn = false;
|
|
|
|
}
|
|
|
|
Dest = P[0];
|
|
|
|
}
|
|
|
|
if (AllEdgesHaveSameReturn) {
|
|
|
|
if(EstimateMissingEdges(BB)) {
|
|
|
|
Unvisited.erase(BB);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (oldUnvisitedCount > Unvisited.size()) continue;
|
|
|
|
|
|
|
|
// Check if there is a path to an block that has a known value and redirect
|
|
|
|
// flow accordingly.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE && !FoundPath) {
|
|
|
|
// Fetch path.
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
Path P;
|
|
|
|
const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToValue);
|
|
|
|
|
|
|
|
// Calculate incoming flow.
|
|
|
|
double iw = 0; unsigned inmissing = 0; unsigned incount = 0; unsigned invalid = 0;
|
|
|
|
std::set<const BasicBlock *> Processed;
|
2010-03-26 00:25:28 +01:00
|
|
|
for (const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (Processed.insert(*NBB).second) {
|
|
|
|
Edge e = getEdge(*NBB, BB);
|
|
|
|
double ew = getEdgeWeight(e);
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
iw += ew;
|
|
|
|
invalid++;
|
|
|
|
} else {
|
|
|
|
// If the path contains the successor, this means its a backedge,
|
|
|
|
// do not count as missing.
|
|
|
|
if (P.find(*NBB) == P.end())
|
|
|
|
inmissing++;
|
|
|
|
}
|
|
|
|
incount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (inmissing == incount) continue;
|
|
|
|
if (invalid == 0) continue;
|
|
|
|
|
|
|
|
// Subtract (already) outgoing flow.
|
|
|
|
Processed.clear();
|
|
|
|
for (succ_const_iterator NBB = succ_begin(BB), End = succ_end(BB);
|
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (Processed.insert(*NBB).second) {
|
|
|
|
Edge e = getEdge(BB, *NBB);
|
|
|
|
double ew = getEdgeWeight(e);
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
iw -= ew;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (iw < 0) continue;
|
|
|
|
|
2011-04-15 07:18:47 +02:00
|
|
|
// Check the receiving end of the path if it can handle the flow.
|
2009-12-03 10:30:12 +01:00
|
|
|
double ow = getExecutionCount(Dest);
|
|
|
|
Processed.clear();
|
|
|
|
for (succ_const_iterator NBB = succ_begin(BB), End = succ_end(BB);
|
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (Processed.insert(*NBB).second) {
|
|
|
|
Edge e = getEdge(BB, *NBB);
|
|
|
|
double ew = getEdgeWeight(e);
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
ow -= ew;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ow < 0) continue;
|
|
|
|
|
|
|
|
// Determine how much flow shall be used.
|
|
|
|
double ew = getEdgeWeight(getEdge(P[Dest],Dest));
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
ew = ew<ow?ew:ow;
|
|
|
|
ew = ew<iw?ew:iw;
|
|
|
|
} else {
|
|
|
|
if (inmissing == 0)
|
|
|
|
ew = iw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create flow.
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
do {
|
|
|
|
Edge e = getEdge(P[Dest],Dest);
|
|
|
|
if (getEdgeWeight(e) == MissingValue) {
|
|
|
|
setEdgeWeight(e,ew);
|
|
|
|
FoundPath = true;
|
|
|
|
}
|
|
|
|
Dest = P[Dest];
|
|
|
|
} while (Dest != BB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundPath) continue;
|
|
|
|
|
|
|
|
// Calculate a block with self loop.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE && !FoundPath) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
bool SelfEdgeFound = false;
|
|
|
|
for (succ_const_iterator NBB = succ_begin(BB), End = succ_end(BB);
|
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (*NBB == BB) {
|
|
|
|
SelfEdgeFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (SelfEdgeFound) {
|
|
|
|
Edge e = getEdge(BB,BB);
|
|
|
|
if (getEdgeWeight(e) == MissingValue) {
|
|
|
|
double iw = 0;
|
|
|
|
std::set<const BasicBlock *> Processed;
|
2010-03-26 00:25:28 +01:00
|
|
|
for (const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (Processed.insert(*NBB).second) {
|
|
|
|
Edge e = getEdge(*NBB, BB);
|
|
|
|
double ew = getEdgeWeight(e);
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
iw += ew;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setEdgeWeight(e,iw * 10);
|
|
|
|
FoundPath = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundPath) continue;
|
|
|
|
|
|
|
|
// Determine backedges, set them to zero.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE && !FoundPath) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
2011-01-23 18:05:06 +01:00
|
|
|
const BasicBlock *Dest = 0;
|
2009-12-03 10:30:12 +01:00
|
|
|
Path P;
|
|
|
|
bool BackEdgeFound = false;
|
2010-03-26 00:25:28 +01:00
|
|
|
for (const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
NBB != End; ++NBB) {
|
|
|
|
Dest = GetPath(BB, *NBB, P, GetPathToDest | GetPathWithNewEdges);
|
|
|
|
if (Dest == *NBB) {
|
|
|
|
BackEdgeFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (BackEdgeFound) {
|
|
|
|
Edge e = getEdge(Dest,BB);
|
|
|
|
double w = getEdgeWeight(e);
|
|
|
|
if (w == MissingValue) {
|
|
|
|
setEdgeWeight(e,0);
|
|
|
|
FoundPath = true;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
Edge e = getEdge(P[Dest], Dest);
|
|
|
|
double w = getEdgeWeight(e);
|
|
|
|
if (w == MissingValue) {
|
|
|
|
setEdgeWeight(e,0);
|
|
|
|
FoundPath = true;
|
|
|
|
}
|
|
|
|
Dest = P[Dest];
|
|
|
|
} while (Dest != BB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundPath) continue;
|
|
|
|
|
|
|
|
// Channel flow to return block.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE && !FoundPath) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
|
|
|
|
Path P;
|
|
|
|
const BasicBlock *Dest = GetPath(BB, 0, P, GetPathToExit | GetPathWithNewEdges);
|
|
|
|
Dest = P[0];
|
|
|
|
if (!Dest) continue;
|
|
|
|
|
|
|
|
if (getEdgeWeight(getEdge(Dest,0)) == MissingValue) {
|
|
|
|
// Calculate incoming flow.
|
|
|
|
double iw = 0;
|
|
|
|
std::set<const BasicBlock *> Processed;
|
2010-03-26 00:25:28 +01:00
|
|
|
for (const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
NBB != End; ++NBB) {
|
|
|
|
if (Processed.insert(*NBB).second) {
|
|
|
|
Edge e = getEdge(*NBB, BB);
|
|
|
|
double ew = getEdgeWeight(e);
|
|
|
|
if (ew != MissingValue) {
|
|
|
|
iw += ew;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
Edge e = getEdge(P[Dest], Dest);
|
|
|
|
double w = getEdgeWeight(e);
|
|
|
|
if (w == MissingValue) {
|
|
|
|
setEdgeWeight(e,iw);
|
|
|
|
FoundPath = true;
|
|
|
|
} else {
|
|
|
|
assert(0 && "Edge should not have value already!");
|
|
|
|
}
|
|
|
|
Dest = P[Dest];
|
|
|
|
} while (Dest != BB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundPath) continue;
|
|
|
|
|
|
|
|
// Speculatively set edges to zero.
|
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE && !FoundPath) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
|
|
|
|
2010-03-26 00:25:28 +01:00
|
|
|
for (const_pred_iterator NBB = pred_begin(BB), End = pred_end(BB);
|
2009-12-03 10:30:12 +01:00
|
|
|
NBB != End; ++NBB) {
|
|
|
|
Edge e = getEdge(*NBB,BB);
|
|
|
|
double w = getEdgeWeight(e);
|
|
|
|
if (w == MissingValue) {
|
|
|
|
setEdgeWeight(e,0);
|
|
|
|
FoundPath = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (FoundPath) continue;
|
|
|
|
|
2009-12-23 23:59:29 +01:00
|
|
|
errs() << "{";
|
2009-12-03 10:30:12 +01:00
|
|
|
FI = Unvisited.begin(), FE = Unvisited.end();
|
|
|
|
while(FI != FE) {
|
|
|
|
const BasicBlock *BB = *FI; ++FI;
|
2009-12-23 22:48:18 +01:00
|
|
|
dbgs() << BB->getName();
|
2009-12-03 10:30:12 +01:00
|
|
|
if (FI != FE)
|
2009-12-23 22:48:18 +01:00
|
|
|
dbgs() << ",";
|
2009-12-03 10:30:12 +01:00
|
|
|
}
|
2009-12-23 23:59:29 +01:00
|
|
|
errs() << "}";
|
2009-12-03 10:30:12 +01:00
|
|
|
|
2009-12-23 23:59:29 +01:00
|
|
|
errs() << "ASSERT: could not repair function";
|
2009-12-03 10:30:12 +01:00
|
|
|
assert(0 && "could not repair function");
|
|
|
|
}
|
|
|
|
|
|
|
|
EdgeWeights J = EdgeInformation[F];
|
|
|
|
for (EdgeWeights::iterator EI = J.begin(), EE = J.end(); EI != EE; ++EI) {
|
|
|
|
Edge e = EI->first;
|
|
|
|
|
|
|
|
bool SuccFound = false;
|
|
|
|
if (e.first != 0) {
|
|
|
|
succ_const_iterator NBB = succ_begin(e.first), End = succ_end(e.first);
|
|
|
|
if (NBB == End) {
|
|
|
|
if (0 == e.second) {
|
|
|
|
SuccFound = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (;NBB != End; ++NBB) {
|
|
|
|
if (*NBB == e.second) {
|
|
|
|
SuccFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!SuccFound) {
|
|
|
|
removeEdge(e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, const Function *F) {
|
|
|
|
return O << F->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, const MachineFunction *MF) {
|
|
|
|
return O << MF->getFunction()->getName() << "(MF)";
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, const BasicBlock *BB) {
|
|
|
|
return O << BB->getName();
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, const MachineBasicBlock *MBB) {
|
|
|
|
return O << MBB->getBasicBlock()->getName() << "(MB)";
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, std::pair<const BasicBlock *, const BasicBlock *> E) {
|
2009-08-26 17:56:38 +02:00
|
|
|
O << "(";
|
2009-12-03 10:30:12 +01:00
|
|
|
|
|
|
|
if (E.first)
|
|
|
|
O << E.first;
|
|
|
|
else
|
|
|
|
O << "0";
|
|
|
|
|
|
|
|
O << ",";
|
|
|
|
|
|
|
|
if (E.second)
|
|
|
|
O << E.second;
|
|
|
|
else
|
|
|
|
O << "0";
|
|
|
|
|
|
|
|
return O << ")";
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream& operator<<(raw_ostream &O, std::pair<const MachineBasicBlock *, const MachineBasicBlock *> E) {
|
|
|
|
O << "(";
|
|
|
|
|
|
|
|
if (E.first)
|
|
|
|
O << E.first;
|
|
|
|
else
|
|
|
|
O << "0";
|
|
|
|
|
2009-08-26 17:56:38 +02:00
|
|
|
O << ",";
|
2009-12-03 10:30:12 +01:00
|
|
|
|
|
|
|
if (E.second)
|
|
|
|
O << E.second;
|
|
|
|
else
|
|
|
|
O << "0";
|
|
|
|
|
2009-08-26 17:56:38 +02:00
|
|
|
return O << ")";
|
|
|
|
}
|
2004-02-10 23:11:42 +01:00
|
|
|
|
2009-12-03 10:30:12 +01:00
|
|
|
} // namespace llvm
|
|
|
|
|
2004-02-10 23:11:42 +01:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// NoProfile ProfileInfo implementation
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace {
|
2009-10-25 07:33:48 +01:00
|
|
|
struct NoProfileInfo : public ImmutablePass, public ProfileInfo {
|
2007-05-03 03:11:54 +02:00
|
|
|
static char ID; // Class identification, replacement for typeinfo
|
2010-10-19 19:21:58 +02:00
|
|
|
NoProfileInfo() : ImmutablePass(ID) {
|
|
|
|
initializeNoProfileInfoPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
2010-01-20 21:09:02 +01:00
|
|
|
|
|
|
|
/// getAdjustedAnalysisPointer - This method is used when a pass implements
|
|
|
|
/// an analysis interface through multiple inheritance. If needed, it
|
|
|
|
/// should override this to adjust the this pointer as needed for the
|
|
|
|
/// specified pass info.
|
2010-08-06 20:33:48 +02:00
|
|
|
virtual void *getAdjustedAnalysisPointer(AnalysisID PI) {
|
|
|
|
if (PI == &ProfileInfo::ID)
|
2010-01-20 21:09:02 +01:00
|
|
|
return (ProfileInfo*)this;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual const char *getPassName() const {
|
|
|
|
return "NoProfileInfo";
|
|
|
|
}
|
2007-05-01 23:15:47 +02:00
|
|
|
};
|
2008-05-13 02:00:25 +02:00
|
|
|
} // End of anonymous namespace
|
2005-04-21 23:13:18 +02:00
|
|
|
|
2008-05-13 02:00:25 +02:00
|
|
|
char NoProfileInfo::ID = 0;
|
|
|
|
// Register this pass...
|
2010-07-22 01:07:00 +02:00
|
|
|
INITIALIZE_AG_PASS(NoProfileInfo, ProfileInfo, "no-profile",
|
2010-10-08 00:25:06 +02:00
|
|
|
"No Profile Information", false, true, true)
|
2005-01-08 23:01:16 +01:00
|
|
|
|
|
|
|
ImmutablePass *llvm::createNoProfileInfoPass() { return new NoProfileInfo(); }
|