52#define DEBUG_TYPE "legalizevectorops"
56class VectorLegalizer {
68 LegalizedNodes.
insert(std::make_pair(From, To));
71 LegalizedNodes.
insert(std::make_pair(To, To));
142 std::pair<SDValue, SDValue> ExpandLoad(
SDNode *
N);
206bool VectorLegalizer::Run() {
208 bool HasVectors =
false;
213 HasVectors =
llvm::any_of(
I->values(), [](EVT
T) { return T.isVector(); });
233 LegalizeOp(SDValue(&*
I, 0));
236 SDValue OldRoot = DAG.
getRoot();
237 assert(LegalizedNodes.count(OldRoot) &&
"Root didn't get legalized?");
238 DAG.
setRoot(LegalizedNodes[OldRoot]);
240 LegalizedNodes.clear();
248SDValue VectorLegalizer::TranslateLegalizeResults(SDValue
Op, SDNode *Result) {
250 "Unexpected number of results");
252 for (
unsigned i = 0, e =
Op->getNumValues(); i != e; ++i)
253 AddLegalizedOperand(
Op.getValue(i), SDValue(Result, i));
254 return SDValue(Result,
Op.getResNo());
258VectorLegalizer::RecursivelyLegalizeResults(SDValue
Op,
261 "Unexpected number of results");
263 for (
unsigned i = 0, e =
Results.
size(); i != e; ++i) {
265 AddLegalizedOperand(
Op.getValue(i),
Results[i]);
271SDValue VectorLegalizer::LegalizeOp(SDValue
Op) {
274 auto I = LegalizedNodes.find(
Op);
275 if (
I != LegalizedNodes.end())
return I->second;
279 for (
const SDValue &Oper :
Op->op_values())
280 Ops.push_back(LegalizeOp(Oper));
284 bool HasVectorValueOrOp =
287 [](SDValue O) { return O.getValueType().isVector(); });
288 if (!HasVectorValueOrOp)
289 return TranslateLegalizeResults(
Op, Node);
291 TargetLowering::LegalizeAction Action = TargetLowering::Legal;
293 switch (
Op.getOpcode()) {
295 return TranslateLegalizeResults(
Op, Node);
299 EVT LoadedVT =
LD->getMemoryVT();
302 LD->getAddressSpace(), ExtType,
false);
307 EVT StVT =
ST->getMemoryVT();
308 MVT ValVT =
ST->getValue().getSimpleValueType();
309 if (StVT.
isVector() &&
ST->isTruncatingStore())
311 ST->getAddressSpace());
318 if (Action == TargetLowering::Legal)
319 Action = TargetLowering::Expand;
321#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
322 case ISD::STRICT_##DAGN:
323#include "llvm/IR/ConstrainedOps.def"
324 ValVT =
Node->getValueType(0);
327 ValVT =
Node->getOperand(1).getValueType();
330 MVT OpVT =
Node->getOperand(1).getSimpleValueType();
333 if (Action == TargetLowering::Legal)
345 TargetLowering::Legal) {
348 == TargetLowering::Expand &&
350 == TargetLowering::Legal)
351 Action = TargetLowering::Legal;
503 unsigned Scale =
Node->getConstantOperandVal(2);
505 Node->getValueType(0), Scale);
535 Node->getOperand(0).getValueType());
540 Node->getOperand(1).getValueType());
543 MVT OpVT =
Node->getOperand(0).getSimpleValueType();
546 if (Action == TargetLowering::Legal)
556 Node->getOperand(1).getValueType());
559#define BEGIN_REGISTER_VP_SDNODE(VPID, LEGALPOS, ...) \
561 EVT LegalizeVT = LEGALPOS < 0 ? Node->getValueType(-(1 + LEGALPOS)) \
562 : Node->getOperand(LEGALPOS).getValueType(); \
564 if (!Node->getValueType(0).isVector() && \
565 Node->getValueType(0) != MVT::Other) { \
566 Action = TargetLowering::Legal; \
569 Action = TLI.getOperationAction(Node->getOpcode(), LegalizeVT); \
571#include "llvm/IR/VPIntrinsics.def"
579 case TargetLowering::Promote:
581 "This action is not supported yet!");
583 Promote(Node, ResultVals);
584 assert(!ResultVals.
empty() &&
"No results for promotion?");
586 case TargetLowering::Legal:
589 case TargetLowering::Custom:
591 if (LowerOperationWrapper(Node, ResultVals))
595 case TargetLowering::Expand:
597 Expand(Node, ResultVals);
601 if (ResultVals.
empty())
602 return TranslateLegalizeResults(
Op, Node);
605 return RecursivelyLegalizeResults(
Op, ResultVals);
610bool VectorLegalizer::LowerOperationWrapper(SDNode *Node,
611 SmallVectorImpl<SDValue> &
Results) {
617 if (Res == SDValue(Node, 0))
622 if (
Node->getNumValues() == 1) {
630 "Lowering returned the wrong number of results!");
633 for (
unsigned I = 0,
E =
Node->getNumValues();
I !=
E; ++
I)
639void VectorLegalizer::PromoteSETCC(SDNode *Node,
640 SmallVectorImpl<SDValue> &
Results) {
641 MVT VecVT =
Node->getOperand(0).getSimpleValueType();
657 if (ResVT !=
Node->getValueType(0))
662void VectorLegalizer::PromoteSTRICT(SDNode *Node,
663 SmallVectorImpl<SDValue> &
Results) {
664 MVT VecVT =
Node->getOperand(1).getSimpleValueType();
673 for (
unsigned j = 1;
j !=
Node->getNumOperands(); ++
j)
674 if (
Node->getOperand(j).getValueType().isVector() &&
681 {
Node->getOperand(0),
Node->getOperand(j)});
687 SDVTList VTs = DAG.
getVTList(NewVecVT,
Node->getValueType(1));
703void VectorLegalizer::PromoteFloatVECREDUCE(SDNode *Node,
704 SmallVectorImpl<SDValue> &
Results,
705 bool NonArithmetic) {
706 MVT OpVT =
Node->getOperand(0).getSimpleValueType();
721void VectorLegalizer::PromoteVECTOR_COMPRESS(
722 SDNode *Node, SmallVectorImpl<SDValue> &
Results) {
724 EVT VT =
Node->getValueType(0);
727 "Only integer promotion or bitcasts between types is supported");
729 SDValue Vec =
Node->getOperand(0);
731 SDValue Passthru =
Node->getOperand(2);
738 Passthru = DAG.
getBitcast(PromotedVT, Passthru);
748void VectorLegalizer::Promote(SDNode *Node, SmallVectorImpl<SDValue> &
Results) {
751 switch (
Node->getOpcode()) {
757 PromoteINT_TO_FP(Node,
Results);
764 PromoteFP_TO_INT(Node,
Results);
780 PromoteFloatVECREDUCE(Node,
Results,
false);
788 PromoteFloatVECREDUCE(Node,
Results,
true);
791 PromoteVECTOR_COMPRESS(Node,
Results);
807 "Can't promote a vector with multiple results!");
808 MVT VT =
Node->getSimpleValueType(0);
813 for (
unsigned j = 0;
j !=
Node->getNumOperands(); ++
j) {
817 if (
Node->getOperand(j).getValueType().isVector() && !SkipPromote)
818 if (
Node->getOperand(j)
820 .getVectorElementType()
821 .isFloatingPoint() &&
844void VectorLegalizer::PromoteINT_TO_FP(SDNode *Node,
845 SmallVectorImpl<SDValue> &
Results) {
848 bool IsStrict =
Node->isStrictFPOpcode();
849 MVT VT =
Node->getOperand(IsStrict ? 1 : 0).getSimpleValueType();
852 "Vectors have different number of elements!");
861 for (
unsigned j = 0;
j !=
Node->getNumOperands(); ++
j) {
862 if (
Node->getOperand(j).getValueType().isVector())
870 {Node->getValueType(0), MVT::Other},
Operands);
885void VectorLegalizer::PromoteFP_TO_INT(SDNode *Node,
886 SmallVectorImpl<SDValue> &
Results) {
887 MVT VT =
Node->getSimpleValueType(0);
889 bool IsStrict =
Node->isStrictFPOpcode();
891 "Vectors have different number of elements!");
893 unsigned NewOpc =
Node->getOpcode();
905 SDValue Promoted, Chain;
907 Promoted = DAG.
getNode(NewOpc, dl, {NVT, MVT::Other},
908 {
Node->getOperand(0),
Node->getOperand(1)});
911 Promoted = DAG.
getNode(NewOpc, dl, NVT,
Node->getOperand(0));
922 Promoted = DAG.
getNode(NewOpc, dl, NVT, Promoted,
930std::pair<SDValue, SDValue> VectorLegalizer::ExpandLoad(SDNode *
N) {
935SDValue VectorLegalizer::ExpandStore(SDNode *
N) {
941void VectorLegalizer::Expand(SDNode *Node, SmallVectorImpl<SDValue> &
Results) {
942 switch (
Node->getOpcode()) {
944 std::pair<SDValue, SDValue> Tmp = ExpandLoad(Node);
950 Results.push_back(ExpandStore(Node));
953 for (
unsigned i = 0, e =
Node->getNumValues(); i != e; ++i)
957 if (SDValue Expanded = ExpandSEXTINREG(Node)) {
963 Results.push_back(ExpandANY_EXTEND_VECTOR_INREG(Node));
966 Results.push_back(ExpandSIGN_EXTEND_VECTOR_INREG(Node));
969 Results.push_back(ExpandZERO_EXTEND_VECTOR_INREG(Node));
972 if (SDValue Expanded = ExpandBSWAP(Node)) {
978 if (SDValue Expanded = ExpandVSELECT(Node)) {
985 if (SDValue Expanded = ExpandVP_REM(Node)) {
991 if (SDValue Expanded = ExpandSELECT(Node)) {
997 if (
Node->getValueType(0).isScalableVector()) {
1002 Node->getOperand(1),
Node->getOperand(4));
1004 Node->getOperand(2),
1005 Node->getOperand(3)));
1011 ExpandFP_TO_UINT(Node,
Results);
1014 ExpandUINT_TO_FLOAT(Node,
Results);
1017 if (SDValue Expanded = ExpandFNEG(Node)) {
1023 if (SDValue Expanded = ExpandFABS(Node)) {
1029 if (SDValue Expanded = ExpandFCOPYSIGN(Node)) {
1038 EVT VT =
Node->getValueType(0);
1042 TargetLowering::Expand)
1057 if (SDValue Expanded = TLI.
expandABS(Node, DAG)) {
1064 if (SDValue Expanded = TLI.
expandABD(Node, DAG)) {
1073 if (SDValue Expanded = TLI.
expandAVG(Node, DAG)) {
1079 if (SDValue Expanded = ExpandBITREVERSE(Node)) {
1085 if (SDValue Expanded = TLI.
expandCTPOP(Node, DAG)) {
1092 if (SDValue Expanded = TLI.
expandCTLZ(Node, DAG)) {
1099 if (SDValue Expanded = TLI.
expandCTTZ(Node, DAG)) {
1114 if (SDValue Expanded = TLI.
expandCLMUL(Node, DAG)) {
1127 if (SDValue Expanded = TLI.
expandROT(Node,
false , DAG)) {
1158 ExpandUADDSUBO(Node,
Results);
1162 ExpandSADDSUBO(Node,
Results);
1170 if (SDValue Expanded = TLI.
expandMULH(Node, DAG)) {
1194 if (
Node->getValueType(0).isScalableVector()) {
1212 ExpandFixedPointDiv(Node,
Results);
1217#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
1218 case ISD::STRICT_##DAGN:
1219#include "llvm/IR/ConstrainedOps.def"
1220 ExpandStrictFPOp(Node,
Results);
1259 if (SDValue Expanded = ExpandVP_MERGE(Node)) {
1265 if (tryExpandVecMathCall(Node, RTLIB::getREM,
Results))
1270 EVT VT =
Node->getValueType(0);
1272 ? RTLIB::getSINCOS(VT)
1273 : RTLIB::getSINCOSPI(VT);
1274 if (LC != RTLIB::UNKNOWN_LIBCALL &&
1283 if (tryExpandVecMathCall(Node, RTLIB::getPOW,
Results))
1290 if (tryExpandVecMathCall(Node, RTLIB::getCBRT,
Results))
1297 EVT VT =
Node->getValueType(0);
1298 RTLIB::Libcall LC = RTLIB::getMODF(VT);
1299 if (LC != RTLIB::UNKNOWN_LIBCALL &&
1320 if (SDValue R = ExpandGET_ACTIVE_LANE_MASK(Node))
1325 Results.push_back(ExpandLOOP_DEPENDENCE_MASK(Node));
1361 Results.push_back(ExpandMaskedBinOp(Node));
1366 if (
Node->getNumValues() == 1) {
1370 "VectorLegalizer Expand returned wrong number of results!");
1376SDValue VectorLegalizer::ExpandSELECT(SDNode *Node) {
1380 EVT VT =
Node->getValueType(0);
1383 SDValue
Mask =
Node->getOperand(0);
1384 SDValue Op1 =
Node->getOperand(1);
1385 SDValue Op2 =
Node->getOperand(2);
1403 VT) == TargetLowering::Expand)
1424 SDValue NotMask = DAG.
getNOT(
DL, Mask, MaskTy);
1432SDValue VectorLegalizer::ExpandSEXTINREG(SDNode *Node) {
1433 EVT VT =
Node->getValueType(0);
1453SDValue VectorLegalizer::ExpandANY_EXTEND_VECTOR_INREG(SDNode *Node) {
1455 EVT VT =
Node->getValueType(0);
1457 SDValue Src =
Node->getOperand(0);
1458 EVT SrcVT = Src.getValueType();
1465 "ANY_EXTEND_VECTOR_INREG vector size mismatch");
1473 SmallVector<int, 16> ShuffleMask;
1474 ShuffleMask.
resize(NumSrcElements, -1);
1477 int ExtLaneScale = NumSrcElements / NumElements;
1479 for (
int i = 0; i < NumElements; ++i)
1480 ShuffleMask[i * ExtLaneScale + EndianOffset] = i;
1487SDValue VectorLegalizer::ExpandSIGN_EXTEND_VECTOR_INREG(SDNode *Node) {
1489 EVT VT =
Node->getValueType(0);
1490 SDValue Src =
Node->getOperand(0);
1491 EVT SrcVT = Src.getValueType();
1508SDValue VectorLegalizer::ExpandZERO_EXTEND_VECTOR_INREG(SDNode *Node) {
1510 EVT VT =
Node->getValueType(0);
1512 SDValue Src =
Node->getOperand(0);
1513 EVT SrcVT = Src.getValueType();
1520 "ZERO_EXTEND_VECTOR_INREG vector size mismatch");
1534 int ExtLaneScale = NumSrcElements / NumElements;
1536 for (
int i = 0; i < NumElements; ++i)
1537 ShuffleMask[i * ExtLaneScale + EndianOffset] = NumSrcElements + i;
1546 for (
int J = ScalarSizeInBytes - 1; J >= 0; --J)
1547 ShuffleMask.push_back((
I * ScalarSizeInBytes) + J);
1550SDValue VectorLegalizer::ExpandBSWAP(SDNode *Node) {
1551 EVT VT =
Node->getValueType(0);
1558 SmallVector<int, 16> ShuffleMask;
1583SDValue VectorLegalizer::ExpandBITREVERSE(SDNode *Node) {
1584 EVT VT =
Node->getValueType(0);
1598 if (ScalarSizeInBits > 8 && (ScalarSizeInBits % 8) == 0) {
1599 SmallVector<int, 16> BSWAPMask;
1631SDValue VectorLegalizer::ExpandVSELECT(SDNode *Node) {
1636 SDValue
Mask =
Node->getOperand(0);
1637 SDValue Op1 =
Node->getOperand(1);
1638 SDValue Op2 =
Node->getOperand(2);
1640 EVT VT =
Mask.getValueType();
1656 if (BoolContents != TargetLowering::ZeroOrNegativeOneBooleanContent &&
1657 !(BoolContents == TargetLowering::ZeroOrOneBooleanContent &&
1673 SDValue NotMask = DAG.
getNOT(
DL, Mask, VT);
1681SDValue VectorLegalizer::ExpandVP_MERGE(SDNode *Node) {
1688 SDValue
Mask =
Node->getOperand(0);
1689 SDValue Op1 =
Node->getOperand(1);
1690 SDValue Op2 =
Node->getOperand(2);
1691 SDValue EVL =
Node->getOperand(3);
1693 EVT MaskVT =
Mask.getValueType();
1710 EVLVecVT) != MaskVT)
1714 SDValue SplatEVL = DAG.
getSplat(EVLVecVT,
DL, EVL);
1716 DAG.
getSetCC(
DL, MaskVT, StepVec, SplatEVL, ISD::CondCode::SETULT);
1722SDValue VectorLegalizer::ExpandVP_REM(SDNode *Node) {
1724 EVT VT =
Node->getValueType(0);
1726 unsigned DivOpc =
Node->getOpcode() == ISD::VP_SREM ? ISD::VP_SDIV : ISD::VP_UDIV;
1735 SDValue Dividend =
Node->getOperand(0);
1736 SDValue Divisor =
Node->getOperand(1);
1737 SDValue
Mask =
Node->getOperand(2);
1738 SDValue EVL =
Node->getOperand(3);
1741 SDValue Div = DAG.
getNode(DivOpc,
DL, VT, Dividend, Divisor, Mask, EVL);
1746SDValue VectorLegalizer::ExpandGET_ACTIVE_LANE_MASK(SDNode *
N) {
1749 SDValue
Start =
N->getOperand(0);
1750 SDValue End =
N->getOperand(1);
1751 EVT VT =
N->getValueType(0);
1752 EVT OpVT =
Start.getValueType();
1761 SDValue StartV = DAG.
getSplat(PromoteVT,
DL, Start);
1767 SDValue EndV = DAG.
getSplat(PromoteVT,
DL, End);
1787SDValue VectorLegalizer::ExpandLOOP_DEPENDENCE_MASK(SDNode *
N) {
1791SDValue VectorLegalizer::ExpandMaskedBinOp(SDNode *
N) {
1796 EVT VT =
N->getValueType(0);
1798 dl, VT,
N->getOperand(2),
N->getOperand(1), DAG.
getConstant(1, dl, VT));
1800 N->getOperand(0), SafeDivisor);
1803void VectorLegalizer::ExpandFP_TO_UINT(SDNode *Node,
1804 SmallVectorImpl<SDValue> &
Results) {
1809 if (
Node->isStrictFPOpcode())
1815 if (
Node->isStrictFPOpcode()) {
1816 UnrollStrictFPOp(Node,
Results);
1823void VectorLegalizer::ExpandUINT_TO_FLOAT(SDNode *Node,
1824 SmallVectorImpl<SDValue> &
Results) {
1825 bool IsStrict =
Node->isStrictFPOpcode();
1826 unsigned OpNo = IsStrict ? 1 : 0;
1827 SDValue Src =
Node->getOperand(OpNo);
1828 EVT SrcVT = Src.getValueType();
1829 EVT DstVT =
Node->getValueType(0);
1844 TargetLowering::Expand) ||
1846 TargetLowering::Expand)) ||
1849 UnrollStrictFPOp(Node,
Results);
1858 assert((BW == 64 || BW == 32) &&
1859 "Elements in vector-UINT_TO_FP must be 32 or 64 bits wide");
1865 EVT FPVT = BW == 32 ? MVT::f32 : MVT::f64;
1872 {
Node->getOperand(0), Src});
1874 {
Node->getOperand(0), UIToFP, TargetZero});
1891 uint64_t HWMask = (BW == 64) ? 0x00000000FFFFFFFF : 0x0000FFFF;
1906 {
Node->getOperand(0),
HI});
1910 {
Node->getOperand(0),
LO});
1935SDValue VectorLegalizer::ExpandFNEG(SDNode *Node) {
1936 EVT VT =
Node->getValueType(0);
1955 if ((NumElts == 1 &&
1971SDValue VectorLegalizer::ExpandFABS(SDNode *Node) {
1972 EVT VT =
Node->getValueType(0);
1991 if ((NumElts == 1 &&
2007SDValue VectorLegalizer::ExpandFCOPYSIGN(SDNode *Node) {
2008 EVT VT =
Node->getValueType(0);
2011 if (VT !=
Node->getOperand(1).getValueType() ||
2029 if ((NumElts == 1 &&
2055void VectorLegalizer::ExpandFSUB(SDNode *Node,
2056 SmallVectorImpl<SDValue> &
Results) {
2060 EVT VT =
Node->getValueType(0);
2074void VectorLegalizer::ExpandSETCC(SDNode *Node,
2075 SmallVectorImpl<SDValue> &
Results) {
2076 bool NeedInvert =
false;
2080 unsigned Offset = IsStrict ? 1 : 0;
2082 SDValue Chain = IsStrict ?
Node->getOperand(0) : SDValue();
2087 MVT OpVT =
LHS.getSimpleValueType();
2092 UnrollStrictFPOp(Node,
Results);
2095 Results.push_back(UnrollVSETCC(Node));
2102 NeedInvert, dl, Chain, IsSignaling);
2110 {Chain, LHS, RHS, CC},
Node->getFlags());
2111 Chain =
LHS.getValue(1);
2123 assert(!IsStrict &&
"Don't know how to expand for strict nodes.");
2127 EVT VT =
Node->getValueType(0);
2131 CC,
Node->getFlags());
2139void VectorLegalizer::ExpandUADDSUBO(SDNode *Node,
2140 SmallVectorImpl<SDValue> &
Results) {
2141 SDValue
Result, Overflow;
2147void VectorLegalizer::ExpandSADDSUBO(SDNode *Node,
2148 SmallVectorImpl<SDValue> &
Results) {
2149 SDValue
Result, Overflow;
2155void VectorLegalizer::ExpandMULO(SDNode *Node,
2156 SmallVectorImpl<SDValue> &
Results) {
2157 SDValue
Result, Overflow;
2158 if (!TLI.
expandMULO(Node, Result, Overflow, DAG))
2165void VectorLegalizer::ExpandFixedPointDiv(SDNode *Node,
2166 SmallVectorImpl<SDValue> &
Results) {
2169 N->getOperand(0),
N->getOperand(1),
N->getConstantOperandVal(2), DAG))
2173void VectorLegalizer::ExpandStrictFPOp(SDNode *Node,
2174 SmallVectorImpl<SDValue> &
Results) {
2176 ExpandUINT_TO_FLOAT(Node,
Results);
2180 ExpandFP_TO_UINT(Node,
Results);
2190 UnrollStrictFPOp(Node,
Results);
2193void VectorLegalizer::ExpandREM(SDNode *Node,
2194 SmallVectorImpl<SDValue> &
Results) {
2196 "Expected REM node");
2210bool VectorLegalizer::tryExpandVecMathCall(
2211 SDNode *Node, function_ref<RTLIB::Libcall(EVT)> GetLibcall,
2212 SmallVectorImpl<SDValue> &
Results) {
2215 assert(!
Node->isStrictFPOpcode() &&
"Unexpected strict fp operation!");
2217 EVT VT =
Node->getValueType(0);
2219 const LibcallLoweringInfo &Libcalls = DAG.
getLibcalls();
2223 RTLIB::LibcallImpl LCImpl = Libcalls.
getLibcallImpl(GetLibcall(CallVT));
2226 while (LCImpl == RTLIB::Unsupported) {
2240 TargetLowering::ArgListTy
Args;
2245 assert(FuncTy->getNumParams() ==
Node->getNumOperands() + HasMaskArg &&
2246 EVT::getEVT(FuncTy->getReturnType(),
true) == CallVT &&
2247 "mismatch in value type and call signature type");
2249 for (
unsigned I = 0,
E = FuncTy->getNumParams();
I !=
E; ++
I) {
2250 Type *ParamTy = FuncTy->getParamType(
I);
2252 if (HasMaskArg &&
I ==
E - 1) {
2256 "unexpected vector mask type");
2265 Args.emplace_back(Mask, ParamTy);
2267 SDValue
Op =
Node->getOperand(
I);
2268 assert(
Op.getValueType() == VT &&
"mismatch in vector types");
2270 unsigned NumConcat =
2276 "mismatch in value type and call argument type");
2277 Args.emplace_back(
Op, ParamTy);
2286 TargetLowering::CallLoweringInfo CLI(DAG);
2289 .setLibCallee(CC, FuncTy->getReturnType(), Callee, std::move(Args));
2291 std::pair<SDValue, SDValue> CallResult = TLI.
LowerCallTo(CLI);
2292 SDValue
Result = CallResult.first;
2299void VectorLegalizer::UnrollStrictFPOp(SDNode *Node,
2300 SmallVectorImpl<SDValue> &
Results) {
2301 EVT VT =
Node->getValueType(0);
2304 unsigned NumOpers =
Node->getNumOperands();
2307 EVT TmpEltVT = EltVT;
2313 EVT ValueVTs[] = {TmpEltVT, MVT::Other};
2314 SDValue Chain =
Node->getOperand(0);
2319 for (
unsigned i = 0; i < NumElems; ++i) {
2327 for (
unsigned j = 1;
j < NumOpers; ++
j) {
2328 SDValue Oper =
Node->getOperand(j);
2338 SDValue ScalarOp = DAG.
getNode(
Node->getOpcode(), dl, ValueVTs, Opers);
2339 SDValue ScalarResult = ScalarOp.
getValue(0);
2340 SDValue ScalarChain = ScalarOp.
getValue(1);
2344 ScalarResult = DAG.
getSelect(dl, EltVT, ScalarResult,
2359SDValue VectorLegalizer::UnrollVSETCC(SDNode *Node) {
2360 EVT VT =
Node->getValueType(0);
2363 SDValue
LHS =
Node->getOperand(0);
2364 SDValue
RHS =
Node->getOperand(1);
2365 SDValue CC =
Node->getOperand(2);
2366 EVT TmpEltVT =
LHS.getValueType().getVectorElementType();
2369 for (
unsigned i = 0; i < NumElems; ++i) {
2378 LHSElem, RHSElem, CC);
2387 return VectorLegalizer(*this).Run();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Function Alias Analysis Results
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file defines the DenseMap class.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static void createBSWAPShuffleMask(EVT VT, SmallVectorImpl< int > &ShuffleMask)
This file defines the SmallVector class.
This file describes how to lower LLVM code to machine code.
static APInt getSignMask(unsigned BitWidth)
Get the SignMask for a specific bit width.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
constexpr bool isScalar() const
Exactly one element.
RTLIB::LibcallImpl getLibcallImpl(RTLIB::Libcall Call) const
Return the lowering's selection of implementation call for Call.
const Triple & getTargetTriple() const
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
TypeSize getSizeInBits() const
Returns the size of the specified MVT in bits.
MVT getVectorElementType() const
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.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
Represents one node in the SelectionDAG.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
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
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.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
const SDValue & getRoot() const
Return the root tag of the SelectionDAG.
const TargetSubtargetInfo & getSubtarget() const
LLVM_ABI SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
LLVM_ABI SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
LLVM_ABI bool LegalizeVectors()
This transforms the SelectionDAG into a SelectionDAG that only uses vector math operations supported ...
LLVM_ABI SDValue UnrollVectorOp(SDNode *N, unsigned ResNE=0)
Utility function used by legalize and lowering to "unroll" a vector operation by splitting out the sc...
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
SDValue getExtractSubvector(const SDLoc &DL, EVT VT, SDValue Vec, unsigned Idx)
Return the VT typed sub-vector of Vec at Idx.
SDValue getInsertSubvector(const SDLoc &DL, SDValue Vec, SDValue SubVec, unsigned Idx)
Insert SubVec at the Idx element of Vec.
LLVM_ABI SDValue getStepVector(const SDLoc &DL, EVT ResVT, const APInt &StepVal)
Returns a vector of type ResVT whose elements contain the linear sequence <0, Step,...
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
LLVM_ABI std::pair< SDValue, SDValue > UnrollVectorOverflowOp(SDNode *N, unsigned ResNE=0)
Like UnrollVectorOp(), but for the [US](ADD|SUB|MUL)O family of opcodes.
allnodes_const_iterator allnodes_begin() const
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
allnodes_const_iterator allnodes_end() const
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 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...
const DataLayout & getDataLayout() const
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 RemoveDeadNodes()
This method deletes all unreachable nodes in the SelectionDAG.
LLVM_ABI SDValue getBoolExtOrTrunc(SDValue Op, const SDLoc &SL, EVT VT, EVT OpVT)
Convert Op, which must be of integer type, to the integer type VT, by using an extension appropriate ...
LLVM_ABI SDValue getExternalSymbol(const char *Sym, EVT VT)
const LibcallLoweringInfo & getLibcalls() const
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 unsigned AssignTopologicalOrder()
Topological-sort the AllNodes list and a assign a unique node id for each node in the DAG based on th...
LLVM_ABI SDValue getBoolConstant(bool V, const SDLoc &DL, EVT VT, EVT OpVT)
Create a true or false constant of type VT using the target's BooleanContent for type OpVT.
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
SDValue getPOISON(EVT VT)
Return a POISON node. POISON does not have a useful SDLoc.
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.
SDValue getSplat(EVT VT, const SDLoc &DL, SDValue Op)
Returns a node representing a splat of one value into all lanes of the provided vector type.
LLVM_ABI SDValue getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1, SDValue N2, ArrayRef< int > Mask)
Return an ISD::VECTOR_SHUFFLE node.
LLVM_ABI SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a logical NOT operation as (XOR Val, BooleanOne).
ilist< SDNode >::iterator allnodes_iterator
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void push_back(const T &Elt)
virtual bool isShuffleMaskLegal(ArrayRef< int >, EVT) const
Targets can use this to indicate that they only support some VECTOR_SHUFFLE operations,...
SDValue promoteTargetBoolean(SelectionDAG &DAG, SDValue Bool, EVT ValVT) const
Promote the given target boolean to a target boolean of the given type.
LegalizeAction getCondCodeAction(ISD::CondCode CC, MVT VT) const
Return how the condition code should be treated: either it is legal, needs to be expanded to some oth...
LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT, Align Alignment, unsigned AddrSpace) const
Return how this store with truncation should be treated: either it is legal, needs to be promoted to ...
virtual bool isExtractVecEltCheap(EVT VT, unsigned Index) const
Return true if extraction of a scalar element from the given vector type at the given index is cheap.
LegalizeAction getFixedPointOperationAction(unsigned Op, EVT VT, unsigned Scale) const
Some fixed point operations may be natively supported by the target but only for specific scales.
bool isStrictFPEnabled() const
Return true if the target support strict float operation.
virtual EVT getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const
Return the ValueType of the result of SETCC operations.
BooleanContent getBooleanContents(bool isVec, bool isFloat) const
For targets without i1 registers, this gives the nature of the high-bits of boolean values held in ty...
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
bool isOperationLegalOrCustom(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal with custom lower...
LegalizeAction getPartialReduceMLAAction(unsigned Opc, EVT AccVT, EVT InputVT) const
Return how a PARTIAL_REDUCE_U/SMLA node with Acc type AccVT and Input type InputVT should be treated.
LegalizeAction getLoadAction(EVT ValVT, EVT MemVT, Align Alignment, unsigned AddrSpace, unsigned ExtType, bool Atomic) const
Return how this load with extension should be treated: either it is legal, needs to be promoted to a ...
LegalizeAction getStrictFPOperationAction(unsigned Op, EVT VT) const
LegalizeAction getOperationAction(unsigned Op, EVT VT) const
Return how this operation should be treated: either it is legal, needs to be promoted to a larger siz...
MVT getTypeToPromoteTo(unsigned Op, MVT VT) const
If the action for this operation is to promote, this method returns the ValueType to promote to.
bool isOperationLegalOrCustomOrPromote(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal with custom lower...
const RTLIB::RuntimeLibcallsInfo & getRuntimeLibcallsInfo() const
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
SDValue expandAddSubSat(SDNode *Node, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US][ADD|SUB]SAT.
bool expandMultipleResultFPLibCall(SelectionDAG &DAG, RTLIB::Libcall LC, SDNode *Node, SmallVectorImpl< SDValue > &Results, std::optional< unsigned > CallRetResNo={}) const
Expands a node with multiple results to an FP or vector libcall.
bool expandMULO(SDNode *Node, SDValue &Result, SDValue &Overflow, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US]MULO.
bool LegalizeSetCCCondCode(SelectionDAG &DAG, EVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC, bool &NeedInvert, const SDLoc &dl, SDValue &Chain, bool IsSignaling=false) const
Legalize a SETCC with given LHS and RHS and condition code CC on the current target.
SDValue scalarizeVectorStore(StoreSDNode *ST, SelectionDAG &DAG) const
SDValue expandVecReduceSeq(SDNode *Node, SelectionDAG &DAG) const
Expand a VECREDUCE_SEQ_* into an explicit ordered calculation.
SDValue expandFCANONICALIZE(SDNode *Node, SelectionDAG &DAG) const
Expand FCANONICALIZE to FMUL with 1.
SDValue expandCTLZ(SDNode *N, SelectionDAG &DAG) const
Expand CTLZ/CTLZ_ZERO_POISON nodes.
SDValue expandBITREVERSE(SDNode *N, SelectionDAG &DAG) const
Expand BITREVERSE nodes.
SDValue expandCTTZ(SDNode *N, SelectionDAG &DAG) const
Expand CTTZ/CTTZ_ZERO_POISON nodes.
SDValue expandABD(SDNode *N, SelectionDAG &DAG) const
Expand ABDS/ABDU nodes.
SDValue expandCLMUL(SDNode *N, SelectionDAG &DAG) const
Expand carryless multiply.
SDValue expandShlSat(SDNode *Node, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US]SHLSAT.
SDValue expandFP_TO_INT_SAT(SDNode *N, SelectionDAG &DAG) const
Expand FP_TO_[US]INT_SAT into FP_TO_[US]INT and selects or min/max.
SDValue expandCttzElts(SDNode *Node, SelectionDAG &DAG) const
Expand a CTTZ_ELTS or CTTZ_ELTS_ZERO_POISON by calculating (VL - i) for each active lane (i),...
void expandSADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::S(ADD|SUB)O.
SDValue expandABS(SDNode *N, SelectionDAG &DAG, bool IsNegative=false) const
Expand ABS nodes.
SDValue expandVecReduce(SDNode *Node, SelectionDAG &DAG) const
Expand a VECREDUCE_* into an explicit calculation.
SDValue expandMULH(SDNode *Node, SelectionDAG &DAG) const
bool expandFP_TO_UINT(SDNode *N, SDValue &Result, SDValue &Chain, SelectionDAG &DAG) const
Expand float to UINT conversion.
bool expandREM(SDNode *Node, SDValue &Result, SelectionDAG &DAG) const
Expand an SREM or UREM using SDIV/UDIV or SDIVREM/UDIVREM, if legal.
SDValue expandFMINIMUMNUM_FMAXIMUMNUM(SDNode *N, SelectionDAG &DAG) const
Expand fminimumnum/fmaximumnum into multiple comparison with selects.
SDValue expandLoopDependenceMask(SDNode *N, SelectionDAG &DAG) const
Expand LOOP_DEPENDENCE_MASK nodes.
SDValue expandCTPOP(SDNode *N, SelectionDAG &DAG) const
Expand CTPOP nodes.
SDValue expandVectorNaryOpBySplitting(SDNode *Node, SelectionDAG &DAG) const
std::pair< SDValue, SDValue > LowerCallTo(CallLoweringInfo &CLI) const
This function lowers an abstract call to a function into an actual call.
SDValue expandBSWAP(SDNode *N, SelectionDAG &DAG) const
Expand BSWAP nodes.
SDValue expandFMINIMUM_FMAXIMUM(SDNode *N, SelectionDAG &DAG) const
Expand fminimum/fmaximum into multiple comparison with selects.
std::pair< SDValue, SDValue > scalarizeVectorLoad(LoadSDNode *LD, SelectionDAG &DAG) const
Turn load of vector type into a load of the individual elements.
SDValue expandVectorMatch(SDNode *N, SelectionDAG &DAG) const
Expand VECTOR_MATCH nodes.
SDValue expandCONVERT_TO_ARBITRARY_FP(SDNode *Node, SelectionDAG &DAG) const
Expand CONVERT_TO_ARBITRARY_FP using bit manipulation.
SDValue expandFunnelShift(SDNode *N, SelectionDAG &DAG) const
Expand funnel shift.
virtual SDValue LowerOperation(SDValue Op, SelectionDAG &DAG) const
This callback is invoked for operations that are unsupported by the target, which are registered to u...
SDValue expandFixedPointDiv(unsigned Opcode, const SDLoc &dl, SDValue LHS, SDValue RHS, unsigned Scale, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US]DIVFIX[SAT].
SDValue expandPEXT(SDNode *N, SelectionDAG &DAG) const
Expand parallel bit extract (compress).
SDValue expandVECTOR_COMPRESS(SDNode *Node, SelectionDAG &DAG) const
Expand a vector VECTOR_COMPRESS into a sequence of extract element, store temporarily,...
SDValue expandCONVERT_FROM_ARBITRARY_FP(SDNode *Node, SelectionDAG &DAG) const
Expand CONVERT_FROM_ARBITRARY_FP using bit manipulation.
SDValue expandROT(SDNode *N, bool AllowVectorOps, SelectionDAG &DAG) const
Expand rotations.
SDValue expandFMINNUM_FMAXNUM(SDNode *N, SelectionDAG &DAG) const
Expand fminnum/fmaxnum into fminnum_ieee/fmaxnum_ieee with quieted inputs.
SDValue expandCMP(SDNode *Node, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US]CMP.
SDValue expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[U|S]MULFIX[SAT].
SDValue expandIntMINMAX(SDNode *Node, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::[US][MIN|MAX].
SDValue expandVectorFindLastActive(SDNode *N, SelectionDAG &DAG) const
Expand VECTOR_FIND_LAST_ACTIVE nodes.
SDValue expandPartialReduceMLA(SDNode *Node, SelectionDAG &DAG) const
Expands PARTIAL_REDUCE_S/UMLA nodes to a series of simpler operations, consisting of zext/sext,...
void expandUADDSUBO(SDNode *Node, SDValue &Result, SDValue &Overflow, SelectionDAG &DAG) const
Method for building the DAG expansion of ISD::U(ADD|SUB)O.
SDValue expandPDEP(SDNode *N, SelectionDAG &DAG) const
Expand parallel bit deposit (expand).
bool expandUINT_TO_FP(SDNode *N, SDValue &Result, SDValue &Chain, SelectionDAG &DAG) const
Expand UINT(i64) to double(f64) conversion.
SDValue expandAVG(SDNode *N, SelectionDAG &DAG) const
Expand vector/scalar AVGCEILS/AVGCEILU/AVGFLOORS/AVGFLOORU nodes.
An efficient, type-erasing, non-owning reference to a callable.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
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.
@ SETCC
SetCC operator - This evaluates to a true value iff the condition is true.
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
@ PARTIAL_REDUCE_SMLA
PARTIAL_REDUCE_[U|S]MLA(Accumulator, Input1, Input2) The partial reduction nodes sign or zero extend ...
@ LOOP_DEPENDENCE_RAW_MASK
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ SMUL_LOHI
SMUL_LOHI/UMUL_LOHI - Multiply two integers of type iN, producing a signed/unsigned value of type i[2...
@ BSWAP
Byte Swap and Counting operators.
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
@ 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...
@ SMULFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
@ ANY_EXTEND
ANY_EXTEND - Used for integer types. The high bits are undefined.
@ CTTZ_ELTS
Returns the number of number of trailing (least significant) zero elements in a vector.
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ VECTOR_FIND_LAST_ACTIVE
Finds the index of the last active mask element Operands: Mask.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ 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 ...
@ VECREDUCE_FMAX
FMIN/FMAX nodes can have flags, for NaN/NoNaN variants.
@ FADD
Simple binary floating point operators.
@ VECREDUCE_FMAXIMUM
FMINIMUM/FMAXIMUM nodes propatate NaNs and signed zeroes using the llvm.minimum and llvm....
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
@ SIGN_EXTEND_VECTOR_INREG
SIGN_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register sign-extension of the low ...
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
@ FPTRUNC_ROUND
FPTRUNC_ROUND - This corresponds to the fptrunc_round intrinsic.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ CLMUL
Carry-less multiplication operations.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ SDIVFIX
RESULT = [US]DIVFIX(LHS, RHS, SCALE) - Perform fixed point division on 2 integers with the same width...
@ STRICT_FSQRT
Constrained versions of libm-equivalent floating point intrinsics.
@ CONVERT_FROM_ARBITRARY_FP
CONVERT_FROM_ARBITRARY_FP - This operator converts from an arbitrary floating-point represented as an...
@ SIGN_EXTEND
Conversion operators.
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ VECREDUCE_FMAXIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM nodes do not propagate NaNs and order signed zeroes using the llvm....
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ SSUBO
Same for subtraction.
@ STEP_VECTOR
STEP_VECTOR(IMM) - Returns a scalable vector whose lanes are comprised of a linear sequence of unsign...
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
@ VECREDUCE_ADD
Integer reductions may have a result type larger than the vector element type.
@ MULHU
MULHU/MULHS - Multiply high - Multiply two integers of type iN, producing an unsigned/signed value of...
@ SHL
Shift and rotation operations.
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ EXTRACT_VECTOR_ELT
EXTRACT_VECTOR_ELT(VECTOR, IDX) - Returns a single element from VECTOR identified by the (potentially...
@ 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...
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
@ SMULO
Same for multiplication.
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
@ 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.
@ MASKED_UDIV
Masked vector arithmetic that returns poison on disabled lanes.
@ SDIVFIXSAT
Same as the corresponding unsaturated fixed point instructions, but the result is clamped between the...
@ 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...
@ STRICT_SINT_TO_FP
STRICT_[US]INT_TO_FP - Convert a signed or unsigned integer to a floating point value.
@ MGATHER
Masked gather and scatter - load and store operations for a vector of random addresses with additiona...
@ PEXT
Parallel bit extract (compress) and parallel bit deposit (expand).
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
@ STRICT_FP_TO_SINT
STRICT_FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
@ 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.
@ STRICT_FP_EXTEND
X = STRICT_FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
@ AVGFLOORS
AVGFLOORS/AVGFLOORU - Averaging add - Add two integers using an integer of type i[N+1],...
@ VECTOR_MATCH
VECTOR_MATCH - this corresponds to the llvm.experimental.vector.match intrinsic.
@ STRICT_FADD
Constrained versions of the binary floating point operators.
@ 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 ...
@ VECTOR_COMPRESS
VECTOR_COMPRESS(Vec, Mask, Passthru) consecutively place vector elements based on mask e....
@ ZERO_EXTEND_VECTOR_INREG
ZERO_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register zero-extension of the low ...
@ 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.
@ CONVERT_TO_ARBITRARY_FP
CONVERT_TO_ARBITRARY_FP - Converts a native FP value to an arbitrary floating-point format,...
@ 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.
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
@ ABS_MIN_POISON
ABS with a poison result for INT_MIN.
@ BUILD_VECTOR
BUILD_VECTOR(ELT0, ELT1, ELT2, ELT3,...) - Return a fixed-width vector with the specified,...
@ LOOP_DEPENDENCE_WAR_MASK
The llvm.loop.dependence.
LLVM_ABI NodeType getUnmaskedBinOpOpcode(unsigned MaskedOpc)
Given a MaskedOpc of ISD::MASKED_(U|S)(DIV|REM), returns the unmasked ISD::(U|S)(DIV|REM).
LLVM_ABI std::optional< unsigned > getVPMaskIdx(unsigned Opcode)
The operand position of the vector mask.
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).
LLVM_ABI bool isVPOpcode(unsigned Opcode)
Whether this is a vector-predicated Opcode.
NodeAddr< NodeBase * > Node
This is an optimization pass for GlobalISel generic memory operations.
constexpr uint64_t maxUIntN(uint64_t N)
Gets the maximum value for a N-bit unsigned integer.
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
SmallVector< ValueTypeFromRangeType< R >, Size > to_vector(R &&Range)
Given a range of type R, iterate the entire range and return a SmallVector with elements of the vecto...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
MutableArrayRef(T &OneElt) -> MutableArrayRef< T >
@ Xor
Bitwise or logical XOR of integers.
DWARFExpression::Operation Op
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
constexpr auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
EVT changeVectorElementTypeToInteger() const
Return a vector with the same number of elements as this vector, but with the element type converted ...
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.
ElementCount getVectorElementCount() const
EVT getDoubleNumVectorElementsVT(LLVMContext &Context) const
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
unsigned getVectorMinNumElements() const
Given a vector type, return the minimum number of elements it contains.
uint64_t getScalarSizeInBits() const
static LLVM_ABI EVT getEVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
EVT changeVectorElementType(LLVMContext &Context, EVT EltVT) const
Return a VT for a vector type whose attributes match ourselves with the exception of the element type...
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
EVT changeVectorElementCount(LLVMContext &Context, ElementCount EC) const
Return a VT for a vector type whose attributes match ourselves with the exception of the element coun...
bool isFixedLengthVector() const
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 isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
EVT getVectorElementType() const
Given a vector type, return the type of each element.
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.
CallingConv::ID getLibcallImplCallingConv(RTLIB::LibcallImpl Call) const
Get the CallingConv that should be used for the specified libcall.
LLVM_ABI std::pair< FunctionType *, AttributeList > getFunctionTy(LLVMContext &Ctx, const Triple &TT, const DataLayout &DL, RTLIB::LibcallImpl LibcallImpl) const
static LLVM_ABI bool hasVectorMaskArgument(RTLIB::LibcallImpl Impl)
Returns true if the function has a vector mask argument, which is assumed to be the last argument.