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