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);
701 Subtarget->hasFeature(NVPTX::PTX91) &&
795 !IsSupportedLocalVolatile) ||
807 !HasMemoryOrdering) {
809 formatv(
"PTX does not support \"atomic\" for orderings different than"
810 "\"NotAtomic\" or \"Monotonic\" for sm_60 or older, but order "
820 bool AddrSupportsVolatileOrAtomic =
821 (IsSupportedLocalVolatile ||
826 if (!AddrSupportsVolatileOrAtomic)
829 bool UseRelaxedMMIO =
851 formatv(
"PTX only supports Acquire Ordering on reads: {}",
852 N->getOperationName()));
857 formatv(
"PTX only supports Release Ordering on writes: {}",
858 N->getOperationName()));
862 formatv(
"NVPTX does not support AcquireRelease Ordering on "
864 "yet and PTX does not support it on loads or stores: {}",
865 N->getOperationName()));
878 else if (
N->writeMem())
882 formatv(
"NVPTX does not support SequentiallyConsistent Ordering on "
883 "read-modify-writes yet: {}",
884 N->getOperationName()));
885 return OperationOrderings(InstrOrder,
890 formatv(
"NVPTX backend does not support AtomicOrdering \"{}\" yet.",
913 auto S =
Scopes[
N->getSyncScopeID()];
936 if (!
T->hasSplitAcquireAndReleaseFences() &&
944 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_sys
945 : NVPTX::INT_MEMBAR_SYS;
947 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_cta
948 : NVPTX::INT_MEMBAR_CTA;
950 return NVPTX::atomic_thread_fence_acquire_cluster;
952 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acquire_gpu
953 : NVPTX::INT_MEMBAR_GL;
957 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
964 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_sys
965 : NVPTX::INT_MEMBAR_SYS;
967 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_cta
968 : NVPTX::INT_MEMBAR_CTA;
970 return NVPTX::atomic_thread_fence_release_cluster;
972 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_release_gpu
973 : NVPTX::INT_MEMBAR_GL;
977 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
984 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_sys
985 : NVPTX::INT_MEMBAR_SYS;
987 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_cta
988 : NVPTX::INT_MEMBAR_CTA;
990 return NVPTX::atomic_thread_fence_acq_rel_cluster;
992 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_acq_rel_gpu
993 : NVPTX::INT_MEMBAR_GL;
997 formatv(
"Unsupported scope \"{}\" for acquire/release/acq_rel fence.",
1005 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_sys
1006 : NVPTX::INT_MEMBAR_SYS;
1008 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_cta
1009 : NVPTX::INT_MEMBAR_CTA;
1011 return NVPTX::atomic_thread_fence_seq_cst_cluster;
1013 return T->hasMemoryOrdering() ? NVPTX::atomic_thread_fence_seq_cst_gpu
1014 : NVPTX::INT_MEMBAR_GL;
1027 formatv(
"Unsupported \"{}\" ordering and \"{}\" scope for fence.",
1028 OrderingToString(O), ScopeToString(S)));
1036std::pair<NVPTX::Ordering, NVPTX::Scope>
1037NVPTXDAGToDAGISel::insertMemoryInstructionFence(
SDLoc DL,
SDValue &Chain,
1040 getOperationOrderings(
N, Subtarget);
1058 Chain =
SDValue(CurDAG->getMachineNode(
Op,
DL, MVT::Other, Chain), 0);
1063 formatv(
"Unexpected fence ordering: \"{}\".",
1071static std::optional<unsigned>
1073 std::optional<unsigned> Opcode_i32,
1074 std::optional<unsigned> Opcode_i64) {
1093 return std::nullopt;
1098 return V.getOpcode() ==
ISD::ADD ||
1099 (V->getOpcode() ==
ISD::OR && V->getFlags().hasDisjoint());
1104 N =
N.getOperand(0);
1114 GA->getValueType(0), GA->getOffset(),
1115 GA->getTargetFlags());
1118 ES->getTargetFlags());
1121 if (
N.getOpcode() == NVPTXISD::Symbol)
1122 return N.getOperand(0);
1129 APInt AccumulatedOffset(64u, 0);
1135 const APInt CI = CN->getAPIntValue().
sext(64);
1136 if (!(CI + AccumulatedOffset).isSignedIntN(32))
1139 AccumulatedOffset += CI;
1196template <
typename T>
1199 std::optional<T> (*Parse)(
StringRef),
bool EmitDiagnostics) {
1202 if (EmitDiagnostics)
1204 Twine(
"'") +
Key +
"' expects a string value");
1205 return std::nullopt;
1209 auto Parsed = Parse(ValStr);
1210 if (!Parsed && EmitDiagnostics)
1222 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld ||
1223 Access.Instruction == NVPTXMemCacheHintInstruction::St;
1228 NVPTXMemCacheHintAccess
Access) {
1238 NVPTXMemCacheHintAccess
Access) {
1243 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1246 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1249 return Access.Instruction == NVPTXMemCacheHintInstruction::Ld &&
1257 NVPTXMemCacheHintAccess
Access) {
1268 NVPTXMemCacheHintAccess
Access) {
1273NVPTXMemCacheHintOperands NVPTXDAGToDAGISel::getMemCacheHintOperands(
1275 bool EmitDiagnostics) {
1278 SDValue PolicyReg = CurDAG->getRegister(NVPTX::NoRegister, MVT::i64);
1280 return {getI32Imm(0,
DL), PolicyReg};
1281 if (
Node->getNumOperands() == 0) {
1282 if (EmitDiagnostics)
1284 return {getI32Imm(0,
DL), PolicyReg};
1290 std::optional<uint64_t> CachePolicy;
1292 for (
unsigned I = 0;
I + 1 <
Node->getNumOperands();
I += 2) {
1297 if (KeyStr ==
"nvvm.l1_eviction") {
1305 if (KeyStr ==
"nvvm.l2_eviction") {
1313 if (KeyStr ==
"nvvm.l2_prefetch_size") {
1316 if (ParsedPrefetch &&
1322 if (KeyStr ==
"nvvm.l2_cache_hint") {
1325 if (EmitDiagnostics)
1327 Ctx,
"'nvvm.l2_cache_hint' expects an integer value");
1329 CachePolicy = ValCI->getZExtValue();
1334 if (EmitDiagnostics)
1338 unsigned EvictionAndPrefetchHint =
1341 SDValue PolicyConst = CurDAG->getTargetConstant(*CachePolicy,
DL, MVT::i64);
1343 CurDAG->getMachineNode(NVPTX::MOV_B64_i,
DL, MVT::i64, PolicyConst), 0);
1347 return {getI32Imm(EvictionAndPrefetchHint,
DL), PolicyReg};
1350bool NVPTXDAGToDAGISel::tryLoad(
SDNode *
N) {
1352 assert(
LD->readMem() &&
"Expected load");
1356 if (PlainLoad && PlainLoad->
isIndexed())
1360 const auto CodeAddrSpace = getAddrSpace(LD);
1366 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1368 const unsigned FromTypeWidth =
LD->getMemoryVT().getSizeInBits();
1376 uint32_t UsedBytesMask;
1377 switch (
N->getOpcode()) {
1380 UsedBytesMask = UINT32_MAX;
1383 UsedBytesMask =
N->getConstantOperandVal(3);
1390 FromTypeWidth <= 128 &&
"Invalid width for load");
1393 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1395 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1396 1, FromTypeWidth,
LD->isVolatile()},
1401 getI32Imm(Scope,
DL),
1402 getI32Imm(CodeAddrSpace,
DL),
1403 getI32Imm(FromType,
DL),
1404 getI32Imm(FromTypeWidth,
DL),
1405 getI32Imm(UsedBytesMask,
DL),
1408 EvictionAndPrefetchHint,
1413 const std::optional<unsigned> Opcode =
1414 pickOpcodeForVT(TargetVT, NVPTX::LD_i16, NVPTX::LD_i32, NVPTX::LD_i64);
1418 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1425 ReplaceNode(LD, NVPTXLD);
1430 switch (
N->getOpcode()) {
1442bool NVPTXDAGToDAGISel::tryLoadVector(
SDNode *
N) {
1446 const auto CodeAddrSpace = getAddrSpace(LD);
1450 const MVT EltVT =
LD->getSimpleValueType(0);
1453 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, LD);
1463 const unsigned ExtensionType =
N->getConstantOperandVal(4);
1469 const uint32_t UsedBytesMask =
N->getConstantOperandVal(3);
1473 const auto [EvictionAndPrefetchHint, PolicyReg] =
1474 getMemCacheHintOperands(LD,
1475 {NVPTXMemCacheHintInstruction::Ld, CodeAddrSpace,
1476 LD->getNumValues() - 1,
1477 FromTypeWidth,
LD->isVolatile()},
1481 getI32Imm(Scope,
DL),
1482 getI32Imm(CodeAddrSpace,
DL),
1483 getI32Imm(FromType,
DL),
1484 getI32Imm(FromTypeWidth,
DL),
1485 getI32Imm(UsedBytesMask,
DL),
1488 EvictionAndPrefetchHint,
1492 std::optional<unsigned> Opcode;
1493 switch (
N->getOpcode()) {
1498 NVPTX::LDV_i32_v2, NVPTX::LDV_i64_v2);
1502 NVPTX::LDV_i32_v4, NVPTX::LDV_i64_v4);
1506 NVPTX::LDV_i32_v8, {});
1512 SDNode *NVPTXLD = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1517 ReplaceNode(LD, NVPTXLD);
1521bool NVPTXDAGToDAGISel::tryLDG(
MemSDNode *LD) {
1524 unsigned ExtensionType;
1525 uint32_t UsedBytesMask;
1527 ExtensionType =
Load->getExtensionType();
1528 UsedBytesMask = UINT32_MAX;
1530 ExtensionType =
LD->getConstantOperandVal(4);
1531 UsedBytesMask =
LD->getConstantOperandVal(3);
1539 assert(!(
LD->getSimpleValueType(0).isVector() &&
1543 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1546 LD->getNumValues() - 1, FromTypeWidth,
LD->isVolatile()},
1549 getI32Imm(FromTypeWidth,
DL),
1550 getI32Imm(UsedBytesMask,
DL),
1553 EvictionAndPrefetchHint,
1558 std::optional<unsigned> Opcode;
1559 switch (
LD->getOpcode()) {
1564 NVPTX::LD_GLOBAL_NC_i32, NVPTX::LD_GLOBAL_NC_i64);
1567 Opcode =
pickOpcodeForVT(TargetVT, std::nullopt, NVPTX::LD_GLOBAL_NC_i32,
1568 NVPTX::LD_GLOBAL_NC_i64);
1573 NVPTX::LD_GLOBAL_NC_v2i32, NVPTX::LD_GLOBAL_NC_v2i64);
1578 NVPTX::LD_GLOBAL_NC_v4i32, NVPTX::LD_GLOBAL_NC_v4i64);
1582 NVPTX::LD_GLOBAL_NC_v8i32, {});
1588 SDNode *NVPTXLDG = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1590 ReplaceNode(LD, NVPTXLDG);
1594bool NVPTXDAGToDAGISel::tryLDU(
SDNode *
N) {
1609 std::optional<unsigned> Opcode;
1610 switch (
N->getOpcode()) {
1615 NVPTX::LDU_GLOBAL_i32, NVPTX::LDU_GLOBAL_i64);
1619 NVPTX::LDU_GLOBAL_v2i32, NVPTX::LDU_GLOBAL_v2i64);
1623 NVPTX::LDU_GLOBAL_v4i32, {});
1629 SDNode *NVPTXLDU = CurDAG->getMachineNode(*Opcode,
DL,
LD->getVTList(),
Ops);
1631 ReplaceNode(LD, NVPTXLDU);
1635bool NVPTXDAGToDAGISel::tryStore(
SDNode *
N) {
1637 assert(
ST->writeMem() &&
"Expected store");
1640 assert((PlainStore || AtomicStore) &&
"Expected store");
1643 if (PlainStore && PlainStore->
isIndexed())
1647 const auto CodeAddrSpace = getAddrSpace(ST);
1651 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1654 const unsigned ToTypeWidth =
ST->getMemoryVT().getSizeInBits();
1660 "Invalid width for store");
1665 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1667 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1668 1, ToTypeWidth,
ST->isVolatile()},
1672 getI32Imm(Ordering,
DL),
1673 getI32Imm(Scope,
DL),
1674 getI32Imm(CodeAddrSpace,
DL),
1675 getI32Imm(ToTypeWidth,
DL),
1678 EvictionAndPrefetchHint,
1682 const std::optional<unsigned> Opcode =
1684 NVPTX::ST_i32, NVPTX::ST_i64);
1688 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1695 ReplaceNode(ST, NVPTXST);
1699bool NVPTXDAGToDAGISel::tryStoreVector(
SDNode *
N) {
1701 const unsigned TotalWidth =
ST->getMemoryVT().getSizeInBits();
1704 const auto CodeAddrSpace = getAddrSpace(ST);
1712 const auto [
Ordering,
Scope] = insertMemoryInstructionFence(
DL, Chain, ST);
1717 for (
auto &V :
ST->ops().slice(1, NumElts))
1720 const unsigned ToTypeWidth = TotalWidth / NumElts;
1723 TotalWidth <= 256 &&
"Invalid width for store");
1726 const auto [EvictionAndPrefetchHint, PolicyReg] = getMemCacheHintOperands(
1728 {NVPTXMemCacheHintInstruction::St, CodeAddrSpace,
1729 NumElts, ToTypeWidth,
ST->isVolatile()},
1733 Ops.append({getI32Imm(Ordering,
DL), getI32Imm(Scope,
DL),
1734 getI32Imm(CodeAddrSpace,
DL), getI32Imm(ToTypeWidth,
DL),
Base,
1735 Offset, EvictionAndPrefetchHint, PolicyReg, Chain});
1738 ST->getOperand(1).getSimpleValueType().SimpleTy;
1739 std::optional<unsigned> Opcode;
1740 switch (
ST->getOpcode()) {
1760 SDNode *NVPTXST = CurDAG->getMachineNode(*Opcode,
DL, MVT::Other,
Ops);
1765 ReplaceNode(ST, NVPTXST);
1771bool NVPTXDAGToDAGISel::tryBFE(
SDNode *
N) {
1778 bool IsSigned =
false;
1804 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1808 Val =
LHS.getNode()->getOperand(0);
1809 Start =
LHS.getNode()->getOperand(1);
1815 int64_t GoodBits =
Start.getValueSizeInBits() - StartVal;
1816 if (NumBits > GoodBits) {
1822 Start = CurDAG->getTargetConstant(StartVal,
DL, MVT::i32);
1874 NumBits = NumZeros + NumOnes - ShiftAmt;
1880 if (ShiftAmt < NumZeros) {
1887 Start = CurDAG->getTargetConstant(ShiftAmt,
DL, MVT::i32);
1888 Len = CurDAG->getTargetConstant(NumBits,
DL, MVT::i32);
1904 Val =
LHS->getOperand(0);
1923 if (OuterShiftAmt < InnerShiftAmt) {
1934 Start = CurDAG->getTargetConstant(OuterShiftAmt - InnerShiftAmt,
DL,
1959 Opc = NVPTX::BFE_S32rii;
1961 Opc = NVPTX::BFE_U32rii;
1965 Opc = NVPTX::BFE_S64rii;
1967 Opc = NVPTX::BFE_U64rii;
1978 ReplaceNode(
N, CurDAG->getMachineNode(
Opc,
DL,
N->getVTList(),
Ops));
1983bool NVPTXDAGToDAGISel::tryBF16ArithToFMA(
SDNode *
N) {
2005 auto API = APF.bitcastToAPInt();
2006 API = API.concat(API);
2007 auto Const = CurDAG->getTargetConstant(API,
DL, MVT::i32);
2008 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_B32_i,
DL, VT, Const),
2011 auto Const = CurDAG->getTargetConstantFP(APF,
DL, VT);
2012 return SDValue(CurDAG->getMachineNode(NVPTX::MOV_BF16_i,
DL, VT, Const), 0);
2015 switch (
N->getOpcode()) {
2018 Operands = {N0, GetConstant(1.0), N1};
2022 Operands = {N1, GetConstant(-1.0), N0};
2027 Operands = {N0, N1, GetConstant(-0.0)};
2033 int Opcode = IsVec ? NVPTX::FMA_BF16x2rrr : NVPTX::FMA_BF16rrr;
2035 ReplaceNode(
N, FMA);
2041 V =
V.getOperand(0);
2044 return CurDAG->getTargetConstant(CN->getAPIntValue(),
SDLoc(V),
2047 return CurDAG->getTargetConstantFP(CN->getValueAPF(),
SDLoc(V),
2054bool NVPTXDAGToDAGISel::SelectInlineAsmMemoryOperand(
2056 std::vector<SDValue> &OutOps) {
2057 switch (ConstraintID) {
2062 OutOps.push_back(
Base);
2063 OutOps.push_back(
Offset);
2070void NVPTXDAGToDAGISel::SelectV2I64toI128(
SDNode *
N) {
2086 CurDAG->getMachineNode(NVPTX::V2I64toI128,
DL, MVT::i128, {
Lo,
Hi});
2089 NewOps[0] =
N->getOperand(0);
2092 if (
N->getNumOperands() == 5)
2093 NewOps[3] =
N->getOperand(4);
2096 ReplaceNode(
N, NewValue.
getNode());
2099void NVPTXDAGToDAGISel::SelectI128toV2I64(
SDNode *
N) {
2116 SDNode *Mov = CurDAG->getMachineNode(
2117 NVPTX::I128toV2I64,
DL,
2121 ReplaceNode(
N, Mov);
2124bool NVPTXDAGToDAGISel::tryFence(
SDNode *
N) {
2133 CurDAG->ReplaceAllUsesOfValueWith(
SDValue(
N, 0),
N->getOperand(0));
2134 CurDAG->RemoveDeadNode(
N);
2141 SDNode *FenceNode = CurDAG->getMachineNode(FenceOp,
DL, MVT::Other, Chain);
2142 ReplaceNode(
N, FenceNode);
2160 "NVPTXScopes::operator[]");
2162 auto S = Scopes.find(ID);
2163 if (S == Scopes.end()) {
2164 auto scopeName =
Context->getSyncScopeName(ID);
2165 assert(scopeName.has_value() &&
"Scope name must exist.");
2169 for (
const auto &Entry : Scopes) {
2175 formatv(
"NVPTX backend does not support syncscope \"{0}\" (ID={1}).\n"
2176 "Supported syncscopes are: {2}.",
2177 scopeName.value(),
int(ID),
2183bool NVPTXScopes::empty()
const {
return Scopes.size() == 0; }
2185#define TCGEN05_ST_OPCODE(SHAPE, NUM) \
2186 (enableUnpack ? NVPTX::TCGEN05_ST_##SHAPE##_##NUM##_UNPACK \
2187 : NVPTX::TCGEN05_ST_##SHAPE##_##NUM)
2191 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2193 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2195 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2197 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2199 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2201 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2203 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2205 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2207 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2209 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2211 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2213 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2215 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2217 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2219 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2221 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2223 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2225 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2227 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2229 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2231 case Intrinsic::nvvm_tcgen05_st_16x256b_x32:
2233 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2235 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2237 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2239 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2241 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2243 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2245 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2247 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128:
2249 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2251 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2253 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2255 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2257 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2259 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2261 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2263 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2269void NVPTXDAGToDAGISel::SelectTcgen05St(SDNode *
N,
bool hasOffset) {
2272 "tcgen05.st is not supported on this architecture variant");
2282 Operands.push_back(CurDAG->getTargetConstant(
2286 for (
unsigned I = hasOffset ? 4 : 3;
I < (
N->getNumOperands() - 1);
I++)
2298bool NVPTXDAGToDAGISel::tryIntrinsicVoid(SDNode *
N) {
2299 unsigned IID =
N->getConstantOperandVal(1);
2303 case Intrinsic::nvvm_tcgen05_st_16x64b_x1:
2304 case Intrinsic::nvvm_tcgen05_st_16x64b_x2:
2305 case Intrinsic::nvvm_tcgen05_st_16x64b_x4:
2306 case Intrinsic::nvvm_tcgen05_st_16x64b_x8:
2307 case Intrinsic::nvvm_tcgen05_st_16x64b_x16:
2308 case Intrinsic::nvvm_tcgen05_st_16x64b_x32:
2309 case Intrinsic::nvvm_tcgen05_st_16x64b_x64:
2310 case Intrinsic::nvvm_tcgen05_st_16x64b_x128:
2311 case Intrinsic::nvvm_tcgen05_st_32x32b_x1:
2312 case Intrinsic::nvvm_tcgen05_st_32x32b_x2:
2313 case Intrinsic::nvvm_tcgen05_st_32x32b_x4:
2314 case Intrinsic::nvvm_tcgen05_st_32x32b_x8:
2315 case Intrinsic::nvvm_tcgen05_st_32x32b_x16:
2316 case Intrinsic::nvvm_tcgen05_st_32x32b_x32:
2317 case Intrinsic::nvvm_tcgen05_st_32x32b_x64:
2318 case Intrinsic::nvvm_tcgen05_st_32x32b_x128:
2319 case Intrinsic::nvvm_tcgen05_st_16x128b_x1:
2320 case Intrinsic::nvvm_tcgen05_st_16x128b_x2:
2321 case Intrinsic::nvvm_tcgen05_st_16x128b_x4:
2322 case Intrinsic::nvvm_tcgen05_st_16x128b_x8:
2323 case Intrinsic::nvvm_tcgen05_st_16x128b_x16:
2324 case Intrinsic::nvvm_tcgen05_st_16x128b_x32:
2325 case Intrinsic::nvvm_tcgen05_st_16x128b_x64:
2326 case Intrinsic::nvvm_tcgen05_st_16x256b_x1:
2327 case Intrinsic::nvvm_tcgen05_st_16x256b_x2:
2328 case Intrinsic::nvvm_tcgen05_st_16x256b_x4:
2329 case Intrinsic::nvvm_tcgen05_st_16x256b_x8:
2330 case Intrinsic::nvvm_tcgen05_st_16x256b_x16:
2331 case Intrinsic::nvvm_tcgen05_st_16x256b_x32: {
2336 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x1:
2337 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x2:
2338 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x4:
2339 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x8:
2340 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x16:
2341 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x32:
2342 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x64:
2343 case Intrinsic::nvvm_tcgen05_st_16x32bx2_x128: {
2344 SelectTcgen05St(
N,
true);
2350void NVPTXDAGToDAGISel::selectAtomicSwap128(SDNode *
N) {
2357 Ops.append(
N->op_begin() + 2,
N->op_end());
2358 Ops.append({getI32Imm(getMemOrder(AN), dl), getI32Imm(getAtomicScope(AN), dl),
2359 getI32Imm(getAddrSpace(AN), dl)});
2363 NVPTXMemCacheHintAccess
Access{NVPTXMemCacheHintInstruction::Atom,
2366 const auto [EvictionAndPrefetchHint, CachePolicyReg] =
2367 getMemCacheHintOperands(AN,
Access, dl);
2368 Ops.push_back(EvictionAndPrefetchHint);
2369 Ops.push_back(CachePolicyReg);
2372 Ops.push_back(Chain);
2377 ? NVPTX::ATOM_EXCH_B128
2378 : NVPTX::ATOM_CAS_B128;
2380 auto *ATOM = CurDAG->getMachineNode(Opcode, dl,
N->getVTList(),
Ops);
2383 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.