Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 1 | //===- MachineBlockFrequencyInfo.h - MBB Frequency Analysis -----*- C++ -*-===// |
| 2 | // |
Andrew Walbran | 16937d0 | 2019-10-22 13:54:20 +0100 | [diff] [blame] | 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 |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | // |
| 9 | // Loops should be simplified before this analysis. |
| 10 | // |
| 11 | //===----------------------------------------------------------------------===// |
| 12 | |
| 13 | #ifndef LLVM_CODEGEN_MACHINEBLOCKFREQUENCYINFO_H |
| 14 | #define LLVM_CODEGEN_MACHINEBLOCKFREQUENCYINFO_H |
| 15 | |
| 16 | #include "llvm/ADT/Optional.h" |
| 17 | #include "llvm/CodeGen/MachineFunctionPass.h" |
| 18 | #include "llvm/Support/BlockFrequency.h" |
| 19 | #include <cstdint> |
| 20 | #include <memory> |
| 21 | |
| 22 | namespace llvm { |
| 23 | |
| 24 | template <class BlockT> class BlockFrequencyInfoImpl; |
| 25 | class MachineBasicBlock; |
| 26 | class MachineBranchProbabilityInfo; |
| 27 | class MachineFunction; |
| 28 | class MachineLoopInfo; |
| 29 | class raw_ostream; |
| 30 | |
| 31 | /// MachineBlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation |
| 32 | /// to estimate machine basic block frequencies. |
| 33 | class MachineBlockFrequencyInfo : public MachineFunctionPass { |
| 34 | using ImplType = BlockFrequencyInfoImpl<MachineBasicBlock>; |
| 35 | std::unique_ptr<ImplType> MBFI; |
| 36 | |
| 37 | public: |
| 38 | static char ID; |
| 39 | |
| 40 | MachineBlockFrequencyInfo(); |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 41 | explicit MachineBlockFrequencyInfo(MachineFunction &F, |
| 42 | MachineBranchProbabilityInfo &MBPI, |
| 43 | MachineLoopInfo &MLI); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 44 | ~MachineBlockFrequencyInfo() override; |
| 45 | |
| 46 | void getAnalysisUsage(AnalysisUsage &AU) const override; |
| 47 | |
| 48 | bool runOnMachineFunction(MachineFunction &F) override; |
| 49 | |
| 50 | /// calculate - compute block frequency info for the given function. |
| 51 | void calculate(const MachineFunction &F, |
| 52 | const MachineBranchProbabilityInfo &MBPI, |
| 53 | const MachineLoopInfo &MLI); |
| 54 | |
| 55 | void releaseMemory() override; |
| 56 | |
| 57 | /// getblockFreq - Return block frequency. Return 0 if we don't have the |
| 58 | /// information. Please note that initial frequency is equal to 1024. It means |
| 59 | /// that we should not rely on the value itself, but only on the comparison to |
| 60 | /// the other block frequencies. We do this to avoid using of floating points. |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 61 | /// For example, to get the frequency of a block relative to the entry block, |
| 62 | /// divide the integral value returned by this function (the |
| 63 | /// BlockFrequency::getFrequency() value) by getEntryFreq(). |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 64 | BlockFrequency getBlockFreq(const MachineBasicBlock *MBB) const; |
| 65 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 66 | /// Compute the frequency of the block, relative to the entry block. |
| 67 | /// This API assumes getEntryFreq() is non-zero. |
| 68 | float getBlockFreqRelativeToEntryBlock(const MachineBasicBlock *MBB) const { |
| 69 | return getBlockFreq(MBB).getFrequency() * (1.0f / getEntryFreq()); |
| 70 | } |
| 71 | |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 72 | Optional<uint64_t> getBlockProfileCount(const MachineBasicBlock *MBB) const; |
| 73 | Optional<uint64_t> getProfileCountFromFreq(uint64_t Freq) const; |
| 74 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 75 | bool isIrrLoopHeader(const MachineBasicBlock *MBB) const; |
| 76 | |
| 77 | /// incrementally calculate block frequencies when we split edges, to avoid |
| 78 | /// full CFG traversal. |
| 79 | void onEdgeSplit(const MachineBasicBlock &NewPredecessor, |
| 80 | const MachineBasicBlock &NewSuccessor, |
| 81 | const MachineBranchProbabilityInfo &MBPI); |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 82 | |
| 83 | const MachineFunction *getFunction() const; |
| 84 | const MachineBranchProbabilityInfo *getMBPI() const; |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 85 | |
| 86 | /// Pop up a ghostview window with the current block frequency propagation |
| 87 | /// rendered using dot. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 88 | void view(const Twine &Name, bool isSimple = true) const; |
| 89 | |
| 90 | // Print the block frequency Freq to OS using the current functions entry |
| 91 | // frequency to convert freq into a relative decimal form. |
| 92 | raw_ostream &printBlockFreq(raw_ostream &OS, const BlockFrequency Freq) const; |
| 93 | |
| 94 | // Convenience method that attempts to look up the frequency associated with |
| 95 | // BB and print it to OS. |
| 96 | raw_ostream &printBlockFreq(raw_ostream &OS, |
| 97 | const MachineBasicBlock *MBB) const; |
| 98 | |
Olivier Deprez | f4ef2d0 | 2021-04-20 13:36:24 +0200 | [diff] [blame] | 99 | /// Divide a block's BlockFrequency::getFrequency() value by this value to |
| 100 | /// obtain the entry block - relative frequency of said block. |
Andrew Scull | 5e1ddfa | 2018-08-14 10:06:54 +0100 | [diff] [blame] | 101 | uint64_t getEntryFreq() const; |
| 102 | }; |
| 103 | |
| 104 | } // end namespace llvm |
| 105 | |
| 106 | #endif // LLVM_CODEGEN_MACHINEBLOCKFREQUENCYINFO_H |