2013-07-12 23:09:43 +00:00
|
|
|
//===------- BlockFrequencyInfo.h - Block Frequency Analysis --*- C++ -*---===//
|
2011-06-23 21:56:59 +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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-07-25 19:25:40 +00:00
|
|
|
#ifndef LLVM_ANALYSIS_BLOCKFREQUENCYINFO_H
|
|
|
|
#define LLVM_ANALYSIS_BLOCKFREQUENCYINFO_H
|
2011-06-23 21:56:59 +00:00
|
|
|
|
|
|
|
#include "llvm/Pass.h"
|
2011-07-27 22:05:51 +00:00
|
|
|
#include "llvm/Support/BlockFrequency.h"
|
2011-06-23 21:56:59 +00:00
|
|
|
#include <climits>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class BranchProbabilityInfo;
|
|
|
|
template<class BlockT, class FunctionT, class BranchProbInfoT>
|
|
|
|
class BlockFrequencyImpl;
|
|
|
|
|
2011-07-25 19:25:40 +00:00
|
|
|
/// BlockFrequencyInfo pass uses BlockFrequencyImpl implementation to estimate
|
2011-06-23 21:56:59 +00:00
|
|
|
/// IR basic block frequencies.
|
2011-07-25 19:25:40 +00:00
|
|
|
class BlockFrequencyInfo : public FunctionPass {
|
2011-06-23 21:56:59 +00:00
|
|
|
|
|
|
|
BlockFrequencyImpl<BasicBlock, Function, BranchProbabilityInfo> *BFI;
|
|
|
|
|
|
|
|
public:
|
|
|
|
static char ID;
|
|
|
|
|
2011-07-25 19:25:40 +00:00
|
|
|
BlockFrequencyInfo();
|
2011-06-23 21:56:59 +00:00
|
|
|
|
2011-07-25 19:25:40 +00:00
|
|
|
~BlockFrequencyInfo();
|
2011-06-23 21:56:59 +00:00
|
|
|
|
|
|
|
void getAnalysisUsage(AnalysisUsage &AU) const;
|
|
|
|
|
|
|
|
bool runOnFunction(Function &F);
|
2011-10-19 10:12:41 +00:00
|
|
|
void print(raw_ostream &O, const Module *M) const;
|
2011-06-23 21:56:59 +00:00
|
|
|
|
2011-07-22 02:24:57 +00:00
|
|
|
/// getblockFreq - Return block frequency. Return 0 if we don't have the
|
2013-06-25 13:34:40 +00:00
|
|
|
/// information. Please note that initial frequency is equal to ENTRY_FREQ. It
|
|
|
|
/// means that we should not rely on the value itself, but only on the
|
|
|
|
/// comparison to the other block frequencies. We do this to avoid using of
|
|
|
|
/// floating points.
|
2011-12-20 20:03:10 +00:00
|
|
|
BlockFrequency getBlockFreq(const BasicBlock *BB) const;
|
2011-06-23 21:56:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|