1 //===- RegisterClassInfo.cpp - Dynamic Register Class Info ----------------===//
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 file implements the RegisterClassInfo class which provides dynamic
10 // information about target register classes. Callee-saved vs. caller-saved and
11 // reserved registers depend on calling conventions and other dynamic
12 // information, so some things cannot be determined statically.
14 //===----------------------------------------------------------------------===//
16 #include "llvm/CodeGen/RegisterClassInfo.h"
17 #include "llvm/ADT/ArrayRef.h"
18 #include "llvm/ADT/BitVector.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/CodeGen/MachineFunction.h"
21 #include "llvm/CodeGen/MachineRegisterInfo.h"
22 #include "llvm/CodeGen/TargetRegisterInfo.h"
23 #include "llvm/CodeGen/TargetSubtargetInfo.h"
24 #include "llvm/MC/MCRegisterInfo.h"
25 #include "llvm/Support/CommandLine.h"
26 #include "llvm/Support/Debug.h"
27 #include "llvm/Support/raw_ostream.h"
34 #define DEBUG_TYPE "regalloc"
36 static cl::opt
<unsigned>
37 StressRA("stress-regalloc", cl::Hidden
, cl::init(0), cl::value_desc("N"),
38 cl::desc("Limit all regclasses to N registers"));
40 RegisterClassInfo::RegisterClassInfo() = default;
42 void RegisterClassInfo::runOnMachineFunction(const MachineFunction
&mf
) {
46 auto &STI
= MF
->getSubtarget();
48 // Allocate new array the first time we see a new target.
49 if (STI
.getRegisterInfo() != TRI
) {
50 TRI
= STI
.getRegisterInfo();
51 RegClass
.reset(new RCInfo
[TRI
->getNumRegClasses()]);
55 // Test if CSRs have changed from the previous function.
56 const MachineRegisterInfo
&MRI
= MF
->getRegInfo();
57 const MCPhysReg
*CSR
= MRI
.getCalleeSavedRegs();
58 bool CSRChanged
= true;
61 size_t LastSize
= LastCalleeSavedRegs
.size();
62 for (unsigned I
= 0;; ++I
) {
64 CSRChanged
= I
!= LastSize
;
71 if (CSR
[I
] != LastCalleeSavedRegs
[I
]) {
78 // Get the callee saved registers.
80 LastCalleeSavedRegs
.clear();
81 // Build a CSRAlias map. Every CSR alias saves the last
83 CalleeSavedAliases
.assign(TRI
->getNumRegUnits(), 0);
84 for (const MCPhysReg
*I
= CSR
; *I
; ++I
) {
85 for (MCRegUnit U
: TRI
->regunits(*I
))
86 CalleeSavedAliases
[U
] = *I
;
87 LastCalleeSavedRegs
.push_back(*I
);
93 // Even if CSR list is same, we could have had a different allocation order
94 // if ignoreCSRForAllocationOrder is evaluated differently.
95 BitVector
CSRHintsForAllocOrder(TRI
->getNumRegs());
96 for (const MCPhysReg
*I
= CSR
; *I
; ++I
)
97 for (MCRegAliasIterator
AI(*I
, TRI
, true); AI
.isValid(); ++AI
)
98 CSRHintsForAllocOrder
[*AI
] = STI
.ignoreCSRForAllocationOrder(mf
, *AI
);
99 if (IgnoreCSRForAllocOrder
!= CSRHintsForAllocOrder
) {
101 IgnoreCSRForAllocOrder
= CSRHintsForAllocOrder
;
104 RegCosts
= TRI
->getRegisterCosts(*MF
);
106 // Different reserved registers?
107 const BitVector
&RR
= MF
->getRegInfo().getReservedRegs();
108 if (RR
!= Reserved
) {
113 // Invalidate cached information from previous function.
115 unsigned NumPSets
= TRI
->getNumRegPressureSets();
116 PSetLimits
.reset(new unsigned[NumPSets
]);
117 std::fill(&PSetLimits
[0], &PSetLimits
[NumPSets
], 0);
122 /// compute - Compute the preferred allocation order for RC with reserved
123 /// registers filtered out. Volatile registers come first followed by CSR
124 /// aliases ordered according to the CSR order specified by the target.
125 void RegisterClassInfo::compute(const TargetRegisterClass
*RC
) const {
126 assert(RC
&& "no register class given");
127 RCInfo
&RCI
= RegClass
[RC
->getID()];
128 auto &STI
= MF
->getSubtarget();
130 // Raw register count, including all reserved regs.
131 unsigned NumRegs
= RC
->getNumRegs();
134 RCI
.Order
.reset(new MCPhysReg
[NumRegs
]);
137 SmallVector
<MCPhysReg
, 16> CSRAlias
;
138 uint8_t MinCost
= uint8_t(~0u);
139 uint8_t LastCost
= uint8_t(~0u);
140 unsigned LastCostChange
= 0;
142 // FIXME: Once targets reserve registers instead of removing them from the
143 // allocation order, we can simply use begin/end here.
144 ArrayRef
<MCPhysReg
> RawOrder
= RC
->getRawAllocationOrder(*MF
);
145 for (unsigned PhysReg
: RawOrder
) {
146 // Remove reserved registers from the allocation order.
147 if (Reserved
.test(PhysReg
))
149 uint8_t Cost
= RegCosts
[PhysReg
];
150 MinCost
= std::min(MinCost
, Cost
);
152 if (getLastCalleeSavedAlias(PhysReg
) &&
153 !STI
.ignoreCSRForAllocationOrder(*MF
, PhysReg
))
154 // PhysReg aliases a CSR, save it for later.
155 CSRAlias
.push_back(PhysReg
);
157 if (Cost
!= LastCost
)
159 RCI
.Order
[N
++] = PhysReg
;
163 RCI
.NumRegs
= N
+ CSRAlias
.size();
164 assert(RCI
.NumRegs
<= NumRegs
&& "Allocation order larger than regclass");
166 // CSR aliases go after the volatile registers, preserve the target's order.
167 for (unsigned PhysReg
: CSRAlias
) {
168 uint8_t Cost
= RegCosts
[PhysReg
];
169 if (Cost
!= LastCost
)
171 RCI
.Order
[N
++] = PhysReg
;
175 // Register allocator stress test. Clip register class to N registers.
176 if (StressRA
&& RCI
.NumRegs
> StressRA
)
177 RCI
.NumRegs
= StressRA
;
179 // Check if RC is a proper sub-class.
180 if (const TargetRegisterClass
*Super
=
181 TRI
->getLargestLegalSuperClass(RC
, *MF
))
182 if (Super
!= RC
&& getNumAllocatableRegs(Super
) > RCI
.NumRegs
)
183 RCI
.ProperSubClass
= true;
185 RCI
.MinCost
= MinCost
;
186 RCI
.LastCostChange
= LastCostChange
;
189 dbgs() << "AllocationOrder(" << TRI
->getRegClassName(RC
) << ") = [";
190 for (unsigned I
= 0; I
!= RCI
.NumRegs
; ++I
)
191 dbgs() << ' ' << printReg(RCI
.Order
[I
], TRI
);
192 dbgs() << (RCI
.ProperSubClass
? " ] (sub-class)\n" : " ]\n");
195 // RCI is now up-to-date.
199 /// This is not accurate because two overlapping register sets may have some
200 /// nonoverlapping reserved registers. However, computing the allocation order
201 /// for all register classes would be too expensive.
202 unsigned RegisterClassInfo::computePSetLimit(unsigned Idx
) const {
203 const TargetRegisterClass
*RC
= nullptr;
204 unsigned NumRCUnits
= 0;
205 for (const TargetRegisterClass
*C
: TRI
->regclasses()) {
206 const int *PSetID
= TRI
->getRegClassPressureSets(C
);
207 for (; *PSetID
!= -1; ++PSetID
) {
208 if ((unsigned)*PSetID
== Idx
)
214 // Found a register class that counts against this pressure set.
215 // For efficiency, only compute the set order for the largest set.
216 unsigned NUnits
= TRI
->getRegClassWeight(C
).WeightLimit
;
217 if (!RC
|| NUnits
> NumRCUnits
) {
222 assert(RC
&& "Failed to find register class");
224 unsigned NAllocatableRegs
= getNumAllocatableRegs(RC
);
225 unsigned RegPressureSetLimit
= TRI
->getRegPressureSetLimit(*MF
, Idx
);
226 // If all the regs are reserved, return raw RegPressureSetLimit.
227 // One example is VRSAVERC in PowerPC.
228 // Avoid returning zero, getRegPressureSetLimit(Idx) assumes computePSetLimit
229 // return non-zero value.
230 if (NAllocatableRegs
== 0)
231 return RegPressureSetLimit
;
232 unsigned NReserved
= RC
->getNumRegs() - NAllocatableRegs
;
233 return RegPressureSetLimit
- TRI
->getRegClassWeight(RC
).RegWeight
* NReserved
;