1 //===- LazyBlockFrequencyInfo.h - Lazy Block Frequency Analysis -*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This is an alternative analysis pass to BlockFrequencyInfoWrapperPass. The
10 // difference is that with this pass the block frequencies are not computed when
11 // the analysis pass is executed but rather when the BFI result is explicitly
12 // requested by the analysis client.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_ANALYSIS_LAZYBLOCKFREQUENCYINFO_H
17 #define LLVM_ANALYSIS_LAZYBLOCKFREQUENCYINFO_H
19 #include "llvm/Analysis/BlockFrequencyInfo.h"
20 #include "llvm/Analysis/LazyBranchProbabilityInfo.h"
21 #include "llvm/Pass.h"
25 class BranchProbabilityInfo
;
29 /// Wraps a BFI to allow lazy computation of the block frequencies.
31 /// A pass that only conditionally uses BFI can uncondtionally require the
32 /// analysis without paying for the overhead if BFI doesn't end up being used.
33 template <typename FunctionT
, typename BranchProbabilityInfoPassT
,
34 typename LoopInfoT
, typename BlockFrequencyInfoT
>
35 class LazyBlockFrequencyInfo
{
37 LazyBlockFrequencyInfo()
38 : Calculated(false), F(nullptr), BPIPass(nullptr), LI(nullptr) {}
40 /// Set up the per-function input.
41 void setAnalysis(const FunctionT
*F
, BranchProbabilityInfoPassT
*BPIPass
,
42 const LoopInfoT
*LI
) {
44 this->BPIPass
= BPIPass
;
48 /// Retrieve the BFI with the block frequencies computed.
49 BlockFrequencyInfoT
&getCalculated() {
51 assert(F
&& BPIPass
&& LI
&& "call setAnalysis");
53 *F
, BPIPassTrait
<BranchProbabilityInfoPassT
>::getBPI(BPIPass
), *LI
);
59 const BlockFrequencyInfoT
&getCalculated() const {
60 return const_cast<LazyBlockFrequencyInfo
*>(this)->getCalculated();
63 void releaseMemory() {
66 setAnalysis(nullptr, nullptr, nullptr);
70 BlockFrequencyInfoT BFI
;
73 BranchProbabilityInfoPassT
*BPIPass
;
77 /// This is an alternative analysis pass to
78 /// BlockFrequencyInfoWrapperPass. The difference is that with this pass the
79 /// block frequencies are not computed when the analysis pass is executed but
80 /// rather when the BFI result is explicitly requested by the analysis client.
82 /// There are some additional requirements for any client pass that wants to use
85 /// 1. The pass needs to initialize dependent passes with:
87 /// INITIALIZE_PASS_DEPENDENCY(LazyBFIPass)
89 /// 2. Similarly, getAnalysisUsage should call:
91 /// LazyBlockFrequencyInfoPass::getLazyBFIAnalysisUsage(AU)
93 /// 3. The computed BFI should be requested with
94 /// getAnalysis<LazyBlockFrequencyInfoPass>().getBFI() before either LoopInfo
95 /// or BPI could be invalidated for example by changing the CFG.
97 /// Note that it is expected that we wouldn't need this functionality for the
98 /// new PM since with the new PM, analyses are executed on demand.
100 class LazyBlockFrequencyInfoPass
: public FunctionPass
{
102 LazyBlockFrequencyInfo
<Function
, LazyBranchProbabilityInfoPass
, LoopInfo
,
109 LazyBlockFrequencyInfoPass();
111 /// Compute and return the block frequencies.
112 BlockFrequencyInfo
&getBFI() { return LBFI
.getCalculated(); }
114 /// Compute and return the block frequencies.
115 const BlockFrequencyInfo
&getBFI() const { return LBFI
.getCalculated(); }
117 void getAnalysisUsage(AnalysisUsage
&AU
) const override
;
119 /// Helper for client passes to set up the analysis usage on behalf of this
121 static void getLazyBFIAnalysisUsage(AnalysisUsage
&AU
);
123 bool runOnFunction(Function
&F
) override
;
124 void releaseMemory() override
;
125 void print(raw_ostream
&OS
, const Module
*M
) const override
;
128 /// Helper for client passes to initialize dependent passes for LBFI.
129 void initializeLazyBFIPassPass(PassRegistry
&Registry
);