45#define DEBUG_TYPE "globalisel-utils"
67 assert(Reg.isVirtual() &&
"PhysReg not implemented");
77 if (ConstrainedReg != Reg) {
84 TII.get(TargetOpcode::COPY), ConstrainedReg)
89 TII.get(TargetOpcode::COPY), Reg)
93 Observer->changingInstr(*RegMO.
getParent());
95 RegMO.
setReg(ConstrainedReg);
97 Observer->changedInstr(*RegMO.
getParent());
101 if (!RegMO.
isDef()) {
103 Observer->changedInstr(*RegDef);
105 Observer->changingAllUsesOfReg(MRI, Reg);
106 Observer->finishedChangingAllUsesOfReg();
109 return ConstrainedReg;
119 assert(Reg.isVirtual() &&
"PhysReg not implemented");
132 if (
const auto *SubRC =
TRI.getCommonSubClass(
133 OpRC,
TRI.getConstrainedRegClassForOperand(RegMO, MRI)))
136 OpRC =
TRI.getAllocatableClass(OpRC);
141 "Register class constraint is required unless either the "
142 "instruction is target independent or the operand is a use");
164 "A selected instruction is expected");
169 for (
unsigned OpI = 0, OpE =
I.getNumExplicitOperands(); OpI != OpE; ++OpI) {
180 if (Reg.isPhysical())
196 int DefIdx =
I.getDesc().getOperandConstraint(OpI,
MCOI::TIED_TO);
197 if (DefIdx != -1 && !
I.isRegTiedToUseOperand(DefIdx))
198 I.tieOperands(DefIdx, OpI);
229 for (
const auto &MO :
MI.all_defs()) {
234 return MI.wouldBeTriviallyDead();
241 bool IsGlobalISelAbortEnabled =
243 bool IsFatal = Severity ==
DS_Error && IsGlobalISelAbortEnabled;
246 if (!R.getLocation().isValid() || IsFatal)
247 R << (
" (in function: " + MF.
getName() +
")").str();
273 MI.getDebugLoc(),
MI.getParent());
284 case TargetOpcode::G_SMIN:
285 return TargetOpcode::G_SMAX;
286 case TargetOpcode::G_SMAX:
287 return TargetOpcode::G_SMIN;
288 case TargetOpcode::G_UMIN:
289 return TargetOpcode::G_UMAX;
290 case TargetOpcode::G_UMAX:
291 return TargetOpcode::G_UMIN;
301 assert((!ValAndVReg || ValAndVReg->VReg == VReg) &&
302 "Value found while looking through instrs");
305 return ValAndVReg->Value;
311 assert((Const && Const->getOpcode() == TargetOpcode::G_CONSTANT) &&
312 "expected a G_CONSTANT on Reg");
313 return Const->getOperand(1).getCImm()->getValue();
316std::optional<int64_t>
319 if (Val && Val->getBitWidth() <= 64)
320 return Val->getSExtValue();
338std::optional<ValueAndVReg>
340 bool LookThroughInstrs =
true,
341 bool LookThroughAnyExt =
false) {
347 switch (
MI->getOpcode()) {
348 case TargetOpcode::G_ANYEXT:
349 if (!LookThroughAnyExt)
352 case TargetOpcode::G_TRUNC:
353 case TargetOpcode::G_SEXT:
354 case TargetOpcode::G_ZEXT:
358 VReg =
MI->getOperand(1).getReg();
360 case TargetOpcode::COPY:
361 VReg =
MI->getOperand(1).getReg();
365 case TargetOpcode::G_INTTOPTR:
366 VReg =
MI->getOperand(1).getReg();
372 if (!
MI || !IsConstantOpcode(
MI))
376 if (!GetAPCstValue(
MI, Val))
378 for (
auto &Pair :
reverse(SeenOpcodes)) {
379 switch (Pair.first) {
380 case TargetOpcode::G_TRUNC:
381 Val = Val.
trunc(Pair.second);
383 case TargetOpcode::G_ANYEXT:
384 case TargetOpcode::G_SEXT:
385 Val = Val.
sext(Pair.second);
387 case TargetOpcode::G_ZEXT:
388 Val = Val.
zext(Pair.second);
399 return MI->getOpcode() == TargetOpcode::G_CONSTANT;
405 return MI->getOpcode() == TargetOpcode::G_FCONSTANT;
411 unsigned Opc =
MI->getOpcode();
412 return Opc == TargetOpcode::G_CONSTANT ||
Opc == TargetOpcode::G_FCONSTANT;
438 return getConstantVRegValWithLookThrough<isIConstant, getCImmAsAPInt>(
439 VReg, MRI, LookThroughInstrs);
444 bool LookThroughAnyExt) {
445 return getConstantVRegValWithLookThrough<isAnyConstant,
446 getCImmOrFPImmAsAPInt>(
447 VReg, MRI, LookThroughInstrs, LookThroughAnyExt);
453 getConstantVRegValWithLookThrough<isFConstant, getCImmOrFPImmAsAPInt>(
454 VReg, MRI, LookThroughInstrs);
466 if (TargetOpcode::G_FCONSTANT !=
MI->getOpcode())
468 return MI->getOperand(1).getFPImm();
471std::optional<DefinitionAndSourceRegister>
482 if (!DstTy.isValid())
487 auto SrcTy = MRI.
getType(SrcReg);
488 if (!SrcTy.isValid())
499 std::optional<DefinitionAndSourceRegister> DefSrcReg =
501 return DefSrcReg ? DefSrcReg->MI :
nullptr;
506 std::optional<DefinitionAndSourceRegister> DefSrcReg =
508 return DefSrcReg ? DefSrcReg->Reg :
Register();
515 for (
int i = 0; i < NumParts; ++i)
529 unsigned NumParts =
RegSize / MainSize;
530 unsigned LeftoverSize =
RegSize - NumParts * MainSize;
533 if (LeftoverSize == 0) {
534 for (
unsigned I = 0;
I < NumParts; ++
I)
548 unsigned LeftoverNumElts = RegNumElts % MainNumElts;
550 if (MainNumElts % LeftoverNumElts == 0 &&
551 RegNumElts % LeftoverNumElts == 0 &&
553 LeftoverNumElts > 1) {
558 extractParts(Reg, LeftoverTy, RegNumElts / LeftoverNumElts, UnmergeValues,
562 unsigned LeftoverPerMain = MainNumElts / LeftoverNumElts;
563 unsigned NumOfLeftoverVal =
564 ((RegNumElts % MainNumElts) / LeftoverNumElts);
568 for (
unsigned I = 0;
I < UnmergeValues.
size() - NumOfLeftoverVal;
I++) {
570 if (MergeValues.
size() == LeftoverPerMain) {
577 for (
unsigned I = UnmergeValues.
size() - NumOfLeftoverVal;
578 I < UnmergeValues.
size();
I++) {
589 for (
unsigned i = 0; i < RegPieces.
size() - 1; ++i)
592 LeftoverTy = MRI.
getType(LeftoverRegs[0]);
598 for (
unsigned I = 0;
I != NumParts; ++
I) {
624 unsigned LeftoverNumElts = RegNumElts % NumElts;
625 unsigned NumNarrowTyPieces = RegNumElts / NumElts;
628 if (LeftoverNumElts == 0)
629 return extractParts(Reg, NarrowTy, NumNarrowTyPieces, VRegs, MIRBuilder,
636 extractParts(Reg, EltTy, RegNumElts, Elts, MIRBuilder, MRI);
640 for (
unsigned i = 0; i < NumNarrowTyPieces; ++i,
Offset += NumElts) {
646 if (LeftoverNumElts == 1) {
687 const APInt &C1 = MaybeOp1Cst->Value;
688 const APInt &C2 = MaybeOp2Cst->Value;
692 case TargetOpcode::G_ADD:
694 case TargetOpcode::G_PTR_ADD:
698 case TargetOpcode::G_AND:
700 case TargetOpcode::G_ASHR:
702 case TargetOpcode::G_LSHR:
704 case TargetOpcode::G_MUL:
706 case TargetOpcode::G_OR:
708 case TargetOpcode::G_SHL:
710 case TargetOpcode::G_SUB:
712 case TargetOpcode::G_XOR:
714 case TargetOpcode::G_UDIV:
715 if (!C2.getBoolValue())
718 case TargetOpcode::G_SDIV:
719 if (!C2.getBoolValue())
722 case TargetOpcode::G_UREM:
723 if (!C2.getBoolValue())
726 case TargetOpcode::G_SREM:
727 if (!C2.getBoolValue())
730 case TargetOpcode::G_SMIN:
732 case TargetOpcode::G_SMAX:
734 case TargetOpcode::G_UMIN:
736 case TargetOpcode::G_UMAX:
743std::optional<APFloat>
757 case TargetOpcode::G_FADD:
760 case TargetOpcode::G_FSUB:
763 case TargetOpcode::G_FMUL:
766 case TargetOpcode::G_FDIV:
769 case TargetOpcode::G_FREM:
772 case TargetOpcode::G_FCOPYSIGN:
775 case TargetOpcode::G_FMINNUM:
777 case TargetOpcode::G_FMAXNUM:
779 case TargetOpcode::G_FMINIMUM:
781 case TargetOpcode::G_FMAXIMUM:
783 case TargetOpcode::G_FMINIMUMNUM:
785 case TargetOpcode::G_FMAXIMUMNUM:
787 case TargetOpcode::G_FMINNUM_IEEE:
788 case TargetOpcode::G_FMAXNUM_IEEE:
810 auto [Dst, DstTy, Src, SrcTy] = Bitcast->getFirst2RegLLTs();
811 if (!SrcTy.isVector() || !DstTy.isVector())
813 if (SrcTy.getElementCount() != DstTy.getElementCount())
815 if (SrcTy.getScalarSizeInBits() != DstTy.getScalarSizeInBits())
834 for (
unsigned Idx = 0, E = SrcVec1->getNumSources(); Idx < E; ++Idx) {
836 SrcVec2->getSourceReg(Idx), MRI);
841 return FoldedElements;
855 return V->getPointerAlignment(M->getDataLayout());
873 assert(Def->getParent() == &EntryMBB &&
"live-in copy not in entry block");
902 case TargetOpcode::G_SEXT_INREG: {
904 return MaybeOp1Cst->trunc(Imm).sext(Ty.getScalarSizeInBits());
921 case TargetOpcode::G_SEXT:
922 return Val->sext(DstSize);
923 case TargetOpcode::G_ZEXT:
924 case TargetOpcode::G_ANYEXT:
926 return Val->zext(DstSize);
934std::optional<APFloat>
937 assert(Opcode == TargetOpcode::G_SITOFP || Opcode == TargetOpcode::G_UITOFP);
951 auto Fold = [Opcode, EltBits](
const APInt &V) ->
APInt {
953 case TargetOpcode::G_CTLZ:
954 case TargetOpcode::G_CTLZ_ZERO_POISON:
955 return APInt(EltBits, V.countl_zero());
956 case TargetOpcode::G_CTTZ:
957 case TargetOpcode::G_CTTZ_ZERO_POISON:
958 return APInt(EltBits, V.countr_zero());
959 case TargetOpcode::G_CTPOP:
960 return APInt(EltBits, V.popcount());
961 case TargetOpcode::G_ABS:
963 case TargetOpcode::G_BSWAP:
965 case TargetOpcode::G_BITREVERSE:
966 return V.reverseBits();
971 auto tryFoldScalar = [&](
Register R) -> std::optional<APInt> {
973 return Fold(*MaybeCst);
981 for (
unsigned SrcIdx = 0; SrcIdx < BV->getNumSources(); ++SrcIdx) {
982 if (
auto MaybeFold = tryFoldScalar(BV->getSourceReg(SrcIdx))) {
990 if (
auto MaybeCst = tryFoldScalar(Src))
991 return {std::move(*MaybeCst)};
995std::optional<SmallVector<APInt>>
997 unsigned DstScalarSizeInBits,
unsigned ExtOp,
999 assert(ExtOp == TargetOpcode::G_SEXT || ExtOp == TargetOpcode::G_ZEXT ||
1000 ExtOp == TargetOpcode::G_ANYEXT);
1004 auto GetICmpResultCst = [&](
bool IsTrue) {
1006 return ExtOp == TargetOpcode::G_SEXT
1012 auto TryFoldScalar = [&](
Register LHS,
Register RHS) -> std::optional<APInt> {
1015 return std::nullopt;
1018 return std::nullopt;
1022 return GetICmpResultCst(LHSCst->eq(*RHSCst));
1024 return GetICmpResultCst(LHSCst->ne(*RHSCst));
1026 return GetICmpResultCst(LHSCst->ugt(*RHSCst));
1028 return GetICmpResultCst(LHSCst->uge(*RHSCst));
1030 return GetICmpResultCst(LHSCst->ult(*RHSCst));
1032 return GetICmpResultCst(LHSCst->ule(*RHSCst));
1034 return GetICmpResultCst(LHSCst->sgt(*RHSCst));
1036 return GetICmpResultCst(LHSCst->sge(*RHSCst));
1038 return GetICmpResultCst(LHSCst->slt(*RHSCst));
1040 return GetICmpResultCst(LHSCst->sle(*RHSCst));
1042 return std::nullopt;
1048 if (Ty.isVector()) {
1053 return std::nullopt;
1054 assert(BV1->getNumSources() == BV2->getNumSources() &&
"Invalid vectors");
1055 for (
unsigned I = 0;
I < BV1->getNumSources(); ++
I) {
1056 if (
auto MaybeFold =
1057 TryFoldScalar(BV1->getSourceReg(
I), BV2->getSourceReg(
I))) {
1061 return std::nullopt;
1066 if (
auto MaybeCst = TryFoldScalar(Op1, Op2)) {
1071 return std::nullopt;
1076 std::optional<DefinitionAndSourceRegister> DefSrcReg =
1084 auto IsPow2 = [OrNegative](
const APInt &V) {
1085 return V.isPowerOf2() || (OrNegative && V.isNegatedPowerOf2());
1088 switch (
MI.getOpcode()) {
1089 case TargetOpcode::G_CONSTANT: {
1090 unsigned BitWidth = Ty.getScalarSizeInBits();
1094 case TargetOpcode::G_SHL: {
1106 case TargetOpcode::G_LSHR: {
1108 if (ConstLHS->isSignMask())
1114 case TargetOpcode::G_BUILD_VECTOR: {
1123 case TargetOpcode::G_BUILD_VECTOR_TRUNC: {
1126 const unsigned BitWidth = Ty.getScalarSizeInBits();
1129 if (!Const || !IsPow2(Const->zextOrTrunc(
BitWidth)))
1170 "getLCMType not implemented between fixed and scalable vectors.");
1190 LLT VecTy = OrigTy.
isVector() ? OrigTy : TargetTy;
1191 LLT ScalarTy = OrigTy.
isVector() ? TargetTy : OrigTy;
1226 "getCoverTy not implemented between fixed and scalable vectors.");
1234 if (OrigTyNumElts % TargetTyNumElts == 0)
1237 unsigned NumElts =
alignTo(OrigTyNumElts, TargetTyNumElts);
1257 "getGCDType not implemented between fixed and scalable vectors.");
1297 assert(
MI.getOpcode() == TargetOpcode::G_SHUFFLE_VECTOR &&
1298 "Only G_SHUFFLE_VECTOR can have a splat index!");
1300 auto FirstDefinedIdx =
find_if(Mask, [](
int Elt) {
return Elt >= 0; });
1304 if (FirstDefinedIdx == Mask.end())
1309 int SplatValue = *FirstDefinedIdx;
1311 [&SplatValue](
int Elt) { return Elt >= 0 && Elt != SplatValue; }))
1312 return std::nullopt;
1318 return Opcode == TargetOpcode::G_BUILD_VECTOR ||
1319 Opcode == TargetOpcode::G_BUILD_VECTOR_TRUNC;
1324std::optional<ValueAndVReg> getAnyConstantSplat(
Register VReg,
1329 return std::nullopt;
1331 bool isConcatVectorsOp =
MI->getOpcode() == TargetOpcode::G_CONCAT_VECTORS;
1333 return std::nullopt;
1335 std::optional<ValueAndVReg> SplatValAndReg;
1340 auto ElementValAndReg =
1342 ? getAnyConstantSplat(Element, MRI, AllowUndef)
1346 if (!ElementValAndReg) {
1349 return std::nullopt;
1353 if (!SplatValAndReg)
1354 SplatValAndReg = ElementValAndReg;
1357 if (SplatValAndReg->Value != ElementValAndReg->Value)
1358 return std::nullopt;
1361 return SplatValAndReg;
1368 int64_t SplatValue,
bool AllowUndef) {
1369 if (
auto SplatValAndReg = getAnyConstantSplat(Reg, MRI, AllowUndef))
1370 return SplatValAndReg->Value.getSExtValue() == SplatValue;
1377 const APInt &SplatValue,
1379 if (
auto SplatValAndReg = getAnyConstantSplat(Reg, MRI, AllowUndef)) {
1380 if (SplatValAndReg->Value.getBitWidth() < SplatValue.
getBitWidth())
1382 SplatValAndReg->Value.sext(SplatValue.
getBitWidth()), SplatValue);
1384 SplatValAndReg->Value,
1385 SplatValue.
sext(SplatValAndReg->Value.getBitWidth()));
1393 int64_t SplatValue,
bool AllowUndef) {
1400 const APInt &SplatValue,
1408 if (
auto SplatValAndReg =
1409 getAnyConstantSplat(Reg, MRI,
false)) {
1410 if (std::optional<ValueAndVReg> ValAndVReg =
1412 return ValAndVReg->Value;
1415 return std::nullopt;
1424std::optional<int64_t>
1427 if (
auto SplatValAndReg =
1428 getAnyConstantSplat(Reg, MRI,
false))
1430 return std::nullopt;
1433std::optional<int64_t>
1439std::optional<FPValueAndVReg>
1442 if (
auto SplatValAndReg = getAnyConstantSplat(VReg, MRI, AllowUndef))
1444 return std::nullopt;
1459std::optional<RegOrConstant>
1461 unsigned Opc =
MI.getOpcode();
1463 return std::nullopt;
1466 auto Reg =
MI.getOperand(1).getReg();
1469 return std::nullopt;
1475 bool AllowFP =
true,
1476 bool AllowOpaqueConstants =
true) {
1477 switch (
MI.getOpcode()) {
1478 case TargetOpcode::G_CONSTANT:
1479 case TargetOpcode::G_IMPLICIT_DEF:
1481 case TargetOpcode::G_FCONSTANT:
1483 case TargetOpcode::G_GLOBAL_VALUE:
1484 case TargetOpcode::G_FRAME_INDEX:
1485 case TargetOpcode::G_BLOCK_ADDR:
1486 case TargetOpcode::G_JUMP_TABLE:
1487 return AllowOpaqueConstants;
1501 for (
unsigned SrcIdx = 0; SrcIdx < BV->
getNumSources(); ++SrcIdx) {
1512 bool AllowFP,
bool AllowOpaqueConstants) {
1519 const unsigned NumOps =
MI.getNumOperands();
1520 for (
unsigned I = 1;
I !=
NumOps; ++
I) {
1537 return std::nullopt;
1539 return APInt(ScalarSize, *MaybeCst,
true);
1542std::optional<APFloat>
1547 return FpConst->Value;
1550 return std::nullopt;
1551 return MaybeCstFP->Value;
1556 switch (
MI.getOpcode()) {
1557 case TargetOpcode::G_IMPLICIT_DEF:
1559 case TargetOpcode::G_CONSTANT:
1560 return MI.getOperand(1).getCImm()->isNullValue();
1561 case TargetOpcode::G_FCONSTANT: {
1575 switch (
MI.getOpcode()) {
1576 case TargetOpcode::G_IMPLICIT_DEF:
1578 case TargetOpcode::G_CONSTANT:
1579 return MI.getOperand(1).getCImm()->isAllOnesValue();
1589 std::function<
bool(
const Constant *ConstVal)> Match,
bool AllowUndefs) {
1592 if (AllowUndefs && Def->getOpcode() == TargetOpcode::G_IMPLICIT_DEF)
1593 return Match(
nullptr);
1596 if (Def->getOpcode() == TargetOpcode::G_CONSTANT)
1597 return Match(Def->getOperand(1).getCImm());
1599 if (Def->getOpcode() != TargetOpcode::G_BUILD_VECTOR)
1602 for (
unsigned I = 1, E = Def->getNumOperands();
I != E; ++
I) {
1603 Register SrcElt = Def->getOperand(
I).getReg();
1605 if (AllowUndefs && SrcDef->
getOpcode() == TargetOpcode::G_IMPLICIT_DEF) {
1606 if (!Match(
nullptr))
1611 if (SrcDef->
getOpcode() != TargetOpcode::G_CONSTANT ||
1633 bool IsVector,
bool IsFP) {
1660 if (
Op.isReg() &&
Op.getReg().isVirtual())
1665 MI.eraseFromParent();
1677 while (!DeadInstChain.
empty()) {
1691 for (
auto &Def :
MI.defs()) {
1692 assert(Def.isReg() &&
"Must be a reg");
1703 if (!DbgUsers.
empty()) {
1711 case TargetOpcode::G_FABS:
1712 case TargetOpcode::G_FADD:
1713 case TargetOpcode::G_FCANONICALIZE:
1714 case TargetOpcode::G_FCEIL:
1715 case TargetOpcode::G_FCONSTANT:
1716 case TargetOpcode::G_FCOPYSIGN:
1717 case TargetOpcode::G_FCOS:
1718 case TargetOpcode::G_FDIV:
1719 case TargetOpcode::G_FEXP2:
1720 case TargetOpcode::G_FEXP:
1721 case TargetOpcode::G_FFLOOR:
1722 case TargetOpcode::G_FLOG10:
1723 case TargetOpcode::G_FLOG2:
1724 case TargetOpcode::G_FLOG:
1725 case TargetOpcode::G_FMA:
1726 case TargetOpcode::G_FMAD:
1727 case TargetOpcode::G_FMAXIMUM:
1728 case TargetOpcode::G_FMAXIMUMNUM:
1729 case TargetOpcode::G_FMAXNUM:
1730 case TargetOpcode::G_FMAXNUM_IEEE:
1731 case TargetOpcode::G_FMINIMUM:
1732 case TargetOpcode::G_FMINIMUMNUM:
1733 case TargetOpcode::G_FMINNUM:
1734 case TargetOpcode::G_FMINNUM_IEEE:
1735 case TargetOpcode::G_FMUL:
1736 case TargetOpcode::G_FNEARBYINT:
1737 case TargetOpcode::G_FNEG:
1738 case TargetOpcode::G_FPEXT:
1739 case TargetOpcode::G_FPEXTLOAD:
1740 case TargetOpcode::G_FPOW:
1741 case TargetOpcode::G_FPTRUNC:
1742 case TargetOpcode::G_FPTRUNCSTORE:
1743 case TargetOpcode::G_FREM:
1744 case TargetOpcode::G_FRINT:
1745 case TargetOpcode::G_FSIN:
1746 case TargetOpcode::G_FTAN:
1747 case TargetOpcode::G_FACOS:
1748 case TargetOpcode::G_FASIN:
1749 case TargetOpcode::G_FATAN:
1750 case TargetOpcode::G_FATAN2:
1751 case TargetOpcode::G_FCOSH:
1752 case TargetOpcode::G_FSINH:
1753 case TargetOpcode::G_FTANH:
1754 case TargetOpcode::G_FSQRT:
1755 case TargetOpcode::G_FSUB:
1756 case TargetOpcode::G_INTRINSIC_ROUND:
1757 case TargetOpcode::G_INTRINSIC_ROUNDEVEN:
1758 case TargetOpcode::G_INTRINSIC_TRUNC:
1770 if (Ty.isScalableVector())
1773 if (Ty.isScalar()) {
1774 std::optional<ValueAndVReg> Val =
1778 return Val->Value.ult(Ty.getScalarSizeInBits());
1786 for (
unsigned I = 0;
I < Sources; ++
I) {
1787 std::optional<ValueAndVReg> Val =
1791 if (!Val->Value.ult(Ty.getScalarSizeInBits()))
1799 bool ConsiderFlagsAndMetadata,
1805 if (GMI->hasPoisonGeneratingFlags())
1810 case TargetOpcode::G_BUILD_VECTOR:
1811 case TargetOpcode::G_CONSTANT_FOLD_BARRIER:
1813 case TargetOpcode::G_SHL:
1814 case TargetOpcode::G_ASHR:
1815 case TargetOpcode::G_LSHR:
1818 case TargetOpcode::G_FPTOSI:
1819 case TargetOpcode::G_FPTOUI:
1823 case TargetOpcode::G_CTLZ:
1824 case TargetOpcode::G_CTTZ:
1825 case TargetOpcode::G_CTLS:
1826 case TargetOpcode::G_ABS:
1827 case TargetOpcode::G_CTPOP:
1828 case TargetOpcode::G_BSWAP:
1829 case TargetOpcode::G_BITREVERSE:
1830 case TargetOpcode::G_FSHL:
1831 case TargetOpcode::G_FSHR:
1832 case TargetOpcode::G_SMAX:
1833 case TargetOpcode::G_SMIN:
1834 case TargetOpcode::G_SCMP:
1835 case TargetOpcode::G_UMAX:
1836 case TargetOpcode::G_UMIN:
1837 case TargetOpcode::G_UCMP:
1838 case TargetOpcode::G_PTRMASK:
1839 case TargetOpcode::G_SADDO:
1840 case TargetOpcode::G_SSUBO:
1841 case TargetOpcode::G_UADDO:
1842 case TargetOpcode::G_USUBO:
1843 case TargetOpcode::G_SMULO:
1844 case TargetOpcode::G_UMULO:
1845 case TargetOpcode::G_SADDSAT:
1846 case TargetOpcode::G_UADDSAT:
1847 case TargetOpcode::G_SSUBSAT:
1848 case TargetOpcode::G_USUBSAT:
1849 case TargetOpcode::G_SBFX:
1850 case TargetOpcode::G_UBFX:
1852 case TargetOpcode::G_SSHLSAT:
1853 case TargetOpcode::G_USHLSAT:
1856 case TargetOpcode::G_INSERT_VECTOR_ELT: {
1859 std::optional<ValueAndVReg> Index =
1863 LLT VecTy = MRI.
getType(Insert->getVectorReg());
1868 case TargetOpcode::G_EXTRACT_VECTOR_ELT: {
1871 std::optional<ValueAndVReg> Index =
1880 case TargetOpcode::G_SHUFFLE_VECTOR: {
1885 case TargetOpcode::G_FNEG:
1886 case TargetOpcode::G_PHI:
1887 case TargetOpcode::G_SELECT:
1888 case TargetOpcode::G_UREM:
1889 case TargetOpcode::G_SREM:
1890 case TargetOpcode::G_FREEZE:
1891 case TargetOpcode::G_ICMP:
1892 case TargetOpcode::G_FCMP:
1893 case TargetOpcode::G_FADD:
1894 case TargetOpcode::G_FSUB:
1895 case TargetOpcode::G_FMUL:
1896 case TargetOpcode::G_FDIV:
1897 case TargetOpcode::G_FREM:
1898 case TargetOpcode::G_PTR_ADD:
1915 case TargetOpcode::G_FREEZE:
1917 case TargetOpcode::G_IMPLICIT_DEF:
1919 case TargetOpcode::G_CONSTANT:
1920 case TargetOpcode::G_FCONSTANT:
1922 case TargetOpcode::G_BUILD_VECTOR: {
1925 for (
unsigned I = 0;
I < NumSources; ++
I)
1931 case TargetOpcode::G_PHI: {
1933 unsigned NumIncoming = Phi->getNumIncomingValues();
1934 for (
unsigned I = 0;
I < NumIncoming; ++
I)
1944 return ::isGuaranteedNotToBeUndefOrPoison(MO.getReg(), MRI,
Depth + 1,
1955 bool ConsiderFlagsAndMetadata) {
1956 return ::canCreateUndefOrPoison(Reg, MRI, ConsiderFlagsAndMetadata,
1961 bool ConsiderFlagsAndMetadata =
true) {
1962 return ::canCreateUndefOrPoison(
Reg, MRI, ConsiderFlagsAndMetadata,
1969 return ::isGuaranteedNotToBeUndefOrPoison(Reg, MRI,
Depth,
1976 return ::isGuaranteedNotToBeUndefOrPoison(Reg, MRI,
Depth,
1983 return ::isGuaranteedNotToBeUndefOrPoison(Reg, MRI,
Depth,
1990 Ty.getElementCount());
1995 switch (
MI.getOpcode()) {
1998 case TargetOpcode::G_ASSERT_ALIGN:
1999 case TargetOpcode::G_ASSERT_SEXT:
2000 case TargetOpcode::G_ASSERT_ZEXT:
2011std::optional<GIConstant>
2016 std::optional<ValueAndVReg> MayBeConstant =
2019 return std::nullopt;
2025 unsigned NumSources = Build->getNumSources();
2026 for (
unsigned I = 0;
I < NumSources; ++
I) {
2027 Register SrcReg = Build->getSourceReg(
I);
2028 std::optional<ValueAndVReg> MayBeConstant =
2031 return std::nullopt;
2032 Values.push_back(MayBeConstant->Value);
2037 std::optional<ValueAndVReg> MayBeConstant =
2040 return std::nullopt;
2051std::optional<GFConstant>
2056 std::optional<FPValueAndVReg> MayBeConstant =
2059 return std::nullopt;
2065 unsigned NumSources = Build->getNumSources();
2066 for (
unsigned I = 0;
I < NumSources; ++
I) {
2067 Register SrcReg = Build->getSourceReg(
I);
2068 std::optional<FPValueAndVReg> MayBeConstant =
2071 return std::nullopt;
2072 Values.push_back(MayBeConstant->Value);
2077 std::optional<FPValueAndVReg> MayBeConstant =
2080 return std::nullopt;
2088 unsigned Limit,
const MemOp &
Op,
2089 unsigned DstAS,
unsigned SrcAS,
2090 const AttributeList &FuncAttributes,
2092 if (
Op.isMemcpyWithFixedDstAlign() &&
Op.getSrcAlign() <
Op.getDstAlign())
2102 if (
Op.isFixedDstAlign())
2103 while (
Op.getDstAlign() < Ty.getSizeInBytes() &&
2106 assert(Ty.getSizeInBits() > 0 &&
"Could not find valid type");
2110 unsigned NumMemOps = 0;
2113 unsigned TySize = Ty.getSizeInBytes();
2114 while (TySize >
Size) {
2124 assert(NewTySize > 0 &&
"Could not find appropriate type");
2131 if (NumMemOps &&
Op.allowOverlap() && NewTySize <
Size &&
2133 VT, DstAS,
Op.isFixedDstAlign() ?
Op.getDstAlign() :
Align(1),
2143 if (++NumMemOps > Limit)
2146 MemOps.push_back(Ty);
2157 bool &DstAlignCanChange,
2158 std::vector<LLT> &MemOps) {
2159 const unsigned Opc =
MI.getOpcode();
2160 assert((
Opc == TargetOpcode::G_MEMCPY ||
2161 Opc == TargetOpcode::G_MEMCPY_INLINE ||
2162 Opc == TargetOpcode::G_MEMMOVE ||
Opc == TargetOpcode::G_MEMSET) &&
2163 "Expected memcpy like instruction");
2165 auto MMOIt =
MI.memoperands_begin();
2170 Alignment = DstAlign;
2172 std::tie(Dst, Src, Len) =
MI.getFirst3Regs();
2174 if (
Opc != TargetOpcode::G_MEMSET) {
2175 assert(MMOIt !=
MI.memoperands_end() &&
"Expected a second MMO on MI");
2177 SrcAlign =
MemOp->getBaseAlign();
2178 Alignment = std::min(DstAlign, SrcAlign);
2183 if (!LenVRegAndVal) {
2185 assert(
Opc != TargetOpcode::G_MEMCPY_INLINE &&
2186 "inline memcpy with dynamic size is not yet supported");
2190 KnownLen = LenVRegAndVal->Value.getZExtValue();
2191 DstAlignCanChange =
false;
2196 if (
Opc != TargetOpcode::G_MEMCPY_INLINE && MaxLen && KnownLen > MaxLen)
2199 bool IsVolatile =
MemOp->isVolatile();
2211 DstAlignCanChange =
true;
2213 const auto &DstMMO = **
MI.memoperands_begin();
2217 case TargetOpcode::G_MEMCPY_INLINE:
2218 case TargetOpcode::G_MEMCPY: {
2219 const auto &SrcMMO = **std::next(
MI.memoperands_begin());
2221 uint64_t Limit =
Opc == TargetOpcode::G_MEMCPY_INLINE
2222 ? std::numeric_limits<uint64_t>::max()
2223 : TLI.getMaxStoresPerMemcpy(OptSize);
2226 MemOp::Copy(KnownLen, DstAlignCanChange, std::min(DstAlign, SrcAlign),
2227 SrcAlign, IsVolatile),
2231 case TargetOpcode::G_MEMMOVE: {
2232 const auto &SrcMMO = **std::next(
MI.memoperands_begin());
2234 unsigned Limit = TLI.getMaxStoresPerMemmove(OptSize);
2240 MemOp::Copy(KnownLen, DstAlignCanChange, std::min(DstAlign, SrcAlign),
2245 case TargetOpcode::G_MEMSET: {
2246 unsigned Limit = TLI.getMaxStoresPerMemset(OptSize);
2248 bool IsZeroVal = ValVRegAndVal && ValVRegAndVal->Value == 0;
2251 MemOp::Set(KnownLen, DstAlignCanChange, DstAlign,
MachineInstrBuilder MachineInstrBuilder & DefMI
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
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...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static bool findGISelOptimalMemOpLowering(std::vector< LLT > &MemOps, unsigned Limit, const MemOp &Op, unsigned DstAS, unsigned SrcAS, const AttributeList &FuncAttributes, const TargetLowering &TLI)
static void reportGISelDiagnostic(DiagnosticSeverity Severity, MachineFunction &MF, MachineOptimizationRemarkEmitter &MORE, MachineOptimizationRemarkMissed &R)
static bool shiftAmountKnownInRange(Register ShiftAmount, const MachineRegisterInfo &MRI)
Shifts return poison if shiftwidth is larger than the bitwidth.
static bool isBuildVectorOp(unsigned Opcode)
static bool isConstantScalar(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowFP=true, bool AllowOpaqueConstants=true)
static GBuildVector * getBuildVectorLikeDef(Register Reg, const MachineRegisterInfo &MRI)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This contains common code to allow clients to notify changes to machine instr.
Provides analysis for querying information about KnownBits during GISel passes.
Declares convenience wrapper classes for interpreting MachineInstr instances as specific generic oper...
const HexagonInstrInfo * TII
const size_t AbstractManglingParser< Derived, Alloc >::NumOps
Tracks DebugLocs between checkpoints and verifies that they are transferred.
Implement a low-level type suitable for MachineInstr level instruction selection.
Contains matchers for matching SSA Machine Instructions.
This file declares the MachineIRBuilder class.
Register const TargetRegisterInfo * TRI
Promote Memory to Register
MachineInstr unsigned OpIdx
uint64_t IntrinsicInst * II
This file describes how to lower LLVM code to machine code.
Target-Independent Code Generator Pass Configuration Options pass.
This file contains the UndefPoisonKind enum and helper functions.
static const char PassName[]
Class recording the (high level) value of a variable.
static constexpr roundingMode rmNearestTiesToEven
static const fltSemantics & IEEEhalf()
opStatus divide(const APFloat &RHS, roundingMode RM)
void copySign(const APFloat &RHS)
LLVM_ABI opStatus convert(const fltSemantics &ToSemantics, roundingMode RM, bool *losesInfo)
opStatus subtract(const APFloat &RHS, roundingMode RM)
opStatus add(const APFloat &RHS, roundingMode RM)
opStatus convertFromAPInt(const APInt &Input, bool IsSigned, roundingMode RM)
opStatus multiply(const APFloat &RHS, roundingMode RM)
APInt bitcastToAPInt() const
opStatus mod(const APFloat &RHS)
Class for arbitrary precision integers.
LLVM_ABI APInt udiv(const APInt &RHS) const
Unsigned division operation.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
LLVM_ABI APInt zext(unsigned width) const
Zero extend to a new width.
LLVM_ABI APInt zextOrTrunc(unsigned width) const
Zero extend or truncate to width.
LLVM_ABI APInt trunc(unsigned width) const
Truncate to new width.
LLVM_ABI APInt urem(const APInt &RHS) const
Unsigned remainder operation.
unsigned getBitWidth() const
Return the number of bits in the APInt.
LLVM_ABI APInt sdiv(const APInt &RHS) const
Signed division function for APInt.
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
static bool isSameValue(const APInt &I1, const APInt &I2, bool SignedCompare=false)
Determine if two APInts have the same value, after zero-extending or sign-extending (if SignedCompare...
APInt ashr(unsigned ShiftAmt) const
Arithmetic right-shift function.
LLVM_ABI APInt srem(const APInt &RHS) const
Function for signed remainder operation.
LLVM_ABI APInt sext(unsigned width) const
Sign extend to a new width.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
static APInt getOneBitSet(unsigned numBits, unsigned BitNo)
Return an APInt with exactly one bit set in the result.
APInt lshr(unsigned shiftAmt) const
Logical right-shift function.
Represent the analysis usage information of a pass.
AnalysisUsage & addPreserved()
Add the specified Pass class to the set of analyses preserved by this pass.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ ICMP_UGE
unsigned greater or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
@ ICMP_SGE
signed greater or equal
@ ICMP_ULE
unsigned less or equal
ConstantFP - Floating Point Values [float, double].
const APFloat & getValueAPF() const
bool isNegative() const
Return true if the sign bit is set.
bool isZero() const
Return true if the value is positive or negative zero.
This is the shared class of boolean and integer constants.
const APInt & getValue() const
Return the constant as an APInt value reference.
This is an important base class in LLVM.
static constexpr ElementCount getFixed(ScalarTy MinVal)
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
bool hasOptSize() const
Optimize this function for size (-Os) or minimum size (-Oz).
bool hasMinSize() const
Optimize this function for minimum size (-Oz).
AttributeList getAttributes() const
Return the attribute list for this Function.
Represents a G_BUILD_VECTOR.
static LLVM_ABI std::optional< GFConstant > getConstant(Register Const, const MachineRegisterInfo &MRI)
GFConstant(ArrayRef< APFloat > Values)
LLVM_ABI APFloat getScalarValue() const
Returns the value, if this constant is a scalar.
LLVM_ABI APInt getScalarValue() const
Returns the value, if this constant is a scalar.
static LLVM_ABI std::optional< GIConstant > getConstant(Register Const, const MachineRegisterInfo &MRI)
GIConstant(ArrayRef< APInt > Values)
Abstract class that contains various methods for clients to notify about changes.
KnownBits getKnownBits(Register R)
void insert(MachineInstr *I)
Add the specified instruction to the worklist if it isn't already in it.
MachineInstr * pop_back_val()
void remove(const MachineInstr *I)
Remove I from the worklist if it exists.
Represents an insert vector element.
Register getSourceReg(unsigned I) const
Returns the I'th source register.
unsigned getNumSources() const
Returns the number of source registers.
Represents a G_SHUFFLE_VECTOR.
ArrayRef< int > getMask() const
Represents a splat vector.
Module * getParent()
Get the module that this global value is contained inside of...
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
constexpr bool isScalableVector() const
Returns true if the LLT is a scalable vector.
constexpr unsigned getScalarSizeInBits() const
static constexpr LLT vector(ElementCount EC, unsigned ScalarSizeInBits)
Get a low-level vector of some number of elements and element width.
LLT getScalarType() const
static constexpr LLT scalar(unsigned SizeInBits)
Get a low-level scalar or aggregate "bag of bits".
constexpr bool isValid() const
constexpr uint16_t getNumElements() const
Returns the number of elements in a vector LLT.
constexpr bool isVector() const
constexpr bool isScalable() const
Returns true if the LLT is a scalable vector.
constexpr TypeSize getSizeInBits() const
Returns the total size of the type. Must only be called on sized types.
constexpr ElementCount getElementCount() const
static constexpr LLT fixed_vector(unsigned NumElements, unsigned ScalarSizeInBits)
Get a low-level fixed-width vector of some number of elements and element width.
constexpr bool isFixedVector() const
Returns true if the LLT is a fixed vector.
static LLT integer(unsigned SizeInBits)
constexpr TypeSize getSizeInBytes() const
Returns the total size of the type in bytes, i.e.
LLT getElementType() const
Returns the vector's element type. Only valid for vector types.
static constexpr LLT scalarOrVector(ElementCount EC, LLT ScalarTy)
This is an important class for using LLVM in a threaded context.
void checkpoint(bool CheckDebugLocs=true)
Call this to indicate that it's a good point to assess whether locations have been lost.
Describe properties that are true of each instruction in the target description file.
Wrapper class representing physical registers. Should be passed by value.
void addLiveIn(MCRegister PhysReg, LaneBitmask LaneMask=LaneBitmask::getAll())
Adds the specified register as a live in.
MachineInstrBundleIterator< MachineInstr > iterator
LLVM_ABI bool isLiveIn(MCRegister Reg, LaneBitmask LaneMask=LaneBitmask::getAll()) const
Return true if the specified register is in the live in set.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
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.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
GISelChangeObserver * getObserver() const
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineBasicBlock & front() const
Register addLiveIn(MCRegister PReg, const TargetRegisterClass *RC)
addLiveIn - Add the specified physical register as a live-in value and create a corresponding virtual...
const TargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
Helper class to build MachineInstr.
MachineInstrBuilder buildUnmerge(ArrayRef< LLT > Res, const SrcOp &Op)
Build and insert Res0, ... = G_UNMERGE_VALUES Op.
MachineInstrBuilder buildExtract(const DstOp &Res, const SrcOp &Src, uint64_t Index)
Build and insert Res0, ... = G_EXTRACT Src, Idx0.
MachineInstrBuilder buildMergeLikeInstr(const DstOp &Res, ArrayRef< Register > Ops)
Build and insert Res = G_MERGE_VALUES Op0, ... or Res = G_BUILD_VECTOR Op0, ... or Res = G_CONCAT_VEC...
Register getReg(unsigned Idx) const
Get the register for the operand index.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
mop_range uses()
Returns all operands which may be register uses.
const DebugLoc & getDebugLoc() const
Returns the debug location id of this MachineInstr.
const MachineOperand & getOperand(unsigned i) const
A description of a memory reference used in the backend.
MachineOperand class - Representation of each machine instruction operand.
const ConstantInt * getCImm() const
bool isCImm() const
isCImm - Test if this is a MO_CImmediate operand.
bool isReg() const
isReg - Tests if this is a MO_Register operand.
LLVM_ABI void setReg(Register Reg)
Change the register this operand corresponds to.
MachineInstr * getParent()
getParent - Return the instruction that this operand belongs to.
Register getReg() const
getReg - Returns the register number.
const ConstantFP * getFPImm() const
bool isFPImm() const
isFPImm - Tests if this is a MO_FPImmediate operand.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
LLVM_ABI MachineInstr * getVRegDef(Register Reg) const
getVRegDef - Return the machine instr that defines the specified virtual register or null if none is ...
bool use_nodbg_empty(Register RegNo) const
use_nodbg_empty - Return true if there are no non-Debug instructions using the specified register.
const RegClassOrRegBank & getRegClassOrRegBank(Register Reg) const
Return the register bank or register class of Reg.
def_iterator def_begin(Register RegNo) const
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLT getType(Register Reg) const
Get the low-level type of Reg or LLT{} if Reg is not a generic (target independent) virtual register.
LLVM_ABI void setType(Register VReg, LLT Ty)
Set the low-level type of VReg to Ty.
LLVM_ABI Register createGenericVirtualRegister(LLT Ty, StringRef Name="")
Create and return a new generic virtual register with low-level type Ty.
LLVM_ABI Register getLiveInVirtReg(MCRegister PReg) const
getLiveInVirtReg - If PReg is a live-in physical register, return the corresponding live-in virtual r...
const TargetRegisterClass * getRegClassOrNull(Register Reg) const
Return the register class of Reg, or null if Reg has not been assigned a register class yet.
static def_iterator def_end()
iterator_range< use_iterator > use_operands(Register Reg) const
A Module instance is used to store all the information related to an LLVM module.
Represents a value which can be a Register or a constant.
Holds all the information related to register banks.
static const TargetRegisterClass * constrainGenericRegister(Register Reg, const TargetRegisterClass &RC, MachineRegisterInfo &MRI)
Constrain the (possibly generic) virtual register Reg to RC.
Wrapper class representing virtual and physical registers.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
TargetInstrInfo - Interface to description of machine instruction set.
virtual bool allowsMisalignedMemoryAccesses(EVT, unsigned AddrSpace=0, Align Alignment=Align(1), MachineMemOperand::Flags Flags=MachineMemOperand::MONone, unsigned *=nullptr) const
Determine if the target supports unaligned memory accesses.
virtual LLT getOptimalMemOpLLT(const MemOp &Op, const AttributeList &) const
LLT returning variant.
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...
@ ZeroOrOneBooleanContent
@ UndefinedBooleanContent
@ ZeroOrNegativeOneBooleanContent
This class defines information used to lower LLVM code to legal SelectionDAG operators that the targe...
const Triple & getTargetTriple() const
GlobalISelAbortMode GlobalISelAbort
EnableGlobalISelAbort - Control abort behaviour when global instruction selection fails to lower/sele...
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetLowering * getTargetLowering() const
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr LeafTy multiplyCoefficientBy(ScalarTy RHS) const
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
const APInt & smin(const APInt &A, const APInt &B)
Determine the smaller of two APInts considered to be signed.
const APInt & smax(const APInt &A, const APInt &B)
Determine the larger of two APInts considered to be signed.
const APInt & umin(const APInt &A, const APInt &B)
Determine the smaller of two APInts considered to be unsigned.
const APInt & umax(const APInt &A, const APInt &B)
Determine the larger of two APInts considered to be unsigned.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ C
The default llvm calling convention, compatible with C.
DiagnosticInfoMIROptimization::MachineArgument MNV
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ABI Register getFunctionLiveInPhysReg(MachineFunction &MF, const TargetInstrInfo &TII, MCRegister PhysReg, const TargetRegisterClass &RC, const DebugLoc &DL, LLT RegTy=LLT())
Return a virtual register corresponding to the incoming argument register PhysReg.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
LLVM_ABI std::optional< SmallVector< APInt > > ConstantFoldICmp(unsigned Pred, const Register Op1, const Register Op2, unsigned DstScalarSizeInBits, unsigned ExtOp, const MachineRegisterInfo &MRI)
LLVM_ABI bool isBuildVectorAllZeros(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndef=false)
Return true if the specified instruction is a G_BUILD_VECTOR or G_BUILD_VECTOR_TRUNC where all of the...
LLVM_ABI Type * getTypeForLLT(LLT Ty, LLVMContext &C)
Get the type back from LLT.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI Register constrainOperandRegClass(const MachineFunction &MF, const TargetRegisterInfo &TRI, MachineRegisterInfo &MRI, const TargetInstrInfo &TII, const RegisterBankInfo &RBI, MachineInstr &InsertPt, const TargetRegisterClass &RegClass, MachineOperand &RegMO)
Constrain the Register operand OpIdx, so that it is now constrained to the TargetRegisterClass passed...
LLVM_ABI MachineInstr * getOpcodeDef(unsigned Opcode, Register Reg, const MachineRegisterInfo &MRI)
See if Reg is defined by an single def instruction that is Opcode.
LLVM_ABI const ConstantFP * getConstantFPVRegVal(Register VReg, const MachineRegisterInfo &MRI)
LLVM_ABI bool canCreatePoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
LLVM_ABI std::optional< APInt > getIConstantVRegVal(Register VReg, const MachineRegisterInfo &MRI)
If VReg is defined by a G_CONSTANT, return the corresponding value.
LLVM_ABI std::optional< APFloat > ConstantFoldIntToFloat(unsigned Opcode, LLT DstTy, Register Src, const MachineRegisterInfo &MRI)
LLVM_ABI std::optional< APInt > getIConstantSplatVal(const Register Reg, const MachineRegisterInfo &MRI)
LLVM_ABI bool isAllOnesOrAllOnesSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant -1 integer or a splatted vector of a constant -1 integer (with...
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI const llvm::fltSemantics & getFltSemanticForLLT(LLT Ty)
Get the appropriate floating point arithmetic semantic based on the bit size of the given scalar LLT.
LLVM_ABI std::optional< APFloat > ConstantFoldFPBinOp(unsigned Opcode, const Register Op1, const Register Op2, const MachineRegisterInfo &MRI)
LLVM_ABI void salvageDebugInfo(const MachineRegisterInfo &MRI, MachineInstr &MI)
Assuming the instruction MI is going to be deleted, attempt to salvage debug users of MI by writing t...
LLVM_ABI void constrainSelectedInstRegOperands(MachineInstr &I, const TargetInstrInfo &TII, const TargetRegisterInfo &TRI, const RegisterBankInfo &RBI)
Mutate the newly-selected instruction I to constrain its (possibly generic) virtual register operands...
bool isPreISelGenericOpcode(unsigned Opcode)
Check whether the given Opcode is a generic opcode that is not supposed to appear after ISel.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
LLVM_ABI std::optional< APInt > ConstantFoldExtOp(unsigned Opcode, const Register Op1, uint64_t Imm, const MachineRegisterInfo &MRI)
LLVM_ABI std::optional< RegOrConstant > getVectorSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI)
LLVM_ABI MVT getMVTForLLT(LLT Ty)
Get a rough equivalent of an MVT for a given LLT.
LLVM_READONLY APFloat maximum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 maximum semantics.
GISelWorkList< 4 > SmallInstListTy
LLVM_ABI std::optional< APInt > isConstantOrConstantSplatVector(MachineInstr &MI, const MachineRegisterInfo &MRI)
Determines if MI defines a constant integer or a splat vector of constant integers.
LLVM_ABI bool isNullOrNullSplat(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndefs=false)
Return true if the value is a constant 0 integer or a splatted vector of a constant 0 integer (with n...
LLVM_ABI MachineInstr * getDefIgnoringCopies(Register Reg, const MachineRegisterInfo &MRI)
Find the def instruction for Reg, folding away any trivial copies.
LLVM_ABI bool matchUnaryPredicate(const MachineRegisterInfo &MRI, Register Reg, std::function< bool(const Constant *ConstVal)> Match, bool AllowUndefs=false)
Attempt to match a unary predicate against a scalar/splat constant or every element of a constant G_B...
bool isPreISelGenericOptimizationHint(unsigned Opcode)
LLVM_ABI void reportGISelWarning(MachineFunction &MF, MachineOptimizationRemarkEmitter &MORE, MachineOptimizationRemarkMissed &R)
Report an ISel warning as a missed optimization remark to the LLVMContext's diagnostic stream.
LLVM_ABI bool isGuaranteedNotToBeUndef(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be undef, but may be poison.
LLVM_ABI bool isConstTrueVal(const TargetLowering &TLI, int64_t Val, bool IsVector, bool IsFP)
Returns true if given the TargetLowering's boolean contents information, the value Val contains a tru...
LLVM_ABI LLVM_READNONE LLT getLCMType(LLT OrigTy, LLT TargetTy)
Return the least common multiple type of OrigTy and TargetTy, by changing the number of vector elemen...
LLVM_ABI std::optional< int64_t > getIConstantVRegSExtVal(Register VReg, const MachineRegisterInfo &MRI)
If VReg is defined by a G_CONSTANT fits in int64_t returns it.
LLVM_ABI std::optional< APInt > ConstantFoldBinOp(unsigned Opcode, const Register Op1, const Register Op2, const MachineRegisterInfo &MRI)
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI const APInt & getIConstantFromReg(Register VReg, const MachineRegisterInfo &MRI)
VReg is defined by a G_CONSTANT, return the corresponding value.
LLVM_READONLY APFloat maxnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2008 maxNum semantics.
LLVM_ABI bool isConstantOrConstantVector(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowFP=true, bool AllowOpaqueConstants=true)
Return true if the specified instruction is known to be a constant, or a vector of constants.
constexpr unsigned MaxAnalysisRecursionDepth
auto reverse(ContainerTy &&C)
LLVM_ABI bool canReplaceReg(Register DstReg, Register SrcReg, MachineRegisterInfo &MRI)
Check if DstReg can be replaced with SrcReg depending on the register constraints.
LLVM_READONLY APFloat minimumnum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 minimumNumber semantics.
LLVM_ABI void saveUsesAndErase(MachineInstr &MI, MachineRegisterInfo &MRI, LostDebugLocObserver *LocObserver, SmallInstListTy &DeadInstChain)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
LLVM_ABI void reportGISelFailure(MachineFunction &MF, MachineOptimizationRemarkEmitter &MORE, MachineOptimizationRemarkMissed &R)
Report an ISel error as a missed optimization remark to the LLVMContext's diagnostic stream.
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
LLVM_ABI std::optional< ValueAndVReg > getAnyConstantVRegValWithLookThrough(Register VReg, const MachineRegisterInfo &MRI, bool LookThroughInstrs=true, bool LookThroughAnyExt=false)
If VReg is defined by a statically evaluable chain of instructions rooted on a G_CONSTANT or G_FCONST...
LLVM_ABI bool isBuildVectorAllOnes(const MachineInstr &MI, const MachineRegisterInfo &MRI, bool AllowUndef=false)
Return true if the specified instruction is a G_BUILD_VECTOR or G_BUILD_VECTOR_TRUNC where all of the...
LLVM_ABI bool canCreateUndefOrPoison(const Operator *Op, bool ConsiderFlagsAndMetadata=true)
canCreateUndefOrPoison returns true if Op can create undef or poison from non-undef & non-poison oper...
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI SmallVector< APInt > ConstantFoldVectorBinop(unsigned Opcode, const Register Op1, const Register Op2, const MachineRegisterInfo &MRI)
Tries to constant fold a vector binop with sources Op1 and Op2.
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
LLVM_ABI std::optional< FPValueAndVReg > getFConstantSplat(Register VReg, const MachineRegisterInfo &MRI, bool AllowUndef=true)
Returns a floating point scalar constant of a build vector splat if it exists.
bool includesPoison(UndefPoisonKind Kind)
Returns true if Kind includes the Poison bit.
LLVM_ABI std::optional< APInt > ConstantFoldCastOp(unsigned Opcode, LLT DstTy, const Register Op0, const MachineRegisterInfo &MRI)
LLVM_ABI void extractParts(Register Reg, LLT Ty, int NumParts, SmallVectorImpl< Register > &VRegs, MachineIRBuilder &MIRBuilder, MachineRegisterInfo &MRI)
Helper function to split a wide generic register into bitwise blocks with the given Type (which impli...
LLVM_ABI void getSelectionDAGFallbackAnalysisUsage(AnalysisUsage &AU)
Modify analysis usage so it preserves passes required for the SelectionDAG fallback.
LLVM_ABI bool canLowerMemCpyFamily(const MachineInstr &MI, const MachineRegisterInfo &MRI, unsigned MaxLen, Register &Dst, Register &Src, uint64_t &KnownLen, Align &Alignment, bool &DstAlignCanChange, std::vector< LLT > &MemOps)
Matcher for memcpy-like instructions.
LLVM_ABI LLVM_READNONE LLT getCoverTy(LLT OrigTy, LLT TargetTy)
Return smallest type that covers both OrigTy and TargetTy and is multiple of TargetTy.
bool includesUndef(UndefPoisonKind Kind)
Returns true if Kind includes the Undef bit.
LLVM_READONLY APFloat minnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2008 minNum semantics.
LLVM_ABI unsigned getInverseGMinMaxOpcode(unsigned MinMaxOpc)
Returns the inverse opcode of MinMaxOpc, which is a generic min/max opcode like G_SMIN.
@ Mul
Product of integers.
bool isTargetSpecificOpcode(unsigned Opcode)
Check whether the given Opcode is a target-specific opcode.
DWARFExpression::Operation Op
LLVM_ABI bool isGuaranteedNotToBeUndefOrPoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Return true if this function can prove that V does not have undef bits and is never poison.
LLVM_ABI std::optional< FPValueAndVReg > getFConstantVRegValWithLookThrough(Register VReg, const MachineRegisterInfo &MRI, bool LookThroughInstrs=true)
If VReg is defined by a statically evaluable chain of instructions rooted on a G_FCONSTANT returns it...
LLVM_ABI bool isConstFalseVal(const TargetLowering &TLI, int64_t Val, bool IsVector, bool IsFP)
LLVM_ABI std::optional< APFloat > isConstantOrConstantSplatVectorFP(MachineInstr &MI, const MachineRegisterInfo &MRI)
Determines if MI defines a float constant integer or a splat vector of float constant integers.
constexpr unsigned BitWidth
LLVM_ABI APFloat getAPFloatFromSize(double Val, unsigned Size)
Returns an APFloat from Val converted to the appropriate size.
LLVM_ABI bool isBuildVectorConstantSplat(const Register Reg, const MachineRegisterInfo &MRI, int64_t SplatValue, bool AllowUndef)
Return true if the specified register is defined by G_BUILD_VECTOR or G_BUILD_VECTOR_TRUNC where all ...
LLVM_ABI void eraseInstr(MachineInstr &MI, MachineRegisterInfo &MRI, LostDebugLocObserver *LocObserver=nullptr)
DiagnosticSeverity
Defines the different supported severity of a diagnostic.
LLVM_ABI Register constrainRegToClass(MachineRegisterInfo &MRI, const TargetInstrInfo &TII, const RegisterBankInfo &RBI, Register Reg, const TargetRegisterClass &RegClass)
Try to constrain Reg to the specified register class.
LLVM_ABI int64_t getICmpTrueVal(const TargetLowering &TLI, bool IsVector, bool IsFP)
Returns an integer representing true, as defined by the TargetBooleanContents.
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< ValueAndVReg > getIConstantVRegValWithLookThrough(Register VReg, const MachineRegisterInfo &MRI, bool LookThroughInstrs=true)
If VReg is defined by a statically evaluable chain of instructions rooted on a G_CONSTANT returns its...
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
UndefPoisonKind
Enumeration to track whether we are interested in Undef, Poison, or both.
LLVM_ABI bool isPreISelGenericFloatingPointOpcode(unsigned Opc)
Returns whether opcode Opc is a pre-isel generic floating-point opcode, having only floating-point op...
LLVM_ABI std::optional< DefinitionAndSourceRegister > getDefSrcRegIgnoringCopies(Register Reg, const MachineRegisterInfo &MRI)
Find the def instruction for Reg, and underlying value Register folding away any copies.
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Align commonAlignment(Align A, uint64_t Offset)
Returns the alignment that satisfies both alignments.
LLVM_ABI SmallVector< APInt > ConstantFoldUnaryIntOp(unsigned Opcode, LLT DstTy, Register Src, const MachineRegisterInfo &MRI)
Tries to constant fold a unary integer operation (G_CTLZ, G_CTTZ, G_CTPOP and their _ZERO_POISON vari...
LLVM_ABI void eraseInstrs(ArrayRef< MachineInstr * > DeadInstrs, MachineRegisterInfo &MRI, LostDebugLocObserver *LocObserver=nullptr)
LLVM_ABI void salvageDebugInfoForDbgValue(const MachineRegisterInfo &MRI, MachineInstr &MI, ArrayRef< MachineOperand * > DbgUsers)
Assuming the instruction MI is going to be deleted, attempt to salvage debug users of MI by writing t...
LLVM_ABI bool isKnownToBeAPowerOfTwo(const Value *V, const DataLayout &DL, bool OrZero=false, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Return true if the given value is known to have exactly one bit set when defined.
LLVM_ABI Register getSrcRegIgnoringCopies(Register Reg, const MachineRegisterInfo &MRI)
Find the source register for Reg, folding away any trivial copies.
LLVM_ABI LLVM_READNONE LLT getGCDType(LLT OrigTy, LLT TargetTy)
Return a type where the total size is the greatest common divisor of OrigTy and TargetTy.
LLVM_ABI bool isGuaranteedNotToBePoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be poison, but may be undef.
T bit_floor(T Value)
Returns the largest integral power of two no greater than Value if Value is nonzero.
LLVM_READONLY APFloat minimum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 minimum semantics.
LLVM_READONLY APFloat maximumnum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 maximumNumber semantics.
LLVM_ABI std::optional< int64_t > getIConstantSplatSExtVal(const Register Reg, const MachineRegisterInfo &MRI)
LLVM_ABI bool isAssertMI(const MachineInstr &MI)
Returns true if the instruction MI is one of the assert instructions.
LLVM_ABI void extractVectorParts(Register Reg, unsigned NumElts, SmallVectorImpl< Register > &VRegs, MachineIRBuilder &MIRBuilder, MachineRegisterInfo &MRI)
Version which handles irregular sub-vector splits.
LLVM_ABI int getSplatIndex(ArrayRef< int > Mask)
If all non-negative Mask elements are the same value, return that value.
LLVM_ABI bool isTriviallyDead(const MachineInstr &MI, const MachineRegisterInfo &MRI)
Check whether an instruction MI is dead: it only defines dead virtual registers, and doesn't have oth...
LLVM_ABI Align inferAlignFromPtrInfo(MachineFunction &MF, const MachinePointerInfo &MPO)
LLVM_ABI void reportFatalUsageError(Error Err)
Report a fatal error that does not indicate a bug in LLVM.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Simple struct used to hold a Register value and the instruction which defines it.
unsigned countMaxPopulation() const
Returns the maximum number of bits that could be one.
unsigned countMinPopulation() const
Returns the number of bits known to be one.
This class contains a discriminated union of information about pointers in memory operands,...
LLVM_ABI unsigned getAddrSpace() const
Return the LLVM IR address space number that this pointer points into.
int64_t Offset
Offset - This is an offset from the base Value*.
PointerUnion< const Value *, const PseudoSourceValue * > V
This is the IR pointer value for the access, or it is null if unknown.
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)
Simple struct used to hold a constant integer value and a virtual register.