LLVM  8.0.1
LazyMachineBlockFrequencyInfo.h
Go to the documentation of this file.
1 ///===- LazyMachineBlockFrequencyInfo.h - Lazy Block Frequency -*- C++ -*--===//
2 ///
3 /// The LLVM Compiler Infrastructure
4 ///
5 /// This file is distributed under the University of Illinois Open Source
6 /// License. See LICENSE.TXT for details.
7 ///
8 ///===---------------------------------------------------------------------===//
9 /// \file
10 /// This is an alternative analysis pass to MachineBlockFrequencyInfo. The
11 /// difference is that with this pass the block frequencies are not computed
12 /// when the analysis pass is executed but rather when the BFI result is
13 /// explicitly requested by the analysis client.
14 ///
15 ///===---------------------------------------------------------------------===//
16 
17 #ifndef LLVM_ANALYSIS_LAZYMACHINEBLOCKFREQUENCYINFO_H
18 #define LLVM_ANALYSIS_LAZYMACHINEBLOCKFREQUENCYINFO_H
19 
24 
25 namespace llvm {
26 /// This is an alternative analysis pass to MachineBlockFrequencyInfo.
27 /// The difference is that with this pass, the block frequencies are not
28 /// computed when the analysis pass is executed but rather when the BFI result
29 /// is explicitly requested by the analysis client.
30 ///
31 /// This works by checking querying if MBFI is available and otherwise
32 /// generating MBFI on the fly. In this case the passes required for (LI, DT)
33 /// are also queried before being computed on the fly.
34 ///
35 /// Note that it is expected that we wouldn't need this functionality for the
36 /// new PM since with the new PM, analyses are executed on demand.
37 
39 private:
40  /// If generated on the fly this own the instance.
41  mutable std::unique_ptr<MachineBlockFrequencyInfo> OwnedMBFI;
42 
43  /// If generated on the fly this own the instance.
44  mutable std::unique_ptr<MachineLoopInfo> OwnedMLI;
45 
46  /// If generated on the fly this own the instance.
47  mutable std::unique_ptr<MachineDominatorTree> OwnedMDT;
48 
49  /// The function.
50  MachineFunction *MF = nullptr;
51 
52  /// Calculate MBFI and all other analyses that's not available and
53  /// required by BFI.
54  MachineBlockFrequencyInfo &calculateIfNotAvailable() const;
55 
56 public:
57  static char ID;
58 
60 
61  /// Compute and return the block frequencies.
62  MachineBlockFrequencyInfo &getBFI() { return calculateIfNotAvailable(); }
63 
64  /// Compute and return the block frequencies.
66  return calculateIfNotAvailable();
67  }
68 
69  void getAnalysisUsage(AnalysisUsage &AU) const override;
70 
71  bool runOnMachineFunction(MachineFunction &F) override;
72  void releaseMemory() override;
73  void print(raw_ostream &OS, const Module *M) const override;
74 };
75 }
76 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
const MachineBlockFrequencyInfo & getBFI() const
Compute and return the block frequencies.
MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate machine basic b...
F(f)
void print(raw_ostream &OS, const Module *M) const override
print - Print out the internal state of the pass.
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
MachineBlockFrequencyInfo & getBFI()
Compute and return the block frequencies.
bool runOnMachineFunction(MachineFunction &F) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
This is an alternative analysis pass to MachineBlockFrequencyInfo.
Represent the analysis usage information of a pass.
void releaseMemory() override
releaseMemory() - This member can be implemented by a pass if it wants to be able to release its memo...
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46