1 //===- LazyBranchProbabilityInfo.cpp - Lazy Branch Probability Analysis ---===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This is an alternative analysis pass to BranchProbabilityInfoWrapperPass.
11 // The difference is that with this pass the branch probabilities are not
12 // computed when the analysis pass is executed but rather when the BPI results
13 // is explicitly requested by the analysis client.
15 //===----------------------------------------------------------------------===//
17 #include "llvm/Analysis/LazyBranchProbabilityInfo.h"
18 #include "llvm/Analysis/LoopInfo.h"
19 #include "llvm/Analysis/TargetLibraryInfo.h"
20 #include "llvm/IR/Dominators.h"
24 #define DEBUG_TYPE "lazy-branch-prob"
26 INITIALIZE_PASS_BEGIN(LazyBranchProbabilityInfoPass
, DEBUG_TYPE
,
27 "Lazy Branch Probability Analysis", true, true)
28 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass
)
29 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass
)
30 INITIALIZE_PASS_END(LazyBranchProbabilityInfoPass
, DEBUG_TYPE
,
31 "Lazy Branch Probability Analysis", true, true)
33 char LazyBranchProbabilityInfoPass::ID
= 0;
35 LazyBranchProbabilityInfoPass::LazyBranchProbabilityInfoPass()
37 initializeLazyBranchProbabilityInfoPassPass(*PassRegistry::getPassRegistry());
40 void LazyBranchProbabilityInfoPass::print(raw_ostream
&OS
,
41 const Module
*) const {
42 LBPI
->getCalculated().print(OS
);
45 void LazyBranchProbabilityInfoPass::getAnalysisUsage(AnalysisUsage
&AU
) const {
46 // We require DT so it's available when LI is available. The LI updating code
47 // asserts that DT is also present so if we don't make sure that we have DT
48 // here, that assert will trigger.
49 AU
.addRequired
<DominatorTreeWrapperPass
>();
50 AU
.addRequired
<LoopInfoWrapperPass
>();
51 AU
.addRequired
<TargetLibraryInfoWrapperPass
>();
55 void LazyBranchProbabilityInfoPass::releaseMemory() { LBPI
.reset(); }
57 bool LazyBranchProbabilityInfoPass::runOnFunction(Function
&F
) {
58 LoopInfo
&LI
= getAnalysis
<LoopInfoWrapperPass
>().getLoopInfo();
59 TargetLibraryInfo
&TLI
= getAnalysis
<TargetLibraryInfoWrapperPass
>().getTLI();
60 LBPI
= llvm::make_unique
<LazyBranchProbabilityInfo
>(&F
, &LI
, &TLI
);
64 void LazyBranchProbabilityInfoPass::getLazyBPIAnalysisUsage(AnalysisUsage
&AU
) {
65 AU
.addRequired
<LazyBranchProbabilityInfoPass
>();
66 AU
.addRequired
<LoopInfoWrapperPass
>();
67 AU
.addRequired
<TargetLibraryInfoWrapperPass
>();
70 void llvm::initializeLazyBPIPassPass(PassRegistry
&Registry
) {
71 INITIALIZE_PASS_DEPENDENCY(LazyBranchProbabilityInfoPass
);
72 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass
);
73 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass
);