2014-11-24 09:08:18 +00:00
|
|
|
//===- BlockFrequencyInfo.cpp - Block Frequency Analysis ------------------===//
|
2011-10-20 21:10:27 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/Analysis/BlockFrequencyInfo.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/Analysis/BlockFrequencyInfoImpl.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Analysis/BranchProbabilityInfo.h"
|
2011-10-20 21:10:27 +00:00
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Analysis/Passes.h"
|
2014-11-24 09:08:18 +00:00
|
|
|
#include "llvm/IR/CFG.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/InitializePasses.h"
|
2013-12-22 00:04:03 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/Support/GraphWriter.h"
|
2011-10-20 21:10:27 +00:00
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
#define DEBUG_TYPE "block-freq"
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
static cl::opt<GVDAGType> ViewBlockFreqPropagationDAG(
|
|
|
|
"view-block-freq-propagation-dags", cl::Hidden,
|
|
|
|
cl::desc("Pop up a window to show a dag displaying how block "
|
|
|
|
"frequencies propagation through the CFG."),
|
|
|
|
cl::values(clEnumValN(GVDT_None, "none", "do not display graphs."),
|
|
|
|
clEnumValN(GVDT_Fraction, "fraction",
|
|
|
|
"display a graph using the "
|
|
|
|
"fractional block frequency representation."),
|
|
|
|
clEnumValN(GVDT_Integer, "integer",
|
|
|
|
"display a graph using the raw "
|
|
|
|
"integer fractional block frequency representation."),
|
|
|
|
clEnumValN(GVDT_Count, "count", "display a graph using the real "
|
2017-01-02 19:17:04 +00:00
|
|
|
"profile count if available.")));
|
2016-07-23 20:41:05 +00:00
|
|
|
|
|
|
|
cl::opt<std::string>
|
|
|
|
ViewBlockFreqFuncName("view-bfi-func-name", cl::Hidden,
|
|
|
|
cl::desc("The option to specify "
|
|
|
|
"the name of the function "
|
|
|
|
"whose CFG will be displayed."));
|
|
|
|
|
|
|
|
cl::opt<unsigned>
|
|
|
|
ViewHotFreqPercent("view-hot-freq-percent", cl::init(10), cl::Hidden,
|
|
|
|
cl::desc("An integer in percent used to specify "
|
|
|
|
"the hot blocks/edges to be displayed "
|
|
|
|
"in red: a block or edge whose frequency "
|
|
|
|
"is no less than the max frequency of the "
|
|
|
|
"function multiplied by this percent."));
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
// Command line option to turn on CFG dot dump after profile annotation.
|
|
|
|
cl::opt<bool>
|
|
|
|
PGOViewCounts("pgo-view-counts", cl::init(false), cl::Hidden,
|
|
|
|
cl::desc("A boolean option to show CFG dag with "
|
|
|
|
"block profile counts and branch probabilities "
|
|
|
|
"right after PGO profile annotation step. The "
|
|
|
|
"profile counts are computed using branch "
|
|
|
|
"probabilities from the runtime profile data and "
|
|
|
|
"block frequency propagation algorithm. To view "
|
|
|
|
"the raw counts from the profile, use option "
|
|
|
|
"-pgo-view-raw-counts instead. To limit graph "
|
|
|
|
"display to only one function, use filtering option "
|
|
|
|
"-view-bfi-func-name."));
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
static GVDAGType getGVDT() {
|
|
|
|
|
|
|
|
if (PGOViewCounts)
|
|
|
|
return GVDT_Count;
|
|
|
|
return ViewBlockFreqPropagationDAG;
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
template <>
|
|
|
|
struct GraphTraits<BlockFrequencyInfo *> {
|
2017-01-02 19:17:04 +00:00
|
|
|
typedef const BasicBlock *NodeRef;
|
2013-12-22 00:04:03 +00:00
|
|
|
typedef succ_const_iterator ChildIteratorType;
|
2017-01-02 19:17:04 +00:00
|
|
|
typedef pointer_iterator<Function::const_iterator> nodes_iterator;
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
static NodeRef getEntryNode(const BlockFrequencyInfo *G) {
|
2015-12-30 11:46:15 +00:00
|
|
|
return &G->getFunction()->front();
|
2013-12-22 00:04:03 +00:00
|
|
|
}
|
2017-01-02 19:17:04 +00:00
|
|
|
static ChildIteratorType child_begin(const NodeRef N) {
|
2013-12-22 00:04:03 +00:00
|
|
|
return succ_begin(N);
|
|
|
|
}
|
2017-01-02 19:17:04 +00:00
|
|
|
static ChildIteratorType child_end(const NodeRef N) { return succ_end(N); }
|
2013-12-22 00:04:03 +00:00
|
|
|
static nodes_iterator nodes_begin(const BlockFrequencyInfo *G) {
|
2017-01-02 19:17:04 +00:00
|
|
|
return nodes_iterator(G->getFunction()->begin());
|
2013-12-22 00:04:03 +00:00
|
|
|
}
|
|
|
|
static nodes_iterator nodes_end(const BlockFrequencyInfo *G) {
|
2017-01-02 19:17:04 +00:00
|
|
|
return nodes_iterator(G->getFunction()->end());
|
2013-12-22 00:04:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
typedef BFIDOTGraphTraitsBase<BlockFrequencyInfo, BranchProbabilityInfo>
|
|
|
|
BFIDOTGTraitsBase;
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
template <>
|
|
|
|
struct DOTGraphTraits<BlockFrequencyInfo *> : public BFIDOTGTraitsBase {
|
|
|
|
explicit DOTGraphTraits(bool isSimple = false)
|
|
|
|
: BFIDOTGTraitsBase(isSimple) {}
|
2013-12-22 00:04:03 +00:00
|
|
|
|
|
|
|
std::string getNodeLabel(const BasicBlock *Node,
|
|
|
|
const BlockFrequencyInfo *Graph) {
|
2016-07-23 20:41:05 +00:00
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
return BFIDOTGTraitsBase::getNodeLabel(Node, Graph, getGVDT());
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string getNodeAttributes(const BasicBlock *Node,
|
|
|
|
const BlockFrequencyInfo *Graph) {
|
|
|
|
return BFIDOTGTraitsBase::getNodeAttributes(Node, Graph,
|
|
|
|
ViewHotFreqPercent);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getEdgeAttributes(const BasicBlock *Node, EdgeIter EI,
|
|
|
|
const BlockFrequencyInfo *BFI) {
|
|
|
|
return BFIDOTGTraitsBase::getEdgeAttributes(Node, EI, BFI, BFI->getBPI(),
|
|
|
|
ViewHotFreqPercent);
|
2013-12-22 00:04:03 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
BlockFrequencyInfo::BlockFrequencyInfo() {}
|
2011-10-20 21:10:27 +00:00
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
BlockFrequencyInfo::BlockFrequencyInfo(const Function &F,
|
|
|
|
const BranchProbabilityInfo &BPI,
|
|
|
|
const LoopInfo &LI) {
|
|
|
|
calculate(F, BPI, LI);
|
2011-10-20 21:10:27 +00:00
|
|
|
}
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
BlockFrequencyInfo::BlockFrequencyInfo(BlockFrequencyInfo &&Arg)
|
|
|
|
: BFI(std::move(Arg.BFI)) {}
|
|
|
|
|
|
|
|
BlockFrequencyInfo &BlockFrequencyInfo::operator=(BlockFrequencyInfo &&RHS) {
|
|
|
|
releaseMemory();
|
|
|
|
BFI = std::move(RHS.BFI);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Explicitly define the default constructor otherwise it would be implicitly
|
|
|
|
// defined at the first ODR-use which is the BFI member in the
|
|
|
|
// LazyBlockFrequencyInfo header. The dtor needs the BlockFrequencyInfoImpl
|
|
|
|
// template instantiated which is not available in the header.
|
|
|
|
BlockFrequencyInfo::~BlockFrequencyInfo() {}
|
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
bool BlockFrequencyInfo::invalidate(Function &F, const PreservedAnalyses &PA,
|
|
|
|
FunctionAnalysisManager::Invalidator &) {
|
|
|
|
// Check whether the analysis, all analyses on functions, or the function's
|
|
|
|
// CFG have been preserved.
|
|
|
|
auto PAC = PA.getChecker<BlockFrequencyAnalysis>();
|
|
|
|
return !(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>() ||
|
|
|
|
PAC.preservedSet<CFGAnalyses>());
|
|
|
|
}
|
|
|
|
|
2015-12-30 11:46:15 +00:00
|
|
|
void BlockFrequencyInfo::calculate(const Function &F,
|
|
|
|
const BranchProbabilityInfo &BPI,
|
|
|
|
const LoopInfo &LI) {
|
2014-11-24 09:08:18 +00:00
|
|
|
if (!BFI)
|
|
|
|
BFI.reset(new ImplType);
|
2015-12-30 11:46:15 +00:00
|
|
|
BFI->calculate(F, BPI, LI);
|
2016-07-23 20:41:05 +00:00
|
|
|
if (ViewBlockFreqPropagationDAG != GVDT_None &&
|
|
|
|
(ViewBlockFreqFuncName.empty() ||
|
|
|
|
F.getName().equals(ViewBlockFreqFuncName))) {
|
2013-12-22 00:04:03 +00:00
|
|
|
view();
|
2016-07-23 20:41:05 +00:00
|
|
|
}
|
2011-10-20 21:10:27 +00:00
|
|
|
}
|
|
|
|
|
2012-04-14 13:54:10 +00:00
|
|
|
BlockFrequency BlockFrequencyInfo::getBlockFreq(const BasicBlock *BB) const {
|
2014-11-24 09:08:18 +00:00
|
|
|
return BFI ? BFI->getBlockFreq(BB) : 0;
|
2011-10-20 21:10:27 +00:00
|
|
|
}
|
2013-12-22 00:04:03 +00:00
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
Optional<uint64_t>
|
|
|
|
BlockFrequencyInfo::getBlockProfileCount(const BasicBlock *BB) const {
|
|
|
|
if (!BFI)
|
|
|
|
return None;
|
|
|
|
|
|
|
|
return BFI->getBlockProfileCount(*getFunction(), BB);
|
|
|
|
}
|
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
Optional<uint64_t>
|
|
|
|
BlockFrequencyInfo::getProfileCountFromFreq(uint64_t Freq) const {
|
|
|
|
if (!BFI)
|
|
|
|
return None;
|
|
|
|
return BFI->getProfileCountFromFreq(*getFunction(), Freq);
|
|
|
|
}
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
void BlockFrequencyInfo::setBlockFreq(const BasicBlock *BB, uint64_t Freq) {
|
2015-12-30 11:46:15 +00:00
|
|
|
assert(BFI && "Expected analysis to be available");
|
|
|
|
BFI->setBlockFreq(BB, Freq);
|
|
|
|
}
|
|
|
|
|
2017-04-16 16:01:22 +00:00
|
|
|
void BlockFrequencyInfo::setBlockFreqAndScale(
|
|
|
|
const BasicBlock *ReferenceBB, uint64_t Freq,
|
|
|
|
SmallPtrSetImpl<BasicBlock *> &BlocksToScale) {
|
|
|
|
assert(BFI && "Expected analysis to be available");
|
|
|
|
// Use 128 bits APInt to avoid overflow.
|
|
|
|
APInt NewFreq(128, Freq);
|
|
|
|
APInt OldFreq(128, BFI->getBlockFreq(ReferenceBB).getFrequency());
|
|
|
|
APInt BBFreq(128, 0);
|
|
|
|
for (auto *BB : BlocksToScale) {
|
|
|
|
BBFreq = BFI->getBlockFreq(BB).getFrequency();
|
|
|
|
// Multiply first by NewFreq and then divide by OldFreq
|
|
|
|
// to minimize loss of precision.
|
|
|
|
BBFreq *= NewFreq;
|
|
|
|
// udiv is an expensive operation in the general case. If this ends up being
|
|
|
|
// a hot spot, one of the options proposed in
|
|
|
|
// https://reviews.llvm.org/D28535#650071 could be used to avoid this.
|
|
|
|
BBFreq = BBFreq.udiv(OldFreq);
|
|
|
|
BFI->setBlockFreq(BB, BBFreq.getLimitedValue());
|
|
|
|
}
|
|
|
|
BFI->setBlockFreq(ReferenceBB, Freq);
|
|
|
|
}
|
|
|
|
|
2013-12-22 00:04:03 +00:00
|
|
|
/// Pop up a ghostview window with the current block frequency propagation
|
|
|
|
/// rendered using dot.
|
|
|
|
void BlockFrequencyInfo::view() const {
|
|
|
|
ViewGraph(const_cast<BlockFrequencyInfo *>(this), "BlockFrequencyDAGs");
|
|
|
|
}
|
|
|
|
|
|
|
|
const Function *BlockFrequencyInfo::getFunction() const {
|
2014-11-24 09:08:18 +00:00
|
|
|
return BFI ? BFI->getFunction() : nullptr;
|
|
|
|
}
|
|
|
|
|
2016-07-23 20:41:05 +00:00
|
|
|
const BranchProbabilityInfo *BlockFrequencyInfo::getBPI() const {
|
|
|
|
return BFI ? &BFI->getBPI() : nullptr;
|
|
|
|
}
|
|
|
|
|
2014-11-24 09:08:18 +00:00
|
|
|
raw_ostream &BlockFrequencyInfo::
|
|
|
|
printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const {
|
|
|
|
return BFI ? BFI->printBlockFreq(OS, Freq) : OS;
|
|
|
|
}
|
|
|
|
|
|
|
|
raw_ostream &
|
|
|
|
BlockFrequencyInfo::printBlockFreq(raw_ostream &OS,
|
|
|
|
const BasicBlock *BB) const {
|
|
|
|
return BFI ? BFI->printBlockFreq(OS, BB) : OS;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t BlockFrequencyInfo::getEntryFreq() const {
|
|
|
|
return BFI ? BFI->getEntryFreq() : 0;
|
2013-12-22 00:04:03 +00:00
|
|
|
}
|
2015-12-30 11:46:15 +00:00
|
|
|
|
|
|
|
void BlockFrequencyInfo::releaseMemory() { BFI.reset(); }
|
|
|
|
|
|
|
|
void BlockFrequencyInfo::print(raw_ostream &OS) const {
|
|
|
|
if (BFI)
|
|
|
|
BFI->print(OS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
INITIALIZE_PASS_BEGIN(BlockFrequencyInfoWrapperPass, "block-freq",
|
|
|
|
"Block Frequency Analysis", true, true)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(BranchProbabilityInfoWrapperPass)
|
|
|
|
INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
|
|
|
|
INITIALIZE_PASS_END(BlockFrequencyInfoWrapperPass, "block-freq",
|
|
|
|
"Block Frequency Analysis", true, true)
|
|
|
|
|
|
|
|
char BlockFrequencyInfoWrapperPass::ID = 0;
|
|
|
|
|
|
|
|
|
|
|
|
BlockFrequencyInfoWrapperPass::BlockFrequencyInfoWrapperPass()
|
|
|
|
: FunctionPass(ID) {
|
|
|
|
initializeBlockFrequencyInfoWrapperPassPass(*PassRegistry::getPassRegistry());
|
|
|
|
}
|
|
|
|
|
|
|
|
BlockFrequencyInfoWrapperPass::~BlockFrequencyInfoWrapperPass() {}
|
|
|
|
|
|
|
|
void BlockFrequencyInfoWrapperPass::print(raw_ostream &OS,
|
|
|
|
const Module *) const {
|
|
|
|
BFI.print(OS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlockFrequencyInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequired<BranchProbabilityInfoWrapperPass>();
|
|
|
|
AU.addRequired<LoopInfoWrapperPass>();
|
|
|
|
AU.setPreservesAll();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BlockFrequencyInfoWrapperPass::releaseMemory() { BFI.releaseMemory(); }
|
|
|
|
|
|
|
|
bool BlockFrequencyInfoWrapperPass::runOnFunction(Function &F) {
|
|
|
|
BranchProbabilityInfo &BPI =
|
|
|
|
getAnalysis<BranchProbabilityInfoWrapperPass>().getBPI();
|
|
|
|
LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
|
|
|
|
BFI.calculate(F, BPI, LI);
|
|
|
|
return false;
|
|
|
|
}
|
2016-07-23 20:41:05 +00:00
|
|
|
|
2017-01-02 19:17:04 +00:00
|
|
|
AnalysisKey BlockFrequencyAnalysis::Key;
|
2016-07-23 20:41:05 +00:00
|
|
|
BlockFrequencyInfo BlockFrequencyAnalysis::run(Function &F,
|
2017-01-02 19:17:04 +00:00
|
|
|
FunctionAnalysisManager &AM) {
|
2016-07-23 20:41:05 +00:00
|
|
|
BlockFrequencyInfo BFI;
|
|
|
|
BFI.calculate(F, AM.getResult<BranchProbabilityAnalysis>(F),
|
|
|
|
AM.getResult<LoopAnalysis>(F));
|
|
|
|
return BFI;
|
|
|
|
}
|
|
|
|
|
|
|
|
PreservedAnalyses
|
2017-01-02 19:17:04 +00:00
|
|
|
BlockFrequencyPrinterPass::run(Function &F, FunctionAnalysisManager &AM) {
|
2016-07-23 20:41:05 +00:00
|
|
|
OS << "Printing analysis results of BFI for function "
|
|
|
|
<< "'" << F.getName() << "':"
|
|
|
|
<< "\n";
|
|
|
|
AM.getResult<BlockFrequencyAnalysis>(F).print(OS);
|
|
|
|
return PreservedAnalyses::all();
|
|
|
|
}
|