LLVM  8.0.1
RegisterClassInfo.h
Go to the documentation of this file.
1 //===- RegisterClassInfo.h - Dynamic Register Class Info --------*- 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 //
10 // This file implements the RegisterClassInfo class which provides dynamic
11 // information about target register classes. Callee saved and reserved
12 // registers depends on calling conventions and other dynamic information, so
13 // some things cannot be determined statically.
14 //
15 //===----------------------------------------------------------------------===//
16 
17 #ifndef LLVM_CODEGEN_REGISTERCLASSINFO_H
18 #define LLVM_CODEGEN_REGISTERCLASSINFO_H
19 
20 #include "llvm/ADT/ArrayRef.h"
21 #include "llvm/ADT/BitVector.h"
22 #include "llvm/ADT/SmallVector.h"
24 #include "llvm/MC/MCRegisterInfo.h"
25 #include <cassert>
26 #include <cstdint>
27 #include <memory>
28 
29 namespace llvm {
30 
32  struct RCInfo {
33  unsigned Tag = 0;
34  unsigned NumRegs = 0;
35  bool ProperSubClass = false;
36  uint8_t MinCost = 0;
37  uint16_t LastCostChange = 0;
38  std::unique_ptr<MCPhysReg[]> Order;
39 
40  RCInfo() = default;
41 
42  operator ArrayRef<MCPhysReg>() const {
43  return makeArrayRef(Order.get(), NumRegs);
44  }
45  };
46 
47  // Brief cached information for each register class.
48  std::unique_ptr<RCInfo[]> RegClass;
49 
50  // Tag changes whenever cached information needs to be recomputed. An RCInfo
51  // entry is valid when its tag matches.
52  unsigned Tag = 0;
53 
54  const MachineFunction *MF = nullptr;
55  const TargetRegisterInfo *TRI = nullptr;
56 
57  // Callee saved registers of last MF. Assumed to be valid until the next
58  // runOnFunction() call.
59  // Used only to determine if an update was made to CalleeSavedAliases.
60  const MCPhysReg *CalleeSavedRegs = nullptr;
61 
62  // Map register alias to the callee saved Register.
63  SmallVector<MCPhysReg, 4> CalleeSavedAliases;
64 
65  // Reserved registers in the current MF.
66  BitVector Reserved;
67 
68  std::unique_ptr<unsigned[]> PSetLimits;
69 
70  // Compute all information about RC.
71  void compute(const TargetRegisterClass *RC) const;
72 
73  // Return an up-to-date RCInfo for RC.
74  const RCInfo &get(const TargetRegisterClass *RC) const {
75  const RCInfo &RCI = RegClass[RC->getID()];
76  if (Tag != RCI.Tag)
77  compute(RC);
78  return RCI;
79  }
80 
81 public:
83 
84  /// runOnFunction - Prepare to answer questions about MF. This must be called
85  /// before any other methods are used.
86  void runOnMachineFunction(const MachineFunction &MF);
87 
88  /// getNumAllocatableRegs - Returns the number of actually allocatable
89  /// registers in RC in the current function.
90  unsigned getNumAllocatableRegs(const TargetRegisterClass *RC) const {
91  return get(RC).NumRegs;
92  }
93 
94  /// getOrder - Returns the preferred allocation order for RC. The order
95  /// contains no reserved registers, and registers that alias callee saved
96  /// registers come last.
98  return get(RC);
99  }
100 
101  /// isProperSubClass - Returns true if RC has a legal super-class with more
102  /// allocatable registers.
103  ///
104  /// Register classes like GR32_NOSP are not proper sub-classes because %esp
105  /// is not allocatable. Similarly, tGPR is not a proper sub-class in Thumb
106  /// mode because the GPR super-class is not legal.
107  bool isProperSubClass(const TargetRegisterClass *RC) const {
108  return get(RC).ProperSubClass;
109  }
110 
111  /// getLastCalleeSavedAlias - Returns the last callee saved register that
112  /// overlaps PhysReg, or 0 if Reg doesn't overlap a CalleeSavedAliases.
113  unsigned getLastCalleeSavedAlias(unsigned PhysReg) const {
115  if (PhysReg < CalleeSavedAliases.size())
116  return CalleeSavedAliases[PhysReg];
117  return 0;
118  }
119 
120  /// Get the minimum register cost in RC's allocation order.
121  /// This is the smallest value returned by TRI->getCostPerUse(Reg) for all
122  /// the registers in getOrder(RC).
123  unsigned getMinCost(const TargetRegisterClass *RC) {
124  return get(RC).MinCost;
125  }
126 
127  /// Get the position of the last cost change in getOrder(RC).
128  ///
129  /// All registers in getOrder(RC).slice(getLastCostChange(RC)) will have the
130  /// same cost according to TRI->getCostPerUse().
132  return get(RC).LastCostChange;
133  }
134 
135  /// Get the register unit limit for the given pressure set index.
136  ///
137  /// RegisterClassInfo adjusts this limit for reserved registers.
138  unsigned getRegPressureSetLimit(unsigned Idx) const {
139  if (!PSetLimits[Idx])
140  PSetLimits[Idx] = computePSetLimit(Idx);
141  return PSetLimits[Idx];
142  }
143 
144 protected:
145  unsigned computePSetLimit(unsigned Idx) const;
146 };
147 
148 } // end namespace llvm
149 
150 #endif // LLVM_CODEGEN_REGISTERCLASSINFO_H
ArrayRef< MCPhysReg > getOrder(const TargetRegisterClass *RC) const
getOrder - Returns the preferred allocation order for RC.
This class represents lattice values for constants.
Definition: AllocatorList.h:24
unsigned computePSetLimit(unsigned Idx) const
This is not accurate because two overlapping register sets may have some nonoverlapping reserved regi...
unsigned const TargetRegisterInfo * TRI
unsigned getRegPressureSetLimit(unsigned Idx) const
Get the register unit limit for the given pressure set index.
ArrayRef< T > makeArrayRef(const T &OneElt)
Construct an ArrayRef from a single element.
Definition: ArrayRef.h:451
unsigned getID() const
Return the register class ID number.
unsigned getLastCostChange(const TargetRegisterClass *RC)
Get the position of the last cost change in getOrder(RC).
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
unsigned getNumAllocatableRegs(const TargetRegisterClass *RC) const
getNumAllocatableRegs - Returns the number of actually allocatable registers in RC in the current fun...
void runOnMachineFunction(const MachineFunction &MF)
runOnFunction - Prepare to answer questions about MF.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
size_t size() const
Definition: SmallVector.h:53
static bool isPhysicalRegister(unsigned Reg)
Return true if the specified register number is in the physical register namespace.
unsigned getLastCalleeSavedAlias(unsigned PhysReg) const
getLastCalleeSavedAlias - Returns the last callee saved register that overlaps PhysReg, or 0 if Reg doesn&#39;t overlap a CalleeSavedAliases.
unsigned getMinCost(const TargetRegisterClass *RC)
Get the minimum register cost in RC&#39;s allocation order.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
bool isProperSubClass(const TargetRegisterClass *RC) const
isProperSubClass - Returns true if RC has a legal super-class with more allocatable registers...