2011-06-04 01:16:30 +00:00
|
|
|
//===-- BranchProbabilityInfo.cpp - Branch Probability Analysis -*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Loops should be simplified before this analysis.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-31 03:27:24 +00:00
|
|
|
#include "llvm/Constants.h"
|
2011-06-04 01:16:30 +00:00
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Analysis/BranchProbabilityInfo.h"
|
2011-07-16 20:31:15 +00:00
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
2011-06-11 01:05:22 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
INITIALIZE_PASS_BEGIN(BranchProbabilityInfo, "branch-prob",
|
|
|
|
"Branch Probability Analysis", false, true)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(LoopInfo)
|
|
|
|
INITIALIZE_PASS_END(BranchProbabilityInfo, "branch-prob",
|
|
|
|
"Branch Probability Analysis", false, true)
|
|
|
|
|
|
|
|
char BranchProbabilityInfo::ID = 0;
|
|
|
|
|
2011-06-13 18:38:56 +00:00
|
|
|
namespace {
|
2011-06-04 01:16:30 +00:00
|
|
|
// Please note that BranchProbabilityAnalysis is not a FunctionPass.
|
|
|
|
// It is created by BranchProbabilityInfo (which is a FunctionPass), which
|
|
|
|
// provides a clear interface. Thanks to that, all heuristics and other
|
|
|
|
// private methods are hidden in the .cpp file.
|
|
|
|
class BranchProbabilityAnalysis {
|
|
|
|
|
2011-07-29 19:30:00 +00:00
|
|
|
typedef std::pair<const BasicBlock *, const BasicBlock *> Edge;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
DenseMap<Edge, uint32_t> *Weights;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
BranchProbabilityInfo *BP;
|
|
|
|
|
|
|
|
LoopInfo *LI;
|
|
|
|
|
|
|
|
|
|
|
|
// Weights are for internal use only. They are used by heuristics to help to
|
|
|
|
// estimate edges' probability. Example:
|
|
|
|
//
|
|
|
|
// Using "Loop Branch Heuristics" we predict weights of edges for the
|
|
|
|
// block BB2.
|
|
|
|
// ...
|
|
|
|
// |
|
|
|
|
// V
|
|
|
|
// BB1<-+
|
|
|
|
// | |
|
2011-07-28 23:42:08 +00:00
|
|
|
// | | (Weight = 124)
|
2011-06-04 01:16:30 +00:00
|
|
|
// V |
|
|
|
|
// BB2--+
|
|
|
|
// |
|
|
|
|
// | (Weight = 4)
|
|
|
|
// V
|
|
|
|
// BB3
|
|
|
|
//
|
2011-07-28 23:42:08 +00:00
|
|
|
// Probability of the edge BB2->BB1 = 124 / (124 + 4) = 0.96875
|
|
|
|
// Probability of the edge BB2->BB3 = 4 / (124 + 4) = 0.03125
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-07-28 23:42:08 +00:00
|
|
|
static const uint32_t LBH_TAKEN_WEIGHT = 124;
|
2011-06-11 01:05:22 +00:00
|
|
|
static const uint32_t LBH_NONTAKEN_WEIGHT = 4;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-07-29 02:36:53 +00:00
|
|
|
static const uint32_t RH_TAKEN_WEIGHT = 24;
|
|
|
|
static const uint32_t RH_NONTAKEN_WEIGHT = 8;
|
|
|
|
|
|
|
|
static const uint32_t PH_TAKEN_WEIGHT = 20;
|
|
|
|
static const uint32_t PH_NONTAKEN_WEIGHT = 12;
|
|
|
|
|
2011-07-31 03:27:24 +00:00
|
|
|
static const uint32_t ZH_TAKEN_WEIGHT = 20;
|
|
|
|
static const uint32_t ZH_NONTAKEN_WEIGHT = 12;
|
|
|
|
|
2011-06-04 01:16:30 +00:00
|
|
|
// Standard weight value. Used when none of the heuristics set weight for
|
|
|
|
// the edge.
|
2011-06-11 01:05:22 +00:00
|
|
|
static const uint32_t NORMAL_WEIGHT = 16;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
// Minimum weight of an edge. Please note, that weight is NEVER 0.
|
2011-06-11 01:05:22 +00:00
|
|
|
static const uint32_t MIN_WEIGHT = 1;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
// Return TRUE if BB leads directly to a Return Instruction.
|
|
|
|
static bool isReturningBlock(BasicBlock *BB) {
|
|
|
|
SmallPtrSet<BasicBlock *, 8> Visited;
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
TerminatorInst *TI = BB->getTerminator();
|
|
|
|
if (isa<ReturnInst>(TI))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (TI->getNumSuccessors() > 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// It is unreachable block which we can consider as a return instruction.
|
|
|
|
if (TI->getNumSuccessors() == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Visited.insert(BB);
|
|
|
|
BB = TI->getSuccessor(0);
|
|
|
|
|
|
|
|
// Stop if cycle is detected.
|
|
|
|
if (Visited.count(BB))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t getMaxWeightFor(BasicBlock *BB) const {
|
|
|
|
return UINT32_MAX / BB->getTerminator()->getNumSuccessors();
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2011-06-11 01:05:22 +00:00
|
|
|
BranchProbabilityAnalysis(DenseMap<Edge, uint32_t> *W,
|
2011-06-04 01:16:30 +00:00
|
|
|
BranchProbabilityInfo *BP, LoopInfo *LI)
|
|
|
|
: Weights(W), BP(BP), LI(LI) {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return Heuristics
|
2011-07-28 21:45:07 +00:00
|
|
|
bool calcReturnHeuristics(BasicBlock *BB);
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
// Pointer Heuristics
|
2011-07-28 21:45:07 +00:00
|
|
|
bool calcPointerHeuristics(BasicBlock *BB);
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
// Loop Branch Heuristics
|
2011-07-28 21:45:07 +00:00
|
|
|
bool calcLoopBranchHeuristics(BasicBlock *BB);
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-07-31 03:27:24 +00:00
|
|
|
// Zero Heurestics
|
|
|
|
bool calcZeroHeuristics(BasicBlock *BB);
|
|
|
|
|
2011-06-04 01:16:30 +00:00
|
|
|
bool runOnFunction(Function &F);
|
|
|
|
};
|
2011-06-13 18:38:56 +00:00
|
|
|
} // end anonymous namespace
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
// Calculate Edge Weights using "Return Heuristics". Predict a successor which
|
|
|
|
// leads directly to Return Instruction will not be taken.
|
2011-07-28 21:45:07 +00:00
|
|
|
bool BranchProbabilityAnalysis::calcReturnHeuristics(BasicBlock *BB){
|
2011-06-04 01:16:30 +00:00
|
|
|
if (BB->getTerminator()->getNumSuccessors() == 1)
|
2011-07-28 21:45:07 +00:00
|
|
|
return false;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
SmallPtrSet<BasicBlock *, 4> ReturningEdges;
|
|
|
|
SmallPtrSet<BasicBlock *, 4> StayEdges;
|
2011-07-29 02:36:53 +00:00
|
|
|
|
2011-06-04 01:16:30 +00:00
|
|
|
for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
|
|
|
|
BasicBlock *Succ = *I;
|
2011-07-29 02:36:53 +00:00
|
|
|
if (isReturningBlock(Succ))
|
2011-08-01 19:16:26 +00:00
|
|
|
ReturningEdges.insert(Succ);
|
2011-07-29 02:36:53 +00:00
|
|
|
else
|
2011-08-01 19:16:26 +00:00
|
|
|
StayEdges.insert(Succ);
|
2011-07-29 02:36:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (uint32_t numStayEdges = StayEdges.size()) {
|
|
|
|
uint32_t stayWeight = RH_TAKEN_WEIGHT / numStayEdges;
|
|
|
|
if (stayWeight < NORMAL_WEIGHT)
|
|
|
|
stayWeight = NORMAL_WEIGHT;
|
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
for (SmallPtrSet<BasicBlock *, 4>::iterator I = StayEdges.begin(),
|
2011-07-29 02:36:53 +00:00
|
|
|
E = StayEdges.end(); I != E; ++I)
|
|
|
|
BP->setEdgeWeight(BB, *I, stayWeight);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uint32_t numRetEdges = ReturningEdges.size()) {
|
|
|
|
uint32_t retWeight = RH_NONTAKEN_WEIGHT / numRetEdges;
|
|
|
|
if (retWeight < MIN_WEIGHT)
|
|
|
|
retWeight = MIN_WEIGHT;
|
2011-08-01 19:16:26 +00:00
|
|
|
for (SmallPtrSet<BasicBlock *, 4>::iterator I = ReturningEdges.begin(),
|
2011-07-29 02:36:53 +00:00
|
|
|
E = ReturningEdges.end(); I != E; ++I) {
|
|
|
|
BP->setEdgeWeight(BB, *I, retWeight);
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
}
|
2011-07-28 21:45:07 +00:00
|
|
|
|
2011-07-29 02:36:53 +00:00
|
|
|
return ReturningEdges.size() > 0;
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate Edge Weights using "Pointer Heuristics". Predict a comparsion
|
|
|
|
// between two pointer or pointer and NULL will fail.
|
2011-07-28 21:45:07 +00:00
|
|
|
bool BranchProbabilityAnalysis::calcPointerHeuristics(BasicBlock *BB) {
|
2011-06-04 01:16:30 +00:00
|
|
|
BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
|
|
|
|
if (!BI || !BI->isConditional())
|
2011-07-28 21:45:07 +00:00
|
|
|
return false;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
Value *Cond = BI->getCondition();
|
|
|
|
ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
|
2011-07-15 20:51:06 +00:00
|
|
|
if (!CI || !CI->isEquality())
|
2011-07-28 21:45:07 +00:00
|
|
|
return false;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
Value *LHS = CI->getOperand(0);
|
|
|
|
|
|
|
|
if (!LHS->getType()->isPointerTy())
|
2011-07-28 21:45:07 +00:00
|
|
|
return false;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-06-04 02:07:10 +00:00
|
|
|
assert(CI->getOperand(1)->getType()->isPointerTy());
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
BasicBlock *Taken = BI->getSuccessor(0);
|
|
|
|
BasicBlock *NonTaken = BI->getSuccessor(1);
|
|
|
|
|
|
|
|
// p != 0 -> isProb = true
|
|
|
|
// p == 0 -> isProb = false
|
|
|
|
// p != q -> isProb = true
|
|
|
|
// p == q -> isProb = false;
|
2011-07-15 20:51:06 +00:00
|
|
|
bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
|
2011-06-04 01:16:30 +00:00
|
|
|
if (!isProb)
|
|
|
|
std::swap(Taken, NonTaken);
|
|
|
|
|
2011-07-29 02:36:53 +00:00
|
|
|
BP->setEdgeWeight(BB, Taken, PH_TAKEN_WEIGHT);
|
|
|
|
BP->setEdgeWeight(BB, NonTaken, PH_NONTAKEN_WEIGHT);
|
2011-07-28 21:45:07 +00:00
|
|
|
return true;
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate Edge Weights using "Loop Branch Heuristics". Predict backedges
|
|
|
|
// as taken, exiting edges as not-taken.
|
2011-07-28 21:45:07 +00:00
|
|
|
bool BranchProbabilityAnalysis::calcLoopBranchHeuristics(BasicBlock *BB) {
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t numSuccs = BB->getTerminator()->getNumSuccessors();
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
Loop *L = LI->getLoopFor(BB);
|
|
|
|
if (!L)
|
2011-07-28 21:45:07 +00:00
|
|
|
return false;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
SmallPtrSet<BasicBlock *, 8> BackEdges;
|
|
|
|
SmallPtrSet<BasicBlock *, 8> ExitingEdges;
|
|
|
|
SmallPtrSet<BasicBlock *, 8> InEdges; // Edges from header to the loop.
|
2011-07-28 21:33:46 +00:00
|
|
|
|
|
|
|
bool isHeader = BB == L->getHeader();
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
|
|
|
|
BasicBlock *Succ = *I;
|
|
|
|
Loop *SuccL = LI->getLoopFor(Succ);
|
|
|
|
if (SuccL != L)
|
2011-08-01 19:16:26 +00:00
|
|
|
ExitingEdges.insert(Succ);
|
2011-06-04 01:16:30 +00:00
|
|
|
else if (Succ == L->getHeader())
|
2011-08-01 19:16:26 +00:00
|
|
|
BackEdges.insert(Succ);
|
2011-07-28 21:33:46 +00:00
|
|
|
else if (isHeader)
|
2011-08-01 19:16:26 +00:00
|
|
|
InEdges.insert(Succ);
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
if (uint32_t numBackEdges = BackEdges.size()) {
|
|
|
|
uint32_t backWeight = LBH_TAKEN_WEIGHT / numBackEdges;
|
2011-06-04 01:16:30 +00:00
|
|
|
if (backWeight < NORMAL_WEIGHT)
|
|
|
|
backWeight = NORMAL_WEIGHT;
|
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
for (SmallPtrSet<BasicBlock *, 8>::iterator EI = BackEdges.begin(),
|
2011-06-04 01:16:30 +00:00
|
|
|
EE = BackEdges.end(); EI != EE; ++EI) {
|
|
|
|
BasicBlock *Back = *EI;
|
|
|
|
BP->setEdgeWeight(BB, Back, backWeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-28 21:33:46 +00:00
|
|
|
if (uint32_t numInEdges = InEdges.size()) {
|
|
|
|
uint32_t inWeight = LBH_TAKEN_WEIGHT / numInEdges;
|
|
|
|
if (inWeight < NORMAL_WEIGHT)
|
|
|
|
inWeight = NORMAL_WEIGHT;
|
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
for (SmallPtrSet<BasicBlock *, 8>::iterator EI = InEdges.begin(),
|
2011-07-28 21:33:46 +00:00
|
|
|
EE = InEdges.end(); EI != EE; ++EI) {
|
|
|
|
BasicBlock *Back = *EI;
|
|
|
|
BP->setEdgeWeight(BB, Back, inWeight);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t numExitingEdges = ExitingEdges.size();
|
|
|
|
if (uint32_t numNonExitingEdges = numSuccs - numExitingEdges) {
|
|
|
|
uint32_t exitWeight = LBH_NONTAKEN_WEIGHT / numNonExitingEdges;
|
2011-06-04 01:16:30 +00:00
|
|
|
if (exitWeight < MIN_WEIGHT)
|
|
|
|
exitWeight = MIN_WEIGHT;
|
|
|
|
|
2011-08-01 19:16:26 +00:00
|
|
|
for (SmallPtrSet<BasicBlock *, 8>::iterator EI = ExitingEdges.begin(),
|
2011-06-04 01:16:30 +00:00
|
|
|
EE = ExitingEdges.end(); EI != EE; ++EI) {
|
|
|
|
BasicBlock *Exiting = *EI;
|
|
|
|
BP->setEdgeWeight(BB, Exiting, exitWeight);
|
|
|
|
}
|
|
|
|
}
|
2011-07-28 21:45:07 +00:00
|
|
|
|
|
|
|
return true;
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-31 03:27:24 +00:00
|
|
|
bool BranchProbabilityAnalysis::calcZeroHeuristics(BasicBlock *BB) {
|
|
|
|
BranchInst * BI = dyn_cast<BranchInst>(BB->getTerminator());
|
|
|
|
if (!BI || !BI->isConditional())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Value *Cond = BI->getCondition();
|
|
|
|
ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
|
|
|
|
if (!CI)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
Value *RHS = CI->getOperand(1);
|
2011-07-31 04:47:20 +00:00
|
|
|
ConstantInt *CV = dyn_cast<ConstantInt>(RHS);
|
2011-09-04 23:53:04 +00:00
|
|
|
if (!CV)
|
2011-07-31 03:27:24 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
bool isProb;
|
2011-09-04 23:53:04 +00:00
|
|
|
if (CV->isZero()) {
|
|
|
|
switch (CI->getPredicate()) {
|
|
|
|
case CmpInst::ICMP_EQ:
|
|
|
|
// X == 0 -> Unlikely
|
|
|
|
isProb = false;
|
|
|
|
break;
|
|
|
|
case CmpInst::ICMP_NE:
|
|
|
|
// X != 0 -> Likely
|
|
|
|
isProb = true;
|
|
|
|
break;
|
|
|
|
case CmpInst::ICMP_SLT:
|
|
|
|
// X < 0 -> Unlikely
|
|
|
|
isProb = false;
|
|
|
|
break;
|
|
|
|
case CmpInst::ICMP_SGT:
|
|
|
|
// X > 0 -> Likely
|
|
|
|
isProb = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else if (CV->isOne() && CI->getPredicate() == CmpInst::ICMP_SLT) {
|
|
|
|
// InstCombine canonicalizes X <= 0 into X < 1.
|
|
|
|
// X <= 0 -> Unlikely
|
2011-07-31 04:47:20 +00:00
|
|
|
isProb = false;
|
2011-09-04 23:53:04 +00:00
|
|
|
} else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
|
|
|
|
// InstCombine canonicalizes X >= 0 into X > -1.
|
|
|
|
// X >= 0 -> Likely
|
2011-07-31 04:47:20 +00:00
|
|
|
isProb = true;
|
2011-09-04 23:53:04 +00:00
|
|
|
} else {
|
2011-07-31 03:27:24 +00:00
|
|
|
return false;
|
2011-09-04 23:53:04 +00:00
|
|
|
}
|
2011-07-31 03:27:24 +00:00
|
|
|
|
|
|
|
BasicBlock *Taken = BI->getSuccessor(0);
|
|
|
|
BasicBlock *NonTaken = BI->getSuccessor(1);
|
|
|
|
|
|
|
|
if (!isProb)
|
|
|
|
std::swap(Taken, NonTaken);
|
|
|
|
|
|
|
|
BP->setEdgeWeight(BB, Taken, ZH_TAKEN_WEIGHT);
|
|
|
|
BP->setEdgeWeight(BB, NonTaken, ZH_NONTAKEN_WEIGHT);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-04 01:16:30 +00:00
|
|
|
bool BranchProbabilityAnalysis::runOnFunction(Function &F) {
|
|
|
|
|
|
|
|
for (Function::iterator I = F.begin(), E = F.end(); I != E; ) {
|
|
|
|
BasicBlock *BB = I++;
|
|
|
|
|
2011-07-28 21:45:07 +00:00
|
|
|
if (calcLoopBranchHeuristics(BB))
|
|
|
|
continue;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-07-28 21:45:07 +00:00
|
|
|
if (calcReturnHeuristics(BB))
|
|
|
|
continue;
|
|
|
|
|
2011-07-31 03:27:24 +00:00
|
|
|
if (calcPointerHeuristics(BB))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
calcZeroHeuristics(BB);
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-07-16 20:31:15 +00:00
|
|
|
void BranchProbabilityInfo::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<LoopInfo>();
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
bool BranchProbabilityInfo::runOnFunction(Function &F) {
|
|
|
|
LoopInfo &LI = getAnalysis<LoopInfo>();
|
|
|
|
BranchProbabilityAnalysis BPA(&Weights, this, &LI);
|
2011-06-11 01:05:22 +00:00
|
|
|
return BPA.runOnFunction(F);
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
2011-07-29 19:30:00 +00:00
|
|
|
uint32_t BranchProbabilityInfo::getSumForBlock(const BasicBlock *BB) const {
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t Sum = 0;
|
|
|
|
|
2011-07-29 19:30:00 +00:00
|
|
|
for (succ_const_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
|
|
|
|
const BasicBlock *Succ = *I;
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t Weight = getEdgeWeight(BB, Succ);
|
|
|
|
uint32_t PrevSum = Sum;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
Sum += Weight;
|
|
|
|
assert(Sum > PrevSum); (void) PrevSum;
|
|
|
|
}
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
return Sum;
|
|
|
|
}
|
|
|
|
|
2011-07-29 19:30:00 +00:00
|
|
|
bool BranchProbabilityInfo::
|
|
|
|
isEdgeHot(const BasicBlock *Src, const BasicBlock *Dst) const {
|
2011-06-11 01:05:22 +00:00
|
|
|
// Hot probability is at least 4/5 = 80%
|
|
|
|
uint32_t Weight = getEdgeWeight(Src, Dst);
|
|
|
|
uint32_t Sum = getSumForBlock(Src);
|
|
|
|
|
|
|
|
// FIXME: Implement BranchProbability::compare then change this code to
|
|
|
|
// compare this BranchProbability against a static "hot" BranchProbability.
|
|
|
|
return (uint64_t)Weight * 5 > (uint64_t)Sum * 4;
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
BasicBlock *BranchProbabilityInfo::getHotSucc(BasicBlock *BB) const {
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t Sum = 0;
|
|
|
|
uint32_t MaxWeight = 0;
|
2011-06-04 01:16:30 +00:00
|
|
|
BasicBlock *MaxSucc = 0;
|
|
|
|
|
|
|
|
for (succ_iterator I = succ_begin(BB), E = succ_end(BB); I != E; ++I) {
|
|
|
|
BasicBlock *Succ = *I;
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t Weight = getEdgeWeight(BB, Succ);
|
|
|
|
uint32_t PrevSum = Sum;
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
Sum += Weight;
|
|
|
|
assert(Sum > PrevSum); (void) PrevSum;
|
|
|
|
|
|
|
|
if (Weight > MaxWeight) {
|
|
|
|
MaxWeight = Weight;
|
|
|
|
MaxSucc = Succ;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
// FIXME: Use BranchProbability::compare.
|
|
|
|
if ((uint64_t)MaxWeight * 5 > (uint64_t)Sum * 4)
|
2011-06-04 01:16:30 +00:00
|
|
|
return MaxSucc;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return edge's weight. If can't find it, return DEFAULT_WEIGHT value.
|
2011-07-29 19:30:00 +00:00
|
|
|
uint32_t BranchProbabilityInfo::
|
|
|
|
getEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst) const {
|
2011-06-04 01:16:30 +00:00
|
|
|
Edge E(Src, Dst);
|
2011-06-11 01:05:22 +00:00
|
|
|
DenseMap<Edge, uint32_t>::const_iterator I = Weights.find(E);
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
if (I != Weights.end())
|
|
|
|
return I->second;
|
|
|
|
|
|
|
|
return DEFAULT_WEIGHT;
|
|
|
|
}
|
|
|
|
|
2011-07-29 19:30:00 +00:00
|
|
|
void BranchProbabilityInfo::
|
|
|
|
setEdgeWeight(const BasicBlock *Src, const BasicBlock *Dst, uint32_t Weight) {
|
2011-06-04 01:16:30 +00:00
|
|
|
Weights[std::make_pair(Src, Dst)] = Weight;
|
2011-06-11 01:05:22 +00:00
|
|
|
DEBUG(dbgs() << "set edge " << Src->getNameStr() << " -> "
|
|
|
|
<< Dst->getNameStr() << " weight to " << Weight
|
|
|
|
<< (isEdgeHot(Src, Dst) ? " [is HOT now]\n" : "\n"));
|
2011-06-04 01:16:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
BranchProbability BranchProbabilityInfo::
|
2011-07-29 19:30:00 +00:00
|
|
|
getEdgeProbability(const BasicBlock *Src, const BasicBlock *Dst) const {
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-06-11 01:05:22 +00:00
|
|
|
uint32_t N = getEdgeWeight(Src, Dst);
|
|
|
|
uint32_t D = getSumForBlock(Src);
|
|
|
|
|
|
|
|
return BranchProbability(N, D);
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &
|
|
|
|
BranchProbabilityInfo::printEdgeProbability(raw_ostream &OS, BasicBlock *Src,
|
|
|
|
BasicBlock *Dst) const {
|
2011-06-04 01:16:30 +00:00
|
|
|
|
2011-06-16 20:22:37 +00:00
|
|
|
const BranchProbability Prob = getEdgeProbability(Src, Dst);
|
2011-06-11 01:05:22 +00:00
|
|
|
OS << "edge " << Src->getNameStr() << " -> " << Dst->getNameStr()
|
|
|
|
<< " probability is " << Prob
|
|
|
|
<< (isEdgeHot(Src, Dst) ? " [HOT edge]\n" : "\n");
|
2011-06-04 01:16:30 +00:00
|
|
|
|
|
|
|
return OS;
|
|
|
|
}
|