33#include "llvm/IR/IntrinsicsNVPTX.h"
46#define DEBUG_TYPE "nvptx-isel"
47#define PASS_NAME "NVPTX DAG->DAG Pattern Instruction Selection"
51 cl::desc(
"Enable reciprocal sqrt optimization"));
58 cl::desc(
"Enable MAD wide optimization"));
63 NVPTXScopes() =
default;
70 LLVMContext *Context =
nullptr;
73enum class NVPTXMemCacheHintInstruction { Ld, St, Atom };
75struct NVPTXMemCacheHintAccess {
76 NVPTXMemCacheHintInstruction Instruction;
77 NVPTX::AddressSpace AddrSpace;
83struct NVPTXMemCacheHintOperands {
84 SDValue EvictionAndPrefetchHint;
89 const NVPTXTargetMachine &TM;
91 NVPTX::DivPrecisionLevel getDivF32Level(
const SDNode *
N)
const;
92 bool usePrecSqrtF32(
const SDNode *
N)
const;
93 bool useF32FTZ()
const;
94 bool allowFMA()
const;
95 bool doRsqrtOpt()
const;
96 bool doMADWideOpt()
const;
101 NVPTXDAGToDAGISel() =
delete;
103 explicit NVPTXDAGToDAGISel(NVPTXTargetMachine &tm,
CodeGenOptLevel OptLevel);
106 const NVPTXSubtarget *Subtarget =
nullptr;
108 bool SelectInlineAsmMemoryOperand(
const SDValue &
Op,
110 std::vector<SDValue> &OutOps)
override;
114#include "NVPTXGenDAGISel.inc"
116 void Select(SDNode *
N)
override;
117 bool tryIntrinsicChain(SDNode *
N);
118 bool tryIntrinsicVoid(SDNode *
N);
119 void SelectTexSurfHandle(SDNode *
N);
120 bool tryLoad(SDNode *
N);
121 bool tryLoadVector(SDNode *
N);
122 bool tryLDU(SDNode *
N);
123 bool tryLDG(MemSDNode *
N);
124 bool tryStore(SDNode *
N);
125 bool tryStoreVector(SDNode *
N);
126 bool tryFence(SDNode *
N);
127 bool tryBFE(SDNode *
N);
128 bool tryBF16ArithToFMA(SDNode *
N);
129 bool tryConstantFP(SDNode *
N);
130 bool SelectSETP_F16X2(SDNode *
N);
131 bool SelectSETP_BF16X2(SDNode *
N);
132 bool tryUNPACK_VECTOR(SDNode *
N);
133 bool tryEXTRACT_VECTOR_ELEMENT(SDNode *
N);
134 void SelectV2I64toI128(SDNode *
N);
135 void SelectI128toV2I64(SDNode *
N);
136 void SelectCpAsyncBulkTensorReduceCommon(SDNode *
N,
unsigned RedOp,
137 bool IsIm2Col =
false);
138 void SelectTcgen05Ld(SDNode *
N,
bool hasOffset =
false);
139 void SelectTcgen05St(SDNode *
N,
bool hasOffset =
false);
140 void selectAtomicSwap128(SDNode *
N);
142 inline SDValue getI32Imm(
unsigned Imm,
const SDLoc &
DL) {
143 return CurDAG->getTargetConstant(
Imm,
DL, MVT::i32);
145 NVPTX::Ordering getMemOrder(
const MemSDNode *
N)
const;
146 NVPTX::Scope getAtomicScope(
const MemSDNode *
N)
const;
149 SDValue getPTXCmpMode(
const CondCodeSDNode &CondCode);
157 NVPTXMemCacheHintOperands
158 getMemCacheHintOperands(
const MemSDNode *
N, NVPTXMemCacheHintAccess
Access,
159 const SDLoc &
DL,
bool EmitDiagnostics =
true);
165 std::pair<NVPTX::Ordering, NVPTX::Scope>
166 insertMemoryInstructionFence(SDLoc
DL,
SDValue &Chain, MemSDNode *
N);
167 NVPTX::Scope getOperationScope(MemSDNode *
N, NVPTX::Ordering O)
const;
170 static NVPTX::AddressSpace getAddrSpace(
const MemSDNode *
N);
176 explicit NVPTXDAGToDAGISelLegacy(NVPTXTargetMachine &tm,
186 return new NVPTXDAGToDAGISelLegacy(TM, OptLevel);
192 ID,
std::make_unique<NVPTXDAGToDAGISel>(tm, OptLevel)) {}
194char NVPTXDAGToDAGISelLegacy::ID = 0;
214NVPTXDAGToDAGISel::getDivF32Level(
const SDNode *
N)
const {
215 return Subtarget->getTargetLowering()->getDivF32Level(*MF, *
N);
218bool NVPTXDAGToDAGISel::usePrecSqrtF32(
const SDNode *
N)
const {
219 return Subtarget->getTargetLowering()->usePrecSqrtF32(
N);
222bool NVPTXDAGToDAGISel::useF32FTZ()
const {
223 return Subtarget->getTargetLowering()->useF32FTZ(*MF);
226bool NVPTXDAGToDAGISel::allowFMA()
const {
231bool NVPTXDAGToDAGISel::doRsqrtOpt()
const {
return EnableRsqrtOpt; }
233bool NVPTXDAGToDAGISel::doMADWideOpt()
const {
return EnableMADWide; }
237void NVPTXDAGToDAGISel::Select(
SDNode *
N) {
239 if (
N->isMachineOpcode()) {
244 switch (
N->getOpcode()) {
264 if (tryEXTRACT_VECTOR_ELEMENT(
N))
271 SelectSETP_BF16X2(
N);
276 if (tryLoadVector(
N))
287 if (tryStoreVector(
N))
291 if (tryIntrinsicChain(
N))
295 if (tryIntrinsicVoid(
N))
306 if (
N->getOperand(1).getValueType() == MVT::i128) {
307 SelectV2I64toI128(
N);
313 if (
N->getOperand(1).getValueType() == MVT::i128) {
314 SelectI128toV2I64(
N);
321 selectAtomicSwap128(
N);
326 if (tryBF16ArithToFMA(
N))
335#define TCGEN05_LD_OPCODE(SHAPE, NUM) \
336 (enablePack ? NVPTX::TCGEN05_LD_##SHAPE##_##NUM##_PACK \
337 : NVPTX::TCGEN05_LD_##SHAPE##_##NUM)
341 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
343 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
345 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
347 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
349 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
351 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
353 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
355 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
357 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
359 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
361 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
363 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
365 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
367 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
369 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
371 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
373 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
375 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
377 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
379 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
381 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
383 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1:
385 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
387 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
389 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
391 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
393 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
395 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
397 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128:
399 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
401 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
403 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
405 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
407 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
409 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
411 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
413 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128:
419void NVPTXDAGToDAGISel::SelectTcgen05Ld(
SDNode *
N,
bool hasOffset) {
420 if (!Subtarget->hasTcgen05InstSupport())
422 "tcgen05.ld is not supported on this architecture variant");
429 auto OffsetNode = CurDAG->getTargetConstant(
431 ReplaceNode(
N, CurDAG->getMachineNode(
433 {N->getOperand(2), OffsetNode, N->getOperand(0)}));
436 ReplaceNode(
N, CurDAG->getMachineNode(
438 {N->getOperand(2), N->getOperand(0)}));
442bool NVPTXDAGToDAGISel::tryIntrinsicChain(
SDNode *
N) {
443 unsigned IID =
N->getConstantOperandVal(1);
447 case Intrinsic::nvvm_ldu_global_f:
448 case Intrinsic::nvvm_ldu_global_i:
449 case Intrinsic::nvvm_ldu_global_p:
452 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
453 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
454 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
455 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
456 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
457 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
458 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
459 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
460 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
461 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
462 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
463 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
464 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
465 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
466 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
467 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
468 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
469 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
470 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
471 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
472 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
473 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
474 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
475 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
476 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
477 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
478 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
479 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
480 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128: {
485 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1:
486 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
487 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
488 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
489 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
490 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
491 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
492 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128: {
493 SelectTcgen05Ld(
N,
true);
528 return CmpMode::NotANumber;
543 return CurDAG->getTargetConstant(PTXCmpMode,
SDLoc(), MVT::i32);
546bool NVPTXDAGToDAGISel::SelectSETP_F16X2(
SDNode *
N) {
549 SDNode *SetP = CurDAG->getMachineNode(
550 NVPTX::SETP_f16x2rr,
DL, MVT::i1, MVT::i1,
551 {
N->getOperand(0),
N->getOperand(1), PTXCmpMode,
552 CurDAG->getTargetConstant(useF32FTZ() ? 1 : 0,
DL, MVT::i1)});
553 ReplaceNode(
N, SetP);
557bool NVPTXDAGToDAGISel::SelectSETP_BF16X2(
SDNode *
N) {
561 CurDAG->getMachineNode(NVPTX::SETP_bf16x2rr,
DL, MVT::i1, MVT::i1,
562 {
N->getOperand(0),
N->getOperand(1), PTXCmpMode});
563 ReplaceNode(
N, SetP);
567bool NVPTXDAGToDAGISel::tryUNPACK_VECTOR(
SDNode *
N) {
569 MVT EltVT =
N->getSimpleValueType(0);
572 CurDAG->getMachineNode(NVPTX::I64toV2I32,
SDLoc(
N), EltVT, EltVT,
Vector);
580bool NVPTXDAGToDAGISel::tryEXTRACT_VECTOR_ELEMENT(
SDNode *
N) {
589 Opcode = NVPTX::I32toV2I16;
591 Opcode = NVPTX::I64toV2I32;
597 for (
auto *U :
Vector.getNode()->users()) {
600 if (
U->getOperand(0) !=
Vector)
604 if (IdxConst->getZExtValue() == 0)
606 else if (IdxConst->getZExtValue() == 1)
622 CurDAG->getMachineNode(Opcode,
SDLoc(
N), EltVT, EltVT,
Vector);
623 for (
auto *Node : E0)
625 for (
auto *Node : E1)
650 if (!Subtarget->hasMemoryOrdering())
679 if (!Subtarget->hasAtomScope())
686struct OperationOrderings {
687 NVPTX::Ordering InstructionOrdering, FenceOrdering;
688 OperationOrderings(NVPTX::Ordering IO = NVPTX::Ordering::NotAtomic,
689 NVPTX::Ordering FO = NVPTX::Ordering::NotAtomic)
690 : InstructionOrdering(IO), FenceOrdering(FO) {}
693static OperationOrderings
696 auto CodeAddrSpace = NVPTXDAGToDAGISel::getAddrSpace(
N);
796 !HasMemoryOrdering) {
798 formatv(
"PTX does not support \"atomic\" for orderings different than"
799 "\"NotAtomic\" or \"Monotonic\" for sm_60 or older, but order "
811 bool AddrGenericOrGlobalOrShared =
816 if (!AddrGenericOrGlobalOrShared)
819 bool UseRelaxedMMIO =
841 formatv(
"PTX only supports Acquire Ordering on reads: {}",
842 N->getOperationName()));
847 formatv(
"PTX only supports Release Ordering on writes: {}",
848 N->getOperationName()));
852 formatv(
"NVPTX does not support AcquireRelease Ordering on "
854 "yet and PTX does not support it on loads or stores: {}",
855 N->getOperationName()));
868 else if (
N->writeMem())
872 formatv(
"NVPTX does not support SequentiallyConsistent Ordering on "
873 "read-modify-writes yet: {}",
874 N->getOperationName()));
875 return OperationOrderings(InstrOrder,
880 formatv(
"NVPTX backend does not support AtomicOrdering \"{}\" yet.",
903 auto S =
Scopes[
N->getSyncScopeID()];
926 if (!
T->hasSplitAcquireAndReleaseFences() &&
934 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_sys
935 : NVPTX::INT_MEMBAR_SYS;
937 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_cta
938 : NVPTX::INT_MEMBAR_CTA;
940 return NVPTX::atomic_thread_fence_acquire_cluster;
942 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_gpu
943 : NVPTX::INT_MEMBAR_GL;
947 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
954 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_sys
955 : NVPTX::INT_MEMBAR_SYS;
957 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_cta
958 : NVPTX::INT_MEMBAR_CTA;
960 return NVPTX::atomic_thread_fence_release_cluster;
962 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_gpu
963 : NVPTX::INT_MEMBAR_GL;
967 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
974 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_sys
975 : NVPTX::INT_MEMBAR_SYS;
977 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_cta
978 : NVPTX::INT_MEMBAR_CTA;
980 return NVPTX::atomic_thread_fence_acq_rel_cluster;
982 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_gpu
983 : NVPTX::INT_MEMBAR_GL;
987 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
995 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_sys
996 : NVPTX::INT_MEMBAR_SYS;
998 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_cta
999 : NVPTX::INT_MEMBAR_CTA;
1001 return NVPTX::atomic_thread_fence_seq_cst_cluster;
1003 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_gpu
1004 : NVPTX::INT_MEMBAR_GL;
1017 formatv(
"Unsupported \"{}\" ordering and \"{}\" scope for fence.",
1018 OrderingToString(O), ScopeToString(S)));
1026std::pair<NVPTX::Ordering, NVPTX::Scope>
1027NVPTXDAGToDAGISel::insertMemoryInstructionFence(
SDLoc DL,
SDValue &Chain,
1030 getOperationOrderings(
N, Subtarget);
1048 Chain =
SDValue(CurDAG->getMachineNode(
Op,
DL, MVT::Other, Chain), 0);
1053 formatv(
"Unexpected fence ordering: \"{}\".",
1061static std::optional<unsigned>
1063 std::optional<unsigned> Opcode_i32,
1064 std::optional<unsigned> Opcode_i64) {
1083 return std::nullopt;
1088 return V.getOpcode() ==
ISD::ADD ||
1089 (V->getOpcode() ==
ISD::OR && V->getFlags().hasDisjoint());
1094 N =
N.getOperand(0);
1104 GA->getValueType(0), GA->getOffset(),
1105 GA->getTargetFlags());
1108 ES->getTargetFlags());
1111 if (
N.getOpcode() == NVPTXISD::Symbol)
1112 return N.getOperand(0);
1119 APInt AccumulatedOffset(64u, 0);
1125 const APInt CI = CN->getAPIntValue().
sext(64);
1126 if (!(CI + AccumulatedOffset).isSignedIntN(32))
1129 AccumulatedOffset += CI;
1186template <
typename T>
1189 std::optional<T> (*Parse)(
StringRef),
bool EmitDiagnostics) {
1192 if (EmitDiagnostics)
1194 Twine(
"'") +
Key +
"' expects a string value");
1195 return std::nullopt;
1199 auto Parsed = Parse(ValStr);
1200 if (!Parsed && EmitDiagnostics)
1212 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld ||
1213 Access.Instruction == NVPTXMemCacheHintInstruction::St;
1218 NVPTXMemCacheHintAccess
Access) {
1228 NVPTXMemCacheHintAccess
Access) {
1233 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1236 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1239 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1247 NVPTXMemCacheHintAccess
Access) {
1258 NVPTXMemCacheHintAccess
Access) {
1263NVPTXMemCacheHintOperands NVPTXDAGToDAGISel::getMemCacheHintOperands(
1265 bool EmitDiagnostics) {
1268 SDValue PolicyReg = CurDAG->getRegister(NVPTX::NoRegister, MVT::i64);
1270 return {getI32Imm(0,
DL), PolicyReg};
1271 if (
Node->getNumOperands() == 0) {
1272 if (EmitDiagnostics)
1274 return {getI32Imm(0,
DL), PolicyReg};
1280 std::optional<uint64_t> CachePolicy;
1282 for (
unsigned I = 0;
I + 1 <
Node->getNumOperands();
I += 2) {
1287 if (KeyStr ==
"nvvm.l1_eviction") {
1295 if (KeyStr ==
"nvvm.l2_eviction") {
1303 if (KeyStr ==
"nvvm.l2_prefetch_size") {
1306 if (ParsedPrefetch &&
1312 if (KeyStr ==
"nvvm.l2_cache_hint") {
1315 if (EmitDiagnostics)
1317 Ctx,
"'nvvm.l2_cache_hint' expects an integer value");
1319 CachePolicy = ValCI->getZExtValue();
1324 if (EmitDiagnostics)
1328 unsigned EvictionAndPrefetchHint =
1331 SDValue PolicyConst = CurDAG->getTargetConstant(*CachePolicy,
DL, MVT::i64);
1333 CurDAG->getMachineNode(NVPTX::MOV_B64_i,
DL, MVT::i64, PolicyConst), 0);
1337 return {getI32Imm(EvictionAndPrefetchHint,
DL), PolicyReg};
1340bool NVPTXDAGToDAGISel::tryLoad(
SDNode *
N) {
1342 assert(
LD->readMem() &&
"Expected load");
1346 if (PlainLoad && PlainLoad->
isIndexed())
1350 const auto CodeAddrSpace = getAddrSpace(LD);
1356 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1358 const unsigned FromTypeWidth =
LD->getMemoryVT().getSizeInBits();
1366 uint32_t UsedBytesMask;
1367 switch (
N->getOpcode()) {
1370 UsedBytesMask = UINT32_MAX;
1373 UsedBytesMask =
N->getConstantOperandVal(3);
1380 FromTypeWidth <= 128 &&
"Invalid width for load");
1383 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1385 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1386 1, FromTypeWidth,
LD->isVolatile()},
1391 getI32Imm(Scope,
DL),
1392 getI32Imm(CodeAddrSpace,
DL),
1393 getI32Imm(FromType,
DL),
1394 getI32Imm(FromTypeWidth,
DL),
1395 getI32Imm(UsedBytesMask,
DL),
1398 EvictionAndPrefetchHint,
1403 const std::optional<unsigned> Opcode =
1404 pickOpcodeForVT(TargetVT, NVPTX::LD_i16, NVPTX::LD_i32, NVPTX::LD_i64);
1408 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1415 ReplaceNode(LD, NVPTXLD);
1420 switch (
N->getOpcode()) {
1432bool NVPTXDAGToDAGISel::tryLoadVector(
SDNode *
N) {
1436 const auto CodeAddrSpace = getAddrSpace(LD);
1440 const MVT EltVT =
LD->getSimpleValueType(0);
1443 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1453 const unsigned ExtensionType =
N->getConstantOperandVal(4);
1459 const uint32_t UsedBytesMask =
N->getConstantOperandVal(3);
1463 const auto [EvictionAndPrefetchHint, PolicyReg] =
1464 getMemCacheHintOperands(LD,
1465 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1466 LD->getNumValues() - 1,
1467 FromTypeWidth,
LD->isVolatile()},
1471 getI32Imm(Scope,
DL),
1472 getI32Imm(CodeAddrSpace,
DL),
1473 getI32Imm(FromType,
DL),
1474 getI32Imm(FromTypeWidth,
DL),
1475 getI32Imm(UsedBytesMask,
DL),
1478 EvictionAndPrefetchHint,
1482 std::optional<unsigned> Opcode;
1483 switch (
N->getOpcode()) {
1488 NVPTX::LDV_i32_v2, NVPTX::LDV_i64_v2);
1492 NVPTX::LDV_i32_v4, NVPTX::LDV_i64_v4);
1496 NVPTX::LDV_i32_v8, {});
1502 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1507 ReplaceNode(LD, NVPTXLD);
1511bool NVPTXDAGToDAGISel::tryLDG(
MemSDNode *LD) {
1514 unsigned ExtensionType;
1515 uint32_t UsedBytesMask;
1517 ExtensionType =
Load->getExtensionType();
1518 UsedBytesMask = UINT32_MAX;
1520 ExtensionType =
LD->getConstantOperandVal(4);
1521 UsedBytesMask =
LD->getConstantOperandVal(3);
1529 assert(!(
LD->getSimpleValueType(0).isVector() &&
1533 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1536 LD->getNumValues() - 1, FromTypeWidth,
LD->isVolatile()},
1539 getI32Imm(FromTypeWidth,
DL),
1540 getI32Imm(UsedBytesMask,
DL),
1543 EvictionAndPrefetchHint,
1548 std::optional<unsigned> Opcode;
1549 switch (
LD->getOpcode()) {
1554 NVPTX::LD_GLOBAL_NC_i32, NVPTX::LD_GLOBAL_NC_i64);
1557 Opcode =
pickOpcodeForVT(TargetVT, std::nullopt, NVPTX::LD_GLOBAL_NC_i32,
1558 NVPTX::LD_GLOBAL_NC_i64);
1563 NVPTX::LD_GLOBAL_NC_v2i32, NVPTX::LD_GLOBAL_NC_v2i64);
1568 NVPTX::LD_GLOBAL_NC_v4i32, NVPTX::LD_GLOBAL_NC_v4i64);
1572 NVPTX::LD_GLOBAL_NC_v8i32, {});
1578 SDNode *NVPTXLDG = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1580 ReplaceNode(LD, NVPTXLDG);
1584bool NVPTXDAGToDAGISel::tryLDU(
SDNode *
N) {
1599 std::optional<unsigned> Opcode;
1600 switch (
N->getOpcode()) {
1605 NVPTX::LDU_GLOBAL_i32, NVPTX::LDU_GLOBAL_i64);
1609 NVPTX::LDU_GLOBAL_v2i32, NVPTX::LDU_GLOBAL_v2i64);
1613 NVPTX::LDU_GLOBAL_v4i32, {});
1619 SDNode *NVPTXLDU = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1621 ReplaceNode(LD, NVPTXLDU);
1625bool NVPTXDAGToDAGISel::tryStore(
SDNode *
N) {
1627 assert(
ST->writeMem() &&
"Expected store");
1630 assert((PlainStore || AtomicStore) &&
"Expected store");
1633 if (PlainStore && PlainStore->
isIndexed())
1637 const auto CodeAddrSpace = getAddrSpace(ST);
1641 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1644 const unsigned ToTypeWidth =
ST->getMemoryVT().getSizeInBits();
1650 "Invalid width for store");
1655 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1657 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1658 1, ToTypeWidth,
ST->isVolatile()},
1662 getI32Imm(Ordering,
DL),
1663 getI32Imm(Scope,
DL),
1664 getI32Imm(CodeAddrSpace,
DL),
1665 getI32Imm(ToTypeWidth,
DL),
1668 EvictionAndPrefetchHint,
1672 const std::optional<unsigned> Opcode =
1674 NVPTX::ST_i32, NVPTX::ST_i64);
1678 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1685 ReplaceNode(ST, NVPTXST);
1689bool NVPTXDAGToDAGISel::tryStoreVector(
SDNode *
N) {
1691 const unsigned TotalWidth =
ST->getMemoryVT().getSizeInBits();
1694 const auto CodeAddrSpace = getAddrSpace(ST);
1702 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1707 for (
auto &V :
ST->ops().slice(1, NumElts))
1710 const unsigned ToTypeWidth = TotalWidth / NumElts;
1713 TotalWidth <= 256 &&
"Invalid width for store");
1716 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1718 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1719 NumElts, ToTypeWidth,
ST->isVolatile()},
1723 Ops.append({getI32Imm(Ordering,
DL), getI32Imm(Scope,
DL),
1724 getI32Imm(CodeAddrSpace,
DL), getI32Imm(ToTypeWidth,
DL),
Base,
1725 Offset, EvictionAndPrefetchHint, PolicyReg, Chain});
1728 ST->getOperand(1).getSimpleValueType().SimpleTy;
1729 std::optional<unsigned> Opcode;
1730 switch (
ST->getOpcode()) {
1750 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1755 ReplaceNode(ST, NVPTXST);
1761bool NVPTXDAGToDAGISel::tryBFE(
SDNode *
N) {
1768 bool IsSigned =
false;
1794 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1798 Val =
LHS.getNode()->getOperand(0);
1799 Start =
LHS.getNode()->getOperand(1);
1805 int64_t GoodBits =
Start.getValueSizeInBits() - StartVal;
1806 if (NumBits > GoodBits) {
1812 Start = CurDAG->getTargetConstant(StartVal,
DL, MVT::i32);
1864 NumBits = NumZeros + NumOnes - ShiftAmt;
1870 if (ShiftAmt < NumZeros) {
1877 Start = CurDAG->getTargetConstant(ShiftAmt,
DL, MVT::i32);
1878 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1894 Val =
LHS->getOperand(0);
1913 if (OuterShiftAmt < InnerShiftAmt) {
1924 Start = CurDAG->getTargetConstant(OuterShiftAmt - InnerShiftAmt,
DL,
1949 Opc = NVPTX::BFE_S32rii;
1951 Opc = NVPTX::BFE_U32rii;
1955 Opc = NVPTX::BFE_S64rii;
1957 Opc = NVPTX::BFE_U64rii;
1968 ReplaceNode(
N, CurDAG->getMachineNode(
Opc,
DL,
N->getVTList(),
Ops));
1973bool NVPTXDAGToDAGISel::tryBF16ArithToFMA(
SDNode *
N) {
1995 auto API = APF.bitcastToAPInt();
1996 API = API.concat(API);
1997 auto Const = CurDAG->getTargetConstant(API,
DL, MVT::i32);
1998 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_B32_i,
DL, VT, Const),
2001 auto Const = CurDAG->getTargetConstantFP(APF,
DL, VT);
2002 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_BF16_i,
DL, VT, Const), 0);
2005 switch (
N->getOpcode()) {
2008 Operands = {N0, GetConstant(1.0), N1};
2012 Operands = {N1, GetConstant(-1.0), N0};
2017 Operands = {N0, N1, GetConstant(-0.0)};
2023 int Opcode = IsVec ? NVPTX::FMA_BF16x2rrr : NVPTX::FMA_BF16rrr;
2025 ReplaceNode(
N, FMA);
2031 V =
V.getOperand(0);
2034 return CurDAG->getTargetConstant(CN->getAPIntValue(),
SDLoc(V),
2037 return CurDAG->getTargetConstantFP(CN->getValueAPF(),
SDLoc(V),
2044bool NVPTXDAGToDAGISel::SelectInlineAsmMemoryOperand(
2046 std::vector<SDValue> &OutOps) {
2047 switch (ConstraintID) {
2052 OutOps.push_back(
Base);
2053 OutOps.push_back(
Offset);
2060void NVPTXDAGToDAGISel::SelectV2I64toI128(
SDNode *
N) {
2076 CurDAG->getMachineNode(NVPTX::V2I64toI128,
DL, MVT::i128, {
Lo,
Hi});
2079 NewOps[0] =
N->getOperand(0);
2082 if (
N->getNumOperands() == 5)
2083 NewOps[3] =
N->getOperand(4);
2086 ReplaceNode(
N, NewValue.
getNode());
2089void NVPTXDAGToDAGISel::SelectI128toV2I64(
SDNode *
N) {
2106 SDNode *Mov = CurDAG->getMachineNode(
2107 NVPTX::I128toV2I64,
DL,
2111 ReplaceNode(
N, Mov);
2114bool NVPTXDAGToDAGISel::tryFence(
SDNode *
N) {
2123 CurDAG->ReplaceAllUsesOfValueWith(
SDValue(
N, 0),
N->getOperand(0));
2124 CurDAG->RemoveDeadNode(
N);
2131 SDNode *FenceNode = CurDAG->getMachineNode(FenceOp,
DL, MVT::Other, Chain);
2132 ReplaceNode(
N, FenceNode);
2150 "NVPTXScopes::operator[]");
2152 auto S = Scopes.find(ID);
2153 if (S == Scopes.end()) {
2154 auto scopeName =
Context->getSyncScopeName(ID);
2155 assert(scopeName.has_value() &&
"Scope name must exist.");
2159 for (
const auto &Entry : Scopes) {
2165 formatv(
"NVPTX backend does not support syncscope \"{0}\" (ID={1}).\n"
2166 "Supported syncscopes are: {2}.",
2167 scopeName.value(),
int(ID),
2173bool NVPTXScopes::empty()
const {
return Scopes.size() == 0; }
2175#define TCGEN05_ST_OPCODE(SHAPE, NUM) \
2176 (enableUnpack ? NVPTX::TCGEN05_ST_##SHAPE##_##NUM##_UNPACK \
2177 : NVPTX::TCGEN05_ST_##SHAPE##_##NUM)
2181 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2183 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2185 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2187 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2189 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2191 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2193 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2195 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2197 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2199 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2201 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2203 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2205 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2207 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2209 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2211 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2213 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2215 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2217 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2219 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2221 case Intrinsic::nvvm_tcgen05_st_16x256b_x32:
2223 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2225 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2227 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2229 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2231 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2233 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2235 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2237 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128:
2239 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2241 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2243 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2245 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2247 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2249 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2251 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2253 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2259void NVPTXDAGToDAGISel::SelectTcgen05St(SDNode *
N,
bool hasOffset) {
2262 "tcgen05.st is not supported on this architecture variant");
2272 Operands.push_back(CurDAG->getTargetConstant(
2276 for (
unsigned I = hasOffset ? 4 : 3;
I < (
N->getNumOperands() - 1);
I++)
2288bool NVPTXDAGToDAGISel::tryIntrinsicVoid(SDNode *
N) {
2289 unsigned IID =
N->getConstantOperandVal(1);
2293 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2294 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2295 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2296 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2297 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2298 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2299 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2300 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2301 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2302 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2303 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2304 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2305 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2306 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2307 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2308 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2309 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2310 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2311 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2312 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2313 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2314 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2315 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2316 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2317 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2318 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2319 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2320 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2321 case Intrinsic::nvvm_tcgen05_st_16x256b_x32: {
2326 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2327 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2328 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2329 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2330 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2331 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2332 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2333 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128: {
2334 SelectTcgen05St(
N,
true);
2340void NVPTXDAGToDAGISel::selectAtomicSwap128(SDNode *
N) {
2347 Ops.append(
N->op_begin() + 2,
N->op_end());
2348 Ops.append({getI32Imm(getMemOrder(AN), dl), getI32Imm(getAtomicScope(AN), dl),
2349 getI32Imm(getAddrSpace(AN), dl)});
2353 NVPTXMemCacheHintAccess
Access{NVPTXMemCacheHintInstruction::Atom,
2356 const auto [EvictionAndPrefetchHint, CachePolicyReg] =
2357 getMemCacheHintOperands(AN,
Access, dl);
2358 Ops.push_back(EvictionAndPrefetchHint);
2359 Ops.push_back(CachePolicyReg);
2362 Ops.push_back(Chain);
2367 ? NVPTX::ATOM_EXCH_B128
2368 : NVPTX::ATOM_CAS_B128;
2370 auto *ATOM = CurDAG->getMachineNode(Opcode, dl,
N->getVTList(),
Ops);
2373 ReplaceNode(
N, ATOM);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
loop data Loop Data Prefetch
This file implements a map that provides insertion order iteration.
static NVPTX::Scope resolveScope(NVPTX::Scope S, const NVPTXSubtarget *T)
static unsigned getStoreVectorNumElts(SDNode *N)
static bool isAddLike(const SDValue V)
static std::optional< NVPTX::L2Eviction > parseL2Eviction(StringRef Str)
static SDValue selectBaseADDR(SDValue N, SelectionDAG *DAG)
static std::optional< NVPTX::L2Prefetch > parseL2Prefetch(StringRef Str)
static std::optional< NVPTX::L1Eviction > parseL1Eviction(StringRef Str)
static SDValue accumulateOffset(SDValue &Addr, SDLoc DL, SelectionDAG *DAG)
static bool isGlobalOrGeneric(NVPTX::AddressSpace AddrSpace)
static bool isL2PrefetchSupported(const NVPTXSubtarget &Subtarget, NVPTX::L2Prefetch Prefetch, NVPTXMemCacheHintAccess Access)
static bool isLdOrSt(NVPTXMemCacheHintAccess Access)
static unsigned getTcgen05StOpcode(unsigned IID, bool enableUnpack)
static std::optional< unsigned > pickOpcodeForVT(MVT::SimpleValueType VT, std::optional< unsigned > Opcode_i16, std::optional< unsigned > Opcode_i32, std::optional< unsigned > Opcode_i64)
static cl::opt< bool > EnableMADWide("nvptx-mad-wide-opt", cl::init(false), cl::Hidden, cl::desc("Enable MAD wide optimization"))
#define TCGEN05_LD_OPCODE(SHAPE, NUM)
static SDValue stripAssertAlign(SDValue N)
static cl::opt< bool > EnableRsqrtOpt("nvptx-rsqrt-approx-opt", cl::init(true), cl::Hidden, cl::desc("Enable reciprocal sqrt optimization"))
static void emitInvalidMemCacheHint(LLVMContext &Ctx, const Twine &Msg)
static unsigned int getFenceOp(NVPTX::Ordering O, NVPTX::Scope S, NVPTXSubtarget const *T)
static std::optional< T > parseMemCacheHintStringValue(LLVMContext &Ctx, StringRef Key, const Metadata *Value, std::optional< T >(*Parse)(StringRef), bool EmitDiagnostics)
static bool isL2EvictionSupported(const NVPTXSubtarget &Subtarget, NVPTX::L2Eviction Eviction, NVPTXMemCacheHintAccess Access)
#define TCGEN05_ST_OPCODE(SHAPE, NUM)
static bool isL1EvictionSupported(const NVPTXSubtarget &Subtarget, NVPTX::L1Eviction Eviction, NVPTXMemCacheHintAccess Access)
static bool isCachePolicySupported(const NVPTXSubtarget &Subtarget, NVPTXMemCacheHintAccess Access)
static std::pair< SDValue, SDValue > selectADDR(SDValue Addr, SelectionDAG *DAG)
static unsigned getTcgen05LdOpcode(unsigned IID, bool enablePack)
static bool canLowerToLDG(const MemSDNode &N, const NVPTXSubtarget &Subtarget, NVPTX::AddressSpace CodeAddrSpace)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
static const fltSemantics & BFloat()
static constexpr roundingMode rmNearestTiesToEven
Class for arbitrary precision integers.
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
int64_t getSExtValue() const
Get sign extended value.
This is an SDNode representing atomic operations.
const SDValue & getVal() const
uint64_t getZExtValue() const
FunctionPass class - This class is used to implement most global optimizations.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
Record instruction ordering so we can query their relative positions within a function.
This is an important class for using LLVM in a threaded context.
bool isIndexed() const
Return true if this is a pre/post inc/dec load/store.
This class is used to represent ISD::LOAD nodes.
ISD::LoadExtType getExtensionType() const
Return whether this is a plain node, or one of the varieties of value-extending loads.
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
bool is32BitVector() const
Return true if this is a 32-bit vector type.
MVT getVectorElementType() const
bool is64BitVector() const
Return true if this is a 64-bit vector type.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
Function & getFunction()
Return the LLVM function that this machine code represents.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
A description of a memory reference used in the backend.
An SDNode that represents everything that will be needed to construct a MachineInstr.
This is an abstract virtual class for memory operations.
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.
NVPTXISelDAGToDAGPass(NVPTXTargetMachine &TM, CodeGenOptLevel OptLevel)
bool hasL2Prefetch256B() const
bool hasL2EvictionHint() const
bool hasTcgen05InstSupport() const
bool hasL2Prefetch64B() const
bool hasL2Prefetch128B() const
bool hasNativeBF16Support(unsigned Opcode) const
bool hasL1EvictionHint() const
bool hasRelaxedMMIO() const
bool hasL2CacheHint() const
bool hasMemoryOrdering() const
bool allowFMA(MachineFunction &MF, CodeGenOptLevel OptLevel) const
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
Represents one node in the SelectionDAG.
const SDValue & getOperand(unsigned Num) const
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
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
SelectionDAGISelPass(std::unique_ptr< SelectionDAGISel > Selector)
SelectionDAGISel - This is the common base class used for SelectionDAG-based pattern-matching instruc...
virtual bool runOnMachineFunction(MachineFunction &mf)
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
SDValue getTargetGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, unsigned TargetFlags=0)
SDValue getTargetFrameIndex(int FI, EVT VT)
SDValue getSignedTargetConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT, unsigned TargetFlags=0)
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.
const SDValue & getValue() const
Represent a constant reference to a string, i.e.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
const Triple & getTargetTriple() const
Triple - Helper class for working with autoconf configuration names.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
LLVM Value Representation.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ ADD
Simple integer binary arithmetic operators.
@ LOAD
LOAD and STORE have token chains as their first operand, then the same operands as an LLVM load/store...
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
@ FADD
Simple binary floating point operators.
@ ATOMIC_FENCE
OUTCHAIN = ATOMIC_FENCE(INCHAIN, ordering, scope) This corresponds to the fence instruction.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
@ SHL
Shift and rotation operations.
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
@ CopyToReg
CopyToReg - This node has three operands: a chain, a register number to set to this value,...
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
@ ATOMIC_CMP_SWAP_B128
These nodes are used to lower atomic instructions with i128 type.
unsigned encodeEvictionAndPrefetchHint(L1Eviction L1, L2Eviction L2, L2Prefetch P)
std::string OrderingToString(Ordering Order)
bool isPackedVectorTy(EVT VT)
initializer< Ty > init(const Ty &Val)
Scope
Defines the scope in which this symbol should be visible: Default – Visible in the public interface o...
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > dyn_extract(Y &&MD)
Extract a Value from Metadata, if any.
NodeAddr< NodeBase * > Node
This is an optimization pass for GlobalISel generic memory operations.
AtomicScope
Target-neutral memory synchronization scopes.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
@ Load
The value being inserted comes from a load (InsertElement only).
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
FunctionPass * createNVPTXISelDag(NVPTXTargetMachine &TM, llvm::CodeGenOptLevel OptLevel)
createNVPTXISelDag - This pass converts a legalized DAG into a NVPTX-specific DAG,...
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
constexpr bool isShiftedMask_64(uint64_t Value)
Return true if the argument contains a non-empty sequence of ones with the remainder zero (64 bit ver...
const char * toIRString(AtomicOrdering ao)
String used by LLVM IR to represent atomic ordering.
auto formatv(bool Validate, const char *Fmt, Ts &&...Vals)
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr bool isMask_64(uint64_t Value)
Return true if the argument is a non-empty sequence of ones starting at the least significant bit wit...
CodeGenOptLevel
Code generation optimization level.
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...
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
AtomicOrdering
Atomic ordering for LLVM's memory model.
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
std::optional< StringRef > getAtomicScopeIRString(const Triple &T, AtomicScope S, bool IsSingleAddressSpace=false)
Returns the LLVM IR syncscope string that T uses to spell S.
unsigned getFromTypeWidthForLoad(const MemSDNode *Mem)
The bit-width of a single element loaded by Mem, i.e.
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
Implement std::hash so that hash_code can be used in STL containers.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
A record for a potential prefetch made during the initial scan of the loop.
static void set(StorageType &Packed, typename Bitfield::Type Value)
Sets the typed value in the provided Packed value.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
bool isVector() const
Return true if this is a vector value type.
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
A MapVector that performs no allocations if smaller than a certain size.