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"
29
30using namespace llvm;
31
32#define DEBUG_TYPE "si-pre-allocate-wwm-regs"
33
34static cl::opt<bool>
35 EnablePreallocateSGPRSpillVGPRs("amdgpu-prealloc-sgpr-spill-vgprs",
36 cl::init(false), cl::Hidden);
37
38namespace {
39
40class SIPreAllocateWWMRegs {
41private:
42 const SIInstrInfo *TII;
43 const SIRegisterInfo *TRI;
45 LiveIntervals *LIS;
47 VirtRegMap *VRM;
48 const RegisterClassInfo &RegClassInfo;
49
50 std::vector<unsigned> RegsToRewrite;
51#ifndef NDEBUG
52 void printWWMInfo(const MachineInstr &MI);
53#endif
54 bool processDef(MachineOperand &MO);
55 void rewriteRegs(MachineFunction &MF);
56
57public:
58 SIPreAllocateWWMRegs(LiveIntervals *LIS, LiveRegMatrix *Matrix,
59 VirtRegMap *VRM, const RegisterClassInfo &RCI)
60 : LIS(LIS), Matrix(Matrix), VRM(VRM), RegClassInfo(RCI) {}
61 bool run(MachineFunction &MF);
62};
63
64class SIPreAllocateWWMRegsLegacy : public MachineFunctionPass {
65public:
66 static char ID;
67
68 SIPreAllocateWWMRegsLegacy() : MachineFunctionPass(ID) {}
69
70 bool runOnMachineFunction(MachineFunction &MF) override;
71
72 void getAnalysisUsage(AnalysisUsage &AU) const override {
73 AU.addRequired<LiveIntervalsWrapperPass>();
74 AU.addRequired<VirtRegMapWrapperLegacy>();
75 AU.addRequired<LiveRegMatrixWrapperLegacy>();
76 // TODO: Update RCI with the additional reserved registers the pass sets.
77 AU.addRequired<MachineRegisterClassInfoWrapperPass>();
78 AU.setPreservesCFG();
79 AU.addPreserved<LiveIntervalsWrapperPass>();
80 AU.addPreserved<SlotIndexesWrapperPass>();
81 AU.addPreserved<VirtRegMapWrapperLegacy>();
82 AU.addPreserved<LiveRegMatrixWrapperLegacy>();
83 AU.addPreserved<LiveDebugVariablesWrapperLegacy>();
85 }
86};
87
88} // End anonymous namespace.
89
90INITIALIZE_PASS_BEGIN(SIPreAllocateWWMRegsLegacy, DEBUG_TYPE,
91 "SI Pre-allocate WWM Registers", false, false)
96INITIALIZE_PASS_END(SIPreAllocateWWMRegsLegacy, DEBUG_TYPE,
97 "SI Pre-allocate WWM Registers", false, false)
98
99char SIPreAllocateWWMRegsLegacy::ID = 0;
100
101char &llvm::SIPreAllocateWWMRegsLegacyID = SIPreAllocateWWMRegsLegacy::ID;
102
104 return new SIPreAllocateWWMRegsLegacy();
105}
106
107bool SIPreAllocateWWMRegs::processDef(MachineOperand &MO) {
108 Register Reg = MO.getReg();
109 if (Reg.isPhysical())
110 return false;
111
113 return false;
114
115 if (VRM->hasPhys(Reg))
116 return false;
117
118 LiveInterval &LI = LIS->getInterval(Reg);
119
120 for (MCRegister PhysReg : RegClassInfo.getOrder(MRI->getRegClass(Reg))) {
121 if (!MRI->isPhysRegUsed(PhysReg, /*SkipRegMaskTest=*/true) &&
122 Matrix->checkInterference(LI, PhysReg) == LiveRegMatrix::IK_Free) {
123 Matrix->assign(LI, PhysReg);
124 assert(PhysReg != 0);
125 RegsToRewrite.push_back(Reg);
126 return true;
127 }
128 }
129
130 llvm_unreachable("physreg not found for WWM expression");
131}
132
133void SIPreAllocateWWMRegs::rewriteRegs(MachineFunction &MF) {
134 for (MachineBasicBlock &MBB : MF) {
135 for (MachineInstr &MI : MBB) {
136 for (MachineOperand &MO : MI.operands()) {
137 if (!MO.isReg())
138 continue;
139
140 const Register VirtReg = MO.getReg();
141 if (VirtReg.isPhysical())
142 continue;
143
144 if (!VirtReg.isValid())
145 continue;
146
147 if (!VRM->hasPhys(VirtReg))
148 continue;
149
150 Register PhysReg = VRM->getPhys(VirtReg);
151 const unsigned SubReg = MO.getSubReg();
152 if (SubReg != 0) {
153 PhysReg = TRI->getSubReg(PhysReg, SubReg);
154 MO.setSubReg(0);
155 }
156
157 MO.setReg(PhysReg);
158 MO.setIsRenamable(false);
159 }
160 }
161 }
162
163 SIMachineFunctionInfo *MFI = MF.getInfo<SIMachineFunctionInfo>();
164
165 for (unsigned Reg : RegsToRewrite) {
166 const Register PhysReg = VRM->getPhys(Reg);
167 assert(PhysReg != 0);
168
169 LiveInterval &LI = LIS->getInterval(Reg);
170 Matrix->unassign(LI, /*ClearAllReferencingSegments=*/true);
171 LIS->removeInterval(Reg);
172
173 MFI->reserveWWMRegister(PhysReg);
174 }
175
176 RegsToRewrite.clear();
177
178 // Update the set of reserved registers to include WWM ones.
179 MRI->freezeReservedRegs();
180}
181
182#ifndef NDEBUG
184SIPreAllocateWWMRegs::printWWMInfo(const MachineInstr &MI) {
185
186 unsigned Opc = MI.getOpcode();
187
188 if (Opc == AMDGPU::ENTER_STRICT_WWM || Opc == AMDGPU::ENTER_STRICT_WQM) {
189 dbgs() << "Entering ";
190 } else {
191 assert(Opc == AMDGPU::EXIT_STRICT_WWM || Opc == AMDGPU::EXIT_STRICT_WQM);
192 dbgs() << "Exiting ";
193 }
194
195 if (Opc == AMDGPU::ENTER_STRICT_WWM || Opc == AMDGPU::EXIT_STRICT_WWM) {
196 dbgs() << "Strict WWM ";
197 } else {
198 assert(Opc == AMDGPU::ENTER_STRICT_WQM || Opc == AMDGPU::EXIT_STRICT_WQM);
199 dbgs() << "Strict WQM ";
200 }
201
202 dbgs() << "region: " << MI;
203}
204
205#endif
206
207bool SIPreAllocateWWMRegsLegacy::runOnMachineFunction(MachineFunction &MF) {
208 auto *LIS = &getAnalysis<LiveIntervalsWrapperPass>().getLIS();
209 auto *Matrix = &getAnalysis<LiveRegMatrixWrapperLegacy>().getLRM();
210 auto *VRM = &getAnalysis<VirtRegMapWrapperLegacy>().getVRM();
211 const auto &RCI = getAnalysis<MachineRegisterClassInfoWrapperPass>().getRCI();
212 return SIPreAllocateWWMRegs(LIS, Matrix, VRM, RCI).run(MF);
213}
214
215bool SIPreAllocateWWMRegs::run(MachineFunction &MF) {
216 LLVM_DEBUG(dbgs() << "SIPreAllocateWWMRegs: function " << MF.getName() << "\n");
217
218 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
219
220 TII = ST.getInstrInfo();
221 TRI = &TII->getRegisterInfo();
222 MRI = &MF.getRegInfo();
223
224 bool PreallocateSGPRSpillVGPRs =
226 MF.getFunction().hasFnAttribute("amdgpu-prealloc-sgpr-spill-vgprs");
227
228 bool RegsAssigned = false;
229
230 // We use a reverse post-order traversal of the control-flow graph to
231 // guarantee that we visit definitions in dominance order. Since WWM
232 // expressions are guaranteed to never involve phi nodes, and we can only
233 // escape WWM through the special WWM instruction, this means that this is a
234 // perfect elimination order, so we can never do any better.
235 ReversePostOrderTraversal<MachineFunction*> RPOT(&MF);
236
237 for (MachineBasicBlock *MBB : RPOT) {
238 bool InWWM = false;
239 for (MachineInstr &MI : *MBB) {
240 if (MI.getOpcode() == AMDGPU::SI_SPILL_S32_TO_VGPR) {
241 if (PreallocateSGPRSpillVGPRs)
242 RegsAssigned |= processDef(MI.getOperand(0));
243 continue;
244 }
245
246 if (MI.getOpcode() == AMDGPU::ENTER_STRICT_WWM ||
247 MI.getOpcode() == AMDGPU::ENTER_STRICT_WQM) {
248 LLVM_DEBUG(printWWMInfo(MI));
249 InWWM = true;
250 continue;
251 }
252
253 if (MI.getOpcode() == AMDGPU::EXIT_STRICT_WWM ||
254 MI.getOpcode() == AMDGPU::EXIT_STRICT_WQM) {
255 LLVM_DEBUG(printWWMInfo(MI));
256 InWWM = false;
257 }
258
259 if (!InWWM)
260 continue;
261
262 LLVM_DEBUG(dbgs() << "Processing " << MI);
263
264 for (MachineOperand &DefOpnd : MI.defs()) {
265 RegsAssigned |= processDef(DefOpnd);
266 }
267 }
268 }
269
270 if (!RegsAssigned)
271 return false;
272
273 rewriteRegs(MF);
274 return true;
275}
276
277PreservedAnalyses
280 auto *LIS = &MFAM.getResult<LiveIntervalsAnalysis>(MF);
281 auto *Matrix = &MFAM.getResult<LiveRegMatrixAnalysis>(MF);
282 auto *VRM = &MFAM.getResult<VirtRegMapAnalysis>(MF);
283 const auto &RCI = MFAM.getResult<MachineRegisterClassAnalysis>(MF);
284 SIPreAllocateWWMRegs(LIS, Matrix, VRM, RCI).run(MF);
285 // The pass reserves WWM registers, invalidating RegisterClassInfo's
286 // allocation order, so it cannot be preserved (see the legacy
287 // getAnalysisUsage above).
290 return PA;
291}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Provides AMDGPU specific target descriptions.
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()
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition Pass.cpp:275
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:727
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.
LLVM_ABI bool isPhysRegUsed(MCRegister PhysReg, bool SkipRegMaskTest=false) const
Return true if the specified register is modified or read in this function.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses & abandon()
Mark an analysis as abandoned.
Definition Analysis.h:171
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)
DXILDebugInfoMap run(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