LLVM 24.0.0git
GCNSubtarget.cpp
Go to the documentation of this file.
1//===-- GCNSubtarget.cpp - GCN Subtarget Information ----------------------===//
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/// Implements the GCN specific subclass of TargetSubtarget.
11//
12//===----------------------------------------------------------------------===//
13
14#include "GCNSubtarget.h"
15#include "AMDGPUCallLowering.h"
17#include "AMDGPULegalizerInfo.h"
20#include "AMDGPUTargetMachine.h"
28#include "llvm/IR/MDBuilder.h"
30#include <algorithm>
31
32using namespace llvm;
33
34#define DEBUG_TYPE "gcn-subtarget"
35
36#define GET_SUBTARGETINFO_TARGET_DESC
37#define GET_SUBTARGETINFO_CTOR
38#define AMDGPUSubtarget GCNSubtarget
39#include "AMDGPUGenSubtargetInfo.inc"
40#undef AMDGPUSubtarget
41
43 "amdgpu-vgpr-index-mode",
44 cl::desc("Use GPR indexing mode instead of movrel for vector indexing"),
45 cl::init(false));
46
47static cl::opt<bool> UseAA("amdgpu-use-aa-in-codegen",
48 cl::desc("Enable the use of AA during codegen."),
49 cl::init(true));
50
52 NSAThreshold("amdgpu-nsa-threshold",
53 cl::desc("Number of addresses from which to enable MIMG NSA."),
55
57
59 // Legacy triples without a subarch default to the first target that supports
60 // flat addressing for HSA, otherwise the first amdgcn target.
61 if (TT.getSubArch() == Triple::NoSubArch)
62 return TT.getOS() == Triple::AMDHSA ? AMDGPUSubtarget::SEA_ISLANDS
64
65 switch (AMDGPU::getMajorSubArch(TT.getSubArch())) {
89 default:
90 reportFatalUsageError("invalid subarch for amdgpu");
91 }
92}
93
95 StringRef GPU,
96 StringRef FS) {
97 // Determine default and user-specified characteristics
98 //
99 // We want to be able to turn these off, but making this a subtarget feature
100 // for SI has the unhelpful behavior that it unsets everything else if you
101 // disable it.
102 //
103 // Similarly we want enable-prt-strict-null to be on by default and not to
104 // unset everything else if it is disabled
105
106 SmallString<256> FullFS("+load-store-opt,+enable-ds128,");
107
108 // Turn on features that HSA ABI requires. Also turn on FlatForGlobal by
109 // default
110 if (isAmdHsaOS())
111 FullFS += "+flat-for-global,+unaligned-access-mode,+trap-handler,";
112
113 FullFS += "+enable-prt-strict-null,"; // This is overridden by a disable in FS
114
115 // Disable mutually exclusive bits.
116 if (FS.contains_insensitive("+wavefrontsize")) {
117 if (!FS.contains_insensitive("wavefrontsize16"))
118 FullFS += "-wavefrontsize16,";
119 if (!FS.contains_insensitive("wavefrontsize32"))
120 FullFS += "-wavefrontsize32,";
121 if (!FS.contains_insensitive("wavefrontsize64"))
122 FullFS += "-wavefrontsize64,";
123 }
124
125 FullFS += FS;
126
127 ParseSubtargetFeatures(GPU, /*TuneCPU*/ GPU, FullFS);
128
129 // Implement the "generic" processors, which acts as the default when no
130 // generation features are enabled (e.g for -mcpu=''). HSA OS defaults to
131 // the first amdgcn target that supports flat addressing. Other OSes defaults
132 // to the first amdgcn target.
135 // Assume wave64 for the unknown target, if not explicitly set.
136 if (getWavefrontSizeLog2() == 0)
138 } else if (!hasFeature(AMDGPU::FeatureWavefrontSize32) &&
139 !hasFeature(AMDGPU::FeatureWavefrontSize64)) {
140 // If there is no default wave size it must be a generation before gfx10,
141 // these have FeatureWavefrontSize64 in their definition already. For gfx10+
142 // set wave32 as a default.
143 ToggleFeature(AMDGPU::FeatureWavefrontSize32);
145 }
146
147 // We don't support FP64 for EG/NI atm.
149
150 // Targets must either support 64-bit offsets for MUBUF instructions, and/or
151 // support flat operations, otherwise they cannot access a 64-bit global
152 // address space
153 assert(hasAddr64() || hasFlat());
154 // Unless +-flat-for-global is specified, turn on FlatForGlobal for targets
155 // that do not support ADDR64 variants of MUBUF instructions. Such targets
156 // cannot use a 64 bit offset with a MUBUF instruction to access the global
157 // address space
158 if (!hasAddr64() && !FS.contains("flat-for-global") && !UseFlatForGlobal) {
159 ToggleFeature(AMDGPU::FeatureUseFlatForGlobal);
160 UseFlatForGlobal = true;
161 }
162 // Unless +-flat-for-global is specified, use MUBUF instructions for global
163 // address space access if flat operations are not available.
164 if (!hasFlat() && !FS.contains("flat-for-global") && UseFlatForGlobal) {
165 ToggleFeature(AMDGPU::FeatureUseFlatForGlobal);
166 UseFlatForGlobal = false;
167 }
168
169 // Set defaults if needed.
170 if (MaxPrivateElementSize == 0)
172
173 if (LDSBankCount == 0)
174 LDSBankCount = 32;
175
176 if (FlatOffsetBitWidth == 0)
178
182 // LDS Allocation Granularity calculated in bytes from dwords
184 AMDGPU::getLdsDwGranularity(*this) * sizeof(uint32_t);
185
188
189 // InstCacheLineSize is set from TableGen subtarget features
190 // (FeatureInstCacheLineSize64 / FeatureInstCacheLineSize128).
191 // Fall back to 64 if no feature was specified (e.g. generic targets).
192 if (InstCacheLineSize == 0)
194
196 "InstCacheLineSize must be a power of 2");
197
198 return *this;
199}
200
202 LLVMContext &Ctx = F.getContext();
203 if (hasFeature(AMDGPU::FeatureWavefrontSize32) &&
204 hasFeature(AMDGPU::FeatureWavefrontSize64)) {
205 Ctx.diagnose(DiagnosticInfoUnsupported(
206 F, "must specify exactly one of wavefrontsize32 and wavefrontsize64"));
207 }
208}
209
210// TODO: Validate subarch for subtarget
211
213 const GCNTargetMachine &TM, bool BufferOOBRelaxed,
217 : // clang-format off
218 AMDGPUGenSubtargetInfo(TT, GPU, /*TuneCPU*/ GPU, FS),
219 AMDGPUSubtarget(TT),
220 TargetID(AMDGPU::createAMDGPUTargetID(*this, "")),
221 InstrItins(getInstrItineraryForCPU(GPU)),
224 InstrInfo(initializeSubtargetDependencies(TT, GPU, FS)),
225 TLInfo(TM, *this),
226 // Frame index expansion sometimes assumes the low bit of SP is 0
227 FrameLowering(TargetFrameLowering::StackGrowsUp, getStackAlignment(), 0,
228 /*TransAl=*/Align(4)) {
229
230 // clang-format on
231
232 // Apply the module flag's xnack setting if the target supports on/off modes.
233 // Targets without on/off mode support have xnack always on and ignore module
234 // flags.
235 if (hasXNACKOnOffModes())
236 TargetID.setXnackSetting(XnackSetting);
237
238 // Apply the module flag's sramecc setting if the target supports it.
239 if (supportsSRAMECC())
240 TargetID.setSramEccSetting(SramEccSetting);
241
242 LLVM_DEBUG(dbgs() << "xnack setting for subtarget: "
243 << TargetID.getXnackSetting() << '\n');
244 LLVM_DEBUG(dbgs() << "sramecc setting for subtarget: "
245 << TargetID.getSramEccSetting() << '\n');
246
249
250 TSInfo = std::make_unique<AMDGPUSelectionDAGInfo>();
251
252 CallLoweringInfo = std::make_unique<AMDGPUCallLowering>(*getTargetLowering());
253 InlineAsmLoweringInfo =
254 std::make_unique<InlineAsmLowering>(getTargetLowering());
255 Legalizer = std::make_unique<AMDGPULegalizerInfo>(*this, TM);
256 RegBankInfo = std::make_unique<AMDGPURegisterBankInfo>(*this);
257 InstSelector =
258 std::make_unique<AMDGPUInstructionSelector>(*this, *RegBankInfo);
259}
260
262 return TSInfo.get();
263}
264
265unsigned GCNSubtarget::getConstantBusLimit(unsigned Opcode) const {
266 if (getGeneration() < GFX10)
267 return 1;
268
269 switch (Opcode) {
270 case AMDGPU::V_LSHLREV_B64_e64:
271 case AMDGPU::V_LSHLREV_B64_gfx10:
272 case AMDGPU::V_LSHLREV_B64_e64_gfx11:
273 case AMDGPU::V_LSHLREV_B64_e32_gfx12:
274 case AMDGPU::V_LSHLREV_B64_e64_gfx12:
275 case AMDGPU::V_LSHL_B64_e64:
276 case AMDGPU::V_LSHRREV_B64_e64:
277 case AMDGPU::V_LSHRREV_B64_gfx10:
278 case AMDGPU::V_LSHRREV_B64_e64_gfx11:
279 case AMDGPU::V_LSHRREV_B64_e64_gfx12:
280 case AMDGPU::V_LSHR_B64_e64:
281 case AMDGPU::V_ASHRREV_I64_e64:
282 case AMDGPU::V_ASHRREV_I64_gfx10:
283 case AMDGPU::V_ASHRREV_I64_e64_gfx11:
284 case AMDGPU::V_ASHRREV_I64_e64_gfx12:
285 case AMDGPU::V_ASHR_I64_e64:
286 return 1;
287 }
288
289 return 2;
290}
291
292/// This list was mostly derived from experimentation.
293bool GCNSubtarget::zeroesHigh16BitsOfDest(unsigned Opcode) const {
294 switch (Opcode) {
295 case AMDGPU::V_CVT_F16_F32_e32:
296 case AMDGPU::V_CVT_F16_F32_e64:
297 case AMDGPU::V_CVT_F16_U16_e32:
298 case AMDGPU::V_CVT_F16_U16_e64:
299 case AMDGPU::V_CVT_F16_I16_e32:
300 case AMDGPU::V_CVT_F16_I16_e64:
301 case AMDGPU::V_RCP_F16_e64:
302 case AMDGPU::V_RCP_F16_e32:
303 case AMDGPU::V_RSQ_F16_e64:
304 case AMDGPU::V_RSQ_F16_e32:
305 case AMDGPU::V_SQRT_F16_e64:
306 case AMDGPU::V_SQRT_F16_e32:
307 case AMDGPU::V_LOG_F16_e64:
308 case AMDGPU::V_LOG_F16_e32:
309 case AMDGPU::V_EXP_F16_e64:
310 case AMDGPU::V_EXP_F16_e32:
311 case AMDGPU::V_SIN_F16_e64:
312 case AMDGPU::V_SIN_F16_e32:
313 case AMDGPU::V_COS_F16_e64:
314 case AMDGPU::V_COS_F16_e32:
315 case AMDGPU::V_FLOOR_F16_e64:
316 case AMDGPU::V_FLOOR_F16_e32:
317 case AMDGPU::V_CEIL_F16_e64:
318 case AMDGPU::V_CEIL_F16_e32:
319 case AMDGPU::V_TRUNC_F16_e64:
320 case AMDGPU::V_TRUNC_F16_e32:
321 case AMDGPU::V_RNDNE_F16_e64:
322 case AMDGPU::V_RNDNE_F16_e32:
323 case AMDGPU::V_FRACT_F16_e64:
324 case AMDGPU::V_FRACT_F16_e32:
325 case AMDGPU::V_FREXP_MANT_F16_e64:
326 case AMDGPU::V_FREXP_MANT_F16_e32:
327 case AMDGPU::V_FREXP_EXP_I16_F16_e64:
328 case AMDGPU::V_FREXP_EXP_I16_F16_e32:
329 case AMDGPU::V_LDEXP_F16_e64:
330 case AMDGPU::V_LDEXP_F16_e32:
331 case AMDGPU::V_LSHLREV_B16_e64:
332 case AMDGPU::V_LSHLREV_B16_e32:
333 case AMDGPU::V_LSHRREV_B16_e64:
334 case AMDGPU::V_LSHRREV_B16_e32:
335 case AMDGPU::V_ASHRREV_I16_e64:
336 case AMDGPU::V_ASHRREV_I16_e32:
337 case AMDGPU::V_ADD_U16_e64:
338 case AMDGPU::V_ADD_U16_e32:
339 case AMDGPU::V_SUB_U16_e64:
340 case AMDGPU::V_SUB_U16_e32:
341 case AMDGPU::V_SUBREV_U16_e64:
342 case AMDGPU::V_SUBREV_U16_e32:
343 case AMDGPU::V_MUL_LO_U16_e64:
344 case AMDGPU::V_MUL_LO_U16_e32:
345 case AMDGPU::V_ADD_F16_e64:
346 case AMDGPU::V_ADD_F16_e32:
347 case AMDGPU::V_SUB_F16_e64:
348 case AMDGPU::V_SUB_F16_e32:
349 case AMDGPU::V_SUBREV_F16_e64:
350 case AMDGPU::V_SUBREV_F16_e32:
351 case AMDGPU::V_MUL_F16_e64:
352 case AMDGPU::V_MUL_F16_e32:
353 case AMDGPU::V_MAX_F16_e64:
354 case AMDGPU::V_MAX_F16_e32:
355 case AMDGPU::V_MIN_F16_e64:
356 case AMDGPU::V_MIN_F16_e32:
357 case AMDGPU::V_MAX_U16_e64:
358 case AMDGPU::V_MAX_U16_e32:
359 case AMDGPU::V_MIN_U16_e64:
360 case AMDGPU::V_MIN_U16_e32:
361 case AMDGPU::V_MAX_I16_e64:
362 case AMDGPU::V_MAX_I16_e32:
363 case AMDGPU::V_MIN_I16_e64:
364 case AMDGPU::V_MIN_I16_e32:
365 case AMDGPU::V_MAD_F16_e64:
366 case AMDGPU::V_MAD_U16_e64:
367 case AMDGPU::V_MAD_I16_e64:
368 case AMDGPU::V_FMA_F16_e64:
369 case AMDGPU::V_DIV_FIXUP_F16_e64:
370 // On gfx10, all 16-bit instructions preserve the high bits.
372 case AMDGPU::V_MADAK_F16:
373 case AMDGPU::V_MADMK_F16:
374 case AMDGPU::V_MAC_F16_e64:
375 case AMDGPU::V_MAC_F16_e32:
376 case AMDGPU::V_FMAMK_F16:
377 case AMDGPU::V_FMAAK_F16:
378 case AMDGPU::V_FMAC_F16_e64:
379 case AMDGPU::V_FMAC_F16_e32:
380 // In gfx9, the preferred handling of the unused high 16-bits changed. Most
381 // instructions maintain the legacy behavior of 0ing. Some instructions
382 // changed to preserving the high bits.
384 case AMDGPU::V_MAD_MIXLO_F16:
385 case AMDGPU::V_MAD_MIXHI_F16:
386 default:
387 return false;
388 }
389}
390
392 const SchedRegion &Region) const {
393 // Track register pressure so the scheduler can try to decrease
394 // pressure once register usage is above the threshold defined by
395 // SIRegisterInfo::getRegPressureSetLimit()
396 Policy.ShouldTrackPressure = true;
397
398 const Function &F = Region.RegionBegin->getMF()->getFunction();
399 if (AMDGPU::getSchedStrategy(F) == "coexec") {
400 Policy.OnlyTopDown = true;
401 Policy.OnlyBottomUp = false;
402 return;
403 }
404
405 // Enabling both top down and bottom up scheduling seems to give us less
406 // register spills than just using one of these approaches on its own.
407 Policy.OnlyTopDown = false;
408 Policy.OnlyBottomUp = false;
409
410 // Enabling ShouldTrackLaneMasks crashes the SI Machine Scheduler.
411 if (!enableSIScheduler())
412 Policy.ShouldTrackLaneMasks = true;
413}
414
416 const SchedRegion &Region) const {
417 const Function &F = Region.RegionBegin->getMF()->getFunction();
418 Attribute PostRADirectionAttr = F.getFnAttribute("amdgpu-post-ra-direction");
419 if (!PostRADirectionAttr.isValid())
420 return;
421
422 StringRef PostRADirectionStr = PostRADirectionAttr.getValueAsString();
423 if (PostRADirectionStr == "topdown") {
424 Policy.OnlyTopDown = true;
425 Policy.OnlyBottomUp = false;
426 } else if (PostRADirectionStr == "bottomup") {
427 Policy.OnlyTopDown = false;
428 Policy.OnlyBottomUp = true;
429 } else if (PostRADirectionStr == "bidirectional") {
430 Policy.OnlyTopDown = false;
431 Policy.OnlyBottomUp = false;
432 } else {
434 F, F.getSubprogram(), "invalid value for postRA direction attribute");
435 F.getContext().diagnose(Diag);
436 }
437
438 LLVM_DEBUG({
439 const char *DirStr = "default";
440 if (Policy.OnlyTopDown && !Policy.OnlyBottomUp)
441 DirStr = "topdown";
442 else if (!Policy.OnlyTopDown && Policy.OnlyBottomUp)
443 DirStr = "bottomup";
444 else if (!Policy.OnlyTopDown && !Policy.OnlyBottomUp)
445 DirStr = "bidirectional";
446
447 dbgs() << "Post-MI-sched direction (" << F.getName() << "): " << DirStr
448 << '\n';
449 });
450}
451
453 if (isWave32()) {
454 // Fix implicit $vcc operands after MIParser has verified that they match
455 // the instruction definitions.
456 for (auto &MBB : MF) {
457 for (auto &MI : MBB)
458 InstrInfo.fixImplicitOperands(MI);
459 }
460 }
461}
462
464 return InstrInfo.pseudoToMCOpcode(AMDGPU::V_MAD_F16_e64) != -1;
465}
466
468 return hasVGPRIndexMode() && (!hasMovrel() || EnableVGPRIndexMode);
469}
470
471bool GCNSubtarget::useAA() const { return UseAA; }
472
473unsigned GCNSubtarget::getOccupancyWithNumSGPRs(unsigned SGPRs) const {
475}
476
477unsigned
479 unsigned DynamicVGPRBlockSize) const {
481 DynamicVGPRBlockSize);
482}
483
484unsigned
485GCNSubtarget::getBaseReservedNumSGPRs(const bool HasFlatScratch) const {
487 return 2; // VCC. FLAT_SCRATCH and XNACK are no longer in SGPRs.
488
489 if (HasFlatScratch || HasArchitectedFlatScratch) {
491 return 6; // FLAT_SCRATCH, XNACK, VCC (in that order).
493 return 4; // FLAT_SCRATCH, VCC (in that order).
494 }
495
496 if (isXNACKEnabled())
497 return 4; // XNACK, VCC (in that order).
498 return 2; // VCC.
499}
500
505
507 // In principle we do not need to reserve SGPR pair used for flat_scratch if
508 // we know flat instructions do not access the stack anywhere in the
509 // program. For now assume it's needed if we have flat instructions.
510 const bool KernelUsesFlatScratch = hasFlatAddressSpace();
511 return getBaseReservedNumSGPRs(KernelUsesFlatScratch);
512}
513
514std::pair<unsigned, unsigned>
516 unsigned NumSGPRs, unsigned NumVGPRs) const {
517 unsigned DynamicVGPRBlockSize = AMDGPU::getDynamicVGPRBlockSize(F);
518 auto [MinOcc, MaxOcc] = getOccupancyWithWorkGroupSizes(LDSSize, F);
519 unsigned SGPROcc = getOccupancyWithNumSGPRs(NumSGPRs);
520 unsigned VGPROcc = getOccupancyWithNumVGPRs(NumVGPRs, DynamicVGPRBlockSize);
521
522 // Maximum occupancy may be further limited by high SGPR/VGPR usage.
523 MaxOcc = std::min({MaxOcc, SGPROcc, VGPROcc});
524 return {std::min(MinOcc, MaxOcc), MaxOcc};
525}
526
528 const Function &F, std::pair<unsigned, unsigned> WavesPerEU,
529 unsigned PreloadedSGPRs, unsigned ReservedNumSGPRs) const {
530 // Compute maximum number of SGPRs function can use using default/requested
531 // minimum number of waves per execution unit.
532 unsigned MaxNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, false);
533 unsigned MaxAddressableNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, true);
534
535 // Check if maximum number of SGPRs was explicitly requested using
536 // "amdgpu-num-sgpr" attribute.
537 unsigned Requested =
538 F.getFnAttributeAsParsedInteger("amdgpu-num-sgpr", MaxNumSGPRs);
539
540 if (Requested != MaxNumSGPRs) {
541 // Make sure requested value does not violate subtarget's specifications.
542 if (Requested && (Requested <= ReservedNumSGPRs))
543 Requested = 0;
544
545 // If more SGPRs are required to support the input user/system SGPRs,
546 // increase to accommodate them.
547 //
548 // FIXME: This really ends up using the requested number of SGPRs + number
549 // of reserved special registers in total. Theoretically you could re-use
550 // the last input registers for these special registers, but this would
551 // require a lot of complexity to deal with the weird aliasing.
552 unsigned InputNumSGPRs = PreloadedSGPRs;
553 if (Requested && Requested < InputNumSGPRs)
554 Requested = InputNumSGPRs;
555
556 // Make sure requested value is compatible with values implied by
557 // default/requested minimum/maximum number of waves per execution unit.
558 if (Requested && Requested > getMaxNumSGPRs(WavesPerEU.first, false))
559 Requested = 0;
560 if (WavesPerEU.second && Requested &&
561 Requested < getMinNumSGPRs(WavesPerEU.second))
562 Requested = 0;
563
564 if (Requested)
565 MaxNumSGPRs = Requested;
566 }
567
568 if (hasSGPRInitBug())
570
571 return std::min(MaxNumSGPRs - ReservedNumSGPRs, MaxAddressableNumSGPRs);
572}
573
575 const Function &F = MF.getFunction();
579}
580
582 using USI = GCNUserSGPRUsageInfo;
583 // Max number of user SGPRs
584 const unsigned MaxUserSGPRs =
585 USI::getNumUserSGPRForField(USI::PrivateSegmentBufferID) +
586 USI::getNumUserSGPRForField(USI::DispatchPtrID) +
587 USI::getNumUserSGPRForField(USI::QueuePtrID) +
588 USI::getNumUserSGPRForField(USI::KernargSegmentPtrID) +
589 USI::getNumUserSGPRForField(USI::DispatchIdID) +
590 USI::getNumUserSGPRForField(USI::FlatScratchInitID) +
591 USI::getNumUserSGPRForField(USI::ImplicitBufferPtrID);
592
593 // Max number of system SGPRs
594 const unsigned MaxSystemSGPRs = 1 + // WorkGroupIDX
595 1 + // WorkGroupIDY
596 1 + // WorkGroupIDZ
597 1 + // WorkGroupInfo
598 1; // private segment wave byte offset
599
600 // Max number of synthetic SGPRs
601 const unsigned SyntheticSGPRs = 1; // LDSKernelId
602
603 return MaxUserSGPRs + MaxSystemSGPRs + SyntheticSGPRs;
604}
605
610
612 const Function &F, std::pair<unsigned, unsigned> NumVGPRBounds) const {
613 const auto [Min, Max] = NumVGPRBounds;
614
615 // Check if maximum number of VGPRs was explicitly requested using
616 // "amdgpu-num-vgpr" attribute.
617
618 unsigned Requested = F.getFnAttributeAsParsedInteger("amdgpu-num-vgpr", Max);
619 if (Requested != Max && hasGFX90AInsts())
620 Requested *= 2;
621
622 // Make sure requested value is inside the range of possible VGPR usage.
623 return std::clamp(Requested, Min, Max);
624}
625
627 unsigned DynamicVGPRBlockSize = AMDGPU::getDynamicVGPRBlockSize(F);
628 std::pair<unsigned, unsigned> Waves = getWavesPerEU(F);
629 return getBaseMaxNumVGPRs(
630 F, {getMinNumVGPRs(Waves.second, DynamicVGPRBlockSize),
631 getMaxNumVGPRs(Waves.first, DynamicVGPRBlockSize)});
632}
633
635 return getMaxNumVGPRs(MF.getFunction());
636}
637
638std::pair<unsigned, unsigned>
640 const unsigned MaxVectorRegs = getMaxNumVGPRs(F);
641
642 unsigned MaxNumVGPRs = MaxVectorRegs;
643 unsigned MaxNumAGPRs = 0;
644 unsigned NumArchVGPRs = getAddressableNumArchVGPRs();
645
646 // On GFX90A, the number of VGPRs and AGPRs need not be equal. Theoretically,
647 // a wave may have up to 512 total vector registers combining together both
648 // VGPRs and AGPRs. Hence, in an entry function without calls and without
649 // AGPRs used within it, it is possible to use the whole vector register
650 // budget for VGPRs.
651 //
652 // TODO: it shall be possible to estimate maximum AGPR/VGPR pressure and split
653 // register file accordingly.
654 if (hasGFX90AInsts()) {
655 unsigned MinNumAGPRs = 0;
656 const unsigned TotalNumAGPRs = AMDGPU::AGPR_32RegClass.getNumRegs();
657
658 const std::pair<unsigned, unsigned> DefaultNumAGPR = {~0u, ~0u};
659
660 // TODO: The lower bound should probably force the number of required
661 // registers up, overriding amdgpu-waves-per-eu.
662 std::tie(MinNumAGPRs, MaxNumAGPRs) =
663 AMDGPU::getIntegerPairAttribute(F, "amdgpu-agpr-alloc", DefaultNumAGPR,
664 /*OnlyFirstRequired=*/true);
665
666 if (MinNumAGPRs == DefaultNumAGPR.first) {
667 // Default to splitting half the registers if AGPRs are required.
668 MinNumAGPRs = MaxNumAGPRs = MaxVectorRegs / 2;
669 } else {
670 // Align to accum_offset's allocation granularity.
671 MinNumAGPRs = alignTo(MinNumAGPRs, 4);
672
673 MinNumAGPRs = std::min(MinNumAGPRs, TotalNumAGPRs);
674 }
675
676 // Clamp values to be inbounds of our limits, and ensure min <= max.
677
678 MaxNumAGPRs = std::min(std::max(MinNumAGPRs, MaxNumAGPRs), MaxVectorRegs);
679 MinNumAGPRs = std::min({MinNumAGPRs, TotalNumAGPRs, MaxNumAGPRs});
680
681 MaxNumVGPRs = std::min(MaxVectorRegs - MinNumAGPRs, NumArchVGPRs);
682 MaxNumAGPRs = std::min(MaxVectorRegs - MaxNumVGPRs, MaxNumAGPRs);
683
684 assert(MaxNumVGPRs + MaxNumAGPRs <= MaxVectorRegs &&
685 MaxNumAGPRs <= TotalNumAGPRs && MaxNumVGPRs <= NumArchVGPRs &&
686 "invalid register counts");
687 } else if (hasMAIInsts()) {
688 // On gfx908 the number of AGPRs always equals the number of VGPRs.
689 MaxNumAGPRs = MaxNumVGPRs = MaxVectorRegs;
690 }
691
692 return std::pair(MaxNumVGPRs, MaxNumAGPRs);
693}
694
695// Check to which source operand UseOpIdx points to and return a pointer to the
696// operand of the corresponding source modifier.
697// Return nullptr if UseOpIdx either doesn't point to src0/1/2 or if there is no
698// operand for the corresponding source modifier.
699static const MachineOperand *
701 const SIInstrInfo &InstrInfo) {
702 AMDGPU::OpName UseName =
703 AMDGPU::getOperandIdxName(UseI.getOpcode(), UseOpIdx);
704 switch (UseName) {
705 case AMDGPU::OpName::src0:
706 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src0_modifiers);
707 case AMDGPU::OpName::src1:
708 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src1_modifiers);
709 case AMDGPU::OpName::src2:
710 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src2_modifiers);
711 default:
712 return nullptr;
713 }
714}
715
716// Get the subreg idx of the subreg that is used by the given instruction
717// operand, considering the given op_sel modifier.
718// Return 0 if the whole register is used or as a conservative fallback.
720 const SIInstrInfo &InstrInfo,
721 const MachineInstr &I,
722 const MachineOperand &Op) {
723 if (!InstrInfo.isVOP3P(I) || InstrInfo.isWMMA(I) || InstrInfo.isSWMMAC(I))
724 return AMDGPU::NoSubRegister;
725
726 const MachineOperand *OpMod =
727 getVOP3PSourceModifierFromOpIdx(I, Op.getOperandNo(), InstrInfo);
728 if (!OpMod)
729 return AMDGPU::NoSubRegister;
730
731 // Note: the FMA_MIX* and MAD_MIX* instructions have different semantics for
732 // the op_sel and op_sel_hi source modifiers:
733 // - op_sel: selects low/high operand bits as input to the operation;
734 // has only meaning for 16-bit source operands
735 // - op_sel_hi: specifies the size of the source operands (16 or 32 bits);
736 // a value of 0 indicates 32 bit, 1 indicates 16 bit
737 // For the other VOP3P instructions, the semantics are:
738 // - op_sel: selects low/high operand bits as input to the operation which
739 // results in the lower-half of the destination
740 // - op_sel_hi: selects the low/high operand bits as input to the operation
741 // which results in the higher-half of the destination
742 int64_t OpSel = OpMod->getImm() & SISrcMods::OP_SEL_0;
743 int64_t OpSelHi = OpMod->getImm() & SISrcMods::OP_SEL_1;
744
745 // Check if all parts of the register are being used (= op_sel and op_sel_hi
746 // differ for VOP3P or op_sel_hi=0 for VOP3PMix). In that case we can return
747 // early.
748 if ((!InstrInfo.isVOP3PMix(I) && (!OpSel || !OpSelHi) &&
749 (OpSel || OpSelHi)) ||
750 (InstrInfo.isVOP3PMix(I) && !OpSelHi))
751 return AMDGPU::NoSubRegister;
752
753 const MachineRegisterInfo &MRI = I.getParent()->getParent()->getRegInfo();
754 const TargetRegisterClass *RC = TRI.getRegClassForOperandReg(MRI, Op);
755
756 if (unsigned SubRegIdx = OpSel ? AMDGPU::sub1 : AMDGPU::sub0;
757 TRI.getSubClassWithSubReg(RC, SubRegIdx) == RC)
758 return SubRegIdx;
759 if (unsigned SubRegIdx = OpSel ? AMDGPU::hi16 : AMDGPU::lo16;
760 TRI.getSubClassWithSubReg(RC, SubRegIdx) == RC)
761 return SubRegIdx;
762
763 return AMDGPU::NoSubRegister;
764}
765
766Register GCNSubtarget::getRealSchedDependency(const MachineInstr &DefI,
767 int DefOpIdx,
768 const MachineInstr &UseI,
769 int UseOpIdx) const {
770 const SIRegisterInfo *TRI = getRegisterInfo();
771 const MachineOperand &DefOp = DefI.getOperand(DefOpIdx);
772 const MachineOperand &UseOp = UseI.getOperand(UseOpIdx);
773 Register DefReg = DefOp.getReg();
774 Register UseReg = UseOp.getReg();
775
776 // If the registers aren't restricted to a sub-register, there is no point in
777 // further analysis. This check makes only sense for virtual registers because
778 // physical registers may form a tuple and thus be part of a superregister
779 // although they are not a subregister themselves (vgpr0 is a "subreg" of
780 // vgpr0_vgpr1 without being a subreg in itself).
781 unsigned DefSubRegIdx = DefOp.getSubReg();
782 if (DefReg.isVirtual() && DefSubRegIdx == AMDGPU::NoSubRegister)
783 return DefReg;
784 unsigned UseSubRegIdx = getEffectiveSubRegIdx(*TRI, InstrInfo, UseI, UseOp);
785 if (UseReg.isVirtual() && UseSubRegIdx == AMDGPU::NoSubRegister)
786 return DefReg;
787
788 if (!TRI->checkSubRegInterference(DefReg, DefSubRegIdx, UseReg, UseSubRegIdx))
789 return Register(); // No real dependency
790
791 // UseReg might be smaller or larger than DefReg, depending on the subreg and
792 // on whether DefReg is a subreg, too. -> Find the smaller one. This does not
793 // apply to virtual registers because we cannot construct a subreg for them.
794 if (DefReg.isVirtual())
795 return DefReg;
796 MCRegister DefMCReg =
797 DefSubRegIdx ? TRI->getSubReg(DefReg, DefSubRegIdx) : DefReg.asMCReg();
798 MCRegister UseMCReg =
799 UseSubRegIdx ? TRI->getSubReg(UseReg, UseSubRegIdx) : UseReg.asMCReg();
800 return TRI->isSubRegisterEq(DefMCReg, UseMCReg) ? UseMCReg : DefMCReg;
801}
802
804 SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep,
805 const TargetSchedModel *SchedModel) const {
806 if (Dep.getKind() != SDep::Kind::Data || !Dep.getReg() || !Def->isInstr() ||
807 !Use->isInstr())
808 return;
809
810 MachineInstr *DefI = Def->getInstr();
811 MachineInstr *UseI = Use->getInstr();
812
813 // Check for false latency on $tensorcnt / $asynccnt dependencies
814 if (Dep.getReg() == AMDGPU::TENSORcnt || Dep.getReg() == AMDGPU::ASYNCcnt) {
815 unsigned UseOp = UseI->getOpcode();
816 // Do not adjust latency for load->s_wait
817 bool IsBarrierCase =
818 InstrInfo.isLDSDMA(*DefI) &&
819 (UseOp == AMDGPU::S_WAIT_TENSORCNT || UseOp == AMDGPU::S_WAIT_ASYNCCNT);
820 if (!IsBarrierCase) {
821 Dep.setLatency(1);
822 return;
823 }
824 }
825
826 if (Register Reg = getRealSchedDependency(*DefI, DefOpIdx, *UseI, UseOpIdx)) {
827 Dep.setReg(Reg);
828 } else {
829 Dep = SDep(Def, SDep::Artificial);
830 return; // This is not a data dependency anymore.
831 }
832
833 if (DefI->isBundle()) {
835 auto Reg = Dep.getReg();
838 unsigned Lat = 0;
839 for (++I; I != E && I->isBundledWithPred(); ++I) {
840 if (I->isMetaInstruction())
841 continue;
842 if (I->modifiesRegister(Reg, TRI))
843 Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *I);
844 else if (Lat)
845 --Lat;
846 }
847 Dep.setLatency(Lat);
848 } else if (UseI->isBundle()) {
850 auto Reg = Dep.getReg();
853 unsigned Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *DefI);
854 for (++I; I != E && I->isBundledWithPred() && Lat; ++I) {
855 if (I->isMetaInstruction())
856 continue;
857 if (I->readsRegister(Reg, TRI))
858 break;
859 --Lat;
860 }
861 Dep.setLatency(Lat);
862 } else if (Dep.getLatency() == 0 && Dep.getReg() == AMDGPU::VCC_LO) {
863 // Work around the fact that SIInstrInfo::fixImplicitOperands modifies
864 // implicit operands which come from the MCInstrDesc, which can fool
865 // ScheduleDAGInstrs::addPhysRegDataDeps into treating them as implicit
866 // pseudo operands.
867 Dep.setLatency(InstrInfo.getSchedModel().computeOperandLatency(
868 DefI, DefOpIdx, UseI, UseOpIdx));
869 }
870}
871
874 return 0; // Not MIMG encoding.
875
876 if (NSAThreshold.getNumOccurrences() > 0)
877 return std::max(NSAThreshold.getValue(), 2u);
878
880 "amdgpu-nsa-threshold", -1);
881 if (Value > 0)
882 return std::max(Value, 2);
883
884 return NSAThreshold;
885}
886
888 const GCNSubtarget &ST)
889 : ST(ST) {
890 const CallingConv::ID CC = F.getCallingConv();
891 const bool IsKernel =
893
894 if (IsKernel && (!F.arg_empty() || ST.getImplicitArgNumBytes(F) != 0))
895 KernargSegmentPtr = true;
896
897 bool IsAmdHsaOrMesa = ST.isAmdHsaOrMesa(F);
898 if (IsAmdHsaOrMesa && !ST.hasFlatScratchEnabled())
899 PrivateSegmentBuffer = true;
900 else if (ST.isMesaGfxShader(F))
901 ImplicitBufferPtr = true;
902
903 if (!AMDGPU::isGraphics(CC)) {
904 if (!F.hasFnAttribute("amdgpu-no-dispatch-ptr"))
905 DispatchPtr = true;
906
907 // FIXME: Can this always be disabled with < COv5?
908 if (!F.hasFnAttribute("amdgpu-no-queue-ptr"))
909 QueuePtr = true;
910
911 if (!F.hasFnAttribute("amdgpu-no-dispatch-id"))
912 DispatchID = true;
913 }
914
915 if (ST.hasFlatAddressSpace() && AMDGPU::isEntryFunctionCC(CC) &&
916 (IsAmdHsaOrMesa || ST.hasFlatScratchEnabled()) &&
917 // FlatScratchInit cannot be true for graphics CC if
918 // hasFlatScratchEnabled() is false.
919 (ST.hasFlatScratchEnabled() ||
920 (!AMDGPU::isGraphics(CC) &&
921 !F.hasFnAttribute("amdgpu-no-flat-scratch-init"))) &&
922 !ST.hasArchitectedFlatScratch()) {
923 FlatScratchInit = true;
924 }
925
927 NumUsedUserSGPRs += getNumUserSGPRForField(ImplicitBufferPtrID);
928
931
932 if (hasDispatchPtr())
933 NumUsedUserSGPRs += getNumUserSGPRForField(DispatchPtrID);
934
935 if (hasQueuePtr())
936 NumUsedUserSGPRs += getNumUserSGPRForField(QueuePtrID);
937
939 NumUsedUserSGPRs += getNumUserSGPRForField(KernargSegmentPtrID);
940
941 if (hasDispatchID())
942 NumUsedUserSGPRs += getNumUserSGPRForField(DispatchIdID);
943
944 if (hasFlatScratchInit())
945 NumUsedUserSGPRs += getNumUserSGPRForField(FlatScratchInitID);
946
948 NumUsedUserSGPRs += getNumUserSGPRForField(PrivateSegmentSizeID);
949}
950
952 assert(NumKernargPreloadSGPRs + NumSGPRs <= AMDGPU::getMaxNumUserSGPRs(ST));
953 NumKernargPreloadSGPRs += NumSGPRs;
954 NumUsedUserSGPRs += NumSGPRs;
955}
956
958 return AMDGPU::getMaxNumUserSGPRs(ST) - NumUsedUserSGPRs;
959}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static cl::opt< bool > UseAA("aarch64-use-aa", cl::init(true), cl::desc("Enable the use of AA during codegen."))
This file describes how to lower LLVM calls to machine code calls.
This file declares the targeting of the InstructionSelector class for AMDGPU.
This file declares the targeting of the Machinelegalizer class for AMDGPU.
This file declares the targeting of the RegisterBankInfo class for AMDGPU.
static cl::opt< bool > SramEccSetting("amdgpu-sramecc", cl::desc("Force amdgpu.sramecc for testing"), cl::ReallyHidden)
static cl::opt< bool > XnackSetting("amdgpu-xnack", cl::desc("Force amdgpu.xnack value for testing"), cl::ReallyHidden)
The AMDGPU TargetMachine interface definition for hw codegen targets.
MachineBasicBlock & MBB
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static AMDGPUSubtarget::Generation computeDefaultGeneration(const Triple &TT)
static cl::opt< unsigned > NSAThreshold("amdgpu-nsa-threshold", cl::desc("Number of addresses from which to enable MIMG NSA."), cl::init(2), cl::Hidden)
static cl::opt< bool > EnableVGPRIndexMode("amdgpu-vgpr-index-mode", cl::desc("Use GPR indexing mode instead of movrel for vector indexing"), cl::init(false))
static cl::opt< bool > UseAA("amdgpu-use-aa-in-codegen", cl::desc("Enable the use of AA during codegen."), cl::init(true))
static const MachineOperand * getVOP3PSourceModifierFromOpIdx(const MachineInstr &UseI, int UseOpIdx, const SIInstrInfo &InstrInfo)
static unsigned getEffectiveSubRegIdx(const SIRegisterInfo &TRI, const SIInstrInfo &InstrInfo, const MachineInstr &I, const MachineOperand &Op)
AMD GCN specific subclass of TargetSubtarget.
static Register UseReg(const MachineOperand &MO)
IRTranslator LLVM IR MI
This file describes how to lower LLVM inline asm to machine code INLINEASM.
static bool hasFeature(StringRef Feature, const FeatureBitset &FeatureBits, ArrayRef< SubtargetFeatureKV > ProcFeatures)
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register const TargetRegisterInfo * TRI
Promote Memory to Register
Definition Mem2Reg.cpp:110
if(PassOpts->AAPipeline)
This file defines the SmallString class.
#define LLVM_DEBUG(...)
Definition Debug.h:119
std::pair< unsigned, unsigned > getWavesPerEU(const Function &F) const
std::pair< unsigned, unsigned > getOccupancyWithWorkGroupSizes(uint32_t LDSBytes, const Function &F) const
Subtarget's minimum/maximum occupancy, in number of waves per EU, that can be achieved when the only ...
unsigned getWavefrontSizeLog2() const
AMDGPUSubtarget(const Triple &TT)
unsigned AddressableLocalMemorySize
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:105
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
Definition Attributes.h:261
Diagnostic information for optimization failures.
Diagnostic information for unsupported feature in backend.
uint64_t getFnAttributeAsParsedInteger(StringRef Kind, uint64_t Default=0) const
For a string attribute Kind, parse attribute as an integer.
Definition Function.cpp:774
bool hasFlat() const
InstrItineraryData InstrItins
bool useVGPRIndexMode() const
void mirFileLoaded(MachineFunction &MF) const override
unsigned MaxPrivateElementSize
unsigned getAddressableNumArchVGPRs() const
unsigned getMinNumSGPRs(unsigned WavesPerEU) const
void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS)
unsigned getConstantBusLimit(unsigned Opcode) const
const InstrItineraryData * getInstrItineraryData() const override
void adjustSchedDependency(SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep, const TargetSchedModel *SchedModel) const override
void overridePostRASchedPolicy(MachineSchedPolicy &Policy, const SchedRegion &Region) const override
Align getStackAlignment() const
const bool BufferOOBRelaxed
bool hasMadF16() const
unsigned getMinNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
const SIRegisterInfo * getRegisterInfo() const override
unsigned getBaseMaxNumVGPRs(const Function &F, std::pair< unsigned, unsigned > NumVGPRBounds) const
bool zeroesHigh16BitsOfDest(unsigned Opcode) const
Returns if the result of this instruction with a 16-bit result returned in a 32-bit register implicit...
unsigned getBaseMaxNumSGPRs(const Function &F, std::pair< unsigned, unsigned > WavesPerEU, unsigned PreloadedSGPRs, unsigned ReservedNumSGPRs) const
unsigned getMaxNumPreloadedSGPRs() const
GCNSubtarget & initializeSubtargetDependencies(const Triple &TT, StringRef GPU, StringRef FS)
void overrideSchedPolicy(MachineSchedPolicy &Policy, const SchedRegion &Region) const override
std::pair< unsigned, unsigned > computeOccupancy(const Function &F, unsigned LDSSize=0, unsigned NumSGPRs=0, unsigned NumVGPRs=0) const
Subtarget's minimum/maximum occupancy, in number of waves per EU, that can be achieved when the only ...
unsigned getMaxNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
AMDGPU::TargetID TargetID
const SITargetLowering * getTargetLowering() const override
unsigned getNSAThreshold(const MachineFunction &MF) const
GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, const GCNTargetMachine &TM, bool BufferOOBRelaxed=false, bool TBufferOOBRelaxed=false, AMDGPU::TargetIDSetting XnackSetting=AMDGPU::TargetIDSetting::Any, AMDGPU::TargetIDSetting SramEccSetting=AMDGPU::TargetIDSetting::Any)
unsigned getReservedNumSGPRs(const MachineFunction &MF) const
const bool TBufferOOBRelaxed
bool useAA() const override
bool isWave32() const
unsigned getOccupancyWithNumVGPRs(unsigned VGPRs, unsigned DynamicVGPRBlockSize) const
Return the maximum number of waves per SIMD for kernels using VGPRs VGPRs.
unsigned InstCacheLineSize
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs) const
Return the maximum number of waves per SIMD for kernels using SGPRs SGPRs.
Generation getGeneration() const
unsigned getMaxNumSGPRs(unsigned WavesPerEU, bool Addressable) const
std::pair< unsigned, unsigned > getMaxNumVectorRegs(const Function &F) const
Return a pair of maximum numbers of VGPRs and AGPRs that meet the number of waves per execution unit ...
bool isXNACKEnabled() const
unsigned getBaseReservedNumSGPRs(const bool HasFlatScratch) const
bool hasAddr64() const
void checkSubtargetFeatures(const Function &F) const
Diagnose inconsistent subtarget features before attempting to codegen function F.
~GCNSubtarget() override
const SelectionDAGTargetInfo * getSelectionDAGInfo() const override
static unsigned getNumUserSGPRForField(UserSGPRID ID)
void allocKernargPreloadSGPRs(unsigned NumSGPRs)
bool hasPrivateSegmentBuffer() const
GCNUserSGPRUsageInfo(const Function &F, const GCNSubtarget &ST)
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Instructions::const_iterator const_instr_iterator
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
bool isBundle() const
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
int64_t getImm() const
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
Definition Register.h:20
MCRegister asMCReg() const
Utility to check-convert this value to a MCRegister.
Definition Register.h:107
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
Definition Register.h:79
Scheduling dependency.
Definition ScheduleDAG.h:52
Kind getKind() const
Returns an enum value representing the kind of the dependence.
@ Data
Regular data dependence (aka true-dependence).
Definition ScheduleDAG.h:56
void setLatency(unsigned Lat)
Sets the latency for this edge.
@ Artificial
Arbitrary strong DAG edge (no real dependence).
Definition ScheduleDAG.h:75
unsigned getLatency() const
Returns the latency value for this edge, which roughly means the minimum number of cycles that must e...
Register getReg() const
Returns the register associated with this edge.
void setReg(Register Reg)
Assigns the associated register for this edge.
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
std::pair< unsigned, unsigned > getWavesPerEU() const
GCNUserSGPRUsageInfo & getUserSGPRInfo()
Scheduling unit. This is a node in the scheduling DAG.
Targets can subclass this to parameterize the SelectionDAG lowering and instruction selection process...
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition SmallString.h:26
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Information about stack frame layout on the target.
Provide an instruction scheduling machine model to CodeGen passes.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:48
@ AMDGPUSubArch9
Definition Triple.h:218
@ AMDGPUSubArch9_4
Definition Triple.h:231
@ AMDGPUSubArch6
Definition Triple.h:196
@ AMDGPUSubArch10_3
Definition Triple.h:241
@ AMDGPUSubArch90A
Definition Triple.h:229
@ AMDGPUSubArch810
Definition Triple.h:216
@ AMDGPUSubArch11
Definition Triple.h:250
@ AMDGPUSubArch7
Definition Triple.h:201
@ AMDGPUSubArch12_5
Definition Triple.h:270
@ AMDGPUSubArch10_1
Definition Triple.h:235
@ AMDGPUSubArch11_7
Definition Triple.h:261
@ AMDGPUSubArch8
Definition Triple.h:209
@ AMDGPUSubArch13
Definition Triple.h:274
@ AMDGPUSubArch12
Definition Triple.h:266
@ AMDGPUSubArch908
Definition Triple.h:228
A Use represents the edge between a Value definition and its users.
Definition Use.h:35
LLVM Value Representation.
Definition Value.h:75
self_iterator getIterator()
Definition ilist_node.h:123
unsigned getNumWavesPerEUWithNumVGPRs(const MCSubtargetInfo &STI, unsigned NumVGPRs, unsigned DynamicVGPRBlockSize)
unsigned getEUsPerCU(const MCSubtargetInfo &STI)
unsigned getAddressableLocalMemorySize(const MCSubtargetInfo &STI)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, unsigned TotalNumSGPRs, unsigned Granule, unsigned TrapReserve)
unsigned getMaxWavesPerEU(const MCSubtargetInfo &STI)
unsigned getLocalMemorySize(const MCSubtargetInfo &STI)
StringRef getSchedStrategy(const Function &F)
unsigned getMaxNumUserSGPRs(const MCSubtargetInfo &STI)
unsigned getLdsDwGranularity(const MCSubtargetInfo &ST)
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
unsigned getDynamicVGPRBlockSize(const Function &F)
LLVM_ABI Triple::SubArchType getMajorSubArch(Triple::SubArchType SubArch)
std::pair< unsigned, unsigned > getIntegerPairAttribute(const Function &F, StringRef Name, std::pair< unsigned, unsigned > Default, bool OnlyFirstRequired)
LLVM_READNONE constexpr bool isGraphics(CallingConv::ID CC)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ SPIR_KERNEL
Used for SPIR kernel functions.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:280
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
DWARFExpression::Operation Op
MCRegisterClass TargetRegisterClass
Definition FastISel.h:58
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Definition Error.cpp:177
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Define a generic scheduling policy for targets that don't provide their own MachineSchedStrategy.
bool ShouldTrackLaneMasks
Track LaneMasks to allow reordering of independent subregister writes of the same vreg.
A region of an MBB for scheduling.