99void SelectionDAG::DAGNodeDeletedListener::anchor() {}
100void SelectionDAG::DAGNodeInsertedListener::anchor() {}
102#define DEBUG_TYPE "selectiondag"
106 cl::desc(
"Gang up loads and stores generated by inlining of memcpy"));
109 cl::desc(
"Number limit for gluing ld/st of memcpy."),
114 cl::desc(
"DAG combiner limit number of steps when searching DAG "
115 "for predecessor nodes"));
153 if (
auto OptAPInt =
N->getOperand(0)->bitcastToAPInt()) {
155 N->getValueType(0).getVectorElementType().getSizeInBits();
156 SplatVal = OptAPInt->
trunc(EltSize);
166 unsigned SplatBitSize;
168 unsigned EltSize =
N->getValueType(0).getVectorElementType().getSizeInBits();
173 const bool IsBigEndian =
false;
174 return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs,
175 EltSize, IsBigEndian) &&
176 EltSize == SplatBitSize;
185 N =
N->getOperand(0).getNode();
194 unsigned i = 0, e =
N->getNumOperands();
197 while (i != e &&
N->getOperand(i).isUndef())
201 if (i == e)
return false;
213 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
214 if (OptAPInt->countr_one() < EltSize)
222 for (++i; i != e; ++i)
223 if (
N->getOperand(i) != NotZero && !
N->getOperand(i).isUndef())
231 N =
N->getOperand(0).getNode();
240 bool IsAllUndef =
true;
253 if (
auto OptAPInt =
Op->bitcastToAPInt()) {
254 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
255 if (OptAPInt->countr_zero() < EltSize)
303 assert(
N->getValueType(0).isVector() &&
"Expected a vector!");
305 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
306 if (EltSize <= NewEltSize)
310 return (
N->getOperand(0).getValueType().getScalarSizeInBits() <=
315 return (
N->getOperand(0).getValueType().getScalarSizeInBits() <=
328 APInt C =
Op->getAsAPIntVal().trunc(EltSize);
329 if (
Signed &&
C.trunc(NewEltSize).sext(EltSize) !=
C)
331 if (!
Signed &&
C.trunc(NewEltSize).zext(EltSize) !=
C)
342 if (
N->getNumOperands() == 0)
348 return N->getOpcode() ==
ISD::FREEZE &&
N->getOperand(0).isUndef();
351template <
typename ConstNodeType>
353 std::function<
bool(ConstNodeType *)> Match,
354 bool AllowUndefs,
bool AllowTruncation) {
364 EVT SVT =
Op.getValueType().getScalarType();
365 for (
unsigned i = 0, e =
Op.getNumOperands(); i != e; ++i) {
366 if (AllowUndefs &&
Op.getOperand(i).isUndef()) {
373 if (!Cst || (!AllowTruncation && Cst->getValueType(0) != SVT) ||
388 bool AllowUndefs,
bool AllowTypeMismatch) {
389 if (!AllowTypeMismatch && LHS.getValueType() != RHS.getValueType())
395 return Match(LHSCst, RHSCst);
398 if (LHS.getOpcode() != RHS.getOpcode() ||
404 for (
unsigned i = 0, e = LHS.getNumOperands(); i != e; ++i) {
407 bool LHSUndef = AllowUndefs && LHSOp.
isUndef();
408 bool RHSUndef = AllowUndefs && RHSOp.
isUndef();
411 if ((!LHSCst && !LHSUndef) || (!RHSCst && !RHSUndef))
413 if (!AllowTypeMismatch && (LHSOp.
getValueType() != SVT ||
416 if (!Match(LHSCst, RHSCst))
453 switch (VecReduceOpcode) {
458 case ISD::VP_REDUCE_FADD:
459 case ISD::VP_REDUCE_SEQ_FADD:
463 case ISD::VP_REDUCE_FMUL:
464 case ISD::VP_REDUCE_SEQ_FMUL:
467 case ISD::VP_REDUCE_ADD:
470 case ISD::VP_REDUCE_MUL:
473 case ISD::VP_REDUCE_AND:
476 case ISD::VP_REDUCE_OR:
479 case ISD::VP_REDUCE_XOR:
482 case ISD::VP_REDUCE_SMAX:
485 case ISD::VP_REDUCE_SMIN:
488 case ISD::VP_REDUCE_UMAX:
491 case ISD::VP_REDUCE_UMIN:
494 case ISD::VP_REDUCE_FMAX:
497 case ISD::VP_REDUCE_FMIN:
500 case ISD::VP_REDUCE_FMAXIMUM:
503 case ISD::VP_REDUCE_FMINIMUM:
512#define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) \
515#include "llvm/IR/VPIntrinsics.def"
523#define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) case ISD::VPSD:
524#define VP_PROPERTY_BINARYOP return true;
525#define END_REGISTER_VP_SDNODE(VPSD) break;
526#include "llvm/IR/VPIntrinsics.def"
535 case ISD::VP_REDUCE_ADD:
536 case ISD::VP_REDUCE_MUL:
537 case ISD::VP_REDUCE_AND:
538 case ISD::VP_REDUCE_OR:
539 case ISD::VP_REDUCE_XOR:
540 case ISD::VP_REDUCE_SMAX:
541 case ISD::VP_REDUCE_SMIN:
542 case ISD::VP_REDUCE_UMAX:
543 case ISD::VP_REDUCE_UMIN:
544 case ISD::VP_REDUCE_FMAX:
545 case ISD::VP_REDUCE_FMIN:
546 case ISD::VP_REDUCE_FMAXIMUM:
547 case ISD::VP_REDUCE_FMINIMUM:
548 case ISD::VP_REDUCE_FADD:
549 case ISD::VP_REDUCE_FMUL:
550 case ISD::VP_REDUCE_SEQ_FADD:
551 case ISD::VP_REDUCE_SEQ_FMUL:
561#define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, ...) \
564#include "llvm/IR/VPIntrinsics.def"
573#define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, EVLPOS) \
576#include "llvm/IR/VPIntrinsics.def"
586#define BEGIN_REGISTER_VP_SDNODE(VPOPC, ...) case ISD::VPOPC:
587#define VP_PROPERTY_FUNCTIONAL_SDOPC(SDOPC) return ISD::SDOPC;
588#define END_REGISTER_VP_SDNODE(VPOPC) break;
589#include "llvm/IR/VPIntrinsics.def"
598#define BEGIN_REGISTER_VP_SDNODE(VPOPC, ...) break;
599#define VP_PROPERTY_FUNCTIONAL_SDOPC(SDOPC) case ISD::SDOPC:
600#define END_REGISTER_VP_SDNODE(VPOPC) return ISD::VPOPC;
601#include "llvm/IR/VPIntrinsics.def"
648 bool isIntegerLike) {
673 bool IsInteger =
Type.isInteger();
678 unsigned Op = Op1 | Op2;
694 bool IsInteger =
Type.isInteger();
729 ID.AddPointer(VTList.
VTs);
735 for (
const auto &
Op :
Ops) {
736 ID.AddPointer(
Op.getNode());
737 ID.AddInteger(
Op.getResNo());
744 for (
const auto &
Op :
Ops) {
745 ID.AddPointer(
Op.getNode());
746 ID.AddInteger(
Op.getResNo());
759 switch (
N->getOpcode()) {
768 ID.AddPointer(
C->getConstantIntValue());
769 ID.AddBoolean(
C->isOpaque());
833 ID.AddInteger(LD->getMemoryVT().getRawBits());
834 ID.AddInteger(LD->getRawSubclassData());
835 ID.AddInteger(LD->getPointerInfo().getAddrSpace());
836 ID.AddInteger(LD->getMemOperand()->getFlags());
841 ID.AddInteger(ST->getMemoryVT().getRawBits());
842 ID.AddInteger(ST->getRawSubclassData());
843 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
844 ID.AddInteger(ST->getMemOperand()->getFlags());
855 case ISD::VP_LOAD_FF: {
857 ID.AddInteger(LD->getMemoryVT().getRawBits());
858 ID.AddInteger(LD->getRawSubclassData());
859 ID.AddInteger(LD->getPointerInfo().getAddrSpace());
860 ID.AddInteger(LD->getMemOperand()->getFlags());
863 case ISD::VP_STORE: {
871 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD: {
878 case ISD::EXPERIMENTAL_VP_STRIDED_STORE: {
885 case ISD::VP_GATHER: {
893 case ISD::VP_SCATTER: {
992 ID.AddInteger(MN->getRawSubclassData());
993 ID.AddInteger(MN->getMemoryVT().getRawBits());
995 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
996 ID.AddInteger(MMO->getFlags());
1020 if (
N->getValueType(0) == MVT::Glue)
1023 switch (
N->getOpcode()) {
1031 for (
unsigned i = 1, e =
N->getNumValues(); i != e; ++i)
1032 if (
N->getValueType(i) == MVT::Glue)
1049 if (
Node.use_empty())
1064 while (!DeadNodes.
empty()) {
1073 DUL->NodeDeleted(
N,
nullptr);
1076 RemoveNodeFromCSEMaps(
N);
1107 RemoveNodeFromCSEMaps(
N);
1111 DeleteNodeNotInCSEMaps(
N);
1114void SelectionDAG::DeleteNodeNotInCSEMaps(
SDNode *
N) {
1115 assert(
N->getIterator() != AllNodes.begin() &&
1116 "Cannot delete the entry node!");
1117 assert(
N->use_empty() &&
"Cannot delete a node that is not dead!");
1126 assert(!(V->isVariadic() && isParameter));
1128 ByvalParmDbgValues.push_back(V);
1130 DbgValues.push_back(V);
1133 DbgValMap[
Node].push_back(V);
1137 DbgValMapType::iterator
I = DbgValMap.find(
Node);
1138 if (
I == DbgValMap.end())
1140 for (
auto &Val:
I->second)
1141 Val->setIsInvalidated();
1145void SelectionDAG::DeallocateNode(
SDNode *
N) {
1168void SelectionDAG::verifyNode(
SDNode *
N)
const {
1169 switch (
N->getOpcode()) {
1171 if (
N->isTargetOpcode())
1175 EVT VT =
N->getValueType(0);
1176 assert(
N->getNumValues() == 1 &&
"Too many results!");
1178 "Wrong return type!");
1179 assert(
N->getNumOperands() == 2 &&
"Wrong number of operands!");
1180 assert(
N->getOperand(0).getValueType() ==
N->getOperand(1).getValueType() &&
1181 "Mismatched operand types!");
1183 "Wrong operand type!");
1185 "Wrong return type size");
1189 assert(
N->getNumValues() == 1 &&
"Too many results!");
1190 assert(
N->getValueType(0).isVector() &&
"Wrong return type!");
1191 assert(
N->getNumOperands() ==
N->getValueType(0).getVectorNumElements() &&
1192 "Wrong number of operands!");
1193 EVT EltVT =
N->getValueType(0).getVectorElementType();
1194 for (
const SDUse &
Op :
N->ops()) {
1195 assert((
Op.getValueType() == EltVT ||
1196 (EltVT.
isInteger() &&
Op.getValueType().isInteger() &&
1197 EltVT.
bitsLE(
Op.getValueType()))) &&
1198 "Wrong operand type!");
1199 assert(
Op.getValueType() ==
N->getOperand(0).getValueType() &&
1200 "Operands must all have the same type");
1208 assert(
N->getNumValues() == 2 &&
"Wrong number of results!");
1209 assert(
N->getVTList().NumVTs == 2 &&
N->getNumOperands() == 2 &&
1210 "Invalid add/sub overflow op!");
1211 assert(
N->getVTList().VTs[0].isInteger() &&
1212 N->getVTList().VTs[1].isInteger() &&
1213 N->getOperand(0).getValueType() ==
N->getOperand(1).getValueType() &&
1214 N->getOperand(0).getValueType() ==
N->getVTList().VTs[0] &&
1215 "Binary operator types must match!");
1225void SelectionDAG::InsertNode(SDNode *
N) {
1226 AllNodes.push_back(
N);
1228 N->PersistentId = NextPersistentId++;
1232 DUL->NodeInserted(
N);
1239bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *
N) {
1240 bool Erased =
false;
1241 switch (
N->getOpcode()) {
1245 "Cond code doesn't exist!");
1254 Erased = TargetExternalSymbols.erase(std::pair<std::string, unsigned>(
1260 Erased = MCSymbols.erase(MCSN->getMCSymbol());
1266 Erased = ExtendedValueTypeNodes.erase(VT);
1277 Erased = CSEMap.RemoveNode(
N);
1284 if (!Erased &&
N->getValueType(
N->getNumValues()-1) != MVT::Glue &&
1299SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *
N) {
1303 SDNode *Existing = CSEMap.GetOrInsertNode(
N);
1304 if (Existing !=
N) {
1315 DUL->NodeDeleted(
N, Existing);
1316 DeleteNodeNotInCSEMaps(
N);
1323 DUL->NodeUpdated(
N);
1330SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *
N,
SDValue Op,
1336 FoldingSetNodeID
ID;
1339 SDNode *
Node = FindNodeOrInsertPos(
ID, SDLoc(
N), InsertPos);
1341 Node->intersectFlagsWith(
N->getFlags());
1349SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *
N,
1356 FoldingSetNodeID
ID;
1359 SDNode *
Node = FindNodeOrInsertPos(
ID, SDLoc(
N), InsertPos);
1361 Node->intersectFlagsWith(
N->getFlags());
1374 FoldingSetNodeID
ID;
1377 SDNode *
Node = FindNodeOrInsertPos(
ID, SDLoc(
N), InsertPos);
1379 Node->intersectFlagsWith(
N->getFlags());
1392 : TM(tm), OptLevel(OL), EntryNode(
ISD::EntryToken, 0,
DebugLoc(),
1395 InsertNode(&EntryNode);
1407 SDAGISelPass = PassPtr;
1411 LibInfo = LibraryInfo;
1412 Libcalls = LibcallsInfo;
1413 Context = &MF->getFunction().getContext();
1418 FnVarLocs = VarLocs;
1422 assert(!UpdateListeners &&
"Dangling registered DAGUpdateListeners");
1424 OperandRecycler.clear(OperandAllocator);
1432void SelectionDAG::allnodes_clear() {
1433 assert(&*AllNodes.begin() == &EntryNode);
1434 AllNodes.remove(AllNodes.begin());
1435 while (!AllNodes.empty())
1436 DeallocateNode(&AllNodes.front());
1438 NextPersistentId = 0;
1444 SDNode *
N = CSEMap.FindNodeOrInsertPos(
ID, InsertPos);
1446 switch (
N->getOpcode()) {
1451 "debug location. Use another overload.");
1458 const SDLoc &
DL,
void *&InsertPos) {
1459 SDNode *
N = CSEMap.FindNodeOrInsertPos(
ID, InsertPos);
1461 switch (
N->getOpcode()) {
1467 if (
N->getDebugLoc() !=
DL.getDebugLoc())
1474 if (
DL.getIROrder() &&
DL.getIROrder() <
N->getIROrder())
1475 N->setDebugLoc(
DL.getDebugLoc());
1484 OperandRecycler.clear(OperandAllocator);
1485 OperandAllocator.Reset();
1488 ExtendedValueTypeNodes.clear();
1489 ExternalSymbols.clear();
1490 TargetExternalSymbols.clear();
1496 EntryNode.UseList =
nullptr;
1497 InsertNode(&EntryNode);
1503 return VT.
bitsGT(
Op.getValueType())
1509std::pair<SDValue, SDValue>
1513 "Strict no-op FP extend/round not allowed.");
1520 return std::pair<SDValue, SDValue>(Res,
SDValue(Res.
getNode(), 1));
1524 return VT.
bitsGT(
Op.getValueType()) ?
1530 return VT.
bitsGT(
Op.getValueType()) ?
1536 return VT.
bitsGT(
Op.getValueType()) ?
1544 auto Type =
Op.getValueType();
1548 auto Size =
Op.getValueSizeInBits();
1559 auto Type =
Op.getValueType();
1563 auto Size =
Op.getValueSizeInBits();
1574 auto Type =
Op.getValueType();
1578 auto Size =
Op.getValueSizeInBits();
1592 return getNode(TLI->getExtendForContent(BType), SL, VT,
Op);
1596 EVT OpVT =
Op.getValueType();
1598 "Cannot getZeroExtendInReg FP types");
1600 "getZeroExtendInReg type should be vector iff the operand "
1604 "Vector element counts must match in getZeroExtendInReg");
1622 EVT OpVT =
Op.getValueType();
1624 "Cannot getVPZeroExtendInReg FP types");
1626 "getVPZeroExtendInReg type and operand type should be vector!");
1628 "Vector element counts must match in getZeroExtendInReg");
1667 return getNode(ISD::VP_XOR,
DL, VT, Val, TrueValue, Mask, EVL);
1678 return getNode(ISD::VP_ZERO_EXTEND,
DL, VT,
Op, Mask, EVL);
1680 return getNode(ISD::VP_TRUNCATE,
DL, VT,
Op, Mask, EVL);
1689 switch (TLI->getBooleanContents(OpVT)) {
1700 bool isT,
bool isO) {
1706 bool isT,
bool isO) {
1707 return getConstant(*ConstantInt::get(*Context, Val),
DL, VT, isT, isO);
1711 EVT VT,
bool isT,
bool isO) {
1728 EltVT = TLI->getTypeToTransformTo(*
getContext(), EltVT);
1734 Elt = ConstantInt::get(*
getContext(), NewVal);
1746 EVT ViaEltVT = TLI->getTypeToTransformTo(*
getContext(), EltVT);
1753 "Can only handle an even split!");
1757 for (
unsigned i = 0; i != Parts; ++i)
1759 NewVal.
extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits),
DL,
1760 ViaEltVT, isT, isO));
1765 unsigned ViaVecNumElts = VT.
getSizeInBits() / ViaEltSizeInBits;
1776 NewVal.
extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits),
DL,
1777 ViaEltVT, isT, isO));
1782 std::reverse(EltParts.
begin(), EltParts.
end());
1801 "APInt size does not match type size!");
1810 if ((
N = FindNodeOrInsertPos(
ID,
DL, IP)))
1815 N = newSDNode<ConstantSDNode>(isT, isO, Elt, VTs);
1816 CSEMap.InsertNode(
N, IP);
1828 bool isT,
bool isO) {
1836 IsTarget, IsOpaque);
1868 EVT VT,
bool isTarget) {
1889 if ((
N = FindNodeOrInsertPos(
ID,
DL, IP)))
1894 N = newSDNode<ConstantFPSDNode>(isTarget, Elt, VTs);
1895 CSEMap.InsertNode(
N, IP);
1909 if (EltVT == MVT::f32)
1911 if (EltVT == MVT::f64)
1913 if (EltVT == MVT::f80 || EltVT == MVT::f128 || EltVT == MVT::ppcf128 ||
1914 EltVT == MVT::f16 || EltVT == MVT::bf16) {
1925 EVT VT, int64_t
Offset,
bool isTargetGA,
1926 unsigned TargetFlags) {
1927 assert((TargetFlags == 0 || isTargetGA) &&
1928 "Cannot set target flags on target-independent globals");
1946 ID.AddInteger(TargetFlags);
1948 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
1951 auto *
N = newSDNode<GlobalAddressSDNode>(
1952 Opc,
DL.getIROrder(),
DL.getDebugLoc(), GV, VTs,
Offset, TargetFlags);
1953 CSEMap.InsertNode(
N, IP);
1967 auto *
N = newSDNode<DeactivationSymbolSDNode>(GV, VTs);
1968 CSEMap.InsertNode(
N, IP);
1980 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
1983 auto *
N = newSDNode<FrameIndexSDNode>(FI, VTs, isTarget);
1984 CSEMap.InsertNode(
N, IP);
1990 unsigned TargetFlags) {
1991 assert((TargetFlags == 0 || isTarget) &&
1992 "Cannot set target flags on target-independent jump tables");
1998 ID.AddInteger(TargetFlags);
2000 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2003 auto *
N = newSDNode<JumpTableSDNode>(JTI, VTs, isTarget, TargetFlags);
2004 CSEMap.InsertNode(
N, IP);
2018 bool isTarget,
unsigned TargetFlags) {
2019 assert((TargetFlags == 0 || isTarget) &&
2020 "Cannot set target flags on target-independent globals");
2029 ID.AddInteger(Alignment->value());
2032 ID.AddInteger(TargetFlags);
2034 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2037 auto *
N = newSDNode<ConstantPoolSDNode>(isTarget,
C, VTs,
Offset, *Alignment,
2039 CSEMap.InsertNode(
N, IP);
2048 bool isTarget,
unsigned TargetFlags) {
2049 assert((TargetFlags == 0 || isTarget) &&
2050 "Cannot set target flags on target-independent globals");
2057 ID.AddInteger(Alignment->value());
2059 C->addSelectionDAGCSEId(
ID);
2060 ID.AddInteger(TargetFlags);
2062 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2065 auto *
N = newSDNode<ConstantPoolSDNode>(isTarget,
C, VTs,
Offset, *Alignment,
2067 CSEMap.InsertNode(
N, IP);
2077 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2080 auto *
N = newSDNode<BasicBlockSDNode>(
MBB);
2081 CSEMap.InsertNode(
N, IP);
2088 ValueTypeNodes.size())
2095 N = newSDNode<VTSDNode>(VT);
2101 SDNode *&
N = ExternalSymbols[Sym];
2103 N = newSDNode<ExternalSymbolSDNode>(
false, Sym, 0,
getVTList(VT));
2117 N = newSDNode<MCSymbolSDNode>(Sym,
getVTList(VT));
2123 unsigned TargetFlags) {
2125 TargetExternalSymbols[std::pair<std::string, unsigned>(Sym, TargetFlags)];
2127 N = newSDNode<ExternalSymbolSDNode>(
true, Sym, TargetFlags,
getVTList(VT));
2133 EVT VT,
unsigned TargetFlags) {
2139 if ((
unsigned)
Cond >= CondCodeNodes.size())
2140 CondCodeNodes.resize(
Cond+1);
2142 if (!CondCodeNodes[
Cond]) {
2143 auto *
N = newSDNode<CondCodeSDNode>(
Cond);
2144 CondCodeNodes[
Cond] =
N;
2153 "APInt size does not match type size!");
2171template <
typename Ty>
2173 EVT VT, Ty Quantity) {
2174 if (Quantity.isScalable())
2178 return DAG.
getConstant(Quantity.getKnownMinValue(),
DL, VT);
2204 const APInt &StepVal) {
2228 "Must have the same number of vector elements as mask elements!");
2230 "Invalid VECTOR_SHUFFLE");
2238 int NElts = Mask.size();
2240 [&](
int M) {
return M < (NElts * 2) && M >= -1; }) &&
2241 "Index out of range");
2249 for (
int i = 0; i != NElts; ++i)
2250 if (MaskVec[i] >= NElts) MaskVec[i] -= NElts;
2257 if (TLI->hasVectorBlend()) {
2266 for (
int i = 0; i < NElts; ++i) {
2267 if (MaskVec[i] <
Offset || MaskVec[i] >= (
Offset + NElts))
2271 if (UndefElements[MaskVec[i] -
Offset]) {
2277 if (!UndefElements[i])
2282 BlendSplat(N1BV, 0);
2284 BlendSplat(N2BV, NElts);
2289 bool AllLHS =
true, AllRHS =
true;
2291 for (
int i = 0; i != NElts; ++i) {
2292 if (MaskVec[i] >= NElts) {
2297 }
else if (MaskVec[i] >= 0) {
2301 if (AllLHS && AllRHS)
2303 if (AllLHS && !N2Undef)
2316 bool Identity =
true, AllSame =
true;
2317 for (
int i = 0; i != NElts; ++i) {
2318 if (MaskVec[i] >= 0 && MaskVec[i] != i) Identity =
false;
2319 if (MaskVec[i] != MaskVec[0]) AllSame =
false;
2321 if (Identity && NElts)
2354 if (AllSame && SameNumElts) {
2355 EVT BuildVT = BV->getValueType(0);
2372 for (
int i = 0; i != NElts; ++i)
2373 ID.AddInteger(MaskVec[i]);
2376 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
2382 int *MaskAlloc = OperandAllocator.Allocate<
int>(NElts);
2385 auto *
N = newSDNode<ShuffleVectorSDNode>(VTs, dl.
getIROrder(),
2387 createOperands(
N,
Ops);
2389 CSEMap.InsertNode(
N, IP);
2410 ID.AddInteger(Reg.id());
2412 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2415 auto *
N = newSDNode<RegisterSDNode>(Reg, VTs);
2416 N->SDNodeBits.IsDivergent = TLI->isSDNodeSourceOfDivergence(
N, FLI, UA);
2417 CSEMap.InsertNode(
N, IP);
2425 ID.AddPointer(RegMask);
2427 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2430 auto *
N = newSDNode<RegisterMaskSDNode>(RegMask);
2431 CSEMap.InsertNode(
N, IP);
2446 ID.AddPointer(Label);
2448 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2453 createOperands(
N,
Ops);
2455 CSEMap.InsertNode(
N, IP);
2461 int64_t
Offset,
bool isTarget,
2462 unsigned TargetFlags) {
2470 ID.AddInteger(TargetFlags);
2472 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2475 auto *
N = newSDNode<BlockAddressSDNode>(
Opc, VTs, BA,
Offset, TargetFlags);
2476 CSEMap.InsertNode(
N, IP);
2487 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2490 auto *
N = newSDNode<SrcValueSDNode>(V);
2491 CSEMap.InsertNode(
N, IP);
2502 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2505 auto *
N = newSDNode<MDNodeSDNode>(MD);
2506 CSEMap.InsertNode(
N, IP);
2512 if (VT == V.getValueType())
2519 unsigned SrcAS,
unsigned DestAS) {
2524 ID.AddInteger(SrcAS);
2525 ID.AddInteger(DestAS);
2528 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
2532 VTs, SrcAS, DestAS);
2533 createOperands(
N,
Ops);
2535 CSEMap.InsertNode(
N, IP);
2554 EVT OpTy =
Op.getValueType();
2556 if (OpTy == ShTy || OpTy.
isVector())
return Op;
2565 EVT VT =
Node->getValueType(0);
2574 if (MA && *MA > TLI.getMinStackArgumentAlignment()) {
2612 Align RedAlign = UseABI ?
DL.getABITypeAlign(Ty) :
DL.getPrefTypeAlign(Ty);
2614 if (TLI->isTypeLegal(VT) || !VT.
isVector())
2622 if (RedAlign > StackAlign) {
2625 unsigned NumIntermediates;
2626 TLI->getVectorTypeBreakdown(*
getContext(), VT, IntermediateVT,
2627 NumIntermediates, RegisterVT);
2629 Align RedAlign2 = UseABI ?
DL.getABITypeAlign(Ty) :
DL.getPrefTypeAlign(Ty);
2630 if (RedAlign2 < RedAlign)
2631 RedAlign = RedAlign2;
2636 RedAlign = std::min(RedAlign, StackAlign);
2651 false,
nullptr, StackID);
2666 "Don't know how to choose the maximum size when creating a stack "
2675 Align Align = std::max(
DL.getPrefTypeAlign(Ty1),
DL.getPrefTypeAlign(Ty2));
2684 auto GetUndefBooleanConstant = [&]() {
2686 TLI->getBooleanContents(OpVT) ==
2723 return GetUndefBooleanConstant();
2728 return GetUndefBooleanConstant();
2737 const APInt &C2 = N2C->getAPIntValue();
2739 const APInt &C1 = N1C->getAPIntValue();
2749 if (N1CFP && N2CFP) {
2754 return GetUndefBooleanConstant();
2759 return GetUndefBooleanConstant();
2765 return GetUndefBooleanConstant();
2770 return GetUndefBooleanConstant();
2775 return GetUndefBooleanConstant();
2781 return GetUndefBooleanConstant();
2808 if (!TLI->isCondCodeLegal(SwappedCond, OpVT.
getSimpleVT()))
2810 return getSetCC(dl, VT, N2, N1, SwappedCond, {},
2812 }
else if ((N2CFP && N2CFP->getValueAPF().isNaN()) ||
2827 return GetUndefBooleanConstant();
2838 unsigned BitWidth =
Op.getScalarValueSizeInBits();
2847 unsigned Opc =
Op.getOpcode();
2856 return (NoFPClass & TestMask) == TestMask;
2863 return Op->getFlags().hasNoNaNs();
2889 unsigned Depth)
const {
2897 const APInt &DemandedElts,
2898 unsigned Depth)
const {
2905 unsigned Depth )
const {
2911 unsigned Depth)
const {
2916 const APInt &DemandedElts,
2917 unsigned Depth)
const {
2918 EVT VT =
Op.getValueType();
2925 for (
unsigned EltIdx = 0; EltIdx != NumElts; ++EltIdx) {
2926 if (!DemandedElts[EltIdx])
2930 KnownZeroElements.
setBit(EltIdx);
2932 return KnownZeroElements;
2942 unsigned Opcode = V.getOpcode();
2943 EVT VT = V.getValueType();
2946 "scalable demanded bits are ignored");
2958 UndefElts = V.getOperand(0).isUndef()
2967 APInt UndefLHS, UndefRHS;
2976 (DemandedElts & UndefLHS) == (DemandedElts & UndefRHS)) {
2977 UndefElts = UndefLHS | UndefRHS;
2990 return TLI->isSplatValueForTargetNode(V, DemandedElts, UndefElts, *
this,
3007 for (
unsigned i = 0; i != NumElts; ++i) {
3013 if (!DemandedElts[i])
3015 if (Scl && Scl !=
Op)
3026 for (
int i = 0; i != (int)NumElts; ++i) {
3032 if (!DemandedElts[i])
3034 if (M < (
int)NumElts)
3037 DemandedRHS.
setBit(M - NumElts);
3049 auto CheckSplatSrc = [&](
SDValue Src,
const APInt &SrcElts) {
3051 return (SrcElts.popcount() == 1) ||
3053 (SrcElts & SrcUndefs).
isZero());
3055 if (!DemandedLHS.
isZero())
3056 return CheckSplatSrc(V.getOperand(0), DemandedLHS);
3057 return CheckSplatSrc(V.getOperand(1), DemandedRHS);
3063 if (Src.getValueType().isScalableVector())
3065 uint64_t Idx = V.getConstantOperandVal(1);
3066 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3068 APInt DemandedSrcElts = DemandedElts.
zext(NumSrcElts).
shl(Idx);
3070 UndefElts = UndefSrcElts.
extractBits(NumElts, Idx);
3081 if (Src.getValueType().isScalableVector())
3085 APInt DemandedSrcElts = DemandedElts.
zext(NumSrcElts);
3087 UndefElts = UndefSrcElts.
trunc(NumElts);
3094 EVT SrcVT = Src.getValueType();
3104 if ((
BitWidth % SrcBitWidth) == 0) {
3106 unsigned Scale =
BitWidth / SrcBitWidth;
3108 APInt ScaledDemandedElts =
3110 for (
unsigned I = 0;
I != Scale; ++
I) {
3114 SubDemandedElts &= ScaledDemandedElts;
3118 if (!SubUndefElts.
isZero())
3132 EVT VT = V.getValueType();
3142 (AllowUndefs || !UndefElts);
3148 EVT VT = V.getValueType();
3149 unsigned Opcode = V.getOpcode();
3170 SplatIdx = (UndefElts & DemandedElts).
countr_one();
3185 if (!SVN->isSplat())
3187 int Idx = SVN->getSplatIndex();
3188 int NumElts = V.getValueType().getVectorNumElements();
3189 SplatIdx = Idx % NumElts;
3190 return V.getOperand(Idx / NumElts);
3202 if (LegalTypes && !TLI->isTypeLegal(SVT)) {
3205 LegalSVT = TLI->getTypeToTransformTo(*
getContext(), LegalSVT);
3206 if (LegalSVT.
bitsLT(SVT))
3214std::optional<ConstantRange>
3216 unsigned Depth)
const {
3219 "Unknown shift node");
3221 unsigned BitWidth = V.getScalarValueSizeInBits();
3224 const APInt &ShAmt = Cst->getAPIntValue();
3226 return std::nullopt;
3231 const APInt *MinAmt =
nullptr, *MaxAmt =
nullptr;
3232 for (
unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3233 if (!DemandedElts[i])
3237 MinAmt = MaxAmt =
nullptr;
3240 const APInt &ShAmt = SA->getAPIntValue();
3242 return std::nullopt;
3243 if (!MinAmt || MinAmt->
ugt(ShAmt))
3245 if (!MaxAmt || MaxAmt->ult(ShAmt))
3248 assert(((!MinAmt && !MaxAmt) || (MinAmt && MaxAmt)) &&
3249 "Failed to find matching min/max shift amounts");
3250 if (MinAmt && MaxAmt)
3260 return std::nullopt;
3263std::optional<unsigned>
3265 unsigned Depth)
const {
3268 "Unknown shift node");
3269 if (std::optional<ConstantRange> AmtRange =
3271 if (
const APInt *ShAmt = AmtRange->getSingleElement())
3272 return ShAmt->getZExtValue();
3273 return std::nullopt;
3276std::optional<unsigned>
3278 EVT VT = V.getValueType();
3285std::optional<unsigned>
3287 unsigned Depth)
const {
3290 "Unknown shift node");
3291 if (std::optional<ConstantRange> AmtRange =
3293 return AmtRange->getUnsignedMin().getZExtValue();
3294 return std::nullopt;
3297std::optional<unsigned>
3299 EVT VT = V.getValueType();
3306std::optional<unsigned>
3308 unsigned Depth)
const {
3311 "Unknown shift node");
3312 if (std::optional<ConstantRange> AmtRange =
3314 return AmtRange->getUnsignedMax().getZExtValue();
3315 return std::nullopt;
3318std::optional<unsigned>
3320 EVT VT = V.getValueType();
3331 EVT VT =
Op.getValueType();
3346 unsigned Depth)
const {
3347 unsigned BitWidth =
Op.getScalarValueSizeInBits();
3351 if (
auto OptAPInt =
Op->bitcastToAPInt()) {
3361 assert((!
Op.getValueType().isScalableVector() || NumElts == 1) &&
3362 "DemandedElts for scalable vectors must be 1 to represent all lanes");
3363 assert((!
Op.getValueType().isFixedLengthVector() ||
3364 NumElts ==
Op.getValueType().getVectorNumElements()) &&
3365 "Unexpected vector size");
3370 unsigned Opcode =
Op.getOpcode();
3378 "Expected SPLAT_VECTOR implicit truncation");
3385 unsigned ScalarSize =
Op.getOperand(0).getScalarValueSizeInBits();
3387 "Expected SPLAT_VECTOR_PARTS scalars to cover element width");
3394 const APInt &Step =
Op.getConstantOperandAPInt(0);
3403 const APInt MinNumElts =
3409 .
umul_ov(MinNumElts, Overflow);
3413 const APInt MaxValue = (MaxNumElts - 1).
umul_ov(Step, Overflow);
3421 assert(!
Op.getValueType().isScalableVector());
3424 for (
unsigned i = 0, e =
Op.getNumOperands(); i != e; ++i) {
3425 if (!DemandedElts[i])
3434 "Expected BUILD_VECTOR implicit truncation");
3458 assert(!
Op.getValueType().isScalableVector());
3461 APInt DemandedLHS, DemandedRHS;
3465 DemandedLHS, DemandedRHS))
3470 if (!!DemandedLHS) {
3478 if (!!DemandedRHS) {
3487 const APInt &Multiplier =
Op.getConstantOperandAPInt(0);
3492 if (
Op.getValueType().isScalableVector())
3496 EVT SubVectorVT =
Op.getOperand(0).getValueType();
3498 unsigned NumSubVectors =
Op.getNumOperands();
3499 for (
unsigned i = 0; i != NumSubVectors; ++i) {
3501 DemandedElts.
extractBits(NumSubVectorElts, i * NumSubVectorElts);
3502 if (!!DemandedSub) {
3514 if (
Op.getValueType().isScalableVector())
3521 unsigned NumSubElts =
Sub.getValueType().getVectorNumElements();
3523 APInt DemandedSrcElts = DemandedElts;
3524 DemandedSrcElts.
clearBits(Idx, Idx + NumSubElts);
3527 if (!!DemandedSubElts) {
3532 if (!!DemandedSrcElts) {
3542 APInt DemandedSrcElts;
3543 if (Src.getValueType().isScalableVector())
3544 DemandedSrcElts =
APInt(1, 1);
3547 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3548 DemandedSrcElts = DemandedElts.
zext(NumSrcElts).
shl(Idx);
3554 if (
Op.getValueType().isScalableVector())
3558 if (DemandedElts != 1)
3569 if (
Op.getValueType().isScalableVector())
3589 if ((
BitWidth % SubBitWidth) == 0) {
3596 unsigned SubScale =
BitWidth / SubBitWidth;
3597 APInt SubDemandedElts(NumElts * SubScale, 0);
3598 for (
unsigned i = 0; i != NumElts; ++i)
3599 if (DemandedElts[i])
3600 SubDemandedElts.
setBit(i * SubScale);
3602 for (
unsigned i = 0; i != SubScale; ++i) {
3605 unsigned Shifts = IsLE ? i : SubScale - 1 - i;
3606 Known.
insertBits(Known2, SubBitWidth * Shifts);
3611 if ((SubBitWidth %
BitWidth) == 0) {
3612 assert(
Op.getValueType().isVector() &&
"Expected bitcast to vector");
3617 unsigned SubScale = SubBitWidth /
BitWidth;
3618 APInt SubDemandedElts =
3623 for (
unsigned i = 0; i != NumElts; ++i)
3624 if (DemandedElts[i]) {
3625 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
3656 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3660 Op.getOperand(0), DemandedElts,
false,
Depth + 1);
3666 if (
Op->getFlags().hasNoSignedWrap() &&
3667 Op.getOperand(0) ==
Op.getOperand(1) &&
3694 unsigned SignBits1 =
3698 unsigned SignBits0 =
3704 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3707 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3708 if (
Op.getResNo() == 0)
3715 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3718 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3719 if (
Op.getResNo() == 0)
3772 if (
Op.getResNo() != 1)
3778 if (TLI->getBooleanContents(
Op.getValueType().isVector(),
false) ==
3787 unsigned OpNo =
Op->isStrictFPOpcode() ? 1 : 0;
3789 if (TLI->getBooleanContents(
Op.getOperand(OpNo).getValueType()) ==
3799 bool NUW =
Op->getFlags().hasNoUnsignedWrap();
3800 bool NSW =
Op->getFlags().hasNoSignedWrap();
3807 if (std::optional<unsigned> ShMinAmt =
3816 Op->getFlags().hasExact());
3819 if (std::optional<unsigned> ShMinAmt =
3827 Op->getFlags().hasExact());
3833 unsigned Amt =
C->getAPIntValue().urem(
BitWidth);
3848 unsigned Amt =
C->getAPIntValue().urem(
BitWidth);
3854 DemandedElts,
Depth + 1);
3875 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3878 unsigned LoBits =
Op.getOperand(0).getScalarValueSizeInBits();
3879 unsigned HiBits =
Op.getOperand(1).getScalarValueSizeInBits();
3882 Known = Known2.
concat(Known);
3896 if (
Op.getResNo() == 0)
3927 unsigned MinRedundantSignBits =
3931 Known =
Range.toKnownBits();
3967 const Constant *Cst = TLI->getTargetConstantFromLoad(LD);
3972 !
Op.getValueType().isScalableVector()) {
3985 for (
unsigned i = 0; i != NumElts; ++i) {
3986 if (!DemandedElts[i])
3996 APInt Value = CFP->getValueAPF().bitcastToAPInt();
4015 }
else if (
Op.getResNo() == 0) {
4016 unsigned ScalarMemorySize = LD->getMemoryVT().getScalarSizeInBits();
4017 KnownBits KnownScalarMemory(ScalarMemorySize);
4018 if (
const MDNode *MD = LD->getRanges())
4029 Known = KnownScalarMemory;
4036 if (
Op.getValueType().isScalableVector())
4038 EVT InVT =
Op.getOperand(0).getValueType();
4050 if (
Op.getValueType().isScalableVector())
4052 EVT InVT =
Op.getOperand(0).getValueType();
4068 if (
Op.getValueType().isScalableVector())
4070 EVT InVT =
Op.getOperand(0).getValueType();
4105 Known.
Zero |= (~InMask);
4106 Known.
One &= (~Known.Zero);
4126 if ((NoFPClass & NegativeTestMask) == NegativeTestMask) {
4132 if ((NoFPClass & PositiveTestMask) == PositiveTestMask) {
4152 bool SelfAdd =
Op.getOperand(0) ==
Op.getOperand(1) &&
4154 Op.getOperand(0), DemandedElts,
false,
Depth + 1);
4156 Flags.hasNoUnsignedWrap(), SelfAdd);
4164 Flags.hasNoUnsignedWrap());
4171 if (
Op.getResNo() == 1) {
4173 if (TLI->getBooleanContents(
Op.getOperand(0).getValueType()) ==
4182 "We only compute knownbits for the difference here.");
4189 Borrow = Borrow.
trunc(1);
4203 if (
Op.getResNo() == 1) {
4205 if (TLI->getBooleanContents(
Op.getOperand(0).getValueType()) ==
4214 assert(
Op.getResNo() == 0 &&
"We only compute knownbits for the sum here.");
4224 Carry = Carry.
trunc(1);
4260 const unsigned Index =
Op.getConstantOperandVal(1);
4261 const unsigned EltBitWidth =
Op.getValueSizeInBits();
4268 Known = Known.
trunc(EltBitWidth);
4284 Known = Known.
trunc(EltBitWidth);
4290 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
4300 if (
Op.getValueType().isScalableVector())
4309 bool DemandedVal =
true;
4310 APInt DemandedVecElts = DemandedElts;
4312 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
4313 unsigned EltIdx = CEltNo->getZExtValue();
4314 DemandedVal = !!DemandedElts[EltIdx];
4322 if (!!DemandedVecElts) {
4340 Known = Known2.
abs();
4373 if (CstLow && CstHigh) {
4378 const APInt &ValueHigh = CstHigh->getAPIntValue();
4379 if (ValueLow.
sle(ValueHigh)) {
4382 unsigned MinSignBits = std::min(LowSignBits, HighSignBits);
4405 if (IsMax && CstLow) {
4435 if (
Op.getResNo() == 0) {
4437 unsigned ScalarMemorySize = AT->getMemoryVT().getScalarSizeInBits();
4438 KnownBits KnownScalarMemory(ScalarMemorySize);
4439 if (
const MDNode *MD = AT->getRanges())
4442 switch (AT->getExtensionType()) {
4450 switch (TLI->getExtendForAtomicOps()) {
4463 Known = KnownScalarMemory;
4471 if (
Op.getResNo() == 1) {
4476 if (TLI->getBooleanContents(
Op.getValueType().isVector(),
false) ==
4497 if (
Op.getResNo() == 0) {
4499 unsigned MemBits = AT->getMemoryVT().getScalarSizeInBits();
4521 if (
Op.getValueType().isScalableVector())
4525 TLI->computeKnownBitsForTargetNode(
Op, Known, DemandedElts, *
this,
Depth);
4657 unsigned Depth)
const {
4658 EVT VT =
Op.getValueType();
4666 const APInt &DemandedElts,
4668 unsigned Depth)
const {
4669 EVT VT =
Op.getValueType();
4673 return ConstantRange::getFull(
BitWidth);
4678 unsigned Opcode =
Op.getOpcode();
4682 const APInt &Multiplier =
Op.getConstantOperandAPInt(0);
4689 return ConstantRange::getFull(
BitWidth);
4694 unsigned Depth)
const {
4695 EVT VT =
Op.getValueType();
4707 unsigned Depth)
const {
4717 unsigned Depth)
const {
4731 const APInt &DemandedElts,
4732 bool OrZero,
unsigned Depth)
const {
4738 [[maybe_unused]]
unsigned NumElts = DemandedElts.
getBitWidth();
4740 "DemandedElts for scalable vectors must be 1 to represent all lanes");
4743 "Unexpected vector size");
4747 return (OrZero && V.isZero()) || V.isPowerOf2();
4758 auto *C = dyn_cast<ConstantSDNode>(P.value());
4759 return !DemandedElts[P.index()] || (C && IsPowerOfTwoOrZero(C));
4767 if (IsPowerOfTwoOrZero(
C))
4785 APInt DemandedSrcElts =
4786 ConstEltNo && ConstEltNo->getAPIntValue().
ult(NumSrcElts)
4809 if (
C &&
C->getAPIntValue() == 1)
4820 if (
C &&
C->getAPIntValue().isSignMask())
4870 APInt DemandedLHS, DemandedRHS;
4874 DemandedLHS, DemandedRHS))
4898 return C1->getValueAPF().getExactLog2Abs() >= 0;
4907 EVT VT =
Op.getValueType();
4919 unsigned Depth)
const {
4920 EVT VT =
Op.getValueType();
4925 unsigned FirstAnswer = 1;
4928 "DemandedElts for scalable vectors must be 1 to represent all lanes");
4931 const APInt &Val =
C->getAPIntValue();
4941 unsigned Opcode =
Op.getOpcode();
4946 return VTBits-Tmp+1;
4960 unsigned NumSrcBits =
Op.getOperand(0).getValueSizeInBits();
4962 if (NumSrcSignBits > (NumSrcBits - VTBits))
4963 return NumSrcSignBits - (NumSrcBits - VTBits);
4969 for (
unsigned i = 0, e =
Op.getNumOperands(); (i < e) && (Tmp > 1); ++i) {
4970 if (!DemandedElts[i])
4977 APInt T =
C->getAPIntValue().trunc(VTBits);
4978 Tmp2 =
T.getNumSignBits();
4982 if (
SrcOp.getValueSizeInBits() != VTBits) {
4984 "Expected BUILD_VECTOR implicit truncation");
4985 unsigned ExtraBits =
SrcOp.getValueSizeInBits() - VTBits;
4986 Tmp2 = (Tmp2 > ExtraBits ? Tmp2 - ExtraBits : 1);
4989 Tmp = std::min(Tmp, Tmp2);
5000 Tmp = std::min(Tmp, Tmp2);
5007 APInt DemandedLHS, DemandedRHS;
5011 DemandedLHS, DemandedRHS))
5014 Tmp = std::numeric_limits<unsigned>::max();
5017 if (!!DemandedRHS) {
5019 Tmp = std::min(Tmp, Tmp2);
5024 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5040 if (VTBits == SrcBits)
5046 if ((SrcBits % VTBits) == 0) {
5049 unsigned Scale = SrcBits / VTBits;
5050 APInt SrcDemandedElts =
5060 for (
unsigned i = 0; i != NumElts; ++i)
5061 if (DemandedElts[i]) {
5062 unsigned SubOffset = i % Scale;
5063 SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
5064 SubOffset = SubOffset * VTBits;
5065 if (Tmp <= SubOffset)
5067 Tmp2 = std::min(Tmp2, Tmp - SubOffset);
5077 return VTBits - Tmp + 1;
5079 Tmp = VTBits -
Op.getOperand(0).getScalarValueSizeInBits();
5086 return std::max(Tmp, Tmp2);
5091 EVT SrcVT = Src.getValueType();
5099 if (std::optional<unsigned> ShAmt =
5101 Tmp = std::min(Tmp + *ShAmt, VTBits);
5104 if (std::optional<ConstantRange> ShAmtRange =
5106 unsigned MaxShAmt = ShAmtRange->getUnsignedMax().getZExtValue();
5107 unsigned MinShAmt = ShAmtRange->getUnsignedMin().getZExtValue();
5118 unsigned SizeDifference =
5120 if (SizeDifference <= MinShAmt) {
5121 Tmp = SizeDifference +
5124 return Tmp - MaxShAmt;
5130 return Tmp - MaxShAmt;
5140 FirstAnswer = std::min(Tmp, Tmp2);
5150 if (Tmp == 1)
return 1;
5152 return std::min(Tmp, Tmp2);
5155 if (Tmp == 1)
return 1;
5157 return std::min(Tmp, Tmp2);
5169 if (CstLow && CstHigh) {
5174 Tmp2 = CstHigh->getAPIntValue().getNumSignBits();
5175 return std::min(Tmp, Tmp2);
5184 return std::min(Tmp, Tmp2);
5192 return std::min(Tmp, Tmp2);
5196 if (
Op.getResNo() == 0 &&
Op.getOperand(0) ==
Op.getOperand(1))
5207 if (
Op.getResNo() != 1)
5213 if (TLI->getBooleanContents(VT.
isVector(),
false) ==
5221 unsigned OpNo =
Op->isStrictFPOpcode() ? 1 : 0;
5223 if (TLI->getBooleanContents(
Op.getOperand(OpNo).getValueType()) ==
5238 unsigned RotAmt =
C->getAPIntValue().urem(VTBits);
5242 RotAmt = (VTBits - RotAmt) % VTBits;
5246 if (Tmp > (RotAmt + 1))
return (Tmp - RotAmt);
5253 if (Tmp == 1)
return 1;
5258 if (CRHS->isAllOnes()) {
5264 if ((Known.
Zero | 1).isAllOnes())
5274 if (Tmp2 == 1)
return 1;
5278 return std::min(Tmp, Tmp2) - 1;
5281 if (Tmp2 == 1)
return 1;
5286 if (CLHS->isZero()) {
5291 if ((Known.
Zero | 1).isAllOnes())
5305 if (Tmp == 1)
return 1;
5306 return std::min(Tmp, Tmp2) - 1;
5310 if (SignBitsOp0 == 1)
5313 if (SignBitsOp1 == 1)
5315 unsigned OutValidBits =
5316 (VTBits - SignBitsOp0 + 1) + (VTBits - SignBitsOp1 + 1);
5317 return OutValidBits > VTBits ? 1 : VTBits - OutValidBits + 1;
5325 return std::min(Tmp, Tmp2);
5334 unsigned NumSrcBits =
Op.getOperand(0).getScalarValueSizeInBits();
5336 if (NumSrcSignBits > (NumSrcBits - VTBits))
5337 return NumSrcSignBits - (NumSrcBits - VTBits);
5344 const int BitWidth =
Op.getValueSizeInBits();
5345 const int Items =
Op.getOperand(0).getValueSizeInBits() /
BitWidth;
5349 const int rIndex = Items - 1 -
Op.getConstantOperandVal(1);
5364 bool DemandedVal =
true;
5365 APInt DemandedVecElts = DemandedElts;
5367 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
5368 unsigned EltIdx = CEltNo->getZExtValue();
5369 DemandedVal = !!DemandedElts[EltIdx];
5372 Tmp = std::numeric_limits<unsigned>::max();
5378 Tmp = std::min(Tmp, Tmp2);
5380 if (!!DemandedVecElts) {
5382 Tmp = std::min(Tmp, Tmp2);
5384 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5394 const unsigned BitWidth =
Op.getValueSizeInBits();
5395 const unsigned EltBitWidth =
Op.getOperand(0).getScalarValueSizeInBits();
5408 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
5418 APInt DemandedSrcElts;
5419 if (Src.getValueType().isScalableVector())
5420 DemandedSrcElts =
APInt(1, 1);
5423 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
5424 DemandedSrcElts = DemandedElts.
zext(NumSrcElts).
shl(Idx);
5433 Tmp = std::numeric_limits<unsigned>::max();
5434 EVT SubVectorVT =
Op.getOperand(0).getValueType();
5436 unsigned NumSubVectors =
Op.getNumOperands();
5437 for (
unsigned i = 0; (i < NumSubVectors) && (Tmp > 1); ++i) {
5439 DemandedElts.
extractBits(NumSubVectorElts, i * NumSubVectorElts);
5443 Tmp = std::min(Tmp, Tmp2);
5445 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5456 unsigned NumSubElts =
Sub.getValueType().getVectorNumElements();
5458 APInt DemandedSrcElts = DemandedElts;
5459 DemandedSrcElts.
clearBits(Idx, Idx + NumSubElts);
5461 Tmp = std::numeric_limits<unsigned>::max();
5462 if (!!DemandedSubElts) {
5467 if (!!DemandedSrcElts) {
5469 Tmp = std::min(Tmp, Tmp2);
5471 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5476 if (
Op.getResNo() != 0)
5480 if (
const MDNode *Ranges = LD->getRanges()) {
5481 if (DemandedElts != 1)
5486 switch (LD->getExtensionType()) {
5504 unsigned ExtType = LD->getExtensionType();
5509 Tmp = LD->getMemoryVT().getScalarSizeInBits();
5510 return VTBits - Tmp + 1;
5512 Tmp = LD->getMemoryVT().getScalarSizeInBits();
5513 return VTBits - Tmp;
5515 if (
const Constant *Cst = TLI->getTargetConstantFromLoad(LD)) {
5518 Type *CstTy = Cst->getType();
5523 for (
unsigned i = 0; i != NumElts; ++i) {
5524 if (!DemandedElts[i])
5529 Tmp = std::min(Tmp,
Value.getNumSignBits());
5533 APInt Value = CFP->getValueAPF().bitcastToAPInt();
5534 Tmp = std::min(Tmp,
Value.getNumSignBits());
5566 if (
Op.getResNo() == 0) {
5567 Tmp = AT->getMemoryVT().getScalarSizeInBits();
5573 switch (AT->getExtensionType()) {
5577 return VTBits - Tmp + 1;
5579 return VTBits - Tmp;
5584 return VTBits - Tmp + 1;
5586 return VTBits - Tmp;
5601 TLI->ComputeNumSignBitsForTargetNode(
Op, DemandedElts, *
this,
Depth);
5603 FirstAnswer = std::max(FirstAnswer, NumBits);
5614 unsigned Depth)
const {
5616 return Op.getScalarValueSizeInBits() - SignBits + 1;
5620 const APInt &DemandedElts,
5621 unsigned Depth)
const {
5623 return Op.getScalarValueSizeInBits() - SignBits + 1;
5627 unsigned Depth)
const {
5632 EVT VT =
Op.getValueType();
5640 const APInt &DemandedElts,
5642 unsigned Depth)
const {
5643 unsigned Opcode =
Op.getOpcode();
5672 for (
unsigned i = 0, e =
Op.getNumOperands(); i < e; ++i) {
5673 if (!DemandedElts[i])
5683 if (Src.getValueType().isScalableVector())
5686 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
5687 APInt DemandedSrcElts = DemandedElts.
zext(NumSrcElts).
shl(Idx);
5693 if (
Op.getValueType().isScalableVector())
5698 unsigned NumSubElts =
Sub.getValueType().getVectorNumElements();
5700 APInt DemandedSrcElts = DemandedElts;
5701 DemandedSrcElts.
clearBits(Idx, Idx + NumSubElts);
5715 EVT SrcVT = Src.getValueType();
5719 IndexC->getZExtValue());
5734 if (DemandedElts[IndexC->getZExtValue()] &&
5737 APInt InVecDemandedElts = DemandedElts;
5738 InVecDemandedElts.
clearBit(IndexC->getZExtValue());
5739 if (!!InVecDemandedElts &&
5764 APInt DemandedLHS, DemandedRHS;
5767 DemandedElts, DemandedLHS, DemandedRHS,
5770 if (!DemandedLHS.
isZero() &&
5774 if (!DemandedRHS.
isZero() &&
5822 return isGuaranteedNotToBeUndefOrPoison(V, DemandedElts,
5823 PoisonOnly, Depth + 1);
5835 return TLI->isGuaranteedNotToBeUndefOrPoisonForTargetNode(
5848 return isGuaranteedNotToBeUndefOrPoison(V, PoisonOnly, Depth + 1);
5854 unsigned Depth)
const {
5855 EVT VT =
Op.getValueType();
5865 unsigned Depth)
const {
5866 if (ConsiderFlags &&
Op->hasPoisonGeneratingFlags())
5869 unsigned Opcode =
Op.getOpcode();
5950 if (
Op.getOperand(0).getValueType().isInteger())
5957 unsigned CCOp = Opcode ==
ISD::SETCC ? 2 : 4;
5959 return (
unsigned)CCCode & 0x10U;
6008 EVT VecVT =
Op.getOperand(0).getValueType();
6017 for (
auto [Idx, Elt] :
enumerate(SVN->getMask()))
6018 if (Elt < 0 && DemandedElts[Idx])
6030 return TLI->canCreateUndefOrPoisonForTargetNode(
6040 unsigned Opcode =
Op.getOpcode();
6042 return Op->getFlags().hasDisjoint() ||
6056 unsigned Depth)
const {
6057 EVT VT =
Op.getValueType();
6065 const APInt &DemandedElts,
6067 unsigned Depth)
const {
6079 [[maybe_unused]]
EVT VT =
Op.getValueType();
6082 "Unexpected vector size");
6087 unsigned Opcode =
Op.getOpcode();
6097 for (
unsigned I = 0, E =
Op.getNumOperands();
I != E; ++
I) {
6098 if (!DemandedElts[
I])
6118 TLI->computeKnownFPClassForTargetNode(
Op, Known, DemandedElts, *
this,
6128 unsigned Depth)
const {
6129 EVT VT =
Op.getValueType();
6142 bool SNaN,
unsigned Depth)
const {
6143 assert(!DemandedElts.
isZero() &&
"No demanded elements");
6146 if (
Op->getFlags().hasNoNaNs())
6152 unsigned Opcode =
Op.getOpcode();
6254 EVT SrcVT = Src.getValueType();
6258 Idx->getZExtValue());
6265 if (Src.getValueType().isFixedLengthVector()) {
6266 unsigned Idx =
Op.getConstantOperandVal(1);
6267 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
6268 APInt DemandedSrcElts = DemandedElts.
zext(NumSrcElts).
shl(Idx);
6278 unsigned Idx =
Op.getConstantOperandVal(2);
6284 APInt DemandedMask =
6286 APInt DemandedSrcElts = DemandedElts & ~DemandedMask;
6289 bool NeverNaN =
true;
6290 if (!DemandedSrcElts.
isZero())
6293 if (NeverNaN && !DemandedSubElts.
isZero())
6302 unsigned NumElts =
Op.getNumOperands();
6303 for (
unsigned I = 0;
I != NumElts; ++
I)
6304 if (DemandedElts[
I] &&
6323 return TLI->isKnownNeverNaNForTargetNode(
Op, DemandedElts, *
this, SNaN,
6335 assert(
Op.getValueType().isFloatingPoint() &&
6336 "Floating point type expected");
6344 EVT VT =
Op.getValueType();
6357 unsigned Depth)
const {
6361 EVT OpVT =
Op.getValueType();
6364 assert(!
Op.getValueType().isFloatingPoint() &&
6365 "Floating point types unsupported - use isKnownNeverZeroFloat");
6378 switch (
Op.getOpcode()) {
6385 auto *C = dyn_cast<ConstantSDNode>(P.value());
6386 return !DemandedElts[P.index()] || (C && IsNeverZero(C));
6413 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
6430 if (
Op->getFlags().hasNoSignedWrap() ||
Op->getFlags().hasNoUnsignedWrap())
6435 if (ValKnown.
One[0])
6447 if (
Op.getValueType().isScalableVector())
6455 APInt DemandedLHS, DemandedRHS;
6457 assert(NumElts == SVN->getMask().size() &&
"Unexpected vector size");
6459 DemandedLHS, DemandedRHS))
6462 return (!DemandedLHS ||
6520 if (
Op->getFlags().hasExact())
6538 if (
Op->getFlags().hasExact())
6543 if (
Op->getFlags().hasNoUnsignedWrap())
6561 if (
Op->getFlags().hasNoSignedWrap() ||
Op->getFlags().hasNoUnsignedWrap())
6572 const APInt &Multiplier =
Op.getConstantOperandAPInt(0);
6586 return !C1->isNegative();
6588 switch (
Op.getOpcode()) {
6602 assert(
Use.getValueType().isFloatingPoint());
6604 if (
User->getFlags().hasNoSignedZeros())
6609 switch (
User->getOpcode()) {
6617 return OperandNo == 0;
6635 if (
Op->getFlags().hasNoSignedZeros())
6640 if (
Op->use_size() > 2)
6643 [&](
const SDUse &
Use) { return canIgnoreSignBitOfZero(Use); });
6648 if (
A ==
B)
return true;
6653 if (CA->isZero() && CB->isZero())
return true;
6688 NotOperand = NotOperand->getOperand(0);
6690 if (
Other == NotOperand)
6693 return NotOperand ==
Other->getOperand(0) ||
6694 NotOperand ==
Other->getOperand(1);
6700 A =
A->getOperand(0);
6703 B =
B->getOperand(0);
6706 return MatchNoCommonBitsPattern(
A->getOperand(0),
A->getOperand(1),
B) ||
6707 MatchNoCommonBitsPattern(
A->getOperand(1),
A->getOperand(0),
B);
6713 assert(
A.getValueType() ==
B.getValueType() &&
6714 "Values must have the same type");
6736 "BUILD_VECTOR cannot be used with scalable types");
6738 "Incorrect element count in BUILD_VECTOR!");
6746 bool IsIdentity =
true;
6747 for (
int i = 0; i !=
NumOps; ++i) {
6750 (IdentitySrc &&
Ops[i].getOperand(0) != IdentitySrc) ||
6752 Ops[i].getConstantOperandAPInt(1) != i) {
6756 IdentitySrc =
Ops[i].getOperand(0);
6769 assert(!
Ops.empty() &&
"Can't concatenate an empty list of vectors!");
6772 return Ops[0].getValueType() ==
Op.getValueType();
6774 "Concatenation of vectors with inconsistent value types!");
6777 "Incorrect element count in vector concatenation!");
6779 if (
Ops.size() == 1)
6790 bool IsIdentity =
true;
6791 for (
unsigned i = 0, e =
Ops.size(); i != e; ++i) {
6793 unsigned IdentityIndex = i *
Op.getValueType().getVectorMinNumElements();
6795 Op.getOperand(0).getValueType() != VT ||
6796 (IdentitySrc &&
Op.getOperand(0) != IdentitySrc) ||
6797 Op.getConstantOperandVal(1) != IdentityIndex) {
6801 assert((!IdentitySrc || IdentitySrc ==
Op.getOperand(0)) &&
6802 "Unexpected identity source vector for concat of extracts");
6803 IdentitySrc =
Op.getOperand(0);
6806 assert(IdentitySrc &&
"Failed to set source vector of extracts");
6822 EVT OpVT =
Op.getValueType();
6838 SVT = (SVT.
bitsLT(
Op.getValueType()) ?
Op.getValueType() : SVT);
6862 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
6865 auto *
N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
6866 CSEMap.InsertNode(
N, IP);
6878 Flags = Inserter->getFlags();
6879 return getNode(Opcode,
DL, VT, N1, Flags);
6931 "STEP_VECTOR can only be used with scalable types");
6934 "Unexpected step operand");
6955 "Invalid FP cast!");
6959 "Vector element count mismatch!");
6977 "Invalid SIGN_EXTEND!");
6979 "SIGN_EXTEND result type type should be vector iff the operand "
6984 "Vector element count mismatch!");
7007 unsigned NumSignExtBits =
7018 "Invalid ZERO_EXTEND!");
7020 "ZERO_EXTEND result type type should be vector iff the operand "
7025 "Vector element count mismatch!");
7063 "Invalid ANY_EXTEND!");
7065 "ANY_EXTEND result type type should be vector iff the operand "
7070 "Vector element count mismatch!");
7095 "Invalid TRUNCATE!");
7097 "TRUNCATE result type type should be vector iff the operand "
7102 "Vector element count mismatch!");
7129 assert(VT.
isVector() &&
"This DAG node is restricted to vector types.");
7131 "The input must be the same size or smaller than the result.");
7134 "The destination vector type must have fewer lanes than the input.");
7144 "BSWAP types must be a multiple of 16 bits!");
7158 "Cannot BITCAST between types of different sizes!");
7171 "Illegal SCALAR_TO_VECTOR node!");
7232 "Wrong operand type!");
7239 if (VT != MVT::Glue) {
7243 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
7244 E->intersectFlagsWith(Flags);
7248 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7250 createOperands(
N,
Ops);
7251 CSEMap.InsertNode(
N, IP);
7253 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7254 createOperands(
N,
Ops);
7288 if (!C2.getBoolValue())
7292 if (!C2.getBoolValue())
7296 if (!C2.getBoolValue())
7300 if (!C2.getBoolValue())
7326 return std::nullopt;
7331 bool IsUndef1,
const APInt &C2,
7333 if (!(IsUndef1 || IsUndef2))
7341 return std::nullopt;
7349 if (!TLI->isOffsetFoldingLegal(GA))
7354 int64_t
Offset = C2->getSExtValue();
7374 assert(
Ops.size() == 2 &&
"Div/rem should have 2 operands");
7381 [](
SDValue V) { return V.isUndef() ||
7382 isNullConstant(V); });
7420 const APInt &Val =
C->getAPIntValue();
7424 C->isTargetOpcode(),
C->isOpaque());
7431 C->isTargetOpcode(),
C->isOpaque());
7436 C->isTargetOpcode(),
C->isOpaque());
7438 C->isTargetOpcode(),
C->isOpaque());
7462 C->isTargetOpcode(),
C->isOpaque());
7488 if (VT == MVT::f16 &&
C->getValueType(0) == MVT::i16)
7490 if (VT == MVT::f32 &&
C->getValueType(0) == MVT::i32)
7492 if (VT == MVT::f64 &&
C->getValueType(0) == MVT::i64)
7494 if (VT == MVT::f128 &&
C->getValueType(0) == MVT::i128)
7555 return getConstant(V.bitcastToAPInt().getZExtValue(),
DL, VT);
7558 if (VT == MVT::i16 &&
C->getValueType(0) == MVT::f16)
7561 if (VT == MVT::i16 &&
C->getValueType(0) == MVT::bf16)
7564 if (VT == MVT::i32 &&
C->getValueType(0) == MVT::f32)
7567 if (VT == MVT::i64 &&
C->getValueType(0) == MVT::f64)
7568 return getConstant(V.bitcastToAPInt().getZExtValue(),
DL, VT);
7585 if (C1->isOpaque() || C2->isOpaque())
7588 std::optional<APInt> FoldAttempt =
7589 FoldValue(Opcode, C1->getAPIntValue(), C2->getAPIntValue());
7595 "Can't fold vectors ops with scalar operands");
7603 if (TLI->isCommutativeBinOp(Opcode))
7619 const APInt &Val = C1->getAPIntValue();
7620 return SignExtendInReg(Val, VT);
7633 ScalarOps.
push_back(SignExtendInReg(Val, OpVT));
7641 SignExtendInReg(
Ops[0].getConstantOperandAPInt(0),
7652 if (C1 && C2 && C3) {
7653 if (C1->isOpaque() || C2->isOpaque() || C3->isOpaque())
7655 const APInt &V1 = C1->getAPIntValue(), &V2 = C2->getAPIntValue(),
7656 &V3 = C3->getAPIntValue();
7672 if (C1 && C2 && C3) {
7693 Ops[0].getValueType() == VT &&
Ops[1].getValueType() == VT &&
7706 if (BV1->getConstantRawBits(IsLE, EltBits, RawBits1, UndefElts1) &&
7707 BV2->getConstantRawBits(IsLE, EltBits, RawBits2, UndefElts2)) {
7711 Opcode, RawBits1[
I], UndefElts1[
I], RawBits2[
I], UndefElts2[
I]);
7722 BVEltVT = BV1->getOperand(0).getValueType();
7725 BVEltVT = BV2->getOperand(0).getValueType();
7731 DstBits, RawBits, DstUndefs,
7734 for (
unsigned I = 0, E = DstBits.
size();
I != E; ++
I) {
7752 ?
Ops[0].getConstantOperandAPInt(0) * RHSVal
7753 :
Ops[0].getConstantOperandAPInt(0) << RHSVal;
7758 auto IsScalarOrSameVectorSize = [NumElts](
const SDValue &
Op) {
7759 return !
Op.getValueType().isVector() ||
7760 Op.getValueType().getVectorElementCount() == NumElts;
7763 auto IsBuildVectorSplatVectorOrUndef = [](
const SDValue &
Op) {
7789 LegalSVT = TLI->getTypeToTransformTo(*
getContext(), LegalSVT);
7801 for (
unsigned I = 0;
I != NumVectorElts;
I++) {
7804 EVT InSVT =
Op.getValueType().getScalarType();
7847 if (LegalSVT != SVT)
7848 ScalarResult =
getNode(ExtendCode,
DL, LegalSVT, ScalarResult);
7862 if (
Ops.size() != 2)
7873 if (N1CFP && N2CFP) {
7924 if (N1C && N1C->getValueAPF().isNegZero() && N2.
isUndef())
7947 if (SrcEltVT == DstEltVT)
7955 if (SrcBitSize == DstBitSize) {
7960 if (
Op.getValueType() != SrcEltVT)
8003 for (
unsigned I = 0, E = RawBits.
size();
I != E; ++
I) {
8004 if (UndefElements[
I])
8025 ID.AddInteger(
A.value());
8028 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
8032 newSDNode<AssertAlignSDNode>(
DL.getIROrder(),
DL.getDebugLoc(), VTs,
A);
8033 createOperands(
N, {Val});
8035 CSEMap.InsertNode(
N, IP);
8047 Flags = Inserter->getFlags();
8048 return getNode(Opcode,
DL, VT, N1, N2, Flags);
8053 if (!TLI->isCommutativeBinOp(Opcode))
8062 if ((N1C && !N2C) || (N1CFP && !N2CFP))
8076 "Operand is DELETED_NODE!");
8092 N2.
getValueType() == MVT::Other &&
"Invalid token factor!");
8096 if (N1 == N2)
return N1;
8112 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8114 N1.
getValueType() == VT &&
"Binary operator types must match!");
8117 if (N2CV && N2CV->
isZero())
8127 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8129 N1.
getValueType() == VT &&
"Binary operator types must match!");
8139 if (N2CV && N2CV->
isZero())
8153 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8155 N1.
getValueType() == VT &&
"Binary operator types must match!");
8158 if (N2CV && N2CV->
isZero())
8162 const APInt &N2CImm = N2C->getAPIntValue();
8176 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8178 N1.
getValueType() == VT &&
"Binary operator types must match!");
8191 "Types of operands of UCMP/SCMP must match");
8193 "Operands and return type of must both be scalars or vectors");
8197 "Result and operands must have the same number of elements");
8203 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8205 N1.
getValueType() == VT &&
"Binary operator types must match!");
8209 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8211 N1.
getValueType() == VT &&
"Binary operator types must match!");
8217 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8219 N1.
getValueType() == VT &&
"Binary operator types must match!");
8225 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
8227 N1.
getValueType() == VT &&
"Binary operator types must match!");
8238 N1.
getValueType() == VT &&
"Binary operator types must match!");
8246 "Invalid FCOPYSIGN!");
8251 const APInt &ShiftImm = N2C->getAPIntValue();
8265 "Shift operators return type must be the same as their first arg");
8267 "Shifts only work on integers");
8269 "Vector shift amounts must be in the same as their first arg");
8276 "Invalid use of small shift amount with oversized value!");
8283 if (N2CV && N2CV->
isZero())
8289 (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) &&
8295 "AssertNoFPClass is used for a non-floating type");
8300 "FPClassTest value too large");
8309 "Cannot *_EXTEND_INREG FP types");
8311 "AssertSExt/AssertZExt type should be the vector element type "
8312 "rather than the vector type!");
8321 "Cannot *_EXTEND_INREG FP types");
8323 "SIGN_EXTEND_INREG type should be vector iff the operand "
8327 "Vector element counts must match in SIGN_EXTEND_INREG");
8329 if (
EVT == VT)
return N1;
8337 "FP_TO_*INT_SAT type should be vector iff the operand type is "
8341 "Vector element counts must match in FP_TO_*INT_SAT");
8343 "Type to saturate to must be a scalar.");
8350 "The result of EXTRACT_VECTOR_ELT must be at least as wide as the \
8351 element type of the vector.");
8373 N2C->getZExtValue() % Factor);
8382 "BUILD_VECTOR used for scalable vectors");
8405 if (N1Op2C && N2C) {
8435 assert(N2C && (
unsigned)N2C->getZExtValue() < 2 &&
"Bad EXTRACT_ELEMENT!");
8439 "Wrong types for EXTRACT_ELEMENT!");
8450 unsigned Shift = ElementSize * N2C->getZExtValue();
8451 const APInt &Val = N1C->getAPIntValue();
8458 "Extract subvector VTs must be vectors!");
8460 "Extract subvector VTs must have the same element type!");
8462 "Cannot extract a scalable vector from a fixed length vector!");
8465 "Extract subvector must be from larger vector to smaller vector!");
8466 assert(N2C &&
"Extract subvector index must be a constant");
8470 "Extract subvector overflow!");
8471 assert(N2C->getAPIntValue().getBitWidth() ==
8473 "Constant index for EXTRACT_SUBVECTOR has an invalid size");
8475 "Extract index is not a multiple of the output vector length");
8490 return N1.
getOperand(N2C->getZExtValue() / Factor);
8531 if (TLI->isCommutativeBinOp(Opcode)) {
8610 if (VT != MVT::Glue) {
8614 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
8615 E->intersectFlagsWith(Flags);
8619 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
8621 createOperands(
N,
Ops);
8622 CSEMap.InsertNode(
N, IP);
8624 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
8625 createOperands(
N,
Ops);
8638 Flags = Inserter->getFlags();
8639 return getNode(Opcode,
DL, VT, N1, N2, N3, Flags);
8648 "Operand is DELETED_NODE!");
8667 "SETCC operands must have the same type!");
8669 "SETCC type should be vector iff the operand type is vector!");
8672 "SETCC vector element counts must match!");
8696 "INSERT_VECTOR_ELT vector type mismatch");
8698 "INSERT_VECTOR_ELT scalar fp/int mismatch");
8701 "INSERT_VECTOR_ELT fp scalar type mismatch");
8704 "INSERT_VECTOR_ELT int scalar size mismatch");
8750 "Dest and insert subvector source types must match!");
8752 "Insert subvector VTs must be vectors!");
8754 "Insert subvector VTs must have the same element type!");
8756 "Cannot insert a scalable vector into a fixed length vector!");
8759 "Insert subvector must be from smaller vector to larger vector!");
8761 "Insert subvector index must be constant");
8765 "Insert subvector overflow!");
8768 "Constant index for INSERT_SUBVECTOR has an invalid size");
8812 case ISD::VP_TRUNCATE:
8813 case ISD::VP_SIGN_EXTEND:
8814 case ISD::VP_ZERO_EXTEND:
8823 assert(VT == VecVT &&
"Vector and result type don't match.");
8825 "All inputs must be vectors.");
8826 assert(VecVT == PassthruVT &&
"Vector and passthru types don't match.");
8828 "Vector and mask must have same number of elements.");
8843 "Expected the second and third operands of the PARTIAL_REDUCE_MLA "
8844 "node to have the same type!");
8846 "Expected the first operand of the PARTIAL_REDUCE_MLA node to have "
8847 "the same type as its result!");
8850 "Expected the element count of the second and third operands of the "
8851 "PARTIAL_REDUCE_MLA node to be a positive integer multiple of the "
8852 "element count of the first operand and the result!");
8854 "Expected the second and third operands of the PARTIAL_REDUCE_MLA "
8855 "node to have an element type which is the same as or smaller than "
8856 "the element type of the first operand and result!");
8878 if (VT != MVT::Glue) {
8882 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
8883 E->intersectFlagsWith(Flags);
8887 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
8889 createOperands(
N,
Ops);
8890 CSEMap.InsertNode(
N, IP);
8892 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
8893 createOperands(
N,
Ops);
8913 Flags = Inserter->getFlags();
8914 return getNode(Opcode,
DL, VT, N1, N2, N3, N4, Flags);
8929 Flags = Inserter->getFlags();
8930 return getNode(Opcode,
DL, VT, N1, N2, N3, N4, N5, Flags);
8947 if (FI->getIndex() < 0)
8962 assert(
C->getAPIntValue().getBitWidth() == 8);
8967 return DAG.
getConstant(Val, dl, VT,
false, IsOpaque);
8972 assert(
Value.getValueType() == MVT::i8 &&
"memset with non-byte fill value?");
8988 if (VT !=
Value.getValueType())
9001 if (Slice.Array ==
nullptr) {
9010 unsigned NumVTBytes = NumVTBits / 8;
9011 unsigned NumBytes = std::min(NumVTBytes,
unsigned(Slice.Length));
9013 APInt Val(NumVTBits, 0);
9015 for (
unsigned i = 0; i != NumBytes; ++i)
9018 for (
unsigned i = 0; i != NumBytes; ++i)
9019 Val |= (
uint64_t)(
unsigned char)Slice[i] << (NumVTBytes-i-1)*8;
9042 if (TLI->shouldPreservePtrArith(this->getMachineFunction().getFunction(),
9057 else if (Src->isAnyAdd() &&
9061 SrcDelta = Src.getConstantOperandVal(1);
9067 SrcDelta +
G->getOffset());
9083 assert(OutLoadChains.
size() &&
"Missing loads in memcpy inlining");
9084 assert(OutStoreChains.
size() &&
"Missing stores in memcpy inlining");
9086 for (
unsigned i = From; i < To; ++i) {
9088 GluedLoadChains.
push_back(OutLoadChains[i]);
9095 for (
unsigned i = From; i < To; ++i) {
9098 ST->getBasePtr(), ST->getMemoryVT(),
9099 ST->getMemOperand());
9121 std::vector<EVT> MemOps;
9122 bool DstAlignCanChange =
false;
9128 DstAlignCanChange =
true;
9130 if (!SrcAlign || Alignment > *SrcAlign)
9131 SrcAlign = Alignment;
9132 assert(SrcAlign &&
"SrcAlign must be set");
9136 bool isZeroConstant = CopyFromConstant && Slice.Array ==
nullptr;
9138 const MemOp Op = isZeroConstant
9142 *SrcAlign, isVol, CopyFromConstant);
9148 if (DstAlignCanChange) {
9149 Type *Ty = MemOps[0].getTypeForEVT(
C);
9150 Align NewAlign =
DL.getABITypeAlign(Ty);
9156 if (!
TRI->hasStackRealignment(MF))
9158 NewAlign = std::min(NewAlign, *StackAlign);
9160 if (NewAlign > Alignment) {
9164 Alignment = NewAlign;
9174 BatchAA && SrcVal &&
9182 unsigned NumMemOps = MemOps.size();
9184 for (
unsigned i = 0; i != NumMemOps; ++i) {
9189 if (VTSize >
Size) {
9192 assert(i == NumMemOps-1 && i != 0);
9193 SrcOff -= VTSize -
Size;
9194 DstOff -= VTSize -
Size;
9197 if (CopyFromConstant &&
9205 if (SrcOff < Slice.Length) {
9207 SubSlice.
move(SrcOff);
9210 SubSlice.
Array =
nullptr;
9212 SubSlice.
Length = VTSize;
9215 if (
Value.getNode()) {
9219 DstPtrInfo.
getWithOffset(DstOff), Alignment, MMOFlags, NewAAInfo);
9224 if (!Store.getNode()) {
9233 bool isDereferenceable =
9236 if (isDereferenceable)
9251 DstPtrInfo.
getWithOffset(DstOff), VT, Alignment, MMOFlags, NewAAInfo);
9261 unsigned NumLdStInMemcpy = OutStoreChains.
size();
9263 if (NumLdStInMemcpy) {
9269 for (
unsigned i = 0; i < NumLdStInMemcpy; ++i) {
9275 if (NumLdStInMemcpy <= GluedLdStLimit) {
9277 NumLdStInMemcpy, OutLoadChains,
9280 unsigned NumberLdChain = NumLdStInMemcpy / GluedLdStLimit;
9281 unsigned RemainingLdStInMemcpy = NumLdStInMemcpy % GluedLdStLimit;
9282 unsigned GlueIter = 0;
9285 if (RemainingLdStInMemcpy) {
9287 DAG, dl, OutChains, NumLdStInMemcpy - RemainingLdStInMemcpy,
9288 NumLdStInMemcpy, OutLoadChains, OutStoreChains);
9291 for (
unsigned cnt = 0; cnt < NumberLdChain; ++cnt) {
9292 unsigned IndexFrom = NumLdStInMemcpy - RemainingLdStInMemcpy -
9293 GlueIter - GluedLdStLimit;
9294 unsigned IndexTo = NumLdStInMemcpy - RemainingLdStInMemcpy - GlueIter;
9296 OutLoadChains, OutStoreChains);
9297 GlueIter += GluedLdStLimit;
9308 bool isVol,
bool AlwaysInline,
9322 std::vector<EVT> MemOps;
9323 bool DstAlignCanChange =
false;
9329 DstAlignCanChange =
true;
9331 if (!SrcAlign || Alignment > *SrcAlign)
9332 SrcAlign = Alignment;
9333 assert(SrcAlign &&
"SrcAlign must be set");
9342 if (DstAlignCanChange) {
9343 Type *Ty = MemOps[0].getTypeForEVT(
C);
9344 Align NewAlign =
DL.getABITypeAlign(Ty);
9350 if (!
TRI->hasStackRealignment(MF))
9352 NewAlign = std::min(NewAlign, *StackAlign);
9354 if (NewAlign > Alignment) {
9358 Alignment = NewAlign;
9372 unsigned NumMemOps = MemOps.size();
9373 for (
unsigned i = 0; i < NumMemOps; i++) {
9377 bool IsOverlapping =
false;
9379 if (i == NumMemOps - 1 && i != 0 && VTSize >
Size - SrcOff) {
9382 SrcOff =
Size - VTSize;
9383 IsOverlapping =
true;
9390 if (IsOverlapping) {
9395 SrcAlignAtOffset, MMOFlags,
9404 bool isDereferenceable =
9407 if (isDereferenceable)
9413 SrcMMOFlags, NewAAInfo);
9421 for (
unsigned i = 0; i < NumMemOps; i++) {
9425 bool IsOverlapping =
false;
9427 if (i == NumMemOps - 1 && i != 0 && VTSize >
Size - DstOff) {
9430 DstOff =
Size - VTSize;
9431 IsOverlapping =
true;
9438 if (IsOverlapping) {
9443 DstAlignAtOffset, MMOFlags,
9452 Chain, dl, LoadValues[i],
9454 DstPtrInfo.
getWithOffset(DstOff), DstAlignAtOffset, MMOFlags,
9495 std::vector<EVT> MemOps;
9496 bool DstAlignCanChange =
false;
9503 DstAlignCanChange =
true;
9510 MemOp::Set(
Size, DstAlignCanChange, Alignment, IsZeroVal, isVol),
9515 if (DstAlignCanChange) {
9518 Align NewAlign =
DL.getABITypeAlign(Ty);
9524 if (!
TRI->hasStackRealignment(MF))
9526 NewAlign = std::min(NewAlign, *StackAlign);
9528 if (NewAlign > Alignment) {
9532 Alignment = NewAlign;
9538 unsigned NumMemOps = MemOps.size();
9543 LargestVT = MemOps[0];
9544 for (
unsigned i = 1; i < NumMemOps; i++)
9545 if (MemOps[i].bitsGT(LargestVT))
9546 LargestVT = MemOps[i];
9554 for (
unsigned i = 0; i < NumMemOps; i++) {
9559 assert(
Size > 0 &&
"Target specified more stores than needed in "
9560 "findOptimalMemOpLowering");
9561 if (VTSize >
Size) {
9564 assert(i == NumMemOps-1 && i != 0);
9565 DstOff -= VTSize -
Size;
9572 if (VT.
bitsLT(LargestVT)) {
9592 assert(
Value.getValueType() == VT &&
"Value with wrong type.");
9603 if (VTSize >
Size) {
9612 assert(
Size == 0 &&
"Target's findOptimalMemOpLowering did not specify "
9613 "stores that exactly cover the memset size");
9630 bool AllowReturnsFirstArg) {
9636 AllowReturnsFirstArg &&
9640static std::pair<SDValue, SDValue>
9647 if (LCImpl == RTLIB::Unsupported)
9659 CI->
getType(), Callee, std::move(Args))
9672 RTLIB::STRCMP,
this, TLI);
9682 RTLIB::STRSTR,
this, TLI);
9698 RTLIB::MEMCCPY,
this, TLI);
9701std::pair<SDValue, SDValue>
9710 RTLIB::MEMCMP,
this, TLI);
9720 RTLIB::STRCPY,
this, TLI);
9731 RTLIB::STRLEN,
this, TLI);
9736 Align Alignment,
bool isVol,
bool AlwaysInline,
const CallInst *CI,
9745 if (ConstantSize->
isZero())
9749 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
9750 isVol,
false, DstPtrInfo, SrcPtrInfo, AAInfo, BatchAA);
9751 if (Result.getNode())
9758 SDValue Result = TSI->EmitTargetCodeForMemcpy(
9759 *
this, dl, Chain, Dst, Src,
Size, Alignment, isVol, AlwaysInline,
9760 DstPtrInfo, SrcPtrInfo);
9761 if (Result.getNode())
9768 assert(ConstantSize &&
"AlwaysInline requires a constant size!");
9770 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
9771 isVol,
true, DstPtrInfo, SrcPtrInfo, AAInfo, BatchAA);
9786 Args.emplace_back(Dst, PtrTy);
9787 Args.emplace_back(Src, PtrTy);
9791 bool IsTailCall =
false;
9792 RTLIB::LibcallImpl MemCpyImpl = TLI->getMemcpyImpl();
9794 if (OverrideTailCall.has_value()) {
9795 IsTailCall = *OverrideTailCall;
9797 bool LowersToMemcpy = MemCpyImpl == RTLIB::impl_memcpy;
9804 Libcalls->getLibcallImplCallingConv(MemCpyImpl),
9805 Dst.getValueType().getTypeForEVT(*
getContext()),
9811 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
9812 return CallResult.second;
9817 Type *SizeTy,
unsigned ElemSz,
9824 Args.emplace_back(Dst, ArgTy);
9825 Args.emplace_back(Src, ArgTy);
9826 Args.emplace_back(
Size, SizeTy);
9828 RTLIB::Libcall LibraryCall =
9830 RTLIB::LibcallImpl LibcallImpl = Libcalls->getLibcallImpl(LibraryCall);
9831 if (LibcallImpl == RTLIB::Unsupported)
9838 Libcalls->getLibcallImplCallingConv(LibcallImpl),
9845 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
9846 return CallResult.second;
9852 std::optional<bool> OverrideTailCall,
9862 if (ConstantSize->
isZero())
9866 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
9867 isVol,
false, DstPtrInfo, SrcPtrInfo, AAInfo);
9868 if (Result.getNode())
9876 TSI->EmitTargetCodeForMemmove(*
this, dl, Chain, Dst, Src,
Size,
9877 Alignment, isVol, DstPtrInfo, SrcPtrInfo);
9878 if (Result.getNode())
9891 Args.emplace_back(Dst, PtrTy);
9892 Args.emplace_back(Src, PtrTy);
9897 RTLIB::LibcallImpl MemmoveImpl = Libcalls->getLibcallImpl(RTLIB::MEMMOVE);
9899 bool IsTailCall =
false;
9900 if (OverrideTailCall.has_value()) {
9901 IsTailCall = *OverrideTailCall;
9903 bool LowersToMemmove = MemmoveImpl == RTLIB::impl_memmove;
9910 Libcalls->getLibcallImplCallingConv(MemmoveImpl),
9911 Dst.getValueType().getTypeForEVT(*
getContext()),
9917 std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI);
9918 return CallResult.second;
9923 Type *SizeTy,
unsigned ElemSz,
9930 Args.emplace_back(Dst, IntPtrTy);
9931 Args.emplace_back(Src, IntPtrTy);
9932 Args.emplace_back(
Size, SizeTy);
9934 RTLIB::Libcall LibraryCall =
9936 RTLIB::LibcallImpl LibcallImpl = Libcalls->getLibcallImpl(LibraryCall);
9937 if (LibcallImpl == RTLIB::Unsupported)
9944 Libcalls->getLibcallImplCallingConv(LibcallImpl),
9951 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
9952 return CallResult.second;
9957 bool isVol,
bool AlwaysInline,
9966 if (ConstantSize->
isZero())
9971 isVol,
false, DstPtrInfo, AAInfo);
9973 if (Result.getNode())
9980 SDValue Result = TSI->EmitTargetCodeForMemset(
9981 *
this, dl, Chain, Dst, Src,
Size, Alignment, isVol, AlwaysInline, DstPtrInfo);
9982 if (Result.getNode())
9989 assert(ConstantSize &&
"AlwaysInline requires a constant size!");
9992 isVol,
true, DstPtrInfo, AAInfo);
9994 "getMemsetStores must return a valid sequence when AlwaysInline");
10008 RTLIB::LibcallImpl BzeroImpl = Libcalls->getLibcallImpl(RTLIB::BZERO);
10009 bool UseBZero = BzeroImpl != RTLIB::Unsupported &&
isNullConstant(Src);
10015 Args.emplace_back(
Size,
DL.getIntPtrType(Ctx));
10017 Libcalls->getLibcallImplCallingConv(BzeroImpl),
Type::getVoidTy(Ctx),
10020 RTLIB::LibcallImpl MemsetImpl = Libcalls->getLibcallImpl(RTLIB::MEMSET);
10024 Args.emplace_back(Src, Src.getValueType().getTypeForEVT(Ctx));
10025 Args.emplace_back(
Size,
DL.getIntPtrType(Ctx));
10026 CLI.
setLibCallee(Libcalls->getLibcallImplCallingConv(MemsetImpl),
10027 Dst.getValueType().getTypeForEVT(Ctx),
10032 RTLIB::LibcallImpl MemsetImpl = Libcalls->getLibcallImpl(RTLIB::MEMSET);
10033 bool LowersToMemset = MemsetImpl == RTLIB::impl_memset;
10044 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
10045 return CallResult.second;
10050 Type *SizeTy,
unsigned ElemSz,
10057 Args.emplace_back(
Size, SizeTy);
10059 RTLIB::Libcall LibraryCall =
10061 RTLIB::LibcallImpl LibcallImpl = Libcalls->getLibcallImpl(LibraryCall);
10062 if (LibcallImpl == RTLIB::Unsupported)
10069 Libcalls->getLibcallImplCallingConv(LibcallImpl),
10076 std::pair<SDValue, SDValue> CallResult = TLI->LowerCallTo(CLI);
10077 return CallResult.second;
10087 ID.AddInteger(getSyntheticNodeSubclassData<AtomicSDNode>(
10088 dl.
getIROrder(), Opcode, VTList, MemVT, MMO, ExtType));
10091 void* IP =
nullptr;
10093 E->refineAlignment(MMO);
10094 E->refineRanges(MMO);
10099 VTList, MemVT, MMO, ExtType);
10100 createOperands(
N,
Ops);
10102 CSEMap.InsertNode(
N, IP);
10139 "Invalid Atomic Op");
10159 if (
Ops.size() == 1)
10174 if (
Size.hasValue() && !
Size.getValue())
10179 MF.getMachineMemOperand(PtrInfo, Flags,
Size, Alignment, AAInfo);
10195 assert(!MMOs.
empty() &&
"Must have at least one MMO");
10199 (Opcode <= (
unsigned)std::numeric_limits<int>::max() &&
10201 "Opcode is not a memory-accessing opcode!");
10204 if (MMOs.
size() == 1) {
10210 void *Buffer = Allocator.Allocate(AllocSize,
alignof(
size_t));
10211 size_t *CountPtr =
static_cast<size_t *
>(Buffer);
10212 *CountPtr = MMOs.
size();
10221 if (VTList.
VTs[VTList.
NumVTs-1] != MVT::Glue) {
10224 ID.AddInteger(getSyntheticNodeSubclassData<MemIntrinsicSDNode>(
10225 Opcode, dl.
getIROrder(), VTList, MemVT, MemRefs));
10228 ID.AddInteger(MMO->getPointerInfo().getAddrSpace());
10229 ID.AddInteger(MMO->getFlags());
10231 void *IP =
nullptr;
10232 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10238 VTList, MemVT, MemRefs);
10239 createOperands(
N,
Ops);
10240 CSEMap.InsertNode(
N, IP);
10243 VTList, MemVT, MemRefs);
10244 createOperands(
N,
Ops);
10253 SDValue Chain,
int FrameIndex) {
10255 const auto VTs =
getVTList(MVT::Other);
10264 ID.AddInteger(FrameIndex);
10265 void *IP =
nullptr;
10266 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
10271 createOperands(
N,
Ops);
10272 CSEMap.InsertNode(
N, IP);
10283 const auto VTs =
getVTList(MVT::Other);
10288 ID.AddInteger(Index);
10289 void *IP =
nullptr;
10290 if (
SDNode *E = FindNodeOrInsertPos(
ID, Dl, IP))
10293 auto *
N = newSDNode<PseudoProbeSDNode>(
10295 createOperands(
N,
Ops);
10296 CSEMap.InsertNode(
N, IP);
10313 FI->getIndex(),
Offset);
10350 "Invalid chain type");
10362 Alignment, AAInfo, Ranges);
10363 return getLoad(AM, ExtType, VT, dl, Chain, Ptr,
Offset, MemVT, MMO);
10373 assert(VT == MemVT &&
"Non-extending load from different memory type!");
10377 "Should only be an extending load, not truncating!");
10379 "Cannot convert from FP to Int or Int -> FP!");
10381 "Cannot use an ext load to convert to or from a vector!");
10384 "Cannot use an ext load to change the number of vector elements!");
10391 "Range metadata and load type must match!");
10402 ID.AddInteger(getSyntheticNodeSubclassData<LoadSDNode>(
10403 dl.
getIROrder(), VTs, AM, ExtType, MemVT, MMO));
10406 void *IP =
nullptr;
10408 E->refineAlignment(MMO);
10409 E->refineRanges(MMO);
10413 ExtType, MemVT, MMO);
10414 createOperands(
N,
Ops);
10416 CSEMap.InsertNode(
N, IP);
10430 PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges);
10448 MemVT, Alignment, MMOFlags, AAInfo);
10463 assert(LD->getOffset().isUndef() &&
"Load is already a indexed load!");
10466 LD->getMemOperand()->getFlags() &
10469 LD->getChain(),
Base,
Offset, LD->getPointerInfo(),
10470 LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo());
10489 MF.getMachineMemOperand(PtrInfo, MMOFlags,
Size, Alignment, AAInfo);
10490 return getStore(Chain, dl, Val, Ptr, MMO);
10503 bool IsTruncating) {
10507 IsTruncating =
false;
10508 }
else if (!IsTruncating) {
10509 assert(VT == SVT &&
"No-truncating store from different memory type!");
10512 "Should only be a truncating store, not extending!");
10515 "Cannot use trunc store to convert to or from a vector!");
10518 "Cannot use trunc store to change the number of vector elements!");
10529 ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
10530 dl.
getIROrder(), VTs, AM, IsTruncating, SVT, MMO));
10533 void *IP =
nullptr;
10534 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10539 IsTruncating, SVT, MMO);
10540 createOperands(
N,
Ops);
10542 CSEMap.InsertNode(
N, IP);
10555 "Invalid chain type");
10565 PtrInfo, MMOFlags, SVT.
getStoreSize(), Alignment, AAInfo);
10580 assert(ST->getOffset().isUndef() &&
"Store is already a indexed store!");
10582 ST->getMemoryVT(), ST->getMemOperand(), AM,
10583 ST->isTruncatingStore());
10591 const MDNode *Ranges,
bool IsExpanding) {
10602 Alignment, AAInfo, Ranges);
10603 return getLoadVP(AM, ExtType, VT, dl, Chain, Ptr,
Offset, Mask, EVL, MemVT,
10612 bool IsExpanding) {
10614 assert(Mask.getValueType().getVectorElementCount() ==
10616 "Vector width mismatch between mask and data");
10627 ID.AddInteger(getSyntheticNodeSubclassData<VPLoadSDNode>(
10628 dl.
getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
10631 void *IP =
nullptr;
10633 E->refineAlignment(MMO);
10634 E->refineRanges(MMO);
10638 ExtType, IsExpanding, MemVT, MMO);
10639 createOperands(
N,
Ops);
10641 CSEMap.InsertNode(
N, IP);
10654 bool IsExpanding) {
10657 Mask, EVL, PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges,
10666 Mask, EVL, VT, MMO, IsExpanding);
10675 const AAMDNodes &AAInfo,
bool IsExpanding) {
10678 EVL, PtrInfo, MemVT, Alignment, MMOFlags, AAInfo,
nullptr,
10688 EVL, MemVT, MMO, IsExpanding);
10695 assert(LD->getOffset().isUndef() &&
"Load is already a indexed load!");
10698 LD->getMemOperand()->getFlags() &
10701 LD->getChain(),
Base,
Offset, LD->getMask(),
10702 LD->getVectorLength(), LD->getPointerInfo(),
10703 LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo(),
10704 nullptr, LD->isExpandingLoad());
10711 bool IsCompressing) {
10713 assert(Mask.getValueType().getVectorElementCount() ==
10715 "Vector width mismatch between mask and data");
10725 ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
10726 dl.
getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
10729 void *IP =
nullptr;
10730 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10735 IsTruncating, IsCompressing, MemVT, MMO);
10736 createOperands(
N,
Ops);
10738 CSEMap.InsertNode(
N, IP);
10751 bool IsCompressing) {
10762 PtrInfo, MMOFlags, SVT.
getStoreSize(), Alignment, AAInfo);
10771 bool IsCompressing) {
10778 false, IsCompressing);
10781 "Should only be a truncating store, not extending!");
10784 "Cannot use trunc store to convert to or from a vector!");
10787 "Cannot use trunc store to change the number of vector elements!");
10795 ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
10799 void *IP =
nullptr;
10800 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10807 createOperands(
N,
Ops);
10809 CSEMap.InsertNode(
N, IP);
10820 assert(ST->getOffset().isUndef() &&
"Store is already an indexed store!");
10823 Offset, ST->getMask(), ST->getVectorLength()};
10826 ID.AddInteger(ST->getMemoryVT().getRawBits());
10827 ID.AddInteger(ST->getRawSubclassData());
10828 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
10829 ID.AddInteger(ST->getMemOperand()->getFlags());
10830 void *IP =
nullptr;
10831 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
10834 auto *
N = newSDNode<VPStoreSDNode>(
10836 ST->isCompressingStore(), ST->getMemoryVT(), ST->getMemOperand());
10837 createOperands(
N,
Ops);
10839 CSEMap.InsertNode(
N, IP);
10859 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedLoadSDNode>(
10860 DL.getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
10863 void *IP =
nullptr;
10864 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
10870 newSDNode<VPStridedLoadSDNode>(
DL.getIROrder(),
DL.getDebugLoc(), VTs, AM,
10871 ExtType, IsExpanding, MemVT, MMO);
10872 createOperands(
N,
Ops);
10873 CSEMap.InsertNode(
N, IP);
10884 bool IsExpanding) {
10887 Undef, Stride, Mask, EVL, VT, MMO, IsExpanding);
10896 Stride, Mask, EVL, MemVT, MMO, IsExpanding);
10905 bool IsTruncating,
bool IsCompressing) {
10915 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
10916 DL.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
10918 void *IP =
nullptr;
10919 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
10923 auto *
N = newSDNode<VPStridedStoreSDNode>(
DL.getIROrder(),
DL.getDebugLoc(),
10924 VTs, AM, IsTruncating,
10925 IsCompressing, MemVT, MMO);
10926 createOperands(
N,
Ops);
10928 CSEMap.InsertNode(
N, IP);
10940 bool IsCompressing) {
10947 false, IsCompressing);
10950 "Should only be a truncating store, not extending!");
10953 "Cannot use trunc store to convert to or from a vector!");
10956 "Cannot use trunc store to change the number of vector elements!");
10964 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
10967 void *IP =
nullptr;
10968 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
10972 auto *
N = newSDNode<VPStridedStoreSDNode>(
DL.getIROrder(),
DL.getDebugLoc(),
10974 IsCompressing, SVT, MMO);
10975 createOperands(
N,
Ops);
10977 CSEMap.InsertNode(
N, IP);
10987 assert(
Ops.size() == 6 &&
"Incompatible number of operands");
10992 ID.AddInteger(getSyntheticNodeSubclassData<VPGatherSDNode>(
10996 void *IP =
nullptr;
10997 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11003 VT, MMO, IndexType);
11004 createOperands(
N,
Ops);
11006 assert(
N->getMask().getValueType().getVectorElementCount() ==
11007 N->getValueType(0).getVectorElementCount() &&
11008 "Vector width mismatch between mask and data");
11009 assert(
N->getIndex().getValueType().getVectorElementCount().isScalable() ==
11010 N->getValueType(0).getVectorElementCount().isScalable() &&
11011 "Scalable flags of index and data do not match");
11013 N->getIndex().getValueType().getVectorElementCount(),
11014 N->getValueType(0).getVectorElementCount()) &&
11015 "Vector width mismatch between index and data");
11017 N->getScale()->getAsAPIntVal().isPowerOf2() &&
11018 "Scale should be a constant power of 2");
11020 CSEMap.InsertNode(
N, IP);
11031 assert(
Ops.size() == 7 &&
"Incompatible number of operands");
11036 ID.AddInteger(getSyntheticNodeSubclassData<VPScatterSDNode>(
11040 void *IP =
nullptr;
11041 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11046 VT, MMO, IndexType);
11047 createOperands(
N,
Ops);
11049 assert(
N->getMask().getValueType().getVectorElementCount() ==
11050 N->getValue().getValueType().getVectorElementCount() &&
11051 "Vector width mismatch between mask and data");
11053 N->getIndex().getValueType().getVectorElementCount().isScalable() ==
11054 N->getValue().getValueType().getVectorElementCount().isScalable() &&
11055 "Scalable flags of index and data do not match");
11057 N->getIndex().getValueType().getVectorElementCount(),
11058 N->getValue().getValueType().getVectorElementCount()) &&
11059 "Vector width mismatch between index and data");
11061 N->getScale()->getAsAPIntVal().isPowerOf2() &&
11062 "Scale should be a constant power of 2");
11064 CSEMap.InsertNode(
N, IP);
11079 "Unindexed masked load with an offset!");
11086 ID.AddInteger(getSyntheticNodeSubclassData<MaskedLoadSDNode>(
11087 dl.
getIROrder(), VTs, AM, ExtTy, isExpanding, MemVT, MMO));
11090 void *IP =
nullptr;
11091 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11096 AM, ExtTy, isExpanding, MemVT, MMO);
11097 createOperands(
N,
Ops);
11099 CSEMap.InsertNode(
N, IP);
11110 assert(LD->getOffset().isUndef() &&
"Masked load is already a indexed load!");
11112 Offset, LD->getMask(), LD->getPassThru(),
11113 LD->getMemoryVT(), LD->getMemOperand(), AM,
11114 LD->getExtensionType(), LD->isExpandingLoad());
11122 bool IsCompressing) {
11124 "Invalid chain type");
11127 "Unindexed masked store with an offset!");
11134 ID.AddInteger(getSyntheticNodeSubclassData<MaskedStoreSDNode>(
11135 dl.
getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
11138 void *IP =
nullptr;
11139 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11145 IsTruncating, IsCompressing, MemVT, MMO);
11146 createOperands(
N,
Ops);
11148 CSEMap.InsertNode(
N, IP);
11159 assert(ST->getOffset().isUndef() &&
11160 "Masked store is already a indexed store!");
11162 ST->getMask(), ST->getMemoryVT(), ST->getMemOperand(),
11163 AM, ST->isTruncatingStore(), ST->isCompressingStore());
11171 assert(
Ops.size() == 6 &&
"Incompatible number of operands");
11176 ID.AddInteger(getSyntheticNodeSubclassData<MaskedGatherSDNode>(
11177 dl.
getIROrder(), VTs, MemVT, MMO, IndexType, ExtTy));
11180 void *IP =
nullptr;
11181 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11187 VTs, MemVT, MMO, IndexType, ExtTy);
11188 createOperands(
N,
Ops);
11190 assert(
N->getPassThru().getValueType() ==
N->getValueType(0) &&
11191 "Incompatible type of the PassThru value in MaskedGatherSDNode");
11192 assert(
N->getMask().getValueType().getVectorElementCount() ==
11193 N->getValueType(0).getVectorElementCount() &&
11194 "Vector width mismatch between mask and data");
11195 assert(
N->getIndex().getValueType().getVectorElementCount().isScalable() ==
11196 N->getValueType(0).getVectorElementCount().isScalable() &&
11197 "Scalable flags of index and data do not match");
11199 N->getIndex().getValueType().getVectorElementCount(),
11200 N->getValueType(0).getVectorElementCount()) &&
11201 "Vector width mismatch between index and data");
11203 N->getScale()->getAsAPIntVal().isPowerOf2() &&
11204 "Scale should be a constant power of 2");
11206 CSEMap.InsertNode(
N, IP);
11218 assert(
Ops.size() == 6 &&
"Incompatible number of operands");
11223 ID.AddInteger(getSyntheticNodeSubclassData<MaskedScatterSDNode>(
11224 dl.
getIROrder(), VTs, MemVT, MMO, IndexType, IsTrunc));
11227 void *IP =
nullptr;
11228 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11234 VTs, MemVT, MMO, IndexType, IsTrunc);
11235 createOperands(
N,
Ops);
11237 assert(
N->getMask().getValueType().getVectorElementCount() ==
11238 N->getValue().getValueType().getVectorElementCount() &&
11239 "Vector width mismatch between mask and data");
11241 N->getIndex().getValueType().getVectorElementCount().isScalable() ==
11242 N->getValue().getValueType().getVectorElementCount().isScalable() &&
11243 "Scalable flags of index and data do not match");
11245 N->getIndex().getValueType().getVectorElementCount(),
11246 N->getValue().getValueType().getVectorElementCount()) &&
11247 "Vector width mismatch between index and data");
11249 N->getScale()->getAsAPIntVal().isPowerOf2() &&
11250 "Scale should be a constant power of 2");
11252 CSEMap.InsertNode(
N, IP);
11263 assert(
Ops.size() == 7 &&
"Incompatible number of operands");
11268 ID.AddInteger(getSyntheticNodeSubclassData<MaskedHistogramSDNode>(
11269 dl.
getIROrder(), VTs, MemVT, MMO, IndexType));
11272 void *IP =
nullptr;
11273 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
11279 VTs, MemVT, MMO, IndexType);
11280 createOperands(
N,
Ops);
11282 assert(
N->getMask().getValueType().getVectorElementCount() ==
11283 N->getIndex().getValueType().getVectorElementCount() &&
11284 "Vector width mismatch between mask and data");
11286 N->getScale()->getAsAPIntVal().isPowerOf2() &&
11287 "Scale should be a constant power of 2");
11288 assert(
N->getInc().getValueType().isInteger() &&
"Non integer update value");
11290 CSEMap.InsertNode(
N, IP);
11305 ID.AddInteger(getSyntheticNodeSubclassData<VPLoadFFSDNode>(
DL.getIROrder(),
11309 void *IP =
nullptr;
11310 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
11314 auto *
N = newSDNode<VPLoadFFSDNode>(
DL.getIROrder(),
DL.getDebugLoc(), VTs,
11316 createOperands(
N,
Ops);
11318 CSEMap.InsertNode(
N, IP);
11333 ID.AddInteger(getSyntheticNodeSubclassData<FPStateAccessSDNode>(
11337 void *IP =
nullptr;
11338 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
11343 createOperands(
N,
Ops);
11345 CSEMap.InsertNode(
N, IP);
11360 ID.AddInteger(getSyntheticNodeSubclassData<FPStateAccessSDNode>(
11364 void *IP =
nullptr;
11365 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
11370 createOperands(
N,
Ops);
11372 CSEMap.InsertNode(
N, IP);
11383 if (
Cond.isUndef())
11418 return !Val || Val->getAPIntValue().uge(
X.getScalarValueSizeInBits());
11424 if (
X.getValueType().getScalarType() == MVT::i1)
11437 bool HasNan = (XC && XC->
getValueAPF().isNaN()) ||
11439 bool HasInf = (XC && XC->
getValueAPF().isInfinity()) ||
11442 if (Flags.hasNoNaNs() && (HasNan ||
X.isUndef() ||
Y.isUndef()))
11445 if (Flags.hasNoInfs() && (HasInf ||
X.isUndef() ||
Y.isUndef()))
11468 if (Opcode ==
ISD::FMUL && Flags.hasNoNaNs() && Flags.hasNoSignedZeros())
11483 switch (
Ops.size()) {
11484 case 0:
return getNode(Opcode,
DL, VT);
11494 return getNode(Opcode,
DL, VT, NewOps);
11501 Flags = Inserter->getFlags();
11509 case 0:
return getNode(Opcode,
DL, VT);
11510 case 1:
return getNode(Opcode,
DL, VT,
Ops[0], Flags);
11517 for (
const auto &
Op :
Ops)
11519 "Operand is DELETED_NODE!");
11536 "LHS and RHS of condition must have same type!");
11538 "True and False arms of SelectCC must have same type!");
11540 "select_cc node must be of same type as true and false value!");
11544 "Expected select_cc with vector result to have the same sized "
11545 "comparison type!");
11550 "LHS/RHS of comparison should match types!");
11556 Opcode = ISD::VP_XOR;
11561 Opcode = ISD::VP_AND;
11563 case ISD::VP_REDUCE_MUL:
11566 Opcode = ISD::VP_REDUCE_AND;
11568 case ISD::VP_REDUCE_ADD:
11571 Opcode = ISD::VP_REDUCE_XOR;
11573 case ISD::VP_REDUCE_SMAX:
11574 case ISD::VP_REDUCE_UMIN:
11578 Opcode = ISD::VP_REDUCE_AND;
11580 case ISD::VP_REDUCE_SMIN:
11581 case ISD::VP_REDUCE_UMAX:
11585 Opcode = ISD::VP_REDUCE_OR;
11593 if (VT != MVT::Glue) {
11596 void *IP =
nullptr;
11598 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
11599 E->intersectFlagsWith(Flags);
11603 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
11604 createOperands(
N,
Ops);
11606 CSEMap.InsertNode(
N, IP);
11608 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
11609 createOperands(
N,
Ops);
11612 N->setFlags(Flags);
11623 Flags = Inserter->getFlags();
11637 Flags = Inserter->getFlags();
11647 for (
const auto &
Op :
Ops)
11649 "Operand is DELETED_NODE!");
11658 "Invalid add/sub overflow op!");
11660 Ops[0].getValueType() ==
Ops[1].getValueType() &&
11661 Ops[0].getValueType() == VTList.
VTs[0] &&
11662 "Binary operator types must match!");
11669 if (N2CV && N2CV->
isZero()) {
11700 "Invalid add/sub overflow op!");
11702 Ops[0].getValueType() ==
Ops[1].getValueType() &&
11703 Ops[0].getValueType() == VTList.
VTs[0] &&
11704 Ops[2].getValueType() == VTList.
VTs[1] &&
11705 "Binary operator types must match!");
11709 assert(VTList.
NumVTs == 2 &&
Ops.size() == 2 &&
"Invalid mul lo/hi op!");
11711 VTList.
VTs[0] ==
Ops[0].getValueType() &&
11712 VTList.
VTs[0] ==
Ops[1].getValueType() &&
11713 "Binary operator types must match!");
11719 unsigned OutWidth = Width * 2;
11720 APInt Val = LHS->getAPIntValue();
11723 Val = Val.
sext(OutWidth);
11724 Mul =
Mul.sext(OutWidth);
11726 Val = Val.
zext(OutWidth);
11727 Mul =
Mul.zext(OutWidth);
11739 assert(VTList.
NumVTs == 2 &&
Ops.size() == 1 &&
"Invalid ffrexp op!");
11741 VTList.
VTs[0] ==
Ops[0].getValueType() &&
"frexp type mismatch");
11749 DL, VTList.
VTs[1]);
11757 "Invalid STRICT_FP_EXTEND!");
11759 Ops[1].getValueType().isFloatingPoint() &&
"Invalid FP cast!");
11761 "STRICT_FP_EXTEND result type should be vector iff the operand "
11762 "type is vector!");
11765 Ops[1].getValueType().getVectorElementCount()) &&
11766 "Vector element count mismatch!");
11768 "Invalid fpext node, dst <= src!");
11771 assert(VTList.
NumVTs == 2 &&
Ops.size() == 3 &&
"Invalid STRICT_FP_ROUND!");
11773 "STRICT_FP_ROUND result type should be vector iff the operand "
11774 "type is vector!");
11777 Ops[1].getValueType().getVectorElementCount()) &&
11778 "Vector element count mismatch!");
11780 Ops[1].getValueType().isFloatingPoint() &&
11783 (
Ops[2]->getAsZExtVal() == 0 ||
Ops[2]->getAsZExtVal() == 1) &&
11784 "Invalid STRICT_FP_ROUND!");
11790 if (VTList.
VTs[VTList.
NumVTs-1] != MVT::Glue) {
11793 void *IP =
nullptr;
11794 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
11795 E->intersectFlagsWith(Flags);
11799 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTList);
11800 createOperands(
N,
Ops);
11801 CSEMap.InsertNode(
N, IP);
11803 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTList);
11804 createOperands(
N,
Ops);
11807 N->setFlags(Flags);
11854 return makeVTList(&(*EVTs.insert(VT).first), 1);
11863 void *IP =
nullptr;
11866 EVT *Array = Allocator.Allocate<
EVT>(2);
11869 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 2);
11870 VTListMap.InsertNode(Result, IP);
11872 return Result->getSDVTList();
11882 void *IP =
nullptr;
11885 EVT *Array = Allocator.Allocate<
EVT>(3);
11889 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 3);
11890 VTListMap.InsertNode(Result, IP);
11892 return Result->getSDVTList();
11903 void *IP =
nullptr;
11906 EVT *Array = Allocator.Allocate<
EVT>(4);
11911 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 4);
11912 VTListMap.InsertNode(Result, IP);
11914 return Result->getSDVTList();
11918 unsigned NumVTs = VTs.
size();
11920 ID.AddInteger(NumVTs);
11921 for (
unsigned index = 0; index < NumVTs; index++) {
11922 ID.AddInteger(VTs[index].getRawBits());
11925 void *IP =
nullptr;
11928 EVT *Array = Allocator.Allocate<
EVT>(NumVTs);
11930 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, NumVTs);
11931 VTListMap.InsertNode(Result, IP);
11933 return Result->getSDVTList();
11944 assert(
N->getNumOperands() == 1 &&
"Update with wrong number of operands");
11947 if (
Op ==
N->getOperand(0))
return N;
11950 void *InsertPos =
nullptr;
11951 if (
SDNode *Existing = FindModifiedNodeSlot(
N,
Op, InsertPos))
11956 if (!RemoveNodeFromCSEMaps(
N))
11957 InsertPos =
nullptr;
11960 N->OperandList[0].set(
Op);
11964 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
11969 assert(
N->getNumOperands() == 2 &&
"Update with wrong number of operands");
11972 if (Op1 ==
N->getOperand(0) && Op2 ==
N->getOperand(1))
11976 void *InsertPos =
nullptr;
11977 if (
SDNode *Existing = FindModifiedNodeSlot(
N, Op1, Op2, InsertPos))
11982 if (!RemoveNodeFromCSEMaps(
N))
11983 InsertPos =
nullptr;
11986 if (
N->OperandList[0] != Op1)
11987 N->OperandList[0].set(Op1);
11988 if (
N->OperandList[1] != Op2)
11989 N->OperandList[1].set(Op2);
11993 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
12013 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
12021 "Update with wrong number of operands");
12024 if (std::equal(
Ops.begin(),
Ops.end(),
N->op_begin()))
12028 void *InsertPos =
nullptr;
12029 if (
SDNode *Existing = FindModifiedNodeSlot(
N,
Ops, InsertPos))
12034 if (!RemoveNodeFromCSEMaps(
N))
12035 InsertPos =
nullptr;
12038 for (
unsigned i = 0; i !=
NumOps; ++i)
12039 if (
N->OperandList[i] !=
Ops[i])
12040 N->OperandList[i].set(
Ops[i]);
12044 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
12061 if (NewMemRefs.
empty()) {
12067 if (NewMemRefs.
size() == 1) {
12068 N->MemRefs = NewMemRefs[0];
12074 Allocator.template Allocate<MachineMemOperand *>(NewMemRefs.
size());
12076 N->MemRefs = MemRefsBuffer;
12077 N->NumMemRefs =
static_cast<int>(NewMemRefs.
size());
12149 New->setNodeId(-1);
12169 unsigned Order = std::min(
N->getIROrder(), OLoc.
getIROrder());
12170 N->setIROrder(Order);
12193 void *IP =
nullptr;
12194 if (VTs.
VTs[VTs.
NumVTs-1] != MVT::Glue) {
12198 return UpdateSDLocOnMergeSDNode(ON,
SDLoc(
N));
12201 if (!RemoveNodeFromCSEMaps(
N))
12206 N->ValueList = VTs.
VTs;
12216 if (Used->use_empty())
12217 DeadNodeSet.
insert(Used);
12222 MN->clearMemRefs();
12226 createOperands(
N,
Ops);
12230 if (!DeadNodeSet.
empty()) {
12232 for (
SDNode *
N : DeadNodeSet)
12233 if (
N->use_empty())
12239 CSEMap.InsertNode(
N, IP);
12244 unsigned OrigOpc =
Node->getOpcode();
12249#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
12250 case ISD::STRICT_##DAGN: NewOpc = ISD::DAGN; break;
12251#define CMP_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
12252 case ISD::STRICT_##DAGN: NewOpc = ISD::SETCC; break;
12253#include "llvm/IR/ConstrainedOps.def"
12256 assert(
Node->getNumValues() == 2 &&
"Unexpected number of results!");
12264 for (
unsigned i = 1, e =
Node->getNumOperands(); i != e; ++i)
12265 Ops.push_back(
Node->getOperand(i));
12382 bool DoCSE = VTs.
VTs[VTs.
NumVTs-1] != MVT::Glue;
12384 void *IP =
nullptr;
12390 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
12396 N = newSDNode<MachineSDNode>(~Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
12397 createOperands(
N,
Ops);
12400 CSEMap.InsertNode(
N, IP);
12413 VT, Operand, SRIdxVal);
12423 VT, Operand, Subreg, SRIdxVal);
12431 bool AllowCommute) {
12434 Flags = Inserter->getFlags();
12441 bool AllowCommute) {
12442 if (VTList.
VTs[VTList.
NumVTs - 1] == MVT::Glue)
12448 void *IP =
nullptr;
12449 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP)) {
12450 E->intersectFlagsWith(Flags);
12459 if (AllowCommute && TLI->isCommutativeBinOp(Opcode))
12468 if (VTList.
VTs[VTList.
NumVTs - 1] != MVT::Glue) {
12471 void *IP =
nullptr;
12472 if (FindNodeOrInsertPos(
ID,
SDLoc(), IP))
12482 SDNode *
N,
unsigned R,
bool IsIndirect,
12485 "Expected inlined-at fields to agree");
12486 return new (DbgInfo->getAlloc())
12488 {}, IsIndirect,
DL, O,
12498 "Expected inlined-at fields to agree");
12499 return new (DbgInfo->getAlloc())
12512 "Expected inlined-at fields to agree");
12524 "Expected inlined-at fields to agree");
12525 return new (DbgInfo->getAlloc())
12527 Dependencies, IsIndirect,
DL, O,
12536 "Expected inlined-at fields to agree");
12537 return new (DbgInfo->getAlloc())
12539 {}, IsIndirect,
DL, O,
12547 unsigned O,
bool IsVariadic) {
12549 "Expected inlined-at fields to agree");
12550 return new (DbgInfo->getAlloc())
12551 SDDbgValue(DbgInfo->getAlloc(), Var, Expr, Locs, Dependencies, IsIndirect,
12552 DL, O, IsVariadic);
12556 unsigned OffsetInBits,
unsigned SizeInBits,
12557 bool InvalidateDbg) {
12560 assert(FromNode && ToNode &&
"Can't modify dbg values");
12565 if (From == To || FromNode == ToNode)
12577 if (Dbg->isInvalidated())
12585 auto NewLocOps = Dbg->copyLocationOps();
12587 NewLocOps.begin(), NewLocOps.end(),
12589 bool Match = Op == FromLocOp;
12599 auto *Expr = Dbg->getExpression();
12605 if (
auto FI = Expr->getFragmentInfo())
12606 if (OffsetInBits + SizeInBits > FI->SizeInBits)
12615 auto AdditionalDependencies = Dbg->getAdditionalDependencies();
12618 Var, Expr, NewLocOps, AdditionalDependencies, Dbg->isIndirect(),
12619 Dbg->getDebugLoc(), std::max(ToNode->
getIROrder(), Dbg->getOrder()),
12620 Dbg->isVariadic());
12623 if (InvalidateDbg) {
12625 Dbg->setIsInvalidated();
12626 Dbg->setIsEmitted();
12632 "Transferred DbgValues should depend on the new SDNode");
12638 if (!
N.getHasDebugValue())
12641 auto GetLocationOperand = [](
SDNode *
Node,
unsigned ResNo) {
12649 if (DV->isInvalidated())
12651 switch (
N.getOpcode()) {
12661 Offset =
N.getConstantOperandVal(1);
12664 if (!RHSConstant && DV->isIndirect())
12671 auto *DIExpr = DV->getExpression();
12672 auto NewLocOps = DV->copyLocationOps();
12674 size_t OrigLocOpsSize = NewLocOps.size();
12675 for (
size_t i = 0; i < OrigLocOpsSize; ++i) {
12680 NewLocOps[i].getSDNode() != &
N)
12691 const auto *TmpDIExpr =
12699 NewLocOps.push_back(RHS);
12708 DV->isVariadic() || OrigLocOpsSize != NewLocOps.size();
12710 auto AdditionalDependencies = DV->getAdditionalDependencies();
12712 DV->getVariable(), DIExpr, NewLocOps, AdditionalDependencies,
12713 DV->isIndirect(), DV->getDebugLoc(), DV->getOrder(), IsVariadic);
12715 DV->setIsInvalidated();
12716 DV->setIsEmitted();
12718 N0.
getNode()->dumprFull(
this);
12719 dbgs() <<
" into " << *DIExpr <<
'\n');
12726 TypeSize ToSize =
N.getValueSizeInBits(0);
12730 auto NewLocOps = DV->copyLocationOps();
12732 for (
size_t i = 0; i < NewLocOps.size(); ++i) {
12734 NewLocOps[i].getSDNode() != &
N)
12746 DV->getAdditionalDependencies(), DV->isIndirect(),
12747 DV->getDebugLoc(), DV->getOrder(), DV->isVariadic());
12750 DV->setIsInvalidated();
12751 DV->setIsEmitted();
12753 dbgs() <<
" into " << *DbgExpression <<
'\n');
12760 assert((!Dbg->getSDNodes().empty() ||
12763 return Op.getKind() == SDDbgOperand::FRAMEIX;
12765 "Salvaged DbgValue should depend on a new SDNode");
12774 "Expected inlined-at fields to agree");
12775 return new (DbgInfo->getAlloc())
SDDbgLabel(Label,
DL, O);
12790 while (UI != UE &&
N == UI->
getUser())
12798 :
SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
12811 "Cannot replace with this method!");
12812 assert(From != To.
getNode() &&
"Cannot replace uses of with self");
12827 RAUWUpdateListener Listener(*
this, UI, UE);
12832 RemoveNodeFromCSEMaps(
User);
12847 AddModifiedNodeToCSEMaps(
User);
12863 for (
unsigned i = 0, e = From->
getNumValues(); i != e; ++i)
12866 "Cannot use this version of ReplaceAllUsesWith!");
12874 for (
unsigned i = 0, e = From->
getNumValues(); i != e; ++i)
12876 assert((i < To->getNumValues()) &&
"Invalid To location");
12885 RAUWUpdateListener Listener(*
this, UI, UE);
12890 RemoveNodeFromCSEMaps(
User);
12906 AddModifiedNodeToCSEMaps(
User);
12923 for (
unsigned i = 0, e = From->
getNumValues(); i != e; ++i) {
12933 RAUWUpdateListener Listener(*
this, UI, UE);
12938 RemoveNodeFromCSEMaps(
User);
12944 bool To_IsDivergent =
false;
12959 AddModifiedNodeToCSEMaps(
User);
12972 if (From == To)
return;
12988 RAUWUpdateListener Listener(*
this, UI, UE);
12991 bool UserRemovedFromCSEMaps =
false;
13008 if (!UserRemovedFromCSEMaps) {
13009 RemoveNodeFromCSEMaps(
User);
13010 UserRemovedFromCSEMaps =
true;
13020 if (!UserRemovedFromCSEMaps)
13025 AddModifiedNodeToCSEMaps(
User);
13044bool operator<(
const UseMemo &L,
const UseMemo &R) {
13045 return (intptr_t)L.User < (intptr_t)R.User;
13052 SmallVectorImpl<UseMemo> &
Uses;
13054 void NodeDeleted(SDNode *
N, SDNode *
E)
override {
13055 for (UseMemo &Memo :
Uses)
13056 if (Memo.User ==
N)
13057 Memo.User =
nullptr;
13061 RAUOVWUpdateListener(SelectionDAG &d, SmallVectorImpl<UseMemo> &uses)
13062 : SelectionDAG::DAGUpdateListener(d),
Uses(uses) {}
13069 switch (
Node->getOpcode()) {
13081 if (TLI->isSDNodeAlwaysUniform(
N)) {
13082 assert(!TLI->isSDNodeSourceOfDivergence(
N, FLI, UA) &&
13083 "Conflicting divergence information!");
13086 if (TLI->isSDNodeSourceOfDivergence(
N, FLI, UA))
13088 for (
const auto &
Op :
N->ops()) {
13089 EVT VT =
Op.getValueType();
13092 if (VT != MVT::Other &&
Op.getNode()->isDivergent() &&
13104 if (
N->SDNodeBits.IsDivergent != IsDivergent) {
13105 N->SDNodeBits.IsDivergent = IsDivergent;
13108 }
while (!Worklist.
empty());
13111void SelectionDAG::CreateTopologicalOrder(std::vector<SDNode *> &Order) {
13113 Order.reserve(AllNodes.size());
13115 unsigned NOps =
N.getNumOperands();
13118 Order.push_back(&
N);
13120 for (
size_t I = 0;
I != Order.size(); ++
I) {
13122 for (
auto *U :
N->users()) {
13123 unsigned &UnsortedOps = Degree[U];
13124 if (0 == --UnsortedOps)
13125 Order.push_back(U);
13130#if !defined(NDEBUG) && LLVM_ENABLE_ABI_BREAKING_CHECKS
13131void SelectionDAG::VerifyDAGDivergence() {
13132 std::vector<SDNode *> TopoOrder;
13133 CreateTopologicalOrder(TopoOrder);
13134 for (
auto *
N : TopoOrder) {
13136 "Divergence bit inconsistency detected");
13159 for (
unsigned i = 0; i != Num; ++i) {
13160 unsigned FromResNo = From[i].
getResNo();
13163 if (
Use.getResNo() == FromResNo) {
13165 Uses.push_back(Memo);
13172 RAUOVWUpdateListener Listener(*
this,
Uses);
13174 for (
unsigned UseIndex = 0, UseIndexEnd =
Uses.size();
13175 UseIndex != UseIndexEnd; ) {
13181 if (
User ==
nullptr) {
13187 RemoveNodeFromCSEMaps(
User);
13194 unsigned i =
Uses[UseIndex].Index;
13199 }
while (UseIndex != UseIndexEnd &&
Uses[UseIndex].
User ==
User);
13203 AddModifiedNodeToCSEMaps(
User);
13211 unsigned DAGSize = 0;
13227 unsigned Degree =
N.getNumOperands();
13230 N.setNodeId(DAGSize++);
13232 if (Q != SortedPos)
13233 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
13234 assert(SortedPos != AllNodes.end() &&
"Overran node list");
13238 N.setNodeId(Degree);
13250 unsigned Degree =
P->getNodeId();
13251 assert(Degree != 0 &&
"Invalid node degree");
13255 P->setNodeId(DAGSize++);
13256 if (
P->getIterator() != SortedPos)
13257 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(
P));
13258 assert(SortedPos != AllNodes.end() &&
"Overran node list");
13262 P->setNodeId(Degree);
13265 if (
Node.getIterator() == SortedPos) {
13269 dbgs() <<
"Overran sorted position:\n";
13271 dbgs() <<
"Checking if this is due to cycles\n";
13278 assert(SortedPos == AllNodes.end() &&
13279 "Topological sort incomplete!");
13281 "First node in topological sort is not the entry token!");
13282 assert(AllNodes.front().getNodeId() == 0 &&
13283 "First node in topological sort has non-zero id!");
13284 assert(AllNodes.front().getNumOperands() == 0 &&
13285 "First node in topological sort has operands!");
13286 assert(AllNodes.back().getNodeId() == (
int)DAGSize-1 &&
13287 "Last node in topologic sort has unexpected id!");
13288 assert(AllNodes.back().use_empty() &&
13289 "Last node in topologic sort has users!");
13296 SortedNodes.
clear();
13303 unsigned NumOperands =
N.getNumOperands();
13304 if (NumOperands == 0)
13308 RemainingOperands[&
N] = NumOperands;
13313 for (
unsigned i = 0U; i < SortedNodes.
size(); ++i) {
13314 const SDNode *
N = SortedNodes[i];
13315 for (
const SDNode *U :
N->users()) {
13320 unsigned &NumRemOperands = RemainingOperands[U];
13321 assert(NumRemOperands &&
"Invalid number of remaining operands");
13323 if (!NumRemOperands)
13328 assert(SortedNodes.
size() == AllNodes.size() &&
"Node count mismatch");
13330 "First node in topological sort is not the entry token");
13331 assert(SortedNodes.
front()->getNumOperands() == 0 &&
13332 "First node in topological sort has operands");
13338 for (
SDNode *SD : DB->getSDNodes()) {
13341 assert(DbgInfo->getSDDbgValues(SD).empty() || SD->getHasDebugValue());
13342 SD->setHasDebugValue(
true);
13344 DbgInfo->add(DB, isParameter);
13357 if (OldChain == NewMemOpChain || OldChain.
use_empty())
13358 return NewMemOpChain;
13361 OldChain, NewMemOpChain);
13364 return TokenFactor;
13383 if (OutFunction !=
nullptr)
13391 std::string ErrorStr;
13393 ErrorFormatter <<
"Undefined external symbol ";
13394 ErrorFormatter <<
'"' << Symbol <<
'"';
13404 return Const !=
nullptr && Const->isZero();
13413 return Const !=
nullptr && Const->isZero() && !Const->isNegative();
13418 return Const !=
nullptr && Const->isAllOnes();
13423 return Const !=
nullptr && Const->isOne();
13428 return Const !=
nullptr && Const->isMinSignedValue();
13432 unsigned OperandNo) {
13437 APInt Const = ConstV->getAPIntValue().trunc(V.getScalarValueSizeInBits());
13443 return Const.isZero();
13445 return Const.isOne();
13448 return Const.isAllOnes();
13450 return Const.isMinSignedValue();
13452 return Const.isMaxSignedValue();
13457 return OperandNo == 1 && Const.isZero();
13460 return OperandNo == 1 && Const.isOne();
13465 return ConstFP->isZero() &&
13466 (Flags.hasNoSignedZeros() || ConstFP->isNegative());
13468 return OperandNo == 1 && ConstFP->isZero() &&
13469 (Flags.hasNoSignedZeros() || !ConstFP->isNegative());
13471 return ConstFP->isExactlyValue(1.0);
13473 return OperandNo == 1 && ConstFP->isExactlyValue(1.0);
13477 EVT VT = V.getValueType();
13479 APFloat NeutralAF = !Flags.hasNoNaNs()
13481 : !Flags.hasNoInfs()
13487 return ConstFP->isExactlyValue(NeutralAF);
13501 while (V.getOpcode() ==
ISD::BITCAST && V.getOperand(0).hasOneUse())
13520 !DemandedElts[IndexC->getZExtValue()]) {
13539 unsigned NumBits = V.getScalarValueSizeInBits();
13542 return C && (
C->getAPIntValue().
countr_one() >= NumBits);
13546 bool AllowTruncation) {
13547 EVT VT =
N.getValueType();
13556 bool AllowTruncation) {
13563 EVT VecEltVT =
N->getValueType(0).getVectorElementType();
13565 EVT CVT = CN->getValueType(0);
13566 assert(CVT.
bitsGE(VecEltVT) &&
"Illegal splat_vector element extension");
13567 if (AllowTruncation || CVT == VecEltVT)
13574 ConstantSDNode *CN = BV->getConstantSplatNode(DemandedElts, &UndefElements);
13579 if (CN && (UndefElements.
none() || AllowUndefs)) {
13581 EVT NSVT =
N.getValueType().getScalarType();
13582 assert(CVT.
bitsGE(NSVT) &&
"Illegal build vector element extension");
13583 if (AllowTruncation || (CVT == NSVT))
13592 EVT VT =
N.getValueType();
13600 const APInt &DemandedElts,
13601 bool AllowUndefs) {
13608 BV->getConstantFPSplatNode(DemandedElts, &UndefElements);
13610 if (CN && (UndefElements.
none() || AllowUndefs))
13625 return C &&
C->isZero();
13631 return C &&
C->isOne();
13636 return C &&
C->isExactlyValue(1.0);
13641 unsigned BitWidth =
N.getScalarValueSizeInBits();
13643 return C &&
C->isAllOnes() &&
C->getValueSizeInBits(0) ==
BitWidth;
13649 APInt(
C->getAPIntValue().getBitWidth(), 1));
13655 return C &&
C->isZero();
13660 return C &&
C->isZero();
13671 bool IsVolatile =
false;
13672 bool IsNonTemporal =
false;
13673 bool IsDereferenceable =
true;
13674 bool IsInvariant =
true;
13676 IsVolatile |= MMO->isVolatile();
13677 IsNonTemporal |= MMO->isNonTemporal();
13678 IsDereferenceable &= MMO->isDereferenceable();
13679 IsInvariant &= MMO->isInvariant();
13705 std::vector<EVT> VTs;
13718const EVT *SDNode::getValueTypeList(
MVT VT) {
13719 static EVTArray SimpleVTArray;
13722 return &SimpleVTArray.VTs[VT.
SimpleTy];
13731 if (U.getResNo() ==
Value)
13769 return any_of(
N->op_values(),
13770 [
this](
SDValue Op) { return this == Op.getNode(); });
13784 unsigned Depth)
const {
13785 if (*
this == Dest)
return true;
13789 if (
Depth == 0)
return false;
13809 return Op.reachesChainWithoutSideEffects(Dest, Depth - 1);
13815 if (Ld->isUnordered())
13816 return Ld->getChain().reachesChainWithoutSideEffects(Dest,
Depth-1);
13829 this->Flags &= Flags;
13835 bool AllowPartials) {
13850 unsigned CandidateBinOp =
Op.getOpcode();
13851 if (
Op.getValueType().isFloatingPoint()) {
13853 switch (CandidateBinOp) {
13855 if (!Flags.hasNoSignedZeros() || !Flags.hasAllowReassociation())
13865 auto PartialReduction = [&](
SDValue Op,
unsigned NumSubElts) {
13866 if (!AllowPartials || !
Op)
13868 EVT OpVT =
Op.getValueType();
13871 if (!TLI->isExtractSubvectorCheap(SubVT, OpVT, 0))
13890 unsigned Stages =
Log2_32(
Op.getValueType().getVectorNumElements());
13892 for (
unsigned i = 0; i < Stages; ++i) {
13893 unsigned MaskEnd = (1 << i);
13895 if (
Op.getOpcode() != CandidateBinOp)
13896 return PartialReduction(PrevOp, MaskEnd);
13912 return PartialReduction(PrevOp, MaskEnd);
13915 for (
int Index = 0; Index < (int)MaskEnd; ++Index)
13916 if (Shuffle->
getMaskElt(Index) != (
int)(MaskEnd + Index))
13917 return PartialReduction(PrevOp, MaskEnd);
13924 while (
Op.getOpcode() == CandidateBinOp) {
13925 unsigned NumElts =
Op.getValueType().getVectorNumElements();
13934 if (NumSrcElts != (2 * NumElts))
13949 EVT VT =
N->getValueType(0);
13958 else if (NE > ResNE)
13961 if (
N->getNumValues() == 2) {
13964 EVT VT1 =
N->getValueType(1);
13968 for (i = 0; i != NE; ++i) {
13969 for (
unsigned j = 0, e =
N->getNumOperands(); j != e; ++j) {
13970 SDValue Operand =
N->getOperand(j);
13978 SDValue EltOp =
getNode(
N->getOpcode(), dl, {EltVT, EltVT1}, Operands);
13983 for (; i < ResNE; ++i) {
13995 assert(
N->getNumValues() == 1 &&
13996 "Can't unroll a vector with multiple results!");
14002 for (i= 0; i != NE; ++i) {
14003 for (
unsigned j = 0, e =
N->getNumOperands(); j != e; ++j) {
14004 SDValue Operand =
N->getOperand(j);
14012 Operands[j] = Operand;
14016 switch (
N->getOpcode()) {
14044 ASC->getSrcAddressSpace(),
14045 ASC->getDestAddressSpace()));
14051 for (; i < ResNE; ++i)
14060 unsigned Opcode =
N->getOpcode();
14064 "Expected an overflow opcode");
14066 EVT ResVT =
N->getValueType(0);
14067 EVT OvVT =
N->getValueType(1);
14076 else if (NE > ResNE)
14088 for (
unsigned i = 0; i < NE; ++i) {
14089 SDValue Res =
getNode(Opcode, dl, VTs, LHSScalars[i], RHSScalars[i]);
14112 if (LD->isVolatile() ||
Base->isVolatile())
14115 if (!LD->isSimple())
14117 if (LD->isIndexed() ||
Base->isIndexed())
14119 if (LD->getChain() !=
Base->getChain())
14121 EVT VT = LD->getMemoryVT();
14129 if (BaseLocDecomp.equalBaseIndex(LocDecomp, *
this,
Offset))
14130 return (Dist * (int64_t)Bytes ==
Offset);
14139 int64_t GVOffset = 0;
14140 if (TLI->isGAPlusOffset(Ptr.
getNode(), GV, GVOffset)) {
14151 int FrameIdx = INT_MIN;
14152 int64_t FrameOffset = 0;
14154 FrameIdx = FI->getIndex();
14162 if (FrameIdx != INT_MIN) {
14167 return std::nullopt;
14177 "Split node must be a scalar type");
14182 return std::make_pair(
Lo,
Hi);
14191 LoVT = HiVT = TLI->getTypeToTransformTo(*
getContext(), VT);
14195 return std::make_pair(LoVT, HiVT);
14203 bool *HiIsEmpty)
const {
14213 "Mixing fixed width and scalable vectors when enveloping a type");
14218 *HiIsEmpty =
false;
14226 return std::make_pair(LoVT, HiVT);
14231std::pair<SDValue, SDValue>
14236 "Splitting vector with an invalid mixture of fixed and scalable "
14239 N.getValueType().getVectorMinNumElements() &&
14240 "More vector elements requested than available!");
14249 return std::make_pair(
Lo,
Hi);
14256 EVT VT =
N.getValueType();
14258 "Expecting the mask to be an evenly-sized vector");
14263 return std::make_pair(
Lo,
Hi);
14268 EVT VT =
N.getValueType();
14276 unsigned Start,
unsigned Count,
14278 EVT VT =
Op.getValueType();
14281 if (EltVT ==
EVT())
14284 for (
unsigned i = Start, e = Start +
Count; i != e; ++i) {
14296 return Val.MachineCPVal->getType();
14297 return Val.ConstVal->getType();
14301 unsigned &SplatBitSize,
14302 bool &HasAnyUndefs,
14303 unsigned MinSplatBits,
14304 bool IsBigEndian)
const {
14308 if (MinSplatBits > VecWidth)
14313 SplatValue =
APInt(VecWidth, 0);
14314 SplatUndef =
APInt(VecWidth, 0);
14321 assert(
NumOps > 0 &&
"isConstantSplat has 0-size build vector");
14324 for (
unsigned j = 0; j <
NumOps; ++j) {
14325 unsigned i = IsBigEndian ?
NumOps - 1 - j : j;
14327 unsigned BitPos = j * EltWidth;
14330 SplatUndef.
setBits(BitPos, BitPos + EltWidth);
14332 SplatValue.
insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos);
14334 SplatValue.
insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos);
14341 HasAnyUndefs = (SplatUndef != 0);
14344 while (VecWidth > 8) {
14349 unsigned HalfSize = VecWidth / 2;
14356 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
14357 MinSplatBits > HalfSize)
14360 SplatValue = HighValue | LowValue;
14361 SplatUndef = HighUndef & LowUndef;
14363 VecWidth = HalfSize;
14372 SplatBitSize = VecWidth;
14379 if (UndefElements) {
14380 UndefElements->
clear();
14387 for (
unsigned i = 0; i !=
NumOps; ++i) {
14388 if (!DemandedElts[i])
14391 if (
Op.isUndef()) {
14393 (*UndefElements)[i] =
true;
14394 }
else if (!Splatted) {
14396 }
else if (Splatted !=
Op) {
14402 unsigned FirstDemandedIdx = DemandedElts.
countr_zero();
14404 "Can only have a splat without a constant for all undefs.");
14421 if (UndefElements) {
14422 UndefElements->
clear();
14433 (*UndefElements)[
I] =
true;
14436 for (
unsigned SeqLen = 1; SeqLen <
NumOps; SeqLen *= 2) {
14437 Sequence.append(SeqLen,
SDValue());
14438 for (
unsigned I = 0;
I !=
NumOps; ++
I) {
14439 if (!DemandedElts[
I])
14441 SDValue &SeqOp = Sequence[
I % SeqLen];
14443 if (
Op.isUndef()) {
14448 if (SeqOp && !SeqOp.
isUndef() && SeqOp !=
Op) {
14454 if (!Sequence.empty())
14458 assert(Sequence.empty() &&
"Failed to empty non-repeating sequence pattern");
14499 const APFloat &APF = CN->getValueAPF();
14505 return IntVal.exactLogBase2();
14511 bool IsLittleEndian,
unsigned DstEltSizeInBits,
14519 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
14520 "Invalid bitcast scale");
14525 BitVector SrcUndeElements(NumSrcOps,
false);
14527 for (
unsigned I = 0;
I != NumSrcOps; ++
I) {
14529 if (
Op.isUndef()) {
14530 SrcUndeElements.
set(
I);
14535 assert((CInt || CFP) &&
"Unknown constant");
14536 SrcBitElements[
I] = CInt ? CInt->getAPIntValue().trunc(SrcEltSizeInBits)
14537 : CFP->getValueAPF().bitcastToAPInt();
14541 recastRawBits(IsLittleEndian, DstEltSizeInBits, RawBitElements,
14542 SrcBitElements, UndefElements, SrcUndeElements);
14547 unsigned DstEltSizeInBits,
14552 unsigned NumSrcOps = SrcBitElements.
size();
14553 unsigned SrcEltSizeInBits = SrcBitElements[0].getBitWidth();
14554 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
14555 "Invalid bitcast scale");
14556 assert(NumSrcOps == SrcUndefElements.
size() &&
14557 "Vector size mismatch");
14559 unsigned NumDstOps = (NumSrcOps * SrcEltSizeInBits) / DstEltSizeInBits;
14560 DstUndefElements.
clear();
14561 DstUndefElements.
resize(NumDstOps,
false);
14565 if (SrcEltSizeInBits <= DstEltSizeInBits) {
14566 unsigned Scale = DstEltSizeInBits / SrcEltSizeInBits;
14567 for (
unsigned I = 0;
I != NumDstOps; ++
I) {
14568 DstUndefElements.
set(
I);
14569 APInt &DstBits = DstBitElements[
I];
14570 for (
unsigned J = 0; J != Scale; ++J) {
14571 unsigned Idx = (
I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
14572 if (SrcUndefElements[Idx])
14574 DstUndefElements.
reset(
I);
14575 const APInt &SrcBits = SrcBitElements[Idx];
14577 "Illegal constant bitwidths");
14578 DstBits.
insertBits(SrcBits, J * SrcEltSizeInBits);
14585 unsigned Scale = SrcEltSizeInBits / DstEltSizeInBits;
14586 for (
unsigned I = 0;
I != NumSrcOps; ++
I) {
14587 if (SrcUndefElements[
I]) {
14588 DstUndefElements.
set(
I * Scale, (
I + 1) * Scale);
14591 const APInt &SrcBits = SrcBitElements[
I];
14592 for (
unsigned J = 0; J != Scale; ++J) {
14593 unsigned Idx = (
I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
14594 APInt &DstBits = DstBitElements[Idx];
14595 DstBits = SrcBits.
extractBits(DstEltSizeInBits, J * DstEltSizeInBits);
14602 unsigned Opc =
Op.getOpcode();
14609std::optional<std::pair<APInt, APInt>>
14613 return std::nullopt;
14616 APInt Start, Stride;
14617 int FirstIdx = -1, SecondIdx = -1;
14621 for (
unsigned I = 0;
I <
NumOps; ++
I) {
14626 return std::nullopt;
14629 if (FirstIdx < 0) {
14632 }
else if (SecondIdx < 0) {
14638 unsigned IdxDiff =
I - FirstIdx;
14639 APInt ValDiff = Val - Start;
14644 return std::nullopt;
14645 IdxDiff >>= CommonPow2Bits;
14653 return std::nullopt;
14656 Start -= Stride * FirstIdx;
14659 if (Val != Start + Stride *
I)
14660 return std::nullopt;
14666 return std::nullopt;
14668 return std::make_pair(Start, Stride);
14674 for (i = 0, e = Mask.size(); i != e && Mask[i] < 0; ++i)
14684 for (
int Idx = Mask[i]; i != e; ++i)
14685 if (Mask[i] >= 0 && Mask[i] != Idx)
14693 SDValue N,
bool AllowOpaques)
const {
14697 return AllowOpaques || !
C->isOpaque();
14706 TLI->isOffsetFoldingLegal(GA))
14734 return std::nullopt;
14736 EVT VT =
N->getValueType(0);
14738 switch (TLI->getBooleanContents(
N.getValueType())) {
14744 return std::nullopt;
14750 return std::nullopt;
14758 assert(!
Node->OperandList &&
"Node already has operands");
14760 "too many operands to fit into SDNode");
14761 SDUse *
Ops = OperandRecycler.allocate(
14764 bool IsDivergent =
false;
14765 for (
unsigned I = 0;
I != Vals.
size(); ++
I) {
14767 Ops[
I].setInitial(Vals[
I]);
14768 EVT VT =
Ops[
I].getValueType();
14771 if (VT != MVT::Other &&
14774 IsDivergent =
true;
14779 if (!TLI->isSDNodeAlwaysUniform(Node)) {
14780 IsDivergent |= TLI->isSDNodeSourceOfDivergence(Node, FLI, UA);
14781 Node->SDNodeBits.IsDivergent = IsDivergent;
14789 while (Vals.
size() > Limit) {
14790 unsigned SliceIdx = Vals.
size() - Limit;
14866 const SDLoc &DLoc) {
14870 RTLIB::LibcallImpl LibcallImpl =
14871 Libcalls->getLibcallImpl(
static_cast<RTLIB::Libcall
>(LibFunc));
14872 if (LibcallImpl == RTLIB::Unsupported)
14879 Libcalls->getLibcallImplCallingConv(LibcallImpl),
14881 return TLI->LowerCallTo(CLI).second;
14885 assert(From && To &&
"Invalid SDNode; empty source SDValue?");
14886 auto I = SDEI.find(From);
14887 if (
I == SDEI.end())
14892 NodeExtraInfo NEI =
I->second;
14901 SDEI[To] = std::move(NEI);
14918 auto VisitFrom = [&](
auto &&Self,
const SDNode *
N,
int MaxDepth) {
14919 if (MaxDepth == 0) {
14925 if (!FromReach.
insert(
N).second)
14928 Self(Self,
Op.getNode(), MaxDepth - 1);
14933 auto DeepCopyTo = [&](
auto &&Self,
const SDNode *
N) {
14936 if (!Visited.
insert(
N).second)
14941 if (
N == To &&
Op.getNode() == EntrySDN) {
14946 if (!Self(Self,
Op.getNode()))
14950 SDEI[
N] = std::move(NEI);
14960 for (
int PrevDepth = 0, MaxDepth = 16; MaxDepth <= 1024;
14961 PrevDepth = MaxDepth, MaxDepth *= 2, Visited.
clear()) {
14966 for (
const SDNode *
N : StartFrom)
14967 VisitFrom(VisitFrom,
N, MaxDepth - PrevDepth);
14971 LLVM_DEBUG(
dbgs() << __func__ <<
": MaxDepth=" << MaxDepth <<
" too low\n");
14979 errs() <<
"warning: incomplete propagation of SelectionDAG::NodeExtraInfo\n";
14980 assert(
false &&
"From subgraph too complex - increase max. MaxDepth?");
14982 SDEI[To] = std::move(NEI);
14996 if (!Visited.
insert(
N).second) {
14997 errs() <<
"Detected cycle in SelectionDAG\n";
14998 dbgs() <<
"Offending node:\n";
14999 N->dumprFull(DAG);
dbgs() <<
"\n";
15015 bool check = force;
15016#ifdef EXPENSIVE_CHECKS
15020 assert(
N &&
"Checking nonexistent SDNode");
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static bool isConstant(const MachineInstr &MI)
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
This file implements the APSInt class, which is a simple class that represents an arbitrary sized int...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file implements the BitVector class.
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static std::optional< bool > isBigEndian(const SmallDenseMap< int64_t, int64_t, 8 > &MemOffset2Idx, int64_t LowestIdx)
Given a map from byte offsets in memory to indices in a load/store, determine if that map corresponds...
#define __asan_unpoison_memory_region(p, size)
#define LLVM_LIKELY(EXPR)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseSet and SmallDenseSet classes.
This file contains constants used for implementing Dwarf debug support.
This file defines a hash set that can be used to remove duplication of nodes in a graph.
std::pair< Instruction::BinaryOps, Value * > OffsetOp
Find all possible pairs (BinOp, RHS) that BinOp V, RHS can be simplified.
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static Register getMemsetValue(Register Val, LLT Ty, MachineIRBuilder &MIB)
static bool shouldLowerMemFuncForSize(const MachineFunction &MF)
static bool isZero(Value *V, const DataLayout &DL, DominatorTree *DT, AssumptionCache *AC)
static Align getPrefTypeAlign(EVT VT, SelectionDAG &DAG)
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
Register const TargetRegisterInfo * TRI
This file provides utility analysis objects describing memory locations.
static MCRegister getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
PowerPC Reduce CR logical Operation
const SmallVectorImpl< MachineOperand > & Cond
Remove Loads Into Fake Uses
static bool isValid(const char C)
Returns true if C is a valid mangled character: <0-9a-zA-Z_>.
Contains matchers for matching SelectionDAG nodes and values.
static Type * getValueType(Value *V)
Returns the type of the given value/instruction V.
static uint64_t umul_ov(uint64_t i, uint64_t j, bool &Overflow)
static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, Align Alignment, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo, BatchAAResults *BatchAA)
static SDValue getFixedOrScalableQuantity(SelectionDAG &DAG, const SDLoc &DL, EVT VT, Ty Quantity)
static std::pair< SDValue, SDValue > getRuntimeCallSDValueHelper(SDValue Chain, const SDLoc &dl, TargetLowering::ArgListTy &&Args, const CallInst *CI, RTLIB::Libcall Call, SelectionDAG *DAG, const TargetLowering *TLI)
static SDValue getMemsetStores(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, Align Alignment, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, const AAMDNodes &AAInfo)
Lower the call to 'memset' intrinsic function into a series of store operations.
static std::optional< APInt > FoldValueWithUndef(unsigned Opcode, const APInt &C1, bool IsUndef1, const APInt &C2, bool IsUndef2)
static SDValue FoldSTEP_VECTOR(const SDLoc &DL, EVT VT, SDValue Step, SelectionDAG &DAG)
static void AddNodeIDNode(FoldingSetNodeID &ID, unsigned OpC, SDVTList VTList, ArrayRef< SDValue > OpList)
static SDValue getMemsetStringVal(EVT VT, const SDLoc &dl, SelectionDAG &DAG, const TargetLowering &TLI, const ConstantDataArraySlice &Slice)
getMemsetStringVal - Similar to getMemsetValue.
static cl::opt< bool > EnableMemCpyDAGOpt("enable-memcpy-dag-opt", cl::Hidden, cl::init(true), cl::desc("Gang up loads and stores generated by inlining of memcpy"))
static bool haveNoCommonBitsSetCommutative(SDValue A, SDValue B)
static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList)
AddNodeIDValueTypes - Value type lists are intern'd so we can represent them solely with their pointe...
static void commuteShuffle(SDValue &N1, SDValue &N2, MutableArrayRef< int > M)
Swaps the values of N1 and N2.
static bool isMemSrcFromConstant(SDValue Src, ConstantDataArraySlice &Slice)
Returns true if memcpy source is constant data.
static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Dst, SDValue Src, uint64_t Size, Align Alignment, bool isVol, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo)
static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC)
AddNodeIDOpcode - Add the node opcode to the NodeID data.
static ISD::CondCode getSetCCInverseImpl(ISD::CondCode Op, bool isIntegerLike)
static bool doNotCSE(SDNode *N)
doNotCSE - Return true if CSE should not be performed for this node.
static cl::opt< int > MaxLdStGlue("ldstmemcpy-glue-max", cl::desc("Number limit for gluing ld/st of memcpy."), cl::Hidden, cl::init(0))
static void AddNodeIDOperands(FoldingSetNodeID &ID, ArrayRef< SDValue > Ops)
AddNodeIDOperands - Various routines for adding operands to the NodeID data.
static SDValue foldCONCAT_VECTORS(const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops, SelectionDAG &DAG)
Try to simplify vector concatenation to an input value, undef, or build vector.
static MachinePointerInfo InferPointerInfo(const MachinePointerInfo &Info, SelectionDAG &DAG, SDValue Ptr, int64_t Offset=0)
InferPointerInfo - If the specified ptr/offset is a frame index, infer a MachinePointerInfo record fr...
static bool isInTailCallPositionWrapper(const CallInst *CI, const SelectionDAG *SelDAG, bool AllowReturnsFirstArg)
static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N)
If this is an SDNode with special info, add this info to the NodeID data.
static bool gluePropagatesDivergence(const SDNode *Node)
Return true if a glue output should propagate divergence information.
static void NewSDValueDbgMsg(SDValue V, StringRef Msg, SelectionDAG *G)
static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs)
makeVTList - Return an instance of the SDVTList struct initialized with the specified members.
static void checkForCyclesHelper(const SDNode *N, SmallPtrSetImpl< const SDNode * > &Visited, SmallPtrSetImpl< const SDNode * > &Checked, const llvm::SelectionDAG *DAG)
static void chainLoadsAndStoresForMemcpy(SelectionDAG &DAG, const SDLoc &dl, SmallVector< SDValue, 32 > &OutChains, unsigned From, unsigned To, SmallVector< SDValue, 16 > &OutLoadChains, SmallVector< SDValue, 16 > &OutStoreChains)
static int isSignedOp(ISD::CondCode Opcode)
For an integer comparison, return 1 if the comparison is a signed operation and 2 if the result is an...
static std::optional< APInt > FoldValue(unsigned Opcode, const APInt &C1, const APInt &C2)
static SDValue FoldBUILD_VECTOR(const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops, SelectionDAG &DAG)
static void checkAddrSpaceIsValidForLibcall(const TargetLowering *TLI, unsigned AS)
static cl::opt< unsigned > MaxSteps("has-predecessor-max-steps", cl::Hidden, cl::init(8192), cl::desc("DAG combiner limit number of steps when searching DAG " "for predecessor nodes"))
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static SymbolRef::Type getType(const Symbol *Sym)
This file describes how to lower LLVM code to machine code.
static void removeOperands(MachineInstr &MI, unsigned i)
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
static OverflowResult mapOverflowResult(ConstantRange::OverflowResult OR)
Convert ConstantRange OverflowResult into ValueTracking OverflowResult.
static int Lookup(ArrayRef< TableEntry > Table, unsigned Opcode)
static unsigned getSize(unsigned Kind)
static const fltSemantics & IEEEsingle()
cmpResult
IEEE-754R 5.11: Floating Point Comparison Relations.
static constexpr roundingMode rmTowardZero
static const fltSemantics & BFloat()
static const fltSemantics & IEEEquad()
static const fltSemantics & IEEEdouble()
static constexpr roundingMode rmTowardNegative
static constexpr roundingMode rmNearestTiesToEven
static constexpr roundingMode rmTowardPositive
static const fltSemantics & IEEEhalf()
opStatus
IEEE-754R 7: Default exception handling.
static APFloat getQNaN(const fltSemantics &Sem, bool Negative=false, const APInt *payload=nullptr)
Factory for QNaN values.
opStatus divide(const APFloat &RHS, roundingMode RM)
void copySign(const APFloat &RHS)
LLVM_ABI opStatus convert(const fltSemantics &ToSemantics, roundingMode RM, bool *losesInfo)
opStatus subtract(const APFloat &RHS, roundingMode RM)
bool isExactlyValue(double V) const
We don't rely on operator== working on double values, as it returns true for things that are clearly ...
opStatus add(const APFloat &RHS, roundingMode RM)
opStatus convertFromAPInt(const APInt &Input, bool IsSigned, roundingMode RM)
opStatus multiply(const APFloat &RHS, roundingMode RM)
opStatus fusedMultiplyAdd(const APFloat &Multiplicand, const APFloat &Addend, roundingMode RM)
static APFloat getLargest(const fltSemantics &Sem, bool Negative=false)
Returns the largest finite number in the given semantics.
opStatus convertToInteger(MutableArrayRef< integerPart > Input, unsigned int Width, bool IsSigned, roundingMode RM, bool *IsExact) const
static APFloat getInf(const fltSemantics &Sem, bool Negative=false)
Factory for Positive and Negative Infinity.
opStatus mod(const APFloat &RHS)
static APFloat getNaN(const fltSemantics &Sem, bool Negative=false, uint64_t payload=0)
Factory for NaN values.
Class for arbitrary precision integers.
LLVM_ABI APInt umul_ov(const APInt &RHS, bool &Overflow) const
LLVM_ABI APInt usub_sat(const APInt &RHS) const
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
void clearBit(unsigned BitPosition)
Set a given bit to 0.
LLVM_ABI APInt zext(unsigned width) const
Zero extend to a new width.
static APInt getSignMask(unsigned BitWidth)
Get the SignMask for a specific bit width.
uint64_t getZExtValue() const
Get zero extended value.
void setHighBits(unsigned hiBits)
Set the top hiBits bits.
unsigned popcount() const
Count the number of bits set.
void setBitsFrom(unsigned loBit)
Set the top bits starting from loBit.
LLVM_ABI APInt getHiBits(unsigned numBits) const
Compute an APInt containing numBits highbits from this APInt.
LLVM_ABI APInt zextOrTrunc(unsigned width) const
Zero extend or truncate to width.
unsigned getActiveBits() const
Compute the number of active bits in the value.
LLVM_ABI APInt trunc(unsigned width) const
Truncate to new width.
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
APInt abs() const
Get the absolute value.
LLVM_ABI APInt sadd_sat(const APInt &RHS) const
bool isAllOnes() const
Determine if all bits are set. This is true for zero-width values.
bool ugt(const APInt &RHS) const
Unsigned greater than comparison.
static APInt getBitsSet(unsigned numBits, unsigned loBit, unsigned hiBit)
Get a value with a block of bits set.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
LLVM_ABI APInt urem(const APInt &RHS) const
Unsigned remainder operation.
unsigned getBitWidth() const
Return the number of bits in the APInt.
bool ult(const APInt &RHS) const
Unsigned less than comparison.
static APInt getSignedMaxValue(unsigned numBits)
Gets maximum signed value of APInt for a specific bit width.
bool isNegative() const
Determine sign of this APInt.
LLVM_ABI APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
void clearAllBits()
Set every bit to 0.
LLVM_ABI APInt rotr(unsigned rotateAmt) const
Rotate right by rotateAmt.
LLVM_ABI APInt reverseBits() const
void ashrInPlace(unsigned ShiftAmt)
Arithmetic right-shift this APInt by ShiftAmt in place.
bool sle(const APInt &RHS) const
Signed less or equal comparison.
unsigned countr_zero() const
Count the number of trailing zero bits.
unsigned getNumSignBits() const
Computes the number of leading bits of this APInt that are equal to its sign bit.
unsigned countl_zero() const
The APInt version of std::countl_zero.
static LLVM_ABI APInt getSplat(unsigned NewLen, const APInt &V)
Return a value containing V broadcasted over NewLen bits.
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
LLVM_ABI APInt sshl_sat(const APInt &RHS) const
LLVM_ABI APInt ushl_sat(const APInt &RHS) const
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
static bool isSameValue(const APInt &I1, const APInt &I2, bool SignedCompare=false)
Determine if two APInts have the same value, after zero-extending or sign-extending (if SignedCompare...
LLVM_ABI APInt rotl(unsigned rotateAmt) const
Rotate left by rotateAmt.
LLVM_ABI void insertBits(const APInt &SubBits, unsigned bitPosition)
Insert the bits from a smaller APInt starting at bitPosition.
void clearLowBits(unsigned loBits)
Set bottom loBits bits to 0.
unsigned logBase2() const
LLVM_ABI APInt uadd_sat(const APInt &RHS) const
APInt ashr(unsigned ShiftAmt) const
Arithmetic right-shift function.
LLVM_ABI APInt multiplicativeInverse() const
LLVM_ABI APInt srem(const APInt &RHS) const
Function for signed remainder operation.
bool isNonNegative() const
Determine if this APInt Value is non-negative (>= 0)
bool ule(const APInt &RHS) const
Unsigned less or equal comparison.
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
void setBits(unsigned loBit, unsigned hiBit)
Set the bits from loBit (inclusive) to hiBit (exclusive) to 1.
APInt shl(unsigned shiftAmt) const
Left-shift function.
LLVM_ABI APInt byteSwap() const
bool isSubsetOf(const APInt &RHS) const
This operation checks that all bits set in this APInt are also set in RHS.
bool isPowerOf2() const
Check if this APInt's value is a power of two greater than zero.
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
void clearBits(unsigned LoBit, unsigned HiBit)
Clear the bits from LoBit (inclusive) to HiBit (exclusive) to 0.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
void setLowBits(unsigned loBits)
Set the bottom loBits bits.
LLVM_ABI APInt extractBits(unsigned numBits, unsigned bitPosition) const
Return an APInt with the extracted bits [bitPosition,bitPosition+numBits).
bool sge(const APInt &RHS) const
Signed greater or equal comparison.
bool isOne() const
Determine if this is a value of 1.
static APInt getBitsSetFrom(unsigned numBits, unsigned loBit)
Constructs an APInt value that has a contiguous range of bits set.
static APInt getOneBitSet(unsigned numBits, unsigned BitNo)
Return an APInt with exactly one bit set in the result.
void lshrInPlace(unsigned ShiftAmt)
Logical right-shift this APInt by ShiftAmt in place.
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
LLVM_ABI APInt ssub_sat(const APInt &RHS) const
An arbitrary precision integer that knows its signedness.
unsigned getSrcAddressSpace() const
unsigned getDestAddressSpace() const
static Capacity get(size_t N)
Get the capacity of an array that can hold at least N elements.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
size - Get the array size.
bool empty() const
empty - Check if the array is empty.
This is an SDNode representing atomic operations.
static LLVM_ABI BaseIndexOffset match(const SDNode *N, const SelectionDAG &DAG)
Parses tree in N for base, index, offset addresses.
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal=false)
void resize(unsigned N, bool t=false)
resize - Grow or shrink the bitvector.
void clear()
clear - Removes all bits from the bitvector.
bool none() const
none - Returns true if none of the bits are set.
size_type size() const
size - Returns the number of bits in this bitvector.
int64_t getOffset() const
unsigned getTargetFlags() const
const BlockAddress * getBlockAddress() const
The address of a basic block.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
A "pseudo-class" with methods for operating on BUILD_VECTORs.
LLVM_ABI bool getConstantRawBits(bool IsLittleEndian, unsigned DstEltSizeInBits, SmallVectorImpl< APInt > &RawBitElements, BitVector &UndefElements) const
Extract the raw bit data from a build vector of Undef, Constant or ConstantFP node elements.
static LLVM_ABI void recastRawBits(bool IsLittleEndian, unsigned DstEltSizeInBits, SmallVectorImpl< APInt > &DstBitElements, ArrayRef< APInt > SrcBitElements, BitVector &DstUndefElements, const BitVector &SrcUndefElements)
Recast bit data SrcBitElements to DstEltSizeInBits wide elements.
LLVM_ABI bool getRepeatedSequence(const APInt &DemandedElts, SmallVectorImpl< SDValue > &Sequence, BitVector *UndefElements=nullptr) const
Find the shortest repeating sequence of values in the build vector.
LLVM_ABI ConstantFPSDNode * getConstantFPSplatNode(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted constant FP or null if this is not a constant FP splat.
LLVM_ABI SDValue getSplatValue(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted value or a null value if this is not a splat.
LLVM_ABI bool isConstantSplat(APInt &SplatValue, APInt &SplatUndef, unsigned &SplatBitSize, bool &HasAnyUndefs, unsigned MinSplatBits=0, bool isBigEndian=false) const
Check if this is a constant splat, and if so, find the smallest element size that splats the vector.
LLVM_ABI ConstantSDNode * getConstantSplatNode(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted constant or null if this is not a constant splat.
LLVM_ABI int32_t getConstantFPSplatPow2ToLog2Int(BitVector *UndefElements, uint32_t BitWidth) const
If this is a constant FP splat and the splatted constant FP is an exact power or 2,...
LLVM_ABI std::optional< std::pair< APInt, APInt > > isArithmeticSequence() const
If this BuildVector is constant and represents an arithmetic sequence "<a, a+n, a+2n,...
LLVM_ABI bool isConstant() const
This class represents a function call, abstracting a target machine's calling convention.
static LLVM_ABI bool isValueValidForType(EVT VT, const APFloat &Val)
const APFloat & getValueAPF() const
bool isExactlyValue(double V) const
We don't rely on operator== working on double values, as it returns true for things that are clearly ...
ConstantFP - Floating Point Values [float, double].
const APFloat & getValue() const
This is the shared class of boolean and integer constants.
unsigned getBitWidth() const
getBitWidth - Return the scalar bitwidth of this constant.
const APInt & getValue() const
Return the constant as an APInt value reference.
MachineConstantPoolValue * getMachineCPVal() const
bool isMachineConstantPoolEntry() const
const Constant * getConstVal() const
LLVM_ABI Type * getType() const
unsigned getTargetFlags() const
This class represents a range of values.
LLVM_ABI ConstantRange multiply(const ConstantRange &Other) const
Return a new range representing the possible values resulting from a multiplication of a value in thi...
PreferredRangeType
If represented precisely, the result of some range operations may consist of multiple disjoint ranges...
const APInt * getSingleElement() const
If this set contains a single element, return it, otherwise return null.
static LLVM_ABI ConstantRange fromKnownBits(const KnownBits &Known, bool IsSigned)
Initialize a range based on a known bits constraint.
LLVM_ABI OverflowResult unsignedSubMayOverflow(const ConstantRange &Other) const
Return whether unsigned sub of the two ranges always/never overflows.
LLVM_ABI OverflowResult unsignedAddMayOverflow(const ConstantRange &Other) const
Return whether unsigned add of the two ranges always/never overflows.
LLVM_ABI KnownBits toKnownBits() const
Return known bits for values in this range.
LLVM_ABI ConstantRange zeroExtend(uint32_t BitWidth) const
Return a new range in the specified integer type, which must be strictly larger than the current type...
LLVM_ABI APInt getSignedMin() const
Return the smallest signed value contained in the ConstantRange.
LLVM_ABI OverflowResult unsignedMulMayOverflow(const ConstantRange &Other) const
Return whether unsigned mul of the two ranges always/never overflows.
LLVM_ABI ConstantRange signExtend(uint32_t BitWidth) const
Return a new range in the specified integer type, which must be strictly larger than the current type...
LLVM_ABI bool contains(const APInt &Val) const
Return true if the specified value is in the set.
LLVM_ABI APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
LLVM_ABI ConstantRange intersectWith(const ConstantRange &CR, PreferredRangeType Type=Smallest) const
Return the range that results from the intersection of this range with another range.
LLVM_ABI APInt getSignedMax() const
Return the largest signed value contained in the ConstantRange.
OverflowResult
Represents whether an operation on the given constant range is known to always or never overflow.
@ NeverOverflows
Never overflows.
@ AlwaysOverflowsHigh
Always overflows in the direction of signed/unsigned max value.
@ AlwaysOverflowsLow
Always overflows in the direction of signed/unsigned min value.
@ MayOverflow
May or may not overflow.
uint32_t getBitWidth() const
Get the bit width of this ConstantRange.
LLVM_ABI OverflowResult signedSubMayOverflow(const ConstantRange &Other) const
Return whether signed sub of the two ranges always/never overflows.
uint64_t getZExtValue() const
const APInt & getAPIntValue() const
This is an important base class in LLVM.
LLVM_ABI Constant * getSplatValue(bool AllowPoison=false) const
If all elements of the vector constant have the same value, return that value.
LLVM_ABI Constant * getAggregateElement(unsigned Elt) const
For aggregates (struct/array/vector) return the constant that corresponds to the specified element if...
static LLVM_ABI ExtOps getExtOps(unsigned FromSize, unsigned ToSize, bool Signed)
Returns the ops for a zero- or sign-extension in a DIExpression.
static LLVM_ABI void appendOffset(SmallVectorImpl< uint64_t > &Ops, int64_t Offset)
Append Ops with operations to apply the Offset.
static LLVM_ABI DIExpression * appendOpsToArg(const DIExpression *Expr, ArrayRef< uint64_t > Ops, unsigned ArgNo, bool StackValue=false)
Create a copy of Expr by appending the given list of Ops to each instance of the operand DW_OP_LLVM_a...
static LLVM_ABI const DIExpression * convertToVariadicExpression(const DIExpression *Expr)
If Expr is a non-variadic expression (i.e.
static LLVM_ABI std::optional< DIExpression * > createFragmentExpression(const DIExpression *Expr, unsigned OffsetInBits, unsigned SizeInBits)
Create a DIExpression to describe one part of an aggregate variable that is fragmented across multipl...
Base class for variables.
A parsed version of the target data layout string in and methods for querying it.
bool isLittleEndian() const
Layout endianness...
LLVM_ABI IntegerType * getIntPtrType(LLVMContext &C, unsigned AddressSpace=0) const
Returns an integer type with size at least as big as that of a pointer in the given address space.
LLVM_ABI Align getABITypeAlign(Type *Ty) const
Returns the minimum ABI-required alignment for the specified type.
LLVM_ABI unsigned getPointerTypeSizeInBits(Type *) const
The pointer representation size in bits for this type.
LLVM_ABI Align getPrefTypeAlign(Type *Ty) const
Returns the preferred stack/global alignment for the specified type.
Implements a dense probed hash-table based set.
const char * getSymbol() const
unsigned getTargetFlags() const
FoldingSetNodeID - This class is used to gather all the unique data bits of a node.
Data structure describing the variable locations in a function.
bool hasMinSize() const
Optimize this function for minimum size (-Oz).
AttributeList getAttributes() const
Return the attribute list for this Function.
int64_t getOffset() const
LLVM_ABI unsigned getAddressSpace() const
unsigned getTargetFlags() const
const GlobalValue * getGlobal() const
bool isThreadLocal() const
If the value is "Thread Local", its value isn't shared by the threads.
unsigned getAddressSpace() const
Module * getParent()
Get the module that this global value is contained inside of...
PointerType * getType() const
Global values are always pointers.
This class is used to form a handle around another node that is persistent and is updated across invo...
const SDValue & getValue() const
static LLVM_ABI bool compare(const APInt &LHS, const APInt &RHS, ICmpInst::Predicate Pred)
Return result of LHS Pred RHS comparison.
This is an important class for using LLVM in a threaded context.
Tracks which library functions to use for a particular subtarget.
LLVM_ABI CallingConv::ID getLibcallImplCallingConv(RTLIB::LibcallImpl Call) const
Get the CallingConv that should be used for the specified libcall.
LLVM_ABI RTLIB::LibcallImpl getLibcallImpl(RTLIB::Libcall Call) const
Return the lowering's selection of implementation call for Call.
This SDNode is used for LIFETIME_START/LIFETIME_END values.
This class is used to represent ISD::LOAD nodes.
static LocationSize precise(uint64_t Value)
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
const MDOperand & getOperand(unsigned I) const
static MVT getIntegerVT(unsigned BitWidth)
Abstract base class for all machine specific constantpool value subclasses.
virtual void addSelectionDAGCSEId(FoldingSetNodeID &ID)=0
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
LLVM_ABI int CreateStackObject(uint64_t Size, Align Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it.
Align getObjectAlign(int ObjectIdx) const
Return the alignment of the specified stack object.
bool isFixedObjectIndex(int ObjectIdx) const
Returns true if the specified index corresponds to a fixed stack object.
void setObjectAlignment(int ObjectIdx, Align Alignment)
setObjectAlignment - Change the alignment of the specified stack object.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
Function & getFunction()
Return the LLVM function that this machine code represents.
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
A description of a memory reference used in the backend.
const MDNode * getRanges() const
Return the range tag for the memory reference.
Flags
Flags values. These may be or'd together.
@ MOVolatile
The memory access is volatile.
@ MODereferenceable
The memory access is dereferenceable (i.e., doesn't trap).
@ MOLoad
The memory access reads data.
@ MOInvariant
The memory access always returns the same value (or traps).
@ MOStore
The memory access writes data.
const MachinePointerInfo & getPointerInfo() const
Flags getFlags() const
Return the raw flags of the source value,.
This class contains meta information specific to a module.
An SDNode that represents everything that will be needed to construct a MachineInstr.
This class is used to represent an MGATHER node.
This class is used to represent an MLOAD node.
This class is used to represent an MSCATTER node.
This class is used to represent an MSTORE node.
This SDNode is used for target intrinsics that touch memory and need an associated MachineMemOperand.
size_t getNumMemOperands() const
Return the number of memory operands.
LLVM_ABI MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT memvt, PointerUnion< MachineMemOperand *, MachineMemOperand ** > memrefs)
Constructor that supports single or multiple MMOs.
PointerUnion< MachineMemOperand *, MachineMemOperand ** > MemRefs
Memory reference information.
MachineMemOperand * getMemOperand() const
Return the unique MachineMemOperand object describing the memory reference performed by operation.
const MachinePointerInfo & getPointerInfo() const
ArrayRef< MachineMemOperand * > memoperands() const
Return the memory operands for this node.
unsigned getRawSubclassData() const
Return the SubclassData value, without HasDebugValue.
EVT getMemoryVT() const
Return the type of the in-memory value.
Representation for a specific memory location.
A Module instance is used to store all the information related to an LLVM module.
Function * getFunction(StringRef Name) const
Look up the specified function in the module symbol table.
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
Pass interface - Implemented by all 'passes'.
Class to represent pointers.
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
unsigned getAddressSpace() const
Return the address space of the Pointer type.
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
A discriminated union of two or more pointer types, with the discriminator in the low bits of the poi...
bool isNull() const
Test if the pointer held in the union is null, regardless of which type it is.
Analysis providing profile information.
void Deallocate(SubClass *E)
Deallocate - Release storage for the pointed-to object.
Wrapper class representing virtual and physical registers.
Keeps track of dbg_value information through SDISel.
LLVM_ABI void add(SDDbgValue *V, bool isParameter)
LLVM_ABI void erase(const SDNode *Node)
Invalidate all DbgValues attached to the node and remove it from the Node-to-DbgValues map.
Holds the information from a dbg_label node through SDISel.
Holds the information for a single machine location through SDISel; either an SDNode,...
static SDDbgOperand fromNode(SDNode *Node, unsigned ResNo)
static SDDbgOperand fromFrameIdx(unsigned FrameIdx)
static SDDbgOperand fromVReg(Register VReg)
static SDDbgOperand fromConst(const Value *Const)
@ SDNODE
Value is the result of an expression.
Holds the information from a dbg_value node through SDISel.
Wrapper class for IR location info (IR ordering and DebugLoc) to be passed into SDNode creation funct...
const DebugLoc & getDebugLoc() const
unsigned getIROrder() const
This class provides iterator support for SDUse operands that use a specific SDNode.
Represents one node in the SelectionDAG.
ArrayRef< SDUse > ops() const
const APInt & getAsAPIntVal() const
Helper method returns the APInt value of a ConstantSDNode.
LLVM_ABI void dumprFull(const SelectionDAG *G=nullptr) const
printrFull to dbgs().
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
LLVM_ABI bool isOnlyUserOf(const SDNode *N) const
Return true if this node is the only use of N.
iterator_range< value_op_iterator > op_values() const
unsigned getIROrder() const
Return the node ordering.
static constexpr size_t getMaxNumOperands()
Return the maximum number of operands that a SDNode can hold.
iterator_range< use_iterator > uses()
MemSDNodeBitfields MemSDNodeBits
LLVM_ABI void Profile(FoldingSetNodeID &ID) const
Gather unique data for the node.
bool getHasDebugValue() const
SDNodeFlags getFlags() const
void setNodeId(int Id)
Set unique node id.
LLVM_ABI void intersectFlagsWith(const SDNodeFlags Flags)
Clear any flags in this node that aren't also set in Flags.
static bool hasPredecessorHelper(const SDNode *N, SmallPtrSetImpl< const SDNode * > &Visited, SmallVectorImpl< const SDNode * > &Worklist, unsigned int MaxSteps=0, bool TopologicalPrune=false)
Returns true if N is a predecessor of any node in Worklist.
uint64_t getAsZExtVal() const
Helper method returns the zero-extended integer value of a ConstantSDNode.
bool use_empty() const
Return true if there are no uses of this node.
unsigned getNumValues() const
Return the number of values defined/returned by this operator.
unsigned getNumOperands() const
Return the number of values used by this operation.
const SDValue & getOperand(unsigned Num) const
static LLVM_ABI bool areOnlyUsersOf(ArrayRef< const SDNode * > Nodes, const SDNode *N)
Return true if all the users of N are contained in Nodes.
use_iterator use_begin() const
Provide iteration support to walk over all uses of an SDNode.
LLVM_ABI bool isOperandOf(const SDNode *N) const
Return true if this node is an operand of N.
const APInt & getConstantOperandAPInt(unsigned Num) const
Helper method returns the APInt of a ConstantSDNode operand.
std::optional< APInt > bitcastToAPInt() const
LLVM_ABI bool hasPredecessor(const SDNode *N) const
Return true if N is a predecessor of this node.
LLVM_ABI bool hasAnyUseOfValue(unsigned Value) const
Return true if there are any use of the indicated value.
EVT getValueType(unsigned ResNo) const
Return the type of a specified result.
bool isUndef() const
Returns true if the node type is UNDEF or POISON.
op_iterator op_end() const
op_iterator op_begin() const
static use_iterator use_end()
LLVM_ABI void DropOperands()
Release the operands and set this node to have zero operands.
SDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs)
Create an SDNode.
Represents a use of a SDNode.
SDNode * getUser()
This returns the SDNode that contains this Use.
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.
LLVM_ABI bool isOperandOf(const SDNode *N) const
Return true if the referenced return value is an operand of N.
LLVM_ABI bool reachesChainWithoutSideEffects(SDValue Dest, unsigned Depth=2) const
Return true if this operand (which must be a chain) reaches the specified operand without crossing an...
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
bool use_empty() const
Return true if there are no nodes using value ResNo of Node.
const APInt & getConstantOperandAPInt(unsigned i) const
uint64_t getScalarValueSizeInBits() const
unsigned getResNo() const
get the index which selects a specific result in the SDNode
uint64_t getConstantOperandVal(unsigned i) const
unsigned getOpcode() const
virtual void verifyTargetNode(const SelectionDAG &DAG, const SDNode *N) const
Checks that the given target-specific node is valid. Aborts if it is not.
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
LLVM_ABI SDValue getElementCount(const SDLoc &DL, EVT VT, ElementCount EC)
LLVM_ABI Align getReducedAlign(EVT VT, bool UseABI)
In most cases this function returns the ABI alignment for a given type, except for illegal vector typ...
LLVM_ABI SDValue getVPZeroExtendInReg(SDValue Op, SDValue Mask, SDValue EVL, const SDLoc &DL, EVT VT)
Return the expression required to zero extend the Op value assuming it was the smaller SrcTy value.
LLVM_ABI SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op)
Return the specified value casted to the target's desired shift amount type.
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 AAMDNodes &AAInfo=AAMDNodes())
LLVM_ABI std::pair< SDValue, SDValue > getMemccpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue C, SDValue Size, const CallInst *CI)
Lower a memccpy operation into a target library call and return the resulting chain and call result a...
LLVM_ABI SDValue getExtLoadVP(ISD::LoadExtType ExtType, const SDLoc &dl, EVT VT, SDValue Chain, SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, MaybeAlign Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, bool IsExpanding=false)
SDValue getExtractVectorElt(const SDLoc &DL, EVT VT, SDValue Vec, unsigned Idx)
Extract element at Idx from Vec.
LLVM_ABI SDValue getSplatSourceVector(SDValue V, int &SplatIndex)
If V is a splatted value, return the source vector and its splat index.
LLVM_ABI SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root, MCSymbol *Label)
LLVM_ABI OverflowKind computeOverflowForUnsignedSub(SDValue N0, SDValue N1) const
Determine if the result of the unsigned sub of 2 nodes can overflow.
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.
LLVM_ABI std::pair< SDValue, SDValue > getStrlen(SDValue Chain, const SDLoc &dl, SDValue Src, const CallInst *CI)
Lower a strlen operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType, ISD::LoadExtType ExtTy)
LLVM_ABI SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS)
Return an AddrSpaceCastSDNode.
LLVM_ABI SDValue FoldSetCC(EVT VT, SDValue N1, SDValue N2, ISD::CondCode Cond, const SDLoc &dl, SDNodeFlags Flags={})
Constant fold a setcc to true or false.
bool isKnownNeverSNaN(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
LLVM_ABI std::optional< bool > isBoolConstant(SDValue N) const
Check if a value \op N is a constant using the target's BooleanContent for its type.
LLVM_ABI SDValue getStackArgumentTokenFactor(SDValue Chain)
Compute a TokenFactor to force all the incoming stack arguments to be loaded from the stack.
const TargetSubtargetInfo & getSubtarget() const
LLVM_ABI ConstantRange computeConstantRange(SDValue Op, bool ForSigned, unsigned Depth=0) const
Determine the possible constant range of an integer or vector of integers.
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 void updateDivergence(SDNode *N)
LLVM_ABI SDValue getSplatValue(SDValue V, bool LegalTypes=false)
If V is a splat vector, return its scalar source operand by extracting that element from the source v...
LLVM_ABI SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
LLVM_ABI MachineSDNode * getMachineNode(unsigned Opcode, const SDLoc &dl, EVT VT)
These are used for target selectors to create a new node with specified return type(s),...
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 getNeutralElement(unsigned Opcode, const SDLoc &DL, EVT VT, SDNodeFlags Flags)
Get the (commutative) neutral element for the given opcode, if it exists.
LLVM_ABI SDValue getAtomicMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Value, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo)
LLVM_ABI SDValue getAtomicLoad(ISD::LoadExtType ExtType, const SDLoc &dl, EVT MemVT, EVT VT, SDValue Chain, SDValue Ptr, MachineMemOperand *MMO)
LLVM_ABI SDNode * getNodeIfExists(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops, const SDNodeFlags Flags, bool AllowCommute=false)
Get the specified node if it's already available, or else return NULL.
LLVM_ABI SDValue getPseudoProbeNode(const SDLoc &Dl, SDValue Chain, uint64_t Guid, uint64_t Index, uint32_t Attr)
Creates a PseudoProbeSDNode with function GUID Guid and the index of the block Index it is probing,...
LLVM_ABI SDValue getFreeze(SDValue V)
Return a freeze using the SDLoc of the value operand.
LLVM_ABI SDNode * SelectNodeTo(SDNode *N, unsigned MachineOpc, EVT VT)
These are used for target selectors to mutate the specified node to have the specified return type,...
LLVM_ABI void init(MachineFunction &NewMF, OptimizationRemarkEmitter &NewORE, Pass *PassPtr, const TargetLibraryInfo *LibraryInfo, const LibcallLoweringInfo *LibcallsInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, MachineModuleInfo &MMI, FunctionVarLocs const *FnVarLocs)
Prepare this SelectionDAG to process code in the given MachineFunction.
LLVM_ABI SelectionDAG(const TargetMachine &TM, CodeGenOptLevel)
LLVM_ABI SDValue getMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI, MachinePointerInfo DstPtrInfo, const AAMDNodes &AAInfo=AAMDNodes())
LLVM_ABI SDValue getBitcastedSExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by first bitcasting (from potentia...
LLVM_ABI SDValue getConstantPool(const Constant *C, EVT VT, MaybeAlign Align=std::nullopt, int Offs=0, bool isT=false, unsigned TargetFlags=0)
LLVM_ABI SDValue getStridedLoadVP(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &DL, SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding=false)
LLVM_ABI SDValue getAtomicCmpSwap(unsigned Opcode, const SDLoc &dl, EVT MemVT, SDVTList VTs, SDValue Chain, SDValue Ptr, SDValue Cmp, SDValue Swp, MachineMemOperand *MMO)
Gets a node for an atomic cmpxchg op.
LLVM_ABI SDValue makeEquivalentMemoryOrdering(SDValue OldChain, SDValue NewMemOpChain)
If an existing load has uses of its chain, create a token factor node with that chain and the new mem...
LLVM_ABI bool isConstantIntBuildVectorOrConstantInt(SDValue N, bool AllowOpaques=true) const
Test whether the given value is a constant int or similar node.
LLVM_ABI void ReplaceAllUsesOfValuesWith(const SDValue *From, const SDValue *To, unsigned Num)
Like ReplaceAllUsesOfValueWith, but for multiple values at once.
LLVM_ABI SDValue getJumpTableDebugInfo(int JTI, SDValue Chain, const SDLoc &DL)
LLVM_ABI SDValue getSymbolFunctionGlobalAddress(SDValue Op, Function **TargetFunction=nullptr)
Return a GlobalAddress of the function from the current module with name matching the given ExternalS...
LLVM_ABI std::optional< unsigned > getValidMaximumShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
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 getVScale(const SDLoc &DL, EVT VT, APInt MulImm)
Return a node that represents the runtime scaling 'MulImm * RuntimeVL'.
LLVM_ABI SDValue getConstantFP(double Val, const SDLoc &DL, EVT VT, bool isTarget=false)
Create a ConstantFPSDNode wrapping a constant value.
OverflowKind
Used to represent the possible overflow behavior of an operation.
static LLVM_ABI unsigned getHasPredecessorMaxSteps()
LLVM_ABI bool haveNoCommonBitsSet(SDValue A, SDValue B) const
Return true if A and B have no common bits set.
SDValue getExtractSubvector(const SDLoc &DL, EVT VT, SDValue Vec, unsigned Idx)
Return the VT typed sub-vector of Vec at Idx.
LLVM_ABI bool cannotBeOrderedNegativeFP(SDValue Op) const
Test whether the given float value is known to be positive.
LLVM_ABI SDValue getRegister(Register Reg, EVT VT)
LLVM_ABI bool calculateDivergence(SDNode *N)
LLVM_ABI std::pair< SDValue, SDValue > getStrcmp(SDValue Chain, const SDLoc &dl, SDValue S0, SDValue S1, const CallInst *CI)
Lower a strcmp operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getGetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
LLVM_ABI SDValue getAssertAlign(const SDLoc &DL, SDValue V, Align A)
Return an AssertAlignSDNode.
LLVM_ABI SDNode * mutateStrictFPToFP(SDNode *Node)
Mutate the specified strict FP node to its non-strict equivalent, unlinking the node from its chain a...
LLVM_ABI SDValue getLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, MachinePointerInfo PtrInfo, MaybeAlign Alignment=MaybeAlign(), MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr)
Loads are not normal binary operators: their result type is not determined by their operands,...
LLVM_ABI bool canIgnoreSignBitOfZero(const SDUse &Use) const
Check if a use of a float value is insensitive to signed zeros.
LLVM_ABI bool SignBitIsZeroFP(SDValue Op, unsigned Depth=0) const
Return true if the sign bit of Op is known to be zero, for a floating-point value.
LLVM_ABI SDValue getMemIntrinsicNode(unsigned Opcode, const SDLoc &dl, SDVTList VTList, ArrayRef< SDValue > Ops, EVT MemVT, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags Flags=MachineMemOperand::MOLoad|MachineMemOperand::MOStore, LocationSize Size=LocationSize::precise(0), const AAMDNodes &AAInfo=AAMDNodes())
Creates a MemIntrinsicNode that may produce a result and takes a list of operands.
SDValue getInsertSubvector(const SDLoc &DL, SDValue Vec, SDValue SubVec, unsigned Idx)
Insert SubVec at the Idx element of Vec.
LLVM_ABI SDValue getBitcastedZExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by first bitcasting (from potentia...
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 getAtomic(unsigned Opcode, const SDLoc &dl, EVT MemVT, SDValue Chain, SDValue Ptr, SDValue Val, MachineMemOperand *MMO)
Gets a node for an atomic op, produces result (if relevant) and chain and takes 2 operands.
LLVM_ABI SDValue getMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align Alignment, bool isVol, bool AlwaysInline, const CallInst *CI, std::optional< bool > OverrideTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo=AAMDNodes(), BatchAAResults *BatchAA=nullptr)
LLVM_ABI Align getEVTAlign(EVT MemoryVT) const
Compute the default alignment value for the given type.
LLVM_ABI bool shouldOptForSize() const
LLVM_ABI SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
LLVM_ABI SDValue getVPZExtOrTrunc(const SDLoc &DL, EVT VT, SDValue Op, SDValue Mask, SDValue EVL)
Convert a vector-predicated Op, which must be an integer vector, to the vector-type VT,...
const TargetLowering & getTargetLoweringInfo() const
LLVM_ABI bool isEqualTo(SDValue A, SDValue B) const
Test whether two SDValues are known to compare equal.
static constexpr unsigned MaxRecursionDepth
LLVM_ABI SDValue getStridedStoreVP(SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Offset, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
bool isGuaranteedNotToBePoison(SDValue Op, unsigned Depth=0) const
Return true if this function can prove that Op is never poison.
LLVM_ABI SDValue expandVACopy(SDNode *Node)
Expand the specified ISD::VACOPY node as the Legalize pass would.
LLVM_ABI SDValue getIndexedMaskedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI APInt computeVectorKnownZeroElements(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
For each demanded element of a vector, see if it is known to be zero.
LLVM_ABI void AddDbgValue(SDDbgValue *DB, bool isParameter)
Add a dbg_value SDNode.
bool NewNodesMustHaveLegalTypes
When true, additional steps are taken to ensure that getConstant() and similar functions return DAG n...
LLVM_ABI std::pair< EVT, EVT > GetSplitDestVTs(const EVT &VT) const
Compute the VTs needed for the low/hi parts of a type which is split (or expanded) into two not neces...
LLVM_ABI void salvageDebugInfo(SDNode &N)
To be invoked on an SDNode that is slated to be erased.
LLVM_ABI SDNode * MorphNodeTo(SDNode *N, unsigned Opc, SDVTList VTs, ArrayRef< SDValue > Ops)
This mutates the specified node to have the specified return type, opcode, and operands.
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.
LLVM_ABI SDValue getGatherVP(SDVTList VTs, EVT VT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
SDValue getBuildVector(EVT VT, const SDLoc &DL, ArrayRef< SDValue > Ops)
Return an ISD::BUILD_VECTOR node.
LLVM_ABI SDValue getBitcastedAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by first bitcasting (from potentia...
LLVM_ABI bool isSplatValue(SDValue V, const APInt &DemandedElts, APInt &UndefElts, unsigned Depth=0) const
Test whether V has a splatted value for all the demanded elements.
LLVM_ABI void DeleteNode(SDNode *N)
Remove the specified node from the system.
LLVM_ABI SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
LLVM_ABI SDDbgValue * getDbgValueList(DIVariable *Var, DIExpression *Expr, ArrayRef< SDDbgOperand > Locs, ArrayRef< SDNode * > Dependencies, bool IsIndirect, const DebugLoc &DL, unsigned O, bool IsVariadic)
Creates a SDDbgValue node from a list of locations.
LLVM_ABI std::pair< SDValue, SDValue > getStrcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, const CallInst *CI)
Lower a strcpy operation into a target library call and return the resulting chain and call result as...
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 getNegative(SDValue Val, const SDLoc &DL, EVT VT)
Create negative operation as (SUB 0, Val).
LLVM_ABI std::optional< unsigned > getValidShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has a uniform shift amount that is less than the element bit-width of the shi...
LLVM_ABI void setNodeMemRefs(MachineSDNode *N, ArrayRef< MachineMemOperand * > NewMemRefs)
Mutate the specified machine node's memory references to the provided list.
LLVM_ABI SDValue simplifySelect(SDValue Cond, SDValue TVal, SDValue FVal)
Try to simplify a select/vselect into 1 of its operands or a constant.
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.
LLVM_ABI bool isConstantFPBuildVectorOrConstantFP(SDValue N) const
Test whether the given value is a constant FP or similar node.
const DataLayout & getDataLayout() const
LLVM_ABI SDValue expandVAArg(SDNode *Node)
Expand the specified ISD::VAARG node as the Legalize pass would.
LLVM_ABI SDValue getTokenFactor(const SDLoc &DL, SmallVectorImpl< SDValue > &Vals)
Creates a new TokenFactor containing Vals.
LLVM_ABI bool doesNodeExist(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops)
Check if a node exists without modifying its flags.
LLVM_ABI ConstantRange computeConstantRangeIncludingKnownBits(SDValue Op, bool ForSigned, unsigned Depth=0) const
Combine constant ranges from computeConstantRange() and computeKnownBits().
const SelectionDAGTargetInfo & getSelectionDAGInfo() const
LLVM_ABI bool areNonVolatileConsecutiveLoads(LoadSDNode *LD, LoadSDNode *Base, unsigned Bytes, int Dist) const
Return true if loads are next to each other and can be merged.
LLVM_ABI SDValue getMaskedHistogram(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
LLVM_ABI SDDbgLabel * getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O)
Creates a SDDbgLabel node.
LLVM_ABI SDValue getStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
LLVM_ABI OverflowKind computeOverflowForUnsignedMul(SDValue N0, SDValue N1) const
Determine if the result of the unsigned mul of 2 nodes can overflow.
LLVM_ABI void copyExtraInfo(SDNode *From, SDNode *To)
Copy extra info associated with one node to another.
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 SDValue getMemBasePlusOffset(SDValue Base, TypeSize Offset, const SDLoc &DL, const SDNodeFlags Flags=SDNodeFlags())
Returns sum of the base pointer and offset.
LLVM_ABI SDValue getGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, bool isTargetGA=false, unsigned TargetFlags=0)
LLVM_ABI SDValue getVAArg(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue SV, unsigned Align)
VAArg produces a result and token chain, and takes a pointer and a source value as input.
LLVM_ABI SDValue getTruncStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
LLVM_ABI SDValue getLoadFFVP(EVT VT, const SDLoc &DL, SDValue Chain, SDValue Ptr, SDValue Mask, SDValue EVL, MachineMemOperand *MMO)
LLVM_ABI SDValue getTypeSize(const SDLoc &DL, EVT VT, TypeSize TS)
LLVM_ABI SDValue getMDNode(const MDNode *MD)
Return an MDNodeSDNode which holds an MDNode.
LLVM_ABI void clear()
Clear state and free memory necessary to make this SelectionDAG ready to process a new block.
LLVM_ABI std::pair< SDValue, SDValue > getMemcmp(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, const CallInst *CI)
Lower a memcmp operation into a target library call and return the resulting chain and call result as...
LLVM_ABI void ReplaceAllUsesWith(SDValue From, SDValue To)
Modify anything using 'From' to use 'To' instead.
LLVM_ABI SDValue getCommutedVectorShuffle(const ShuffleVectorSDNode &SV)
Returns an ISD::VECTOR_SHUFFLE node semantically equivalent to the shuffle node in input but with swa...
LLVM_ABI std::pair< SDValue, SDValue > SplitVector(const SDValue &N, const SDLoc &DL, const EVT &LoVT, const EVT &HiVT)
Split the vector with EXTRACT_SUBVECTOR using the provided VTs and return the low/high part.
LLVM_ABI SDValue makeStateFunctionCall(unsigned LibFunc, SDValue Ptr, SDValue InChain, const SDLoc &DLoc)
Helper used to make a call to a library function that has one argument of pointer type.
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(SDValue Op, bool PoisonOnly=false, unsigned Depth=0) const
Return true if this function can prove that Op is never poison and, if PoisonOnly is false,...
LLVM_ABI SDValue getStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, MachinePointerInfo PtrInfo, Align Alignment, MachineMemOperand::Flags MMOFlags=MachineMemOperand::MONone, const AAMDNodes &AAInfo=AAMDNodes())
Helper function to build ISD::STORE nodes.
LLVM_ABI SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
LLVM_ABI SDValue getIndexedLoadVP(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue getSrcValue(const Value *v)
Construct a node to track a Value* through the backend.
SDValue getSplatVector(EVT VT, const SDLoc &DL, SDValue Op)
LLVM_ABI SDValue getAtomicMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
LLVM_ABI OverflowKind computeOverflowForSignedMul(SDValue N0, SDValue N1) const
Determine if the result of the signed mul of 2 nodes can overflow.
LLVM_ABI MaybeAlign InferPtrAlign(SDValue Ptr) const
Infer alignment of a load / store address.
LLVM_ABI void dump() const
Dump the textual format of this DAG.
LLVM_ABI bool MaskedValueIsAllOnes(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if '(Op & Mask) == Mask'.
LLVM_ABI bool SignBitIsZero(SDValue Op, unsigned Depth=0) const
Return true if the sign bit of Op is known to be zero.
LLVM_ABI void RemoveDeadNodes()
This method deletes all unreachable nodes in the SelectionDAG.
LLVM_ABI void RemoveDeadNode(SDNode *N)
Remove the specified node from the system.
LLVM_ABI void AddDbgLabel(SDDbgLabel *DB)
Add a dbg_label SDNode.
bool isConstantValueOfAnyType(SDValue N) const
LLVM_ABI SDValue getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT, SDValue Operand)
A convenience function for creating TargetInstrInfo::EXTRACT_SUBREG nodes.
LLVM_ABI SDValue getBasicBlock(MachineBasicBlock *MBB)
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 SDDbgValue * getVRegDbgValue(DIVariable *Var, DIExpression *Expr, Register VReg, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a VReg SDDbgValue node.
LLVM_ABI KnownFPClass computeKnownFPClass(SDValue Op, FPClassTest InterestedClasses, unsigned Depth=0) const
Determine floating-point class information about Op.
LLVM_ABI SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label)
LLVM_ABI SDValue getIndexedStoreVP(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI bool isKnownNeverZero(SDValue Op, unsigned Depth=0) const
Test whether the given SDValue is known to contain non-zero value(s).
LLVM_ABI SDValue getIndexedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops, SDNodeFlags Flags=SDNodeFlags())
LLVM_ABI std::optional< unsigned > getValidMinimumShiftAmount(SDValue V, const APInt &DemandedElts, unsigned Depth=0) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
LLVM_ABI SDValue getSetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
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 getMaskedStore(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Base, SDValue Offset, SDValue Mask, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, bool IsTruncating=false, bool IsCompressing=false)
LLVM_ABI SDValue getExternalSymbol(const char *Sym, EVT VT)
const TargetMachine & getTarget() const
LLVM_ABI std::pair< SDValue, SDValue > getStrictFPExtendOrRound(SDValue Op, SDValue Chain, const SDLoc &DL, EVT VT)
Convert Op, which must be a STRICT operation of float type, to the float type VT, by either extending...
LLVM_ABI std::pair< SDValue, SDValue > SplitEVL(SDValue N, EVT VecVT, const SDLoc &DL)
Split the explicit vector length parameter of a VP operation.
LLVM_ABI SDValue getPtrExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either truncating it or perform...
LLVM_ABI SDValue getVPLogicalNOT(const SDLoc &DL, SDValue Val, SDValue Mask, SDValue EVL, EVT VT)
Create a vector-predicated logical NOT operation as (VP_XOR Val, BooleanOne, Mask,...
LLVM_ABI SDValue getMaskFromElementCount(const SDLoc &DL, EVT VT, ElementCount Len)
Return a vector with the first 'Len' lanes set to true and remaining lanes set to false.
LLVM_ABI SDValue getAnyExtOrTrunc(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of integer type, to the integer type VT, by either any-extending or truncat...
iterator_range< allnodes_iterator > allnodes()
LLVM_ABI SDValue getBlockAddress(const BlockAddress *BA, EVT VT, int64_t Offset=0, bool isTarget=false, unsigned TargetFlags=0)
LLVM_ABI SDValue WidenVector(const SDValue &N, const SDLoc &DL)
Widen the vector up to the next power of two using INSERT_SUBVECTOR.
LLVM_ABI bool isKnownNeverZeroFloat(SDValue Op) const
Test whether the given floating point SDValue is known to never be positive or negative zero.
const LibcallLoweringInfo & getLibcalls() const
LLVM_ABI SDValue getLoadVP(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, EVT VT, const SDLoc &dl, SDValue Chain, SDValue Ptr, SDValue Offset, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT MemVT, Align Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, const MDNode *Ranges=nullptr, bool IsExpanding=false)
LLVM_ABI SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI SDDbgValue * getConstantDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, const DebugLoc &DL, unsigned O)
Creates a constant SDDbgValue node.
LLVM_ABI SDValue getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
LLVM_ABI SDValue getValueType(EVT)
LLVM_ABI SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain, int FrameIndex)
Creates a LifetimeSDNode that starts (IsStart==true) or ends (IsStart==false) the lifetime of the Fra...
ArrayRef< SDDbgValue * > GetDbgValues(const SDNode *SD) const
Get the debug values which reference the given SDNode.
LLVM_ABI SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
LLVM_ABI OverflowKind computeOverflowForSignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the signed addition of 2 nodes can overflow.
LLVM_ABI SDValue getFPExtendOrRound(SDValue Op, const SDLoc &DL, EVT VT)
Convert Op, which must be of float type, to the float type VT, by either extending or rounding (by tr...
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...
ilist< SDNode >::size_type allnodes_size() const
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...
LLVM_ABI SDValue FoldConstantBuildVector(BuildVectorSDNode *BV, const SDLoc &DL, EVT DstEltVT)
Fold BUILD_VECTOR of constants/undefs to the destination type BUILD_VECTOR of constants/undefs elemen...
LLVM_ABI SDValue getAtomicMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
LLVM_ABI SDValue getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue getTruncStoreVP(SDValue Chain, const SDLoc &dl, SDValue Val, SDValue Ptr, SDValue Mask, SDValue EVL, MachinePointerInfo PtrInfo, EVT SVT, Align Alignment, MachineMemOperand::Flags MMOFlags, const AAMDNodes &AAInfo, bool IsCompressing=false)
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.
LLVM_ABI bool MaskedVectorIsZero(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Return true if 'Op' is known to be zero in DemandedElts.
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 SDDbgValue * getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr, unsigned FI, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a FrameIndex SDDbgValue node.
LLVM_ABI SDValue getExtStridedLoadVP(ISD::LoadExtType ExtType, const SDLoc &DL, EVT VT, SDValue Chain, SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT MemVT, MachineMemOperand *MMO, bool IsExpanding=false)
LLVM_ABI SDValue getMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Align Alignment, bool isVol, const CallInst *CI, std::optional< bool > OverrideTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo, const AAMDNodes &AAInfo=AAMDNodes(), BatchAAResults *BatchAA=nullptr)
LLVM_ABI SDValue getJumpTable(int JTI, EVT VT, bool isTarget=false, unsigned TargetFlags=0)
LLVM_ABI bool isBaseWithConstantOffset(SDValue Op) const
Return true if the specified operand is an ISD::ADD with a ConstantSDNode on the right-hand side,...
LLVM_ABI SDValue getVPPtrExtOrTrunc(const SDLoc &DL, EVT VT, SDValue Op, SDValue Mask, SDValue EVL)
Convert a vector-predicated Op, which must be of integer type, to the vector-type integer type VT,...
LLVM_ABI SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
LLVM_ABI void getTopologicallyOrderedNodes(SmallVectorImpl< const SDNode * > &SortedNodes) const
Get all the nodes in their topological order without modifying any states.
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
LLVM_ABI std::pair< SDValue, SDValue > getStrstr(SDValue Chain, const SDLoc &dl, SDValue S0, SDValue S1, const CallInst *CI)
Lower a strstr operation into a target library call and return the resulting chain and call result as...
LLVM_ABI SDValue getPtrExtendInReg(SDValue Op, const SDLoc &DL, EVT VT)
Return the expression required to extend the Op as a pointer value assuming it was the smaller SrcTy ...
LLVM_ABI bool canCreateUndefOrPoison(SDValue Op, const APInt &DemandedElts, bool PoisonOnly=false, bool ConsiderFlags=true, unsigned Depth=0) const
Return true if Op can create undef or poison from non-undef & non-poison operands.
LLVM_ABI OverflowKind computeOverflowForUnsignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the unsigned addition of 2 nodes can overflow.
SDValue getPOISON(EVT VT)
Return a POISON node. POISON does not have a useful SDLoc.
SDValue getSplatBuildVector(EVT VT, const SDLoc &DL, SDValue Op)
Return a splat ISD::BUILD_VECTOR node, consisting of Op splatted to all elements.
LLVM_ABI SDValue getFrameIndex(int FI, EVT VT, bool isTarget=false)
LLVM_ABI SDValue getTruncStridedStoreVP(SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT SVT, MachineMemOperand *MMO, bool IsCompressing=false)
LLVM_ABI void canonicalizeCommutativeBinop(unsigned Opcode, SDValue &N1, SDValue &N2) const
Swap N1 and N2 if Opcode is a commutative binary opcode and the canonical form expects the opposite o...
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 getRegisterMask(const uint32_t *RegMask)
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 SDValue getCondCode(ISD::CondCode Cond)
LLVM_ABI bool MaskedValueIsZero(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if 'Op & Mask' is known to be zero.
LLVM_ABI bool isKnownToBeAPowerOfTwoFP(SDValue Val, unsigned Depth=0) const
Test if the given fp value is known to be an integer power-of-2, either positive or negative.
LLVM_ABI OverflowKind computeOverflowForSignedSub(SDValue N0, SDValue N1) const
Determine if the result of the signed sub of 2 nodes can overflow.
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
LLVM_ABI SDValue simplifyFPBinop(unsigned Opcode, SDValue X, SDValue Y, SDNodeFlags Flags)
Try to simplify a floating-point binary operation into 1 of its operands or a constant.
const SDValue & setRoot(SDValue N)
Set the current root tag of the SelectionDAG.
LLVM_ABI bool isKnownToBeAPowerOfTwo(SDValue Val, bool OrZero=false, unsigned Depth=0) const
Test if the given value is known to have exactly one bit set.
LLVM_ABI SDValue getDeactivationSymbol(const GlobalValue *GV)
LLVM_ABI SDValue getTargetExternalSymbol(const char *Sym, EVT VT, unsigned TargetFlags=0)
LLVM_ABI SDValue getMCSymbol(MCSymbol *Sym, EVT VT)
LLVM_ABI bool isUndef(unsigned Opcode, ArrayRef< SDValue > Ops)
Return true if the result of this operation is always undefined.
LLVM_ABI SDValue CreateStackTemporary(TypeSize Bytes, Align Alignment)
Create a stack temporary based on the size in bytes and the alignment.
LLVM_ABI SDNode * UpdateNodeOperands(SDNode *N, SDValue Op)
Mutate the specified node in-place to have the specified operands.
LLVM_ABI std::pair< EVT, EVT > GetDependentSplitDestVTs(const EVT &VT, const EVT &EnvVT, bool *HiIsEmpty) const
Compute the VTs needed for the low/hi parts of a type, dependent on an enveloping VT that has been sp...
LLVM_ABI SDValue foldConstantFPMath(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops)
Fold floating-point operations when all operands are constants and/or undefined.
LLVM_ABI std::optional< ConstantRange > getValidShiftAmountRange(SDValue V, const APInt &DemandedElts, unsigned Depth) const
If a SHL/SRA/SRL node V has shift amounts that are all less than the element bit-width of the shift n...
LLVM_ABI SDValue FoldSymbolOffset(unsigned Opcode, EVT VT, const GlobalAddressSDNode *GA, const SDNode *N2)
LLVM_ABI SDValue getIndexedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
LLVM_ABI SDValue getTargetInsertSubreg(int SRIdx, const SDLoc &DL, EVT VT, SDValue Operand, SDValue Subreg)
A convenience function for creating TargetInstrInfo::INSERT_SUBREG nodes.
SDValue getEntryNode() const
Return the token chain corresponding to the entry of the function.
LLVM_ABI SDDbgValue * getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, unsigned R, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a SDDbgValue node.
LLVM_ABI SDValue getMaskedLoad(EVT VT, const SDLoc &dl, SDValue Chain, SDValue Base, SDValue Offset, SDValue Mask, SDValue Src0, EVT MemVT, MachineMemOperand *MMO, ISD::MemIndexedMode AM, ISD::LoadExtType, bool IsExpanding=false)
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 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.
LLVM_ABI SDValue matchBinOpReduction(SDNode *Extract, ISD::NodeType &BinOp, ArrayRef< ISD::NodeType > CandidateBinOps, bool AllowPartials=false)
Match a binop + shuffle pyramid that represents a horizontal reduction over the elements of a vector ...
LLVM_ABI bool isADDLike(SDValue Op, bool NoWrap=false) const
Return true if the specified operand is an ISD::OR or ISD::XOR node that can be treated as an ISD::AD...
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 simplifyShift(SDValue X, SDValue Y)
Try to simplify a shift into 1 of its operands or a constant.
LLVM_ABI void transferDbgValues(SDValue From, SDValue To, unsigned OffsetInBits=0, unsigned SizeInBits=0, bool InvalidateDbg=true)
Transfer debug values from one node to another, while optionally generating fragment expressions for ...
LLVM_ABI SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a logical NOT operation as (XOR Val, BooleanOne).
LLVM_ABI SDValue getMaskedScatter(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType, bool IsTruncating=false)
ilist< SDNode >::iterator allnodes_iterator
This SDNode is used to implement the code generator support for the llvm IR shufflevector instruction...
int getMaskElt(unsigned Idx) const
ArrayRef< int > getMask() const
static void commuteMask(MutableArrayRef< int > Mask)
Change values in a shuffle permute mask assuming the two vector operands have swapped position.
static LLVM_ABI bool isSplatMask(ArrayRef< int > Mask)
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
bool erase(PtrType Ptr)
Remove pointer from the set.
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void assign(size_type NumElts, ValueParamT Elt)
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
iterator erase(const_iterator CI)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
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.
StringRef - Represent a constant reference to a string, i.e.
constexpr const char * data() const
data - Get a pointer to the start of the string (which may not be null terminated).
Information about stack frame layout on the target.
virtual TargetStackID::Value getStackIDForScalableVectors() const
Returns the StackID that scalable vectors should be associated with.
Align getStackAlign() const
getStackAlignment - This method returns the number of bytes to which the stack pointer must be aligne...
Completely target-dependent object reference.
int64_t getOffset() const
unsigned getTargetFlags() const
Provides information about what library functions are available for the current target.
virtual bool shouldConvertConstantLoadToIntImm(const APInt &Imm, Type *Ty) const
Return true if it is beneficial to convert a load of a constant to just the constant itself.
const TargetMachine & getTargetMachine() const
virtual bool isZExtFree(Type *FromTy, Type *ToTy) const
Return true if any actual instruction that defines a value of type FromTy implicitly zero-extends the...
unsigned getMaxStoresPerMemcpy(bool OptSize) const
Get maximum # of store operations permitted for llvm.memcpy.
unsigned getMaxStoresPerMemset(bool OptSize) const
Get maximum # of store operations permitted for llvm.memset.
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.
virtual bool shallExtractConstSplatVectorElementToStore(Type *VectorTy, unsigned ElemSizeInBits, unsigned &Index) const
Return true if the target shall perform extract vector element and store given that the vector is kno...
virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const
Return true if it's free to truncate a value of type FromTy to type ToTy.
virtual EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const
For types supported by the target, this is an identity function.
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...
BooleanContent
Enum that describes how the target represents true/false values.
@ ZeroOrOneBooleanContent
@ UndefinedBooleanContent
@ ZeroOrNegativeOneBooleanContent
virtual unsigned getMaxGluedStoresPerMemcpy() const
Get maximum # of store operations to be glued together.
std::vector< ArgListEntry > ArgListTy
unsigned getMaxStoresPerMemmove(bool OptSize) const
Get maximum # of store operations permitted for llvm.memmove.
virtual bool isLegalStoreImmediate(int64_t Value) const
Return true if the specified immediate is legal for the value input of a store instruction.
static ISD::NodeType getExtendForContent(BooleanContent Content)
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
virtual bool findOptimalMemOpLowering(LLVMContext &Context, std::vector< EVT > &MemOps, unsigned Limit, const MemOp &Op, unsigned DstAS, unsigned SrcAS, const AttributeList &FuncAttributes, EVT *LargestVT=nullptr) const
Determines the optimal series of memory ops to replace the memset / memcpy.
std::pair< SDValue, SDValue > LowerCallTo(CallLoweringInfo &CLI) const
This function lowers an abstract call to a function into an actual call.
Primary interface to the complete machine description for the target machine.
virtual bool isNoopAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const
Returns true if a cast between SrcAS and DestAS is a noop.
const Triple & getTargetTriple() const
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const SelectionDAGTargetInfo * getSelectionDAGInfo() const
virtual const TargetRegisterInfo * getRegisterInfo() const =0
Return the target's register information.
virtual const TargetLowering * getTargetLowering() const
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static constexpr TypeSize getFixed(ScalarTy ExactSize)
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
A Use represents the edge between a Value definition and its users.
LLVM_ABI unsigned getOperandNo() const
Return the operand # of this use in its User.
LLVM_ABI void set(Value *Val)
User * getUser() const
Returns the User that contains this Use.
Value * getOperand(unsigned i) const
This class is used to represent an VP_GATHER node.
This class is used to represent a VP_LOAD node.
This class is used to represent an VP_SCATTER node.
This class is used to represent a VP_STORE node.
This class is used to represent an EXPERIMENTAL_VP_STRIDED_LOAD node.
This class is used to represent an EXPERIMENTAL_VP_STRIDED_STORE node.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
std::pair< iterator, bool > insert(const ValueT &V)
bool contains(const_arg_type_t< ValueT > V) const
Check if the set contains the given element.
constexpr bool hasKnownScalarFactor(const FixedOrScalableQuantity &RHS) const
Returns true if there exists a value X where RHS.multiplyCoefficientBy(X) will result in a value whos...
constexpr ScalarTy getFixedValue() const
static constexpr bool isKnownLE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr bool isKnownEven() const
A return value of true indicates we know at compile time that the number of elements (vscale * Min) i...
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const
We do not provide the '/' operator here because division for polynomial types does not work in the sa...
static constexpr bool isKnownGE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
A raw_ostream that writes to an std::string.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_ABI APInt clmulr(const APInt &LHS, const APInt &RHS)
Perform a reversed carry-less multiply.
LLVM_ABI APInt mulhu(const APInt &C1, const APInt &C2)
Performs (2*N)-bit multiplication on zero-extended operands.
LLVM_ABI APInt avgCeilU(const APInt &C1, const APInt &C2)
Compute the ceil of the unsigned average of C1 and C2.
LLVM_ABI APInt avgFloorU(const APInt &C1, const APInt &C2)
Compute the floor of the unsigned average of C1 and C2.
LLVM_ABI APInt fshr(const APInt &Hi, const APInt &Lo, const APInt &Shift)
Perform a funnel shift right.
LLVM_ABI APInt mulhs(const APInt &C1, const APInt &C2)
Performs (2*N)-bit multiplication on sign-extended operands.
LLVM_ABI APInt clmul(const APInt &LHS, const APInt &RHS)
Perform a carry-less multiply, also known as XOR multiplication, and return low-bits.
APInt abds(const APInt &A, const APInt &B)
Determine the absolute difference of two APInts considered to be signed.
LLVM_ABI APInt fshl(const APInt &Hi, const APInt &Lo, const APInt &Shift)
Perform a funnel shift left.
LLVM_ABI APInt ScaleBitMask(const APInt &A, unsigned NewBitWidth, bool MatchAllBits=false)
Splat/Merge neighboring bits to widen/narrow the bitmask represented by.
LLVM_ABI APInt clmulh(const APInt &LHS, const APInt &RHS)
Perform a carry-less multiply, and return high-bits.
APInt abdu(const APInt &A, const APInt &B)
Determine the absolute difference of two APInts considered to be unsigned.
LLVM_ABI APInt avgFloorS(const APInt &C1, const APInt &C2)
Compute the floor of the signed average of C1 and C2.
LLVM_ABI APInt avgCeilS(const APInt &C1, const APInt &C2)
Compute the ceil of the signed average of C1 and C2.
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.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ C
The default llvm calling convention, compatible with C.
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, bool isIntegerLike)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
LLVM_ABI CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, EVT Type)
Return the result of a logical AND between different comparisons of identical values: ((X op1 Y) & (X...
LLVM_ABI bool isConstantSplatVectorAllOnes(const SDNode *N, bool BuildVectorOnly=false)
Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where all of the elements are ~0 ...
bool isNON_EXTLoad(const SDNode *N)
Returns true if the specified node is a non-extending load.
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.
@ MERGE_VALUES
MERGE_VALUES - This node takes multiple discrete operands and returns them all as its individual resu...
@ MDNODE_SDNODE
MDNODE_SDNODE - This is a node that holdes an MDNode*, which is used to reference metadata in the IR.
@ STRICT_FSETCC
STRICT_FSETCC/STRICT_FSETCCS - Constrained versions of SETCC, used for floating-point operands only.
@ PTRADD
PTRADD represents pointer arithmetic semantics, for targets that opt in using shouldPreservePtrArith(...
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
@ POISON
POISON - A poison node.
@ PARTIAL_REDUCE_SMLA
PARTIAL_REDUCE_[U|S]MLA(Accumulator, Input1, Input2) The partial reduction nodes sign or zero extend ...
@ VECREDUCE_SEQ_FADD
Generic reduction nodes.
@ MLOAD
Masked load and store - consecutive vector load and store operations with additional mask operand tha...
@ FGETSIGN
INT = FGETSIGN(FP) - Return the sign bit of the specified floating point value as an integer 0/1 valu...
@ 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.
@ JUMP_TABLE_DEBUG_INFO
JUMP_TABLE_DEBUG_INFO - Jumptable debug info.
@ BSWAP
Byte Swap and Counting operators.
@ DEACTIVATION_SYMBOL
Untyped node storing deactivation symbol reference (DeactivationSymbolSDNode).
@ 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.
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ INTRINSIC_VOID
OUTCHAIN = INTRINSIC_VOID(INCHAIN, INTRINSICID, arg1, arg2, ...) This node represents a target intrin...
@ ATOMIC_CMP_SWAP_WITH_SUCCESS
Val, Success, OUTCHAIN = ATOMIC_CMP_SWAP_WITH_SUCCESS(INCHAIN, ptr, cmp, swap) N.b.
@ 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 ...
@ FP16_TO_FP
FP16_TO_FP, FP_TO_FP16 - These operators are used to perform promotions and truncation for half-preci...
@ FMULADD
FMULADD - Performs a * b + c, with, or without, intermediate rounding.
@ 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.
@ CLMUL
Carry-less multiplication operations.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ BUILTIN_OP_END
BUILTIN_OP_END - This must be the last enum value in this list.
@ SRCVALUE
SRCVALUE - This is a node type that holds a Value* that is used to make reference to a value in the L...
@ EH_LABEL
EH_LABEL - Represents a label in mid basic block used to track locations needed for debug and excepti...
@ SIGN_EXTEND
Conversion operators.
@ AVGCEILS
AVGCEILS/AVGCEILU - Rounding averaging add - Add two integers using an integer of type i[N+2],...
@ SCALAR_TO_VECTOR
SCALAR_TO_VECTOR(VAL) - This represents the operation of loading a scalar value into element 0 of the...
@ VECREDUCE_FADD
These reductions have relaxed evaluation order semantics, and have a single vector operand.
@ CTTZ_ZERO_UNDEF
Bit counting operators with an undefined result for zero inputs.
@ TargetIndex
TargetIndex - Like a constant pool entry, but with completely target-dependent semantics.
@ PREFETCH
PREFETCH - This corresponds to a prefetch intrinsic.
@ SETCCCARRY
Like SetCC, ops #0 and #1 are the LHS and RHS operands to compare, but op #2 is a boolean indicating ...
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ BR_CC
BR_CC - Conditional branch.
@ 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).
@ ATOMIC_LOAD
Val, OUTCHAIN = ATOMIC_LOAD(INCHAIN, ptr) This corresponds to "load atomic" instruction.
@ UNDEF
UNDEF - An undefined node.
@ EXTRACT_ELEMENT
EXTRACT_ELEMENT - This is used to get the lower or upper (determined by a Constant,...
@ SPLAT_VECTOR
SPLAT_VECTOR(VAL) - Returns a vector with the scalar value VAL duplicated in all lanes.
@ AssertAlign
AssertAlign - These nodes record if a register contains a value that has a known alignment and the tr...
@ GET_ACTIVE_LANE_MASK
GET_ACTIVE_LANE_MASK - this corrosponds to the llvm.get.active.lane.mask intrinsic.
@ BasicBlock
Various leaf nodes.
@ CopyFromReg
CopyFromReg - This node indicates that the input value is a virtual or physical register that is defi...
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
@ TargetGlobalAddress
TargetGlobalAddress - Like GlobalAddress, but the DAG does no folding or anything else with this node...
@ ARITH_FENCE
ARITH_FENCE - This corresponds to a arithmetic fence intrinsic.
@ CTLS
Count leading redundant sign bits.
@ 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.
@ AssertNoFPClass
AssertNoFPClass - These nodes record if a register contains a float value that is known to be not som...
@ 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) ...
@ VSCALE
VSCALE(IMM) - Returns the runtime scaling factor used to calculate the number of elements within a sc...
@ ATOMIC_CMP_SWAP
Val, OUTCHAIN = ATOMIC_CMP_SWAP(INCHAIN, ptr, cmp, swap) For double-word atomic operations: ValLo,...
@ 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.
@ VECTOR_SPLICE_LEFT
VECTOR_SPLICE_LEFT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1, VEC2) left by OFFSET elements an...
@ 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.
@ LIFETIME_START
This corresponds to the llvm.lifetime.
@ 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.
@ MGATHER
Masked gather and scatter - load and store operations for a vector of random addresses with additiona...
@ HANDLENODE
HANDLENODE node - Used as a handle for various purposes.
@ BF16_TO_FP
BF16_TO_FP, FP_TO_BF16 - These operators are used to perform promotions and truncation for bfloat16.
@ STRICT_FP_ROUND
X = STRICT_FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision ...
@ 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.
@ TargetConstant
TargetConstant* - Like Constant*, but the DAG does not do any folding, simplification,...
@ 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.
@ INTRINSIC_WO_CHAIN
RESULT = INTRINSIC_WO_CHAIN(INTRINSICID, arg1, arg2, ...) This node represents a target intrinsic fun...
@ GET_FPENV_MEM
Gets the current floating-point environment.
@ PSEUDO_PROBE
Pseudo probe for AutoFDO, as a place holder in a basic block to improve the sample counts quality.
@ 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_SPLICE_RIGHT
VECTOR_SPLICE_RIGHT(VEC1, VEC2, OFFSET) - Shifts CONCAT_VECTORS(VEC1,VEC2) right by OFFSET elements a...
@ ADDE
Carry-using nodes for multiple precision addition and subtraction.
@ SPLAT_VECTOR_PARTS
SPLAT_VECTOR_PARTS(SCALAR1, SCALAR2, ...) - Returns a vector with the scalar values joined together a...
@ FREEZE
FREEZE - FREEZE(VAL) returns an arbitrary value if VAL is UNDEF (or is evaluated to UNDEF),...
@ 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.
@ ATOMIC_SWAP
Val, OUTCHAIN = ATOMIC_SWAP(INCHAIN, ptr, amt) Val, OUTCHAIN = ATOMIC_LOAD_[OpName](INCHAIN,...
@ 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 ...
@ ADDRSPACECAST
ADDRSPACECAST - This operator converts between pointers of different address spaces.
@ EXPERIMENTAL_VECTOR_HISTOGRAM
Experimental vector histogram intrinsic Operands: Input Chain, Inc, Mask, Base, Index,...
@ 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.
@ VAARG
VAARG - VAARG has four operands: an input chain, a pointer, a SRCVALUE, and the alignment.
@ SHL_PARTS
SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded integer shift operations.
@ 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)...
@ SET_FPENV_MEM
Sets the current floating point environment.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ TRUNCATE_SSAT_S
TRUNCATE_[SU]SAT_[SU] - Truncate for saturated operand [SU] located in middle, prefix for SAT means i...
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
@ SADDO_CARRY
Carry-using overflow-aware nodes for multiple precision addition and subtraction.
@ 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,...
LLVM_ABI NodeType getOppositeSignednessMinMaxOpcode(unsigned MinMaxOpc)
Given a MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns the corresponding opcode with the opposi...
LLVM_ABI bool isBuildVectorOfConstantSDNodes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR node of all ConstantSDNode or undef.
LLVM_ABI NodeType getExtForLoadExtType(bool IsFP, LoadExtType)
bool isZEXTLoad(const SDNode *N)
Returns true if the specified node is a ZEXTLOAD.
bool matchUnaryFpPredicate(SDValue Op, std::function< bool(ConstantFPSDNode *)> Match, bool AllowUndefs=false)
Hook for matching ConstantFPSDNode predicate.
bool isExtOpcode(unsigned Opcode)
LLVM_ABI bool isConstantSplatVectorAllZeros(const SDNode *N, bool BuildVectorOnly=false)
Return true if the specified node is a BUILD_VECTOR or SPLAT_VECTOR where all of the elements are 0 o...
LLVM_ABI bool isVectorShrinkable(const SDNode *N, unsigned NewEltSize, bool Signed)
Returns true if the specified node is a vector where all elements can be truncated to the specified e...
LLVM_ABI bool isVPBinaryOp(unsigned Opcode)
Whether this is a vector-predicated binary operation opcode.
LLVM_ABI CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
LLVM_ABI std::optional< unsigned > getBaseOpcodeForVP(unsigned Opcode, bool hasFPExcept)
Translate this VP Opcode to its corresponding non-VP Opcode.
bool isTrueWhenEqual(CondCode Cond)
Return true if the specified condition returns true if the two operands to the condition are equal.
LLVM_ABI std::optional< unsigned > getVPMaskIdx(unsigned Opcode)
The operand position of the vector mask.
unsigned getUnorderedFlavor(CondCode Cond)
This function returns 0 if the condition is always false if an operand is a NaN, 1 if the condition i...
LLVM_ABI std::optional< unsigned > getVPExplicitVectorLengthIdx(unsigned Opcode)
The operand position of the explicit vector length parameter.
bool isEXTLoad(const SDNode *N)
Returns true if the specified node is a EXTLOAD.
LLVM_ABI bool allOperandsUndef(const SDNode *N)
Return true if the node has at least one operand and all operands of the specified node are ISD::UNDE...
LLVM_ABI bool isFreezeUndef(const SDNode *N)
Return true if the specified node is FREEZE(UNDEF).
LLVM_ABI CondCode getSetCCSwappedOperands(CondCode Operation)
Return the operation corresponding to (Y op X) when given the operation for (X op Y).
LLVM_ABI std::optional< unsigned > getVPForBaseOpcode(unsigned Opcode)
Translate this non-VP Opcode to its corresponding VP Opcode.
MemIndexType
MemIndexType enum - This enum defines how to interpret MGATHER/SCATTER's index parameter when calcula...
LLVM_ABI bool isBuildVectorAllZeros(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR where all of the elements are 0 or undef.
bool matchUnaryPredicateImpl(SDValue Op, std::function< bool(ConstNodeType *)> Match, bool AllowUndefs=false, bool AllowTruncation=false)
Attempt to match a unary predicate against a scalar/splat constant or every element of a constant BUI...
LLVM_ABI bool isConstantSplatVector(const SDNode *N, APInt &SplatValue)
Node predicates.
LLVM_ABI NodeType getInverseMinMaxOpcode(unsigned MinMaxOpc)
Given a MinMaxOpc of ISD::(U|S)MIN or ISD::(U|S)MAX, returns ISD::(U|S)MAX and ISD::(U|S)MIN,...
LLVM_ABI bool matchBinaryPredicate(SDValue LHS, SDValue RHS, std::function< bool(ConstantSDNode *, ConstantSDNode *)> Match, bool AllowUndefs=false, bool AllowTypeMismatch=false)
Attempt to match a binary predicate against a pair of scalar/splat constants or every element of a pa...
LLVM_ABI bool isVPReduction(unsigned Opcode)
Whether this is a vector-predicated reduction opcode.
bool matchUnaryPredicate(SDValue Op, std::function< bool(ConstantSDNode *)> Match, bool AllowUndefs=false, bool AllowTruncation=false)
Hook for matching ConstantSDNode predicate.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
LLVM_ABI bool isBuildVectorOfConstantFPSDNodes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR node of all ConstantFPSDNode or undef.
bool isSEXTLoad(const SDNode *N)
Returns true if the specified node is a SEXTLOAD.
CondCode
ISD::CondCode enum - These are ordered carefully to make the bitfields below work out,...
LLVM_ABI bool isBuildVectorAllOnes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR where all of the elements are ~0 or undef.
LLVM_ABI NodeType getVecReduceBaseOpcode(unsigned VecReduceOpcode)
Get underlying scalar opcode for VECREDUCE opcode.
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.
LLVM_ABI CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, EVT Type)
Return the result of a logical OR between different comparisons of identical values: ((X op1 Y) | (X ...
BinaryOp_match< SpecificConstantMatch, SrcTy, TargetOpcode::G_SUB > m_Neg(const SrcTy &&Src)
Matches a register negated by a G_SUB.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
deferredval_ty< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
LLVM_ABI Libcall getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMCPY_ELEMENT_UNORDERED_ATOMIC - Return MEMCPY_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
LLVM_ABI Libcall getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMSET_ELEMENT_UNORDERED_ATOMIC - Return MEMSET_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
LLVM_ABI Libcall getMEMMOVE_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMMOVE_ELEMENT_UNORDERED_ATOMIC - Return MEMMOVE_ELEMENT_UNORDERED_ATOMIC_* value for the given e...
bool sd_match(SDNode *N, const SelectionDAG *DAG, Pattern &&P)
initializer< Ty > init(const Ty &Val)
@ DW_OP_LLVM_arg
Only used in LLVM metadata.
std::enable_if_t< detail::IsValidPointer< X, Y >::value, X * > extract(Y &&MD)
Extract a Value from Metadata.
NodeAddr< NodeBase * > Node
This is an optimization pass for GlobalISel generic memory operations.
GenericUniformityInfo< SSAContext > UniformityInfo
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
bool operator<(int64_t V1, const APSInt &V2)
ISD::CondCode getICmpCondCode(ICmpInst::Predicate Pred)
getICmpCondCode - Return the ISD condition code corresponding to the given LLVM IR integer condition ...
void fill(R &&Range, T &&Value)
Provide wrappers to std::fill which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI SDValue peekThroughExtractSubvectors(SDValue V)
Return the non-extracted vector source operand of V if it exists.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
MaybeAlign getAlign(const CallInst &I, unsigned Index)
LLVM_ABI bool isNullConstant(SDValue V)
Returns true if V is a constant integer zero.
LLVM_ABI bool isAllOnesOrAllOnesSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant -1 integer or a splatted vector of a constant -1 integer (with...
LLVM_ABI SDValue getBitwiseNotOperand(SDValue V, SDValue Mask, bool AllowUndefs)
If V is a bitwise not, returns the inverted operand.
@ Undef
Value of the register doesn't matter.
LLVM_ABI SDValue peekThroughBitcasts(SDValue V)
Return the non-bitcasted source operand of V if it exists.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
int countr_one(T Value)
Count the number of ones from the least significant bit to the first zero bit.
bool isIntOrFPConstant(SDValue V)
Return true if V is either a integer or FP constant.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
LLVM_ABI bool getConstantDataArrayInfo(const Value *V, ConstantDataArraySlice &Slice, unsigned ElementSize, uint64_t Offset=0)
Returns true if the value V is a pointer into a ConstantDataArray.
LLVM_ABI bool isOneOrOneSplatFP(SDValue V, bool AllowUndefs=false)
Return true if the value is a constant floating-point value, or a splatted vector of a constant float...
int bit_width(T Value)
Returns the number of bits needed to represent Value if Value is nonzero.
LLVM_READONLY APFloat maximum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 maximum semantics.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
constexpr bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
LLVM_ABI bool shouldOptimizeForSize(const MachineFunction *MF, ProfileSummaryInfo *PSI, const MachineBlockFrequencyInfo *BFI, PGSOQueryType QueryType=PGSOQueryType::Other)
Returns true if machine function MF is suggested to be size-optimized based on the profile.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
auto cast_or_null(const Y &Val)
LLVM_ABI bool isNullOrNullSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant 0 integer or a splatted vector of a constant 0 integer (with n...
LLVM_ABI bool isMinSignedConstant(SDValue V)
Returns true if V is a constant min signed integer value.
LLVM_ABI ConstantFPSDNode * isConstOrConstSplatFP(SDValue N, bool AllowUndefs=false)
Returns the SDNode if it is a constant splat BuildVector or constant float.
LLVM_ABI ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
APFloat frexp(const APFloat &X, int &Exp, APFloat::roundingMode RM)
Equivalent of C standard library function.
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool getShuffleDemandedElts(int SrcWidth, ArrayRef< int > Mask, const APInt &DemandedElts, APInt &DemandedLHS, APInt &DemandedRHS, bool AllowUndefElts=false)
Transform a shuffle mask's output demanded element mask into demanded element masks for the 2 operand...
LLVM_READONLY APFloat maxnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2008 maxNum semantics.
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
LLVM_ABI bool isBitwiseNot(SDValue V, bool AllowUndefs=false)
Returns true if V is a bitwise not operation.
LLVM_ABI SDValue peekThroughInsertVectorElt(SDValue V, const APInt &DemandedElts)
Recursively peek through INSERT_VECTOR_ELT nodes, returning the source vector operand of V,...
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
LLVM_ABI void checkForCycles(const SelectionDAG *DAG, bool force=false)
void sort(IteratorTy Start, IteratorTy End)
LLVM_READONLY APFloat minimumnum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 minimumNumber semantics.
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI SDValue peekThroughTruncates(SDValue V)
Return the non-truncated source operand of V if it exists.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
constexpr std::underlying_type_t< Enum > to_underlying(Enum E)
Returns underlying integer value of an enum.
FunctionAddr VTableAddr Count
LLVM_ABI ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
LLVM_ABI SDValue peekThroughOneUseBitcasts(SDValue V)
Return the non-bitcasted and one-use source operand of V if it exists.
CodeGenOptLevel
Code generation optimization level.
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 bool isOneOrOneSplat(SDValue V, bool AllowUndefs=false)
Return true if the value is a constant 1 integer or a splatted vector of a constant 1 integer (with n...
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_READONLY APFloat minnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2008 minNum semantics.
@ Mul
Product of integers.
@ Sub
Subtraction of integers.
LLVM_ABI bool isNullConstantOrUndef(SDValue V)
Returns true if V is a constant integer zero or an UNDEF node.
bool isInTailCallPosition(const CallBase &Call, const TargetMachine &TM, bool ReturnsFirstArg=false)
Test if the given instruction is in a position to be optimized with a tail-call.
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
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.
OutputIt copy(R &&Range, OutputIt Out)
constexpr unsigned BitWidth
bool funcReturnsFirstArgOfCall(const CallInst &CI)
Returns true if the parent of CI returns CI's first argument after calling CI.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI bool isZeroOrZeroSplat(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant 0 integer or a splatted vector of a constant 0 integer (with n...
LLVM_ABI bool isOneConstant(SDValue V)
Returns true if V is a constant integer one.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
LLVM_ABI bool isNullFPConstant(SDValue V)
Returns true if V is an FP constant with a value of positive zero.
constexpr int64_t SignExtend64(uint64_t x)
Sign-extend the number in the bottom B bits of X to a 64-bit integer.
unsigned Log2(Align A)
Returns the log2 of the alignment.
LLVM_ABI bool isZeroOrZeroSplatFP(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant (+/-)0.0 floating-point value or a splatted vector thereof (wi...
LLVM_ABI void computeKnownBitsFromRangeMetadata(const MDNode &Ranges, KnownBits &Known)
Compute known bits from the range metadata.
LLVM_READONLY APFloat minimum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 minimum semantics.
LLVM_READONLY APFloat maximumnum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 maximumNumber semantics.
LLVM_ABI bool isOnesOrOnesSplat(SDValue N, bool AllowUndefs=false)
Return true if the value is a constant 1 integer or a splatted vector of a constant 1 integer (with n...
LLVM_ABI bool isNeutralConstant(unsigned Opc, SDNodeFlags Flags, SDValue V, unsigned OperandNo)
Returns true if V is a neutral element of Opc with Flags.
LLVM_ABI bool isAllOnesConstant(SDValue V)
Returns true if V is an integer constant with all bits set.
constexpr uint64_t NextPowerOf2(uint64_t A)
Returns the next power of two (in 64-bits) that is strictly greater than A.
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.
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
MDNode * TBAAStruct
The tag for type-based alias analysis (tbaa struct).
MDNode * TBAA
The tag for type-based alias analysis.
This struct is a compact representation of a valid (non-zero power of two) alignment.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Represents offset+length into a ConstantDataArray.
uint64_t Length
Length of the slice.
uint64_t Offset
Slice starts at this Offset.
void move(uint64_t Delta)
Moves the Offset and adjusts Length accordingly.
const ConstantDataArray * Array
ConstantDataArray pointer.
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
intptr_t getRawBits() const
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 bitsLT(EVT VT) const
Return true if this has less bits than VT.
bool isFloatingPoint() const
Return true if this is a FP or a vector FP type.
ElementCount getVectorElementCount() 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
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.
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 bitsGE(EVT VT) const
Return true if this has no less bits than VT.
bool bitsEq(EVT VT) const
Return true if this has the same number of bits as VT.
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
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.
bool isExtended() const
Test if the given EVT is extended (as opposed to being simple).
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.
EVT getHalfNumVectorElementsVT(LLVMContext &Context) const
bool isInteger() const
Return true if this is an integer or a vector integer type.
static KnownBits makeConstant(const APInt &C)
Create known bits from a known constant.
LLVM_ABI KnownBits sextInReg(unsigned SrcBitWidth) const
Return known bits for a in-register sign extension of the value we're tracking.
static LLVM_ABI KnownBits mulhu(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from zero-extended multiply-hi.
unsigned countMinSignBits() const
Returns the number of times the sign bit is replicated into the other bits.
static LLVM_ABI KnownBits smax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smax(LHS, RHS).
bool isNonNegative() const
Returns true if this value is known to be non-negative.
bool isZero() const
Returns true if value is all zero.
void makeNonNegative()
Make this value non-negative.
static LLVM_ABI KnownBits usub_sat(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from llvm.usub.sat(LHS, RHS)
unsigned countMinTrailingZeros() const
Returns the minimum number of trailing zero bits.
static LLVM_ABI KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static LLVM_ABI KnownBits urem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for urem(LHS, RHS).
bool isUnknown() const
Returns true if we don't know any bits.
unsigned countMaxTrailingZeros() const
Returns the maximum number of trailing zero bits possible.
static LLVM_ABI std::optional< bool > ne(const KnownBits &LHS, const KnownBits &RHS)
Determine if these known bits always give the same ICMP_NE result.
void makeNegative()
Make this value negative.
void setAllConflict()
Make all bits known to be both zero and one.
KnownBits trunc(unsigned BitWidth) const
Return known bits for a truncation of the value we're tracking.
KnownBits byteSwap() const
unsigned countMaxPopulation() const
Returns the maximum number of bits that could be one.
void setAllZero()
Make all bits known to be zero and discard any previous information.
KnownBits reverseBits() const
KnownBits concat(const KnownBits &Lo) const
Concatenate the bits from Lo onto the bottom of *this.
unsigned getBitWidth() const
Get the bit width of this value.
static LLVM_ABI KnownBits umax(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umax(LHS, RHS).
KnownBits zext(unsigned BitWidth) const
Return known bits for a zero extension of the value we're tracking.
void resetAll()
Resets the known state of all bits.
static KnownBits add(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false, bool SelfAdd=false)
Compute knownbits resulting from addition of LHS and RHS.
KnownBits unionWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for either this or RHS or both.
static LLVM_ABI KnownBits lshr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for lshr(LHS, RHS).
bool isNonZero() const
Returns true if this value is known to be non-zero.
static LLVM_ABI KnownBits abdu(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for abdu(LHS, RHS).
KnownBits extractBits(unsigned NumBits, unsigned BitPosition) const
Return a subset of the known bits from [bitPosition,bitPosition+numBits).
static LLVM_ABI KnownBits avgFloorU(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgFloorU.
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.
static LLVM_ABI KnownBits computeForSubBorrow(const KnownBits &LHS, KnownBits RHS, const KnownBits &Borrow)
Compute known bits results from subtracting RHS from LHS with 1-bit Borrow.
KnownBits zextOrTrunc(unsigned BitWidth) const
Return known bits for a zero extension or truncation of the value we're tracking.
APInt getMaxValue() const
Return the maximal unsigned value possible given these KnownBits.
static LLVM_ABI KnownBits abds(KnownBits LHS, KnownBits RHS)
Compute known bits for abds(LHS, RHS).
static LLVM_ABI KnownBits smin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smin(LHS, RHS).
static LLVM_ABI KnownBits mulhs(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from sign-extended multiply-hi.
static LLVM_ABI KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static LLVM_ABI KnownBits udiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for udiv(LHS, RHS).
bool isStrictlyPositive() const
Returns true if this value is known to be positive.
static LLVM_ABI KnownBits sdiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for sdiv(LHS, RHS).
static LLVM_ABI KnownBits avgFloorS(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgFloorS.
static bool haveNoCommonBitsSet(const KnownBits &LHS, const KnownBits &RHS)
Return true if LHS and RHS have no common bits set.
bool isNegative() const
Returns true if this value is known to be negative.
LLVM_ABI KnownBits truncSSat(unsigned BitWidth) const
Truncate with signed saturation (signed input -> signed output)
static LLVM_ABI KnownBits computeForAddCarry(const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry)
Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
static KnownBits sub(const KnownBits &LHS, const KnownBits &RHS, bool NSW=false, bool NUW=false)
Compute knownbits resulting from subtraction of LHS and RHS.
unsigned countMaxLeadingZeros() const
Returns the maximum number of leading zero bits possible.
void insertBits(const KnownBits &SubBits, unsigned BitPosition)
Insert the bits from a smaller known bits starting at bitPosition.
static LLVM_ABI KnownBits avgCeilU(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilU.
static LLVM_ABI KnownBits mul(const KnownBits &LHS, const KnownBits &RHS, bool NoUndefSelfMultiply=false)
Compute known bits resulting from multiplying LHS and RHS.
KnownBits anyext(unsigned BitWidth) const
Return known bits for an "any" extension of the value we're tracking, where we don't know anything ab...
static LLVM_ABI KnownBits clmul(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for clmul(LHS, RHS).
LLVM_ABI KnownBits abs(bool IntMinIsPoison=false) const
Compute known bits for the absolute value.
LLVM_ABI KnownBits truncUSat(unsigned BitWidth) const
Truncate with unsigned saturation (unsigned input -> unsigned output)
static LLVM_ABI KnownBits shl(const KnownBits &LHS, const KnownBits &RHS, bool NUW=false, bool NSW=false, bool ShAmtNonZero=false)
Compute known bits for shl(LHS, RHS).
static LLVM_ABI KnownBits umin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umin(LHS, RHS).
LLVM_ABI KnownBits truncSSatU(unsigned BitWidth) const
Truncate with signed saturation to unsigned (signed input -> unsigned output)
static LLVM_ABI KnownBits avgCeilS(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilS.
FPClassTest KnownFPClasses
Floating-point classes the value could be one of.
std::optional< bool > SignBit
std::nullopt if the sign bit is unknown, true if the sign bit is definitely set or false if the sign ...
bool isKnownNever(FPClassTest Mask) const
Return true if it's known this can never be one of the mask entries.
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.
LLVM_ABI unsigned getAddrSpace() const
Return the LLVM IR address space number that this pointer points into.
PointerUnion< const Value *, const PseudoSourceValue * > V
This is the IR pointer value for the access, or it is null if unknown.
MachinePointerInfo getWithOffset(int64_t O) const
static LLVM_ABI MachinePointerInfo getFixedStack(MachineFunction &MF, int FI, int64_t Offset=0)
Return a MachinePointerInfo record that refers to the specified FrameIndex.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
static MemOp Set(uint64_t Size, bool DstAlignCanChange, Align DstAlign, bool IsZeroMemset, bool IsVolatile)
static MemOp Copy(uint64_t Size, bool DstAlignCanChange, Align DstAlign, Align SrcAlign, bool IsVolatile, bool MemcpyStrSrc=false)
static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl)
Get the libcall routine name for the specified libcall implementation.
These are IR-level optimization flags that may be propagated to SDNodes.
This represents a list of ValueType's that has been intern'd by a SelectionDAG.
Clients of various APIs that cause global effects on the DAG can optionally implement this interface.
DAGUpdateListener *const Next
virtual void NodeDeleted(SDNode *N, SDNode *E)
The node N that was deleted and, if E is not null, an equivalent node E that replaced it.
virtual void NodeInserted(SDNode *N)
The node N that was inserted.
virtual void NodeUpdated(SDNode *N)
The node N that was updated.
This structure contains all information that is necessary for lowering calls.
CallLoweringInfo & setLibCallee(CallingConv::ID CC, Type *ResultType, SDValue Target, ArgListTy &&ArgsList)
CallLoweringInfo & setDiscardResult(bool Value=true)
CallLoweringInfo & setDebugLoc(const SDLoc &dl)
CallLoweringInfo & setTailCall(bool Value=true)
CallLoweringInfo & setChain(SDValue InChain)