diff options
author | Quentin Colombet <qcolombet@apple.com> | 2016-05-20 17:54:09 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2016-05-20 17:54:09 +0000 |
commit | 0a2adaeedd5d87443cfae45ed9cf8d53c0d22381 (patch) | |
tree | 20f9578f094d6802fbd6cc763409691029da659a /include | |
parent | 8ffc17cd96f379ac205d176e2166b383f7af12ce (diff) |
[RegBankSelect] Use frequency and probability information to compute
more precise cost in Greedy mode.
In Fast mode the cost is irrelevant so do not bother requiring that
those passes get scheduled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270244 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/GlobalISel/RegBankSelect.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/GlobalISel/RegBankSelect.h b/include/llvm/CodeGen/GlobalISel/RegBankSelect.h index c08c69adb6b..5d300198e15 100644 --- a/include/llvm/CodeGen/GlobalISel/RegBankSelect.h +++ b/include/llvm/CodeGen/GlobalISel/RegBankSelect.h @@ -71,6 +71,8 @@ namespace llvm { // Forward declarations. class BlockFrequency; +class MachineBranchProbabilityInfo; +class MachineBlockFrequencyInfo; class MachineRegisterInfo; class TargetRegisterInfo; @@ -460,6 +462,14 @@ private: /// Information on the register classes for the current function. const TargetRegisterInfo *TRI; + /// Get the frequency of blocks. + /// This is required for non-fast mode. + MachineBlockFrequencyInfo *MBFI; + + /// Get the frequency of the edges. + /// This is required for non-fast mode. + MachineBranchProbabilityInfo *MBPI; + /// Helper class used for every code morphing. MachineIRBuilder MIRBuilder; @@ -555,6 +565,8 @@ public: return "RegBankSelect"; } + void getAnalysisUsage(AnalysisUsage &AU) const override; + /// Walk through \p MF and assign a register bank to every virtual register /// that are still mapped to nothing. /// The target needs to provide a RegisterBankInfo and in particular |