24#include "llvm/IR/IntrinsicsAArch64.h"
36#define DEBUG_TYPE "aarch64tti"
42 "sve-prefer-fixed-over-scalable-if-equal",
cl::Hidden);
60 "Penalty of calling a function that requires a change to PSTATE.SM"));
64 cl::desc(
"Penalty of inlining a call that requires a change to PSTATE.SM"));
75 cl::desc(
"The cost of a histcnt instruction"));
79 cl::desc(
"The number of instructions to search for a redundant dmb"));
83 cl::desc(
"Threshold for forced unrolling of small loops in AArch64"));
86class TailFoldingOption {
101 bool NeedsDefault =
true;
105 void setNeedsDefault(
bool V) { NeedsDefault =
V; }
120 assert((InitialBits == TailFoldingOpts::Disabled || !NeedsDefault) &&
121 "Initial bits should only include one of "
122 "(disabled|all|simple|default)");
123 Bits = NeedsDefault ? DefaultBits : InitialBits;
125 Bits &= ~DisableBits;
131 errs() <<
"invalid argument '" << Opt
132 <<
"' to -sve-tail-folding=; the option should be of the form\n"
133 " (disabled|all|default|simple)[+(reductions|recurrences"
134 "|reverse|noreductions|norecurrences|noreverse)]\n";
140 void operator=(
const std::string &Val) {
149 setNeedsDefault(
false);
152 StringRef(Val).split(TailFoldTypes,
'+', -1,
false);
154 unsigned StartIdx = 1;
155 if (TailFoldTypes[0] ==
"disabled")
156 setInitialBits(TailFoldingOpts::Disabled);
157 else if (TailFoldTypes[0] ==
"all")
158 setInitialBits(TailFoldingOpts::All);
159 else if (TailFoldTypes[0] ==
"default")
160 setNeedsDefault(
true);
161 else if (TailFoldTypes[0] ==
"simple")
162 setInitialBits(TailFoldingOpts::Simple);
165 setInitialBits(TailFoldingOpts::Disabled);
168 for (
unsigned I = StartIdx;
I < TailFoldTypes.
size();
I++) {
169 if (TailFoldTypes[
I] ==
"reductions")
170 setEnableBit(TailFoldingOpts::Reductions);
171 else if (TailFoldTypes[
I] ==
"recurrences")
172 setEnableBit(TailFoldingOpts::Recurrences);
173 else if (TailFoldTypes[
I] ==
"reverse")
174 setEnableBit(TailFoldingOpts::Reverse);
175 else if (TailFoldTypes[
I] ==
"noreductions")
176 setDisableBit(TailFoldingOpts::Reductions);
177 else if (TailFoldTypes[
I] ==
"norecurrences")
178 setDisableBit(TailFoldingOpts::Recurrences);
179 else if (TailFoldTypes[
I] ==
"noreverse")
180 setDisableBit(TailFoldingOpts::Reverse);
197 "Control the use of vectorisation using tail-folding for SVE where the"
198 " option is specified in the form (Initial)[+(Flag1|Flag2|...)]:"
199 "\ndisabled (Initial) No loop types will vectorize using "
201 "\ndefault (Initial) Uses the default tail-folding settings for "
203 "\nall (Initial) All legal loop types will vectorize using "
205 "\nsimple (Initial) Use tail-folding for simple loops (not "
206 "reductions or recurrences)"
207 "\nreductions Use tail-folding for loops containing reductions"
208 "\nnoreductions Inverse of above"
209 "\nrecurrences Use tail-folding for loops containing fixed order "
211 "\nnorecurrences Inverse of above"
212 "\nreverse Use tail-folding for loops requiring reversed "
214 "\nnoreverse Inverse of above"),
259 TTI->isMultiversionedFunction(
F) ?
"fmv-features" :
"target-features";
260 StringRef FeatureStr =
F.getFnAttribute(AttributeStr).getValueAsString();
261 FeatureStr.
split(Features,
",");
277 return F.hasFnAttribute(
"fmv-features");
287 if (
CallAttrs.caller().hasNonStreamingInterfaceAndBody() &&
288 CallAttrs.callee().hasStreamingInterfaceOrBody())
293 if (
CallAttrs.callee().hasStreamingBody()) {
303 CallAttrs.requiresPreservingAllZAState()) {
326 auto FVTy = dyn_cast<FixedVectorType>(Ty);
328 FVTy->getScalarSizeInBits() * FVTy->getNumElements() > 128;
337 unsigned DefaultCallPenalty)
const {
362 if (
F ==
Call.getCaller())
368 return DefaultCallPenalty;
379 ST->isSVEorStreamingSVEAvailable() &&
380 !ST->disableMaximizeScalableBandwidth();
404 assert(Ty->isIntegerTy());
406 unsigned BitSize = Ty->getPrimitiveSizeInBits();
413 ImmVal = Imm.sext((BitSize + 63) & ~0x3fU);
418 for (
unsigned ShiftVal = 0; ShiftVal < BitSize; ShiftVal += 64) {
424 return std::max<InstructionCost>(1,
Cost);
431 assert(Ty->isIntegerTy());
433 unsigned BitSize = Ty->getPrimitiveSizeInBits();
439 unsigned ImmIdx = ~0U;
443 case Instruction::GetElementPtr:
448 case Instruction::Store:
451 case Instruction::Add:
452 case Instruction::Sub:
453 case Instruction::Mul:
454 case Instruction::UDiv:
455 case Instruction::SDiv:
456 case Instruction::URem:
457 case Instruction::SRem:
458 case Instruction::And:
459 case Instruction::Or:
460 case Instruction::Xor:
461 case Instruction::ICmp:
465 case Instruction::Shl:
466 case Instruction::LShr:
467 case Instruction::AShr:
471 case Instruction::Trunc:
472 case Instruction::ZExt:
473 case Instruction::SExt:
474 case Instruction::IntToPtr:
475 case Instruction::PtrToInt:
476 case Instruction::BitCast:
477 case Instruction::PHI:
478 case Instruction::Call:
479 case Instruction::Select:
480 case Instruction::Ret:
481 case Instruction::Load:
486 int NumConstants = (BitSize + 63) / 64;
499 assert(Ty->isIntegerTy());
501 unsigned BitSize = Ty->getPrimitiveSizeInBits();
510 if (IID >= Intrinsic::aarch64_addg && IID <= Intrinsic::aarch64_udiv)
516 case Intrinsic::sadd_with_overflow:
517 case Intrinsic::uadd_with_overflow:
518 case Intrinsic::ssub_with_overflow:
519 case Intrinsic::usub_with_overflow:
520 case Intrinsic::smul_with_overflow:
521 case Intrinsic::umul_with_overflow:
523 int NumConstants = (BitSize + 63) / 64;
530 case Intrinsic::experimental_stackmap:
531 if ((Idx < 2) || (Imm.getBitWidth() <= 64 &&
isInt<64>(Imm.getSExtValue())))
534 case Intrinsic::experimental_patchpoint_void:
535 case Intrinsic::experimental_patchpoint:
536 if ((Idx < 4) || (Imm.getBitWidth() <= 64 &&
isInt<64>(Imm.getSExtValue())))
539 case Intrinsic::experimental_gc_statepoint:
540 if ((Idx < 5) || (Imm.getBitWidth() <= 64 &&
isInt<64>(Imm.getSExtValue())))
550 if (TyWidth == 32 || TyWidth == 64)
559 return ST->getMispredictionPenalty();
580 unsigned TotalHistCnts = 1;
590 unsigned EC = VTy->getElementCount().getKnownMinValue();
595 unsigned LegalEltSize = EltSize <= 32 ? 32 : 64;
597 if (EC == 2 || (LegalEltSize == 32 && EC == 4))
601 TotalHistCnts = EC / NaturalVectorWidth;
621 switch (ICA.
getID()) {
622 case Intrinsic::experimental_vector_histogram_add: {
629 case Intrinsic::clmul: {
634 if (LT.second == MVT::v8i8 || LT.second == MVT::v16i8)
638 if (TLI->getValueType(
DL, RetTy,
true) == MVT::i8) {
643 -1,
nullptr,
nullptr) *
646 -1,
nullptr,
nullptr);
650 if (LT.second.SimpleTy == MVT::nxv2i64)
651 if (ST->hasSVEAES() && (ST->isSVEAvailable() || ST->hasSSVE_AES()))
654 if (ST->hasSVE2() || ST->hasSME()) {
655 switch (LT.second.SimpleTy) {
670 if (LT.second.SimpleTy == MVT::nxv2i64)
674 switch (LT.second.SimpleTy) {
684 -1,
nullptr,
nullptr) *
687 -1,
nullptr,
nullptr));
696 return LT.first * 11;
698 return LT.first * 14;
705 case Intrinsic::umin:
706 case Intrinsic::umax:
707 case Intrinsic::smin:
708 case Intrinsic::smax: {
709 static const auto ValidMinMaxTys = {MVT::v8i8, MVT::v16i8, MVT::v4i16,
710 MVT::v8i16, MVT::v2i32, MVT::v4i32,
711 MVT::nxv16i8, MVT::nxv8i16, MVT::nxv4i32,
715 if (LT.second == MVT::v2i64)
721 case Intrinsic::scmp:
722 case Intrinsic::ucmp: {
724 {Intrinsic::scmp, MVT::i32, 3},
725 {Intrinsic::scmp, MVT::i64, 3},
726 {Intrinsic::scmp, MVT::v8i8, 3},
727 {Intrinsic::scmp, MVT::v16i8, 3},
728 {Intrinsic::scmp, MVT::v4i16, 3},
729 {Intrinsic::scmp, MVT::v8i16, 3},
730 {Intrinsic::scmp, MVT::v2i32, 3},
731 {Intrinsic::scmp, MVT::v4i32, 3},
732 {Intrinsic::scmp, MVT::v1i64, 3},
733 {Intrinsic::scmp, MVT::v2i64, 3},
739 return Entry->Cost * LT.first;
742 case Intrinsic::sadd_sat:
743 case Intrinsic::ssub_sat:
744 case Intrinsic::uadd_sat:
745 case Intrinsic::usub_sat: {
746 static const auto ValidSatTys = {MVT::v8i8, MVT::v16i8, MVT::v4i16,
747 MVT::v8i16, MVT::v2i32, MVT::v4i32,
753 LT.second.getScalarSizeInBits() == RetTy->getScalarSizeInBits() ? 1 : 4;
755 return LT.first * Instrs;
760 if (ST->isSVEAvailable() && VectorSize >= 128 &&
isPowerOf2_64(VectorSize))
761 return LT.first * Instrs;
765 case Intrinsic::abs: {
766 static const auto ValidAbsTys = {MVT::v8i8, MVT::v16i8, MVT::v4i16,
767 MVT::v8i16, MVT::v2i32, MVT::v4i32,
768 MVT::v2i64, MVT::nxv16i8, MVT::nxv8i16,
769 MVT::nxv4i32, MVT::nxv2i64};
775 case Intrinsic::bswap: {
776 static const auto ValidAbsTys = {MVT::v4i16, MVT::v8i16, MVT::v2i32,
777 MVT::v4i32, MVT::v2i64};
780 LT.second.getScalarSizeInBits() == RetTy->getScalarSizeInBits())
785 case Intrinsic::fmuladd: {
790 (EltTy->
isHalfTy() && ST->hasFullFP16()))
794 case Intrinsic::stepvector: {
803 Cost += AddCost * (LT.first - 1);
807 case Intrinsic::vector_extract:
808 case Intrinsic::vector_insert: {
821 bool IsExtract = ICA.
getID() == Intrinsic::vector_extract;
822 EVT SubVecVT = IsExtract ? getTLI()->getValueType(
DL, RetTy)
830 getTLI()->getTypeConversion(
C, SubVecVT);
832 getTLI()->getTypeConversion(
C, VecVT);
840 case Intrinsic::bitreverse: {
842 {Intrinsic::bitreverse, MVT::i32, 1},
843 {Intrinsic::bitreverse, MVT::i64, 1},
844 {Intrinsic::bitreverse, MVT::v8i8, 1},
845 {Intrinsic::bitreverse, MVT::v16i8, 1},
846 {Intrinsic::bitreverse, MVT::v4i16, 2},
847 {Intrinsic::bitreverse, MVT::v8i16, 2},
848 {Intrinsic::bitreverse, MVT::v2i32, 2},
849 {Intrinsic::bitreverse, MVT::v4i32, 2},
850 {Intrinsic::bitreverse, MVT::v1i64, 2},
851 {Intrinsic::bitreverse, MVT::v2i64, 2},
859 if (TLI->getValueType(
DL, RetTy,
true) == MVT::i8 ||
860 TLI->getValueType(
DL, RetTy,
true) == MVT::i16)
861 return LegalisationCost.first * Entry->Cost + 1;
863 return LegalisationCost.first * Entry->Cost;
867 case Intrinsic::ctpop: {
871 if (ST->hasCSSC() && !RetTy->isVectorTy()) {
874 return LT.first + ExtraCost;
876 if (!ST->hasNEON()) {
906 RetTy->getScalarSizeInBits()
909 return LT.first * Entry->Cost + ExtraCost;
913 case Intrinsic::sadd_with_overflow:
914 case Intrinsic::uadd_with_overflow:
915 case Intrinsic::ssub_with_overflow:
916 case Intrinsic::usub_with_overflow:
917 case Intrinsic::smul_with_overflow:
918 case Intrinsic::umul_with_overflow: {
920 {Intrinsic::sadd_with_overflow, MVT::i8, 3},
921 {Intrinsic::uadd_with_overflow, MVT::i8, 3},
922 {Intrinsic::sadd_with_overflow, MVT::i16, 3},
923 {Intrinsic::uadd_with_overflow, MVT::i16, 3},
924 {Intrinsic::sadd_with_overflow, MVT::i32, 1},
925 {Intrinsic::uadd_with_overflow, MVT::i32, 1},
926 {Intrinsic::sadd_with_overflow, MVT::i64, 1},
927 {Intrinsic::uadd_with_overflow, MVT::i64, 1},
928 {Intrinsic::ssub_with_overflow, MVT::i8, 3},
929 {Intrinsic::usub_with_overflow, MVT::i8, 3},
930 {Intrinsic::ssub_with_overflow, MVT::i16, 3},
931 {Intrinsic::usub_with_overflow, MVT::i16, 3},
932 {Intrinsic::ssub_with_overflow, MVT::i32, 1},
933 {Intrinsic::usub_with_overflow, MVT::i32, 1},
934 {Intrinsic::ssub_with_overflow, MVT::i64, 1},
935 {Intrinsic::usub_with_overflow, MVT::i64, 1},
936 {Intrinsic::smul_with_overflow, MVT::i8, 5},
937 {Intrinsic::umul_with_overflow, MVT::i8, 4},
938 {Intrinsic::smul_with_overflow, MVT::i16, 5},
939 {Intrinsic::umul_with_overflow, MVT::i16, 4},
940 {Intrinsic::smul_with_overflow, MVT::i32, 2},
941 {Intrinsic::umul_with_overflow, MVT::i32, 2},
942 {Intrinsic::smul_with_overflow, MVT::i64, 3},
943 {Intrinsic::umul_with_overflow, MVT::i64, 3},
945 EVT MTy = TLI->getValueType(
DL, RetTy->getContainedType(0),
true);
952 case Intrinsic::fptosi_sat:
953 case Intrinsic::fptoui_sat: {
956 bool IsSigned = ICA.
getID() == Intrinsic::fptosi_sat;
958 EVT MTy = TLI->getValueType(
DL, RetTy);
961 if ((LT.second == MVT::f32 || LT.second == MVT::f64 ||
962 LT.second == MVT::v2f32 || LT.second == MVT::v4f32 ||
963 LT.second == MVT::v2f64)) {
965 (LT.second == MVT::f64 && MTy == MVT::i32) ||
966 (LT.second == MVT::f32 && MTy == MVT::i64)))
975 if (LT.second.getScalarType() == MVT::f16 && !ST->hasFullFP16())
982 if ((LT.second == MVT::f16 && MTy == MVT::i32) ||
983 (LT.second == MVT::f16 && MTy == MVT::i64) ||
984 ((LT.second == MVT::v4f16 || LT.second == MVT::v8f16) &&
998 if ((LT.second.getScalarType() == MVT::f32 ||
999 LT.second.getScalarType() == MVT::f64 ||
1000 LT.second.getScalarType() == MVT::f16) &&
1003 Type::getIntNTy(RetTy->getContext(), LT.second.getScalarSizeInBits());
1004 if (LT.second.isVector())
1005 LegalTy =
VectorType::get(LegalTy, LT.second.getVectorElementCount());
1009 LegalTy, {LegalTy, LegalTy});
1013 LegalTy, {LegalTy, LegalTy});
1015 return LT.first *
Cost +
1016 ((LT.second.getScalarType() != MVT::f16 || ST->hasFullFP16()) ? 0
1022 RetTy = RetTy->getScalarType();
1023 if (LT.second.isVector()) {
1041 return LT.first *
Cost;
1043 case Intrinsic::fshl:
1044 case Intrinsic::fshr: {
1053 if (RetTy->isIntegerTy() && ICA.
getArgs()[0] == ICA.
getArgs()[1] &&
1054 (RetTy->getPrimitiveSizeInBits() == 32 ||
1055 RetTy->getPrimitiveSizeInBits() == 64)) {
1068 {Intrinsic::fshl, MVT::v4i32, 2},
1069 {Intrinsic::fshl, MVT::v2i64, 2}, {Intrinsic::fshl, MVT::v16i8, 2},
1070 {Intrinsic::fshl, MVT::v8i16, 2}, {Intrinsic::fshl, MVT::v2i32, 2},
1071 {Intrinsic::fshl, MVT::v8i8, 2}, {Intrinsic::fshl, MVT::v4i16, 2}};
1077 return LegalisationCost.first * Entry->Cost;
1081 if (!RetTy->isIntegerTy())
1086 bool HigherCost = (RetTy->getScalarSizeInBits() != 32 &&
1087 RetTy->getScalarSizeInBits() < 64) ||
1088 (RetTy->getScalarSizeInBits() % 64 != 0);
1089 unsigned ExtraCost = HigherCost ? 1 : 0;
1090 if (RetTy->getScalarSizeInBits() == 32 ||
1091 RetTy->getScalarSizeInBits() == 64)
1094 else if (HigherCost)
1098 return TyL.first + ExtraCost;
1100 case Intrinsic::get_active_lane_mask: {
1102 EVT RetVT = getTLI()->getValueType(
DL, RetTy);
1104 if (getTLI()->shouldExpandGetActiveLaneMask(RetVT, OpVT))
1107 if (RetTy->isScalableTy()) {
1108 if (TLI->getTypeAction(RetTy->getContext(), RetVT) !=
1118 if (ST->hasSVE2p1() || ST->hasSME2()) {
1130 Type *CondTy =
OpTy->getWithNewBitWidth(1);
1133 return Cost + (SplitCost * (
Cost - 1));
1148 case Intrinsic::experimental_vector_match: {
1151 unsigned SearchSize = NeedleTy->getNumElements();
1152 if (!getTLI()->shouldExpandVectorMatch(SearchVT, SearchSize)) {
1165 case Intrinsic::cttz: {
1167 if (LT.second == MVT::v8i8 || LT.second == MVT::v16i8)
1168 return LT.first * 2;
1169 if (LT.second == MVT::v4i16 || LT.second == MVT::v8i16 ||
1170 LT.second == MVT::v2i32 || LT.second == MVT::v4i32)
1171 return LT.first * 3;
1174 case Intrinsic::experimental_cttz_elts: {
1176 if (!getTLI()->shouldExpandCttzElements(ArgVT)) {
1184 case Intrinsic::loop_dependence_raw_mask:
1185 case Intrinsic::loop_dependence_war_mask: {
1187 if (ST->hasSVE2() || ST->hasSME()) {
1188 EVT VecVT = getTLI()->getValueType(
DL, RetTy);
1189 unsigned EltSizeInBytes =
1199 case Intrinsic::experimental_vector_extract_last_active:
1200 if (ST->isSVEorStreamingSVEAvailable()) {
1206 case Intrinsic::pow: {
1209 EVT VT = getTLI()->getValueType(
DL, RetTy);
1211 bool HasLibcall = getTLI()->getLibcallImpl(LC) != RTLIB::Unsupported;
1226 bool Is025 = ExpF->getValueAPF().isExactlyValue(0.25);
1227 bool Is075 = ExpF->getValueAPF().isExactlyValue(0.75);
1237 return (Sqrt * 2) +
FMul;
1248 case Intrinsic::sqrt:
1249 case Intrinsic::fabs:
1250 case Intrinsic::ceil:
1251 case Intrinsic::floor:
1252 case Intrinsic::nearbyint:
1253 case Intrinsic::round:
1254 case Intrinsic::rint:
1255 case Intrinsic::roundeven:
1256 case Intrinsic::trunc:
1257 case Intrinsic::minnum:
1258 case Intrinsic::maxnum:
1259 case Intrinsic::minimum:
1260 case Intrinsic::maximum: {
1278 auto RequiredType =
II.getType();
1281 assert(PN &&
"Expected Phi Node!");
1284 if (!PN->hasOneUse())
1285 return std::nullopt;
1287 for (
Value *IncValPhi : PN->incoming_values()) {
1290 Reinterpret->getIntrinsicID() !=
1291 Intrinsic::aarch64_sve_convert_to_svbool ||
1292 RequiredType != Reinterpret->getArgOperand(0)->getType())
1293 return std::nullopt;
1301 for (
unsigned I = 0;
I < PN->getNumIncomingValues();
I++) {
1303 NPN->
addIncoming(Reinterpret->getOperand(0), PN->getIncomingBlock(
I));
1376 return GoverningPredicateIdx != std::numeric_limits<unsigned>::max();
1381 return GoverningPredicateIdx;
1386 GoverningPredicateIdx = Index;
1408 return UndefIntrinsic;
1413 UndefIntrinsic = IID;
1440 return CmpPredicate;
1445 CmpPredicate = Pred;
1461 return ResultLanes == InactiveLanesTakenFromOperand;
1466 return OperandIdxForInactiveLanes;
1470 assert(ResultLanes == Uninitialized &&
"Cannot set property twice!");
1471 ResultLanes = InactiveLanesTakenFromOperand;
1472 OperandIdxForInactiveLanes = Index;
1477 return ResultLanes == InactiveLanesAreNotDefined;
1481 assert(ResultLanes == Uninitialized &&
"Cannot set property twice!");
1482 ResultLanes = InactiveLanesAreNotDefined;
1487 return ResultLanes == InactiveLanesAreUnused;
1491 assert(ResultLanes == Uninitialized &&
"Cannot set property twice!");
1492 ResultLanes = InactiveLanesAreUnused;
1502 ResultIsZeroInitialized =
true;
1513 return OperandIdxWithNoActiveLanes != std::numeric_limits<unsigned>::max();
1518 return OperandIdxWithNoActiveLanes;
1523 OperandIdxWithNoActiveLanes = Index;
1528 unsigned GoverningPredicateIdx = std::numeric_limits<unsigned>::max();
1531 unsigned IROpcode = 0;
1534 enum PredicationStyle {
1536 InactiveLanesTakenFromOperand,
1537 InactiveLanesAreNotDefined,
1538 InactiveLanesAreUnused
1541 bool ResultIsZeroInitialized =
false;
1542 unsigned OperandIdxForInactiveLanes = std::numeric_limits<unsigned>::max();
1543 unsigned OperandIdxWithNoActiveLanes = std::numeric_limits<unsigned>::max();
1551 return !isa<ScalableVectorType>(V->getType());
1559 case Intrinsic::aarch64_sve_fcvt_bf16f32_v2:
1560 case Intrinsic::aarch64_sve_fcvt_f16f32:
1561 case Intrinsic::aarch64_sve_fcvt_f16f64:
1562 case Intrinsic::aarch64_sve_fcvt_f32f16:
1563 case Intrinsic::aarch64_sve_fcvt_f32f64:
1564 case Intrinsic::aarch64_sve_fcvt_f64f16:
1565 case Intrinsic::aarch64_sve_fcvt_f64f32:
1566 case Intrinsic::aarch64_sve_fcvtlt_f32f16:
1567 case Intrinsic::aarch64_sve_fcvtlt_f64f32:
1568 case Intrinsic::aarch64_sve_fcvtx_f32f64:
1569 case Intrinsic::aarch64_sve_fcvtzs:
1570 case Intrinsic::aarch64_sve_fcvtzs_i32f16:
1571 case Intrinsic::aarch64_sve_fcvtzs_i32f64:
1572 case Intrinsic::aarch64_sve_fcvtzs_i64f16:
1573 case Intrinsic::aarch64_sve_fcvtzs_i64f32:
1574 case Intrinsic::aarch64_sve_fcvtzu:
1575 case Intrinsic::aarch64_sve_fcvtzu_i32f16:
1576 case Intrinsic::aarch64_sve_fcvtzu_i32f64:
1577 case Intrinsic::aarch64_sve_fcvtzu_i64f16:
1578 case Intrinsic::aarch64_sve_fcvtzu_i64f32:
1579 case Intrinsic::aarch64_sve_revb:
1580 case Intrinsic::aarch64_sve_revh:
1581 case Intrinsic::aarch64_sve_revw:
1582 case Intrinsic::aarch64_sve_revd:
1583 case Intrinsic::aarch64_sve_scvtf:
1584 case Intrinsic::aarch64_sve_scvtf_f16i32:
1585 case Intrinsic::aarch64_sve_scvtf_f16i64:
1586 case Intrinsic::aarch64_sve_scvtf_f32i64:
1587 case Intrinsic::aarch64_sve_scvtf_f64i32:
1588 case Intrinsic::aarch64_sve_ucvtf:
1589 case Intrinsic::aarch64_sve_ucvtf_f16i32:
1590 case Intrinsic::aarch64_sve_ucvtf_f16i64:
1591 case Intrinsic::aarch64_sve_ucvtf_f32i64:
1592 case Intrinsic::aarch64_sve_ucvtf_f64i32:
1595 case Intrinsic::aarch64_sve_fcvtnt_bf16f32_v2:
1596 case Intrinsic::aarch64_sve_fcvtnt_f16f32:
1597 case Intrinsic::aarch64_sve_fcvtnt_f32f64:
1598 case Intrinsic::aarch64_sve_fcvtxnt_f32f64:
1601 case Intrinsic::aarch64_sve_fabd:
1603 case Intrinsic::aarch64_sve_fadd:
1606 case Intrinsic::aarch64_sve_fdiv:
1609 case Intrinsic::aarch64_sve_fmax:
1611 case Intrinsic::aarch64_sve_fmaxnm:
1613 case Intrinsic::aarch64_sve_fmin:
1615 case Intrinsic::aarch64_sve_fminnm:
1617 case Intrinsic::aarch64_sve_fmla:
1619 case Intrinsic::aarch64_sve_fmls:
1621 case Intrinsic::aarch64_sve_fmul:
1624 case Intrinsic::aarch64_sve_fmulx:
1626 case Intrinsic::aarch64_sve_fnmla:
1628 case Intrinsic::aarch64_sve_fnmls:
1630 case Intrinsic::aarch64_sve_fsub:
1633 case Intrinsic::aarch64_sve_add:
1636 case Intrinsic::aarch64_sve_mla:
1638 case Intrinsic::aarch64_sve_mls:
1640 case Intrinsic::aarch64_sve_mul:
1643 case Intrinsic::aarch64_sve_sabd:
1645 case Intrinsic::aarch64_sve_sdiv:
1648 case Intrinsic::aarch64_sve_smax:
1650 case Intrinsic::aarch64_sve_smin:
1652 case Intrinsic::aarch64_sve_smulh:
1654 case Intrinsic::aarch64_sve_sub:
1657 case Intrinsic::aarch64_sve_uabd:
1659 case Intrinsic::aarch64_sve_udiv:
1662 case Intrinsic::aarch64_sve_umax:
1664 case Intrinsic::aarch64_sve_umin:
1666 case Intrinsic::aarch64_sve_umulh:
1668 case Intrinsic::aarch64_sve_asr:
1671 case Intrinsic::aarch64_sve_lsl:
1674 case Intrinsic::aarch64_sve_lsr:
1677 case Intrinsic::aarch64_sve_and:
1680 case Intrinsic::aarch64_sve_bic:
1682 case Intrinsic::aarch64_sve_eor:
1685 case Intrinsic::aarch64_sve_orr:
1688 case Intrinsic::aarch64_sve_shsub:
1690 case Intrinsic::aarch64_sve_shsubr:
1692 case Intrinsic::aarch64_sve_sqrshl:
1694 case Intrinsic::aarch64_sve_sqshl:
1696 case Intrinsic::aarch64_sve_sqsub:
1698 case Intrinsic::aarch64_sve_srshl:
1700 case Intrinsic::aarch64_sve_uhsub:
1702 case Intrinsic::aarch64_sve_uhsubr:
1704 case Intrinsic::aarch64_sve_uqrshl:
1706 case Intrinsic::aarch64_sve_uqshl:
1708 case Intrinsic::aarch64_sve_uqsub:
1710 case Intrinsic::aarch64_sve_urshl:
1713 case Intrinsic::aarch64_sve_add_u:
1716 case Intrinsic::aarch64_sve_and_u:
1719 case Intrinsic::aarch64_sve_asr_u:
1722 case Intrinsic::aarch64_sve_eor_u:
1725 case Intrinsic::aarch64_sve_fadd_u:
1728 case Intrinsic::aarch64_sve_fdiv_u:
1731 case Intrinsic::aarch64_sve_fmul_u:
1734 case Intrinsic::aarch64_sve_fsub_u:
1737 case Intrinsic::aarch64_sve_lsl_u:
1740 case Intrinsic::aarch64_sve_lsr_u:
1743 case Intrinsic::aarch64_sve_mul_u:
1746 case Intrinsic::aarch64_sve_orr_u:
1749 case Intrinsic::aarch64_sve_sdiv_u:
1752 case Intrinsic::aarch64_sve_sub_u:
1755 case Intrinsic::aarch64_sve_udiv_u:
1759 case Intrinsic::aarch64_sve_addqv:
1760 case Intrinsic::aarch64_sve_bic_z:
1761 case Intrinsic::aarch64_sve_brka_z:
1762 case Intrinsic::aarch64_sve_brkb_z:
1763 case Intrinsic::aarch64_sve_brkn_z:
1764 case Intrinsic::aarch64_sve_brkpa_z:
1765 case Intrinsic::aarch64_sve_brkpb_z:
1766 case Intrinsic::aarch64_sve_cntp:
1767 case Intrinsic::aarch64_sve_compact:
1768 case Intrinsic::aarch64_sve_eorv:
1769 case Intrinsic::aarch64_sve_eorqv:
1770 case Intrinsic::aarch64_sve_nand_z:
1771 case Intrinsic::aarch64_sve_nor_z:
1772 case Intrinsic::aarch64_sve_orn_z:
1773 case Intrinsic::aarch64_sve_orv:
1774 case Intrinsic::aarch64_sve_orqv:
1775 case Intrinsic::aarch64_sve_pnext:
1776 case Intrinsic::aarch64_sve_rdffr_z:
1777 case Intrinsic::aarch64_sve_saddv:
1778 case Intrinsic::aarch64_sve_uaddv:
1779 case Intrinsic::aarch64_sve_umaxv:
1780 case Intrinsic::aarch64_sve_umaxqv:
1781 case Intrinsic::aarch64_sve_facge:
1782 case Intrinsic::aarch64_sve_facgt:
1783 case Intrinsic::aarch64_sve_ld1:
1784 case Intrinsic::aarch64_sve_ld1_gather:
1785 case Intrinsic::aarch64_sve_ld1_gather_index:
1786 case Intrinsic::aarch64_sve_ld1_gather_scalar_offset:
1787 case Intrinsic::aarch64_sve_ld1_gather_sxtw:
1788 case Intrinsic::aarch64_sve_ld1_gather_sxtw_index:
1789 case Intrinsic::aarch64_sve_ld1_gather_uxtw:
1790 case Intrinsic::aarch64_sve_ld1_gather_uxtw_index:
1791 case Intrinsic::aarch64_sve_ld1q_gather_index:
1792 case Intrinsic::aarch64_sve_ld1q_gather_scalar_offset:
1793 case Intrinsic::aarch64_sve_ld1q_gather_vector_offset:
1794 case Intrinsic::aarch64_sve_ld1ro:
1795 case Intrinsic::aarch64_sve_ld1rq:
1796 case Intrinsic::aarch64_sve_ld1udq:
1797 case Intrinsic::aarch64_sve_ld1uwq:
1798 case Intrinsic::aarch64_sve_ld2_sret:
1799 case Intrinsic::aarch64_sve_ld2q_sret:
1800 case Intrinsic::aarch64_sve_ld3_sret:
1801 case Intrinsic::aarch64_sve_ld3q_sret:
1802 case Intrinsic::aarch64_sve_ld4_sret:
1803 case Intrinsic::aarch64_sve_ld4q_sret:
1804 case Intrinsic::aarch64_sve_ldff1:
1805 case Intrinsic::aarch64_sve_ldff1_gather:
1806 case Intrinsic::aarch64_sve_ldff1_gather_index:
1807 case Intrinsic::aarch64_sve_ldff1_gather_scalar_offset:
1808 case Intrinsic::aarch64_sve_ldff1_gather_sxtw:
1809 case Intrinsic::aarch64_sve_ldff1_gather_sxtw_index:
1810 case Intrinsic::aarch64_sve_ldff1_gather_uxtw:
1811 case Intrinsic::aarch64_sve_ldff1_gather_uxtw_index:
1812 case Intrinsic::aarch64_sve_ldnf1:
1813 case Intrinsic::aarch64_sve_ldnt1:
1814 case Intrinsic::aarch64_sve_ldnt1_gather:
1815 case Intrinsic::aarch64_sve_ldnt1_gather_index:
1816 case Intrinsic::aarch64_sve_ldnt1_gather_scalar_offset:
1817 case Intrinsic::aarch64_sve_ldnt1_gather_uxtw:
1820 case Intrinsic::aarch64_sve_and_z:
1823 case Intrinsic::aarch64_sve_orr_z:
1826 case Intrinsic::aarch64_sve_eor_z:
1830 case Intrinsic::aarch64_sve_cmpeq:
1831 case Intrinsic::aarch64_sve_cmpeq_wide:
1834 case Intrinsic::aarch64_sve_cmpge:
1835 case Intrinsic::aarch64_sve_cmpge_wide:
1838 case Intrinsic::aarch64_sve_cmpgt:
1839 case Intrinsic::aarch64_sve_cmpgt_wide:
1842 case Intrinsic::aarch64_sve_cmphi:
1843 case Intrinsic::aarch64_sve_cmphi_wide:
1846 case Intrinsic::aarch64_sve_cmphs:
1847 case Intrinsic::aarch64_sve_cmphs_wide:
1850 case Intrinsic::aarch64_sve_cmple_wide:
1853 case Intrinsic::aarch64_sve_cmplo_wide:
1856 case Intrinsic::aarch64_sve_cmpls_wide:
1859 case Intrinsic::aarch64_sve_cmplt_wide:
1862 case Intrinsic::aarch64_sve_cmpne:
1863 case Intrinsic::aarch64_sve_cmpne_wide:
1866 case Intrinsic::aarch64_sve_fcmpeq:
1869 case Intrinsic::aarch64_sve_fcmpge:
1872 case Intrinsic::aarch64_sve_fcmpgt:
1875 case Intrinsic::aarch64_sve_fcmpne:
1878 case Intrinsic::aarch64_sve_fcmpuo:
1882 case Intrinsic::aarch64_sve_prf:
1883 case Intrinsic::aarch64_sve_prfb_gather_index:
1884 case Intrinsic::aarch64_sve_prfb_gather_scalar_offset:
1885 case Intrinsic::aarch64_sve_prfb_gather_sxtw_index:
1886 case Intrinsic::aarch64_sve_prfb_gather_uxtw_index:
1887 case Intrinsic::aarch64_sve_prfd_gather_index:
1888 case Intrinsic::aarch64_sve_prfd_gather_scalar_offset:
1889 case Intrinsic::aarch64_sve_prfd_gather_sxtw_index:
1890 case Intrinsic::aarch64_sve_prfd_gather_uxtw_index:
1891 case Intrinsic::aarch64_sve_prfh_gather_index:
1892 case Intrinsic::aarch64_sve_prfh_gather_scalar_offset:
1893 case Intrinsic::aarch64_sve_prfh_gather_sxtw_index:
1894 case Intrinsic::aarch64_sve_prfh_gather_uxtw_index:
1895 case Intrinsic::aarch64_sve_prfw_gather_index:
1896 case Intrinsic::aarch64_sve_prfw_gather_scalar_offset:
1897 case Intrinsic::aarch64_sve_prfw_gather_sxtw_index:
1898 case Intrinsic::aarch64_sve_prfw_gather_uxtw_index:
1901 case Intrinsic::aarch64_sve_st1_scatter:
1902 case Intrinsic::aarch64_sve_st1_scatter_scalar_offset:
1903 case Intrinsic::aarch64_sve_st1_scatter_sxtw:
1904 case Intrinsic::aarch64_sve_st1_scatter_sxtw_index:
1905 case Intrinsic::aarch64_sve_st1_scatter_uxtw:
1906 case Intrinsic::aarch64_sve_st1_scatter_uxtw_index:
1907 case Intrinsic::aarch64_sve_st1dq:
1908 case Intrinsic::aarch64_sve_st1q_scatter_index:
1909 case Intrinsic::aarch64_sve_st1q_scatter_scalar_offset:
1910 case Intrinsic::aarch64_sve_st1q_scatter_vector_offset:
1911 case Intrinsic::aarch64_sve_st1wq:
1912 case Intrinsic::aarch64_sve_stnt1:
1913 case Intrinsic::aarch64_sve_stnt1_scatter:
1914 case Intrinsic::aarch64_sve_stnt1_scatter_index:
1915 case Intrinsic::aarch64_sve_stnt1_scatter_scalar_offset:
1916 case Intrinsic::aarch64_sve_stnt1_scatter_uxtw:
1918 case Intrinsic::aarch64_sve_st2:
1919 case Intrinsic::aarch64_sve_st2q:
1921 case Intrinsic::aarch64_sve_st3:
1922 case Intrinsic::aarch64_sve_st3q:
1924 case Intrinsic::aarch64_sve_st4:
1925 case Intrinsic::aarch64_sve_st4q:
1933 Value *UncastedPred;
1939 Pred = UncastedPred;
1945 if (OrigPredTy->getMinNumElements() <=
1947 ->getMinNumElements())
1948 Pred = UncastedPred;
1952 return C &&
C->isAllOnesValue();
1959 if (Dup && Dup->getIntrinsicID() == Intrinsic::aarch64_sve_dup &&
1960 Dup->getOperand(1) == Pg &&
isa<Constant>(Dup->getOperand(2)))
1968static std::optional<Instruction *>
1975 Value *Op1 =
II.getOperand(1);
1976 Value *Op2 =
II.getOperand(2);
2002 return std::nullopt;
2013 if (SimpleII == Inactive)
2021static std::optional<Instruction *>
2025 assert((
Opc == Instruction::ICmp ||
Opc == Instruction::FCmp) &&
2026 "Expected a compare operation!");
2033 Opc == Instruction::ICmp &&
LHS->getType() !=
RHS->getType();
2034 assert((IsWideICmp ||
LHS->getType() ==
RHS->getType()) &&
2035 "Unexpected wide compare!");
2051 const APInt *LHSVal, *RHSVal;
2053 return std::nullopt;
2076 return std::nullopt;
2090static std::optional<Instruction *>
2094 return std::nullopt;
2123 II.setCalledFunction(NewDecl);
2129 return std::nullopt;
2140 if (
Opc == Instruction::FCmp ||
Opc == Instruction::ICmp)
2143 return std::nullopt;
2155static std::optional<Instruction *>
2157 auto m_ConvertToSVBool = [](
auto P) {
2161 Intrinsic::aarch64_sve_convert_from_svbool;
2184 return std::nullopt;
2188 case Intrinsic::aarch64_sve_and_z:
2189 case Intrinsic::aarch64_sve_bic_z:
2190 case Intrinsic::aarch64_sve_eor_z:
2191 case Intrinsic::aarch64_sve_nand_z:
2192 case Intrinsic::aarch64_sve_nor_z:
2193 case Intrinsic::aarch64_sve_orn_z:
2194 case Intrinsic::aarch64_sve_orr_z:
2197 return std::nullopt;
2200 Value *BinOpPred = BinOp->getOperand(0);
2201 Value *BinOpOp1 = BinOp->getOperand(1);
2202 Value *BinOpOp2 = BinOp->getOperand(2);
2204 Value *NarrowBinOpPred;
2206 return std::nullopt;
2208 Value *NarrowBinOpOp1 =
2210 Value *NarrowBinOpOp2 = NarrowBinOpOp1;
2211 if (BinOpOp1 != BinOpOp2)
2215 BinOpIID, Ty, {NarrowBinOpPred, NarrowBinOpOp1, NarrowBinOpOp2});
2219static std::optional<Instruction *>
2226 return BinOpCombine;
2231 return std::nullopt;
2234 Value *Cursor =
II.getOperand(0), *EarliestReplacement =
nullptr;
2243 if (CursorVTy->getElementCount().getKnownMinValue() <
2244 IVTy->getElementCount().getKnownMinValue())
2248 if (Cursor->getType() == IVTy)
2249 EarliestReplacement = Cursor;
2254 if (!IntrinsicCursor || !(IntrinsicCursor->getIntrinsicID() ==
2255 Intrinsic::aarch64_sve_convert_to_svbool ||
2256 IntrinsicCursor->getIntrinsicID() ==
2257 Intrinsic::aarch64_sve_convert_from_svbool))
2260 CandidatesForRemoval.
insert(CandidatesForRemoval.
begin(), IntrinsicCursor);
2261 Cursor = IntrinsicCursor->getOperand(0);
2266 if (!EarliestReplacement)
2267 return std::nullopt;
2275 auto *OpPredicate =
II.getOperand(0);
2292 II.getArgOperand(2));
2298 return std::nullopt;
2302 II.getArgOperand(0),
II.getArgOperand(2),
uint64_t(0));
2311 II.getArgOperand(0));
2320 if (!
II.hasOneUse())
2321 return std::nullopt;
2324 return std::nullopt;
2327 switch (
II.getIntrinsicID()) {
2328 case Intrinsic::aarch64_sve_cmpne:
2329 IID = Intrinsic::aarch64_sve_cmpeq;
2331 case Intrinsic::aarch64_sve_cmpne_wide:
2332 IID = Intrinsic::aarch64_sve_cmpeq_wide;
2334 case Intrinsic::aarch64_sve_cmpeq:
2335 IID = Intrinsic::aarch64_sve_cmpne;
2337 case Intrinsic::aarch64_sve_cmpeq_wide:
2338 IID = Intrinsic::aarch64_sve_cmpne_wide;
2341 return std::nullopt;
2346 IID,
II.getOperand(1)->getType(),
2347 {II.getOperand(0), II.getOperand(1), II.getOperand(2)});
2359 return std::nullopt;
2361 for (
auto *U :
II.users()) {
2364 Type *Ty =
II.getOperand(1)->getType();
2369 Intrinsic::aarch64_sve_umin, Ty,
2370 {
II.getOperand(0),
II.getOperand(1), ConstantInt::get(Ty, 1)});
2376 return std::nullopt;
2390 return std::nullopt;
2395 if (!SplatValue || !SplatValue->isZero())
2396 return std::nullopt;
2401 DupQLane->getIntrinsicID() != Intrinsic::aarch64_sve_dupq_lane)
2402 return std::nullopt;
2406 if (!DupQLaneIdx || !DupQLaneIdx->isZero())
2407 return std::nullopt;
2410 if (!VecIns || VecIns->getIntrinsicID() != Intrinsic::vector_insert)
2411 return std::nullopt;
2416 return std::nullopt;
2419 return std::nullopt;
2423 return std::nullopt;
2427 if (!VecTy || !OutTy || VecTy->getNumElements() != OutTy->getMinNumElements())
2428 return std::nullopt;
2430 unsigned NumElts = VecTy->getNumElements();
2431 unsigned PredicateBits = 0;
2434 for (
unsigned I = 0;
I < NumElts; ++
I) {
2437 return std::nullopt;
2439 PredicateBits |= 1 << (
I * (16 / NumElts));
2443 if (PredicateBits == 0) {
2445 PFalse->takeName(&
II);
2451 for (
unsigned I = 0;
I < 16; ++
I)
2452 if ((PredicateBits & (1 <<
I)) != 0)
2455 unsigned PredSize = Mask & -Mask;
2460 for (
unsigned I = 0;
I < 16;
I += PredSize)
2461 if ((PredicateBits & (1 <<
I)) == 0)
2462 return std::nullopt;
2464 auto *ConvertToSVBool =
2467 auto *ConvertFromSVBool =
2469 II.getType(), ConvertToSVBool);
2477 Value *Pg =
II.getArgOperand(0);
2478 Value *Vec =
II.getArgOperand(1);
2479 auto IntrinsicID =
II.getIntrinsicID();
2480 bool IsAfter = IntrinsicID == Intrinsic::aarch64_sve_lasta;
2492 auto OpC = OldBinOp->getOpcode();
2498 OpC, NewLHS, NewRHS, OldBinOp, OldBinOp->getName(),
II.getIterator());
2504 if (IsAfter &&
C &&
C->isNullValue()) {
2508 Extract->insertBefore(
II.getIterator());
2509 Extract->takeName(&
II);
2515 return std::nullopt;
2517 if (IntrPG->getIntrinsicID() != Intrinsic::aarch64_sve_ptrue)
2518 return std::nullopt;
2520 const auto PTruePattern =
2526 return std::nullopt;
2528 unsigned Idx = MinNumElts - 1;
2538 if (Idx >= PgVTy->getMinNumElements())
2539 return std::nullopt;
2544 Extract->insertBefore(
II.getIterator());
2545 Extract->takeName(&
II);
2558 Value *Pg =
II.getArgOperand(0);
2560 Value *Vec =
II.getArgOperand(2);
2563 if (!Ty->isIntegerTy())
2564 return std::nullopt;
2569 return std::nullopt;
2586 II.getIntrinsicID(), {FPVec->getType()}, {Pg, FPFallBack, FPVec});
2601static std::optional<Instruction *>
2605 if (
Pattern == AArch64SVEPredPattern::all) {
2614 return MinNumElts && NumElts >= MinNumElts
2616 II, ConstantInt::get(
II.getType(), MinNumElts)))
2620static std::optional<Instruction *>
2623 if (!ST->isStreaming())
2624 return std::nullopt;
2636 Value *PgVal =
II.getArgOperand(0);
2637 Value *OpVal =
II.getArgOperand(1);
2641 if (PgVal == OpVal &&
2642 (
II.getIntrinsicID() == Intrinsic::aarch64_sve_ptest_first ||
2643 II.getIntrinsicID() == Intrinsic::aarch64_sve_ptest_last)) {
2658 return std::nullopt;
2662 if (Pg->
getIntrinsicID() == Intrinsic::aarch64_sve_convert_to_svbool &&
2663 OpIID == Intrinsic::aarch64_sve_convert_to_svbool &&
2677 if ((Pg ==
Op) && (
II.getIntrinsicID() == Intrinsic::aarch64_sve_ptest_any) &&
2678 ((OpIID == Intrinsic::aarch64_sve_brka_z) ||
2679 (OpIID == Intrinsic::aarch64_sve_brkb_z) ||
2680 (OpIID == Intrinsic::aarch64_sve_brkpa_z) ||
2681 (OpIID == Intrinsic::aarch64_sve_brkpb_z) ||
2682 (OpIID == Intrinsic::aarch64_sve_rdffr_z) ||
2683 (OpIID == Intrinsic::aarch64_sve_and_z) ||
2684 (OpIID == Intrinsic::aarch64_sve_bic_z) ||
2685 (OpIID == Intrinsic::aarch64_sve_eor_z) ||
2686 (OpIID == Intrinsic::aarch64_sve_nand_z) ||
2687 (OpIID == Intrinsic::aarch64_sve_nor_z) ||
2688 (OpIID == Intrinsic::aarch64_sve_orn_z) ||
2689 (OpIID == Intrinsic::aarch64_sve_orr_z))) {
2699 return std::nullopt;
2702template <Intrinsic::ID MulOpc, Intrinsic::ID FuseOpc>
2703static std::optional<Instruction *>
2705 bool MergeIntoAddendOp) {
2707 Value *MulOp0, *MulOp1, *AddendOp, *
Mul;
2708 if (MergeIntoAddendOp) {
2709 AddendOp =
II.getOperand(1);
2710 Mul =
II.getOperand(2);
2712 AddendOp =
II.getOperand(2);
2713 Mul =
II.getOperand(1);
2718 return std::nullopt;
2720 if (!
Mul->hasOneUse())
2721 return std::nullopt;
2724 if (
II.getType()->isFPOrFPVectorTy()) {
2729 return std::nullopt;
2731 return std::nullopt;
2736 if (MergeIntoAddendOp)
2746static std::optional<Instruction *>
2748 Value *Pred =
II.getOperand(0);
2749 Value *PtrOp =
II.getOperand(1);
2750 Type *VecTy =
II.getType();
2765static std::optional<Instruction *>
2767 Value *VecOp =
II.getOperand(0);
2768 Value *Pred =
II.getOperand(1);
2769 Value *PtrOp =
II.getOperand(2);
2785 case Intrinsic::aarch64_sve_fmul_u:
2786 return Instruction::BinaryOps::FMul;
2787 case Intrinsic::aarch64_sve_fadd_u:
2788 return Instruction::BinaryOps::FAdd;
2789 case Intrinsic::aarch64_sve_fsub_u:
2790 return Instruction::BinaryOps::FSub;
2792 return Instruction::BinaryOpsEnd;
2796static std::optional<Instruction *>
2799 if (
II.isStrictFP())
2800 return std::nullopt;
2802 auto *OpPredicate =
II.getOperand(0);
2804 if (BinOpCode == Instruction::BinaryOpsEnd ||
2806 return std::nullopt;
2808 BinOpCode,
II.getOperand(1),
II.getOperand(2),
II.getFastMathFlags());
2812static std::optional<Instruction *>
2814 assert(
II.getIntrinsicID() == Intrinsic::aarch64_sve_mla_u &&
2815 "Expected MLA_U intrinsic");
2816 Value *Acc =
II.getArgOperand(1);
2817 Value *MulOp0 =
II.getArgOperand(2);
2818 Value *MulOp1 =
II.getArgOperand(3);
2833 II.setArgOperand(2, MulOp1);
2834 II.setArgOperand(3, MulOp0);
2838 return std::nullopt;
2841static std::optional<Instruction *>
2843 assert((
II.getIntrinsicID() == Intrinsic::aarch64_sve_sadalp ||
2844 II.getIntrinsicID() == Intrinsic::aarch64_sve_uadalp) &&
2845 "Expected SADALP or UADALP intrinsic");
2851 return std::nullopt;
2855 return std::nullopt;
2859 II.getIntrinsicID(), {II.getType()},
2860 {II.getArgOperand(0), Acc, II.getArgOperand(2)});
2870 Intrinsic::aarch64_sve_mla>(
2874 Intrinsic::aarch64_sve_mad>(
2877 return std::nullopt;
2880static std::optional<Instruction *>
2884 Intrinsic::aarch64_sve_fmla>(IC,
II,
2889 Intrinsic::aarch64_sve_fmad>(IC,
II,
2894 Intrinsic::aarch64_sve_fmla>(IC,
II,
2897 return std::nullopt;
2900static std::optional<Instruction *>
2904 Intrinsic::aarch64_sve_fmla>(IC,
II,
2909 Intrinsic::aarch64_sve_fmad>(IC,
II,
2914 Intrinsic::aarch64_sve_fmla_u>(
2920static std::optional<Instruction *>
2924 Intrinsic::aarch64_sve_fmls>(IC,
II,
2929 Intrinsic::aarch64_sve_fnmsb>(
2934 Intrinsic::aarch64_sve_fmls>(IC,
II,
2937 return std::nullopt;
2940static std::optional<Instruction *>
2944 Intrinsic::aarch64_sve_fmls>(IC,
II,
2949 Intrinsic::aarch64_sve_fnmsb>(
2954 Intrinsic::aarch64_sve_fmls_u>(
2963 Intrinsic::aarch64_sve_mls>(
2966 return std::nullopt;
2971 Value *UnpackArg =
II.getArgOperand(0);
2973 bool IsSigned =
II.getIntrinsicID() == Intrinsic::aarch64_sve_sunpkhi ||
2974 II.getIntrinsicID() == Intrinsic::aarch64_sve_sunpklo;
2987 return std::nullopt;
2991 auto *OpVal =
II.getOperand(0);
2992 auto *OpIndices =
II.getOperand(1);
2999 SplatValue->getValue().uge(VTy->getElementCount().getKnownMinValue()))
3000 return std::nullopt;
3015 Type *RetTy =
II.getType();
3016 constexpr Intrinsic::ID FromSVB = Intrinsic::aarch64_sve_convert_from_svbool;
3017 constexpr Intrinsic::ID ToSVB = Intrinsic::aarch64_sve_convert_to_svbool;
3021 if ((
match(
II.getArgOperand(0),
3028 if (TyA ==
B->getType() &&
3033 TyA->getMinNumElements());
3039 return std::nullopt;
3047 if (
match(
II.getArgOperand(0),
3052 II, (
II.getIntrinsicID() == Intrinsic::aarch64_sve_zip1 ?
A :
B));
3054 return std::nullopt;
3057static std::optional<Instruction *>
3059 Value *Mask =
II.getOperand(0);
3060 Value *BasePtr =
II.getOperand(1);
3061 Value *Index =
II.getOperand(2);
3072 BasePtr->getPointerAlignment(
II.getDataLayout());
3075 BasePtr, IndexBase);
3082 return std::nullopt;
3085static std::optional<Instruction *>
3087 Value *Val =
II.getOperand(0);
3088 Value *Mask =
II.getOperand(1);
3089 Value *BasePtr =
II.getOperand(2);
3090 Value *Index =
II.getOperand(3);
3100 BasePtr->getPointerAlignment(
II.getDataLayout());
3103 BasePtr, IndexBase);
3109 return std::nullopt;
3115 Value *Pred =
II.getOperand(0);
3116 Value *Vec =
II.getOperand(1);
3117 Value *DivVec =
II.getOperand(2);
3121 if (!SplatConstantInt)
3122 return std::nullopt;
3126 if (DivisorValue == -1)
3127 return std::nullopt;
3128 if (DivisorValue == 1)
3134 Intrinsic::aarch64_sve_asrd, {
II.getType()}, {Pred, Vec, DivisorLog2});
3141 Intrinsic::aarch64_sve_asrd, {
II.getType()}, {Pred, Vec, DivisorLog2});
3143 Intrinsic::aarch64_sve_neg, {ASRD->getType()}, {ASRD, Pred, ASRD});
3147 return std::nullopt;
3151 size_t VecSize = Vec.
size();
3156 size_t HalfVecSize = VecSize / 2;
3160 if (*
LHS !=
nullptr && *
RHS !=
nullptr) {
3168 if (*
LHS ==
nullptr && *
RHS !=
nullptr)
3186 return std::nullopt;
3193 Elts[Idx->getValue().getZExtValue()] = InsertElt->getOperand(1);
3194 CurrentInsertElt = InsertElt->getOperand(0);
3200 return std::nullopt;
3204 for (
size_t I = 0;
I < Elts.
size();
I++) {
3205 if (Elts[
I] ==
nullptr)
3210 if (InsertEltChain ==
nullptr)
3211 return std::nullopt;
3217 unsigned PatternWidth = IIScalableTy->getScalarSizeInBits() * Elts.
size();
3218 unsigned PatternElementCount = IIScalableTy->getScalarSizeInBits() *
3219 IIScalableTy->getMinNumElements() /
3224 auto *WideShuffleMaskTy =
3235 auto NarrowBitcast =
3248 return std::nullopt;
3253 Value *Pred =
II.getOperand(0);
3254 Value *Vec =
II.getOperand(1);
3255 Value *Shift =
II.getOperand(2);
3258 Value *AbsPred, *MergedValue;
3264 return std::nullopt;
3272 return std::nullopt;
3277 return std::nullopt;
3280 {
II.getType()}, {Pred, Vec, Shift});
3287 Value *Vec =
II.getOperand(0);
3292 return std::nullopt;
3298 auto *NI =
II.getNextNode();
3301 return !
I->mayReadOrWriteMemory() && !
I->mayHaveSideEffects();
3303 while (LookaheadThreshold-- && CanSkipOver(NI)) {
3304 auto *NIBB = NI->getParent();
3305 NI = NI->getNextNode();
3307 if (
auto *SuccBB = NIBB->getUniqueSuccessor())
3308 NI = &*SuccBB->getFirstNonPHIOrDbgOrLifetime();
3314 if (NextII &&
II.isIdenticalTo(NextII))
3317 return std::nullopt;
3325 {II.getType(), II.getOperand(0)->getType()},
3326 {II.getOperand(0), II.getOperand(1)}));
3333 if (PredPattern == AArch64SVEPredPattern::all ||
3334 PredPattern == AArch64SVEPredPattern::pow2)
3336 return std::nullopt;
3342 Value *Passthru =
II.getOperand(0);
3350 auto *Mask = ConstantInt::get(Ty, MaskValue);
3356 return std::nullopt;
3359static std::optional<Instruction *>
3366 return std::nullopt;
3372 constexpr Intrinsic::ID UMinID = Intrinsic::aarch64_sve_umin_u;
3382 UMinID,
II.getType(), {Pg, NewUMin, ConstantInt::get(II.getType(), 1)});
3392 return std::nullopt;
3395std::optional<Instruction *>
3406 case Intrinsic::aarch64_dmb:
3408 case Intrinsic::aarch64_neon_fmaxnm:
3409 case Intrinsic::aarch64_neon_fminnm:
3411 case Intrinsic::aarch64_sve_convert_from_svbool:
3413 case Intrinsic::aarch64_sve_dup:
3415 case Intrinsic::aarch64_sve_dup_x:
3417 case Intrinsic::aarch64_sve_cmpeq:
3418 case Intrinsic::aarch64_sve_cmpeq_wide:
3420 case Intrinsic::aarch64_sve_cmpne:
3421 case Intrinsic::aarch64_sve_cmpne_wide:
3423 case Intrinsic::aarch64_sve_rdffr:
3425 case Intrinsic::aarch64_sve_lasta:
3426 case Intrinsic::aarch64_sve_lastb:
3428 case Intrinsic::aarch64_sve_clasta_n:
3429 case Intrinsic::aarch64_sve_clastb_n:
3431 case Intrinsic::aarch64_sve_cntd:
3433 case Intrinsic::aarch64_sve_cntw:
3435 case Intrinsic::aarch64_sve_cnth:
3437 case Intrinsic::aarch64_sve_cntb:
3439 case Intrinsic::aarch64_sme_cntsd:
3441 case Intrinsic::aarch64_sve_ptest_any:
3442 case Intrinsic::aarch64_sve_ptest_first:
3443 case Intrinsic::aarch64_sve_ptest_last:
3445 case Intrinsic::aarch64_sve_fadd:
3447 case Intrinsic::aarch64_sve_fadd_u:
3449 case Intrinsic::aarch64_sve_fmul_u:
3451 case Intrinsic::aarch64_sve_fsub:
3453 case Intrinsic::aarch64_sve_fsub_u:
3455 case Intrinsic::aarch64_sve_add:
3457 case Intrinsic::aarch64_sve_add_u:
3459 Intrinsic::aarch64_sve_mla_u>(
3461 case Intrinsic::aarch64_sve_mla_u:
3463 case Intrinsic::aarch64_sve_sadalp:
3464 case Intrinsic::aarch64_sve_uadalp:
3466 case Intrinsic::aarch64_sve_sub:
3468 case Intrinsic::aarch64_sve_sub_u:
3470 Intrinsic::aarch64_sve_mls_u>(
3472 case Intrinsic::aarch64_sve_tbl:
3474 case Intrinsic::aarch64_sve_uunpkhi:
3475 case Intrinsic::aarch64_sve_uunpklo:
3476 case Intrinsic::aarch64_sve_sunpkhi:
3477 case Intrinsic::aarch64_sve_sunpklo:
3479 case Intrinsic::aarch64_sve_uzp1:
3481 case Intrinsic::aarch64_sve_zip1:
3482 case Intrinsic::aarch64_sve_zip2:
3484 case Intrinsic::aarch64_sve_ld1_gather_index:
3486 case Intrinsic::aarch64_sve_st1_scatter_index:
3488 case Intrinsic::aarch64_sve_ld1:
3490 case Intrinsic::aarch64_sve_st1:
3492 case Intrinsic::aarch64_sve_sdiv:
3494 case Intrinsic::aarch64_sve_sel:
3496 case Intrinsic::aarch64_sve_srshl:
3498 case Intrinsic::aarch64_sve_dupq_lane:
3500 case Intrinsic::aarch64_sve_insr:
3502 case Intrinsic::aarch64_sve_whilelo:
3504 case Intrinsic::aarch64_sve_ptrue:
3506 case Intrinsic::aarch64_sve_uxtb:
3508 case Intrinsic::aarch64_sve_uxth:
3510 case Intrinsic::aarch64_sve_uxtw:
3512 case Intrinsic::aarch64_sme_in_streaming_mode:
3514 case Intrinsic::aarch64_sve_umin_u:
3518 return std::nullopt;
3525 SimplifyAndSetOp)
const {
3526 switch (
II.getIntrinsicID()) {
3529 case Intrinsic::aarch64_neon_fcvtxn:
3530 case Intrinsic::aarch64_neon_rshrn:
3531 case Intrinsic::aarch64_neon_sqrshrn:
3532 case Intrinsic::aarch64_neon_sqrshrun:
3533 case Intrinsic::aarch64_neon_sqshrn:
3534 case Intrinsic::aarch64_neon_sqshrun:
3535 case Intrinsic::aarch64_neon_sqxtn:
3536 case Intrinsic::aarch64_neon_sqxtun:
3537 case Intrinsic::aarch64_neon_uqrshrn:
3538 case Intrinsic::aarch64_neon_uqshrn:
3539 case Intrinsic::aarch64_neon_uqxtn:
3540 SimplifyAndSetOp(&
II, 0, OrigDemandedElts, UndefElts);
3544 return std::nullopt;
3548 return ST->isSVEAvailable() || (ST->isSVEorStreamingSVEAvailable() &&
3558 if (ST->useSVEForFixedLengthVectors() &&
3561 std::max(ST->getMinSVEVectorSizeInBits(), 128u));
3562 else if (ST->isNeonAvailable())
3567 if (ST->isSVEAvailable() || (ST->isSVEorStreamingSVEAvailable() &&
3576bool AArch64TTIImpl::isSingleExtWideningInstruction(
3578 Type *SrcOverrideTy)
const {
3593 (DstEltSize != 16 && DstEltSize != 32 && DstEltSize != 64))
3596 Type *SrcTy = SrcOverrideTy;
3598 case Instruction::Add:
3599 case Instruction::Sub: {
3608 if (Opcode == Instruction::Sub)
3632 assert(SrcTy &&
"Expected some SrcTy");
3634 unsigned SrcElTySize = SrcTyL.second.getScalarSizeInBits();
3640 DstTyL.first * DstTyL.second.getVectorMinNumElements();
3642 SrcTyL.first * SrcTyL.second.getVectorMinNumElements();
3646 return NumDstEls == NumSrcEls && 2 * SrcElTySize == DstEltSize;
3649Type *AArch64TTIImpl::isBinExtWideningInstruction(
unsigned Opcode,
Type *DstTy,
3651 Type *SrcOverrideTy)
const {
3652 if (Opcode != Instruction::Add && Opcode != Instruction::Sub &&
3653 Opcode != Instruction::Mul)
3663 (DstEltSize != 16 && DstEltSize != 32 && DstEltSize != 64))
3666 auto getScalarSizeWithOverride = [&](
const Value *
V) {
3672 ->getScalarSizeInBits();
3675 unsigned MaxEltSize = 0;
3678 unsigned EltSize0 = getScalarSizeWithOverride(Args[0]);
3679 unsigned EltSize1 = getScalarSizeWithOverride(Args[1]);
3680 MaxEltSize = std::max(EltSize0, EltSize1);
3683 unsigned EltSize0 = getScalarSizeWithOverride(Args[0]);
3684 unsigned EltSize1 = getScalarSizeWithOverride(Args[1]);
3687 if (EltSize0 >= DstEltSize / 2 || EltSize1 >= DstEltSize / 2)
3689 MaxEltSize = DstEltSize / 2;
3690 }
else if (Opcode == Instruction::Mul &&
3698 Known.Zero.countLeadingOnes() >
3703 getScalarSizeWithOverride(
isa<ZExtInst>(Args[0]) ? Args[0] : Args[1]);
3707 if (MaxEltSize * 2 > DstEltSize)
3725 if (!Src->isVectorTy() || !TLI->isTypeLegal(TLI->getValueType(
DL, Src)) ||
3726 (Src->isScalableTy() && !ST->hasSVE2()))
3736 if (AddUser && AddUser->getOpcode() == Instruction::Add)
3740 if (!Shr || Shr->getOpcode() != Instruction::LShr)
3744 if (!Trunc || Trunc->getOpcode() != Instruction::Trunc ||
3745 Src->getScalarSizeInBits() !=
3769 int ISD = TLI->InstructionOpcodeToISD(Opcode);
3773 if (
I &&
I->hasOneUser()) {
3776 if (
Type *ExtTy = isBinExtWideningInstruction(
3777 SingleUser->getOpcode(), Dst, Operands,
3778 Src !=
I->getOperand(0)->getType() ? Src :
nullptr)) {
3791 if (isSingleExtWideningInstruction(
3792 SingleUser->getOpcode(), Dst, Operands,
3793 Src !=
I->getOperand(0)->getType() ? Src :
nullptr)) {
3797 if (SingleUser->getOpcode() == Instruction::Add) {
3798 if (
I == SingleUser->getOperand(1) ||
3800 cast<CastInst>(SingleUser->getOperand(1))->getOpcode() == Opcode))
3815 EVT SrcTy = TLI->getValueType(
DL, Src);
3816 EVT DstTy = TLI->getValueType(
DL, Dst);
3818 if (!SrcTy.isSimple() || !DstTy.
isSimple())
3823 if (!ST->hasSVE2() && !ST->isStreamingSVEAvailable() &&
3852 EVT WiderTy = SrcTy.
bitsGT(DstTy) ? SrcTy : DstTy;
3855 ST->useSVEForFixedLengthVectors(WiderTy)) {
3856 std::pair<InstructionCost, MVT> LT =
3858 unsigned NumElements =
3874 const unsigned int SVE_EXT_COST = 1;
3875 const unsigned int SVE_FCVT_COST = 1;
3876 const unsigned int SVE_UNPACK_ONCE = 4;
3877 const unsigned int SVE_UNPACK_TWICE = 16;
4006 SVE_EXT_COST + SVE_FCVT_COST},
4011 SVE_EXT_COST + SVE_FCVT_COST},
4018 SVE_EXT_COST + SVE_FCVT_COST},
4022 SVE_EXT_COST + SVE_FCVT_COST},
4028 SVE_EXT_COST + SVE_FCVT_COST},
4031 SVE_EXT_COST + SVE_FCVT_COST},
4036 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4038 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4048 SVE_EXT_COST + SVE_FCVT_COST},
4053 SVE_EXT_COST + SVE_FCVT_COST},
4066 SVE_EXT_COST + SVE_FCVT_COST},
4070 SVE_EXT_COST + SVE_FCVT_COST},
4082 SVE_EXT_COST + SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4084 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4086 SVE_EXT_COST + SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4088 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4092 SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4094 SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4110 SVE_EXT_COST + SVE_FCVT_COST},
4115 SVE_EXT_COST + SVE_FCVT_COST},
4126 SVE_EXT_COST + SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4128 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4130 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4132 SVE_EXT_COST + SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4134 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4136 SVE_UNPACK_ONCE + 2 * SVE_FCVT_COST},
4140 SVE_EXT_COST + SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4142 SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4144 SVE_EXT_COST + SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4146 SVE_UNPACK_TWICE + 4 * SVE_FCVT_COST},
4371 if (ST->hasFullFP16())
4383 Src->getScalarType(), CCH,
CostKind) +
4391 ST->isSVEorStreamingSVEAvailable() &&
4392 TLI->getTypeAction(Src->getContext(), SrcTy) ==
4394 TLI->getTypeAction(Dst->getContext(), DstTy) ==
4403 Opcode, LegalTy, Src, CCH,
CostKind,
I);
4406 return Part1 + Part2;
4413 ST->isSVEorStreamingSVEAvailable() && TLI->isTypeLegal(DstTy))
4425 assert((Opcode == Instruction::SExt || Opcode == Instruction::ZExt) &&
4438 CostKind, Index,
nullptr,
nullptr);
4442 auto DstVT = TLI->getValueType(
DL, Dst);
4443 auto SrcVT = TLI->getValueType(
DL, Src);
4448 if (!VecLT.second.isVector() || !TLI->isTypeLegal(DstVT))
4454 if (DstVT.getFixedSizeInBits() < SrcVT.getFixedSizeInBits())
4464 case Instruction::SExt:
4469 case Instruction::ZExt:
4470 if (DstVT.getSizeInBits() != 64u || SrcVT.getSizeInBits() == 32u)
4483 return Opcode == Instruction::PHI ? 0 : 1;
4492 ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
4501 if (!LT.second.isVector())
4506 if (LT.second.isFixedLengthVector()) {
4507 unsigned Width = LT.second.getVectorNumElements();
4508 Index = Index % Width;
4522 if (VIC == TTI::VectorInstrContext::Load) {
4523 if (ST->hasFastLD1Single())
4535 : ST->getVectorInsertExtractBaseCost() + 1;
4559 auto ExtractCanFuseWithFmul = [&]() {
4566 auto IsAllowedScalarTy = [&](
const Type *
T) {
4567 return T->isFloatTy() ||
T->isDoubleTy() ||
4568 (
T->isHalfTy() && ST->hasFullFP16());
4572 auto IsUserFMulScalarTy = [](
const Value *EEUser) {
4575 return BO && BO->getOpcode() == BinaryOperator::FMul &&
4576 !BO->getType()->isVectorTy();
4581 auto IsExtractLaneEquivalentToZero = [&](
unsigned Idx,
unsigned EltSz) {
4585 return Idx == 0 || (RegWidth != 0 && (Idx * EltSz) % RegWidth == 0);
4594 DenseMap<User *, unsigned> UserToExtractIdx;
4595 for (
auto *U :
Scalar->users()) {
4596 if (!IsUserFMulScalarTy(U))
4600 UserToExtractIdx[
U];
4602 if (UserToExtractIdx.
empty())
4604 for (
auto &[S, U, L] : ScalarUserAndIdx) {
4605 for (
auto *U : S->users()) {
4606 if (UserToExtractIdx.
contains(U)) {
4608 auto *Op0 =
FMul->getOperand(0);
4609 auto *Op1 =
FMul->getOperand(1);
4610 if ((Op0 == S && Op1 == S) || Op0 != S || Op1 != S) {
4611 UserToExtractIdx[
U] =
L;
4617 for (
auto &[U, L] : UserToExtractIdx) {
4629 return !EE->users().empty() &&
all_of(EE->users(), [&](
const User *U) {
4630 if (!IsUserFMulScalarTy(U))
4635 const auto *BO = cast<BinaryOperator>(U);
4636 const auto *OtherEE = dyn_cast<ExtractElementInst>(
4637 BO->getOperand(0) == EE ? BO->getOperand(1) : BO->getOperand(0));
4639 const auto *IdxOp = dyn_cast<ConstantInt>(OtherEE->getIndexOperand());
4642 return IsExtractLaneEquivalentToZero(
4643 cast<ConstantInt>(OtherEE->getIndexOperand())
4646 OtherEE->getType()->getScalarSizeInBits());
4654 if (Opcode == Instruction::ExtractElement && (
I || Scalar) &&
4655 ExtractCanFuseWithFmul())
4660 :
ST->getVectorInsertExtractBaseCost();
4669 if (Opcode == Instruction::InsertElement && Index == 0 && Op0 &&
4672 return getVectorInstrCostHelper(Opcode, Val,
CostKind, Index,
nullptr,
4678 Value *Scalar,
ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
4680 return getVectorInstrCostHelper(Opcode, Val,
CostKind, Index,
nullptr, Scalar,
4681 ScalarUserAndIdx, VIC);
4688 return getVectorInstrCostHelper(
I.getOpcode(), Val,
CostKind, Index, &
I,
4695 unsigned Index)
const {
4707 : ST->getVectorInsertExtractBaseCost() + 1;
4716 if (Ty->getElementType()->isFloatingPointTy())
4719 unsigned VecInstCost =
4721 return DemandedElts.
popcount() * (Insert + Extract) * VecInstCost;
4728 if (!Ty->getScalarType()->isHalfTy() && !Ty->getScalarType()->isBFloatTy())
4729 return std::nullopt;
4730 if (Ty->getScalarType()->isHalfTy() && ST->hasFullFP16())
4731 return std::nullopt;
4733 if (CanUseSVE && ST->hasSVEB16B16() && ST->isNonStreamingSVEorSME2Available())
4734 return std::nullopt;
4741 Cost += InstCost(PromotedTy);
4763 int ISD = TLI->InstructionOpcodeToISD(Opcode);
4770 Op2Info, Args, CxtI);
4777 Ty,
CostKind, Op1Info, Op2Info,
true,
4780 [&](
Type *PromotedTy) {
4784 return *PromotedCost;
4787 if (Ty->getScalarType()->isFP128Ty())
4795 if (
Type *ExtTy = isBinExtWideningInstruction(Opcode, Ty, Args)) {
4815 ST->hasLimited64bitVectorMulBandwidth())
4818 if (Ty->getScalarSizeInBits() > 64) {
4823 return CostPerLane * CostPerLane * NumLanes * Mul64CostFactor;
4826 if (LT.second == MVT::v2i64) {
4830 return LT.first * Mul64CostFactor;
4851 if (LT.second == MVT::nxv2i64)
4852 return LT.first * Mul64CostFactor;
4911 auto VT = TLI->getValueType(
DL, Ty);
4912 if (VT.isScalarInteger() && VT.getSizeInBits() <= 64) {
4916 : (3 * AsrCost + AddCost);
4918 return MulCost + AsrCost + 2 * AddCost;
4920 }
else if (VT.isVector()) {
4930 if (Ty->isScalableTy() && ST->hasSVE())
4931 Cost += 2 * AsrCost;
4936 ? (LT.second.getScalarType() == MVT::i64 ? 1 : 2) * AsrCost
4940 }
else if (LT.second == MVT::v2i64) {
4941 return VT.getVectorNumElements() *
4948 if (Ty->isScalableTy() && ST->hasSVE())
4949 return MulCost + 2 * AddCost + 2 * AsrCost;
4950 return 2 * MulCost + AddCost + AsrCost + UsraCost;
4955 LT.second.isFixedLengthVector()) {
4965 return ExtractCost + InsertCost +
4973 auto VT = TLI->getValueType(
DL, Ty);
4989 bool HasMULH = VT == MVT::i64 || LT.second == MVT::nxv2i64 ||
4990 LT.second == MVT::nxv4i32 || LT.second == MVT::nxv8i16 ||
4991 LT.second == MVT::nxv16i8;
4992 bool Is128bit = LT.second.is128BitVector();
5004 (HasMULH ? 0 : ShrCost) +
5005 AddCost * 2 + ShrCost;
5006 return DivCost + (
ISD ==
ISD::UREM ? MulCost + AddCost : 0);
5013 if (!VT.isVector() && VT.getSizeInBits() > 64)
5017 Opcode, Ty,
CostKind, Op1Info, Op2Info);
5019 if (TLI->isOperationLegalOrCustom(
ISD, LT.second) && ST->hasSVE()) {
5023 Ty->getPrimitiveSizeInBits().getFixedValue() < 128) {
5033 if (
nullptr != Entry)
5041 FVTy && LT.second.isFixedLengthVector()) {
5042 unsigned NumElts = FVTy->getNumElements();
5043 unsigned RegElts = LT.second.getVectorNumElements();
5045 Cost = (NumElts / RegElts +
popcount(NumElts % RegElts)) * 2;
5049 if (LT.second.getScalarType() == MVT::i8)
5051 else if (LT.second.getScalarType() == MVT::i16)
5063 Opcode, Ty->getScalarType(),
CostKind, Op1Info, Op2Info);
5064 return (4 + DivCost) * VTy->getNumElements();
5070 -1,
nullptr,
nullptr);
5093 if ((Ty->isFloatTy() || Ty->isDoubleTy() ||
5094 (Ty->isHalfTy() && ST->hasFullFP16())) &&
5103 if (!Ty->getScalarType()->isFP128Ty())
5110 if (!Ty->getScalarType()->isFP128Ty())
5111 return 2 * LT.first;
5118 if (!Ty->isVectorTy())
5134 int MaxMergeDistance = 64;
5138 return NumVectorInstToHideOverhead;
5148 unsigned Opcode1,
unsigned Opcode2)
const {
5151 if (!
Sched.hasInstrSchedModel())
5155 Sched.getSchedClassDesc(
TII->get(Opcode1).getSchedClass());
5157 Sched.getSchedClassDesc(
TII->get(Opcode2).getSchedClass());
5163 "Cannot handle variant scheduling classes without an MI");
5179 const int AmortizationCost = 20;
5187 VecPred = CurrentPred;
5195 static const auto ValidMinMaxTys = {
5196 MVT::v8i8, MVT::v16i8, MVT::v4i16, MVT::v8i16, MVT::v2i32,
5197 MVT::v4i32, MVT::v2i64, MVT::v2f32, MVT::v4f32, MVT::v2f64};
5198 static const auto ValidFP16MinMaxTys = {MVT::v4f16, MVT::v8f16};
5202 (ST->hasFullFP16() &&
5208 {Instruction::Select, MVT::v2i1, MVT::v2f32, 2},
5209 {Instruction::Select, MVT::v2i1, MVT::v2f64, 2},
5210 {Instruction::Select, MVT::v4i1, MVT::v4f32, 2},
5211 {Instruction::Select, MVT::v4i1, MVT::v4f16, 2},
5212 {Instruction::Select, MVT::v8i1, MVT::v8f16, 2},
5213 {Instruction::Select, MVT::v16i1, MVT::v16i16, 16},
5214 {Instruction::Select, MVT::v8i1, MVT::v8i32, 8},
5215 {Instruction::Select, MVT::v16i1, MVT::v16i32, 16},
5216 {Instruction::Select, MVT::v4i1, MVT::v4i64, 4 * AmortizationCost},
5217 {Instruction::Select, MVT::v8i1, MVT::v8i64, 8 * AmortizationCost},
5218 {Instruction::Select, MVT::v16i1, MVT::v16i64, 16 * AmortizationCost}};
5220 EVT SelCondTy = TLI->getValueType(
DL, CondTy);
5221 EVT SelValTy = TLI->getValueType(
DL, ValTy);
5230 if (Opcode == Instruction::FCmp) {
5232 ValTy,
CostKind, Op1Info, Op2Info,
false,
5234 false, [&](
Type *PromotedTy) {
5246 return *PromotedCost;
5250 if (LT.second.getScalarType() != MVT::f64 &&
5251 LT.second.getScalarType() != MVT::f32 &&
5252 LT.second.getScalarType() != MVT::f16)
5257 unsigned Factor = 1;
5258 if (!CondTy->isVectorTy() &&
5272 AArch64::FCMEQv4f32))
5284 TLI->isTypeLegal(TLI->getValueType(
DL, ValTy)) &&
5303 Op1Info, Op2Info,
I);
5309 if (ST->requiresStrictAlign()) {
5314 Options.AllowOverlappingLoads =
true;
5315 Options.MaxNumLoads = TLI->getMaxExpandSizeMemcmp(OptSize);
5320 Options.LoadSizes = {8, 4, 2, 1};
5321 Options.AllowedTailExpansions = {3, 5, 6};
5326 return ST->hasSVE();
5332 switch (MICA.
getID()) {
5333 case Intrinsic::masked_scatter:
5334 case Intrinsic::masked_gather:
5336 case Intrinsic::masked_load:
5337 case Intrinsic::masked_expandload:
5338 case Intrinsic::masked_store:
5352 if (!LT.first.isValid())
5357 if (VT->getElementType()->isIntegerTy(1))
5368 if (MICA.
getID() == Intrinsic::masked_expandload) {
5384 if (LT.first > 1 && LT.second.getScalarSizeInBits() > 8)
5385 return MemOpCost * 2;
5394 assert((Opcode == Instruction::Load || Opcode == Instruction::Store) &&
5395 "Should be called on only load or stores.");
5397 case Instruction::Load:
5400 return ST->getGatherOverhead();
5402 case Instruction::Store:
5405 return ST->getScatterOverhead();
5416 unsigned Opcode = (MICA.
getID() == Intrinsic::masked_gather ||
5417 MICA.
getID() == Intrinsic::vp_gather)
5419 : Instruction::Store;
5429 if (!LT.first.isValid())
5433 if (!LT.second.isVector() ||
5435 VT->getElementType()->isIntegerTy(1))
5445 ElementCount LegalVF = LT.second.getVectorElementCount();
5448 {TTI::OK_AnyValue, TTI::OP_None},
I);
5464 EVT VT = TLI->getValueType(
DL, Ty,
true);
5466 if (VT == MVT::Other)
5471 if (!LT.first.isValid())
5481 (VTy->getElementType()->isIntegerTy(1) &&
5482 !VTy->getElementCount().isKnownMultipleOf(
5492 if (Opcode == Instruction::Store)
5496 if (ST->getFixedLoadLatency())
5497 return (LT.first - 1) + ST->getFixedLoadLatency();
5506 if (LT.second.isScalableVector() ||
5507 ST->useSVEForFixedLengthVectors(LT.second)) {
5508 Inst = AArch64::LDR_ZXI;
5509 }
else if (LT.second.isVector() || LT.second.isFloatingPoint()) {
5510 switch (LT.second.getSizeInBits()) {
5512 Inst = AArch64::LDRBui;
5515 Inst = AArch64::LDRHui;
5518 Inst = AArch64::LDRSui;
5521 Inst = AArch64::LDRDui;
5524 Inst = AArch64::LDRQui;
5530 switch (LT.second.getSizeInBits()) {
5532 Inst = AArch64::LDRBBui;
5535 Inst = AArch64::LDRHHui;
5538 Inst = AArch64::LDRWui;
5541 Inst = AArch64::LDRXui;
5549 unsigned SchedClass =
TII->get(Inst).getSchedClass();
5553 float NumLoads = (LT.first - 1).
getValue();
5554 return NumLoads *
Sched.getReciprocalThroughput(*ST, *SCD) +
5555 Sched.computeInstrLatency(*ST, *SCD);
5558 if (ST->isMisaligned128StoreSlow() && Opcode == Instruction::Store &&
5559 LT.second.is128BitVector() && Alignment <
Align(16)) {
5565 const int AmortizationCost = 6;
5567 return LT.first * 2 * AmortizationCost;
5571 if (Ty->isPtrOrPtrVectorTy())
5576 if (Ty->getScalarSizeInBits() != LT.second.getScalarSizeInBits()) {
5578 if (VT == MVT::v4i8)
5585 if (!
isPowerOf2_32(EltSize) || EltSize < 8 || EltSize > 64 ||
5600 while (!TypeWorklist.
empty()) {
5622 bool UseMaskForCond,
bool UseMaskForGaps)
const {
5623 assert(Factor >= 2 &&
"Invalid interleave factor");
5638 if (!VecTy->
isScalableTy() && (UseMaskForCond || UseMaskForGaps))
5641 if (!UseMaskForGaps && Factor <= TLI->getMaxSupportedInterleaveFactor()) {
5644 EC.divideCoefficientBy(Factor));
5650 if (EC.isKnownMultipleOf(Factor) &&
5651 TLI->isLegalInterleavedAccessType(SubVecTy,
DL, UseScalable))
5652 return Factor * TLI->getNumInterleavedAccesses(SubVecTy,
DL, UseScalable);
5657 if (VecTy->
isScalableTy() && EC.isKnownMultipleOf(Factor)) {
5663 if (UseMaskForCond) {
5664 unsigned IID = Opcode == Instruction::Load ? Intrinsic::masked_load
5665 : Intrinsic::masked_store;
5685 if (Opcode == Instruction::Store && Factor == 4 &&
5686 SubVecCost.second.getScalarSizeInBits() ==
5687 (4 * ResultCost.second.getScalarSizeInBits()))
5688 LegalizationCost *= 4;
5690 return MemCost + (Factor * LegalizationCost) + (Factor *
Log2_64(Factor));
5696 UseMaskForCond, UseMaskForGaps);
5703 for (
auto *
I : Tys) {
5704 if (!
I->isVectorTy())
5715 Align Alignment)
const {
5722 return (ST->isSVEAvailable() && ST->hasSVE2p2()) ||
5723 (ST->isSVEorStreamingSVEAvailable() && ST->hasSME2p2());
5728 bool HasUnorderedReductions)
const {
5731 return ST->getMaxInterleaveFactor();
5741 enum { MaxStridedLoads = 7 };
5743 int StridedLoads = 0;
5746 for (
const auto BB : L->blocks()) {
5747 for (
auto &
I : *BB) {
5753 if (L->isLoopInvariant(PtrValue))
5758 if (!LSCEVAddRec || !LSCEVAddRec->
isAffine())
5767 if (StridedLoads > MaxStridedLoads / 2)
5768 return StridedLoads;
5771 return StridedLoads;
5774 int StridedLoads = countStridedLoads(L, SE);
5776 <<
" strided loads\n");
5792 unsigned *FinalSize) {
5796 for (
auto *BB : L->getBlocks()) {
5797 for (
auto &
I : *BB) {
5803 if (!Cost.isValid())
5807 if (LoopCost > Budget)
5829 if (MaxTC > 0 && MaxTC <= 32)
5840 if (Blocks.
size() != 2)
5862 if (!L->isInnermost() || L->getNumBlocks() > 8)
5866 if (!L->getExitBlock())
5872 bool HasParellelizableReductions =
5873 L->getNumBlocks() == 1 &&
5874 any_of(L->getHeader()->phis(),
5876 return canParallelizeReductionWhenUnrolling(Phi, L, &SE);
5879 if (HasParellelizableReductions &&
5901 if (HasParellelizableReductions) {
5912 if (Header == Latch) {
5915 unsigned Width = 10;
5921 unsigned MaxInstsPerLine = 16;
5923 unsigned BestUC = 1;
5924 unsigned SizeWithBestUC = BestUC *
Size;
5926 unsigned SizeWithUC = UC *
Size;
5927 if (SizeWithUC > 48)
5929 if ((SizeWithUC % MaxInstsPerLine) == 0 ||
5930 (SizeWithBestUC % MaxInstsPerLine) < (SizeWithUC % MaxInstsPerLine)) {
5932 SizeWithBestUC = BestUC *
Size;
5942 for (
auto *BB : L->blocks()) {
5943 for (
auto &
I : *BB) {
5953 for (
auto *U :
I.users())
5955 LoadedValuesPlus.
insert(U);
5962 return LoadedValuesPlus.
contains(
SI->getOperand(0));
5988 auto *I = dyn_cast<Instruction>(V);
5989 return I && DependsOnLoopLoad(I, Depth + 1);
5996 DependsOnLoopLoad(
I, 0)) {
6012 if (L->getLoopDepth() > 1)
6023 for (
auto *BB : L->getBlocks()) {
6024 for (
auto &
I : *BB) {
6028 if (IsVectorized &&
I.getType()->isVectorTy())
6045 if (ST->isAppleMLike())
6047 else if (ST->getProcFamily() == AArch64Subtarget::Falkor &&
6069 !ST->getSchedModel().isOutOfOrder()) {
6092 bool CanCreate)
const {
6096 case Intrinsic::aarch64_neon_st1x2:
6097 case Intrinsic::aarch64_neon_st1x3:
6098 case Intrinsic::aarch64_neon_st1x4:
6099 case Intrinsic::aarch64_neon_st2:
6100 case Intrinsic::aarch64_neon_st3:
6101 case Intrinsic::aarch64_neon_st4: {
6104 if (!CanCreate || !ST)
6106 unsigned NumElts = Inst->
arg_size() - 1;
6107 if (ST->getNumElements() != NumElts)
6109 for (
unsigned i = 0, e = NumElts; i != e; ++i) {
6115 for (
unsigned i = 0, e = NumElts; i != e; ++i) {
6117 Res = Builder.CreateInsertValue(Res, L, i);
6121 case Intrinsic::aarch64_neon_ld1x2:
6122 case Intrinsic::aarch64_neon_ld1x3:
6123 case Intrinsic::aarch64_neon_ld1x4:
6124 case Intrinsic::aarch64_neon_ld2:
6125 case Intrinsic::aarch64_neon_ld3:
6126 case Intrinsic::aarch64_neon_ld4:
6127 if (Inst->
getType() == ExpectedType)
6138 case Intrinsic::aarch64_neon_ld1x2:
6139 case Intrinsic::aarch64_neon_ld1x3:
6140 case Intrinsic::aarch64_neon_ld1x4:
6141 case Intrinsic::aarch64_neon_ld2:
6142 case Intrinsic::aarch64_neon_ld3:
6143 case Intrinsic::aarch64_neon_ld4:
6144 Info.ReadMem =
true;
6145 Info.WriteMem =
false;
6148 case Intrinsic::aarch64_neon_st1x2:
6149 case Intrinsic::aarch64_neon_st1x3:
6150 case Intrinsic::aarch64_neon_st1x4:
6151 case Intrinsic::aarch64_neon_st2:
6152 case Intrinsic::aarch64_neon_st3:
6153 case Intrinsic::aarch64_neon_st4:
6154 Info.ReadMem =
false;
6155 Info.WriteMem =
true;
6164 case Intrinsic::aarch64_neon_ld1x2:
6165 case Intrinsic::aarch64_neon_st1x2:
6166 Info.MatchingId = Intrinsic::aarch64_neon_ld1x2;
6168 case Intrinsic::aarch64_neon_ld1x3:
6169 case Intrinsic::aarch64_neon_st1x3:
6170 Info.MatchingId = Intrinsic::aarch64_neon_ld1x3;
6172 case Intrinsic::aarch64_neon_ld1x4:
6173 case Intrinsic::aarch64_neon_st1x4:
6174 Info.MatchingId = Intrinsic::aarch64_neon_ld1x4;
6176 case Intrinsic::aarch64_neon_ld2:
6177 case Intrinsic::aarch64_neon_st2:
6178 Info.MatchingId = Intrinsic::aarch64_neon_ld2;
6180 case Intrinsic::aarch64_neon_ld3:
6181 case Intrinsic::aarch64_neon_st3:
6182 Info.MatchingId = Intrinsic::aarch64_neon_ld3;
6184 case Intrinsic::aarch64_neon_ld4:
6185 case Intrinsic::aarch64_neon_st4:
6186 Info.MatchingId = Intrinsic::aarch64_neon_ld4;
6198 const Instruction &
I,
bool &AllowPromotionWithoutCommonHeader)
const {
6199 bool Considerable =
false;
6200 AllowPromotionWithoutCommonHeader =
false;
6203 Type *ConsideredSExtType =
6205 if (
I.getType() != ConsideredSExtType)
6209 for (
const User *U :
I.users()) {
6211 Considerable =
true;
6215 if (GEPInst->getNumOperands() > 2) {
6216 AllowPromotionWithoutCommonHeader =
true;
6221 return Considerable;
6272 if (LT.second.getScalarType() == MVT::f16 && !ST->hasFullFP16())
6282 return LegalizationCost + 2;
6292 LegalizationCost *= LT.first - 1;
6295 int ISD = TLI->InstructionOpcodeToISD(Opcode);
6304 return LegalizationCost + 2;
6312 std::optional<FastMathFlags> FMF,
6328 return BaseCost + FixedVTy->getNumElements();
6342 MVT MTy = LT.second;
6347 int ISD = TLI->InstructionOpcodeToISD(Opcode);
6395 MTy.
isVector() && (EltTy->isFloatTy() || EltTy->isDoubleTy() ||
6396 (EltTy->isHalfTy() && ST->hasFullFP16()))) {
6408 return (LT.first - 1) +
Log2_32(NElts);
6413 return (LT.first - 1) + Entry->Cost;
6425 if (LT.first != 1) {
6431 ExtraCost *= LT.first - 1;
6434 auto Cost = ValVTy->getElementType()->isIntegerTy(1) ? 2 : Entry->Cost;
6435 return Cost + ExtraCost;
6443 unsigned Opcode,
bool IsUnsigned,
Type *ResTy,
VectorType *VecTy,
6445 EVT VecVT = TLI->getValueType(
DL, VecTy);
6446 EVT ResVT = TLI->getValueType(
DL, ResTy);
6456 if (((LT.second == MVT::v8i8 || LT.second == MVT::v16i8) &&
6458 ((LT.second == MVT::v4i16 || LT.second == MVT::v8i16) &&
6460 ((LT.second == MVT::v2i32 || LT.second == MVT::v4i32) &&
6462 return (LT.first - 1) * 2 + 2;
6473 EVT VecVT = TLI->getValueType(
DL, VecTy);
6474 EVT ResVT = TLI->getValueType(
DL, ResTy);
6477 RedOpcode == Instruction::Add) {
6483 if ((LT.second == MVT::v8i8 || LT.second == MVT::v16i8) &&
6485 return LT.first + 2;
6520 EVT PromotedVT = LT.second.getScalarType() == MVT::i1
6521 ? TLI->getPromotedVTForPredicate(
EVT(LT.second))
6535 if (LT.second.getScalarType() == MVT::i1) {
6544 assert(Entry &&
"Illegal Type for Splice");
6545 LegalizationCost += Entry->Cost;
6546 return LegalizationCost * LT.first;
6550 unsigned Opcode,
Type *InputTypeA,
Type *InputTypeB,
Type *AccumType,
6559 if ((Opcode != Instruction::Add && Opcode != Instruction::Sub &&
6560 Opcode != Instruction::FAdd && Opcode != Instruction::FSub) ||
6567 assert(FMF &&
"Missing FastMathFlags for floating-point partial reduction");
6568 if (!FMF->allowReassoc() || !FMF->allowContract())
6572 "FastMathFlags only apply to floating-point partial reductions");
6576 (!BinOp || (OpBExtend !=
TTI::PR_None && InputTypeB)) &&
6577 "Unexpected values for OpBExtend or InputTypeB");
6581 if (BinOp && ((*BinOp != Instruction::Mul && *BinOp != Instruction::FMul) ||
6582 InputTypeA != InputTypeB))
6585 bool IsUSDot = OpBExtend !=
TTI::PR_None && OpAExtend != OpBExtend;
6588 if (IsUSDot && !ST->hasMatMulInt8() && !ST->hasDotProd())
6601 auto TC = TLI->getTypeConversion(AccumVectorType->
getContext(),
6610 if (TLI->getTypeAction(AccumVectorType->
getContext(), TC.second) !=
6616 std::pair<InstructionCost, MVT> AccumLT =
6618 std::pair<InstructionCost, MVT> InputLT =
6622 auto IsSupported = [&](
bool SVEPred,
bool NEONPred) ->
bool {
6623 return (ST->isSVEorStreamingSVEAvailable() && SVEPred) ||
6624 (AccumLT.second.isFixedLengthVector() &&
6625 AccumLT.second.getSizeInBits() <= 128 && ST->isNeonAvailable() &&
6629 bool IsSub = Opcode == Instruction::Sub || Opcode == Instruction::FSub;
6637 if (AccumLT.second.getScalarType() == MVT::i32 &&
6638 InputLT.second.getScalarType() == MVT::i8) {
6640 if (!IsUSDot && IsSupported(
true, ST->hasDotProd()))
6641 return Cost + INegCost;
6643 if (IsUSDot && IsSupported(ST->hasMatMulInt8(), ST->hasMatMulInt8()))
6644 return Cost + INegCost;
6649 if (IsUSDot && IsSupported(
false, ST->hasDotProd()))
6650 return Cost * 3 + INegCost;
6653 if (ST->isSVEorStreamingSVEAvailable() && !IsUSDot) {
6655 if (AccumLT.second.getScalarType() == MVT::i64 &&
6656 InputLT.second.getScalarType() == MVT::i16)
6657 return Cost + INegCost;
6660 if (AccumLT.second.getScalarType() == MVT::i32 &&
6661 InputLT.second.getScalarType() == MVT::i16 &&
6662 (ST->hasSVE2p1() || ST->hasSME2()) && !IsSub)
6665 if (AccumLT.second.getScalarType() == MVT::i64 &&
6666 InputLT.second.getScalarType() == MVT::i8)
6672 return Cost + INegCost;
6675 if (AccumLT.second.getScalarType() == MVT::i16 &&
6676 InputLT.second.getScalarType() == MVT::i8 &&
6677 (ST->hasSVE2p3() || ST->hasSME2p3()) && !IsSub)
6683 if (Opcode == Instruction::FAdd && !IsSub &&
6684 IsSupported(ST->hasSME2() || ST->hasSVE2p1(), ST->hasF16F32DOT()) &&
6685 AccumLT.second.getScalarType() == MVT::f32 &&
6686 InputLT.second.getScalarType() == MVT::f16)
6690 if (Ratio == 2 && !IsUSDot) {
6691 MVT InVT = InputLT.second.getScalarType();
6694 if (IsSupported(ST->hasSVE2() || ST->hasSME(),
true) &&
6699 if (IsSupported(ST->hasSVE2(), ST->hasFP16FML()) && InVT == MVT::f16)
6703 if (IsSupported(ST->hasSVE2p1() || ST->hasSME2(),
false) &&
6704 InVT == MVT::bf16 && IsSub)
6714 if (IsSupported(ST->hasBF16(), ST->hasBF16()) && InVT == MVT::bf16)
6715 return Cost * 2 + FNegCost;
6719 AccumType, VF, OpAExtend, OpBExtend,
6731 "Expected the Mask to match the return size if given");
6733 "Expected the same scalar types");
6739 LT.second.getScalarSizeInBits() * Mask.size() > 128 &&
6740 SrcTy->getScalarSizeInBits() == LT.second.getScalarSizeInBits() &&
6741 Mask.size() > LT.second.getVectorNumElements() && !Index && !SubTp) {
6749 return std::max<InstructionCost>(1, LT.first / 4);
6757 Mask, 4, SrcTy->getElementCount().getKnownMinValue() * 2) ||
6759 Mask, 3, SrcTy->getElementCount().getKnownMinValue() * 2)))
6762 unsigned TpNumElts = Mask.size();
6763 unsigned LTNumElts = LT.second.getVectorNumElements();
6764 unsigned NumVecs = (TpNumElts + LTNumElts - 1) / LTNumElts;
6766 LT.second.getVectorElementCount());
6768 std::map<std::tuple<unsigned, unsigned, SmallVector<int>>,
InstructionCost>
6770 for (
unsigned N = 0;
N < NumVecs;
N++) {
6774 unsigned Source1 = -1U, Source2 = -1U;
6775 unsigned NumSources = 0;
6776 for (
unsigned E = 0; E < LTNumElts; E++) {
6777 int MaskElt = (
N * LTNumElts + E < TpNumElts) ? Mask[
N * LTNumElts + E]
6786 unsigned Source = MaskElt / LTNumElts;
6787 if (NumSources == 0) {
6790 }
else if (NumSources == 1 && Source != Source1) {
6793 }
else if (NumSources >= 2 && Source != Source1 && Source != Source2) {
6799 if (Source == Source1)
6801 else if (Source == Source2)
6802 NMask.
push_back(MaskElt % LTNumElts + LTNumElts);
6811 PreviousCosts.insert({std::make_tuple(Source1, Source2, NMask), 0});
6822 NTp, NTp, NMask,
CostKind, 0,
nullptr, Args,
6825 Result.first->second = NCost;
6839 if (IsExtractSubvector && LT.second.isFixedLengthVector()) {
6840 if (LT.second.getFixedSizeInBits() >= 128 &&
6842 LT.second.getVectorNumElements() / 2) {
6845 if (Index == (
int)LT.second.getVectorNumElements() / 2)
6859 if (!Mask.empty() && LT.second.isFixedLengthVector() &&
6862 return M.value() < 0 || M.value() == (int)M.index();
6868 !Mask.empty() && SrcTy->getPrimitiveSizeInBits().isNonZero() &&
6869 SrcTy->getPrimitiveSizeInBits().isKnownMultipleOf(
6878 if ((ST->hasSVE2p1() || ST->hasSME2p1()) &&
6879 ST->isSVEorStreamingSVEAvailable() &&
6884 if (ST->isSVEorStreamingSVEAvailable() &&
6898 if (IsLoad && LT.second.isVector() &&
6900 LT.second.getVectorElementCount()))
6906 if (Mask.size() == 4 &&
6908 (SrcTy->getScalarSizeInBits() == 16 ||
6909 SrcTy->getScalarSizeInBits() == 32) &&
6910 all_of(Mask, [](
int E) {
return E < 8; }))
6916 if (LT.second.isFixedLengthVector() &&
6917 LT.second.getVectorNumElements() == Mask.size() &&
6923 (
isZIPMask(Mask, LT.second.getVectorNumElements(), Unused, Unused) ||
6924 isTRNMask(Mask, LT.second.getVectorNumElements(), Unused, Unused) ||
6925 isUZPMask(Mask, LT.second.getVectorNumElements(), Unused) ||
6926 isREVMask(Mask, LT.second.getScalarSizeInBits(),
6927 LT.second.getVectorNumElements(), 16) ||
6928 isREVMask(Mask, LT.second.getScalarSizeInBits(),
6929 LT.second.getVectorNumElements(), 32) ||
6930 isREVMask(Mask, LT.second.getScalarSizeInBits(),
6931 LT.second.getVectorNumElements(), 64) ||
6934 [&Mask](
int M) {
return M < 0 || M == Mask[0]; })))
7063 return LT.first * Entry->Cost;
7072 LT.second.getSizeInBits() <= 128 && SubTp) {
7074 if (SubLT.second.isVector()) {
7075 int NumElts = LT.second.getVectorNumElements();
7076 int NumSubElts = SubLT.second.getVectorNumElements();
7077 if ((Index % NumSubElts) == 0 && (NumElts % NumSubElts) == 0)
7083 if (IsExtractSubvector)
7100 if (
getPtrStride(*PSE, AccessTy, Ptr, TheLoop, DT, Strides,
7119 return ST->useFixedOverScalableIfEqualCost();
7123 return ST->getEpilogueVectorizationMinVF();
7158 unsigned NumInsns = 0;
7160 NumInsns += BB->size();
7170 int64_t Scale,
unsigned AddrSpace)
const {
7198 if (
I->getOpcode() == Instruction::Or &&
7202 if (
I->getOpcode() == Instruction::Add ||
7203 I->getOpcode() == Instruction::Sub)
7228 return all_equal(Shuf->getShuffleMask());
7235 bool AllowSplat =
false) {
7240 auto areTypesHalfed = [](
Value *FullV,
Value *HalfV) {
7241 auto *FullTy = FullV->
getType();
7242 auto *HalfTy = HalfV->getType();
7244 2 * HalfTy->getPrimitiveSizeInBits().getFixedValue();
7247 auto extractHalf = [](
Value *FullV,
Value *HalfV) {
7250 return FullVT->getNumElements() == 2 * HalfVT->getNumElements();
7254 Value *S1Op1 =
nullptr, *S2Op1 =
nullptr;
7268 if ((S1Op1 && (!areTypesHalfed(S1Op1, Op1) || !extractHalf(S1Op1, Op1))) ||
7269 (S2Op1 && (!areTypesHalfed(S2Op1, Op2) || !extractHalf(S2Op1, Op2))))
7283 if ((M1Start != 0 && M1Start != (NumElements / 2)) ||
7284 (M2Start != 0 && M2Start != (NumElements / 2)))
7286 if (S1Op1 && S2Op1 && M1Start != M2Start)
7296 return Ext->getType()->getScalarSizeInBits() ==
7297 2 * Ext->getOperand(0)->getType()->getScalarSizeInBits();
7311 Value *VectorOperand =
nullptr;
7328 if (!
GEP ||
GEP->getNumOperands() != 2)
7332 Value *Offsets =
GEP->getOperand(1);
7335 if (
Base->getType()->isVectorTy() || !Offsets->getType()->isVectorTy())
7341 if (OffsetsInst->getType()->getScalarSizeInBits() > 32 &&
7342 OffsetsInst->getOperand(0)->getType()->getScalarSizeInBits() <= 32)
7343 Ops.push_back(&
GEP->getOperandUse(1));
7379 switch (
II->getIntrinsicID()) {
7380 case Intrinsic::aarch64_neon_smull:
7381 case Intrinsic::aarch64_neon_umull:
7384 Ops.push_back(&
II->getOperandUse(0));
7385 Ops.push_back(&
II->getOperandUse(1));
7390 case Intrinsic::fma:
7391 case Intrinsic::fmuladd:
7398 Ops.push_back(&
II->getOperandUse(0));
7400 Ops.push_back(&
II->getOperandUse(1));
7403 case Intrinsic::aarch64_neon_sqdmull:
7404 case Intrinsic::aarch64_neon_sqdmulh:
7405 case Intrinsic::aarch64_neon_sqrdmulh:
7408 Ops.push_back(&
II->getOperandUse(0));
7410 Ops.push_back(&
II->getOperandUse(1));
7411 return !
Ops.empty();
7412 case Intrinsic::aarch64_neon_fmlal:
7413 case Intrinsic::aarch64_neon_fmlal2:
7414 case Intrinsic::aarch64_neon_fmlsl:
7415 case Intrinsic::aarch64_neon_fmlsl2:
7418 Ops.push_back(&
II->getOperandUse(1));
7420 Ops.push_back(&
II->getOperandUse(2));
7421 return !
Ops.empty();
7422 case Intrinsic::aarch64_sve_ptest_first:
7423 case Intrinsic::aarch64_sve_ptest_last:
7425 if (IIOp->getIntrinsicID() == Intrinsic::aarch64_sve_ptrue)
7426 Ops.push_back(&
II->getOperandUse(0));
7427 return !
Ops.empty();
7428 case Intrinsic::aarch64_sme_write_horiz:
7429 case Intrinsic::aarch64_sme_write_vert:
7430 case Intrinsic::aarch64_sme_writeq_horiz:
7431 case Intrinsic::aarch64_sme_writeq_vert: {
7433 if (!Idx || Idx->getOpcode() != Instruction::Add)
7435 Ops.push_back(&
II->getOperandUse(1));
7438 case Intrinsic::aarch64_sme_read_horiz:
7439 case Intrinsic::aarch64_sme_read_vert:
7440 case Intrinsic::aarch64_sme_readq_horiz:
7441 case Intrinsic::aarch64_sme_readq_vert:
7442 case Intrinsic::aarch64_sme_ld1b_vert:
7443 case Intrinsic::aarch64_sme_ld1h_vert:
7444 case Intrinsic::aarch64_sme_ld1w_vert:
7445 case Intrinsic::aarch64_sme_ld1d_vert:
7446 case Intrinsic::aarch64_sme_ld1q_vert:
7447 case Intrinsic::aarch64_sme_st1b_vert:
7448 case Intrinsic::aarch64_sme_st1h_vert:
7449 case Intrinsic::aarch64_sme_st1w_vert:
7450 case Intrinsic::aarch64_sme_st1d_vert:
7451 case Intrinsic::aarch64_sme_st1q_vert:
7452 case Intrinsic::aarch64_sme_ld1b_horiz:
7453 case Intrinsic::aarch64_sme_ld1h_horiz:
7454 case Intrinsic::aarch64_sme_ld1w_horiz:
7455 case Intrinsic::aarch64_sme_ld1d_horiz:
7456 case Intrinsic::aarch64_sme_ld1q_horiz:
7457 case Intrinsic::aarch64_sme_st1b_horiz:
7458 case Intrinsic::aarch64_sme_st1h_horiz:
7459 case Intrinsic::aarch64_sme_st1w_horiz:
7460 case Intrinsic::aarch64_sme_st1d_horiz:
7461 case Intrinsic::aarch64_sme_st1q_horiz: {
7463 if (!Idx || Idx->getOpcode() != Instruction::Add)
7465 Ops.push_back(&
II->getOperandUse(3));
7468 case Intrinsic::aarch64_neon_pmull:
7471 Ops.push_back(&
II->getOperandUse(0));
7472 Ops.push_back(&
II->getOperandUse(1));
7474 case Intrinsic::aarch64_neon_pmull64:
7476 II->getArgOperand(1)))
7478 Ops.push_back(&
II->getArgOperandUse(0));
7479 Ops.push_back(&
II->getArgOperandUse(1));
7481 case Intrinsic::masked_gather:
7484 Ops.push_back(&
II->getArgOperandUse(0));
7486 case Intrinsic::masked_scatter:
7489 Ops.push_back(&
II->getArgOperandUse(1));
7496 auto ShouldSinkCondition = [](
Value *
Cond,
7501 if (
II->getIntrinsicID() != Intrinsic::vector_reduce_or ||
7505 Ops.push_back(&
II->getOperandUse(0));
7509 switch (
I->getOpcode()) {
7510 case Instruction::GetElementPtr:
7511 case Instruction::Add:
7512 case Instruction::Sub:
7514 for (
unsigned Op = 0;
Op <
I->getNumOperands(); ++
Op) {
7516 Ops.push_back(&
I->getOperandUse(
Op));
7521 case Instruction::Select: {
7522 if (!ShouldSinkCondition(
I->getOperand(0),
Ops))
7525 Ops.push_back(&
I->getOperandUse(0));
7528 case Instruction::UncondBr:
7530 case Instruction::CondBr: {
7534 Ops.push_back(&
I->getOperandUse(0));
7537 case Instruction::FMul:
7542 Ops.push_back(&
I->getOperandUse(0));
7544 Ops.push_back(&
I->getOperandUse(1));
7554 case Instruction::Xor:
7557 if (
I->getType()->isVectorTy() && ST->isNeonAvailable()) {
7559 ST->isSVEorStreamingSVEAvailable() && (ST->hasSVE2() || ST->hasSME());
7564 case Instruction::And:
7565 case Instruction::Or:
7568 if (
I->getOpcode() == Instruction::Or &&
7573 if (!(
I->getType()->isVectorTy() && ST->hasNEON()) &&
7576 for (
auto &
Op :
I->operands()) {
7588 Ops.push_back(&Not);
7589 Ops.push_back(&InsertElt);
7599 if (!
I->getType()->isVectorTy())
7600 return !
Ops.empty();
7602 switch (
I->getOpcode()) {
7603 case Instruction::Sub:
7604 case Instruction::Add: {
7613 Ops.push_back(&Ext1->getOperandUse(0));
7614 Ops.push_back(&Ext2->getOperandUse(0));
7617 Ops.push_back(&
I->getOperandUse(0));
7618 Ops.push_back(&
I->getOperandUse(1));
7622 case Instruction::Or: {
7625 if (ST->hasNEON()) {
7639 if (
I->getParent() != MainAnd->
getParent() ||
7644 if (
I->getParent() != IA->getParent() ||
7645 I->getParent() != IB->getParent())
7650 Ops.push_back(&
I->getOperandUse(0));
7651 Ops.push_back(&
I->getOperandUse(1));
7660 case Instruction::Mul: {
7661 auto ShouldSinkSplatForIndexedVariant = [](
Value *V) {
7664 if (Ty->isScalableTy())
7668 return Ty->getScalarSizeInBits() == 16 || Ty->getScalarSizeInBits() == 32;
7671 int NumZExts = 0, NumSExts = 0;
7672 for (
auto &
Op :
I->operands()) {
7679 auto *ExtOp = Ext->getOperand(0);
7680 if (
isSplatShuffle(ExtOp) && ShouldSinkSplatForIndexedVariant(ExtOp))
7681 Ops.push_back(&Ext->getOperandUse(0));
7689 if (Ext->getOperand(0)->getType()->getScalarSizeInBits() * 2 <
7690 I->getType()->getScalarSizeInBits())
7727 if (!ElementConstant || !ElementConstant->
isZero())
7730 unsigned Opcode = OperandInstr->
getOpcode();
7731 if (Opcode == Instruction::SExt)
7733 else if (Opcode == Instruction::ZExt)
7738 unsigned Bitwidth =
I->getType()->getScalarSizeInBits();
7748 Ops.push_back(&Insert->getOperandUse(1));
7754 if (!
Ops.empty() && (NumSExts == 2 || NumZExts == 2))
7758 if (!ShouldSinkSplatForIndexedVariant(
I))
7763 Ops.push_back(&
I->getOperandUse(0));
7765 Ops.push_back(&
I->getOperandUse(1));
7767 return !
Ops.empty();
7769 case Instruction::FMul: {
7771 if (
I->getType()->isScalableTy())
7772 return !
Ops.empty();
7776 return !
Ops.empty();
7780 Ops.push_back(&
I->getOperandUse(0));
7782 Ops.push_back(&
I->getOperandUse(1));
7783 return !
Ops.empty();
static bool isAllActivePredicate(const SelectionDAG &DAG, SDValue N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Register Bank Select
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
static Error reportError(StringRef Message)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static cl::opt< OutputCostKind > CostKind("cost-kind", cl::desc("Target cost kind"), cl::init(OutputCostKind::RecipThroughput), cl::values(clEnumValN(OutputCostKind::RecipThroughput, "throughput", "Reciprocal throughput"), clEnumValN(OutputCostKind::Latency, "latency", "Instruction latency"), clEnumValN(OutputCostKind::CodeSize, "code-size", "Code size"), clEnumValN(OutputCostKind::SizeAndLatency, "size-latency", "Code size and latency"), clEnumValN(OutputCostKind::All, "all", "Print all cost kinds")))
Cost tables and simple lookup functions.
This file defines the DenseMap class.
static Value * getCondition(Instruction *I)
const HexagonInstrInfo * TII
This file provides the interface for the instcombine pass implementation.
static constexpr Value * getValue(Ty &ValueOrUse)
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
This file defines the LoopVectorizationLegality class.
static const Function * getCalledFunction(const Value *V)
MachineInstr unsigned OpIdx
uint64_t IntrinsicInst * II
const SmallVectorImpl< MachineOperand > & Cond
static uint64_t getBits(uint64_t Val, int Start, int End)
static unsigned getFastMathFlags(const MachineInstr &I, const SPIRVSubtarget &ST)
static SymbolRef::Type getType(const Symbol *Sym)
This file describes how to lower LLVM code to machine code.
static unsigned getBitWidth(Type *Ty, const DataLayout &DL)
Returns the bitwidth of the given scalar or pointer type.
This file implements the C++20 <bit> header.
unsigned getVectorInsertExtractBaseCost() const
InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getScalarizationOverhead(VectorType *Ty, const APInt &DemandedElts, bool Insert, bool Extract, TTI::TargetCostKind CostKind, bool ForPoisonSrc=true, ArrayRef< Value * > VL={}, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Op2Info={TTI::OK_AnyValue, TTI::OP_None}, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
InstructionCost getCostOfKeepingLiveOverCall(ArrayRef< Type * > Tys) const override
InstructionCost getMaskedMemoryOpCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const
InstructionCost getGatherScatterOpCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const
bool isLegalBroadcastLoad(Type *ElementTy, ElementCount NumElements) const override
InstructionCost getAddressComputationCost(Type *PtrTy, ScalarEvolution *SE, const SCEV *Ptr, TTI::TargetCostKind CostKind) const override
bool isExtPartOfAvgExpr(const Instruction *ExtUser, Type *Dst, Type *Src) const
InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, const Value *Op0, const Value *Op1, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getIntImmCost(int64_t Val) const
Calculate the cost of materializing a 64-bit value.
std::optional< InstructionCost > getFP16BF16PromoteCost(Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info, TTI::OperandValueInfo Op2Info, bool IncludeTrunc, bool CanUseSVE, std::function< InstructionCost(Type *)> InstCost) const
FP16 and BF16 operations are lowered to fptrunc(op(fpext, fpext) if the architecture features are not...
bool prefersVectorizedAddressing() const override
InstructionCost getIndexedVectorInstrCostFromEnd(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index) const override
InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const override
InstructionCost getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy, VectorType *Ty, TTI::TargetCostKind CostKind=TTI::TCK_RecipThroughput) const override
InstructionCost getIntImmCostInst(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty, TTI::TargetCostKind CostKind, Instruction *Inst=nullptr) const override
bool isElementTypeLegalForScalableVector(Type *Ty) const override
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
InstructionCost getPartialReductionCost(unsigned Opcode, Type *InputTypeA, Type *InputTypeB, Type *AccumType, ElementCount VF, TTI::PartialReductionExtendKind OpAExtend, TTI::PartialReductionExtendKind OpBExtend, std::optional< unsigned > BinOp, TTI::TargetCostKind CostKind, std::optional< FastMathFlags > FMF) const override
InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const override
bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) const override
bool preferTailFoldingOverEpilogue(TailFoldingInfo *TFI) const override
InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *Ty, FastMathFlags FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, TTI::OperandValueInfo OpInfo={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
APInt getPriorityMask(const Function &F) const override
bool shouldMaximizeVectorBandwidth(TargetTransformInfo::RegisterKind K) const override
bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1, const TargetTransformInfo::LSRCost &C2) const override
InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
bool isProfitableToSinkOperands(Instruction *I, SmallVectorImpl< Use * > &Ops) const override
Check if sinking I's operands to I's basic block is profitable, because the operands can be folded in...
std::optional< Value * > simplifyDemandedVectorEltsIntrinsic(InstCombiner &IC, IntrinsicInst &II, APInt DemandedElts, APInt &UndefElts, APInt &UndefElts2, APInt &UndefElts3, std::function< void(Instruction *, unsigned, APInt, APInt &)> SimplifyAndSetOp) const override
bool useNeonVector(const Type *Ty) const
std::optional< Instruction * > instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const override
InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Op2Info={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
InstructionCost getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, ArrayRef< int > Mask, TTI::TargetCostKind CostKind, int Index, VectorType *SubTp, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
InstructionCost getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy, VectorType *ValTy, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
bool isLegalMaskedExpandLoad(Type *DataTy, Align Alignment) const override
TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) const override
InstructionCost getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy, unsigned Index, TTI::TargetCostKind CostKind) const override
unsigned getInlineCallPenalty(const Function *F, const CallBase &Call, unsigned DefaultCallPenalty) const override
bool areInlineCompatible(const Function *Caller, const Function *Callee) const override
unsigned getMaxNumElements(ElementCount VF) const
Try to return an estimate cost factor that can be used as a multiplier when scalarizing an operation ...
bool shouldTreatInstructionLikeSelect(const Instruction *I) const override
bool isMultiversionedFunction(const Function &F) const override
TypeSize getRegisterBitWidth(TargetTransformInfo::RegisterKind K) const override
bool isLegalToVectorizeReduction(const RecurrenceDescriptor &RdxDesc, ElementCount VF) const override
TTI::MemCmpExpansionOptions enableMemCmpExpansion(bool OptSize, bool IsZeroCmp) const override
InstructionCost getIntImmCostIntrin(Intrinsic::ID IID, unsigned Idx, const APInt &Imm, Type *Ty, TTI::TargetCostKind CostKind) const override
bool isLegalMaskedGatherScatter(Type *DataType) const
InstructionCost getBranchMispredictPenalty() const override
bool shouldConsiderAddressTypePromotion(const Instruction &I, bool &AllowPromotionWithoutCommonHeader) const override
See if I should be considered for address type promotion.
APInt getFeatureMask(const Function &F) const override
InstructionCost getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef< unsigned > Indices, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, bool UseMaskForCond=false, bool UseMaskForGaps=false) const override
bool areTypesABICompatible(const Function *Caller, const Function *Callee, ArrayRef< Type * > Types) const override
bool enableScalableVectorization() const override
InstructionCost getMemIntrinsicInstrCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const override
Value * getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType, bool CanCreate=true) const override
bool hasKnownLowerThroughputFromSchedulingModel(unsigned Opcode1, unsigned Opcode2) const
Check whether Opcode1 has less throughput according to the scheduling model than Opcode2.
unsigned getEpilogueVectorizationMinVF() const override
InstructionCost getSpliceCost(VectorType *Tp, int Index, TTI::TargetCostKind CostKind) const
InstructionCost getArithmeticReductionCostSVE(unsigned Opcode, VectorType *ValTy, TTI::TargetCostKind CostKind) const
InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace) const override
Return the cost of the scaling factor used in the addressing mode represented by AM for this target,...
bool preferFixedOverScalableIfEqualCost(bool IsEpilogue) const override
unsigned getMaxInterleaveFactor(ElementCount VF, bool HasUnorderedReductions) const override
Class for arbitrary precision integers.
bool isNegatedPowerOf2() const
Check if this APInt's negated value is a power of two greater than zero.
uint64_t getZExtValue() const
Get zero extended value.
unsigned popcount() const
Count the number of bits set.
void negate()
Negate this APInt in place.
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
unsigned logBase2() const
APInt ashr(unsigned ShiftAmt) const
Arithmetic right-shift function.
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 getHighBitsSet(unsigned numBits, unsigned hiBitsSet)
Constructs an APInt value that has the top hiBitsSet bits set.
int64_t getSExtValue() const
Get sign extended value.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
LLVM Basic Block Representation.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
InstructionCost getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef< unsigned > Indices, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, bool UseMaskForCond=false, bool UseMaskForGaps=false) const override
InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Opd1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Opd2Info={TTI::OK_AnyValue, TTI::OP_None}, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *Ty, FastMathFlags FMF, TTI::TargetCostKind CostKind) const override
TTI::ShuffleKind improveShuffleKindFromMask(TTI::ShuffleKind Kind, ArrayRef< int > Mask, VectorType *SrcTy, int &Index, VectorType *&SubTy) const
bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace, Instruction *I=nullptr, int64_t ScalableOffset=0) const override
bool areInlineCompatible(const Function *Caller, const Function *Callee) const override
InstructionCost getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, ArrayRef< int > Mask, TTI::TargetCostKind CostKind, int Index, VectorType *SubTp, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr) const override
InstructionCost getScalarizationOverhead(VectorType *InTy, const APInt &DemandedElts, bool Insert, bool Extract, TTI::TargetCostKind CostKind, bool ForPoisonSrc=true, ArrayRef< Value * > VL={}, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info={TTI::OK_AnyValue, TTI::OP_None}, TTI::OperandValueInfo Op2Info={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
InstructionCost getCallInstrCost(Function *F, Type *RetTy, ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const override
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const override
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
InstructionCost getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy, VectorType *Ty, TTI::TargetCostKind CostKind) const override
InstructionCost getIndexedVectorInstrCostFromEnd(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index) const override
InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
std::pair< InstructionCost, MVT > getTypeLegalizationCost(Type *Ty) const
InstructionCost getPartialReductionCost(unsigned Opcode, Type *InputTypeA, Type *InputTypeB, Type *AccumType, ElementCount VF, TTI::PartialReductionExtendKind OpAExtend, TTI::PartialReductionExtendKind OpBExtend, std::optional< unsigned > BinOp, TTI::TargetCostKind CostKind, std::optional< FastMathFlags > FMF) const override
InstructionCost getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const override
InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const override
InstructionCost getMemIntrinsicInstrCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const override
InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, TTI::OperandValueInfo OpInfo={TTI::OK_AnyValue, TTI::OP_None}, const Instruction *I=nullptr) const override
bool isTypeLegal(Type *Ty) const override
static BinaryOperator * CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Value *CopyO, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Value * getArgOperand(unsigned i) const
unsigned arg_size() const
This class represents a function call, abstracting a target machine's calling convention.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ FCMP_OLT
0 1 0 0 True if ordered and less than
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
@ ICMP_UGE
unsigned greater or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
@ ICMP_ULT
unsigned less than
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
@ FCMP_ORD
0 1 1 1 True if ordered (no nans)
@ ICMP_SGE
signed greater or equal
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
@ ICMP_ULE
unsigned less or equal
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
static bool isFPPredicate(Predicate P)
static bool isIntPredicate(Predicate P)
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
static LLVM_ABI ConstantAggregateZero * get(Type *Ty)
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
bool isZero() const
This is just a convenience method to make client code smaller for a common code.
const APInt & getValue() const
Return the constant as an APInt value reference.
static LLVM_ABI ConstantInt * getBool(LLVMContext &Context, bool V)
static LLVM_ABI Constant * getSplat(ElementCount EC, Constant *Elt)
Return a ConstantVector with the specified constant in each element.
This is an important base class in LLVM.
LLVM_ABI Constant * getSplatValue(bool AllowPoison=false) const
If all elements of the vector constant have the same value, return that value.
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
TypeSize getTypeSizeInBits(Type *Ty) const
Size examples:
bool contains(const_arg_type_t< KeyT > Val) const
Return true if the specified key is in the map, false otherwise.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
static constexpr ElementCount getScalable(ScalarTy MinVal)
static constexpr ElementCount getFixed(ScalarTy MinVal)
constexpr bool isScalar() const
Exactly one element.
static bool isCommutative(Predicate Pred)
This provides a helper for copying FMF from an instruction or setting specified flags.
Convenience struct for specifying and reasoning about fast-math flags.
bool noSignedZeros() const
bool allowContract() const
Class to represent fixed width SIMD vectors.
unsigned getNumElements() const
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
static bool isCommutative(Predicate P)
Value * CreateInsertElement(Type *VecTy, Value *NewElt, Value *Idx, const Twine &Name="")
Value * CreateExtractElement(Value *Vec, Value *Idx, const Twine &Name="")
IntegerType * getIntNTy(unsigned N)
Fetch the type representing an N-bit integer.
Type * getDoubleTy()
Fetch the type representing a 64-bit floating point value.
LLVM_ABI Value * CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name="")
Return a vector value that contains.
LLVM_ABI CallInst * CreateMaskedLoad(Type *Ty, Value *Ptr, Align Alignment, Value *Mask, Value *PassThru=nullptr, const Twine &Name="")
Create a call to Masked Load intrinsic.
LLVM_ABI Value * CreateSelect(Value *C, Value *True, Value *False, const Twine &Name="", Instruction *MDFrom=nullptr)
IntegerType * getInt32Ty()
Fetch the type representing a 32-bit integer.
Type * getHalfTy()
Fetch the type representing a 16-bit floating point value.
Value * CreateGEP(Type *Ty, Value *Ptr, ArrayRef< Value * > IdxList, const Twine &Name="", GEPNoWrapFlags NW=GEPNoWrapFlags::none())
ConstantInt * getInt64(uint64_t C)
Get a constant 64-bit value.
Value * CreateLogicalAnd(Value *Cond1, Value *Cond2, const Twine &Name="", Instruction *MDFrom=nullptr)
Value * CreateBitOrPointerCast(Value *V, Type *DestTy, const Twine &Name="")
PHINode * CreatePHI(Type *Ty, unsigned NumReservedValues, const Twine &Name="")
Value * CreateBinOpFMF(Instruction::BinaryOps Opc, Value *LHS, Value *RHS, FMFSource FMFSource, const Twine &Name="", MDNode *FPMathTag=nullptr)
Value * CreateSub(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Value * CreateBitCast(Value *V, Type *DestTy, const Twine &Name="")
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Value * CreateShuffleVector(Value *V1, Value *V2, Value *Mask, const Twine &Name="")
LLVM_ABI Value * CreateIntrinsic(Intrinsic::ID ID, ArrayRef< Type * > OverloadTypes, ArrayRef< Value * > Args, FMFSource FMFSource={}, const Twine &Name="", ArrayRef< OperandBundleDef > OpBundles={}, function_ref< void(CallInst *)> SetFn=[](CallInst *) {})
Variant to create a possibly constant-folded intrinsic.
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
LLVM_ABI CallInst * CreateMaskedStore(Value *Val, Value *Ptr, Align Alignment, Value *Mask)
Create a call to Masked Store intrinsic.
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Type * getFloatTy()
Fetch the type representing a 32-bit floating point value.
Value * CreateIntCast(Value *V, Type *DestTy, bool isSigned, const Twine &Name="")
void SetInsertPoint(BasicBlock *TheBB)
This specifies that created instructions should be appended to the end of the specified block.
Value * CreateInsertVector(Type *DstType, Value *SrcVec, Value *SubVec, Value *Idx, const Twine &Name="")
Create a call to the vector.insert intrinsic.
LLVM_ABI Value * CreateElementCount(Type *Ty, ElementCount EC)
Create an expression which evaluates to the number of elements in EC at runtime.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
This instruction inserts a single (scalar) element into a VectorType value.
The core instruction combiner logic.
virtual Instruction * eraseInstFromFunction(Instruction &I)=0
Combiner aware instruction erasure.
Instruction * replaceInstUsesWith(Instruction &I, Value *V)
A combiner-aware RAUW-like routine.
Instruction * replaceOperand(Instruction &I, unsigned OpNum, Value *V)
Replace operand of instruction and add old operand to the worklist.
static InstructionCost getInvalid(CostType Val=0)
CostType getValue() const
This function is intended to be used as sparingly as possible, since the class provides the full rang...
LLVM_ABI bool isCommutative() const LLVM_READONLY
Return true if the instruction is commutative:
LLVM_ABI FastMathFlags getFastMathFlags() const LLVM_READONLY
Convenience function for getting all the fast-math flags, which must be an operator which supports th...
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
LLVM_ABI void copyMetadata(const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >())
Copy metadata from SrcInst to this instruction.
Class to represent integer types.
bool hasGroups() const
Returns true if we have any interleave groups.
const SmallVectorImpl< Type * > & getArgTypes() const
Type * getReturnType() const
const SmallVectorImpl< const Value * > & getArgs() const
const IntrinsicInst * getInst() const
Intrinsic::ID getID() const
A wrapper class for inspecting calls to intrinsic functions.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Value * getPointerOperand()
iterator_range< block_iterator > blocks() const
RecurrenceSet & getFixedOrderRecurrences()
Return the fixed-order recurrences found in the loop.
DominatorTree * getDominatorTree() const
PredicatedScalarEvolution * getPredicatedScalarEvolution() const
const ReductionList & getReductionVars() const
Returns the reduction variables found in the loop.
Represents a single loop in the control flow graph.
uint64_t getScalarSizeInBits() const
unsigned getVectorNumElements() const
bool isVector() const
Return true if this is a vector value type.
static MVT getScalableVectorVT(MVT VT, unsigned NumElements)
bool isFixedLengthVector() const
MVT getVectorElementType() const
Information for memory intrinsic cost model.
Align getAlignment() const
Type * getDataType() const
Intrinsic::ID getID() const
const Instruction * getInst() const
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
An interface layer with SCEV used to manage how we see SCEV expressions for values in the context of ...
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
Type * getRecurrenceType() const
Returns the type of the recurrence.
RecurKind getRecurrenceKind() const
This node represents a polynomial recurrence on the trip count of the specified loop.
bool isAffine() const
Return true if this represents an expression A + B*x where A and B are loop invariant values.
This class represents an analyzed expression in the program.
SMEAttrs is a utility class to parse the SME ACLE attributes on functions.
bool hasStreamingCompatibleInterface() const
bool hasStreamingInterfaceOrBody() const
bool isSMEABIRoutine() const
SMECallAttrs is a utility class to hold the SMEAttrs for a callsite.
bool requiresSMChange() const
static LLVM_ABI ScalableVectorType * get(Type *ElementType, unsigned MinNumElts)
static ScalableVectorType * getDoubleElementsVectorType(ScalableVectorType *VTy)
The main scalar evolution driver.
LLVM_ABI const SCEV * getBackedgeTakenCount(const Loop *L, ExitCountKind Kind=Exact)
If the specified loop has a predictable backedge-taken count, return it, otherwise return a SCEVCould...
LLVM_ABI unsigned getSmallConstantTripMultiple(const Loop *L, const SCEV *ExitCount)
Returns the largest constant divisor of the trip count as a normal unsigned value,...
LLVM_ABI const SCEV * getSCEV(Value *V)
Return a SCEV expression for the full generality of the specified expression.
LLVM_ABI unsigned getSmallConstantMaxTripCount(const Loop *L, SmallVectorImpl< const SCEVPredicate * > *Predicates=nullptr)
Returns the upper bound of the loop trip count as a normal unsigned value.
LLVM_ABI bool isLoopInvariant(const SCEV *S, const Loop *L)
Return true if the value of the given SCEV is unchanging in the specified loop.
const SCEV * getSymbolicMaxBackedgeTakenCount(const Loop *L)
When successful, this returns a SCEV that is greater than or equal to (i.e.
This instruction constructs a fixed permutation of two input vectors.
static LLVM_ABI bool isDeInterleaveMaskOfFactor(ArrayRef< int > Mask, unsigned Factor, unsigned &Index)
Check if the mask is a DE-interleave mask of the given factor Factor like: <Index,...
static LLVM_ABI bool isExtractSubvectorMask(ArrayRef< int > Mask, int NumSrcElts, int &Index)
Return true if this shuffle mask is an extract subvector mask.
static LLVM_ABI bool isInterleaveMask(ArrayRef< int > Mask, unsigned Factor, unsigned NumInputElts, SmallVectorImpl< unsigned > &StartIndexes)
Return true if the mask interleaves one or more input vectors together.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
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...
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StackOffset holds a fixed and a scalable offset in bytes.
static StackOffset getScalable(int64_t Scalable)
static StackOffset getFixed(int64_t Fixed)
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
std::pair< StringRef, StringRef > split(char Separator) const
Split into two substrings around the first occurrence of a separator character.
Class to represent struct types.
TargetInstrInfo - Interface to description of machine instruction set.
std::pair< LegalizeTypeAction, EVT > LegalizeKind
LegalizeKind holds the legalization kind that needs to happen to EVT in order to type-legalize it.
const RTLIB::RuntimeLibcallsInfo & getRuntimeLibcallsInfo() const
static constexpr TypeSize getFixed(ScalarTy ExactSize)
static constexpr TypeSize getScalable(ScalarTy MinimumSize)
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
bool isVectorTy() const
True if this is an instance of VectorType.
LLVM_ABI bool isScalableTy(SmallPtrSetImpl< const Type * > &Visited) const
Return true if this is a type whose size is a known multiple of vscale.
bool isPointerTy() const
True if this is an instance of PointerType.
bool isFloatTy() const
Return true if this is 'float', a 32-bit IEEE fp type.
bool isBFloatTy() const
Return true if this is 'bfloat', a 16-bit bfloat type.
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
LLVM_ABI TypeSize getPrimitiveSizeInBits() const LLVM_READONLY
Return the basic size of this type if it is a primitive type.
LLVM_ABI Type * getWithNewBitWidth(unsigned NewBitWidth) const
Given an integer or vector type, change the lane bitwidth to NewBitwidth, whilst keeping the old numb...
bool isHalfTy() const
Return true if this is 'half', a 16-bit IEEE fp type.
LLVM_ABI Type * getWithNewType(Type *EltTy) const
Given vector type, change the element type, whilst keeping the old number of elements.
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isDoubleTy() const
Return true if this is 'double', a 64-bit IEEE fp type.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isFloatingPointTy() const
Return true if this is one of the floating-point types.
bool isIntegerTy() const
True if this is an instance of IntegerType.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
static LLVM_ABI Type * getFloatTy(LLVMContext &C)
static LLVM_ABI UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
const Use & getOperandUse(unsigned i) const
Value * getOperand(unsigned i) const
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
user_iterator user_begin()
bool hasOneUse() const
Return true if there is exactly one use of this value.
LLVM_ABI Align getPointerAlignment(const DataLayout &DL) const
Returns an alignment of the pointer value.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
Base class of all SIMD vector types.
ElementCount getElementCount() const
Return an ElementCount instance to represent the (possibly scalable) number of elements in the vector...
static VectorType * getInteger(VectorType *VTy)
This static method gets a VectorType with the same number of elements as the input type,...
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
Type * getElementType() const
constexpr ScalarTy getFixedValue() const
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
constexpr ScalarTy getKnownMinValue() const
Returns the minimum value this quantity can represent.
constexpr LeafTy divideCoefficientBy(ScalarTy RHS) const
We do not provide the '/' operator here because division for polynomial types does not work in the sa...
const ParentTy * getParent() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
static bool isLogicalImmediate(uint64_t imm, unsigned regSize)
isLogicalImmediate - Return true if the immediate is valid for a logical immediate instruction of the...
void expandMOVImm(uint64_t Imm, unsigned BitSize, SmallVectorImpl< ImmInsnModel > &Insn)
Expand a MOVi32imm or MOVi64imm pseudo instruction to one or more real move-immediate instructions to...
LLVM_ABI APInt getCpuSupportsMask(ArrayRef< StringRef > Features)
static constexpr unsigned SVEBitsPerBlock
LLVM_ABI APInt getFMVPriority(ArrayRef< StringRef > Features)
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
@ ADD
Simple integer binary arithmetic operators.
@ SINT_TO_FP
[SU]INT_TO_FP - These operators convert integers (whose interpreted sign depends on the first letter)...
@ FADD
Simple binary floating point operators.
@ BITCAST
BITCAST - This operator converts between integer, vector and FP values, as if the value was stored to...
@ SIGN_EXTEND
Conversion operators.
@ FNEG
Perform various unary floating-point operations inspired by libm.
@ SHL
Shift and rotation operations.
@ ZERO_EXTEND
ZERO_EXTEND - Used for integer types, zeroing the new bits.
@ FP_EXTEND
X = FP_EXTEND(Y) - Extend a smaller FP type into a larger FP type.
@ FP_TO_SINT
FP_TO_[US]INT - Convert a floating point value to a signed or unsigned integer.
@ AND
Bitwise operators - logical and, logical or, logical xor.
@ FP_ROUND
X = FP_ROUND(Y, TRUNC) - Rounding 'Y' from a larger floating point type down to the precision of the ...
@ TRUNCATE
TRUNCATE - Completely drop the high bits.
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
SpecificConstantMatch m_ZeroInt()
Convenience matchers for specific integer values.
CheckType m_SpecificType(LLT Ty)
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
OneUse_match< SubPat > m_OneUse(const SubPat &SP)
cst_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
auto m_Cmp()
Matches any compare instruction and ignore it.
ap_match< APInt > m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
LogicalOp_match< LHS, RHS, Instruction::And > m_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R either in the form of L & R or L ?
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
BinaryOp_match< LHS, RHS, Instruction::FMul > m_FMul(const LHS &L, const RHS &R)
bool match(Val *V, const Pattern &P)
match_bind< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
TwoOps_match< Val_t, Idx_t, Instruction::ExtractElement > m_ExtractElt(const Val_t &Val, const Idx_t &Idx)
Matches ExtractElementInst.
cst_pred_ty< is_nonnegative > m_NonNegative()
Match an integer or vector of non-negative values.
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
auto m_BinOp()
Match an arbitrary binary operation and ignore it.
auto m_Value()
Match an arbitrary value and ignore it.
BinaryOp_match< LHS, RHS, Instruction::Xor, true > m_c_Xor(const LHS &L, const RHS &R)
Matches an Xor with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Mul > m_Mul(const LHS &L, const RHS &R)
TwoOps_match< V1_t, V2_t, Instruction::ShuffleVector > m_Shuffle(const V1_t &v1, const V2_t &v2)
Matches ShuffleVectorInst independently of mask value.
auto m_VScale()
Matches a call to llvm.vscale().
OneOps_match< OpTy, Instruction::Load > m_Load(const OpTy &Op)
Matches LoadInst.
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
BinaryOp_match< LHS, RHS, Instruction::Add, true > m_c_Add(const LHS &L, const RHS &R)
Matches a Add with LHS and RHS in either order.
auto m_Intrinsic(const Ts &...Ops)
Match intrinsic calls like this: m_Intrinsic<Intrinsic::fabs>(m_Value(X))
AnyBinaryOp_match< LHS, RHS, true > m_c_BinOp(const LHS &L, const RHS &R)
Matches a BinaryOperator with LHS and RHS in either order.
CmpClass_match< LHS, RHS, ICmpInst > m_ICmp(CmpPredicate &Pred, const LHS &L, const RHS &R)
match_combine_or< CastInst_match< OpTy, ZExtInst >, CastInst_match< OpTy, SExtInst > > m_ZExtOrSExt(const OpTy &Op)
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
BinOpPred_match< LHS, RHS, is_shift_op > m_Shift(const LHS &L, const RHS &R)
Matches shift operations.
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
brc_match< Cond_t, match_bind< BasicBlock >, match_bind< BasicBlock > > m_Br(const Cond_t &C, BasicBlock *&T, BasicBlock *&F)
auto m_Undef()
Match an arbitrary undef constant.
CastInst_match< OpTy, SExtInst > m_SExt(const OpTy &Op)
Matches SExt.
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
BinaryOp_match< LHS, RHS, Instruction::Or, true > m_c_Or(const LHS &L, const RHS &R)
Matches an Or with LHS and RHS in either order.
ThreeOps_match< Val_t, Elt_t, Idx_t, Instruction::InsertElement > m_InsertElt(const Val_t &Val, const Elt_t &Elt, const Idx_t &Idx)
Matches InsertElementInst.
auto m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
LLVM_ABI Libcall getPOW(EVT RetVT)
getPOW - Return the POW_* value for the given types, or UNKNOWN_LIBCALL if there is none.
initializer< Ty > init(const Ty &Val)
LocationClass< Ty > location(Ty &L)
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
std::optional< unsigned > isDUPQMask(ArrayRef< int > Mask, unsigned Segments, unsigned SegmentSize)
isDUPQMask - matches a splat of equivalent lanes within segments of a given number of elements.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
const CostTblEntryT< CostType > * CostTableLookup(ArrayRef< CostTblEntryT< CostType > > Tbl, int ISD, MVT Ty)
Find in cost table.
LLVM_ABI bool getBooleanLoopAttribute(const Loop *TheLoop, StringRef Name)
Returns true if Name is applied to TheLoop and enabled.
bool isZIPMask(ArrayRef< int > M, unsigned NumElts, unsigned &WhichResultOut, unsigned &OperandOrderOut)
Return true for zip1 or zip2 masks of the form: <0, 8, 1, 9, 2, 10, 3, 11> (WhichResultOut = 0,...
TailFoldingOpts
An enum to describe what types of loops we should attempt to tail-fold: Disabled: None Reductions: Lo...
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
@ Known
Known to have no common set bits.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
bool isDUPFirstSegmentMask(ArrayRef< int > Mask, unsigned Segments, unsigned SegmentSize)
isDUPFirstSegmentMask - matches a splat of the first 128b segment.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI std::optional< const MDOperand * > findStringMetadataForLoop(const Loop *TheLoop, StringRef Name)
Find string metadata for loop.
const Value * getLoadStorePointerOperand(const Value *V)
A helper function that returns the pointer operand of a load or store instruction.
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
LLVM_ABI Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
constexpr auto equal_to(T &&Arg)
Functor variant of std::equal_to that can be used as a UnaryPredicate in functional algorithms like a...
constexpr int popcount(T Value) noexcept
Count the number of set bits in a value.
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI bool MaskedValueIsZero(const Value *V, const APInt &Mask, const SimplifyQuery &SQ, unsigned Depth=0)
Return true if 'V & Mask' is known to be zero.
unsigned M1(unsigned Val)
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool isSplatValue(const Value *V, int Index=-1, unsigned Depth=0)
Return true if each element of the vector value V is poisoned or equal to every other non-poisoned el...
unsigned getPerfectShuffleCost(llvm::ArrayRef< int > M)
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
LLVM_ABI void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
bool isUZPMask(ArrayRef< int > M, unsigned NumElts, unsigned &WhichResultOut)
Return true for uzp1 or uzp2 masks of the form: <0, 2, 4, 6, 8, 10, 12, 14> or <1,...
bool isREVMask(ArrayRef< int > M, unsigned EltSize, unsigned NumElts, unsigned BlockSize)
isREVMask - Check if a vector shuffle corresponds to a REV instruction with the specified blocksize.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
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...
constexpr int PoisonMaskElem
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
LLVM_ABI Value * simplifyBinOp(unsigned Opcode, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for a BinaryOperator, fold the result or return null.
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
@ Or
Bitwise or logical OR of integers.
@ FSub
Subtraction of floats.
@ FAddChainWithSubs
A chain of fadds and fsubs.
@ AnyOf
AnyOf reduction with select(cmp(),x,y) where one of (x,y) is loop invariant, and both x and y are int...
@ Xor
Bitwise or logical XOR of integers.
@ FindLast
FindLast reduction with select(cmp(),x,y) where x and y.
@ FMax
FP max implemented in terms of select(cmp()).
@ FMulAdd
Sum of float products with llvm.fmuladd(a * b + sum).
@ SMax
Signed integer max implemented in terms of select(cmp()).
@ And
Bitwise or logical AND of integers.
@ SMin
Signed integer min implemented in terms of select(cmp()).
@ FMin
FP min implemented in terms of select(cmp()).
@ Sub
Subtraction of integers.
@ AddChainWithSubs
A chain of adds and subs.
@ UMax
Unsigned integer max implemented in terms of select(cmp()).
DWARFExpression::Operation Op
TypeConversionCostTblEntryT< uint16_t > TypeConversionCostTblEntry
CostTblEntryT< uint16_t > CostTblEntry
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
unsigned getNumElementsFromSVEPredPattern(unsigned Pattern)
Return the number of active elements for VL1 to VL256 predicate pattern, zero for all other patterns.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Type * getLoadStoreType(const Value *I)
A helper function that returns the type of a load or store instruction.
bool all_equal(std::initializer_list< T > Values)
Returns true if all Values in the initializer lists are equal or the list.
LLVM_ABI Value * simplifyCmpInst(CmpPredicate Predicate, Value *LHS, Value *RHS, const SimplifyQuery &Q)
Given operands for a CmpInst, fold the result or return null.
Type * toVectorTy(Type *Scalar, ElementCount EC)
A helper function for converting Scalar types to vector types.
LLVM_ABI std::optional< int64_t > getPtrStride(PredicatedScalarEvolution &PSE, Type *AccessTy, Value *Ptr, const Loop *Lp, const DominatorTree &DT, const DenseMap< Value *, const SCEV * > &StridesMap=DenseMap< Value *, const SCEV * >(), bool ShouldCheckWrap=true, SmallVectorImpl< const SCEVPredicate * > *Predicates=nullptr)
If the pointer has a constant stride return it in units of the access type size.
const TypeConversionCostTblEntryT< CostType > * ConvertCostTableLookup(ArrayRef< TypeConversionCostTblEntryT< CostType > > Tbl, int ISD, MVT Dst, MVT Src)
Find in type conversion cost table.
constexpr uint64_t NextPowerOf2(uint64_t A)
Returns the next power of two (in 64-bits) that is strictly greater than A.
bool isTRNMask(ArrayRef< int > M, unsigned NumElts, unsigned &WhichResultOut, unsigned &OperandOrderOut)
Return true for trn1 or trn2 masks of the form: <0, 8, 2, 10, 4, 12, 6, 14> (WhichResultOut = 0,...
unsigned getMatchingIROpode() const
bool inactiveLanesAreUnused() const
bool inactiveLanesAreNotDefined() const
bool hasMatchingUndefIntrinsic() const
static SVEIntrinsicInfo defaultMergingUnaryNarrowingTopOp()
static SVEIntrinsicInfo defaultZeroingOp()
bool hasGoverningPredicate() const
SVEIntrinsicInfo & setOperandIdxInactiveLanesTakenFrom(unsigned Index)
static SVEIntrinsicInfo defaultMergingOp(Intrinsic::ID IID=Intrinsic::not_intrinsic)
SVEIntrinsicInfo & setOperandIdxWithNoActiveLanes(unsigned Index)
unsigned getOperandIdxWithNoActiveLanes() const
CmpInst::Predicate getCmpPredicate() const
SVEIntrinsicInfo & setInactiveLanesAreUnused()
SVEIntrinsicInfo & setInactiveLanesAreNotDefined()
SVEIntrinsicInfo & setGoverningPredicateOperandIdx(unsigned Index)
bool inactiveLanesTakenFromOperand() const
static SVEIntrinsicInfo defaultUndefOp()
bool hasOperandWithNoActiveLanes() const
Intrinsic::ID getMatchingUndefIntrinsic() const
SVEIntrinsicInfo & setResultIsZeroInitialized()
bool hasCmpPredicate() const
static SVEIntrinsicInfo defaultMergingUnaryOp()
SVEIntrinsicInfo & setMatchingUndefIntrinsic(Intrinsic::ID IID)
unsigned getGoverningPredicateOperandIdx() const
bool hasMatchingIROpode() const
SVEIntrinsicInfo & setCmpPredicate(CmpInst::Predicate Pred)
bool resultIsZeroInitialized() const
SVEIntrinsicInfo & setMatchingIROpcode(unsigned Opcode)
unsigned getOperandIdxInactiveLanesTakenFrom() const
static SVEIntrinsicInfo defaultVoidOp(unsigned GPIndex)
This struct is a compact representation of a valid (non-zero power of two) alignment.
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
static EVT getVectorVT(LLVMContext &Context, EVT VT, unsigned NumElements, bool IsScalable=false)
Returns the EVT that represents a vector NumElements in length, where each element is of type VT.
bool bitsGT(EVT VT) const
Return true if this has more bits than VT.
TypeSize getSizeInBits() const
Return the size of the specified value type in bits.
unsigned getVectorMinNumElements() const
Given a vector type, return the minimum number of elements it contains.
uint64_t getScalarSizeInBits() const
static LLVM_ABI EVT getEVT(Type *Ty, bool HandleUnknown=false)
Return the value type corresponding to the specified type.
MVT getSimpleVT() const
Return the SimpleValueType held in the specified simple EVT.
bool isFixedLengthVector() const
EVT getScalarType() const
If this is a vector type, return the element type, otherwise return this.
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
bool isScalableVector() const
Return true if this is a vector type where the runtime length is machine dependent.
EVT getVectorElementType() const
Given a vector type, return the type of each element.
unsigned getVectorNumElements() const
Given a vector type, return the number of elements it contains.
Summarize the scheduling resources required for an instruction of a particular scheduling class.
Machine model for scheduling, bundling, and heuristics.
static LLVM_ABI double getReciprocalThroughput(const MCSubtargetInfo &STI, const MCSchedClassDesc &SCDesc)
Information about a load/store intrinsic defined by the target.
InterleavedAccessInfo * IAI
LoopVectorizationLegality * LVL
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...