29#include "llvm/IR/IntrinsicsAMDGPU.h"
36#define DEBUG_TYPE "AMDGPUtti"
39 "amdgpu-unroll-threshold-private",
40 cl::desc(
"Unroll threshold for AMDGPU if private memory used in a loop"),
44 "amdgpu-unroll-threshold-local",
45 cl::desc(
"Unroll threshold for AMDGPU if local memory used in a loop"),
49 "amdgpu-unroll-threshold-if",
50 cl::desc(
"Unroll threshold increment for AMDGPU for each if statement inside loop"),
54 "amdgpu-unroll-runtime-local",
55 cl::desc(
"Allow runtime unroll for AMDGPU if local memory used in a loop"),
59 "amdgpu-unroll-max-block-to-analyze",
60 cl::desc(
"Inner loop block size threshold to analyze in unroll for AMDGPU"),
65 cl::desc(
"Cost of alloca argument"));
73 cl::desc(
"Maximum alloca size to use for inline cost"));
78 cl::desc(
"Maximum number of BBs allowed in a function after inlining"
79 " (compile time constraint)"));
83 "amdgpu-memcpy-loop-unroll",
84 cl::desc(
"Unroll factor (affecting 4x32-bit operations) to use for memory "
85 "operations when lowering statically-sized memcpy, memmove, or"
97 for (
const Value *V :
I->operand_values()) {
100 return SubLoop->contains(PHI); }))
110 TargetTriple(TM->getTargetTriple()),
112 TLI(ST->getTargetLowering()) {}
117 const Function &
F = *L->getHeader()->getParent();
119 F.getFnAttributeAsParsedInteger(
"amdgpu-unroll-threshold", 300);
121 F.getFnAttributeAsParsedInteger(
"amdgpu-partial-unroll-threshold", 150);
122 UP.
MaxCount = std::numeric_limits<unsigned>::max();
137 const unsigned MaxAlloca = (256 - 16) * 4;
143 if (
MDNode *LoopUnrollThreshold =
145 if (LoopUnrollThreshold->getNumOperands() == 2) {
147 LoopUnrollThreshold->getOperand(1));
148 if (MetaThresholdValue) {
154 ThresholdPrivate = std::min(ThresholdPrivate, UP.
Threshold);
155 ThresholdLocal = std::min(ThresholdLocal, UP.
Threshold);
160 unsigned MaxBoost = std::max(ThresholdPrivate, ThresholdLocal);
163 unsigned LocalGEPsSeen = 0;
166 return SubLoop->contains(BB); }))
179 if ((L->contains(Succ0) && L->isLoopExiting(Succ0)) ||
180 (L->contains(Succ1) && L->isLoopExiting(Succ1)))
186 << *L <<
" due to " << *Br <<
'\n');
198 unsigned AS =
GEP->getAddressSpace();
199 unsigned Threshold = 0;
201 Threshold = ThresholdPrivate;
203 Threshold = ThresholdLocal;
211 const Value *Ptr =
GEP->getPointerOperand();
217 if (!AllocaSize || AllocaSize->getFixedValue() > MaxAlloca)
226 if (LocalGEPsSeen > 1 || L->getLoopDepth() > 2 ||
231 << *L <<
" due to LDS use.\n");
236 bool HasLoopDef =
false;
239 if (!Inst || L->isLoopInvariant(
Op))
243 return SubLoop->contains(Inst); }))
267 << *L <<
" due to " << *
GEP <<
'\n');
291 TLI(ST->getTargetLowering()), CommonTTI(TM,
F),
292 IsGraphics(
AMDGPU::isGraphics(
F.getCallingConv())) {
298 return !
F || !ST->isSingleLaneExecution(*
F);
319 (ST->hasAnyPackedFP64Ops() || ST->hasAnyPackedU64Ops()) ? 128
320 : ST->hasAnyPackedFP32Ops() ? 64
333 if (Opcode == Instruction::Load || Opcode == Instruction::Store)
334 return 32 * 4 / ElemWidth;
337 return (ElemWidth == 8 && ST->has16BitInsts()) ? 4
338 : (ElemWidth == 16 && ST->has16BitInsts()) ? 2
339 : (ElemWidth == 32 && ST->hasAnyPackedFP32Ops()) ? 2
340 : (ElemWidth == 64 &&
341 (ST->hasAnyPackedFP64Ops() || ST->hasAnyPackedU64Ops()))
352 return !ST->hasGFX940Insts() && !ST->hasGFX950Insts();
356 unsigned ChainSizeInBytes,
358 unsigned VecRegBitWidth = VF * LoadSize;
361 return 128 / LoadSize;
367 unsigned ChainSizeInBytes,
369 unsigned VecRegBitWidth = VF * StoreSize;
370 if (VecRegBitWidth > 128)
371 return 128 / StoreSize;
387 return 8 * ST->getMaxPrivateElementSize();
395 unsigned AddrSpace)
const {
400 return (Alignment >= 4 || ST->hasUnalignedScratchAccessEnabled()) &&
401 ChainSizeInBytes <= ST->getMaxPrivateElementSize();
408 unsigned AddrSpace)
const {
414 unsigned AddrSpace)
const {
424 unsigned DestAddrSpace,
Align SrcAlign,
Align DestAlign,
425 std::optional<uint32_t> AtomicElementSize)
const {
427 if (AtomicElementSize)
441 unsigned I32EltsInVector = 4;
451 unsigned RemainingBytes,
unsigned SrcAddrSpace,
unsigned DestAddrSpace,
453 std::optional<uint32_t> AtomicCpySize)
const {
457 OpsOut, Context, RemainingBytes, SrcAddrSpace, DestAddrSpace, SrcAlign,
458 DestAlign, AtomicCpySize);
461 while (RemainingBytes >= 16) {
463 RemainingBytes -= 16;
467 while (RemainingBytes >= 8) {
473 while (RemainingBytes >= 4) {
479 while (RemainingBytes >= 2) {
485 while (RemainingBytes) {
492 bool HasUnorderedReductions)
const {
504 case Intrinsic::amdgcn_ds_ordered_add:
505 case Intrinsic::amdgcn_ds_ordered_swap: {
508 if (!Ordering || !Volatile)
511 unsigned OrderingVal = Ordering->getZExtValue();
518 Info.WriteMem =
true;
519 Info.IsVolatile = !Volatile->isZero();
534 FAddSub->
getOpcode() == Instruction::FSub) &&
535 "Expected an fadd or an fsub");
542 if (!HasFMAD && !HasFMA)
554 if (
FMul &&
FMul->getOpcode() == Instruction::FMul &&
FMul->hasOneUse() &&
568 if (!Fused || FAddSub->
getOpcode() != Instruction::FAdd ||
572 return Outer && Outer->getOpcode() == Instruction::FAdd &&
573 Outer->hasAllowReassoc() &&
583 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty);
584 int ISD = TLI->InstructionOpcodeToISD(Opcode);
588 unsigned NElts = LT.second.isVector() ?
589 LT.second.getVectorNumElements() : 1;
598 return get64BitInstrCost(
CostKind) * LT.first * NElts;
600 if (ST->has16BitInsts() && SLT == MVT::i16)
601 NElts = (NElts + 1) / 2;
604 return getFullRateInstrCost() * LT.first * NElts;
607 if (SLT == MVT::i64 && ST->hasAnyPackedU64Ops())
608 NElts = (NElts + 1) / 2;
613 if (SLT == MVT::i64) {
615 return 2 * getFullRateInstrCost() * LT.first * NElts;
618 if (ST->has16BitInsts() && SLT == MVT::i16)
619 NElts = (NElts + 1) / 2;
621 return LT.first * NElts * getFullRateInstrCost();
623 const int QuarterRateCost = getQuarterRateInstrCost(
CostKind);
624 if (SLT == MVT::i64) {
625 const int FullRateCost = getFullRateInstrCost();
626 return (4 * QuarterRateCost + (2 * 2) * FullRateCost) * LT.first * NElts;
629 if (ST->has16BitInsts() && SLT == MVT::i16)
630 NElts = (NElts + 1) / 2;
633 return QuarterRateCost * NElts * LT.first;
642 (FAddSub->getOpcode() == Instruction::FAdd ||
643 FAddSub->getOpcode() == Instruction::FSub) &&
650 if (ST->hasAnyPackedFP32Ops() && SLT == MVT::f32)
651 NElts = (NElts + 1) / 2;
652 if (ST->hasBF16PackedInsts() && SLT == MVT::bf16)
653 NElts = (NElts + 1) / 2;
654 if (SLT == MVT::f64) {
655 if (ST->hasAnyPackedFP64Ops())
656 NElts = (NElts + 1) / 2;
657 return LT.first * NElts * get64BitInstrCost(
CostKind);
660 if (ST->has16BitInsts() && SLT == MVT::f16)
661 NElts = (NElts + 1) / 2;
663 if (SLT == MVT::f32 || SLT == MVT::f16 || SLT == MVT::bf16)
664 return LT.first * NElts * getFullRateInstrCost();
670 if (SLT == MVT::f64) {
675 if (!ST->hasUsableDivScaleConditionOutput())
676 Cost += 3 * getFullRateInstrCost();
678 return LT.first *
Cost * NElts;
683 if ((SLT == MVT::f32 && !HasFP32Denormals) ||
684 (SLT == MVT::f16 && ST->has16BitInsts())) {
685 return LT.first * getTransInstrCost(
CostKind) * NElts;
689 if (SLT == MVT::f16 && ST->has16BitInsts()) {
695 int Cost = 4 * getFullRateInstrCost() + 2 * getTransInstrCost(
CostKind);
696 return LT.first *
Cost * NElts;
703 int Cost = getTransInstrCost(
CostKind) + getFullRateInstrCost();
704 return LT.first *
Cost * NElts;
707 if (SLT == MVT::f32 || SLT == MVT::f16) {
709 int Cost = (SLT == MVT::f16 ? 14 : 10) * getFullRateInstrCost() +
712 if (!HasFP32Denormals) {
714 Cost += 2 * getFullRateInstrCost();
717 return LT.first * NElts *
Cost;
723 return TLI->isFNegFree(SLT) ? 0 : NElts;
737 case Intrinsic::fmuladd:
738 case Intrinsic::copysign:
739 case Intrinsic::minimumnum:
740 case Intrinsic::maximumnum:
741 case Intrinsic::canonicalize:
743 case Intrinsic::round:
744 case Intrinsic::uadd_sat:
745 case Intrinsic::usub_sat:
746 case Intrinsic::sadd_sat:
747 case Intrinsic::ssub_sat:
758 switch (ICA.
getID()) {
759 case Intrinsic::fabs:
762 case Intrinsic::amdgcn_workitem_id_x:
763 case Intrinsic::amdgcn_workitem_id_y:
764 case Intrinsic::amdgcn_workitem_id_z:
768 case Intrinsic::amdgcn_workgroup_id_x:
769 case Intrinsic::amdgcn_workgroup_id_y:
770 case Intrinsic::amdgcn_workgroup_id_z:
771 case Intrinsic::amdgcn_lds_kernel_id:
772 case Intrinsic::amdgcn_dispatch_ptr:
773 case Intrinsic::amdgcn_dispatch_id:
774 case Intrinsic::amdgcn_implicitarg_ptr:
775 case Intrinsic::amdgcn_queue_ptr:
787 case Intrinsic::exp2:
788 case Intrinsic::exp10: {
790 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(RetTy);
793 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
795 if (SLT == MVT::f64) {
797 if (IID == Intrinsic::exp)
799 else if (IID == Intrinsic::exp10)
805 if (SLT == MVT::f32) {
806 unsigned NumFullRateOps = 0;
808 unsigned NumTransOps = 1;
814 NumFullRateOps = ST->hasFastFMAF32() ? 13 : 17;
816 if (IID == Intrinsic::exp) {
819 }
else if (IID == Intrinsic::exp10) {
825 if (HasFP32Denormals)
830 NumTransOps * getTransInstrCost(
CostKind);
831 return LT.first * NElts *
Cost;
837 case Intrinsic::log2:
838 case Intrinsic::log10: {
839 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(RetTy);
842 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
844 if (SLT == MVT::f32) {
845 unsigned NumFullRateOps = 0;
847 if (IID == Intrinsic::log2) {
855 NumFullRateOps = ST->hasFastFMAF32() ? 8 : 11;
858 if (HasFP32Denormals)
862 NumFullRateOps * getFullRateInstrCost() + getTransInstrCost(
CostKind);
863 return LT.first * NElts *
Cost;
869 case Intrinsic::cos: {
870 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(RetTy);
873 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
875 if (SLT == MVT::f32) {
877 unsigned NumFullRateOps = ST->hasTrigReducedRange() ? 2 : 1;
880 NumFullRateOps * getFullRateInstrCost() + getTransInstrCost(
CostKind);
881 return LT.first * NElts *
Cost;
886 case Intrinsic::sqrt: {
887 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(RetTy);
890 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
892 if (SLT == MVT::f32) {
893 unsigned NumFullRateOps = 0;
897 NumFullRateOps = HasFP32Denormals ? 17 : 16;
901 NumFullRateOps * getFullRateInstrCost() + getTransInstrCost(
CostKind);
902 return LT.first * NElts *
Cost;
914 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(RetTy);
916 unsigned NElts = LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
918 if ((ST->hasVOP3PInsts() &&
919 (SLT == MVT::f16 || SLT == MVT::i16 ||
920 (SLT == MVT::bf16 && ST->hasBF16PackedInsts()))) ||
921 (ST->hasAnyPackedFP64Ops() && SLT == MVT::f64) ||
922 (ST->hasAnyPackedU64Ops() && SLT == MVT::i64)) {
923 NElts = (NElts + 1) / 2;
924 }
else if (SLT == MVT::f32) {
925 bool HasPk2FP32Op = ST->hasAnyPackedFP32Ops() &&
926 IID != Intrinsic::minimumnum &&
927 IID != Intrinsic::maximumnum;
928 NElts = HasPk2FP32Op ? (NElts + 1) / 2 : NElts;
932 unsigned InstRate = getQuarterRateInstrCost(
CostKind);
934 switch (ICA.
getID()) {
936 case Intrinsic::fmuladd:
937 if (SLT == MVT::f64) {
938 InstRate = get64BitInstrCost(
CostKind);
942 if ((SLT == MVT::f32 && ST->hasFastFMAF32()) || SLT == MVT::f16)
943 InstRate = getFullRateInstrCost();
945 InstRate = ST->hasFastFMAF32() ? getHalfRateInstrCost(
CostKind)
946 : getQuarterRateInstrCost(
CostKind);
949 case Intrinsic::copysign:
950 return NElts * getFullRateInstrCost();
951 case Intrinsic::minimumnum:
952 case Intrinsic::maximumnum: {
964 SLT == MVT::f64 ? get64BitInstrCost(
CostKind) : getFullRateInstrCost();
965 InstRate = BaseRate *
NumOps;
968 case Intrinsic::canonicalize: {
970 SLT == MVT::f64 ? get64BitInstrCost(
CostKind) : getFullRateInstrCost();
973 case Intrinsic::uadd_sat:
974 case Intrinsic::usub_sat:
975 case Intrinsic::sadd_sat:
976 case Intrinsic::ssub_sat: {
977 if (SLT == MVT::i16 || SLT == MVT::i32)
978 InstRate = getFullRateInstrCost();
980 static const auto ValidSatTys = {MVT::v2i16, MVT::v4i16};
987 if (SLT == MVT::i16 || SLT == MVT::i32)
988 InstRate = 2 * getFullRateInstrCost();
994 return LT.first * NElts * InstRate;
1000 assert((
I ==
nullptr ||
I->getOpcode() == Opcode) &&
1001 "Opcode should reflect passed instruction.");
1004 const int CBrCost = SCost ? 5 : 7;
1006 case Instruction::UncondBr:
1008 return SCost ? 1 : 4;
1009 case Instruction::CondBr:
1013 case Instruction::Switch: {
1017 return (
SI ? (
SI->getNumCases() + 1) : 4) * (CBrCost + 1);
1019 case Instruction::Ret:
1020 return SCost ? 1 : 10;
1032 if (FVT && FVT->getElementType()->isIntegerTy(1) && FVT->getNumElements() > 1)
1033 return FVT->getNumElements();
1034 return std::nullopt;
1043 if (Opcode == Instruction::BitCast) {
1045 Elts && Dst->isIntegerTy(*Elts))
1047 getFullRateInstrCost();
1049 Elts && Src->isIntegerTy(*Elts))
1051 getFullRateInstrCost();
1059 std::optional<FastMathFlags> FMF,
1066 if (Opcode == Instruction::Add || Opcode == Instruction::Xor) {
1069 getFullRateInstrCost();
1072 EVT OrigTy = TLI->getValueType(
DL, Ty);
1079 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty);
1080 return LT.first * getFullRateInstrCost();
1087 EVT OrigTy = TLI->getValueType(
DL, Ty);
1094 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty);
1095 return LT.first * getHalfRateInstrCost(
CostKind);
1102 case Instruction::ExtractElement:
1103 case Instruction::InsertElement: {
1110 if (EltSize == 16 && Index == 0 && ST->has16BitInsts())
1114 if (EltSize == 1 && Opcode == Instruction::InsertElement)
1120 if (Opcode == Instruction::ExtractElement && EltSize == 8) {
1122 unsigned NumElts = FVTy->getNumElements();
1149 if (Indices.
size() > 1)
1155 TLI->ParseConstraints(
DL, ST->getRegisterInfo(), *CI);
1157 const int TargetOutputIdx = Indices.
empty() ? -1 : Indices[0];
1160 for (
auto &TC : TargetConstraints) {
1165 if (TargetOutputIdx != -1 && TargetOutputIdx != OutputIdx++)
1168 TLI->ComputeConstraintToUse(TC,
SDValue());
1171 TRI, TC.ConstraintCode, TC.ConstraintVT).second;
1175 if (!RC || !
TRI->isSGPRClass(RC))
1205bool GCNTTIImpl::isSourceOfDivergence(
const Value *V)
const {
1229 case Intrinsic::read_register:
1231 case Intrinsic::amdgcn_workitem_id_y:
1232 case Intrinsic::amdgcn_workitem_id_z: {
1237 *
F, IID == Intrinsic::amdgcn_workitem_id_y ? 1 : 2);
1238 return !HasUniformYZ && (!ThisDimSize || *ThisDimSize != 1);
1247 if (CI->isInlineAsm())
1262 ST->hasGloballyAddressableScratch();
1268bool GCNTTIImpl::isAlwaysUniform(
const Value *V)
const {
1273 if (CI->isInlineAsm())
1291 bool XDimDoesntResetWithinWaves =
false;
1294 XDimDoesntResetWithinWaves = ST->hasWavefrontsEvenlySplittingXDim(*
F);
1296 using namespace llvm::PatternMatch;
1302 return C >= ST->getWavefrontSizeLog2() && XDimDoesntResetWithinWaves;
1309 ST->getWavefrontSizeLog2() &&
1310 XDimDoesntResetWithinWaves;
1325 case Intrinsic::amdgcn_if:
1326 case Intrinsic::amdgcn_else: {
1327 ArrayRef<unsigned> Indices = ExtValue->
getIndices();
1328 return Indices.
size() == 1 && Indices[0] == 1;
1345 case Intrinsic::amdgcn_is_shared:
1346 case Intrinsic::amdgcn_is_private:
1347 case Intrinsic::amdgcn_flat_atomic_fmax_num:
1348 case Intrinsic::amdgcn_flat_atomic_fmin_num:
1349 case Intrinsic::amdgcn_load_to_lds:
1350 case Intrinsic::amdgcn_make_buffer_rsrc:
1360 Value *NewV)
const {
1361 auto IntrID =
II->getIntrinsicID();
1363 case Intrinsic::amdgcn_is_shared:
1364 case Intrinsic::amdgcn_is_private: {
1365 unsigned TrueAS = IntrID == Intrinsic::amdgcn_is_shared ?
1373 case Intrinsic::amdgcn_flat_atomic_fmax_num:
1374 case Intrinsic::amdgcn_flat_atomic_fmin_num: {
1375 Type *DestTy =
II->getType();
1382 M,
II->getIntrinsicID(), {DestTy, SrcTy, DestTy});
1383 II->setArgOperand(0, NewV);
1384 II->setCalledFunction(NewDecl);
1387 case Intrinsic::amdgcn_load_to_lds: {
1392 II->setArgOperand(0, NewV);
1393 II->setCalledFunction(NewDecl);
1396 case Intrinsic::amdgcn_make_buffer_rsrc: {
1398 Type *DstTy =
II->getType();
1399 Type *NumRecordsTy =
II->getArgOperand(2)->getType();
1402 M,
II->getIntrinsicID(), {DstTy, SrcTy, NumRecordsTy});
1403 II->setArgOperand(0, NewV);
1404 II->setCalledFunction(NewDecl);
1423 unsigned ScalarSize =
DL.getTypeSizeInBits(SrcTy->getElementType());
1425 (ScalarSize == 16 || ScalarSize == 8)) {
1438 unsigned NumSrcElts = SrcVecTy->getNumElements();
1439 if (ST->hasVOP3PInsts() && ScalarSize == 16 && NumSrcElts == 2 &&
1445 unsigned EltsPerReg = 32 / ScalarSize;
1453 return divideCeil(DstVecTy->getNumElements(), EltsPerReg);
1456 if (Index % EltsPerReg == 0)
1459 return divideCeil(DstVecTy->getNumElements(), EltsPerReg);
1465 unsigned NumDstElts = DstVecTy->getNumElements();
1467 unsigned EndIndex = Index + NumInsertElts;
1468 unsigned BeginSubIdx = Index % EltsPerReg;
1469 unsigned EndSubIdx = EndIndex % EltsPerReg;
1472 if (BeginSubIdx != 0) {
1480 if (EndIndex < NumDstElts && BeginSubIdx < EndSubIdx)
1489 unsigned NumElts = DstVecTy->getNumElements();
1493 unsigned EltsFromLHS = NumElts - Index;
1494 bool LHSIsAligned = (Index % EltsPerReg) == 0;
1495 bool RHSIsAligned = (EltsFromLHS % EltsPerReg) == 0;
1496 if (LHSIsAligned && RHSIsAligned)
1498 if (LHSIsAligned && !RHSIsAligned)
1499 return divideCeil(NumElts, EltsPerReg) - (EltsFromLHS / EltsPerReg);
1500 if (!LHSIsAligned && RHSIsAligned)
1508 if (!Mask.empty()) {
1518 for (
unsigned DstIdx = 0; DstIdx < Mask.size(); DstIdx += EltsPerReg) {
1521 for (
unsigned I = 0;
I < EltsPerReg && DstIdx +
I < Mask.size(); ++
I) {
1522 int SrcIdx = Mask[DstIdx +
I];
1526 if (SrcIdx < (
int)NumSrcElts) {
1527 Reg = SrcIdx / EltsPerReg;
1528 if (SrcIdx % EltsPerReg !=
I)
1531 Reg = NumSrcElts + (SrcIdx - NumSrcElts) / EltsPerReg;
1532 if ((SrcIdx - NumSrcElts) % EltsPerReg !=
I)
1538 if (Regs.
size() >= 2)
1562 if (
I->getOpcode() == Instruction::FAdd ||
1563 I->getOpcode() == Instruction::FSub) {
1565 if (
FMul &&
FMul->getParent() !=
I->getParent())
1566 Ops.push_back(&
I->getOperandUse(
I->getOperand(0) ==
FMul ? 0 : 1));
1569 for (
auto &
Op :
I->operands()) {
1582 if (OpInst->getType()->isVectorTy() && OpInst->getNumOperands() > 1) {
1584 if (VecOpInst && VecOpInst->
hasOneUse())
1589 OpInst->getOperand(0),
1590 OpInst->getOperand(1)) == 0) {
1599 unsigned EltSize =
DL.getTypeSizeInBits(
1604 if (EltSize < 16 || !ST->has16BitInsts())
1607 int NumSubElts, SubIndex;
1608 if (Shuffle->changesLength()) {
1609 if (Shuffle->increasesLength() && Shuffle->isIdentityWithPadding()) {
1614 if ((Shuffle->isExtractSubvectorMask(SubIndex) ||
1615 Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex)) &&
1616 !(SubIndex & 0x1)) {
1622 if (Shuffle->isReverse() || Shuffle->isZeroEltSplat() ||
1623 Shuffle->isSingleSource()) {
1630 return !
Ops.empty();
1651 if (Callee->hasFnAttribute(Attribute::AlwaysInline) ||
1652 Callee->hasFnAttribute(Attribute::InlineHint))
1658 if (Callee->size() == 1)
1660 size_t BBSize = Caller->size() + Callee->size() - 1;
1663 << Callee->getName() <<
" into " << Caller->getName()
1664 <<
": caller BBs=" << Caller->size() <<
", callee BBs="
1665 << Callee->size() <<
", combined BBs=" << BBSize
1677 const int NrOfSGPRUntilSpill = 26;
1678 const int NrOfVGPRUntilSpill = 32;
1682 unsigned adjustThreshold = 0;
1688 for (
auto ArgVT : ValueVTs) {
1692 SGPRsInUse += CCRegNum;
1694 VGPRsInUse += CCRegNum;
1704 ArgStackCost +=
const_cast<GCNTTIImpl *
>(TTIImpl)->getMemoryOpCost(
1707 ArgStackCost +=
const_cast<GCNTTIImpl *
>(TTIImpl)->getMemoryOpCost(
1713 adjustThreshold += std::max(0, SGPRsInUse - NrOfSGPRUntilSpill) *
1715 adjustThreshold += std::max(0, VGPRsInUse - NrOfVGPRUntilSpill) *
1717 return adjustThreshold;
1726 unsigned AllocaSize = 0;
1733 unsigned AddrSpace = Ty->getAddressSpace();
1743 AllocaSize +=
Size->getFixedValue();
1787 static_assert(InlinerVectorBonusPercent == 0,
"vector bonus assumed to be 0");
1791 return BB.getTerminator()->getNumSuccessors() > 1;
1794 Threshold += Threshold / 2;
1802 unsigned AllocaThresholdBonus =
1803 (Threshold * ArgAllocaSize->getFixedValue()) / AllocaSize;
1805 return AllocaThresholdBonus;
1811 CommonTTI.getUnrollingPreferences(L, SE, UP, ORE);
1816 CommonTTI.getPeelingPreferences(L, SE, PP);
1820 return getQuarterRateInstrCost(
CostKind);
1824 return ST->hasFullRate64Ops()
1825 ? getFullRateInstrCost()
1826 : ST->hasHalfRate64Ops() ? getHalfRateInstrCost(
CostKind)
1827 : getQuarterRateInstrCost(
CostKind);
1830std::pair<InstructionCost, MVT>
1831GCNTTIImpl::getTypeLegalizationCost(
Type *Ty)
const {
1833 auto Size =
DL.getTypeSizeInBits(Ty);
1845 if (ST->hasVmemPrefInsts() || ST->hasSmemPrefetchInsts())
1846 return ST->getDataCacheLineSize();
1851 return ST->hasPrefetch() ? 128 : 0;
1862 LB.push_back({
"amdgpu-max-num-workgroups[0]", MaxNumWorkgroups[0]});
1863 LB.push_back({
"amdgpu-max-num-workgroups[1]", MaxNumWorkgroups[1]});
1864 LB.push_back({
"amdgpu-max-num-workgroups[2]", MaxNumWorkgroups[2]});
1865 std::pair<unsigned, unsigned> FlatWorkGroupSize =
1866 ST->getFlatWorkGroupSizes(
F);
1867 LB.push_back({
"amdgpu-flat-work-group-size[0]", FlatWorkGroupSize.first});
1868 LB.push_back({
"amdgpu-flat-work-group-size[1]", FlatWorkGroupSize.second});
1869 std::pair<unsigned, unsigned> WavesPerEU = ST->getWavesPerEU(
F);
1870 LB.push_back({
"amdgpu-waves-per-eu[0]", WavesPerEU.first});
1871 LB.push_back({
"amdgpu-waves-per-eu[1]", WavesPerEU.second});
1876 if (!ST->hasFeature(AMDGPU::FeatureDX10ClampAndIEEEMode))
1883 Attribute IEEEAttr =
F->getFnAttribute(
"amdgpu-ieee");
1898 if ((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
1900 VecTy->getElementType()->isIntegerTy(8)) {
1911 if (VecTy->getElementType()->isIntegerTy(8)) {
1922 case Intrinsic::amdgcn_wave_shuffle:
1929 if (isAlwaysUniform(V))
1932 if (isSourceOfDivergence(V))
1940 bool HasBaseReg, int64_t Scale,
1941 unsigned AddrSpace)
const {
1942 if (HasBaseReg && Scale != 0) {
1946 if (getST()->hasScaleOffset() && Ty && Ty->isSized() &&
1966 unsigned EffInsnsA =
A.Insns +
A.ScaleCost;
1967 unsigned EffInsnsB =
B.Insns +
B.ScaleCost;
1969 return std::tie(EffInsnsA,
A.NumIVMuls,
A.AddRecCost,
A.NumBaseAdds,
1970 A.SetupCost,
A.ImmCost,
A.NumRegs) <
1971 std::tie(EffInsnsB,
B.NumIVMuls,
B.AddRecCost,
B.NumBaseAdds,
1972 B.SetupCost,
B.ImmCost,
B.NumRegs);
1989 case Intrinsic::amdgcn_wave_shuffle:
1992 return UniformArgs[0] || UniformArgs[1];
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
Provides AMDGPU specific target descriptions.
Base class for AMDGPU specific classes of TargetSubtarget.
The AMDGPU TargetMachine interface definition for hw codegen targets.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
Register const TargetRegisterInfo * TRI
uint64_t IntrinsicInst * II
const SmallVectorImpl< MachineOperand > & Cond
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
This file implements the SmallBitVector class.
std::optional< unsigned > getReqdWorkGroupSize(const Function &F, unsigned Dim) const
bool hasWavefrontsEvenlySplittingXDim(const Function &F, bool REquiresUniformYZ=false) const
uint64_t getMaxMemIntrinsicInlineSizeThreshold() const override
AMDGPUTTIImpl(const AMDGPUTargetMachine *TM, const Function &F)
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const override
an instruction to allocate memory on the stack
LLVM_ABI bool isStaticAlloca() const
Return true if this alloca is in the entry block of the function and is a constant size.
LLVM_ABI std::optional< TypeSize > getAllocationSize(const DataLayout &DL) const
Get allocation size in bytes.
This class represents an incoming formal argument to a Function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
bool empty() const
Check if the array is empty.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
LLVM_ABI bool getValueAsBool() const
Return the attribute's value as a boolean.
bool isValid() const
Return true if the attribute is any kind of attribute.
LLVM Basic Block Representation.
InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Opd1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Opd2Info={TTI::OK_AnyValue, TTI::OP_None}, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *Ty, FastMathFlags FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, TTI::TargetCostKind CostKind, ArrayRef< int > Mask, int Index, VectorType *SubTp, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
unsigned getNumberOfParts(Type *Tp) const override
TTI::ShuffleKind improveShuffleKindFromMask(TTI::ShuffleKind Kind, ArrayRef< int > Mask, VectorType *SrcTy, int &Index, VectorType *&SubTy) const
bool areInlineCompatible(const Function *Caller, const Function *Callee) const override
InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace) const override
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
std::pair< InstructionCost, MVT > getTypeLegalizationCost(Type *Ty) const
InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, const Value *Op0, const Value *Op1, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const override
InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, TTI::OperandValueInfo OpInfo={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
bool isInlineAsm() const
Check if this call is an inline asm statement.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
CallingConv::ID getCallingConv() const
Value * getArgOperand(unsigned i) const
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
unsigned getArgOperandNo(const Use *U) const
Given a use for a arg operand, get the arg operand number that corresponds to it.
This class represents a function call, abstracting a target machine's calling convention.
Conditional Branch instruction.
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
static LLVM_ABI ConstantInt * getFalse(LLVMContext &Context)
int64_t getSExtValue() const
Return the constant as a 64-bit integer value after it has been sign extended as appropriate for the ...
A parsed version of the target data layout string in and methods for querying it.
TypeSize getTypeStoreSize(Type *Ty) const
Returns the maximum number of bytes that may be overwritten by storing the specified type.
constexpr bool isScalar() const
Exactly one element.
Convenience struct for specifying and reasoning about fast-math flags.
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
GCNTTIImpl(const AMDGPUTargetMachine *TM, const Function &F)
unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const override
InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace) const override
InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, TTI::OperandValueInfo OpInfo={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
Account for loads of i8 vector types to have reduced cost.
InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Op2Info={TTI::OK_AnyValue, TTI::OP_None}, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
void collectKernelLaunchBounds(const Function &F, SmallVectorImpl< std::pair< StringRef, int64_t > > &LB) const override
bool isUniform(const Instruction *I, const SmallBitVector &UniformArgs) const override
bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const override
bool isInlineAsmSourceOfDivergence(const CallInst *CI, ArrayRef< unsigned > Indices={}) const
Analyze if the results of inline asm are divergent.
bool isReadRegisterSourceOfDivergence(const IntrinsicInst *ReadReg) const
unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const override
unsigned getNumberOfRegisters(unsigned RCID) const override
bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const override
unsigned getCacheLineSize() const override
Data cache line size for LoopDataPrefetch pass. Has no use before GFX12.
unsigned getStoreVectorFactor(unsigned VF, unsigned StoreSize, unsigned ChainSizeInBytes, VectorType *VecTy) const override
bool isLegalToVectorizeMemChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const
bool isLSRCostLess(const TTI::LSRCost &A, const TTI::LSRCost &B) const override
bool shouldPrefetchAddressSpace(unsigned AS) const override
InstructionCost getVectorInstrCost(unsigned Opcode, Type *ValTy, TTI::TargetCostKind CostKind, unsigned Index, const Value *Op0, const Value *Op1, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
bool hasBranchDivergence(const Function *F=nullptr) const override
Value * rewriteIntrinsicWithAddressSpace(IntrinsicInst *II, Value *OldV, Value *NewV) const override
unsigned getCallerAllocaCost(const CallBase *CB, const AllocaInst *AI) const override
void getMemcpyLoopResidualLoweringType(SmallVectorImpl< Type * > &OpsOut, LLVMContext &Context, unsigned RemainingBytes, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicCpySize) const override
InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const override
Get intrinsic cost based on arguments.
unsigned getInliningThresholdMultiplier() const override
unsigned getLoadVectorFactor(unsigned VF, unsigned LoadSize, unsigned ChainSizeInBytes, VectorType *VecTy) const override
unsigned getPrefetchDistance() const override
How much before a load we should place the prefetch instruction.
InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
KnownIEEEMode fpenvIEEEMode(const Instruction &I) const
Return KnownIEEEMode::On if we know if the use context can assume "amdgpu-ieee"="true" and KnownIEEEM...
unsigned adjustInliningThreshold(const CallBase *CB) const override
bool isProfitableToSinkOperands(Instruction *I, SmallVectorImpl< Use * > &Ops) const override
Whether it is profitable to sink the operands of an Instruction I to the basic block of I.
bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) const override
bool areInlineCompatible(const Function *Caller, const Function *Callee) const override
InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *Ty, FastMathFlags FMF, TTI::TargetCostKind CostKind) const override
Try to calculate op costs for min/max reduction operations.
InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
bool shouldDropLSRSolutionIfLessProfitable() const override
unsigned getMaxInterleaveFactor(ElementCount VF, bool HasUnorderedReductions) const override
int getInliningLastCallToStaticBonus() const override
bool collectFlatAddressOperands(SmallVectorImpl< int > &OpIndexes, Intrinsic::ID IID) const override
ValueUniformity getValueUniformity(const Value *V) const override
unsigned getNumberOfParts(Type *Tp) const override
When counting parts on AMD GPUs, account for i8s being grouped together under a single i32 value.
bool preferSLPInstCountCheck() const override
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
unsigned getMinVectorRegisterBitWidth() const override
InstructionCost getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, TTI::TargetCostKind CostKind, ArrayRef< int > Mask, int Index, VectorType *SubTp, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
TypeSize getRegisterBitWidth(TargetTransformInfo::RegisterKind Vector) const override
bool isNumRegsMajorCostOfLSR() const override
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const override
Type * getMemcpyLoopLoweringType(LLVMContext &Context, Value *Length, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicElementSize) const override
uint64_t getMaxMemIntrinsicInlineSizeThreshold() const override
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
static InstructionCost getInvalid(CostType Val=0)
CostType getValue() const
This function is intended to be used as sparingly as possible, since the class provides the full rang...
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI bool hasApproxFunc() const LLVM_READONLY
Determine whether the approximate-math-functions flag is set.
user_iterator user_begin()
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
LLVM_ABI bool hasAllowContract() const LLVM_READONLY
Determine whether the allow-contract flag is set.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this instruction belongs to.
FastMathFlags getFlags() const
Type * getReturnType() const
const IntrinsicInst * getInst() const
Intrinsic::ID getID() const
A wrapper class for inspecting calls to intrinsic functions.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Represents a single loop in the control flow graph.
static LLVM_ABI MVT getVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
A Module instance is used to store all the information related to an LLVM module.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
bool isFMAFasterThanFMulAndFAdd(const MachineFunction &MF, EVT VT) const override
Return true if an FMA operation is faster than a pair of fmul and fadd instructions.
bool isFMADLegal(const SelectionDAG &DAG, const SDNode *N) const override
Returns true if be combined with to form an ISD::FMAD.
unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const override
Certain targets require unusual breakdowns of certain types.
The main scalar evolution driver.
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is ...
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StackOffset holds a fixed and a scalable offset in bytes.
Represent a constant reference to a string, i.e.
std::vector< AsmOperandInfo > AsmOperandInfoVector
Primary interface to the complete machine description for the target machine.
virtual const TargetSubtargetInfo * getSubtargetImpl(const Function &) const
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
static constexpr TypeSize getFixed(ScalarTy ExactSize)
static constexpr TypeSize getScalable(ScalarTy MinimumSize)
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getInt16Ty(LLVMContext &C)
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
bool hasOneUse() const
Return true if there is exactly one use of this value.
LLVMContext & getContext() const
All values hold a context through their type.
Base class of all SIMD vector types.
constexpr ScalarTy getFixedValue() const
static constexpr bool isKnownLE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ CONSTANT_ADDRESS_32BIT
Address space for 32-bit constant memory.
@ BUFFER_STRIDED_POINTER
Address space for 192-bit fat buffer pointers with an additional index.
@ REGION_ADDRESS
Address space for region memory. (GDS)
@ LOCAL_ADDRESS
Address space for local memory.
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ FLAT_ADDRESS
Address space for flat memory.
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ BUFFER_FAT_POINTER
Address space for 160-bit buffer fat pointers.
@ PRIVATE_ADDRESS
Address space for private memory.
@ BUFFER_RESOURCE
Address space for 128-bit buffer resources.
LLVM_READNONE constexpr bool isShader(CallingConv::ID CC)
bool isFlatGlobalAddrSpace(unsigned AS)
bool isArgPassedInSGPR(const Argument *A)
bool isIntrinsicAlwaysUniform(unsigned IntrID)
bool isIntrinsicSourceOfDivergence(unsigned IntrID)
SmallVector< unsigned > getMaxNumWorkGroups(const Function &F)
bool isExtendedGlobalAddrSpace(unsigned AS)
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.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
@ ADD
Simple integer binary arithmetic operators.
@ FADD
Simple binary floating point operators.
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ SHL
Shift and rotation operations.
@ AND
Bitwise operators - logical and, logical or, logical xor.
LLVM_ABI int getInstrCost()
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
BinaryOp_match< LHS, RHS, Instruction::AShr > m_AShr(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
bool match(Val *V, const Pattern &P)
auto m_Value()
Match an arbitrary value and ignore it.
specific_fpval m_FPOne()
Match a float 1.0 or vector with all elements equal to 1.0.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
auto m_FAbs(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::LShr > m_LShr(const LHS &L, const RHS &R)
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
auto m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
initializer< Ty > init(const Ty &Val)
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract_or_null(Y &&MD)
Extract a Value from Metadata, allowing null.
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs=nullptr, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
@ Load
The value being inserted comes from a load (InsertElement only).
LLVM_ABI MDNode * findOptionMDForLoop(const Loop *TheLoop, StringRef Name)
Find string metadata for a loop.
constexpr auto equal_to(T &&Arg)
Functor variant of std::equal_to that can be used as a UnaryPredicate in functional algorithms like a...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=MaxLookupSearchDepth, bool MustPreserveProvenance=false)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
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...
AtomicOrdering
Atomic ordering for LLVM's memory model.
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
ValueUniformity
Enum describing how values behave with respect to uniformity and divergence, to answer the question: ...
@ AlwaysUniform
The result value is always uniform.
@ NeverUniform
The result value can never be assumed to be uniform.
@ Default
The result value is uniform if and only if all operands are uniform.
@ Custom
The result value requires a custom uniformity check.
MCRegisterClass TargetRegisterClass
This struct is a compact representation of a valid (non-zero power of two) alignment.
static constexpr DenormalMode getPreserveSign()
uint64_t getScalarSizeInBits() const
Information about a load/store intrinsic defined by the target.
bool isInlineCompatible(SIModeRegisterDefaults CalleeMode) const