101void SelectionDAG::DAGNodeDeletedListener::anchor() {}
102void SelectionDAG::DAGNodeInsertedListener::anchor() {}
104#define DEBUG_TYPE "selectiondag"
108 cl::desc(
"Gang up loads and stores generated by inlining of memcpy"));
111 cl::desc(
"Number limit for gluing ld/st of memcpy."),
116 cl::desc(
"DAG combiner limit number of steps when searching DAG "
117 "for predecessor nodes"));
134 return getValueAPF().bitwiseIsEqual(V);
156 N->getValueType(0).getVectorElementType().getSizeInBits();
157 if (
auto *Op0 = dyn_cast<ConstantSDNode>(
N->getOperand(0))) {
158 SplatVal = Op0->getAPIntValue().
trunc(EltSize);
161 if (
auto *Op0 = dyn_cast<ConstantFPSDNode>(
N->getOperand(0))) {
162 SplatVal = Op0->getValueAPF().bitcastToAPInt().
trunc(EltSize);
167 auto *BV = dyn_cast<BuildVectorSDNode>(
N);
172 unsigned SplatBitSize;
174 unsigned EltSize =
N->getValueType(0).getVectorElementType().getSizeInBits();
179 const bool IsBigEndian =
false;
180 return BV->isConstantSplat(SplatVal, SplatUndef, SplatBitSize, HasUndefs,
181 EltSize, IsBigEndian) &&
182 EltSize == SplatBitSize;
191 N =
N->getOperand(0).getNode();
200 unsigned i = 0, e =
N->getNumOperands();
203 while (i != e &&
N->getOperand(i).isUndef())
207 if (i == e)
return false;
218 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
220 if (CN->getAPIntValue().countr_one() < EltSize)
223 if (CFPN->getValueAPF().bitcastToAPInt().countr_one() < EltSize)
231 for (++i; i != e; ++i)
232 if (
N->getOperand(i) != NotZero && !
N->getOperand(i).isUndef())
240 N =
N->getOperand(0).getNode();
249 bool IsAllUndef =
true;
262 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
264 if (CN->getAPIntValue().countr_zero() < EltSize)
267 if (CFPN->getValueAPF().bitcastToAPInt().countr_zero() < EltSize)
294 if (!isa<ConstantSDNode>(
Op))
307 if (!isa<ConstantFPSDNode>(
Op))
315 assert(
N->getValueType(0).isVector() &&
"Expected a vector!");
317 unsigned EltSize =
N->getValueType(0).getScalarSizeInBits();
318 if (EltSize <= NewEltSize)
322 return (
N->getOperand(0).getValueType().getScalarSizeInBits() <=
327 return (
N->getOperand(0).getValueType().getScalarSizeInBits() <=
337 if (!isa<ConstantSDNode>(
Op))
340 APInt C =
Op->getAsAPIntVal().trunc(EltSize);
341 if (
Signed &&
C.trunc(NewEltSize).sext(EltSize) !=
C)
343 if (!
Signed &&
C.trunc(NewEltSize).zext(EltSize) !=
C)
354 if (
N->getNumOperands() == 0)
360 return N->getOpcode() ==
ISD::FREEZE &&
N->getOperand(0).isUndef();
363template <
typename ConstNodeType>
365 std::function<
bool(ConstNodeType *)>
Match,
368 if (
auto *
C = dyn_cast<ConstNodeType>(
Op))
376 EVT SVT =
Op.getValueType().getScalarType();
378 if (AllowUndefs &&
Op.getOperand(i).isUndef()) {
384 auto *Cst = dyn_cast<ConstNodeType>(
Op.getOperand(i));
385 if (!Cst || Cst->getValueType(0) != SVT || !
Match(Cst))
391template bool ISD::matchUnaryPredicateImpl<ConstantSDNode>(
393template bool ISD::matchUnaryPredicateImpl<ConstantFPSDNode>(
399 bool AllowUndefs,
bool AllowTypeMismatch) {
400 if (!AllowTypeMismatch &&
LHS.getValueType() !=
RHS.getValueType())
404 if (
auto *LHSCst = dyn_cast<ConstantSDNode>(
LHS))
405 if (
auto *RHSCst = dyn_cast<ConstantSDNode>(
RHS))
406 return Match(LHSCst, RHSCst);
409 if (
LHS.getOpcode() !=
RHS.getOpcode() ||
414 EVT SVT =
LHS.getValueType().getScalarType();
415 for (
unsigned i = 0, e =
LHS.getNumOperands(); i != e; ++i) {
418 bool LHSUndef = AllowUndefs && LHSOp.
isUndef();
419 bool RHSUndef = AllowUndefs && RHSOp.
isUndef();
420 auto *LHSCst = dyn_cast<ConstantSDNode>(LHSOp);
421 auto *RHSCst = dyn_cast<ConstantSDNode>(RHSOp);
422 if ((!LHSCst && !LHSUndef) || (!RHSCst && !RHSUndef))
424 if (!AllowTypeMismatch && (LHSOp.
getValueType() != SVT ||
427 if (!
Match(LHSCst, RHSCst))
434 switch (VecReduceOpcode) {
439 case ISD::VP_REDUCE_FADD:
440 case ISD::VP_REDUCE_SEQ_FADD:
444 case ISD::VP_REDUCE_FMUL:
445 case ISD::VP_REDUCE_SEQ_FMUL:
448 case ISD::VP_REDUCE_ADD:
451 case ISD::VP_REDUCE_MUL:
454 case ISD::VP_REDUCE_AND:
457 case ISD::VP_REDUCE_OR:
460 case ISD::VP_REDUCE_XOR:
463 case ISD::VP_REDUCE_SMAX:
466 case ISD::VP_REDUCE_SMIN:
469 case ISD::VP_REDUCE_UMAX:
472 case ISD::VP_REDUCE_UMIN:
475 case ISD::VP_REDUCE_FMAX:
478 case ISD::VP_REDUCE_FMIN:
481 case ISD::VP_REDUCE_FMAXIMUM:
484 case ISD::VP_REDUCE_FMINIMUM:
493#define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) \
496#include "llvm/IR/VPIntrinsics.def"
504#define BEGIN_REGISTER_VP_SDNODE(VPSD, ...) case ISD::VPSD:
505#define VP_PROPERTY_BINARYOP return true;
506#define END_REGISTER_VP_SDNODE(VPSD) break;
507#include "llvm/IR/VPIntrinsics.def"
516 case ISD::VP_REDUCE_ADD:
517 case ISD::VP_REDUCE_MUL:
518 case ISD::VP_REDUCE_AND:
519 case ISD::VP_REDUCE_OR:
520 case ISD::VP_REDUCE_XOR:
521 case ISD::VP_REDUCE_SMAX:
522 case ISD::VP_REDUCE_SMIN:
523 case ISD::VP_REDUCE_UMAX:
524 case ISD::VP_REDUCE_UMIN:
525 case ISD::VP_REDUCE_FMAX:
526 case ISD::VP_REDUCE_FMIN:
527 case ISD::VP_REDUCE_FMAXIMUM:
528 case ISD::VP_REDUCE_FMINIMUM:
529 case ISD::VP_REDUCE_FADD:
530 case ISD::VP_REDUCE_FMUL:
531 case ISD::VP_REDUCE_SEQ_FADD:
532 case ISD::VP_REDUCE_SEQ_FMUL:
542#define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, ...) \
545#include "llvm/IR/VPIntrinsics.def"
554#define BEGIN_REGISTER_VP_SDNODE(VPSD, LEGALPOS, TDNAME, MASKPOS, EVLPOS) \
557#include "llvm/IR/VPIntrinsics.def"
567#define BEGIN_REGISTER_VP_SDNODE(VPOPC, ...) case ISD::VPOPC:
568#define VP_PROPERTY_FUNCTIONAL_SDOPC(SDOPC) return ISD::SDOPC;
569#define END_REGISTER_VP_SDNODE(VPOPC) break;
570#include "llvm/IR/VPIntrinsics.def"
579#define BEGIN_REGISTER_VP_SDNODE(VPOPC, ...) break;
580#define VP_PROPERTY_FUNCTIONAL_SDOPC(SDOPC) case ISD::SDOPC:
581#define END_REGISTER_VP_SDNODE(VPOPC) return ISD::VPOPC;
582#include "llvm/IR/VPIntrinsics.def"
629 bool isIntegerLike) {
654 bool IsInteger =
Type.isInteger();
659 unsigned Op = Op1 | Op2;
675 bool IsInteger =
Type.isInteger();
710 ID.AddPointer(VTList.
VTs);
716 for (
const auto &
Op : Ops) {
717 ID.AddPointer(
Op.getNode());
718 ID.AddInteger(
Op.getResNo());
725 for (
const auto &
Op : Ops) {
726 ID.AddPointer(
Op.getNode());
727 ID.AddInteger(
Op.getResNo());
740 switch (
N->getOpcode()) {
749 ID.AddPointer(
C->getConstantIntValue());
750 ID.AddBoolean(
C->isOpaque());
755 ID.AddPointer(cast<ConstantFPSDNode>(
N)->getConstantFPValue());
771 ID.AddInteger(cast<RegisterSDNode>(
N)->
getReg().
id());
774 ID.AddPointer(cast<RegisterMaskSDNode>(
N)->getRegMask());
777 ID.AddPointer(cast<SrcValueSDNode>(
N)->getValue());
781 ID.AddInteger(cast<FrameIndexSDNode>(
N)->getIndex());
785 if (cast<LifetimeSDNode>(
N)->hasOffset()) {
786 ID.AddInteger(cast<LifetimeSDNode>(
N)->
getSize());
791 ID.AddInteger(cast<PseudoProbeSDNode>(
N)->getGuid());
792 ID.AddInteger(cast<PseudoProbeSDNode>(
N)->getIndex());
793 ID.AddInteger(cast<PseudoProbeSDNode>(
N)->getAttributes());
797 ID.AddInteger(cast<JumpTableSDNode>(
N)->getIndex());
798 ID.AddInteger(cast<JumpTableSDNode>(
N)->getTargetFlags());
803 ID.AddInteger(CP->getAlign().value());
804 ID.AddInteger(CP->getOffset());
805 if (CP->isMachineConstantPoolEntry())
806 CP->getMachineCPVal()->addSelectionDAGCSEId(
ID);
808 ID.AddPointer(CP->getConstVal());
809 ID.AddInteger(CP->getTargetFlags());
821 ID.AddInteger(LD->getMemoryVT().getRawBits());
822 ID.AddInteger(LD->getRawSubclassData());
823 ID.AddInteger(LD->getPointerInfo().getAddrSpace());
824 ID.AddInteger(LD->getMemOperand()->getFlags());
829 ID.AddInteger(ST->getMemoryVT().getRawBits());
830 ID.AddInteger(ST->getRawSubclassData());
831 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
832 ID.AddInteger(ST->getMemOperand()->getFlags());
843 case ISD::VP_STORE: {
851 case ISD::EXPERIMENTAL_VP_STRIDED_LOAD: {
858 case ISD::EXPERIMENTAL_VP_STRIDED_STORE: {
865 case ISD::VP_GATHER: {
873 case ISD::VP_SCATTER: {
962 if (
auto *MN = dyn_cast<MemIntrinsicSDNode>(
N)) {
963 ID.AddInteger(MN->getRawSubclassData());
964 ID.AddInteger(MN->getPointerInfo().getAddrSpace());
965 ID.AddInteger(MN->getMemOperand()->getFlags());
966 ID.AddInteger(MN->getMemoryVT().getRawBits());
989 if (
N->getValueType(0) == MVT::Glue)
992 switch (
N->getOpcode()) {
1000 for (
unsigned i = 1, e =
N->getNumValues(); i != e; ++i)
1001 if (
N->getValueType(i) == MVT::Glue)
1018 if (Node.use_empty())
1033 while (!DeadNodes.
empty()) {
1042 DUL->NodeDeleted(
N,
nullptr);
1045 RemoveNodeFromCSEMaps(
N);
1076 RemoveNodeFromCSEMaps(
N);
1080 DeleteNodeNotInCSEMaps(
N);
1083void SelectionDAG::DeleteNodeNotInCSEMaps(
SDNode *
N) {
1084 assert(
N->getIterator() != AllNodes.begin() &&
1085 "Cannot delete the entry node!");
1086 assert(
N->use_empty() &&
"Cannot delete a node that is not dead!");
1095 assert(!(V->isVariadic() && isParameter));
1097 ByvalParmDbgValues.push_back(V);
1099 DbgValues.push_back(V);
1100 for (
const SDNode *Node : V->getSDNodes())
1102 DbgValMap[Node].push_back(V);
1107 if (
I == DbgValMap.end())
1109 for (
auto &Val:
I->second)
1110 Val->setIsInvalidated();
1114void SelectionDAG::DeallocateNode(
SDNode *
N) {
1138 switch (
N->getOpcode()) {
1144 EVT VT =
N->getValueType(0);
1145 assert(
N->getNumValues() == 1 &&
"Too many results!");
1147 "Wrong return type!");
1148 assert(
N->getNumOperands() == 2 &&
"Wrong number of operands!");
1149 assert(
N->getOperand(0).getValueType() ==
N->getOperand(1).getValueType() &&
1150 "Mismatched operand types!");
1152 "Wrong operand type!");
1154 "Wrong return type size");
1158 assert(
N->getNumValues() == 1 &&
"Too many results!");
1159 assert(
N->getValueType(0).isVector() &&
"Wrong return type!");
1160 assert(
N->getNumOperands() ==
N->getValueType(0).getVectorNumElements() &&
1161 "Wrong number of operands!");
1162 EVT EltVT =
N->getValueType(0).getVectorElementType();
1164 assert((
Op.getValueType() == EltVT ||
1165 (EltVT.
isInteger() &&
Op.getValueType().isInteger() &&
1166 EltVT.
bitsLE(
Op.getValueType()))) &&
1167 "Wrong operand type!");
1168 assert(
Op.getValueType() ==
N->getOperand(0).getValueType() &&
1169 "Operands must all have the same type");
1181void SelectionDAG::InsertNode(
SDNode *
N) {
1182 AllNodes.push_back(
N);
1184 N->PersistentId = NextPersistentId++;
1187 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1188 DUL->NodeInserted(
N);
1195bool SelectionDAG::RemoveNodeFromCSEMaps(
SDNode *
N) {
1196 bool Erased =
false;
1197 switch (
N->getOpcode()) {
1200 assert(CondCodeNodes[cast<CondCodeSDNode>(
N)->
get()] &&
1201 "Cond code doesn't exist!");
1202 Erased = CondCodeNodes[cast<CondCodeSDNode>(
N)->get()] !=
nullptr;
1203 CondCodeNodes[cast<CondCodeSDNode>(
N)->get()] =
nullptr;
1206 Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(
N)->getSymbol());
1210 Erased = TargetExternalSymbols.erase(std::pair<std::string, unsigned>(
1215 auto *MCSN = cast<MCSymbolSDNode>(
N);
1216 Erased = MCSymbols.erase(MCSN->getMCSymbol());
1220 EVT VT = cast<VTSDNode>(
N)->getVT();
1222 Erased = ExtendedValueTypeNodes.erase(VT);
1233 Erased = CSEMap.RemoveNode(
N);
1240 if (!Erased &&
N->getValueType(
N->getNumValues()-1) != MVT::Glue &&
1255SelectionDAG::AddModifiedNodeToCSEMaps(
SDNode *
N) {
1259 SDNode *Existing = CSEMap.GetOrInsertNode(
N);
1260 if (Existing !=
N) {
1268 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1269 DUL->NodeDeleted(
N, Existing);
1270 DeleteNodeNotInCSEMaps(
N);
1276 for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next)
1277 DUL->NodeUpdated(
N);
1295 Node->intersectFlagsWith(
N->getFlags());
1315 Node->intersectFlagsWith(
N->getFlags());
1333 Node->intersectFlagsWith(
N->getFlags());
1346 : TM(tm), OptLevel(OL), EntryNode(ISD::EntryToken, 0,
DebugLoc(),
1349 InsertNode(&EntryNode);
1360 SDAGISelPass = PassPtr;
1364 LibInfo = LibraryInfo;
1370 FnVarLocs = VarLocs;
1374 assert(!UpdateListeners &&
"Dangling registered DAGUpdateListeners");
1376 OperandRecycler.clear(OperandAllocator);
1384void SelectionDAG::allnodes_clear() {
1385 assert(&*AllNodes.begin() == &EntryNode);
1386 AllNodes.remove(AllNodes.begin());
1387 while (!AllNodes.empty())
1388 DeallocateNode(&AllNodes.front());
1390 NextPersistentId = 0;
1396 SDNode *
N = CSEMap.FindNodeOrInsertPos(
ID, InsertPos);
1398 switch (
N->getOpcode()) {
1403 "debug location. Use another overload.");
1410 const SDLoc &
DL,
void *&InsertPos) {
1411 SDNode *
N = CSEMap.FindNodeOrInsertPos(
ID, InsertPos);
1413 switch (
N->getOpcode()) {
1419 if (
N->getDebugLoc() !=
DL.getDebugLoc())
1426 if (
DL.getIROrder() &&
DL.getIROrder() <
N->getIROrder())
1427 N->setDebugLoc(
DL.getDebugLoc());
1436 OperandRecycler.clear(OperandAllocator);
1437 OperandAllocator.
Reset();
1440 ExtendedValueTypeNodes.clear();
1441 ExternalSymbols.clear();
1442 TargetExternalSymbols.clear();
1445 std::fill(CondCodeNodes.begin(), CondCodeNodes.end(),
nullptr);
1446 std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(),
nullptr);
1448 EntryNode.UseList =
nullptr;
1449 InsertNode(&EntryNode);
1455 return VT.
bitsGT(
Op.getValueType())
1461std::pair<SDValue, SDValue>
1465 "Strict no-op FP extend/round not allowed.");
1472 return std::pair<SDValue, SDValue>(Res,
SDValue(Res.
getNode(), 1));
1476 return VT.
bitsGT(
Op.getValueType()) ?
1482 return VT.
bitsGT(
Op.getValueType()) ?
1488 return VT.
bitsGT(
Op.getValueType()) ?
1496 auto Type =
Op.getValueType();
1500 auto Size =
Op.getValueSizeInBits();
1511 auto Type =
Op.getValueType();
1515 auto Size =
Op.getValueSizeInBits();
1526 auto Type =
Op.getValueType();
1530 auto Size =
Op.getValueSizeInBits();
1548 EVT OpVT =
Op.getValueType();
1550 "Cannot getZeroExtendInReg FP types");
1552 "getZeroExtendInReg type should be vector iff the operand "
1556 "Vector element counts must match in getZeroExtendInReg");
1568 EVT OpVT =
Op.getValueType();
1570 "Cannot getVPZeroExtendInReg FP types");
1572 "getVPZeroExtendInReg type and operand type should be vector!");
1574 "Vector element counts must match in getZeroExtendInReg");
1613 return getNode(ISD::VP_XOR,
DL, VT, Val, TrueValue, Mask, EVL);
1624 return getNode(ISD::VP_ZERO_EXTEND,
DL, VT,
Op, Mask, EVL);
1626 return getNode(ISD::VP_TRUNCATE,
DL, VT,
Op, Mask, EVL);
1646 bool isT,
bool isO) {
1652 bool isT,
bool isO) {
1653 return getConstant(*ConstantInt::get(*Context, Val),
DL, VT, isT, isO);
1657 EVT VT,
bool isT,
bool isO) {
1665 if (isa<VectorType>(Elt->
getType()))
1680 Elt = ConstantInt::get(*
getContext(), NewVal);
1699 "Can only handle an even split!");
1703 for (
unsigned i = 0; i != Parts; ++i)
1705 NewVal.
extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits),
DL,
1706 ViaEltVT, isT, isO));
1711 unsigned ViaVecNumElts = VT.
getSizeInBits() / ViaEltSizeInBits;
1722 NewVal.
extractBits(ViaEltSizeInBits, i * ViaEltSizeInBits),
DL,
1723 ViaEltVT, isT, isO));
1728 std::reverse(EltParts.
begin(), EltParts.
end());
1747 "APInt size does not match type size!");
1756 if ((
N = FindNodeOrInsertPos(
ID,
DL, IP)))
1761 N = newSDNode<ConstantSDNode>(isT, isO, Elt, VTs);
1762 CSEMap.InsertNode(
N, IP);
1774 bool isT,
bool isO) {
1782 IsTarget, IsOpaque);
1814 EVT VT,
bool isTarget) {
1822 if (isa<VectorType>(Elt->
getType()))
1835 if ((
N = FindNodeOrInsertPos(
ID,
DL, IP)))
1840 N = newSDNode<ConstantFPSDNode>(isTarget, Elt, VTs);
1841 CSEMap.InsertNode(
N, IP);
1855 if (EltVT == MVT::f32)
1857 if (EltVT == MVT::f64)
1859 if (EltVT == MVT::f80 || EltVT == MVT::f128 || EltVT == MVT::ppcf128 ||
1860 EltVT == MVT::f16 || EltVT == MVT::bf16) {
1871 EVT VT, int64_t
Offset,
bool isTargetGA,
1872 unsigned TargetFlags) {
1873 assert((TargetFlags == 0 || isTargetGA) &&
1874 "Cannot set target flags on target-independent globals");
1892 ID.AddInteger(TargetFlags);
1894 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
1897 auto *
N = newSDNode<GlobalAddressSDNode>(
1898 Opc,
DL.getIROrder(),
DL.getDebugLoc(), GV, VTs,
Offset, TargetFlags);
1899 CSEMap.InsertNode(
N, IP);
1911 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
1914 auto *
N = newSDNode<FrameIndexSDNode>(FI, VTs, isTarget);
1915 CSEMap.InsertNode(
N, IP);
1921 unsigned TargetFlags) {
1922 assert((TargetFlags == 0 || isTarget) &&
1923 "Cannot set target flags on target-independent jump tables");
1929 ID.AddInteger(TargetFlags);
1931 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
1934 auto *
N = newSDNode<JumpTableSDNode>(JTI, VTs, isTarget, TargetFlags);
1935 CSEMap.InsertNode(
N, IP);
1949 bool isTarget,
unsigned TargetFlags) {
1950 assert((TargetFlags == 0 || isTarget) &&
1951 "Cannot set target flags on target-independent globals");
1960 ID.AddInteger(Alignment->value());
1963 ID.AddInteger(TargetFlags);
1965 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
1968 auto *
N = newSDNode<ConstantPoolSDNode>(isTarget,
C, VTs,
Offset, *Alignment,
1970 CSEMap.InsertNode(
N, IP);
1979 bool isTarget,
unsigned TargetFlags) {
1980 assert((TargetFlags == 0 || isTarget) &&
1981 "Cannot set target flags on target-independent globals");
1988 ID.AddInteger(Alignment->value());
1990 C->addSelectionDAGCSEId(
ID);
1991 ID.AddInteger(TargetFlags);
1993 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
1996 auto *
N = newSDNode<ConstantPoolSDNode>(isTarget,
C, VTs,
Offset, *Alignment,
1998 CSEMap.InsertNode(
N, IP);
2008 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2011 auto *
N = newSDNode<BasicBlockSDNode>(
MBB);
2012 CSEMap.InsertNode(
N, IP);
2019 ValueTypeNodes.size())
2026 N = newSDNode<VTSDNode>(VT);
2034 N = newSDNode<ExternalSymbolSDNode>(
false,
Sym, 0,
getVTList(VT));
2049 unsigned TargetFlags) {
2051 TargetExternalSymbols[std::pair<std::string, unsigned>(
Sym, TargetFlags)];
2053 N = newSDNode<ExternalSymbolSDNode>(
true,
Sym, TargetFlags,
getVTList(VT));
2059 if ((
unsigned)
Cond >= CondCodeNodes.size())
2060 CondCodeNodes.resize(
Cond+1);
2062 if (!CondCodeNodes[
Cond]) {
2063 auto *
N = newSDNode<CondCodeSDNode>(
Cond);
2064 CondCodeNodes[
Cond] =
N;
2072 bool ConstantFold) {
2074 "APInt size does not match type size!");
2091 bool ConstantFold) {
2092 if (EC.isScalable())
2105 const APInt &StepVal) {
2129 "Must have the same number of vector elements as mask elements!");
2131 "Invalid VECTOR_SHUFFLE");
2139 int NElts = Mask.size();
2141 [&](
int M) {
return M < (NElts * 2) && M >= -1; }) &&
2142 "Index out of range");
2150 for (
int i = 0; i != NElts; ++i)
2151 if (MaskVec[i] >= NElts) MaskVec[i] -= NElts;
2167 for (
int i = 0; i < NElts; ++i) {
2168 if (MaskVec[i] <
Offset || MaskVec[i] >= (
Offset + NElts))
2172 if (UndefElements[MaskVec[i] -
Offset]) {
2178 if (!UndefElements[i])
2182 if (
auto *N1BV = dyn_cast<BuildVectorSDNode>(N1))
2183 BlendSplat(N1BV, 0);
2184 if (
auto *N2BV = dyn_cast<BuildVectorSDNode>(N2))
2185 BlendSplat(N2BV, NElts);
2190 bool AllLHS =
true, AllRHS =
true;
2192 for (
int i = 0; i != NElts; ++i) {
2193 if (MaskVec[i] >= NElts) {
2198 }
else if (MaskVec[i] >= 0) {
2202 if (AllLHS && AllRHS)
2204 if (AllLHS && !N2Undef)
2217 bool Identity =
true, AllSame =
true;
2218 for (
int i = 0; i != NElts; ++i) {
2219 if (MaskVec[i] >= 0 && MaskVec[i] != i) Identity =
false;
2220 if (MaskVec[i] != MaskVec[0]) AllSame =
false;
2222 if (Identity && NElts)
2232 V = V->getOperand(0);
2235 if (
auto *BV = dyn_cast<BuildVectorSDNode>(V)) {
2255 if (AllSame && SameNumElts) {
2256 EVT BuildVT = BV->getValueType(0);
2273 for (
int i = 0; i != NElts; ++i)
2274 ID.AddInteger(MaskVec[i]);
2277 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
2283 int *MaskAlloc = OperandAllocator.
Allocate<
int>(NElts);
2286 auto *
N = newSDNode<ShuffleVectorSDNode>(VTs, dl.
getIROrder(),
2288 createOperands(
N, Ops);
2290 CSEMap.InsertNode(
N, IP);
2311 ID.AddInteger(Reg.id());
2313 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2316 auto *
N = newSDNode<RegisterSDNode>(Reg, VTs);
2318 CSEMap.InsertNode(
N, IP);
2326 ID.AddPointer(RegMask);
2328 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2331 auto *
N = newSDNode<RegisterMaskSDNode>(RegMask);
2332 CSEMap.InsertNode(
N, IP);
2347 ID.AddPointer(Label);
2349 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2354 createOperands(
N, Ops);
2356 CSEMap.InsertNode(
N, IP);
2362 int64_t
Offset,
bool isTarget,
2363 unsigned TargetFlags) {
2371 ID.AddInteger(TargetFlags);
2373 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2376 auto *
N = newSDNode<BlockAddressSDNode>(Opc, VTs, BA,
Offset, TargetFlags);
2377 CSEMap.InsertNode(
N, IP);
2388 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2391 auto *
N = newSDNode<SrcValueSDNode>(V);
2392 CSEMap.InsertNode(
N, IP);
2403 if (
SDNode *E = FindNodeOrInsertPos(
ID, IP))
2406 auto *
N = newSDNode<MDNodeSDNode>(MD);
2407 CSEMap.InsertNode(
N, IP);
2413 if (VT == V.getValueType())
2420 unsigned SrcAS,
unsigned DestAS) {
2425 ID.AddInteger(SrcAS);
2426 ID.AddInteger(DestAS);
2429 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
2433 VTs, SrcAS, DestAS);
2434 createOperands(
N, Ops);
2436 CSEMap.InsertNode(
N, IP);
2448 EVT OpTy =
Op.getValueType();
2450 if (OpTy == ShTy || OpTy.
isVector())
return Op;
2463 std::deque<SDValue> Subvectors = {Op1};
2464 for (
unsigned I = 0;
I < ScaleFactor;
I++) {
2466 Subvectors.push_back(
2471 while (Subvectors.size() > 1) {
2472 Subvectors.push_back(
2474 Subvectors.pop_front();
2475 Subvectors.pop_front();
2478 assert(Subvectors.size() == 1 &&
2479 "There should only be one subvector after tree flattening");
2481 return Subvectors[0];
2494 if (
Op.getNode() != FPNode)
2498 while (!Worklist.
empty()) {
2531 std::optional<unsigned> CallRetResNo) {
2533 EVT VT = Node->getValueType(0);
2534 unsigned NumResults = Node->getNumValues();
2540 auto getVecDesc = [&]() ->
VecDesc const * {
2541 for (
bool Masked : {
false,
true}) {
2552 if (VT.
isVector() && !(VD = getVecDesc()))
2562 auto *ST = cast<StoreSDNode>(
User);
2563 SDValue StoreValue = ST->getValue();
2564 unsigned ResNo = StoreValue.
getResNo();
2566 if (CallRetResNo == ResNo)
2569 if (!ST->isSimple() || ST->getAddressSpace() != 0)
2572 if (StoresInChain && ST->getChain() != StoresInChain)
2576 if (ST->getAlign() <
2584 ResultStores[ResNo] = ST;
2585 StoresInChain = ST->getChain();
2589 auto AddArgListEntry = [&](
SDValue Node,
Type *Ty) {
2593 Args.push_back(Entry);
2597 for (
const SDValue &
Op : Node->op_values()) {
2598 EVT ArgVT =
Op.getValueType();
2600 AddArgListEntry(
Op, ArgTy);
2607 if (ResNo == CallRetResNo)
2609 EVT ResVT = Node->getValueType(ResNo);
2611 ResultPtrs[ResNo] = ResultPtr;
2624 Type *RetType = CallRetResNo.has_value()
2625 ? Node->getValueType(*CallRetResNo).getTypeForEVT(Ctx)
2637 if (ResNo == CallRetResNo) {
2645 PtrInfo = ST->getPointerInfo();
2651 getLoad(Node->getValueType(ResNo),
DL, CallChain, ResultPtr, PtrInfo);
2652 Results.push_back(LoadResult);
2655 if (CallRetResNo && !Node->hasAnyUseOfValue(*CallRetResNo)) {
2677 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
2678 EVT VT = Node->getValueType(0);
2679 SDValue Tmp1 = Node->getOperand(0);
2680 SDValue Tmp2 = Node->getOperand(1);
2681 const MaybeAlign MA(Node->getConstantOperandVal(3));
2713 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
2714 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
2725 Align RedAlign = UseABI ?
DL.getABITypeAlign(Ty) :
DL.getPrefTypeAlign(Ty);
2735 if (RedAlign > StackAlign) {
2738 unsigned NumIntermediates;
2740 NumIntermediates, RegisterVT);
2742 Align RedAlign2 = UseABI ?
DL.getABITypeAlign(Ty) :
DL.getPrefTypeAlign(Ty);
2743 if (RedAlign2 < RedAlign)
2744 RedAlign = RedAlign2;
2749 RedAlign = std::min(RedAlign, StackAlign);
2764 false,
nullptr, StackID);
2779 "Don't know how to choose the maximum size when creating a stack "
2788 Align Align = std::max(
DL.getPrefTypeAlign(Ty1),
DL.getPrefTypeAlign(Ty2));
2796 auto GetUndefBooleanConstant = [&]() {
2835 return GetUndefBooleanConstant();
2840 return GetUndefBooleanConstant();
2849 const APInt &C2 = N2C->getAPIntValue();
2851 const APInt &C1 = N1C->getAPIntValue();
2858 auto *N1CFP = dyn_cast<ConstantFPSDNode>(N1);
2859 auto *N2CFP = dyn_cast<ConstantFPSDNode>(N2);
2861 if (N1CFP && N2CFP) {
2866 return GetUndefBooleanConstant();
2871 return GetUndefBooleanConstant();
2877 return GetUndefBooleanConstant();
2882 return GetUndefBooleanConstant();
2887 return GetUndefBooleanConstant();
2893 return GetUndefBooleanConstant();
2922 return getSetCC(dl, VT, N2, N1, SwappedCond);
2923 }
else if ((N2CFP && N2CFP->getValueAPF().isNaN()) ||
2938 return GetUndefBooleanConstant();
2949 unsigned BitWidth =
Op.getScalarValueSizeInBits();
2957 unsigned Depth)
const {
2965 const APInt &DemandedElts,
2966 unsigned Depth)
const {
2973 unsigned Depth )
const {
2979 unsigned Depth)
const {
2984 const APInt &DemandedElts,
2985 unsigned Depth)
const {
2986 EVT VT =
Op.getValueType();
2993 for (
unsigned EltIdx = 0; EltIdx != NumElts; ++EltIdx) {
2994 if (!DemandedElts[EltIdx])
2998 KnownZeroElements.
setBit(EltIdx);
3000 return KnownZeroElements;
3010 unsigned Opcode = V.getOpcode();
3011 EVT VT = V.getValueType();
3014 "scalable demanded bits are ignored");
3026 UndefElts = V.getOperand(0).isUndef()
3035 APInt UndefLHS, UndefRHS;
3040 UndefElts = UndefLHS | UndefRHS;
3070 for (
unsigned i = 0; i != NumElts; ++i) {
3076 if (!DemandedElts[i])
3078 if (Scl && Scl !=
Op)
3088 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(V)->getMask();
3089 for (
int i = 0; i != (int)NumElts; ++i) {
3095 if (!DemandedElts[i])
3097 if (M < (
int)NumElts)
3100 DemandedRHS.
setBit(M - NumElts);
3112 auto CheckSplatSrc = [&](
SDValue Src,
const APInt &SrcElts) {
3114 return (SrcElts.popcount() == 1) ||
3116 (SrcElts & SrcUndefs).
isZero());
3118 if (!DemandedLHS.
isZero())
3119 return CheckSplatSrc(V.getOperand(0), DemandedLHS);
3120 return CheckSplatSrc(V.getOperand(1), DemandedRHS);
3124 SDValue Src = V.getOperand(0);
3126 if (Src.getValueType().isScalableVector())
3129 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3142 SDValue Src = V.getOperand(0);
3144 if (Src.getValueType().isScalableVector())
3146 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3148 APInt DemandedSrcElts = DemandedElts.
zext(NumSrcElts);
3150 UndefElts = UndefSrcElts.
trunc(NumElts);
3156 SDValue Src = V.getOperand(0);
3157 EVT SrcVT = Src.getValueType();
3167 if ((
BitWidth % SrcBitWidth) == 0) {
3169 unsigned Scale =
BitWidth / SrcBitWidth;
3171 APInt ScaledDemandedElts =
3173 for (
unsigned I = 0;
I != Scale; ++
I) {
3177 SubDemandedElts &= ScaledDemandedElts;
3181 if (!SubUndefElts.
isZero())
3195 EVT VT = V.getValueType();
3205 (AllowUndefs || !UndefElts);
3211 EVT VT = V.getValueType();
3212 unsigned Opcode = V.getOpcode();
3233 SplatIdx = (UndefElts & DemandedElts).
countr_one();
3247 auto *SVN = cast<ShuffleVectorSDNode>(V);
3248 if (!SVN->isSplat())
3250 int Idx = SVN->getSplatIndex();
3251 int NumElts = V.getValueType().getVectorNumElements();
3252 SplatIdx =
Idx % NumElts;
3253 return V.getOperand(
Idx / NumElts);
3269 if (LegalSVT.
bitsLT(SVT))
3278std::optional<ConstantRange>
3280 unsigned Depth)
const {
3283 "Unknown shift node");
3285 unsigned BitWidth = V.getScalarValueSizeInBits();
3287 if (
auto *Cst = dyn_cast<ConstantSDNode>(V.getOperand(1))) {
3288 const APInt &ShAmt = Cst->getAPIntValue();
3290 return std::nullopt;
3294 if (
auto *BV = dyn_cast<BuildVectorSDNode>(V.getOperand(1))) {
3295 const APInt *MinAmt =
nullptr, *MaxAmt =
nullptr;
3296 for (
unsigned i = 0, e = BV->getNumOperands(); i != e; ++i) {
3297 if (!DemandedElts[i])
3299 auto *SA = dyn_cast<ConstantSDNode>(BV->getOperand(i));
3301 MinAmt = MaxAmt =
nullptr;
3304 const APInt &ShAmt = SA->getAPIntValue();
3306 return std::nullopt;
3307 if (!MinAmt || MinAmt->
ugt(ShAmt))
3309 if (!MaxAmt || MaxAmt->ult(ShAmt))
3312 assert(((!MinAmt && !MaxAmt) || (MinAmt && MaxAmt)) &&
3313 "Failed to find matching min/max shift amounts");
3314 if (MinAmt && MaxAmt)
3324 return std::nullopt;
3327std::optional<uint64_t>
3329 unsigned Depth)
const {
3332 "Unknown shift node");
3333 if (std::optional<ConstantRange> AmtRange =
3335 if (
const APInt *ShAmt = AmtRange->getSingleElement())
3336 return ShAmt->getZExtValue();
3337 return std::nullopt;
3340std::optional<uint64_t>
3342 EVT VT = V.getValueType();
3349std::optional<uint64_t>
3351 unsigned Depth)
const {
3354 "Unknown shift node");
3355 if (std::optional<ConstantRange> AmtRange =
3357 return AmtRange->getUnsignedMin().getZExtValue();
3358 return std::nullopt;
3361std::optional<uint64_t>
3363 EVT VT = V.getValueType();
3370std::optional<uint64_t>
3372 unsigned Depth)
const {
3375 "Unknown shift node");
3376 if (std::optional<ConstantRange> AmtRange =
3378 return AmtRange->getUnsignedMax().getZExtValue();
3379 return std::nullopt;
3382std::optional<uint64_t>
3384 EVT VT = V.getValueType();
3395 EVT VT =
Op.getValueType();
3410 unsigned Depth)
const {
3411 unsigned BitWidth =
Op.getScalarValueSizeInBits();
3415 if (
auto *
C = dyn_cast<ConstantSDNode>(
Op)) {
3419 if (
auto *
C = dyn_cast<ConstantFPSDNode>(
Op)) {
3429 assert((!
Op.getValueType().isFixedLengthVector() ||
3430 NumElts ==
Op.getValueType().getVectorNumElements()) &&
3431 "Unexpected vector size");
3436 unsigned Opcode =
Op.getOpcode();
3444 "Expected SPLAT_VECTOR implicit truncation");
3451 unsigned ScalarSize =
Op.getOperand(0).getScalarValueSizeInBits();
3453 "Expected SPLAT_VECTOR_PARTS scalars to cover element width");
3460 const APInt &Step =
Op.getConstantOperandAPInt(0);
3469 const APInt MinNumElts =
3475 .
umul_ov(MinNumElts, Overflow);
3479 const APInt MaxValue = (MaxNumElts - 1).
umul_ov(Step, Overflow);
3487 assert(!
Op.getValueType().isScalableVector());
3491 if (!DemandedElts[i])
3500 "Expected BUILD_VECTOR implicit truncation");
3513 assert(!
Op.getValueType().isScalableVector());
3516 APInt DemandedLHS, DemandedRHS;
3520 DemandedLHS, DemandedRHS))
3525 if (!!DemandedLHS) {
3533 if (!!DemandedRHS) {
3542 const APInt &Multiplier =
Op.getConstantOperandAPInt(0);
3547 if (
Op.getValueType().isScalableVector())
3551 EVT SubVectorVT =
Op.getOperand(0).getValueType();
3554 for (
unsigned i = 0; i != NumSubVectors; ++i) {
3556 DemandedElts.
extractBits(NumSubVectorElts, i * NumSubVectorElts);
3557 if (!!DemandedSub) {
3569 if (
Op.getValueType().isScalableVector())
3578 APInt DemandedSrcElts = DemandedElts;
3583 if (!!DemandedSubElts) {
3588 if (!!DemandedSrcElts) {
3598 if (
Op.getValueType().isScalableVector() || Src.getValueType().isScalableVector())
3601 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
3607 if (
Op.getValueType().isScalableVector())
3611 if (DemandedElts != 1)
3622 if (
Op.getValueType().isScalableVector())
3642 if ((
BitWidth % SubBitWidth) == 0) {
3649 unsigned SubScale =
BitWidth / SubBitWidth;
3650 APInt SubDemandedElts(NumElts * SubScale, 0);
3651 for (
unsigned i = 0; i != NumElts; ++i)
3652 if (DemandedElts[i])
3653 SubDemandedElts.
setBit(i * SubScale);
3655 for (
unsigned i = 0; i != SubScale; ++i) {
3658 unsigned Shifts = IsLE ? i : SubScale - 1 - i;
3659 Known.
insertBits(Known2, SubBitWidth * Shifts);
3664 if ((SubBitWidth %
BitWidth) == 0) {
3665 assert(
Op.getValueType().isVector() &&
"Expected bitcast to vector");
3670 unsigned SubScale = SubBitWidth /
BitWidth;
3671 APInt SubDemandedElts =
3676 for (
unsigned i = 0; i != NumElts; ++i)
3677 if (DemandedElts[i]) {
3678 unsigned Shifts = IsLE ? i : NumElts - 1 - i;
3709 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3713 Op.getOperand(0), DemandedElts,
false,
Depth + 1);
3719 if (
Op->getFlags().hasNoSignedWrap() &&
3720 Op.getOperand(0) ==
Op.getOperand(1) &&
3747 unsigned SignBits1 =
3751 unsigned SignBits0 =
3757 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3760 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3761 if (
Op.getResNo() == 0)
3768 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3771 bool SelfMultiply =
Op.getOperand(0) ==
Op.getOperand(1);
3772 if (
Op.getResNo() == 0)
3825 if (
Op.getResNo() != 1)
3840 unsigned OpNo =
Op->isStrictFPOpcode() ? 1 : 0;
3852 bool NUW =
Op->getFlags().hasNoUnsignedWrap();
3853 bool NSW =
Op->getFlags().hasNoSignedWrap();
3860 if (std::optional<uint64_t> ShMinAmt =
3869 Op->getFlags().hasExact());
3872 if (std::optional<uint64_t> ShMinAmt =
3880 Op->getFlags().hasExact());
3885 unsigned Amt =
C->getAPIntValue().urem(
BitWidth);
3891 DemandedElts,
Depth + 1);
3916 assert((
Op.getResNo() == 0 ||
Op.getResNo() == 1) &&
"Unknown result");
3919 unsigned LoBits =
Op.getOperand(0).getScalarValueSizeInBits();
3920 unsigned HiBits =
Op.getOperand(1).getScalarValueSizeInBits();
3923 Known = Known2.
concat(Known);
3937 if (
Op.getResNo() == 0)
3945 EVT EVT = cast<VTSDNode>(
Op.getOperand(1))->getVT();
3983 ? cast<MaskedGatherSDNode>(
Op)->getExtensionType()
3984 : cast<MaskedLoadSDNode>(
Op)->getExtensionType();
3986 EVT MemVT = cast<MemSDNode>(
Op)->getMemoryVT();
3999 !
Op.getValueType().isScalableVector()) {
4013 for (
unsigned i = 0; i != NumElts; ++i) {
4014 if (!DemandedElts[i])
4017 if (
auto *CInt = dyn_cast<ConstantInt>(Elt)) {
4023 if (
auto *CFP = dyn_cast<ConstantFP>(Elt)) {
4024 APInt Value = CFP->getValueAPF().bitcastToAPInt();
4035 if (
auto *CInt = dyn_cast<ConstantInt>(Cst)) {
4037 }
else if (
auto *CFP = dyn_cast<ConstantFP>(Cst)) {
4043 }
else if (
Op.getResNo() == 0) {
4044 KnownBits Known0(!LD->getMemoryVT().isScalableVT()
4045 ? LD->getMemoryVT().getFixedSizeInBits()
4047 EVT VT =
Op.getValueType();
4054 if (
const MDNode *MD = LD->getRanges()) {
4065 if (LD->getMemoryVT().isVector())
4066 Known0 = Known0.
trunc(LD->getMemoryVT().getScalarSizeInBits());
4083 if (
Op.getValueType().isScalableVector())
4085 EVT InVT =
Op.getOperand(0).getValueType();
4097 if (
Op.getValueType().isScalableVector())
4099 EVT InVT =
Op.getOperand(0).getValueType();
4115 if (
Op.getValueType().isScalableVector())
4117 EVT InVT =
Op.getOperand(0).getValueType();
4134 EVT VT = cast<VTSDNode>(
Op.getOperand(1))->getVT();
4137 Known.
Zero |= (~InMask);
4138 Known.
One &= (~Known.Zero);
4142 unsigned LogOfAlign =
Log2(cast<AssertAlignSDNode>(
Op)->
getAlign());
4162 Op.getOpcode() ==
ISD::ADD, Flags.hasNoSignedWrap(),
4163 Flags.hasNoUnsignedWrap(), Known, Known2);
4170 if (
Op.getResNo() == 1) {
4181 "We only compute knownbits for the difference here.");
4188 Borrow = Borrow.
trunc(1);
4202 if (
Op.getResNo() == 1) {
4213 assert(
Op.getResNo() == 0 &&
"We only compute knownbits for the sum here.");
4223 Carry = Carry.
trunc(1);
4259 const unsigned Index =
Op.getConstantOperandVal(1);
4260 const unsigned EltBitWidth =
Op.getValueSizeInBits();
4267 Known = Known.
trunc(EltBitWidth);
4283 Known = Known.
trunc(EltBitWidth);
4288 auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
4289 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
4299 if (
Op.getValueType().isScalableVector())
4308 bool DemandedVal =
true;
4309 APInt DemandedVecElts = DemandedElts;
4310 auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
4311 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
4312 unsigned EltIdx = CEltNo->getZExtValue();
4313 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) {
4429 EVT VT = cast<VTSDNode>(
Op.getOperand(1))->getVT();
4434 if (
Op.getResNo() == 1) {
4461 cast<AtomicSDNode>(
Op)->getMemoryVT().getScalarSizeInBits();
4463 if (
Op.getResNo() == 0) {
4487 if (
Op.getValueType().isScalableVector())
4633 return C->getAPIntValue().zextOrTrunc(
BitWidth).isPowerOf2();
4641 if (
C &&
C->getAPIntValue() == 1)
4651 if (
C &&
C->getAPIntValue().isSignMask())
4663 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(E))
4664 return C->getAPIntValue().zextOrTrunc(BitWidth).isPowerOf2();
4672 if (
C->getAPIntValue().zextOrTrunc(
BitWidth).isPowerOf2())
4710 return C1->getValueAPF().getExactLog2Abs() >= 0;
4719 EVT VT =
Op.getValueType();
4731 unsigned Depth)
const {
4732 EVT VT =
Op.getValueType();
4737 unsigned FirstAnswer = 1;
4739 if (
auto *
C = dyn_cast<ConstantSDNode>(
Op)) {
4740 const APInt &Val =
C->getAPIntValue();
4750 unsigned Opcode =
Op.getOpcode();
4754 Tmp = cast<VTSDNode>(
Op.getOperand(1))->getVT().getSizeInBits();
4755 return VTBits-Tmp+1;
4757 Tmp = cast<VTSDNode>(
Op.getOperand(1))->getVT().getSizeInBits();
4764 unsigned NumSrcBits =
Op.getOperand(0).getValueSizeInBits();
4766 if (NumSrcSignBits > (NumSrcBits - VTBits))
4767 return NumSrcSignBits - (NumSrcBits - VTBits);
4774 if (!DemandedElts[i])
4781 APInt T =
C->getAPIntValue().trunc(VTBits);
4782 Tmp2 =
T.getNumSignBits();
4786 if (
SrcOp.getValueSizeInBits() != VTBits) {
4788 "Expected BUILD_VECTOR implicit truncation");
4789 unsigned ExtraBits =
SrcOp.getValueSizeInBits() - VTBits;
4790 Tmp2 = (Tmp2 > ExtraBits ? Tmp2 - ExtraBits : 1);
4793 Tmp = std::min(Tmp, Tmp2);
4800 APInt DemandedLHS, DemandedRHS;
4804 DemandedLHS, DemandedRHS))
4807 Tmp = std::numeric_limits<unsigned>::max();
4810 if (!!DemandedRHS) {
4812 Tmp = std::min(Tmp, Tmp2);
4817 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
4833 if (VTBits == SrcBits)
4839 if ((SrcBits % VTBits) == 0) {
4842 unsigned Scale = SrcBits / VTBits;
4843 APInt SrcDemandedElts =
4853 for (
unsigned i = 0; i != NumElts; ++i)
4854 if (DemandedElts[i]) {
4855 unsigned SubOffset = i % Scale;
4856 SubOffset = (IsLE ? ((Scale - 1) - SubOffset) : SubOffset);
4857 SubOffset = SubOffset * VTBits;
4858 if (Tmp <= SubOffset)
4860 Tmp2 = std::min(Tmp2, Tmp - SubOffset);
4869 Tmp = cast<VTSDNode>(
Op.getOperand(1))->getVT().getScalarSizeInBits();
4870 return VTBits - Tmp + 1;
4872 Tmp = VTBits -
Op.getOperand(0).getScalarValueSizeInBits();
4876 Tmp = cast<VTSDNode>(
Op.getOperand(1))->getVT().getScalarSizeInBits();
4879 return std::max(Tmp, Tmp2);
4884 EVT SrcVT = Src.getValueType();
4892 if (std::optional<uint64_t> ShAmt =
4894 Tmp = std::min<uint64_t>(Tmp + *ShAmt, VTBits);
4897 if (std::optional<ConstantRange> ShAmtRange =
4899 uint64_t MaxShAmt = ShAmtRange->getUnsignedMax().getZExtValue();
4900 uint64_t MinShAmt = ShAmtRange->getUnsignedMin().getZExtValue();
4908 EVT ExtVT = Ext.getValueType();
4909 SDValue Extendee = Ext.getOperand(0);
4913 if (SizeDifference <= MinShAmt) {
4914 Tmp = SizeDifference +
4917 return Tmp - MaxShAmt;
4923 return Tmp - MaxShAmt;
4933 FirstAnswer = std::min(Tmp, Tmp2);
4943 if (Tmp == 1)
return 1;
4945 return std::min(Tmp, Tmp2);
4948 if (Tmp == 1)
return 1;
4950 return std::min(Tmp, Tmp2);
4962 if (CstLow && CstHigh) {
4967 Tmp2 = CstHigh->getAPIntValue().getNumSignBits();
4968 return std::min(Tmp, Tmp2);
4977 return std::min(Tmp, Tmp2);
4985 return std::min(Tmp, Tmp2);
4989 if (
Op.getResNo() == 0 &&
Op.getOperand(0) ==
Op.getOperand(1))
5000 if (
Op.getResNo() != 1)
5014 unsigned OpNo =
Op->isStrictFPOpcode() ? 1 : 0;
5031 unsigned RotAmt =
C->getAPIntValue().urem(VTBits);
5035 RotAmt = (VTBits - RotAmt) % VTBits;
5039 if (Tmp > (RotAmt + 1))
return (Tmp - RotAmt);
5047 if (Tmp == 1)
return 1;
5052 if (CRHS->isAllOnes()) {
5058 if ((Known.
Zero | 1).isAllOnes())
5068 if (Tmp2 == 1)
return 1;
5069 return std::min(Tmp, Tmp2) - 1;
5072 if (Tmp2 == 1)
return 1;
5077 if (CLHS->isZero()) {
5082 if ((Known.
Zero | 1).isAllOnes())
5096 if (Tmp == 1)
return 1;
5097 return std::min(Tmp, Tmp2) - 1;
5101 if (SignBitsOp0 == 1)
5104 if (SignBitsOp1 == 1)
5106 unsigned OutValidBits =
5107 (VTBits - SignBitsOp0 + 1) + (VTBits - SignBitsOp1 + 1);
5108 return OutValidBits > VTBits ? 1 : VTBits - OutValidBits + 1;
5116 return std::min(Tmp, Tmp2);
5125 unsigned NumSrcBits =
Op.getOperand(0).getScalarValueSizeInBits();
5127 if (NumSrcSignBits > (NumSrcBits - VTBits))
5128 return NumSrcSignBits - (NumSrcBits - VTBits);
5135 const int BitWidth =
Op.getValueSizeInBits();
5136 const int Items =
Op.getOperand(0).getValueSizeInBits() /
BitWidth;
5140 const int rIndex = Items - 1 -
Op.getConstantOperandVal(1);
5155 bool DemandedVal =
true;
5156 APInt DemandedVecElts = DemandedElts;
5157 auto *CEltNo = dyn_cast<ConstantSDNode>(EltNo);
5158 if (CEltNo && CEltNo->getAPIntValue().ult(NumElts)) {
5159 unsigned EltIdx = CEltNo->getZExtValue();
5160 DemandedVal = !!DemandedElts[EltIdx];
5163 Tmp = std::numeric_limits<unsigned>::max();
5169 Tmp = std::min(Tmp, Tmp2);
5171 if (!!DemandedVecElts) {
5173 Tmp = std::min(Tmp, Tmp2);
5175 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5186 const unsigned BitWidth =
Op.getValueSizeInBits();
5187 const unsigned EltBitWidth =
Op.getOperand(0).getScalarValueSizeInBits();
5199 auto *ConstEltNo = dyn_cast<ConstantSDNode>(EltNo);
5200 if (ConstEltNo && ConstEltNo->getAPIntValue().ult(NumSrcElts))
5210 if (Src.getValueType().isScalableVector())
5213 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
5222 Tmp = std::numeric_limits<unsigned>::max();
5223 EVT SubVectorVT =
Op.getOperand(0).getValueType();
5226 for (
unsigned i = 0; (i < NumSubVectors) && (Tmp > 1); ++i) {
5228 DemandedElts.
extractBits(NumSubVectorElts, i * NumSubVectorElts);
5232 Tmp = std::min(Tmp, Tmp2);
5234 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5247 APInt DemandedSrcElts = DemandedElts;
5250 Tmp = std::numeric_limits<unsigned>::max();
5251 if (!!DemandedSubElts) {
5256 if (!!DemandedSrcElts) {
5258 Tmp = std::min(Tmp, Tmp2);
5260 assert(Tmp <= VTBits &&
"Failed to determine minimum sign bits");
5265 if (
const MDNode *Ranges = LD->getRanges()) {
5266 if (DemandedElts != 1)
5271 switch (LD->getExtensionType()) {
5306 Tmp = cast<AtomicSDNode>(
Op)->getMemoryVT().getScalarSizeInBits();
5308 if (
Op.getResNo() == 0) {
5312 return VTBits - Tmp + 1;
5314 return VTBits - Tmp;
5318 return VTBits - Tmp + 1;
5320 return VTBits - Tmp;
5328 if (
Op.getResNo() == 0) {
5331 unsigned ExtType = LD->getExtensionType();
5335 Tmp = LD->getMemoryVT().getScalarSizeInBits();
5336 return VTBits - Tmp + 1;
5338 Tmp = LD->getMemoryVT().getScalarSizeInBits();
5339 return VTBits - Tmp;
5344 Type *CstTy = Cst->getType();
5349 for (
unsigned i = 0; i != NumElts; ++i) {
5350 if (!DemandedElts[i])
5353 if (
auto *CInt = dyn_cast<ConstantInt>(Elt)) {
5355 Tmp = std::min(Tmp,
Value.getNumSignBits());
5358 if (
auto *CFP = dyn_cast<ConstantFP>(Elt)) {
5359 APInt Value = CFP->getValueAPF().bitcastToAPInt();
5360 Tmp = std::min(Tmp,
Value.getNumSignBits());
5386 FirstAnswer = std::max(FirstAnswer, NumBits);
5397 unsigned Depth)
const {
5399 return Op.getScalarValueSizeInBits() - SignBits + 1;
5403 const APInt &DemandedElts,
5404 unsigned Depth)
const {
5406 return Op.getScalarValueSizeInBits() - SignBits + 1;
5410 unsigned Depth)
const {
5415 EVT VT =
Op.getValueType();
5423 const APInt &DemandedElts,
5425 unsigned Depth)
const {
5426 unsigned Opcode =
Op.getOpcode();
5453 if (!DemandedElts[i])
5466 APInt DemandedLHS, DemandedRHS;
5467 auto *SVN = cast<ShuffleVectorSDNode>(
Op);
5469 DemandedElts, DemandedLHS, DemandedRHS,
5472 if (!DemandedLHS.
isZero() &&
5476 if (!DemandedRHS.
isZero() &&
5504 return isGuaranteedNotToBeUndefOrPoison(V, PoisonOnly, Depth + 1);
5510 unsigned Depth)
const {
5511 EVT VT =
Op.getValueType();
5521 unsigned Depth)
const {
5522 if (ConsiderFlags &&
Op->hasPoisonGeneratingFlags())
5525 unsigned Opcode =
Op.getOpcode();
5564 if (
Op.getOperand(0).getValueType().isInteger())
5571 unsigned CCOp = Opcode ==
ISD::SETCC ? 2 : 4;
5572 ISD::CondCode CCCode = cast<CondCodeSDNode>(
Op.getOperand(CCOp))->get();
5573 if (((
unsigned)CCCode & 0x10U))
5604 EVT VecVT =
Op.getOperand(0).getValueType();
5616 auto *SVN = cast<ShuffleVectorSDNode>(
Op);
5618 if (Elt < 0 && DemandedElts[
Idx])
5637 unsigned Opcode =
Op.getOpcode();
5639 return Op->getFlags().hasDisjoint() ||
5661 return !
C->getValueAPF().isNaN() ||
5662 (SNaN && !
C->getValueAPF().isSignaling());
5665 unsigned Opcode =
Op.getOpcode();
5785 assert(
Op.getValueType().isFloatingPoint() &&
5786 "Floating point type expected");
5797 assert(!
Op.getValueType().isFloatingPoint() &&
5798 "Floating point types unsupported - use isKnownNeverZeroFloat");
5807 switch (
Op.getOpcode()) {
5821 if (
Op->getFlags().hasNoSignedWrap() ||
Op->getFlags().hasNoUnsignedWrap())
5825 if (ValKnown.
One[0])
5885 if (
Op->getFlags().hasExact())
5901 if (
Op->getFlags().hasExact())
5906 if (
Op->getFlags().hasNoUnsignedWrap())
5917 std::optional<bool> ne =
5924 if (
Op->getFlags().hasNoSignedWrap() ||
Op->getFlags().hasNoUnsignedWrap())
5935 const APInt &Multiplier =
Op.getConstantOperandAPInt(0);
5949 return !C1->isNegative();
5956 if (
A ==
B)
return true;
5961 if (CA->isZero() && CB->isZero())
return true;
5970 return V.getOperand(0);
5977 SDValue ExtArg = V.getOperand(0);
5996 NotOperand = NotOperand->getOperand(0);
5998 if (
Other == NotOperand)
6001 return NotOperand ==
Other->getOperand(0) ||
6002 NotOperand ==
Other->getOperand(1);
6008 A =
A->getOperand(0);
6011 B =
B->getOperand(0);
6014 return MatchNoCommonBitsPattern(
A->getOperand(0),
A->getOperand(1),
B) ||
6015 MatchNoCommonBitsPattern(
A->getOperand(1),
A->getOperand(0),
B);
6021 assert(
A.getValueType() ==
B.getValueType() &&
6022 "Values must have the same type");
6032 if (cast<ConstantSDNode>(Step)->
isZero())
6041 int NumOps = Ops.
size();
6042 assert(NumOps != 0 &&
"Can't build an empty vector!");
6044 "BUILD_VECTOR cannot be used with scalable types");
6046 "Incorrect element count in BUILD_VECTOR!");
6054 bool IsIdentity =
true;
6055 for (
int i = 0; i != NumOps; ++i) {
6058 (IdentitySrc && Ops[i].getOperand(0) != IdentitySrc) ||
6059 !isa<ConstantSDNode>(Ops[i].getOperand(1)) ||
6060 Ops[i].getConstantOperandAPInt(1) != i) {
6064 IdentitySrc = Ops[i].getOperand(0);
6077 assert(!Ops.
empty() &&
"Can't concatenate an empty list of vectors!");
6080 return Ops[0].getValueType() ==
Op.getValueType();
6082 "Concatenation of vectors with inconsistent value types!");
6085 "Incorrect element count in vector concatenation!");
6087 if (Ops.
size() == 1)
6098 bool IsIdentity =
true;
6099 for (
unsigned i = 0, e = Ops.
size(); i != e; ++i) {
6101 unsigned IdentityIndex = i *
Op.getValueType().getVectorMinNumElements();
6103 Op.getOperand(0).getValueType() != VT ||
6104 (IdentitySrc &&
Op.getOperand(0) != IdentitySrc) ||
6105 Op.getConstantOperandVal(1) != IdentityIndex) {
6109 assert((!IdentitySrc || IdentitySrc ==
Op.getOperand(0)) &&
6110 "Unexpected identity source vector for concat of extracts");
6111 IdentitySrc =
Op.getOperand(0);
6114 assert(IdentitySrc &&
"Failed to set source vector of extracts");
6129 EVT OpVT =
Op.getValueType();
6141 SVT = (SVT.
bitsLT(
Op.getValueType()) ?
Op.getValueType() : SVT);
6165 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
6168 auto *
N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
6169 CSEMap.InsertNode(
N, IP);
6182 return getNode(Opcode,
DL, VT, N1, Flags);
6233 "STEP_VECTOR can only be used with scalable types");
6236 "Unexpected step operand");
6258 "Invalid FP cast!");
6262 "Vector element count mismatch!");
6280 "Invalid SIGN_EXTEND!");
6282 "SIGN_EXTEND result type type should be vector iff the operand "
6287 "Vector element count mismatch!");
6301 "Invalid ZERO_EXTEND!");
6303 "ZERO_EXTEND result type type should be vector iff the operand "
6308 "Vector element count mismatch!");
6339 "Invalid ANY_EXTEND!");
6341 "ANY_EXTEND result type type should be vector iff the operand "
6346 "Vector element count mismatch!");
6371 "Invalid TRUNCATE!");
6373 "TRUNCATE result type type should be vector iff the operand "
6378 "Vector element count mismatch!");
6401 assert(VT.
isVector() &&
"This DAG node is restricted to vector types.");
6403 "The input must be the same size or smaller than the result.");
6406 "The destination vector type must have fewer lanes than the input.");
6416 "BSWAP types must be a multiple of 16 bits!");
6430 "Cannot BITCAST between types of different sizes!");
6443 "Illegal SCALAR_TO_VECTOR node!");
6500 "Wrong operand type!");
6507 if (VT != MVT::Glue) {
6511 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
6512 E->intersectFlagsWith(Flags);
6516 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
6518 createOperands(
N, Ops);
6519 CSEMap.InsertNode(
N, IP);
6521 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
6522 createOperands(
N, Ops);
6556 if (!C2.getBoolValue())
6560 if (!C2.getBoolValue())
6564 if (!C2.getBoolValue())
6568 if (!C2.getBoolValue())
6588 return std::nullopt;
6593 bool IsUndef1,
const APInt &C2,
6595 if (!(IsUndef1 || IsUndef2))
6603 return std::nullopt;
6613 auto *C2 = dyn_cast<ConstantSDNode>(N2);
6616 int64_t
Offset = C2->getSExtValue();
6634 assert(Ops.
size() == 2 &&
"Div/rem should have 2 operands");
6641 [](
SDValue V) { return V.isUndef() ||
6642 isNullConstant(V); });
6663 unsigned NumOps = Ops.
size();
6679 if (
auto *
C = dyn_cast<ConstantSDNode>(N1)) {
6680 const APInt &Val =
C->getAPIntValue();
6684 C->isTargetOpcode(),
C->isOpaque());
6691 C->isTargetOpcode(),
C->isOpaque());
6696 C->isTargetOpcode(),
C->isOpaque());
6698 C->isTargetOpcode(),
C->isOpaque());
6744 if (VT == MVT::f16 &&
C->getValueType(0) == MVT::i16)
6746 if (VT == MVT::f32 &&
C->getValueType(0) == MVT::i32)
6748 if (VT == MVT::f64 &&
C->getValueType(0) == MVT::i64)
6750 if (VT == MVT::f128 &&
C->getValueType(0) == MVT::i128)
6757 if (
auto *
C = dyn_cast<ConstantFPSDNode>(N1)) {
6811 return getConstant(V.bitcastToAPInt().getZExtValue(),
DL, VT);
6814 if (VT == MVT::i16 &&
C->getValueType(0) == MVT::f16)
6817 if (VT == MVT::i16 &&
C->getValueType(0) == MVT::bf16)
6820 if (VT == MVT::i32 &&
C->getValueType(0) == MVT::f32)
6823 if (VT == MVT::i64 &&
C->getValueType(0) == MVT::f64)
6824 return getConstant(V.bitcastToAPInt().getZExtValue(),
DL, VT);
6839 if (
auto *C1 = dyn_cast<ConstantSDNode>(Ops[0])) {
6840 if (
auto *C2 = dyn_cast<ConstantSDNode>(Ops[1])) {
6841 if (C1->isOpaque() || C2->isOpaque())
6844 std::optional<APInt> FoldAttempt =
6845 FoldValue(Opcode, C1->getAPIntValue(), C2->getAPIntValue());
6851 "Can't fold vectors ops with scalar operands");
6865 EVT EVT = cast<VTSDNode>(Ops[1])->getVT();
6874 if (
auto *C1 = dyn_cast<ConstantSDNode>(Ops[0])) {
6875 const APInt &Val = C1->getAPIntValue();
6876 return SignExtendInReg(Val, VT);
6881 llvm::EVT OpVT = Ops[0].getOperand(0).getValueType();
6888 const APInt &Val = cast<ConstantSDNode>(
Op)->getAPIntValue();
6889 ScalarOps.
push_back(SignExtendInReg(Val, OpVT));
6895 isa<ConstantSDNode>(Ops[0].getOperand(0)))
6897 SignExtendInReg(Ops[0].getConstantOperandAPInt(0),
6910 Ops[0].getValueType() == VT && Ops[1].getValueType() == VT &&
6915 auto *BV1 = dyn_cast<BuildVectorSDNode>(N1);
6916 auto *BV2 = dyn_cast<BuildVectorSDNode>(N2);
6923 if (BV1->getConstantRawBits(IsLE, EltBits, RawBits1, UndefElts1) &&
6924 BV2->getConstantRawBits(IsLE, EltBits, RawBits2, UndefElts2)) {
6928 Opcode, RawBits1[
I], UndefElts1[
I], RawBits2[
I], UndefElts2[
I]);
6939 BVEltVT = BV1->getOperand(0).getValueType();
6942 BVEltVT = BV2->getOperand(0).getValueType();
6948 DstBits, RawBits, DstUndefs,
6951 for (
unsigned I = 0, E = DstBits.
size();
I != E; ++
I) {
6969 ? Ops[0].getConstantOperandAPInt(0) * RHSVal
6970 : Ops[0].getConstantOperandAPInt(0) << RHSVal;
6975 auto IsScalarOrSameVectorSize = [NumElts](
const SDValue &
Op) {
6976 return !
Op.getValueType().isVector() ||
6977 Op.getValueType().getVectorElementCount() == NumElts;
6980 auto IsBuildVectorSplatVectorOrUndef = [](
const SDValue &
Op) {
6989 if (!
llvm::all_of(Ops, IsBuildVectorSplatVectorOrUndef) ||
7018 for (
unsigned I = 0;
I != NumVectorElts;
I++) {
7021 EVT InSVT =
Op.getValueType().getScalarType();
7043 !isa<ConstantSDNode>(ScalarOp) &&
7064 if (LegalSVT != SVT)
7065 ScalarResult =
getNode(ExtendCode,
DL, LegalSVT, ScalarResult);
7079 if (Ops.
size() != 2)
7090 if (N1CFP && N2CFP) {
7141 if (N1C && N1C->getValueAPF().isNegZero() && N2.
isUndef())
7170 ID.AddInteger(
A.value());
7173 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP))
7177 newSDNode<AssertAlignSDNode>(
DL.getIROrder(),
DL.getDebugLoc(), VTs,
A);
7178 createOperands(
N, {Val});
7180 CSEMap.InsertNode(
N, IP);
7193 return getNode(Opcode,
DL, VT, N1, N2, Flags);
7207 if ((N1C && !N2C) || (N1CFP && !N2CFP))
7221 "Operand is DELETED_NODE!");
7225 auto *N1C = dyn_cast<ConstantSDNode>(N1);
7226 auto *N2C = dyn_cast<ConstantSDNode>(N2);
7237 N2.
getValueType() == MVT::Other &&
"Invalid token factor!");
7241 if (N1 == N2)
return N1;
7257 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7259 N1.
getValueType() == VT &&
"Binary operator types must match!");
7262 if (N2CV && N2CV->
isZero())
7271 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7273 N1.
getValueType() == VT &&
"Binary operator types must match!");
7276 if (N2CV && N2CV->
isZero())
7283 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7285 N1.
getValueType() == VT &&
"Binary operator types must match!");
7290 const APInt &N2CImm = N2C->getAPIntValue();
7304 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7306 N1.
getValueType() == VT &&
"Binary operator types must match!");
7319 "Types of operands of UCMP/SCMP must match");
7321 "Operands and return type of must both be scalars or vectors");
7325 "Result and operands must have the same number of elements");
7331 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7333 N1.
getValueType() == VT &&
"Binary operator types must match!");
7337 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7339 N1.
getValueType() == VT &&
"Binary operator types must match!");
7345 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7347 N1.
getValueType() == VT &&
"Binary operator types must match!");
7353 assert(VT.
isInteger() &&
"This operator does not apply to FP types!");
7355 N1.
getValueType() == VT &&
"Binary operator types must match!");
7366 N1.
getValueType() == VT &&
"Binary operator types must match!");
7374 "Invalid FCOPYSIGN!");
7379 const APInt &ShiftImm = N2C->getAPIntValue();
7391 "Shift operators return type must be the same as their first arg");
7393 "Shifts only work on integers");
7395 "Vector shift amounts must be in the same as their first arg");
7402 "Invalid use of small shift amount with oversized value!");
7409 if (N2CV && N2CV->
isZero())
7415 (N2C->getZExtValue() == 0 || N2C->getZExtValue() == 1) &&
7421 EVT EVT = cast<VTSDNode>(N2)->getVT();
7424 "Cannot *_EXTEND_INREG FP types");
7426 "AssertSExt/AssertZExt type should be the vector element type "
7427 "rather than the vector type!");
7433 EVT EVT = cast<VTSDNode>(N2)->getVT();
7436 "Cannot *_EXTEND_INREG FP types");
7438 "SIGN_EXTEND_INREG type should be vector iff the operand "
7442 "Vector element counts must match in SIGN_EXTEND_INREG");
7444 if (
EVT == VT)
return N1;
7452 "FP_TO_*INT_SAT type should be vector iff the operand type is "
7456 "Vector element counts must match in FP_TO_*INT_SAT");
7457 assert(!cast<VTSDNode>(N2)->getVT().isVector() &&
7458 "Type to saturate to must be a scalar.");
7465 "The result of EXTRACT_VECTOR_ELT must be at least as wide as the \
7466 element type of the vector.");
7498 "BUILD_VECTOR used for scalable vectors");
7521 if (N1Op2C && N2C) {
7551 assert(N2C && (
unsigned)N2C->getZExtValue() < 2 &&
"Bad EXTRACT_ELEMENT!");
7555 "Wrong types for EXTRACT_ELEMENT!");
7566 unsigned Shift = ElementSize * N2C->getZExtValue();
7567 const APInt &Val = N1C->getAPIntValue();
7574 "Extract subvector VTs must be vectors!");
7576 "Extract subvector VTs must have the same element type!");
7578 "Cannot extract a scalable vector from a fixed length vector!");
7581 "Extract subvector must be from larger vector to smaller vector!");
7582 assert(N2C &&
"Extract subvector index must be a constant");
7586 "Extract subvector overflow!");
7587 assert(N2C->getAPIntValue().getBitWidth() ==
7589 "Constant index for EXTRACT_SUBVECTOR has an invalid size");
7604 return N1.
getOperand(N2C->getZExtValue() / Factor);
7672 if (VT != MVT::Glue) {
7676 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
7677 E->intersectFlagsWith(Flags);
7681 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7683 createOperands(
N, Ops);
7684 CSEMap.InsertNode(
N, IP);
7686 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7687 createOperands(
N, Ops);
7701 return getNode(Opcode,
DL, VT, N1, N2, N3, Flags);
7710 "Operand is DELETED_NODE!");
7721 if (N1CFP && N2CFP && N3CFP) {
7750 "SETCC operands must have the same type!");
7752 "SETCC type should be vector iff the operand type is vector!");
7755 "SETCC vector element counts must match!");
7775 if (cast<ConstantSDNode>(N3)->
isZero())
7805 "Dest and insert subvector source types must match!");
7807 "Insert subvector VTs must be vectors!");
7809 "Insert subvector VTs must have the same element type!");
7811 "Cannot insert a scalable vector into a fixed length vector!");
7814 "Insert subvector must be from smaller vector to larger vector!");
7815 assert(isa<ConstantSDNode>(N3) &&
7816 "Insert subvector index must be constant");
7820 "Insert subvector overflow!");
7823 "Constant index for INSERT_SUBVECTOR has an invalid size");
7841 case ISD::VP_TRUNCATE:
7842 case ISD::VP_SIGN_EXTEND:
7843 case ISD::VP_ZERO_EXTEND:
7852 assert(VT == VecVT &&
"Vector and result type don't match.");
7854 "All inputs must be vectors.");
7855 assert(VecVT == PassthruVT &&
"Vector and passthru types don't match.");
7857 "Vector and mask must have same number of elements.");
7870 if (VT != MVT::Glue) {
7874 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
7875 E->intersectFlagsWith(Flags);
7879 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7881 createOperands(
N, Ops);
7882 CSEMap.InsertNode(
N, IP);
7884 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
7885 createOperands(
N, Ops);
7897 SDValue Ops[] = { N1, N2, N3, N4 };
7898 return getNode(Opcode,
DL, VT, Ops, Flags);
7906 return getNode(Opcode,
DL, VT, N1, N2, N3, N4, Flags);
7912 SDValue Ops[] = { N1, N2, N3, N4, N5 };
7913 return getNode(Opcode,
DL, VT, Ops, Flags);
7922 return getNode(Opcode,
DL, VT, N1, N2, N3, N4, N5, Flags);
7939 if (FI->getIndex() < 0)
7954 assert(
C->getAPIntValue().getBitWidth() == 8);
7959 return DAG.
getConstant(Val, dl, VT,
false, IsOpaque);
7964 assert(
Value.getValueType() == MVT::i8 &&
"memset with non-byte fill value?");
7980 if (VT !=
Value.getValueType())
7993 if (Slice.
Array ==
nullptr) {
7996 if (VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128)
8011 unsigned NumVTBytes = NumVTBits / 8;
8012 unsigned NumBytes = std::min(NumVTBytes,
unsigned(Slice.
Length));
8014 APInt Val(NumVTBits, 0);
8016 for (
unsigned i = 0; i != NumBytes; ++i)
8019 for (
unsigned i = 0; i != NumBytes; ++i)
8020 Val |= (
uint64_t)(
unsigned char)Slice[i] << (NumVTBytes-i-1)*8;
8039 APInt(
Base.getValueSizeInBits().getFixedValue(),
8040 Offset.getKnownMinValue()));
8051 EVT BasePtrVT =
Ptr.getValueType();
8060 G = cast<GlobalAddressSDNode>(Src);
8061 else if (Src.getOpcode() ==
ISD::ADD &&
8064 G = cast<GlobalAddressSDNode>(Src.getOperand(0));
8065 SrcDelta = Src.getConstantOperandVal(1);
8071 SrcDelta +
G->getOffset());
8087 assert(OutLoadChains.
size() &&
"Missing loads in memcpy inlining");
8088 assert(OutStoreChains.
size() &&
"Missing stores in memcpy inlining");
8090 for (
unsigned i =
From; i < To; ++i) {
8092 GluedLoadChains.
push_back(OutLoadChains[i]);
8099 for (
unsigned i =
From; i < To; ++i) {
8100 StoreSDNode *ST = dyn_cast<StoreSDNode>(OutStoreChains[i]);
8102 ST->getBasePtr(), ST->getMemoryVT(),
8103 ST->getMemOperand());
8111 bool isVol,
bool AlwaysInline,
8127 std::vector<EVT> MemOps;
8128 bool DstAlignCanChange =
false;
8134 DstAlignCanChange =
true;
8136 if (!SrcAlign || Alignment > *SrcAlign)
8137 SrcAlign = Alignment;
8138 assert(SrcAlign &&
"SrcAlign must be set");
8142 bool isZeroConstant = CopyFromConstant && Slice.
Array ==
nullptr;
8144 const MemOp Op = isZeroConstant
8148 *SrcAlign, isVol, CopyFromConstant);
8154 if (DstAlignCanChange) {
8155 Type *Ty = MemOps[0].getTypeForEVT(
C);
8156 Align NewAlign =
DL.getABITypeAlign(Ty);
8162 if (!
TRI->hasStackRealignment(MF))
8164 NewAlign = std::min(NewAlign, *StackAlign);
8166 if (NewAlign > Alignment) {
8170 Alignment = NewAlign;
8178 const Value *SrcVal = dyn_cast_if_present<const Value *>(SrcPtrInfo.
V);
8188 unsigned NumMemOps = MemOps.
size();
8190 for (
unsigned i = 0; i != NumMemOps; ++i) {
8195 if (VTSize >
Size) {
8198 assert(i == NumMemOps-1 && i != 0);
8199 SrcOff -= VTSize -
Size;
8200 DstOff -= VTSize -
Size;
8203 if (CopyFromConstant &&
8211 if (SrcOff < Slice.
Length) {
8213 SubSlice.
move(SrcOff);
8216 SubSlice.
Array =
nullptr;
8218 SubSlice.
Length = VTSize;
8221 if (
Value.getNode()) {
8225 DstPtrInfo.
getWithOffset(DstOff), Alignment, MMOFlags, NewAAInfo);
8230 if (!Store.getNode()) {
8239 bool isDereferenceable =
8242 if (isDereferenceable)
8257 DstPtrInfo.
getWithOffset(DstOff), VT, Alignment, MMOFlags, NewAAInfo);
8267 unsigned NumLdStInMemcpy = OutStoreChains.
size();
8269 if (NumLdStInMemcpy) {
8275 for (
unsigned i = 0; i < NumLdStInMemcpy; ++i) {
8281 if (NumLdStInMemcpy <= GluedLdStLimit) {
8283 NumLdStInMemcpy, OutLoadChains,
8286 unsigned NumberLdChain = NumLdStInMemcpy / GluedLdStLimit;
8287 unsigned RemainingLdStInMemcpy = NumLdStInMemcpy % GluedLdStLimit;
8288 unsigned GlueIter = 0;
8290 for (
unsigned cnt = 0; cnt < NumberLdChain; ++cnt) {
8291 unsigned IndexFrom = NumLdStInMemcpy - GlueIter - GluedLdStLimit;
8292 unsigned IndexTo = NumLdStInMemcpy - GlueIter;
8295 OutLoadChains, OutStoreChains);
8296 GlueIter += GluedLdStLimit;
8300 if (RemainingLdStInMemcpy) {
8302 RemainingLdStInMemcpy, OutLoadChains,
8314 bool isVol,
bool AlwaysInline,
8328 std::vector<EVT> MemOps;
8329 bool DstAlignCanChange =
false;
8335 DstAlignCanChange =
true;
8337 if (!SrcAlign || Alignment > *SrcAlign)
8338 SrcAlign = Alignment;
8339 assert(SrcAlign &&
"SrcAlign must be set");
8349 if (DstAlignCanChange) {
8350 Type *Ty = MemOps[0].getTypeForEVT(
C);
8351 Align NewAlign =
DL.getABITypeAlign(Ty);
8357 if (!
TRI->hasStackRealignment(MF))
8359 NewAlign = std::min(NewAlign, *StackAlign);
8361 if (NewAlign > Alignment) {
8365 Alignment = NewAlign;
8379 unsigned NumMemOps = MemOps.
size();
8380 for (
unsigned i = 0; i < NumMemOps; i++) {
8385 bool isDereferenceable =
8388 if (isDereferenceable)
8394 SrcPtrInfo.
getWithOffset(SrcOff), *SrcAlign, SrcMMOFlags, NewAAInfo);
8401 for (
unsigned i = 0; i < NumMemOps; i++) {
8407 Chain, dl, LoadValues[i],
8409 DstPtrInfo.
getWithOffset(DstOff), Alignment, MMOFlags, NewAAInfo);
8449 std::vector<EVT> MemOps;
8450 bool DstAlignCanChange =
false;
8456 DstAlignCanChange =
true;
8462 MemOp::Set(
Size, DstAlignCanChange, Alignment, IsZeroVal, isVol),
8466 if (DstAlignCanChange) {
8469 Align NewAlign =
DL.getABITypeAlign(Ty);
8475 if (!
TRI->hasStackRealignment(MF))
8477 NewAlign = std::min(NewAlign, *StackAlign);
8479 if (NewAlign > Alignment) {
8483 Alignment = NewAlign;
8489 unsigned NumMemOps = MemOps.size();
8492 EVT LargestVT = MemOps[0];
8493 for (
unsigned i = 1; i < NumMemOps; i++)
8494 if (MemOps[i].bitsGT(LargestVT))
8495 LargestVT = MemOps[i];
8502 for (
unsigned i = 0; i < NumMemOps; i++) {
8505 if (VTSize >
Size) {
8508 assert(i == NumMemOps-1 && i != 0);
8509 DstOff -= VTSize -
Size;
8516 if (VT.
bitsLT(LargestVT)) {
8537 assert(
Value.getValueType() == VT &&
"Value with wrong type.");
8564 Align Alignment,
bool isVol,
bool AlwaysInline,
const CallInst *CI,
8572 if (ConstantSize->
isZero())
8576 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
8577 isVol,
false, DstPtrInfo, SrcPtrInfo, AAInfo, AA);
8578 if (Result.getNode())
8586 *
this, dl, Chain, Dst, Src,
Size, Alignment, isVol, AlwaysInline,
8587 DstPtrInfo, SrcPtrInfo);
8588 if (Result.getNode())
8595 assert(ConstantSize &&
"AlwaysInline requires a constant size!");
8597 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
8598 isVol,
true, DstPtrInfo, SrcPtrInfo, AAInfo, AA);
8614 Entry.Node = Dst; Args.push_back(Entry);
8615 Entry.Node = Src; Args.push_back(Entry);
8618 Entry.Node =
Size; Args.push_back(Entry);
8621 bool IsTailCall =
false;
8622 if (OverrideTailCall.has_value()) {
8623 IsTailCall = *OverrideTailCall;
8625 bool LowersToMemcpy =
8630 ReturnsFirstArg && LowersToMemcpy);
8636 Dst.getValueType().getTypeForEVT(*
getContext()),
8643 std::pair<SDValue,SDValue> CallResult = TLI->
LowerCallTo(CLI);
8644 return CallResult.second;
8649 Type *SizeTy,
unsigned ElemSz,
8658 Args.push_back(Entry);
8661 Args.push_back(Entry);
8665 Args.push_back(Entry);
8669 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
8683 std::pair<SDValue, SDValue> CallResult = TLI->
LowerCallTo(CLI);
8684 return CallResult.second;
8690 std::optional<bool> OverrideTailCall,
8699 if (ConstantSize->
isZero())
8703 *
this, dl, Chain, Dst, Src, ConstantSize->
getZExtValue(), Alignment,
8704 isVol,
false, DstPtrInfo, SrcPtrInfo, AAInfo);
8705 if (Result.getNode())
8714 Alignment, isVol, DstPtrInfo, SrcPtrInfo);
8715 if (Result.getNode())
8729 Entry.Node = Dst; Args.push_back(Entry);
8730 Entry.Node = Src; Args.push_back(Entry);
8733 Entry.Node =
Size; Args.push_back(Entry);
8737 bool IsTailCall =
false;
8738 if (OverrideTailCall.has_value()) {
8739 IsTailCall = *OverrideTailCall;
8741 bool LowersToMemmove =
8746 ReturnsFirstArg && LowersToMemmove);
8752 Dst.getValueType().getTypeForEVT(*
getContext()),
8759 std::pair<SDValue,SDValue> CallResult = TLI->
LowerCallTo(CLI);
8760 return CallResult.second;
8765 Type *SizeTy,
unsigned ElemSz,
8774 Args.push_back(Entry);
8777 Args.push_back(Entry);
8781 Args.push_back(Entry);
8785 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
8799 std::pair<SDValue, SDValue> CallResult = TLI->
LowerCallTo(CLI);
8800 return CallResult.second;
8805 bool isVol,
bool AlwaysInline,
8814 if (ConstantSize->
isZero())
8819 isVol,
false, DstPtrInfo, AAInfo);
8821 if (Result.getNode())
8829 *
this, dl, Chain, Dst, Src,
Size, Alignment, isVol, AlwaysInline, DstPtrInfo);
8830 if (Result.getNode())
8837 assert(ConstantSize &&
"AlwaysInline requires a constant size!");
8840 isVol,
true, DstPtrInfo, AAInfo);
8842 "getMemsetStores must return a valid sequence when AlwaysInline");
8859 const auto CreateEntry = [](
SDValue Node,
Type *Ty) {
8871 Args.push_back(CreateEntry(
Size,
DL.getIntPtrType(Ctx)));
8878 Args.push_back(CreateEntry(Src, Src.getValueType().getTypeForEVT(Ctx)));
8879 Args.push_back(CreateEntry(
Size,
DL.getIntPtrType(Ctx)));
8881 Dst.getValueType().getTypeForEVT(Ctx),
8886 bool LowersToMemset =
8897 std::pair<SDValue, SDValue> CallResult = TLI->
LowerCallTo(CLI);
8898 return CallResult.second;
8903 Type *SizeTy,
unsigned ElemSz,
8911 Args.push_back(Entry);
8915 Args.push_back(Entry);
8919 Args.push_back(Entry);
8923 if (LibraryCall == RTLIB::UNKNOWN_LIBCALL)
8937 std::pair<SDValue, SDValue> CallResult = TLI->
LowerCallTo(CLI);
8938 return CallResult.second;
8950 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
8951 cast<AtomicSDNode>(E)->refineAlignment(MMO);
8956 VTList, MemVT, MMO);
8957 createOperands(
N, Ops);
8959 CSEMap.InsertNode(
N, IP);
8973 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
8992 "Invalid Atomic Op");
8999 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
9009 return getAtomic(Opcode, dl, MemVT, VTs, Ops, MMO);
9014 if (Ops.
size() == 1)
9029 if (
Size.hasValue() && !
Size.getValue())
9046 (Opcode <= (
unsigned)std::numeric_limits<int>::max() &&
9048 "Opcode is not a memory-accessing opcode!");
9052 if (VTList.
VTs[VTList.
NumVTs-1] != MVT::Glue) {
9055 ID.AddInteger(getSyntheticNodeSubclassData<MemIntrinsicSDNode>(
9056 Opcode, dl.
getIROrder(), VTList, MemVT, MMO));
9061 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9062 cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO);
9067 VTList, MemVT, MMO);
9068 createOperands(
N, Ops);
9070 CSEMap.InsertNode(
N, IP);
9073 VTList, MemVT, MMO);
9074 createOperands(
N, Ops);
9083 SDValue Chain,
int FrameIndex,
9095 ID.AddInteger(FrameIndex);
9099 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
9104 createOperands(
N, Ops);
9105 CSEMap.InsertNode(
N, IP);
9121 ID.AddInteger(Index);
9123 if (
SDNode *E = FindNodeOrInsertPos(
ID, Dl, IP))
9126 auto *
N = newSDNode<PseudoProbeSDNode>(
9128 createOperands(
N, Ops);
9129 CSEMap.InsertNode(
N, IP);
9150 !isa<ConstantSDNode>(
Ptr.getOperand(1)) ||
9151 !isa<FrameIndexSDNode>(
Ptr.getOperand(0)))
9154 int FI = cast<FrameIndexSDNode>(
Ptr.getOperand(0))->getIndex();
9157 Offset + cast<ConstantSDNode>(
Ptr.getOperand(1))->getSExtValue());
9168 if (
ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp))
9183 "Invalid chain type");
9195 Alignment, AAInfo, Ranges);
9206 assert(VT == MemVT &&
"Non-extending load from different memory type!");
9210 "Should only be an extending load, not truncating!");
9212 "Cannot convert from FP to Int or Int -> FP!");
9214 "Cannot use an ext load to convert to or from a vector!");
9217 "Cannot use an ext load to change the number of vector elements!");
9229 ID.AddInteger(getSyntheticNodeSubclassData<LoadSDNode>(
9230 dl.
getIROrder(), VTs, AM, ExtType, MemVT, MMO));
9234 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9235 cast<LoadSDNode>(E)->refineAlignment(MMO);
9239 ExtType, MemVT, MMO);
9240 createOperands(
N, Ops);
9242 CSEMap.InsertNode(
N, IP);
9256 PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges);
9274 MemVT, Alignment, MMOFlags, AAInfo);
9289 assert(LD->getOffset().isUndef() &&
"Load is already a indexed load!");
9292 LD->getMemOperand()->getFlags() &
9295 LD->getChain(),
Base,
Offset, LD->getPointerInfo(),
9296 LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo());
9322 "Invalid chain type");
9330 ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
9335 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9336 cast<StoreSDNode>(E)->refineAlignment(MMO);
9341 createOperands(
N, Ops);
9343 CSEMap.InsertNode(
N, IP);
9356 "Invalid chain type");
9377 "Invalid chain type");
9382 "Should only be a truncating store, not extending!");
9384 "Can't do FP-INT conversion!");
9386 "Cannot use trunc store to convert to or from a vector!");
9389 "Cannot use trunc store to change the number of vector elements!");
9397 ID.AddInteger(getSyntheticNodeSubclassData<StoreSDNode>(
9402 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9403 cast<StoreSDNode>(E)->refineAlignment(MMO);
9408 createOperands(
N, Ops);
9410 CSEMap.InsertNode(
N, IP);
9421 assert(ST->getOffset().isUndef() &&
"Store is already a indexed store!");
9426 ID.AddInteger(ST->getMemoryVT().getRawBits());
9427 ID.AddInteger(ST->getRawSubclassData());
9428 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
9429 ID.AddInteger(ST->getMemOperand()->getFlags());
9431 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
9435 ST->isTruncatingStore(), ST->getMemoryVT(),
9436 ST->getMemOperand());
9437 createOperands(
N, Ops);
9439 CSEMap.InsertNode(
N, IP);
9451 const MDNode *Ranges,
bool IsExpanding) {
9464 Alignment, AAInfo, Ranges);
9465 return getLoadVP(AM, ExtType, VT, dl, Chain,
Ptr,
Offset, Mask, EVL, MemVT,
9484 ID.AddInteger(getSyntheticNodeSubclassData<VPLoadSDNode>(
9485 dl.
getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
9489 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9490 cast<VPLoadSDNode>(E)->refineAlignment(MMO);
9494 ExtType, IsExpanding, MemVT, MMO);
9495 createOperands(
N, Ops);
9497 CSEMap.InsertNode(
N, IP);
9513 Mask, EVL, PtrInfo, VT, Alignment, MMOFlags, AAInfo, Ranges,
9522 Mask, EVL, VT, MMO, IsExpanding);
9531 const AAMDNodes &AAInfo,
bool IsExpanding) {
9534 EVL, PtrInfo, MemVT, Alignment, MMOFlags, AAInfo,
nullptr,
9544 EVL, MemVT, MMO, IsExpanding);
9550 auto *LD = cast<VPLoadSDNode>(OrigLoad);
9551 assert(LD->getOffset().isUndef() &&
"Load is already a indexed load!");
9554 LD->getMemOperand()->getFlags() &
9558 LD->getVectorLength(), LD->getPointerInfo(),
9559 LD->getMemoryVT(), LD->getAlign(), MMOFlags, LD->getAAInfo(),
9560 nullptr, LD->isExpandingLoad());
9567 bool IsCompressing) {
9577 ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
9578 dl.
getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
9582 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9583 cast<VPStoreSDNode>(E)->refineAlignment(MMO);
9587 IsTruncating, IsCompressing, MemVT, MMO);
9588 createOperands(
N, Ops);
9590 CSEMap.InsertNode(
N, IP);
9603 bool IsCompressing) {
9624 bool IsCompressing) {
9631 false, IsCompressing);
9634 "Should only be a truncating store, not extending!");
9637 "Cannot use trunc store to convert to or from a vector!");
9640 "Cannot use trunc store to change the number of vector elements!");
9644 SDValue Ops[] = {Chain, Val,
Ptr, Undef, Mask, EVL};
9648 ID.AddInteger(getSyntheticNodeSubclassData<VPStoreSDNode>(
9653 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9654 cast<VPStoreSDNode>(E)->refineAlignment(MMO);
9660 createOperands(
N, Ops);
9662 CSEMap.InsertNode(
N, IP);
9672 auto *ST = cast<VPStoreSDNode>(OrigStore);
9673 assert(ST->getOffset().isUndef() &&
"Store is already an indexed store!");
9675 SDValue Ops[] = {ST->getChain(), ST->getValue(),
Base,
9676 Offset, ST->getMask(), ST->getVectorLength()};
9679 ID.AddInteger(ST->getMemoryVT().getRawBits());
9680 ID.AddInteger(ST->getRawSubclassData());
9681 ID.AddInteger(ST->getPointerInfo().getAddrSpace());
9682 ID.AddInteger(ST->getMemOperand()->getFlags());
9684 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
9687 auto *
N = newSDNode<VPStoreSDNode>(
9689 ST->isCompressingStore(), ST->getMemoryVT(), ST->getMemOperand());
9690 createOperands(
N, Ops);
9692 CSEMap.InsertNode(
N, IP);
9712 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedLoadSDNode>(
9713 DL.getIROrder(), VTs, AM, ExtType, IsExpanding, MemVT, MMO));
9717 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
9718 cast<VPStridedLoadSDNode>(E)->refineAlignment(MMO);
9723 newSDNode<VPStridedLoadSDNode>(
DL.getIROrder(),
DL.getDebugLoc(), VTs, AM,
9724 ExtType, IsExpanding, MemVT, MMO);
9725 createOperands(
N, Ops);
9726 CSEMap.InsertNode(
N, IP);
9740 Undef, Stride, Mask, EVL, VT, MMO, IsExpanding);
9749 Stride, Mask, EVL, MemVT, MMO, IsExpanding);
9758 bool IsTruncating,
bool IsCompressing) {
9768 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
9769 DL.getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
9772 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
9773 cast<VPStridedStoreSDNode>(E)->refineAlignment(MMO);
9776 auto *
N = newSDNode<VPStridedStoreSDNode>(
DL.getIROrder(),
DL.getDebugLoc(),
9777 VTs, AM, IsTruncating,
9778 IsCompressing, MemVT, MMO);
9779 createOperands(
N, Ops);
9781 CSEMap.InsertNode(
N, IP);
9793 bool IsCompressing) {
9800 false, IsCompressing);
9803 "Should only be a truncating store, not extending!");
9806 "Cannot use trunc store to convert to or from a vector!");
9809 "Cannot use trunc store to change the number of vector elements!");
9813 SDValue Ops[] = {Chain, Val,
Ptr, Undef, Stride, Mask, EVL};
9817 ID.AddInteger(getSyntheticNodeSubclassData<VPStridedStoreSDNode>(
9821 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
9822 cast<VPStridedStoreSDNode>(E)->refineAlignment(MMO);
9825 auto *
N = newSDNode<VPStridedStoreSDNode>(
DL.getIROrder(),
DL.getDebugLoc(),
9827 IsCompressing, SVT, MMO);
9828 createOperands(
N, Ops);
9830 CSEMap.InsertNode(
N, IP);
9840 assert(Ops.
size() == 6 &&
"Incompatible number of operands");
9845 ID.AddInteger(getSyntheticNodeSubclassData<VPGatherSDNode>(
9850 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9851 cast<VPGatherSDNode>(E)->refineAlignment(MMO);
9856 VT, MMO, IndexType);
9857 createOperands(
N, Ops);
9859 assert(
N->getMask().getValueType().getVectorElementCount() ==
9860 N->getValueType(0).getVectorElementCount() &&
9861 "Vector width mismatch between mask and data");
9862 assert(
N->getIndex().getValueType().getVectorElementCount().isScalable() ==
9863 N->getValueType(0).getVectorElementCount().isScalable() &&
9864 "Scalable flags of index and data do not match");
9866 N->getIndex().getValueType().getVectorElementCount(),
9867 N->getValueType(0).getVectorElementCount()) &&
9868 "Vector width mismatch between index and data");
9869 assert(isa<ConstantSDNode>(
N->getScale()) &&
9870 N->getScale()->getAsAPIntVal().isPowerOf2() &&
9871 "Scale should be a constant power of 2");
9873 CSEMap.InsertNode(
N, IP);
9884 assert(Ops.
size() == 7 &&
"Incompatible number of operands");
9889 ID.AddInteger(getSyntheticNodeSubclassData<VPScatterSDNode>(
9894 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9895 cast<VPScatterSDNode>(E)->refineAlignment(MMO);
9899 VT, MMO, IndexType);
9900 createOperands(
N, Ops);
9902 assert(
N->getMask().getValueType().getVectorElementCount() ==
9903 N->getValue().getValueType().getVectorElementCount() &&
9904 "Vector width mismatch between mask and data");
9906 N->getIndex().getValueType().getVectorElementCount().isScalable() ==
9907 N->getValue().getValueType().getVectorElementCount().isScalable() &&
9908 "Scalable flags of index and data do not match");
9910 N->getIndex().getValueType().getVectorElementCount(),
9911 N->getValue().getValueType().getVectorElementCount()) &&
9912 "Vector width mismatch between index and data");
9913 assert(isa<ConstantSDNode>(
N->getScale()) &&
9914 N->getScale()->getAsAPIntVal().isPowerOf2() &&
9915 "Scale should be a constant power of 2");
9917 CSEMap.InsertNode(
N, IP);
9932 "Unindexed masked load with an offset!");
9939 ID.AddInteger(getSyntheticNodeSubclassData<MaskedLoadSDNode>(
9940 dl.
getIROrder(), VTs, AM, ExtTy, isExpanding, MemVT, MMO));
9944 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9945 cast<MaskedLoadSDNode>(E)->refineAlignment(MMO);
9949 AM, ExtTy, isExpanding, MemVT, MMO);
9950 createOperands(
N, Ops);
9952 CSEMap.InsertNode(
N, IP);
9963 assert(LD->getOffset().isUndef() &&
"Masked load is already a indexed load!");
9965 Offset, LD->getMask(), LD->getPassThru(),
9966 LD->getMemoryVT(), LD->getMemOperand(), AM,
9967 LD->getExtensionType(), LD->isExpandingLoad());
9975 bool IsCompressing) {
9977 "Invalid chain type");
9980 "Unindexed masked store with an offset!");
9987 ID.AddInteger(getSyntheticNodeSubclassData<MaskedStoreSDNode>(
9988 dl.
getIROrder(), VTs, AM, IsTruncating, IsCompressing, MemVT, MMO));
9992 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
9993 cast<MaskedStoreSDNode>(E)->refineAlignment(MMO);
9998 IsTruncating, IsCompressing, MemVT, MMO);
9999 createOperands(
N, Ops);
10001 CSEMap.InsertNode(
N, IP);
10012 assert(ST->getOffset().isUndef() &&
10013 "Masked store is already a indexed store!");
10015 ST->getMask(), ST->getMemoryVT(), ST->getMemOperand(),
10016 AM, ST->isTruncatingStore(), ST->isCompressingStore());
10024 assert(Ops.
size() == 6 &&
"Incompatible number of operands");
10029 ID.AddInteger(getSyntheticNodeSubclassData<MaskedGatherSDNode>(
10030 dl.
getIROrder(), VTs, MemVT, MMO, IndexType, ExtTy));
10033 void *IP =
nullptr;
10034 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10035 cast<MaskedGatherSDNode>(E)->refineAlignment(MMO);
10040 VTs, MemVT, MMO, IndexType, ExtTy);
10041 createOperands(
N, Ops);
10043 assert(
N->getPassThru().getValueType() ==
N->getValueType(0) &&
10044 "Incompatible type of the PassThru value in MaskedGatherSDNode");
10045 assert(
N->getMask().getValueType().getVectorElementCount() ==
10046 N->getValueType(0).getVectorElementCount() &&
10047 "Vector width mismatch between mask and data");
10048 assert(
N->getIndex().getValueType().getVectorElementCount().isScalable() ==
10049 N->getValueType(0).getVectorElementCount().isScalable() &&
10050 "Scalable flags of index and data do not match");
10052 N->getIndex().getValueType().getVectorElementCount(),
10053 N->getValueType(0).getVectorElementCount()) &&
10054 "Vector width mismatch between index and data");
10055 assert(isa<ConstantSDNode>(
N->getScale()) &&
10056 N->getScale()->getAsAPIntVal().isPowerOf2() &&
10057 "Scale should be a constant power of 2");
10059 CSEMap.InsertNode(
N, IP);
10071 assert(Ops.
size() == 6 &&
"Incompatible number of operands");
10076 ID.AddInteger(getSyntheticNodeSubclassData<MaskedScatterSDNode>(
10077 dl.
getIROrder(), VTs, MemVT, MMO, IndexType, IsTrunc));
10080 void *IP =
nullptr;
10081 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10082 cast<MaskedScatterSDNode>(E)->refineAlignment(MMO);
10087 VTs, MemVT, MMO, IndexType, IsTrunc);
10088 createOperands(
N, Ops);
10090 assert(
N->getMask().getValueType().getVectorElementCount() ==
10091 N->getValue().getValueType().getVectorElementCount() &&
10092 "Vector width mismatch between mask and data");
10094 N->getIndex().getValueType().getVectorElementCount().isScalable() ==
10095 N->getValue().getValueType().getVectorElementCount().isScalable() &&
10096 "Scalable flags of index and data do not match");
10098 N->getIndex().getValueType().getVectorElementCount(),
10099 N->getValue().getValueType().getVectorElementCount()) &&
10100 "Vector width mismatch between index and data");
10101 assert(isa<ConstantSDNode>(
N->getScale()) &&
10102 N->getScale()->getAsAPIntVal().isPowerOf2() &&
10103 "Scale should be a constant power of 2");
10105 CSEMap.InsertNode(
N, IP);
10116 assert(Ops.
size() == 7 &&
"Incompatible number of operands");
10121 ID.AddInteger(getSyntheticNodeSubclassData<MaskedHistogramSDNode>(
10122 dl.
getIROrder(), VTs, MemVT, MMO, IndexType));
10125 void *IP =
nullptr;
10126 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP)) {
10127 cast<MaskedGatherSDNode>(E)->refineAlignment(MMO);
10132 VTs, MemVT, MMO, IndexType);
10133 createOperands(
N, Ops);
10135 assert(
N->getMask().getValueType().getVectorElementCount() ==
10136 N->getIndex().getValueType().getVectorElementCount() &&
10137 "Vector width mismatch between mask and data");
10138 assert(isa<ConstantSDNode>(
N->getScale()) &&
10139 N->getScale()->getAsAPIntVal().isPowerOf2() &&
10140 "Scale should be a constant power of 2");
10141 assert(
N->getInc().getValueType().isInteger() &&
"Non integer update value");
10143 CSEMap.InsertNode(
N, IP);
10158 ID.AddInteger(getSyntheticNodeSubclassData<FPStateAccessSDNode>(
10162 void *IP =
nullptr;
10163 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
10168 createOperands(
N, Ops);
10170 CSEMap.InsertNode(
N, IP);
10185 ID.AddInteger(getSyntheticNodeSubclassData<FPStateAccessSDNode>(
10189 void *IP =
nullptr;
10190 if (
SDNode *E = FindNodeOrInsertPos(
ID, dl, IP))
10195 createOperands(
N, Ops);
10197 CSEMap.InsertNode(
N, IP);
10208 if (
Cond.isUndef())
10243 return !Val || Val->getAPIntValue().uge(
X.getScalarValueSizeInBits());
10249 if (
X.getValueType().getScalarType() == MVT::i1)
10262 bool HasNan = (XC && XC->getValueAPF().isNaN()) ||
10264 bool HasInf = (XC && XC->getValueAPF().isInfinity()) ||
10267 if (Flags.hasNoNaNs() && (HasNan ||
X.isUndef() ||
Y.isUndef()))
10270 if (Flags.hasNoInfs() && (HasInf ||
X.isUndef() ||
Y.isUndef()))
10293 if (Opcode ==
ISD::FMUL && Flags.hasNoNaNs() && Flags.hasNoSignedZeros())
10308 switch (Ops.
size()) {
10309 case 0:
return getNode(Opcode,
DL, VT);
10310 case 1:
return getNode(Opcode,
DL, VT,
static_cast<const SDValue>(Ops[0]));
10311 case 2:
return getNode(Opcode,
DL, VT, Ops[0], Ops[1]);
10312 case 3:
return getNode(Opcode,
DL, VT, Ops[0], Ops[1], Ops[2]);
10319 return getNode(Opcode,
DL, VT, NewOps);
10327 return getNode(Opcode,
DL, VT, Ops, Flags);
10332 unsigned NumOps = Ops.
size();
10334 case 0:
return getNode(Opcode,
DL, VT);
10335 case 1:
return getNode(Opcode,
DL, VT, Ops[0], Flags);
10336 case 2:
return getNode(Opcode,
DL, VT, Ops[0], Ops[1], Flags);
10337 case 3:
return getNode(Opcode,
DL, VT, Ops[0], Ops[1], Ops[2], Flags);
10342 for (
const auto &
Op : Ops)
10344 "Operand is DELETED_NODE!");
10359 assert(NumOps == 5 &&
"SELECT_CC takes 5 operands!");
10361 "LHS and RHS of condition must have same type!");
10363 "True and False arms of SelectCC must have same type!");
10365 "select_cc node must be of same type as true and false value!");
10369 "Expected select_cc with vector result to have the same sized "
10370 "comparison type!");
10373 assert(NumOps == 5 &&
"BR_CC takes 5 operands!");
10375 "LHS/RHS of comparison should match types!");
10381 Opcode = ISD::VP_XOR;
10386 Opcode = ISD::VP_AND;
10388 case ISD::VP_REDUCE_MUL:
10391 Opcode = ISD::VP_REDUCE_AND;
10393 case ISD::VP_REDUCE_ADD:
10396 Opcode = ISD::VP_REDUCE_XOR;
10398 case ISD::VP_REDUCE_SMAX:
10399 case ISD::VP_REDUCE_UMIN:
10403 Opcode = ISD::VP_REDUCE_AND;
10405 case ISD::VP_REDUCE_SMIN:
10406 case ISD::VP_REDUCE_UMAX:
10410 Opcode = ISD::VP_REDUCE_OR;
10418 if (VT != MVT::Glue) {
10421 void *IP =
nullptr;
10423 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
10424 E->intersectFlagsWith(Flags);
10428 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
10429 createOperands(
N, Ops);
10431 CSEMap.InsertNode(
N, IP);
10433 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
10434 createOperands(
N, Ops);
10437 N->setFlags(Flags);
10454 return getNode(Opcode,
DL, VTList, Ops, Flags);
10460 return getNode(Opcode,
DL, VTList.
VTs[0], Ops, Flags);
10463 for (
const auto &
Op : Ops)
10465 "Operand is DELETED_NODE!");
10474 "Invalid add/sub overflow op!");
10476 Ops[0].getValueType() == Ops[1].getValueType() &&
10477 Ops[0].getValueType() == VTList.
VTs[0] &&
10478 "Binary operator types must match!");
10479 SDValue N1 = Ops[0], N2 = Ops[1];
10485 if (N2CV && N2CV->
isZero()) {
10517 "Invalid add/sub overflow op!");
10519 Ops[0].getValueType() == Ops[1].getValueType() &&
10520 Ops[0].getValueType() == VTList.
VTs[0] &&
10521 Ops[2].getValueType() == VTList.
VTs[1] &&
10522 "Binary operator types must match!");
10528 VTList.
VTs[0] == Ops[0].getValueType() &&
10529 VTList.
VTs[0] == Ops[1].getValueType() &&
10530 "Binary operator types must match!");
10536 unsigned OutWidth = Width * 2;
10540 Val = Val.
sext(OutWidth);
10541 Mul =
Mul.sext(OutWidth);
10543 Val = Val.
zext(OutWidth);
10544 Mul =
Mul.zext(OutWidth);
10558 VTList.
VTs[0] == Ops[0].getValueType() &&
"frexp type mismatch");
10574 "Invalid STRICT_FP_EXTEND!");
10576 Ops[1].getValueType().isFloatingPoint() &&
"Invalid FP cast!");
10578 "STRICT_FP_EXTEND result type should be vector iff the operand "
10579 "type is vector!");
10582 Ops[1].getValueType().getVectorElementCount()) &&
10583 "Vector element count mismatch!");
10585 "Invalid fpext node, dst <= src!");
10588 assert(VTList.
NumVTs == 2 && Ops.
size() == 3 &&
"Invalid STRICT_FP_ROUND!");
10590 "STRICT_FP_ROUND result type should be vector iff the operand "
10591 "type is vector!");
10594 Ops[1].getValueType().getVectorElementCount()) &&
10595 "Vector element count mismatch!");
10597 Ops[1].getValueType().isFloatingPoint() &&
10598 VTList.
VTs[0].
bitsLT(Ops[1].getValueType()) &&
10600 (Ops[2]->getAsZExtVal() == 0 || Ops[2]->getAsZExtVal() == 1) &&
10601 "Invalid STRICT_FP_ROUND!");
10611 cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1)
10612 return getNode(Opcode,
DL, VT, N1, N2, N3.getOperand(0));
10613 else if (N3.getOpcode() ==
ISD::AND)
10614 if (
ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) {
10618 if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1)
10619 return getNode(Opcode,
DL, VT, N1, N2, N3.getOperand(0));
10627 if (VTList.
VTs[VTList.
NumVTs-1] != MVT::Glue) {
10630 void *IP =
nullptr;
10631 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
10632 E->intersectFlagsWith(Flags);
10636 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTList);
10637 createOperands(
N, Ops);
10638 CSEMap.InsertNode(
N, IP);
10640 N = newSDNode<SDNode>(Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTList);
10641 createOperands(
N, Ops);
10644 N->setFlags(Flags);
10659 return getNode(Opcode,
DL, VTList, Ops);
10665 return getNode(Opcode,
DL, VTList, Ops);
10670 SDValue Ops[] = { N1, N2, N3 };
10671 return getNode(Opcode,
DL, VTList, Ops);
10676 SDValue Ops[] = { N1, N2, N3, N4 };
10677 return getNode(Opcode,
DL, VTList, Ops);
10683 SDValue Ops[] = { N1, N2, N3, N4, N5 };
10684 return getNode(Opcode,
DL, VTList, Ops);
10691 return makeVTList(&(*EVTs.insert(VT).first), 1);
10700 void *IP =
nullptr;
10706 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 2);
10707 VTListMap.InsertNode(Result, IP);
10709 return Result->getSDVTList();
10719 void *IP =
nullptr;
10726 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 3);
10727 VTListMap.InsertNode(Result, IP);
10729 return Result->getSDVTList();
10740 void *IP =
nullptr;
10748 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, 4);
10749 VTListMap.InsertNode(Result, IP);
10751 return Result->getSDVTList();
10755 unsigned NumVTs = VTs.
size();
10757 ID.AddInteger(NumVTs);
10758 for (
unsigned index = 0; index < NumVTs; index++) {
10759 ID.AddInteger(VTs[index].getRawBits());
10762 void *IP =
nullptr;
10767 Result =
new (Allocator)
SDVTListNode(
ID.Intern(Allocator), Array, NumVTs);
10768 VTListMap.InsertNode(Result, IP);
10770 return Result->getSDVTList();
10781 assert(
N->getNumOperands() == 1 &&
"Update with wrong number of operands");
10784 if (
Op ==
N->getOperand(0))
return N;
10787 void *InsertPos =
nullptr;
10788 if (
SDNode *Existing = FindModifiedNodeSlot(
N,
Op, InsertPos))
10793 if (!RemoveNodeFromCSEMaps(
N))
10794 InsertPos =
nullptr;
10797 N->OperandList[0].set(
Op);
10801 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
10806 assert(
N->getNumOperands() == 2 &&
"Update with wrong number of operands");
10809 if (Op1 ==
N->getOperand(0) && Op2 ==
N->getOperand(1))
10813 void *InsertPos =
nullptr;
10814 if (
SDNode *Existing = FindModifiedNodeSlot(
N, Op1, Op2, InsertPos))
10819 if (!RemoveNodeFromCSEMaps(
N))
10820 InsertPos =
nullptr;
10823 if (
N->OperandList[0] != Op1)
10824 N->OperandList[0].set(Op1);
10825 if (
N->OperandList[1] != Op2)
10826 N->OperandList[1].set(Op2);
10830 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
10836 SDValue Ops[] = { Op1, Op2, Op3 };
10843 SDValue Ops[] = { Op1, Op2, Op3, Op4 };
10850 SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 };
10856 unsigned NumOps = Ops.
size();
10857 assert(
N->getNumOperands() == NumOps &&
10858 "Update with wrong number of operands");
10861 if (std::equal(Ops.
begin(), Ops.
end(),
N->op_begin()))
10865 void *InsertPos =
nullptr;
10866 if (
SDNode *Existing = FindModifiedNodeSlot(
N, Ops, InsertPos))
10871 if (!RemoveNodeFromCSEMaps(
N))
10872 InsertPos =
nullptr;
10875 for (
unsigned i = 0; i != NumOps; ++i)
10876 if (
N->OperandList[i] != Ops[i])
10877 N->OperandList[i].set(Ops[i]);
10881 if (InsertPos) CSEMap.InsertNode(
N, InsertPos);
10898 if (NewMemRefs.
empty()) {
10904 if (NewMemRefs.
size() == 1) {
10905 N->MemRefs = NewMemRefs[0];
10911 Allocator.template Allocate<MachineMemOperand *>(NewMemRefs.
size());
10913 N->MemRefs = MemRefsBuffer;
10914 N->NumMemRefs =
static_cast<int>(NewMemRefs.
size());
10937 SDValue Ops[] = { Op1, Op2 };
10945 SDValue Ops[] = { Op1, Op2, Op3 };
10978 SDValue Ops[] = { Op1, Op2 };
10986 New->setNodeId(-1);
11006 unsigned Order = std::min(
N->getIROrder(), OLoc.
getIROrder());
11007 N->setIROrder(Order);
11030 void *IP =
nullptr;
11031 if (VTs.
VTs[VTs.
NumVTs-1] != MVT::Glue) {
11035 return UpdateSDLocOnMergeSDNode(ON,
SDLoc(
N));
11038 if (!RemoveNodeFromCSEMaps(
N))
11043 N->ValueList = VTs.
VTs;
11053 if (Used->use_empty())
11054 DeadNodeSet.
insert(Used);
11059 MN->clearMemRefs();
11063 createOperands(
N, Ops);
11067 if (!DeadNodeSet.
empty()) {
11069 for (
SDNode *
N : DeadNodeSet)
11070 if (
N->use_empty())
11076 CSEMap.InsertNode(
N, IP);
11081 unsigned OrigOpc = Node->getOpcode();
11086#define DAG_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
11087 case ISD::STRICT_##DAGN: NewOpc = ISD::DAGN; break;
11088#define CMP_INSTRUCTION(NAME, NARG, ROUND_MODE, INTRINSIC, DAGN) \
11089 case ISD::STRICT_##DAGN: NewOpc = ISD::SETCC; break;
11090#include "llvm/IR/ConstrainedOps.def"
11093 assert(Node->getNumValues() == 2 &&
"Unexpected number of results!");
11096 SDValue InputChain = Node->getOperand(0);
11101 for (
unsigned i = 1, e = Node->getNumOperands(); i != e; ++i)
11144 SDValue Ops[] = { Op1, Op2 };
11152 SDValue Ops[] = { Op1, Op2, Op3 };
11166 SDValue Ops[] = { Op1, Op2 };
11174 SDValue Ops[] = { Op1, Op2, Op3 };
11189 SDValue Ops[] = { Op1, Op2 };
11198 SDValue Ops[] = { Op1, Op2, Op3 };
11219 bool DoCSE = VTs.
VTs[VTs.
NumVTs-1] != MVT::Glue;
11221 void *IP =
nullptr;
11227 if (
SDNode *E = FindNodeOrInsertPos(
ID,
DL, IP)) {
11228 return cast<MachineSDNode>(UpdateSDLocOnMergeSDNode(E,
DL));
11233 N = newSDNode<MachineSDNode>(~Opcode,
DL.getIROrder(),
DL.getDebugLoc(), VTs);
11234 createOperands(
N, Ops);
11237 CSEMap.InsertNode(
N, IP);
11250 VT, Operand, SRIdxVal);
11260 VT, Operand, Subreg, SRIdxVal);
11277 if (VTList.
VTs[VTList.
NumVTs - 1] != MVT::Glue) {
11280 void *IP =
nullptr;
11282 E->intersectFlagsWith(Flags);
11292 if (VTList.
VTs[VTList.
NumVTs - 1] != MVT::Glue) {
11295 void *IP =
nullptr;
11296 if (FindNodeOrInsertPos(
ID,
SDLoc(), IP))
11306 SDNode *
N,
unsigned R,
bool IsIndirect,
11308 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11309 "Expected inlined-at fields to agree");
11312 {}, IsIndirect,
DL, O,
11321 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11322 "Expected inlined-at fields to agree");
11335 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11336 "Expected inlined-at fields to agree");
11347 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11348 "Expected inlined-at fields to agree");
11351 Dependencies, IsIndirect,
DL, O,
11357 unsigned VReg,
bool IsIndirect,
11359 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11360 "Expected inlined-at fields to agree");
11363 {}, IsIndirect,
DL, O,
11371 unsigned O,
bool IsVariadic) {
11372 assert(cast<DILocalVariable>(Var)->isValidLocationForIntrinsic(
DL) &&
11373 "Expected inlined-at fields to agree");
11376 DL, O, IsVariadic);
11380 unsigned OffsetInBits,
unsigned SizeInBits,
11381 bool InvalidateDbg) {
11384 assert(FromNode && ToNode &&
"Can't modify dbg values");
11389 if (
From == To || FromNode == ToNode)
11401 if (Dbg->isInvalidated())
11408 bool Changed =
false;
11409 auto NewLocOps = Dbg->copyLocationOps();
11411 NewLocOps.begin(), NewLocOps.end(),
11413 bool Match = Op == FromLocOp;
11423 auto *Expr = Dbg->getExpression();
11429 if (
auto FI = Expr->getFragmentInfo())
11430 if (OffsetInBits + SizeInBits > FI->SizeInBits)
11439 auto AdditionalDependencies = Dbg->getAdditionalDependencies();
11442 Var, Expr, NewLocOps, AdditionalDependencies, Dbg->isIndirect(),
11443 Dbg->getDebugLoc(), std::max(ToNode->
getIROrder(), Dbg->getOrder()),
11444 Dbg->isVariadic());
11447 if (InvalidateDbg) {
11449 Dbg->setIsInvalidated();
11450 Dbg->setIsEmitted();
11456 "Transferred DbgValues should depend on the new SDNode");
11462 if (!
N.getHasDebugValue())
11465 auto GetLocationOperand = [](
SDNode *Node,
unsigned ResNo) {
11466 if (
auto *FISDN = dyn_cast<FrameIndexSDNode>(Node))
11473 if (DV->isInvalidated())
11475 switch (
N.getOpcode()) {
11481 if (!isa<ConstantSDNode>(N0)) {
11482 bool RHSConstant = isa<ConstantSDNode>(N1);
11485 Offset =
N.getConstantOperandVal(1);
11488 if (!RHSConstant && DV->isIndirect())
11495 auto *DIExpr = DV->getExpression();
11496 auto NewLocOps = DV->copyLocationOps();
11497 bool Changed =
false;
11498 size_t OrigLocOpsSize = NewLocOps.size();
11499 for (
size_t i = 0; i < OrigLocOpsSize; ++i) {
11504 NewLocOps[i].getSDNode() != &
N)
11515 const auto *TmpDIExpr =
11523 NewLocOps.push_back(
RHS);
11529 assert(Changed &&
"Salvage target doesn't use N");
11532 DV->isVariadic() || OrigLocOpsSize != NewLocOps.size();
11534 auto AdditionalDependencies = DV->getAdditionalDependencies();
11536 DV->getVariable(), DIExpr, NewLocOps, AdditionalDependencies,
11537 DV->isIndirect(), DV->getDebugLoc(), DV->getOrder(), IsVariadic);
11539 DV->setIsInvalidated();
11540 DV->setIsEmitted();
11542 N0.
getNode()->dumprFull(
this);
11543 dbgs() <<
" into " << *DIExpr <<
'\n');
11550 TypeSize ToSize =
N.getValueSizeInBits(0);
11554 auto NewLocOps = DV->copyLocationOps();
11555 bool Changed =
false;
11556 for (
size_t i = 0; i < NewLocOps.size(); ++i) {
11558 NewLocOps[i].getSDNode() != &
N)
11565 assert(Changed &&
"Salvage target doesn't use N");
11570 DV->getAdditionalDependencies(), DV->isIndirect(),
11571 DV->getDebugLoc(), DV->getOrder(), DV->isVariadic());
11574 DV->setIsInvalidated();
11575 DV->setIsEmitted();
11577 dbgs() <<
" into " << *DbgExpression <<
'\n');
11584 assert((!Dbg->getSDNodes().empty() ||
11587 return Op.getKind() == SDDbgOperand::FRAMEIX;
11589 "Salvaged DbgValue should depend on a new SDNode");
11597 assert(cast<DILabel>(Label)->isValidLocationForIntrinsic(
DL) &&
11598 "Expected inlined-at fields to agree");
11614 while (UI != UE &&
N == UI->
getUser())
11622 :
SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {}
11635 "Cannot replace with this method!");
11651 RAUWUpdateListener Listener(*
this, UI, UE);
11656 RemoveNodeFromCSEMaps(
User);
11671 AddModifiedNodeToCSEMaps(
User);
11687 for (
unsigned i = 0, e =
From->getNumValues(); i != e; ++i)
11690 "Cannot use this version of ReplaceAllUsesWith!");
11698 for (
unsigned i = 0, e =
From->getNumValues(); i != e; ++i)
11699 if (
From->hasAnyUseOfValue(i)) {
11700 assert((i < To->getNumValues()) &&
"Invalid To location");
11709 RAUWUpdateListener Listener(*
this, UI, UE);
11714 RemoveNodeFromCSEMaps(
User);
11730 AddModifiedNodeToCSEMaps(
User);
11744 if (
From->getNumValues() == 1)
11747 for (
unsigned i = 0, e =
From->getNumValues(); i != e; ++i) {
11757 RAUWUpdateListener Listener(*
this, UI, UE);
11762 RemoveNodeFromCSEMaps(
User);
11768 bool To_IsDivergent =
false;
11777 if (To_IsDivergent !=
From->isDivergent())
11782 AddModifiedNodeToCSEMaps(
User);
11795 if (
From == To)
return;
11798 if (
From.getNode()->getNumValues() == 1) {
11810 UE =
From.getNode()->use_end();
11811 RAUWUpdateListener Listener(*
this, UI, UE);
11814 bool UserRemovedFromCSEMaps =
false;
11824 if (
Use.getResNo() !=
From.getResNo()) {
11831 if (!UserRemovedFromCSEMaps) {
11832 RemoveNodeFromCSEMaps(
User);
11833 UserRemovedFromCSEMaps =
true;
11843 if (!UserRemovedFromCSEMaps)
11848 AddModifiedNodeToCSEMaps(
User);
11867bool operator<(
const UseMemo &L,
const UseMemo &R) {
11868 return (intptr_t)L.User < (intptr_t)R.User;
11878 for (UseMemo &Memo :
Uses)
11879 if (Memo.User ==
N)
11880 Memo.User =
nullptr;
11892 switch (
Node->getOpcode()) {
11906 "Conflicting divergence information!");
11911 for (
const auto &
Op :
N->ops()) {
11912 EVT VT =
Op.getValueType();
11915 if (VT != MVT::Other &&
Op.getNode()->isDivergent() &&
11927 if (
N->SDNodeBits.IsDivergent != IsDivergent) {
11928 N->SDNodeBits.IsDivergent = IsDivergent;
11931 }
while (!Worklist.
empty());
11934void SelectionDAG::CreateTopologicalOrder(std::vector<SDNode *> &Order) {
11936 Order.
reserve(AllNodes.size());
11938 unsigned NOps =
N.getNumOperands();
11941 Order.push_back(&
N);
11943 for (
size_t I = 0;
I != Order.size(); ++
I) {
11945 for (
auto *U :
N->users()) {
11946 unsigned &UnsortedOps = Degree[U];
11947 if (0 == --UnsortedOps)
11948 Order.push_back(U);
11953#if !defined(NDEBUG) && LLVM_ENABLE_ABI_BREAKING_CHECKS
11954void SelectionDAG::VerifyDAGDivergence() {
11955 std::vector<SDNode *> TopoOrder;
11956 CreateTopologicalOrder(TopoOrder);
11957 for (
auto *
N : TopoOrder) {
11959 "Divergence bit inconsistency detected");
11982 for (
unsigned i = 0; i != Num; ++i) {
11983 unsigned FromResNo =
From[i].getResNo();
11986 if (
Use.getResNo() == FromResNo) {
11988 Uses.push_back(Memo);
11995 RAUOVWUpdateListener Listener(*
this,
Uses);
11997 for (
unsigned UseIndex = 0, UseIndexEnd =
Uses.size();
11998 UseIndex != UseIndexEnd; ) {
12004 if (
User ==
nullptr) {
12010 RemoveNodeFromCSEMaps(
User);
12017 unsigned i =
Uses[UseIndex].Index;
12022 }
while (UseIndex != UseIndexEnd &&
Uses[UseIndex].
User ==
User);
12026 AddModifiedNodeToCSEMaps(
User);
12034 unsigned DAGSize = 0;
12050 unsigned Degree =
N.getNumOperands();
12053 N.setNodeId(DAGSize++);
12055 if (Q != SortedPos)
12056 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q));
12057 assert(SortedPos != AllNodes.end() &&
"Overran node list");
12061 N.setNodeId(Degree);
12073 unsigned Degree =
P->getNodeId();
12074 assert(Degree != 0 &&
"Invalid node degree");
12078 P->setNodeId(DAGSize++);
12079 if (
P->getIterator() != SortedPos)
12080 SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(
P));
12081 assert(SortedPos != AllNodes.end() &&
"Overran node list");
12085 P->setNodeId(Degree);
12088 if (Node.getIterator() == SortedPos) {
12092 dbgs() <<
"Overran sorted position:\n";
12094 dbgs() <<
"Checking if this is due to cycles\n";
12101 assert(SortedPos == AllNodes.end() &&
12102 "Topological sort incomplete!");
12104 "First node in topological sort is not the entry token!");
12105 assert(AllNodes.front().getNodeId() == 0 &&
12106 "First node in topological sort has non-zero id!");
12107 assert(AllNodes.front().getNumOperands() == 0 &&
12108 "First node in topological sort has operands!");
12109 assert(AllNodes.back().getNodeId() == (
int)DAGSize-1 &&
12110 "Last node in topologic sort has unexpected id!");
12111 assert(AllNodes.back().use_empty() &&
12112 "Last node in topologic sort has users!");
12120 for (
SDNode *SD : DB->getSDNodes()) {
12124 SD->setHasDebugValue(
true);
12126 DbgInfo->
add(DB, isParameter);
12133 assert(isa<MemSDNode>(NewMemOpChain) &&
"Expected a memop node");
12139 if (OldChain == NewMemOpChain || OldChain.
use_empty())
12140 return NewMemOpChain;
12143 OldChain, NewMemOpChain);
12146 return TokenFactor;
12151 assert(isa<MemSDNode>(NewMemOp.
getNode()) &&
"Expected a memop node");
12159 assert(isa<ExternalSymbolSDNode>(
Op) &&
"Node should be an ExternalSymbol");
12161 auto *Symbol = cast<ExternalSymbolSDNode>(
Op)->getSymbol();
12165 if (OutFunction !=
nullptr)
12173 std::string ErrorStr;
12175 ErrorFormatter <<
"Undefined external symbol ";
12176 ErrorFormatter <<
'"' << Symbol <<
'"';
12186 return Const !=
nullptr && Const->isZero();
12195 return Const !=
nullptr && Const->isZero() && !Const->isNegative();
12200 return Const !=
nullptr && Const->isAllOnes();
12205 return Const !=
nullptr && Const->isOne();
12210 return Const !=
nullptr && Const->isMinSignedValue();
12214 unsigned OperandNo) {
12219 APInt Const = ConstV->getAPIntValue().trunc(V.getScalarValueSizeInBits());
12225 return Const.isZero();
12227 return Const.isOne();
12230 return Const.isAllOnes();
12232 return Const.isMinSignedValue();
12234 return Const.isMaxSignedValue();
12239 return OperandNo == 1 && Const.isZero();
12242 return OperandNo == 1 && Const.isOne();
12247 return ConstFP->isZero() &&
12248 (Flags.hasNoSignedZeros() || ConstFP->isNegative());
12250 return OperandNo == 1 && ConstFP->isZero() &&
12251 (Flags.hasNoSignedZeros() || !ConstFP->isNegative());
12253 return ConstFP->isExactlyValue(1.0);
12255 return OperandNo == 1 && ConstFP->isExactlyValue(1.0);
12259 EVT VT = V.getValueType();
12261 APFloat NeutralAF = !Flags.hasNoNaNs()
12263 : !Flags.hasNoInfs()
12269 return ConstFP->isExactlyValue(NeutralAF);
12278 V = V.getOperand(0);
12283 while (V.getOpcode() ==
ISD::BITCAST && V.getOperand(0).hasOneUse())
12284 V = V.getOperand(0);
12290 V = V.getOperand(0);
12296 V = V.getOperand(0);
12304 unsigned NumBits = V.getScalarValueSizeInBits();
12307 return C && (
C->getAPIntValue().countr_one() >= NumBits);
12311 bool AllowTruncation) {
12312 EVT VT =
N.getValueType();
12321 bool AllowTruncation) {
12328 EVT VecEltVT =
N->getValueType(0).getVectorElementType();
12329 if (
auto *CN = dyn_cast<ConstantSDNode>(
N->getOperand(0))) {
12330 EVT CVT = CN->getValueType(0);
12331 assert(CVT.
bitsGE(VecEltVT) &&
"Illegal splat_vector element extension");
12332 if (AllowTruncation || CVT == VecEltVT)
12339 ConstantSDNode *CN = BV->getConstantSplatNode(DemandedElts, &UndefElements);
12344 if (CN && (UndefElements.
none() || AllowUndefs)) {
12346 EVT NSVT =
N.getValueType().getScalarType();
12347 assert(CVT.
bitsGE(NSVT) &&
"Illegal build vector element extension");
12348 if (AllowTruncation || (CVT == NSVT))
12357 EVT VT =
N.getValueType();
12365 const APInt &DemandedElts,
12366 bool AllowUndefs) {
12373 BV->getConstantFPSplatNode(DemandedElts, &UndefElements);
12375 if (CN && (UndefElements.
none() || AllowUndefs))
12390 return C &&
C->isZero();
12396 return C &&
C->isOne();
12401 unsigned BitWidth =
N.getScalarValueSizeInBits();
12403 return C &&
C->isAllOnes() &&
C->getValueSizeInBits(0) ==
BitWidth;
12412 :
SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) {
12436 std::vector<EVT> VTs;
12449const EVT *SDNode::getValueTypeList(
MVT VT) {
12450 static EVTArray SimpleVTArray;
12453 return &SimpleVTArray.VTs[VT.
SimpleTy];
12464 if (U.getResNo() ==
Value) {
12481 if (U.getResNo() ==
Value)
12519 return any_of(
N->op_values(),
12520 [
this](
SDValue Op) { return this == Op.getNode(); });
12534 unsigned Depth)
const {
12535 if (*
this == Dest)
return true;
12539 if (
Depth == 0)
return false;
12559 return Op.reachesChainWithoutSideEffects(Dest, Depth - 1);
12564 if (
LoadSDNode *Ld = dyn_cast<LoadSDNode>(*
this)) {
12565 if (Ld->isUnordered())
12566 return Ld->getChain().reachesChainWithoutSideEffects(Dest,
Depth-1);
12579 this->Flags &= Flags;
12585 bool AllowPartials) {
12594 return Op.getOpcode() ==
unsigned(BinOp);
12600 unsigned CandidateBinOp =
Op.getOpcode();
12601 if (
Op.getValueType().isFloatingPoint()) {
12603 switch (CandidateBinOp) {
12605 if (!Flags.hasNoSignedZeros() || !Flags.hasAllowReassociation())
12615 auto PartialReduction = [&](
SDValue Op,
unsigned NumSubElts) {
12616 if (!AllowPartials || !
Op)
12618 EVT OpVT =
Op.getValueType();
12641 unsigned Stages =
Log2_32(
Op.getValueType().getVectorNumElements());
12643 for (
unsigned i = 0; i < Stages; ++i) {
12644 unsigned MaskEnd = (1 << i);
12646 if (
Op.getOpcode() != CandidateBinOp)
12647 return PartialReduction(PrevOp, MaskEnd);
12656 Shuffle = dyn_cast<ShuffleVectorSDNode>(Op1);
12663 return PartialReduction(PrevOp, MaskEnd);
12666 for (
int Index = 0; Index < (int)MaskEnd; ++Index)
12667 if (Shuffle->
getMaskElt(Index) != (int)(MaskEnd + Index))
12668 return PartialReduction(PrevOp, MaskEnd);
12675 while (
Op.getOpcode() == CandidateBinOp) {
12676 unsigned NumElts =
Op.getValueType().getVectorNumElements();
12684 unsigned NumSrcElts = Src.getValueType().getVectorNumElements();
12685 if (NumSrcElts != (2 * NumElts))
12700 EVT VT =
N->getValueType(0);
12709 else if (NE > ResNE)
12712 if (
N->getNumValues() == 2) {
12715 EVT VT1 =
N->getValueType(1);
12719 for (i = 0; i != NE; ++i) {
12720 for (
unsigned j = 0, e =
N->getNumOperands(); j != e; ++j) {
12721 SDValue Operand =
N->getOperand(j);
12735 for (; i < ResNE; ++i) {
12747 assert(
N->getNumValues() == 1 &&
12748 "Can't unroll a vector with multiple results!");
12754 for (i= 0; i != NE; ++i) {
12755 for (
unsigned j = 0, e =
N->getNumOperands(); j != e; ++j) {
12756 SDValue Operand =
N->getOperand(j);
12769 switch (
N->getOpcode()) {
12795 const auto *ASC = cast<AddrSpaceCastSDNode>(
N);
12797 ASC->getSrcAddressSpace(),
12798 ASC->getDestAddressSpace()));
12804 for (; i < ResNE; ++i)
12813 unsigned Opcode =
N->getOpcode();
12817 "Expected an overflow opcode");
12819 EVT ResVT =
N->getValueType(0);
12820 EVT OvVT =
N->getValueType(1);
12829 else if (NE > ResNE)
12841 for (
unsigned i = 0; i < NE; ++i) {
12842 SDValue Res =
getNode(Opcode, dl, VTs, LHSScalars[i], RHSScalars[i]);
12865 if (LD->isVolatile() ||
Base->isVolatile())
12868 if (!LD->isSimple())
12870 if (LD->isIndexed() ||
Base->isIndexed())
12872 if (LD->getChain() !=
Base->getChain())
12874 EVT VT = LD->getMemoryVT();
12882 if (BaseLocDecomp.equalBaseIndex(LocDecomp, *
this,
Offset))
12883 return (Dist * (int64_t)Bytes ==
Offset);
12892 int64_t GVOffset = 0;
12904 int FrameIdx = INT_MIN;
12905 int64_t FrameOffset = 0;
12907 FrameIdx = FI->getIndex();
12909 isa<FrameIndexSDNode>(
Ptr.getOperand(0))) {
12911 FrameIdx = cast<FrameIndexSDNode>(
Ptr.getOperand(0))->getIndex();
12912 FrameOffset =
Ptr.getConstantOperandVal(1);
12915 if (FrameIdx != INT_MIN) {
12920 return std::nullopt;
12930 "Split node must be a scalar type");
12935 return std::make_pair(
Lo,
Hi);
12948 return std::make_pair(LoVT, HiVT);
12956 bool *HiIsEmpty)
const {
12966 "Mixing fixed width and scalable vectors when enveloping a type");
12971 *HiIsEmpty =
false;
12979 return std::make_pair(LoVT, HiVT);
12984std::pair<SDValue, SDValue>
12989 "Splitting vector with an invalid mixture of fixed and scalable "
12992 N.getValueType().getVectorMinNumElements() &&
12993 "More vector elements requested than available!");
13003 return std::make_pair(
Lo,
Hi);
13010 EVT VT =
N.getValueType();
13012 "Expecting the mask to be an evenly-sized vector");
13020 return std::make_pair(
Lo,
Hi);
13025 EVT VT =
N.getValueType();
13034 unsigned Start,
unsigned Count,
13036 EVT VT =
Op.getValueType();
13039 if (EltVT ==
EVT())
13042 for (
unsigned i = Start, e = Start + Count; i != e; ++i) {
13055 return Val.MachineCPVal->getType();
13056 return Val.ConstVal->getType();
13060 unsigned &SplatBitSize,
13061 bool &HasAnyUndefs,
13062 unsigned MinSplatBits,
13063 bool IsBigEndian)
const {
13067 if (MinSplatBits > VecWidth)
13072 SplatValue =
APInt(VecWidth, 0);
13073 SplatUndef =
APInt(VecWidth, 0);
13080 assert(NumOps > 0 &&
"isConstantSplat has 0-size build vector");
13083 for (
unsigned j = 0; j < NumOps; ++j) {
13084 unsigned i = IsBigEndian ? NumOps - 1 - j : j;
13086 unsigned BitPos = j * EltWidth;
13089 SplatUndef.
setBits(BitPos, BitPos + EltWidth);
13090 else if (
auto *CN = dyn_cast<ConstantSDNode>(OpVal))
13091 SplatValue.
insertBits(CN->getAPIntValue().zextOrTrunc(EltWidth), BitPos);
13092 else if (
auto *CN = dyn_cast<ConstantFPSDNode>(OpVal))
13093 SplatValue.
insertBits(CN->getValueAPF().bitcastToAPInt(), BitPos);
13100 HasAnyUndefs = (SplatUndef != 0);
13103 while (VecWidth > 8) {
13108 unsigned HalfSize = VecWidth / 2;
13115 if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) ||
13116 MinSplatBits > HalfSize)
13119 SplatValue = HighValue | LowValue;
13120 SplatUndef = HighUndef & LowUndef;
13122 VecWidth = HalfSize;
13131 SplatBitSize = VecWidth;
13138 if (UndefElements) {
13139 UndefElements->
clear();
13140 UndefElements->
resize(NumOps);
13146 for (
unsigned i = 0; i != NumOps; ++i) {
13147 if (!DemandedElts[i])
13150 if (
Op.isUndef()) {
13152 (*UndefElements)[i] =
true;
13153 }
else if (!Splatted) {
13155 }
else if (Splatted !=
Op) {
13161 unsigned FirstDemandedIdx = DemandedElts.
countr_zero();
13163 "Can only have a splat without a constant for all undefs.");
13180 if (UndefElements) {
13181 UndefElements->
clear();
13182 UndefElements->
resize(NumOps);
13190 for (
unsigned I = 0;
I != NumOps; ++
I)
13192 (*UndefElements)[
I] =
true;
13195 for (
unsigned SeqLen = 1; SeqLen < NumOps; SeqLen *= 2) {
13196 Sequence.append(SeqLen,
SDValue());
13197 for (
unsigned I = 0;
I != NumOps; ++
I) {
13198 if (!DemandedElts[
I])
13200 SDValue &SeqOp = Sequence[
I % SeqLen];
13202 if (
Op.isUndef()) {
13207 if (SeqOp && !SeqOp.
isUndef() && SeqOp !=
Op) {
13213 if (!Sequence.empty())
13217 assert(Sequence.empty() &&
"Failed to empty non-repeating sequence pattern");
13230 return dyn_cast_or_null<ConstantSDNode>(
13236 return dyn_cast_or_null<ConstantSDNode>(
getSplatValue(UndefElements));
13242 return dyn_cast_or_null<ConstantFPSDNode>(
13248 return dyn_cast_or_null<ConstantFPSDNode>(
getSplatValue(UndefElements));
13255 dyn_cast_or_null<ConstantFPSDNode>(
getSplatValue(UndefElements))) {
13258 const APFloat &APF = CN->getValueAPF();
13264 return IntVal.exactLogBase2();
13270 bool IsLittleEndian,
unsigned DstEltSizeInBits,
13278 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
13279 "Invalid bitcast scale");
13284 BitVector SrcUndeElements(NumSrcOps,
false);
13286 for (
unsigned I = 0;
I != NumSrcOps; ++
I) {
13288 if (
Op.isUndef()) {
13289 SrcUndeElements.
set(
I);
13292 auto *CInt = dyn_cast<ConstantSDNode>(
Op);
13293 auto *CFP = dyn_cast<ConstantFPSDNode>(
Op);
13294 assert((CInt || CFP) &&
"Unknown constant");
13295 SrcBitElements[
I] = CInt ? CInt->getAPIntValue().trunc(SrcEltSizeInBits)
13296 : CFP->getValueAPF().bitcastToAPInt();
13300 recastRawBits(IsLittleEndian, DstEltSizeInBits, RawBitElements,
13301 SrcBitElements, UndefElements, SrcUndeElements);
13306 unsigned DstEltSizeInBits,
13311 unsigned NumSrcOps = SrcBitElements.
size();
13312 unsigned SrcEltSizeInBits = SrcBitElements[0].getBitWidth();
13313 assert(((NumSrcOps * SrcEltSizeInBits) % DstEltSizeInBits) == 0 &&
13314 "Invalid bitcast scale");
13315 assert(NumSrcOps == SrcUndefElements.
size() &&
13316 "Vector size mismatch");
13318 unsigned NumDstOps = (NumSrcOps * SrcEltSizeInBits) / DstEltSizeInBits;
13319 DstUndefElements.
clear();
13320 DstUndefElements.
resize(NumDstOps,
false);
13324 if (SrcEltSizeInBits <= DstEltSizeInBits) {
13325 unsigned Scale = DstEltSizeInBits / SrcEltSizeInBits;
13326 for (
unsigned I = 0;
I != NumDstOps; ++
I) {
13327 DstUndefElements.
set(
I);
13328 APInt &DstBits = DstBitElements[
I];
13329 for (
unsigned J = 0; J != Scale; ++J) {
13330 unsigned Idx = (
I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
13331 if (SrcUndefElements[
Idx])
13333 DstUndefElements.
reset(
I);
13334 const APInt &SrcBits = SrcBitElements[
Idx];
13336 "Illegal constant bitwidths");
13337 DstBits.
insertBits(SrcBits, J * SrcEltSizeInBits);
13344 unsigned Scale = SrcEltSizeInBits / DstEltSizeInBits;
13345 for (
unsigned I = 0;
I != NumSrcOps; ++
I) {
13346 if (SrcUndefElements[
I]) {
13347 DstUndefElements.
set(
I * Scale, (
I + 1) * Scale);
13350 const APInt &SrcBits = SrcBitElements[
I];
13351 for (
unsigned J = 0; J != Scale; ++J) {
13352 unsigned Idx = (
I * Scale) + (IsLittleEndian ? J : (Scale - J - 1));
13353 APInt &DstBits = DstBitElements[
Idx];
13354 DstBits = SrcBits.
extractBits(DstEltSizeInBits, J * DstEltSizeInBits);
13361 unsigned Opc =
Op.getOpcode();
13368std::optional<std::pair<APInt, APInt>>
13372 return std::nullopt;
13376 return std::nullopt;
13383 return std::nullopt;
13385 for (
unsigned i = 2; i < NumOps; ++i) {
13387 return std::nullopt;
13390 if (Val != (Start + (Stride * i)))
13391 return std::nullopt;
13394 return std::make_pair(Start, Stride);
13410 for (
int Idx = Mask[i]; i != e; ++i)
13411 if (Mask[i] >= 0 && Mask[i] !=
Idx)
13419 SDValue N,
bool AllowOpaques)
const {
13422 if (
auto *
C = dyn_cast<ConstantSDNode>(
N))
13423 return AllowOpaques || !
C->isOpaque();
13430 if (
auto *GA = dyn_cast<GlobalAddressSDNode>(
N))
13436 isa<ConstantSDNode>(
N.getOperand(0)))
13443 if (isa<ConstantFPSDNode>(
N))
13450 isa<ConstantFPSDNode>(
N.getOperand(0)))
13457 bool AllowTruncation)
const {
13460 return std::nullopt;
13462 const APInt &CVal = Const->getAPIntValue();
13469 return std::nullopt;
13475 return std::nullopt;
13483 assert(!Node->OperandList &&
"Node already has operands");
13485 "too many operands to fit into SDNode");
13486 SDUse *Ops = OperandRecycler.allocate(
13489 bool IsDivergent =
false;
13490 for (
unsigned I = 0;
I != Vals.
size(); ++
I) {
13491 Ops[
I].setUser(Node);
13492 Ops[
I].setInitial(Vals[
I]);
13496 if (VT != MVT::Other &&
13498 Ops[
I].
getNode()->isDivergent()) {
13499 IsDivergent =
true;
13503 Node->OperandList = Ops;
13506 Node->SDNodeBits.IsDivergent = IsDivergent;
13514 while (Vals.
size() > Limit) {
13515 unsigned SliceIdx = Vals.
size() - Limit;
13591 const SDLoc &DLoc) {
13596 Entry.Ty =
Ptr.getValueType().getTypeForEVT(*
getContext());
13597 Args.push_back(Entry);
13609 assert(
From && To &&
"Invalid SDNode; empty source SDValue?");
13610 auto I = SDEI.find(
From);
13611 if (
I == SDEI.end())
13616 NodeExtraInfo NEI =
I->second;
13625 SDEI[To] = std::move(NEI);
13644 Leafs.emplace_back(
N);
13647 if (!FromReach.
insert(
N).second)
13655 auto DeepCopyTo = [&](
auto &&Self,
const SDNode *
N) {
13658 if (!Visited.
insert(
N).second)
13663 if (!Self(Self,
Op.getNode()))
13683 for (
const SDNode *
N : StartFrom)
13684 VisitFrom(VisitFrom,
N,
MaxDepth - PrevDepth);
13696 errs() <<
"warning: incomplete propagation of SelectionDAG::NodeExtraInfo\n";
13697 assert(
false &&
"From subgraph too complex - increase max. MaxDepth?");
13699 SDEI[To] = std::move(NEI);
13713 if (!Visited.
insert(
N).second) {
13714 errs() <<
"Detected cycle in SelectionDAG\n";
13715 dbgs() <<
"Offending node:\n";
13716 N->dumprFull(DAG);
dbgs() <<
"\n";
13732 bool check = force;
13733#ifdef EXPENSIVE_CHECKS
13737 assert(
N &&
"Checking nonexistent SDNode");
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
Function Alias Analysis Results
This file implements the BitVector class.
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Analysis containing CSE Info
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...
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
Looks at all the uses of the given value Returns the Liveness deduced from the uses of this value Adds all uses that cause the result to be MaybeLive to MaybeLiveRetUses If the result is MaybeLiveUses might be modified but its content should be ignored(since it might not be complete). DeadArgumentEliminationPass
Given that RA is a live propagate it s liveness to any other values it uses(according to Uses). void DeadArgumentEliminationPass
Given that RA is a live value
This file defines the DenseSet and SmallDenseSet classes.
This file contains constants used for implementing Dwarf debug support.
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
This file defines a hash set that can be used to remove duplication of nodes in a graph.
static const unsigned MaxDepth
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)
mir Rename Register Operands
This file declares the MachineConstantPool class which is an abstract constant pool to keep track of ...
unsigned const TargetRegisterInfo * TRI
This file provides utility analysis objects describing memory locations.
static unsigned getReg(const MCDisassembler *D, unsigned RC, unsigned RegNo)
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
PowerPC Reduce CR logical Operation
const SmallVectorImpl< MachineOperand > & Cond
Remove Loads Into Fake Uses
Contains matchers for matching SelectionDAG nodes and values.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
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 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 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, AAResults *AA)
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 bool canFoldStoreIntoLibCallOutputPointers(StoreSDNode *StoreNode, SDNode *FPNode)
Given a store node StoreNode, return true if it is safe to fold that node into FPNode,...
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 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 VerifySDNode(SDNode *N, const TargetLowering *TLI)
VerifySDNode - Check the given SDNode. Aborts if it is invalid.
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.
This file describes how to lower LLVM code to machine code.
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 unsigned getSize(unsigned Kind)
bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal=false)
Checks whether the given location points to constant memory, or if OrLocal is true whether it points ...
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)
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.
APInt umul_ov(const APInt &RHS, bool &Overflow) const
APInt usub_sat(const APInt &RHS) const
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.
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.
APInt getHiBits(unsigned numBits) const
Compute an APInt containing numBits highbits from this APInt.
APInt zextOrTrunc(unsigned width) const
Zero extend or truncate to width.
unsigned getActiveBits() const
Compute the number of active bits in the value.
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.
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.
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
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.
APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
void clearAllBits()
Set every bit to 0.
APInt rotr(unsigned rotateAmt) const
Rotate right by rotateAmt.
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 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.
APInt sshl_sat(const APInt &RHS) const
APInt ushl_sat(const APInt &RHS) const
APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
APInt rotl(unsigned rotateAmt) const
Rotate left by rotateAmt.
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
APInt uadd_sat(const APInt &RHS) const
APInt ashr(unsigned ShiftAmt) const
Arithmetic right-shift function.
void setAllBits()
Set every bit to 1.
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.
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.
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.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
void setLowBits(unsigned loBits)
Set the bottom loBits bits.
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.
APInt ssub_sat(const APInt &RHS) const
An arbitrary precision integer that knows its signedness.
Recycle small arrays allocated from a BumpPtrAllocator.
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.
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
This is an SDNode representing atomic operations.
static BaseIndexOffset match(const SDNode *N, const SelectionDAG &DAG)
Parses tree in N for base, index, offset addresses.
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.
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 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.
bool getRepeatedSequence(const APInt &DemandedElts, SmallVectorImpl< SDValue > &Sequence, BitVector *UndefElements=nullptr) const
Find the shortest repeating sequence of values in the build vector.
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.
std::optional< std::pair< APInt, APInt > > isConstantSequence() const
If this BuildVector is constant and represents the numerical series "<a, a+n, a+2n,...
SDValue getSplatValue(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted value or a null value if this is not a splat.
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.
ConstantSDNode * getConstantSplatNode(const APInt &DemandedElts, BitVector *UndefElements=nullptr) const
Returns the demanded splatted constant or null if this is not a constant splat.
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_ATTRIBUTE_RETURNS_NONNULL void * Allocate(size_t Size, Align Alignment)
Allocate space at the specified alignment.
void Reset()
Deallocate all but the current slab and reset the current pointer to the beginning of it,...
This class represents a function call, abstracting a target machine's calling convention.
static 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.
bool isMachineConstantPoolEntry() const
This class represents a range of values.
ConstantRange multiply(const ConstantRange &Other) const
Return a new range representing the possible values resulting from a multiplication of a value in thi...
const APInt * getSingleElement() const
If this set contains a single element, return it, otherwise return null.
static ConstantRange fromKnownBits(const KnownBits &Known, bool IsSigned)
Initialize a range based on a known bits constraint.
OverflowResult unsignedSubMayOverflow(const ConstantRange &Other) const
Return whether unsigned sub of the two ranges always/never overflows.
OverflowResult unsignedAddMayOverflow(const ConstantRange &Other) const
Return whether unsigned add of the two ranges always/never overflows.
KnownBits toKnownBits() const
Return known bits for values in this range.
ConstantRange zeroExtend(uint32_t BitWidth) const
Return a new range in the specified integer type, which must be strictly larger than the current type...
APInt getSignedMin() const
Return the smallest signed value contained in the ConstantRange.
OverflowResult unsignedMulMayOverflow(const ConstantRange &Other) const
Return whether unsigned mul of the two ranges always/never overflows.
ConstantRange signExtend(uint32_t BitWidth) const
Return a new range in the specified integer type, which must be strictly larger than the current type...
bool contains(const APInt &Val) const
Return true if the specified value is in the set.
APInt getUnsignedMax() const
Return the largest unsigned value contained in the ConstantRange.
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.
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.
Constant * getSplatValue(bool AllowPoison=false) const
If all elements of the vector constant have the same value, return that value.
Constant * getAggregateElement(unsigned Elt) const
For aggregates (struct/array/vector) return the constant that corresponds to the specified element if...
static ExtOps getExtOps(unsigned FromSize, unsigned ToSize, bool Signed)
Returns the ops for a zero- or sign-extension in a DIExpression.
static void appendOffset(SmallVectorImpl< uint64_t > &Ops, int64_t Offset)
Append Ops with operations to apply the Offset.
static 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 const DIExpression * convertToVariadicExpression(const DIExpression *Expr)
If Expr is a non-variadic expression (i.e.
static 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.
This class represents an Operation in the Expression.
uint64_t getNumOperands() const
A parsed version of the target data layout string in and methods for querying it.
bool isLittleEndian() const
Layout endianness...
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.
Align getABITypeAlign(Type *Ty) const
Returns the minimum ABI-required alignment for the specified type.
unsigned getPointerTypeSizeInBits(Type *) const
Layout pointer size, in bits, based on the type.
Align getPrefTypeAlign(Type *Ty) const
Returns the preferred stack/global alignment for the specified type.
void reserve(size_type NumEntries)
Grow the densemap so that it can contain at least NumEntries items before resizing again.
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.
MachineBasicBlock * MBB
MBB - The current block.
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.
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
int64_t getOffset() const
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...
static bool compare(const APInt &LHS, const APInt &RHS, ICmpInst::Predicate Pred)
Return result of LHS Pred RHS comparison.
constexpr bool isValid() const
This is an important class for using LLVM in a threaded context.
This SDNode is used for LIFETIME_START/LIFETIME_END values, which indicate the offet and size that ar...
This class is used to represent ISD::LOAD nodes.
static LocationSize precise(uint64_t Value)
TypeSize getValue() const
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
static MVT getIntegerVT(unsigned BitWidth)
const BasicBlock * getBasicBlock() const
Return the LLVM basic block that this instance corresponded to originally.
Abstract base class for all machine specific constantpool value subclasses.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
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.
MachineMemOperand * getMachineMemOperand(MachinePointerInfo PtrInfo, MachineMemOperand::Flags f, LLT MemTy, Align base_alignment, const AAMDNodes &AAInfo=AAMDNodes(), const MDNode *Ranges=nullptr, SyncScope::ID SSID=SyncScope::System, AtomicOrdering Ordering=AtomicOrdering::NotAtomic, AtomicOrdering FailureOrdering=AtomicOrdering::NotAtomic)
getMachineMemOperand - Allocate a new MachineMemOperand.
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.
LocationSize getSize() const
Return the size in bytes of the memory reference.
bool isNonTemporal() const
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,.
bool isDereferenceable() const
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.
MemSDNode(unsigned Opc, unsigned Order, const DebugLoc &dl, SDVTList VTs, EVT memvt, MachineMemOperand *MMO)
MachineMemOperand * MMO
Memory reference information.
MachineMemOperand * getMemOperand() const
Return a MachineMemOperand object describing the memory reference performed by operation.
const MachinePointerInfo & getPointerInfo() const
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'.
static PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
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.
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.
BumpPtrAllocator & getAlloc()
void add(SDDbgValue *V, bool isParameter)
void erase(const SDNode *Node)
Invalidate all DbgValues attached to the node and remove it from the Node-to-DbgValues map.
ArrayRef< SDDbgValue * > getSDDbgValues(const SDNode *Node) const
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(unsigned 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.
void dumprFull(const SelectionDAG *G=nullptr) const
printrFull to dbgs().
unsigned getOpcode() const
Return the SelectionDAG opcode value for this node.
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
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.
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 bool areOnlyUsersOf(ArrayRef< const SDNode * > Nodes, const SDNode *N)
Return true if all the users of N are contained in Nodes.
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.
bool hasPredecessor(const SDNode *N) const
Return true if N is a predecessor of this node.
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
Return true if the type of the node type undefined.
bool hasNUsesOfValue(unsigned NUses, unsigned Value) const
Return true if there are exactly NUSES uses of the indicated value.
op_iterator op_end() const
op_iterator op_begin() const
void DropOperands()
Release the operands and set this node to have zero operands.
Represents a use of a SDNode.
EVT getValueType() const
Convenience function for get().getValueType().
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.
bool isOperandOf(const SDNode *N) const
Return true if this node is an operand of N.
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 SDValue EmitTargetCodeForMemset(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo) const
Emit target-specific code that performs a memset.
virtual SDValue EmitTargetCodeForMemmove(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool isVolatile, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const
Emit target-specific code that performs a memmove.
virtual SDValue EmitTargetCodeForMemcpy(SelectionDAG &DAG, const SDLoc &dl, SDValue Chain, SDValue Op1, SDValue Op2, SDValue Op3, Align Alignment, bool isVolatile, bool AlwaysInline, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo) const
Emit target-specific code that performs a memcpy.
SDNodeFlags getFlags() const
This is used to represent a portion of an LLVM function in a low-level Data Dependence DAG representa...
Align getReducedAlign(EVT VT, bool UseABI)
In most cases this function returns the ABI alignment for a given type, except for illegal vector typ...
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.
SDValue getShiftAmountOperand(EVT LHSTy, SDValue Op)
Return the specified value casted to the target's desired shift amount type.
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())
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 getSplatSourceVector(SDValue V, int &SplatIndex)
If V is a splatted value, return the source vector and its splat index.
SDValue getLabelNode(unsigned Opcode, const SDLoc &dl, SDValue Root, MCSymbol *Label)
OverflowKind computeOverflowForUnsignedSub(SDValue N0, SDValue N1) const
Determine if the result of the unsigned sub of 2 nodes can overflow.
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.
SDValue getMaskedGather(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType, ISD::LoadExtType ExtTy)
bool isKnownNeverSNaN(SDValue Op, unsigned Depth=0) const
SDValue getAddrSpaceCast(const SDLoc &dl, EVT VT, SDValue Ptr, unsigned SrcAS, unsigned DestAS)
Return an AddrSpaceCastSDNode.
SDValue getStackArgumentTokenFactor(SDValue Chain)
Compute a TokenFactor to force all the incoming stack arguments to be loaded from the stack.
const TargetSubtargetInfo & getSubtarget() const
SDValue getMergeValues(ArrayRef< SDValue > Ops, const SDLoc &dl)
Create a MERGE_VALUES node from the given operands.
SDVTList getVTList(EVT VT)
Return an SDVTList that represents the list of values specified.
SDValue getShiftAmountConstant(uint64_t Val, EVT VT, const SDLoc &DL)
void updateDivergence(SDNode *N)
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...
SDValue FoldSetCC(EVT VT, SDValue N1, SDValue N2, ISD::CondCode Cond, const SDLoc &dl)
Constant fold a setcc to true or false.
SDValue getAllOnesConstant(const SDLoc &DL, EVT VT, bool IsTarget=false, bool IsOpaque=false)
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),...
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.
SDValue getNeutralElement(unsigned Opcode, const SDLoc &DL, EVT VT, SDNodeFlags Flags)
Get the (commutative) neutral element for the given opcode, if it exists.
SDValue getAtomicMemset(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Value, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo)
SDValue getVScale(const SDLoc &DL, EVT VT, APInt MulImm, bool ConstantFold=true)
Return a node that represents the runtime scaling 'MulImm * RuntimeVL'.
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,...
SDValue getFreeze(SDValue V)
Return a freeze using the SDLoc of the value operand.
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,...
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(), AAResults *AA=nullptr)
SelectionDAG(const TargetMachine &TM, CodeGenOptLevel)
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())
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...
SDValue getConstantPool(const Constant *C, EVT VT, MaybeAlign Align=std::nullopt, int Offs=0, bool isT=false, unsigned TargetFlags=0)
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)
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.
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...
bool isConstantIntBuildVectorOrConstantInt(SDValue N, bool AllowOpaques=true) const
Test whether the given value is a constant int or similar node.
SDDbgValue * getVRegDbgValue(DIVariable *Var, DIExpression *Expr, unsigned VReg, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a VReg SDDbgValue node.
void ReplaceAllUsesOfValuesWith(const SDValue *From, const SDValue *To, unsigned Num)
Like ReplaceAllUsesOfValueWith, but for multiple values at once.
SDValue getJumpTableDebugInfo(int JTI, SDValue Chain, const SDLoc &DL)
SDValue getSetCC(const SDLoc &DL, EVT VT, SDValue LHS, SDValue RHS, ISD::CondCode Cond, SDValue Chain=SDValue(), bool IsSignaling=false)
Helper function to make it easier to build SetCC's if you just have an ISD::CondCode instead of an SD...
SDValue getSymbolFunctionGlobalAddress(SDValue Op, Function **TargetFunction=nullptr)
Return a GlobalAddress of the function from the current module with name matching the given ExternalS...
SDValue UnrollVectorOp(SDNode *N, unsigned ResNE=0)
Utility function used by legalize and lowering to "unroll" a vector operation by splitting out the sc...
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 unsigned getHasPredecessorMaxSteps()
bool haveNoCommonBitsSet(SDValue A, SDValue B) const
Return true if A and B have no common bits set.
bool cannotBeOrderedNegativeFP(SDValue Op) const
Test whether the given float value is known to be positive.
SDValue getRegister(Register Reg, EVT VT)
bool calculateDivergence(SDNode *N)
SDValue getElementCount(const SDLoc &DL, EVT VT, ElementCount EC, bool ConstantFold=true)
SDValue getGetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
SDValue getAssertAlign(const SDLoc &DL, SDValue V, Align A)
Return an AssertAlignSDNode.
SDNode * mutateStrictFPToFP(SDNode *Node)
Mutate the specified strict FP node to its non-strict equivalent, unlinking the node from its chain a...
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,...
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...
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 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.
std::optional< uint64_t > 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...
Align getEVTAlign(EVT MemoryVT) const
Compute the default alignment value for the given type.
bool shouldOptForSize() const
SDValue getNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a bitwise NOT operation as (XOR Val, -1).
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
bool isEqualTo(SDValue A, SDValue B) const
Test whether two SDValues are known to compare equal.
static constexpr unsigned MaxRecursionDepth
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)
SDValue expandVACopy(SDNode *Node)
Expand the specified ISD::VACOPY node as the Legalize pass would.
SDValue getIndexedMaskedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
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.
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...
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...
void salvageDebugInfo(SDNode &N)
To be invoked on an SDNode that is slated to be erased.
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.
std::pair< SDValue, SDValue > UnrollVectorOverflowOp(SDNode *N, unsigned ResNE=0)
Like UnrollVectorOp(), but for the [US](ADD|SUB|MUL)O family of opcodes.
allnodes_const_iterator allnodes_begin() const
SDValue getUNDEF(EVT VT)
Return an UNDEF node. UNDEF does not have a useful SDLoc.
SDValue 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.
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...
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.
void DeleteNode(SDNode *N)
Remove the specified node from the system.
SDValue getBitcast(EVT VT, SDValue V)
Return a bitcast using the SDLoc of the value operand, and casting to the provided type.
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.
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...
SDValue getNegative(SDValue Val, const SDLoc &DL, EVT VT)
Create negative operation as (SUB 0, Val).
void setNodeMemRefs(MachineSDNode *N, ArrayRef< MachineMemOperand * > NewMemRefs)
Mutate the specified machine node's memory references to the provided list.
SDValue simplifySelect(SDValue Cond, SDValue TVal, SDValue FVal)
Try to simplify a select/vselect into 1 of its operands or a constant.
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.
bool isConstantFPBuildVectorOrConstantFP(SDValue N) const
Test whether the given value is a constant FP or similar node.
const DataLayout & getDataLayout() const
SDValue expandVAArg(SDNode *Node)
Expand the specified ISD::VAARG node as the Legalize pass would.
SDValue getTokenFactor(const SDLoc &DL, SmallVectorImpl< SDValue > &Vals)
Creates a new TokenFactor containing Vals.
bool doesNodeExist(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops)
Check if a node exists without modifying its flags.
bool areNonVolatileConsecutiveLoads(LoadSDNode *LD, LoadSDNode *Base, unsigned Bytes, int Dist) const
Return true if loads are next to each other and can be merged.
SDValue getMaskedHistogram(SDVTList VTs, EVT MemVT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
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(), AAResults *AA=nullptr)
SDDbgLabel * getDbgLabel(DILabel *Label, const DebugLoc &DL, unsigned O)
Creates a SDDbgLabel node.
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)
OverflowKind computeOverflowForUnsignedMul(SDValue N0, SDValue N1) const
Determine if the result of the unsigned mul of 2 nodes can overflow.
void copyExtraInfo(SDNode *From, SDNode *To)
Copy extra info associated with one node to another.
SDValue getConstant(uint64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
Create a ConstantSDNode wrapping a constant value.
SDValue getMemBasePlusOffset(SDValue Base, TypeSize Offset, const SDLoc &DL, const SDNodeFlags Flags=SDNodeFlags())
Returns sum of the base pointer and offset.
SDValue getGlobalAddress(const GlobalValue *GV, const SDLoc &DL, EVT VT, int64_t offset=0, bool isTargetGA=false, unsigned TargetFlags=0)
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.
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())
SDValue getMDNode(const MDNode *MD)
Return an MDNodeSDNode which holds an MDNode.
void clear()
Clear state and free memory necessary to make this SelectionDAG ready to process a new block.
void ReplaceAllUsesWith(SDValue From, SDValue To)
Modify anything using 'From' to use 'To' instead.
SDValue getCommutedVectorShuffle(const ShuffleVectorSDNode &SV)
Returns an ISD::VECTOR_SHUFFLE node semantically equivalent to the shuffle node in input but with swa...
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.
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.
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,...
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.
SDValue getSignedConstant(int64_t Val, const SDLoc &DL, EVT VT, bool isTarget=false, bool isOpaque=false)
SDValue getIndexedLoadVP(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
SDValue getSrcValue(const Value *v)
Construct a node to track a Value* through the backend.
SDValue getSplatVector(EVT VT, const SDLoc &DL, SDValue Op)
SDValue getAtomicMemcpy(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
OverflowKind computeOverflowForSignedMul(SDValue N0, SDValue N1) const
Determine if the result of the signed mul of 2 nodes can overflow.
MaybeAlign InferPtrAlign(SDValue Ptr) const
Infer alignment of a load / store address.
bool MaskedValueIsAllOnes(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if '(Op & Mask) == Mask'.
bool SignBitIsZero(SDValue Op, unsigned Depth=0) const
Return true if the sign bit of Op is known to be zero.
void RemoveDeadNodes()
This method deletes all unreachable nodes in the SelectionDAG.
void RemoveDeadNode(SDNode *N)
Remove the specified node from the system.
void AddDbgLabel(SDDbgLabel *DB)
Add a dbg_label SDNode.
bool isConstantValueOfAnyType(SDValue N) const
SDValue getTargetExtractSubreg(int SRIdx, const SDLoc &DL, EVT VT, SDValue Operand)
A convenience function for creating TargetInstrInfo::EXTRACT_SUBREG nodes.
SDValue getBasicBlock(MachineBasicBlock *MBB)
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...
bool isKnownToBeAPowerOfTwo(SDValue Val, unsigned Depth=0) const
Test if the given value is known to have exactly one bit set.
SDValue getPartialReduceAdd(SDLoc DL, EVT ReducedTy, SDValue Op1, SDValue Op2)
Create the DAG equivalent of vector_partial_reduce where Op1 and Op2 are its operands and ReducedTY i...
SDValue getEHLabel(const SDLoc &dl, SDValue Root, MCSymbol *Label)
SDValue getIndexedStoreVP(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
bool isKnownNeverZero(SDValue Op, unsigned Depth=0) const
Test whether the given SDValue is known to contain non-zero value(s).
SDValue getIndexedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
SDValue FoldConstantArithmetic(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops, SDNodeFlags Flags=SDNodeFlags())
SDValue getSetFPEnv(SDValue Chain, const SDLoc &dl, SDValue Ptr, EVT MemVT, MachineMemOperand *MMO)
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 ...
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)
SDValue getExternalSymbol(const char *Sym, EVT VT)
const TargetMachine & getTarget() const
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...
std::pair< SDValue, SDValue > SplitEVL(SDValue N, EVT VecVT, const SDLoc &DL)
Split the explicit vector length parameter of a VP operation.
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...
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,...
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()
SDValue getBlockAddress(const BlockAddress *BA, EVT VT, int64_t Offset=0, bool isTarget=false, unsigned TargetFlags=0)
SDValue WidenVector(const SDValue &N, const SDLoc &DL)
Widen the vector up to the next power of two using INSERT_SUBVECTOR.
bool isKnownNeverZeroFloat(SDValue Op) const
Test whether the given floating point SDValue is known to never be positive or negative zero.
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)
SDValue getIntPtrConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
SDDbgValue * getConstantDbgValue(DIVariable *Var, DIExpression *Expr, const Value *C, const DebugLoc &DL, unsigned O)
Creates a constant SDDbgValue node.
SDValue getScatterVP(SDVTList VTs, EVT VT, const SDLoc &dl, ArrayRef< SDValue > Ops, MachineMemOperand *MMO, ISD::MemIndexType IndexType)
SDValue getValueType(EVT)
ArrayRef< SDDbgValue * > GetDbgValues(const SDNode *SD) const
Get the debug values which reference the given SDNode.
SDValue getNode(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDUse > Ops)
Gets or creates the specified node.
OverflowKind computeOverflowForSignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the signed addition of 2 nodes can overflow.
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...
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
SDValue getAtomicMemmove(SDValue Chain, const SDLoc &dl, SDValue Dst, SDValue Src, SDValue Size, Type *SizeTy, unsigned ElemSz, bool isTailCall, MachinePointerInfo DstPtrInfo, MachinePointerInfo SrcPtrInfo)
bool isKnownNeverNaN(SDValue Op, 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.
SDValue getIndexedMaskedStore(SDValue OrigStore, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
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)
const TargetLibraryInfo & getLibInfo() const
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.
bool MaskedVectorIsZero(SDValue Op, const APInt &DemandedElts, unsigned Depth=0) const
Return true if 'Op' is known to be zero in DemandedElts.
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.
SDDbgValue * getFrameIndexDbgValue(DIVariable *Var, DIExpression *Expr, unsigned FI, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a FrameIndex SDDbgValue node.
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)
SDValue getJumpTable(int JTI, EVT VT, bool isTarget=false, unsigned TargetFlags=0)
bool isBaseWithConstantOffset(SDValue Op) const
Return true if the specified operand is an ISD::ADD with a ConstantSDNode on the right-hand side,...
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,...
SDValue getVectorIdxConstant(uint64_t Val, const SDLoc &DL, bool isTarget=false)
void ReplaceAllUsesOfValueWith(SDValue From, SDValue To)
Replace any uses of From with To, leaving uses of other values produced by From.getNode() alone.
MachineFunction & getMachineFunction() const
SDValue 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 ...
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.
OverflowKind computeOverflowForUnsignedAdd(SDValue N0, SDValue N1) const
Determine if the result of the unsigned addition of 2 nodes can overflow.
std::optional< uint64_t > 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...
SDValue getSplatBuildVector(EVT VT, const SDLoc &DL, SDValue Op)
Return a splat ISD::BUILD_VECTOR node, consisting of Op splatted to all elements.
SDValue getFrameIndex(int FI, EVT VT, bool isTarget=false)
SDValue getTruncStridedStoreVP(SDValue Chain, const SDLoc &DL, SDValue Val, SDValue Ptr, SDValue Stride, SDValue Mask, SDValue EVL, EVT SVT, MachineMemOperand *MMO, bool IsCompressing=false)
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...
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.
SDValue getRegisterMask(const uint32_t *RegMask)
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...
SDValue getCondCode(ISD::CondCode Cond)
SDValue getLifetimeNode(bool IsStart, const SDLoc &dl, SDValue Chain, int FrameIndex, int64_t Size, int64_t Offset=-1)
Creates a LifetimeSDNode that starts (IsStart==true) or ends (IsStart==false) the lifetime of the por...
bool MaskedValueIsZero(SDValue Op, const APInt &Mask, unsigned Depth=0) const
Return true if 'Op & Mask' is known to be zero.
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.
OverflowKind computeOverflowForSignedSub(SDValue N0, SDValue N1) const
Determine if the result of the signed sub of 2 nodes can overflow.
bool expandMultipleResultFPLibCall(RTLIB::Libcall LC, SDNode *Node, SmallVectorImpl< SDValue > &Results, std::optional< unsigned > CallRetResNo={})
Expands a node with multiple results to an FP or vector libcall.
std::optional< uint64_t > 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...
LLVMContext * getContext() const
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.
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=0, const AAMDNodes &AAInfo=AAMDNodes())
Creates a MemIntrinsicNode that may produce a result and takes a list of operands.
SDValue getTargetExternalSymbol(const char *Sym, EVT VT, unsigned TargetFlags=0)
SDValue getMCSymbol(MCSymbol *Sym, EVT VT)
bool isUndef(unsigned Opcode, ArrayRef< SDValue > Ops)
Return true if the result of this operation is always undefined.
SDValue CreateStackTemporary(TypeSize Bytes, Align Alignment)
Create a stack temporary based on the size in bytes and the alignment.
SDNode * UpdateNodeOperands(SDNode *N, SDValue Op)
Mutate the specified node in-place to have the specified operands.
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...
SDValue foldConstantFPMath(unsigned Opcode, const SDLoc &DL, EVT VT, ArrayRef< SDValue > Ops)
Fold floating-point operations when all operands are constants and/or undefined.
SDNode * getNodeIfExists(unsigned Opcode, SDVTList VTList, ArrayRef< SDValue > Ops, const SDNodeFlags Flags)
Get the specified node if it's already available, or else return NULL.
void init(MachineFunction &NewMF, OptimizationRemarkEmitter &NewORE, Pass *PassPtr, const TargetLibraryInfo *LibraryInfo, UniformityInfo *UA, ProfileSummaryInfo *PSIin, BlockFrequencyInfo *BFIin, MachineModuleInfo &MMI, FunctionVarLocs const *FnVarLocs)
Prepare this SelectionDAG to process code in the given MachineFunction.
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...
SDValue FoldSymbolOffset(unsigned Opcode, EVT VT, const GlobalAddressSDNode *GA, const SDNode *N2)
std::optional< bool > isBoolConstant(SDValue N, bool AllowTruncation=false) const
Check if a value \op N is a constant using the target's BooleanContent for its type.
SDValue getIndexedLoad(SDValue OrigLoad, const SDLoc &dl, SDValue Base, SDValue Offset, ISD::MemIndexedMode AM)
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.
SDDbgValue * getDbgValue(DIVariable *Var, DIExpression *Expr, SDNode *N, unsigned R, bool IsIndirect, const DebugLoc &DL, unsigned O)
Creates a SDDbgValue node.
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.
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.
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 ...
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...
SDValue getVectorShuffle(EVT VT, const SDLoc &dl, SDValue N1, SDValue N2, ArrayRef< int > Mask)
Return an ISD::VECTOR_SHUFFLE node.
SDValue simplifyShift(SDValue X, SDValue Y)
Try to simplify a shift into 1 of its operands or a constant.
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 ...
SDValue getLogicalNOT(const SDLoc &DL, SDValue Val, EVT VT)
Create a logical NOT operation as (XOR Val, BooleanOne).
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...
static bool isSplatMask(const int *Mask, EVT VT)
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.
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.
const VecDesc * getVectorMappingInfo(StringRef F, const ElementCount &VF, bool Masked) const
CallingConv::ID getLibcallCallingConv(RTLIB::Libcall Call) const
Get the CallingConv that should be used for the specified libcall.
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.
virtual bool isSExtCheaperThanZExt(EVT FromTy, EVT ToTy) const
Return true if sign-extension from FromTy to ToTy is cheaper than zero-extension.
virtual MVT getVectorIdxTy(const DataLayout &DL) const
Returns the type to be used for the index operand of: ISD::INSERT_VECTOR_ELT, ISD::EXTRACT_VECTOR_ELT...
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.
virtual bool isCommutativeBinOp(unsigned Opcode) const
Returns true if the opcode is a commutative binary operation.
virtual ISD::NodeType getExtendForAtomicOps() const
Returns how the platform's atomic operations are extended (ZERO_EXTEND, SIGN_EXTEND,...
EVT getShiftAmountTy(EVT LHSTy, const DataLayout &DL) const
Returns the type for the shift amount of a shift opcode.
virtual bool isExtractSubvectorCheap(EVT ResVT, EVT SrcVT, unsigned Index) const
Return true if EXTRACT_SUBVECTOR is cheap for extracting this result type from this source type with ...
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 getSetCCResultType(const DataLayout &DL, LLVMContext &Context, EVT VT) const
Return the ValueType of the result of SETCC operations.
virtual EVT getTypeToTransformTo(LLVMContext &Context, EVT VT) const
For types supported by the target, this is an identity function.
BooleanContent getBooleanContents(bool isVec, bool isFloat) const
For targets without i1 registers, this gives the nature of the high-bits of boolean values held in ty...
bool isCondCodeLegal(ISD::CondCode CC, MVT VT) const
Return true if the specified condition code is legal for a comparison of the specified types on this ...
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
virtual MVT getPointerTy(const DataLayout &DL, uint32_t AS=0) const
Return the pointer type for the given address space, defaults to the pointer type from the data layou...
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
BooleanContent
Enum that describes how the target represents true/false values.
@ ZeroOrOneBooleanContent
@ UndefinedBooleanContent
@ ZeroOrNegativeOneBooleanContent
unsigned getMaxStoresPerMemmove(bool OptSize) const
Get maximum # of store operations permitted for llvm.memmove.
virtual unsigned getMaxGluedStoresPerMemcpy() const
Get maximum # of store operations to be glued together.
Align getMinStackArgumentAlignment() const
Return the minimum stack alignment of an argument.
LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const
Return how we should legalize values of this type, either it is already legal (return 'Legal') or we ...
const char * getLibcallName(RTLIB::Libcall Call) const
Get the libcall routine name for the specified libcall.
std::vector< ArgListEntry > ArgListTy
virtual bool hasVectorBlend() const
Return true if the target has a vector blend instruction.
unsigned getMaxStoresPerMemset(bool OptSize) const
Get maximum # of store operations permitted for llvm.memset.
MVT getFrameIndexTy(const DataLayout &DL) const
Return the type for frame index, which is determined by the alloca address space specified through th...
virtual bool isLegalStoreImmediate(int64_t Value) const
Return true if the specified immediate is legal for the value input of a store instruction.
unsigned getVectorTypeBreakdown(LLVMContext &Context, EVT VT, EVT &IntermediateVT, unsigned &NumIntermediates, MVT &RegisterVT) const
Vector types are broken down into some number of legal first class types.
static ISD::NodeType getExtendForContent(BooleanContent Content)
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
virtual void computeKnownBitsForFrameIndex(int FIOp, KnownBits &Known, const MachineFunction &MF) const
Determine which of the bits of FrameIndex FIOp are known to be 0.
virtual unsigned ComputeNumSignBitsForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const
This method can be implemented by targets that want to expose additional information about sign bits ...
virtual void verifyTargetSDNode(const SDNode *N) const
Check the given SDNode. Aborts if it is invalid.
virtual bool findOptimalMemOpLowering(std::vector< EVT > &MemOps, unsigned Limit, const MemOp &Op, unsigned DstAS, unsigned SrcAS, const AttributeList &FuncAttributes) 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.
virtual bool isKnownNeverNaNForTargetNode(SDValue Op, const SelectionDAG &DAG, bool SNaN=false, unsigned Depth=0) const
If SNaN is false,.
virtual void computeKnownBitsForTargetNode(const SDValue Op, KnownBits &Known, const APInt &DemandedElts, const SelectionDAG &DAG, unsigned Depth=0) const
Determine which of the bits specified in Mask are known to be either zero or one and return them in t...
virtual bool isSDNodeSourceOfDivergence(const SDNode *N, FunctionLoweringInfo *FLI, UniformityInfo *UA) const
virtual bool isSDNodeAlwaysUniform(const SDNode *N) const
virtual bool isSplatValueForTargetNode(SDValue Op, const APInt &DemandedElts, APInt &UndefElts, const SelectionDAG &DAG, unsigned Depth=0) const
Return true if vector Op has the same value across all DemandedElts, indicating any elements which ma...
virtual bool isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const
Return true if folding a constant offset with the given GlobalAddress is legal.
virtual const Constant * getTargetConstantFromLoad(LoadSDNode *LD) const
This method returns the constant pool value that will be loaded by LD.
virtual bool isGAPlusOffset(SDNode *N, const GlobalValue *&GA, int64_t &Offset) const
Returns true (and the GlobalValue and the offset) if the node is a GlobalAddress + offset.
virtual bool isGuaranteedNotToBeUndefOrPoisonForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, bool PoisonOnly, unsigned Depth) const
Return true if this function can prove that Op is never poison and, if PoisonOnly is false,...
virtual bool canCreateUndefOrPoisonForTargetNode(SDValue Op, const APInt &DemandedElts, const SelectionDAG &DAG, bool PoisonOnly, bool ConsiderFlags, unsigned Depth) const
Return true if Op can create undef or poison from non-undef & non-poison operands.
Primary interface to the complete machine description for the target machine.
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
getRegisterInfo - If register information is available, return it.
virtual const TargetFrameLowering * getFrameLowering() const
virtual const TargetLowering * getTargetLowering() const
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, XROS, or DriverKit).
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.
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
static Type * getVoidTy(LLVMContext &C)
static IntegerType * getInt8Ty(LLVMContext &C)
TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
A Use represents the edge between a Value definition and its users.
User * getUser() const
Returns the User that contains this Use.
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.
Provides info so a possible vectorization of a function can be computed.
StringRef getVectorFnName() const
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 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.
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.
APInt mulhu(const APInt &C1, const APInt &C2)
Performs (2*N)-bit multiplication on zero-extended operands.
const APInt abdu(const APInt &A, const APInt &B)
Determine the absolute difference of two APInts considered to be unsigned.
APInt avgCeilU(const APInt &C1, const APInt &C2)
Compute the ceil of the unsigned average of C1 and C2.
APInt avgFloorU(const APInt &C1, const APInt &C2)
Compute the floor of the unsigned average of C1 and C2.
const APInt abds(const APInt &A, const APInt &B)
Determine the absolute difference of two APInts considered to be signed.
APInt mulhs(const APInt &C1, const APInt &C2)
Performs (2*N)-bit multiplication on sign-extended operands.
APInt ScaleBitMask(const APInt &A, unsigned NewBitWidth, bool MatchAllBits=false)
Splat/Merge neighboring bits to widen/narrow the bitmask represented by.
APInt avgFloorS(const APInt &C1, const APInt &C2)
Compute the floor of the signed average of C1 and C2.
APInt avgCeilS(const APInt &C1, const APInt &C2)
Compute the ceil of the signed average of C1 and C2.
@ C
The default llvm calling convention, compatible with C.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
CondCode getSetCCInverse(CondCode Operation, bool isIntegerLike)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
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...
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.
@ DELETED_NODE
DELETED_NODE - This is an illegal value that is used to catch errors.
@ 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.
@ 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...
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ BUILD_PAIR
BUILD_PAIR - This is the opposite of EXTRACT_ELEMENT in some ways.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ 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...
@ 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...
@ 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.
@ 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 or maximum on two values.
@ SSHLSAT
RESULT = [US]SHLSAT(LHS, RHS) - Perform saturation left shift.
@ SMULO
Same for multiplication.
@ ANY_EXTEND_VECTOR_INREG
ANY_EXTEND_VECTOR_INREG(Vector) - This operator represents an in-register any-extension of the low la...
@ SIGN_EXTEND_INREG
SIGN_EXTEND_INREG - This operator atomically performs a SHL/SRA pair to sign extend a small value in ...
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
@ 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],...
@ 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.
@ VECTOR_SPLICE
VECTOR_SPLICE(VEC1, VEC2, IMM) - Returns a subvector of the same type as VEC1/VEC2 from CONCAT_VECTOR...
@ 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
@ 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)...
@ CALLSEQ_START
CALLSEQ_START/CALLSEQ_END - These operators mark the beginning and end of a call sequence,...
@ SET_FPENV_MEM
Sets the current floating point environment.
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
@ ABDS
ABDS/ABDU - Absolute difference - Return the absolute difference between two numbers interpreted as s...
@ 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,...
bool isBuildVectorOfConstantSDNodes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR node of all ConstantSDNode or undef.
NodeType getExtForLoadExtType(bool IsFP, LoadExtType)
bool isNormalStore(const SDNode *N)
Returns true if the specified node is a non-truncating and unindexed store.
bool matchUnaryPredicate(SDValue Op, std::function< bool(ConstantSDNode *)> Match, bool AllowUndefs=false)
Hook for matching ConstantSDNode predicate.
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.
static const int FIRST_TARGET_MEMORY_OPCODE
FIRST_TARGET_MEMORY_OPCODE - Target-specific pre-isel operations which do not reference a specific me...
bool isExtOpcode(unsigned Opcode)
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...
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...
bool matchUnaryPredicateImpl(SDValue Op, std::function< bool(ConstNodeType *)> Match, bool AllowUndefs=false)
Attempt to match a unary predicate against a scalar/splat constant or every element of a constant BUI...
bool isVPBinaryOp(unsigned Opcode)
Whether this is a vector-predicated binary operation opcode.
CondCode getSetCCInverse(CondCode Operation, EVT Type)
Return the operation corresponding to !(X op Y), where 'op' is a valid SetCC operation.
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.
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...
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.
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...
bool isFreezeUndef(const SDNode *N)
Return true if the specified node is FREEZE(UNDEF).
CondCode getSetCCSwappedOperands(CondCode Operation)
Return the operation corresponding to (Y op X) when given the operation for (X op Y).
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...
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 isConstantSplatVector(const SDNode *N, APInt &SplatValue)
Node predicates.
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...
bool isVPReduction(unsigned Opcode)
Whether this is a vector-predicated reduction opcode.
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
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,...
bool isBuildVectorAllOnes(const SDNode *N)
Return true if the specified node is a BUILD_VECTOR where all of the elements are ~0 or undef.
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).
bool isVPOpcode(unsigned Opcode)
Whether this is a vector-predicated Opcode.
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< 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()...
BinaryOp_match< cst_pred_ty< is_zero_int >, ValTy, Instruction::Sub > m_Neg(const ValTy &V)
Matches a 'Neg' as 'sub 0, V'.
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
Libcall
RTLIB::Libcall enum - This enum defines all of the runtime library calls the backend can emit.
Libcall getMEMCPY_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMCPY_ELEMENT_UNORDERED_ATOMIC - Return MEMCPY_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
Libcall getMEMSET_ELEMENT_UNORDERED_ATOMIC(uint64_t ElementSize)
getMEMSET_ELEMENT_UNORDERED_ATOMIC - Return MEMSET_ELEMENT_UNORDERED_ATOMIC_* value for the given ele...
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.
This is an optimization pass for GlobalISel generic memory operations.
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 ...
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.
bool isNullConstant(SDValue V)
Returns true if V is a constant integer zero.
bool isUIntN(unsigned N, uint64_t x)
Checks if an unsigned integer fits into the given (dynamic) bit width.
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...
SDValue getBitwiseNotOperand(SDValue V, SDValue Mask, bool AllowUndefs)
If V is a bitwise not, returns the inverted operand.
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,...
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.
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.
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.
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...
MaybeAlign getAlign(const Function &F, unsigned Index)
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...
bool isMinSignedConstant(SDValue V)
Returns true if V is a constant min signed integer value.
ConstantFPSDNode * isConstOrConstSplatFP(SDValue N, bool AllowUndefs=false)
Returns the SDNode if it is a constant splat BuildVector or constant float.
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.
static Error getOffset(const SymbolRef &Sym, SectionRef Sec, uint64_t &Result)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
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 2019 maximumNumber semantics.
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
bool isBitwiseNot(SDValue V, bool AllowUndefs=false)
Returns true if V is a bitwise not operation.
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)
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.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
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.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
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...
SDValue peekThroughOneUseBitcasts(SDValue V)
Return the non-bitcasted and one-use source operand of V if it exists.
CodeGenOptLevel
Code generation optimization level.
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...
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_READONLY APFloat minnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2019 minimumNumber semantics.
@ Mul
Product of integers.
bool isNullConstantOrUndef(SDValue V)
Returns true if V is a constant integer zero or an UNDEF node.
void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
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
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.
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.
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.
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.
bool isNeutralConstant(unsigned Opc, SDNodeFlags Flags, SDValue V, unsigned OperandNo)
Returns true if V is a neutral element of Opc with Flags.
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.
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.
static const fltSemantics & IEEEsingle() LLVM_READNONE
cmpResult
IEEE-754R 5.11: Floating Point Comparison Relations.
static constexpr roundingMode rmTowardNegative
static constexpr roundingMode rmNearestTiesToEven
static constexpr roundingMode rmTowardZero
static const fltSemantics & IEEEquad() LLVM_READNONE
static const fltSemantics & IEEEdouble() LLVM_READNONE
static const fltSemantics & IEEEhalf() LLVM_READNONE
static constexpr roundingMode rmTowardPositive
static const fltSemantics & BFloat() LLVM_READNONE
opStatus
IEEE-754R 7: Default exception handling.
This struct is a compact representation of a valid (non-zero power of two) alignment.
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.
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.
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).
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.
KnownBits sextInReg(unsigned SrcBitWidth) const
Return known bits for a in-register sign extension of the value we're tracking.
static 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 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 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 KnownBits ashr(const KnownBits &LHS, const KnownBits &RHS, bool ShAmtNonZero=false, bool Exact=false)
Compute known bits for ashr(LHS, RHS).
static 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 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.
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 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.
KnownBits unionWith(const KnownBits &RHS) const
Returns KnownBits information that is known to be true for either this or RHS or both.
static 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 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 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 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 KnownBits abds(KnownBits LHS, KnownBits RHS)
Compute known bits for abds(LHS, RHS).
static KnownBits smin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for smin(LHS, RHS).
static KnownBits mulhs(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits from sign-extended multiply-hi.
static KnownBits srem(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for srem(LHS, RHS).
static KnownBits udiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for udiv(LHS, RHS).
static KnownBits computeForAddSub(bool Add, bool NSW, bool NUW, const KnownBits &LHS, const KnownBits &RHS)
Compute known bits resulting from adding LHS and RHS.
bool isStrictlyPositive() const
Returns true if this value is known to be positive.
static KnownBits sdiv(const KnownBits &LHS, const KnownBits &RHS, bool Exact=false)
Compute known bits for sdiv(LHS, RHS).
static 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.
static KnownBits computeForAddCarry(const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry)
Compute known bits resulting from adding LHS, RHS and a 1-bit Carry.
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 KnownBits avgCeilU(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilU.
static 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...
KnownBits abs(bool IntMinIsPoison=false) const
Compute known bits for the absolute value.
static 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 KnownBits umin(const KnownBits &LHS, const KnownBits &RHS)
Compute known bits for umin(LHS, RHS).
static KnownBits avgCeilS(const KnownBits &LHS, const KnownBits &RHS)
Compute knownbits resulting from APIntOps::avgCeilS.
This class contains a discriminated union of information about pointers in memory operands,...
bool isDereferenceable(unsigned Size, LLVMContext &C, const DataLayout &DL) const
Return true if memory region [V, V+Offset+Size) is known to be dereferenceable.
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 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)
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)