33#include "llvm/IR/IntrinsicsNVPTX.h"
47#define DEBUG_TYPE "nvptx-isel"
48#define PASS_NAME "NVPTX DAG->DAG Pattern Instruction Selection"
52 cl::desc(
"Enable reciprocal sqrt optimization"));
59 cl::desc(
"Enable MAD wide optimization"));
64 NVPTXScopes() =
default;
71 LLVMContext *Context =
nullptr;
74enum class NVPTXMemCacheHintInstruction { Ld, St, Atom };
76struct NVPTXMemCacheHintAccess {
77 NVPTXMemCacheHintInstruction Instruction;
78 NVPTX::AddressSpace AddrSpace;
84struct NVPTXMemCacheHintOperands {
85 SDValue EvictionAndPrefetchHint;
86 SDValue CachePolicyReg;
90 const NVPTXTargetMachine &TM;
92 NVPTX::DivPrecisionLevel getDivF32Level(
const SDNode *
N)
const;
93 bool usePrecSqrtF32(
const SDNode *
N)
const;
94 bool useF32FTZ()
const;
95 bool allowFMA()
const;
96 bool doRsqrtOpt()
const;
97 bool doMADWideOpt()
const;
102 NVPTXDAGToDAGISel() =
delete;
104 explicit NVPTXDAGToDAGISel(NVPTXTargetMachine &tm,
CodeGenOptLevel OptLevel);
107 const NVPTXSubtarget *Subtarget =
nullptr;
109 bool SelectInlineAsmMemoryOperand(
const SDValue &
Op,
111 std::vector<SDValue> &OutOps)
override;
115#include "NVPTXGenDAGISel.inc"
117 void Select(SDNode *
N)
override;
118 bool tryIntrinsicChain(SDNode *
N);
119 bool tryIntrinsicVoid(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 SelectSETP_F16X2(SDNode *
N);
130 bool SelectSETP_BF16X2(SDNode *
N);
131 bool tryUNPACK_VECTOR(SDNode *
N);
132 bool tryEXTRACT_VECTOR_ELEMENT(SDNode *
N);
133 void SelectV2I64toI128(SDNode *
N);
134 void SelectI128toV2I64(SDNode *
N);
135 void SelectTcgen05Ld(SDNode *
N,
bool hasOffset =
false);
136 void SelectTcgen05St(SDNode *
N,
bool hasOffset =
false);
137 void selectAtomicSwap128(SDNode *
N);
139 inline SDValue getI32Imm(
unsigned Imm,
const SDLoc &
DL) {
140 return CurDAG->getTargetConstant(
Imm,
DL, MVT::i32);
142 NVPTX::Ordering getMemOrder(
const MemSDNode *
N)
const;
143 NVPTX::Scope getAtomicScope(
const MemSDNode *
N)
const;
145 bool SelectADDR(SDValue Addr, SDValue &
Base, SDValue &
Offset);
146 bool SelectFAbs(SDValue
N, SDValue &Src);
147 SDValue getPTXCmpMode(
const CondCodeSDNode &CondCode);
148 SDValue selectPossiblyImm(SDValue V);
155 NVPTXMemCacheHintOperands
156 getMemCacheHintOperands(
const MemSDNode *
N, NVPTXMemCacheHintAccess
Access,
157 const SDLoc &
DL,
bool EmitDiagnostics =
true);
163 std::pair<NVPTX::Ordering, NVPTX::Scope>
164 insertMemoryInstructionFence(SDLoc
DL, SDValue &Chain, MemSDNode *
N);
165 NVPTX::Scope getOperationScope(MemSDNode *
N, NVPTX::Ordering O)
const;
168 static NVPTX::AddressSpace getAddrSpace(
const MemSDNode *
N);
174 explicit NVPTXDAGToDAGISelLegacy(NVPTXTargetMachine &tm,
184 return new NVPTXDAGToDAGISelLegacy(TM, OptLevel);
190 ID,
std::make_unique<NVPTXDAGToDAGISel>(tm, OptLevel)) {}
192char NVPTXDAGToDAGISelLegacy::ID = 0;
212NVPTXDAGToDAGISel::getDivF32Level(
const SDNode *
N)
const {
213 return Subtarget->getTargetLowering()->getDivF32Level(*MF, *
N);
216bool NVPTXDAGToDAGISel::usePrecSqrtF32(
const SDNode *
N)
const {
217 return Subtarget->getTargetLowering()->usePrecSqrtF32(
N);
220bool NVPTXDAGToDAGISel::useF32FTZ()
const {
221 return Subtarget->getTargetLowering()->useF32FTZ(*MF);
224bool NVPTXDAGToDAGISel::allowFMA()
const {
229bool NVPTXDAGToDAGISel::doRsqrtOpt()
const {
return EnableRsqrtOpt; }
231bool NVPTXDAGToDAGISel::doMADWideOpt()
const {
return EnableMADWide; }
235void NVPTXDAGToDAGISel::Select(
SDNode *
N) {
237 if (
N->isMachineOpcode()) {
242 switch (
N->getOpcode()) {
262 if (tryEXTRACT_VECTOR_ELEMENT(
N))
269 SelectSETP_BF16X2(
N);
274 if (tryLoadVector(
N))
285 if (tryStoreVector(
N))
289 if (tryIntrinsicChain(
N))
293 if (tryIntrinsicVoid(
N))
304 if (
N->getOperand(1).getValueType() == MVT::i128) {
305 SelectV2I64toI128(
N);
311 if (
N->getOperand(1).getValueType() == MVT::i128) {
312 SelectI128toV2I64(
N);
319 selectAtomicSwap128(
N);
324 if (tryBF16ArithToFMA(
N))
333#define TCGEN05_LD_OPCODE(SHAPE, NUM) \
334 (enablePack ? NVPTX::TCGEN05_LD_##SHAPE##_##NUM##_PACK \
335 : NVPTX::TCGEN05_LD_##SHAPE##_##NUM)
339 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
341 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
343 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
345 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
347 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
349 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
351 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
353 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
355 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
357 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
359 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
361 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
363 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
365 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
367 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
369 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
371 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
373 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
375 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
377 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
379 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
381 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1:
383 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
385 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
387 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
389 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
391 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
393 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
395 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128:
397 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
399 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
401 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
403 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
405 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
407 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
409 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
411 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128:
417void NVPTXDAGToDAGISel::SelectTcgen05Ld(
SDNode *
N,
bool hasOffset) {
418 if (!Subtarget->hasTcgen05InstSupport())
420 "tcgen05.ld is not supported on this architecture variant");
427 auto OffsetNode = CurDAG->getTargetConstant(
429 ReplaceNode(
N, CurDAG->getMachineNode(
431 {N->getOperand(2), OffsetNode, N->getOperand(0)}));
434 ReplaceNode(
N, CurDAG->getMachineNode(
436 {N->getOperand(2), N->getOperand(0)}));
440bool NVPTXDAGToDAGISel::tryIntrinsicChain(
SDNode *
N) {
441 unsigned IID =
N->getConstantOperandVal(1);
445 case Intrinsic::nvvm_ldu_global_f:
446 case Intrinsic::nvvm_ldu_global_i:
447 case Intrinsic::nvvm_ldu_global_p:
450 case Intrinsic::nvvm_tcgen05_ld_16x64b_x1:
451 case Intrinsic::nvvm_tcgen05_ld_16x64b_x2:
452 case Intrinsic::nvvm_tcgen05_ld_16x64b_x4:
453 case Intrinsic::nvvm_tcgen05_ld_16x64b_x8:
454 case Intrinsic::nvvm_tcgen05_ld_16x64b_x16:
455 case Intrinsic::nvvm_tcgen05_ld_16x64b_x32:
456 case Intrinsic::nvvm_tcgen05_ld_16x64b_x64:
457 case Intrinsic::nvvm_tcgen05_ld_16x64b_x128:
458 case Intrinsic::nvvm_tcgen05_ld_16x128b_x1:
459 case Intrinsic::nvvm_tcgen05_ld_16x128b_x2:
460 case Intrinsic::nvvm_tcgen05_ld_16x128b_x4:
461 case Intrinsic::nvvm_tcgen05_ld_16x128b_x16:
462 case Intrinsic::nvvm_tcgen05_ld_16x128b_x32:
463 case Intrinsic::nvvm_tcgen05_ld_16x128b_x64:
464 case Intrinsic::nvvm_tcgen05_ld_16x256b_x1:
465 case Intrinsic::nvvm_tcgen05_ld_16x128b_x8:
466 case Intrinsic::nvvm_tcgen05_ld_16x256b_x2:
467 case Intrinsic::nvvm_tcgen05_ld_16x256b_x4:
468 case Intrinsic::nvvm_tcgen05_ld_16x256b_x8:
469 case Intrinsic::nvvm_tcgen05_ld_16x256b_x16:
470 case Intrinsic::nvvm_tcgen05_ld_16x256b_x32:
471 case Intrinsic::nvvm_tcgen05_ld_32x32b_x1:
472 case Intrinsic::nvvm_tcgen05_ld_32x32b_x2:
473 case Intrinsic::nvvm_tcgen05_ld_32x32b_x4:
474 case Intrinsic::nvvm_tcgen05_ld_32x32b_x8:
475 case Intrinsic::nvvm_tcgen05_ld_32x32b_x16:
476 case Intrinsic::nvvm_tcgen05_ld_32x32b_x32:
477 case Intrinsic::nvvm_tcgen05_ld_32x32b_x64:
478 case Intrinsic::nvvm_tcgen05_ld_32x32b_x128: {
483 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x1:
484 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x2:
485 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x4:
486 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x8:
487 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x16:
488 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x32:
489 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x64:
490 case Intrinsic::nvvm_tcgen05_ld_16x32bx2_x128: {
491 SelectTcgen05Ld(
N,
true);
526 return CmpMode::NotANumber;
541 return CurDAG->getTargetConstant(PTXCmpMode,
SDLoc(), MVT::i32);
544bool NVPTXDAGToDAGISel::SelectSETP_F16X2(
SDNode *
N) {
547 SDNode *SetP = CurDAG->getMachineNode(
548 NVPTX::SETP_f16x2rr,
DL, MVT::i1, MVT::i1,
549 {
N->getOperand(0),
N->getOperand(1), PTXCmpMode,
550 CurDAG->getTargetConstant(useF32FTZ() ? 1 : 0,
DL, MVT::i1)});
551 ReplaceNode(
N, SetP);
555bool NVPTXDAGToDAGISel::SelectSETP_BF16X2(
SDNode *
N) {
559 CurDAG->getMachineNode(NVPTX::SETP_bf16x2rr,
DL, MVT::i1, MVT::i1,
560 {
N->getOperand(0),
N->getOperand(1), PTXCmpMode});
561 ReplaceNode(
N, SetP);
565bool NVPTXDAGToDAGISel::tryUNPACK_VECTOR(
SDNode *
N) {
567 MVT EltVT =
N->getSimpleValueType(0);
570 CurDAG->getMachineNode(NVPTX::I64toV2I32,
SDLoc(
N), EltVT, EltVT,
Vector);
578bool NVPTXDAGToDAGISel::tryEXTRACT_VECTOR_ELEMENT(
SDNode *
N) {
587 Opcode = NVPTX::I32toV2I16;
589 Opcode = NVPTX::I64toV2I32;
595 for (
auto *U :
Vector.getNode()->users()) {
598 if (
U->getOperand(0) !=
Vector)
602 if (IdxConst->getZExtValue() == 0)
604 else if (IdxConst->getZExtValue() == 1)
620 CurDAG->getMachineNode(Opcode,
SDLoc(
N), EltVT, EltVT,
Vector);
621 for (
auto *Node : E0)
623 for (
auto *Node : E1)
648 if (!Subtarget->hasMemoryOrdering())
678 if (!Subtarget->hasAtomScope()) {
681 CurDAG->getMachineFunction().getFunction(),
682 "NVPTX system scope atomics require sm_60 or later",
691struct OperationOrderings {
692 NVPTX::Ordering InstructionOrdering, FenceOrdering;
693 OperationOrderings(NVPTX::Ordering IO = NVPTX::Ordering::NotAtomic,
694 NVPTX::Ordering FO = NVPTX::Ordering::NotAtomic)
695 : InstructionOrdering(IO), FenceOrdering(FO) {}
698static OperationOrderings
701 auto CodeAddrSpace = NVPTXDAGToDAGISel::getAddrSpace(
N);
812 !HasMemoryOrdering) {
814 formatv(
"PTX does not support \"atomic\" for orderings different than"
815 "\"NotAtomic\" or \"Monotonic\" for sm_60 or older, but order "
825 bool AddrSupportsVolatileOrAtomic =
830 if (!AddrSupportsVolatileOrAtomic)
833 bool UseRelaxedMMIO =
855 formatv(
"PTX only supports Acquire Ordering on reads: {}",
856 N->getOperationName()));
861 formatv(
"PTX only supports Release Ordering on writes: {}",
862 N->getOperationName()));
866 formatv(
"NVPTX does not support AcquireRelease Ordering on "
868 "yet and PTX does not support it on loads or stores: {}",
869 N->getOperationName()));
882 else if (
N->writeMem())
886 formatv(
"NVPTX does not support SequentiallyConsistent Ordering on "
887 "read-modify-writes yet: {}",
888 N->getOperationName()));
889 return OperationOrderings(InstrOrder,
894 formatv(
"NVPTX backend does not support AtomicOrdering \"{}\" yet.",
917 auto S =
Scopes[
N->getSyncScopeID()];
940 if (!
T->hasSplitAcquireAndReleaseFences() &&
948 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_sys
949 : NVPTX::INT_MEMBAR_SYS;
951 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_cta
952 : NVPTX::INT_MEMBAR_CTA;
954 return NVPTX::atomic_thread_fence_acquire_cluster;
956 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_gpu
957 : NVPTX::INT_MEMBAR_GL;
961 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
968 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_sys
969 : NVPTX::INT_MEMBAR_SYS;
971 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_cta
972 : NVPTX::INT_MEMBAR_CTA;
974 return NVPTX::atomic_thread_fence_release_cluster;
976 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_gpu
977 : NVPTX::INT_MEMBAR_GL;
981 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
988 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_sys
989 : NVPTX::INT_MEMBAR_SYS;
991 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_cta
992 : NVPTX::INT_MEMBAR_CTA;
994 return NVPTX::atomic_thread_fence_acq_rel_cluster;
996 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_gpu
997 : NVPTX::INT_MEMBAR_GL;
1001 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
1009 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_sys
1010 : NVPTX::INT_MEMBAR_SYS;
1012 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_cta
1013 : NVPTX::INT_MEMBAR_CTA;
1015 return NVPTX::atomic_thread_fence_seq_cst_cluster;
1017 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_gpu
1018 : NVPTX::INT_MEMBAR_GL;
1031 formatv(
"Unsupported \"{}\" ordering and \"{}\" scope for fence.",
1032 OrderingToString(O), ScopeToString(S)));
1040std::pair<NVPTX::Ordering, NVPTX::Scope>
1041NVPTXDAGToDAGISel::insertMemoryInstructionFence(
SDLoc DL,
SDValue &Chain,
1044 getOperationOrderings(
N, Subtarget);
1062 Chain =
SDValue(CurDAG->getMachineNode(
Op,
DL, MVT::Other, Chain), 0);
1067 formatv(
"Unexpected fence ordering: \"{}\".",
1075static std::optional<unsigned>
1077 std::optional<unsigned> Opcode_i32,
1078 std::optional<unsigned> Opcode_i64) {
1097 return std::nullopt;
1102 return V.getOpcode() ==
ISD::ADD ||
1103 (V->getOpcode() ==
ISD::OR && V->getFlags().hasDisjoint());
1108 N =
N.getOperand(0);
1118 GA->getValueType(0), GA->getOffset(),
1119 GA->getTargetFlags());
1122 ES->getTargetFlags());
1125 if (
N.getOpcode() == NVPTXISD::Symbol)
1126 return N.getOperand(0);
1133 APInt AccumulatedOffset(64u, 0);
1139 const APInt CI = CN->getAPIntValue().
sext(64);
1140 if (!(CI + AccumulatedOffset).isSignedIntN(32))
1143 AccumulatedOffset += CI;
1200template <
typename T>
1203 std::optional<T> (*Parse)(
StringRef),
bool EmitDiagnostics) {
1206 if (EmitDiagnostics)
1208 Twine(
"'") +
Key +
"' expects a string value");
1209 return std::nullopt;
1213 auto Parsed = Parse(ValStr);
1214 if (!Parsed && EmitDiagnostics)
1226 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld ||
1227 Access.Instruction == NVPTXMemCacheHintInstruction::St;
1232 NVPTXMemCacheHintAccess
Access) {
1242 NVPTXMemCacheHintAccess
Access) {
1247 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1250 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1253 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1261 NVPTXMemCacheHintAccess
Access) {
1272 NVPTXMemCacheHintAccess
Access) {
1277NVPTXMemCacheHintOperands NVPTXDAGToDAGISel::getMemCacheHintOperands(
1279 bool EmitDiagnostics) {
1282 SDValue PolicyReg = CurDAG->getRegister(NVPTX::NoRegister, MVT::i64);
1284 return {getI32Imm(0,
DL), PolicyReg};
1285 if (
Node->getNumOperands() == 0) {
1286 if (EmitDiagnostics)
1288 return {getI32Imm(0,
DL), PolicyReg};
1294 std::optional<uint64_t> CachePolicy;
1296 for (
unsigned I = 0;
I + 1 <
Node->getNumOperands();
I += 2) {
1301 if (KeyStr ==
"nvvm.l1_eviction") {
1309 if (KeyStr ==
"nvvm.l2_eviction") {
1317 if (KeyStr ==
"nvvm.l2_prefetch_size") {
1320 if (ParsedPrefetch &&
1326 if (KeyStr ==
"nvvm.l2_cache_hint") {
1329 if (EmitDiagnostics)
1331 Ctx,
"'nvvm.l2_cache_hint' expects an integer value");
1333 CachePolicy = ValCI->getZExtValue();
1338 if (EmitDiagnostics)
1342 unsigned EvictionAndPrefetchHint =
1345 SDValue PolicyConst = CurDAG->getTargetConstant(*CachePolicy,
DL, MVT::i64);
1347 CurDAG->getMachineNode(NVPTX::MOV_B64_i,
DL, MVT::i64, PolicyConst), 0);
1351 return {getI32Imm(EvictionAndPrefetchHint,
DL), PolicyReg};
1354bool NVPTXDAGToDAGISel::tryLoad(
SDNode *
N) {
1356 assert(
LD->readMem() &&
"Expected load");
1360 if (PlainLoad && PlainLoad->
isIndexed())
1364 const auto CodeAddrSpace = getAddrSpace(LD);
1370 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1372 const unsigned FromTypeWidth =
LD->getMemoryVT().getSizeInBits();
1380 uint32_t UsedBytesMask;
1381 switch (
N->getOpcode()) {
1384 UsedBytesMask = UINT32_MAX;
1387 UsedBytesMask =
N->getConstantOperandVal(3);
1394 FromTypeWidth <= 128 &&
"Invalid width for load");
1397 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1399 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1400 1, FromTypeWidth,
LD->isVolatile()},
1405 getI32Imm(Scope,
DL),
1406 getI32Imm(CodeAddrSpace,
DL),
1407 getI32Imm(FromType,
DL),
1408 getI32Imm(FromTypeWidth,
DL),
1409 getI32Imm(UsedBytesMask,
DL),
1412 EvictionAndPrefetchHint,
1417 const std::optional<unsigned> Opcode =
1418 pickOpcodeForVT(TargetVT, NVPTX::LD_i16, NVPTX::LD_i32, NVPTX::LD_i64);
1422 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1429 ReplaceNode(LD, NVPTXLD);
1434 switch (
N->getOpcode()) {
1446bool NVPTXDAGToDAGISel::tryLoadVector(
SDNode *
N) {
1450 const auto CodeAddrSpace = getAddrSpace(LD);
1454 const MVT EltVT =
LD->getSimpleValueType(0);
1457 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1467 const unsigned ExtensionType =
N->getConstantOperandVal(4);
1473 const uint32_t UsedBytesMask =
N->getConstantOperandVal(3);
1477 const auto [EvictionAndPrefetchHint, PolicyReg] =
1478 getMemCacheHintOperands(LD,
1479 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1480 LD->getNumValues() - 1,
1481 FromTypeWidth,
LD->isVolatile()},
1485 getI32Imm(Scope,
DL),
1486 getI32Imm(CodeAddrSpace,
DL),
1487 getI32Imm(FromType,
DL),
1488 getI32Imm(FromTypeWidth,
DL),
1489 getI32Imm(UsedBytesMask,
DL),
1492 EvictionAndPrefetchHint,
1496 std::optional<unsigned> Opcode;
1497 switch (
N->getOpcode()) {
1502 NVPTX::LDV_i32_v2, NVPTX::LDV_i64_v2);
1506 NVPTX::LDV_i32_v4, NVPTX::LDV_i64_v4);
1510 NVPTX::LDV_i32_v8, {});
1516 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1521 ReplaceNode(LD, NVPTXLD);
1525bool NVPTXDAGToDAGISel::tryLDG(
MemSDNode *LD) {
1528 unsigned ExtensionType;
1529 uint32_t UsedBytesMask;
1531 ExtensionType =
Load->getExtensionType();
1532 UsedBytesMask = UINT32_MAX;
1534 ExtensionType =
LD->getConstantOperandVal(4);
1535 UsedBytesMask =
LD->getConstantOperandVal(3);
1543 assert(!(
LD->getSimpleValueType(0).isVector() &&
1547 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1550 LD->getNumValues() - 1, FromTypeWidth,
LD->isVolatile()},
1553 getI32Imm(FromTypeWidth,
DL),
1554 getI32Imm(UsedBytesMask,
DL),
1557 EvictionAndPrefetchHint,
1562 std::optional<unsigned> Opcode;
1563 switch (
LD->getOpcode()) {
1568 NVPTX::LD_GLOBAL_NC_i32, NVPTX::LD_GLOBAL_NC_i64);
1571 Opcode =
pickOpcodeForVT(TargetVT, std::nullopt, NVPTX::LD_GLOBAL_NC_i32,
1572 NVPTX::LD_GLOBAL_NC_i64);
1577 NVPTX::LD_GLOBAL_NC_v2i32, NVPTX::LD_GLOBAL_NC_v2i64);
1582 NVPTX::LD_GLOBAL_NC_v4i32, NVPTX::LD_GLOBAL_NC_v4i64);
1586 NVPTX::LD_GLOBAL_NC_v8i32, {});
1592 SDNode *NVPTXLDG = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1594 ReplaceNode(LD, NVPTXLDG);
1598bool NVPTXDAGToDAGISel::tryLDU(
SDNode *
N) {
1613 std::optional<unsigned> Opcode;
1614 switch (
N->getOpcode()) {
1619 NVPTX::LDU_GLOBAL_i32, NVPTX::LDU_GLOBAL_i64);
1623 NVPTX::LDU_GLOBAL_v2i32, NVPTX::LDU_GLOBAL_v2i64);
1627 NVPTX::LDU_GLOBAL_v4i32, {});
1633 SDNode *NVPTXLDU = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1635 ReplaceNode(LD, NVPTXLDU);
1639bool NVPTXDAGToDAGISel::tryStore(
SDNode *
N) {
1641 assert(
ST->writeMem() &&
"Expected store");
1644 assert((PlainStore || AtomicStore) &&
"Expected store");
1647 if (PlainStore && PlainStore->
isIndexed())
1651 const auto CodeAddrSpace = getAddrSpace(ST);
1655 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1658 const unsigned ToTypeWidth =
ST->getMemoryVT().getSizeInBits();
1664 "Invalid width for store");
1669 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1671 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1672 1, ToTypeWidth,
ST->isVolatile()},
1676 getI32Imm(Ordering,
DL),
1677 getI32Imm(Scope,
DL),
1678 getI32Imm(CodeAddrSpace,
DL),
1679 getI32Imm(ToTypeWidth,
DL),
1682 EvictionAndPrefetchHint,
1686 const std::optional<unsigned> Opcode =
1688 NVPTX::ST_i32, NVPTX::ST_i64);
1692 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1699 ReplaceNode(ST, NVPTXST);
1703bool NVPTXDAGToDAGISel::tryStoreVector(
SDNode *
N) {
1705 const unsigned TotalWidth =
ST->getMemoryVT().getSizeInBits();
1708 const auto CodeAddrSpace = getAddrSpace(ST);
1716 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1721 for (
auto &V :
ST->ops().slice(1, NumElts))
1724 const unsigned ToTypeWidth = TotalWidth / NumElts;
1727 TotalWidth <= 256 &&
"Invalid width for store");
1730 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1732 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1733 NumElts, ToTypeWidth,
ST->isVolatile()},
1737 Ops.append({getI32Imm(Ordering,
DL), getI32Imm(Scope,
DL),
1738 getI32Imm(CodeAddrSpace,
DL), getI32Imm(ToTypeWidth,
DL),
Base,
1739 Offset, EvictionAndPrefetchHint, PolicyReg, Chain});
1742 ST->getOperand(1).getSimpleValueType().SimpleTy;
1743 std::optional<unsigned> Opcode;
1744 switch (
ST->getOpcode()) {
1764 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1769 ReplaceNode(ST, NVPTXST);
1775bool NVPTXDAGToDAGISel::tryBFE(
SDNode *
N) {
1782 bool IsSigned =
false;
1808 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1812 Val =
LHS.getNode()->getOperand(0);
1813 Start =
LHS.getNode()->getOperand(1);
1819 int64_t GoodBits =
Start.getValueSizeInBits() - StartVal;
1820 if (NumBits > GoodBits) {
1826 Start = CurDAG->getTargetConstant(StartVal,
DL, MVT::i32);
1878 NumBits = NumZeros + NumOnes - ShiftAmt;
1884 if (ShiftAmt < NumZeros) {
1891 Start = CurDAG->getTargetConstant(ShiftAmt,
DL, MVT::i32);
1892 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1908 Val =
LHS->getOperand(0);
1927 if (OuterShiftAmt < InnerShiftAmt) {
1938 Start = CurDAG->getTargetConstant(OuterShiftAmt - InnerShiftAmt,
DL,
1963 Opc = NVPTX::BFE_S32rii;
1965 Opc = NVPTX::BFE_U32rii;
1969 Opc = NVPTX::BFE_S64rii;
1971 Opc = NVPTX::BFE_U64rii;
1982 ReplaceNode(
N, CurDAG->getMachineNode(
Opc,
DL,
N->getVTList(),
Ops));
1987bool NVPTXDAGToDAGISel::tryBF16ArithToFMA(
SDNode *
N) {
2009 auto API = APF.bitcastToAPInt();
2010 API = API.concat(API);
2011 auto Const = CurDAG->getTargetConstant(API,
DL, MVT::i32);
2012 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_B32_i,
DL, VT, Const),
2015 auto Const = CurDAG->getTargetConstantFP(APF,
DL, VT);
2016 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_BF16_i,
DL, VT, Const), 0);
2019 switch (
N->getOpcode()) {
2022 Operands = {N0, GetConstant(1.0), N1};
2026 Operands = {N1, GetConstant(-1.0), N0};
2031 Operands = {N0, N1, GetConstant(-0.0)};
2037 int Opcode = IsVec ? NVPTX::FMA_BF16x2rrr : NVPTX::FMA_BF16rrr;
2039 ReplaceNode(
N, FMA);
2048 Src =
N.getOperand(0);
2049 else if (CurDAG->computeKnownFPClass(
N,
fcNegative).signBitIsZeroOrNaN())
2053 Src = selectPossiblyImm(Src);
2059 V =
V.getOperand(0);
2062 return CurDAG->getTargetConstant(CN->getAPIntValue(),
SDLoc(V),
2065 return CurDAG->getTargetConstantFP(CN->getValueAPF(),
SDLoc(V),
2072bool NVPTXDAGToDAGISel::SelectInlineAsmMemoryOperand(
2074 std::vector<SDValue> &OutOps) {
2075 switch (ConstraintID) {
2080 OutOps.push_back(
Base);
2081 OutOps.push_back(
Offset);
2088void NVPTXDAGToDAGISel::SelectV2I64toI128(
SDNode *
N) {
2104 CurDAG->getMachineNode(NVPTX::V2I64toI128,
DL, MVT::i128, {
Lo,
Hi});
2107 NewOps[0] =
N->getOperand(0);
2110 if (
N->getNumOperands() == 5)
2111 NewOps[3] =
N->getOperand(4);
2114 ReplaceNode(
N, NewValue.
getNode());
2117void NVPTXDAGToDAGISel::SelectI128toV2I64(
SDNode *
N) {
2134 SDNode *Mov = CurDAG->getMachineNode(
2135 NVPTX::I128toV2I64,
DL,
2139 ReplaceNode(
N, Mov);
2142bool NVPTXDAGToDAGISel::tryFence(
SDNode *
N) {
2152 CurDAG->RemoveDeadNode(
N);
2159 SDNode *FenceNode = CurDAG->getMachineNode(FenceOp,
DL, MVT::Other, Chain);
2160 ReplaceNode(
N, FenceNode);
2178 "NVPTXScopes::operator[]");
2180 auto S = Scopes.find(ID);
2181 if (S == Scopes.end()) {
2182 auto scopeName =
Context->getSyncScopeName(ID);
2183 assert(scopeName.has_value() &&
"Scope name must exist.");
2187 for (
const auto &Entry : Scopes) {
2193 formatv(
"NVPTX backend does not support syncscope \"{0}\" (ID={1}).\n"
2194 "Supported syncscopes are: {2}.",
2195 scopeName.value(),
int(ID),
2201bool NVPTXScopes::empty()
const {
return Scopes.size() == 0; }
2203#define TCGEN05_ST_OPCODE(SHAPE, NUM) \
2204 (enableUnpack ? NVPTX::TCGEN05_ST_##SHAPE##_##NUM##_UNPACK \
2205 : NVPTX::TCGEN05_ST_##SHAPE##_##NUM)
2209 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2211 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2213 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2215 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2217 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2219 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2221 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2223 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2225 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2227 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2229 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2231 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2233 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2235 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2237 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2239 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2241 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2243 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2245 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2247 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2249 case Intrinsic::nvvm_tcgen05_st_16x256b_x32:
2251 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2253 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2255 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2257 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2259 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2261 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2263 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2265 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128:
2267 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2269 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2271 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2273 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2275 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2277 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2279 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2281 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2287void NVPTXDAGToDAGISel::SelectTcgen05St(SDNode *
N,
bool hasOffset) {
2290 "tcgen05.st is not supported on this architecture variant");
2300 Operands.push_back(CurDAG->getTargetConstant(
2304 for (
unsigned I = hasOffset ? 4 : 3;
I < (
N->getNumOperands() - 1);
I++)
2316bool NVPTXDAGToDAGISel::tryIntrinsicVoid(SDNode *
N) {
2317 unsigned IID =
N->getConstantOperandVal(1);
2321 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2322 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2323 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2324 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2325 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2326 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2327 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2328 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2329 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2330 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2331 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2332 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2333 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2334 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2335 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2336 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2337 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2338 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2339 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2340 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2341 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2342 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2343 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2344 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2345 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2346 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2347 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2348 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2349 case Intrinsic::nvvm_tcgen05_st_16x256b_x32: {
2354 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2355 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2356 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2357 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2358 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2359 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2360 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2361 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128: {
2362 SelectTcgen05St(
N,
true);
2368void NVPTXDAGToDAGISel::selectAtomicSwap128(SDNode *
N) {
2375 Ops.append(
N->op_begin() + 2,
N->op_end());
2376 Ops.append({getI32Imm(getMemOrder(AN), dl), getI32Imm(getAtomicScope(AN), dl),
2377 getI32Imm(getAddrSpace(AN), dl)});
2381 NVPTXMemCacheHintAccess
Access{NVPTXMemCacheHintInstruction::Atom,
2384 const auto [EvictionAndPrefetchHint, CachePolicyReg] =
2385 getMemCacheHintOperands(AN,
Access, dl);
2386 Ops.push_back(EvictionAndPrefetchHint);
2387 Ops.push_back(CachePolicyReg);
2390 Ops.push_back(Chain);
2395 ? NVPTX::ATOM_EXCH_B128
2396 : NVPTX::ATOM_CAS_B128;
2398 auto *ATOM = CurDAG->getMachineNode(Opcode, dl,
N->getVTList(),
Ops);
2401 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
Diagnostic information for unsupported feature in backend.
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 hasLocalVolatile() 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.