LLVM 23.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"
29#include <algorithm>
30
31using namespace llvm;
32
33#define DEBUG_TYPE "gcn-subtarget"
34
35#define GET_SUBTARGETINFO_TARGET_DESC
36#define GET_SUBTARGETINFO_CTOR
37#define AMDGPUSubtarget GCNSubtarget
38#include "AMDGPUGenSubtargetInfo.inc"
39#undef AMDGPUSubtarget
40
42 "amdgpu-vgpr-index-mode",
43 cl::desc("Use GPR indexing mode instead of movrel for vector indexing"),
44 cl::init(false));
45
46static cl::opt<bool> UseAA("amdgpu-use-aa-in-codegen",
47 cl::desc("Enable the use of AA during codegen."),
48 cl::init(true));
49
51 NSAThreshold("amdgpu-nsa-threshold",
52 cl::desc("Number of addresses from which to enable MIMG NSA."),
54
56
58 StringRef GPU,
59 StringRef FS) {
60 // Determine default and user-specified characteristics
61 //
62 // We want to be able to turn these off, but making this a subtarget feature
63 // for SI has the unhelpful behavior that it unsets everything else if you
64 // disable it.
65 //
66 // Similarly we want enable-prt-strict-null to be on by default and not to
67 // unset everything else if it is disabled
68
69 SmallString<256> FullFS("+load-store-opt,+enable-ds128,");
70
71 // Turn on features that HSA ABI requires. Also turn on FlatForGlobal by
72 // default
73 if (isAmdHsaOS())
74 FullFS += "+flat-for-global,+unaligned-access-mode,+trap-handler,";
75
76 FullFS += "+enable-prt-strict-null,"; // This is overridden by a disable in FS
77
78 // Disable mutually exclusive bits.
79 if (FS.contains_insensitive("+wavefrontsize")) {
80 if (!FS.contains_insensitive("wavefrontsize16"))
81 FullFS += "-wavefrontsize16,";
82 if (!FS.contains_insensitive("wavefrontsize32"))
83 FullFS += "-wavefrontsize32,";
84 if (!FS.contains_insensitive("wavefrontsize64"))
85 FullFS += "-wavefrontsize64,";
86 }
87
88 FullFS += FS;
89
90 ParseSubtargetFeatures(GPU, /*TuneCPU*/ GPU, FullFS);
91
92 // Implement the "generic" processors, which acts as the default when no
93 // generation features are enabled (e.g for -mcpu=''). HSA OS defaults to
94 // the first amdgcn target that supports flat addressing. Other OSes defaults
95 // to the first amdgcn target.
99 // Assume wave64 for the unknown target, if not explicitly set.
100 if (getWavefrontSizeLog2() == 0)
102 } else if (!hasFeature(AMDGPU::FeatureWavefrontSize32) &&
103 !hasFeature(AMDGPU::FeatureWavefrontSize64)) {
104 // If there is no default wave size it must be a generation before gfx10,
105 // these have FeatureWavefrontSize64 in their definition already. For gfx10+
106 // set wave32 as a default.
107 ToggleFeature(AMDGPU::FeatureWavefrontSize32);
109 }
110
111 // We don't support FP64 for EG/NI atm.
113
114 // Targets must either support 64-bit offsets for MUBUF instructions, and/or
115 // support flat operations, otherwise they cannot access a 64-bit global
116 // address space
117 assert(hasAddr64() || hasFlat());
118 // Unless +-flat-for-global is specified, turn on FlatForGlobal for targets
119 // that do not support ADDR64 variants of MUBUF instructions. Such targets
120 // cannot use a 64 bit offset with a MUBUF instruction to access the global
121 // address space
122 if (!hasAddr64() && !FS.contains("flat-for-global") && !UseFlatForGlobal) {
123 ToggleFeature(AMDGPU::FeatureUseFlatForGlobal);
124 UseFlatForGlobal = true;
125 }
126 // Unless +-flat-for-global is specified, use MUBUF instructions for global
127 // address space access if flat operations are not available.
128 if (!hasFlat() && !FS.contains("flat-for-global") && UseFlatForGlobal) {
129 ToggleFeature(AMDGPU::FeatureUseFlatForGlobal);
130 UseFlatForGlobal = false;
131 }
132
133 // Set defaults if needed.
134 if (MaxPrivateElementSize == 0)
136
137 if (LDSBankCount == 0)
138 LDSBankCount = 32;
139
142
143 if (FlatOffsetBitWidth == 0)
145
147
150
151 // InstCacheLineSize is set from TableGen subtarget features
152 // (FeatureInstCacheLineSize64 / FeatureInstCacheLineSize128).
153 // Fall back to 64 if no feature was specified (e.g. generic targets).
154 if (InstCacheLineSize == 0)
156
158 "InstCacheLineSize must be a power of 2");
159
160 TargetID.setTargetIDFromFeaturesString(FS);
161
162 LLVM_DEBUG(dbgs() << "xnack setting for subtarget: "
163 << TargetID.getXnackSetting() << '\n');
164 LLVM_DEBUG(dbgs() << "sramecc setting for subtarget: "
165 << TargetID.getSramEccSetting() << '\n');
166
167 return *this;
168}
169
171 LLVMContext &Ctx = F.getContext();
172 if (hasFeature(AMDGPU::FeatureWavefrontSize32) &&
173 hasFeature(AMDGPU::FeatureWavefrontSize64)) {
174 Ctx.diagnose(DiagnosticInfoUnsupported(
175 F, "must specify exactly one of wavefrontsize32 and wavefrontsize64"));
176 }
177 if (hasFeature(AMDGPU::FeatureXNACKAnyOnly) && TargetID.isXnackOnOrOff()) {
178 Ctx.diagnose(DiagnosticInfoUnsupported(
179 F, "target only supports xnack 'Any'; '+/-xnack' is not allowed"));
180 }
181}
182
184 const GCNTargetMachine &TM)
185 : // clang-format off
186 AMDGPUGenSubtargetInfo(TT, GPU, /*TuneCPU*/ GPU, FS),
187 AMDGPUSubtarget(TT),
188 TargetID(*this),
189 InstrItins(getInstrItineraryForCPU(GPU)),
190 InstrInfo(initializeSubtargetDependencies(TT, GPU, FS)),
191 TLInfo(TM, *this),
192 // Frame index expansion sometimes assumes the low bit of SP is 0
193 FrameLowering(TargetFrameLowering::StackGrowsUp, getStackAlignment(), 0,
194 /*TransAl=*/Align(4)) {
195 // clang-format on
198
199 TSInfo = std::make_unique<AMDGPUSelectionDAGInfo>();
200
201 CallLoweringInfo = std::make_unique<AMDGPUCallLowering>(*getTargetLowering());
202 InlineAsmLoweringInfo =
203 std::make_unique<InlineAsmLowering>(getTargetLowering());
204 Legalizer = std::make_unique<AMDGPULegalizerInfo>(*this, TM);
205 RegBankInfo = std::make_unique<AMDGPURegisterBankInfo>(*this);
206 InstSelector =
207 std::make_unique<AMDGPUInstructionSelector>(*this, *RegBankInfo, TM);
208}
209
211 return TSInfo.get();
212}
213
214unsigned GCNSubtarget::getConstantBusLimit(unsigned Opcode) const {
215 if (getGeneration() < GFX10)
216 return 1;
217
218 switch (Opcode) {
219 case AMDGPU::V_LSHLREV_B64_e64:
220 case AMDGPU::V_LSHLREV_B64_gfx10:
221 case AMDGPU::V_LSHLREV_B64_e64_gfx11:
222 case AMDGPU::V_LSHLREV_B64_e32_gfx12:
223 case AMDGPU::V_LSHLREV_B64_e64_gfx12:
224 case AMDGPU::V_LSHL_B64_e64:
225 case AMDGPU::V_LSHRREV_B64_e64:
226 case AMDGPU::V_LSHRREV_B64_gfx10:
227 case AMDGPU::V_LSHRREV_B64_e64_gfx11:
228 case AMDGPU::V_LSHRREV_B64_e64_gfx12:
229 case AMDGPU::V_LSHR_B64_e64:
230 case AMDGPU::V_ASHRREV_I64_e64:
231 case AMDGPU::V_ASHRREV_I64_gfx10:
232 case AMDGPU::V_ASHRREV_I64_e64_gfx11:
233 case AMDGPU::V_ASHRREV_I64_e64_gfx12:
234 case AMDGPU::V_ASHR_I64_e64:
235 return 1;
236 }
237
238 return 2;
239}
240
241/// This list was mostly derived from experimentation.
242bool GCNSubtarget::zeroesHigh16BitsOfDest(unsigned Opcode) const {
243 switch (Opcode) {
244 case AMDGPU::V_CVT_F16_F32_e32:
245 case AMDGPU::V_CVT_F16_F32_e64:
246 case AMDGPU::V_CVT_F16_U16_e32:
247 case AMDGPU::V_CVT_F16_U16_e64:
248 case AMDGPU::V_CVT_F16_I16_e32:
249 case AMDGPU::V_CVT_F16_I16_e64:
250 case AMDGPU::V_RCP_F16_e64:
251 case AMDGPU::V_RCP_F16_e32:
252 case AMDGPU::V_RSQ_F16_e64:
253 case AMDGPU::V_RSQ_F16_e32:
254 case AMDGPU::V_SQRT_F16_e64:
255 case AMDGPU::V_SQRT_F16_e32:
256 case AMDGPU::V_LOG_F16_e64:
257 case AMDGPU::V_LOG_F16_e32:
258 case AMDGPU::V_EXP_F16_e64:
259 case AMDGPU::V_EXP_F16_e32:
260 case AMDGPU::V_SIN_F16_e64:
261 case AMDGPU::V_SIN_F16_e32:
262 case AMDGPU::V_COS_F16_e64:
263 case AMDGPU::V_COS_F16_e32:
264 case AMDGPU::V_FLOOR_F16_e64:
265 case AMDGPU::V_FLOOR_F16_e32:
266 case AMDGPU::V_CEIL_F16_e64:
267 case AMDGPU::V_CEIL_F16_e32:
268 case AMDGPU::V_TRUNC_F16_e64:
269 case AMDGPU::V_TRUNC_F16_e32:
270 case AMDGPU::V_RNDNE_F16_e64:
271 case AMDGPU::V_RNDNE_F16_e32:
272 case AMDGPU::V_FRACT_F16_e64:
273 case AMDGPU::V_FRACT_F16_e32:
274 case AMDGPU::V_FREXP_MANT_F16_e64:
275 case AMDGPU::V_FREXP_MANT_F16_e32:
276 case AMDGPU::V_FREXP_EXP_I16_F16_e64:
277 case AMDGPU::V_FREXP_EXP_I16_F16_e32:
278 case AMDGPU::V_LDEXP_F16_e64:
279 case AMDGPU::V_LDEXP_F16_e32:
280 case AMDGPU::V_LSHLREV_B16_e64:
281 case AMDGPU::V_LSHLREV_B16_e32:
282 case AMDGPU::V_LSHRREV_B16_e64:
283 case AMDGPU::V_LSHRREV_B16_e32:
284 case AMDGPU::V_ASHRREV_I16_e64:
285 case AMDGPU::V_ASHRREV_I16_e32:
286 case AMDGPU::V_ADD_U16_e64:
287 case AMDGPU::V_ADD_U16_e32:
288 case AMDGPU::V_SUB_U16_e64:
289 case AMDGPU::V_SUB_U16_e32:
290 case AMDGPU::V_SUBREV_U16_e64:
291 case AMDGPU::V_SUBREV_U16_e32:
292 case AMDGPU::V_MUL_LO_U16_e64:
293 case AMDGPU::V_MUL_LO_U16_e32:
294 case AMDGPU::V_ADD_F16_e64:
295 case AMDGPU::V_ADD_F16_e32:
296 case AMDGPU::V_SUB_F16_e64:
297 case AMDGPU::V_SUB_F16_e32:
298 case AMDGPU::V_SUBREV_F16_e64:
299 case AMDGPU::V_SUBREV_F16_e32:
300 case AMDGPU::V_MUL_F16_e64:
301 case AMDGPU::V_MUL_F16_e32:
302 case AMDGPU::V_MAX_F16_e64:
303 case AMDGPU::V_MAX_F16_e32:
304 case AMDGPU::V_MIN_F16_e64:
305 case AMDGPU::V_MIN_F16_e32:
306 case AMDGPU::V_MAX_U16_e64:
307 case AMDGPU::V_MAX_U16_e32:
308 case AMDGPU::V_MIN_U16_e64:
309 case AMDGPU::V_MIN_U16_e32:
310 case AMDGPU::V_MAX_I16_e64:
311 case AMDGPU::V_MAX_I16_e32:
312 case AMDGPU::V_MIN_I16_e64:
313 case AMDGPU::V_MIN_I16_e32:
314 case AMDGPU::V_MAD_F16_e64:
315 case AMDGPU::V_MAD_U16_e64:
316 case AMDGPU::V_MAD_I16_e64:
317 case AMDGPU::V_FMA_F16_e64:
318 case AMDGPU::V_DIV_FIXUP_F16_e64:
319 // On gfx10, all 16-bit instructions preserve the high bits.
321 case AMDGPU::V_MADAK_F16:
322 case AMDGPU::V_MADMK_F16:
323 case AMDGPU::V_MAC_F16_e64:
324 case AMDGPU::V_MAC_F16_e32:
325 case AMDGPU::V_FMAMK_F16:
326 case AMDGPU::V_FMAAK_F16:
327 case AMDGPU::V_FMAC_F16_e64:
328 case AMDGPU::V_FMAC_F16_e32:
329 // In gfx9, the preferred handling of the unused high 16-bits changed. Most
330 // instructions maintain the legacy behavior of 0ing. Some instructions
331 // changed to preserving the high bits.
333 case AMDGPU::V_MAD_MIXLO_F16:
334 case AMDGPU::V_MAD_MIXHI_F16:
335 default:
336 return false;
337 }
338}
339
341 const SchedRegion &Region) const {
342 // Track register pressure so the scheduler can try to decrease
343 // pressure once register usage is above the threshold defined by
344 // SIRegisterInfo::getRegPressureSetLimit()
345 Policy.ShouldTrackPressure = true;
346
347 const Function &F = Region.RegionBegin->getMF()->getFunction();
348 if (AMDGPU::getSchedStrategy(F) == "coexec") {
349 Policy.OnlyTopDown = true;
350 Policy.OnlyBottomUp = false;
351 return;
352 }
353
354 // Enabling both top down and bottom up scheduling seems to give us less
355 // register spills than just using one of these approaches on its own.
356 Policy.OnlyTopDown = false;
357 Policy.OnlyBottomUp = false;
358
359 // Enabling ShouldTrackLaneMasks crashes the SI Machine Scheduler.
360 if (!enableSIScheduler())
361 Policy.ShouldTrackLaneMasks = true;
362}
363
365 const SchedRegion &Region) const {
366 const Function &F = Region.RegionBegin->getMF()->getFunction();
367 Attribute PostRADirectionAttr = F.getFnAttribute("amdgpu-post-ra-direction");
368 if (!PostRADirectionAttr.isValid())
369 return;
370
371 StringRef PostRADirectionStr = PostRADirectionAttr.getValueAsString();
372 if (PostRADirectionStr == "topdown") {
373 Policy.OnlyTopDown = true;
374 Policy.OnlyBottomUp = false;
375 } else if (PostRADirectionStr == "bottomup") {
376 Policy.OnlyTopDown = false;
377 Policy.OnlyBottomUp = true;
378 } else if (PostRADirectionStr == "bidirectional") {
379 Policy.OnlyTopDown = false;
380 Policy.OnlyBottomUp = false;
381 } else {
383 F, F.getSubprogram(), "invalid value for postRA direction attribute");
384 F.getContext().diagnose(Diag);
385 }
386
387 LLVM_DEBUG({
388 const char *DirStr = "default";
389 if (Policy.OnlyTopDown && !Policy.OnlyBottomUp)
390 DirStr = "topdown";
391 else if (!Policy.OnlyTopDown && Policy.OnlyBottomUp)
392 DirStr = "bottomup";
393 else if (!Policy.OnlyTopDown && !Policy.OnlyBottomUp)
394 DirStr = "bidirectional";
395
396 dbgs() << "Post-MI-sched direction (" << F.getName() << "): " << DirStr
397 << '\n';
398 });
399}
400
402 if (isWave32()) {
403 // Fix implicit $vcc operands after MIParser has verified that they match
404 // the instruction definitions.
405 for (auto &MBB : MF) {
406 for (auto &MI : MBB)
407 InstrInfo.fixImplicitOperands(MI);
408 }
409 }
410}
411
413 return InstrInfo.pseudoToMCOpcode(AMDGPU::V_MAD_F16_e64) != -1;
414}
415
417 return hasVGPRIndexMode() && (!hasMovrel() || EnableVGPRIndexMode);
418}
419
420bool GCNSubtarget::useAA() const { return UseAA; }
421
426
427unsigned
429 unsigned DynamicVGPRBlockSize) const {
431 DynamicVGPRBlockSize);
432}
433
434unsigned
435GCNSubtarget::getBaseReservedNumSGPRs(const bool HasFlatScratch) const {
437 return 2; // VCC. FLAT_SCRATCH and XNACK are no longer in SGPRs.
438
439 if (HasFlatScratch || HasArchitectedFlatScratch) {
441 return 6; // FLAT_SCRATCH, XNACK, VCC (in that order).
443 return 4; // FLAT_SCRATCH, VCC (in that order).
444 }
445
446 if (isXNACKEnabled())
447 return 4; // XNACK, VCC (in that order).
448 return 2; // VCC.
449}
450
455
457 // In principle we do not need to reserve SGPR pair used for flat_scratch if
458 // we know flat instructions do not access the stack anywhere in the
459 // program. For now assume it's needed if we have flat instructions.
460 const bool KernelUsesFlatScratch = hasFlatAddressSpace();
461 return getBaseReservedNumSGPRs(KernelUsesFlatScratch);
462}
463
464std::pair<unsigned, unsigned>
466 unsigned NumSGPRs, unsigned NumVGPRs) const {
467 unsigned DynamicVGPRBlockSize = AMDGPU::getDynamicVGPRBlockSize(F);
468 // Temporarily check both the attribute and the subtarget feature until the
469 // latter is removed.
470 if (DynamicVGPRBlockSize == 0 && isDynamicVGPREnabled())
471 DynamicVGPRBlockSize = getDynamicVGPRBlockSize();
472
473 auto [MinOcc, MaxOcc] = getOccupancyWithWorkGroupSizes(LDSSize, F);
474 unsigned SGPROcc = getOccupancyWithNumSGPRs(NumSGPRs);
475 unsigned VGPROcc = getOccupancyWithNumVGPRs(NumVGPRs, DynamicVGPRBlockSize);
476
477 // Maximum occupancy may be further limited by high SGPR/VGPR usage.
478 MaxOcc = std::min(MaxOcc, std::min(SGPROcc, VGPROcc));
479 return {std::min(MinOcc, MaxOcc), MaxOcc};
480}
481
483 const Function &F, std::pair<unsigned, unsigned> WavesPerEU,
484 unsigned PreloadedSGPRs, unsigned ReservedNumSGPRs) const {
485 // Compute maximum number of SGPRs function can use using default/requested
486 // minimum number of waves per execution unit.
487 unsigned MaxNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, false);
488 unsigned MaxAddressableNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, true);
489
490 // Check if maximum number of SGPRs was explicitly requested using
491 // "amdgpu-num-sgpr" attribute.
492 unsigned Requested =
493 F.getFnAttributeAsParsedInteger("amdgpu-num-sgpr", MaxNumSGPRs);
494
495 if (Requested != MaxNumSGPRs) {
496 // Make sure requested value does not violate subtarget's specifications.
497 if (Requested && (Requested <= ReservedNumSGPRs))
498 Requested = 0;
499
500 // If more SGPRs are required to support the input user/system SGPRs,
501 // increase to accommodate them.
502 //
503 // FIXME: This really ends up using the requested number of SGPRs + number
504 // of reserved special registers in total. Theoretically you could re-use
505 // the last input registers for these special registers, but this would
506 // require a lot of complexity to deal with the weird aliasing.
507 unsigned InputNumSGPRs = PreloadedSGPRs;
508 if (Requested && Requested < InputNumSGPRs)
509 Requested = InputNumSGPRs;
510
511 // Make sure requested value is compatible with values implied by
512 // default/requested minimum/maximum number of waves per execution unit.
513 if (Requested && Requested > getMaxNumSGPRs(WavesPerEU.first, false))
514 Requested = 0;
515 if (WavesPerEU.second && Requested &&
516 Requested < getMinNumSGPRs(WavesPerEU.second))
517 Requested = 0;
518
519 if (Requested)
520 MaxNumSGPRs = Requested;
521 }
522
523 if (hasSGPRInitBug())
525
526 return std::min(MaxNumSGPRs - ReservedNumSGPRs, MaxAddressableNumSGPRs);
527}
528
530 const Function &F = MF.getFunction();
534}
535
537 using USI = GCNUserSGPRUsageInfo;
538 // Max number of user SGPRs
539 const unsigned MaxUserSGPRs =
540 USI::getNumUserSGPRForField(USI::PrivateSegmentBufferID) +
541 USI::getNumUserSGPRForField(USI::DispatchPtrID) +
542 USI::getNumUserSGPRForField(USI::QueuePtrID) +
543 USI::getNumUserSGPRForField(USI::KernargSegmentPtrID) +
544 USI::getNumUserSGPRForField(USI::DispatchIdID) +
545 USI::getNumUserSGPRForField(USI::FlatScratchInitID) +
546 USI::getNumUserSGPRForField(USI::ImplicitBufferPtrID);
547
548 // Max number of system SGPRs
549 const unsigned MaxSystemSGPRs = 1 + // WorkGroupIDX
550 1 + // WorkGroupIDY
551 1 + // WorkGroupIDZ
552 1 + // WorkGroupInfo
553 1; // private segment wave byte offset
554
555 // Max number of synthetic SGPRs
556 const unsigned SyntheticSGPRs = 1; // LDSKernelId
557
558 return MaxUserSGPRs + MaxSystemSGPRs + SyntheticSGPRs;
559}
560
565
567 const Function &F, std::pair<unsigned, unsigned> NumVGPRBounds) const {
568 const auto [Min, Max] = NumVGPRBounds;
569
570 // Check if maximum number of VGPRs was explicitly requested using
571 // "amdgpu-num-vgpr" attribute.
572
573 unsigned Requested = F.getFnAttributeAsParsedInteger("amdgpu-num-vgpr", Max);
574 if (Requested != Max && hasGFX90AInsts())
575 Requested *= 2;
576
577 // Make sure requested value is inside the range of possible VGPR usage.
578 return std::clamp(Requested, Min, Max);
579}
580
582 // Temporarily check both the attribute and the subtarget feature, until the
583 // latter is removed.
584 unsigned DynamicVGPRBlockSize = AMDGPU::getDynamicVGPRBlockSize(F);
585 if (DynamicVGPRBlockSize == 0 && isDynamicVGPREnabled())
586 DynamicVGPRBlockSize = getDynamicVGPRBlockSize();
587
588 std::pair<unsigned, unsigned> Waves = getWavesPerEU(F);
589 return getBaseMaxNumVGPRs(
590 F, {getMinNumVGPRs(Waves.second, DynamicVGPRBlockSize),
591 getMaxNumVGPRs(Waves.first, DynamicVGPRBlockSize)});
592}
593
595 return getMaxNumVGPRs(MF.getFunction());
596}
597
598std::pair<unsigned, unsigned>
600 const unsigned MaxVectorRegs = getMaxNumVGPRs(F);
601
602 unsigned MaxNumVGPRs = MaxVectorRegs;
603 unsigned MaxNumAGPRs = 0;
604 unsigned NumArchVGPRs = getAddressableNumArchVGPRs();
605
606 // On GFX90A, the number of VGPRs and AGPRs need not be equal. Theoretically,
607 // a wave may have up to 512 total vector registers combining together both
608 // VGPRs and AGPRs. Hence, in an entry function without calls and without
609 // AGPRs used within it, it is possible to use the whole vector register
610 // budget for VGPRs.
611 //
612 // TODO: it shall be possible to estimate maximum AGPR/VGPR pressure and split
613 // register file accordingly.
614 if (hasGFX90AInsts()) {
615 unsigned MinNumAGPRs = 0;
616 const unsigned TotalNumAGPRs = AMDGPU::AGPR_32RegClass.getNumRegs();
617
618 const std::pair<unsigned, unsigned> DefaultNumAGPR = {~0u, ~0u};
619
620 // TODO: The lower bound should probably force the number of required
621 // registers up, overriding amdgpu-waves-per-eu.
622 std::tie(MinNumAGPRs, MaxNumAGPRs) =
623 AMDGPU::getIntegerPairAttribute(F, "amdgpu-agpr-alloc", DefaultNumAGPR,
624 /*OnlyFirstRequired=*/true);
625
626 if (MinNumAGPRs == DefaultNumAGPR.first) {
627 // Default to splitting half the registers if AGPRs are required.
628 MinNumAGPRs = MaxNumAGPRs = MaxVectorRegs / 2;
629 } else {
630 // Align to accum_offset's allocation granularity.
631 MinNumAGPRs = alignTo(MinNumAGPRs, 4);
632
633 MinNumAGPRs = std::min(MinNumAGPRs, TotalNumAGPRs);
634 }
635
636 // Clamp values to be inbounds of our limits, and ensure min <= max.
637
638 MaxNumAGPRs = std::min(std::max(MinNumAGPRs, MaxNumAGPRs), MaxVectorRegs);
639 MinNumAGPRs = std::min(std::min(MinNumAGPRs, TotalNumAGPRs), MaxNumAGPRs);
640
641 MaxNumVGPRs = std::min(MaxVectorRegs - MinNumAGPRs, NumArchVGPRs);
642 MaxNumAGPRs = std::min(MaxVectorRegs - MaxNumVGPRs, MaxNumAGPRs);
643
644 assert(MaxNumVGPRs + MaxNumAGPRs <= MaxVectorRegs &&
645 MaxNumAGPRs <= TotalNumAGPRs && MaxNumVGPRs <= NumArchVGPRs &&
646 "invalid register counts");
647 } else if (hasMAIInsts()) {
648 // On gfx908 the number of AGPRs always equals the number of VGPRs.
649 MaxNumAGPRs = MaxNumVGPRs = MaxVectorRegs;
650 }
651
652 return std::pair(MaxNumVGPRs, MaxNumAGPRs);
653}
654
655// Check to which source operand UseOpIdx points to and return a pointer to the
656// operand of the corresponding source modifier.
657// Return nullptr if UseOpIdx either doesn't point to src0/1/2 or if there is no
658// operand for the corresponding source modifier.
659static const MachineOperand *
661 const SIInstrInfo &InstrInfo) {
662 AMDGPU::OpName UseName =
663 AMDGPU::getOperandIdxName(UseI.getOpcode(), UseOpIdx);
664 switch (UseName) {
665 case AMDGPU::OpName::src0:
666 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src0_modifiers);
667 case AMDGPU::OpName::src1:
668 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src1_modifiers);
669 case AMDGPU::OpName::src2:
670 return InstrInfo.getNamedOperand(UseI, AMDGPU::OpName::src2_modifiers);
671 default:
672 return nullptr;
673 }
674}
675
676// Get the subreg idx of the subreg that is used by the given instruction
677// operand, considering the given op_sel modifier.
678// Return 0 if the whole register is used or as a conservative fallback.
680 const SIInstrInfo &InstrInfo,
681 const MachineInstr &I,
682 const MachineOperand &Op) {
683 if (!InstrInfo.isVOP3P(I) || InstrInfo.isWMMA(I) || InstrInfo.isSWMMAC(I))
684 return AMDGPU::NoSubRegister;
685
686 const MachineOperand *OpMod =
687 getVOP3PSourceModifierFromOpIdx(I, Op.getOperandNo(), InstrInfo);
688 if (!OpMod)
689 return AMDGPU::NoSubRegister;
690
691 // Note: the FMA_MIX* and MAD_MIX* instructions have different semantics for
692 // the op_sel and op_sel_hi source modifiers:
693 // - op_sel: selects low/high operand bits as input to the operation;
694 // has only meaning for 16-bit source operands
695 // - op_sel_hi: specifies the size of the source operands (16 or 32 bits);
696 // a value of 0 indicates 32 bit, 1 indicates 16 bit
697 // For the other VOP3P instructions, the semantics are:
698 // - op_sel: selects low/high operand bits as input to the operation which
699 // results in the lower-half of the destination
700 // - op_sel_hi: selects the low/high operand bits as input to the operation
701 // which results in the higher-half of the destination
702 int64_t OpSel = OpMod->getImm() & SISrcMods::OP_SEL_0;
703 int64_t OpSelHi = OpMod->getImm() & SISrcMods::OP_SEL_1;
704
705 // Check if all parts of the register are being used (= op_sel and op_sel_hi
706 // differ for VOP3P or op_sel_hi=0 for VOP3PMix). In that case we can return
707 // early.
708 if ((!InstrInfo.isVOP3PMix(I) && (!OpSel || !OpSelHi) &&
709 (OpSel || OpSelHi)) ||
710 (InstrInfo.isVOP3PMix(I) && !OpSelHi))
711 return AMDGPU::NoSubRegister;
712
713 const MachineRegisterInfo &MRI = I.getParent()->getParent()->getRegInfo();
714 const TargetRegisterClass *RC = TRI.getRegClassForOperandReg(MRI, Op);
715
716 if (unsigned SubRegIdx = OpSel ? AMDGPU::sub1 : AMDGPU::sub0;
717 TRI.getSubClassWithSubReg(RC, SubRegIdx) == RC)
718 return SubRegIdx;
719 if (unsigned SubRegIdx = OpSel ? AMDGPU::hi16 : AMDGPU::lo16;
720 TRI.getSubClassWithSubReg(RC, SubRegIdx) == RC)
721 return SubRegIdx;
722
723 return AMDGPU::NoSubRegister;
724}
725
726Register GCNSubtarget::getRealSchedDependency(const MachineInstr &DefI,
727 int DefOpIdx,
728 const MachineInstr &UseI,
729 int UseOpIdx) const {
730 const SIRegisterInfo *TRI = getRegisterInfo();
731 const MachineOperand &DefOp = DefI.getOperand(DefOpIdx);
732 const MachineOperand &UseOp = UseI.getOperand(UseOpIdx);
733 Register DefReg = DefOp.getReg();
734 Register UseReg = UseOp.getReg();
735
736 // If the registers aren't restricted to a sub-register, there is no point in
737 // further analysis. This check makes only sense for virtual registers because
738 // physical registers may form a tuple and thus be part of a superregister
739 // although they are not a subregister themselves (vgpr0 is a "subreg" of
740 // vgpr0_vgpr1 without being a subreg in itself).
741 unsigned DefSubRegIdx = DefOp.getSubReg();
742 if (DefReg.isVirtual() && DefSubRegIdx == AMDGPU::NoSubRegister)
743 return DefReg;
744 unsigned UseSubRegIdx = getEffectiveSubRegIdx(*TRI, InstrInfo, UseI, UseOp);
745 if (UseReg.isVirtual() && UseSubRegIdx == AMDGPU::NoSubRegister)
746 return DefReg;
747
748 if (!TRI->checkSubRegInterference(DefReg, DefSubRegIdx, UseReg, UseSubRegIdx))
749 return Register(); // No real dependency
750
751 // UseReg might be smaller or larger than DefReg, depending on the subreg and
752 // on whether DefReg is a subreg, too. -> Find the smaller one. This does not
753 // apply to virtual registers because we cannot construct a subreg for them.
754 if (DefReg.isVirtual())
755 return DefReg;
756 MCRegister DefMCReg =
757 DefSubRegIdx ? TRI->getSubReg(DefReg, DefSubRegIdx) : DefReg.asMCReg();
758 MCRegister UseMCReg =
759 UseSubRegIdx ? TRI->getSubReg(UseReg, UseSubRegIdx) : UseReg.asMCReg();
760 return TRI->isSubRegisterEq(DefMCReg, UseMCReg) ? UseMCReg : DefMCReg;
761}
762
764 SUnit *Def, int DefOpIdx, SUnit *Use, int UseOpIdx, SDep &Dep,
765 const TargetSchedModel *SchedModel) const {
766 if (Dep.getKind() != SDep::Kind::Data || !Dep.getReg() || !Def->isInstr() ||
767 !Use->isInstr())
768 return;
769
770 MachineInstr *DefI = Def->getInstr();
771 MachineInstr *UseI = Use->getInstr();
772
773 if (Register Reg = getRealSchedDependency(*DefI, DefOpIdx, *UseI, UseOpIdx)) {
774 Dep.setReg(Reg);
775 } else {
776 Dep = SDep(Def, SDep::Artificial);
777 return; // This is not a data dependency anymore.
778 }
779
780 if (DefI->isBundle()) {
782 auto Reg = Dep.getReg();
785 unsigned Lat = 0;
786 for (++I; I != E && I->isBundledWithPred(); ++I) {
787 if (I->isMetaInstruction())
788 continue;
789 if (I->modifiesRegister(Reg, TRI))
790 Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *I);
791 else if (Lat)
792 --Lat;
793 }
794 Dep.setLatency(Lat);
795 } else if (UseI->isBundle()) {
797 auto Reg = Dep.getReg();
800 unsigned Lat = InstrInfo.getInstrLatency(getInstrItineraryData(), *DefI);
801 for (++I; I != E && I->isBundledWithPred() && Lat; ++I) {
802 if (I->isMetaInstruction())
803 continue;
804 if (I->readsRegister(Reg, TRI))
805 break;
806 --Lat;
807 }
808 Dep.setLatency(Lat);
809 } else if (Dep.getLatency() == 0 && Dep.getReg() == AMDGPU::VCC_LO) {
810 // Work around the fact that SIInstrInfo::fixImplicitOperands modifies
811 // implicit operands which come from the MCInstrDesc, which can fool
812 // ScheduleDAGInstrs::addPhysRegDataDeps into treating them as implicit
813 // pseudo operands.
814 Dep.setLatency(InstrInfo.getSchedModel().computeOperandLatency(
815 DefI, DefOpIdx, UseI, UseOpIdx));
816 }
817}
818
821 return 0; // Not MIMG encoding.
822
823 if (NSAThreshold.getNumOccurrences() > 0)
824 return std::max(NSAThreshold.getValue(), 2u);
825
827 "amdgpu-nsa-threshold", -1);
828 if (Value > 0)
829 return std::max(Value, 2);
830
831 return NSAThreshold;
832}
833
835 const GCNSubtarget &ST)
836 : ST(ST) {
837 const CallingConv::ID CC = F.getCallingConv();
838 const bool IsKernel =
840
841 if (IsKernel && (!F.arg_empty() || ST.getImplicitArgNumBytes(F) != 0))
842 KernargSegmentPtr = true;
843
844 bool IsAmdHsaOrMesa = ST.isAmdHsaOrMesa(F);
845 if (IsAmdHsaOrMesa && !ST.hasFlatScratchEnabled())
846 PrivateSegmentBuffer = true;
847 else if (ST.isMesaGfxShader(F))
848 ImplicitBufferPtr = true;
849
850 if (!AMDGPU::isGraphics(CC)) {
851 if (!F.hasFnAttribute("amdgpu-no-dispatch-ptr"))
852 DispatchPtr = true;
853
854 // FIXME: Can this always be disabled with < COv5?
855 if (!F.hasFnAttribute("amdgpu-no-queue-ptr"))
856 QueuePtr = true;
857
858 if (!F.hasFnAttribute("amdgpu-no-dispatch-id"))
859 DispatchID = true;
860 }
861
862 if (ST.hasFlatAddressSpace() && AMDGPU::isEntryFunctionCC(CC) &&
863 (IsAmdHsaOrMesa || ST.hasFlatScratchEnabled()) &&
864 // FlatScratchInit cannot be true for graphics CC if
865 // hasFlatScratchEnabled() is false.
866 (ST.hasFlatScratchEnabled() ||
867 (!AMDGPU::isGraphics(CC) &&
868 !F.hasFnAttribute("amdgpu-no-flat-scratch-init"))) &&
869 !ST.hasArchitectedFlatScratch()) {
870 FlatScratchInit = true;
871 }
872
874 NumUsedUserSGPRs += getNumUserSGPRForField(ImplicitBufferPtrID);
875
878
879 if (hasDispatchPtr())
880 NumUsedUserSGPRs += getNumUserSGPRForField(DispatchPtrID);
881
882 if (hasQueuePtr())
883 NumUsedUserSGPRs += getNumUserSGPRForField(QueuePtrID);
884
886 NumUsedUserSGPRs += getNumUserSGPRForField(KernargSegmentPtrID);
887
888 if (hasDispatchID())
889 NumUsedUserSGPRs += getNumUserSGPRForField(DispatchIdID);
890
891 if (hasFlatScratchInit())
892 NumUsedUserSGPRs += getNumUserSGPRForField(FlatScratchInitID);
893
895 NumUsedUserSGPRs += getNumUserSGPRForField(PrivateSegmentSizeID);
896}
897
899 assert(NumKernargPreloadSGPRs + NumSGPRs <= AMDGPU::getMaxNumUserSGPRs(ST));
900 NumKernargPreloadSGPRs += NumSGPRs;
901 NumUsedUserSGPRs += NumSGPRs;
902}
903
905 return AMDGPU::getMaxNumUserSGPRs(ST) - NumUsedUserSGPRs;
906}
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.
The AMDGPU TargetMachine interface definition for hw codegen targets.
MachineBasicBlock & MBB
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
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.
#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:775
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
bool hasMadF16() const
unsigned getMinNumVGPRs(unsigned WavesPerEU, unsigned DynamicVGPRBlockSize) const
bool isDynamicVGPREnabled() 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
const SITargetLowering * getTargetLowering() const override
unsigned getNSAThreshold(const MachineFunction &MF) const
unsigned getReservedNumSGPRs(const MachineFunction &MF) const
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.
unsigned getMaxWavesPerEU() const
Generation getGeneration() const
GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS, const GCNTargetMachine &TM)
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
unsigned getDynamicVGPRBlockSize() const
void checkSubtargetFeatures(const Function &F) const
Diagnose inconsistent subtarget features before attempting to codegen function F.
~GCNSubtarget() override
const SelectionDAGTargetInfo * getSelectionDAGInfo() const override
AMDGPU::IsaInfo::AMDGPUTargetID TargetID
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:51
Kind getKind() const
Returns an enum value representing the kind of the dependence.
@ Data
Regular data dependence (aka true-dependence).
Definition ScheduleDAG.h:55
void setLatency(unsigned Lat)
Sets the latency for this edge.
@ Artificial
Arbitrary strong DAG edge (no real dependence).
Definition ScheduleDAG.h:74
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:47
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 getMaxWavesPerEU(const MCSubtargetInfo &STI)
unsigned getLocalMemorySize(const MCSubtargetInfo &STI)
unsigned getOccupancyWithNumSGPRs(unsigned SGPRs, unsigned MaxWaves, AMDGPUSubtarget::Generation Gen)
StringRef getSchedStrategy(const Function &F)
unsigned getMaxNumUserSGPRs(const MCSubtargetInfo &STI)
LLVM_READNONE constexpr bool isEntryFunctionCC(CallingConv::ID CC)
unsigned getDynamicVGPRBlockSize(const Function &F)
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:279
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
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.