LLVM 24.0.0git
NVPTXISelLowering.cpp
Go to the documentation of this file.
1//===-- NVPTXISelLowering.cpp - NVPTX DAG Lowering Implementation ---------===//
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// This file defines the interfaces that NVPTX uses to lower LLVM code into a
10// selection DAG.
11//
12//===----------------------------------------------------------------------===//
13
14#include "NVPTXISelLowering.h"
16#include "NVPTX.h"
19#include "NVPTXSubtarget.h"
20#include "NVPTXTargetMachine.h"
22#include "NVPTXUtilities.h"
23#include "NVVMProperties.h"
24#include "llvm/ADT/APFloat.h"
25#include "llvm/ADT/APInt.h"
26#include "llvm/ADT/STLExtras.h"
28#include "llvm/ADT/StringRef.h"
42#include "llvm/IR/Argument.h"
43#include "llvm/IR/Attributes.h"
44#include "llvm/IR/Constants.h"
45#include "llvm/IR/DataLayout.h"
48#include "llvm/IR/FPEnv.h"
49#include "llvm/IR/Function.h"
50#include "llvm/IR/GlobalValue.h"
51#include "llvm/IR/IRBuilder.h"
52#include "llvm/IR/Instruction.h"
54#include "llvm/IR/IntrinsicsNVPTX.h"
55#include "llvm/IR/Module.h"
56#include "llvm/IR/Type.h"
57#include "llvm/IR/Value.h"
58#include "llvm/MC/MCContext.h"
59#include "llvm/MC/MCSymbol.h"
70#include <algorithm>
71#include <cassert>
72#include <cmath>
73#include <cstdint>
74#include <iterator>
75#include <optional>
76#include <tuple>
77#include <utility>
78#include <vector>
79
80#define DEBUG_TYPE "nvptx-lower"
81
82using namespace llvm;
83
85 "nvptx-sched4reg",
86 cl::desc("NVPTX Specific: schedule for register pressue"), cl::init(false));
87
89 "nvptx-fma-level", cl::Hidden,
90 cl::desc("NVPTX Specific: FMA contraction (0: don't do it"
91 " 1: do it 2: do it aggressively"),
92 cl::init(2));
93
95 "nvptx-prec-divf32", cl::Hidden,
97 "NVPTX Specific: Override the precision of the lowering for f32 fdiv"),
99 clEnumValN(NVPTX::DivPrecisionLevel::Approx, "0", "Use div.approx"),
100 clEnumValN(NVPTX::DivPrecisionLevel::Full, "1", "Use div.full"),
102 "Use IEEE Compliant F32 div.rnd if available (default)"),
104 "Use IEEE Compliant F32 div.rnd if available, no FTZ")),
106
108 "nvptx-prec-sqrtf32", cl::Hidden,
109 cl::desc("NVPTX Specific: 0 use sqrt.approx, 1 use sqrt.rn."),
110 cl::init(true));
111
112// PTX atom.add.f32 has fixed FTZ behavior that may not match the function's
113// (see shouldExpandAtomicRMWInIR), so we'd normally fall back to a CAS loop
114// when they disagree. This option (enabled by default) allows using atom.add
115// anyway, trading correct denormal handling for the speed of the native
116// instruction.
118 "nvptx-allow-ftz-atomics", cl::Hidden,
119 cl::desc("NVPTX Specific: Lower atomicrmw fadd to atom.add even when its "
120 "FTZ behavior does not match the function's denormal mode."),
121 cl::init(true));
122
123/// Whereas CUDA's implementation (see libdevice) uses ex2.approx for exp2(), it
124/// does NOT use lg2.approx for log2, so this is disabled by default.
126 "nvptx-approx-log2f32",
127 cl::desc("NVPTX Specific: whether to use lg2.approx for log2"),
128 cl::init(false));
129
132 const SDNode &N) const {
133 // If nvptx-prec-div32=N is used on the command-line, always honor it
134 if (UsePrecDivF32.getNumOccurrences() > 0)
135 return UsePrecDivF32;
136
137 const SDNodeFlags Flags = N.getFlags();
138 if (Flags.hasApproximateFuncs())
140
142}
143
145 // If nvptx-prec-sqrtf32 is used on the command-line, always honor it
146 if (UsePrecSqrtF32.getNumOccurrences() > 0)
147 return UsePrecSqrtF32;
148
149 if (N) {
150 const SDNodeFlags Flags = N->getFlags();
151 if (Flags.hasApproximateFuncs())
152 return false;
153 }
154
155 return true;
156}
157
162
163static bool IsPTXVectorType(MVT VT) {
164 switch (VT.SimpleTy) {
165 default:
166 return false;
167 case MVT::v2i1:
168 case MVT::v4i1:
169 case MVT::v2i8:
170 case MVT::v4i8:
171 case MVT::v8i8: // <2 x i8x4>
172 case MVT::v16i8: // <4 x i8x4>
173 case MVT::v2i16:
174 case MVT::v4i16:
175 case MVT::v8i16: // <4 x i16x2>
176 case MVT::v2i32:
177 case MVT::v4i32:
178 case MVT::v2i64:
179 case MVT::v2f16:
180 case MVT::v4f16:
181 case MVT::v8f16: // <4 x f16x2>
182 case MVT::v2bf16:
183 case MVT::v4bf16:
184 case MVT::v8bf16: // <4 x bf16x2>
185 case MVT::v2f32:
186 case MVT::v4f32:
187 case MVT::v2f64:
188 case MVT::v4i64:
189 case MVT::v4f64:
190 case MVT::v8i32:
191 case MVT::v8f32:
192 case MVT::v16f16: // <8 x f16x2>
193 case MVT::v16bf16: // <8 x bf16x2>
194 case MVT::v16i16: // <8 x i16x2>
195 case MVT::v32i8: // <8 x i8x4>
196 return true;
197 }
198}
199
200// When legalizing vector loads/stores, this function is called, which does two
201// things:
202// 1. Determines Whether the vector is something we want to custom lower,
203// std::nullopt is returned if we do not want to custom lower it.
204// 2. If we do want to handle it, returns two parameters:
205// - unsigned int NumElts - The number of elements in the final vector
206// - EVT EltVT - The type of the elements in the final vector
207static std::optional<std::pair<unsigned int, MVT>>
209 unsigned AddressSpace) {
210 const bool CanLowerTo256Bit = STI.has256BitVectorLoadStore(AddressSpace);
211
212 if (CanLowerTo256Bit && VectorEVT.isScalarInteger() &&
213 VectorEVT.getSizeInBits() == 256)
214 return {{4, MVT::i64}};
215
216 if (!VectorEVT.isSimple())
217 return std::nullopt;
218 const MVT VectorVT = VectorEVT.getSimpleVT();
219
220 if (!VectorVT.isVector()) {
221 if (VectorVT == MVT::i128 || VectorVT == MVT::f128)
222 return {{2, MVT::i64}};
223 return std::nullopt;
224 }
225
226 const MVT EltVT = VectorVT.getVectorElementType();
227 const unsigned NumElts = VectorVT.getVectorNumElements();
228
229 // The size of the PTX virtual register that holds a packed type.
230 unsigned PackRegSize;
231
232 // We only handle "native" vector sizes for now, e.g. <4 x double> is not
233 // legal. We can (and should) split that into 2 stores of <2 x double> here
234 // but I'm leaving that as a TODO for now.
235 switch (VectorVT.SimpleTy) {
236 default:
237 return std::nullopt;
238
239 case MVT::v4i64:
240 case MVT::v4f64:
241 // This is a "native" vector type iff the address space is global and the
242 // target supports 256-bit loads/stores
243 if (!CanLowerTo256Bit)
244 return std::nullopt;
245 [[fallthrough]];
246 case MVT::v2i8:
247 case MVT::v2i64:
248 case MVT::v2f64:
249 // This is a "native" vector type
250 return std::pair(NumElts, EltVT);
251
252 case MVT::v16f16: // <8 x f16x2>
253 case MVT::v16bf16: // <8 x bf16x2>
254 case MVT::v16i16: // <8 x i16x2>
255 case MVT::v32i8: // <8 x i8x4>
256 // This can be upsized into a "native" vector type iff the address space is
257 // global and the target supports 256-bit loads/stores.
258 if (!CanLowerTo256Bit)
259 return std::nullopt;
260 [[fallthrough]];
261 case MVT::v2i16: // <1 x i16x2>
262 case MVT::v2f16: // <1 x f16x2>
263 case MVT::v2bf16: // <1 x bf16x2>
264 case MVT::v4i8: // <1 x i8x4>
265 case MVT::v4i16: // <2 x i16x2>
266 case MVT::v4f16: // <2 x f16x2>
267 case MVT::v4bf16: // <2 x bf16x2>
268 case MVT::v8i8: // <2 x i8x4>
269 case MVT::v8f16: // <4 x f16x2>
270 case MVT::v8bf16: // <4 x bf16x2>
271 case MVT::v8i16: // <4 x i16x2>
272 case MVT::v16i8: // <4 x i8x4>
273 PackRegSize = 32;
274 break;
275
276 case MVT::v8f32: // <4 x f32x2>
277 case MVT::v8i32: // <4 x i32x2>
278 // This is a "native" vector type iff the address space is global and the
279 // target supports 256-bit loads/stores
280 if (!CanLowerTo256Bit)
281 return std::nullopt;
282 [[fallthrough]];
283 case MVT::v2f32: // <1 x f32x2>
284 case MVT::v4f32: // <2 x f32x2>
285 case MVT::v2i32: // <1 x i32x2>
286 case MVT::v4i32: // <2 x i32x2>
287 if (!STI.hasF32x2Instructions())
288 return std::pair(NumElts, EltVT);
289 PackRegSize = 64;
290 break;
291 }
292
293 // If we reach here, then we can pack 2 or more elements into a single 32-bit
294 // or 64-bit PTX register and treat the vector as a new vector containing
295 // packed elements.
296
297 // Number of elements to pack in one word.
298 const unsigned NPerReg = PackRegSize / EltVT.getSizeInBits();
299
300 return std::pair(NumElts / NPerReg, MVT::getVectorVT(EltVT, NPerReg));
301}
302
303/// ComputePTXValueVTs - For the given Type \p Ty, returns the set of primitive
304/// legal-ish MVTs that compose it. Unlike ComputeValueVTs, this will legalize
305/// the types as required by the calling convention (with special handling for
306/// i8s).
307/// NOTE: This is a band-aid for code that expects ComputeValueVTs to return the
308/// same number of types as the Ins/Outs arrays in LowerFormalArguments,
309/// LowerCall, and LowerReturn.
310static void ComputePTXValueVTs(const TargetLowering &TLI, const DataLayout &DL,
311 LLVMContext &Ctx, CallingConv::ID CallConv,
312 Type *Ty, SmallVectorImpl<EVT> &ValueVTs,
314 uint64_t StartingOffset = 0) {
315 SmallVector<EVT, 16> TempVTs;
316 SmallVector<uint64_t, 16> TempOffsets;
317 ComputeValueVTs(TLI, DL, Ty, TempVTs, /*MemVTs=*/nullptr, &TempOffsets,
318 StartingOffset);
319
320 for (const auto [VT, Off] : zip(TempVTs, TempOffsets)) {
321 MVT RegisterVT = TLI.getRegisterTypeForCallingConv(Ctx, CallConv, VT);
322 unsigned NumRegs = TLI.getNumRegistersForCallingConv(Ctx, CallConv, VT);
323
324 // Since we actually can load/store b8, we need to ensure that we'll use
325 // the original sized type for any i8s or i8 vectors.
326 if (VT.getScalarType() == MVT::i8) {
327 if (RegisterVT == MVT::i16)
328 RegisterVT = MVT::i8;
329 else if (RegisterVT == MVT::v2i16)
330 RegisterVT = MVT::v2i8;
331 else
332 assert(RegisterVT == MVT::v4i8 &&
333 "Expected v4i8, v2i16, or i16 for i8 RegisterVT");
334 }
335
336 // TODO: This is horribly incorrect for cases where the vector elements are
337 // not a multiple of bytes (ex i1) and legal or i8. However, this problem
338 // has existed for as long as NVPTX has and no one has complained, so we'll
339 // leave it for now.
340 for (unsigned I : seq(NumRegs)) {
341 ValueVTs.push_back(RegisterVT);
342 Offsets.push_back(Off + I * RegisterVT.getStoreSize());
343 }
344 }
345}
346
347// We return an EVT that can hold N VTs
348// If the VT is a vector, the resulting EVT is a flat vector with the same
349// element type as VT's element type.
350static EVT getVectorizedVT(EVT VT, unsigned N, LLVMContext &C) {
351 if (N == 1)
352 return VT;
353
354 return VT.isVector() ? EVT::getVectorVT(C, VT.getScalarType(),
355 VT.getVectorNumElements() * N)
356 : EVT::getVectorVT(C, VT, N);
357}
358
360 const SDLoc &dl, SelectionDAG &DAG) {
361 if (V.getValueType() == VT) {
362 assert(I == 0 && "Index must be 0 for scalar value");
363 return V;
364 }
365
366 if (!VT.isVector())
367 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, V,
368 DAG.getVectorIdxConstant(I, dl));
369
370 return DAG.getNode(
371 ISD::EXTRACT_SUBVECTOR, dl, VT, V,
373}
374
375template <typename T>
376static inline SDValue getBuildVectorizedValue(unsigned N, const SDLoc &dl,
377 SelectionDAG &DAG, T GetElement) {
378 if (N == 1)
379 return GetElement(0);
380
382 for (const unsigned I : llvm::seq(N)) {
383 SDValue Val = GetElement(I);
384 if (Val.getValueType().isVector())
386 else
387 Values.push_back(Val);
388 }
389
390 EVT VT = EVT::getVectorVT(*DAG.getContext(), Values[0].getValueType(),
391 Values.size());
392 return DAG.getBuildVector(VT, dl, Values);
393}
394
395/// PromoteScalarIntegerPTX
396/// Used to make sure the arguments/returns are suitable for passing
397/// and promote them to a larger size if they're not.
398///
399/// The promoted type is placed in \p PromoteVT if the function returns true.
401 if (VT.isScalarInteger()) {
402 switch (PowerOf2Ceil(VT.getFixedSizeInBits())) {
403 default:
405 "Promotion is not suitable for scalars of size larger than 64-bits");
406 case 1:
407 return MVT::i1;
408 case 2:
409 case 4:
410 case 8:
411 return MVT::i8;
412 case 16:
413 return MVT::i16;
414 case 32:
415 return MVT::i32;
416 case 64:
417 return MVT::i64;
418 }
419 }
420 return VT;
421}
422
423// Check whether we can merge loads/stores of some of the pieces of a
424// flattened function parameter or return value into a single vector
425// load/store.
426//
427// The flattened parameter is represented as a list of EVTs and
428// offsets, and the whole structure is aligned to ParamAlignment. This
429// function determines whether we can load/store pieces of the
430// parameter starting at index Idx using a single vectorized op of
431// size AccessSize. If so, it returns the number of param pieces
432// covered by the vector op. Otherwise, it returns 1.
433template <typename T>
435 unsigned Idx, uint32_t AccessSize, const SmallVectorImpl<EVT> &ValueVTs,
436 const SmallVectorImpl<T> &Offsets, Align ParamAlignment) {
437
438 // Can't vectorize if param alignment is not sufficient.
439 if (ParamAlignment < AccessSize)
440 return 1;
441 // Can't vectorize if offset is not aligned.
442 if (Offsets[Idx] & (AccessSize - 1))
443 return 1;
444
445 EVT EltVT = ValueVTs[Idx];
446 unsigned EltSize = EltVT.getStoreSize();
447
448 // Element is too large to vectorize.
449 if (EltSize >= AccessSize)
450 return 1;
451
452 unsigned NumElts = AccessSize / EltSize;
453 // Can't vectorize if AccessBytes if not a multiple of EltSize.
454 if (AccessSize != EltSize * NumElts)
455 return 1;
456
457 // We don't have enough elements to vectorize.
458 if (Idx + NumElts > ValueVTs.size())
459 return 1;
460
461 // PTX ISA can only deal with 2- and 4-element vector ops.
462 if (NumElts != 4 && NumElts != 2)
463 return 1;
464
465 for (unsigned j = Idx + 1; j < Idx + NumElts; ++j) {
466 // Types do not match.
467 if (ValueVTs[j] != EltVT)
468 return 1;
469
470 // Elements are not contiguous.
471 if (Offsets[j] - Offsets[j - 1] != EltSize)
472 return 1;
473 }
474 // OK. We can vectorize ValueVTs[i..i+NumElts)
475 return NumElts;
476}
477
478// Computes whether and how we can vectorize the loads/stores of a
479// flattened function parameter or return value.
480//
481// The flattened parameter is represented as the list of ValueVTs and
482// Offsets, and is aligned to ParamAlignment bytes. We return a vector
483// of the same size as ValueVTs indicating how each piece should be
484// loaded/stored (i.e. as a scalar, or as part of a vector
485// load/store).
486template <typename T>
489 const SmallVectorImpl<T> &Offsets, Align ParamAlignment,
490 bool IsVAArg = false) {
491 // Set vector size to match ValueVTs and mark all elements as
492 // scalars by default.
493
494 if (IsVAArg)
495 return SmallVector<unsigned>(ValueVTs.size(), 1);
496
497 SmallVector<unsigned, 16> VectorInfo;
498
499 const auto GetNumElts = [&](unsigned I) -> unsigned {
500 for (const unsigned AccessSize : {16, 8, 4, 2}) {
501 const unsigned NumElts = canMergeParamLoadStoresStartingAt(
502 I, AccessSize, ValueVTs, Offsets, ParamAlignment);
503 assert((NumElts == 1 || NumElts == 2 || NumElts == 4) &&
504 "Unexpected vectorization size");
505 if (NumElts != 1)
506 return NumElts;
507 }
508 return 1;
509 };
510
511 // Check what we can vectorize using 128/64/32-bit accesses.
512 for (unsigned I = 0, E = ValueVTs.size(); I != E;) {
513 const unsigned NumElts = GetNumElts(I);
514 VectorInfo.push_back(NumElts);
515 I += NumElts;
516 }
517 assert(std::accumulate(VectorInfo.begin(), VectorInfo.end(), 0u) ==
518 ValueVTs.size());
519 return VectorInfo;
520}
521
522// NVPTXTargetLowering Constructor.
524 const NVPTXSubtarget &STI)
525 : TargetLowering(TM, STI), STI(STI), GlobalUniqueCallSite(0) {
526 // always lower memset, memcpy, and memmove intrinsics to load/store
527 // instructions, rather
528 // then generating calls to memset, mempcy or memmove.
532
535
536 // Jump is Expensive. Don't create extra control flow for 'and', 'or'
537 // condition branches.
538 setJumpIsExpensive(true);
539
540 // Wide divides are _very_ slow. Try to reduce the width of the divide if
541 // possible.
542 addBypassSlowDiv(64, 32);
543
544 // By default, use the Source scheduling
545 if (sched4reg)
547 else
549
550 auto setFP16OperationAction = [&](unsigned Op, MVT VT, LegalizeAction Action,
551 LegalizeAction NoF16Action) {
552 bool IsOpSupported = STI.allowFP16Math();
553 switch (Op) {
554 // Several FP16 instructions are available on sm_80 only.
555 case ISD::FMINNUM:
556 case ISD::FMAXNUM:
559 case ISD::FMAXIMUM:
560 case ISD::FMINIMUM:
561 case ISD::FMAXIMUMNUM:
562 case ISD::FMINIMUMNUM:
563 IsOpSupported &= STI.hasFeature(NVPTX::SM80);
564 break;
565 case ISD::FEXP2:
566 case ISD::FTANH:
567 IsOpSupported &=
568 STI.hasFeature(NVPTX::SM75) && STI.hasFeature(NVPTX::PTX70);
569 break;
570 }
571 setOperationAction(Op, VT, IsOpSupported ? Action : NoF16Action);
572 };
573
574 auto setBF16OperationAction = [&](unsigned Op, MVT VT, LegalizeAction Action,
575 LegalizeAction NoBF16Action) {
576 bool IsOpSupported = STI.hasNativeBF16Support(Op);
578 Op, VT, IsOpSupported ? Action : NoBF16Action);
579 };
580
581 auto setI16x2OperationAction = [&](unsigned Op, MVT VT, LegalizeAction Action,
582 LegalizeAction NoI16x2Action) {
583 bool IsOpSupported = false;
584 // instructions are available on sm_90 only
585 switch (Op) {
586 case ISD::ADD:
587 case ISD::SMAX:
588 case ISD::SMIN:
589 case ISD::UMIN:
590 case ISD::UMAX:
591 IsOpSupported =
592 STI.hasFeature(NVPTX::SM90) && STI.hasFeature(NVPTX::PTX80);
593 break;
594 }
595 setOperationAction(Op, VT, IsOpSupported ? Action : NoI16x2Action);
596 };
597
598 addRegisterClass(MVT::i1, &NVPTX::B1RegClass);
599 addRegisterClass(MVT::i16, &NVPTX::B16RegClass);
600 addRegisterClass(MVT::v2i16, &NVPTX::B32RegClass);
601 addRegisterClass(MVT::v4i8, &NVPTX::B32RegClass);
602 addRegisterClass(MVT::i32, &NVPTX::B32RegClass);
603 addRegisterClass(MVT::i64, &NVPTX::B64RegClass);
604 addRegisterClass(MVT::f32, &NVPTX::B32RegClass);
605 addRegisterClass(MVT::f64, &NVPTX::B64RegClass);
606 addRegisterClass(MVT::f16, &NVPTX::B16RegClass);
607 addRegisterClass(MVT::v2f16, &NVPTX::B32RegClass);
608 addRegisterClass(MVT::bf16, &NVPTX::B16RegClass);
609 addRegisterClass(MVT::v2bf16, &NVPTX::B32RegClass);
610
611 if (STI.hasF32x2Instructions()) {
612 addRegisterClass(MVT::v2f32, &NVPTX::B64RegClass);
613 addRegisterClass(MVT::v2i32, &NVPTX::B64RegClass);
614 }
615
616 // Conversion to/from FP16/FP16x2 is always legal.
621
623 if (STI.hasFeature(NVPTX::SM30))
625
626 setFP16OperationAction(ISD::SETCC, MVT::f16, Legal, Promote);
627 setFP16OperationAction(ISD::SETCC, MVT::v2f16, Legal, Expand);
628
629 // Conversion to/from BFP16/BFP16x2 is always legal.
634
635 setBF16OperationAction(ISD::SETCC, MVT::v2bf16, Legal, Expand);
636 setBF16OperationAction(ISD::SETCC, MVT::bf16, Legal, Promote);
637 if (getOperationAction(ISD::SETCC, MVT::bf16) == Promote)
638 AddPromotedToType(ISD::SETCC, MVT::bf16, MVT::f32);
639
640 // Conversion to/from i16/i16x2 is always legal.
645
650
651 // No support for these operations with v2f32/v2i32
652 setOperationAction(ISD::INSERT_VECTOR_ELT, {MVT::v2f32, MVT::v2i32}, Expand);
653 setOperationAction(ISD::VECTOR_SHUFFLE, {MVT::v2f32, MVT::v2i32}, Expand);
654
657 MVT::v2i32, Expand);
658
659 // Need custom lowering in case the index is dynamic.
660 if (STI.hasF32x2Instructions())
661 setOperationAction(ISD::EXTRACT_VECTOR_ELT, {MVT::v2f32, MVT::v2i32},
662 Custom);
663
664 // Custom conversions to/from v2i8.
666
667 // Only logical ops can be done on v4i8/v2i32 directly, others must be done
668 // elementwise.
685 {MVT::v4i8, MVT::v2i32}, Expand);
686
687 // Operations not directly supported by NVPTX.
688 for (MVT VT : {MVT::bf16, MVT::f16, MVT::v2bf16, MVT::v2f16, MVT::f32,
689 MVT::v2f32, MVT::f64, MVT::i1, MVT::i8, MVT::i16, MVT::v2i16,
690 MVT::v4i8, MVT::i32, MVT::v2i32, MVT::i64}) {
693 }
694
695 // We don't want ops like FMINIMUM or UMAX to be lowered to SETCC+VSELECT.
696 setOperationAction(ISD::VSELECT, {MVT::v2f32, MVT::v2i32}, Expand);
697
698 // Some SIGN_EXTEND_INREG can be done using cvt instruction.
699 // For others we will expand to a SHL/SRA pair.
705 setOperationAction(ISD::SIGN_EXTEND_INREG, {MVT::v2i16, MVT::v2i32}, Expand);
706
713
716
718 {MVT::i8, MVT::i16, MVT::v2i16, MVT::i32, MVT::i64},
719 Expand);
720
721 if (STI.hasHWROT32()) {
724 Custom);
725 }
726
727 setOperationAction(ISD::BR_JT, MVT::Other, STI.hasBrx() ? Legal : Expand);
729
730 // We want to legalize constant related memmove and memcopy
731 // intrinsics.
733
734 // FP extload/truncstore is not legal in PTX. We need to expand all these.
735 for (auto FloatVTs :
737 for (MVT ValVT : FloatVTs) {
738 for (MVT MemVT : FloatVTs) {
739 setLoadExtAction(ISD::EXTLOAD, ValVT, MemVT, Expand);
740 setTruncStoreAction(ValVT, MemVT, Expand);
741 }
742 }
743 }
744
745 // To improve CodeGen we'll legalize any-extend loads to zext loads. This is
746 // how they'll be lowered in ISel anyway, and by doing this a little earlier
747 // we allow for more DAG combine opportunities.
748 for (auto IntVTs :
750 for (MVT ValVT : IntVTs)
751 for (MVT MemVT : IntVTs)
752 if (isTypeLegal(ValVT))
753 setLoadExtAction(ISD::EXTLOAD, ValVT, MemVT, Custom);
754
755 // PTX does not support load / store predicate registers
757 for (MVT VT : MVT::integer_valuetypes()) {
759 Promote);
760 setTruncStoreAction(VT, MVT::i1, Expand);
761 }
762
763 // Disable generations of extload/truncstore for v2i32/v2i16/v2i8. The generic
764 // expansion for these nodes when they are unaligned is incorrect if the
765 // type is a vector.
766 //
767 // TODO: Fix the generic expansion for these nodes found in
768 // TargetLowering::expandUnalignedLoad/Store.
770 MVT::v2i8, Expand);
772 {MVT::v2i8, MVT::v2i16}, Expand);
773 setTruncStoreAction(MVT::v2i16, MVT::v2i8, Expand);
774 setTruncStoreAction(MVT::v2i32, MVT::v2i16, Expand);
775 setTruncStoreAction(MVT::v2i32, MVT::v2i8, Expand);
776
777 // Register custom handling for illegal type loads/stores. We'll try to custom
778 // lower almost all illegal types and logic in the lowering will discard cases
779 // we can't handle.
780 setOperationAction({ISD::LOAD, ISD::STORE}, {MVT::i128, MVT::i256, MVT::f128},
781 Custom);
783 if (!isTypeLegal(VT) && VT.getStoreSizeInBits() <= 256)
785 Custom);
786
787 // Custom legalization for LDU intrinsics.
788 // TODO: The logic to lower these is not very robust and we should rewrite it.
789 // Perhaps LDU should not be represented as an intrinsic at all.
792 if (IsPTXVectorType(VT))
794
798 MVT::i1, Expand);
799
800 // This is legal in NVPTX
805
806 setOperationAction(ISD::DYNAMIC_STACKALLOC, {MVT::i32, MVT::i64}, Custom);
808
809 // TRAP can be lowered to PTX trap
810 setOperationAction(ISD::TRAP, MVT::Other, Legal);
811 // DEBUGTRAP can be lowered to PTX brkpt
813
814 // Support varargs.
819
821 {MVT::i16, MVT::i32, MVT::i64}, Legal);
822 // PTX abs.s is undefined for INT_MIN, so ISD::ABS (which requires
823 // abs(INT_MIN) == INT_MIN) must be expanded. ABS_MIN_POISON matches
824 // PTX abs semantics since INT_MIN input is poison/undefined.
825 setOperationAction(ISD::ABS, {MVT::i16, MVT::i32, MVT::i64}, Expand);
826 setOperationAction(ISD::ABS_MIN_POISON, {MVT::i16, MVT::i32, MVT::i64},
827 Legal);
828
830 Promote);
833
834 setI16x2OperationAction(ISD::ABS_MIN_POISON, MVT::v2i16, Legal, Custom);
835 setI16x2OperationAction(ISD::SMIN, MVT::v2i16, Legal, Custom);
836 setI16x2OperationAction(ISD::SMAX, MVT::v2i16, Legal, Custom);
837 setI16x2OperationAction(ISD::UMIN, MVT::v2i16, Legal, Custom);
838 setI16x2OperationAction(ISD::UMAX, MVT::v2i16, Legal, Custom);
839 setI16x2OperationAction(ISD::CTPOP, MVT::v2i16, Legal, Expand);
840 setI16x2OperationAction(ISD::CTLZ, MVT::v2i16, Legal, Expand);
841
842 setI16x2OperationAction(ISD::ADD, MVT::v2i16, Legal, Custom);
843 setI16x2OperationAction(ISD::SUB, MVT::v2i16, Legal, Custom);
844 setI16x2OperationAction(ISD::MUL, MVT::v2i16, Legal, Custom);
845 setI16x2OperationAction(ISD::SHL, MVT::v2i16, Legal, Custom);
846 setI16x2OperationAction(ISD::SREM, MVT::v2i16, Legal, Custom);
847 setI16x2OperationAction(ISD::UREM, MVT::v2i16, Legal, Custom);
848
849 // Other arithmetic and logic ops are unsupported.
853 {MVT::v2i16, MVT::v2i32}, Expand);
854
855 // v2i32 is not supported for any arithmetic operations
860 MVT::v2i32, Expand);
861
866 if (STI.hasFeature(NVPTX::PTX43)) {
871 }
872
874 setOperationAction(ISD::CTTZ, {MVT::v2i16, MVT::v2i32}, Expand);
877
878 // PTX does not directly support SELP of i1, so promote to i32 first
880
881 // PTX cannot multiply two i64s in a single instruction.
884
885 // We have some custom DAG combine patterns for these nodes
887 ISD::AND,
889 ISD::FADD,
896 ISD::MUL,
898 ISD::SHL,
899 ISD::SREM,
900 ISD::UREM,
904 ISD::LOAD,
909
910 // If the vector operands require register coalescing, scalarize instead
911 if (STI.hasF32x2Instructions())
913
914 // setcc for f16x2 and bf16x2 needs special handling to prevent
915 // legalizer's attempt to scalarize it due to v2i1 not being legal.
916 if (STI.allowFP16Math() || STI.hasBF16Math())
918
919 // Vector reduction operations. These may be turned into shuffle or tree
920 // reductions depending on what instructions are available for each type.
922 MVT EltVT = VT.getVectorElementType();
923 if (EltVT == MVT::f32 || EltVT == MVT::f64) {
926 VT, Custom);
927 }
928 }
929
930 // Promote fp16 arithmetic if fp16 hardware isn't available or the
931 // user passed --nvptx-no-fp16-math. The flag is useful because,
932 // although sm_53+ GPUs have some sort of FP16 support in
933 // hardware, only sm_53 and sm_60 have full implementation. Others
934 // only have token amount of hardware and are likely to run faster
935 // by using fp32 units instead.
936 for (const auto &Op : {ISD::FADD, ISD::FMUL, ISD::FSUB, ISD::FMA}) {
937 setFP16OperationAction(Op, MVT::f16, Legal, Promote);
938 setFP16OperationAction(Op, MVT::v2f16, Legal, Expand);
939 setBF16OperationAction(Op, MVT::v2bf16, Legal, Expand);
940 // bf16 must be promoted to f32.
941 setBF16OperationAction(Op, MVT::bf16, Legal, Promote);
942 if (getOperationAction(Op, MVT::bf16) == Promote)
943 AddPromotedToType(Op, MVT::bf16, MVT::f32);
944 setOperationAction(Op, MVT::v2f32,
945 STI.hasF32x2Instructions() ? Legal : Expand);
946 }
947
948 // On SM80, we select add/mul/sub as fma to avoid promotion to float
949 for (const auto &Op : {ISD::FADD, ISD::FMUL, ISD::FSUB}) {
950 for (const auto &VT : {MVT::bf16, MVT::v2bf16}) {
951 if (!STI.hasNativeBF16Support(Op) && STI.hasNativeBF16Support(ISD::FMA)) {
953 }
954 }
955 }
956
957 // f16/f16x2 neg was introduced in PTX 60, SM_53.
958 const bool IsFP16FP16x2NegAvailable = STI.hasFeature(NVPTX::SM53) &&
959 STI.hasFeature(NVPTX::PTX60) &&
960 STI.allowFP16Math();
961 for (const auto &VT : {MVT::f16, MVT::v2f16})
963 IsFP16FP16x2NegAvailable ? Legal : Expand);
964
965 setBF16OperationAction(ISD::FNEG, MVT::bf16, Legal, Expand);
966 setBF16OperationAction(ISD::FNEG, MVT::v2bf16, Legal, Expand);
967 setOperationAction(ISD::FNEG, MVT::v2f32, Expand);
968 // (would be) Library functions.
969
970 // These map to conversion instructions for scalar FP types.
971 for (const auto &Op : {ISD::FCEIL, ISD::FFLOOR, ISD::FNEARBYINT, ISD::FRINT,
973 setOperationAction(Op, MVT::f16, Legal);
974 setOperationAction(Op, MVT::f32, Legal);
975 setOperationAction(Op, MVT::f64, Legal);
976 setOperationAction(Op, MVT::v2f16, Expand);
977 setOperationAction(Op, MVT::v2bf16, Expand);
978 setOperationAction(Op, MVT::v2f32, Expand);
979 setBF16OperationAction(Op, MVT::bf16, Legal, Promote);
980 if (getOperationAction(Op, MVT::bf16) == Promote)
981 AddPromotedToType(Op, MVT::bf16, MVT::f32);
982 }
983
984 if (!STI.hasFeature(NVPTX::SM80) || !STI.hasFeature(NVPTX::PTX71)) {
986 }
987 if (!STI.hasFeature(NVPTX::SM90)) {
988 for (MVT VT : {MVT::bf16, MVT::f32, MVT::f64}) {
991 }
992 }
993
994 // Expand v2f32 = fp_extend
996 // Expand v2[b]f16 = fp_round v2f32
997 setOperationAction(ISD::FP_ROUND, {MVT::v2bf16, MVT::v2f16}, Expand);
998
999 // sm_80 only has conversions between f32 and bf16. Custom lower all other
1000 // bf16 conversions.
1001 if (!STI.hasFeature(NVPTX::SM90)) {
1002 for (MVT VT : {MVT::i1, MVT::i16, MVT::i32, MVT::i64}) {
1005 VT, Custom);
1006 }
1009 MVT::bf16, Custom);
1010 }
1011
1015 setOperationAction(ISD::FROUND, MVT::v2bf16, Expand);
1019 AddPromotedToType(ISD::FROUND, MVT::bf16, MVT::f32);
1020
1021 setOperationAction({ISD::LROUND, ISD::LLROUND}, {MVT::f32, MVT::f64}, Expand);
1022
1023 // 'Expand' implements FCOPYSIGN without calling an external library.
1030
1031 // These map to corresponding instructions for f32/f64. f16 must be
1032 // promoted to f32. v2f16 is expanded to f16, which is then promoted
1033 // to f32.
1034 for (const auto &Op :
1036 setOperationAction(Op, MVT::f16, Promote);
1037 setOperationAction(Op, MVT::f32, Legal);
1038 // only div/rem/sqrt are legal for f64
1039 if (Op == ISD::FDIV || Op == ISD::FREM || Op == ISD::FSQRT) {
1040 setOperationAction(Op, MVT::f64, Legal);
1041 }
1042 setOperationAction(Op, {MVT::v2f16, MVT::v2bf16, MVT::v2f32}, Expand);
1043 setOperationAction(Op, MVT::bf16, Promote);
1044 AddPromotedToType(Op, MVT::bf16, MVT::f32);
1045 }
1046 setOperationAction(ISD::FREM, {MVT::f32, MVT::f64}, Custom);
1047
1048 // FTANH support:
1049 // - f32 (sm_75+, PTX 7.0+)
1050 // - f16/f16x2 (sm_75+, PTX 7.0+)
1051 // - bf16/bf16x2 (sm_90+, PTX 7.8+)
1052 // When f16/bf16 types aren't supported, they are promoted/expanded to f32.
1053 if (STI.hasFeature(NVPTX::SM75) && STI.hasFeature(NVPTX::PTX70))
1055 setOperationAction(ISD::FTANH, MVT::v2f32, Expand);
1056
1057 // Scalar f16/bf16: promote to f32 when not natively supported.
1058 setFP16OperationAction(ISD::FTANH, MVT::f16, Legal, Promote);
1059 setBF16OperationAction(ISD::FTANH, MVT::bf16, Legal, Promote);
1060 if (getOperationAction(ISD::FTANH, MVT::bf16) == Promote)
1061 AddPromotedToType(ISD::FTANH, MVT::bf16, MVT::f32);
1062
1063 // Vector v2f16/v2bf16: expand when not natively supported.
1064 setFP16OperationAction(ISD::FTANH, MVT::v2f16, Legal, Expand);
1065 setBF16OperationAction(ISD::FTANH, MVT::v2bf16, Legal, Expand);
1066
1067 setOperationAction(ISD::FABS, {MVT::f32, MVT::f64}, Legal);
1068 setOperationAction(ISD::FABS, MVT::v2f32, Expand);
1069 if (STI.hasFeature(NVPTX::PTX65)) {
1070 setFP16OperationAction(ISD::FABS, MVT::f16, Legal, Promote);
1071 setFP16OperationAction(ISD::FABS, MVT::v2f16, Legal, Expand);
1072 } else {
1074 setOperationAction(ISD::FABS, MVT::v2f16, Expand);
1075 }
1076 setBF16OperationAction(ISD::FABS, MVT::v2bf16, Legal, Expand);
1077 setBF16OperationAction(ISD::FABS, MVT::bf16, Legal, Promote);
1078 if (getOperationAction(ISD::FABS, MVT::bf16) == Promote)
1079 AddPromotedToType(ISD::FABS, MVT::bf16, MVT::f32);
1080
1081 for (const auto &Op :
1083 setOperationAction(Op, MVT::f32, Legal);
1084 setOperationAction(Op, MVT::f64, Legal);
1085 setFP16OperationAction(Op, MVT::f16, Legal, Promote);
1086 setFP16OperationAction(Op, MVT::v2f16, Legal, Expand);
1087 setBF16OperationAction(Op, MVT::v2bf16, Legal, Expand);
1088 setBF16OperationAction(Op, MVT::bf16, Legal, Promote);
1089 if (getOperationAction(Op, MVT::bf16) == Promote)
1090 AddPromotedToType(Op, MVT::bf16, MVT::f32);
1091 setOperationAction(Op, MVT::v2f32, Expand);
1092 }
1093 bool SupportsF32MinMaxNaN = STI.hasFeature(NVPTX::SM80);
1094 for (const auto &Op : {ISD::FMINIMUM, ISD::FMAXIMUM}) {
1095 setOperationAction(Op, MVT::f32, SupportsF32MinMaxNaN ? Legal : Expand);
1096 setFP16OperationAction(Op, MVT::f16, Legal, Expand);
1097 setFP16OperationAction(Op, MVT::v2f16, Legal, Expand);
1098 setBF16OperationAction(Op, MVT::bf16, Legal, Expand);
1099 setBF16OperationAction(Op, MVT::v2bf16, Legal, Expand);
1100 setOperationAction(Op, MVT::v2f32, Expand);
1101 }
1102
1103 // Custom lowering for inline asm with 128-bit operands
1106
1107 // FEXP2 support:
1108 // - f32
1109 // - f16/f16x2 (sm_70+, PTX 7.0+)
1110 // - bf16/bf16x2 (sm_90+, PTX 7.8+)
1111 // When f16/bf16 types aren't supported, they are promoted/expanded to f32.
1113 setOperationAction(ISD::FEXP2, MVT::v2f32, Expand);
1114 setFP16OperationAction(ISD::FEXP2, MVT::f16, Legal, Promote);
1115 setFP16OperationAction(ISD::FEXP2, MVT::v2f16, Legal, Expand);
1116 setBF16OperationAction(ISD::FEXP2, MVT::bf16, Legal, Promote);
1117 setBF16OperationAction(ISD::FEXP2, MVT::v2bf16, Legal, Expand);
1118
1119 // FLOG2 supports f32 only
1120 // f16/bf16 types aren't supported, but they are promoted/expanded to f32.
1121 if (UseApproxLog2F32) {
1123 setOperationPromotedToType(ISD::FLOG2, MVT::f16, MVT::f32);
1124 setOperationPromotedToType(ISD::FLOG2, MVT::bf16, MVT::f32);
1125 setOperationAction(ISD::FLOG2, {MVT::v2f16, MVT::v2bf16, MVT::v2f32},
1126 Expand);
1127 }
1128
1129 setOperationAction(ISD::ADDRSPACECAST, {MVT::i32, MVT::i64}, Custom);
1130
1131 setOperationAction(ISD::ATOMIC_LOAD_SUB, {MVT::i32, MVT::i64}, Expand);
1132
1133 // atom.b128 is legal in PTX but since we don't represent i128 as a legal
1134 // type, we need to custom lower it.
1136 Custom);
1137
1138 // Now deduce the information based on the above mentioned
1139 // actions
1140 computeRegisterProperties(STI.getRegisterInfo());
1141
1142 // PTX support for 16-bit CAS is emulated. Only use 32+
1143 setMinCmpXchgSizeInBits(STI.getMinCmpXchgSizeInBits());
1144 setMaxAtomicSizeInBitsSupported(STI.hasAtomSwap128() ? 128 : 64);
1147
1148 // Custom lowering for tcgen05.ld vector operands
1150 {MVT::v1i32, MVT::v2i32, MVT::v4i32, MVT::v8i32,
1151 MVT::v16i32, MVT::v32i32, MVT::v64i32, MVT::v128i32,
1152 MVT::v2f32, MVT::v4f32, MVT::v8f32, MVT::v16f32,
1153 MVT::v32f32, MVT::v64f32, MVT::v128f32},
1154 Custom);
1155
1156 // Custom lowering for tcgen05.st vector operands and the st.async
1157 // i128 (.b128) operand. MVT::i8 is needed for the st.async.{sys,gpu} b8
1158 // variant.
1160 {MVT::i8, MVT::v1i32, MVT::v2i32, MVT::v4i32, MVT::v8i32,
1161 MVT::v16i32, MVT::v32i32, MVT::v64i32, MVT::v128i32,
1162 MVT::i128, MVT::Other},
1163 Custom);
1164
1165 // Enable custom lowering for the following:
1166 // * MVT::i128 - clusterlaunchcontrol
1167 // * MVT::i32 - prmt
1168 // * MVT::v4f32 - cvt_rs fp{4/6/8}x4 intrinsics
1169 // * MVT::Other - internal.addrspace.wrap
1171 {MVT::i32, MVT::i128, MVT::v4f32, MVT::Other}, Custom);
1172
1173 // Custom lowering for bswap
1174 setOperationAction(ISD::BSWAP, {MVT::i16, MVT::i32, MVT::i64, MVT::v2i16},
1175 Custom);
1176}
1177
1180 if (!VT.isScalableVector() && VT.getVectorNumElements() != 1 &&
1181 VT.getScalarType() == MVT::i1)
1182 return TypeSplitVector;
1184}
1185
1187 int Enabled, int &ExtraSteps,
1188 bool &UseOneConst,
1189 bool Reciprocal) const {
1192 return SDValue();
1193
1194 if (ExtraSteps == ReciprocalEstimate::Unspecified)
1195 ExtraSteps = 0;
1196
1197 SDLoc DL(Operand);
1198 EVT VT = Operand.getValueType();
1199 bool Ftz = useF32FTZ(DAG.getMachineFunction());
1200
1201 auto MakeIntrinsicCall = [&](Intrinsic::ID IID) {
1202 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
1203 DAG.getConstant(IID, DL, MVT::i32), Operand);
1204 };
1205
1206 // The sqrt and rsqrt refinement processes assume we always start out with an
1207 // approximation of the rsqrt. Therefore, if we're going to do any refinement
1208 // (i.e. ExtraSteps > 0), we must return an rsqrt. But if we're *not* doing
1209 // any refinement, we must return a regular sqrt.
1210 if (Reciprocal || ExtraSteps > 0) {
1211 if (VT == MVT::f32)
1212 return MakeIntrinsicCall(Ftz ? Intrinsic::nvvm_rsqrt_approx_ftz_f
1213 : Intrinsic::nvvm_rsqrt_approx_f);
1214 else if (VT == MVT::f64)
1215 return MakeIntrinsicCall(Intrinsic::nvvm_rsqrt_approx_d);
1216 else
1217 return SDValue();
1218 } else {
1219 if (VT == MVT::f32)
1220 return MakeIntrinsicCall(Ftz ? Intrinsic::nvvm_sqrt_approx_ftz_f
1221 : Intrinsic::nvvm_sqrt_approx_f);
1222 else {
1223 // There's no sqrt.approx.f64 instruction, so we emit
1224 // reciprocal(rsqrt(x)). This is faster than
1225 // select(x == 0, 0, x * rsqrt(x)). (In fact, it's faster than plain
1226 // x * rsqrt(x).)
1227 return DAG.getNode(
1229 DAG.getConstant(Intrinsic::nvvm_rcp_approx_ftz_d, DL, MVT::i32),
1230 MakeIntrinsicCall(Intrinsic::nvvm_rsqrt_approx_d));
1231 }
1232 }
1233}
1234
1236 // Load directly from the source address space of a cast to generic.
1237 unsigned SrcAS = ADDRESS_SPACE_GENERIC;
1238 if (Ptr->getOpcode() == ISD::ADDRSPACECAST) {
1239 const auto *ASC = cast<AddrSpaceCastSDNode>(Ptr);
1240 if (ASC->getDestAddressSpace() == ADDRESS_SPACE_GENERIC) {
1241 Ptr = ASC->getOperand(0);
1242 SrcAS = ASC->getSrcAddressSpace();
1243 }
1244 }
1245
1246 // Preserve the alloca's address space through frame-index inference.
1247 if (const auto *FIN = dyn_cast<FrameIndexSDNode>(Ptr))
1248 if (const AllocaInst *AI =
1250 FIN->getIndex()))
1251 return MachinePointerInfo(AI);
1252
1253 return MachinePointerInfo(SrcAS);
1254}
1255
1257 if (Flags.isSExt())
1258 return ISD::SIGN_EXTEND;
1259 if (Flags.isZExt())
1260 return ISD::ZERO_EXTEND;
1261 return ISD::ANY_EXTEND;
1262}
1263
1265 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1266 SDLoc dl) {
1267 const EVT ActualVT = V.getValueType();
1268 assert((ActualVT == ExpectedVT ||
1269 (ExpectedVT.isInteger() && ActualVT.isInteger())) &&
1270 "Non-integer argument type size mismatch");
1271 if (ExpectedVT.bitsGT(ActualVT))
1272 return DAG.getNode(getExtOpcode(Flags), dl, ExpectedVT, V);
1273 if (ExpectedVT.bitsLT(ActualVT))
1274 return DAG.getNode(ISD::TRUNCATE, dl, ExpectedVT, V);
1275
1276 return V;
1277}
1278
1280 return DAG.getNode(NVPTXISD::Symbol, SDLoc(), T, DAG.getMCSymbol(Sym, T));
1281}
1282
1283static SDValue getSymbolNode(SelectionDAG &DAG, const Twine &Name, EVT T) {
1285 return getSymbolNode(DAG, Ctx.getOrCreateSymbol(Name), T);
1286}
1287
1289 SmallVectorImpl<SDValue> &InVals) const {
1290
1291 if (CLI.IsVarArg &&
1292 (!STI.hasFeature(NVPTX::PTX60) || !STI.hasFeature(NVPTX::SM30)))
1294 "Support for variadic functions (unsized array parameter) introduced "
1295 "in PTX ISA version 6.0 and requires target sm_30.");
1296
1297 SelectionDAG &DAG = CLI.DAG;
1298 SDLoc dl = CLI.DL;
1299 const SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
1300 SDValue Callee = CLI.Callee;
1301 ArgListTy &Args = CLI.getArgs();
1302 Type *RetTy = CLI.RetTy;
1303 const CallBase *CB = CLI.CB;
1304 const DataLayout &DL = DAG.getDataLayout();
1305 LLVMContext &Ctx = *DAG.getContext();
1306
1307 const auto GetI32 = [&](const unsigned I) {
1308 return DAG.getConstant(I, dl, MVT::i32);
1309 };
1310
1311 const unsigned UniqueCallSite = GlobalUniqueCallSite++;
1312 const SDValue CallChain = CLI.Chain;
1313 const SDValue StartChain =
1314 DAG.getCALLSEQ_START(CallChain, UniqueCallSite, 0, dl);
1315 SDValue DeclareGlue = StartChain.getValue(1);
1316
1317 SmallVector<SDValue, 16> CallPrereqs{StartChain};
1318
1319 const auto MakeDeclareScalarParam = [&](SDValue Symbol, unsigned Size) {
1320 // PTX ABI requires integral types to be at least 32 bits in size. FP16 is
1321 // loaded/stored using i16, so it's handled here as well.
1322 const unsigned SizeBits = promoteScalarArgumentSize(Size * 8);
1323 SDValue Declare =
1324 DAG.getNode(NVPTXISD::DeclareScalarParam, dl, {MVT::Other, MVT::Glue},
1325 {StartChain, Symbol, GetI32(SizeBits), DeclareGlue});
1326 CallPrereqs.push_back(Declare);
1327 DeclareGlue = Declare.getValue(1);
1328 return Declare;
1329 };
1330
1331 const auto MakeDeclareArrayParam = [&](SDValue Symbol, Align Align,
1332 unsigned Size) {
1333 SDValue Declare = DAG.getNode(
1334 NVPTXISD::DeclareArrayParam, dl, {MVT::Other, MVT::Glue},
1335 {StartChain, Symbol, GetI32(Align.value()), GetI32(Size), DeclareGlue});
1336 CallPrereqs.push_back(Declare);
1337 DeclareGlue = Declare.getValue(1);
1338 return Declare;
1339 };
1340
1341 // Variadic arguments.
1342 //
1343 // Normally, for each argument, we declare a param scalar or a param
1344 // byte array in the .param space, and store the argument value to that
1345 // param scalar or array starting at offset 0.
1346 //
1347 // In the case of the first variadic argument, we declare a vararg byte array
1348 // with size 0. The exact size of this array isn't known at this point, so
1349 // it'll be patched later. All the variadic arguments will be stored to this
1350 // array at a certain offset (which gets tracked by 'VAOffset'). The offset is
1351 // initially set to 0, so it can be used for non-variadic arguments (which use
1352 // 0 offset) to simplify the code.
1353 //
1354 // After all vararg is processed, 'VAOffset' holds the size of the
1355 // vararg byte array.
1356 assert((CLI.IsVarArg || CLI.Args.size() <= CLI.NumFixedArgs) &&
1357 "Non-VarArg function with extra arguments");
1358
1359 const unsigned FirstVAArg = CLI.NumFixedArgs; // position of first variadic
1360 unsigned VAOffset = 0; // current offset in the param array
1361
1362 const SDValue VADeclareParam =
1363 CLI.Args.size() > FirstVAArg
1364 ? MakeDeclareArrayParam(
1365 getCallParamSymbolNode(DAG, FirstVAArg, MVT::i32),
1366 Align(STI.getMaxRequiredAlignment()), 0)
1367 : SDValue();
1368
1369 // Args.size() and Outs.size() need not match.
1370 // Outs.size() will be larger
1371 // * if there is an aggregate argument with multiple fields (each field
1372 // showing up separately in Outs)
1373 // * if there is a vector argument with more than typical vector-length
1374 // elements (generally if more than 4) where each vector element is
1375 // individually present in Outs.
1376 // So a different index should be used for indexing into Outs/OutVals.
1377 // See similar issue in LowerFormalArguments.
1378 auto AllOuts = ArrayRef(CLI.Outs);
1379 auto AllOutVals = ArrayRef(CLI.OutVals);
1380 assert(AllOuts.size() == AllOutVals.size() &&
1381 "Outs and OutVals must be the same size");
1382 // Declare the .params or .reg need to pass values
1383 // to the function
1384 for (const auto E : llvm::enumerate(Args)) {
1385 const auto ArgI = E.index();
1386 const auto Arg = E.value();
1387 const auto ArgOuts =
1388 AllOuts.take_while([&](auto O) { return O.OrigArgIndex == ArgI; });
1389 const auto ArgOutVals = AllOutVals.take_front(ArgOuts.size());
1390 AllOuts = AllOuts.drop_front(ArgOuts.size());
1391 AllOutVals = AllOutVals.drop_front(ArgOuts.size());
1392
1393 const bool IsVAArg = (ArgI >= FirstVAArg);
1394 const bool IsByVal = Arg.IsByVal;
1395
1396 const SDValue ParamSymbol =
1397 getCallParamSymbolNode(DAG, IsVAArg ? FirstVAArg : ArgI, MVT::i32);
1398
1399 assert((!IsByVal || Arg.IndirectType) &&
1400 "byval arg must have indirect type");
1401 Type *ETy = (IsByVal ? Arg.IndirectType : Arg.Ty);
1402
1403 const Align ArgAlign = [&]() {
1404 const unsigned ParamIdx = ArgI + AttributeList::FirstArgIndex;
1405 if (IsByVal)
1406 return getDeviceByValParamAlign(CB, ETy, ParamIdx, DL);
1407 return getPTXParamAlign(CB, Arg.Ty, ParamIdx, DL);
1408 }();
1409
1410 const unsigned TySize = DL.getTypeAllocSize(ETy);
1411 assert((!IsByVal || TySize == ArgOuts[0].Flags.getByValSize()) &&
1412 "type size mismatch");
1413
1414 const SDValue ArgDeclare = [&]() {
1415 if (IsVAArg)
1416 return VADeclareParam;
1417
1418 if (IsByVal || shouldPassAsArray(Arg.Ty))
1419 return MakeDeclareArrayParam(ParamSymbol, ArgAlign, TySize);
1420
1421 assert(ArgOuts.size() == 1 && "We must pass only one value as non-array");
1422 assert((ArgOuts[0].VT.isInteger() || ArgOuts[0].VT.isFloatingPoint()) &&
1423 "Only int and float types are supported as non-array arguments");
1424
1425 return MakeDeclareScalarParam(ParamSymbol, TySize);
1426 }();
1427
1428 if (IsByVal) {
1429 assert(ArgOutVals.size() == 1 && "We must pass only one value as byval");
1430 SDValue SrcPtr = ArgOutVals[0];
1431 const MachinePointerInfo SrcPtrInfo = refinePtrAS(SrcPtr, DAG);
1432 // Don't use Flags.getNonZeroByValAlign as this includes the stackalign,
1433 // which does not apply to the source pointer.
1434 const Align BaseSrcAlign = [&]() {
1435 // The align attribute on a byval argument indicates the known alignment
1436 // of the pointer passed to the function.
1437 if (CB)
1438 if (const MaybeAlign A = CB->getParamAlign(ArgI))
1439 return *A;
1440 // Fall back to the default alignment for the type.
1441 // TODO: This might be too aggressive but we haven't had a problem with
1442 // it yet.
1443 return getPTXParamTypeAlign(ETy, DL);
1444 }();
1445
1446 if (IsVAArg)
1447 VAOffset = alignTo(VAOffset, ArgAlign);
1448
1449 SmallVector<EVT, 4> ValueVTs, MemVTs;
1451 ComputeValueVTs(*this, DL, ETy, ValueVTs, &MemVTs, &Offsets);
1452
1453 unsigned J = 0;
1454 const auto VI = VectorizePTXValueVTs(MemVTs, Offsets, ArgAlign, IsVAArg);
1455 for (const unsigned NumElts : VI) {
1456 EVT LoadVT = getVectorizedVT(MemVTs[J], NumElts, Ctx);
1457 Align SrcAlign = commonAlignment(BaseSrcAlign, Offsets[J]);
1458 SDValue SrcAddr = DAG.getObjectPtrOffset(dl, SrcPtr, Offsets[J]);
1459 SDValue SrcLoad =
1460 DAG.getLoad(LoadVT, dl, CallChain, SrcAddr,
1461 SrcPtrInfo.getWithOffset(Offsets[J]), SrcAlign);
1462
1463 TypeSize ParamOffset = Offsets[J].getWithIncrement(VAOffset);
1464 Align ParamAlign = commonAlignment(ArgAlign, ParamOffset);
1465 SDValue ParamAddr =
1466 DAG.getObjectPtrOffset(dl, ParamSymbol, ParamOffset);
1467 SDValue StoreParam = DAG.getStore(
1468 ArgDeclare, dl, SrcLoad, ParamAddr,
1470 CallPrereqs.push_back(StoreParam);
1471
1472 J += NumElts;
1473 }
1474 if (IsVAArg)
1475 VAOffset += TySize;
1476 } else {
1479 ComputePTXValueVTs(*this, DL, Ctx, CLI.CallConv, Arg.Ty, VTs, Offsets,
1480 VAOffset);
1481 assert(VTs.size() == Offsets.size() && "Size mismatch");
1482 assert(VTs.size() == ArgOuts.size() && "Size mismatch");
1483
1484 // PTX Interoperability Guide 3.3(A): [Integer] Values shorter
1485 // than 32-bits are sign extended or zero extended, depending on
1486 // whether they are signed or unsigned types. This case applies
1487 // only to scalar parameters and not to aggregate values.
1488 const bool ExtendIntegerParam =
1489 Arg.Ty->isIntegerTy() && DL.getTypeAllocSizeInBits(Arg.Ty) < 32;
1490
1491 const auto GetStoredValue = [&](const unsigned I) {
1492 SDValue StVal = ArgOutVals[I];
1494 StVal.getValueType() &&
1495 "OutVal type should always be legal");
1496
1497 const EVT VTI = promoteScalarIntegerPTX(VTs[I]);
1498 const EVT StoreVT =
1499 ExtendIntegerParam ? MVT::i32 : (VTI == MVT::i1 ? MVT::i8 : VTI);
1500
1501 return correctParamType(StVal, StoreVT, ArgOuts[I].Flags, DAG, dl);
1502 };
1503
1504 unsigned J = 0;
1505 const auto VI = VectorizePTXValueVTs(VTs, Offsets, ArgAlign, IsVAArg);
1506 for (const unsigned NumElts : VI) {
1507 const EVT EltVT = promoteScalarIntegerPTX(VTs[J]);
1508
1509 unsigned Offset;
1510 if (IsVAArg) {
1511 // TODO: We may need to support vector types that can be passed
1512 // as scalars in variadic arguments.
1513 assert(NumElts == 1 &&
1514 "Vectorization should be disabled for vaargs.");
1515
1516 // Align each part of the variadic argument to their type.
1517 VAOffset = alignTo(VAOffset, DAG.getEVTAlign(EltVT));
1518 Offset = VAOffset;
1519
1520 const EVT TheStoreType = ExtendIntegerParam ? MVT::i32 : EltVT;
1521 VAOffset += DL.getTypeAllocSize(TheStoreType.getTypeForEVT(Ctx));
1522 } else {
1523 assert(VAOffset == 0 && "VAOffset must be 0 for non-VA args");
1524 Offset = Offsets[J];
1525 }
1526
1527 SDValue Ptr =
1528 DAG.getObjectPtrOffset(dl, ParamSymbol, TypeSize::getFixed(Offset));
1529
1530 const MaybeAlign CurrentAlign = ExtendIntegerParam
1531 ? MaybeAlign(std::nullopt)
1532 : commonAlignment(ArgAlign, Offset);
1533
1534 SDValue Val =
1535 getBuildVectorizedValue(NumElts, dl, DAG, [&](unsigned K) {
1536 return GetStoredValue(J + K);
1537 });
1538
1539 SDValue StoreParam = DAG.getStore(
1540 ArgDeclare, dl, Val, Ptr,
1542 CallPrereqs.push_back(StoreParam);
1543
1544 J += NumElts;
1545 }
1546 }
1547 }
1548
1549 // Handle Result
1550 if (!Ins.empty()) {
1551 const SDValue RetSymbol = getSymbolNode(DAG, "retval0", MVT::i32);
1552 const unsigned ResultSize = DL.getTypeAllocSize(RetTy);
1553 if (shouldPassAsArray(RetTy)) {
1554 const Align RetAlign =
1555 getPTXParamAlign(CB, RetTy, AttributeList::ReturnIndex, DL);
1556 MakeDeclareArrayParam(RetSymbol, RetAlign, ResultSize);
1557 } else {
1558 MakeDeclareScalarParam(RetSymbol, ResultSize);
1559 }
1560 }
1561
1562 // Set the size of the vararg param byte array if the callee is a variadic
1563 // function and the variadic part is not empty.
1564 if (VADeclareParam) {
1565 SDValue DeclareParamOps[] = {VADeclareParam.getOperand(0),
1566 VADeclareParam.getOperand(1),
1567 VADeclareParam.getOperand(2), GetI32(VAOffset),
1568 VADeclareParam.getOperand(4)};
1569 DAG.MorphNodeTo(VADeclareParam.getNode(), VADeclareParam.getOpcode(),
1570 VADeclareParam->getVTList(), DeclareParamOps);
1571 }
1572
1573 const auto *Func = dyn_cast<GlobalAddressSDNode>(Callee.getNode());
1574 const auto *CalleeF = Func ? dyn_cast<Function>(Func->getGlobal()) : nullptr;
1575
1576 // If the type of the callsite does not match that of the function, convert
1577 // the callsite to an indirect call.
1578 const bool ConvertToIndirectCall =
1579 CalleeF && CB->getFunctionType() != CalleeF->getFunctionType();
1580
1581 // Both indirect calls and libcalls have nullptr Func. In order to distinguish
1582 // between them we must rely on the call site value which is valid for
1583 // indirect calls but is always null for libcalls.
1584 const bool IsIndirectCall = (!Func && CB) || ConvertToIndirectCall;
1585
1586 if (isa<ExternalSymbolSDNode>(Callee)) {
1587 Function* CalleeFunc = nullptr;
1588
1589 // Try to find the callee in the current module.
1590 Callee = DAG.getSymbolFunctionGlobalAddress(Callee, &CalleeFunc);
1591 assert(CalleeFunc != nullptr && "Libcall callee must be set.");
1592
1593 // Set the "libcall callee" attribute to indicate that the function
1594 // must always have a declaration.
1595 CalleeFunc->addFnAttr("nvptx-libcall-callee", "true");
1596 }
1597
1598 // In the indirect function call case, PTX requires a prototype of the form:
1599 // proto_0 : .callprototype(.param .b32 _) _ (.param .b32 _);
1600 // Where the label is to be used as the last arg of the call instruction.
1601 // We record the call site here and emit all prototypes at the
1602 // start of the function in the AsmPrinter.
1603 if (IsIndirectCall)
1604 DAG.getMachineFunction()
1606 ->addCallPrototype(UniqueCallSite, CB);
1607
1608 const bool IsUnknownIntrinsic =
1609 CalleeF && CalleeF->isIntrinsic() &&
1610 CalleeF->getIntrinsicID() == Intrinsic::not_intrinsic;
1611 if (IsUnknownIntrinsic) {
1614 "call to unknown intrinsic '" + CalleeF->getName() +
1615 "' cannot be lowered by the NVPTX backend",
1616 dl.getDebugLoc()));
1617 }
1618
1619 const unsigned Proto = IsIndirectCall ? UniqueCallSite : 0;
1620 const unsigned NumArgs =
1621 std::min<unsigned>(CLI.NumFixedArgs + 1, Args.size());
1622 /// CALL(Chain, IsConvergent, IsIndirectCall/IsUniform, NumReturns,
1623 /// NumParams, Callee, Proto)
1624 const SDValue CallToken = DAG.getTokenFactor(dl, CallPrereqs);
1625 const SDValue Call = DAG.getNode(
1626 NVPTXISD::CALL, dl, MVT::Other,
1627 {CallToken, GetI32(CLI.IsConvergent), GetI32(IsIndirectCall),
1628 GetI32(Ins.empty() ? 0 : 1), GetI32(NumArgs), Callee, GetI32(Proto)});
1629
1630 SmallVector<SDValue, 16> LoadChains{Call};
1631 SmallVector<SDValue, 16> ProxyRegOps;
1632 if (!Ins.empty()) {
1635 ComputePTXValueVTs(*this, DL, Ctx, CLI.CallConv, RetTy, VTs, Offsets);
1636 assert(VTs.size() == Ins.size() && "Bad value decomposition");
1637
1638 const Align RetAlign =
1639 getPTXParamAlign(CB, RetTy, AttributeList::ReturnIndex, DL);
1640 const SDValue RetSymbol = getSymbolNode(DAG, "retval0", MVT::i32);
1641
1642 // PTX Interoperability Guide 3.3(A): [Integer] Values shorter than
1643 // 32-bits are sign extended or zero extended, depending on whether
1644 // they are signed or unsigned types.
1645 const bool ExtendIntegerRetVal =
1646 RetTy->isIntegerTy() && DL.getTypeAllocSizeInBits(RetTy) < 32;
1647
1648 unsigned I = 0;
1649 const auto VI = VectorizePTXValueVTs(VTs, Offsets, RetAlign);
1650 for (const unsigned NumElts : VI) {
1651 const MaybeAlign CurrentAlign =
1652 ExtendIntegerRetVal ? MaybeAlign(std::nullopt)
1653 : commonAlignment(RetAlign, Offsets[I]);
1654
1655 const EVT VTI = promoteScalarIntegerPTX(VTs[I]);
1656 const EVT LoadVT =
1657 ExtendIntegerRetVal ? MVT::i32 : (VTI == MVT::i1 ? MVT::i8 : VTI);
1658 const EVT VecVT = getVectorizedVT(LoadVT, NumElts, Ctx);
1659 SDValue Ptr =
1660 DAG.getObjectPtrOffset(dl, RetSymbol, TypeSize::getFixed(Offsets[I]));
1661
1662 SDValue R = DAG.getLoad(
1663 VecVT, dl, Call, Ptr,
1665
1666 LoadChains.push_back(R.getValue(1));
1667 for (const unsigned J : llvm::seq(NumElts))
1668 ProxyRegOps.push_back(getExtractVectorizedValue(R, J, LoadVT, dl, DAG));
1669 I += NumElts;
1670 }
1671 }
1672
1673 const SDValue EndToken = DAG.getTokenFactor(dl, LoadChains);
1674 const SDValue CallEnd = DAG.getCALLSEQ_END(EndToken, UniqueCallSite,
1675 UniqueCallSite + 1, SDValue(), dl);
1676
1677 // Append ProxyReg instructions to the chain to make sure that `callseq_end`
1678 // will not get lost. Otherwise, during libcalls expansion, the nodes can become
1679 // dangling.
1680 for (const auto [I, Reg] : llvm::enumerate(ProxyRegOps)) {
1681 SDValue Proxy =
1682 DAG.getNode(NVPTXISD::ProxyReg, dl, Reg.getValueType(), {CallEnd, Reg});
1683 SDValue Ret = correctParamType(Proxy, Ins[I].VT, Ins[I].Flags, DAG, dl);
1684 InVals.push_back(Ret);
1685 }
1686
1687 // set IsTailCall to false for now, until we figure out how to express
1688 // tail call optimization in PTX
1689 CLI.IsTailCall = false;
1690 return CallEnd;
1691}
1692
1694 SelectionDAG &DAG) const {
1695
1696 if (!STI.hasFeature(NVPTX::PTX73) || !STI.hasFeature(NVPTX::SM52)) {
1697 const Function &Fn = DAG.getMachineFunction().getFunction();
1698
1700 Fn,
1701 "Support for dynamic alloca introduced in PTX ISA version 7.3 and "
1702 "requires target sm_52.",
1703 SDLoc(Op).getDebugLoc()));
1704 auto Ops = {DAG.getConstant(0, SDLoc(), Op.getValueType()),
1705 Op.getOperand(0)};
1706 return DAG.getMergeValues(Ops, SDLoc());
1707 }
1708
1709 SDLoc DL(Op.getNode());
1710 SDValue Chain = Op.getOperand(0);
1711 SDValue Size = Op.getOperand(1);
1712 uint64_t Align = Op.getConstantOperandVal(2);
1713
1714 // The alignment on a ISD::DYNAMIC_STACKALLOC node may be 0 to indicate that
1715 // the default stack alignment should be used.
1716 if (Align == 0)
1718
1719 // The size for ptx alloca instruction is 64-bit for m64 and 32-bit for m32.
1720 const MVT LocalVT = getPointerTy(DAG.getDataLayout(), ADDRESS_SPACE_LOCAL);
1721
1722 SDValue Alloc =
1723 DAG.getNode(NVPTXISD::DYNAMIC_STACKALLOC, DL, {LocalVT, MVT::Other},
1724 {Chain, DAG.getZExtOrTrunc(Size, DL, LocalVT),
1725 DAG.getTargetConstant(Align, DL, MVT::i32)});
1726
1727 // NVPTXLowerAlloca puts allocas in the local address space, so a local
1728 // pointer is requested here; escapes are explicit addrspacecasts in the IR.
1729 assert(Op.getValueType() == LocalVT && "Unexpected alloca pointer size");
1730
1731 return DAG.getMergeValues({Alloc, SDValue(Alloc.getNode(), 1)}, DL);
1732}
1733
1735 SelectionDAG &DAG) const {
1736 SDLoc DL(Op.getNode());
1737 if (!STI.hasFeature(NVPTX::PTX73) || !STI.hasFeature(NVPTX::SM52)) {
1738 const Function &Fn = DAG.getMachineFunction().getFunction();
1739
1741 Fn,
1742 "Support for stackrestore requires PTX ISA version >= 7.3 and target "
1743 ">= sm_52.",
1744 DL.getDebugLoc()));
1745 return Op.getOperand(0);
1746 }
1747
1748 const MVT LocalVT = getPointerTy(DAG.getDataLayout(), ADDRESS_SPACE_LOCAL);
1749 SDValue Chain = Op.getOperand(0);
1750 SDValue Ptr = Op.getOperand(1);
1751 SDValue ASC = DAG.getAddrSpaceCast(DL, LocalVT, Ptr, ADDRESS_SPACE_GENERIC,
1753 return DAG.getNode(NVPTXISD::STACKRESTORE, DL, MVT::Other, {Chain, ASC});
1754}
1755
1757 SelectionDAG &DAG) const {
1758 SDLoc DL(Op.getNode());
1759 if (!STI.hasFeature(NVPTX::PTX73) || !STI.hasFeature(NVPTX::SM52)) {
1760 const Function &Fn = DAG.getMachineFunction().getFunction();
1761
1763 Fn,
1764 "Support for stacksave requires PTX ISA version >= 7.3 and target >= "
1765 "sm_52.",
1766 DL.getDebugLoc()));
1767 auto Ops = {DAG.getConstant(0, DL, Op.getValueType()), Op.getOperand(0)};
1768 return DAG.getMergeValues(Ops, DL);
1769 }
1770
1771 const MVT LocalVT = getPointerTy(DAG.getDataLayout(), ADDRESS_SPACE_LOCAL);
1772 SDValue Chain = Op.getOperand(0);
1773 SDValue SS =
1774 DAG.getNode(NVPTXISD::STACKSAVE, DL, {LocalVT, MVT::Other}, Chain);
1775 SDValue ASC = DAG.getAddrSpaceCast(
1776 DL, Op.getValueType(), SS, ADDRESS_SPACE_LOCAL, ADDRESS_SPACE_GENERIC);
1777 return DAG.getMergeValues({ASC, SDValue(SS.getNode(), 1)}, DL);
1778}
1779
1780// By default CONCAT_VECTORS is lowered by ExpandVectorBuildThroughStack()
1781// (see LegalizeDAG.cpp). This is slow and uses local memory.
1782// We use extract/insert/build vector just as what LegalizeOp() does in llvm 2.5
1783SDValue
1784NVPTXTargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
1785 SDNode *Node = Op.getNode();
1786 SDLoc dl(Node);
1788 unsigned NumOperands = Node->getNumOperands();
1789 for (unsigned i = 0; i < NumOperands; ++i) {
1790 SDValue SubOp = Node->getOperand(i);
1791 EVT VVT = SubOp.getNode()->getValueType(0);
1792 EVT EltVT = VVT.getVectorElementType();
1793 unsigned NumSubElem = VVT.getVectorNumElements();
1794 for (unsigned j = 0; j < NumSubElem; ++j) {
1795 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
1796 DAG.getIntPtrConstant(j, dl)));
1797 }
1798 }
1799 return DAG.getBuildVector(Node->getValueType(0), dl, Ops);
1800}
1801
1803 SelectionDAG &DAG,
1804 unsigned Mode = NVPTX::PTXPrmtMode::NONE) {
1805 assert(A.getValueType() == MVT::i32 && B.getValueType() == MVT::i32 &&
1806 Selector.getValueType() == MVT::i32 && "PRMT must have i32 operands");
1807 return DAG.getNode(NVPTXISD::PRMT, DL, MVT::i32,
1808 {A, B, Selector, DAG.getConstant(Mode, DL, MVT::i32)});
1809}
1810
1812 SelectionDAG &DAG,
1813 unsigned Mode = NVPTX::PTXPrmtMode::NONE) {
1814 return getPRMT(A, B, DAG.getConstant(Selector, DL, MVT::i32), DL, DAG, Mode);
1815}
1816
1817/// Reduces the elements using the scalar operations provided. The operations
1818/// are sorted descending in number of inputs they take. The flags on the
1819/// original reduction operation will be propagated to each scalar operation.
1820/// Nearby elements are grouped in tree reduction, unlike the shuffle reduction
1821/// used in ExpandReductions and SelectionDAG.
1823 const SmallVector<SDValue> &Elements, EVT EltTy,
1824 ArrayRef<std::pair<unsigned /*NodeType*/, unsigned /*NumInputs*/>> Ops,
1825 const SDLoc &DL, const SDNodeFlags Flags, SelectionDAG &DAG) {
1826 // Build the reduction tree at each level, starting with all the elements.
1827 SmallVector<SDValue> Level = Elements;
1828
1829 unsigned OpIdx = 0;
1830 while (Level.size() > 1) {
1831 // Try to reduce this level using the current operator.
1832 const auto [Op, NumInputs] = Ops[OpIdx];
1833
1834 // Build the next level by partially reducing all elements.
1835 SmallVector<SDValue> ReducedLevel;
1836 unsigned I = 0, E = Level.size();
1837 for (; I + NumInputs <= E; I += NumInputs) {
1838 // Reduce elements in groups of [NumInputs], as much as possible.
1839 ReducedLevel.push_back(DAG.getNode(
1840 Op, DL, EltTy, ArrayRef<SDValue>(Level).slice(I, NumInputs), Flags));
1841 }
1842
1843 if (I < E) {
1844 // Handle leftover elements.
1845
1846 if (ReducedLevel.empty()) {
1847 // We didn't reduce anything at this level. We need to pick a smaller
1848 // operator.
1849 ++OpIdx;
1850 assert(OpIdx < Ops.size() && "no smaller operators for reduction");
1851 continue;
1852 }
1853
1854 // We reduced some things but there's still more left, meaning the
1855 // operator's number of inputs doesn't evenly divide this level size. Move
1856 // these elements to the next level.
1857 for (; I < E; ++I)
1858 ReducedLevel.push_back(Level[I]);
1859 }
1860
1861 // Process the next level.
1862 Level = ReducedLevel;
1863 }
1864
1865 return *Level.begin();
1866}
1867
1868// Get scalar reduction opcode
1869static ISD::NodeType getScalarOpcodeForReduction(unsigned ReductionOpcode) {
1870 switch (ReductionOpcode) {
1872 return ISD::FMAXNUM;
1874 return ISD::FMINNUM;
1876 return ISD::FMAXIMUM;
1878 return ISD::FMINIMUM;
1879 default:
1880 llvm_unreachable("unhandled reduction opcode");
1881 }
1882}
1883
1884/// Get 3-input scalar reduction opcode
1885static std::optional<unsigned>
1886getScalar3OpcodeForReduction(unsigned ReductionOpcode) {
1887 switch (ReductionOpcode) {
1889 return NVPTXISD::FMAXNUM3;
1891 return NVPTXISD::FMINNUM3;
1893 return NVPTXISD::FMAXIMUM3;
1895 return NVPTXISD::FMINIMUM3;
1896 default:
1897 return std::nullopt;
1898 }
1899}
1900
1901/// Lower reductions to either a sequence of operations or a tree if
1902/// reassociations are allowed. This method will use larger operations like
1903/// max3/min3 when the target supports them.
1904SDValue NVPTXTargetLowering::LowerVECREDUCE(SDValue Op,
1905 SelectionDAG &DAG) const {
1906 SDLoc DL(Op);
1907 const SDNodeFlags Flags = Op->getFlags();
1908 SDValue Vector = Op.getOperand(0);
1909
1910 const unsigned Opcode = Op->getOpcode();
1911 const EVT EltTy = Vector.getValueType().getVectorElementType();
1912
1913 // Whether we can use 3-input min/max when expanding the reduction.
1914 const bool CanUseMinMax3 =
1915 EltTy == MVT::f32 && STI.hasFeature(NVPTX::SM100) &&
1916 STI.hasFeature(NVPTX::PTX88) &&
1917 (Opcode == ISD::VECREDUCE_FMAX || Opcode == ISD::VECREDUCE_FMIN ||
1918 Opcode == ISD::VECREDUCE_FMAXIMUM || Opcode == ISD::VECREDUCE_FMINIMUM);
1919
1920 // A list of SDNode opcodes with equivalent semantics, sorted descending by
1921 // number of inputs they take.
1922 SmallVector<std::pair<unsigned /*Op*/, unsigned /*NumIn*/>, 2> ScalarOps;
1923
1924 if (auto Opcode3Elem = getScalar3OpcodeForReduction(Opcode);
1925 CanUseMinMax3 && Opcode3Elem)
1926 ScalarOps.push_back({*Opcode3Elem, 3});
1927 ScalarOps.push_back({getScalarOpcodeForReduction(Opcode), 2});
1928
1930 DAG.ExtractVectorElements(Vector, Elements);
1931
1932 return buildTreeReduction(Elements, EltTy, ScalarOps, DL, Flags, DAG);
1933}
1934
1935SDValue NVPTXTargetLowering::LowerBITCAST(SDValue Op, SelectionDAG &DAG) const {
1936 // Handle bitcasting from v2i8 without hitting the default promotion
1937 // strategy which goes through stack memory.
1938 EVT FromVT = Op->getOperand(0)->getValueType(0);
1939 if (FromVT != MVT::v2i8) {
1940 return Op;
1941 }
1942
1943 // Pack vector elements into i16 and bitcast to final type
1944 SDLoc DL(Op);
1945 SDValue Vec0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i8,
1946 Op->getOperand(0), DAG.getIntPtrConstant(0, DL));
1947 SDValue Vec1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i8,
1948 Op->getOperand(0), DAG.getIntPtrConstant(1, DL));
1949 SDValue Extend0 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i16, Vec0);
1950 SDValue Extend1 = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i16, Vec1);
1951 SDValue Const8 = DAG.getConstant(8, DL, MVT::i16);
1952 SDValue AsInt = DAG.getNode(
1953 ISD::OR, DL, MVT::i16,
1954 {Extend0, DAG.getNode(ISD::SHL, DL, MVT::i16, {Extend1, Const8})});
1955 EVT ToVT = Op->getValueType(0);
1956 return DAG.getBitcast(ToVT, AsInt);
1957}
1958
1959// We can init constant f16x2/v2i16/v4i8 with a single .b32 move. Normally it
1960// would get lowered as two constant loads and vector-packing move.
1961// Instead we want just a constant move:
1962// mov.b32 %r2, 0x40003C00
1963SDValue NVPTXTargetLowering::LowerBUILD_VECTOR(SDValue Op,
1964 SelectionDAG &DAG) const {
1965 EVT VT = Op->getValueType(0);
1966 if (!(NVPTX::isPackedVectorTy(VT) && VT.is32BitVector()))
1967 return Op;
1968 SDLoc DL(Op);
1969
1970 if (!llvm::all_of(Op->ops(), [](SDValue Operand) {
1971 return Operand->isUndef() || isa<ConstantSDNode>(Operand) ||
1972 isa<ConstantFPSDNode>(Operand);
1973 })) {
1974 if (VT != MVT::v4i8)
1975 return Op;
1976 // Lower non-const v4i8 vector as byte-wise constructed i32, which allows us
1977 // to optimize calculation of constant parts.
1978 auto GetPRMT = [&](const SDValue Left, const SDValue Right, bool Cast,
1979 uint64_t SelectionValue) -> SDValue {
1980 SDValue L = Left;
1981 SDValue R = Right;
1982 if (Cast) {
1983 L = DAG.getAnyExtOrTrunc(L, DL, MVT::i32);
1984 R = DAG.getAnyExtOrTrunc(R, DL, MVT::i32);
1985 }
1986 return getPRMT(L, R, SelectionValue, DL, DAG);
1987 };
1988 auto PRMT__10 = GetPRMT(Op->getOperand(0), Op->getOperand(1), true, 0x3340);
1989 auto PRMT__32 = GetPRMT(Op->getOperand(2), Op->getOperand(3), true, 0x3340);
1990 auto PRMT3210 = GetPRMT(PRMT__10, PRMT__32, false, 0x5410);
1991 return DAG.getBitcast(VT, PRMT3210);
1992 }
1993
1994 // Get value or the Nth operand as an APInt(32). Undef values treated as 0.
1995 auto GetOperand = [](SDValue Op, int N) -> APInt {
1996 const SDValue &Operand = Op->getOperand(N);
1997 EVT VT = Op->getValueType(0);
1998 if (Operand->isUndef())
1999 return APInt(32, 0);
2000 APInt Value;
2001 if (VT == MVT::v2f16 || VT == MVT::v2bf16)
2002 Value = cast<ConstantFPSDNode>(Operand)->getValueAPF().bitcastToAPInt();
2003 else if (VT == MVT::v2i16 || VT == MVT::v4i8)
2004 Value = Operand->getAsAPIntVal();
2005 else
2006 llvm_unreachable("Unsupported type");
2007 // i8 values are carried around as i16, so we need to zero out upper bits,
2008 // so they do not get in the way of combining individual byte values
2009 if (VT == MVT::v4i8)
2010 Value = Value.trunc(8);
2011 return Value.zext(32);
2012 };
2013
2014 // Construct a 32-bit constant by shifting into place smaller values
2015 // (elements of the vector type VT).
2016 // For example, if VT has 2 elements, then N == 2:
2017 // ShiftAmount = 32 / N = 16
2018 // Value |= Op0 (b16) << 0
2019 // Value |= Op1 (b16) << 16
2020 // If N == 4:
2021 // ShiftAmount = 32 / N = 8
2022 // Value |= Op0 (b8) << 0
2023 // Value |= Op1 (b8) << 8
2024 // Value |= Op2 (b8) << 16
2025 // Value |= Op3 (b8) << 24
2026 // ...etc
2027 APInt Value(32, 0);
2028 const unsigned NumElements = VT.getVectorNumElements();
2029 assert(32 % NumElements == 0 && "must evenly divide bit length");
2030 const unsigned ShiftAmount = 32 / NumElements;
2031 for (unsigned ElementNo : seq(NumElements))
2032 Value |= GetOperand(Op, ElementNo).shl(ElementNo * ShiftAmount);
2033 SDValue Const = DAG.getConstant(Value, DL, MVT::i32);
2034 return DAG.getNode(ISD::BITCAST, DL, Op->getValueType(0), Const);
2035}
2036
2037SDValue NVPTXTargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
2038 SelectionDAG &DAG) const {
2039 SDValue Index = Op->getOperand(1);
2040 SDValue Vector = Op->getOperand(0);
2041 SDLoc DL(Op);
2042 EVT VectorVT = Vector.getValueType();
2043
2044 if (VectorVT == MVT::v4i8) {
2045 SDValue Selector = DAG.getNode(ISD::OR, DL, MVT::i32,
2046 DAG.getZExtOrTrunc(Index, DL, MVT::i32),
2047 DAG.getConstant(0x7770, DL, MVT::i32));
2048 SDValue PRMT = getPRMT(DAG.getBitcast(MVT::i32, Vector),
2049 DAG.getConstant(0, DL, MVT::i32), Selector, DL, DAG);
2050 SDValue Ext = DAG.getAnyExtOrTrunc(PRMT, DL, Op->getValueType(0));
2051 SDNodeFlags Flags;
2052 Flags.setNoSignedWrap(Ext.getScalarValueSizeInBits() > 8);
2053 Flags.setNoUnsignedWrap(Ext.getScalarValueSizeInBits() >= 8);
2054 Ext->setFlags(Flags);
2055 return Ext;
2056 }
2057
2058 // Constant index will be matched by tablegen.
2059 if (isa<ConstantSDNode>(Index.getNode()))
2060 return Op;
2061
2062 // Extract individual elements and select one of them.
2063 assert(NVPTX::isPackedVectorTy(VectorVT) &&
2064 VectorVT.getVectorNumElements() == 2 && "Unexpected vector type.");
2065 EVT EltVT = VectorVT.getVectorElementType();
2066
2067 SDLoc dl(Op.getNode());
2069 DAG.getIntPtrConstant(0, dl));
2070 SDValue E1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Vector,
2071 DAG.getIntPtrConstant(1, dl));
2072 return DAG.getSelectCC(dl, Index, DAG.getIntPtrConstant(0, dl), E0, E1,
2074}
2075
2076SDValue NVPTXTargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
2077 SelectionDAG &DAG) const {
2078 SDValue Vector = Op->getOperand(0);
2079 EVT VectorVT = Vector.getValueType();
2080
2081 if (VectorVT != MVT::v4i8)
2082 return Op;
2083 SDLoc DL(Op);
2084 SDValue Value = Op->getOperand(1);
2085 if (Value->isUndef())
2086 return Vector;
2087
2088 SDValue Index = Op->getOperand(2);
2089
2090 SDValue BFI =
2091 DAG.getNode(NVPTXISD::BFI, DL, MVT::i32,
2092 {DAG.getZExtOrTrunc(Value, DL, MVT::i32), Vector,
2093 DAG.getNode(ISD::MUL, DL, MVT::i32,
2094 DAG.getZExtOrTrunc(Index, DL, MVT::i32),
2095 DAG.getConstant(8, DL, MVT::i32)),
2096 DAG.getConstant(8, DL, MVT::i32)});
2097 return DAG.getNode(ISD::BITCAST, DL, Op->getValueType(0), BFI);
2098}
2099
2100SDValue NVPTXTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
2101 SelectionDAG &DAG) const {
2102 SDValue V1 = Op.getOperand(0);
2103 EVT VectorVT = V1.getValueType();
2104 if (VectorVT != MVT::v4i8 || Op.getValueType() != MVT::v4i8)
2105 return Op;
2106
2107 // Lower shuffle to PRMT instruction.
2108 const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(Op.getNode());
2109 SDValue V2 = Op.getOperand(1);
2110 uint32_t Selector = 0;
2111 for (auto I : llvm::enumerate(SVN->getMask())) {
2112 if (I.value() != -1) // -1 is a placeholder for undef.
2113 Selector |= (I.value() << (I.index() * 4));
2114 }
2115
2116 SDLoc DL(Op);
2117 SDValue PRMT = getPRMT(DAG.getBitcast(MVT::i32, V1),
2118 DAG.getBitcast(MVT::i32, V2), Selector, DL, DAG);
2119 return DAG.getBitcast(Op.getValueType(), PRMT);
2120}
2121/// LowerShiftRightParts - Lower SRL_PARTS, SRA_PARTS, which
2122/// 1) returns two i32 values and take a 2 x i32 value to shift plus a shift
2123/// amount, or
2124/// 2) returns two i64 values and take a 2 x i64 value to shift plus a shift
2125/// amount.
2126SDValue NVPTXTargetLowering::LowerShiftRightParts(SDValue Op,
2127 SelectionDAG &DAG) const {
2128 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2129 assert(Op.getOpcode() == ISD::SRA_PARTS || Op.getOpcode() == ISD::SRL_PARTS);
2130
2131 EVT VT = Op.getValueType();
2132 unsigned VTBits = VT.getSizeInBits();
2133 SDLoc dl(Op);
2134 SDValue ShOpLo = Op.getOperand(0);
2135 SDValue ShOpHi = Op.getOperand(1);
2136 SDValue ShAmt = Op.getOperand(2);
2137 unsigned Opc = (Op.getOpcode() == ISD::SRA_PARTS) ? ISD::SRA : ISD::SRL;
2138
2139 if (VTBits == 32 && STI.hasFeature(NVPTX::SM35)) {
2140 // For 32bit and sm35, we can use the funnel shift 'shf' instruction.
2141 // {dHi, dLo} = {aHi, aLo} >> Amt
2142 // dHi = aHi >> Amt
2143 // dLo = shf.r.clamp aLo, aHi, Amt
2144
2145 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
2146 SDValue Lo =
2147 DAG.getNode(NVPTXISD::FSHR_CLAMP, dl, VT, ShOpHi, ShOpLo, ShAmt);
2148
2149 SDValue Ops[2] = { Lo, Hi };
2150 return DAG.getMergeValues(Ops, dl);
2151 } else {
2152 // {dHi, dLo} = {aHi, aLo} >> Amt
2153 // - if (Amt>=size) then
2154 // dLo = aHi >> (Amt-size)
2155 // dHi = aHi >> Amt (this is either all 0 or all 1)
2156 // else
2157 // dLo = (aLo >>logic Amt) | (aHi << (size-Amt))
2158 // dHi = aHi >> Amt
2159
2160 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2161 DAG.getConstant(VTBits, dl, MVT::i32),
2162 ShAmt);
2163 SDValue Tmp1 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, ShAmt);
2164 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2165 DAG.getConstant(VTBits, dl, MVT::i32));
2166 SDValue Tmp2 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, RevShAmt);
2167 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2168 SDValue TrueVal = DAG.getNode(Opc, dl, VT, ShOpHi, ExtraShAmt);
2169
2170 SDValue Cmp = DAG.getSetCC(dl, MVT::i1, ShAmt,
2171 DAG.getConstant(VTBits, dl, MVT::i32),
2172 ISD::SETGE);
2173 SDValue Hi = DAG.getNode(Opc, dl, VT, ShOpHi, ShAmt);
2174 SDValue Lo = DAG.getNode(ISD::SELECT, dl, VT, Cmp, TrueVal, FalseVal);
2175
2176 SDValue Ops[2] = { Lo, Hi };
2177 return DAG.getMergeValues(Ops, dl);
2178 }
2179}
2180
2181/// LowerShiftLeftParts - Lower SHL_PARTS, which
2182/// 1) returns two i32 values and take a 2 x i32 value to shift plus a shift
2183/// amount, or
2184/// 2) returns two i64 values and take a 2 x i64 value to shift plus a shift
2185/// amount.
2186SDValue NVPTXTargetLowering::LowerShiftLeftParts(SDValue Op,
2187 SelectionDAG &DAG) const {
2188 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
2189 assert(Op.getOpcode() == ISD::SHL_PARTS);
2190
2191 EVT VT = Op.getValueType();
2192 unsigned VTBits = VT.getSizeInBits();
2193 SDLoc dl(Op);
2194 SDValue ShOpLo = Op.getOperand(0);
2195 SDValue ShOpHi = Op.getOperand(1);
2196 SDValue ShAmt = Op.getOperand(2);
2197
2198 if (VTBits == 32 && STI.hasFeature(NVPTX::SM35)) {
2199 // For 32bit and sm35, we can use the funnel shift 'shf' instruction.
2200 // {dHi, dLo} = {aHi, aLo} << Amt
2201 // dHi = shf.l.clamp aLo, aHi, Amt
2202 // dLo = aLo << Amt
2203
2204 SDValue Hi =
2205 DAG.getNode(NVPTXISD::FSHL_CLAMP, dl, VT, ShOpHi, ShOpLo, ShAmt);
2206 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
2207
2208 SDValue Ops[2] = { Lo, Hi };
2209 return DAG.getMergeValues(Ops, dl);
2210 } else {
2211 // {dHi, dLo} = {aHi, aLo} << Amt
2212 // - if (Amt>=size) then
2213 // dLo = aLo << Amt (all 0)
2214 // dLo = aLo << (Amt-size)
2215 // else
2216 // dLo = aLo << Amt
2217 // dHi = (aHi << Amt) | (aLo >> (size-Amt))
2218
2219 SDValue RevShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32,
2220 DAG.getConstant(VTBits, dl, MVT::i32),
2221 ShAmt);
2222 SDValue Tmp1 = DAG.getNode(ISD::SHL, dl, VT, ShOpHi, ShAmt);
2223 SDValue ExtraShAmt = DAG.getNode(ISD::SUB, dl, MVT::i32, ShAmt,
2224 DAG.getConstant(VTBits, dl, MVT::i32));
2225 SDValue Tmp2 = DAG.getNode(ISD::SRL, dl, VT, ShOpLo, RevShAmt);
2226 SDValue FalseVal = DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
2227 SDValue TrueVal = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ExtraShAmt);
2228
2229 SDValue Cmp = DAG.getSetCC(dl, MVT::i1, ShAmt,
2230 DAG.getConstant(VTBits, dl, MVT::i32),
2231 ISD::SETGE);
2232 SDValue Lo = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
2233 SDValue Hi = DAG.getNode(ISD::SELECT, dl, VT, Cmp, TrueVal, FalseVal);
2234
2235 SDValue Ops[2] = { Lo, Hi };
2236 return DAG.getMergeValues(Ops, dl);
2237 }
2238}
2239
2240/// If the types match, convert the generic copysign to the NVPTXISD version,
2241/// otherwise bail ensuring that mismatched cases are properly expaned.
2242SDValue NVPTXTargetLowering::LowerFCOPYSIGN(SDValue Op,
2243 SelectionDAG &DAG) const {
2244 EVT VT = Op.getValueType();
2245 SDLoc DL(Op);
2246
2247 SDValue In1 = Op.getOperand(0);
2248 SDValue In2 = Op.getOperand(1);
2249 EVT SrcVT = In2.getValueType();
2250
2251 if (!SrcVT.bitsEq(VT))
2252 return SDValue();
2253
2254 return DAG.getNode(NVPTXISD::FCOPYSIGN, DL, VT, In1, In2);
2255}
2256
2257SDValue NVPTXTargetLowering::LowerFROUND(SDValue Op, SelectionDAG &DAG) const {
2258 EVT VT = Op.getValueType();
2259
2260 if (VT == MVT::f32)
2261 return LowerFROUND32(Op, DAG);
2262
2263 if (VT == MVT::f64)
2264 return LowerFROUND64(Op, DAG);
2265
2266 llvm_unreachable("unhandled type");
2267}
2268
2269// This is the the rounding method used in CUDA libdevice in C like code:
2270// float roundf(float A)
2271// {
2272// float RoundedA = (float) (int) ( A > 0 ? (A + 0.5f) : (A - 0.5f));
2273// RoundedA = abs(A) > 0x1.0p23 ? A : RoundedA;
2274// return abs(A) < 0.5 ? (float)(int)A : RoundedA;
2275// }
2276SDValue NVPTXTargetLowering::LowerFROUND32(SDValue Op,
2277 SelectionDAG &DAG) const {
2278 SDLoc SL(Op);
2279 SDValue A = Op.getOperand(0);
2280 EVT VT = Op.getValueType();
2281
2282 SDValue AbsA = DAG.getNode(ISD::FABS, SL, VT, A);
2283
2284 // RoundedA = (float) (int) ( A > 0 ? (A + 0.5f) : (A - 0.5f))
2285 SDValue Bitcast = DAG.getNode(ISD::BITCAST, SL, MVT::i32, A);
2286 const unsigned SignBitMask = 0x80000000;
2287 SDValue Sign = DAG.getNode(ISD::AND, SL, MVT::i32, Bitcast,
2288 DAG.getConstant(SignBitMask, SL, MVT::i32));
2289 const unsigned PointFiveInBits = 0x3F000000;
2290 SDValue PointFiveWithSignRaw =
2291 DAG.getNode(ISD::OR, SL, MVT::i32, Sign,
2292 DAG.getConstant(PointFiveInBits, SL, MVT::i32));
2293 SDValue PointFiveWithSign =
2294 DAG.getNode(ISD::BITCAST, SL, VT, PointFiveWithSignRaw);
2295 SDValue AdjustedA = DAG.getNode(ISD::FADD, SL, VT, A, PointFiveWithSign);
2296 SDValue RoundedA = DAG.getNode(ISD::FTRUNC, SL, VT, AdjustedA);
2297
2298 // RoundedA = abs(A) > 0x1.0p23 ? A : RoundedA;
2299 EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
2300 SDValue IsLarge =
2301 DAG.getSetCC(SL, SetCCVT, AbsA, DAG.getConstantFP(pow(2.0, 23.0), SL, VT),
2302 ISD::SETOGT);
2303 RoundedA = DAG.getNode(ISD::SELECT, SL, VT, IsLarge, A, RoundedA);
2304
2305 // return abs(A) < 0.5 ? (float)(int)A : RoundedA;
2306 SDValue IsSmall =DAG.getSetCC(SL, SetCCVT, AbsA,
2307 DAG.getConstantFP(0.5, SL, VT), ISD::SETOLT);
2308 SDValue RoundedAForSmallA = DAG.getNode(ISD::FTRUNC, SL, VT, A);
2309 return DAG.getNode(ISD::SELECT, SL, VT, IsSmall, RoundedAForSmallA, RoundedA);
2310}
2311
2312// The implementation of round(double) is similar to that of round(float) in
2313// that they both separate the value range into three regions and use a method
2314// specific to the region to round the values. However, round(double) first
2315// calculates the round of the absolute value and then adds the sign back while
2316// round(float) directly rounds the value with sign.
2317SDValue NVPTXTargetLowering::LowerFROUND64(SDValue Op,
2318 SelectionDAG &DAG) const {
2319 SDLoc SL(Op);
2320 SDValue A = Op.getOperand(0);
2321 EVT VT = Op.getValueType();
2322
2323 SDValue AbsA = DAG.getNode(ISD::FABS, SL, VT, A);
2324
2325 // double RoundedA = (double) (int) (abs(A) + 0.5f);
2326 SDValue AdjustedA = DAG.getNode(ISD::FADD, SL, VT, AbsA,
2327 DAG.getConstantFP(0.5, SL, VT));
2328 SDValue RoundedA = DAG.getNode(ISD::FTRUNC, SL, VT, AdjustedA);
2329
2330 // RoundedA = abs(A) < 0.5 ? (double)0 : RoundedA;
2331 EVT SetCCVT = getSetCCResultType(DAG.getDataLayout(), *DAG.getContext(), VT);
2332 SDValue IsSmall =DAG.getSetCC(SL, SetCCVT, AbsA,
2333 DAG.getConstantFP(0.5, SL, VT), ISD::SETOLT);
2334 RoundedA = DAG.getNode(ISD::SELECT, SL, VT, IsSmall,
2335 DAG.getConstantFP(0, SL, VT),
2336 RoundedA);
2337
2338 // Add sign to rounded_A
2339 RoundedA = DAG.getNode(ISD::FCOPYSIGN, SL, VT, RoundedA, A);
2340 DAG.getNode(ISD::FTRUNC, SL, VT, A);
2341
2342 // RoundedA = abs(A) > 0x1.0p52 ? A : RoundedA;
2343 SDValue IsLarge =
2344 DAG.getSetCC(SL, SetCCVT, AbsA, DAG.getConstantFP(pow(2.0, 52.0), SL, VT),
2345 ISD::SETOGT);
2346 return DAG.getNode(ISD::SELECT, SL, VT, IsLarge, A, RoundedA);
2347}
2348
2350 EVT VT = N->getValueType(0);
2351 EVT NVT = MVT::f32;
2352 if (VT.isVector()) {
2353 NVT = EVT::getVectorVT(*DAG.getContext(), NVT, VT.getVectorElementCount());
2354 }
2355 SDLoc DL(N);
2356 SDValue Tmp0 = DAG.getFPExtendOrRound(N->getOperand(0), DL, NVT);
2357 SDValue Tmp1 = DAG.getFPExtendOrRound(N->getOperand(1), DL, NVT);
2358 SDValue Res = DAG.getNode(N->getOpcode(), DL, NVT, Tmp0, Tmp1, N->getFlags());
2359 return DAG.getFPExtendOrRound(Res, DL, VT);
2360}
2361
2362SDValue NVPTXTargetLowering::PromoteBinOpIfF32FTZ(SDValue Op,
2363 SelectionDAG &DAG) const {
2364 if (useF32FTZ(DAG.getMachineFunction())) {
2365 return PromoteBinOpToF32(Op.getNode(), DAG);
2366 }
2367 return Op;
2368}
2369
2370SDValue NVPTXTargetLowering::LowerINT_TO_FP(SDValue Op,
2371 SelectionDAG &DAG) const {
2372 assert(!STI.hasFeature(NVPTX::SM90));
2373
2374 if (Op.getValueType() == MVT::bf16) {
2375 SDLoc Loc(Op);
2376 return DAG.getNode(
2377 ISD::FP_ROUND, Loc, MVT::bf16,
2378 DAG.getNode(Op.getOpcode(), Loc, MVT::f32, Op.getOperand(0)),
2379 DAG.getIntPtrConstant(0, Loc, /*isTarget=*/true));
2380 }
2381
2382 // Everything else is considered legal.
2383 return Op;
2384}
2385
2386SDValue NVPTXTargetLowering::LowerFP_TO_INT(SDValue Op,
2387 SelectionDAG &DAG) const {
2388 assert(!STI.hasFeature(NVPTX::SM90));
2389
2390 if (Op.getOperand(0).getValueType() == MVT::bf16) {
2391 SDLoc Loc(Op);
2392 return DAG.getNode(
2393 Op.getOpcode(), Loc, Op.getValueType(),
2394 DAG.getNode(ISD::FP_EXTEND, Loc, MVT::f32, Op.getOperand(0)));
2395 }
2396
2397 // Everything else is considered legal.
2398 return Op;
2399}
2400
2401SDValue NVPTXTargetLowering::LowerFP_ROUND(SDValue Op,
2402 SelectionDAG &DAG) const {
2403 EVT NarrowVT = Op.getValueType();
2404 SDValue Wide = Op.getOperand(0);
2405 EVT WideVT = Wide.getValueType();
2406 if (NarrowVT.getScalarType() == MVT::bf16) {
2407 const TargetLowering *TLI = STI.getTargetLowering();
2408 if (!STI.hasFeature(NVPTX::SM80)) {
2409 return TLI->expandFP_ROUND(Op.getNode(), DAG);
2410 }
2411 if (!STI.hasFeature(NVPTX::SM90)) {
2412 // sm_80 was the first architecture to support f32 -> bf16.
2413 if (WideVT.getScalarType() == MVT::f32) {
2414 return Op;
2415 }
2416 if (WideVT.getScalarType() == MVT::f64) {
2417 SDLoc Loc(Op);
2418 // Round-inexact-to-odd f64 to f32, then do the final rounding using
2419 // the hardware f32 -> bf16 instruction.
2421 WideVT.changeElementType(*DAG.getContext(), MVT::f32), Wide, Loc,
2422 DAG);
2423 return DAG.getFPExtendOrRound(rod, Loc, NarrowVT);
2424 }
2425 return TLI->expandFP_ROUND(Op.getNode(), DAG);
2426 }
2427 }
2428
2429 // Everything else is considered legal.
2430 return Op;
2431}
2432
2433SDValue NVPTXTargetLowering::LowerFP_EXTEND(SDValue Op,
2434 SelectionDAG &DAG) const {
2435 SDValue Narrow = Op.getOperand(0);
2436 EVT NarrowVT = Narrow.getValueType();
2437 EVT WideVT = Op.getValueType();
2438 if (NarrowVT.getScalarType() == MVT::bf16) {
2439 if (WideVT.getScalarType() == MVT::f32 &&
2440 (!STI.hasFeature(NVPTX::SM80) || !STI.hasFeature(NVPTX::PTX71))) {
2441 SDLoc Loc(Op);
2442 return DAG.getNode(ISD::BF16_TO_FP, Loc, WideVT, Narrow);
2443 }
2444 if (WideVT.getScalarType() == MVT::f64 && !STI.hasFeature(NVPTX::SM90)) {
2445 EVT F32 = NarrowVT.changeElementType(*DAG.getContext(), MVT::f32);
2446 SDLoc Loc(Op);
2447 if (STI.hasFeature(NVPTX::SM80) && STI.hasFeature(NVPTX::PTX71)) {
2448 Op = DAG.getNode(ISD::FP_EXTEND, Loc, F32, Narrow);
2449 } else {
2450 Op = DAG.getNode(ISD::BF16_TO_FP, Loc, F32, Narrow);
2451 }
2452 return DAG.getNode(ISD::FP_EXTEND, Loc, WideVT, Op);
2453 }
2454 }
2455
2456 // Everything else is considered legal.
2457 return Op;
2458}
2459
2461 SDLoc DL(Op);
2462 if (Op.getValueType() != MVT::v2i16)
2463 return Op;
2464 EVT EltVT = Op.getValueType().getVectorElementType();
2465 SmallVector<SDValue> VecElements;
2466 for (int I = 0, E = Op.getValueType().getVectorNumElements(); I < E; I++) {
2467 SmallVector<SDValue> ScalarArgs;
2468 llvm::transform(Op->ops(), std::back_inserter(ScalarArgs),
2469 [&](const SDUse &O) {
2470 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT,
2471 O.get(), DAG.getIntPtrConstant(I, DL));
2472 });
2473 VecElements.push_back(DAG.getNode(Op.getOpcode(), DL, EltVT, ScalarArgs));
2474 }
2475 SDValue V =
2476 DAG.getNode(ISD::BUILD_VECTOR, DL, Op.getValueType(), VecElements);
2477 return V;
2478}
2479
2481 bool hasOffset = false) {
2482 // skip lowering if the vector operand is already legalized
2483 if (!Op->getOperand(hasOffset ? 4 : 3).getValueType().isVector())
2484 return Op;
2485
2486 SDNode *N = Op.getNode();
2487 SDLoc DL(N);
2489
2490 // split the vector argument
2491 for (size_t I = 0; I < N->getNumOperands(); I++) {
2492 SDValue Val = N->getOperand(I);
2493 EVT ValVT = Val.getValueType();
2494 if (ValVT.isVector()) {
2495 EVT EltVT = ValVT.getVectorElementType();
2496 for (unsigned J = 0, NElts = ValVT.getVectorNumElements(); J < NElts; J++)
2497 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Val,
2498 DAG.getIntPtrConstant(J, DL)));
2499 } else
2500 Ops.push_back(Val);
2501 }
2502
2504 SDValue Tcgen05StNode =
2505 DAG.getMemIntrinsicNode(ISD::INTRINSIC_VOID, DL, N->getVTList(), Ops,
2506 MemSD->getMemoryVT(), MemSD->getMemOperand());
2507
2508 return Tcgen05StNode;
2509}
2510
2512 SDLoc DL(Op);
2513 SDValue Src = Op.getOperand(0);
2514 EVT VT = Op.getValueType();
2515
2516 switch (VT.getSimpleVT().SimpleTy) {
2517 case MVT::i16: {
2518 SDValue Extended = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, Src);
2519 SDValue Swapped =
2520 getPRMT(Extended, DAG.getConstant(0, DL, MVT::i32), 0x7701, DL, DAG);
2521 return DAG.getNode(ISD::TRUNCATE, DL, MVT::i16, Swapped);
2522 }
2523 case MVT::i32: {
2524 return getPRMT(Src, DAG.getConstant(0, DL, MVT::i32), 0x0123, DL, DAG);
2525 }
2526 case MVT::v2i16: {
2527 SDValue Converted = DAG.getBitcast(MVT::i32, Src);
2528 SDValue Swapped =
2529 getPRMT(Converted, DAG.getConstant(0, DL, MVT::i32), 0x2301, DL, DAG);
2530 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i16, Swapped);
2531 }
2532 case MVT::i64: {
2533 SDValue UnpackSrc =
2534 DAG.getNode(NVPTXISD::UNPACK_VECTOR, DL, {MVT::i32, MVT::i32}, Src);
2535 SDValue SwappedLow =
2536 getPRMT(UnpackSrc.getValue(0), DAG.getConstant(0, DL, MVT::i32), 0x0123,
2537 DL, DAG);
2538 SDValue SwappedHigh =
2539 getPRMT(UnpackSrc.getValue(1), DAG.getConstant(0, DL, MVT::i32), 0x0123,
2540 DL, DAG);
2541 return DAG.getNode(NVPTXISD::BUILD_VECTOR, DL, MVT::i64,
2542 {SwappedHigh, SwappedLow});
2543 }
2544 default:
2545 llvm_unreachable("unsupported type for bswap");
2546 }
2547}
2548
2550 const Function &Fn = DAG.getMachineFunction().getFunction();
2551 SDNode *N = Op.getNode();
2552 SDLoc DL(N);
2553 Intrinsic::ID IntrinsicID = N->getConstantOperandVal(1);
2554 SDValue DestAddr = N->getOperand(2);
2555 SDValue Value = N->getOperand(3);
2556 SDValue MbarAddr = N->getOperand(4);
2557
2558 MVT ValueVT = Value.getSimpleValueType();
2559
2560 if (ValueVT == MVT::i32 || ValueVT == MVT::i64)
2561 return Op;
2562
2563 if (ValueVT == MVT::i128) {
2564 SDValue Cast = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Value);
2565 SDValue ValueLo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
2566 DAG.getIntPtrConstant(0, DL));
2567 SDValue ValueHi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
2568 DAG.getIntPtrConstant(1, DL));
2569 SDValue Ops[] = {N->getOperand(0), DestAddr, ValueLo, ValueHi, MbarAddr};
2570 return DAG.getNode(NVPTXISD::ST_ASYNC_MBARRIER_B128, DL, MVT::Other, Ops);
2571 }
2572
2574 Fn,
2575 Twine("unsupported argument type ") + llvm::EVT(ValueVT).getEVTString() +
2576 " for " + llvm::Intrinsic::getName(IntrinsicID) + " intrinsic",
2577 DiagnosticLocation(DL.getDebugLoc())));
2578 return Op.getOperand(0); // Return only the chain
2579}
2580
2582 const Function &Fn = DAG.getMachineFunction().getFunction();
2583 SDNode *N = Op.getNode();
2584 SDLoc DL(N);
2585 Intrinsic::ID IntrinsicID = N->getConstantOperandVal(1);
2586 SDValue DestAddr = N->getOperand(2);
2587 SDValue Value = N->getOperand(3);
2588
2589 MVT ValueVT = Value.getSimpleValueType();
2590
2591 if (ValueVT == MVT::i16 || ValueVT == MVT::i32 || ValueVT == MVT::i64)
2592 return Op;
2593
2594 if (ValueVT == MVT::i8) {
2595 unsigned OpCode;
2596 switch (IntrinsicID) {
2597 case Intrinsic::nvvm_st_async_sys:
2598 OpCode = NVPTXISD::ST_ASYNC_SYS_B8;
2599 break;
2600 case Intrinsic::nvvm_st_async_gpu:
2601 OpCode = NVPTXISD::ST_ASYNC_GPU_B8;
2602 break;
2603 case Intrinsic::nvvm_st_async_mmio_sys:
2604 OpCode = NVPTXISD::ST_ASYNC_MMIO_SYS_B8;
2605 break;
2606 default:
2607 llvm_unreachable("unexpected intrinsic ID for st.async.release");
2608 }
2609
2610 Value = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i16, Value);
2611
2612 // The `.mmio` variant has no multimem form and therefore no `isMultimem`
2613 // operand.
2614 if (IntrinsicID == Intrinsic::nvvm_st_async_mmio_sys) {
2615 SDValue Ops[] = {N->getOperand(0), DestAddr, Value};
2616 return DAG.getNode(OpCode, DL, MVT::Other, Ops);
2617 }
2618
2619 SDValue IsMultimem =
2620 DAG.getTargetConstant(N->getConstantOperandVal(4), DL, MVT::i1);
2621 SDValue Ops[] = {N->getOperand(0), DestAddr, Value, IsMultimem};
2622 return DAG.getNode(OpCode, DL, MVT::Other, Ops);
2623 }
2624
2626 Fn,
2627 Twine("unsupported argument type ") + llvm::EVT(ValueVT).getEVTString() +
2628 " for " + llvm::Intrinsic::getName(IntrinsicID) + " intrinsic",
2629 DiagnosticLocation(DL.getDebugLoc())));
2630 return Op.getOperand(0); // Return only the chain
2631}
2632
2633static unsigned getTcgen05MMADisableOutputLane(unsigned IID) {
2634 switch (IID) {
2635 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg1:
2636 return NVPTXISD::TCGEN05_MMA_SHARED_DISABLE_OUTPUT_LANE_CG1;
2637 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg2:
2638 return NVPTXISD::TCGEN05_MMA_SHARED_DISABLE_OUTPUT_LANE_CG2;
2639 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg1:
2640 return NVPTXISD::TCGEN05_MMA_SHARED_SCALE_D_DISABLE_OUTPUT_LANE_CG1;
2641 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg2:
2642 return NVPTXISD::TCGEN05_MMA_SHARED_SCALE_D_DISABLE_OUTPUT_LANE_CG2;
2643 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1:
2644 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG1;
2645 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2:
2646 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG2;
2647 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1:
2648 return NVPTXISD::TCGEN05_MMA_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG1;
2649 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2:
2650 return NVPTXISD::TCGEN05_MMA_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG2;
2651 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1_ashift:
2652 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG1_ASHIFT;
2653 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2_ashift:
2654 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG2_ASHIFT;
2655 case Intrinsic::
2656 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1_ashift:
2657 return NVPTXISD::TCGEN05_MMA_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG1_ASHIFT;
2658 case Intrinsic::
2659 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2_ashift:
2660 return NVPTXISD::TCGEN05_MMA_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG2_ASHIFT;
2661 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg1:
2662 return NVPTXISD::TCGEN05_MMA_SP_SHARED_DISABLE_OUTPUT_LANE_CG1;
2663 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg2:
2664 return NVPTXISD::TCGEN05_MMA_SP_SHARED_DISABLE_OUTPUT_LANE_CG2;
2665 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg1:
2666 return NVPTXISD::TCGEN05_MMA_SP_SHARED_SCALE_D_DISABLE_OUTPUT_LANE_CG1;
2667 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg2:
2668 return NVPTXISD::TCGEN05_MMA_SP_SHARED_SCALE_D_DISABLE_OUTPUT_LANE_CG2;
2669 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1:
2670 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_DISABLE_OUTPUT_LANE_CG1;
2671 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2:
2672 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_DISABLE_OUTPUT_LANE_CG2;
2673 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1_ashift:
2674 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_DISABLE_OUTPUT_LANE_CG1_ASHIFT;
2675 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2_ashift:
2676 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_DISABLE_OUTPUT_LANE_CG2_ASHIFT;
2677 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1:
2678 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG1;
2679 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2:
2680 return NVPTXISD::TCGEN05_MMA_SP_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG2;
2681 case Intrinsic::
2682 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1_ashift:
2683 return NVPTXISD::
2684 TCGEN05_MMA_SP_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG1_ASHIFT;
2685 case Intrinsic::
2686 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2_ashift:
2687 return NVPTXISD::
2688 TCGEN05_MMA_SP_TENSOR_SCALE_D_DISABLE_OUTPUT_LANE_CG2_ASHIFT;
2689 case Intrinsic::
2690 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg1_decompress_b:
2691 return NVPTXISD::TCGEN05_MMA_SHARED_DISABLE_OUTPUT_LANE_CG1_DECOMPRESS_B;
2692 case Intrinsic::
2693 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg2_decompress_b:
2694 return NVPTXISD::TCGEN05_MMA_SHARED_DISABLE_OUTPUT_LANE_CG2_DECOMPRESS_B;
2695 case Intrinsic::
2696 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg1_decompress_b:
2697 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG1_DECOMPRESS_B;
2698 case Intrinsic::
2699 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg2_decompress_b:
2700 return NVPTXISD::TCGEN05_MMA_TENSOR_DISABLE_OUTPUT_LANE_CG2_DECOMPRESS_B;
2701 };
2702 llvm_unreachable("unhandled tcgen05.mma.disable_output_lane intrinsic");
2703}
2704
2706 SDNode *N = Op.getNode();
2707 SDLoc DL(N);
2708 unsigned IID = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
2709
2711 // split the vector argument
2712 for (size_t I = 0; I < N->getNumOperands(); I++) {
2713 if (I == 1)
2714 continue; // skip IID
2715 SDValue Val = N->getOperand(I);
2716 EVT ValVT = Val.getValueType();
2717 if (ValVT.isVector()) {
2718 EVT EltVT = ValVT.getVectorElementType();
2719 for (unsigned J = 0, NElts = ValVT.getVectorNumElements(); J < NElts; J++)
2720 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Val,
2721 DAG.getIntPtrConstant(J, DL)));
2722 } else
2723 Ops.push_back(Val);
2724 }
2725
2727 SDValue Tcgen05MMANode = DAG.getMemIntrinsicNode(
2728 getTcgen05MMADisableOutputLane(IID), DL, N->getVTList(), Ops,
2729 MemSD->getMemoryVT(), MemSD->getMemOperand());
2730
2731 return Tcgen05MMANode;
2732}
2733
2734// Lower vector return type of tcgen05.ld intrinsics
2735static std::optional<std::pair<SDValue, SDValue>>
2736lowerTcgen05Ld(SDNode *N, SelectionDAG &DAG, bool HasOffset = false) {
2737 SDLoc DL(N);
2738 EVT ResVT = N->getValueType(0);
2739 if (!ResVT.isVector())
2740 return {}; // already legalized.
2741
2742 const unsigned NumElts = ResVT.getVectorNumElements();
2743
2744 // Create the return type of the instructions
2745 SmallVector<EVT, 5> ListVTs;
2746 for (unsigned i = 0; i < NumElts; ++i)
2747 ListVTs.push_back(MVT::i32);
2748
2749 ListVTs.push_back(N->getValueType(1)); // Chain
2750
2751 SDVTList ResVTs = DAG.getVTList(ListVTs);
2752
2753 SmallVector<SDValue, 8> Ops{N->getOperand(0), N->getOperand(1),
2754 N->getOperand(2)};
2755
2756 if (HasOffset) {
2757 Ops.push_back(N->getOperand(3)); // offset
2758 Ops.push_back(N->getOperand(4)); // Pack flag
2759 } else
2760 Ops.push_back(N->getOperand(3)); // Pack flag
2761
2763 SDValue NewNode =
2765 MemSD->getMemoryVT(), MemSD->getMemOperand());
2766
2767 // split the vector result
2768 SmallVector<SDValue, 4> ScalarRes;
2769 for (unsigned i = 0; i < NumElts; ++i) {
2770 SDValue Res = NewNode.getValue(i);
2771 ScalarRes.push_back(Res);
2772 }
2773
2774 SDValue Chain = NewNode.getValue(NumElts);
2775 SDValue BuildVector = DAG.getNode(ISD::BUILD_VECTOR, DL, ResVT, ScalarRes);
2776 return {{BuildVector, Chain}};
2777}
2778
2780 unsigned Val) {
2781 SDNode *N = Op.getNode();
2782 SDLoc DL(N);
2783
2784 const Function &Fn = DAG.getMachineFunction().getFunction();
2785
2786 unsigned AS = 0;
2787 if (auto *MemN = dyn_cast<MemIntrinsicSDNode>(N))
2788 AS = MemN->getAddressSpace();
2789 Type *PtrTy = PointerType::get(*DAG.getContext(), AS);
2791
2793 Fn,
2794 "Intrinsic " +
2795 Intrinsic::getName(N->getConstantOperandVal(1), {PtrTy}, M) +
2796 " with value " + Twine(Val) +
2797 " is not supported on the given target.",
2798 DL.getDebugLoc()));
2799 return Op.getOperand(0);
2800}
2801
2803 SDNode *N = Op.getNode();
2804 SDLoc DL(N);
2805
2806 // immediate argument representing elemtype
2807 unsigned Val = N->getConstantOperandVal(3);
2808
2810 Val))
2811 return reportInvalidTensormapReplaceUsage(Op, DAG, Val);
2812
2813 return Op;
2814}
2815
2817 SDNode *N = Op.getNode();
2818 SDLoc DL(N);
2819
2820 // immediate argument representing swizzle mode
2821 unsigned Val = N->getConstantOperandVal(3);
2822
2824 Val))
2825 return reportInvalidTensormapReplaceUsage(Op, DAG, Val);
2826
2827 return Op;
2828}
2829
2831 SDNode *N = Op.getNode();
2832 SDValue Intrin = N->getOperand(1);
2833
2834 // Get the intrinsic ID
2835 unsigned IntrinNo = cast<ConstantSDNode>(Intrin.getNode())->getZExtValue();
2836 switch (IntrinNo) {
2837 default:
2838 break;
2839 case Intrinsic::nvvm_st_async:
2840 return lowerStAsyncWithMbarrier(Op, DAG);
2841 case Intrinsic::nvvm_st_async_sys:
2842 case Intrinsic::nvvm_st_async_gpu:
2843 case Intrinsic::nvvm_st_async_mmio_sys:
2844 return lowerStAsyncRelease(Op, DAG);
2845
2846 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2847 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2848 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2849 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2850 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2851 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2852 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2853 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2854 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2855 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2856 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2857 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2858 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2859 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2860 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2861 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2862 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2863 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2864 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2865 case Intrinsic::nvvm_tcgen05_st_16x256b_x32:
2866 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2867 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2868 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2869 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2870 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2871 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2872 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2873 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2874 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2875 return lowerTcgen05St(Op, DAG);
2876 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2877 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2878 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2879 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2880 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2881 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2882 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2883 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128:
2884 return lowerTcgen05St(Op, DAG, /* hasOffset */ true);
2885 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg1:
2886 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg2:
2887 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg1:
2888 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg2:
2889 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg1:
2890 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg2:
2891 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg1:
2892 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg2:
2893 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1:
2894 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2:
2895 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1:
2896 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2:
2897 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1:
2898 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2:
2899 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1:
2900 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2:
2901 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1_ashift:
2902 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2_ashift:
2903 case Intrinsic::
2904 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1_ashift:
2905 case Intrinsic::
2906 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2_ashift:
2907 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1_ashift:
2908 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2_ashift:
2909 case Intrinsic::
2910 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1_ashift:
2911 case Intrinsic::
2912 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2_ashift:
2913 case Intrinsic::
2914 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg1_decompress_b:
2915 case Intrinsic::
2916 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg2_decompress_b:
2917 case Intrinsic::
2918 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg1_decompress_b:
2919 case Intrinsic::
2920 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg2_decompress_b:
2922 case Intrinsic::nvvm_tensormap_replace_elemtype:
2923 return lowerTensormapReplaceElemtype(Op, DAG);
2924 case Intrinsic::nvvm_tensormap_replace_swizzle_mode:
2926 }
2927 return Op;
2928}
2929
2931 SelectionDAG &DAG) {
2932
2933 SDNode *N = Op.getNode();
2934 if (N->getOperand(1).getValueType() != MVT::i128) {
2935 // return, if the operand is already lowered
2936 return SDValue();
2937 }
2938
2939 unsigned IID =
2940 cast<ConstantSDNode>(N->getOperand(0).getNode())->getZExtValue();
2941 auto Opcode = [&]() {
2942 switch (IID) {
2943 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_is_canceled:
2944 return NVPTXISD::CLUSTERLAUNCHCONTROL_QUERY_CANCEL_IS_CANCELED;
2945 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_x:
2946 return NVPTXISD::CLUSTERLAUNCHCONTROL_QUERY_CANCEL_GET_FIRST_CTAID_X;
2947 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_y:
2948 return NVPTXISD::CLUSTERLAUNCHCONTROL_QUERY_CANCEL_GET_FIRST_CTAID_Y;
2949 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_z:
2950 return NVPTXISD::CLUSTERLAUNCHCONTROL_QUERY_CANCEL_GET_FIRST_CTAID_Z;
2951 default:
2952 llvm_unreachable("unsupported/unhandled intrinsic");
2953 }
2954 }();
2955
2956 SDLoc DL(N);
2957 SDValue TryCancelResponse = N->getOperand(1);
2958 SDValue Cast = DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, TryCancelResponse);
2959 SDValue TryCancelResponse0 =
2960 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
2961 DAG.getIntPtrConstant(0, DL));
2962 SDValue TryCancelResponse1 =
2963 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
2964 DAG.getIntPtrConstant(1, DL));
2965
2966 return DAG.getNode(Opcode, DL, N->getVTList(),
2967 {TryCancelResponse0, TryCancelResponse1});
2968}
2969
2971 SDNode *N = Op.getNode();
2972 SDLoc DL(N);
2973 SDValue F32Vec = N->getOperand(1);
2974 SDValue RBits = N->getOperand(2);
2975
2976 unsigned IntrinsicID = N->getConstantOperandVal(0);
2977
2978 // Extract the 4 float elements from the vector
2980 for (unsigned i = 0; i < 4; ++i)
2981 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::f32, F32Vec,
2982 DAG.getIntPtrConstant(i, DL)));
2983
2985
2986 auto [OpCode, RetTy, CvtModeFlag] =
2987 [&]() -> std::tuple<unsigned, MVT::SimpleValueType, uint32_t> {
2988 switch (IntrinsicID) {
2989 case Intrinsic::nvvm_f32x4_to_e4m3x4_rs_relu_satfinite:
2990 return {NVPTXISD::CVT_E4M3X4_F32X4_RS_SF, MVT::v4i8,
2991 CvtMode::RS | CvtMode::RELU_FLAG};
2992 case Intrinsic::nvvm_f32x4_to_e4m3x4_rs_satfinite:
2993 return {NVPTXISD::CVT_E4M3X4_F32X4_RS_SF, MVT::v4i8, CvtMode::RS};
2994 case Intrinsic::nvvm_f32x4_to_e5m2x4_rs_relu_satfinite:
2995 return {NVPTXISD::CVT_E5M2X4_F32X4_RS_SF, MVT::v4i8,
2996 CvtMode::RS | CvtMode::RELU_FLAG};
2997 case Intrinsic::nvvm_f32x4_to_e5m2x4_rs_satfinite:
2998 return {NVPTXISD::CVT_E5M2X4_F32X4_RS_SF, MVT::v4i8, CvtMode::RS};
2999 case Intrinsic::nvvm_f32x4_to_e2m3x4_rs_relu_satfinite:
3000 return {NVPTXISD::CVT_E2M3X4_F32X4_RS_SF, MVT::v4i8,
3001 CvtMode::RS | CvtMode::RELU_FLAG};
3002 case Intrinsic::nvvm_f32x4_to_e2m3x4_rs_satfinite:
3003 return {NVPTXISD::CVT_E2M3X4_F32X4_RS_SF, MVT::v4i8, CvtMode::RS};
3004 case Intrinsic::nvvm_f32x4_to_e3m2x4_rs_relu_satfinite:
3005 return {NVPTXISD::CVT_E3M2X4_F32X4_RS_SF, MVT::v4i8,
3006 CvtMode::RS | CvtMode::RELU_FLAG};
3007 case Intrinsic::nvvm_f32x4_to_e3m2x4_rs_satfinite:
3008 return {NVPTXISD::CVT_E3M2X4_F32X4_RS_SF, MVT::v4i8, CvtMode::RS};
3009 case Intrinsic::nvvm_f32x4_to_e2m1x4_rs_relu_satfinite:
3010 return {NVPTXISD::CVT_E2M1X4_F32X4_RS_SF, MVT::i16,
3011 CvtMode::RS | CvtMode::RELU_FLAG};
3012 case Intrinsic::nvvm_f32x4_to_e2m1x4_rs_satfinite:
3013 return {NVPTXISD::CVT_E2M1X4_F32X4_RS_SF, MVT::i16, CvtMode::RS};
3014 default:
3015 llvm_unreachable("unsupported/unhandled intrinsic");
3016 }
3017 }();
3018
3019 Ops.push_back(RBits);
3020 Ops.push_back(DAG.getConstant(CvtModeFlag, DL, MVT::i32));
3021
3022 return DAG.getNode(OpCode, DL, RetTy, Ops);
3023}
3024
3026 const unsigned Mode = [&]() {
3027 switch (Op->getConstantOperandVal(0)) {
3028 case Intrinsic::nvvm_prmt:
3030 case Intrinsic::nvvm_prmt_b4e:
3032 case Intrinsic::nvvm_prmt_ecl:
3034 case Intrinsic::nvvm_prmt_ecr:
3036 case Intrinsic::nvvm_prmt_f4e:
3038 case Intrinsic::nvvm_prmt_rc16:
3040 case Intrinsic::nvvm_prmt_rc8:
3042 default:
3043 llvm_unreachable("unsupported/unhandled intrinsic");
3044 }
3045 }();
3046 SDLoc DL(Op);
3047 SDValue A = Op->getOperand(1);
3048 SDValue B = Op.getNumOperands() == 4 ? Op.getOperand(2)
3049 : DAG.getConstant(0, DL, MVT::i32);
3050 SDValue Selector = (Op->op_end() - 1)->get();
3051 return getPRMT(A, B, Selector, DL, DAG, Mode);
3052}
3053
3054#define TCGEN05_LD_RED_INTR(SHAPE, NUM, TYPE) \
3055 Intrinsic::nvvm_tcgen05_ld_red_##SHAPE##_x##NUM##_##TYPE
3056
3057#define TCGEN05_LD_RED_INST(SHAPE, NUM, TYPE) \
3058 NVPTXISD::TCGEN05_LD_RED_##SHAPE##_X##NUM##_##TYPE
3059
3060static unsigned getTcgen05LdRedID(Intrinsic::ID IID) {
3061 switch (IID) {
3062 case TCGEN05_LD_RED_INTR(32x32b, 2, f32):
3063 return TCGEN05_LD_RED_INST(32x32b, 2, F32);
3064 case TCGEN05_LD_RED_INTR(32x32b, 4, f32):
3065 return TCGEN05_LD_RED_INST(32x32b, 4, F32);
3066 case TCGEN05_LD_RED_INTR(32x32b, 8, f32):
3067 return TCGEN05_LD_RED_INST(32x32b, 8, F32);
3068 case TCGEN05_LD_RED_INTR(32x32b, 16, f32):
3069 return TCGEN05_LD_RED_INST(32x32b, 16, F32);
3070 case TCGEN05_LD_RED_INTR(32x32b, 32, f32):
3071 return TCGEN05_LD_RED_INST(32x32b, 32, F32);
3072 case TCGEN05_LD_RED_INTR(32x32b, 64, f32):
3073 return TCGEN05_LD_RED_INST(32x32b, 64, F32);
3074 case TCGEN05_LD_RED_INTR(32x32b, 128, f32):
3075 return TCGEN05_LD_RED_INST(32x32b, 128, F32);
3076 case TCGEN05_LD_RED_INTR(16x32bx2, 2, f32):
3077 return TCGEN05_LD_RED_INST(16x32bx2, 2, F32);
3078 case TCGEN05_LD_RED_INTR(16x32bx2, 4, f32):
3079 return TCGEN05_LD_RED_INST(16x32bx2, 4, F32);
3080 case TCGEN05_LD_RED_INTR(16x32bx2, 8, f32):
3081 return TCGEN05_LD_RED_INST(16x32bx2, 8, F32);
3082 case TCGEN05_LD_RED_INTR(16x32bx2, 16, f32):
3083 return TCGEN05_LD_RED_INST(16x32bx2, 16, F32);
3084 case TCGEN05_LD_RED_INTR(16x32bx2, 32, f32):
3085 return TCGEN05_LD_RED_INST(16x32bx2, 32, F32);
3086 case TCGEN05_LD_RED_INTR(16x32bx2, 64, f32):
3087 return TCGEN05_LD_RED_INST(16x32bx2, 64, F32);
3088 case TCGEN05_LD_RED_INTR(16x32bx2, 128, f32):
3089 return TCGEN05_LD_RED_INST(16x32bx2, 128, F32);
3090 case TCGEN05_LD_RED_INTR(32x32b, 2, i32):
3091 return TCGEN05_LD_RED_INST(32x32b, 2, I32);
3092 case TCGEN05_LD_RED_INTR(32x32b, 4, i32):
3093 return TCGEN05_LD_RED_INST(32x32b, 4, I32);
3094 case TCGEN05_LD_RED_INTR(32x32b, 8, i32):
3095 return TCGEN05_LD_RED_INST(32x32b, 8, I32);
3096 case TCGEN05_LD_RED_INTR(32x32b, 16, i32):
3097 return TCGEN05_LD_RED_INST(32x32b, 16, I32);
3098 case TCGEN05_LD_RED_INTR(32x32b, 32, i32):
3099 return TCGEN05_LD_RED_INST(32x32b, 32, I32);
3100 case TCGEN05_LD_RED_INTR(32x32b, 64, i32):
3101 return TCGEN05_LD_RED_INST(32x32b, 64, I32);
3102 case TCGEN05_LD_RED_INTR(32x32b, 128, i32):
3103 return TCGEN05_LD_RED_INST(32x32b, 128, I32);
3104 case TCGEN05_LD_RED_INTR(16x32bx2, 2, i32):
3105 return TCGEN05_LD_RED_INST(16x32bx2, 2, I32);
3106 case TCGEN05_LD_RED_INTR(16x32bx2, 4, i32):
3107 return TCGEN05_LD_RED_INST(16x32bx2, 4, I32);
3108 case TCGEN05_LD_RED_INTR(16x32bx2, 8, i32):
3109 return TCGEN05_LD_RED_INST(16x32bx2, 8, I32);
3110 case TCGEN05_LD_RED_INTR(16x32bx2, 16, i32):
3111 return TCGEN05_LD_RED_INST(16x32bx2, 16, I32);
3112 case TCGEN05_LD_RED_INTR(16x32bx2, 32, i32):
3113 return TCGEN05_LD_RED_INST(16x32bx2, 32, I32);
3114 case TCGEN05_LD_RED_INTR(16x32bx2, 64, i32):
3115 return TCGEN05_LD_RED_INST(16x32bx2, 64, I32);
3116 case TCGEN05_LD_RED_INTR(16x32bx2, 128, i32):
3117 return TCGEN05_LD_RED_INST(16x32bx2, 128, I32);
3118 default:
3119 llvm_unreachable("Invalid tcgen05.ld.red intrinsic ID");
3120 }
3121}
3122
3123// Lower vector return type of tcgen05.ld intrinsics
3124static std::optional<std::tuple<SDValue, SDValue, SDValue>>
3126 SDLoc DL(N);
3127 EVT ResVT = N->getValueType(0);
3128 if (!ResVT.isVector())
3129 return {}; // already legalized.
3130
3131 const unsigned NumElts = ResVT.getVectorNumElements();
3132
3133 // Create the return type of the instructions
3134 // +1 represents the reduction value
3135 SmallVector<EVT, 132> ListVTs{
3136 NumElts + 1,
3137 ResVT.getVectorElementType().isFloatingPoint() ? MVT::f32 : MVT::i32};
3138
3139 ListVTs.push_back(MVT::Other); // Chain
3140
3141 SDVTList ResVTs = DAG.getVTList(ListVTs);
3142
3143 // Prepare the Operands
3144 SmallVector<SDValue, 8> Ops{N->getOperand(0)}; // Chain
3145
3146 // skip IID at index 1
3147 for (unsigned i = 2; i < N->getNumOperands(); i++)
3148 Ops.push_back(N->getOperand(i));
3149
3150 unsigned IID = cast<ConstantSDNode>(N->getOperand(1))->getZExtValue();
3152 SDValue NewNode =
3153 DAG.getMemIntrinsicNode(getTcgen05LdRedID(IID), DL, ResVTs, Ops,
3154 MemSD->getMemoryVT(), MemSD->getMemOperand());
3155
3156 // Split vector result
3157 SmallVector<SDValue, 132> ScalarRes;
3158 for (unsigned i = 0; i < NumElts; ++i) {
3159 SDValue Res = NewNode.getValue(i);
3160 ScalarRes.push_back(Res);
3161 }
3162
3163 SDValue BuildVector = DAG.getNode(ISD::BUILD_VECTOR, DL, ResVT, ScalarRes);
3164 SDValue RedResult = NewNode.getValue(NumElts);
3165 SDValue Chain = NewNode.getValue(NumElts + 1);
3166 return {{BuildVector, RedResult, Chain}};
3167}
3168
3170 switch (Op->getConstantOperandVal(1)) {
3171 default:
3172 return Op;
3173
3174 // These tcgen05 intrinsics return a v2i32, which is legal, so we have to
3175 // lower them through LowerOperation() instead of ReplaceNodeResults().
3176 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
3177 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
3178 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
3179 if (auto Res = lowerTcgen05Ld(Op.getNode(), DAG))
3180 return DAG.getMergeValues({Res->first, Res->second}, SDLoc(Op));
3181 return SDValue();
3182
3183 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
3184 if (auto Res = lowerTcgen05Ld(Op.getNode(), DAG, /*HasOffset=*/true))
3185 return DAG.getMergeValues({Res->first, Res->second}, SDLoc(Op));
3186 return SDValue();
3187
3188 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x2_f32:
3189 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x2_i32:
3190 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x2_f32:
3191 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x2_i32:
3192 if (auto Res = lowerTcgen05LdRed(Op.getNode(), DAG))
3193 return DAG.getMergeValues(
3194 {std::get<0>(*Res), std::get<1>(*Res), std::get<2>(*Res)}, SDLoc(Op));
3195 return SDValue();
3196 }
3197}
3198
3200 switch (Op->getConstantOperandVal(0)) {
3201 default:
3202 return Op;
3203 case Intrinsic::nvvm_prmt:
3204 case Intrinsic::nvvm_prmt_b4e:
3205 case Intrinsic::nvvm_prmt_ecl:
3206 case Intrinsic::nvvm_prmt_ecr:
3207 case Intrinsic::nvvm_prmt_f4e:
3208 case Intrinsic::nvvm_prmt_rc16:
3209 case Intrinsic::nvvm_prmt_rc8:
3210 return lowerPrmtIntrinsic(Op, DAG);
3211 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_is_canceled:
3212 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_x:
3213 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_y:
3214 case Intrinsic::nvvm_clusterlaunchcontrol_query_cancel_get_first_ctaid_z:
3216 case Intrinsic::nvvm_f32x4_to_e4m3x4_rs_satfinite:
3217 case Intrinsic::nvvm_f32x4_to_e4m3x4_rs_relu_satfinite:
3218 case Intrinsic::nvvm_f32x4_to_e5m2x4_rs_satfinite:
3219 case Intrinsic::nvvm_f32x4_to_e5m2x4_rs_relu_satfinite:
3220 case Intrinsic::nvvm_f32x4_to_e2m3x4_rs_satfinite:
3221 case Intrinsic::nvvm_f32x4_to_e2m3x4_rs_relu_satfinite:
3222 case Intrinsic::nvvm_f32x4_to_e3m2x4_rs_satfinite:
3223 case Intrinsic::nvvm_f32x4_to_e3m2x4_rs_relu_satfinite:
3224 case Intrinsic::nvvm_f32x4_to_e2m1x4_rs_satfinite:
3225 case Intrinsic::nvvm_f32x4_to_e2m1x4_rs_relu_satfinite:
3226 return lowerCvtRSIntrinsics(Op, DAG);
3227 }
3228}
3229
3230// In PTX 64-bit CTLZ and CTPOP are supported, but they return a 32-bit value.
3231// Lower these into a node returning the correct type which is zero-extended
3232// back to the correct size.
3234 SDValue V = Op->getOperand(0);
3235 assert(V.getValueType() == MVT::i64 &&
3236 "Unexpected CTLZ/CTPOP type to legalize");
3237
3238 SDLoc DL(Op);
3239 SDValue CT = DAG.getNode(Op->getOpcode(), DL, MVT::i32, V);
3240 return DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, CT, SDNodeFlags::NonNeg);
3241}
3242
3244 unsigned Opcode, SelectionDAG &DAG) {
3245 assert(A.getValueType() == MVT::i64 && B.getValueType() == MVT::i64);
3246
3247 const auto *AmtConst = dyn_cast<ConstantSDNode>(ShiftAmount);
3248 if (!AmtConst)
3249 return SDValue();
3250 const auto Amt = AmtConst->getZExtValue() & 63;
3251
3252 SDValue UnpackA =
3253 DAG.getNode(NVPTXISD::UNPACK_VECTOR, DL, {MVT::i32, MVT::i32}, A);
3254 SDValue UnpackB =
3255 DAG.getNode(NVPTXISD::UNPACK_VECTOR, DL, {MVT::i32, MVT::i32}, B);
3256
3257 // Arch is Little endiain: 0 = low bits, 1 = high bits
3258 SDValue ALo = UnpackA.getValue(0);
3259 SDValue AHi = UnpackA.getValue(1);
3260 SDValue BLo = UnpackB.getValue(0);
3261 SDValue BHi = UnpackB.getValue(1);
3262
3263 // The bitfeild consists of { AHi : ALo : BHi : BLo }
3264 //
3265 // * FSHL, Amt < 32 - The window will contain { AHi : ALo : BHi }
3266 // * FSHL, Amt >= 32 - The window will contain { ALo : BHi : BLo }
3267 // * FSHR, Amt < 32 - The window will contain { ALo : BHi : BLo }
3268 // * FSHR, Amt >= 32 - The window will contain { AHi : ALo : BHi }
3269 //
3270 // Note that Amt = 0 and Amt = 32 are special cases where 32-bit funnel shifts
3271 // are not needed at all. Amt = 0 is a no-op producing either A or B depending
3272 // on the direction. Amt = 32 can be implemented by a packing and unpacking
3273 // move to select and arrange the 32bit values. For simplicity, these cases
3274 // are not handled here explicitly and instead we rely on DAGCombiner to
3275 // remove the no-op funnel shifts we insert.
3276 auto [High, Mid, Low] = ((Opcode == ISD::FSHL) == (Amt < 32))
3277 ? std::make_tuple(AHi, ALo, BHi)
3278 : std::make_tuple(ALo, BHi, BLo);
3279
3280 SDValue NewAmt = DAG.getConstant(Amt & 31, DL, MVT::i32);
3281 SDValue RHi = DAG.getNode(Opcode, DL, MVT::i32, {High, Mid, NewAmt});
3282 SDValue RLo = DAG.getNode(Opcode, DL, MVT::i32, {Mid, Low, NewAmt});
3283
3284 return DAG.getNode(NVPTXISD::BUILD_VECTOR, DL, MVT::i64, {RLo, RHi});
3285}
3286
3288 return expandFSH64(Op->getOperand(0), Op->getOperand(1), Op->getOperand(2),
3289 SDLoc(Op), Op->getOpcode(), DAG);
3290}
3291
3293 unsigned Opcode = Op->getOpcode() == ISD::ROTL ? ISD::FSHL : ISD::FSHR;
3294 return expandFSH64(Op->getOperand(0), Op->getOperand(0), Op->getOperand(1),
3295 SDLoc(Op), Opcode, DAG);
3296}
3297
3299 // Lower (frem x, y) into (sub x, (mul (ftrunc (div x, y)) y)),
3300 // i.e. "poor man's fmod()". When y is infinite, x is returned. This matches
3301 // the semantics of LLVM's frem.
3302 SDLoc DL(Op);
3303 SDValue X = Op->getOperand(0);
3304 SDValue Y = Op->getOperand(1);
3305 EVT Ty = Op.getValueType();
3306 SDNodeFlags Flags = Op->getFlags();
3307
3308 SDValue Div = DAG.getNode(ISD::FDIV, DL, Ty, X, Y, Flags);
3309 SDValue Trunc = DAG.getNode(ISD::FTRUNC, DL, Ty, Div, Flags);
3310 SDValue Mul = DAG.getNode(ISD::FMUL, DL, Ty, Trunc, Y,
3312 SDValue Sub = DAG.getNode(ISD::FSUB, DL, Ty, X, Mul,
3314
3315 if (Flags.hasNoInfs())
3316 return Sub;
3317
3318 // If Y is infinite, return X
3319 SDValue AbsY = DAG.getNode(ISD::FABS, DL, Ty, Y);
3320 SDValue Inf =
3321 DAG.getConstantFP(APFloat::getInf(Ty.getFltSemantics()), DL, Ty);
3322 SDValue IsInf = DAG.getSetCC(DL, MVT::i1, AbsY, Inf, ISD::SETEQ);
3323 return DAG.getSelect(DL, Ty, IsInf, X, Sub);
3324}
3325
3327 assert(Op.getValueType() == MVT::i1 && "Custom lowering enabled only for i1");
3328
3329 SDValue Cond = Op->getOperand(0);
3330 SDValue TrueVal = Op->getOperand(1);
3331 SDValue FalseVal = Op->getOperand(2);
3332 SDLoc DL(Op);
3333
3334 // If both operands are truncated, we push the select through the truncates.
3335 if (TrueVal.getOpcode() == ISD::TRUNCATE &&
3336 FalseVal.getOpcode() == ISD::TRUNCATE) {
3337 TrueVal = TrueVal.getOperand(0);
3338 FalseVal = FalseVal.getOperand(0);
3339
3340 EVT VT = TrueVal.getSimpleValueType().bitsLE(FalseVal.getSimpleValueType())
3341 ? TrueVal.getValueType()
3342 : FalseVal.getValueType();
3343 TrueVal = DAG.getAnyExtOrTrunc(TrueVal, DL, VT);
3344 FalseVal = DAG.getAnyExtOrTrunc(FalseVal, DL, VT);
3345 SDValue Select = DAG.getSelect(DL, VT, Cond, TrueVal, FalseVal);
3346 return DAG.getNode(ISD::TRUNCATE, DL, MVT::i1, Select);
3347 }
3348
3349 // Otherwise, expand the select into a series of logical operations. These
3350 // often can be folded into other operations either by us or ptxas.
3351 TrueVal = DAG.getFreeze(TrueVal);
3352 FalseVal = DAG.getFreeze(FalseVal);
3353 SDValue And1 = DAG.getNode(ISD::AND, DL, MVT::i1, Cond, TrueVal);
3354 SDValue NotCond = DAG.getNOT(DL, Cond, MVT::i1);
3355 SDValue And2 = DAG.getNode(ISD::AND, DL, MVT::i1, NotCond, FalseVal);
3356 SDValue Or = DAG.getNode(ISD::OR, DL, MVT::i1, And1, And2);
3357 return Or;
3358}
3359
3361 SDNode *N = Op.getNode();
3362
3363 SDValue Chain = N->getOperand(0);
3364 SDValue Val = N->getOperand(1);
3365 SDValue BasePtr = N->getOperand(2);
3366 SDValue Offset = N->getOperand(3);
3367 SDValue Mask = N->getOperand(4);
3368
3369 SDLoc DL(N);
3370 EVT ValVT = Val.getValueType();
3371 MemSDNode *MemSD = cast<MemSDNode>(N);
3372 assert(ValVT.isVector() && "Masked vector store must have vector type");
3373 assert(MemSD->getAlign() >= DAG.getEVTAlign(ValVT) &&
3374 "Unexpected alignment for masked store");
3375
3376 unsigned Opcode = 0;
3377 switch (ValVT.getSimpleVT().SimpleTy) {
3378 default:
3379 llvm_unreachable("Unexpected masked vector store type");
3380 case MVT::v4i64:
3381 case MVT::v4f64: {
3382 Opcode = NVPTXISD::StoreV4;
3383 break;
3384 }
3385 case MVT::v8i32:
3386 case MVT::v8f32: {
3387 Opcode = NVPTXISD::StoreV8;
3388 break;
3389 }
3390 }
3391
3393
3394 // Construct the new SDNode. First operand is the chain.
3395 Ops.push_back(Chain);
3396
3397 // The next N operands are the values to store. Encode the mask into the
3398 // values using the sentinel register 0 to represent a masked-off element.
3399 assert(Mask.getValueType().isVector() &&
3400 Mask.getValueType().getVectorElementType() == MVT::i1 &&
3401 "Mask must be a vector of i1");
3402 assert(Mask.getOpcode() == ISD::BUILD_VECTOR &&
3403 "Mask expected to be a BUILD_VECTOR");
3404 assert(Mask.getValueType().getVectorNumElements() ==
3405 ValVT.getVectorNumElements() &&
3406 "Mask size must be the same as the vector size");
3407 for (auto [I, Op] : enumerate(Mask->ops())) {
3408 // Mask elements must be constants.
3409 if (Op.getNode()->getAsZExtVal() == 0) {
3410 // Append a sentinel register 0 to the Ops vector to represent a masked
3411 // off element, this will be handled in tablegen
3413 ValVT.getVectorElementType()));
3414 } else {
3415 // Extract the element from the vector to store
3416 SDValue ExtVal =
3418 Val, DAG.getIntPtrConstant(I, DL));
3419 Ops.push_back(ExtVal);
3420 }
3421 }
3422
3423 // Next, the pointer operand.
3424 Ops.push_back(BasePtr);
3425
3426 // Finally, the offset operand. We expect this to always be undef, and it will
3427 // be ignored in lowering, but to mirror the handling of the other vector
3428 // store instructions we include it in the new SDNode.
3429 assert(Offset.isUndef() && "Offset operand expected to be undef or poison");
3430 Ops.push_back(Offset);
3431
3432 SDValue NewSt =
3433 DAG.getMemIntrinsicNode(Opcode, DL, DAG.getVTList(MVT::Other), Ops,
3434 MemSD->getMemoryVT(), MemSD->getMemOperand());
3435
3436 return NewSt;
3437}
3438
3439SDValue
3441 switch (Op.getOpcode()) {
3442 case ISD::RETURNADDR:
3443 return SDValue();
3444 case ISD::FRAMEADDR:
3445 return SDValue();
3446 case ISD::ADDRSPACECAST:
3447 return LowerADDRSPACECAST(Op, DAG);
3449 return lowerIntrinsicWChain(Op, DAG);
3451 return lowerIntrinsicWOChain(Op, DAG);
3453 return lowerIntrinsicVoid(Op, DAG);
3454 case ISD::BUILD_VECTOR:
3455 return LowerBUILD_VECTOR(Op, DAG);
3456 case ISD::BITCAST:
3457 return LowerBITCAST(Op, DAG);
3459 return Op;
3461 return LowerEXTRACT_VECTOR_ELT(Op, DAG);
3463 return LowerINSERT_VECTOR_ELT(Op, DAG);
3465 return LowerVECTOR_SHUFFLE(Op, DAG);
3467 return LowerCONCAT_VECTORS(Op, DAG);
3472 return LowerVECREDUCE(Op, DAG);
3473 case ISD::STORE:
3474 return LowerSTORE(Op, DAG);
3475 case ISD::MSTORE: {
3476 assert(STI.has256BitVectorLoadStore(
3477 cast<MemSDNode>(Op.getNode())->getAddressSpace()) &&
3478 "Masked store vector not supported on subtarget.");
3479 return lowerMSTORE(Op, DAG);
3480 }
3481 case ISD::LOAD:
3482 return LowerLOAD(Op, DAG);
3483 case ISD::MLOAD:
3484 return LowerMLOAD(Op, DAG);
3485 case ISD::SHL_PARTS:
3486 return LowerShiftLeftParts(Op, DAG);
3487 case ISD::SRA_PARTS:
3488 case ISD::SRL_PARTS:
3489 return LowerShiftRightParts(Op, DAG);
3490 case ISD::SELECT:
3491 return lowerSELECT(Op, DAG);
3492 case ISD::FROUND:
3493 return LowerFROUND(Op, DAG);
3494 case ISD::FCOPYSIGN:
3495 return LowerFCOPYSIGN(Op, DAG);
3496 case ISD::SINT_TO_FP:
3497 case ISD::UINT_TO_FP:
3498 return LowerINT_TO_FP(Op, DAG);
3499 case ISD::FP_TO_SINT:
3500 case ISD::FP_TO_UINT:
3501 // fptosi/fptoui to i1 truncate toward zero, so the only defined results
3502 // are {0,-1} (signed) and {0,1} (unsigned); every other input results in
3503 // poison. Thus we can simply lower to `x <= -1.0` or `x >= 1.0`.
3504 if (Op.getValueType() == MVT::i1) {
3505 SDLoc DL(Op);
3506 SDValue X = Op.getOperand(0);
3507 bool IsSigned = Op.getOpcode() == ISD::FP_TO_SINT;
3508 return DAG.getSetCC(
3509 DL, MVT::i1, X,
3510 DAG.getConstantFP(IsSigned ? -1.0 : 1.0, DL, X.getValueType()),
3511 IsSigned ? ISD::SETOLE : ISD::SETOGE);
3512 }
3513 return LowerFP_TO_INT(Op, DAG);
3514 case ISD::FP_ROUND:
3515 return LowerFP_ROUND(Op, DAG);
3516 case ISD::FP_EXTEND:
3517 return LowerFP_EXTEND(Op, DAG);
3518 case ISD::VAARG:
3519 return LowerVAARG(Op, DAG);
3520 case ISD::VASTART:
3521 return LowerVASTART(Op, DAG);
3522 case ISD::FSHL:
3523 case ISD::FSHR:
3524 return lowerFSH(Op, DAG);
3525 case ISD::ROTL:
3526 case ISD::ROTR:
3527 return lowerROT(Op, DAG);
3528 case ISD::ABS:
3530 case ISD::SMIN:
3531 case ISD::SMAX:
3532 case ISD::UMIN:
3533 case ISD::UMAX:
3534 case ISD::ADD:
3535 case ISD::SUB:
3536 case ISD::MUL:
3537 case ISD::SHL:
3538 case ISD::SREM:
3539 case ISD::UREM:
3540 return LowerVectorArith(Op, DAG);
3542 return LowerDYNAMIC_STACKALLOC(Op, DAG);
3543 case ISD::STACKRESTORE:
3544 return LowerSTACKRESTORE(Op, DAG);
3545 case ISD::STACKSAVE:
3546 return LowerSTACKSAVE(Op, DAG);
3547 case ISD::CopyToReg:
3548 return LowerCopyToReg_128(Op, DAG);
3549 case ISD::FADD:
3550 case ISD::FSUB:
3551 case ISD::FMUL:
3552 // Used only for bf16 on SM80, where we select fma for non-ftz operation
3553 return PromoteBinOpIfF32FTZ(Op, DAG);
3554 case ISD::CTPOP:
3555 case ISD::CTLZ:
3556 return lowerCTLZCTPOP(Op, DAG);
3557 case ISD::FREM:
3558 return lowerFREM(Op, DAG);
3559 case ISD::BSWAP:
3560 return lowerBSWAP(Op, DAG);
3561 default:
3562 llvm_unreachable("Custom lowering not defined for operation");
3563 }
3564}
3565
3566// This will prevent AsmPrinter from trying to print the jump tables itself.
3570
3571SDValue NVPTXTargetLowering::LowerADDRSPACECAST(SDValue Op,
3572 SelectionDAG &DAG) const {
3574 unsigned SrcAS = N->getSrcAddressSpace();
3575 unsigned DestAS = N->getDestAddressSpace();
3576 if (SrcAS != llvm::ADDRESS_SPACE_GENERIC &&
3577 DestAS != llvm::ADDRESS_SPACE_GENERIC) {
3578 // Shared and SharedCluster can be converted to each other through generic
3579 // space
3580 if ((SrcAS == llvm::ADDRESS_SPACE_SHARED &&
3583 DestAS == llvm::ADDRESS_SPACE_SHARED)) {
3584 SDLoc DL(Op.getNode());
3585 const MVT GenerictVT =
3587 SDValue GenericConversion = DAG.getAddrSpaceCast(
3588 DL, GenerictVT, Op.getOperand(0), SrcAS, ADDRESS_SPACE_GENERIC);
3589 SDValue SharedClusterConversion =
3590 DAG.getAddrSpaceCast(DL, Op.getValueType(), GenericConversion,
3591 ADDRESS_SPACE_GENERIC, DestAS);
3592 return SharedClusterConversion;
3593 }
3594
3595 return DAG.getUNDEF(Op.getValueType());
3596 }
3597
3598 return Op;
3599}
3600
3601// This function is almost a copy of SelectionDAG::expandVAArg().
3602// The only diff is that this one produces loads from local address space.
3603SDValue NVPTXTargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
3604 const TargetLowering *TLI = STI.getTargetLowering();
3605 SDLoc DL(Op);
3606
3607 SDNode *Node = Op.getNode();
3608 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3609 EVT VT = Node->getValueType(0);
3610 auto *Ty = VT.getTypeForEVT(*DAG.getContext());
3611 SDValue Tmp1 = Node->getOperand(0);
3612 SDValue Tmp2 = Node->getOperand(1);
3613 const MaybeAlign MA(Node->getConstantOperandVal(3));
3614
3615 SDValue VAListLoad = DAG.getLoad(TLI->getPointerTy(DAG.getDataLayout()), DL,
3616 Tmp1, Tmp2, MachinePointerInfo(V));
3617 SDValue VAList = VAListLoad;
3618
3619 if (MA && *MA > TLI->getMinStackArgumentAlignment()) {
3620 VAList = DAG.getNode(
3621 ISD::ADD, DL, VAList.getValueType(), VAList,
3622 DAG.getConstant(MA->value() - 1, DL, VAList.getValueType()));
3623
3624 VAList = DAG.getNode(ISD::AND, DL, VAList.getValueType(), VAList,
3625 DAG.getSignedConstant(-(int64_t)MA->value(), DL,
3626 VAList.getValueType()));
3627 }
3628
3629 // Increment the pointer, VAList, to the next vaarg
3630 Tmp1 = DAG.getNode(ISD::ADD, DL, VAList.getValueType(), VAList,
3632 DL, VAList.getValueType()));
3633
3634 // Store the incremented VAList to the legalized pointer
3635 Tmp1 = DAG.getStore(VAListLoad.getValue(1), DL, Tmp1, Tmp2,
3636 MachinePointerInfo(V));
3637
3638 const Value *SrcV = Constant::getNullValue(
3640
3641 // Load the actual argument out of the pointer VAList
3642 return DAG.getLoad(VT, DL, Tmp1, VAList, MachinePointerInfo(SrcV));
3643}
3644
3645SDValue NVPTXTargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
3646 const TargetLowering *TLI = STI.getTargetLowering();
3647 SDLoc DL(Op);
3648 EVT PtrVT = TLI->getPointerTy(DAG.getDataLayout());
3649
3650 // Store the address of unsized array <function>_vararg[] in the ap object.
3651 SDValue VAReg = getParamSymbolNode(DAG, /* vararg */ -1, PtrVT);
3652
3653 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
3654 return DAG.getStore(Op.getOperand(0), DL, VAReg, Op.getOperand(1),
3655 MachinePointerInfo(SV));
3656}
3657
3658static std::pair<MemSDNode *, uint32_t>
3660 const NVPTXSubtarget &STI) {
3661 SDValue Chain = N->getOperand(0);
3662 SDValue BasePtr = N->getOperand(1);
3663 SDValue Mask = N->getOperand(3);
3664 [[maybe_unused]] SDValue Passthru = N->getOperand(4);
3665
3666 SDLoc DL(N);
3667 EVT ResVT = N->getValueType(0);
3668 assert(ResVT.isVector() && "Masked vector load must have vector type");
3669 // While we only expect poison passthru vectors as an input to the backend,
3670 // when the legalization framework splits a poison vector in half, it creates
3671 // two undef vectors, so we can technically expect those too.
3672 assert((Passthru.getOpcode() == ISD::POISON ||
3673 Passthru.getOpcode() == ISD::UNDEF) &&
3674 "Passthru operand expected to be poison or undef");
3675
3676 // Extract the mask and convert it to a uint32_t representing the used bytes
3677 // of the entire vector load
3678 uint32_t UsedBytesMask = 0;
3679 uint32_t ElementSizeInBits = ResVT.getVectorElementType().getSizeInBits();
3680 assert(ElementSizeInBits % 8 == 0 && "Unexpected element size");
3681 uint32_t ElementSizeInBytes = ElementSizeInBits / 8;
3682 uint32_t ElementMask = (1u << ElementSizeInBytes) - 1u;
3683
3684 for (SDValue Op : reverse(Mask->ops())) {
3685 // We technically only want to do this shift for every
3686 // iteration *but* the first, but in the first iteration UsedBytesMask is 0,
3687 // so this shift is a no-op.
3688 UsedBytesMask <<= ElementSizeInBytes;
3689
3690 // Mask elements must be constants.
3691 if (Op->getAsZExtVal() != 0)
3692 UsedBytesMask |= ElementMask;
3693 }
3694
3695 assert(UsedBytesMask != 0 && UsedBytesMask != UINT32_MAX &&
3696 "Unexpected masked load with elements masked all on or all off");
3697
3698 // Create a new load sd node to be handled normally by ReplaceLoadVector.
3699 MemSDNode *NewLD = cast<MemSDNode>(
3700 DAG.getLoad(ResVT, DL, Chain, BasePtr, N->getMemOperand()).getNode());
3701
3702 // If our subtarget does not support the used bytes mask pragma, "drop" the
3703 // mask by setting it to UINT32_MAX
3704 if (!STI.hasUsedBytesMaskPragma())
3705 UsedBytesMask = UINT32_MAX;
3706
3707 return {NewLD, UsedBytesMask};
3708}
3709
3710/// replaceLoadVector - Convert vector loads into multi-output scalar loads.
3711static std::optional<std::pair<SDValue, SDValue>>
3714 const EVT ResVT = LD->getValueType(0);
3715 const EVT MemVT = LD->getMemoryVT();
3716
3717 // If we're doing sign/zero extension as part of the load, avoid lowering to
3718 // a LoadV node. TODO: consider relaxing this restriction.
3719 if (ResVT != MemVT)
3720 return std::nullopt;
3721
3722 const auto NumEltsAndEltVT =
3723 getVectorLoweringShape(ResVT, STI, LD->getAddressSpace());
3724 if (!NumEltsAndEltVT)
3725 return std::nullopt;
3726 const auto [NumElts, EltVT] = NumEltsAndEltVT.value();
3727
3728 Align Alignment = LD->getAlign();
3729 const auto &TD = DAG.getDataLayout();
3730 Align PrefAlign = TD.getPrefTypeAlign(MemVT.getTypeForEVT(*DAG.getContext()));
3731 if (Alignment < PrefAlign) {
3732 // This load is not sufficiently aligned, so bail out and let this vector
3733 // load be scalarized. Note that we may still be able to emit smaller
3734 // vector loads. For example, if we are loading a <4 x float> with an
3735 // alignment of 8, this check will fail but the legalizer will try again
3736 // with 2 x <2 x float>, which will succeed with an alignment of 8.
3737 return std::nullopt;
3738 }
3739
3740 // If we have a masked load, convert it to a normal load now
3741 std::optional<uint32_t> UsedBytesMask = std::nullopt;
3742 if (LD->getOpcode() == ISD::MLOAD)
3743 std::tie(LD, UsedBytesMask) =
3745
3746 // Since LoadV2 is a target node, we cannot rely on DAG type legalization.
3747 // Therefore, we must ensure the type is legal. For i1 and i8, we set the
3748 // loaded type to i16 and propagate the "real" type as the memory type.
3749 const MVT LoadEltVT = (EltVT.getSizeInBits() < 16) ? MVT::i16 : EltVT;
3750
3751 unsigned Opcode;
3752 switch (NumElts) {
3753 default:
3754 return std::nullopt;
3755 case 2:
3756 Opcode = NVPTXISD::LoadV2;
3757 break;
3758 case 4:
3759 Opcode = NVPTXISD::LoadV4;
3760 break;
3761 case 8:
3762 Opcode = NVPTXISD::LoadV8;
3763 break;
3764 }
3765 auto ListVTs = SmallVector<EVT, 9>(NumElts, LoadEltVT);
3766 ListVTs.push_back(MVT::Other);
3767 SDVTList LdResVTs = DAG.getVTList(ListVTs);
3768
3769 SDLoc DL(LD);
3770
3771 // Copy regular operands
3772 SmallVector<SDValue, 8> OtherOps(LD->ops());
3773
3774 OtherOps.push_back(
3775 DAG.getConstant(UsedBytesMask.value_or(UINT32_MAX), DL, MVT::i32));
3776
3777 // The select routine does not have access to the LoadSDNode instance, so
3778 // pass along the extension information
3779 OtherOps.push_back(
3780 DAG.getIntPtrConstant(cast<LoadSDNode>(LD)->getExtensionType(), DL));
3781
3782 SDValue NewLD = DAG.getMemIntrinsicNode(Opcode, DL, LdResVTs, OtherOps, MemVT,
3783 LD->getMemOperand());
3784
3785 SmallVector<SDValue> ScalarRes;
3786 if (EltVT.isVector()) {
3788 assert(NumElts * EltVT.getVectorNumElements() ==
3789 ResVT.getVectorNumElements());
3790 // Generate EXTRACT_VECTOR_ELTs to split v2[i,f,bf]16/v4i8 subvectors back
3791 // into individual elements.
3792 for (const unsigned I : llvm::seq(NumElts)) {
3793 SDValue SubVector = NewLD.getValue(I);
3794 DAG.ExtractVectorElements(SubVector, ScalarRes);
3795 }
3796 } else {
3797 for (const unsigned I : llvm::seq(NumElts)) {
3798 SDValue Res = NewLD.getValue(I);
3799 if (LoadEltVT != EltVT)
3800 Res = DAG.getNode(ISD::TRUNCATE, DL, EltVT, Res);
3801 ScalarRes.push_back(Res);
3802 }
3803 }
3804
3805 SDValue LoadChain = NewLD.getValue(NumElts);
3806
3807 const MVT BuildVecVT =
3808 MVT::getVectorVT(EltVT.getScalarType(), ScalarRes.size());
3809 SDValue BuildVec = DAG.getBuildVector(BuildVecVT, DL, ScalarRes);
3810 SDValue LoadValue = DAG.getBitcast(ResVT, BuildVec);
3811
3812 return {{LoadValue, LoadChain}};
3813}
3814
3817 const NVPTXSubtarget &STI) {
3818 if (auto Res = replaceLoadVector(N, DAG, STI))
3819 Results.append({Res->first, Res->second});
3820}
3821
3823 const NVPTXSubtarget &STI) {
3824 if (auto Res = replaceLoadVector(N, DAG, STI))
3825 return DAG.getMergeValues({Res->first, Res->second}, SDLoc(N));
3826 return SDValue();
3827}
3828
3829// v = ld i1* addr
3830// =>
3831// v1 = ld i8* addr (-> i16)
3832// v = trunc i16 to i1
3834 SDLoc dl(LD);
3835 assert(LD->getExtensionType() == ISD::NON_EXTLOAD);
3836 assert(LD->getValueType(0) == MVT::i1 && "Custom lowering for i1 load only");
3837 SDValue newLD = DAG.getExtLoad(ISD::ZEXTLOAD, dl, MVT::i16, LD->getChain(),
3838 LD->getBasePtr(), LD->getPointerInfo(),
3839 MVT::i8, LD->getAlign(),
3840 LD->getMemOperand()->getFlags());
3841 SDValue result = DAG.getNode(ISD::TRUNCATE, dl, MVT::i1, newLD);
3842 // The legalizer (the caller) is expecting two values from the legalized
3843 // load, so we build a MergeValues node for it. See ExpandUnalignedLoad()
3844 // in LegalizeDAG.cpp which also uses MergeValues.
3845 return DAG.getMergeValues({result, LD->getChain()}, dl);
3846}
3847
3848SDValue NVPTXTargetLowering::LowerLOAD(SDValue Op, SelectionDAG &DAG) const {
3849 LoadSDNode *LD = cast<LoadSDNode>(Op);
3850
3851 if (Op.getValueType() == MVT::i1)
3852 return lowerLOADi1(LD, DAG);
3853
3854 // To improve CodeGen we'll legalize any-extend loads to zext loads. This is
3855 // how they'll be lowered in ISel anyway, and by doing this a little earlier
3856 // we allow for more DAG combine opportunities.
3857 if (LD->getExtensionType() == ISD::EXTLOAD) {
3858 assert(LD->getValueType(0).isInteger() && LD->getMemoryVT().isInteger() &&
3859 "Unexpected fpext-load");
3860 return DAG.getExtLoad(ISD::ZEXTLOAD, SDLoc(Op), Op.getValueType(),
3861 LD->getChain(), LD->getBasePtr(), LD->getMemoryVT(),
3862 LD->getMemOperand());
3863 }
3864
3865 llvm_unreachable("Unexpected custom lowering for load");
3866}
3867
3868SDValue NVPTXTargetLowering::LowerMLOAD(SDValue Op, SelectionDAG &DAG) const {
3869 // v2f16/v2bf16/v2i16/v4i8 are legal, so we can't rely on legalizer to handle
3870 // masked loads of these types and have to handle them here.
3871 // v2f32 also needs to be handled here if the subtarget has f32x2
3872 // instructions, making it legal.
3873 //
3874 // Note: misaligned masked loads should never reach this point
3875 // because the override of isLegalMaskedLoad in NVPTXTargetTransformInfo.cpp
3876 // will validate alignment. Therefore, we do not need to special case handle
3877 // them here.
3878 EVT VT = Op.getValueType();
3879 if (NVPTX::isPackedVectorTy(VT)) {
3881 cast<MemSDNode>(Op.getNode()), DAG, STI);
3882 MemSDNode *LD = std::get<0>(Result);
3883 uint32_t UsedBytesMask = std::get<1>(Result);
3884
3885 SDLoc DL(LD);
3886
3887 // Copy regular operands
3888 SmallVector<SDValue, 8> OtherOps(LD->ops());
3889
3890 OtherOps.push_back(DAG.getConstant(UsedBytesMask, DL, MVT::i32));
3891
3892 // We currently are not lowering extending loads, but pass the extension
3893 // type anyway as later handling expects it.
3894 OtherOps.push_back(
3895 DAG.getIntPtrConstant(cast<LoadSDNode>(LD)->getExtensionType(), DL));
3896 SDValue NewLD =
3897 DAG.getMemIntrinsicNode(NVPTXISD::MLoad, DL, LD->getVTList(), OtherOps,
3898 LD->getMemoryVT(), LD->getMemOperand());
3899 return NewLD;
3900 }
3901 return SDValue();
3902}
3903
3905 const NVPTXSubtarget &STI) {
3906 MemSDNode *N = cast<MemSDNode>(Op.getNode());
3907 SDValue Val = N->getOperand(1);
3908 SDLoc DL(N);
3909 const EVT ValVT = Val.getValueType();
3910 const EVT MemVT = N->getMemoryVT();
3911
3912 // If we're truncating as part of the store, avoid lowering to a StoreV node.
3913 // TODO: consider relaxing this restriction.
3914 if (ValVT != MemVT)
3915 return SDValue();
3916
3917 const auto NumEltsAndEltVT =
3918 getVectorLoweringShape(ValVT, STI, N->getAddressSpace());
3919 if (!NumEltsAndEltVT)
3920 return SDValue();
3921 const auto [NumElts, EltVT] = NumEltsAndEltVT.value();
3922
3923 const DataLayout &TD = DAG.getDataLayout();
3924
3925 Align Alignment = N->getAlign();
3926 Align PrefAlign = TD.getPrefTypeAlign(ValVT.getTypeForEVT(*DAG.getContext()));
3927 if (Alignment < PrefAlign) {
3928 // This store is not sufficiently aligned, so bail out and let this vector
3929 // store be scalarized. Note that we may still be able to emit smaller
3930 // vector stores. For example, if we are storing a <4 x float> with an
3931 // alignment of 8, this check will fail but the legalizer will try again
3932 // with 2 x <2 x float>, which will succeed with an alignment of 8.
3933 return SDValue();
3934 }
3935
3936 unsigned Opcode;
3937 switch (NumElts) {
3938 default:
3939 return SDValue();
3940 case 2:
3941 Opcode = NVPTXISD::StoreV2;
3942 break;
3943 case 4:
3944 Opcode = NVPTXISD::StoreV4;
3945 break;
3946 case 8:
3947 Opcode = NVPTXISD::StoreV8;
3948 break;
3949 }
3950
3952
3953 // First is the chain
3954 Ops.push_back(N->getOperand(0));
3955
3956 // Then the split values
3957 if (EltVT.isVector()) {
3959 assert(NumElts * EltVT.getVectorNumElements() ==
3960 ValVT.getVectorNumElements());
3961 // Combine individual elements into v2[i,f,bf]16/v4i8 subvectors to be
3962 // stored as b32s
3963 const unsigned NumEltsPerSubVector = EltVT.getVectorNumElements();
3964 for (const unsigned I : llvm::seq(NumElts)) {
3965 SmallVector<SDValue, 4> SubVectorElts;
3966 DAG.ExtractVectorElements(Val, SubVectorElts, I * NumEltsPerSubVector,
3967 NumEltsPerSubVector);
3968 Ops.push_back(DAG.getBuildVector(EltVT, DL, SubVectorElts));
3969 }
3970 } else {
3971 SDValue V = DAG.getBitcast(MVT::getVectorVT(EltVT, NumElts), Val);
3972 for (const unsigned I : llvm::seq(NumElts)) {
3973 SDValue ExtVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, V,
3974 DAG.getIntPtrConstant(I, DL));
3975
3976 // Since StoreV2 is a target node, we cannot rely on DAG type
3977 // legalization. Therefore, we must ensure the type is legal. For i1 and
3978 // i8, we set the stored type to i16 and propagate the "real" type as the
3979 // memory type.
3980 if (EltVT.getSizeInBits() < 16)
3981 ExtVal = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i16, ExtVal);
3982 Ops.push_back(ExtVal);
3983 }
3984 }
3985
3986 // Then any remaining arguments
3987 Ops.append(N->op_begin() + 2, N->op_end());
3988
3989 SDValue NewSt =
3990 DAG.getMemIntrinsicNode(Opcode, DL, DAG.getVTList(MVT::Other), Ops,
3991 N->getMemoryVT(), N->getMemOperand());
3992
3993 // return DCI.CombineTo(N, NewSt, true);
3994 return NewSt;
3995}
3996
3997SDValue NVPTXTargetLowering::LowerSTORE(SDValue Op, SelectionDAG &DAG) const {
3998 StoreSDNode *Store = cast<StoreSDNode>(Op);
3999 EVT VT = Store->getMemoryVT();
4000
4001 if (VT == MVT::i1)
4002 return LowerSTOREi1(Op, DAG);
4003
4004 // Lower store of any other vector type, including v2f32 as we want to break
4005 // it apart since this is not a widely-supported type.
4006 return lowerSTOREVector(Op, DAG, STI);
4007}
4008
4009// st i1 v, addr
4010// =>
4011// v1 = zxt v to i16
4012// st.u8 i16, addr
4013SDValue NVPTXTargetLowering::LowerSTOREi1(SDValue Op, SelectionDAG &DAG) const {
4014 SDNode *Node = Op.getNode();
4015 SDLoc dl(Node);
4016 StoreSDNode *ST = cast<StoreSDNode>(Node);
4017 SDValue Tmp1 = ST->getChain();
4018 SDValue Tmp2 = ST->getBasePtr();
4019 SDValue Tmp3 = ST->getValue();
4020 assert(Tmp3.getValueType() == MVT::i1 && "Custom lowering for i1 store only");
4021 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Tmp3);
4022 SDValue Result =
4023 DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getPointerInfo(), MVT::i8,
4024 ST->getAlign(), ST->getMemOperand()->getFlags());
4025 return Result;
4026}
4027
4028SDValue NVPTXTargetLowering::LowerCopyToReg_128(SDValue Op,
4029 SelectionDAG &DAG) const {
4030 // Change the CopyToReg to take in two 64-bit operands instead of a 128-bit
4031 // operand so that it can pass the legalization.
4032
4033 assert(Op.getOperand(1).getValueType() == MVT::i128 &&
4034 "Custom lowering for 128-bit CopyToReg only");
4035
4036 SDNode *Node = Op.getNode();
4037 SDLoc DL(Node);
4038
4039 SDValue Cast = DAG.getBitcast(MVT::v2i64, Op->getOperand(2));
4040 SDValue Lo = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
4041 DAG.getIntPtrConstant(0, DL));
4042 SDValue Hi = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i64, Cast,
4043 DAG.getIntPtrConstant(1, DL));
4044
4046 SmallVector<EVT, 3> ResultsType(Node->values());
4047
4048 NewOps[0] = Op->getOperand(0); // Chain
4049 NewOps[1] = Op->getOperand(1); // Dst Reg
4050 NewOps[2] = Lo; // Lower 64-bit
4051 NewOps[3] = Hi; // Higher 64-bit
4052 if (Op.getNumOperands() == 4)
4053 NewOps[4] = Op->getOperand(3); // Glue if exists
4054
4055 return DAG.getNode(ISD::CopyToReg, DL, ResultsType, NewOps);
4056}
4057
4058unsigned NVPTXTargetLowering::getNumRegisters(
4059 LLVMContext &Context, EVT VT,
4060 std::optional<MVT> RegisterVT = std::nullopt) const {
4061 if (VT == MVT::i128 && RegisterVT == MVT::i128)
4062 return 1;
4063 return TargetLoweringBase::getNumRegisters(Context, VT, RegisterVT);
4064}
4065
4066bool NVPTXTargetLowering::splitValueIntoRegisterParts(
4067 SelectionDAG &DAG, const SDLoc &DL, SDValue Val, SDValue *Parts,
4068 unsigned NumParts, MVT PartVT, std::optional<CallingConv::ID> CC) const {
4069 if (Val.getValueType() == MVT::i128 && NumParts == 1) {
4070 Parts[0] = Val;
4071 return true;
4072 }
4073 return false;
4074}
4075
4076SDValue NVPTXTargetLowering::getParamSymbolNode(SelectionDAG &DAG, int I,
4077 EVT T) const {
4078 const MachineFunction &MF = DAG.getMachineFunction();
4079 return getSymbolNode(
4080 DAG, getParamSymbol(MF.getContext(), &MF.getFunction(), I), T);
4081}
4082
4083SDValue NVPTXTargetLowering::getCallParamSymbolNode(SelectionDAG &DAG, int I,
4084 EVT T) const {
4085 return getSymbolNode(DAG, "param" + Twine(I), T);
4086}
4087
4089 SDValue Chain, CallingConv::ID CallConv, bool isVarArg,
4090 const SmallVectorImpl<ISD::InputArg> &Ins, const SDLoc &dl,
4091 SelectionDAG &DAG, SmallVectorImpl<SDValue> &InVals) const {
4092 const DataLayout &DL = DAG.getDataLayout();
4093 LLVMContext &Ctx = *DAG.getContext();
4094
4095 const Function &F = DAG.getMachineFunction().getFunction();
4096 const bool IsKernel = isKernelFunction(F);
4097
4098 const MVT PtrVT = getPointerTy(DL, IsKernel ? ADDRESS_SPACE_ENTRY_PARAM
4100
4101 SDValue Root = DAG.getRoot();
4102 SmallVector<SDValue, 16> OutChains;
4103
4104 // argTypes.size() (or theArgs.size()) and Ins.size() need not match.
4105 // Ins.size() will be larger
4106 // * if there is an aggregate argument with multiple fields (each field
4107 // showing up separately in Ins)
4108 // * if there is a vector argument with more than typical vector-length
4109 // elements (generally if more than 4) where each vector element is
4110 // individually present in Ins.
4111 // So a different index should be used for indexing into Ins.
4112 // See similar issue in LowerCall.
4113
4114 auto AllIns = ArrayRef(Ins);
4115 const auto NonEmptyArgs = make_filter_range(
4116 F.args(), [](const Argument &A) { return !A.getType()->isEmptyTy(); });
4117 for (const auto &[ParamI, Arg] : enumerate(NonEmptyArgs)) {
4118 const unsigned ArgNo = Arg.getArgNo();
4119 const auto ArgIns =
4120 AllIns.take_while([&](auto I) { return I.OrigArgIndex == ArgNo; });
4121 AllIns = AllIns.drop_front(ArgIns.size());
4122
4123 Type *Ty = Arg.getType();
4124 assert(!ArgIns.empty() &&
4125 "Non-empty argument produced no parameter values");
4126
4127 if (Arg.use_empty()) {
4128 // argument is dead
4129 for (const auto &In : ArgIns) {
4130 assert(!In.Used && "Arg.use_empty() is true but Arg is used?");
4131 InVals.push_back(DAG.getUNDEF(In.VT));
4132 }
4133 continue;
4134 }
4135
4136 SDValue ArgSymbol = getParamSymbolNode(DAG, ParamI, PtrVT);
4137
4138 // In the following cases, assign a node order of "i+1"
4139 // to newly created nodes. The SDNodes for params have to
4140 // appear in the same order as their order of appearance
4141 // in the original function. "i+1" holds that order.
4142 if (Arg.hasByValAttr()) {
4143 // Param has ByVal attribute
4144 // Return MoveParam(param symbol).
4145 // Ideally, the param symbol can be returned directly,
4146 // but when SDNode builder decides to use it in a CopyToReg(),
4147 // machine instruction fails because TargetExternalSymbol
4148 // (not lowered) is target dependent, and CopyToReg assumes
4149 // the source is lowered.
4150 assert(ArgIns.size() == 1 && "ByVal argument must be a pointer");
4151 const auto &ByvalIn = ArgIns[0];
4152 assert(getValueType(DL, Ty) == ByvalIn.VT &&
4153 "Ins type did not match function type");
4154
4155 SDValue P;
4156 if (IsKernel) {
4157 assert(Ty->getPointerAddressSpace() == ADDRESS_SPACE_ENTRY_PARAM &&
4158 "Kernel ByVal argument must be lowered to the param address "
4159 "space by NVPTXLowerArgs");
4160 P = ArgSymbol;
4161 P.getNode()->setIROrder(Arg.getArgNo() + 1);
4162 } else {
4163 P = DAG.getNode(NVPTXISD::MoveParam, dl, ArgSymbol.getValueType(),
4164 ArgSymbol);
4165 P.getNode()->setIROrder(Arg.getArgNo() + 1);
4166 P = DAG.getAddrSpaceCast(dl, ByvalIn.VT, P, ADDRESS_SPACE_LOCAL,
4168 }
4169 InVals.push_back(P);
4170 } else {
4173 ComputePTXValueVTs(*this, DL, Ctx, CallConv, Ty, VTs, Offsets);
4174 assert(VTs.size() == ArgIns.size() && "Size mismatch");
4175 assert(VTs.size() == Offsets.size() && "Size mismatch");
4176
4177 const Align ArgAlign = getPTXParamAlign(
4178 &F, Ty, Arg.getArgNo() + AttributeList::FirstArgIndex, DL);
4179
4180 unsigned I = 0;
4181 const auto VI = VectorizePTXValueVTs(VTs, Offsets, ArgAlign);
4182 for (const unsigned NumElts : VI) {
4183 // i1 is loaded/stored as i8
4184 const EVT LoadVT = VTs[I] == MVT::i1 ? MVT::i8 : VTs[I];
4185 const EVT VecVT = getVectorizedVT(LoadVT, NumElts, Ctx);
4186
4187 SDValue VecAddr = DAG.getObjectPtrOffset(
4188 dl, ArgSymbol, TypeSize::getFixed(Offsets[I]));
4189
4190 const Align PartAlign = commonAlignment(ArgAlign, Offsets[I]);
4191 const unsigned AS = IsKernel ? NVPTX::AddressSpace::EntryParam
4193 SDValue P = DAG.getLoad(VecVT, dl, Root, VecAddr,
4194 MachinePointerInfo(AS), PartAlign,
4197 P.getNode()->setIROrder(Arg.getArgNo() + 1);
4198 for (const unsigned J : llvm::seq(NumElts)) {
4199 SDValue Elt = getExtractVectorizedValue(P, J, LoadVT, dl, DAG);
4200
4201 Elt = correctParamType(Elt, ArgIns[I + J].VT, ArgIns[I + J].Flags,
4202 DAG, dl);
4203 InVals.push_back(Elt);
4204 }
4205 I += NumElts;
4206 }
4207 }
4208 }
4209
4210 if (!OutChains.empty())
4211 DAG.setRoot(DAG.getTokenFactor(dl, OutChains));
4212
4213 return Chain;
4214}
4215
4216SDValue
4218 bool isVarArg,
4220 const SmallVectorImpl<SDValue> &OutVals,
4221 const SDLoc &dl, SelectionDAG &DAG) const {
4222 const Function &F = DAG.getMachineFunction().getFunction();
4223 Type *RetTy = F.getReturnType();
4224
4225 if (RetTy->isVoidTy()) {
4226 assert(OutVals.empty() && Outs.empty() && "Return value expected for void");
4227 return DAG.getNode(NVPTXISD::RET_GLUE, dl, MVT::Other, Chain);
4228 }
4229
4230 const DataLayout &DL = DAG.getDataLayout();
4231 LLVMContext &Ctx = *DAG.getContext();
4232
4233 const SDValue RetSymbol = getSymbolNode(DAG, "func_retval0", MVT::i32);
4234 const auto RetAlign =
4235 getPTXParamAlign(&F, RetTy, AttributeList::ReturnIndex, DL);
4236
4237 // PTX Interoperability Guide 3.3(A): [Integer] Values shorter than
4238 // 32-bits are sign extended or zero extended, depending on whether
4239 // they are signed or unsigned types.
4240 const bool ExtendIntegerRetVal =
4241 RetTy->isIntegerTy() && DL.getTypeAllocSizeInBits(RetTy) < 32;
4242
4245 ComputePTXValueVTs(*this, DL, Ctx, CallConv, RetTy, VTs, Offsets);
4246 assert(VTs.size() == OutVals.size() && "Bad return value decomposition");
4247
4248 const auto GetRetVal = [&](unsigned I) -> SDValue {
4249 SDValue RetVal = OutVals[I];
4251 RetVal.getValueType() &&
4252 "OutVal type should always be legal");
4253
4254 const EVT VTI = promoteScalarIntegerPTX(VTs[I]);
4255 const EVT StoreVT =
4256 ExtendIntegerRetVal ? MVT::i32 : (VTI == MVT::i1 ? MVT::i8 : VTI);
4257 return correctParamType(RetVal, StoreVT, Outs[I].Flags, DAG, dl);
4258 };
4259
4260 unsigned I = 0;
4261 const auto VI = VectorizePTXValueVTs(VTs, Offsets, RetAlign);
4262 for (const unsigned NumElts : VI) {
4263 const MaybeAlign CurrentAlign = ExtendIntegerRetVal
4264 ? MaybeAlign(std::nullopt)
4265 : commonAlignment(RetAlign, Offsets[I]);
4266
4268 NumElts, dl, DAG, [&](unsigned K) { return GetRetVal(I + K); });
4269
4270 SDValue Ptr =
4271 DAG.getObjectPtrOffset(dl, RetSymbol, TypeSize::getFixed(Offsets[I]));
4272
4273 Chain = DAG.getStore(Chain, dl, Val, Ptr,
4275 CurrentAlign);
4276
4277 I += NumElts;
4278 }
4279
4280 return DAG.getNode(NVPTXISD::RET_GLUE, dl, MVT::Other, Chain);
4281}
4282
4284 SDValue Op, StringRef Constraint, std::vector<SDValue> &Ops,
4285 SelectionDAG &DAG) const {
4286 if (Constraint.size() > 1)
4287 return;
4289}
4290
4291// llvm.ptx.memcpy.const and llvm.ptx.memmove.const need to be modeled as
4292// TgtMemIntrinsic
4293// because we need the information that is only available in the "Value" type
4294// of destination
4295// pointer. In particular, the address space information.
4298 MachineFunction &MF, unsigned Intrinsic) const {
4299 IntrinsicInfo Info;
4300 switch (Intrinsic) {
4301 default:
4302 return;
4303 case Intrinsic::nvvm_match_all_sync_i32p:
4304 case Intrinsic::nvvm_match_all_sync_i64p:
4305 Info.opc = ISD::INTRINSIC_W_CHAIN;
4306 // memVT is bogus. These intrinsics have IntrInaccessibleMemOnly attribute
4307 // in order to model data exchange with other threads, but perform no real
4308 // memory accesses.
4309 Info.memVT = MVT::i1;
4310
4311 // Our result depends on both our and other thread's arguments.
4313 Infos.push_back(Info);
4314 return;
4315 case Intrinsic::nvvm_wmma_m16n16k16_load_a_f16_col:
4316 case Intrinsic::nvvm_wmma_m16n16k16_load_a_f16_row:
4317 case Intrinsic::nvvm_wmma_m16n16k16_load_a_f16_col_stride:
4318 case Intrinsic::nvvm_wmma_m16n16k16_load_a_f16_row_stride:
4319 case Intrinsic::nvvm_wmma_m16n16k16_load_b_f16_col:
4320 case Intrinsic::nvvm_wmma_m16n16k16_load_b_f16_row:
4321 case Intrinsic::nvvm_wmma_m16n16k16_load_b_f16_col_stride:
4322 case Intrinsic::nvvm_wmma_m16n16k16_load_b_f16_row_stride:
4323 case Intrinsic::nvvm_wmma_m32n8k16_load_a_f16_col:
4324 case Intrinsic::nvvm_wmma_m32n8k16_load_a_f16_row:
4325 case Intrinsic::nvvm_wmma_m32n8k16_load_a_f16_col_stride:
4326 case Intrinsic::nvvm_wmma_m32n8k16_load_a_f16_row_stride:
4327 case Intrinsic::nvvm_wmma_m32n8k16_load_b_f16_col:
4328 case Intrinsic::nvvm_wmma_m32n8k16_load_b_f16_row:
4329 case Intrinsic::nvvm_wmma_m32n8k16_load_b_f16_col_stride:
4330 case Intrinsic::nvvm_wmma_m32n8k16_load_b_f16_row_stride:
4331 case Intrinsic::nvvm_wmma_m8n32k16_load_a_f16_col:
4332 case Intrinsic::nvvm_wmma_m8n32k16_load_a_f16_row:
4333 case Intrinsic::nvvm_wmma_m8n32k16_load_a_f16_col_stride:
4334 case Intrinsic::nvvm_wmma_m8n32k16_load_a_f16_row_stride:
4335 case Intrinsic::nvvm_wmma_m8n32k16_load_b_f16_col:
4336 case Intrinsic::nvvm_wmma_m8n32k16_load_b_f16_row:
4337 case Intrinsic::nvvm_wmma_m8n32k16_load_b_f16_col_stride:
4338 case Intrinsic::nvvm_wmma_m8n32k16_load_b_f16_row_stride: {
4339 Info.opc = ISD::INTRINSIC_W_CHAIN;
4340 Info.memVT = MVT::v8f16;
4341 Info.ptrVal = I.getArgOperand(0);
4342 Info.offset = 0;
4343 Info.flags = MachineMemOperand::MOLoad;
4344 Info.align = Align(16);
4345 Infos.push_back(Info);
4346 return;
4347 }
4348 case Intrinsic::nvvm_wmma_m16n16k16_load_a_s8_col:
4349 case Intrinsic::nvvm_wmma_m16n16k16_load_a_s8_col_stride:
4350 case Intrinsic::nvvm_wmma_m16n16k16_load_a_u8_col_stride:
4351 case Intrinsic::nvvm_wmma_m16n16k16_load_a_u8_col:
4352 case Intrinsic::nvvm_wmma_m16n16k16_load_a_s8_row:
4353 case Intrinsic::nvvm_wmma_m16n16k16_load_a_s8_row_stride:
4354 case Intrinsic::nvvm_wmma_m16n16k16_load_a_u8_row_stride:
4355 case Intrinsic::nvvm_wmma_m16n16k16_load_a_u8_row:
4356 case Intrinsic::nvvm_wmma_m8n32k16_load_a_bf16_col:
4357 case Intrinsic::nvvm_wmma_m8n32k16_load_a_bf16_col_stride:
4358 case Intrinsic::nvvm_wmma_m8n32k16_load_a_bf16_row:
4359 case Intrinsic::nvvm_wmma_m8n32k16_load_a_bf16_row_stride:
4360 case Intrinsic::nvvm_wmma_m16n16k16_load_b_s8_col:
4361 case Intrinsic::nvvm_wmma_m16n16k16_load_b_s8_col_stride:
4362 case Intrinsic::nvvm_wmma_m16n16k16_load_b_u8_col_stride:
4363 case Intrinsic::nvvm_wmma_m16n16k16_load_b_u8_col:
4364 case Intrinsic::nvvm_wmma_m16n16k16_load_b_s8_row:
4365 case Intrinsic::nvvm_wmma_m16n16k16_load_b_s8_row_stride:
4366 case Intrinsic::nvvm_wmma_m16n16k16_load_b_u8_row_stride:
4367 case Intrinsic::nvvm_wmma_m16n16k16_load_b_u8_row:
4368 case Intrinsic::nvvm_wmma_m32n8k16_load_b_bf16_col:
4369 case Intrinsic::nvvm_wmma_m32n8k16_load_b_bf16_col_stride:
4370 case Intrinsic::nvvm_wmma_m32n8k16_load_b_bf16_row:
4371 case Intrinsic::nvvm_wmma_m32n8k16_load_b_bf16_row_stride: {
4372 Info.opc = ISD::INTRINSIC_W_CHAIN;
4373 Info.memVT = MVT::v2i32;
4374 Info.ptrVal = I.getArgOperand(0);
4375 Info.offset = 0;
4376 Info.flags = MachineMemOperand::MOLoad;
4377 Info.align = Align(8);
4378 Infos.push_back(Info);
4379 return;
4380 }
4381
4382 case Intrinsic::nvvm_wmma_m32n8k16_load_a_s8_col:
4383 case Intrinsic::nvvm_wmma_m32n8k16_load_a_s8_col_stride:
4384 case Intrinsic::nvvm_wmma_m32n8k16_load_a_u8_col_stride:
4385 case Intrinsic::nvvm_wmma_m32n8k16_load_a_u8_col:
4386 case Intrinsic::nvvm_wmma_m32n8k16_load_a_s8_row:
4387 case Intrinsic::nvvm_wmma_m32n8k16_load_a_s8_row_stride:
4388 case Intrinsic::nvvm_wmma_m32n8k16_load_a_u8_row_stride:
4389 case Intrinsic::nvvm_wmma_m32n8k16_load_a_u8_row:
4390 case Intrinsic::nvvm_wmma_m16n16k16_load_a_bf16_col:
4391 case Intrinsic::nvvm_wmma_m16n16k16_load_a_bf16_col_stride:
4392 case Intrinsic::nvvm_wmma_m16n16k16_load_a_bf16_row:
4393 case Intrinsic::nvvm_wmma_m16n16k16_load_a_bf16_row_stride:
4394 case Intrinsic::nvvm_wmma_m16n16k8_load_a_tf32_col:
4395 case Intrinsic::nvvm_wmma_m16n16k8_load_a_tf32_col_stride:
4396 case Intrinsic::nvvm_wmma_m16n16k8_load_a_tf32_row:
4397 case Intrinsic::nvvm_wmma_m16n16k8_load_a_tf32_row_stride:
4398
4399 case Intrinsic::nvvm_wmma_m8n32k16_load_b_s8_col:
4400 case Intrinsic::nvvm_wmma_m8n32k16_load_b_s8_col_stride:
4401 case Intrinsic::nvvm_wmma_m8n32k16_load_b_u8_col_stride:
4402 case Intrinsic::nvvm_wmma_m8n32k16_load_b_u8_col:
4403 case Intrinsic::nvvm_wmma_m8n32k16_load_b_s8_row:
4404 case Intrinsic::nvvm_wmma_m8n32k16_load_b_s8_row_stride:
4405 case Intrinsic::nvvm_wmma_m8n32k16_load_b_u8_row_stride:
4406 case Intrinsic::nvvm_wmma_m8n32k16_load_b_u8_row:
4407 case Intrinsic::nvvm_wmma_m16n16k16_load_b_bf16_col:
4408 case Intrinsic::nvvm_wmma_m16n16k16_load_b_bf16_col_stride:
4409 case Intrinsic::nvvm_wmma_m16n16k16_load_b_bf16_row:
4410 case Intrinsic::nvvm_wmma_m16n16k16_load_b_bf16_row_stride:
4411 case Intrinsic::nvvm_wmma_m16n16k8_load_b_tf32_col:
4412 case Intrinsic::nvvm_wmma_m16n16k8_load_b_tf32_col_stride:
4413 case Intrinsic::nvvm_wmma_m16n16k8_load_b_tf32_row:
4414 case Intrinsic::nvvm_wmma_m16n16k8_load_b_tf32_row_stride:
4415 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x4_b16:
4416 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x4_trans_b16:
4417 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x2_trans_b8:
4418 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x2_trans_b8x16_b4x16_p64:
4419 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x2_trans_b8x16_b6x16_p32:
4420 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x4_b8x16_b4x16_p64:
4421 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x4_b8x16_b6x16_p32: {
4422 Info.opc = ISD::INTRINSIC_W_CHAIN;
4423 Info.memVT = MVT::v4i32;
4424 Info.ptrVal = I.getArgOperand(0);
4425 Info.offset = 0;
4426 Info.flags = MachineMemOperand::MOLoad;
4427 Info.align = Align(16);
4428 Infos.push_back(Info);
4429 return;
4430 }
4431
4432 case Intrinsic::nvvm_wmma_m32n8k16_load_b_s8_col:
4433 case Intrinsic::nvvm_wmma_m32n8k16_load_b_s8_col_stride:
4434 case Intrinsic::nvvm_wmma_m32n8k16_load_b_u8_col_stride:
4435 case Intrinsic::nvvm_wmma_m32n8k16_load_b_u8_col:
4436 case Intrinsic::nvvm_wmma_m32n8k16_load_b_s8_row:
4437 case Intrinsic::nvvm_wmma_m32n8k16_load_b_s8_row_stride:
4438 case Intrinsic::nvvm_wmma_m32n8k16_load_b_u8_row_stride:
4439 case Intrinsic::nvvm_wmma_m32n8k16_load_b_u8_row:
4440
4441 case Intrinsic::nvvm_wmma_m8n32k16_load_a_s8_col:
4442 case Intrinsic::nvvm_wmma_m8n32k16_load_a_s8_col_stride:
4443 case Intrinsic::nvvm_wmma_m8n32k16_load_a_u8_col_stride:
4444 case Intrinsic::nvvm_wmma_m8n32k16_load_a_u8_col:
4445 case Intrinsic::nvvm_wmma_m8n32k16_load_a_s8_row:
4446 case Intrinsic::nvvm_wmma_m8n32k16_load_a_s8_row_stride:
4447 case Intrinsic::nvvm_wmma_m8n32k16_load_a_u8_row_stride:
4448 case Intrinsic::nvvm_wmma_m8n32k16_load_a_u8_row:
4449 case Intrinsic::nvvm_wmma_m8n8k128_load_a_b1_row:
4450 case Intrinsic::nvvm_wmma_m8n8k128_load_a_b1_row_stride:
4451 case Intrinsic::nvvm_wmma_m8n8k128_load_b_b1_col:
4452 case Intrinsic::nvvm_wmma_m8n8k128_load_b_b1_col_stride:
4453 case Intrinsic::nvvm_wmma_m8n8k32_load_a_s4_row:
4454 case Intrinsic::nvvm_wmma_m8n8k32_load_a_s4_row_stride:
4455 case Intrinsic::nvvm_wmma_m8n8k32_load_a_u4_row_stride:
4456 case Intrinsic::nvvm_wmma_m8n8k32_load_a_u4_row:
4457 case Intrinsic::nvvm_wmma_m8n8k32_load_b_s4_col:
4458 case Intrinsic::nvvm_wmma_m8n8k32_load_b_s4_col_stride:
4459 case Intrinsic::nvvm_wmma_m8n8k32_load_b_u4_col_stride:
4460 case Intrinsic::nvvm_wmma_m8n8k32_load_b_u4_col:
4461 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x1_b16:
4462 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x1_trans_b16:
4463 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x1_b8x16_b4x16_p64:
4464 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x1_b8x16_b6x16_p32: {
4465 Info.opc = ISD::INTRINSIC_W_CHAIN;
4466 Info.memVT = MVT::i32;
4467 Info.ptrVal = I.getArgOperand(0);
4468 Info.offset = 0;
4469 Info.flags = MachineMemOperand::MOLoad;
4470 Info.align = Align(4);
4471 Infos.push_back(Info);
4472 return;
4473 }
4474
4475 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f16_col:
4476 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f16_row:
4477 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f16_col_stride:
4478 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f16_row_stride:
4479 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f16_col:
4480 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f16_row:
4481 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f16_col_stride:
4482 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f16_row_stride:
4483 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f16_col:
4484 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f16_row:
4485 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f16_col_stride:
4486 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f16_row_stride: {
4487 Info.opc = ISD::INTRINSIC_W_CHAIN;
4488 Info.memVT = MVT::v4f16;
4489 Info.ptrVal = I.getArgOperand(0);
4490 Info.offset = 0;
4491 Info.flags = MachineMemOperand::MOLoad;
4492 Info.align = Align(16);
4493 Infos.push_back(Info);
4494 return;
4495 }
4496
4497 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f32_col:
4498 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f32_row:
4499 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f32_col_stride:
4500 case Intrinsic::nvvm_wmma_m16n16k16_load_c_f32_row_stride:
4501 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f32_col:
4502 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f32_row:
4503 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f32_col_stride:
4504 case Intrinsic::nvvm_wmma_m32n8k16_load_c_f32_row_stride:
4505 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f32_col:
4506 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f32_row:
4507 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f32_col_stride:
4508 case Intrinsic::nvvm_wmma_m8n32k16_load_c_f32_row_stride:
4509 case Intrinsic::nvvm_wmma_m16n16k8_load_c_f32_col:
4510 case Intrinsic::nvvm_wmma_m16n16k8_load_c_f32_row:
4511 case Intrinsic::nvvm_wmma_m16n16k8_load_c_f32_col_stride:
4512 case Intrinsic::nvvm_wmma_m16n16k8_load_c_f32_row_stride: {
4513 Info.opc = ISD::INTRINSIC_W_CHAIN;
4514 Info.memVT = MVT::v8f32;
4515 Info.ptrVal = I.getArgOperand(0);
4516 Info.offset = 0;
4517 Info.flags = MachineMemOperand::MOLoad;
4518 Info.align = Align(16);
4519 Infos.push_back(Info);
4520 return;
4521 }
4522
4523 case Intrinsic::nvvm_wmma_m32n8k16_load_a_bf16_col:
4524 case Intrinsic::nvvm_wmma_m32n8k16_load_a_bf16_col_stride:
4525 case Intrinsic::nvvm_wmma_m32n8k16_load_a_bf16_row:
4526 case Intrinsic::nvvm_wmma_m32n8k16_load_a_bf16_row_stride:
4527
4528 case Intrinsic::nvvm_wmma_m8n32k16_load_b_bf16_col:
4529 case Intrinsic::nvvm_wmma_m8n32k16_load_b_bf16_col_stride:
4530 case Intrinsic::nvvm_wmma_m8n32k16_load_b_bf16_row:
4531 case Intrinsic::nvvm_wmma_m8n32k16_load_b_bf16_row_stride:
4532
4533 case Intrinsic::nvvm_wmma_m16n16k16_load_c_s32_col:
4534 case Intrinsic::nvvm_wmma_m16n16k16_load_c_s32_col_stride:
4535 case Intrinsic::nvvm_wmma_m16n16k16_load_c_s32_row:
4536 case Intrinsic::nvvm_wmma_m16n16k16_load_c_s32_row_stride:
4537 case Intrinsic::nvvm_wmma_m32n8k16_load_c_s32_col:
4538 case Intrinsic::nvvm_wmma_m32n8k16_load_c_s32_col_stride:
4539 case Intrinsic::nvvm_wmma_m32n8k16_load_c_s32_row:
4540 case Intrinsic::nvvm_wmma_m32n8k16_load_c_s32_row_stride:
4541 case Intrinsic::nvvm_wmma_m8n32k16_load_c_s32_col:
4542 case Intrinsic::nvvm_wmma_m8n32k16_load_c_s32_col_stride:
4543 case Intrinsic::nvvm_wmma_m8n32k16_load_c_s32_row:
4544 case Intrinsic::nvvm_wmma_m8n32k16_load_c_s32_row_stride: {
4545 Info.opc = ISD::INTRINSIC_W_CHAIN;
4546 Info.memVT = MVT::v8i32;
4547 Info.ptrVal = I.getArgOperand(0);
4548 Info.offset = 0;
4549 Info.flags = MachineMemOperand::MOLoad;
4550 Info.align = Align(16);
4551 Infos.push_back(Info);
4552 return;
4553 }
4554
4555 case Intrinsic::nvvm_wmma_m8n8k128_load_c_s32_col:
4556 case Intrinsic::nvvm_wmma_m8n8k128_load_c_s32_col_stride:
4557 case Intrinsic::nvvm_wmma_m8n8k128_load_c_s32_row:
4558 case Intrinsic::nvvm_wmma_m8n8k128_load_c_s32_row_stride:
4559 case Intrinsic::nvvm_wmma_m8n8k32_load_c_s32_col:
4560 case Intrinsic::nvvm_wmma_m8n8k32_load_c_s32_col_stride:
4561 case Intrinsic::nvvm_wmma_m8n8k32_load_c_s32_row:
4562 case Intrinsic::nvvm_wmma_m8n8k32_load_c_s32_row_stride:
4563 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x2_b16:
4564 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n8_x2_trans_b16:
4565 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x1_trans_b8:
4566 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x1_trans_b8x16_b4x16_p64:
4567 case Intrinsic::nvvm_ldmatrix_sync_aligned_m16n16_x1_trans_b8x16_b6x16_p32:
4568 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x2_b8x16_b4x16_p64:
4569 case Intrinsic::nvvm_ldmatrix_sync_aligned_m8n16_x2_b8x16_b6x16_p32: {
4570 Info.opc = ISD::INTRINSIC_W_CHAIN;
4571 Info.memVT = MVT::v2i32;
4572 Info.ptrVal = I.getArgOperand(0);
4573 Info.offset = 0;
4574 Info.flags = MachineMemOperand::MOLoad;
4575 Info.align = Align(8);
4576 Infos.push_back(Info);
4577 return;
4578 }
4579
4580 case Intrinsic::nvvm_wmma_m8n8k4_load_a_f64_col:
4581 case Intrinsic::nvvm_wmma_m8n8k4_load_a_f64_col_stride:
4582 case Intrinsic::nvvm_wmma_m8n8k4_load_a_f64_row:
4583 case Intrinsic::nvvm_wmma_m8n8k4_load_a_f64_row_stride:
4584
4585 case Intrinsic::nvvm_wmma_m8n8k4_load_b_f64_col:
4586 case Intrinsic::nvvm_wmma_m8n8k4_load_b_f64_col_stride:
4587 case Intrinsic::nvvm_wmma_m8n8k4_load_b_f64_row:
4588 case Intrinsic::nvvm_wmma_m8n8k4_load_b_f64_row_stride: {
4589 Info.opc = ISD::INTRINSIC_W_CHAIN;
4590 Info.memVT = MVT::f64;
4591 Info.ptrVal = I.getArgOperand(0);
4592 Info.offset = 0;
4593 Info.flags = MachineMemOperand::MOLoad;
4594 Info.align = Align(8);
4595 Infos.push_back(Info);
4596 return;
4597 }
4598
4599 case Intrinsic::nvvm_wmma_m8n8k4_load_c_f64_col:
4600 case Intrinsic::nvvm_wmma_m8n8k4_load_c_f64_col_stride:
4601 case Intrinsic::nvvm_wmma_m8n8k4_load_c_f64_row:
4602 case Intrinsic::nvvm_wmma_m8n8k4_load_c_f64_row_stride: {
4603 Info.opc = ISD::INTRINSIC_W_CHAIN;
4604 Info.memVT = MVT::v2f64;
4605 Info.ptrVal = I.getArgOperand(0);
4606 Info.offset = 0;
4607 Info.flags = MachineMemOperand::MOLoad;
4608 Info.align = Align(16);
4609 Infos.push_back(Info);
4610 return;
4611 }
4612
4613 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f16_col:
4614 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f16_row:
4615 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f16_col_stride:
4616 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f16_row_stride:
4617 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f16_col:
4618 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f16_row:
4619 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f16_col_stride:
4620 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f16_row_stride:
4621 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f16_col:
4622 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f16_row:
4623 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f16_col_stride:
4624 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f16_row_stride: {
4625 Info.opc = ISD::INTRINSIC_VOID;
4626 Info.memVT = MVT::v4f16;
4627 Info.ptrVal = I.getArgOperand(0);
4628 Info.offset = 0;
4629 Info.flags = MachineMemOperand::MOStore;
4630 Info.align = Align(16);
4631 Infos.push_back(Info);
4632 return;
4633 }
4634
4635 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f32_col:
4636 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f32_row:
4637 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f32_col_stride:
4638 case Intrinsic::nvvm_wmma_m16n16k16_store_d_f32_row_stride:
4639 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f32_col:
4640 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f32_row:
4641 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f32_col_stride:
4642 case Intrinsic::nvvm_wmma_m32n8k16_store_d_f32_row_stride:
4643 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f32_col:
4644 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f32_row:
4645 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f32_col_stride:
4646 case Intrinsic::nvvm_wmma_m8n32k16_store_d_f32_row_stride:
4647 case Intrinsic::nvvm_wmma_m16n16k8_store_d_f32_col:
4648 case Intrinsic::nvvm_wmma_m16n16k8_store_d_f32_row:
4649 case Intrinsic::nvvm_wmma_m16n16k8_store_d_f32_col_stride:
4650 case Intrinsic::nvvm_wmma_m16n16k8_store_d_f32_row_stride: {
4651 Info.opc = ISD::INTRINSIC_VOID;
4652 Info.memVT = MVT::v8f32;
4653 Info.ptrVal = I.getArgOperand(0);
4654 Info.offset = 0;
4655 Info.flags = MachineMemOperand::MOStore;
4656 Info.align = Align(16);
4657 Infos.push_back(Info);
4658 return;
4659 }
4660
4661 case Intrinsic::nvvm_wmma_m16n16k16_store_d_s32_col:
4662 case Intrinsic::nvvm_wmma_m16n16k16_store_d_s32_col_stride:
4663 case Intrinsic::nvvm_wmma_m16n16k16_store_d_s32_row:
4664 case Intrinsic::nvvm_wmma_m16n16k16_store_d_s32_row_stride:
4665 case Intrinsic::nvvm_wmma_m32n8k16_store_d_s32_col:
4666 case Intrinsic::nvvm_wmma_m32n8k16_store_d_s32_col_stride:
4667 case Intrinsic::nvvm_wmma_m32n8k16_store_d_s32_row:
4668 case Intrinsic::nvvm_wmma_m32n8k16_store_d_s32_row_stride:
4669 case Intrinsic::nvvm_wmma_m8n32k16_store_d_s32_col:
4670 case Intrinsic::nvvm_wmma_m8n32k16_store_d_s32_col_stride:
4671 case Intrinsic::nvvm_wmma_m8n32k16_store_d_s32_row:
4672 case Intrinsic::nvvm_wmma_m8n32k16_store_d_s32_row_stride: {
4673 Info.opc = ISD::INTRINSIC_VOID;
4674 Info.memVT = MVT::v8i32;
4675 Info.ptrVal = I.getArgOperand(0);
4676 Info.offset = 0;
4677 Info.flags = MachineMemOperand::MOStore;
4678 Info.align = Align(16);
4679 Infos.push_back(Info);
4680 return;
4681 }
4682
4683 case Intrinsic::nvvm_wmma_m8n8k128_store_d_s32_col:
4684 case Intrinsic::nvvm_wmma_m8n8k128_store_d_s32_col_stride:
4685 case Intrinsic::nvvm_wmma_m8n8k128_store_d_s32_row:
4686 case Intrinsic::nvvm_wmma_m8n8k128_store_d_s32_row_stride:
4687 case Intrinsic::nvvm_wmma_m8n8k32_store_d_s32_col:
4688 case Intrinsic::nvvm_wmma_m8n8k32_store_d_s32_col_stride:
4689 case Intrinsic::nvvm_wmma_m8n8k32_store_d_s32_row:
4690 case Intrinsic::nvvm_wmma_m8n8k32_store_d_s32_row_stride:
4691 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x2_b16:
4692 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x2_trans_b16:
4693 case Intrinsic::nvvm_stmatrix_sync_aligned_m16n8_x2_trans_b8: {
4694 Info.opc = ISD::INTRINSIC_VOID;
4695 Info.memVT = MVT::v2i32;
4696 Info.ptrVal = I.getArgOperand(0);
4697 Info.offset = 0;
4698 Info.flags = MachineMemOperand::MOStore;
4699 Info.align = Align(8);
4700 Infos.push_back(Info);
4701 return;
4702 }
4703
4704 case Intrinsic::nvvm_wmma_m8n8k4_store_d_f64_col:
4705 case Intrinsic::nvvm_wmma_m8n8k4_store_d_f64_col_stride:
4706 case Intrinsic::nvvm_wmma_m8n8k4_store_d_f64_row:
4707 case Intrinsic::nvvm_wmma_m8n8k4_store_d_f64_row_stride: {
4708 Info.opc = ISD::INTRINSIC_VOID;
4709 Info.memVT = MVT::v2f64;
4710 Info.ptrVal = I.getArgOperand(0);
4711 Info.offset = 0;
4712 Info.flags = MachineMemOperand::MOStore;
4713 Info.align = Align(16);
4714 Infos.push_back(Info);
4715 return;
4716 }
4717
4718 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x1_b16:
4719 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x1_trans_b16:
4720 case Intrinsic::nvvm_stmatrix_sync_aligned_m16n8_x1_trans_b8: {
4721 Info.opc = ISD::INTRINSIC_VOID;
4722 Info.memVT = MVT::i32;
4723 Info.ptrVal = I.getArgOperand(0);
4724 Info.offset = 0;
4725 Info.flags = MachineMemOperand::MOStore;
4726 Info.align = Align(4);
4727 Infos.push_back(Info);
4728 return;
4729 }
4730
4731 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x4_b16:
4732 case Intrinsic::nvvm_stmatrix_sync_aligned_m8n8_x4_trans_b16:
4733 case Intrinsic::nvvm_stmatrix_sync_aligned_m16n8_x4_trans_b8: {
4734 Info.opc = ISD::INTRINSIC_VOID;
4735 Info.memVT = MVT::v4i32;
4736 Info.ptrVal = I.getArgOperand(0);
4737 Info.offset = 0;
4738 Info.flags = MachineMemOperand::MOStore;
4739 Info.align = Align(16);
4740 Infos.push_back(Info);
4741 return;
4742 }
4743
4744 case Intrinsic::nvvm_prefetch_tensormap: {
4745 auto &DL = I.getDataLayout();
4746 Info.opc = ISD::INTRINSIC_VOID;
4747 Info.memVT = getPointerTy(DL);
4748 Info.ptrVal = I.getArgOperand(0);
4749 Info.offset = 0;
4750 Info.flags =
4752 Info.align.reset();
4753 Infos.push_back(Info);
4754 return;
4755 }
4756
4757 case Intrinsic::nvvm_tensormap_replace_global_address:
4758 case Intrinsic::nvvm_tensormap_replace_global_stride: {
4759 Info.opc = ISD::INTRINSIC_VOID;
4760 Info.memVT = MVT::i64;
4761 Info.ptrVal = I.getArgOperand(0);
4762 Info.offset = 0;
4763 Info.flags = MachineMemOperand::MOStore;
4764 Info.align.reset();
4765 Infos.push_back(Info);
4766 return;
4767 }
4768
4769 case Intrinsic::nvvm_tensormap_replace_rank:
4770 case Intrinsic::nvvm_tensormap_replace_box_dim:
4771 case Intrinsic::nvvm_tensormap_replace_global_dim:
4772 case Intrinsic::nvvm_tensormap_replace_element_stride:
4773 case Intrinsic::nvvm_tensormap_replace_elemtype:
4774 case Intrinsic::nvvm_tensormap_replace_interleave_layout:
4775 case Intrinsic::nvvm_tensormap_replace_swizzle_mode:
4776 case Intrinsic::nvvm_tensormap_replace_swizzle_atomicity:
4777 case Intrinsic::nvvm_tensormap_replace_fill_mode: {
4778 Info.opc = ISD::INTRINSIC_VOID;
4779 Info.memVT = MVT::i32;
4780 Info.ptrVal = I.getArgOperand(0);
4781 Info.offset = 0;
4782 Info.flags = MachineMemOperand::MOStore;
4783 Info.align.reset();
4784 Infos.push_back(Info);
4785 return;
4786 }
4787
4788 case Intrinsic::nvvm_ldu_global_i:
4789 case Intrinsic::nvvm_ldu_global_f:
4790 case Intrinsic::nvvm_ldu_global_p: {
4791 Info.opc = ISD::INTRINSIC_W_CHAIN;
4792 Info.memVT = getValueType(I.getDataLayout(), I.getType());
4793 Info.ptrVal = I.getArgOperand(0);
4794 Info.offset = 0;
4795 Info.flags = MachineMemOperand::MOLoad;
4796 Info.align = cast<ConstantInt>(I.getArgOperand(1))->getMaybeAlignValue();
4797
4798 Infos.push_back(Info);
4799 return;
4800 }
4801 case Intrinsic::nvvm_tex_1d_v4f32_s32:
4802 case Intrinsic::nvvm_tex_1d_v4f32_f32:
4803 case Intrinsic::nvvm_tex_1d_level_v4f32_f32:
4804 case Intrinsic::nvvm_tex_1d_grad_v4f32_f32:
4805 case Intrinsic::nvvm_tex_1d_array_v4f32_s32:
4806 case Intrinsic::nvvm_tex_1d_array_v4f32_f32:
4807 case Intrinsic::nvvm_tex_1d_array_level_v4f32_f32:
4808 case Intrinsic::nvvm_tex_1d_array_grad_v4f32_f32:
4809 case Intrinsic::nvvm_tex_2d_v4f32_s32:
4810 case Intrinsic::nvvm_tex_2d_v4f32_f32:
4811 case Intrinsic::nvvm_tex_2d_level_v4f32_f32:
4812 case Intrinsic::nvvm_tex_2d_grad_v4f32_f32:
4813 case Intrinsic::nvvm_tex_2d_array_v4f32_s32:
4814 case Intrinsic::nvvm_tex_2d_array_v4f32_f32:
4815 case Intrinsic::nvvm_tex_2d_array_level_v4f32_f32:
4816 case Intrinsic::nvvm_tex_2d_array_grad_v4f32_f32:
4817 case Intrinsic::nvvm_tex_3d_v4f32_s32:
4818 case Intrinsic::nvvm_tex_3d_v4f32_f32:
4819 case Intrinsic::nvvm_tex_3d_level_v4f32_f32:
4820 case Intrinsic::nvvm_tex_3d_grad_v4f32_f32:
4821 case Intrinsic::nvvm_tex_cube_v4f32_f32:
4822 case Intrinsic::nvvm_tex_cube_level_v4f32_f32:
4823 case Intrinsic::nvvm_tex_cube_array_v4f32_f32:
4824 case Intrinsic::nvvm_tex_cube_array_level_v4f32_f32:
4825 case Intrinsic::nvvm_tld4_r_2d_v4f32_f32:
4826 case Intrinsic::nvvm_tld4_g_2d_v4f32_f32:
4827 case Intrinsic::nvvm_tld4_b_2d_v4f32_f32:
4828 case Intrinsic::nvvm_tld4_a_2d_v4f32_f32:
4829 case Intrinsic::nvvm_tex_unified_1d_v4f32_s32:
4830 case Intrinsic::nvvm_tex_unified_1d_v4f32_f32:
4831 case Intrinsic::nvvm_tex_unified_1d_level_v4f32_f32:
4832 case Intrinsic::nvvm_tex_unified_1d_grad_v4f32_f32:
4833 case Intrinsic::nvvm_tex_unified_1d_array_v4f32_s32:
4834 case Intrinsic::nvvm_tex_unified_1d_array_v4f32_f32:
4835 case Intrinsic::nvvm_tex_unified_1d_array_level_v4f32_f32:
4836 case Intrinsic::nvvm_tex_unified_1d_array_grad_v4f32_f32:
4837 case Intrinsic::nvvm_tex_unified_2d_v4f32_s32:
4838 case Intrinsic::nvvm_tex_unified_2d_v4f32_f32:
4839 case Intrinsic::nvvm_tex_unified_2d_level_v4f32_f32:
4840 case Intrinsic::nvvm_tex_unified_2d_grad_v4f32_f32:
4841 case Intrinsic::nvvm_tex_unified_2d_array_v4f32_s32:
4842 case Intrinsic::nvvm_tex_unified_2d_array_v4f32_f32:
4843 case Intrinsic::nvvm_tex_unified_2d_array_level_v4f32_f32:
4844 case Intrinsic::nvvm_tex_unified_2d_array_grad_v4f32_f32:
4845 case Intrinsic::nvvm_tex_unified_3d_v4f32_s32:
4846 case Intrinsic::nvvm_tex_unified_3d_v4f32_f32:
4847 case Intrinsic::nvvm_tex_unified_3d_level_v4f32_f32:
4848 case Intrinsic::nvvm_tex_unified_3d_grad_v4f32_f32:
4849 case Intrinsic::nvvm_tex_unified_cube_v4f32_f32:
4850 case Intrinsic::nvvm_tex_unified_cube_level_v4f32_f32:
4851 case Intrinsic::nvvm_tex_unified_cube_array_v4f32_f32:
4852 case Intrinsic::nvvm_tex_unified_cube_array_level_v4f32_f32:
4853 case Intrinsic::nvvm_tex_unified_cube_grad_v4f32_f32:
4854 case Intrinsic::nvvm_tex_unified_cube_array_grad_v4f32_f32:
4855 case Intrinsic::nvvm_tld4_unified_r_2d_v4f32_f32:
4856 case Intrinsic::nvvm_tld4_unified_g_2d_v4f32_f32:
4857 case Intrinsic::nvvm_tld4_unified_b_2d_v4f32_f32:
4858 case Intrinsic::nvvm_tld4_unified_a_2d_v4f32_f32:
4859 Info.opc = ISD::INTRINSIC_W_CHAIN;
4860 Info.memVT = MVT::v4f32;
4861 Info.ptrVal = nullptr;
4862 Info.offset = 0;
4863 Info.flags = MachineMemOperand::MOLoad;
4864 Info.align = Align(16);
4865 Infos.push_back(Info);
4866 return;
4867
4868 case Intrinsic::nvvm_tex_1d_v4s32_s32:
4869 case Intrinsic::nvvm_tex_1d_v4s32_f32:
4870 case Intrinsic::nvvm_tex_1d_level_v4s32_f32:
4871 case Intrinsic::nvvm_tex_1d_grad_v4s32_f32:
4872 case Intrinsic::nvvm_tex_1d_array_v4s32_s32:
4873 case Intrinsic::nvvm_tex_1d_array_v4s32_f32:
4874 case Intrinsic::nvvm_tex_1d_array_level_v4s32_f32:
4875 case Intrinsic::nvvm_tex_1d_array_grad_v4s32_f32:
4876 case Intrinsic::nvvm_tex_2d_v4s32_s32:
4877 case Intrinsic::nvvm_tex_2d_v4s32_f32:
4878 case Intrinsic::nvvm_tex_2d_level_v4s32_f32:
4879 case Intrinsic::nvvm_tex_2d_grad_v4s32_f32:
4880 case Intrinsic::nvvm_tex_2d_array_v4s32_s32:
4881 case Intrinsic::nvvm_tex_2d_array_v4s32_f32:
4882 case Intrinsic::nvvm_tex_2d_array_level_v4s32_f32:
4883 case Intrinsic::nvvm_tex_2d_array_grad_v4s32_f32:
4884 case Intrinsic::nvvm_tex_3d_v4s32_s32:
4885 case Intrinsic::nvvm_tex_3d_v4s32_f32:
4886 case Intrinsic::nvvm_tex_3d_level_v4s32_f32:
4887 case Intrinsic::nvvm_tex_3d_grad_v4s32_f32:
4888 case Intrinsic::nvvm_tex_cube_v4s32_f32:
4889 case Intrinsic::nvvm_tex_cube_level_v4s32_f32:
4890 case Intrinsic::nvvm_tex_cube_array_v4s32_f32:
4891 case Intrinsic::nvvm_tex_cube_array_level_v4s32_f32:
4892 case Intrinsic::nvvm_tex_cube_v4u32_f32:
4893 case Intrinsic::nvvm_tex_cube_level_v4u32_f32:
4894 case Intrinsic::nvvm_tex_cube_array_v4u32_f32:
4895 case Intrinsic::nvvm_tex_cube_array_level_v4u32_f32:
4896 case Intrinsic::nvvm_tex_1d_v4u32_s32:
4897 case Intrinsic::nvvm_tex_1d_v4u32_f32:
4898 case Intrinsic::nvvm_tex_1d_level_v4u32_f32:
4899 case Intrinsic::nvvm_tex_1d_grad_v4u32_f32:
4900 case Intrinsic::nvvm_tex_1d_array_v4u32_s32:
4901 case Intrinsic::nvvm_tex_1d_array_v4u32_f32:
4902 case Intrinsic::nvvm_tex_1d_array_level_v4u32_f32:
4903 case Intrinsic::nvvm_tex_1d_array_grad_v4u32_f32:
4904 case Intrinsic::nvvm_tex_2d_v4u32_s32:
4905 case Intrinsic::nvvm_tex_2d_v4u32_f32:
4906 case Intrinsic::nvvm_tex_2d_level_v4u32_f32:
4907 case Intrinsic::nvvm_tex_2d_grad_v4u32_f32:
4908 case Intrinsic::nvvm_tex_2d_array_v4u32_s32:
4909 case Intrinsic::nvvm_tex_2d_array_v4u32_f32:
4910 case Intrinsic::nvvm_tex_2d_array_level_v4u32_f32:
4911 case Intrinsic::nvvm_tex_2d_array_grad_v4u32_f32:
4912 case Intrinsic::nvvm_tex_3d_v4u32_s32:
4913 case Intrinsic::nvvm_tex_3d_v4u32_f32:
4914 case Intrinsic::nvvm_tex_3d_level_v4u32_f32:
4915 case Intrinsic::nvvm_tex_3d_grad_v4u32_f32:
4916 case Intrinsic::nvvm_tld4_r_2d_v4s32_f32:
4917 case Intrinsic::nvvm_tld4_g_2d_v4s32_f32:
4918 case Intrinsic::nvvm_tld4_b_2d_v4s32_f32:
4919 case Intrinsic::nvvm_tld4_a_2d_v4s32_f32:
4920 case Intrinsic::nvvm_tld4_r_2d_v4u32_f32:
4921 case Intrinsic::nvvm_tld4_g_2d_v4u32_f32:
4922 case Intrinsic::nvvm_tld4_b_2d_v4u32_f32:
4923 case Intrinsic::nvvm_tld4_a_2d_v4u32_f32:
4924 case Intrinsic::nvvm_tex_unified_1d_v4s32_s32:
4925 case Intrinsic::nvvm_tex_unified_1d_v4s32_f32:
4926 case Intrinsic::nvvm_tex_unified_1d_level_v4s32_f32:
4927 case Intrinsic::nvvm_tex_unified_1d_grad_v4s32_f32:
4928 case Intrinsic::nvvm_tex_unified_1d_array_v4s32_s32:
4929 case Intrinsic::nvvm_tex_unified_1d_array_v4s32_f32:
4930 case Intrinsic::nvvm_tex_unified_1d_array_level_v4s32_f32:
4931 case Intrinsic::nvvm_tex_unified_1d_array_grad_v4s32_f32:
4932 case Intrinsic::nvvm_tex_unified_2d_v4s32_s32:
4933 case Intrinsic::nvvm_tex_unified_2d_v4s32_f32:
4934 case Intrinsic::nvvm_tex_unified_2d_level_v4s32_f32:
4935 case Intrinsic::nvvm_tex_unified_2d_grad_v4s32_f32:
4936 case Intrinsic::nvvm_tex_unified_2d_array_v4s32_s32:
4937 case Intrinsic::nvvm_tex_unified_2d_array_v4s32_f32:
4938 case Intrinsic::nvvm_tex_unified_2d_array_level_v4s32_f32:
4939 case Intrinsic::nvvm_tex_unified_2d_array_grad_v4s32_f32:
4940 case Intrinsic::nvvm_tex_unified_3d_v4s32_s32:
4941 case Intrinsic::nvvm_tex_unified_3d_v4s32_f32:
4942 case Intrinsic::nvvm_tex_unified_3d_level_v4s32_f32:
4943 case Intrinsic::nvvm_tex_unified_3d_grad_v4s32_f32:
4944 case Intrinsic::nvvm_tex_unified_1d_v4u32_s32:
4945 case Intrinsic::nvvm_tex_unified_1d_v4u32_f32:
4946 case Intrinsic::nvvm_tex_unified_1d_level_v4u32_f32:
4947 case Intrinsic::nvvm_tex_unified_1d_grad_v4u32_f32:
4948 case Intrinsic::nvvm_tex_unified_1d_array_v4u32_s32:
4949 case Intrinsic::nvvm_tex_unified_1d_array_v4u32_f32:
4950 case Intrinsic::nvvm_tex_unified_1d_array_level_v4u32_f32:
4951 case Intrinsic::nvvm_tex_unified_1d_array_grad_v4u32_f32:
4952 case Intrinsic::nvvm_tex_unified_2d_v4u32_s32:
4953 case Intrinsic::nvvm_tex_unified_2d_v4u32_f32:
4954 case Intrinsic::nvvm_tex_unified_2d_level_v4u32_f32:
4955 case Intrinsic::nvvm_tex_unified_2d_grad_v4u32_f32:
4956 case Intrinsic::nvvm_tex_unified_2d_array_v4u32_s32:
4957 case Intrinsic::nvvm_tex_unified_2d_array_v4u32_f32:
4958 case Intrinsic::nvvm_tex_unified_2d_array_level_v4u32_f32:
4959 case Intrinsic::nvvm_tex_unified_2d_array_grad_v4u32_f32:
4960 case Intrinsic::nvvm_tex_unified_3d_v4u32_s32:
4961 case Intrinsic::nvvm_tex_unified_3d_v4u32_f32:
4962 case Intrinsic::nvvm_tex_unified_3d_level_v4u32_f32:
4963 case Intrinsic::nvvm_tex_unified_3d_grad_v4u32_f32:
4964 case Intrinsic::nvvm_tex_unified_cube_v4s32_f32:
4965 case Intrinsic::nvvm_tex_unified_cube_level_v4s32_f32:
4966 case Intrinsic::nvvm_tex_unified_cube_array_v4s32_f32:
4967 case Intrinsic::nvvm_tex_unified_cube_array_level_v4s32_f32:
4968 case Intrinsic::nvvm_tex_unified_cube_v4u32_f32:
4969 case Intrinsic::nvvm_tex_unified_cube_level_v4u32_f32:
4970 case Intrinsic::nvvm_tex_unified_cube_array_v4u32_f32:
4971 case Intrinsic::nvvm_tex_unified_cube_array_level_v4u32_f32:
4972 case Intrinsic::nvvm_tex_unified_cube_grad_v4s32_f32:
4973 case Intrinsic::nvvm_tex_unified_cube_grad_v4u32_f32:
4974 case Intrinsic::nvvm_tex_unified_cube_array_grad_v4s32_f32:
4975 case Intrinsic::nvvm_tex_unified_cube_array_grad_v4u32_f32:
4976 case Intrinsic::nvvm_tld4_unified_r_2d_v4s32_f32:
4977 case Intrinsic::nvvm_tld4_unified_g_2d_v4s32_f32:
4978 case Intrinsic::nvvm_tld4_unified_b_2d_v4s32_f32:
4979 case Intrinsic::nvvm_tld4_unified_a_2d_v4s32_f32:
4980 case Intrinsic::nvvm_tld4_unified_r_2d_v4u32_f32:
4981 case Intrinsic::nvvm_tld4_unified_g_2d_v4u32_f32:
4982 case Intrinsic::nvvm_tld4_unified_b_2d_v4u32_f32:
4983 case Intrinsic::nvvm_tld4_unified_a_2d_v4u32_f32:
4984 Info.opc = ISD::INTRINSIC_W_CHAIN;
4985 Info.memVT = MVT::v4i32;
4986 Info.ptrVal = nullptr;
4987 Info.offset = 0;
4988 Info.flags = MachineMemOperand::MOLoad;
4989 Info.align = Align(16);
4990 Infos.push_back(Info);
4991 return;
4992
4993 case Intrinsic::nvvm_suld_1d_i8_clamp:
4994 case Intrinsic::nvvm_suld_1d_v2i8_clamp:
4995 case Intrinsic::nvvm_suld_1d_v4i8_clamp:
4996 case Intrinsic::nvvm_suld_1d_array_i8_clamp:
4997 case Intrinsic::nvvm_suld_1d_array_v2i8_clamp:
4998 case Intrinsic::nvvm_suld_1d_array_v4i8_clamp:
4999 case Intrinsic::nvvm_suld_2d_i8_clamp:
5000 case Intrinsic::nvvm_suld_2d_v2i8_clamp:
5001 case Intrinsic::nvvm_suld_2d_v4i8_clamp:
5002 case Intrinsic::nvvm_suld_2d_array_i8_clamp:
5003 case Intrinsic::nvvm_suld_2d_array_v2i8_clamp:
5004 case Intrinsic::nvvm_suld_2d_array_v4i8_clamp:
5005 case Intrinsic::nvvm_suld_3d_i8_clamp:
5006 case Intrinsic::nvvm_suld_3d_v2i8_clamp:
5007 case Intrinsic::nvvm_suld_3d_v4i8_clamp:
5008 case Intrinsic::nvvm_suld_1d_i8_trap:
5009 case Intrinsic::nvvm_suld_1d_v2i8_trap:
5010 case Intrinsic::nvvm_suld_1d_v4i8_trap:
5011 case Intrinsic::nvvm_suld_1d_array_i8_trap:
5012 case Intrinsic::nvvm_suld_1d_array_v2i8_trap:
5013 case Intrinsic::nvvm_suld_1d_array_v4i8_trap:
5014 case Intrinsic::nvvm_suld_2d_i8_trap:
5015 case Intrinsic::nvvm_suld_2d_v2i8_trap:
5016 case Intrinsic::nvvm_suld_2d_v4i8_trap:
5017 case Intrinsic::nvvm_suld_2d_array_i8_trap:
5018 case Intrinsic::nvvm_suld_2d_array_v2i8_trap:
5019 case Intrinsic::nvvm_suld_2d_array_v4i8_trap:
5020 case Intrinsic::nvvm_suld_3d_i8_trap:
5021 case Intrinsic::nvvm_suld_3d_v2i8_trap:
5022 case Intrinsic::nvvm_suld_3d_v4i8_trap:
5023 case Intrinsic::nvvm_suld_1d_i8_zero:
5024 case Intrinsic::nvvm_suld_1d_v2i8_zero:
5025 case Intrinsic::nvvm_suld_1d_v4i8_zero:
5026 case Intrinsic::nvvm_suld_1d_array_i8_zero:
5027 case Intrinsic::nvvm_suld_1d_array_v2i8_zero:
5028 case Intrinsic::nvvm_suld_1d_array_v4i8_zero:
5029 case Intrinsic::nvvm_suld_2d_i8_zero:
5030 case Intrinsic::nvvm_suld_2d_v2i8_zero:
5031 case Intrinsic::nvvm_suld_2d_v4i8_zero:
5032 case Intrinsic::nvvm_suld_2d_array_i8_zero:
5033 case Intrinsic::nvvm_suld_2d_array_v2i8_zero:
5034 case Intrinsic::nvvm_suld_2d_array_v4i8_zero:
5035 case Intrinsic::nvvm_suld_3d_i8_zero:
5036 case Intrinsic::nvvm_suld_3d_v2i8_zero:
5037 case Intrinsic::nvvm_suld_3d_v4i8_zero:
5038 Info.opc = ISD::INTRINSIC_W_CHAIN;
5039 Info.memVT = MVT::i8;
5040 Info.ptrVal = nullptr;
5041 Info.offset = 0;
5042 Info.flags = MachineMemOperand::MOLoad;
5043 Info.align = Align(16);
5044 Infos.push_back(Info);
5045 return;
5046
5047 case Intrinsic::nvvm_suld_1d_i16_clamp:
5048 case Intrinsic::nvvm_suld_1d_v2i16_clamp:
5049 case Intrinsic::nvvm_suld_1d_v4i16_clamp:
5050 case Intrinsic::nvvm_suld_1d_array_i16_clamp:
5051 case Intrinsic::nvvm_suld_1d_array_v2i16_clamp:
5052 case Intrinsic::nvvm_suld_1d_array_v4i16_clamp:
5053 case Intrinsic::nvvm_suld_2d_i16_clamp:
5054 case Intrinsic::nvvm_suld_2d_v2i16_clamp:
5055 case Intrinsic::nvvm_suld_2d_v4i16_clamp:
5056 case Intrinsic::nvvm_suld_2d_array_i16_clamp:
5057 case Intrinsic::nvvm_suld_2d_array_v2i16_clamp:
5058 case Intrinsic::nvvm_suld_2d_array_v4i16_clamp:
5059 case Intrinsic::nvvm_suld_3d_i16_clamp:
5060 case Intrinsic::nvvm_suld_3d_v2i16_clamp:
5061 case Intrinsic::nvvm_suld_3d_v4i16_clamp:
5062 case Intrinsic::nvvm_suld_1d_i16_trap:
5063 case Intrinsic::nvvm_suld_1d_v2i16_trap:
5064 case Intrinsic::nvvm_suld_1d_v4i16_trap:
5065 case Intrinsic::nvvm_suld_1d_array_i16_trap:
5066 case Intrinsic::nvvm_suld_1d_array_v2i16_trap:
5067 case Intrinsic::nvvm_suld_1d_array_v4i16_trap:
5068 case Intrinsic::nvvm_suld_2d_i16_trap:
5069 case Intrinsic::nvvm_suld_2d_v2i16_trap:
5070 case Intrinsic::nvvm_suld_2d_v4i16_trap:
5071 case Intrinsic::nvvm_suld_2d_array_i16_trap:
5072 case Intrinsic::nvvm_suld_2d_array_v2i16_trap:
5073 case Intrinsic::nvvm_suld_2d_array_v4i16_trap:
5074 case Intrinsic::nvvm_suld_3d_i16_trap:
5075 case Intrinsic::nvvm_suld_3d_v2i16_trap:
5076 case Intrinsic::nvvm_suld_3d_v4i16_trap:
5077 case Intrinsic::nvvm_suld_1d_i16_zero:
5078 case Intrinsic::nvvm_suld_1d_v2i16_zero:
5079 case Intrinsic::nvvm_suld_1d_v4i16_zero:
5080 case Intrinsic::nvvm_suld_1d_array_i16_zero:
5081 case Intrinsic::nvvm_suld_1d_array_v2i16_zero:
5082 case Intrinsic::nvvm_suld_1d_array_v4i16_zero:
5083 case Intrinsic::nvvm_suld_2d_i16_zero:
5084 case Intrinsic::nvvm_suld_2d_v2i16_zero:
5085 case Intrinsic::nvvm_suld_2d_v4i16_zero:
5086 case Intrinsic::nvvm_suld_2d_array_i16_zero:
5087 case Intrinsic::nvvm_suld_2d_array_v2i16_zero:
5088 case Intrinsic::nvvm_suld_2d_array_v4i16_zero:
5089 case Intrinsic::nvvm_suld_3d_i16_zero:
5090 case Intrinsic::nvvm_suld_3d_v2i16_zero:
5091 case Intrinsic::nvvm_suld_3d_v4i16_zero:
5092 Info.opc = ISD::INTRINSIC_W_CHAIN;
5093 Info.memVT = MVT::i16;
5094 Info.ptrVal = nullptr;
5095 Info.offset = 0;
5096 Info.flags = MachineMemOperand::MOLoad;
5097 Info.align = Align(16);
5098 Infos.push_back(Info);
5099 return;
5100
5101 case Intrinsic::nvvm_suld_1d_i32_clamp:
5102 case Intrinsic::nvvm_suld_1d_v2i32_clamp:
5103 case Intrinsic::nvvm_suld_1d_v4i32_clamp:
5104 case Intrinsic::nvvm_suld_1d_array_i32_clamp:
5105 case Intrinsic::nvvm_suld_1d_array_v2i32_clamp:
5106 case Intrinsic::nvvm_suld_1d_array_v4i32_clamp:
5107 case Intrinsic::nvvm_suld_2d_i32_clamp:
5108 case Intrinsic::nvvm_suld_2d_v2i32_clamp:
5109 case Intrinsic::nvvm_suld_2d_v4i32_clamp:
5110 case Intrinsic::nvvm_suld_2d_array_i32_clamp:
5111 case Intrinsic::nvvm_suld_2d_array_v2i32_clamp:
5112 case Intrinsic::nvvm_suld_2d_array_v4i32_clamp:
5113 case Intrinsic::nvvm_suld_3d_i32_clamp:
5114 case Intrinsic::nvvm_suld_3d_v2i32_clamp:
5115 case Intrinsic::nvvm_suld_3d_v4i32_clamp:
5116 case Intrinsic::nvvm_suld_1d_i32_trap:
5117 case Intrinsic::nvvm_suld_1d_v2i32_trap:
5118 case Intrinsic::nvvm_suld_1d_v4i32_trap:
5119 case Intrinsic::nvvm_suld_1d_array_i32_trap:
5120 case Intrinsic::nvvm_suld_1d_array_v2i32_trap:
5121 case Intrinsic::nvvm_suld_1d_array_v4i32_trap:
5122 case Intrinsic::nvvm_suld_2d_i32_trap:
5123 case Intrinsic::nvvm_suld_2d_v2i32_trap:
5124 case Intrinsic::nvvm_suld_2d_v4i32_trap:
5125 case Intrinsic::nvvm_suld_2d_array_i32_trap:
5126 case Intrinsic::nvvm_suld_2d_array_v2i32_trap:
5127 case Intrinsic::nvvm_suld_2d_array_v4i32_trap:
5128 case Intrinsic::nvvm_suld_3d_i32_trap:
5129 case Intrinsic::nvvm_suld_3d_v2i32_trap:
5130 case Intrinsic::nvvm_suld_3d_v4i32_trap:
5131 case Intrinsic::nvvm_suld_1d_i32_zero:
5132 case Intrinsic::nvvm_suld_1d_v2i32_zero:
5133 case Intrinsic::nvvm_suld_1d_v4i32_zero:
5134 case Intrinsic::nvvm_suld_1d_array_i32_zero:
5135 case Intrinsic::nvvm_suld_1d_array_v2i32_zero:
5136 case Intrinsic::nvvm_suld_1d_array_v4i32_zero:
5137 case Intrinsic::nvvm_suld_2d_i32_zero:
5138 case Intrinsic::nvvm_suld_2d_v2i32_zero:
5139 case Intrinsic::nvvm_suld_2d_v4i32_zero:
5140 case Intrinsic::nvvm_suld_2d_array_i32_zero:
5141 case Intrinsic::nvvm_suld_2d_array_v2i32_zero:
5142 case Intrinsic::nvvm_suld_2d_array_v4i32_zero:
5143 case Intrinsic::nvvm_suld_3d_i32_zero:
5144 case Intrinsic::nvvm_suld_3d_v2i32_zero:
5145 case Intrinsic::nvvm_suld_3d_v4i32_zero:
5146 Info.opc = ISD::INTRINSIC_W_CHAIN;
5147 Info.memVT = MVT::i32;
5148 Info.ptrVal = nullptr;
5149 Info.offset = 0;
5150 Info.flags = MachineMemOperand::MOLoad;
5151 Info.align = Align(16);
5152 Infos.push_back(Info);
5153 return;
5154
5155 case Intrinsic::nvvm_suld_1d_i64_clamp:
5156 case Intrinsic::nvvm_suld_1d_v2i64_clamp:
5157 case Intrinsic::nvvm_suld_1d_array_i64_clamp:
5158 case Intrinsic::nvvm_suld_1d_array_v2i64_clamp:
5159 case Intrinsic::nvvm_suld_2d_i64_clamp:
5160 case Intrinsic::nvvm_suld_2d_v2i64_clamp:
5161 case Intrinsic::nvvm_suld_2d_array_i64_clamp:
5162 case Intrinsic::nvvm_suld_2d_array_v2i64_clamp:
5163 case Intrinsic::nvvm_suld_3d_i64_clamp:
5164 case Intrinsic::nvvm_suld_3d_v2i64_clamp:
5165 case Intrinsic::nvvm_suld_1d_i64_trap:
5166 case Intrinsic::nvvm_suld_1d_v2i64_trap:
5167 case Intrinsic::nvvm_suld_1d_array_i64_trap:
5168 case Intrinsic::nvvm_suld_1d_array_v2i64_trap:
5169 case Intrinsic::nvvm_suld_2d_i64_trap:
5170 case Intrinsic::nvvm_suld_2d_v2i64_trap:
5171 case Intrinsic::nvvm_suld_2d_array_i64_trap:
5172 case Intrinsic::nvvm_suld_2d_array_v2i64_trap:
5173 case Intrinsic::nvvm_suld_3d_i64_trap:
5174 case Intrinsic::nvvm_suld_3d_v2i64_trap:
5175 case Intrinsic::nvvm_suld_1d_i64_zero:
5176 case Intrinsic::nvvm_suld_1d_v2i64_zero:
5177 case Intrinsic::nvvm_suld_1d_array_i64_zero:
5178 case Intrinsic::nvvm_suld_1d_array_v2i64_zero:
5179 case Intrinsic::nvvm_suld_2d_i64_zero:
5180 case Intrinsic::nvvm_suld_2d_v2i64_zero:
5181 case Intrinsic::nvvm_suld_2d_array_i64_zero:
5182 case Intrinsic::nvvm_suld_2d_array_v2i64_zero:
5183 case Intrinsic::nvvm_suld_3d_i64_zero:
5184 case Intrinsic::nvvm_suld_3d_v2i64_zero:
5185 Info.opc = ISD::INTRINSIC_W_CHAIN;
5186 Info.memVT = MVT::i64;
5187 Info.ptrVal = nullptr;
5188 Info.offset = 0;
5189 Info.flags = MachineMemOperand::MOLoad;
5190 Info.align = Align(16);
5191 Infos.push_back(Info);
5192 return;
5193
5194 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
5195 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
5196 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1: {
5197 Info.opc = ISD::INTRINSIC_W_CHAIN;
5198 Info.memVT = MVT::v1i32;
5199 Info.ptrVal = I.getArgOperand(0);
5200 Info.offset = 0;
5201 Info.flags = MachineMemOperand::MOLoad;
5202 Info.align.reset();
5203 Infos.push_back(Info);
5204 return;
5205 }
5206
5207 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
5208 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
5209 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
5210 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
5211 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x2_i32:
5212 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x2_i32: {
5213 Info.opc = ISD::INTRINSIC_W_CHAIN;
5214 Info.memVT = MVT::v2i32;
5215 Info.ptrVal = I.getArgOperand(0);
5216 Info.offset = 0;
5217 Info.flags = MachineMemOperand::MOLoad;
5218 Info.align.reset();
5219 Infos.push_back(Info);
5220 return;
5221 }
5222
5223 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x2_f32:
5224 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x2_f32: {
5225 Info.opc = ISD::INTRINSIC_W_CHAIN;
5226 Info.memVT = MVT::v2f32;
5227 Info.ptrVal = I.getArgOperand(0);
5228 Info.offset = 0;
5229 Info.flags = MachineMemOperand::MOLoad;
5230 Info.align.reset();
5231 Infos.push_back(Info);
5232 return;
5233 }
5234
5235 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
5236 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
5237 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
5238 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
5239 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
5240 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x4_i32:
5241 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x4_i32: {
5242 Info.opc = ISD::INTRINSIC_W_CHAIN;
5243 Info.memVT = MVT::v4i32;
5244 Info.ptrVal = I.getArgOperand(0);
5245 Info.offset = 0;
5246 Info.flags = MachineMemOperand::MOLoad;
5247 Info.align.reset();
5248 Infos.push_back(Info);
5249 return;
5250 }
5251
5252 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x4_f32:
5253 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x4_f32: {
5254 Info.opc = ISD::INTRINSIC_W_CHAIN;
5255 Info.memVT = MVT::v4f32;
5256 Info.ptrVal = I.getArgOperand(0);
5257 Info.offset = 0;
5258 Info.flags = MachineMemOperand::MOLoad;
5259 Info.align.reset();
5260 Infos.push_back(Info);
5261 return;
5262 }
5263
5264 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
5265 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
5266 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
5267 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
5268 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
5269 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x8_i32:
5270 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x8_i32: {
5271 Info.opc = ISD::INTRINSIC_W_CHAIN;
5272 Info.memVT = MVT::v8i32;
5273 Info.ptrVal = I.getArgOperand(0);
5274 Info.offset = 0;
5275 Info.flags = MachineMemOperand::MOLoad;
5276 Info.align.reset();
5277 Infos.push_back(Info);
5278 return;
5279 }
5280
5281 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x8_f32:
5282 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x8_f32: {
5283 Info.opc = ISD::INTRINSIC_W_CHAIN;
5284 Info.memVT = MVT::v8f32;
5285 Info.ptrVal = I.getArgOperand(0);
5286 Info.offset = 0;
5287 Info.flags = MachineMemOperand::MOLoad;
5288 Info.align.reset();
5289 Infos.push_back(Info);
5290 return;
5291 }
5292
5293 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
5294 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
5295 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
5296 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
5297 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
5298 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x16_i32:
5299 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x16_i32: {
5300 Info.opc = ISD::INTRINSIC_W_CHAIN;
5301 Info.memVT = MVT::v16i32;
5302 Info.ptrVal = I.getArgOperand(0);
5303 Info.offset = 0;
5304 Info.flags = MachineMemOperand::MOLoad;
5305 Info.align.reset();
5306 Infos.push_back(Info);
5307 return;
5308 }
5309
5310 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x16_f32:
5311 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x16_f32: {
5312 Info.opc = ISD::INTRINSIC_W_CHAIN;
5313 Info.memVT = MVT::v16f32;
5314 Info.ptrVal = I.getArgOperand(0);
5315 Info.offset = 0;
5316 Info.flags = MachineMemOperand::MOLoad;
5317 Info.align.reset();
5318 Infos.push_back(Info);
5319 return;
5320 }
5321
5322 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
5323 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
5324 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
5325 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
5326 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
5327 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x32_i32:
5328 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x32_i32: {
5329 Info.opc = ISD::INTRINSIC_W_CHAIN;
5330 Info.memVT = MVT::v32i32;
5331 Info.ptrVal = I.getArgOperand(0);
5332 Info.offset = 0;
5333 Info.flags = MachineMemOperand::MOLoad;
5334 Info.align.reset();
5335 Infos.push_back(Info);
5336 return;
5337 }
5338
5339 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x32_f32:
5340 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x32_f32: {
5341 Info.opc = ISD::INTRINSIC_W_CHAIN;
5342 Info.memVT = MVT::v32f32;
5343 Info.ptrVal = I.getArgOperand(0);
5344 Info.offset = 0;
5345 Info.flags = MachineMemOperand::MOLoad;
5346 Info.align.reset();
5347 Infos.push_back(Info);
5348 return;
5349 }
5350
5351 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
5352 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
5353 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
5354 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
5355 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
5356 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x64_i32:
5357 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x64_i32: {
5358 Info.opc = ISD::INTRINSIC_W_CHAIN;
5359 Info.memVT = MVT::v64i32;
5360 Info.ptrVal = I.getArgOperand(0);
5361 Info.offset = 0;
5362 Info.flags = MachineMemOperand::MOLoad;
5363 Info.align.reset();
5364 Infos.push_back(Info);
5365 return;
5366 }
5367
5368 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x64_f32:
5369 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x64_f32: {
5370 Info.opc = ISD::INTRINSIC_W_CHAIN;
5371 Info.memVT = MVT::v64f32;
5372 Info.ptrVal = I.getArgOperand(0);
5373 Info.offset = 0;
5374 Info.flags = MachineMemOperand::MOLoad;
5375 Info.align.reset();
5376 Infos.push_back(Info);
5377 return;
5378 }
5379
5380 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
5381 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
5382 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
5383 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128:
5384 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128:
5385 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x128_i32:
5386 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x128_i32: {
5387 Info.opc = ISD::INTRINSIC_W_CHAIN;
5388 Info.memVT = MVT::v128i32;
5389 Info.ptrVal = I.getArgOperand(0);
5390 Info.offset = 0;
5391 Info.flags = MachineMemOperand::MOLoad;
5392 Info.align.reset();
5393 Infos.push_back(Info);
5394 return;
5395 }
5396
5397 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x128_f32:
5398 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x128_f32: {
5399 Info.opc = ISD::INTRINSIC_W_CHAIN;
5400 Info.memVT = MVT::v128f32;
5401 Info.ptrVal = I.getArgOperand(0);
5402 Info.offset = 0;
5403 Info.flags = MachineMemOperand::MOLoad;
5404 Info.align.reset();
5405 Infos.push_back(Info);
5406 return;
5407 }
5408
5409 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
5410 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
5411 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1: {
5412 Info.opc = ISD::INTRINSIC_VOID;
5413 Info.memVT = MVT::v1i32;
5414 Info.ptrVal = I.getArgOperand(0);
5415 Info.offset = 0;
5416 Info.flags = MachineMemOperand::MOStore;
5417 Info.align.reset();
5418 Infos.push_back(Info);
5419 return;
5420 }
5421
5422 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
5423 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
5424 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
5425 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2: {
5426 Info.opc = ISD::INTRINSIC_VOID;
5427 Info.memVT = MVT::v2i32;
5428 Info.ptrVal = I.getArgOperand(0);
5429 Info.offset = 0;
5430 Info.flags = MachineMemOperand::MOStore;
5431 Info.align.reset();
5432 Infos.push_back(Info);
5433 return;
5434 }
5435
5436 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
5437 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
5438 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
5439 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
5440 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4: {
5441 Info.opc = ISD::INTRINSIC_VOID;
5442 Info.memVT = MVT::v4i32;
5443 Info.ptrVal = I.getArgOperand(0);
5444 Info.offset = 0;
5445 Info.flags = MachineMemOperand::MOStore;
5446 Info.align.reset();
5447 Infos.push_back(Info);
5448 return;
5449 }
5450
5451 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
5452 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
5453 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
5454 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
5455 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8: {
5456 Info.opc = ISD::INTRINSIC_VOID;
5457 Info.memVT = MVT::v8i32;
5458 Info.ptrVal = I.getArgOperand(0);
5459 Info.offset = 0;
5460 Info.flags = MachineMemOperand::MOStore;
5461 Info.align.reset();
5462 Infos.push_back(Info);
5463 return;
5464 }
5465
5466 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
5467 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
5468 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
5469 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
5470 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16: {
5471 Info.opc = ISD::INTRINSIC_VOID;
5472 Info.memVT = MVT::v16i32;
5473 Info.ptrVal = I.getArgOperand(0);
5474 Info.offset = 0;
5475 Info.flags = MachineMemOperand::MOStore;
5476 Info.align.reset();
5477 Infos.push_back(Info);
5478 return;
5479 }
5480
5481 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
5482 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
5483 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
5484 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
5485 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32: {
5486 Info.opc = ISD::INTRINSIC_VOID;
5487 Info.memVT = MVT::v32i32;
5488 Info.ptrVal = I.getArgOperand(0);
5489 Info.offset = 0;
5490 Info.flags = MachineMemOperand::MOStore;
5491 Info.align.reset();
5492 Infos.push_back(Info);
5493 return;
5494 }
5495
5496 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
5497 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
5498 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
5499 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
5500 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64: {
5501 Info.opc = ISD::INTRINSIC_VOID;
5502 Info.memVT = MVT::v64i32;
5503 Info.ptrVal = I.getArgOperand(0);
5504 Info.offset = 0;
5505 Info.flags = MachineMemOperand::MOStore;
5506 Info.align.reset();
5507 Infos.push_back(Info);
5508 return;
5509 }
5510
5511 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
5512 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
5513 case Intrinsic::nvvm_tcgen05_st_16x256b_x32:
5514 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
5515 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128: {
5516 Info.opc = ISD::INTRINSIC_VOID;
5517 Info.memVT = MVT::v128i32;
5518 Info.ptrVal = I.getArgOperand(0);
5519 Info.offset = 0;
5520 Info.flags = MachineMemOperand::MOStore;
5521 Info.align.reset();
5522 Infos.push_back(Info);
5523 return;
5524 }
5525 case Intrinsic::
5526 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg1_decompress_b:
5527 case Intrinsic::
5528 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg1_decompress_b:
5529 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg1:
5530 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg1:
5531 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg1:
5532 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg1:
5533 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1:
5534 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1:
5535 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg1_ashift:
5536 case Intrinsic::
5537 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg1_ashift:
5538 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1:
5539 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1:
5540 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg1_ashift:
5541 case Intrinsic::
5542 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg1_ashift: {
5543 // We are reading and writing back to TMem
5544 Info.opc = ISD::INTRINSIC_VOID;
5545 Info.memVT = MVT::v4i32;
5546 Info.ptrVal = I.getArgOperand(0);
5547 Info.offset = 0;
5549 Info.align = Align(16);
5550 Infos.push_back(Info);
5551 return;
5552 }
5553
5554 case Intrinsic::
5555 nvvm_tcgen05_mma_shared_f8f6f4_disable_output_lane_cg2_decompress_b:
5556 case Intrinsic::
5557 nvvm_tcgen05_mma_tensor_f8f6f4_disable_output_lane_cg2_decompress_b:
5558 case Intrinsic::nvvm_tcgen05_mma_shared_disable_output_lane_cg2:
5559 case Intrinsic::nvvm_tcgen05_mma_shared_scale_d_disable_output_lane_cg2:
5560 case Intrinsic::nvvm_tcgen05_mma_sp_shared_disable_output_lane_cg2:
5561 case Intrinsic::nvvm_tcgen05_mma_sp_shared_scale_d_disable_output_lane_cg2:
5562 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2:
5563 case Intrinsic::nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2:
5564 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2:
5565 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2:
5566 case Intrinsic::nvvm_tcgen05_mma_tensor_disable_output_lane_cg2_ashift:
5567 case Intrinsic::
5568 nvvm_tcgen05_mma_tensor_scale_d_disable_output_lane_cg2_ashift:
5569 case Intrinsic::nvvm_tcgen05_mma_sp_tensor_disable_output_lane_cg2_ashift:
5570 case Intrinsic::
5571 nvvm_tcgen05_mma_sp_tensor_scale_d_disable_output_lane_cg2_ashift: {
5572 // We are reading and writing back to TMem
5573 Info.opc = ISD::INTRINSIC_VOID;
5574 Info.memVT = MVT::v8i32;
5575 Info.ptrVal = I.getArgOperand(0);
5576 Info.offset = 0;
5578 Info.align = Align(16);
5579 Infos.push_back(Info);
5580 return;
5581 }
5582 case Intrinsic::nvvm_tcgen05_alloc_cg1:
5583 case Intrinsic::nvvm_tcgen05_alloc_cg2:
5584 Info.opc = ISD::INTRINSIC_VOID;
5585 Info.memVT = MVT::i32;
5586 Info.ptrVal = I.getArgOperand(0);
5587 Info.offset = 0;
5588 Info.flags = MachineMemOperand::MOStore;
5589 Info.align = Align(4);
5590 Infos.push_back(Info);
5591 return;
5592 }
5593}
5594
5595// Helper for getting a function parameter symbol. Its name is composed from
5596// the function name and the parameter index. Negative index corresponds to the
5597// special parameter (unsized array) used for passing variable arguments.
5599 int Idx) const {
5600 const StringRef FuncName = getTargetMachine().getSymbol(F)->getName();
5601 if (Idx < 0)
5602 return Ctx.getOrCreateSymbol(FuncName + "_vararg");
5603 return Ctx.getOrCreateSymbol(FuncName + "_param_" + Twine(Idx));
5604}
5605
5606/// isLegalAddressingMode - Return true if the addressing mode represented
5607/// by AM is legal for this target, for a load/store of the specified type.
5608/// Used to guide target specific optimizations, like loop strength reduction
5609/// (LoopStrengthReduce.cpp) and memory optimization for address mode
5610/// (CodeGenPrepare.cpp)
5612 const AddrMode &AM, Type *Ty,
5613 unsigned AS, Instruction *I) const {
5614 // AddrMode - This represents an addressing mode of:
5615 // BaseGV + BaseOffs + BaseReg + Scale*ScaleReg
5616 //
5617 // The legal address modes are
5618 // - [avar]
5619 // - [areg]
5620 // - [areg+immoff]
5621 // - [immAddr]
5622
5623 // immoff must fit in a signed 32-bit int
5624 if (!APInt(64, AM.BaseOffs).isSignedIntN(32))
5625 return false;
5626
5627 if (AM.BaseGV)
5628 return !AM.BaseOffs && !AM.HasBaseReg && !AM.Scale;
5629
5630 switch (AM.Scale) {
5631 case 0: // "r", "r+i" or "i" is allowed
5632 break;
5633 case 1:
5634 if (AM.HasBaseReg) // "r+r+i" or "r+r" is not allowed.
5635 return false;
5636 // Otherwise we have r+i.
5637 break;
5638 default:
5639 // No scale > 1 is allowed
5640 return false;
5641 }
5642 return true;
5643}
5644
5645//===----------------------------------------------------------------------===//
5646// NVPTX Inline Assembly Support
5647//===----------------------------------------------------------------------===//
5648
5649/// getConstraintType - Given a constraint letter, return the type of
5650/// constraint it is for this target.
5653 if (Constraint.size() == 1) {
5654 switch (Constraint[0]) {
5655 default:
5656 break;
5657 case 'b':
5658 case 'r':
5659 case 'h':
5660 case 'c':
5661 case 'l':
5662 case 'f':
5663 case 'd':
5664 case 'q':
5665 case '0':
5666 case 'N':
5667 return C_RegisterClass;
5668 }
5669 }
5670 return TargetLowering::getConstraintType(Constraint);
5671}
5672
5673std::pair<unsigned, const TargetRegisterClass *>
5675 StringRef Constraint,
5676 MVT VT) const {
5677 if (Constraint.size() == 1) {
5678 switch (Constraint[0]) {
5679 case 'b':
5680 return std::make_pair(0U, &NVPTX::B1RegClass);
5681 case 'c':
5682 case 'h':
5683 return std::make_pair(0U, &NVPTX::B16RegClass);
5684 case 'r':
5685 case 'f':
5686 return std::make_pair(0U, &NVPTX::B32RegClass);
5687 case 'l':
5688 case 'N':
5689 case 'd':
5690 return std::make_pair(0U, &NVPTX::B64RegClass);
5691 case 'q': {
5692 if (!STI.hasFeature(NVPTX::SM70))
5693 report_fatal_error("Inline asm with 128 bit operands is only "
5694 "supported for sm_70 and higher!");
5695 return std::make_pair(0U, &NVPTX::B128RegClass);
5696 }
5697 }
5698 }
5699 return TargetLowering::getRegForInlineAsmConstraint(TRI, Constraint, VT);
5700}
5701
5702//===----------------------------------------------------------------------===//
5703// NVPTX DAG Combining
5704//===----------------------------------------------------------------------===//
5705
5707 CodeGenOptLevel OptLevel) const {
5708 // Always honor command-line argument
5709 if (FMAContractLevelOpt.getNumOccurrences() > 0)
5710 return FMAContractLevelOpt > 0;
5711
5712 // Do not contract if we're not optimizing the code.
5713 if (OptLevel == CodeGenOptLevel::None)
5714 return false;
5715
5716 // Honor TargetOptions flags that explicitly say fusion is okay.
5718 return true;
5719
5720 return false;
5721}
5722
5723static bool isConstZero(const SDValue &Operand) {
5724 const auto *Const = dyn_cast<ConstantSDNode>(Operand);
5725 return Const && Const->getZExtValue() == 0;
5726}
5727
5728/// PerformADDCombineWithOperands - Try DAG combinations for an ADD with
5729/// operands N0 and N1. This is a helper for PerformADDCombine that is
5730/// called with the default operands, and if that fails, with commuted
5731/// operands.
5732static SDValue
5735 EVT VT = N0.getValueType();
5736
5737 // Since integer multiply-add costs the same as integer multiply
5738 // but is more costly than integer add, do the fusion only when
5739 // the mul is only used in the add.
5740 // TODO: this may not be true for later architectures, consider relaxing this
5741 if (!N0.getNode()->hasOneUse())
5742 return SDValue();
5743
5744 // fold (add (select cond, 0, (mul a, b)), c)
5745 // -> (select cond, c, (add (mul a, b), c))
5746 //
5747 if (N0.getOpcode() == ISD::SELECT) {
5748 unsigned ZeroOpNum;
5749 if (isConstZero(N0->getOperand(1)))
5750 ZeroOpNum = 1;
5751 else if (isConstZero(N0->getOperand(2)))
5752 ZeroOpNum = 2;
5753 else
5754 return SDValue();
5755
5756 SDValue M = N0->getOperand((ZeroOpNum == 1) ? 2 : 1);
5757 if (M->getOpcode() != ISD::MUL || !M.getNode()->hasOneUse())
5758 return SDValue();
5759
5760 SDLoc DL(N);
5761 SDValue Mul =
5762 DCI.DAG.getNode(ISD::MUL, DL, VT, M->getOperand(0), M->getOperand(1));
5763 SDValue MAD = DCI.DAG.getNode(ISD::ADD, DL, VT, Mul, N1);
5764 return DCI.DAG.getSelect(SDLoc(N), VT, N0->getOperand(0),
5765 ((ZeroOpNum == 1) ? N1 : MAD),
5766 ((ZeroOpNum == 1) ? MAD : N1));
5767 }
5768
5769 return SDValue();
5770}
5771
5772SDValue NVPTXTargetLowering::performFADDCombineWithOperands(
5774 CodeGenOptLevel OptLevel) const {
5775 EVT VT = N0.getValueType();
5776 if (N0.getOpcode() == ISD::FMUL) {
5777 if (!(allowFMA(DCI.DAG.getMachineFunction(), OptLevel) ||
5778 (N->getFlags().hasAllowContract() &&
5779 N0->getFlags().hasAllowContract())))
5780 return SDValue();
5781
5782 // For floating point:
5783 // Do the fusion only when the mul has less than 5 uses and all
5784 // are add.
5785 // The heuristic is that if a use is not an add, then that use
5786 // cannot be fused into fma, therefore mul is still needed anyway.
5787 // If there are more than 4 uses, even if they are all add, fusing
5788 // them will increase register pressue.
5789 //
5790 int numUses = 0;
5791 int nonAddCount = 0;
5792 for (const SDNode *User : N0.getNode()->users()) {
5793 numUses++;
5794 if (User->getOpcode() != ISD::FADD)
5795 ++nonAddCount;
5796 if (numUses >= 5)
5797 return SDValue();
5798 }
5799 if (nonAddCount) {
5800 int orderNo = N->getIROrder();
5801 int orderNo2 = N0.getNode()->getIROrder();
5802 // simple heuristics here for considering potential register
5803 // pressure, the logics here is that the differnce are used
5804 // to measure the distance between def and use, the longer distance
5805 // more likely cause register pressure.
5806 if (orderNo - orderNo2 < 500)
5807 return SDValue();
5808
5809 // Now, check if at least one of the FMUL's operands is live beyond the
5810 // node N, which guarantees that the FMA will not increase register
5811 // pressure at node N.
5812 bool opIsLive = false;
5813 const SDNode *left = N0.getOperand(0).getNode();
5814 const SDNode *right = N0.getOperand(1).getNode();
5815
5816 if (isa<ConstantSDNode>(left) || isa<ConstantSDNode>(right))
5817 opIsLive = true;
5818
5819 if (!opIsLive)
5820 for (const SDNode *User : left->users()) {
5821 int orderNo3 = User->getIROrder();
5822 if (orderNo3 > orderNo) {
5823 opIsLive = true;
5824 break;
5825 }
5826 }
5827
5828 if (!opIsLive)
5829 for (const SDNode *User : right->users()) {
5830 int orderNo3 = User->getIROrder();
5831 if (orderNo3 > orderNo) {
5832 opIsLive = true;
5833 break;
5834 }
5835 }
5836
5837 if (!opIsLive)
5838 return SDValue();
5839 }
5840
5841 return DCI.DAG.getNode(ISD::FMA, SDLoc(N), VT, N0.getOperand(0),
5842 N0.getOperand(1), N1);
5843 }
5844
5845 return SDValue();
5846}
5847
5848/// Fold unpacking movs into a load by increasing the number of return values.
5849///
5850/// ex:
5851/// L: v2f16,ch = load <p>
5852/// a: f16 = extractelt L:0, 0
5853/// b: f16 = extractelt L:0, 1
5854/// use(a, b)
5855///
5856/// ...is turned into...
5857///
5858/// L: f16,f16,ch = LoadV2 <p>
5859/// use(L:0, L:1)
5860static SDValue
5862 // Don't run this optimization before the legalizer
5863 if (!DCI.isAfterLegalizeDAG())
5864 return SDValue();
5865
5866 EVT ElementVT = N->getValueType(0);
5867 // Avoid non-packed types and v4i8
5868 if (!NVPTX::isPackedVectorTy(ElementVT) || ElementVT == MVT::v4i8)
5869 return SDValue();
5870
5871 // Check whether all outputs are either used by an extractelt or are
5872 // glue/chain nodes
5873 if (!all_of(N->uses(), [&](SDUse &U) {
5874 // Skip glue, chain nodes
5875 if (U.getValueType() == MVT::Glue || U.getValueType() == MVT::Other)
5876 return true;
5877 if (U.getUser()->getOpcode() == ISD::EXTRACT_VECTOR_ELT) {
5878 if (N->getOpcode() != ISD::LOAD)
5879 return true;
5880 // Since this is an ISD::LOAD, check all extractelts are used. If
5881 // any are not used, we don't want to defeat another optimization that
5882 // will narrow the load.
5883 //
5884 // For example:
5885 //
5886 // L: v2f16,ch = load <p>
5887 // e0: f16 = extractelt L:0, 0
5888 // e1: f16 = extractelt L:0, 1 <-- unused
5889 // store e0
5890 //
5891 // Can be optimized by DAGCombiner to:
5892 //
5893 // L: f16,ch = load <p>
5894 // store L:0
5895 return !U.getUser()->use_empty();
5896 }
5897
5898 // Otherwise, this use prevents us from splitting a value.
5899 return false;
5900 }))
5901 return SDValue();
5902
5903 auto *LD = cast<MemSDNode>(N);
5904 SDLoc DL(LD);
5905
5906 // the new opcode after we double the number of operands
5907 unsigned Opcode;
5909 unsigned OldNumOutputs; // non-glue, non-chain outputs
5910 switch (LD->getOpcode()) {
5911 case ISD::LOAD:
5912 OldNumOutputs = 1;
5913 // Any packed type is legal, so the legalizer will not have lowered
5914 // ISD::LOAD -> NVPTXISD::Load (unless it's under-aligned). We have to do it
5915 // here.
5916 Opcode = NVPTXISD::LoadV2;
5917 // append a "full" used bytes mask operand right before the extension type
5918 // operand, signifying that all bytes are used.
5919 Operands.push_back(DCI.DAG.getConstant(UINT32_MAX, DL, MVT::i32));
5920 Operands.push_back(DCI.DAG.getIntPtrConstant(
5921 cast<LoadSDNode>(LD)->getExtensionType(), DL));
5922 break;
5923 case NVPTXISD::LoadV2:
5924 OldNumOutputs = 2;
5925 Opcode = NVPTXISD::LoadV4;
5926 break;
5927 case NVPTXISD::LoadV4:
5928 // V8 is only supported for f32/i32. Don't forget, we're not changing the
5929 // load size here. This is already a 256-bit load.
5930 if (ElementVT != MVT::v2f32 && ElementVT != MVT::v2i32)
5931 return SDValue();
5932 OldNumOutputs = 4;
5933 Opcode = NVPTXISD::LoadV8;
5934 break;
5935 case NVPTXISD::LoadV8:
5936 // PTX doesn't support the next doubling of outputs
5937 return SDValue();
5938 }
5939
5940 // the non-glue, non-chain outputs in the new load
5941 const unsigned NewNumOutputs = OldNumOutputs * 2;
5942 SmallVector<EVT> NewVTs(NewNumOutputs, ElementVT.getVectorElementType());
5943 // add remaining chain and glue values
5944 NewVTs.append(LD->value_begin() + OldNumOutputs, LD->value_end());
5945
5946 // Create the new load
5947 SDValue NewLoad = DCI.DAG.getMemIntrinsicNode(
5948 Opcode, DL, DCI.DAG.getVTList(NewVTs), Operands, LD->getMemoryVT(),
5949 LD->getMemOperand());
5950
5951 // Now we use a combination of BUILD_VECTORs and a MERGE_VALUES node to keep
5952 // the outputs the same. These nodes will be optimized away in later
5953 // DAGCombiner iterations.
5955 for (unsigned I : seq(OldNumOutputs))
5956 Results.push_back(DCI.DAG.getBuildVector(
5957 ElementVT, DL, {NewLoad.getValue(I * 2), NewLoad.getValue(I * 2 + 1)}));
5958 // Add remaining chain and glue nodes
5959 for (unsigned I : seq(NewLoad->getNumValues() - NewNumOutputs))
5960 Results.push_back(NewLoad.getValue(NewNumOutputs + I));
5961
5962 return DCI.DAG.getMergeValues(Results, DL);
5963}
5964
5965/// Fold packing movs into a store.
5966///
5967/// ex:
5968/// v1: v2f16 = BUILD_VECTOR a:f16, b:f16
5969/// v2: v2f16 = BUILD_VECTOR c:f16, d:f16
5970/// StoreV2 v1, v2
5971///
5972/// ...is turned into...
5973///
5974/// StoreV4 a, b, c, d
5977 unsigned Front, unsigned Back) {
5978 // We want to run this as late as possible since other optimizations may
5979 // eliminate the BUILD_VECTORs.
5980 if (!DCI.isAfterLegalizeDAG())
5981 return SDValue();
5982
5983 // Get the type of the operands being stored.
5984 EVT ElementVT = N->getOperand(Front).getValueType();
5985
5986 // Avoid non-packed types and v4i8
5987 if (!NVPTX::isPackedVectorTy(ElementVT) || ElementVT == MVT::v4i8)
5988 return SDValue();
5989
5990 auto *ST = cast<MemSDNode>(N);
5991
5992 // The new opcode after we double the number of operands.
5993 unsigned Opcode;
5994 switch (N->getOpcode()) {
5995 case ISD::STORE:
5996 // Any packed type is legal, so the legalizer will not have lowered
5997 // ISD::STORE -> NVPTXISD::Store (unless it's under-aligned). We have to do
5998 // it here.
5999 Opcode = NVPTXISD::StoreV2;
6000 break;
6001 case NVPTXISD::StoreV2:
6002 Opcode = NVPTXISD::StoreV4;
6003 break;
6004 case NVPTXISD::StoreV4:
6005 // V8 is only supported for f32/i32. Don't forget, we're not changing the
6006 // store size here. This is already a 256-bit store.
6007 if (ElementVT != MVT::v2f32 && ElementVT != MVT::v2i32)
6008 return SDValue();
6009 Opcode = NVPTXISD::StoreV8;
6010 break;
6011 case NVPTXISD::StoreV8:
6012 // PTX doesn't support the next doubling of operands
6013 return SDValue();
6014 default:
6015 llvm_unreachable("Unhandled store opcode");
6016 }
6017
6018 // Scan the operands and if they're all BUILD_VECTORs, we'll have gathered
6019 // their elements.
6020 SmallVector<SDValue, 4> Operands(N->ops().take_front(Front));
6021 for (SDValue BV : N->ops().drop_front(Front).drop_back(Back)) {
6022 if (BV.getOpcode() != ISD::BUILD_VECTOR)
6023 return SDValue();
6024
6025 // If the operand has multiple uses, this optimization can increase register
6026 // pressure.
6027 if (!BV.hasOneUse())
6028 return SDValue();
6029
6030 // DAGCombiner visits nodes bottom-up. Check the BUILD_VECTOR operands for
6031 // any signs they may be folded by some other pattern or rule.
6032 for (SDValue Op : BV->ops()) {
6033 // Peek through bitcasts
6034 if (Op.getOpcode() == ISD::BITCAST)
6035 Op = Op.getOperand(0);
6036
6037 // This may be folded into a PRMT.
6038 if (Op.getValueType() == MVT::i16 && Op.getOpcode() == ISD::TRUNCATE &&
6039 Op->getOperand(0).getValueType() == MVT::i32)
6040 return SDValue();
6041
6042 // This may be folded into cvt.bf16x2
6043 if (Op.getOpcode() == ISD::FP_ROUND)
6044 return SDValue();
6045 }
6046 Operands.append({BV.getOperand(0), BV.getOperand(1)});
6047 }
6048 Operands.append(N->op_end() - Back, N->op_end());
6049
6050 // Now we replace the store
6051 return DCI.DAG.getMemIntrinsicNode(Opcode, SDLoc(N), N->getVTList(), Operands,
6052 ST->getMemoryVT(), ST->getMemOperand());
6053}
6054
6056 const NVPTXSubtarget &STI) {
6057
6058 if (DCI.isBeforeLegalize() && N->getOpcode() == ISD::STORE) {
6059 // Here is our chance to custom lower a store with a non-simple type.
6060 // Unfortunately, we can't do this in the legalizer because there is no
6061 // way to setOperationAction for an non-simple type.
6063 if (!ST->getValue().getValueType().isSimple())
6064 return lowerSTOREVector(SDValue(ST, 0), DCI.DAG, STI);
6065 }
6066
6067 return combinePackingMovIntoStore(N, DCI, 1, 2);
6068}
6069
6071 const NVPTXSubtarget &STI) {
6072 if (DCI.isBeforeLegalize() && N->getOpcode() == ISD::LOAD) {
6073 // Here is our chance to custom lower a load with a non-simple type.
6074 // Unfortunately, we can't do this in the legalizer because there is no
6075 // way to setOperationAction for an non-simple type.
6076 if (!N->getValueType(0).isSimple())
6077 return lowerLoadVector(N, DCI.DAG, STI);
6078 }
6079
6080 return combineUnpackingMovIntoLoad(N, DCI);
6081}
6082
6083/// PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
6084///
6087 CodeGenOptLevel OptLevel) {
6088 if (OptLevel == CodeGenOptLevel::None)
6089 return SDValue();
6090
6091 SDValue N0 = N->getOperand(0);
6092 SDValue N1 = N->getOperand(1);
6093
6094 // Skip non-integer, non-scalar case
6095 EVT VT = N0.getValueType();
6096 if (VT.isVector() || VT != MVT::i32)
6097 return SDValue();
6098
6099 // First try with the default operand order.
6100 if (SDValue Result = PerformADDCombineWithOperands(N, N0, N1, DCI))
6101 return Result;
6102
6103 // If that didn't work, try again with the operands commuted.
6104 return PerformADDCombineWithOperands(N, N1, N0, DCI);
6105}
6106
6107/// Check if a v2f32 BUILD_VECTOR provably packs values from non-adjacent
6108/// register pairs (non-coalescable).
6109static bool isNonCoalescableBuildVector(const SDValue &BV) {
6110 if (BV.getOpcode() != ISD::BUILD_VECTOR || BV.getValueType() != MVT::v2f32)
6111 return false;
6112
6113 SDValue Elt0 = BV.getOperand(0);
6114 SDValue Elt1 = BV.getOperand(1);
6115
6116 bool IsExt0 = Elt0.getOpcode() == ISD::EXTRACT_VECTOR_ELT;
6117 bool IsExt1 = Elt1.getOpcode() == ISD::EXTRACT_VECTOR_ELT;
6118
6119 // If neither element is an EXTRACT_VECTOR_ELT they are free-standing
6120 // scalars and the register allocator can still place them side-by-side.
6121 if (!IsExt0 && !IsExt1)
6122 return false;
6123
6124 // If exactly one element is an EXTRACT_VECTOR_ELT, the other is a scalar
6125 // that cannot generally occupy the adjacent register slot.
6126 if (IsExt0 != IsExt1)
6127 return true;
6128
6129 // At this point both sources are extracting from vectors. If they are from
6130 // different vectors, then the BUILD_VECTOR is non-coalescable.
6131 SDValue Src0 = Elt0.getOperand(0);
6132 SDValue Src1 = Elt1.getOperand(0);
6133 if (Src0 != Src1)
6134 return true;
6135
6136 auto *Idx0 = dyn_cast<ConstantSDNode>(Elt0.getOperand(1));
6137 auto *Idx1 = dyn_cast<ConstantSDNode>(Elt1.getOperand(1));
6138 // If both indices are dynamic they will be lowered to
6139 // loads and the vector will be spilled to local memory. The register
6140 // allocator can easily place the results in adjacent registers.
6141 if (!Idx0 && !Idx1)
6142 return false;
6143
6144 // If one index is dynamic and the other is constant, the value from the
6145 // constant load will result in an additional register to pair with the result
6146 // from the dynamic load. We consider this non-coalescable.
6147 if ((Idx0 && !Idx1) || (!Idx0 && Idx1))
6148 return true;
6149
6150 // Both are constant, adjacent pairs are coalescable
6151 return std::abs(Idx0->getSExtValue() - Idx1->getSExtValue()) != 1;
6152}
6153
6154/// Return true if FMUL v2f32 node \p N may be scalarized to fold each lane's
6155/// product into a scalar FMA.
6156bool NVPTXTargetLowering::mayFoldFMULIntoFMA(SDNode *N, MachineFunction &MF,
6157 CodeGenOptLevel OptLevel) const {
6158 if (N->getOpcode() != ISD::FMUL || N->getValueType(0) != MVT::v2f32)
6159 return false;
6160 const bool GlobalFMA = allowFMA(MF, OptLevel);
6161 if (!N->getFlags().hasAllowContract() && !GlobalFMA)
6162 return false;
6163
6164 const SDNode *FirstFAdd = nullptr;
6165 unsigned NumScalarFAdd = 0;
6166
6167 // Both lanes must feed unique FADDs
6168 for (SDNode *EE : N->users()) {
6169 if (NumScalarFAdd == 2)
6170 return false;
6171
6172 if (EE->getOpcode() != ISD::EXTRACT_VECTOR_ELT || !EE->hasOneUse() ||
6173 !isa<ConstantSDNode>(EE->getOperand(1)))
6174 return false;
6175
6176 const SDNode *const FAdd = *EE->users().begin();
6177 if (FAdd->getOpcode() != ISD::FADD ||
6178 (!GlobalFMA && !FAdd->getFlags().hasAllowContract()))
6179 return false;
6180
6181 if (!FirstFAdd)
6182 FirstFAdd = FAdd;
6183 else if (FAdd == FirstFAdd)
6184 return false;
6185
6186 NumScalarFAdd++;
6187 }
6188
6189 return NumScalarFAdd == 2;
6190}
6191
6192/// Scalarize a v2f32 arithmetic node (FADD, FMUL, FSUB, FMA) when at least
6193/// one operand is a BUILD_VECTOR that repacks values from non-adjacent register
6194/// pairs. Without this combine the BUILD_VECTOR forces allocation of a
6195/// temporary 64-bit register, increasing register pressure.
6196///
6197/// Example - before:
6198/// t0: v2f32,v2f32,ch = LoadV2 ...
6199/// t1: f32 = extract_vector_elt t0, 0
6200/// t2: f32 = extract_vector_elt t0:1, 0
6201/// t3: v2f32 = BUILD_VECTOR t1, t2 ;; non-coalescable repack
6202/// t4: v2f32 = fma t_a, t3, t_c
6203///
6204/// After:
6205/// t0: v2f32,v2f32,ch = LoadV2 ...
6206/// t1: f32 = extract_vector_elt t0, 0
6207/// t2: f32 = extract_vector_elt t0:1, 0
6208/// a0: f32 = extract_vector_elt t_a, 0
6209/// a1: f32 = extract_vector_elt t_a, 1
6210/// c0: f32 = extract_vector_elt t_c, 0
6211/// c1: f32 = extract_vector_elt t_c, 1
6212/// r0: f32 = fma a0, t1, c0
6213/// r1: f32 = fma a1, t2, c1
6214/// t4: v2f32 = BUILD_VECTOR r0, r1
6215///
6216/// Also scalarizes an FMUL when all output lanes feed into scalar FADDs
6217/// to enable scalar FMA combining.
6218SDValue NVPTXTargetLowering::performScalarizeV2F32Op(
6220 CodeGenOptLevel OptLevel) const {
6221 EVT VT = N->getValueType(0);
6222 if (VT != MVT::v2f32)
6223 return SDValue();
6224
6225 if (none_of(N->ops(), isNonCoalescableBuildVector) &&
6226 !mayFoldFMULIntoFMA(N, DCI.DAG.getMachineFunction(), OptLevel))
6227 return SDValue();
6228
6229 SelectionDAG &DAG = DCI.DAG;
6230 SDLoc DL(N);
6231 EVT EltVT = VT.getVectorElementType();
6232 unsigned Opc = N->getOpcode();
6233
6234 // For each operand, get the scalar element at the given index: if the operand
6235 // is a BUILD_VECTOR, grab the element directly; otherwise, emit an
6236 // EXTRACT_VECTOR_ELT.
6237 auto GetElement = [&](SDValue Op, unsigned Index) -> SDValue {
6238 if (Op.getOpcode() == ISD::BUILD_VECTOR)
6239 return Op.getOperand(Index);
6240 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Op,
6241 DAG.getVectorIdxConstant(Index, DL));
6242 };
6243
6244 // Build scalar operand lists for element 0 and element 1.
6245 SmallVector<SDValue, 3> Ops0, Ops1;
6246 for (const SDValue &Op : N->ops()) {
6247 Ops0.push_back(GetElement(Op, 0));
6248 Ops1.push_back(GetElement(Op, 1));
6249 }
6250
6251 SDValue Res0 = DAG.getNode(Opc, DL, EltVT, Ops0, N->getFlags());
6252 SDValue Res1 = DAG.getNode(Opc, DL, EltVT, Ops1, N->getFlags());
6253
6254 return DAG.getNode(ISD::BUILD_VECTOR, DL, VT, Res0, Res1);
6255}
6256
6257/// Target-specific dag combine xforms for ISD::FADD.
6258SDValue
6259NVPTXTargetLowering::performFADDCombine(SDNode *N,
6261 CodeGenOptLevel OptLevel) const {
6262 if (SDValue Result = performScalarizeV2F32Op(N, DCI, OptLevel))
6263 return Result;
6264
6265 SDValue N0 = N->getOperand(0);
6266 SDValue N1 = N->getOperand(1);
6267
6268 EVT VT = N0.getValueType();
6269 if (VT.isVector() || !(VT == MVT::f32 || VT == MVT::f64))
6270 return SDValue();
6271
6272 // First try with the default operand order.
6273 if (SDValue Result = performFADDCombineWithOperands(N, N0, N1, DCI, OptLevel))
6274 return Result;
6275
6276 // If that didn't work, try again with the operands commuted.
6277 return performFADDCombineWithOperands(N, N1, N0, DCI, OptLevel);
6278}
6279
6280/// Get 3-input version of a 2-input min/max opcode
6281static unsigned getMinMax3Opcode(unsigned MinMax2Opcode) {
6282 switch (MinMax2Opcode) {
6283 case ISD::FMAXNUM:
6284 case ISD::FMAXIMUMNUM:
6285 return NVPTXISD::FMAXNUM3;
6286 case ISD::FMINNUM:
6287 case ISD::FMINIMUMNUM:
6288 return NVPTXISD::FMINNUM3;
6289 case ISD::FMAXIMUM:
6290 return NVPTXISD::FMAXIMUM3;
6291 case ISD::FMINIMUM:
6292 return NVPTXISD::FMINIMUM3;
6293 default:
6294 llvm_unreachable("Invalid 2-input min/max opcode");
6295 }
6296}
6297
6298/// PerformFMinMaxCombine - Combine (fmaxnum (fmaxnum a, b), c) into
6299/// (fmaxnum3 a, b, c). Also covers other llvm min/max intrinsics.
6302 const NVPTXSubtarget &STI) {
6303
6304 // 3-input min/max requires PTX 8.8+ and SM_100+, and only supports f32s
6305 EVT VT = N->getValueType(0);
6306 if (VT != MVT::f32 || !STI.hasFeature(NVPTX::PTX88) ||
6307 !STI.hasFeature(NVPTX::SM100))
6308 return SDValue();
6309
6310 SDValue Op0 = N->getOperand(0);
6311 SDValue Op1 = N->getOperand(1);
6312 unsigned MinMaxOp2 = N->getOpcode();
6313 unsigned MinMaxOp3 = getMinMax3Opcode(MinMaxOp2);
6314
6315 if (Op0.getOpcode() == MinMaxOp2 && Op0.hasOneUse()) {
6316 // (maxnum (maxnum a, b), c) -> (maxnum3 a, b, c)
6317 SDValue A = Op0.getOperand(0);
6318 SDValue B = Op0.getOperand(1);
6319 SDValue C = Op1;
6320 return DCI.DAG.getNode(MinMaxOp3, SDLoc(N), VT, A, B, C, N->getFlags());
6321 } else if (Op1.getOpcode() == MinMaxOp2 && Op1.hasOneUse()) {
6322 // (maxnum a, (maxnum b, c)) -> (maxnum3 a, b, c)
6323 SDValue A = Op0;
6324 SDValue B = Op1.getOperand(0);
6325 SDValue C = Op1.getOperand(1);
6326 return DCI.DAG.getNode(MinMaxOp3, SDLoc(N), VT, A, B, C, N->getFlags());
6327 }
6328 return SDValue();
6329}
6330
6333 CodeGenOptLevel OptLevel) {
6334 assert(N->getOpcode() == ISD::SREM || N->getOpcode() == ISD::UREM);
6335
6336 // Don't do anything at less than -O2.
6337 if (OptLevel < CodeGenOptLevel::Default)
6338 return SDValue();
6339
6340 SelectionDAG &DAG = DCI.DAG;
6341 SDLoc DL(N);
6342 EVT VT = N->getValueType(0);
6343 bool IsSigned = N->getOpcode() == ISD::SREM;
6344 unsigned DivOpc = IsSigned ? ISD::SDIV : ISD::UDIV;
6345
6346 const SDValue &Num = N->getOperand(0);
6347 const SDValue &Den = N->getOperand(1);
6348
6349 for (const SDNode *U : Num->users()) {
6350 if (U->getOpcode() == DivOpc && U->getOperand(0) == Num &&
6351 U->getOperand(1) == Den) {
6352 // Num % Den -> Num - (Num / Den) * Den
6353 return DAG.getNode(ISD::SUB, DL, VT, Num,
6354 DAG.getNode(ISD::MUL, DL, VT,
6355 DAG.getNode(DivOpc, DL, VT, Num, Den),
6356 Den));
6357 }
6358 }
6359 return SDValue();
6360}
6361
6362// sext (mul.iN nsw x, y) => mul.wide.sN x, y
6363// zext (mul.iN nuw x, y) => mul.wide.uN x, y
6364// sext (shl.iN nsw x, const) => mul.wide.sN x, (1 << const)
6365// zext (shl.iN nuw x, const) => mul.wide.uN x, (1 << const)
6368 CodeGenOptLevel OptLevel) {
6369 assert(N->getOpcode() == ISD::SIGN_EXTEND ||
6370 N->getOpcode() == ISD::ZERO_EXTEND);
6371
6372 if (OptLevel == CodeGenOptLevel::None)
6373 return SDValue();
6374
6375 SDValue Op = N->getOperand(0);
6376 if (!Op.hasOneUse())
6377 return SDValue();
6378
6379 EVT ToVT = N->getValueType(0);
6380 EVT FromVT = Op.getValueType();
6381 if (!((ToVT == MVT::i32 && FromVT == MVT::i16) ||
6382 (ToVT == MVT::i64 && FromVT == MVT::i32)))
6383 return SDValue();
6384
6385 bool IsSigned = N->getOpcode() == ISD::SIGN_EXTEND;
6386 if ((IsSigned && !Op->getFlags().hasNoSignedWrap()) ||
6387 (!IsSigned && !Op->getFlags().hasNoUnsignedWrap()))
6388 return SDValue();
6389
6390 SDLoc DL(N);
6391 SDValue LHS = Op.getOperand(0);
6392 SDValue RHS = Op.getOperand(1);
6393 unsigned MulWideOpcode =
6394 IsSigned ? NVPTXISD::MUL_WIDE_SIGNED : NVPTXISD::MUL_WIDE_UNSIGNED;
6395 if (Op.getOpcode() == ISD::MUL) {
6396 return DCI.DAG.getNode(MulWideOpcode, DL, ToVT, LHS, RHS);
6397 } else if (Op.getOpcode() == ISD::SHL && isa<ConstantSDNode>(RHS)) {
6398 const auto ShiftAmt = Op.getConstantOperandVal(1);
6399 const auto MulVal = APInt(FromVT.getSizeInBits(), 1) << ShiftAmt;
6400
6401 // Note that the sext (shl nsw ...) case doesn't work if 1 << const
6402 // overflows to a negative value! The only valid input values in this
6403 // case are 0 and -1 (all other values yield poison because of the nsw),
6404 // and mul.wide.sN would give us the wrong sign for -1. We could use
6405 // mul.wide.uN, but since this is a weird case anyway, we might as well not
6406 // apply this transformation at all.
6407 if (IsSigned && MulVal.isNegative())
6408 return SDValue();
6409
6410 RHS = DCI.DAG.getConstant(MulVal, DL, FromVT);
6411 return DCI.DAG.getNode(MulWideOpcode, DL, ToVT, LHS, RHS);
6412 }
6413
6414 return SDValue();
6415}
6416
6422
6423/// IsMulWideOperandDemotable - Checks if the provided DAG node is an operand
6424/// that can be demoted to \p OptSize bits without loss of information. The
6425/// signedness of the operand, if determinable, is placed in \p S.
6427 unsigned OptSize,
6428 OperandSignedness &S) {
6429 S = Unknown;
6430
6431 if (Op.getOpcode() == ISD::SIGN_EXTEND ||
6432 Op.getOpcode() == ISD::SIGN_EXTEND_INREG) {
6433 EVT OrigVT = Op.getOperand(0).getValueType();
6434 if (OrigVT.getFixedSizeInBits() <= OptSize) {
6435 S = Signed;
6436 return true;
6437 }
6438 } else if (Op.getOpcode() == ISD::ZERO_EXTEND) {
6439 EVT OrigVT = Op.getOperand(0).getValueType();
6440 if (OrigVT.getFixedSizeInBits() <= OptSize) {
6441 S = Unsigned;
6442 return true;
6443 }
6444 }
6445
6446 return false;
6447}
6448
6449/// AreMulWideOperandsDemotable - Checks if the given LHS and RHS operands can
6450/// be demoted to \p OptSize bits without loss of information. If the operands
6451/// contain a constant, it should appear as the RHS operand. The signedness of
6452/// the operands is placed in \p IsSigned.
6454 unsigned OptSize,
6455 bool &IsSigned) {
6456 OperandSignedness LHSSign;
6457
6458 // The LHS operand must be a demotable op
6459 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign))
6460 return false;
6461
6462 // We should have been able to determine the signedness from the LHS
6463 if (LHSSign == Unknown)
6464 return false;
6465
6466 IsSigned = (LHSSign == Signed);
6467
6468 // The RHS can be a demotable op or a constant
6470 const APInt &Val = CI->getAPIntValue();
6471 if (LHSSign == Unsigned) {
6472 return Val.isIntN(OptSize);
6473 } else {
6474 return Val.isSignedIntN(OptSize);
6475 }
6476 } else {
6477 OperandSignedness RHSSign;
6478 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSign))
6479 return false;
6480
6481 return LHSSign == RHSSign;
6482 }
6483}
6484
6485/// TryMULWIDECombine - Attempt to replace a multiply of M bits with a multiply
6486/// of M/2 bits that produces an M-bit result (i.e. mul.wide). This transform
6487/// works on both multiply DAG nodes and SHL DAG nodes with a constant shift
6488/// amount.
6491 EVT MulType = N->getValueType(0);
6492 if (MulType != MVT::i32 && MulType != MVT::i64) {
6493 return SDValue();
6494 }
6495
6496 SDLoc DL(N);
6497 unsigned OptSize = MulType.getSizeInBits() >> 1;
6498 SDValue LHS = N->getOperand(0);
6499 SDValue RHS = N->getOperand(1);
6500
6501 // Canonicalize the multiply so the constant (if any) is on the right
6502 if (N->getOpcode() == ISD::MUL) {
6503 if (isa<ConstantSDNode>(LHS)) {
6504 std::swap(LHS, RHS);
6505 }
6506 }
6507
6508 // If we have a SHL, determine the actual multiply amount
6509 if (N->getOpcode() == ISD::SHL) {
6511 if (!ShlRHS) {
6512 return SDValue();
6513 }
6514
6515 APInt ShiftAmt = ShlRHS->getAPIntValue();
6516 unsigned BitWidth = MulType.getSizeInBits();
6517 if (ShiftAmt.sge(0) && ShiftAmt.slt(BitWidth)) {
6518 APInt MulVal = APInt(BitWidth, 1) << ShiftAmt;
6519 RHS = DCI.DAG.getConstant(MulVal, DL, MulType);
6520 } else {
6521 return SDValue();
6522 }
6523 }
6524
6525 bool Signed;
6526 // Verify that our operands are demotable
6527 if (!AreMulWideOperandsDemotable(LHS, RHS, OptSize, Signed)) {
6528 return SDValue();
6529 }
6530
6531 EVT DemotedVT;
6532 if (MulType == MVT::i32) {
6533 DemotedVT = MVT::i16;
6534 } else {
6535 DemotedVT = MVT::i32;
6536 }
6537
6538 // Truncate the operands to the correct size. Note that these are just for
6539 // type consistency and will (likely) be eliminated in later phases.
6540 SDValue TruncLHS =
6541 DCI.DAG.getNode(ISD::TRUNCATE, DL, DemotedVT, LHS);
6542 SDValue TruncRHS =
6543 DCI.DAG.getNode(ISD::TRUNCATE, DL, DemotedVT, RHS);
6544
6545 unsigned Opc;
6546 if (Signed) {
6547 Opc = NVPTXISD::MUL_WIDE_SIGNED;
6548 } else {
6549 Opc = NVPTXISD::MUL_WIDE_UNSIGNED;
6550 }
6551
6552 return DCI.DAG.getNode(Opc, DL, MulType, TruncLHS, TruncRHS);
6553}
6554
6555static bool isConstOne(const SDValue &Operand) {
6556 const auto *Const = dyn_cast<ConstantSDNode>(Operand);
6557 return Const && Const->getZExtValue() == 1;
6558}
6559
6561 if (Add->getOpcode() != ISD::ADD)
6562 return SDValue();
6563
6564 if (isConstOne(Add->getOperand(0)))
6565 return Add->getOperand(1);
6566
6567 if (isConstOne(Add->getOperand(1)))
6568 return Add->getOperand(0);
6569
6570 return SDValue();
6571}
6572
6575
6577 SDValue Mul = DCI.DAG.getNode(ISD::MUL, DL, VT, X, Y);
6578 return DCI.DAG.getNode(ISD::ADD, DL, VT, Mul, X);
6579 }
6580
6581 return SDValue();
6582}
6583
6585 SDLoc DL,
6587 if (Select->getOpcode() != ISD::SELECT)
6588 return SDValue();
6589
6590 SDValue Cond = Select->getOperand(0);
6591
6592 unsigned ConstOpNo;
6593 if (isConstOne(Select->getOperand(1)))
6594 ConstOpNo = 1;
6595 else if (isConstOne(Select->getOperand(2)))
6596 ConstOpNo = 2;
6597 else
6598 return SDValue();
6599
6600 SDValue Y = Select->getOperand((ConstOpNo == 1) ? 2 : 1);
6601
6602 // Do not combine if the resulting sequence is not obviously profitable.
6604 return SDValue();
6605
6606 SDValue NewMul = DCI.DAG.getNode(ISD::MUL, DL, VT, X, Y);
6607
6608 return DCI.DAG.getNode(ISD::SELECT, DL, VT, Cond,
6609 (ConstOpNo == 1) ? X : NewMul,
6610 (ConstOpNo == 1) ? NewMul : X);
6611}
6612
6613static SDValue
6616
6617 EVT VT = N0.getValueType();
6618 if (VT.isVector())
6619 return SDValue();
6620
6621 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
6622 return SDValue();
6623
6624 SDLoc DL(N);
6625
6626 // (mul x, (add y, 1)) -> (add (mul x, y), x)
6627 if (SDValue Res = combineMADConstOne(N0, N1, VT, DL, DCI))
6628 return Res;
6629 if (SDValue Res = combineMADConstOne(N1, N0, VT, DL, DCI))
6630 return Res;
6631
6632 // (mul x, (select y, 1)) -> (select (mul x, y), x)
6633 if (SDValue Res = combineMulSelectConstOne(N0, N1, VT, DL, DCI))
6634 return Res;
6635 if (SDValue Res = combineMulSelectConstOne(N1, N0, VT, DL, DCI))
6636 return Res;
6637
6638 return SDValue();
6639}
6640
6641/// PerformMULCombine - Runs PTX-specific DAG combine patterns on MUL nodes.
6644 CodeGenOptLevel OptLevel) {
6645 if (OptLevel == CodeGenOptLevel::None)
6646 return SDValue();
6647
6648 if (SDValue Ret = TryMULWIDECombine(N, DCI))
6649 return Ret;
6650
6651 SDValue N0 = N->getOperand(0);
6652 SDValue N1 = N->getOperand(1);
6653 return PerformMULCombineWithOperands(N, N0, N1, DCI);
6654}
6655
6656/// Commute SHL with a bitwise logic operation when doing so exposes a common
6657/// shifted operand. For example:
6658///
6659/// Before:
6660/// N = shl (zext (LogicOp X, C)), ShiftAmount
6661/// OtherShift = shl (zext (OtherLogicOp X, OtherC)), ShiftAmount
6662///
6663/// After:
6664/// ShiftedX = shl (zext X), ShiftAmount
6665/// N = LogicOp ShiftedX, ShiftedC
6666/// OtherShift = OtherLogicOp ShiftedX, ShiftedOtherC
6667///
6668/// ShiftedC = (zext C) << ShiftAmount and ShiftedOtherC =
6669/// (zext OtherC) << ShiftAmount are folded constants. This replaces two
6670/// variable shifts with the single shared ShiftedX. Requiring another matching
6671/// shift avoids disrupting isolated address calculations where a shift may be
6672/// folded into the addressing mode.
6675 using namespace SDPatternMatch;
6676
6677 struct ShiftOfLogicOp {
6678 SDNode *Shift;
6679 SDValue LogicOp;
6680 SDValue X;
6682 unsigned ExtendOpcode;
6683 };
6684
6685 // Match a logic operation, with an optional extension, inside a SHL.
6686 auto matchShiftOfLogicOp =
6687 [&](SDNode *Shift) -> std::optional<ShiftOfLogicOp> {
6688 if (Shift->getOpcode() != ISD::SHL || !Shift->getOperand(0).hasOneUse())
6689 return std::nullopt;
6690 ShiftOfLogicOp Match;
6691 Match.Shift = Shift;
6692 Match.LogicOp = Shift->getOperand(0);
6693 Match.ExtendOpcode = 0;
6694 if (ISD::isExtOpcode(Match.LogicOp.getOpcode())) {
6695 Match.ExtendOpcode = Match.LogicOp.getOpcode();
6696 Match.LogicOp = Match.LogicOp.getOperand(0);
6697 }
6698
6699 if (!sd_match(Match.LogicOp, m_OneUse(m_BitwiseLogic(
6700 m_Value(Match.X),
6701 m_Value(Match.Constant, m_ConstInt())))))
6702 return std::nullopt;
6703
6704 return Match;
6705 };
6706
6707 // Match N as the root shift-of-logic; bail if it does not fit the pattern.
6708 const std::optional<ShiftOfLogicOp> Root = matchShiftOfLogicOp(N);
6709 if (!Root)
6710 return SDValue();
6711
6712 // Only profitable for a constant shift amount: the per-op constant shift then
6713 // folds away instead of becoming an extra variable shift.
6714 if (!isConstOrConstSplat(N->getOperand(1)))
6715 return SDValue();
6716
6717 // Collect candidate shifts that share X. Reached through another user of X,
6718 // the logic result feeds the shift directly or through an optional extend.
6719 SmallVector<SDNode *, 4> CandidateShifts;
6720 for (const SDNode *CandidateLogicOp : Root->X->users()) {
6721 if (CandidateLogicOp == Root->LogicOp.getNode())
6722 continue;
6723 for (SDNode *LogicUser : CandidateLogicOp->users()) {
6724 if (ISD::isExtOpcode(LogicUser->getOpcode())) {
6725 // shl (ext (logic X, C)): step through the extend to find the shift.
6726 for (SDNode *ExtendUser : LogicUser->users())
6727 if (ExtendUser->getOpcode() == ISD::SHL)
6728 CandidateShifts.push_back(ExtendUser);
6729 } else if (LogicUser->getOpcode() == ISD::SHL) {
6730 // shl (logic X, C): the user is already the shift.
6731 CandidateShifts.push_back(LogicUser);
6732 }
6733 }
6734 }
6735
6736 // Verify each candidate against the root's pattern: the same X, extension,
6737 // type, and shift amount.
6738 const EVT VT = N->getValueType(0);
6739 const SDValue ShiftAmount = N->getOperand(1);
6741 for (SDNode *CandidateShift : CandidateShifts) {
6742 const std::optional<ShiftOfLogicOp> Candidate =
6743 matchShiftOfLogicOp(CandidateShift);
6744 if (Candidate && Candidate->X == Root->X &&
6745 Candidate->ExtendOpcode == Root->ExtendOpcode &&
6746 CandidateShift->getValueType(0) == VT &&
6747 CandidateShift->getOperand(1) == ShiftAmount)
6748 Matches.push_back(*Candidate);
6749 }
6750 if (Matches.empty())
6751 return SDValue();
6752
6753 // Build the shared shifted X once, then rewrite the root and every match
6754 // into a logic op over it so the shift is CSE'd.
6755 SelectionDAG &DAG = DCI.DAG;
6756 const SDValue ShiftedX =
6757 DAG.getNode(ISD::SHL, SDLoc(N), VT,
6758 Root->ExtendOpcode
6759 ? DAG.getNode(Root->ExtendOpcode, SDLoc(N), VT, Root->X)
6760 : Root->X,
6761 ShiftAmount);
6762
6763 // Rebuild the logic op from shared ShiftedX and a folded constant shift.
6764 auto buildCommutedLogicOp = [&](const SDValue LogicOp, SDValue C,
6765 const SDLoc &DL) {
6766 if (Root->ExtendOpcode)
6767 C = DAG.getNode(Root->ExtendOpcode, DL, VT, C);
6768 const SDValue ShiftedC = DAG.getNode(ISD::SHL, DL, VT, C, ShiftAmount);
6769 return DAG.getNode(LogicOp.getOpcode(), DL, VT, ShiftedX, ShiftedC,
6770 LogicOp->getFlags());
6771 };
6772
6773 for (const ShiftOfLogicOp &Match : Matches)
6774 DCI.CombineTo(Match.Shift,
6775 buildCommutedLogicOp(Match.LogicOp, Match.Constant,
6776 SDLoc(Match.Shift)));
6777 return buildCommutedLogicOp(Root->LogicOp, Root->Constant, SDLoc(N));
6778}
6779
6780/// PerformSHLCombine - Runs PTX-specific DAG combine patterns on SHL nodes.
6783 CodeGenOptLevel OptLevel) {
6784 if (OptLevel > CodeGenOptLevel::None) {
6785 // Expose a shared shifted operand for CSE before mul.wide folding, which
6786 // would otherwise consume the shift.
6787 if (SDValue Ret = combineShiftOfLogicOp(N, DCI))
6788 return Ret;
6789
6790 // Try mul.wide combining at OptLevel > 0
6791 if (SDValue Ret = TryMULWIDECombine(N, DCI))
6792 return Ret;
6793 }
6794
6795 return SDValue();
6796}
6797
6800 const NVPTXSubtarget &STI) {
6801 EVT CCType = N->getValueType(0);
6802 SDValue A = N->getOperand(0);
6803 SDValue B = N->getOperand(1);
6804
6805 EVT AType = A.getValueType();
6806 if (!(CCType == MVT::v2i1 && (AType == MVT::v2f16 || AType == MVT::v2bf16)))
6807 return SDValue();
6808
6809 if (A.getValueType() == MVT::v2bf16 && !STI.hasFeature(NVPTX::SM90))
6810 return SDValue();
6811
6812 SDLoc DL(N);
6813 // setp.f16x2 returns two scalar predicates, which we need to
6814 // convert back to v2i1. The returned result will be scalarized by
6815 // the legalizer, but the comparison will remain a single vector
6816 // instruction.
6817 SDValue CCNode = DCI.DAG.getNode(
6818 A.getValueType() == MVT::v2f16 ? NVPTXISD::SETP_F16X2
6820 DL, DCI.DAG.getVTList(MVT::i1, MVT::i1), {A, B, N->getOperand(2)});
6821 return DCI.DAG.getNode(ISD::BUILD_VECTOR, DL, CCType, CCNode.getValue(0),
6822 CCNode.getValue(1));
6823}
6824
6827 SDValue Vector = peekThroughFreeze(N->getOperand(0));
6828 SDLoc DL(N);
6829 EVT VectorVT = Vector.getValueType();
6830 if (Vector->getOpcode() == ISD::LOAD && VectorVT.isSimple() &&
6831 IsPTXVectorType(VectorVT.getSimpleVT()))
6832 return SDValue(); // Native vector loads already combine nicely w/
6833 // extract_vector_elt.
6834 // Don't mess with singletons or packed types (v2*32, v2*16, v4i8 and v8i8),
6835 // we already handle them OK.
6836 if (VectorVT.getVectorNumElements() == 1 ||
6837 NVPTX::isPackedVectorTy(VectorVT) || VectorVT == MVT::v8i8)
6838 return SDValue();
6839
6840 // Don't mess with undef values as sra may be simplified to 0, not undef.
6841 if (Vector->isUndef() || ISD::allOperandsUndef(Vector.getNode()))
6842 return SDValue();
6843
6844 uint64_t VectorBits = VectorVT.getSizeInBits();
6845 // We only handle the types we can extract in-register.
6846 if (!(VectorBits == 16 || VectorBits == 32 || VectorBits == 64))
6847 return SDValue();
6848
6849 ConstantSDNode *Index = dyn_cast<ConstantSDNode>(N->getOperand(1));
6850 // Index == 0 is handled by generic DAG combiner.
6851 if (!Index || Index->getZExtValue() == 0)
6852 return SDValue();
6853
6854 MVT IVT = MVT::getIntegerVT(VectorBits);
6855 EVT EltVT = VectorVT.getVectorElementType();
6856 EVT EltIVT = EltVT.changeTypeToInteger();
6857 uint64_t EltBits = EltVT.getScalarSizeInBits();
6858
6859 SDValue Result = DCI.DAG.getNode(
6860 ISD::TRUNCATE, DL, EltIVT,
6861 DCI.DAG.getNode(
6862 ISD::SRA, DL, IVT, DCI.DAG.getNode(ISD::BITCAST, DL, IVT, Vector),
6863 DCI.DAG.getConstant(Index->getZExtValue() * EltBits, DL, IVT)));
6864
6865 // If element has non-integer type, bitcast it back to the expected type.
6866 if (EltVT != EltIVT)
6867 Result = DCI.DAG.getNode(ISD::BITCAST, DL, EltVT, Result);
6868 // Past legalizer, we may need to extent i8 -> i16 to match the register type.
6869 if (EltVT != N->getValueType(0))
6870 Result = DCI.DAG.getNode(ISD::ANY_EXTEND, DL, N->getValueType(0), Result);
6871
6872 return Result;
6873}
6874
6875/// Transform patterns like:
6876/// (select (ugt shift_amt, BitWidth-1), 0, (srl/shl x, shift_amt))
6877/// (select (ult shift_amt, BitWidth), (srl/shl x, shift_amt), 0)
6878/// Into:
6879/// (NVPTXISD::SRL_CLAMP x, shift_amt) or (NVPTXISD::SHL_CLAMP x, shift_amt)
6880///
6881/// These patterns arise from code like `s >= 32 ? 0 : x >> s`. In LLVM,
6882/// over-shifting a value results in poison, but PTX shr/shl instructions clamp
6883/// the shift amount to BitWidth, making the guard redundant.
6884///
6885/// Note: We only handle SRL and SHL, not SRA, because arithmetic right shifts
6886/// can produce 0 or -1 when shift >= BitWidth.
6887/// Note: We don't handle uge or ule. These don't appear because of
6888/// canonicalization.
6891 if (!DCI.isAfterLegalizeDAG())
6892 return SDValue();
6893
6894 using namespace SDPatternMatch;
6895 unsigned BitWidth = N->getValueType(0).getSizeInBits();
6896 SDValue ShiftAmt, ShiftOp;
6897
6898 // Match logical shifts where the shift amount in the guard matches the shift
6899 // amount in the operation.
6900 auto LogicalShift =
6901 m_AllOf(m_Value(ShiftOp),
6902 m_AnyOf(m_Srl(m_Value(), m_TruncOrSelf(m_Deferred(ShiftAmt))),
6903 m_Shl(m_Value(), m_TruncOrSelf(m_Deferred(ShiftAmt)))));
6904
6905 // shift_amt > BitWidth-1 ? 0 : shift_op
6906 bool MatchedUGT =
6907 sd_match(N, m_Select(m_SetCC(m_Value(ShiftAmt),
6909 m_SpecificCondCode(ISD::SETUGT)),
6910 m_Zero(), LogicalShift));
6911 // shift_amt < BitWidth ? shift_op : 0
6912 bool MatchedULT =
6913 !MatchedUGT &&
6914 sd_match(N, m_Select(m_SetCC(m_Value(ShiftAmt),
6916 m_SpecificCondCode(ISD::SETULT)),
6917 LogicalShift, m_Zero()));
6918
6919 if (!MatchedUGT && !MatchedULT)
6920 return SDValue();
6921
6922 // In LLVM IR, the shift amount and the value-to-be-shifted are the same
6923 // type, whereas in PTX the shift amount is always i32. Therefore when
6924 // shifting types larger than i32, we can only do this transformation if we
6925 // know that the upper bits of the shift amount are known zero.
6926 SDValue ClampAmt = ShiftOp.getOperand(1);
6927 unsigned ClampAmtBits = ClampAmt.getValueSizeInBits();
6928 if (ShiftAmt.getValueSizeInBits() > ClampAmtBits &&
6929 DCI.DAG.computeKnownBits(ShiftAmt).countMaxActiveBits() > ClampAmtBits)
6930 return SDValue();
6931
6932 // Return a clamp shift operation, which has the same semantics as PTX shift.
6933 unsigned ClampOpc = ShiftOp.getOpcode() == ISD::SRL ? NVPTXISD::SRL_CLAMP
6934 : NVPTXISD::SHL_CLAMP;
6935 return DCI.DAG.getNode(ClampOpc, SDLoc(N), ShiftOp.getValueType(),
6936 ShiftOp.getOperand(0), ClampAmt);
6937}
6938
6941 SDValue VA = N->getOperand(1);
6942 EVT VectorVT = VA.getValueType();
6943 if (VectorVT != MVT::v4i8)
6944 return SDValue();
6945
6946 // We need to split vselect into individual per-element operations Because we
6947 // use BFE/BFI instruction for byte extraction/insertion, we do end up with
6948 // 32-bit values, so we may as well do comparison as i32 to avoid conversions
6949 // to/from i16 normally used for i8 values.
6951 SDLoc DL(N);
6952 SDValue VCond = N->getOperand(0);
6953 SDValue VB = N->getOperand(2);
6954 for (int I = 0; I < 4; ++I) {
6955 SDValue C = DCI.DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i1, VCond,
6956 DCI.DAG.getConstant(I, DL, MVT::i32));
6957 SDValue EA = DCI.DAG.getAnyExtOrTrunc(
6958 DCI.DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i8, VA,
6959 DCI.DAG.getConstant(I, DL, MVT::i32)),
6960 DL, MVT::i32);
6961 SDValue EB = DCI.DAG.getAnyExtOrTrunc(
6962 DCI.DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, MVT::i8, VB,
6963 DCI.DAG.getConstant(I, DL, MVT::i32)),
6964 DL, MVT::i32);
6965 E.push_back(DCI.DAG.getAnyExtOrTrunc(
6966 DCI.DAG.getNode(ISD::SELECT, DL, MVT::i32, C, EA, EB), DL, MVT::i8));
6967 }
6968 return DCI.DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v4i8, E);
6969}
6970
6971static SDValue
6973 auto VT = N->getValueType(0);
6974 if (!DCI.isAfterLegalizeDAG() ||
6975 // only process v2*16 types
6976 !(NVPTX::isPackedVectorTy(VT) && VT.is32BitVector() &&
6977 VT.getVectorNumElements() == 2))
6978 return SDValue();
6979
6980 auto Op0 = N->getOperand(0);
6981 auto Op1 = N->getOperand(1);
6982
6983 // Start out by assuming we want to take the lower 2 bytes of each i32
6984 // operand.
6985 uint64_t Op0Bytes = 0x10;
6986 uint64_t Op1Bytes = 0x54;
6987
6988 std::pair<SDValue *, uint64_t *> OpData[2] = {{&Op0, &Op0Bytes},
6989 {&Op1, &Op1Bytes}};
6990
6991 // Check that each operand is an i16, truncated from an i32 operand. We'll
6992 // select individual bytes from those original operands. Optionally, fold in a
6993 // shift right of that original operand.
6994 for (auto &[Op, OpBytes] : OpData) {
6995 // Eat up any bitcast
6996 if (Op->getOpcode() == ISD::BITCAST)
6997 *Op = Op->getOperand(0);
6998
6999 if (!(Op->getValueType() == MVT::i16 && Op->getOpcode() == ISD::TRUNCATE &&
7000 Op->getOperand(0).getValueType() == MVT::i32))
7001 return SDValue();
7002
7003 // If the truncate has multiple uses, this optimization can increase
7004 // register pressure
7005 if (!Op->hasOneUse())
7006 return SDValue();
7007
7008 *Op = Op->getOperand(0);
7009
7010 // Optionally, fold in a shift-right of the original operand and let permute
7011 // pick the two higher bytes of the original value directly.
7012 if (Op->getOpcode() == ISD::SRL && isa<ConstantSDNode>(Op->getOperand(1))) {
7013 if (cast<ConstantSDNode>(Op->getOperand(1))->getZExtValue() == 16) {
7014 // Shift the PRMT byte selector to pick upper bytes from each respective
7015 // value, instead of the lower ones: 0x10 -> 0x32, 0x54 -> 0x76
7016 assert((*OpBytes == 0x10 || *OpBytes == 0x54) &&
7017 "PRMT selector values out of range");
7018 *OpBytes += 0x22;
7019 *Op = Op->getOperand(0);
7020 }
7021 }
7022 }
7023
7024 SDLoc DL(N);
7025 auto &DAG = DCI.DAG;
7026
7027 auto PRMT =
7028 getPRMT(DAG.getBitcast(MVT::i32, Op0), DAG.getBitcast(MVT::i32, Op1),
7029 (Op1Bytes << 8) | Op0Bytes, DL, DAG);
7030 return DAG.getBitcast(VT, PRMT);
7031}
7032
7035 auto *ASCN1 = cast<AddrSpaceCastSDNode>(N);
7036
7037 if (auto *ASCN2 = dyn_cast<AddrSpaceCastSDNode>(ASCN1->getOperand(0))) {
7038 assert(ASCN2->getDestAddressSpace() == ASCN1->getSrcAddressSpace());
7039
7040 // Fold asc[B -> A](asc[A -> B](x)) -> x
7041 if (ASCN1->getDestAddressSpace() == ASCN2->getSrcAddressSpace())
7042 return ASCN2->getOperand(0);
7043 }
7044
7045 return SDValue();
7046}
7047
7048// Given a constant selector value and a prmt mode, return the selector value
7049// normalized to the generic prmt mode. See the PTX ISA documentation for more
7050// details:
7051// https://docs.nvidia.com/cuda/parallel-thread-execution/index.html#data-movement-and-conversion-instructions-prmt
7052static APInt getPRMTSelector(const APInt &Selector, unsigned Mode) {
7053 assert(Selector.getBitWidth() == 32 && "PRMT must have i32 operands");
7054
7056 return Selector;
7057
7058 const unsigned V = Selector.trunc(2).getZExtValue();
7059
7060 const auto GetSelector = [](unsigned S0, unsigned S1, unsigned S2,
7061 unsigned S3) {
7062 return APInt(32, S0 | (S1 << 4) | (S2 << 8) | (S3 << 12));
7063 };
7064
7065 switch (Mode) {
7067 return GetSelector(V, V + 1, V + 2, V + 3);
7069 return GetSelector(V, (V - 1) & 7, (V - 2) & 7, (V - 3) & 7);
7071 return GetSelector(V, V, V, V);
7073 return GetSelector(V, std::max(V, 1U), std::max(V, 2U), 3U);
7075 return GetSelector(0, std::min(V, 1U), std::min(V, 2U), V);
7077 unsigned V1 = (V & 1) << 1;
7078 return GetSelector(V1, V1 + 1, V1, V1 + 1);
7079 }
7080 default:
7081 llvm_unreachable("Invalid PRMT mode");
7082 }
7083}
7084
7085static APInt computePRMT(APInt A, APInt B, APInt Selector, unsigned Mode) {
7086 assert(A.getBitWidth() == 32 && B.getBitWidth() == 32 &&
7087 Selector.getBitWidth() == 32 && "PRMT must have i32 operands");
7088 // {b, a} = {{b7, b6, b5, b4}, {b3, b2, b1, b0}}
7089 APInt BitField = B.concat(A);
7090 APInt SelectorVal = getPRMTSelector(Selector, Mode);
7091 APInt Result(32, 0);
7092 for (unsigned I : llvm::seq(4U)) {
7093 APInt Sel = SelectorVal.extractBits(4, I * 4);
7094 unsigned Idx = Sel.getLoBits(3).getZExtValue();
7095 unsigned Sign = Sel.getHiBits(1).getZExtValue();
7096 APInt Byte = BitField.extractBits(8, Idx * 8);
7097 if (Sign)
7098 Byte = Byte.ashr(8);
7099 Result.insertBits(Byte, I * 8);
7100 }
7101 return Result;
7102}
7103
7105 CodeGenOptLevel OptLevel) {
7106 if (OptLevel == CodeGenOptLevel::None)
7107 return SDValue();
7108
7109 // Constant fold PRMT
7110 if (isa<ConstantSDNode>(N->getOperand(0)) &&
7111 isa<ConstantSDNode>(N->getOperand(1)) &&
7112 isa<ConstantSDNode>(N->getOperand(2)))
7113 return DCI.DAG.getConstant(computePRMT(N->getConstantOperandAPInt(0),
7114 N->getConstantOperandAPInt(1),
7115 N->getConstantOperandAPInt(2),
7116 N->getConstantOperandVal(3)),
7117 SDLoc(N), N->getValueType(0));
7118 return SDValue();
7119}
7120
7121// During call lowering we wrap the return values in a ProxyReg node which
7122// depend on the chain value produced by the completed call. This ensures that
7123// the full call is emitted in cases where libcalls are used to legalize
7124// operations. To improve the functioning of other DAG combines we pull all
7125// operations we can through one of these nodes, ensuring that the ProxyReg
7126// directly wraps a load. That is:
7127//
7128// (ProxyReg (zext (load retval0))) => (zext (ProxyReg (load retval0)))
7129//
7132 switch (R.getOpcode()) {
7133 case ISD::TRUNCATE:
7134 case ISD::ANY_EXTEND:
7135 case ISD::SIGN_EXTEND:
7136 case ISD::ZERO_EXTEND:
7137 case ISD::BITCAST: {
7138 if (SDValue V = sinkProxyReg(R.getOperand(0), Chain, DCI))
7139 return DCI.DAG.getNode(R.getOpcode(), SDLoc(R), R.getValueType(), V);
7140 return SDValue();
7141 }
7142 case ISD::SHL:
7143 case ISD::SRL:
7144 case ISD::SRA:
7145 case ISD::OR: {
7146 if (SDValue A = sinkProxyReg(R.getOperand(0), Chain, DCI))
7147 if (SDValue B = sinkProxyReg(R.getOperand(1), Chain, DCI))
7148 return DCI.DAG.getNode(R.getOpcode(), SDLoc(R), R.getValueType(), A, B);
7149 return SDValue();
7150 }
7151 case ISD::Constant:
7152 return R;
7153 case ISD::LOAD:
7154 case NVPTXISD::LoadV2:
7155 case NVPTXISD::LoadV4: {
7156 return DCI.DAG.getNode(NVPTXISD::ProxyReg, SDLoc(R), R.getValueType(),
7157 {Chain, R});
7158 }
7159 case ISD::BUILD_VECTOR: {
7160 if (DCI.isBeforeLegalize())
7161 return SDValue();
7162
7164 for (auto &Op : R->ops()) {
7165 SDValue V = sinkProxyReg(Op, Chain, DCI);
7166 if (!V)
7167 return SDValue();
7168 Ops.push_back(V);
7169 }
7170 return DCI.DAG.getNode(ISD::BUILD_VECTOR, SDLoc(R), R.getValueType(), Ops);
7171 }
7173 if (DCI.isBeforeLegalize())
7174 return SDValue();
7175
7176 if (SDValue V = sinkProxyReg(R.getOperand(0), Chain, DCI))
7178 R.getValueType(), V, R.getOperand(1));
7179 return SDValue();
7180 }
7181 default:
7182 return SDValue();
7183 }
7184}
7185
7186static unsigned getF16SubOpc(Intrinsic::ID AddIntrinsicID) {
7187 switch (AddIntrinsicID) {
7188 default:
7189 break;
7190 case Intrinsic::nvvm_add_rn_sat_f16:
7191 case Intrinsic::nvvm_add_rn_sat_v2f16:
7192 return NVPTXISD::SUB_RN_SAT;
7193 case Intrinsic::nvvm_add_rn_ftz_sat_f16:
7194 case Intrinsic::nvvm_add_rn_ftz_sat_v2f16:
7195 return NVPTXISD::SUB_RN_FTZ_SAT;
7196 }
7197 llvm_unreachable("Invalid F16 add intrinsic");
7198}
7199
7201 Intrinsic::ID AddIntrinsicID) {
7202 SDValue Op1 = N->getOperand(1);
7203 SDValue Op2 = N->getOperand(2);
7204
7205 SDValue SubOp1, SubOp2;
7206
7207 if (Op1.getOpcode() == ISD::FNEG) {
7208 SubOp1 = Op2;
7209 SubOp2 = Op1.getOperand(0);
7210 } else if (Op2.getOpcode() == ISD::FNEG) {
7211 SubOp1 = Op1;
7212 SubOp2 = Op2.getOperand(0);
7213 } else {
7214 return SDValue();
7215 }
7216
7217 SDLoc DL(N);
7218 return DAG.getNode(getF16SubOpc(AddIntrinsicID), DL, N->getValueType(0),
7219 SubOp1, SubOp2);
7220}
7221
7224 const NVPTXSubtarget &STI) {
7225 unsigned IID = N->getConstantOperandVal(0);
7226
7227 switch (IID) {
7228 default:
7229 break;
7230 case Intrinsic::nvvm_add_rn_sat_f16:
7231 case Intrinsic::nvvm_add_rn_ftz_sat_f16:
7232 case Intrinsic::nvvm_add_rn_sat_v2f16:
7233 case Intrinsic::nvvm_add_rn_ftz_sat_v2f16:
7234 return combineF16AddWithNeg(N, DCI.DAG, IID);
7235 }
7236 return SDValue();
7237}
7238
7241
7242 SDValue Chain = N->getOperand(0);
7243 SDValue Reg = N->getOperand(1);
7244
7245 // If the ProxyReg is not wrapping a load, try to pull the operations through
7246 // the ProxyReg.
7247 if (Reg.getOpcode() != ISD::LOAD) {
7248 if (SDValue V = sinkProxyReg(Reg, Chain, DCI))
7249 return V;
7250 }
7251
7252 return SDValue();
7253}
7254
7255SDValue NVPTXTargetLowering::PerformDAGCombine(SDNode *N,
7256 DAGCombinerInfo &DCI) const {
7258 switch (N->getOpcode()) {
7259 default:
7260 break;
7261 case ISD::ADD:
7262 return PerformADDCombine(N, DCI, OptLevel);
7263 case ISD::ADDRSPACECAST:
7264 return combineADDRSPACECAST(N, DCI);
7265 case ISD::SIGN_EXTEND:
7266 case ISD::ZERO_EXTEND:
7267 return combineSZExtToMulWide(N, DCI, OptLevel);
7268 case ISD::BUILD_VECTOR:
7269 return PerformBUILD_VECTORCombine(N, DCI);
7271 return PerformEXTRACTCombine(N, DCI);
7272 case ISD::FADD:
7273 return performFADDCombine(N, DCI, OptLevel);
7274 case ISD::FMA:
7275 case ISD::FMUL:
7276 case ISD::FSUB:
7277 return performScalarizeV2F32Op(N, DCI, OptLevel);
7278 case ISD::FMAXNUM:
7279 case ISD::FMINNUM:
7280 case ISD::FMAXIMUM:
7281 case ISD::FMINIMUM:
7282 case ISD::FMAXIMUMNUM:
7283 case ISD::FMINIMUMNUM:
7284 return PerformFMinMaxCombine(N, DCI, STI);
7285 case ISD::LOAD:
7286 case NVPTXISD::LoadV2:
7287 case NVPTXISD::LoadV4:
7288 return combineLOAD(N, DCI, STI);
7289 case ISD::MUL:
7290 return PerformMULCombine(N, DCI, OptLevel);
7291 case NVPTXISD::PRMT:
7292 return combinePRMT(N, DCI, OptLevel);
7293 case NVPTXISD::ProxyReg:
7294 return combineProxyReg(N, DCI);
7295 case ISD::SETCC:
7296 return PerformSETCCCombine(N, DCI, STI);
7297 case ISD::SHL:
7298 return PerformSHLCombine(N, DCI, OptLevel);
7299 case ISD::SREM:
7300 case ISD::UREM:
7301 return PerformREMCombine(N, DCI, OptLevel);
7302 case ISD::STORE:
7303 case NVPTXISD::StoreV2:
7304 case NVPTXISD::StoreV4:
7305 return combineSTORE(N, DCI, STI);
7306 case ISD::SELECT:
7307 return PerformSELECTShiftCombine(N, DCI);
7308 case ISD::VSELECT:
7309 return PerformVSELECTCombine(N, DCI);
7311 return combineIntrinsicWOChain(N, DCI, STI);
7312 }
7313 return SDValue();
7314}
7315
7318 // Handle bitcasting to v2i8 without hitting the default promotion
7319 // strategy which goes through stack memory.
7320 SDValue Op(Node, 0);
7321 EVT ToVT = Op->getValueType(0);
7322 if (ToVT != MVT::v2i8) {
7323 return;
7324 }
7325
7326 // Bitcast to i16 and unpack elements into a vector
7327 SDLoc DL(Node);
7328 SDValue AsInt = DAG.getBitcast(MVT::i16, Op->getOperand(0));
7329 SDValue Vec0 = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, AsInt);
7330 SDValue Const8 = DAG.getConstant(8, DL, MVT::i16);
7331 SDValue Vec1 =
7332 DAG.getNode(ISD::TRUNCATE, DL, MVT::i8,
7333 DAG.getNode(ISD::SRL, DL, MVT::i16, {AsInt, Const8}));
7334 Results.push_back(
7335 DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v2i8, {Vec0, Vec1}));
7336}
7337
7340 SDValue Chain = N->getOperand(0);
7341 SDValue Intrin = N->getOperand(1);
7342 SDLoc DL(N);
7343
7344 // Get the intrinsic ID
7345 unsigned IntrinNo = Intrin.getNode()->getAsZExtVal();
7346 switch (IntrinNo) {
7347 default:
7348 return;
7349 case Intrinsic::nvvm_ldu_global_i:
7350 case Intrinsic::nvvm_ldu_global_f:
7351 case Intrinsic::nvvm_ldu_global_p: {
7352 EVT ResVT = N->getValueType(0);
7353
7354 if (ResVT.isVector()) {
7355 // Vector LDG/LDU
7356
7357 unsigned NumElts = ResVT.getVectorNumElements();
7358 EVT EltVT = ResVT.getVectorElementType();
7359
7360 // Since LDU/LDG are target nodes, we cannot rely on DAG type
7361 // legalization.
7362 // Therefore, we must ensure the type is legal. For i1 and i8, we set the
7363 // loaded type to i16 and propagate the "real" type as the memory type.
7364 bool NeedTrunc = false;
7365 if (EltVT.getSizeInBits() < 16) {
7366 EltVT = MVT::i16;
7367 NeedTrunc = true;
7368 }
7369
7370 unsigned Opcode = 0;
7371 SDVTList LdResVTs;
7372
7373 switch (NumElts) {
7374 default:
7375 return;
7376 case 2:
7377 Opcode = NVPTXISD::LDUV2;
7378 LdResVTs = DAG.getVTList(EltVT, EltVT, MVT::Other);
7379 break;
7380 case 4: {
7381 Opcode = NVPTXISD::LDUV4;
7382 EVT ListVTs[] = { EltVT, EltVT, EltVT, EltVT, MVT::Other };
7383 LdResVTs = DAG.getVTList(ListVTs);
7384 break;
7385 }
7386 }
7387
7388 SmallVector<SDValue, 8> OtherOps;
7389
7390 // Copy regular operands
7391
7392 OtherOps.push_back(Chain); // Chain
7393 // Skip operand 1 (intrinsic ID)
7394 // Others
7395 OtherOps.append(N->op_begin() + 2, N->op_end());
7396
7398
7399 SDValue NewLD = DAG.getMemIntrinsicNode(Opcode, DL, LdResVTs, OtherOps,
7400 MemSD->getMemoryVT(),
7401 MemSD->getMemOperand());
7402
7403 SmallVector<SDValue, 4> ScalarRes;
7404
7405 for (unsigned i = 0; i < NumElts; ++i) {
7406 SDValue Res = NewLD.getValue(i);
7407 if (NeedTrunc)
7408 Res =
7409 DAG.getNode(ISD::TRUNCATE, DL, ResVT.getVectorElementType(), Res);
7410 ScalarRes.push_back(Res);
7411 }
7412
7413 SDValue LoadChain = NewLD.getValue(NumElts);
7414
7415 SDValue BuildVec =
7416 DAG.getBuildVector(ResVT, DL, ScalarRes);
7417
7418 Results.push_back(BuildVec);
7419 Results.push_back(LoadChain);
7420 } else {
7421 // i8 LDG/LDU
7422 assert(ResVT.isSimple() && ResVT.getSimpleVT().SimpleTy == MVT::i8 &&
7423 "Custom handling of non-i8 ldu/ldg?");
7424
7425 // Just copy all operands as-is
7427
7428 // Force output to i16
7429 SDVTList LdResVTs = DAG.getVTList(MVT::i16, MVT::Other);
7430
7432
7433 // We make sure the memory type is i8, which will be used during isel
7434 // to select the proper instruction.
7435 SDValue NewLD =
7437 MVT::i8, MemSD->getMemOperand());
7438
7439 Results.push_back(DAG.getNode(ISD::TRUNCATE, DL, MVT::i8,
7440 NewLD.getValue(0)));
7441 Results.push_back(NewLD.getValue(1));
7442 }
7443 return;
7444 }
7445
7446 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
7447 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
7448 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
7449 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
7450 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
7451 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
7452 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
7453 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
7454 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
7455 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
7456 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
7457 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
7458 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
7459 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128:
7460 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
7461 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
7462 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
7463 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
7464 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
7465 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
7466 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
7467 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
7468 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
7469 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
7470 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
7471 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
7472 if (auto Res = lowerTcgen05Ld(N, DAG)) {
7473 Results.push_back(Res->first);
7474 Results.push_back(Res->second);
7475 }
7476 return;
7477
7478 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1:
7479 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
7480 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
7481 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
7482 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
7483 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
7484 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128:
7485 if (auto Res = lowerTcgen05Ld(N, DAG, /*HasOffset=*/true)) {
7486 Results.push_back(Res->first);
7487 Results.push_back(Res->second);
7488 }
7489 return;
7490
7491 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x8_i32:
7492 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x8_f32:
7493 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x64_i32:
7494 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x64_f32:
7495 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x4_i32:
7496 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x4_f32:
7497 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x32_i32:
7498 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x32_f32:
7499 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x16_i32:
7500 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x16_f32:
7501 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x128_i32:
7502 case Intrinsic::nvvm_tcgen05_ld_red_32x32b_x128_f32:
7503 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x8_i32:
7504 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x8_f32:
7505 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x64_i32:
7506 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x64_f32:
7507 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x4_i32:
7508 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x4_f32:
7509 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x32_i32:
7510 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x32_f32:
7511 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x16_i32:
7512 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x16_f32:
7513 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x128_i32:
7514 case Intrinsic::nvvm_tcgen05_ld_red_16x32bx2_x128_f32:
7515 if (auto Res = lowerTcgen05LdRed(N, DAG)) {
7516 Results.push_back(std::get<0>(*Res));
7517 Results.push_back(std::get<1>(*Res));
7518 Results.push_back(std::get<2>(*Res));
7519 }
7520 return;
7521 }
7522}
7523
7526 // Change the CopyFromReg to output 2 64-bit results instead of a 128-bit
7527 // result so that it can pass the legalization
7528 SDLoc DL(N);
7529 SDValue Chain = N->getOperand(0);
7530 SDValue Reg = N->getOperand(1);
7531 SDValue Glue = N->getOperand(2);
7532
7533 assert(Reg.getValueType() == MVT::i128 &&
7534 "Custom lowering for CopyFromReg with 128-bit reg only");
7535 SmallVector<EVT, 4> ResultsType = {MVT::i64, MVT::i64, N->getValueType(1),
7536 N->getValueType(2)};
7537 SmallVector<SDValue, 3> NewOps = {Chain, Reg, Glue};
7538
7539 SDValue NewValue = DAG.getNode(ISD::CopyFromReg, DL, ResultsType, NewOps);
7540 SDValue Pair = DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i128,
7541 {NewValue.getValue(0), NewValue.getValue(1)});
7542
7543 Results.push_back(Pair);
7544 Results.push_back(NewValue.getValue(2));
7545 Results.push_back(NewValue.getValue(3));
7546}
7547
7549 const TargetLowering &TLI,
7551 SDValue Chain = N->getOperand(0);
7552 SDValue Reg = N->getOperand(1);
7553
7554 MVT VT = TLI.getRegisterType(*DAG.getContext(), Reg.getValueType());
7555
7556 SDValue NewReg = DAG.getAnyExtOrTrunc(Reg, SDLoc(N), VT);
7557 SDValue NewProxy =
7558 DAG.getNode(NVPTXISD::ProxyReg, SDLoc(N), VT, {Chain, NewReg});
7559 SDValue Res = DAG.getAnyExtOrTrunc(NewProxy, SDLoc(N), N->getValueType(0));
7560
7561 Results.push_back(Res);
7562}
7563
7565 const NVPTXSubtarget &STI,
7567 assert(N->getValueType(0) == MVT::i128 &&
7568 "Custom lowering for atomic128 only supports i128");
7569
7571 SDLoc dl(N);
7572
7573 if (!STI.hasAtomSwap128()) {
7576 "Support for b128 atomics introduced in PTX ISA version 8.3 and "
7577 "requires target sm_90.",
7578 dl.getDebugLoc()));
7579
7580 Results.push_back(DAG.getUNDEF(MVT::i128));
7581 Results.push_back(AN->getOperand(0)); // Chain
7582 return;
7583 }
7584
7586 Ops.push_back(AN->getOperand(0)); // Chain
7587 Ops.push_back(AN->getOperand(1)); // Ptr
7588 for (const auto &Op : AN->ops().drop_front(2)) {
7589 // Low part
7590 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i64, Op,
7591 DAG.getIntPtrConstant(0, dl)));
7592 // High part
7593 Ops.push_back(DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i64, Op,
7594 DAG.getIntPtrConstant(1, dl)));
7595 }
7596 unsigned Opcode = N->getOpcode() == ISD::ATOMIC_SWAP
7599 SDVTList Tys = DAG.getVTList(MVT::i64, MVT::i64, MVT::Other);
7600 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys, Ops, MVT::i128,
7601 AN->getMemOperand());
7602 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i128,
7603 {Result.getValue(0), Result.getValue(1)}));
7604 Results.push_back(Result.getValue(2));
7605}
7606
7607void NVPTXTargetLowering::ReplaceNodeResults(
7609 switch (N->getOpcode()) {
7610 default:
7611 report_fatal_error("Unhandled custom legalization");
7612 case ISD::BITCAST:
7613 ReplaceBITCAST(N, DAG, Results);
7614 return;
7615 case ISD::LOAD:
7616 case ISD::MLOAD:
7617 replaceLoadVector(N, DAG, Results, STI);
7618 return;
7621 return;
7622 case ISD::CopyFromReg:
7624 return;
7625 case NVPTXISD::ProxyReg:
7626 replaceProxyReg(N, DAG, *this, Results);
7627 return;
7629 case ISD::ATOMIC_SWAP:
7630 replaceAtomicSwap128(N, DAG, STI, Results);
7631 return;
7632 }
7633}
7634
7637 Type *Ty = AI->getValOperand()->getType();
7638
7639 // Try to lower LLVM atomicrmw fadd to PTX atomic.add. This is complicated
7640 // by the weird FTZ behavior PTX atom.add has:
7641 // - atom.add.f32 on global memory flushes denormals
7642 // - atom.add.f32 on shared memory does not flush denormals
7643 // - atom.add.f16 and atomic.add.bf16 never flush denormals
7644 //
7645 // We lower to atom.add only if the function's FTZ behavior matches that of
7646 // atom.add; otherwise, we lower to a CAS loop. But we always allow
7647 // atomic.add.bf16; even though it never flushes denormals, we never flush
7648 // bf16 denormals when doing regular arithmetic, even when FTZ is enabled.
7649 if (AI->isFloatingPointOperation() &&
7651 const Function *F = AI->getFunction();
7652
7653 // AllowFTZAtomics forces atom.add regardless of the FTZ mismatch.
7654 if (Ty->isFloatTy()) {
7655 const bool FTZ = F->getDenormalMode(APFloat::IEEEsingle()).Output ==
7658 switch (AI->getPointerAddressSpace()) {
7660 UseNative |= FTZ;
7661 break;
7664 UseNative |= !FTZ;
7665 break;
7666 }
7667 if (UseNative)
7669 }
7670
7671 if (Ty->isHalfTy()) {
7672 // atom.add.f16 never flushes denormals, so it only agrees with a
7673 // function that is not in FTZ mode for f16.
7674 const bool FTZ = F->getDenormalMode(APFloat::IEEEhalf()).Output ==
7676 if ((!FTZ || AllowFTZAtomics) && STI.hasFeature(NVPTX::SM70) &&
7677 STI.hasFeature(NVPTX::PTX63))
7679 }
7680
7681 if (Ty->isBFloatTy() && STI.hasFeature(NVPTX::SM90))
7683
7684 if (Ty->isDoubleTy() && STI.hasAtomAddF64())
7686 }
7687
7688 // PTX's only atomic fp op is `add`; all other ops expand to a CAS loop.
7689 if (AI->isFloatingPointOperation())
7691
7692 if (Ty->isVectorTy())
7694
7695 assert(Ty->isIntegerTy() && "Ty should be integer at this point");
7696 const unsigned BitWidth = cast<IntegerType>(Ty)->getBitWidth();
7697
7698 switch (AI->getOperation()) {
7699 default:
7702 if (BitWidth == 128)
7704 [[fallthrough]];
7708 switch (BitWidth) {
7709 case 8:
7710 case 16:
7712 case 32:
7714 case 64:
7715 if (STI.hasAtomBitwise64())
7718 case 128:
7720 default:
7721 llvm_unreachable("unsupported width encountered");
7722 }
7729 switch (BitWidth) {
7730 case 8:
7731 case 16:
7733 case 32:
7735 case 64:
7736 if (STI.hasAtomMinMax64())
7739 case 128:
7741 default:
7742 llvm_unreachable("unsupported width encountered");
7743 }
7746 switch (BitWidth) {
7747 case 32:
7749 case 8:
7750 case 16:
7751 case 64:
7752 case 128:
7754 default:
7755 llvm_unreachable("unsupported width encountered");
7756 }
7757 }
7758
7760}
7761
7763 const Instruction *I) const {
7764 // This function returns true iff the operation is emulated using a CAS-loop,
7765 // or if it has the memory order seq_cst (which is not natively supported in
7766 // the PTX `atom` instruction).
7767 //
7768 // atomicrmw and cmpxchg instructions not efficiently supported by PTX
7769 // are lowered to CAS emulation loops that preserve their memory order,
7770 // syncscope, and volatile semantics. For PTX, it is more efficient to use
7771 // atom.cas.relaxed.sco instructions within the loop, and fences before and
7772 // after the loop to restore order.
7773 //
7774 // Atomic instructions efficiently supported by PTX are lowered to
7775 // `atom.<op>.<sem>.<scope` instruction with their corresponding memory order
7776 // and scope. Since PTX does not support seq_cst, we emulate it by lowering to
7777 // a fence.sc followed by an atom according to the PTX atomics ABI
7778 // https://docs.nvidia.com/cuda/ptx-writers-guide-to-interoperability/atomic-abi.html
7779 if (auto *CI = dyn_cast<AtomicCmpXchgInst>(I))
7780 return (cast<IntegerType>(CI->getCompareOperand()->getType())
7781 ->getBitWidth() < STI.getMinCmpXchgSizeInBits()) ||
7782 CI->getMergedOrdering() == AtomicOrdering::SequentiallyConsistent;
7783 if (auto *RI = dyn_cast<AtomicRMWInst>(I))
7785 RI->getOrdering() == AtomicOrdering::SequentiallyConsistent;
7786 return false;
7787}
7788
7790 const Instruction *I) const {
7791 // If the operation is emulated by a CAS-loop, we lower the instruction to
7792 // atom.<op>.relaxed, since AtomicExpandPass will insert fences for enforcing
7793 // the correct memory ordering around the CAS loop.
7794 //
7795 // When the operation is not emulated, but the memory order is seq_cst,
7796 // we must lower to "fence.sc.<scope>; atom.<op>.acquire.<scope>;" to conform
7797 // to the PTX atomics ABI.
7798 // https://docs.nvidia.com/cuda/ptx-writers-guide-to-interoperability/atomic-abi.html
7799 // For such cases, emitLeadingFence() will separately insert the leading
7800 // "fence.sc.<scope>;". Here, we only set the memory order to acquire.
7801 //
7802 // Otherwise, the operation is not emulated, and the memory order is not
7803 // seq_cst. In this case, the LLVM memory order is natively supported by the
7804 // PTX `atom` instruction, and we just lower to the corresponding
7805 // `atom.<op>.relaxed|acquire|release|acq_rel". For such cases, this function
7806 // will NOT be called.
7807 // prerequisite: shouldInsertFencesForAtomic() should have returned `true` for
7808 // I before its memory order was modified.
7809 if (auto *CI = dyn_cast<AtomicCmpXchgInst>(I);
7810 CI && CI->getMergedOrdering() == AtomicOrdering::SequentiallyConsistent &&
7811 cast<IntegerType>(CI->getCompareOperand()->getType())->getBitWidth() >=
7812 STI.getMinCmpXchgSizeInBits())
7814 else if (auto *RI = dyn_cast<AtomicRMWInst>(I);
7815 RI && RI->getOrdering() == AtomicOrdering::SequentiallyConsistent &&
7818
7820}
7821
7823 Instruction *Inst,
7824 AtomicOrdering Ord) const {
7825 // prerequisite: shouldInsertFencesForAtomic() should have returned `true` for
7826 // `Inst` before its memory order was modified. We cannot enforce this with an
7827 // assert, because AtomicExpandPass will have modified the memory order
7828 // between the initial call to shouldInsertFencesForAtomic() and the call to
7829 // this function.
7830 if (!isa<AtomicCmpXchgInst>(Inst) && !isa<AtomicRMWInst>(Inst))
7831 return TargetLoweringBase::emitLeadingFence(Builder, Inst, Ord);
7832
7833 // Specialize for cmpxchg and atomicrmw
7834 auto SSID = getAtomicSyncScopeID(Inst);
7835 assert(SSID.has_value() && "Expected an atomic operation");
7836
7837 if (isReleaseOrStronger(Ord))
7838 return Builder.CreateFence(Ord == AtomicOrdering::SequentiallyConsistent
7841 SSID.value());
7842
7843 return nullptr;
7844}
7845
7847 Instruction *Inst,
7848 AtomicOrdering Ord) const {
7849 // prerequisite: shouldInsertFencesForAtomic() should have returned `true` for
7850 // `Inst` before its memory order was modified. See `emitLeadingFence` for why
7851 // this cannot be enforced with an assert. Specialize for cmpxchg and
7852 // atomicrmw
7853 auto *CI = dyn_cast<AtomicCmpXchgInst>(Inst);
7854 auto *RI = dyn_cast<AtomicRMWInst>(Inst);
7855 if (!CI && !RI)
7856 return TargetLoweringBase::emitTrailingFence(Builder, Inst, Ord);
7857
7858 auto SSID = getAtomicSyncScopeID(Inst);
7859 assert(SSID.has_value() && "Expected an atomic operation");
7860
7861 bool IsEmulated =
7862 CI ? cast<IntegerType>(CI->getCompareOperand()->getType())
7863 ->getBitWidth() < STI.getMinCmpXchgSizeInBits()
7865
7866 if (isAcquireOrStronger(Ord) && IsEmulated)
7867 return Builder.CreateFence(AtomicOrdering::Acquire, SSID.value());
7868
7869 return nullptr;
7870}
7871
7872// Rather than default to SINT when both UINT and SINT are custom, we only
7873// change the opcode when UINT is not legal and SINT is. UINT is preferred when
7874// both are custom since unsigned CVT instructions can lead to slightly better
7875// SASS code with fewer instructions.
7877 EVT ToVT) const {
7878 if (isOperationLegal(Op, ToVT))
7879 return Op;
7880 switch (Op) {
7881 case ISD::FP_TO_UINT:
7883 return ISD::FP_TO_SINT;
7884 break;
7888 break;
7889 default:
7890 break;
7891 }
7892 return Op;
7893}
7894
7895// Pin NVPTXTargetObjectFile's vtables to this file.
7897
7902
7904 const SelectionDAG &DAG, unsigned Depth) {
7905 SDValue A = Op.getOperand(0);
7906 SDValue B = Op.getOperand(1);
7907 ConstantSDNode *Selector = dyn_cast<ConstantSDNode>(Op.getOperand(2));
7908 unsigned Mode = Op.getConstantOperandVal(3);
7909
7910 if (!Selector)
7911 return;
7912
7913 KnownBits AKnown = DAG.computeKnownBits(A, Depth);
7914 KnownBits BKnown = DAG.computeKnownBits(B, Depth);
7915
7916 // {b, a} = {{b7, b6, b5, b4}, {b3, b2, b1, b0}}
7917 assert(AKnown.getBitWidth() == 32 && BKnown.getBitWidth() == 32 &&
7918 "PRMT must have i32 operands");
7919 assert(Known.getBitWidth() == 32 && "PRMT must have i32 result");
7920 KnownBits BitField = BKnown.concat(AKnown);
7921
7922 APInt SelectorVal = getPRMTSelector(Selector->getAPIntValue(), Mode);
7923 for (unsigned I : llvm::seq(4)) {
7924 APInt Sel = SelectorVal.extractBits(4, I * 4);
7925 unsigned Idx = Sel.getLoBits(3).getZExtValue();
7926 unsigned Sign = Sel.getHiBits(1).getZExtValue();
7927 KnownBits Byte = BitField.extractBits(8, Idx * 8);
7928 if (Sign)
7929 Byte = KnownBits::ashr(Byte, KnownBits::makeConstant(APInt(8, 7)));
7930 Known.insertBits(Byte, I * 8);
7931 }
7932}
7933
7936
7937 // We can't do anything without knowing the sign bit.
7938 auto ExtType = LD->getConstantOperandVal(LD->getNumOperands() - 1);
7939 if (ExtType == ISD::SEXTLOAD)
7940 return;
7941
7942 // ExtLoading to vector types is weird and may not work well with known bits.
7943 auto DestVT = LD->getValueType(0);
7944 if (DestVT.isVector())
7945 return;
7946
7947 assert(Known.getBitWidth() == DestVT.getSizeInBits());
7948 auto ElementBitWidth = getFromTypeWidthForLoad(LD);
7949 Known.Zero.setHighBits(Known.getBitWidth() - ElementBitWidth);
7950}
7951
7953 const SDValue Op, KnownBits &Known, const APInt &DemandedElts,
7954 const SelectionDAG &DAG, unsigned Depth) const {
7955 Known.resetAll();
7956
7957 switch (Op.getOpcode()) {
7958 case NVPTXISD::PRMT:
7960 break;
7961 case NVPTXISD::LoadV2:
7962 case NVPTXISD::LoadV4:
7963 case NVPTXISD::LoadV8:
7965 break;
7966 default:
7967 break;
7968 }
7969}
7970
7971static std::pair<APInt, APInt> getPRMTDemandedBits(const APInt &SelectorVal,
7972 const APInt &DemandedBits) {
7973 APInt DemandedLHS = APInt(32, 0);
7974 APInt DemandedRHS = APInt(32, 0);
7975
7976 for (unsigned I : llvm::seq(4)) {
7977 if (DemandedBits.extractBits(8, I * 8).isZero())
7978 continue;
7979
7980 APInt Sel = SelectorVal.extractBits(4, I * 4);
7981 unsigned Idx = Sel.getLoBits(3).getZExtValue();
7982 unsigned Sign = Sel.getHiBits(1).getZExtValue();
7983
7984 APInt &Src = Idx < 4 ? DemandedLHS : DemandedRHS;
7985 unsigned ByteStart = (Idx % 4) * 8;
7986 if (Sign)
7987 Src.setBit(ByteStart + 7);
7988 else
7989 Src.setBits(ByteStart, ByteStart + 8);
7990 }
7991
7992 return {DemandedLHS, DemandedRHS};
7993}
7994
7995// Replace undef with 0 as this is easier for other optimizations such as
7996// known bits.
7998 if (!Op)
7999 return SDValue();
8000 if (Op.isUndef())
8001 return DAG.getConstant(0, SDLoc(), MVT::i32);
8002 return Op;
8003}
8004
8006 const APInt &DemandedBits,
8007 SelectionDAG &DAG,
8008 const TargetLowering &TLI,
8009 unsigned Depth) {
8010 assert(PRMT.getOpcode() == NVPTXISD::PRMT);
8011 SDValue Op0 = PRMT.getOperand(0);
8012 SDValue Op1 = PRMT.getOperand(1);
8013 auto *SelectorConst = dyn_cast<ConstantSDNode>(PRMT.getOperand(2));
8014 if (!SelectorConst)
8015 return SDValue();
8016
8017 unsigned Mode = PRMT.getConstantOperandVal(3);
8018 const APInt Selector = getPRMTSelector(SelectorConst->getAPIntValue(), Mode);
8019
8020 // Try to simplify the PRMT to one of the inputs if the used bytes are all
8021 // from the same input in the correct order.
8022 const unsigned LeadingBytes = DemandedBits.countLeadingZeros() / 8;
8023 const unsigned SelBits = (4 - LeadingBytes) * 4;
8024 if (Selector.getLoBits(SelBits) == APInt(32, 0x3210).getLoBits(SelBits))
8025 return Op0;
8026 if (Selector.getLoBits(SelBits) == APInt(32, 0x7654).getLoBits(SelBits))
8027 return Op1;
8028
8029 auto [DemandedLHS, DemandedRHS] = getPRMTDemandedBits(Selector, DemandedBits);
8030
8031 // Attempt to avoid multi-use ops if we don't need anything from them.
8032 SDValue DemandedOp0 =
8033 TLI.SimplifyMultipleUseDemandedBits(Op0, DemandedLHS, DAG, Depth + 1);
8034 SDValue DemandedOp1 =
8035 TLI.SimplifyMultipleUseDemandedBits(Op1, DemandedRHS, DAG, Depth + 1);
8036
8037 DemandedOp0 = canonicalizePRMTInput(DemandedOp0, DAG);
8038 DemandedOp1 = canonicalizePRMTInput(DemandedOp1, DAG);
8039 if ((DemandedOp0 && DemandedOp0 != Op0) ||
8040 (DemandedOp1 && DemandedOp1 != Op1)) {
8041 Op0 = DemandedOp0 ? DemandedOp0 : Op0;
8042 Op1 = DemandedOp1 ? DemandedOp1 : Op1;
8043 return getPRMT(Op0, Op1, Selector.getZExtValue(), SDLoc(PRMT), DAG);
8044 }
8045
8046 return SDValue();
8047}
8048
8050 SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts,
8051 KnownBits &Known, TargetLoweringOpt &TLO, unsigned Depth) const {
8052 Known.resetAll();
8053
8054 switch (Op.getOpcode()) {
8055 case NVPTXISD::PRMT:
8057 *this, Depth)) {
8058 TLO.CombineTo(Op, Result);
8059 return true;
8060 }
8061 break;
8062 default:
8063 break;
8064 }
8065
8066 computeKnownBitsForTargetNode(Op, Known, DemandedElts, TLO.DAG, Depth);
8067 return false;
8068}
return SDValue()
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned uint64_t
constexpr LLT S1
constexpr LLT F32
static cl::list< std::string > UseNative("amdgpu-use-native", cl::desc("Comma separated list of functions to replace with native, or all"), cl::CommaSeparated, cl::ValueOptional, cl::Hidden)
AMDGPU Register Bank Select
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
static SDValue PerformADDCombineWithOperands(SDNode *N, SDValue N0, SDValue N1, TargetLowering::DAGCombinerInfo &DCI, const ARMSubtarget *Subtarget)
PerformADDCombineWithOperands - Try DAG combinations for an ADD with operands N0 and N1.
static SDValue PerformADDCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const ARMSubtarget *Subtarget)
PerformADDCombine - Target-specific dag combine xforms for ISD::ADD.
static SDValue PerformVSELECTCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const ARMSubtarget *Subtarget)
static SDValue PerformMULCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const ARMSubtarget *Subtarget)
static SDValue PerformBUILD_VECTORCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const ARMSubtarget *Subtarget)
PerformBUILD_VECTORCombine - Target-specific dag combine xforms for ISD::BUILD_VECTOR.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
Atomic ordering constants.
This file contains the simple types necessary to represent the attributes associated with functions a...
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file contains the declarations of entities that describe floating point environment and related ...
static bool IsIndirectCall(const MachineInstr *MI)
Module.h This file contains the declarations for the Module class.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Register Reg
Register const TargetRegisterInfo * TRI
#define T
NVPTX address space definition.
static SDValue reportInvalidTensormapReplaceUsage(SDValue Op, SelectionDAG &DAG, unsigned Val)
static SDValue combineShiftOfLogicOp(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
Commute SHL with a bitwise logic operation when doing so exposes a common shifted operand.
static SDValue combineADDRSPACECAST(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
static cl::opt< bool > sched4reg("nvptx-sched4reg", cl::desc("NVPTX Specific: schedule for register pressue"), cl::init(false))
static SDValue lowerTcgen05St(SDValue Op, SelectionDAG &DAG, bool hasOffset=false)
static SDValue PerformEXTRACTCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
static cl::opt< NVPTX::DivPrecisionLevel > UsePrecDivF32("nvptx-prec-divf32", cl::Hidden, cl::desc("NVPTX Specific: Override the precision of the lowering for f32 fdiv"), cl::values(clEnumValN(NVPTX::DivPrecisionLevel::Approx, "0", "Use div.approx"), clEnumValN(NVPTX::DivPrecisionLevel::Full, "1", "Use div.full"), clEnumValN(NVPTX::DivPrecisionLevel::IEEE754, "2", "Use IEEE Compliant F32 div.rnd if available (default)"), clEnumValN(NVPTX::DivPrecisionLevel::IEEE754_NoFTZ, "3", "Use IEEE Compliant F32 div.rnd if available, no FTZ")), cl::init(NVPTX::DivPrecisionLevel::IEEE754))
static bool isConstOne(const SDValue &Operand)
static cl::opt< unsigned > FMAContractLevelOpt("nvptx-fma-level", cl::Hidden, cl::desc("NVPTX Specific: FMA contraction (0: don't do it" " 1: do it 2: do it aggressively"), cl::init(2))
static bool IsPTXVectorType(MVT VT)
static SDValue PerformSELECTShiftCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
Transform patterns like: (select (ugt shift_amt, BitWidth-1), 0, (srl/shl x, shift_amt)) (select (ult...
static SDValue lowerLOADi1(LoadSDNode *LD, SelectionDAG &DAG)
static SDValue lowerIntrinsicVoid(SDValue Op, SelectionDAG &DAG)
static SDValue lowerROT(SDValue Op, SelectionDAG &DAG)
static SDValue PerformFMinMaxCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const NVPTXSubtarget &STI)
PerformFMinMaxCombine - Combine (fmaxnum (fmaxnum a, b), c) into (fmaxnum3 a, b, c).
static void ComputePTXValueVTs(const TargetLowering &TLI, const DataLayout &DL, LLVMContext &Ctx, CallingConv::ID CallConv, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< uint64_t > &Offsets, uint64_t StartingOffset=0)
ComputePTXValueVTs - For the given Type Ty, returns the set of primitive legal-ish MVTs that compose ...
static void ReplaceBITCAST(SDNode *Node, SelectionDAG &DAG, SmallVectorImpl< SDValue > &Results)
static void replaceAtomicSwap128(SDNode *N, SelectionDAG &DAG, const NVPTXSubtarget &STI, SmallVectorImpl< SDValue > &Results)
static unsigned getMinMax3Opcode(unsigned MinMax2Opcode)
Get 3-input version of a 2-input min/max opcode.
static SDValue lowerStAsyncWithMbarrier(SDValue Op, SelectionDAG &DAG)
static SDValue lowerSTOREVector(SDValue Op, SelectionDAG &DAG, const NVPTXSubtarget &STI)
static SDValue lowerLoadVector(SDNode *N, SelectionDAG &DAG, const NVPTXSubtarget &STI)
static void replaceProxyReg(SDNode *N, SelectionDAG &DAG, const TargetLowering &TLI, SmallVectorImpl< SDValue > &Results)
static SDValue lowerStAsyncRelease(SDValue Op, SelectionDAG &DAG)
static void ReplaceCopyFromReg_128(SDNode *N, SelectionDAG &DAG, SmallVectorImpl< SDValue > &Results)
#define TCGEN05_LD_RED_INST(SHAPE, NUM, TYPE)
static SDValue getSymbolNode(SelectionDAG &DAG, MCSymbol *Sym, EVT T)
static SDValue lowerCTLZCTPOP(SDValue Op, SelectionDAG &DAG)
static SDValue combineMADConstOne(SDValue X, SDValue Add, EVT VT, SDLoc DL, TargetLowering::DAGCombinerInfo &DCI)
static unsigned getTcgen05LdRedID(Intrinsic::ID IID)
static SDValue combinePRMT(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, CodeGenOptLevel OptLevel)
static SDValue combinePackingMovIntoStore(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, unsigned Front, unsigned Back)
Fold packing movs into a store.
static void ReplaceINTRINSIC_W_CHAIN(SDNode *N, SelectionDAG &DAG, SmallVectorImpl< SDValue > &Results)
static SDValue getBuildVectorizedValue(unsigned N, const SDLoc &dl, SelectionDAG &DAG, T GetElement)
static SDValue getExtractVectorizedValue(SDValue V, unsigned I, EVT VT, const SDLoc &dl, SelectionDAG &DAG)
static SDValue combineSZExtToMulWide(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, CodeGenOptLevel OptLevel)
static unsigned canMergeParamLoadStoresStartingAt(unsigned Idx, uint32_t AccessSize, const SmallVectorImpl< EVT > &ValueVTs, const SmallVectorImpl< T > &Offsets, Align ParamAlignment)
static EVT getVectorizedVT(EVT VT, unsigned N, LLVMContext &C)
static SDValue lowerIntrinsicWOChain(SDValue Op, SelectionDAG &DAG)
static std::optional< unsigned > getScalar3OpcodeForReduction(unsigned ReductionOpcode)
Get 3-input scalar reduction opcode.
static SDValue lowerIntrinsicWChain(SDValue Op, SelectionDAG &DAG)
static bool isNonCoalescableBuildVector(const SDValue &BV)
Check if a v2f32 BUILD_VECTOR provably packs values from non-adjacent register pairs (non-coalescable...
static bool isConstZero(const SDValue &Operand)
static unsigned getF16SubOpc(Intrinsic::ID AddIntrinsicID)
static SDValue LowerVectorArith(SDValue Op, SelectionDAG &DAG)
static SDValue LowerTcgen05MMADisableOutputLane(SDValue Op, SelectionDAG &DAG)
static bool IsMulWideOperandDemotable(SDValue Op, unsigned OptSize, OperandSignedness &S)
IsMulWideOperandDemotable - Checks if the provided DAG node is an operand that can be demoted to OptS...
static unsigned getTcgen05MMADisableOutputLane(unsigned IID)
static std::pair< APInt, APInt > getPRMTDemandedBits(const APInt &SelectorVal, const APInt &DemandedBits)
static APInt computePRMT(APInt A, APInt B, APInt Selector, unsigned Mode)
static ISD::NodeType getScalarOpcodeForReduction(unsigned ReductionOpcode)
static SDValue PerformREMCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, CodeGenOptLevel OptLevel)
static SDValue lowerBSWAP(SDValue Op, SelectionDAG &DAG)
static SDValue lowerMSTORE(SDValue Op, SelectionDAG &DAG)
static SDValue PerformMULCombineWithOperands(SDNode *N, SDValue N0, SDValue N1, TargetLowering::DAGCombinerInfo &DCI)
static void computeKnownBitsForPRMT(const SDValue Op, KnownBits &Known, const SelectionDAG &DAG, unsigned Depth)
static SDValue combineUnpackingMovIntoLoad(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
Fold unpacking movs into a load by increasing the number of return values.
#define TCGEN05_LD_RED_INTR(SHAPE, NUM, TYPE)
static SDValue lowerTensormapReplaceElemtype(SDValue Op, SelectionDAG &DAG)
static SDValue LowerClusterLaunchControlQueryCancel(SDValue Op, SelectionDAG &DAG)
static SDValue PerformSETCCCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const NVPTXSubtarget &STI)
static std::optional< std::pair< SDValue, SDValue > > lowerTcgen05Ld(SDNode *N, SelectionDAG &DAG, bool HasOffset=false)
static SDValue lowerCvtRSIntrinsics(SDValue Op, SelectionDAG &DAG)
static std::optional< std::pair< SDValue, SDValue > > replaceLoadVector(SDNode *N, SelectionDAG &DAG, const NVPTXSubtarget &STI)
replaceLoadVector - Convert vector loads into multi-output scalar loads.
static SDValue expandFSH64(SDValue A, SDValue B, SDValue ShiftAmount, SDLoc DL, unsigned Opcode, SelectionDAG &DAG)
static cl::opt< bool > AllowFTZAtomics("nvptx-allow-ftz-atomics", cl::Hidden, cl::desc("NVPTX Specific: Lower atomicrmw fadd to atom.add even when its " "FTZ behavior does not match the function's denormal mode."), cl::init(true))
static bool AreMulWideOperandsDemotable(SDValue LHS, SDValue RHS, unsigned OptSize, bool &IsSigned)
AreMulWideOperandsDemotable - Checks if the given LHS and RHS operands can be demoted to OptSize bits...
static std::pair< MemSDNode *, uint32_t > convertMLOADToLoadWithUsedBytesMask(MemSDNode *N, SelectionDAG &DAG, const NVPTXSubtarget &STI)
static SDValue TryMULWIDECombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
TryMULWIDECombine - Attempt to replace a multiply of M bits with a multiply of M/2 bits that produces...
static SDValue lowerPrmtIntrinsic(SDValue Op, SelectionDAG &DAG)
static SDValue combineMulSelectConstOne(SDValue X, SDValue Select, EVT VT, SDLoc DL, TargetLowering::DAGCombinerInfo &DCI)
static SDValue buildTreeReduction(const SmallVector< SDValue > &Elements, EVT EltTy, ArrayRef< std::pair< unsigned, unsigned > > Ops, const SDLoc &DL, const SDNodeFlags Flags, SelectionDAG &DAG)
Reduces the elements using the scalar operations provided.
static SDValue combineProxyReg(SDNode *N, TargetLowering::DAGCombinerInfo &DCI)
static SmallVector< unsigned, 16 > VectorizePTXValueVTs(const SmallVectorImpl< EVT > &ValueVTs, const SmallVectorImpl< T > &Offsets, Align ParamAlignment, bool IsVAArg=false)
static SDValue getPRMT(SDValue A, SDValue B, SDValue Selector, SDLoc DL, SelectionDAG &DAG, unsigned Mode=NVPTX::PTXPrmtMode::NONE)
static SDValue matchMADConstOnePattern(SDValue Add)
static SDValue correctParamType(SDValue V, EVT ExpectedVT, ISD::ArgFlagsTy Flags, SelectionDAG &DAG, SDLoc dl)
static ISD::NodeType getExtOpcode(const ISD::ArgFlagsTy &Flags)
static cl::opt< bool > UsePrecSqrtF32("nvptx-prec-sqrtf32", cl::Hidden, cl::desc("NVPTX Specific: 0 use sqrt.approx, 1 use sqrt.rn."), cl::init(true))
static MachinePointerInfo refinePtrAS(SDValue &Ptr, SelectionDAG &DAG)
static void computeKnownBitsForLoadV(const SDValue Op, KnownBits &Known)
static APInt getPRMTSelector(const APInt &Selector, unsigned Mode)
static EVT promoteScalarIntegerPTX(const EVT VT)
PromoteScalarIntegerPTX Used to make sure the arguments/returns are suitable for passing and promote ...
static std::optional< std::tuple< SDValue, SDValue, SDValue > > lowerTcgen05LdRed(SDNode *N, SelectionDAG &DAG)
static SDValue simplifyDemandedBitsForPRMT(SDValue PRMT, const APInt &DemandedBits, SelectionDAG &DAG, const TargetLowering &TLI, unsigned Depth)
static SDValue lowerFREM(SDValue Op, SelectionDAG &DAG)
static SDValue canonicalizePRMTInput(SDValue Op, SelectionDAG &DAG)
static SDValue sinkProxyReg(SDValue R, SDValue Chain, TargetLowering::DAGCombinerInfo &DCI)
static SDValue lowerFSH(SDValue Op, SelectionDAG &DAG)
static SDValue lowerTensormapReplaceSwizzleMode(SDValue Op, SelectionDAG &DAG)
static SDValue combineIntrinsicWOChain(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const NVPTXSubtarget &STI)
static SDValue PromoteBinOpToF32(SDNode *N, SelectionDAG &DAG)
static std::optional< std::pair< unsigned int, MVT > > getVectorLoweringShape(EVT VectorEVT, const NVPTXSubtarget &STI, unsigned AddressSpace)
static SDValue combineF16AddWithNeg(SDNode *N, SelectionDAG &DAG, Intrinsic::ID AddIntrinsicID)
static cl::opt< bool > UseApproxLog2F32("nvptx-approx-log2f32", cl::desc("NVPTX Specific: whether to use lg2.approx for log2"), cl::init(false))
Whereas CUDA's implementation (see libdevice) uses ex2.approx for exp2(), it does NOT use lg2....
static SDValue lowerSELECT(SDValue Op, SelectionDAG &DAG)
static SDValue combineLOAD(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const NVPTXSubtarget &STI)
static SDValue combineSTORE(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, const NVPTXSubtarget &STI)
static SDValue PerformSHLCombine(SDNode *N, TargetLowering::DAGCombinerInfo &DCI, CodeGenOptLevel OptLevel)
PerformSHLCombine - Runs PTX-specific DAG combine patterns on SHL nodes.
uint64_t High
#define P(N)
const SmallVectorImpl< MachineOperand > & Cond
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
Contains matchers for matching SelectionDAG nodes and values.
SI Fold Operands
Func MI getDebugLoc()))
This file contains some templates that are useful if you are working with the STL at all.
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
This file describes how to lower LLVM code to machine code.
Value * RHS
Value * LHS
BinaryOperator * Mul
static const fltSemantics & IEEEsingle()
Definition APFloat.h:304
static const fltSemantics & IEEEhalf()
Definition APFloat.h:302
static APFloat getInf(const fltSemantics &Sem, bool Negative=false)
Factory for Positive and Negative Infinity.
Definition APFloat.h:1202
Class for arbitrary precision integers.
Definition APInt.h:78
LLVM_ABI APInt getLoBits(unsigned numBits) const
Compute an APInt containing numBits lowbits from this APInt.
Definition APInt.cpp:640
uint64_t getZExtValue() const
Get zero extended value.
Definition APInt.h:1561
LLVM_ABI APInt getHiBits(unsigned numBits) const
Compute an APInt containing numBits highbits from this APInt.
Definition APInt.cpp:635
LLVM_ABI APInt trunc(unsigned width) const
Truncate to new width.
Definition APInt.cpp:969
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
Definition APInt.h:1351
unsigned getBitWidth() const
Return the number of bits in the APInt.
Definition APInt.h:1509
bool isSignedIntN(unsigned N) const
Check if this APInt has an N-bits signed integer value.
Definition APInt.h:432
bool slt(const APInt &RHS) const
Signed less than comparison.
Definition APInt.h:1135
LLVM_ABI APInt extractBits(unsigned numBits, unsigned bitPosition) const
Return an APInt with the extracted bits [bitPosition,bitPosition+numBits).
Definition APInt.cpp:478
bool isIntN(unsigned N) const
Check if this APInt has an N-bits unsigned integer value.
Definition APInt.h:429
bool sge(const APInt &RHS) const
Signed greater or equal comparison.
Definition APInt.h:1242
an instruction to allocate memory on the stack
This class represents an incoming formal argument to a Function.
Definition Argument.h:32
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Definition ArrayRef.h:185
an instruction that atomically reads a memory location, combines it with another value,...
@ Add
*p = old + v
@ FAdd
*p = old + v
@ Min
*p = old <signed v ? old : v
@ Sub
*p = old - v
@ And
*p = old & v
@ Xor
*p = old ^ v
@ UIncWrap
Increment one up to a maximum value.
@ Max
*p = old >signed v ? old : v
@ UMin
*p = old <unsigned v ? old : v
@ UMax
*p = old >unsigned v ? old : v
@ UDecWrap
Decrement one until a minimum value or zero.
bool isFloatingPointOperation() const
BinOp getOperation() const
unsigned getPointerAddressSpace() const
Returns the address space of the pointer operand.
This is an SDNode representing atomic operations.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
MaybeAlign getParamAlign(unsigned ArgNo) const
Extract the alignment for a call or parameter (0=unknown).
FunctionType * getFunctionType() const
const APInt & getAPIntValue() const
This is an important base class in LLVM.
Definition Constant.h:43
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
LLVM_ABI TypeSize getTypeAllocSize(Type *Ty) const
Returns the offset in bytes between successive objects of the specified type, including alignment pad...
LLVM_ABI Align getPrefTypeAlign(Type *Ty) const
Returns the preferred stack/global alignment for the specified type.
Diagnostic information for unsupported feature in backend.
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
Definition Function.cpp:640
Module * getParent()
Get the module that this global value is contained inside of...
Common base class shared among various IRBuilders.
Definition IRBuilder.h:114
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
This class is used to represent ISD::LOAD nodes.
Context object for machine code objects.
Definition MCContext.h:83
MCSection * getDataSection() const
static constexpr unsigned NoRegister
Definition MCRegister.h:60
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition MCSection.h:580
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
StringRef getName() const
getName - Get the symbol name.
Definition MCSymbol.h:188
Machine Value Type.
static auto integer_fixedlen_vector_valuetypes()
SimpleValueType SimpleTy
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
bool isScalableVector() const
Return true if this is a vector value type where the runtime length is machine dependent.
static auto integer_valuetypes()
TypeSize getSizeInBits() const
Returns the size of the specified MVT in bits.
static auto fixedlen_vector_valuetypes()
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
static MVT getVectorVT(MVT VT, unsigned NumElements)
MVT getVectorElementType() const
static MVT getIntegerVT(unsigned BitWidth)
static auto fp_valuetypes()
MVT getScalarType() const
If this is a vector, return the element type, otherwise return this.
static auto fp_fixedlen_vector_valuetypes()
const AllocaInst * getObjectAllocation(int ObjectIdx) const
Return the underlying Alloca of the specified stack object if it exists.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
DenormalMode getDenormalMode(const fltSemantics &FPType) const
Returns the denormal handling type for the default rounding mode of the function.
MCContext & getContext() const
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...
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
@ EK_Inline
EK_Inline - Jump table entries are emitted inline at their point of use.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MOInvariant
The memory access always returns the same value (or traps).
@ MOStore
The memory access writes data.
This SDNode is used for target intrinsics that touch memory and need an associated MachineMemOperand.
This is an abstract virtual class for memory operations.
Align getAlign() const
MachineMemOperand * getMemOperand() const
Return the unique MachineMemOperand object describing the memory reference performed by operation.
EVT getMemoryVT() const
Return the type of the in-memory value.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:68
bool hasTensormapReplaceElemtypeSupport(unsigned ElemType) const
bool hasTensormapReplaceSwizzleModeSupport(unsigned SwizzleMode) const
bool hasUsedBytesMaskPragma() const
bool hasAtomSwap128() const
bool hasF32x2Instructions() const
bool has256BitVectorLoadStore(unsigned AS) const
AtomicOrdering atomicOperationOrderAfterFenceSplit(const Instruction *I) const override
ConstraintType getConstraintType(StringRef Constraint) const override
getConstraintType - Given a constraint letter, return the type of constraint it is for this target.
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
This callback is invoked for operations that are unsupported by the target, which are registered to u...
bool SimplifyDemandedBitsForTargetNode(SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, KnownBits &Known, TargetLoweringOpt &TLO, unsigned Depth=0) const override
Attempt to simplify any target nodes based on the demanded bits/elts, returning true on success.
AtomicExpansionKind shouldExpandAtomicRMWInIR(const AtomicRMWInst *AI) const override
Returns how the IR-level AtomicExpand pass should expand the given AtomicRMW, if at all.
NVPTXTargetLowering(const NVPTXTargetMachine &TM, const NVPTXSubtarget &STI)
unsigned getPreferredFPToIntOpcode(unsigned Op, EVT FromVT, EVT ToVT) const override
bool useF32FTZ(const MachineFunction &MF) const
SDValue LowerSTACKSAVE(SDValue Op, SelectionDAG &DAG) const
SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG, int Enabled, int &ExtraSteps, bool &UseOneConst, bool Reciprocal) const override
Hooks for building estimates in place of slower divisions and square roots.
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl< ISD::OutputArg > &Outs, const SmallVectorImpl< SDValue > &OutVals, const SDLoc &dl, SelectionDAG &DAG) const override
This hook must be implemented to lower outgoing return values, described by the Outs array,...
SDValue LowerFormalArguments(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl< ISD::InputArg > &Ins, const SDLoc &dl, SelectionDAG &DAG, SmallVectorImpl< SDValue > &InVals) const override
This hook must be implemented to lower the incoming (formal) arguments, described by the Ins array,...
MCSymbol * getParamSymbol(MCContext &Ctx, const Function *F, int Idx) const
void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const override
Lower the specified operand into the Ops vector.
SDValue LowerSTACKRESTORE(SDValue Op, SelectionDAG &DAG) const
Instruction * emitTrailingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const override
TargetLoweringBase::LegalizeTypeAction getPreferredVectorAction(MVT VT) const override
Return the preferred vector type legalization action.
NVPTX::DivPrecisionLevel getDivF32Level(const MachineFunction &MF, const SDNode &N) const
bool shouldInsertFencesForAtomic(const Instruction *) const override
Whether AtomicExpandPass should automatically insert fences and reduce ordering for this atomic.
SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const
EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Ctx, EVT VT) const override
Return the ValueType of the result of SETCC operations.
std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const override
Given a physical register constraint (e.g.
bool isLegalAddressingMode(const DataLayout &DL, const AddrMode &AM, Type *Ty, unsigned AS, Instruction *I=nullptr) const override
isLegalAddressingMode - Return true if the addressing mode represented by AM is legal for this target...
Instruction * emitLeadingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const override
Inserts in the IR a target-specific intrinsic specifying a fence.
void getTgtMemIntrinsic(SmallVectorImpl< IntrinsicInfo > &Infos, const CallBase &I, MachineFunction &MF, unsigned Intrinsic) const override
Given an intrinsic, checks if on the target the intrinsic will need to map to a MemIntrinsicNode (tou...
bool allowFMA(MachineFunction &MF, CodeGenOptLevel OptLevel) const
bool usePrecSqrtF32(const SDNode *N=nullptr) const
unsigned getJumpTableEncoding() const override
Return the entry encoding for a jump table in the current function.
SDValue LowerCall(CallLoweringInfo &CLI, SmallVectorImpl< SDValue > &InVals) const override
This hook must be implemented to lower calls into the specified DAG.
void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const override
Determine which of the bits specified in Mask are known to be either zero or one and return them in t...
MCSection * SelectSectionForGlobal(const GlobalObject *GO, SectionKind Kind, const TargetMachine &TM) const override
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
Definition Type.cpp:911
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
const DebugLoc & getDebugLoc() const
Represents one node in the SelectionDAG.
ArrayRef< SDUse > ops() const
const APInt & getAsAPIntVal() const
Helper method returns the APInt value of a ConstantSDNode.
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
bool hasOneUse() const
Return true if there is exactly one use of this node.
unsigned getIROrder() const
Return the node ordering.
SDNodeFlags getFlags() const
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
SDVTList getVTList() const
const SDValue & getOperand(unsigned Num) const
bool isUndef() const
Returns true if the node type is UNDEF or POISON.
iterator_range< user_iterator > users()
void setFlags(SDNodeFlags NewFlags)
Represents a use of a SDNode.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
SDNode * getNode() const
get the SDNode which holds the desired result
bool hasOneUse() const
Return true if there is exactly one node using value ResNo of Node, in exactly one operand.
SDValue getValue(unsigned R) const
EVT getValueType() const
Return the ValueType of the referenced return value.
TypeSize getValueSizeInBits() const
Returns the size of the value in bits.
const SDValue & getOperand(unsigned i) const
uint64_t getScalarValueSizeInBits() const
uint64_t getConstantOperandVal(unsigned i) const
unsigned getOpcode() const
SectionKind - This is a simple POD value that classifies the properties of a section.
Definition SectionKind.h:22
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS)
Return an AddrSpaceCastSDNode.
const TargetSubtargetInfo & getSubtarget() const
LLVM_ABI SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
LLVM_ABI void ExtractVectorElements(SDValue Op, SmallVectorImpl< SDValue > &Args, unsigned Start=0, unsigned Count=0, EVT EltVT=EVT())
Append the extracted elements from Start to Count out of the vector Op in Args.
LLVM_ABI SDValue getFreeze(SDValue V)
Return a freeze using the SDLoc of the value operand.
LLVM_ABI SDValue getSymbolFunctionGlobalAddress(SDValue Op, Function **TargetFunction=nullptr)
Return a GlobalAddress of the function from the current module with name matching the given ExternalS...
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef< SDValue > Ops, EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MOLoad|MachineMemOperand::MOStore, LocationSize Size=LocationSize::precise(0), const AAMDNodes &AAInfo=AAMDNodes())
Creates a MemIntrinsicNode that may produce a result and takes a list of operands.
SDValue getSetCC(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Chain=SDValue(), bool IsSignaling=false, SDNodeFlags Flags={})
Helper function to make it easier to build SetCC's if you just have an ISD::CondCode instead of an SD...
LLVM_ABI Align getEVTAlign(EVT MemoryVT) const
Compute the default alignment value for the given type.
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
LLVM_ABI SDNode * MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs, ArrayRef< SDValue > Ops)
This mutates the specified node to have the specified return type, opcode, and operands.
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue getCALLSEQ_END(SDValue Chain, SDValue Op1, SDValue Op2, SDValue InGlue, const SDLoc &DL)
Return a new CALLSEQ_END node, which always must have a glue result (to ensure it's not CSE'd).
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
SDValue getSelect(const SDLoc &DL, EVT VT, SDValue Cond, SDValue LHS, SDValue RHS, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build Select's if you just have operands and don't want to check...
const DataLayout & getDataLayout() const
LLVM_ABI SDValue getTokenFactor(const SDLoc &DL, SmallVectorImpl< SDValue > &Vals)
Creates a new TokenFactor containing Vals.
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Helper function to build ISD::STORE nodes.
LLVM_ABI SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
SDValue getCALLSEQ_START(SDValue Chain, uint64_t InSize, uint64_t OutSize, const SDLoc &DL)
Return a new CALLSEQ_START node, that starts new call frame, in which InSize bytes are set up inside ...
SDValue getSelectCC(const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue True, SDValue False, ISD::CondCode Cond, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build SelectCC's if you just have an ISD::CondCode instead of an...
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI SDValue getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either any-extending or truncat...
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI SDValue getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of float type, to the float type VT, by either extending or rounding (by tr...
SDValue getTargetConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
MachineFunction & getMachineFunction() const
LLVM_ABI KnownBits computeKnownBits(SDValue Op, unsigned Depth=0) const
Determine which bits of Op are known to be either zero or one and return them in Known.
LLVM_ABI SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either zero-extending or trunca...
SDValue getObjectPtrOffset(const SDLoc &SL, SDValue Ptr, TypeSize Offset)
Create an add instruction with appropriate flags when used for addressing some offset of an object.
LLVMContext * getContext() const
const SDValue & setRoot(SDValue N)
Set the current root tag of the SelectionDAG.
LLVM_ABI SDValue getMCSymbol(MCSymbol *Sym, EVT VT)
ArrayRef< int > getMask() const
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
This class is used to represent ISD::STORE nodes.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
constexpr size_t size() const
Get the string size.
Definition StringRef.h:144
Align getStackAlign() const
getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligne...
void setBooleanVectorContents(BooleanContent Ty)
Specify how the target extends the result of a vector boolean value from a vector of i1 to a wider ty...
void setOperationAction(unsigned Op, MVT VT, LegalizeAction Action)
Indicate that the specified operation does not work with the specified type and indicate what to do a...
void setMaxDivRemBitWidthSupported(unsigned SizeInBits)
Set the size in bits of the maximum div/rem the backend supports.
EVT getValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
Return the EVT corresponding to this LLVM type.
unsigned MaxStoresPerMemcpyOptSize
Likewise for functions with the OptSize attribute.
const TargetMachine & getTargetMachine() const
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain targets require unusual breakdowns of certain types.
virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain combinations of ABIs, Targets and features require that types are legal for some operations a...
void setOperationPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT)
Convenience method to set an operation to Promote and specify the type in a single call.
LegalizeTypeAction
This enum indicates whether a types are legal for a target, and if not, what action should be used to...
void addBypassSlowDiv(unsigned int SlowBitWidth, unsigned int FastBitWidth)
Tells the code generator which bitwidths to bypass.
MVT getRegisterType(LLVMContext &Context, EVT VT) const
Return the type of registers that this ValueType will eventually require.
void setMaxLargeFPConvertBitWidthSupported(unsigned SizeInBits)
Set the size in bits of the maximum fp to/from int conversion the backend supports.
virtual unsigned getNumRegisters(LLVMContext &Context, EVT VT, std::optional< MVT > RegisterVT=std::nullopt) const
Return the number of registers that this ValueType will eventually require.
void setMaxAtomicSizeInBitsSupported(unsigned SizeInBits)
Set the maximum atomic operation size supported by the backend.
virtual TargetLoweringBase::LegalizeTypeAction getPreferredVectorAction(MVT VT) const
Return the preferred vector type legalization action.
unsigned MaxStoresPerMemsetOptSize
Likewise for functions with the OptSize attribute.
void setBooleanContents(BooleanContent Ty)
Specify how the target extends the result of integer and floating point boolean values from i1 to a w...
unsigned MaxStoresPerMemmove
Specify maximum number of store instructions per memmove call.
void computeRegisterProperties(const TargetRegisterInfo *TRI)
Once all of the register classes are added, this allows us to compute derived properties we expose.
unsigned MaxStoresPerMemmoveOptSize
Likewise for functions with the OptSize attribute.
void addRegisterClass(MVT VT, const TargetRegisterClass *RC)
Add the specified register class as an available regclass for the specified value type.
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
unsigned MaxStoresPerMemset
Specify maximum number of store instructions per memset call.
void setTruncStoreAction(MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified truncating store does not work with the specified type and indicate what ...
void setMinCmpXchgSizeInBits(unsigned SizeInBits)
Sets the minimum cmpxchg or ll/sc size supported by the backend.
void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT)
If Opc/OrigVT is specified as being promoted, the promotion code defaults to trying a larger integer/...
AtomicExpansionKind
Enum that specifies what an atomic load/AtomicRMWInst is expanded to, if at all.
void setCondCodeAction(ArrayRef< ISD::CondCode > CCs, MVT VT, LegalizeAction Action)
Indicate that the specified condition code is or isn't supported on the target and indicate what to d...
void setTargetDAGCombine(ArrayRef< ISD::NodeType > NTs)
Targets should invoke this method for each target independent node that they want to provide a custom...
Align getMinStackArgumentAlignment() const
Return the minimum stack alignment of an argument.
void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified load with extension does not work with the specified type and indicate wh...
std::vector< ArgListEntry > ArgListTy
virtual Instruction * emitTrailingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const
virtual Instruction * emitLeadingFence(IRBuilderBase &Builder, Instruction *Inst, AtomicOrdering Ord) const
Inserts in the IR a target-specific intrinsic specifying a fence.
unsigned MaxStoresPerMemcpy
Specify maximum number of store instructions per memcpy call.
void setSchedulingPreference(Sched::Preference Pref)
Specify the target scheduling preference.
void setJumpIsExpensive(bool isExpensive=true)
Tells the code generator not to expand logic operations on comparison predicates into separate sequen...
LegalizeAction getOperationAction(unsigned Op, EVT VT) const
Return how this operation should be treated: either it is legal, needs to be promoted to a larger siz...
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
SDValue SimplifyMultipleUseDemandedBits(SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, SelectionDAG &DAG, unsigned Depth=0) const
More limited version of SimplifyDemandedBits that can be used to "lookthrough" ops that don't contrib...
virtual ConstraintType getConstraintType(StringRef Constraint) const
Given a constraint, return the type of constraint it is for this target.
virtual std::pair< unsigned, const TargetRegisterClass * > getRegForInlineAsmConstraint(const TargetRegisterInfo *TRI, StringRef Constraint, MVT VT) const
Given a physical register constraint (e.g.
TargetLowering(const TargetLowering &)=delete
SDValue expandRoundInexactToOdd(EVT ResultVT, SDValue Op, const SDLoc &DL, SelectionDAG &DAG) const
Truncate Op to ResultVT.
SDValue expandFP_ROUND(SDNode *Node, SelectionDAG &DAG) const
Expand round(fp) to fp conversion.
virtual void LowerAsmOperandForConstraint(SDValue Op, StringRef Constraint, std::vector< SDValue > &Ops, SelectionDAG &DAG) const
Lower the specified operand into the Ops vector.
Primary interface to the complete machine description for the target machine.
CodeGenOptLevel getOptLevel() const
Returns the optimization level: None, Less, Default, or Aggressive.
TargetOptions Options
MCSymbol * getSymbol(const GlobalValue *GV) const
FPOpFusion::FPOpFusionMode AllowFPOpFusion
AllowFPOpFusion - This flag is set by the -fp-contract=xxx option.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetFrameLowering * getFrameLowering() const
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
static constexpr TypeSize getFixed(ScalarTy ExactSize)
Definition TypeSize.h:343
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition Type.h:257
bool isVoidTy() const
Return true if this is 'void'.
Definition Type.h:141
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:255
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
Definition Value.cpp:319
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_ABI APInt pow(const APInt &X, int64_t N)
Compute X^N for N>=0.
Definition APInt.cpp:3187
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
Definition ISDOpcodes.h:41
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
Definition ISDOpcodes.h:829
@ STACKRESTORE
STACKRESTORE has two operands, an input chain and a pointer to restore to it returns an output chain.
@ STACKSAVE
STACKSAVE - STACKSAVE has one operand, an input chain.
@ POISON
POISON - A poison node.
Definition ISDOpcodes.h:236
@ MLOAD
Masked load and store - consecutive vector load and store operations with additional mask operand tha...
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
Definition ISDOpcodes.h:275
@ BSWAP
Byte Swap and Counting operators.
Definition ISDOpcodes.h:789
@ VAEND
VAEND, VASTART - VAEND and VASTART have three operands: an input chain, pointer, and a SRCVALUE.
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:294
@ ADD
Simple integer binary arithmetic operators.
Definition ISDOpcodes.h:264
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
Definition ISDOpcodes.h:863
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:520
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
Definition ISDOpcodes.h:220
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
Definition ISDOpcodes.h:890
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
Definition ISDOpcodes.h:586
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
Definition ISDOpcodes.h:417
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition ISDOpcodes.h:749
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:280
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
Definition ISDOpcodes.h:254
@ CTLZ_ZERO_POISON
Definition ISDOpcodes.h:798
@ SIGN_EXTEND
Conversion operators.
Definition ISDOpcodes.h:854
@ READSTEADYCOUNTER
READSTEADYCOUNTER - This corresponds to the readfixedcounter intrinsic.
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BR_CC
BR_CC - Conditional branch.
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:352
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition ISDOpcodes.h:374
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:806
@ UNDEF
UNDEF - An undefined node.
Definition ISDOpcodes.h:233
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
Definition ISDOpcodes.h:247
@ VACOPY
VACOPY - VACOPY has 5 operands: an input chain, a destination pointer, a source pointer,...
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
Definition ISDOpcodes.h:230
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:348
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
Definition ISDOpcodes.h:706
@ SHL
Shift and rotation operations.
Definition ISDOpcodes.h:771
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
Definition ISDOpcodes.h:651
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
Definition ISDOpcodes.h:616
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
Definition ISDOpcodes.h:578
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
Definition ISDOpcodes.h:224
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
Definition ISDOpcodes.h:860
@ DEBUGTRAP
DEBUGTRAP - Trap intended to get the attention of a debugger.
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
Definition ISDOpcodes.h:821
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
Definition ISDOpcodes.h:386
@ SMULO
Same for multiplication.
Definition ISDOpcodes.h:356
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
Definition ISDOpcodes.h:898
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition ISDOpcodes.h:729
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
Definition ISDOpcodes.h:988
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition ISDOpcodes.h:815
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:328
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
@ FRAMEADDR
FRAMEADDR, RETURNADDR - These nodes represent llvm.frameaddress and llvm.returnaddress on the DAG.
Definition ISDOpcodes.h:110
@ STRICT_FP_TO_UINT
Definition ISDOpcodes.h:480
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:479
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
Definition ISDOpcodes.h:936
@ READCYCLECOUNTER
READCYCLECOUNTER - This corresponds to the readcyclecounter intrinsic.
@ AND
Bitwise operators - logical and, logical or, logical xor.
Definition ISDOpcodes.h:741
@ TRAP
TRAP - Trapping instruction.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
Definition ISDOpcodes.h:205
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:304
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
Definition ISDOpcodes.h:567
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
Definition ISDOpcodes.h:969
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ VECREDUCE_FMINIMUM
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
Definition ISDOpcodes.h:866
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
Definition ISDOpcodes.h:843
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:536
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition ISDOpcodes.h:365
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
Definition ISDOpcodes.h:338
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
Definition ISDOpcodes.h:213
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
Definition ISDOpcodes.h:753
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
Definition ISDOpcodes.h:558
bool isExtOpcode(unsigned Opcode)
LLVM_ABI bool allOperandsUndef(const SDNode *N)
Return true if the node has at least one operand and all operands of the specified node are ISD::UNDE...
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
LLVM_ABI StringRef getName(ID id)
Return the LLVM name for an intrinsic, such as "llvm.ppc.altivec.lvx".
@ Bitcast
Perform the operation on a different, but equivalently sized type.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
@ ATOMIC_CMP_SWAP_B128
These nodes are used to lower atomic instructions with i128 type.
@ DeviceParam
Definition NVPTX.h:334
@ EntryParam
Definition NVPTX.h:328
bool isPackedVectorTy(EVT VT)
DivPrecisionLevel
Definition NVPTX.h:465
match_combine_or< CastInst_match< OpTy, TruncInst >, OpTy > m_TruncOrSelf(const OpTy &Op)
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
match_deferred< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
auto m_Value()
Match an arbitrary value and ignore it.
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
BinOpPred_match< LHS, RHS, is_bitwiselogic_op > m_BitwiseLogic(const LHS &L, const RHS &R)
Matches bitwise logic operations.
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
@ User
could "use" a pointer
NodeAddr< NodeBase * > Node
Definition RDFGraph.h:381
This is an optimization pass for GlobalISel generic memory operations.
@ Low
Lower the current thread's priority such that it does not affect foreground tasks significantly.
Definition Threading.h:280
@ Offset
Definition DWP.cpp:577
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
Definition STLExtras.h:830
Align getDeviceByValParamAlign(const Function *F, Type *ArgTy, unsigned AttrIdx, const DataLayout &DL)
The .param-space alignment for a byval parameter or call argument: the (possibly promoted) parameter ...
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1739
SDValue peekThroughFreeze(SDValue V)
Return the non-frozen source operand of V if it exists.
RelativeUniformCounterPtr Values
Definition InstrProf.h:91
@ Known
Known to have no common set bits.
LLVM_ABI void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs=nullptr, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
Definition Analysis.cpp:119
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2554
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
@ Store
The extracted value is stored (ExtractElement only).
Align getPTXParamTypeAlign(Type *ArgTy, const DataLayout &DL)
ABI alignment of ArgTy in .param space, capped at the PTX maximum of 128.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
Definition InstrProf.h:143
uint64_t PowerOf2Ceil(uint64_t A)
Returns the power of two which is greater than or equal to the given value.
Definition MathExtras.h:380
bool isReleaseOrStronger(AtomicOrdering AO)
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
Definition STLExtras.h:2026
auto reverse(ContainerTy &&C)
Definition STLExtras.h:407
std::optional< SyncScope::ID > getAtomicSyncScopeID(const Instruction *I)
A helper function that returns an atomic operation's sync scope; returns std::nullopt if it is not an...
unsigned promoteScalarArgumentSize(unsigned size)
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1753
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:163
bool shouldPassAsArray(Type *Ty)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
Definition Alignment.h:144
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
Definition STLExtras.h:551
CodeGenOptLevel
Code generation optimization level.
Definition CodeGen.h:149
@ Default
-O2, -Os, -Oz
Definition CodeGen.h:152
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
Definition Casting.h:547
AtomicOrdering
Atomic ordering for LLVM's memory model.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
@ FAdd
Sum of floats.
DWARFExpression::Operation Op
Align getPTXParamAlign(const Function *F, Type *Ty, unsigned AttrIdx, const DataLayout &DL)
Alignment for a function parameter or return value at AttributeList index AttrIdx (FirstArgIndex + ar...
ArrayRef(const T &OneElt) -> ArrayRef< T >
LLVM_ABI ConstantSDNode * isConstOrConstSplat(SDValue N, bool AllowUndefs=false, bool AllowTruncation=false)
Returns the SDNode if it is a constant splat BuildVector or constant int.
bool isAcquireOrStronger(AtomicOrdering AO)
constexpr unsigned BitWidth
bool isKernelFunction(const Function &F)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
constexpr auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
Definition Sequence.h:341
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
Definition Alignment.h:201
unsigned getFromTypeWidthForLoad(const MemSDNode *Mem)
The bit-width of a single element loaded by Mem, i.e.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition BitVector.h:880
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Definition Alignment.h:77
@ PreserveSign
The sign of a flushed-to-zero number is preserved in the sign of 0.
DenormalModeKind Output
Denormal flushing mode for floating point instruction results in the default floating point environme...
Extended Value Type.
Definition ValueTypes.h:35
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
Definition ValueTypes.h:418
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
Definition ValueTypes.h:145
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT.
Definition ValueTypes.h:70
EVT changeTypeToInteger() const
Return the type converted to an equivalently sized integer or vector with integer element type.
Definition ValueTypes.h:129
bool bitsGT(EVT VT) const
Return true if this has more bits than VT.
Definition ValueTypes.h:307
bool bitsLT(EVT VT) const
Return true if this has less bits than VT.
Definition ValueTypes.h:323
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
Definition ValueTypes.h:155
ElementCount getVectorElementCount() const
Definition ValueTypes.h:373
bool is32BitVector() const
Return true if this is a 32-bit vector type.
Definition ValueTypes.h:220
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
Definition ValueTypes.h:396
uint64_t getScalarSizeInBits() const
Definition ValueTypes.h:408
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
Definition ValueTypes.h:339
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
Definition ValueTypes.h:404
bool isVector() const
Return true if this is a vector value type.
Definition ValueTypes.h:176
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
Definition ValueTypes.h:346
bool bitsEq(EVT VT) const
Return true if this has the same number of bits as VT.
Definition ValueTypes.h:279
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
EVT getVectorElementType() const
Given a vector type, return the type of each element.
Definition ValueTypes.h:351
EVT changeElementType(LLVMContext &Context, EVT EltVT) const
Return a VT for a type whose attributes match ourselves with the exception of the element type that i...
Definition ValueTypes.h:121
bool isScalarInteger() const
Return true if this is an integer, but not a vector.
Definition ValueTypes.h:165
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Definition ValueTypes.h:359
bool isInteger() const
Return true if this is an integer or a vector integer type.
Definition ValueTypes.h:160
static KnownBits makeConstant(const APInt &C)
Create known bits from a known constant.
Definition KnownBits.h:315
static LLVM_ABI KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
KnownBits concat(const KnownBits &Lo) const
Concatenate the bits from Lo onto the bottom of *this.
Definition KnownBits.h:247
unsigned getBitWidth() const
Get the bit width of this value.
Definition KnownBits.h:44
unsigned countMaxActiveBits() const
Returns the maximum number of bits needed to represent all possible unsigned values with these known ...
Definition KnownBits.h:310
This class contains a discriminated union of information about pointers in memory operands,...
MachinePointerInfo getWithOffset(int64_t O) const
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition Alignment.h:106
These are IR-level optimization flags that may be propagated to SDNodes.
bool hasAllowContract() const
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...
This structure contains all information that is necessary for lowering calls.
SmallVector< ISD::InputArg, 32 > Ins
SmallVector< ISD::OutputArg, 32 > Outs
Type * RetTy
Same as OrigRetTy, or partially legalized for soft float libcalls.
LLVM_ABI SDValue CombineTo(SDNode *N, ArrayRef< SDValue > To, bool AddTo=true)
A convenience struct that encapsulates a DAG, and two SDValues for returning information from TargetL...