LLVM 24.0.0git
SIPreAllocateWWMRegs.cpp
Go to the documentation of this file.
1//===- SIPreAllocateWWMRegs.cpp - WWM Register Pre-allocation -------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10/// Pass to pre-allocated WWM registers
11//
12//===----------------------------------------------------------------------===//
13
15#include "AMDGPU.h"
16#include "GCNSubtarget.h"
26
27using namespace llvm;
28
29#define DEBUG_TYPE "si-pre-allocate-wwm-regs"
30
31static cl::opt<bool>
32 EnablePreallocateSGPRSpillVGPRs("amdgpu-prealloc-sgpr-spill-vgprs",
33 cl::init(false), cl::Hidden);
34
37 MF.getFunction().hasFnAttribute("amdgpu-prealloc-sgpr-spill-vgprs");
38}
39
40namespace {
41
42class SIPreAllocateWWMRegs {
43private:
44 const SIInstrInfo *TII;
45 const SIRegisterInfo *TRI;
47 LiveIntervals *LIS;
49 VirtRegMap *VRM;
51
52 std::vector<unsigned> RegsToRewrite;
53#ifndef NDEBUG
54 void printWWMInfo(const MachineInstr &MI);
55#endif
56 bool processDef(MachineOperand &MO);
57 void rewriteRegs(MachineFunction &MF);
58
59public:
60 SIPreAllocateWWMRegs(LiveIntervals *LIS, LiveRegMatrix *Matrix,
62 : LIS(LIS), Matrix(Matrix), VRM(VRM), RCI(RCI) {}
63 bool run(MachineFunction &MF);
64};
65
66class SIPreAllocateWWMRegsLegacy : public MachineFunctionPass {
67public:
68 static char ID;
69
70 SIPreAllocateWWMRegsLegacy() : MachineFunctionPass(ID) {}
71
72 bool runOnMachineFunction(MachineFunction &MF) override;
73
74 void getAnalysisUsage(AnalysisUsage &AU) const override {
75 AU.addRequired<LiveIntervalsWrapperPass>();
76 AU.addRequired<VirtRegMapWrapperLegacy>();
77 AU.addRequired<LiveRegMatrixWrapperLegacy>();
78 AU.addRequired<MachineRegisterClassInfoWrapperPass>();
79 AU.setPreservesAll();
81 }
82};
83
84} // End anonymous namespace.
85
86INITIALIZE_PASS_BEGIN(SIPreAllocateWWMRegsLegacy, DEBUG_TYPE,
87 "SI Pre-allocate WWM Registers", false, false)
92INITIALIZE_PASS_END(SIPreAllocateWWMRegsLegacy, DEBUG_TYPE,
93 "SI Pre-allocate WWM Registers", false, false)
94
95char SIPreAllocateWWMRegsLegacy::ID = 0;
96
97char &llvm::SIPreAllocateWWMRegsLegacyID = SIPreAllocateWWMRegsLegacy::ID;
98
100 return new SIPreAllocateWWMRegsLegacy();
101}
102
103bool SIPreAllocateWWMRegs::processDef(MachineOperand &MO) {
104 Register Reg = MO.getReg();
105 if (Reg.isPhysical())
106 return false;
107
109 return false;
110
111 if (VRM->hasPhys(Reg))
112 return false;
113
114 LiveInterval &LI = LIS->getInterval(Reg);
115
116 for (MCRegister PhysReg : RCI.getOrder(MRI->getRegClass(Reg))) {
117 if (!MRI->isPhysRegUsed(PhysReg, /*SkipRegMaskTest=*/true) &&
118 Matrix->checkInterference(LI, PhysReg) == LiveRegMatrix::IK_Free) {
119 Matrix->assign(LI, PhysReg);
120 assert(PhysReg != 0);
121 RegsToRewrite.push_back(Reg);
122 return true;
123 }
124 }
125
126 llvm_unreachable("physreg not found for WWM expression");
127}
128
129void SIPreAllocateWWMRegs::rewriteRegs(MachineFunction &MF) {
130 for (MachineBasicBlock &MBB : MF) {
131 for (MachineInstr &MI : MBB) {
132 for (MachineOperand &MO : MI.operands()) {
133 if (!MO.isReg())
134 continue;
135
136 const Register VirtReg = MO.getReg();
137 if (VirtReg.isPhysical())
138 continue;
139
140 if (!VirtReg.isValid())
141 continue;
142
143 if (!VRM->hasPhys(VirtReg))
144 continue;
145
146 Register PhysReg = VRM->getPhys(VirtReg);
147 const unsigned SubReg = MO.getSubReg();
148 if (SubReg != 0) {
149 PhysReg = TRI->getSubReg(PhysReg, SubReg);
150 MO.setSubReg(0);
151 }
152
153 MO.setReg(PhysReg);
154 MO.setIsRenamable(false);
155 }
156 }
157 }
158
159 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
160
161 for (unsigned Reg : RegsToRewrite) {
162 const Register PhysReg = VRM->getPhys(Reg);
163 assert(PhysReg != 0);
164
165 LiveInterval &LI = LIS->getInterval(Reg);
166 Matrix->unassign(LI, /*ClearAllReferencingSegments=*/true);
167 LIS->removeInterval(Reg);
168
169 MFI->reserveWWMRegister(PhysReg);
170 }
171
172 RegsToRewrite.clear();
173
174 // Update the set of reserved registers to include WWM ones
175 // without unnecessarily invalidating RegClassInfo.
176 MRI->freezeReservedRegs();
178}
179
180#ifndef NDEBUG
182SIPreAllocateWWMRegs::printWWMInfo(const MachineInstr &MI) {
183
184 unsigned Opc = MI.getOpcode();
185
186 if (Opc == AMDGPU::ENTER_STRICT_WWM || Opc == AMDGPU::ENTER_STRICT_WQM) {
187 dbgs() << "Entering ";
188 } else {
189 assert(Opc == AMDGPU::EXIT_STRICT_WWM || Opc == AMDGPU::EXIT_STRICT_WQM);
190 dbgs() << "Exiting ";
191 }
192
193 if (Opc == AMDGPU::ENTER_STRICT_WWM || Opc == AMDGPU::EXIT_STRICT_WWM) {
194 dbgs() << "Strict WWM ";
195 } else {
196 assert(Opc == AMDGPU::ENTER_STRICT_WQM || Opc == AMDGPU::EXIT_STRICT_WQM);
197 dbgs() << "Strict WQM ";
198 }
199
200 dbgs() << "region: " << MI;
201}
202
203#endif
204
205bool SIPreAllocateWWMRegsLegacy::runOnMachineFunction(MachineFunction &MF) {
206 auto *LIS = &getAnalysis<LiveIntervalsWrapperPass>().getLIS();
207 auto *Matrix = &getAnalysis<LiveRegMatrixWrapperLegacy>().getLRM();
208 auto *VRM = &getAnalysis<VirtRegMapWrapperLegacy>().getVRM();
209 auto &RCI = getAnalysis<MachineRegisterClassInfoWrapperPass>().getRCI();
210 return SIPreAllocateWWMRegs(LIS, Matrix, VRM, RCI).run(MF);
211}
212
213bool SIPreAllocateWWMRegs::run(MachineFunction &MF) {
214 LLVM_DEBUG(dbgs() << "SIPreAllocateWWMRegs: function " << MF.getName() << "\n");
215
216 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
217
218 TII = ST.getInstrInfo();
219 TRI = &TII->getRegisterInfo();
220 MRI = &MF.getRegInfo();
221
222 bool PreallocateSGPRSpillVGPRs = isPreallocateSGPRSpillVGPRsEnabled(MF);
223
224 bool RegsAssigned = false;
225
226 // We use a reverse post-order traversal of the control-flow graph to
227 // guarantee that we visit definitions in dominance order. Since WWM
228 // expressions are guaranteed to never involve phi nodes, and we can only
229 // escape WWM through the special WWM instruction, this means that this is a
230 // perfect elimination order, so we can never do any better.
231 ReversePostOrderTraversal<MachineFunction*> RPOT(&MF);
232
233 for (MachineBasicBlock *MBB : RPOT) {
234 bool InWWM = false;
235 for (MachineInstr &MI : *MBB) {
236 if (MI.getOpcode() == AMDGPU::SI_SPILL_S32_TO_VGPR) {
237 if (PreallocateSGPRSpillVGPRs)
238 RegsAssigned |= processDef(MI.getOperand(0));
239 continue;
240 }
241
242 if (MI.getOpcode() == AMDGPU::ENTER_STRICT_WWM ||
243 MI.getOpcode() == AMDGPU::ENTER_STRICT_WQM) {
244 LLVM_DEBUG(printWWMInfo(MI));
245 InWWM = true;
246 continue;
247 }
248
249 if (MI.getOpcode() == AMDGPU::EXIT_STRICT_WWM ||
250 MI.getOpcode() == AMDGPU::EXIT_STRICT_WQM) {
251 LLVM_DEBUG(printWWMInfo(MI));
252 InWWM = false;
253 }
254
255 if (!InWWM)
256 continue;
257
258 LLVM_DEBUG(dbgs() << "Processing " << MI);
259
260 for (MachineOperand &DefOpnd : MI.defs()) {
261 RegsAssigned |= processDef(DefOpnd);
262 }
263 }
264 }
265
266 if (!RegsAssigned)
267 return false;
268
269 rewriteRegs(MF);
270 return true;
271}
272
273PreservedAnalyses
276 auto *LIS = &MFAM.getResult<LiveIntervalsAnalysis>(MF);
277 auto *Matrix = &MFAM.getResult<LiveRegMatrixAnalysis>(MF);
278 auto *VRM = &MFAM.getResult<VirtRegMapAnalysis>(MF);
279 auto &RCI = MFAM.getResult<MachineRegisterClassAnalysis>(MF);
280 SIPreAllocateWWMRegs(LIS, Matrix, VRM, RCI).run(MF);
281 return PreservedAnalyses::all();
282}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock & MBB
#define LLVM_DUMP_METHOD
Mark debug helper function definitions like dump() that should not be stripped from debug builds.
Definition Compiler.h:678
AMD GCN specific subclass of TargetSubtarget.
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
Live Register Matrix
Register Reg
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
#define INITIALIZE_PASS_DEPENDENCY(depName)
Definition PassSupport.h:42
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
Definition PassSupport.h:44
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
Definition PassSupport.h:39
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
static cl::opt< bool > EnablePreallocateSGPRSpillVGPRs("amdgpu-prealloc-sgpr-spill-vgprs", cl::init(false), cl::Hidden)
#define LLVM_DEBUG(...)
Definition Debug.h:119
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
AnalysisUsage & addRequired()
void setPreservesAll()
Set by analyses that do not transform their input at all.
FunctionPass class - This class is used to implement most global optimizations.
Definition Pass.h:314
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition Function.cpp:730
const HexagonRegisterInfo & getRegisterInfo() const
LiveInterval - This class represents the liveness of a register, or stack slot.
LiveInterval & getInterval(Register Reg)
void removeInterval(Register Reg)
Interval removal.
@ IK_Free
No interference, go ahead and assign.
Wrapper class representing physical registers. Should be passed by value.
Definition MCRegister.h:41
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Representation of each machine instruction.
MachineOperand class - Representation of each machine instruction operand.
void setSubReg(unsigned subReg)
unsigned getSubReg() const
LLVM_ABI void setIsRenamable(bool Val=true)
bool isReg() const
isReg - Tests if this is a MO_Register operand.
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
Register getReg() const
getReg - Returns the register number.
Result run(MachineFunction &, MachineFunctionAnalysisManager &)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI void freezeReservedRegs()
freezeReservedRegs - Called by the register allocator to freeze the set of reserved registers before ...
const TargetRegisterClass * getRegClass(Register Reg) const
Return the register class of the specified virtual register.
const BitVector & getReservedRegs() const
getReservedRegs - Returns a reference to the frozen set of reserved registers.
LLVM_ABI bool isPhysRegUsed(MCRegister PhysReg, bool SkipRegMaskTest=false) const
Return true if the specified register is modified or read in this function.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
LLVM_ABI void updateReservedRegs(const BitVector &ReservedInput)
Update cached register class information using ReservedInput, MRI's current reserved-register set.
ArrayRef< MCPhysReg > getOrder(const TargetRegisterClass *RC) const
getOrder - Returns the preferred allocation order for RC.
Wrapper class representing virtual and physical registers.
Definition Register.h:20
constexpr bool isValid() const
Definition Register.h:112
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
Definition Register.h:83
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
static bool hasVGPRs(const TargetRegisterClass *RC)
MCRegister getPhys(Register virtReg) const
returns the physical register mapped to the specified virtual register
Definition VirtRegMap.h:91
bool hasPhys(Register virtReg) const
returns true if the specified virtual register is mapped to a physical register
Definition VirtRegMap.h:87
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
initializer< Ty > init(const Ty &Val)
PointerTypeMap run(const Module &M)
Compute the PointerTypeMap for the module M.
This is an optimization pass for GlobalISel generic memory operations.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
FunctionPass * createSIPreAllocateWWMRegsLegacyPass()
char & SIPreAllocateWWMRegsLegacyID
bool isPreallocateSGPRSpillVGPRsEnabled(const MachineFunction &MF)