26#include "llvm/IR/IntrinsicsAMDGPU.h"
34#define GET_CALLING_CONV_IMPL
35#include "AMDGPUGenCallingConv.inc"
38 "amdgpu-bypass-slow-div",
39 cl::desc(
"Skip 64-bit divide for dynamic 32-bit values"),
48 if (StoreSize % 32 == 0)
211 {MVT::v2i8, MVT::v4i8, MVT::v2i16, MVT::v3i16, MVT::v4i16})
418 {MVT::f16, MVT::f32},
Legal);
424 {MVT::f16, MVT::f32, MVT::f64},
Expand);
451 {MVT::v2f32, MVT::v3f32, MVT::v4f32, MVT::v5f32,
452 MVT::v6f32, MVT::v7f32, MVT::v8f32, MVT::v16f32,
453 MVT::v2f64, MVT::v3f64, MVT::v4f64, MVT::v8f64,
461 {MVT::v3i32, MVT::v3f32, MVT::v4i32, MVT::v4f32,
462 MVT::v5i32, MVT::v5f32, MVT::v6i32, MVT::v6f32,
463 MVT::v7i32, MVT::v7f32, MVT::v8i32, MVT::v8f32,
464 MVT::v9i32, MVT::v9f32, MVT::v10i32, MVT::v10f32,
465 MVT::v11i32, MVT::v11f32, MVT::v12i32, MVT::v12f32},
470 {MVT::v2f32, MVT::v2i32, MVT::v3f32, MVT::v3i32, MVT::v4f32,
471 MVT::v4i32, MVT::v5f32, MVT::v5i32, MVT::v6f32, MVT::v6i32,
472 MVT::v7f32, MVT::v7i32, MVT::v8f32, MVT::v8i32, MVT::v9f32,
473 MVT::v9i32, MVT::v10i32, MVT::v10f32, MVT::v11i32, MVT::v11f32,
474 MVT::v12i32, MVT::v12f32, MVT::v16i32, MVT::v32f32, MVT::v32i32,
475 MVT::v2f64, MVT::v2i64, MVT::v3f64, MVT::v3i64, MVT::v4f64,
476 MVT::v4i64, MVT::v8f64, MVT::v8i64, MVT::v16f64, MVT::v16i64},
483 const MVT ScalarIntVTs[] = { MVT::i32, MVT::i64 };
484 for (
MVT VT : ScalarIntVTs) {
522 for (
auto VT : {MVT::i8, MVT::i16})
526 MVT::v2i32, MVT::v3i32, MVT::v4i32, MVT::v5i32, MVT::v6i32, MVT::v7i32,
527 MVT::v9i32, MVT::v10i32, MVT::v11i32, MVT::v12i32};
529 for (
MVT VT : VectorIntTypes) {
556 MVT::v2f32, MVT::v3f32, MVT::v4f32, MVT::v5f32, MVT::v6f32, MVT::v7f32,
557 MVT::v9f32, MVT::v10f32, MVT::v11f32, MVT::v12f32};
559 for (
MVT VT : FloatVectorTypes) {
680 case AMDGPUISD::RCP_LEGACY:
681 case AMDGPUISD::RCP_IFLAG:
682 case AMDGPUISD::SIN_HW:
683 case AMDGPUISD::FMUL_LEGACY:
684 case AMDGPUISD::FMIN_LEGACY:
685 case AMDGPUISD::FMAX_LEGACY:
686 case AMDGPUISD::FMED3:
697 unsigned Opc =
N->getOpcode();
718 return (
N->getNumOperands() > 2 &&
N->getOpcode() !=
ISD::SELECT) ||
727 return N->getValueType(0) == MVT::f32;
737 switch (
N->getOpcode()) {
743 case AMDGPUISD::DIV_SCALE:
752 switch (
N->getConstantOperandVal(0)) {
753 case Intrinsic::amdgcn_interp_p1:
754 case Intrinsic::amdgcn_interp_p2:
755 case Intrinsic::amdgcn_interp_mov:
756 case Intrinsic::amdgcn_interp_p1_f16:
757 case Intrinsic::amdgcn_interp_p2_f16:
777 unsigned NumMayIncreaseSize = 0;
778 MVT VT =
N->getValueType(0).getScalarType().getSimpleVT();
783 for (
const SDNode *U :
N->users()) {
818 bool ForCodeSize)
const {
825 return (ScalarVT != MVT::f32 && ScalarVT != MVT::f64);
830 std::optional<unsigned> ByteOffset)
const {
842 EVT OldVT =
N->getValueType(0);
850 if (OldSize >= 32 && NewSize < 32 && MN->
getAlign() >=
Align(4) &&
865 return (OldSize < 32);
880 if ((LScalarSize >= CastScalarSize) && (CastScalarSize < 32))
885 CastTy, MMO, &
Fast) &&
901 switch (
N->getOpcode()) {
906 unsigned IntrID =
N->getConstantOperandVal(0);
910 unsigned IntrID =
N->getConstantOperandVal(1);
918 case AMDGPUISD::SETCC:
928 switch (
Op.getOpcode()) {
936 case AMDGPUISD::RCP: {
938 EVT VT =
Op.getValueType();
944 return DAG.
getNode(AMDGPUISD::RCP, SL, VT, NegSrc,
Op->getFlags());
964 return VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f16 || VT == MVT::bf16;
971 return VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f16 || VT == MVT::bf16;
995 unsigned SrcSize = Source.getSizeInBits();
998 return DestSize < SrcSize && DestSize % 32 == 0 ;
1004 unsigned SrcSize = Source->getScalarSizeInBits();
1007 if (DestSize== 16 && Subtarget->has16BitInsts())
1008 return SrcSize >= 32;
1010 return DestSize < SrcSize && DestSize % 32 == 0;
1014 unsigned SrcSize = Src->getScalarSizeInBits();
1017 if (SrcSize == 16 && Subtarget->has16BitInsts())
1018 return DestSize >= 32;
1020 return SrcSize == 32 && DestSize == 64;
1029 if (Src == MVT::i16)
1030 return Dest == MVT::i32 ||Dest == MVT::i64 ;
1032 return Src == MVT::i32 && Dest == MVT::i64;
1037 switch (
N->getOpcode()) {
1060 if (!
N->isDivergent() && DestVT.
isInteger() &&
1088 "Expected shift op");
1090 SDValue ShiftLHS =
N->getOperand(0);
1105 if (
N->getValueType(0) == MVT::i32 &&
N->hasOneUse() &&
1106 (
N->user_begin()->getOpcode() ==
ISD::SRA ||
1107 N->user_begin()->getOpcode() ==
ISD::SRL))
1117 return LHS0 && LHS1 && RHSLd && LHS0->getExtensionType() ==
ISD::ZEXTLOAD &&
1118 LHS1->getAPIntValue() == LHS0->getMemoryVT().getScalarSizeInBits() &&
1121 SDValue LHS =
N->getOperand(0).getOperand(0);
1122 SDValue RHS =
N->getOperand(0).getOperand(1);
1123 return !(IsShiftAndLoad(LHS, RHS) || IsShiftAndLoad(RHS, LHS));
1143 return CC_AMDGPU_CS_CHAIN;
1147 return CC_AMDGPU_Func;
1173 return RetCC_SI_Shader;
1176 return RetCC_SI_Gfx;
1180 return RetCC_AMDGPU_Func;
1218 const unsigned ExplicitOffset = Subtarget->getExplicitKernelArgOffset();
1222 uint64_t ExplicitArgOffset = 0;
1225 unsigned InIndex = 0;
1228 const bool IsByRef = Arg.hasByRefAttr();
1229 Type *BaseArgTy = Arg.getType();
1230 Type *MemArgTy = IsByRef ? Arg.getParamByRefType() : BaseArgTy;
1231 Align Alignment =
DL.getValueOrABITypeAlignment(
1232 IsByRef ? Arg.getParamAlign() : std::nullopt, MemArgTy);
1233 MaxAlign = std::max(Alignment, MaxAlign);
1234 uint64_t AllocSize =
DL.getTypeAllocSize(MemArgTy);
1236 uint64_t ArgOffset =
alignTo(ExplicitArgOffset, Alignment) + ExplicitOffset;
1237 ExplicitArgOffset =
alignTo(ExplicitArgOffset, Alignment) + AllocSize;
1249 &Offsets, ArgOffset);
1251 for (
unsigned Value = 0, NumValues = ValueVTs.
size();
1253 uint64_t BasePartOffset = Offsets[
Value];
1289 }
else if (RegisterVT.
isVector()) {
1292 assert(MemoryBits % NumElements == 0);
1296 MemoryBits / NumElements);
1314 unsigned PartOffset = 0;
1315 for (
unsigned i = 0; i != NumRegs; ++i) {
1317 BasePartOffset + PartOffset,
1335 return DAG.
getNode(AMDGPUISD::ENDPGM,
DL, MVT::Other, Chain);
1356 int ClobberedFI)
const {
1359 int64_t LastByte = FirstByte + MFI.
getObjectSize(ClobberedFI) - 1;
1370 if (FI->getIndex() < 0) {
1372 int64_t InLastByte = InFirstByte;
1375 if ((InFirstByte <= FirstByte && FirstByte <= InLastByte) ||
1376 (FirstByte <= InFirstByte && InFirstByte <= LastByte))
1398 FuncName =
G->getSymbol();
1400 FuncName =
G->getGlobal()->getName();
1435 switch (
Op.getOpcode()) {
1439 "instruction is not implemented yet!");
1491 switch (
N->getOpcode()) {
1532 EVT VT =
Op.getValueType();
1551 Fn,
"unsupported use of BARRIER address space",
1561 if (std::optional<uint32_t>
Address =
1571 GV->
getName() !=
"llvm.amdgcn.module.lds") {
1575 Fn,
"local memory global used by non-kernel function",
1607 EVT VT =
Op.getValueType();
1609 unsigned OpBitSize =
Op.getOperand(0).getValueType().getSizeInBits();
1610 if (OpBitSize >= 32 && OpBitSize % 32 == 0) {
1611 unsigned NewNumElt = OpBitSize / 32;
1612 EVT NewEltVT = (NewNumElt == 1) ? MVT::i32
1614 MVT::i32, NewNumElt);
1615 for (
const SDUse &U :
Op->ops()) {
1621 Args.push_back(NewIn);
1625 NewNumElt *
Op.getNumOperands());
1631 for (
const SDUse &U :
Op->ops())
1641 unsigned Start =
Op.getConstantOperandVal(1);
1642 EVT VT =
Op.getValueType();
1643 EVT SrcVT =
Op.getOperand(0).getValueType();
1648 assert(NumElt % 2 == 0 && NumSrcElt % 2 == 0 &&
"expect legal types");
1652 EVT NewVT = NumElt == 2
1724 Opc = AMDGPUISD::FMIN_LEGACY;
1730 Opc = AMDGPUISD::FMIN_LEGACY;
1736 Opc = AMDGPUISD::FMAX_LEGACY;
1742 Opc = AMDGPUISD::FMAX_LEGACY;
1765 if ((LHS == True && RHS == False) || (LHS == False && RHS == True))
1785 if (LHS == NegTrue && CFalse && CRHS) {
1789 False, CC, Flags, DCI);
1799std::pair<SDValue, SDValue>
1811 return std::pair(
Lo,
Hi);
1840 HiVT = NumElts - LoNumElts == 1
1843 return std::pair(LoVT, HiVT);
1848std::pair<SDValue, SDValue>
1850 const EVT &LoVT,
const EVT &HiVT,
1852 EVT VT =
N.getValueType();
1856 "More vector elements requested than available!");
1887 EVT VT =
Op.getValueType();
1900 EVT MemVT =
Load->getMemoryVT();
1905 EVT LoMemVT, HiMemVT;
1917 Load->getExtensionType(), SL, LoVT,
Load->getChain(), BasePtr, SrcValue,
1918 LoMemVT, BaseAlign,
Load->getMemOperand()->getFlags(),
Load->getAAInfo());
1921 Load->getExtensionType(), SL, HiVT,
Load->getChain(), HiPtr,
1923 Load->getMemOperand()->getFlags(),
Load->getAAInfo());
1947 EVT VT =
Op.getValueType();
1949 EVT MemVT =
Load->getMemoryVT();
1957 if (NumElements != 3 ||
1958 (BaseAlign <
Align(8) &&
1962 assert(NumElements == 3);
1969 Load->getExtensionType(), SL, WideVT,
Load->getChain(), BasePtr, SrcValue,
1970 WideMemVT, BaseAlign,
Load->getMemOperand()->getFlags());
1995 EVT LoMemVT, HiMemVT;
2010 DAG.
getTruncStore(Chain, SL,
Lo, BasePtr, SrcValue, LoMemVT, BaseAlign,
2011 Store->getMemOperand()->getFlags(),
Store->getAAInfo());
2014 Store->getMemOperand()->getFlags(),
Store->getAAInfo());
2024 EVT VT =
Op.getValueType();
2025 assert(VT == MVT::i32 &&
"LowerDIVREMToFloat expects an i32");
2029 MVT IntVT = MVT::i32;
2030 MVT FltVT = MVT::f32;
2032 unsigned LHSSignBits;
2033 unsigned RHSSignBits;
2037 if (LHSSignBits < 9 || RHSSignBits < 9)
2048 unsigned SignBits = std::min(LHSSignBits, RHSSignBits);
2049 unsigned DivBits = BitSize - SignBits;
2058 if (DivBits > (Sign ? 23 : 22))
2091 fa, DAG.
getNode(AMDGPUISD::RCP,
DL, FltVT, fb));
2110 EVT VT =
Op.getValueType();
2112 assert(VT == MVT::i64 &&
"LowerUDIVREM64 expects an i64");
2122 std::tie(LHS_Lo, LHS_Hi) = DAG.
SplitScalar(LHS,
DL, HalfVT, HalfVT);
2126 std::tie(RHS_Lo, RHS_Hi) = DAG.
SplitScalar(RHS,
DL, HalfVT, HalfVT);
2185 std::tie(Mulhi1_Lo, Mulhi1_Hi) =
2198 std::tie(Mulhi2_Lo, Mulhi2_Hi) =
2212 std::tie(Mul3_Lo, Mul3_Hi) = DAG.
SplitScalar(Mul3,
DL, HalfVT, HalfVT);
2291 for (
unsigned i = 0; i < halfBitWidth; ++i) {
2292 const unsigned bitPos = halfBitWidth - i - 1;
2323 EVT VT =
Op.getValueType();
2325 if (VT == MVT::i64) {
2331 if (VT == MVT::i32) {
2378 EVT VT =
Op.getValueType();
2386 if (VT == MVT::i32) {
2465 const unsigned FractBits = 52;
2466 const unsigned ExpBits = 11;
2482 assert(
Op.getValueType() == MVT::f64);
2492 const unsigned FractBits = 52;
2504 = DAG.
getConstant((UINT64_C(1) << FractBits) - 1, SL, MVT::i64);
2529 assert(
Op.getValueType() == MVT::f64);
2562 auto VT =
Op.getValueType();
2563 auto Arg =
Op.getOperand(0u);
2575 EVT VT =
Op.getValueType();
2626 switch (Src.getOpcode()) {
2628 return Src.getOperand(0).getValueType() == MVT::f16;
2632 case AMDGPUISD::LOG:
2633 case AMDGPUISD::EXP:
2636 unsigned IntrinsicID = Src.getConstantOperandVal(0);
2637 switch (IntrinsicID) {
2638 case Intrinsic::amdgcn_frexp_mant:
2639 case Intrinsic::amdgcn_log:
2640 case Intrinsic::amdgcn_log_clamp:
2641 case Intrinsic::amdgcn_exp2:
2642 case Intrinsic::amdgcn_sqrt:
2657 return Flags.hasApproximateFuncs();
2673 EVT VT = Src.getValueType();
2684 return IsLtSmallestNormal;
2690 EVT VT = Src.getValueType();
2703std::pair<SDValue, SDValue>
2724 return {ScaledInput, IsLtSmallestNormal};
2735 EVT VT =
Op.getValueType();
2739 if (VT == MVT::f16) {
2743 SDValue Log = DAG.
getNode(AMDGPUISD::LOG, SL, MVT::f32, Ext, Flags);
2748 auto [ScaledInput, IsLtSmallestNormal] =
2751 return DAG.
getNode(AMDGPUISD::LOG, SL, VT, Src, Flags);
2771 EVT VT =
Op.getValueType();
2777 if (VT == MVT::f16 || Flags.hasApproximateFuncs()) {
2781 bool PromoteToF32 = VT == MVT::f16 && (!Flags.hasApproximateFuncs() ||
2798 SDValue ScaledInput, IsScaled;
2810 if (Subtarget->hasFastFMAF32()) {
2812 const float c_log10 = 0x1.344134p-2f;
2813 const float cc_log10 = 0x1.09f79ep-26f;
2816 const float c_log = 0x1.62e42ep-1f;
2817 const float cc_log = 0x1.efa39ep-25f;
2823 Flags.setAllowContract(
false);
2831 const float ch_log10 = 0x1.344000p-2f;
2832 const float ct_log10 = 0x1.3509f6p-18f;
2835 const float ch_log = 0x1.62e000p-1f;
2836 const float ct_log = 0x1.0bfbe8p-15f;
2848 Flags.setAllowContract(
false);
2855 const bool IsFiniteOnly = Flags.hasNoNaNs() && Flags.hasNoInfs();
2858 if (!IsFiniteOnly) {
2884 EVT VT = Src.getValueType();
2888 double Log2BaseInverted =
2891 if (VT == MVT::f32) {
2894 SDValue LogSrc = DAG.
getNode(AMDGPUISD::LOG, SL, VT, ScaledInput, Flags);
2901 ScaledResultOffset, Zero, Flags);
2905 if (Subtarget->hasFastFMAF32())
2916 return DAG.
getNode(
ISD::FMUL, SL, VT, Log2Operand, Log2BaseInvertedOperand,
3013 if (!Flags.hasNoInfs()) {
3016 Z = DAG.
getSelect(
DL, MVT::f64, CondHi, Z, PInf, Flags);
3022 Z = DAG.
getSelect(
DL, MVT::f64, CondLo, Z, Zero, Flags);
3031 EVT VT =
Op.getValueType();
3039 if (VT == MVT::f16) {
3043 SDValue Log = DAG.
getNode(AMDGPUISD::EXP, SL, MVT::f32, Ext, Flags);
3051 return DAG.
getNode(AMDGPUISD::EXP, SL, MVT::f32, Src, Flags);
3071 SDValue Exp2 = DAG.
getNode(AMDGPUISD::EXP, SL, VT, AddInput, Flags);
3084 bool IsExp10)
const {
3087 EVT VT =
X.getValueType();
3092 return DAG.
getNode(VT == MVT::f32 ? (
unsigned)AMDGPUISD::EXP
3094 SL, VT,
Mul, Flags);
3100 EVT VT =
X.getValueType();
3119 SDValue Exp2 = DAG.
getNode(AMDGPUISD::EXP, SL, VT, ExpInput, Flags);
3134 const EVT VT =
X.getValueType();
3136 const unsigned Exp2Op = VT == MVT::f32 ?
static_cast<unsigned>(AMDGPUISD::EXP)
3186 EVT VT =
Op.getValueType();
3250 if (Subtarget->hasFastFMAF32()) {
3252 const float cc_exp = 0x1.4ae0bep-26f;
3253 const float c_exp10 = 0x1.a934f0p+1f;
3254 const float cc_exp10 = 0x1.2f346ep-24f;
3264 const float ch_exp = 0x1.714000p+0f;
3265 const float cl_exp = 0x1.47652ap-12f;
3267 const float ch_exp10 = 0x1.a92000p+1f;
3268 const float cl_exp10 = 0x1.4f0978p-11f;
3283 PL =
getMad(DAG, SL, VT, XH, CL, Mad0, Flags);
3298 DAG.
getConstantFP(IsExp10 ? -0x1.66d3e8p+5f : -0x1.9d1da0p+6f, SL, VT);
3307 if (!Flags.hasNoInfs()) {
3309 DAG.
getConstantFP(IsExp10 ? 0x1.344136p+5f : 0x1.62e430p+6f, SL, VT);
3324 EVT VT =
Op.getValueType();
3341 DAG.
getNode(AMDGPUISD::FMUL_LEGACY, SL, VT,
Y, Log, CoreFlags);
3342 return DAG.
getNode(AMDGPUISD::EXP, SL, VT,
Mul, CoreFlags);
3370 if (Flags.hasNoNaNs())
3385 DAG.
getNOT(SL, YIsInt, SetCCVT));
3402 auto Opc =
Op.getOpcode();
3403 auto Arg =
Op.getOperand(0u);
3404 auto ResultVT =
Op.getValueType();
3406 if (ResultVT != MVT::i8 && ResultVT != MVT::i16)
3410 assert(ResultVT == Arg.getValueType());
3412 const uint64_t NumBits = ResultVT.getFixedSizeInBits();
3419 NewOp = DAG.
getNode(
Opc, SL, MVT::i32, NewOp);
3422 NewOp = DAG.
getNode(
Opc, SL, MVT::i32, NewOp);
3435 unsigned NewOpc = Ctlz ? AMDGPUISD::FFBH_U32 : AMDGPUISD::FFBL_B32;
3439 bool Is64BitScalar = !Src->isDivergent() && Src.getValueType() == MVT::i64;
3441 if (Src.getValueType() == MVT::i32 || Is64BitScalar) {
3455 Op.getValueType().getScalarSizeInBits(), SL, MVT::i32);
3475 OprLo = DAG.
getNode(AddOpc, SL, MVT::i32, OprLo, Const32);
3477 OprHi = DAG.
getNode(AddOpc, SL, MVT::i32, OprHi, Const32);
3492 assert(Src.getValueType() == MVT::i32 &&
"LowerCTLS only supports i32");
3504 assert(FP16Ty == MVT::f16 || FP16Ty == MVT::bf16);
3547 if (
Signed && Subtarget->isGCN()) {
3662 EVT DestVT =
Op.getValueType();
3664 EVT SrcVT = Src.getValueType();
3668 if (SrcVT == MVT::i16) {
3669 if (DestVT == MVT::f16)
3674 return DAG.
getNode(CvtOpc,
DL, DestVT, Ext);
3677 if (DestVT == MVT::bf16 || DestVT == MVT::f16)
3680 if (SrcVT != MVT::i64)
3683 if (DestVT == MVT::f32)
3686 assert(DestVT == MVT::f64);
3705 EVT SrcVT = Src.getValueType();
3707 assert(SrcVT == MVT::f32 || SrcVT == MVT::f64);
3720 if (
Signed && SrcVT == MVT::f32) {
3733 if (SrcVT == MVT::f64) {
3755 SL, MVT::i32, FloorMul);
3761 if (
Signed && SrcVT == MVT::f32) {
3781 return DAG.
getNode(AMDGPUISD::FP_TO_FP16,
DL,
Op.getValueType(), N0);
3783 if (
Op->getFlags().hasApproximateFuncs()) {
3794 assert(Src.getSimpleValueType() == MVT::f64);
3798 const unsigned ExpMask = 0x7ff;
3799 const unsigned ExpBiasf64 = 1023;
3800 const unsigned ExpBiasf16 = 15;
3883 unsigned OpOpcode =
Op.getOpcode();
3884 EVT SrcVT = Src.getValueType();
3885 EVT DestVT =
Op.getValueType();
3888 if (SrcVT == MVT::f16 && DestVT == MVT::i16)
3891 if (SrcVT == MVT::bf16 || (SrcVT == MVT::f16 && DestVT == MVT::i32)) {
3894 return DAG.
getNode(
Op.getOpcode(),
DL, DestVT, PromotedSrc);
3898 if (DestVT == MVT::i16 && (SrcVT == MVT::f32 || SrcVT == MVT::f64)) {
3905 if (DestVT != MVT::i64)
3908 if (SrcVT == MVT::f16 ||
3915 return DAG.
getNode(Ext,
DL, MVT::i64, FpToInt32);
3918 if (SrcVT == MVT::f32 || SrcVT == MVT::f64)
3927 unsigned OpOpcode =
Op.getOpcode();
3928 EVT SrcVT = Src.getValueType();
3929 EVT DstVT =
Op.getValueType();
3930 SDValue SatVTOp =
Op.getNode()->getOperand(1);
3936 assert(SatWidth <= DstWidth &&
"Saturation width cannot exceed result width");
3940 if (SatWidth == DstWidth) {
3941 if ((DstVT == MVT::i32 && (SrcVT == MVT::f32 || SrcVT == MVT::f64)) ||
3942 (DstVT == MVT::i16 && (SrcVT == MVT::f16 || SrcVT == MVT::f32)) ||
3943 (DstVT == MVT::v2i16 && SrcVT == MVT::v2f32))
3952 if (SatWidth < DstWidth && SatWidth <= 32) {
3957 Subtarget->has16BitInsts() && SrcVT == MVT::f16 && SatWidth < 16
3991 if (DstVT == MVT::i64 &&
3992 (SrcVT == MVT::f16 || SrcVT == MVT::bf16 ||
3995 return DAG.
getNode(OpOpcode,
DL, DstVT, Src, Int32VTOp);
3999 if (DstVT == MVT::i32 && (SrcVT == MVT::f16 || SrcVT == MVT::bf16)) {
4001 return DAG.
getNode(
Op.getOpcode(),
DL, DstVT, PromotedSrc, SatVTOp);
4007 if (DstWidth < 32) {
4011 (DstWidth < 16 && Subtarget->has16BitInsts()) ? MVT::i16 : MVT::i32;
4024 MVT VT =
Op.getSimpleValueType();
4038 for (
unsigned I = 0;
I < NElts; ++
I)
4053 EVT VT =
Op.getValueType();
4067 unsigned NewOpcode = Node24->
getOpcode();
4071 case Intrinsic::amdgcn_mul_i24:
4072 NewOpcode = AMDGPUISD::MUL_I24;
4074 case Intrinsic::amdgcn_mul_u24:
4075 NewOpcode = AMDGPUISD::MUL_U24;
4077 case Intrinsic::amdgcn_mulhi_i24:
4078 NewOpcode = AMDGPUISD::MULHI_I24;
4080 case Intrinsic::amdgcn_mulhi_u24:
4081 NewOpcode = AMDGPUISD::MULHI_U24;
4095 if (DemandedLHS || DemandedRHS)
4097 DemandedLHS ? DemandedLHS :
LHS,
4098 DemandedRHS ? DemandedRHS :
RHS);
4110template <
typename IntTy>
4113 if (Width +
Offset < 32) {
4115 IntTy Result =
static_cast<IntTy
>(Shl) >> (32 - Width);
4116 if constexpr (std::is_signed_v<IntTy>) {
4129 if (M->isVolatile())
4281 EVT SrcVT = Src.getValueType();
4282 if (SrcVT.
bitsGE(ExtVT)) {
4293 unsigned IID =
N->getConstantOperandVal(0);
4295 case Intrinsic::amdgcn_mul_i24:
4296 case Intrinsic::amdgcn_mul_u24:
4297 case Intrinsic::amdgcn_mulhi_i24:
4298 case Intrinsic::amdgcn_mulhi_u24:
4300 case Intrinsic::amdgcn_fract:
4301 case Intrinsic::amdgcn_rsq:
4302 case Intrinsic::amdgcn_rcp_legacy:
4303 case Intrinsic::amdgcn_rsq_legacy:
4304 case Intrinsic::amdgcn_rsq_clamp:
4305 case Intrinsic::amdgcn_tanh:
4306 case Intrinsic::amdgcn_prng_b32: {
4309 return Src.isUndef() ? Src :
SDValue();
4311 case Intrinsic::amdgcn_frexp_exp: {
4317 if (PeekSign == Src)
4354 EVT VT =
N->getValueType(0);
4367 switch (LHS->getOpcode()) {
4375 if (VT == MVT::i32 && RHSVal == 16 &&
X.getValueType() == MVT::i16 &&
4389 unsigned LZ =
Known.countMinLeadingZeros();
4392 EVT XVT =
X.getValueType();
4424 ShiftAmt = DAG.
getNode(
ISD::AND, SL, TargetType, TruncShiftAmt, ShiftMask);
4435 EVT ConcatType = TargetType.getDoubleNumVectorElementsVT(*DAG.
getContext());
4436 unsigned NElts = TargetType.getVectorNumElements();
4441 for (
unsigned I = 0;
I != NElts; ++
I)
4442 HiAndLoOps[2 *
I + 1] = HiOps[
I];
4455 EVT VT =
N->getValueType(0);
4485 }
else if (
Known.getMinValue().getZExtValue() ==
4486 (ElementType.getSizeInBits() - 1)) {
4487 ShiftAmt = ShiftFullAmt;
4494 ShiftAmt = DAG.
getNode(
ISD::AND, SL, TargetType, TruncShiftAmt, ShiftMask);
4502 unsigned NElts = TargetType.getVectorNumElements();
4503 ConcatType = TargetType.getDoubleNumVectorElementsVT(*DAG.
getContext());
4509 for (
unsigned I = 0;
I != NElts; ++
I) {
4510 HiOps[
I] = HiAndLoOps[2 *
I + 1];
4527 CRHS->
getZExtValue() == (ElementType.getSizeInBits() - 1)) {
4528 NewShift = HiShift =
4539 unsigned NElts = TargetType.getVectorNumElements();
4546 for (
unsigned I = 0;
I != NElts; ++
I) {
4547 HiAndLoOps[2 *
I + 1] = HiOps[
I];
4548 HiAndLoOps[2 *
I] = LoOps[
I];
4561 EVT VT =
N->getValueType(0);
4574 unsigned MaskIdx, MaskLen;
4575 if (Mask->getAPIntValue().isShiftedMask(MaskIdx, MaskLen) &&
4576 MaskIdx == RHSVal) {
4615 ShiftAmt = DAG.
getNode(
ISD::AND, SL, TargetType, TruncShiftAmt, ShiftMask);
4624 unsigned NElts = TargetType.getVectorNumElements();
4625 ConcatType = TargetType.getDoubleNumVectorElementsVT(*DAG.
getContext());
4631 for (
unsigned I = 0;
I != NElts; ++
I)
4632 HiOps[
I] = HiAndLoOps[2 *
I + 1];
4646 unsigned NElts = TargetType.getVectorNumElements();
4651 for (
unsigned I = 0;
I != NElts; ++
I)
4652 HiAndLoOps[2 *
I] = LoOps[
I];
4664 EVT VT =
N->getValueType(0);
4693 unsigned BitIndex =
K->getZExtValue();
4694 unsigned PartIndex = BitIndex / SrcEltSize;
4696 if (PartIndex * SrcEltSize == BitIndex &&
4714 EVT SrcVT = Src.getValueType();
4726 const unsigned MaxCstSize =
4728 if (
Known.getMaxValue().ule(MaxCstSize)) {
4760 unsigned MulOpc =
Signed ? AMDGPUISD::MUL_I24 : AMDGPUISD::MUL_U24;
4761 return DAG.
getNode(MulOpc, SL, MVT::i32, N0, N1);
4764 unsigned MulLoOpc =
Signed ? AMDGPUISD::MUL_I24 : AMDGPUISD::MUL_U24;
4765 unsigned MulHiOpc =
Signed ? AMDGPUISD::MULHI_I24 : AMDGPUISD::MULHI_U24;
4785 EVT VT =
N->getValueType(0);
4791 if (!
N->isDivergent())
4813 if (V.hasOneUse() ||
all_of(V->users(), [](
const SDNode *U) ->
bool {
4814 return U->getOpcode() == ISD::MUL;
4823 if (
SDValue MulOper = IsFoldableAdd(N0)) {
4828 if (
SDValue MulOper = IsFoldableAdd(N1)) {
4849 if (Subtarget->hasMulU24() &&
isU24(N0, DAG) &&
isU24(N1, DAG)) {
4853 }
else if (Subtarget->hasMulI24() &&
isI24(N0, DAG) &&
isI24(N1, DAG)) {
4869 if (
N->getValueType(0) != MVT::i32)
4890 unsigned LoOpcode = 0;
4891 unsigned HiOpcode = 0;
4893 if (Subtarget->hasMulI24() &&
isI24(N0, DAG) &&
isI24(N1, DAG)) {
4896 LoOpcode = AMDGPUISD::MUL_I24;
4897 HiOpcode = AMDGPUISD::MULHI_I24;
4900 if (Subtarget->hasMulU24() &&
isU24(N0, DAG) &&
isU24(N1, DAG)) {
4903 LoOpcode = AMDGPUISD::MUL_U24;
4904 HiOpcode = AMDGPUISD::MULHI_U24;
4918 EVT VT =
N->getValueType(0);
4920 if (!Subtarget->hasMulI24() || VT.
isVector())
4929 if (Subtarget->hasSMulHi() && !
N->isDivergent())
4951 EVT VT =
N->getValueType(0);
4962 if (!
N->isDivergent() && Subtarget->hasSMulHi())
4985 unsigned Opc)
const {
4986 EVT VT =
Op.getValueType();
5023 isCttzOpc(RHS.getOpcode()) ? AMDGPUISD::FFBL_B32 : AMDGPUISD::FFBH_U32;
5024 return getFFBX_U32(DAG, CmpLHS, SL,
Opc);
5033 isCttzOpc(LHS.getOpcode()) ? AMDGPUISD::FFBL_B32 : AMDGPUISD::FFBH_U32;
5035 return getFFBX_U32(DAG, CmpLHS, SL,
Opc);
5053 return DAG.
getNode(
Op, SL, VT, NewSelect);
5071 EVT VT =
N.getValueType();
5098 bool ShouldFoldNeg =
true;
5103 ShouldFoldNeg =
false;
5105 ShouldFoldNeg =
false;
5108 if (ShouldFoldNeg) {
5132 Cond, NewLHS, NewRHS);
5134 return DAG.
getNode(LHS.getOpcode(), SL, VT, NewSelect);
5150 EVT VT =
N->getValueType(0);
5158 if (
Cond.hasOneUse()) {
5174 if (VT == MVT::f32 && Subtarget->hasFminFmaxLegacy()) {
5176 CC,
N->getFlags(), DCI);
5204 if (Subtarget->hasInv2PiInlineImm() &&
isInv2Pi(
C->getValueAPF()))
5240 case AMDGPUISD::FMAX_LEGACY:
5241 return AMDGPUISD::FMIN_LEGACY;
5242 case AMDGPUISD::FMIN_LEGACY:
5243 return AMDGPUISD::FMAX_LEGACY;
5274 EVT VT =
N->getValueType(0);
5281 bool MayIgnoreSignedZeroForAllUses =
5283 (N0.
hasOneUse() &&
N->getFlags().hasNoSignedZeros());
5288 if (!MayIgnoreSignedZeroForAllUses)
5313 case AMDGPUISD::FMUL_LEGACY: {
5336 if (!MayIgnoreSignedZeroForAllUses)
5371 case AMDGPUISD::FMAX_LEGACY:
5372 case AMDGPUISD::FMIN_LEGACY: {
5387 if ((
Opc == AMDGPUISD::FMIN_LEGACY ||
Opc == AMDGPUISD::FMAX_LEGACY) &&
5402 case AMDGPUISD::FMED3: {
5410 for (
unsigned I = 0;
I < 3; ++
I)
5414 if (Res.
getOpcode() != AMDGPUISD::FMED3)
5434 case AMDGPUISD::RCP:
5435 case AMDGPUISD::RCP_LEGACY:
5436 case AMDGPUISD::RCP_IFLAG:
5437 case AMDGPUISD::SIN_HW: {
5476 EVT SrcVT = Src.getValueType();
5512 Ops.back() = CastBack;
5562 EVT SrcVT = Src.getValueType();
5598 if (!Subtarget->isGCN())
5604 const auto *
TII = ST.getInstrInfo();
5606 if (!ST.hasVMovB64Inst() || (!SDConstant && !SDFPConstant))
5609 if (ST.has64BitLiterals())
5626 switch(
N->getOpcode()) {
5630 EVT DestVT =
N->getValueType(0);
5642 EVT SrcVT = Src.getValueType();
5672 uint64_t CVal =
C->getZExtValue();
5680 const APInt &Val =
C->getValueAPF().bitcastToAPInt();
5701 if (!(
N->getValueType(0).isVector() &&
5715 case AMDGPUISD::MUL_U24:
5716 case AMDGPUISD::MUL_I24: {
5721 case AMDGPUISD::MULHI_I24:
5722 case AMDGPUISD::MULHI_U24:
5737 case AMDGPUISD::BFE_I32:
5738 case AMDGPUISD::BFE_U32: {
5739 assert(
N->getValueType(0) == MVT::i32 &&
5740 "BFE_I32/BFE_U32 is a 32-bit operation");
5753 SDValue BitsFrom =
N->getOperand(0);
5756 bool Signed =
N->getOpcode() == AMDGPUISD::BFE_I32;
5758 if (OffsetVal == 0) {
5785 CVal->getSExtValue(),
5792 CVal->getZExtValue(),
5798 if ((OffsetVal + WidthVal) >= 32 &&
5799 !(OffsetVal == 16 && WidthVal == 16 && Subtarget->hasSDWA())) {
5802 BitsFrom, ShiftVal);
5808 OffsetVal + WidthVal);
5826 case AMDGPUISD::RCP:
5827 case AMDGPUISD::RCP_IFLAG:
5834 case AMDGPUISD::FMAD_FTZ: {
5838 EVT VT =
N->getValueType(0);
5845 if (N0CFP && N1CFP && N2CFP) {
5846 const auto FTZ = [](
const APFloat &V) {
5847 if (V.isDenormal()) {
5848 APFloat Zero(V.getSemantics(), 0);
5849 return V.isNegative() ? -Zero : Zero;
5871 unsigned Depth)
const {
5872 switch (
Op.getOpcode()) {
5874 switch (
Op.getConstantOperandVal(0)) {
5875 case Intrinsic::amdgcn_readfirstlane:
5876 case Intrinsic::amdgcn_readlane:
5877 case Intrinsic::amdgcn_wwm: {
5879 OriginalDemandedElts,
Known, TLO,
Depth + 1))
5883 case Intrinsic::amdgcn_set_inactive:
5884 case Intrinsic::amdgcn_set_inactive_chain_arg: {
5889 OriginalDemandedElts, KnownValue, TLO,
5893 OriginalDemandedElts, KnownInactive, TLO,
5919 bool RawReg)
const {
5979 DAG.
getCopyFromReg(Chain, SL, Info->getStackPtrOffsetReg(), MVT::i32);
5990 assert(Arg &&
"Attempting to load missing argument");
5999 unsigned Mask = Arg.
getMask();
6009 unsigned ExplicitArgOffset = Subtarget->getExplicitKernelArgOffset();
6010 const Align Alignment = Subtarget->getAlignmentForImplicitArgPtr();
6011 uint64_t ArgOffset =
6012 alignTo(ExplicitKernArgSize, Alignment) + ExplicitArgOffset;
6035 int &RefinementSteps,
6036 bool &UseOneConstNR,
6037 bool Reciprocal)
const {
6040 if (VT == MVT::f32) {
6041 RefinementSteps = 0;
6042 return DAG.
getNode(AMDGPUISD::RSQ,
SDLoc(Operand), VT, Operand);
6053 int &RefinementSteps)
const {
6056 if (VT == MVT::f32) {
6062 RefinementSteps = 0;
6063 return DAG.
getNode(AMDGPUISD::RCP,
SDLoc(Operand), VT, Operand);
6074 case Intrinsic::amdgcn_workitem_id_x:
6076 case Intrinsic::amdgcn_workitem_id_y:
6078 case Intrinsic::amdgcn_workitem_id_z:
6091 unsigned Opc =
Op.getOpcode();
6096 case AMDGPUISD::CARRY:
6097 case AMDGPUISD::BORROW: {
6102 case AMDGPUISD::BFE_I32:
6103 case AMDGPUISD::BFE_U32: {
6110 if (
Opc == AMDGPUISD::BFE_U32)
6115 case AMDGPUISD::FP_TO_FP16: {
6122 case AMDGPUISD::MUL_U24:
6123 case AMDGPUISD::MUL_I24: {
6126 unsigned BitWidth =
Op.getScalarValueSizeInBits();
6129 if (
Opc == AMDGPUISD::MUL_I24) {
6138 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
6147 case AMDGPUISD::PERM: {
6156 for (
unsigned I = 0;
I < 32;
I += 8) {
6157 unsigned SelBits = Sel & 0xff;
6162 }
else if (SelBits < 7) {
6163 SelBits = (SelBits & 3) * 8;
6166 }
else if (SelBits == 0x0c) {
6167 Known.Zero |= 0xFFull <<
I;
6168 }
else if (SelBits > 0x0c) {
6169 Known.One |= 0xFFull <<
I;
6175 case AMDGPUISD::BUFFER_LOAD_UBYTE: {
6176 Known.Zero.setHighBits(24);
6179 case AMDGPUISD::BUFFER_LOAD_USHORT: {
6180 Known.Zero.setHighBits(16);
6183 case AMDGPUISD::LDS: {
6187 Known.Zero.setHighBits(16);
6191 case AMDGPUISD::SMIN3:
6192 case AMDGPUISD::SMAX3:
6193 case AMDGPUISD::SMED3:
6194 case AMDGPUISD::UMIN3:
6195 case AMDGPUISD::UMAX3:
6196 case AMDGPUISD::UMED3: {
6215 unsigned IID =
Op.getConstantOperandVal(0);
6217 case Intrinsic::amdgcn_workitem_id_x:
6218 case Intrinsic::amdgcn_workitem_id_y:
6219 case Intrinsic::amdgcn_workitem_id_z: {
6220 unsigned MaxValue = Subtarget->getMaxWorkitemID(
6234 unsigned Depth)
const {
6235 switch (
Op.getOpcode()) {
6236 case AMDGPUISD::BFE_I32: {
6241 unsigned SignBits = 32 - (Width->
getZExtValue() & 0x1f) + 1;
6247 return std::max(SignBits, Op0SignBits);
6250 case AMDGPUISD::BFE_U32: {
6252 return Width ? 32 - (Width->
getZExtValue() & 0x1f) : 1;
6255 case AMDGPUISD::CARRY:
6256 case AMDGPUISD::BORROW:
6258 case AMDGPUISD::BUFFER_LOAD_BYTE:
6260 case AMDGPUISD::BUFFER_LOAD_SHORT:
6262 case AMDGPUISD::BUFFER_LOAD_UBYTE:
6264 case AMDGPUISD::BUFFER_LOAD_USHORT:
6266 case AMDGPUISD::FP_TO_FP16:
6268 case AMDGPUISD::SMIN3:
6269 case AMDGPUISD::SMAX3:
6270 case AMDGPUISD::SMED3:
6271 case AMDGPUISD::UMIN3:
6272 case AMDGPUISD::UMAX3:
6273 case AMDGPUISD::UMED3: {
6286 return std::min({Tmp0, Tmp1, Tmp2});
6301 switch (
MI->getOpcode()) {
6302 case AMDGPU::G_AMDGPU_BUFFER_LOAD_SBYTE:
6304 case AMDGPU::G_AMDGPU_BUFFER_LOAD_SSHORT:
6306 case AMDGPU::G_AMDGPU_BUFFER_LOAD_UBYTE:
6308 case AMDGPU::G_AMDGPU_BUFFER_LOAD_USHORT:
6310 case AMDGPU::G_AMDGPU_SMED3:
6311 case AMDGPU::G_AMDGPU_UMED3: {
6312 auto [Dst, Src0, Src1, Src2] =
MI->getFirst4Regs();
6313 unsigned Tmp2 =
Analysis.computeNumSignBits(Src2, DemandedElts,
Depth + 1);
6316 unsigned Tmp1 =
Analysis.computeNumSignBits(Src1, DemandedElts,
Depth + 1);
6319 unsigned Tmp0 =
Analysis.computeNumSignBits(Src0, DemandedElts,
Depth + 1);
6322 return std::min({Tmp0, Tmp1, Tmp2});
6332 unsigned Opcode =
Op.getOpcode();
6334 case AMDGPUISD::BFE_I32:
6335 case AMDGPUISD::BFE_U32:
6339 Op, DemandedElts, DAG, Kind, ConsiderFlags,
Depth);
6344 unsigned Depth)
const {
6345 unsigned Opcode =
Op.getOpcode();
6347 case AMDGPUISD::FMIN_LEGACY:
6348 case AMDGPUISD::FMAX_LEGACY:
6351 case AMDGPUISD::FMUL_LEGACY:
6352 case AMDGPUISD::CVT_PKRTZ_F16_F32: {
6358 case AMDGPUISD::FMED3:
6359 case AMDGPUISD::FMIN3:
6360 case AMDGPUISD::FMAX3:
6361 case AMDGPUISD::FMINIMUM3:
6362 case AMDGPUISD::FMAXIMUM3:
6363 case AMDGPUISD::FMAD_FTZ: {
6370 case AMDGPUISD::CVT_F32_UBYTE0:
6371 case AMDGPUISD::CVT_F32_UBYTE1:
6372 case AMDGPUISD::CVT_F32_UBYTE2:
6373 case AMDGPUISD::CVT_F32_UBYTE3:
6376 case AMDGPUISD::RCP:
6377 case AMDGPUISD::RSQ:
6378 case AMDGPUISD::RCP_LEGACY:
6379 case AMDGPUISD::RSQ_CLAMP: {
6387 case AMDGPUISD::FRACT: {
6392 case AMDGPUISD::DIV_SCALE:
6393 case AMDGPUISD::DIV_FMAS:
6394 case AMDGPUISD::DIV_FIXUP:
6397 case AMDGPUISD::SIN_HW:
6398 case AMDGPUISD::COS_HW: {
6403 unsigned IntrinsicID =
Op.getConstantOperandVal(0);
6405 switch (IntrinsicID) {
6406 case Intrinsic::amdgcn_cubeid:
6407 case Intrinsic::amdgcn_cvt_off_f32_i4:
6410 case Intrinsic::amdgcn_frexp_mant: {
6415 case Intrinsic::amdgcn_cvt_pkrtz: {
6421 case Intrinsic::amdgcn_rcp:
6422 case Intrinsic::amdgcn_rsq:
6423 case Intrinsic::amdgcn_rcp_legacy:
6424 case Intrinsic::amdgcn_rsq_legacy:
6425 case Intrinsic::amdgcn_rsq_clamp:
6426 case Intrinsic::amdgcn_tanh: {
6433 case Intrinsic::amdgcn_trig_preop:
6434 case Intrinsic::amdgcn_fdot2:
6437 case Intrinsic::amdgcn_fma_legacy:
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU address space definition.
static LLVM_READONLY bool hasSourceMods(const MachineInstr &MI)
static bool isInv2Pi(const APFloat &APF)
static LLVM_READONLY bool opMustUseVOP3Encoding(const MachineInstr &MI, const MachineRegisterInfo &MRI)
returns true if the operation will definitely need to use a 64-bit encoding, and thus will use a VOP3...
static unsigned inverseMinMax(unsigned Opc)
static SDValue extractF64Exponent(SDValue Hi, const SDLoc &SL, SelectionDAG &DAG)
static unsigned workitemIntrinsicDim(unsigned ID)
static int getOrCreateFixedStackObject(MachineFrameInfo &MFI, unsigned Size, int64_t Offset)
static SDValue constantFoldBFE(SelectionDAG &DAG, IntTy Src0, uint32_t Offset, uint32_t Width, const SDLoc &DL)
static SDValue getMad(SelectionDAG &DAG, const SDLoc &SL, EVT VT, SDValue X, SDValue Y, SDValue C, SDNodeFlags Flags=SDNodeFlags())
static SDValue getAddOneOp(const SDNode *V)
If V is an add of a constant 1, returns the other operand.
static bool canIgnoreLegacyMinMaxTies(const SelectionDAG &DAG, SDNodeFlags Flags, SDValue LHS, SDValue RHS)
static LLVM_READONLY bool selectSupportsSourceMods(const SDNode *N)
Return true if v_cndmask_b32 will support fabs/fneg source modifiers for the type for ISD::SELECT.
static cl::opt< bool > AMDGPUBypassSlowDiv("amdgpu-bypass-slow-div", cl::desc("Skip 64-bit divide for dynamic 32-bit values"), cl::init(true))
static SDValue getMul24(SelectionDAG &DAG, const SDLoc &SL, SDValue N0, SDValue N1, unsigned Size, bool Signed)
static bool fnegFoldsIntoOp(const SDNode *N)
static bool isI24(SDValue Op, SelectionDAG &DAG)
static bool isCttzOpc(unsigned Opc)
static bool isU24(SDValue Op, SelectionDAG &DAG)
static bool valueIsKnownNeverF32Denorm(SDValue Src)
Return true if it's known that Src can never be an f32 denormal value.
static SDValue distributeOpThroughSelect(TargetLowering::DAGCombinerInfo &DCI, unsigned Op, const SDLoc &SL, SDValue Cond, SDValue N1, SDValue N2)
static SDValue peekFNeg(SDValue Val)
static SDValue simplifyMul24(SDNode *Node24, TargetLowering::DAGCombinerInfo &DCI)
static bool isCtlzOpc(unsigned Opc)
static LLVM_READNONE bool fnegFoldsIntoOpcode(unsigned Opc)
static bool hasVolatileUser(SDNode *Val)
Interface definition of the TargetLowering class that is common to all AMD GPUs.
Contains the definition of a TargetInstrInfo class that is common to all AMD GPUs.
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
block Block Frequency Analysis
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< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
Provides analysis for querying information about KnownBits during GISel passes.
const HexagonInstrInfo * TII
static MaybeAlign getAlign(Value *Ptr)
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
const SmallVectorImpl< MachineOperand > & Cond
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static CCAssignFn * CCAssignFnForCall(CallingConv::ID CC, bool IsVarArg)
static CCAssignFn * CCAssignFnForReturn(CallingConv::ID CC, bool IsVarArg)
unsigned allocateBarrierGlobal(const DataLayout &DL, const GlobalVariable &GV)
uint64_t getExplicitKernArgSize() const
bool isModuleEntryFunction() const
static std::optional< uint32_t > get32BitAbsoluteAddress(const GlobalValue &GV, unsigned AS)
unsigned allocateLDSGlobal(const DataLayout &DL, const GlobalVariable &GV)
static unsigned numBitsSigned(SDValue Op, SelectionDAG &DAG)
unsigned ComputeNumSignBitsForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const override
This method can be implemented by targets that want to expose additional information about sign bits ...
SDValue performMulhuCombine(SDNode *N, DAGCombinerInfo &DCI) const
EVT getTypeForExtReturn(LLVMContext &Context, EVT VT, ISD::NodeType ExtendKind) const override
Return the type that should be used to zero or sign extend a zeroext/signext integer return value.
SDValue SplitVectorLoad(SDValue Op, SelectionDAG &DAG) const
Split a vector load into 2 loads of half the vector.
SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const
SDValue performLoadCombine(SDNode *N, DAGCombinerInfo &DCI) const
void analyzeFormalArgumentsCompute(CCState &State, const SmallVectorImpl< ISD::InputArg > &Ins) const
The SelectionDAGBuilder will automatically promote function arguments with illegal types.
SDValue LowerF64ToF16Safe(SDValue Src, const SDLoc &DL, SelectionDAG &DAG) const
SDValue LowerFROUND(SDValue Op, SelectionDAG &DAG) const
SDValue storeStackInputValue(SelectionDAG &DAG, const SDLoc &SL, SDValue Chain, SDValue ArgVal, int64_t Offset) const
bool storeOfVectorConstantIsCheap(bool IsZero, EVT MemVT, unsigned NumElem, unsigned AS) const override
Return true if it is expected to be cheaper to do a store of vector constant with the given size and ...
SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const
void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const override
Determine which of the bits specified in Mask are known to be either zero or one and return them in t...
bool shouldCombineMemoryType(EVT VT) const
SDValue splitBinaryBitConstantOpImpl(DAGCombinerInfo &DCI, const SDLoc &SL, unsigned Opc, SDValue LHS, uint32_t ValLo, uint32_t ValHi) const
Split the 64-bit value LHS into two 32-bit components, and perform the binary operation Opc to it wit...
SDValue lowerUnhandledCall(CallLoweringInfo &CLI, SmallVectorImpl< SDValue > &InVals, StringRef Reason) const
virtual SDValue LowerGlobalAddress(AMDGPUMachineFunctionInfo *MFI, SDValue Op, SelectionDAG &DAG) const
SDValue performAssertSZExtCombine(SDNode *N, DAGCombinerInfo &DCI) const
bool isTruncateFree(EVT Src, EVT Dest) const override
bool aggressivelyPreferBuildVectorSources(EVT VecVT) const override
SDValue LowerFCEIL(SDValue Op, SelectionDAG &DAG) const
TargetLowering::NegatibleCost getConstantNegateCost(const ConstantFPSDNode *C) const
SDValue LowerFLOGUnsafe(SDValue Op, const SDLoc &SL, SelectionDAG &DAG, bool IsLog10, SDNodeFlags Flags) const
SDValue combineFMinMaxLegacy(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, SDValue True, SDValue False, SDValue CC, SDNodeFlags Flags, DAGCombinerInfo &DCI) const
Flags must be the select flags, not the compare (SELECT_CC flags come from the fcmp and say nothing a...
SDValue performMulhsCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue lowerFEXPUnsafeImpl(SDValue Op, const SDLoc &SL, SelectionDAG &DAG, SDNodeFlags Flags, bool IsExp10) const
bool isSDNodeAlwaysUniform(const SDNode *N) const override
bool isDesirableToCommuteWithShift(const SDNode *N, CombineLevel Level) const override
Return true if it is profitable to move this shift by a constant amount through its operand,...
SDValue performShlCombine(SDNode *N, DAGCombinerInfo &DCI) const
bool isCheapToSpeculateCtlz(Type *Ty) const override
Return true if it is cheap to speculate a call to intrinsic ctlz.
SDValue LowerSDIVREM(SDValue Op, SelectionDAG &DAG) const
bool isFNegFree(EVT VT) const override
Return true if an fneg operation is free to the point where it is never worthwhile to replace it with...
SDValue LowerFLOG10(SDValue Op, SelectionDAG &DAG) const
SDValue LowerINT_TO_FP64(SDValue Op, SelectionDAG &DAG, bool Signed) const
unsigned computeNumSignBitsForTargetInstr(GISelValueTracking &Analysis, Register R, const APInt &DemandedElts, const MachineRegisterInfo &MRI, unsigned Depth=0) const override
This method can be implemented by targets that want to expose additional information about sign bits ...
SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const override
This callback is invoked for operations that are unsupported by the target, which are registered to u...
SDValue LowerFP_TO_FP16(SDValue Op, SelectionDAG &DAG) const
SDValue addTokenForArgument(SDValue Chain, SelectionDAG &DAG, MachineFrameInfo &MFI, int ClobberedFI) const
bool isConstantCheaperToNegate(SDValue N) const
bool isReassocProfitable(MachineRegisterInfo &MRI, Register N0, Register N1) const override
bool isKnownNeverNaNForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, bool SNaN=false, unsigned Depth=0) const override
If SNaN is false,.
static bool needsDenormHandlingF32(const SelectionDAG &DAG, SDValue Src, SDNodeFlags Flags)
SDValue lowerFPOW(SDValue Op, SelectionDAG &DAG) const
uint32_t getImplicitParameterOffset(const MachineFunction &MF, const ImplicitParameter Param) const
Helper function that returns the byte offset of the given type of implicit parameter.
SDValue lowerFEXPF64(SDValue Op, SelectionDAG &DAG) const
SDValue LowerFFLOOR(SDValue Op, SelectionDAG &DAG) const
SDValue performSelectCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue performFNegCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue LowerFP_TO_INT(SDValue Op, SelectionDAG &DAG) const
bool isConstantCostlierToNegate(SDValue N) const
SDValue loadInputValue(SelectionDAG &DAG, const TargetRegisterClass *RC, EVT VT, const SDLoc &SL, const ArgDescriptor &Arg) const
SDValue lowerFEXP10Unsafe(SDValue Op, const SDLoc &SL, SelectionDAG &DAG, SDNodeFlags Flags) const
Emit approx-funcs appropriate lowering for exp10.
bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtType, EVT ExtVT, std::optional< unsigned > ByteOffset) const override
Return true if it is profitable to reduce a load to a smaller type.
SDValue LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) const
bool canCreateUndefOrPoisonForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, UndefPoisonKind Kind, bool ConsiderFlags, unsigned Depth) const override
Return true if Op can create undef or poison from non-undef & non-poison operands.
bool isCheapToSpeculateCttz(Type *Ty) const override
Return true if it is cheap to speculate a call to intrinsic cttz.
SDValue performCtlz_CttzCombine(const SDLoc &SL, SDValue Cond, SDValue LHS, SDValue RHS, DAGCombinerInfo &DCI) const
SDValue performSraCombine(SDNode *N, DAGCombinerInfo &DCI) const
bool isSelectSupported(SelectSupportKind) const override
bool isZExtFree(Type *Src, Type *Dest) const override
Return true if any actual instruction that defines a value of type FromTy implicitly zero-extends the...
SDValue lowerFEXP2(SDValue Op, SelectionDAG &DAG) const
SDValue LowerCall(CallLoweringInfo &CLI, SmallVectorImpl< SDValue > &InVals) const override
This hook must be implemented to lower calls into the specified DAG.
SDValue performSrlCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue lowerFEXP(SDValue Op, SelectionDAG &DAG) const
SDValue getIsLtSmallestNormal(SelectionDAG &DAG, SDValue Op, SDNodeFlags Flags) const
SDValue getIsFinite(SelectionDAG &DAG, SDValue Op, SDNodeFlags Flags) const
bool isLoadBitCastBeneficial(EVT, EVT, const SelectionDAG &DAG, const MachineMemOperand &MMO) const final
Return true if the following transform is beneficial: fold (conv (load x)) -> (load (conv*)x) On arch...
std::pair< SDValue, SDValue > splitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, const EVT &HighVT, SelectionDAG &DAG) const
Split a vector value into two parts of types LoVT and HiVT.
AMDGPUTargetLowering(const TargetMachine &TM, const TargetSubtargetInfo &STI, const AMDGPUSubtarget &AMDGPUSTI)
SDValue LowerFLOGCommon(SDValue Op, SelectionDAG &DAG) const
SDValue foldFreeOpFromSelect(TargetLowering::DAGCombinerInfo &DCI, SDValue N) const
SDValue LowerINT_TO_FP32(SDValue Op, SelectionDAG &DAG, bool Signed) const
bool isFAbsFree(EVT VT) const override
Return true if an fabs operation is free to the point where it is never worthwhile to replace it with...
bool isInt64ImmLegal(SDNode *Val, SelectionDAG &DAG) const
Check whether value Val can be supported by v_mov_b64, for the current target.
SDValue loadStackInputValue(SelectionDAG &DAG, EVT VT, const SDLoc &SL, int64_t Offset) const
Similar to CreateLiveInRegister, except value maybe loaded from a stack slot rather than passed in a ...
SDValue LowerFLOG2(SDValue Op, SelectionDAG &DAG) const
static EVT getEquivalentMemType(LLVMContext &Context, EVT VT)
SDValue LowerCTLS(SDValue Op, SelectionDAG &DAG) const
Split a vector store into multiple scalar stores.
SDValue getSqrtEstimate(SDValue Operand, SelectionDAG &DAG, int Enabled, int &RefinementSteps, bool &UseOneConstNR, bool Reciprocal) const override
Hooks for building estimates in place of slower divisions and square roots.
SDValue performTruncateCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) const
static SDValue stripBitcast(SDValue Val)
SDValue LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const
SDValue CreateLiveInRegister(SelectionDAG &DAG, const TargetRegisterClass *RC, Register Reg, EVT VT, const SDLoc &SL, bool RawReg=false) const
Helper function that adds Reg to the LiveIn list of the DAG's MachineFunction.
SDValue SplitVectorStore(SDValue Op, SelectionDAG &DAG) const
Split a vector store into 2 stores of half the vector.
SDValue LowerCTLZ_CTTZ(SDValue Op, SelectionDAG &DAG) const
SDValue getNegatedExpression(SDValue Op, SelectionDAG &DAG, bool LegalOperations, bool ForCodeSize, NegatibleCost &Cost, unsigned Depth) const override
Return the newly negated expression if the cost is not expensive and set the cost in Cost to indicate...
std::pair< SDValue, SDValue > split64BitValue(SDValue Op, SelectionDAG &DAG) const
Return 64-bit value Op as two 32-bit integers.
SDValue performMulCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue combineFMinMaxLegacyImpl(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, SDValue True, SDValue False, SDValue CC, SDNodeFlags Flags, DAGCombinerInfo &DCI) const
SDValue getRecipEstimate(SDValue Operand, SelectionDAG &DAG, int Enabled, int &RefinementSteps) const override
Return a reciprocal estimate value for the input operand.
SDValue LowerFNEARBYINT(SDValue Op, SelectionDAG &DAG) const
SDValue LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const
static CCAssignFn * CCAssignFnForReturn(CallingConv::ID CC, bool IsVarArg)
std::pair< SDValue, SDValue > getScaledLogInput(SelectionDAG &DAG, const SDLoc SL, SDValue Op, SDNodeFlags Flags) const
If denormal handling is required return the scaled input to FLOG2, and the check for denormal range.
static CCAssignFn * CCAssignFnForCall(CallingConv::ID CC, bool IsVarArg)
Selects the correct CCAssignFn for a given CallingConvention value.
bool SimplifyDemandedBitsForTargetNode(SDValue Op, const APInt &OriginalDemandedBits, const APInt &OriginalDemandedElts, KnownBits &Known, TargetLoweringOpt &TLO, unsigned Depth) const override
Attempt to simplify any target nodes based on the demanded bits/elts, returning true on success.
static bool allUsesHaveSourceMods(const SDNode *N, unsigned CostThreshold=4)
SDValue LowerFROUNDEVEN(SDValue Op, SelectionDAG &DAG) const
bool isFPImmLegal(const APFloat &Imm, EVT VT, bool ForCodeSize) const override
Returns true if the target can instruction select the specified FP immediate natively.
static unsigned numBitsUnsigned(SDValue Op, SelectionDAG &DAG)
SDValue lowerFEXPUnsafe(SDValue Op, const SDLoc &SL, SelectionDAG &DAG, SDNodeFlags Flags) const
SDValue LowerFTRUNC(SDValue Op, SelectionDAG &DAG) const
SDValue LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG) const
static bool allowApproxFunc(const SelectionDAG &DAG, SDNodeFlags Flags)
bool ShouldShrinkFPConstant(EVT VT) const override
If true, then instruction selection should seek to shrink the FP constant of the specified type to a ...
SDValue LowerReturn(SDValue Chain, CallingConv::ID CallConv, bool isVarArg, const SmallVectorImpl< ISD::OutputArg > &Outs, const SmallVectorImpl< SDValue > &OutVals, const SDLoc &DL, SelectionDAG &DAG) const override
This hook must be implemented to lower outgoing return values, described by the Outs array,...
SDValue performStoreCombine(SDNode *N, DAGCombinerInfo &DCI) const
void ReplaceNodeResults(SDNode *N, SmallVectorImpl< SDValue > &Results, SelectionDAG &DAG) const override
This callback is invoked when a node result type is illegal for the target, and the operation was reg...
SDValue performRcpCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue getLoHalf64(SDValue Op, SelectionDAG &DAG) const
SDValue lowerCTLZResults(SDValue Op, SelectionDAG &DAG) const
SDValue LowerFP_TO_INT_SAT(SDValue Op, SelectionDAG &DAG) const
SDValue performFAbsCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue LowerFP_TO_INT64(SDValue Op, SelectionDAG &DAG, bool Signed) const
static bool shouldFoldFNegIntoSrc(SDNode *FNeg, SDValue FNegSrc)
bool isNarrowingProfitable(SDNode *N, EVT SrcVT, EVT DestVT) const override
Return true if it's profitable to narrow operations of type SrcVT to DestVT.
SDValue LowerFRINT(SDValue Op, SelectionDAG &DAG) const
SDValue performIntrinsicWOChainCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue LowerUDIVREM(SDValue Op, SelectionDAG &DAG) const
SDValue performMulLoHiCombine(SDNode *N, DAGCombinerInfo &DCI) const
SDValue PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const override
This method will be invoked for all target nodes and for any target-independent nodes that the target...
SDValue lowerINT_TO_FPImpl(SDValue Op, SelectionDAG &DAG, bool Signed) const
void LowerUDIVREM64(SDValue Op, SelectionDAG &DAG, SmallVectorImpl< SDValue > &Results) const
SDValue WidenOrSplitVectorLoad(SDValue Op, SelectionDAG &DAG) const
Widen a suitably aligned v3 load.
SDValue LowerDIVREMToFloat(SDValue Op, SelectionDAG &DAG, bool sign) const
std::pair< EVT, EVT > getSplitDestVTs(const EVT &VT, SelectionDAG &DAG) const
Split a vector type into two parts.
SDValue getHiHalf64(SDValue Op, SelectionDAG &DAG) const
SDValue LowerINT_TO_FP16(SDValue Op, SelectionDAG &DAG, EVT FP16Ty) const
unsigned getVectorIdxWidth(const DataLayout &) const override
Returns the type to be used for the index operand vector operations.
static const fltSemantics & IEEEsingle()
static const fltSemantics & IEEEdouble()
static constexpr roundingMode rmNearestTiesToEven
static const fltSemantics & IEEEhalf()
static APFloat getQNaN(const fltSemantics &Sem, bool Negative=false, const APInt *payload=nullptr)
Factory for QNaN values.
bool bitwiseIsEqual(const APFloat &RHS) const
static APFloat getSmallestNormalized(const fltSemantics &Sem, bool Negative=false)
Returns the smallest (by magnitude) normalized finite number in the given semantics.
APInt bitcastToAPInt() const
static APFloat getInf(const fltSemantics &Sem, bool Negative=false)
Factory for Positive and Negative Infinity.
Class for arbitrary precision integers.
uint64_t getZExtValue() const
Get zero extended value.
static APInt getMaxValue(unsigned numBits)
Gets maximum unsigned value of APInt for specific bit width.
static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit)
Get a value with a block of bits set.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
static APInt getHighBitsSet(unsigned numBits, unsigned hiBitsSet)
Constructs an APInt value that has the top hiBitsSet bits set.
This class represents an incoming formal argument to a Function.
int64_t getOffset() const
unsigned getTargetFlags() const
const BlockAddress * getBlockAddress() const
CCState - This class holds information needed while lowering arguments and return values.
static CCValAssign getCustomMem(unsigned ValNo, MVT ValVT, int64_t Offset, MVT LocVT, LocInfo HTP)
const APFloat & getValueAPF() const
bool isNegative() const
Return true if the value is negative.
uint64_t getZExtValue() const
const APInt & getAPIntValue() const
A parsed version of the target data layout string in and methods for querying it.
Diagnostic information for unsupported feature in backend.
const DataLayout & getDataLayout() const
Get the data layout of the module this function belongs to.
iterator_range< arg_iterator > args()
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
This is an important class for using LLVM in a threaded context.
LLVM_ABI void diagnose(const DiagnosticInfo &DI)
Report a message to the currently installed diagnostic handler.
This class is used to represent ISD::LOAD nodes.
const SDValue & getBasePtr() const
static auto integer_fixedlen_vector_valuetypes()
uint64_t getScalarSizeInBits() const
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
bool isInteger() const
Return true if this is an integer or a vector integer type.
static auto integer_valuetypes()
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
MVT getScalarType() const
If this is a vector, return the element type, otherwise return this.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
LLVM_ABI int CreateFixedObject(uint64_t Size, int64_t SPOffset, bool IsImmutable, bool isAliased=false)
Create a new object at a fixed location on the stack.
int64_t getObjectSize(int ObjectIdx) const
Return the size of the specified object.
int64_t getObjectOffset(int ObjectIdx) const
Return the assigned stack offset of the specified object from the incoming stack pointer.
int getObjectIndexBegin() const
Return the minimum frame object index.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
DenormalMode getDenormalMode(const fltSemantics &FPType) const
Returns the denormal handling type for the default rounding mode of the function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Ty * getInfo()
getInfo - Keep track of various per-function pieces of information for backends that would like to do...
Representation of each machine instruction.
A description of a memory reference used in the backend.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOInvariant
The memory access always returns the same value (or traps).
Flags getFlags() const
Return the raw flags of the source value,.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI bool hasOneNonDBGUse(Register RegNo) const
hasOneNonDBGUse - Return true if there is exactly one non-Debug use of the specified register.
LLVM_ABI LLVM_READONLY MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLVM_ABI bool isLiveIn(Register Reg) const
LLVM_ABI Register getLiveInVirtReg(MCRegister PReg) const
getLiveInVirtReg - If PReg is a live-in physical register, return the corresponding live-in virtual r...
void addLiveIn(MCRegister Reg, Register vreg=Register())
addLiveIn - Add the specified register as a live-in.
This is an abstract virtual class for memory operations.
unsigned getAddressSpace() const
Return the address space for the associated pointer.
bool isSimple() const
Returns true if the memory operation is neither atomic or volatile.
MachineMemOperand * getMemOperand() const
Return the unique MachineMemOperand object describing the memory reference performed by operation.
const SDValue & getChain() const
EVT getMemoryVT() const
Return the type of the in-memory value.
Wrapper class representing virtual and physical registers.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
const DebugLoc & getDebugLoc() const
Represents one node in the SelectionDAG.
ArrayRef< SDUse > ops() const
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
bool hasOneUse() const
Return true if there is exactly one use of this node.
SDNodeFlags getFlags() const
SDVTList getVTList() const
const SDValue & getOperand(unsigned Num) const
uint64_t getConstantOperandVal(unsigned Num) const
Helper method returns the integer value of a ConstantSDNode operand.
iterator_range< user_iterator > users()
Represents a use of a SDNode.
Unlike LLVM values, Selection DAG nodes may return multiple values as the result of a computation.
SDNode * getNode() const
get the SDNode which holds the desired result
bool hasOneUse() const
Return true if there is exactly one node using value ResNo of Node, in exactly one operand.
SDValue getValue(unsigned R) const
EVT getValueType() const
Return the ValueType of the referenced return value.
TypeSize getValueSizeInBits() const
Returns the size of the value in bits.
const SDValue & getOperand(unsigned i) const
unsigned getOpcode() const
unsigned getNumOperands() const
This class keeps track of the SPI_SP_INPUT_ADDR config register, which tells the hardware which inter...
SIModeRegisterDefaults getMode() const
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
LLVM_ABI bool isKnownNeverLogicalZero(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Test whether the given floating point SDValue (or all elements of it, if it is a vector) is known to ...
SDValue getExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT, unsigned Opcode)
Convert Op, which must be of integer type, to the integer type VT, by either any/sign/zero-extending ...
LLVM_ABI unsigned ComputeMaxSignificantBits(SDValue Op, unsigned Depth=0) const
Get the upper bound on bit size for this Value Op as a signed integer.
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
const TargetSubtargetInfo & getSubtarget() const
LLVM_ABI SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
LLVM_ABI SDValue getShiftAmountConstant(uint64_t Val, EVT VT, const SDLoc &DL)
LLVM_ABI SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
LLVM_ABI void ExtractVectorElements(SDValue Op, SmallVectorImpl< SDValue > &Args, unsigned Start=0, unsigned Count=0, EVT EltVT=EVT())
Append the extracted elements from Start to Count out of the vector Op in Args.
LLVM_ABI SDValue getFreeze(SDValue V)
Return a freeze using the SDLoc of the value operand.
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
SDValue getSetCC(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Chain=SDValue(), bool IsSignaling=false, SDNodeFlags Flags={})
Helper function to make it easier to build SetCC's if you just have an ISD::CondCode instead of an SD...
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
const TargetLowering & getTargetLoweringInfo() const
SDValue getCALLSEQ_END(SDValue Chain, SDValue Op1, SDValue Op2, SDValue InGlue, const SDLoc &DL)
Return a new CALLSEQ_END node, which always must have a glue result (to ensure it's not CSE'd).
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
SDValue getCopyFromReg(SDValue Chain, const SDLoc &dl, Register Reg, EVT VT)
SDValue getSelect(const SDLoc &DL, EVT VT, SDValue Cond, SDValue LHS, SDValue RHS, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build Select's if you just have operands and don't want to check...
LLVM_ABI SDValue getZeroExtendInReg(SDValue Op, const SDLoc &DL, EVT VT)
Return the expression required to zero extend the Op value assuming it was the smaller SrcTy value.
const DataLayout & getDataLayout() const
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Helper function to build ISD::STORE nodes.
LLVM_ABI SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
LLVM_ABI void ReplaceAllUsesWith(SDValue From, SDValue To)
Modify anything using 'From' to use 'To' instead.
LLVM_ABI SDValue getExtLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
SDValue getCALLSEQ_START(SDValue Chain, uint64_t InSize, uint64_t OutSize, const SDLoc &DL)
Return a new CALLSEQ_START node, that starts new call frame, in which InSize bytes are set up inside ...
bool isConstantValueOfAnyType(SDValue N) const
SDValue getSelectCC(const SDLoc &DL, SDValue LHS, SDValue RHS, SDValue True, SDValue False, ISD::CondCode Cond, SDNodeFlags Flags=SDNodeFlags())
Helper function to make it easier to build SelectCC's if you just have an ISD::CondCode instead of an...
LLVM_ABI SDValue getSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either sign-extending or trunca...
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const MMOMetadata &Metadata=MMOMetadata())
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI KnownFPClass computeKnownFPClass(SDValue Op, FPClassTest InterestedClasses, unsigned Depth=0) const
Determine floating-point class information about Op.
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(SDValue Op, UndefPoisonKind Kind=UndefPoisonKind::UndefOrPoison, unsigned Depth=0) const
Return true if this function can prove that Op is never poison and, Kind can be used to track poison ...
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDValue getValueType(EVT)
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI bool isKnownNeverNaN(SDValue Op, const APInt &DemandedElts, bool SNaN=false, unsigned Depth=0) const
Test whether the given SDValue (or all elements of it, if it is a vector) is known to never be NaN in...
SDValue getTargetConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isOpaque=false)
LLVM_ABI unsigned ComputeNumSignBits(SDValue Op, unsigned Depth=0) const
Return the number of times the sign bit of the register is replicated into the other bits.
SDValue getTargetBlockAddress(const BlockAddress *BA, EVT VT, int64_t Offset=0, unsigned TargetFlags=0)
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI void ReplaceAllUsesOfValueWith(SDValue From, SDValue To)
Replace any uses of From with To, leaving uses of other values produced by From.getNode() alone.
MachineFunction & getMachineFunction() const
SDValue getPOISON(EVT VT)
Return a POISON node. POISON does not have a useful SDLoc.
LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget=false)
LLVM_ABI KnownBits computeKnownBits(SDValue Op, unsigned Depth=0) const
Determine which bits of Op are known to be either zero or one and return them in Known.
LLVM_ABI SDValue getZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either zero-extending or trunca...
LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if 'Op & Mask' is known to be zero.
SDValue getObjectPtrOffset(const SDLoc &SL, SDValue Ptr, TypeSize Offset)
Create an add instruction with appropriate flags when used for addressing some offset of an object.
LLVMContext * getContext() const
const SDValue & setRoot(SDValue N)
Set the current root tag of the SelectionDAG.
LLVM_ABI SDNode * UpdateNodeOperands(SDNode *N, SDValue Op)
Mutate the specified node in-place to have the specified operands.
SDValue getEntryNode() const
Return the token chain corresponding to the entry of the function.
LLVM_ABI std::pair< SDValue, SDValue > SplitScalar(const SDValue &N, const SDLoc &DL, const EVT &LoVT, const EVT &HiVT)
Split the scalar node with EXTRACT_ELEMENT using the provided VTs and return the low/high part.
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.
This class is used to represent ISD::STORE nodes.
const SDValue & getBasePtr() const
const SDValue & getValue() const
Represent a constant reference to a string, i.e.
void setOperationAction(unsigned Op, MVT VT, LegalizeAction Action)
Indicate that the specified operation does not work with the specified type and indicate what to do a...
void setMaxDivRemBitWidthSupported(unsigned SizeInBits)
Set the size in bits of the maximum div/rem the backend supports.
bool PredictableSelectIsExpensive
Tells the code generator that select is more expensive than a branch if the branch is usually predict...
virtual bool shouldReduceLoadWidth(SDNode *Load, ISD::LoadExtType ExtTy, EVT NewVT, std::optional< unsigned > ByteOffset=std::nullopt) const
Return true if it is profitable to reduce a load to a smaller type.
unsigned MaxStoresPerMemcpyOptSize
Likewise for functions with the OptSize attribute.
const TargetMachine & getTargetMachine() const
virtual unsigned getNumRegistersForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain targets require unusual breakdowns of certain types.
unsigned MaxGluedStoresPerMemcpy
Specify max number of store instructions to glue in inlined memcpy.
virtual MVT getRegisterTypeForCallingConv(LLVMContext &Context, CallingConv::ID CC, EVT VT) const
Certain combinations of ABIs, Targets and features require that types are legal for some operations a...
void addBypassSlowDiv(unsigned int SlowBitWidth, unsigned int FastBitWidth)
Tells the code generator which bitwidths to bypass.
void setMaxLargeFPConvertBitWidthSupported(unsigned SizeInBits)
Set the size in bits of the maximum fp to/from int conversion the backend supports.
void setMaxAtomicSizeInBitsSupported(unsigned SizeInBits)
Set the maximum atomic operation size supported by the backend.
SelectSupportKind
Enum that describes what type of support for selects the target has.
virtual bool allowsMisalignedMemoryAccesses(EVT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *=nullptr) const
Determine if the target supports unaligned memory accesses.
unsigned MaxStoresPerMemsetOptSize
Likewise for functions with the OptSize attribute.
EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const
Returns the type for the shift amount of a shift opcode.
unsigned MaxStoresPerMemmove
Specify maximum number of store instructions per memmove call.
virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const
Return the ValueType of the result of SETCC operations.
unsigned MaxStoresPerMemmoveOptSize
Likewise for functions with the OptSize attribute.
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
void setSupportsUnalignedAtomics(bool UnalignedSupported)
Sets whether unaligned atomic operations are supported.
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
unsigned MaxStoresPerMemset
Specify maximum number of store instructions per memset call.
void setTruncStoreAction(MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified truncating store does not work with the specified type and indicate what ...
void setMinCmpXchgSizeInBits(unsigned SizeInBits)
Sets the minimum cmpxchg or ll/sc size supported by the backend.
void AddPromotedToType(unsigned Opc, MVT OrigVT, MVT DestVT)
If Opc/OrigVT is specified as being promoted, the promotion code defaults to trying a larger integer/...
void setTargetDAGCombine(ArrayRef< ISD::NodeType > NTs)
Targets should invoke this method for each target independent node that they want to provide a custom...
void setLoadExtAction(unsigned ExtType, MVT ValVT, MVT MemVT, LegalizeAction Action)
Indicate that the specified load with extension does not work with the specified type and indicate wh...
unsigned GatherAllAliasesMaxDepth
Depth that GatherAllAliases should continue looking for chain dependencies when trying to find a more...
NegatibleCost
Enum that specifies when a float negation is beneficial.
bool allowsMemoryAccessForAlignment(LLVMContext &Context, const DataLayout &DL, EVT VT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *Fast=nullptr) const
This function returns true if the memory access is aligned or if the target allows this specific unal...
unsigned MaxStoresPerMemcpy
Specify maximum number of store instructions per memcpy call.
void setSchedulingPreference(Sched::Preference Pref)
Specify the target scheduling preference.
void setJumpIsExpensive(bool isExpensive=true)
Tells the code generator not to expand logic operations on comparison predicates into separate sequen...
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const
SDValue SimplifyMultipleUseDemandedBits(SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, SelectionDAG &DAG, unsigned Depth=0) const
More limited version of SimplifyDemandedBits that can be used to "lookthrough" ops that don't contrib...
SDValue expandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG) const
Expands an unaligned store to 2 half-size stores for integer values, and possibly more for vectors.
bool ShrinkDemandedConstant(SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, TargetLoweringOpt &TLO) const
Check to see if the specified operand of the specified instruction is a constant integer.
std::pair< SDValue, SDValue > expandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG) const
Expands an unaligned load to 2 half-size loads for an integer, and possibly more for vectors.
virtual SDValue getNegatedExpression(SDValue Op, SelectionDAG &DAG, bool LegalOps, bool OptForSize, NegatibleCost &Cost, unsigned Depth=0) const
Return the newly negated expression if the cost is not expensive and set the cost in Cost to indicate...
std::pair< SDValue, SDValue > scalarizeVectorLoad(LoadSDNode *LD, SelectionDAG &DAG) const
Turn load of vector type into a load of the individual elements.
bool SimplifyDemandedBits(SDValue Op, const APInt &DemandedBits, const APInt &DemandedElts, KnownBits &Known, TargetLoweringOpt &TLO, unsigned Depth=0, bool AssumeSingleUse=false) const
Look at Op.
TargetLowering(const TargetLowering &)=delete
virtual bool canCreateUndefOrPoisonForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, UndefPoisonKind Kind, bool ConsiderFlags, unsigned Depth) const
Return true if Op can create undef or poison from non-undef & non-poison operands.
Primary interface to the complete machine description for the target machine.
TargetSubtargetInfo - Generic base class for all target subtargets.
static constexpr TypeSize getFixed(ScalarTy ExactSize)
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
LLVM Value Representation.
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
#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.
@ BARRIER
Address space for modeling barrier IDs as addresses.
@ REGION_ADDRESS
Address space for region memory. (GDS)
@ LOCAL_ADDRESS
Address space for local memory.
@ CONSTANT_ADDRESS
Address space for constant memory (VTX2).
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
bool isIntrinsicAlwaysUniform(unsigned IntrID)
TargetExtType * isNamedBarrier(const GlobalVariable &GV)
std::optional< APFloat > evaluateRcp(const APFloat &Val)
Evaluate the constant-folded result of v_rcp for Val, accounting for the hardware's denormal flushing...
bool isUniformMMO(const MachineMemOperand *MMO)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ AMDGPU_CS
Used for Mesa/AMDPAL compute shaders.
@ AMDGPU_VS
Used for Mesa vertex shaders, or AMDPAL last shader stage before rasterization (vertex shader if tess...
@ AMDGPU_KERNEL
Used for AMDGPU code object kernels.
@ AMDGPU_Gfx
Used for AMD graphics targets.
@ AMDGPU_CS_ChainPreserve
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_HS
Used for Mesa/AMDPAL hull shaders (= tessellation control shaders).
@ AMDGPU_GS
Used for Mesa/AMDPAL geometry shaders.
@ AMDGPU_CS_Chain
Used on AMDGPUs to give the middle-end more control over argument placement.
@ AMDGPU_PS
Used for Mesa/AMDPAL pixel shaders.
@ Cold
Attempts to make code in the caller as efficient as possible under the assumption that the call is no...
@ SPIR_KERNEL
Used for SPIR kernel functions.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ AMDGPU_ES
Used for AMDPAL shader stage before geometry shader if geometry is in use.
@ AMDGPU_LS
Used for AMDPAL vertex shader if tessellation is in use.
@ C
The default llvm calling convention, compatible with C.
NodeType
ISD::NodeType enum - This enum defines the target-independent operators for a SelectionDAG.
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
@ INSERT_SUBVECTOR
INSERT_SUBVECTOR(VECTOR1, VECTOR2, IDX) - Returns a vector with VECTOR2 inserted into VECTOR1.
@ BSWAP
Byte Swap and Counting operators.
@ ATOMIC_STORE
OUTCHAIN = ATOMIC_STORE(INCHAIN, val, ptr) This corresponds to "store atomic" instruction.
@ ADDC
Carry-setting nodes for multiple precision addition and subtraction.
@ FMAD
FMAD - Perform a * b + c, while getting the same result as the separately rounded operations.
@ 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...
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
@ CONCAT_VECTORS
CONCAT_VECTORS(VECTOR0, VECTOR1, ...) - Given a number of values of vector type with the same length ...
@ FADD
Simple binary floating point operators.
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SIGN_EXTEND
Conversion operators.
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
@ IS_FPCLASS
Performs a check of floating point class property, defined by IEEE-754.
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
@ CTLS
Count leading redundant sign bits.
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
@ SHL
Shift and rotation operations.
@ VECTOR_SHUFFLE
VECTOR_SHUFFLE(VEC1, VEC2) - Returns a vector, of the same type as VEC1/VEC2.
@ EXTRACT_SUBVECTOR
EXTRACT_SUBVECTOR(VECTOR, IDX) - Returns a subvector from VECTOR.
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ EntryToken
EntryToken - This is the marker used to indicate the start of a region.
@ 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,...
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
@ SELECT_CC
Select with condition operator - This selects between a true value and a false value (ops #2 and #3) ...
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ DYNAMIC_STACKALLOC
DYNAMIC_STACKALLOC - Allocate some number of bytes on the stack aligned to a specified boundary.
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
@ UADDO_CARRY
Carry-using nodes for multiple precision addition and subtraction.
@ INLINEASM_BR
INLINEASM_BR - Branching version of inline asm. Used by asm-goto.
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ TRAP
TRAP - Trapping instruction.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
@ INSERT_VECTOR_ELT
INSERT_VECTOR_ELT(VECTOR, VAL, IDX) - Returns VECTOR with the element at IDX replaced with VAL.
@ TokenFactor
TokenFactor - This node takes multiple tokens as input and produces a single token result.
@ CTTZ_ZERO_POISON
Bit counting operators with a poisoned result for zero inputs.
@ FFREXP
FFREXP - frexp, extract fractional and exponent component of a floating-point value.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ INLINEASM
INLINEASM - Represents an inline asm block.
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
@ AssertSext
AssertSext, AssertZext - These nodes record if a register contains a value that has already been zero...
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ INTRINSIC_W_CHAIN
RESULT,OUTCHAIN = INTRINSIC_W_CHAIN(INCHAIN, INTRINSICID, arg1, ...) This node represents a target in...
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
bool isNormalStore(const SDNode *N)
Returns true if the specified node is a non-truncating and unindexed store.
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LoadExtType
LoadExtType enum - This enum defines the three variants of LOADEXT (load with extension).
bool isNormalLoad(const SDNode *N)
Returns true if the specified node is a non-extending and unindexed load.
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool isNullConstant(SDValue V)
Returns true if V is a constant integer zero.
@ Known
Known to have no common set bits.
LLVM_ABI void ComputeValueVTs(const TargetLowering &TLI, const DataLayout &DL, Type *Ty, SmallVectorImpl< EVT > &ValueVTs, SmallVectorImpl< EVT > *MemVTs=nullptr, SmallVectorImpl< TypeSize > *Offsets=nullptr, TypeSize StartingOffset=TypeSize::getZero())
ComputeValueVTs - Given an LLVM IR type, compute a sequence of EVTs that represent all the individual...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
bool CCAssignFn(unsigned ValNo, MVT ValVT, MVT LocVT, CCValAssign::LocInfo LocInfo, ISD::ArgFlagsTy ArgFlags, Type *OrigTy, CCState &State)
CCAssignFn - This function assigns a location for Val, updating State to reflect the change.
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
SDValue peekFPSignOps(SDValue Val)
Strip fabs/fneg/fcopysign from a value to get the underlying source.
LLVM_ABI ConstantFPSDNode * isConstOrConstSplatFP(SDValue N, bool AllowUndefs=false)
Returns the SDNode if it is a constant splat BuildVector or constant float.
uint64_t PowerOf2Ceil(uint64_t A)
Returns the power of two which is greater than or equal to the given value.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
int countl_zero(T Val)
Count number of 0's from the most significant bit to the least stopping at the first 1.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
constexpr uint32_t Hi_32(uint64_t Value)
Return the high 32 bits of a 64 bit value.
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
constexpr bool isUInt(uint64_t x)
Checks if an unsigned integer fits into the given bit width.
constexpr uint32_t Lo_32(uint64_t Value)
Return the low 32 bits of a 64 bit value.
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_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
To bit_cast(const From &from) noexcept
@ Mul
Product of integers.
@ Fast
Assign the register banks as fast as possible (default).
DWARFExpression::Operation Op
LLVM_ABI ConstantSDNode * isConstOrConstSplat(SDValue N, bool AllowUndefs=false, bool AllowTruncation=false)
Returns the SDNode if it is a constant splat BuildVector or constant int.
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isOneConstant(SDValue V)
Returns true if V is a constant integer one.
UndefPoisonKind
Enumeration to track whether we are interested in Undef, Poison, or both.
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
static cl::opt< unsigned > CostThreshold("dfa-cost-threshold", cl::desc("Maximum cost accepted for the transformation"), cl::Hidden, cl::init(50))
APFloat neg(APFloat X)
Returns the negated value of the argument.
unsigned Log2(Align A)
Returns the log2 of the alignment.
LLVM_ABI bool isAllOnesConstant(SDValue V)
Returns true if V is an integer constant with all bits set.
MCRegisterClass TargetRegisterClass
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
MCRegister getRegister() const
unsigned getStackOffset() const
DenormalModeKind Input
Denormal treatment kind for floating point instruction inputs in the default floating-point environme...
@ PreserveSign
The sign of a flushed-to-zero number is preserved in the sign of 0.
constexpr bool inputsAreZero() const
Return true if input denormals must be implicitly treated as 0.
static constexpr DenormalMode getPreserveSign()
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
EVT getPow2VectorType(LLVMContext &Context) const
Widens the length of the given vector EVT up to the nearest power of 2 and returns that type.
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT.
EVT changeTypeToInteger() const
Return the type converted to an equivalently sized integer or vector with integer element type.
bool bitsGT(EVT VT) const
Return true if this has more bits than VT.
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
bool isByteSized() const
Return true if the bit size is a multiple of 8.
uint64_t getScalarSizeInBits() const
EVT getHalfSizedIntegerVT(LLVMContext &Context) const
Finds the smallest simple value type that is greater than or equal to half the width of this EVT.
bool isPow2VectorType() const
Returns true if the given vector is a power of 2.
TypeSize getStoreSizeInBits() const
Return the number of bits overwritten by a store of the specified value type.
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
uint64_t getFixedSizeInBits() const
Return the size of the specified fixed width value type in bits.
EVT getRoundIntegerType(LLVMContext &Context) const
Rounds the bit-width of the given integer EVT up to the nearest power of two (and at least to eight),...
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.
bool bitsGE(EVT VT) const
Return true if this has no less bits than VT.
EVT getVectorElementType() const
Given a vector type, return the type of each element.
bool isExtended() const
Test if the given EVT is extended (as opposed to being simple).
EVT changeElementType(LLVMContext &Context, EVT EltVT) const
Return a VT for a type whose attributes match ourselves with the exception of the element type that i...
LLVM_ABI const fltSemantics & getFltSemantics() const
Returns an APFloat semantics tag appropriate for the value type.
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
bool bitsLE(EVT VT) const
Return true if this has no more bits than VT.
bool isInteger() const
Return true if this is an integer or a vector integer type.
bool isUnknown() const
Returns true if we don't know any bits.
KnownBits trunc(unsigned BitWidth) const
Return known bits for a truncation of the value we're tracking.
KnownBits zext(unsigned BitWidth) const
Return known bits for a zero extension of the value we're tracking.
unsigned countMaxActiveBits() const
Returns the maximum number of bits needed to represent all possible unsigned values with these known ...
KnownBits intersectWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for both this and RHS.
KnownBits sext(unsigned BitWidth) const
Return known bits for a sign extension of the value we're tracking.
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
bool isNegative() const
Returns true if this value is known to be negative.
static LLVM_ABI KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
bool signBitIsZeroOrNaN() const
Return true if the sign bit must be 0, ignoring the sign of nans.
This class contains a discriminated union of information about pointers in memory operands,...
LLVM_ABI bool isDereferenceable(unsigned Size, LLVMContext &C, const DataLayout &DL) const
Return true if memory region [V, V+Offset+Size) is known to be dereferenceable.
static LLVM_ABI MachinePointerInfo getStack(MachineFunction &MF, int64_t Offset, uint8_t ID=0)
Stack pointer relative access.
MachinePointerInfo getWithOffset(int64_t O) const
These are IR-level optimization flags that may be propagated to SDNodes.
void setAllowContract(bool b)
bool hasNoSignedZeros() const
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
DenormalMode FP32Denormals
If this is set, neither input or output denormals are flushed for most f32 instructions.
This structure contains all information that is necessary for lowering calls.
SmallVector< ISD::InputArg, 32 > Ins
bool isBeforeLegalizeOps() const
CombineLevel getDAGCombineLevel()
LLVM_ABI void AddToWorklist(SDNode *N)
bool isCalledByLegalizer() const
bool isBeforeLegalize() const
LLVM_ABI SDValue CombineTo(SDNode *N, ArrayRef< SDValue > To, bool AddTo=true)
LLVM_ABI void CommitTargetLoweringOpt(const TargetLoweringOpt &TLO)
A convenience struct that encapsulates a DAG, and two SDValues for returning information from TargetL...