LLVM 19.0.0git
SIMachineFunctionInfo.cpp
Go to the documentation of this file.
1//===- SIMachineFunctionInfo.cpp - SI Machine Function Info ---------------===//
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
10#include "AMDGPUSubtarget.h"
11#include "AMDGPUTargetMachine.h"
12#include "GCNSubtarget.h"
14#include "SIRegisterInfo.h"
22#include "llvm/IR/CallingConv.h"
24#include "llvm/IR/Function.h"
25#include <cassert>
26#include <optional>
27#include <vector>
28
29#define MAX_LANES 64
30
31using namespace llvm;
32
34 const SITargetLowering *TLI = STI->getTargetLowering();
35 return static_cast<const GCNTargetMachine &>(TLI->getTargetMachine());
36}
37
39 const GCNSubtarget *STI)
40 : AMDGPUMachineFunction(F, *STI), Mode(F, *STI), GWSResourcePSV(getTM(STI)),
41 UserSGPRInfo(F, *STI), WorkGroupIDX(false), WorkGroupIDY(false),
42 WorkGroupIDZ(false), WorkGroupInfo(false), LDSKernelId(false),
43 PrivateSegmentWaveByteOffset(false), WorkItemIDX(false),
44 WorkItemIDY(false), WorkItemIDZ(false), ImplicitArgPtr(false),
45 GITPtrHigh(0xffffffff), HighBitsOf32BitAddress(0) {
46 const GCNSubtarget &ST = *static_cast<const GCNSubtarget *>(STI);
47 FlatWorkGroupSizes = ST.getFlatWorkGroupSizes(F);
48 WavesPerEU = ST.getWavesPerEU(F);
49 MaxNumWorkGroups = ST.getMaxNumWorkGroups(F);
50 assert(MaxNumWorkGroups.size() == 3);
51
52 Occupancy = ST.computeOccupancy(F, getLDSSize());
53 CallingConv::ID CC = F.getCallingConv();
54
55 VRegFlags.reserve(1024);
56
57 const bool IsKernel = CC == CallingConv::AMDGPU_KERNEL ||
59
60 if (IsKernel) {
61 WorkGroupIDX = true;
62 WorkItemIDX = true;
63 } else if (CC == CallingConv::AMDGPU_PS) {
64 PSInputAddr = AMDGPU::getInitialPSInputAddr(F);
65 }
66
67 MayNeedAGPRs = ST.hasMAIInsts();
68
69 if (AMDGPU::isChainCC(CC)) {
70 // Chain functions don't receive an SP from their caller, but are free to
71 // set one up. For now, we can use s32 to match what amdgpu_gfx functions
72 // would use if called, but this can be revisited.
73 // FIXME: Only reserve this if we actually need it.
74 StackPtrOffsetReg = AMDGPU::SGPR32;
75
76 ScratchRSrcReg = AMDGPU::SGPR48_SGPR49_SGPR50_SGPR51;
77
78 ArgInfo.PrivateSegmentBuffer =
79 ArgDescriptor::createRegister(ScratchRSrcReg);
80
81 ImplicitArgPtr = false;
82 } else if (!isEntryFunction()) {
85
86 // TODO: Pick a high register, and shift down, similar to a kernel.
87 FrameOffsetReg = AMDGPU::SGPR33;
88 StackPtrOffsetReg = AMDGPU::SGPR32;
89
90 if (!ST.enableFlatScratch()) {
91 // Non-entry functions have no special inputs for now, other registers
92 // required for scratch access.
93 ScratchRSrcReg = AMDGPU::SGPR0_SGPR1_SGPR2_SGPR3;
94
95 ArgInfo.PrivateSegmentBuffer =
96 ArgDescriptor::createRegister(ScratchRSrcReg);
97 }
98
99 if (!F.hasFnAttribute("amdgpu-no-implicitarg-ptr"))
100 ImplicitArgPtr = true;
101 } else {
102 ImplicitArgPtr = false;
103 MaxKernArgAlign = std::max(ST.getAlignmentForImplicitArgPtr(),
105
106 if (ST.hasGFX90AInsts() &&
107 ST.getMaxNumVGPRs(F) <= AMDGPU::VGPR_32RegClass.getNumRegs() &&
108 !mayUseAGPRs(F))
109 MayNeedAGPRs = false; // We will select all MAI with VGPR operands.
110 }
111
112 if (!AMDGPU::isGraphics(CC) ||
113 (CC == CallingConv::AMDGPU_CS && ST.hasArchitectedSGPRs())) {
114 if (IsKernel || !F.hasFnAttribute("amdgpu-no-workgroup-id-x"))
115 WorkGroupIDX = true;
116
117 if (!F.hasFnAttribute("amdgpu-no-workgroup-id-y"))
118 WorkGroupIDY = true;
119
120 if (!F.hasFnAttribute("amdgpu-no-workgroup-id-z"))
121 WorkGroupIDZ = true;
122 }
123
124 if (!AMDGPU::isGraphics(CC)) {
125 if (IsKernel || !F.hasFnAttribute("amdgpu-no-workitem-id-x"))
126 WorkItemIDX = true;
127
128 if (!F.hasFnAttribute("amdgpu-no-workitem-id-y") &&
129 ST.getMaxWorkitemID(F, 1) != 0)
130 WorkItemIDY = true;
131
132 if (!F.hasFnAttribute("amdgpu-no-workitem-id-z") &&
133 ST.getMaxWorkitemID(F, 2) != 0)
134 WorkItemIDZ = true;
135
136 if (!IsKernel && !F.hasFnAttribute("amdgpu-no-lds-kernel-id"))
137 LDSKernelId = true;
138 }
139
140 if (isEntryFunction()) {
141 // X, XY, and XYZ are the only supported combinations, so make sure Y is
142 // enabled if Z is.
143 if (WorkItemIDZ)
144 WorkItemIDY = true;
145
146 if (!ST.flatScratchIsArchitected()) {
147 PrivateSegmentWaveByteOffset = true;
148
149 // HS and GS always have the scratch wave offset in SGPR5 on GFX9.
150 if (ST.getGeneration() >= AMDGPUSubtarget::GFX9 &&
152 ArgInfo.PrivateSegmentWaveByteOffset =
153 ArgDescriptor::createRegister(AMDGPU::SGPR5);
154 }
155 }
156
157 Attribute A = F.getFnAttribute("amdgpu-git-ptr-high");
158 StringRef S = A.getValueAsString();
159 if (!S.empty())
160 S.consumeInteger(0, GITPtrHigh);
161
162 A = F.getFnAttribute("amdgpu-32bit-address-high-bits");
163 S = A.getValueAsString();
164 if (!S.empty())
165 S.consumeInteger(0, HighBitsOf32BitAddress);
166
167 // On GFX908, in order to guarantee copying between AGPRs, we need a scratch
168 // VGPR available at all times. For now, reserve highest available VGPR. After
169 // RA, shift it to the lowest available unused VGPR if the one exist.
170 if (ST.hasMAIInsts() && !ST.hasGFX90AInsts()) {
171 VGPRForAGPRCopy =
172 AMDGPU::VGPR_32RegClass.getRegister(ST.getMaxNumVGPRs(F) - 1);
173 }
174}
175
177 BumpPtrAllocator &Allocator, MachineFunction &DestMF,
179 const {
180 return DestMF.cloneInfo<SIMachineFunctionInfo>(*this);
181}
182
185 const GCNSubtarget& ST = MF.getSubtarget<GCNSubtarget>();
186 limitOccupancy(ST.getOccupancyWithLocalMemSize(getLDSSize(),
187 MF.getFunction()));
188}
189
191 const SIRegisterInfo &TRI) {
192 ArgInfo.PrivateSegmentBuffer =
193 ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
194 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SGPR_128RegClass));
195 NumUserSGPRs += 4;
196 return ArgInfo.PrivateSegmentBuffer.getRegister();
197}
198
200 ArgInfo.DispatchPtr = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
201 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
202 NumUserSGPRs += 2;
203 return ArgInfo.DispatchPtr.getRegister();
204}
205
207 ArgInfo.QueuePtr = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
208 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
209 NumUserSGPRs += 2;
210 return ArgInfo.QueuePtr.getRegister();
211}
212
214 ArgInfo.KernargSegmentPtr
215 = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
216 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
217 NumUserSGPRs += 2;
218 return ArgInfo.KernargSegmentPtr.getRegister();
219}
220
222 ArgInfo.DispatchID = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
223 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
224 NumUserSGPRs += 2;
225 return ArgInfo.DispatchID.getRegister();
226}
227
229 ArgInfo.FlatScratchInit = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
230 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
231 NumUserSGPRs += 2;
232 return ArgInfo.FlatScratchInit.getRegister();
233}
234
236 ArgInfo.ImplicitBufferPtr = ArgDescriptor::createRegister(TRI.getMatchingSuperReg(
237 getNextUserSGPR(), AMDGPU::sub0, &AMDGPU::SReg_64RegClass));
238 NumUserSGPRs += 2;
239 return ArgInfo.ImplicitBufferPtr.getRegister();
240}
241
243 ArgInfo.LDSKernelId = ArgDescriptor::createRegister(getNextUserSGPR());
244 NumUserSGPRs += 1;
245 return ArgInfo.LDSKernelId.getRegister();
246}
247
249 const SIRegisterInfo &TRI, const TargetRegisterClass *RC,
250 unsigned AllocSizeDWord, int KernArgIdx, int PaddingSGPRs) {
251 assert(!ArgInfo.PreloadKernArgs.count(KernArgIdx) &&
252 "Preload kernel argument allocated twice.");
253 NumUserSGPRs += PaddingSGPRs;
254 // If the available register tuples are aligned with the kernarg to be
255 // preloaded use that register, otherwise we need to use a set of SGPRs and
256 // merge them.
257 Register PreloadReg =
258 TRI.getMatchingSuperReg(getNextUserSGPR(), AMDGPU::sub0, RC);
259 if (PreloadReg &&
260 (RC == &AMDGPU::SReg_32RegClass || RC == &AMDGPU::SReg_64RegClass)) {
261 ArgInfo.PreloadKernArgs[KernArgIdx].Regs.push_back(PreloadReg);
262 NumUserSGPRs += AllocSizeDWord;
263 } else {
264 for (unsigned I = 0; I < AllocSizeDWord; ++I) {
265 ArgInfo.PreloadKernArgs[KernArgIdx].Regs.push_back(getNextUserSGPR());
266 NumUserSGPRs++;
267 }
268 }
269
270 // Track the actual number of SGPRs that HW will preload to.
271 UserSGPRInfo.allocKernargPreloadSGPRs(AllocSizeDWord + PaddingSGPRs);
272 return &ArgInfo.PreloadKernArgs[KernArgIdx].Regs;
273}
274
276 uint64_t Size, Align Alignment) {
277 // Skip if it is an entry function or the register is already added.
278 if (isEntryFunction() || WWMSpills.count(VGPR))
279 return;
280
281 // Skip if this is a function with the amdgpu_cs_chain or
282 // amdgpu_cs_chain_preserve calling convention and this is a scratch register.
283 // We never need to allocate a spill for these because we don't even need to
284 // restore the inactive lanes for them (they're scratchier than the usual
285 // scratch registers).
287 return;
288
289 WWMSpills.insert(std::make_pair(
290 VGPR, MF.getFrameInfo().CreateSpillStackObject(Size, Alignment)));
291}
292
293// Separate out the callee-saved and scratch registers.
295 MachineFunction &MF,
296 SmallVectorImpl<std::pair<Register, int>> &CalleeSavedRegs,
297 SmallVectorImpl<std::pair<Register, int>> &ScratchRegs) const {
298 const MCPhysReg *CSRegs = MF.getRegInfo().getCalleeSavedRegs();
299 for (auto &Reg : WWMSpills) {
300 if (isCalleeSavedReg(CSRegs, Reg.first))
301 CalleeSavedRegs.push_back(Reg);
302 else
303 ScratchRegs.push_back(Reg);
304 }
305}
306
308 MCPhysReg Reg) const {
309 for (unsigned I = 0; CSRegs[I]; ++I) {
310 if (CSRegs[I] == Reg)
311 return true;
312 }
313
314 return false;
315}
316
318 MachineFunction &MF) {
319 const SIRegisterInfo *TRI = MF.getSubtarget<GCNSubtarget>().getRegisterInfo();
321 for (unsigned I = 0, E = SpillPhysVGPRs.size(); I < E; ++I) {
322 Register Reg = SpillPhysVGPRs[I];
323 Register NewReg =
324 TRI->findUnusedRegister(MRI, &AMDGPU::VGPR_32RegClass, MF);
325 if (!NewReg || NewReg >= Reg)
326 break;
327
328 MRI.replaceRegWith(Reg, NewReg);
329
330 // Update various tables with the new VGPR.
331 SpillPhysVGPRs[I] = NewReg;
332 WWMReservedRegs.remove(Reg);
333 WWMReservedRegs.insert(NewReg);
334 WWMSpills.insert(std::make_pair(NewReg, WWMSpills[Reg]));
335 WWMSpills.erase(Reg);
336
337 for (MachineBasicBlock &MBB : MF) {
338 MBB.removeLiveIn(Reg);
340 }
341 }
342}
343
344bool SIMachineFunctionInfo::allocateVirtualVGPRForSGPRSpills(
345 MachineFunction &MF, int FI, unsigned LaneIndex) {
347 Register LaneVGPR;
348 if (!LaneIndex) {
349 LaneVGPR = MRI.createVirtualRegister(&AMDGPU::VGPR_32RegClass);
350 SpillVGPRs.push_back(LaneVGPR);
351 } else {
352 LaneVGPR = SpillVGPRs.back();
353 }
354
355 SGPRSpillsToVirtualVGPRLanes[FI].push_back(
356 SIRegisterInfo::SpilledReg(LaneVGPR, LaneIndex));
357 return true;
358}
359
360bool SIMachineFunctionInfo::allocatePhysicalVGPRForSGPRSpills(
361 MachineFunction &MF, int FI, unsigned LaneIndex, bool IsPrologEpilog) {
363 const SIRegisterInfo *TRI = ST.getRegisterInfo();
365 Register LaneVGPR;
366 if (!LaneIndex) {
367 // Find the highest available register if called before RA to ensure the
368 // lowest registers are available for allocation. The LaneVGPR, in that
369 // case, will be shifted back to the lowest range after VGPR allocation.
370 LaneVGPR = TRI->findUnusedRegister(MRI, &AMDGPU::VGPR_32RegClass, MF,
371 !IsPrologEpilog);
372 if (LaneVGPR == AMDGPU::NoRegister) {
373 // We have no VGPRs left for spilling SGPRs. Reset because we will not
374 // partially spill the SGPR to VGPRs.
375 SGPRSpillsToPhysicalVGPRLanes.erase(FI);
376 return false;
377 }
378
379 allocateWWMSpill(MF, LaneVGPR);
380 reserveWWMRegister(LaneVGPR);
381 for (MachineBasicBlock &MBB : MF) {
382 MBB.addLiveIn(LaneVGPR);
384 }
385 SpillPhysVGPRs.push_back(LaneVGPR);
386 } else {
387 LaneVGPR = SpillPhysVGPRs.back();
388 }
389
390 SGPRSpillsToPhysicalVGPRLanes[FI].push_back(
391 SIRegisterInfo::SpilledReg(LaneVGPR, LaneIndex));
392 return true;
393}
394
396 MachineFunction &MF, int FI, bool SpillToPhysVGPRLane,
397 bool IsPrologEpilog) {
398 std::vector<SIRegisterInfo::SpilledReg> &SpillLanes =
399 SpillToPhysVGPRLane ? SGPRSpillsToPhysicalVGPRLanes[FI]
400 : SGPRSpillsToVirtualVGPRLanes[FI];
401
402 // This has already been allocated.
403 if (!SpillLanes.empty())
404 return true;
405
406 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
407 MachineFrameInfo &FrameInfo = MF.getFrameInfo();
408 unsigned WaveSize = ST.getWavefrontSize();
409
410 unsigned Size = FrameInfo.getObjectSize(FI);
411 unsigned NumLanes = Size / 4;
412
413 if (NumLanes > WaveSize)
414 return false;
415
416 assert(Size >= 4 && "invalid sgpr spill size");
417 assert(ST.getRegisterInfo()->spillSGPRToVGPR() &&
418 "not spilling SGPRs to VGPRs");
419
420 unsigned &NumSpillLanes = SpillToPhysVGPRLane ? NumPhysicalVGPRSpillLanes
421 : NumVirtualVGPRSpillLanes;
422
423 for (unsigned I = 0; I < NumLanes; ++I, ++NumSpillLanes) {
424 unsigned LaneIndex = (NumSpillLanes % WaveSize);
425
426 bool Allocated = SpillToPhysVGPRLane
427 ? allocatePhysicalVGPRForSGPRSpills(MF, FI, LaneIndex,
428 IsPrologEpilog)
429 : allocateVirtualVGPRForSGPRSpills(MF, FI, LaneIndex);
430 if (!Allocated) {
431 NumSpillLanes -= I;
432 return false;
433 }
434 }
435
436 return true;
437}
438
439/// Reserve AGPRs or VGPRs to support spilling for FrameIndex \p FI.
440/// Either AGPR is spilled to VGPR to vice versa.
441/// Returns true if a \p FI can be eliminated completely.
443 int FI,
444 bool isAGPRtoVGPR) {
446 MachineFrameInfo &FrameInfo = MF.getFrameInfo();
447 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
448
449 assert(ST.hasMAIInsts() && FrameInfo.isSpillSlotObjectIndex(FI));
450
451 auto &Spill = VGPRToAGPRSpills[FI];
452
453 // This has already been allocated.
454 if (!Spill.Lanes.empty())
455 return Spill.FullyAllocated;
456
457 unsigned Size = FrameInfo.getObjectSize(FI);
458 unsigned NumLanes = Size / 4;
459 Spill.Lanes.resize(NumLanes, AMDGPU::NoRegister);
460
461 const TargetRegisterClass &RC =
462 isAGPRtoVGPR ? AMDGPU::VGPR_32RegClass : AMDGPU::AGPR_32RegClass;
463 auto Regs = RC.getRegisters();
464
465 auto &SpillRegs = isAGPRtoVGPR ? SpillAGPR : SpillVGPR;
466 const SIRegisterInfo *TRI = ST.getRegisterInfo();
467 Spill.FullyAllocated = true;
468
469 // FIXME: Move allocation logic out of MachineFunctionInfo and initialize
470 // once.
471 BitVector OtherUsedRegs;
472 OtherUsedRegs.resize(TRI->getNumRegs());
473
474 const uint32_t *CSRMask =
475 TRI->getCallPreservedMask(MF, MF.getFunction().getCallingConv());
476 if (CSRMask)
477 OtherUsedRegs.setBitsInMask(CSRMask);
478
479 // TODO: Should include register tuples, but doesn't matter with current
480 // usage.
481 for (MCPhysReg Reg : SpillAGPR)
482 OtherUsedRegs.set(Reg);
483 for (MCPhysReg Reg : SpillVGPR)
484 OtherUsedRegs.set(Reg);
485
486 SmallVectorImpl<MCPhysReg>::const_iterator NextSpillReg = Regs.begin();
487 for (int I = NumLanes - 1; I >= 0; --I) {
488 NextSpillReg = std::find_if(
489 NextSpillReg, Regs.end(), [&MRI, &OtherUsedRegs](MCPhysReg Reg) {
490 return MRI.isAllocatable(Reg) && !MRI.isPhysRegUsed(Reg) &&
491 !OtherUsedRegs[Reg];
492 });
493
494 if (NextSpillReg == Regs.end()) { // Registers exhausted
495 Spill.FullyAllocated = false;
496 break;
497 }
498
499 OtherUsedRegs.set(*NextSpillReg);
500 SpillRegs.push_back(*NextSpillReg);
501 MRI.reserveReg(*NextSpillReg, TRI);
502 Spill.Lanes[I] = *NextSpillReg++;
503 }
504
505 return Spill.FullyAllocated;
506}
507
509 MachineFrameInfo &MFI, bool ResetSGPRSpillStackIDs) {
510 // Remove dead frame indices from function frame, however keep FP & BP since
511 // spills for them haven't been inserted yet. And also make sure to remove the
512 // frame indices from `SGPRSpillsToVirtualVGPRLanes` data structure,
513 // otherwise, it could result in an unexpected side effect and bug, in case of
514 // any re-mapping of freed frame indices by later pass(es) like "stack slot
515 // coloring".
516 for (auto &R : make_early_inc_range(SGPRSpillsToVirtualVGPRLanes)) {
517 MFI.RemoveStackObject(R.first);
518 SGPRSpillsToVirtualVGPRLanes.erase(R.first);
519 }
520
521 // Remove the dead frame indices of CSR SGPRs which are spilled to physical
522 // VGPR lanes during SILowerSGPRSpills pass.
523 if (!ResetSGPRSpillStackIDs) {
524 for (auto &R : make_early_inc_range(SGPRSpillsToPhysicalVGPRLanes)) {
525 MFI.RemoveStackObject(R.first);
526 SGPRSpillsToPhysicalVGPRLanes.erase(R.first);
527 }
528 }
529 bool HaveSGPRToMemory = false;
530
531 if (ResetSGPRSpillStackIDs) {
532 // All other SGPRs must be allocated on the default stack, so reset the
533 // stack ID.
534 for (int I = MFI.getObjectIndexBegin(), E = MFI.getObjectIndexEnd(); I != E;
535 ++I) {
539 HaveSGPRToMemory = true;
540 }
541 }
542 }
543 }
544
545 for (auto &R : VGPRToAGPRSpills) {
546 if (R.second.IsDead)
547 MFI.RemoveStackObject(R.first);
548 }
549
550 return HaveSGPRToMemory;
551}
552
554 const SIRegisterInfo &TRI) {
555 if (ScavengeFI)
556 return *ScavengeFI;
557
558 ScavengeFI =
559 MFI.CreateStackObject(TRI.getSpillSize(AMDGPU::SGPR_32RegClass),
560 TRI.getSpillAlign(AMDGPU::SGPR_32RegClass), false);
561 return *ScavengeFI;
562}
563
564MCPhysReg SIMachineFunctionInfo::getNextUserSGPR() const {
565 assert(NumSystemSGPRs == 0 && "System SGPRs must be added after user SGPRs");
566 return AMDGPU::SGPR0 + NumUserSGPRs;
567}
568
569MCPhysReg SIMachineFunctionInfo::getNextSystemSGPR() const {
570 return AMDGPU::SGPR0 + NumUserSGPRs + NumSystemSGPRs;
571}
572
573void SIMachineFunctionInfo::MRI_NoteNewVirtualRegister(Register Reg) {
574 VRegFlags.grow(Reg);
575}
576
577void SIMachineFunctionInfo::MRI_NoteCloneVirtualRegister(Register NewReg,
578 Register SrcReg) {
579 VRegFlags.grow(NewReg);
580 VRegFlags[NewReg] = VRegFlags[SrcReg];
581}
582
585 const GCNSubtarget &ST = MF.getSubtarget<GCNSubtarget>();
586 if (!ST.isAmdPalOS())
587 return Register();
588 Register GitPtrLo = AMDGPU::SGPR0; // Low GIT address passed in
589 if (ST.hasMergedShaders()) {
590 switch (MF.getFunction().getCallingConv()) {
593 // Low GIT address is passed in s8 rather than s0 for an LS+HS or
594 // ES+GS merged shader on gfx9+.
595 GitPtrLo = AMDGPU::SGPR8;
596 return GitPtrLo;
597 default:
598 return GitPtrLo;
599 }
600 }
601 return GitPtrLo;
602}
603
605 const TargetRegisterInfo &TRI) {
607 {
609 OS << printReg(Reg, &TRI);
610 }
611 return Dest;
612}
613
614static std::optional<yaml::SIArgumentInfo>
616 const TargetRegisterInfo &TRI) {
618
619 auto convertArg = [&](std::optional<yaml::SIArgument> &A,
620 const ArgDescriptor &Arg) {
621 if (!Arg)
622 return false;
623
624 // Create a register or stack argument.
626 if (Arg.isRegister()) {
628 OS << printReg(Arg.getRegister(), &TRI);
629 } else
630 SA.StackOffset = Arg.getStackOffset();
631 // Check and update the optional mask.
632 if (Arg.isMasked())
633 SA.Mask = Arg.getMask();
634
635 A = SA;
636 return true;
637 };
638
639 // TODO: Need to serialize kernarg preloads.
640 bool Any = false;
641 Any |= convertArg(AI.PrivateSegmentBuffer, ArgInfo.PrivateSegmentBuffer);
642 Any |= convertArg(AI.DispatchPtr, ArgInfo.DispatchPtr);
643 Any |= convertArg(AI.QueuePtr, ArgInfo.QueuePtr);
644 Any |= convertArg(AI.KernargSegmentPtr, ArgInfo.KernargSegmentPtr);
645 Any |= convertArg(AI.DispatchID, ArgInfo.DispatchID);
646 Any |= convertArg(AI.FlatScratchInit, ArgInfo.FlatScratchInit);
647 Any |= convertArg(AI.LDSKernelId, ArgInfo.LDSKernelId);
648 Any |= convertArg(AI.PrivateSegmentSize, ArgInfo.PrivateSegmentSize);
649 Any |= convertArg(AI.WorkGroupIDX, ArgInfo.WorkGroupIDX);
650 Any |= convertArg(AI.WorkGroupIDY, ArgInfo.WorkGroupIDY);
651 Any |= convertArg(AI.WorkGroupIDZ, ArgInfo.WorkGroupIDZ);
652 Any |= convertArg(AI.WorkGroupInfo, ArgInfo.WorkGroupInfo);
653 Any |= convertArg(AI.PrivateSegmentWaveByteOffset,
654 ArgInfo.PrivateSegmentWaveByteOffset);
655 Any |= convertArg(AI.ImplicitArgPtr, ArgInfo.ImplicitArgPtr);
656 Any |= convertArg(AI.ImplicitBufferPtr, ArgInfo.ImplicitBufferPtr);
657 Any |= convertArg(AI.WorkItemIDX, ArgInfo.WorkItemIDX);
658 Any |= convertArg(AI.WorkItemIDY, ArgInfo.WorkItemIDY);
659 Any |= convertArg(AI.WorkItemIDZ, ArgInfo.WorkItemIDZ);
660
661 if (Any)
662 return AI;
663
664 return std::nullopt;
665}
666
669 const llvm::MachineFunction &MF)
670 : ExplicitKernArgSize(MFI.getExplicitKernArgSize()),
671 MaxKernArgAlign(MFI.getMaxKernArgAlign()), LDSSize(MFI.getLDSSize()),
672 GDSSize(MFI.getGDSSize()),
673 DynLDSAlign(MFI.getDynLDSAlign()), IsEntryFunction(MFI.isEntryFunction()),
674 NoSignedZerosFPMath(MFI.hasNoSignedZerosFPMath()),
675 MemoryBound(MFI.isMemoryBound()), WaveLimiter(MFI.needsWaveLimiter()),
676 HasSpilledSGPRs(MFI.hasSpilledSGPRs()),
677 HasSpilledVGPRs(MFI.hasSpilledVGPRs()),
678 HighBitsOf32BitAddress(MFI.get32BitAddressHighBits()),
679 Occupancy(MFI.getOccupancy()),
680 ScratchRSrcReg(regToString(MFI.getScratchRSrcReg(), TRI)),
681 FrameOffsetReg(regToString(MFI.getFrameOffsetReg(), TRI)),
682 StackPtrOffsetReg(regToString(MFI.getStackPtrOffsetReg(), TRI)),
683 BytesInStackArgArea(MFI.getBytesInStackArgArea()),
684 ReturnsVoid(MFI.returnsVoid()),
685 ArgInfo(convertArgumentInfo(MFI.getArgInfo(), TRI)),
686 PSInputAddr(MFI.getPSInputAddr()),
687 PSInputEnable(MFI.getPSInputEnable()),
688 Mode(MFI.getMode()) {
689 for (Register Reg : MFI.getWWMReservedRegs())
690 WWMReservedRegs.push_back(regToString(Reg, TRI));
691
692 if (MFI.getLongBranchReservedReg())
694 if (MFI.getVGPRForAGPRCopy())
696
697 if (MFI.getSGPRForEXECCopy())
699
700 auto SFI = MFI.getOptionalScavengeFI();
701 if (SFI)
703}
704
707}
708
710 const yaml::SIMachineFunctionInfo &YamlMFI, const MachineFunction &MF,
714 LDSSize = YamlMFI.LDSSize;
715 GDSSize = YamlMFI.GDSSize;
716 DynLDSAlign = YamlMFI.DynLDSAlign;
717 PSInputAddr = YamlMFI.PSInputAddr;
720 Occupancy = YamlMFI.Occupancy;
723 MemoryBound = YamlMFI.MemoryBound;
724 WaveLimiter = YamlMFI.WaveLimiter;
728 ReturnsVoid = YamlMFI.ReturnsVoid;
729
730 if (YamlMFI.ScavengeFI) {
731 auto FIOrErr = YamlMFI.ScavengeFI->getFI(MF.getFrameInfo());
732 if (!FIOrErr) {
733 // Create a diagnostic for a the frame index.
734 const MemoryBuffer &Buffer =
735 *PFS.SM->getMemoryBuffer(PFS.SM->getMainFileID());
736
737 Error = SMDiagnostic(*PFS.SM, SMLoc(), Buffer.getBufferIdentifier(), 1, 1,
738 SourceMgr::DK_Error, toString(FIOrErr.takeError()),
739 "", std::nullopt, std::nullopt);
740 SourceRange = YamlMFI.ScavengeFI->SourceRange;
741 return true;
742 }
743 ScavengeFI = *FIOrErr;
744 } else {
745 ScavengeFI = std::nullopt;
746 }
747 return false;
748}
749
751 return !F.hasFnAttribute("amdgpu-no-agpr");
752}
753
755 if (UsesAGPRs)
756 return *UsesAGPRs;
757
758 if (!mayNeedAGPRs()) {
759 UsesAGPRs = false;
760 return false;
761 }
762
764 MF.getFrameInfo().hasCalls()) {
765 UsesAGPRs = true;
766 return true;
767 }
768
769 const MachineRegisterInfo &MRI = MF.getRegInfo();
770
771 for (unsigned I = 0, E = MRI.getNumVirtRegs(); I != E; ++I) {
773 const TargetRegisterClass *RC = MRI.getRegClassOrNull(Reg);
774 if (RC && SIRegisterInfo::isAGPRClass(RC)) {
775 UsesAGPRs = true;
776 return true;
777 } else if (!RC && !MRI.use_empty(Reg) && MRI.getType(Reg).isValid()) {
778 // Defer caching UsesAGPRs, function might not yet been regbank selected.
779 return true;
780 }
781 }
782
783 for (MCRegister Reg : AMDGPU::AGPR_32RegClass) {
784 if (MRI.isPhysRegUsed(Reg)) {
785 UsesAGPRs = true;
786 return true;
787 }
788 }
789
790 UsesAGPRs = false;
791 return false;
792}
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock & MBB
Provides AMDGPU specific target descriptions.
Base class for AMDGPU specific classes of TargetSubtarget.
The AMDGPU TargetMachine interface definition for hw codegen targets.
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
uint64_t Size
IO & YamlIO
Definition: ELFYAML.cpp:1290
AMD GCN specific subclass of TargetSubtarget.
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
unsigned const TargetRegisterInfo * TRI
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
const GCNTargetMachine & getTM(const GCNSubtarget *STI)
static std::optional< yaml::SIArgumentInfo > convertArgumentInfo(const AMDGPUFunctionArgInfo &ArgInfo, const TargetRegisterInfo &TRI)
static yaml::StringValue regToString(Register Reg, const TargetRegisterInfo &TRI)
Interface definition for SIRegisterInfo.
raw_pwrite_stream & OS
static const AMDGPUFunctionArgInfo FixedABIFunctionInfo
Definition: Any.h:28
void resize(unsigned N, bool t=false)
resize - Grow or shrink the bitvector.
Definition: BitVector.h:341
BitVector & set()
Definition: BitVector.h:351
void setBitsInMask(const uint32_t *Mask, unsigned MaskWords=~0u)
setBitsInMask - Add '1' bits from Mask to this vector.
Definition: BitVector.h:707
void push_back(bool Val)
Definition: BitVector.h:466
Allocate memory in an ever growing pool, as if by bump-pointer.
Definition: Allocator.h:66
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Definition: Function.h:263
const SITargetLowering * getTargetLowering() const override
Definition: GCNSubtarget.h:260
void allocKernargPreloadSGPRs(unsigned NumSGPRs)
Wrapper class representing physical registers. Should be passed by value.
Definition: MCRegister.h:33
void sortUniqueLiveIns()
Sorts and uniques the LiveIns vector.
void addLiveIn(MCRegister PhysReg, LaneBitmask LaneMask=LaneBitmask::getAll())
Adds the specified register as a live in.
void removeLiveIn(MCPhysReg Reg, LaneBitmask LaneMask=LaneBitmask::getAll())
Remove the specified register from the live in set.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
bool hasCalls() const
Return true if the current function has any function calls.
int CreateSpillStackObject(uint64_t Size, Align Alignment)
Create a new statically sized stack object that represents a spill slot, returning a nonnegative iden...
void setStackID(int ObjectIdx, uint8_t ID)
bool isSpillSlotObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a spill slot.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
void RemoveStackObject(int ObjectIdx)
Remove or mark dead a statically sized stack object.
int getObjectIndexEnd() const
Return one past the maximum frame object index.
uint8_t getStackID(int ObjectIdx) const
int getObjectIndexBegin() const
Return the minimum frame object index.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * cloneInfo(const Ty &Old)
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
const MCPhysReg * getCalleeSavedRegs() const
Returns list of callee saved registers.
size_type count(const KeyT &Key) const
Definition: MapVector.h:165
VectorType::iterator erase(typename VectorType::iterator Iterator)
Remove the element given by Iterator.
Definition: MapVector.h:193
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Definition: MapVector.h:141
This interface provides simple read-only access to a block of memory, and provides simple methods for...
Definition: MemoryBuffer.h:51
virtual StringRef getBufferIdentifier() const
Return an identifier for this buffer, typically the filename it was read from.
Definition: MemoryBuffer.h:76
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
static Register index2VirtReg(unsigned Index)
Convert a 0-based index to a virtual register number.
Definition: Register.h:84
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
bool usesAGPRs(const MachineFunction &MF) const
bool initializeBaseYamlFields(const yaml::SIMachineFunctionInfo &YamlMFI, const MachineFunction &MF, PerFunctionMIParsingState &PFS, SMDiagnostic &Error, SMRange &SourceRange)
void allocateWWMSpill(MachineFunction &MF, Register VGPR, uint64_t Size=4, Align Alignment=Align(4))
Register addDispatchPtr(const SIRegisterInfo &TRI)
Register addFlatScratchInit(const SIRegisterInfo &TRI)
int getScavengeFI(MachineFrameInfo &MFI, const SIRegisterInfo &TRI)
Register addQueuePtr(const SIRegisterInfo &TRI)
SIMachineFunctionInfo(const SIMachineFunctionInfo &MFI)=default
Register getGITPtrLoReg(const MachineFunction &MF) const
bool allocateVGPRSpillToAGPR(MachineFunction &MF, int FI, bool isAGPRtoVGPR)
Reserve AGPRs or VGPRs to support spilling for FrameIndex FI.
void splitWWMSpillRegisters(MachineFunction &MF, SmallVectorImpl< std::pair< Register, int > > &CalleeSavedRegs, SmallVectorImpl< std::pair< Register, int > > &ScratchRegs) const
bool mayUseAGPRs(const Function &F) const
bool isCalleeSavedReg(const MCPhysReg *CSRegs, MCPhysReg Reg) const
void shiftSpillPhysVGPRsToLowestRange(MachineFunction &MF)
bool allocateSGPRSpillToVGPRLane(MachineFunction &MF, int FI, bool SpillToPhysVGPRLane=false, bool IsPrologEpilog=false)
Register addKernargSegmentPtr(const SIRegisterInfo &TRI)
Register addDispatchID(const SIRegisterInfo &TRI)
bool removeDeadFrameIndices(MachineFrameInfo &MFI, bool ResetSGPRSpillStackIDs)
If ResetSGPRSpillStackIDs is true, reset the stack ID from sgpr-spill to the default stack.
MachineFunctionInfo * clone(BumpPtrAllocator &Allocator, MachineFunction &DestMF, const DenseMap< MachineBasicBlock *, MachineBasicBlock * > &Src2DstMBB) const override
Make a functionally equivalent copy of this MachineFunctionInfo in MF.
bool checkIndexInPrologEpilogSGPRSpills(int FI) const
Register addPrivateSegmentBuffer(const SIRegisterInfo &TRI)
const ReservedRegSet & getWWMReservedRegs() const
std::optional< int > getOptionalScavengeFI() const
Register addImplicitBufferPtr(const SIRegisterInfo &TRI)
void limitOccupancy(const MachineFunction &MF)
SmallVectorImpl< MCRegister > * addPreloadedKernArg(const SIRegisterInfo &TRI, const TargetRegisterClass *RC, unsigned AllocSizeDWord, int KernArgIdx, int PaddingSGPRs)
static bool isChainScratchRegister(Register VGPR)
static bool isAGPRClass(const TargetRegisterClass *RC)
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
Definition: SourceMgr.h:281
Represents a location in source code.
Definition: SMLoc.h:23
Represents a range in source code.
Definition: SMLoc.h:48
bool remove(const value_type &X)
Remove an item from the set vector.
Definition: SetVector.h:188
bool insert(const value_type &X)
Insert a new element into the SetVector.
Definition: SetVector.h:162
size_t size() const
Definition: SmallVector.h:91
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
Definition: SmallVector.h:586
typename SuperClass::const_iterator const_iterator
Definition: SmallVector.h:591
unsigned getMainFileID() const
Definition: SourceMgr.h:132
const MemoryBuffer * getMemoryBuffer(unsigned i) const
Definition: SourceMgr.h:125
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
bool consumeInteger(unsigned Radix, T &Result)
Parse the current string as an integer of the specified radix.
Definition: StringRef.h:495
constexpr bool empty() const
empty - Check if the string is empty.
Definition: StringRef.h:134
const TargetMachine & getTargetMachine() const
ArrayRef< MCPhysReg > getRegisters() const
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
A raw_ostream that writes to an std::string.
Definition: raw_ostream.h:660
bool isEntryFunctionCC(CallingConv::ID CC)
bool isChainCC(CallingConv::ID CC)
unsigned getInitialPSInputAddr(const Function &F)
bool isGraphics(CallingConv::ID cc)
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
Definition: CallingConv.h:197
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
Definition: CallingConv.h:200
@ AMDGPU_Gfx
Used for AMD graphics targets.
Definition: CallingConv.h:232
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
Definition: CallingConv.h:206
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
Definition: CallingConv.h:191
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
Definition: CallingConv.h:194
@ SPIR_KERNEL
Used for SPIR kernel functions.
Definition: CallingConv.h:144
std::optional< const char * > toString(const std::optional< DWARFFormValue > &V)
Take an optional DWARFFormValue and try to extract a string value from it.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition: MCRegister.h:21
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition: STLExtras.h:656
Printable printReg(Register Reg, const TargetRegisterInfo *TRI=nullptr, unsigned SubIdx=0, const MachineRegisterInfo *MRI=nullptr)
Prints virtual and physical registers with or without a TRI instance.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
static ArgDescriptor createRegister(Register Reg, unsigned Mask=~0u)
Helper struct shared between Function Specialization and SCCP Solver.
Definition: SCCPSolver.h:41
MachineFunctionInfo - This class can be derived from and used by targets to hold private target-speci...
A serializaable representation of a reference to a stack object or fixed stack object.
std::optional< SIArgument > PrivateSegmentWaveByteOffset
std::optional< SIArgument > WorkGroupIDY
std::optional< SIArgument > FlatScratchInit
std::optional< SIArgument > DispatchPtr
std::optional< SIArgument > DispatchID
std::optional< SIArgument > WorkItemIDY
std::optional< SIArgument > WorkGroupIDX
std::optional< SIArgument > ImplicitArgPtr
std::optional< SIArgument > QueuePtr
std::optional< SIArgument > WorkGroupInfo
std::optional< SIArgument > LDSKernelId
std::optional< SIArgument > ImplicitBufferPtr
std::optional< SIArgument > WorkItemIDX
std::optional< SIArgument > KernargSegmentPtr
std::optional< SIArgument > WorkItemIDZ
std::optional< SIArgument > PrivateSegmentSize
std::optional< SIArgument > PrivateSegmentBuffer
std::optional< SIArgument > WorkGroupIDZ
std::optional< unsigned > Mask
static SIArgument createArgument(bool IsReg)
SmallVector< StringValue > WWMReservedRegs
void mappingImpl(yaml::IO &YamlIO) override
std::optional< FrameIndex > ScavengeFI
A wrapper around std::string which contains a source range that's being set during parsing.