16#ifndef LLVM_CODEGEN_BASICTTIIMPL_H
17#define LLVM_CODEGEN_BASICTTIIMPL_H
88 const T *thisT()
const {
return static_cast<const T *
>(
this); }
98 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
102 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, VTy,
122 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, VTy,
124 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
137 "Can only extract subvectors from vectors");
140 (Index + NumSubElts) <=
142 "SK_ExtractSubvector index out of range");
148 for (
int i = 0; i != NumSubElts; ++i) {
150 thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
151 CostKind, i + Index,
nullptr,
nullptr);
152 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, SubVTy,
165 "Can only insert subvectors into vectors");
168 (Index + NumSubElts) <=
170 "SK_InsertSubvector index out of range");
176 for (
int i = 0; i != NumSubElts; ++i) {
177 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, SubVTy,
180 thisT()->getVectorInstrCost(Instruction::InsertElement, VTy,
CostKind,
181 i + Index,
nullptr,
nullptr);
188 return static_cast<const T *
>(
this)->getST();
193 return static_cast<const T *
>(
this)->getTLI();
215 bool IsGatherScatter,
223 unsigned VF = VT->getNumElements();
238 VF * thisT()->getMemoryOpCost(Opcode, VT->getElementType(), Alignment,
244 Opcode == Instruction::Store,
CostKind);
258 VF * (thisT()->getCFInstrCost(Instruction::CondBr,
CostKind) +
259 thisT()->getCFInstrCost(Instruction::PHI,
CostKind));
262 return AddrExtractCost + MemoryOpCost + PackingCost + ConditionalCost;
270 static bool isSplatMask(
ArrayRef<int> Mask,
unsigned NumSrcElts,
int &Index) {
272 bool IsCompared =
false;
276 return P.index() != Mask.size() - 1 || IsCompared;
277 if (
static_cast<unsigned>(
P.value()) >= NumSrcElts * 2)
280 SplatIdx =
P.value();
281 return P.index() != Mask.size() - 1;
284 return SplatIdx ==
P.value();
303 std::optional<InstructionCost> getMultipleResultIntrinsicVectorLibCallCost(
305 std::optional<unsigned> CallRetElementIndex = {})
const {
313 EVT VT = getTLI()->getValueType(
DL, Ty);
315 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
317 switch (ICA.
getID()) {
318 case Intrinsic::modf:
321 case Intrinsic::sincospi:
324 case Intrinsic::sincos:
332 RTLIB::LibcallImpl LibcallImpl = getTLI()->getLibcallImpl(LC);
333 if (LibcallImpl == RTLIB::Unsupported)
346 VecTy, {},
CostKind, 0,
nullptr, {});
352 if (Idx == CallRetElementIndex)
354 Cost += thisT()->getMemoryOpCost(
355 Instruction::Load, VectorTy,
389 unsigned *
Fast)
const override {
391 return getTLI()->allowsMisalignedMemoryAccesses(
396 const Function *Callee)
const override {
406 return (CallerBits & CalleeBits) == CalleeBits;
432 return getTLI()->getTargetMachine().isNoopAddrSpaceCast(FromAS, ToAS);
436 return getTLI()->getTargetMachine().getAssumedAddrSpace(V);
440 return getTLI()->getTargetMachine().Options.ThreadModel ==
444 std::pair<const Value *, unsigned>
446 return getTLI()->getTargetMachine().getPredicatedAddrSpace(V);
450 Value *NewV)
const override {
455 return getTLI()->isLegalAddImmediate(imm);
459 return getTLI()->isLegalAddScalableImmediate(Imm);
463 return getTLI()->isLegalICmpImmediate(imm);
467 bool HasBaseReg, int64_t Scale,
unsigned AddrSpace,
469 int64_t ScalableOffset = 0)
const override {
476 return getTLI()->isLegalAddressingMode(
DL, AM, Ty, AddrSpace,
I);
480 return getTLI()->getPreferredLargeGEPBaseOffset(MinOffset, MaxOffset);
484 Type *ScalarValTy)
const override {
485 auto &&IsSupportedByTarget = [
this, ScalarMemTy, ScalarValTy](
unsigned VF) {
487 EVT VT = getTLI()->getValueType(
DL, SrcTy);
488 if (getTLI()->isOperationLegal(
ISD::STORE, VT) ||
495 getTLI()->getTypeToTransformTo(ScalarMemTy->
getContext(), VT);
496 return getTLI()->isTruncStoreLegal(LegalizedVT, ValVT);
498 while (VF > 2 && IsSupportedByTarget(VF))
504 EVT VT = getTLI()->getValueType(
DL, Ty,
true);
505 return getTLI()->isIndexedLoadLegal(getISDIndexedMode(M), VT);
509 EVT VT = getTLI()->getValueType(
DL, Ty,
true);
510 return getTLI()->isIndexedStoreLegal(getISDIndexedMode(M), VT);
533 unsigned AddrSpace)
const override {
546 return getTLI()->isTruncateFree(Ty1, Ty2);
550 return getTLI()->isProfitableToHoist(
I);
553 bool useAA()
const override {
return getST()->useAA(); }
556 EVT VT = getTLI()->getValueType(
DL, Ty,
true);
557 return getTLI()->isTypeLegal(VT);
561 EVT ETy = getTLI()->getValueType(
DL, Ty);
562 return getTLI()->getNumRegisters(Ty->getContext(), ETy);
581 unsigned N =
SI.getNumCases();
589 if (
N < 1 || (!IsJTAllowed &&
DL.getIndexSizeInBits(0u) <
N))
592 APInt MaxCaseVal =
SI.case_begin()->getCaseValue()->getValue();
593 APInt MinCaseVal = MaxCaseVal;
594 for (
auto CI :
SI.cases()) {
595 const APInt &CaseVal = CI.getCaseValue()->getValue();
596 if (CaseVal.
sgt(MaxCaseVal))
597 MaxCaseVal = CaseVal;
598 if (CaseVal.
slt(MinCaseVal))
599 MinCaseVal = CaseVal;
603 if (
N <=
DL.getIndexSizeInBits(0u)) {
605 for (
auto I :
SI.cases()) {
616 if (
N < 2 ||
N < TLI->getMinimumJumpTableEntries())
619 (MaxCaseVal - MinCaseVal)
620 .getLimitedValue(std::numeric_limits<uint64_t>::max() - 1) + 1;
623 JumpTableSize =
Range;
681 const Function &Fn)
const override {
685 case Instruction::SDiv:
686 case Instruction::SRem:
687 case Instruction::UDiv:
688 case Instruction::URem: {
740 else if (ST->getSchedModel().LoopMicroOpBufferSize > 0)
741 MaxOps = ST->getSchedModel().LoopMicroOpBufferSize;
758 <<
"advising against unrolling the loop because it "
808 std::optional<Instruction *>
813 std::optional<Value *>
816 bool &KnownBitsComputed)
const override {
825 SimplifyAndSetOp)
const override {
827 IC,
II, DemandedElts, UndefElts, UndefElts2, UndefElts3,
831 std::optional<unsigned>
833 return std::optional<unsigned>(
837 std::optional<unsigned>
839 std::optional<unsigned> TargetResult =
840 getST()->getCacheAssociativity(
static_cast<unsigned>(Level));
849 return getST()->getCacheLineSize();
853 return getST()->getPrefetchDistance();
857 unsigned NumStridedMemAccesses,
858 unsigned NumPrefetches,
859 bool HasCall)
const override {
860 return getST()->getMinPrefetchStride(NumMemAccesses, NumStridedMemAccesses,
861 NumPrefetches, HasCall);
865 return getST()->getMaxPrefetchIterationsAhead();
869 return getST()->enableWritePrefetching();
873 return getST()->shouldPrefetchAddressSpace(AS);
886 std::optional<unsigned>
getMaxVScale()
const override {
return std::nullopt; }
896 bool Insert,
bool Extract,
908 (VL.empty() || VL.size() == Ty->getNumElements()) &&
909 "Vector size mismatch");
913 for (
int i = 0, e = Ty->getNumElements(); i < e; ++i) {
914 if (!DemandedElts[i])
917 Value *InsertedVal = VL.empty() ? nullptr : VL[i];
919 thisT()->getVectorInstrCost(Instruction::InsertElement, Ty,
920 CostKind, i,
nullptr, InsertedVal, VIC);
923 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
924 CostKind, i,
nullptr,
nullptr, VIC);
936 unsigned ScalarOpdIdx)
const override {
941 int OpdIdx)
const override {
947 int RetIdx)
const override {
962 return thisT()->getScalarizationOverhead(Ty, DemandedElts, Insert, Extract,
974 for (
Type *Ty : Tys) {
976 if (!Ty->isIntOrIntVectorTy() && !Ty->isFPOrFPVectorTy() &&
977 !Ty->isPtrOrPtrVectorTy())
1001 filterConstantAndDuplicatedOperands(Args, Tys),
CostKind);
1014 EVT MTy = getTLI()->getValueType(
DL, Ty);
1038 if (MTy == LK.second)
1053 const Instruction *CxtI =
nullptr)
const override {
1055 const TargetLoweringBase *TLI = getTLI();
1056 int ISD = TLI->InstructionOpcodeToISD(Opcode);
1057 assert(ISD &&
"Invalid opcode");
1072 if (TLI->isOperationLegalOrPromote(ISD,
LT.second)) {
1075 return LT.first * OpCost;
1078 if (!TLI->isOperationExpand(ISD,
LT.second)) {
1081 return LT.first * 2 * OpCost;
1093 unsigned DivOpc = IsSigned ? Instruction::SDiv : Instruction::UDiv;
1095 DivOpc, Ty,
CostKind, Opd1Info, Opd2Info);
1097 thisT()->getArithmeticInstrCost(Instruction::Mul, Ty,
CostKind);
1099 thisT()->getArithmeticInstrCost(Instruction::Sub, Ty,
CostKind);
1100 return DivCost + MulCost + SubCost;
1132 int NumDstElts = Mask.size();
1133 int NumSrcElts = SrcTy->getElementCount().getKnownMinValue();
1140 if (isSplatMask(Mask, NumSrcElts, Index))
1143 (Index + NumDstElts) <= NumSrcElts) {
1150 if (
all_of(Mask, [NumSrcElts](
int M) {
return M < NumSrcElts; }))
1155 Mask, NumSrcElts, NumSubElts, Index)) {
1156 if (Index + NumSubElts > NumSrcElts)
1185 const Instruction *CxtI =
nullptr)
const override {
1189 return getBroadcastShuffleOverhead(FVT,
CostKind);
1198 return getPermuteShuffleOverhead(FVT,
CostKind);
1201 return getExtractSubvectorOverhead(SrcTy,
CostKind, Index,
1204 return getInsertSubvectorOverhead(DstTy,
CostKind, Index,
1223 TypeSize SrcSize = SrcLT.second.getSizeInBits();
1224 TypeSize DstSize = DstLT.second.getSizeInBits();
1225 bool IntOrPtrSrc = Src->isIntegerTy() || Src->isPointerTy();
1226 bool IntOrPtrDst = Dst->isIntegerTy() || Dst->isPointerTy();
1231 case Instruction::Trunc:
1236 case Instruction::BitCast:
1239 if (SrcLT.first == DstLT.first && IntOrPtrSrc == IntOrPtrDst &&
1243 case Instruction::FPExt:
1244 if (
I && getTLI()->isExtFree(
I))
1247 case Instruction::ZExt:
1248 if (TLI->
isZExtFree(SrcLT.second, DstLT.second))
1251 case Instruction::SExt:
1252 if (
I && getTLI()->isExtFree(
I))
1264 if (DstLT.first == SrcLT.first &&
1266 LI->getPointerAddressSpace(), LType,
false))
1269 switch (
II->getIntrinsicID()) {
1270 case Intrinsic::masked_load: {
1271 Type *PtrType =
II->getArgOperand(0)->getType();
1274 if (DstLT.first == SrcLT.first &&
1276 ExtVT, LoadVT,
II->getParamAlign(0).valueOrOne(),
1289 case Instruction::AddrSpaceCast:
1291 Dst->getPointerAddressSpace()))
1300 if (SrcLT.first == DstLT.first &&
1305 if (!SrcVTy && !DstVTy) {
1316 if (DstVTy && SrcVTy) {
1318 if (SrcLT.first == DstLT.first && SrcSize == DstSize) {
1321 if (Opcode == Instruction::ZExt)
1325 if (Opcode == Instruction::SExt)
1326 return SrcLT.first * 2;
1332 return SrcLT.first * 1;
1345 if ((SplitSrc || SplitDst) && SrcVTy->getElementCount().isKnownEven() &&
1346 DstVTy->getElementCount().isKnownEven()) {
1349 const T *TTI = thisT();
1352 (!SplitSrc || !SplitDst) ? TTI->getVectorSplitCost() : 0;
1354 (2 * TTI->getCastInstrCost(Opcode, SplitDstTy, SplitSrcTy, CCH,
1366 Opcode, Dst->getScalarType(), Src->getScalarType(), CCH,
CostKind,
I);
1379 if (Opcode == Instruction::BitCast) {
1396 return thisT()->getVectorInstrCost(Instruction::ExtractElement, VecTy,
1397 CostKind, Index,
nullptr,
nullptr) +
1413 const Instruction *
I =
nullptr)
const override {
1414 const TargetLoweringBase *TLI = getTLI();
1415 int ISD = TLI->InstructionOpcodeToISD(Opcode);
1416 assert(ISD &&
"Invalid opcode");
1420 Op1Info, Op2Info,
I);
1424 assert(CondTy &&
"CondTy must exist");
1425 if (CondTy->isVectorTy())
1431 !TLI->isOperationExpand(ISD,
LT.second)) {
1434 return LT.first * 1;
1446 Opcode, ValVTy->getScalarType(), CondTy->
getScalarType(), VecPred,
1462 unsigned Index,
const Value *Op0,
const Value *Op1,
1475 ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
1487 Value *Op0 =
nullptr;
1488 Value *Op1 =
nullptr;
1490 Op0 = IE->getOperand(0);
1491 Op1 = IE->getOperand(1);
1496 return thisT()->getVectorInstrCost(
I.getOpcode(), Val,
CostKind, Index, Op0,
1503 unsigned Index)
const override {
1504 unsigned NewIndex = -1;
1507 "Unexpected index from end of vector");
1508 NewIndex = FVTy->getNumElements() - 1 - Index;
1510 return thisT()->getVectorInstrCost(Opcode, Val,
CostKind, NewIndex,
nullptr,
1516 const APInt &DemandedDstElts,
1519 "Unexpected size of DemandedDstElts.");
1537 Cost += thisT()->getScalarizationOverhead(SrcVT, DemandedSrcElts,
1540 Cost += thisT()->getScalarizationOverhead(ReplicatedVT, DemandedDstElts,
1552 assert(!Src->isVoidTy() &&
"Invalid type");
1569 LT.second.getSizeInBits())) {
1575 if (Opcode == Instruction::Store)
1586 Opcode == Instruction::Store,
CostKind);
1596 bool UseMaskForCond =
false,
bool UseMaskForGaps =
false)
const override {
1604 unsigned NumElts = VT->getNumElements();
1605 assert(Factor > 1 && NumElts % Factor == 0 &&
"Invalid interleave factor");
1607 unsigned NumSubElts = NumElts / Factor;
1612 if (UseMaskForCond || UseMaskForGaps) {
1613 unsigned IID = Opcode == Instruction::Load ? Intrinsic::masked_load
1614 : Intrinsic::masked_store;
1615 Cost = thisT()->getMemIntrinsicInstrCost(
1625 unsigned VecTySize = thisT()->getDataLayout().getTypeStoreSize(VecTy);
1642 if (
Cost.isValid() && VecTySize > VecTyLTSize) {
1645 unsigned NumLegalInsts =
divideCeil(VecTySize, VecTyLTSize);
1649 unsigned NumEltsPerLegalInst =
divideCeil(NumElts, NumLegalInsts);
1652 BitVector UsedInsts(NumLegalInsts,
false);
1653 for (
unsigned Index : Indices)
1654 for (
unsigned Elt = 0; Elt < NumSubElts; ++Elt)
1655 UsedInsts.
set((Index + Elt * Factor) / NumEltsPerLegalInst);
1664 "Interleaved memory op has too many members");
1670 for (
unsigned Index : Indices) {
1671 assert(Index < Factor &&
"Invalid index for interleaved memory op");
1672 for (
unsigned Elm = 0; Elm < NumSubElts; Elm++)
1673 DemandedLoadStoreElts.
setBit(Index + Elm * Factor);
1676 if (Opcode == Instruction::Load) {
1686 SubVT, DemandedAllSubElts,
1688 Cost += Indices.
size() * InsSubCost;
1689 Cost += thisT()->getScalarizationOverhead(VT, DemandedLoadStoreElts,
1707 SubVT, DemandedAllSubElts,
1709 Cost += ExtSubCost * Indices.
size();
1710 Cost += thisT()->getScalarizationOverhead(VT, DemandedLoadStoreElts,
1715 if (!UseMaskForCond)
1720 Cost += thisT()->getReplicationShuffleCost(
1721 I8Type, Factor, NumSubElts,
1722 UseMaskForGaps ? DemandedLoadStoreElts : DemandedAllResultElts,
1730 if (UseMaskForGaps) {
1732 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::And, MaskVT,
1758 std::optional<unsigned> FOp =
1761 if (ICA.
getID() == Intrinsic::vp_load) {
1764 Alignment = VPI->getPointerAlignment().valueOrOne();
1768 AS = PtrTy->getAddressSpace();
1769 return thisT()->getMemoryOpCost(*FOp, ICA.
getReturnType(), Alignment,
1772 if (ICA.
getID() == Intrinsic::vp_store) {
1775 Alignment = VPI->getPointerAlignment().valueOrOne();
1779 AS = PtrTy->getAddressSpace();
1780 return thisT()->getMemoryOpCost(*FOp, ICA.
getArgTypes()[0], Alignment,
1784 ICA.
getID() == Intrinsic::vp_fneg) {
1785 return thisT()->getArithmeticInstrCost(*FOp, ICA.
getReturnType(),
1789 return thisT()->getCastInstrCost(
1798 return thisT()->getCmpSelInstrCost(*FOp, ICA.
getArgTypes()[0],
1804 if (ICA.
getID() == Intrinsic::vp_load_ff) {
1809 Alignment = VPI->getPointerAlignment().valueOrOne();
1810 return thisT()->getMemIntrinsicInstrCost(
1814 if (ICA.
getID() == Intrinsic::vp_scatter) {
1824 Alignment = VPI->getPointerAlignment().valueOrOne();
1826 return thisT()->getMemIntrinsicInstrCost(
1829 VarMask, Alignment,
nullptr),
1832 if (ICA.
getID() == Intrinsic::vp_gather) {
1842 Alignment = VPI->getPointerAlignment().valueOrOne();
1844 return thisT()->getMemIntrinsicInstrCost(
1847 VarMask, Alignment,
nullptr),
1851 if (ICA.
getID() == Intrinsic::vp_select ||
1852 ICA.
getID() == Intrinsic::vp_merge) {
1863 std::optional<Intrinsic::ID> FID =
1867 if (ICA.
getID() == Intrinsic::experimental_vp_reverse)
1868 FID = Intrinsic::vector_reverse;
1874 "Expected VPIntrinsic to have Mask and Vector Length args and "
1886 *FID != Intrinsic::vector_reduce_fadd &&
1887 *FID != Intrinsic::vector_reduce_fmul) {
1895 return thisT()->getIntrinsicInstrCost(NewICA,
CostKind);
1914 case Intrinsic::powi:
1916 bool ShouldOptForSize =
I->getParent()->getParent()->hasOptSize();
1917 if (getTLI()->isBeneficialToExpandPowI(RHSC->getSExtValue(),
1918 ShouldOptForSize)) {
1922 unsigned ActiveBits =
Exponent.getActiveBits();
1923 unsigned PopCount =
Exponent.popcount();
1925 thisT()->getArithmeticInstrCost(
1926 Instruction::FMul, RetTy,
CostKind);
1927 if (RHSC->isNegative())
1928 Cost += thisT()->getArithmeticInstrCost(Instruction::FDiv, RetTy,
1934 case Intrinsic::cttz:
1936 if (RetVF.
isScalar() && getTLI()->isCheapToSpeculateCttz(RetTy))
1940 case Intrinsic::ctlz:
1942 if (RetVF.
isScalar() && getTLI()->isCheapToSpeculateCtlz(RetTy))
1946 case Intrinsic::memcpy:
1947 return thisT()->getMemcpyCost(ICA.
getInst());
1949 case Intrinsic::masked_scatter: {
1950 const Value *Mask = Args[2];
1952 Align Alignment =
I->getParamAlign(1).valueOrOne();
1953 return thisT()->getMemIntrinsicInstrCost(
1959 case Intrinsic::masked_gather: {
1960 const Value *Mask = Args[1];
1962 Align Alignment =
I->getParamAlign(0).valueOrOne();
1963 return thisT()->getMemIntrinsicInstrCost(
1965 VarMask, Alignment,
I),
1968 case Intrinsic::masked_compressstore: {
1970 const Value *Mask = Args[2];
1971 Align Alignment =
I->getParamAlign(1).valueOrOne();
1972 return thisT()->getMemIntrinsicInstrCost(
1977 case Intrinsic::masked_expandload: {
1978 const Value *Mask = Args[1];
1979 Align Alignment =
I->getParamAlign(0).valueOrOne();
1980 return thisT()->getMemIntrinsicInstrCost(
1985 case Intrinsic::experimental_vp_strided_store: {
1987 const Value *Ptr = Args[1];
1988 const Value *Mask = Args[3];
1989 const Value *EVL = Args[4];
1993 I->getParamAlign(1).value_or(thisT()->
DL.getABITypeAlign(EltTy));
1994 return thisT()->getMemIntrinsicInstrCost(
1999 case Intrinsic::experimental_vp_strided_load: {
2000 const Value *Ptr = Args[0];
2001 const Value *Mask = Args[2];
2002 const Value *EVL = Args[3];
2006 I->getParamAlign(0).value_or(thisT()->
DL.getABITypeAlign(EltTy));
2007 return thisT()->getMemIntrinsicInstrCost(
2011 case Intrinsic::stepvector: {
2017 case Intrinsic::vector_extract: {
2028 case Intrinsic::vector_insert: {
2034 return thisT()->getShuffleCost(
2039 case Intrinsic::vector_splice_left:
2040 case Intrinsic::vector_splice_right: {
2044 unsigned Index = COffset->getZExtValue();
2045 return thisT()->getShuffleCost(
2048 IID == Intrinsic::vector_splice_left ? Index : -Index,
2051 case Intrinsic::vector_reduce_add:
2052 case Intrinsic::vector_reduce_mul:
2053 case Intrinsic::vector_reduce_and:
2054 case Intrinsic::vector_reduce_or:
2055 case Intrinsic::vector_reduce_xor:
2056 case Intrinsic::vector_reduce_smax:
2057 case Intrinsic::vector_reduce_smin:
2058 case Intrinsic::vector_reduce_fmax:
2059 case Intrinsic::vector_reduce_fmin:
2060 case Intrinsic::vector_reduce_fmaximum:
2061 case Intrinsic::vector_reduce_fminimum:
2062 case Intrinsic::vector_reduce_umax:
2063 case Intrinsic::vector_reduce_umin: {
2067 case Intrinsic::vector_reduce_fadd:
2068 case Intrinsic::vector_reduce_fmul: {
2070 IID, RetTy, {Args[0]->getType(), Args[1]->getType()}, FMF,
I, 1);
2073 case Intrinsic::fshl:
2074 case Intrinsic::fshr: {
2075 const Value *
X = Args[0];
2076 const Value *
Y = Args[1];
2077 const Value *Z = Args[2];
2086 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy,
CostKind);
2087 Cost += thisT()->getArithmeticInstrCost(
2088 BinaryOperator::Shl, RetTy,
CostKind, OpInfoX,
2090 Cost += thisT()->getArithmeticInstrCost(
2091 BinaryOperator::LShr, RetTy,
CostKind, OpInfoY,
2095 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy,
2100 Cost += thisT()->getArithmeticInstrCost(
2102 : BinaryOperator::URem,
2104 {TTI::OK_UniformConstantValue, TTI::OP_None});
2108 Cost += thisT()->getCmpSelInstrCost(
2111 thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2117 case Intrinsic::experimental_cttz_elts: {
2122 if (!getTLI()->shouldExpandCttzElements(ArgType))
2135 unsigned EltWidth = getTLI()->getBitWidthForCttzElements(
2146 thisT()->getIntrinsicInstrCost(StepVecAttrs,
CostKind);
2149 thisT()->getArithmeticInstrCost(Instruction::Sub, NewVecTy,
CostKind);
2150 Cost += thisT()->getCastInstrCost(Instruction::SExt, NewVecTy,
2154 thisT()->getArithmeticInstrCost(Instruction::And, NewVecTy,
CostKind);
2157 NewEltTy, NewVecTy, FMF,
I, 1);
2158 Cost += thisT()->getTypeBasedIntrinsicInstrCost(ReducAttrs,
CostKind);
2160 thisT()->getArithmeticInstrCost(Instruction::Sub, NewEltTy,
CostKind);
2164 case Intrinsic::get_active_lane_mask:
2165 case Intrinsic::experimental_vector_match:
2166 case Intrinsic::experimental_vector_histogram_add:
2167 case Intrinsic::experimental_vector_histogram_uadd_sat:
2168 case Intrinsic::experimental_vector_histogram_umax:
2169 case Intrinsic::experimental_vector_histogram_umin:
2170 return thisT()->getTypeBasedIntrinsicInstrCost(ICA,
CostKind);
2171 case Intrinsic::modf:
2172 case Intrinsic::sincos:
2173 case Intrinsic::sincospi: {
2174 std::optional<unsigned> CallRetElementIndex;
2177 if (ICA.
getID() == Intrinsic::modf)
2178 CallRetElementIndex = 0;
2180 if (
auto Cost = getMultipleResultIntrinsicVectorLibCallCost(
2181 ICA,
CostKind, CallRetElementIndex))
2186 case Intrinsic::loop_dependence_war_mask:
2187 case Intrinsic::loop_dependence_raw_mask: {
2207 PtrTy->getAddressSpace()));
2208 bool IsReadAfterWrite = IID == Intrinsic::loop_dependence_raw_mask;
2211 thisT()->getArithmeticInstrCost(Instruction::Sub, IntPtrTy,
CostKind);
2212 if (IsReadAfterWrite) {
2215 Cost += thisT()->getIntrinsicInstrCost(AbsAttrs,
CostKind);
2220 Cost += thisT()->getArithmeticInstrCost(Instruction::SDiv, IntPtrTy,
2226 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CondTy,
2228 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, IntPtrTy,
2232 {IntPtrTy, IntPtrTy}, FMF);
2233 Cost += thisT()->getIntrinsicInstrCost(Attrs,
CostKind);
2243 ScalarizationCost = 0;
2252 filterConstantAndDuplicatedOperands(Args, ICA.
getArgTypes()),
2258 return thisT()->getTypeBasedIntrinsicInstrCost(Attrs,
CostKind);
2279 unsigned VecTyIndex = 0;
2280 if (IID == Intrinsic::vector_reduce_fadd ||
2281 IID == Intrinsic::vector_reduce_fmul)
2283 assert(Tys.
size() > VecTyIndex &&
"Unexpected IntrinsicCostAttributes");
2300 SkipScalarizationCost ? ScalarizationCostPassed : 0;
2301 unsigned ScalarCalls = 1;
2302 Type *ScalarRetTy = RetTy;
2304 if (!SkipScalarizationCost)
2307 ScalarCalls = std::max(ScalarCalls,
2312 for (
Type *Ty : Tys) {
2314 if (!SkipScalarizationCost)
2317 ScalarCalls = std::max(ScalarCalls,
2319 Ty = Ty->getScalarType();
2323 if (ScalarCalls == 1)
2328 thisT()->getIntrinsicInstrCost(ScalarAttrs,
CostKind);
2330 return ScalarCalls * ScalarCost + ScalarizationCost;
2334 case Intrinsic::sqrt:
2337 case Intrinsic::sin:
2340 case Intrinsic::cos:
2343 case Intrinsic::sincos:
2346 case Intrinsic::sincospi:
2349 case Intrinsic::modf:
2352 case Intrinsic::tan:
2355 case Intrinsic::asin:
2358 case Intrinsic::acos:
2361 case Intrinsic::atan:
2364 case Intrinsic::atan2:
2367 case Intrinsic::sinh:
2370 case Intrinsic::cosh:
2373 case Intrinsic::tanh:
2376 case Intrinsic::exp:
2379 case Intrinsic::exp2:
2382 case Intrinsic::exp10:
2385 case Intrinsic::log:
2388 case Intrinsic::log10:
2391 case Intrinsic::log2:
2394 case Intrinsic::ldexp:
2397 case Intrinsic::fabs:
2400 case Intrinsic::canonicalize:
2403 case Intrinsic::minnum:
2406 case Intrinsic::maxnum:
2409 case Intrinsic::minimum:
2412 case Intrinsic::maximum:
2415 case Intrinsic::minimumnum:
2418 case Intrinsic::maximumnum:
2421 case Intrinsic::copysign:
2424 case Intrinsic::floor:
2427 case Intrinsic::ceil:
2430 case Intrinsic::trunc:
2433 case Intrinsic::nearbyint:
2436 case Intrinsic::rint:
2439 case Intrinsic::lrint:
2442 case Intrinsic::llrint:
2445 case Intrinsic::round:
2448 case Intrinsic::roundeven:
2451 case Intrinsic::lround:
2454 case Intrinsic::llround:
2457 case Intrinsic::pow:
2460 case Intrinsic::fma:
2463 case Intrinsic::fmuladd:
2466 case Intrinsic::experimental_constrained_fmuladd:
2470 case Intrinsic::lifetime_start:
2471 case Intrinsic::lifetime_end:
2472 case Intrinsic::sideeffect:
2473 case Intrinsic::pseudoprobe:
2474 case Intrinsic::arithmetic_fence:
2476 case Intrinsic::masked_store: {
2478 Align TyAlign = thisT()->DL.getABITypeAlign(Ty);
2479 return thisT()->getMemIntrinsicInstrCost(
2482 case Intrinsic::masked_load: {
2484 Align TyAlign = thisT()->DL.getABITypeAlign(Ty);
2485 return thisT()->getMemIntrinsicInstrCost(
2488 case Intrinsic::experimental_vp_strided_store: {
2490 Align Alignment = thisT()->DL.getABITypeAlign(Ty->getElementType());
2491 return thisT()->getMemIntrinsicInstrCost(
2497 case Intrinsic::experimental_vp_strided_load: {
2499 Align Alignment = thisT()->DL.getABITypeAlign(Ty->getElementType());
2500 return thisT()->getMemIntrinsicInstrCost(
2506 case Intrinsic::vector_reduce_add:
2507 case Intrinsic::vector_reduce_mul:
2508 case Intrinsic::vector_reduce_and:
2509 case Intrinsic::vector_reduce_or:
2510 case Intrinsic::vector_reduce_xor:
2511 return thisT()->getArithmeticReductionCost(
2514 case Intrinsic::vector_reduce_fadd:
2515 case Intrinsic::vector_reduce_fmul:
2516 return thisT()->getArithmeticReductionCost(
2518 case Intrinsic::vector_reduce_smax:
2519 case Intrinsic::vector_reduce_smin:
2520 case Intrinsic::vector_reduce_umax:
2521 case Intrinsic::vector_reduce_umin:
2522 case Intrinsic::vector_reduce_fmax:
2523 case Intrinsic::vector_reduce_fmin:
2524 case Intrinsic::vector_reduce_fmaximum:
2525 case Intrinsic::vector_reduce_fminimum:
2528 case Intrinsic::experimental_vector_match: {
2531 unsigned SearchSize = NeedleTy->getNumElements();
2535 EVT SearchVT = getTLI()->getValueType(
DL, SearchTy);
2536 if (!getTLI()->shouldExpandVectorMatch(SearchVT, SearchSize))
2542 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, NeedleTy,
2544 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, SearchTy,
2548 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, SearchTy, RetTy,
2551 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy,
CostKind);
2554 thisT()->getArithmeticInstrCost(BinaryOperator::And, RetTy,
CostKind);
2557 case Intrinsic::vector_reverse:
2561 case Intrinsic::experimental_vector_histogram_add:
2562 case Intrinsic::experimental_vector_histogram_uadd_sat:
2563 case Intrinsic::experimental_vector_histogram_umax:
2564 case Intrinsic::experimental_vector_histogram_umin: {
2572 Align Alignment = thisT()->DL.getABITypeAlign(EltTy);
2574 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, PtrsTy,
2576 Cost += thisT()->getMemoryOpCost(Instruction::Load, EltTy, Alignment, 0,
2581 case Intrinsic::experimental_vector_histogram_add:
2583 thisT()->getArithmeticInstrCost(Instruction::Add, EltTy,
CostKind);
2585 case Intrinsic::experimental_vector_histogram_uadd_sat: {
2587 Cost += thisT()->getIntrinsicInstrCost(UAddSat,
CostKind);
2590 case Intrinsic::experimental_vector_histogram_umax: {
2595 case Intrinsic::experimental_vector_histogram_umin: {
2601 Cost += thisT()->getMemoryOpCost(Instruction::Store, EltTy, Alignment, 0,
2606 case Intrinsic::get_active_lane_mask: {
2608 EVT ResVT = getTLI()->getValueType(
DL, RetTy,
true);
2609 EVT ArgVT = getTLI()->getValueType(
DL, ArgTy,
true);
2613 if (!getTLI()->shouldExpandGetActiveLaneMask(ResVT, ArgVT))
2622 thisT()->getTypeBasedIntrinsicInstrCost(Attrs,
CostKind);
2623 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, ExpRetTy, RetTy,
2627 case Intrinsic::experimental_memset_pattern:
2632 case Intrinsic::abs:
2635 case Intrinsic::fshl:
2638 case Intrinsic::fshr:
2641 case Intrinsic::smax:
2644 case Intrinsic::smin:
2647 case Intrinsic::umax:
2650 case Intrinsic::umin:
2653 case Intrinsic::sadd_sat:
2656 case Intrinsic::ssub_sat:
2659 case Intrinsic::uadd_sat:
2662 case Intrinsic::usub_sat:
2665 case Intrinsic::smul_fix:
2668 case Intrinsic::umul_fix:
2671 case Intrinsic::sadd_with_overflow:
2674 case Intrinsic::ssub_with_overflow:
2677 case Intrinsic::uadd_with_overflow:
2680 case Intrinsic::usub_with_overflow:
2683 case Intrinsic::smul_with_overflow:
2686 case Intrinsic::umul_with_overflow:
2689 case Intrinsic::fptosi_sat:
2690 case Intrinsic::fptoui_sat: {
2696 if (!SrcLT.first.isValid() || !RetLT.first.isValid())
2702 case Intrinsic::ctpop:
2708 case Intrinsic::ctlz:
2711 case Intrinsic::cttz:
2714 case Intrinsic::bswap:
2717 case Intrinsic::bitreverse:
2720 case Intrinsic::ucmp:
2723 case Intrinsic::scmp:
2726 case Intrinsic::clmul:
2732 Type *LegalizeTy = ST ? ST->getContainedType(0) : RetTy;
2738 if (IID == Intrinsic::fabs && LT.second.isFloatingPoint() &&
2748 return (LT.first * 2);
2750 return (LT.first * 1);
2754 return (LT.first * 2);
2758 case Intrinsic::fmuladd: {
2762 return thisT()->getArithmeticInstrCost(BinaryOperator::FMul, RetTy,
2764 thisT()->getArithmeticInstrCost(BinaryOperator::FAdd, RetTy,
2767 case Intrinsic::experimental_constrained_fmuladd: {
2769 Intrinsic::experimental_constrained_fmul, RetTy, Tys);
2771 Intrinsic::experimental_constrained_fadd, RetTy, Tys);
2772 return thisT()->getIntrinsicInstrCost(FMulAttrs,
CostKind) +
2773 thisT()->getIntrinsicInstrCost(FAddAttrs,
CostKind);
2775 case Intrinsic::smin:
2776 case Intrinsic::smax:
2777 case Intrinsic::umin:
2778 case Intrinsic::umax: {
2781 bool IsUnsigned = IID == Intrinsic::umax || IID == Intrinsic::umin;
2785 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2787 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2791 case Intrinsic::sadd_with_overflow:
2792 case Intrinsic::ssub_with_overflow: {
2795 unsigned Opcode = IID == Intrinsic::sadd_with_overflow
2796 ? BinaryOperator::Add
2797 : BinaryOperator::Sub;
2804 Cost += thisT()->getArithmeticInstrCost(Opcode, SumTy,
CostKind);
2806 2 * thisT()->getCmpSelInstrCost(Instruction::ICmp, SumTy, OverflowTy,
2808 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::Xor, OverflowTy,
2812 case Intrinsic::uadd_with_overflow:
2813 case Intrinsic::usub_with_overflow: {
2816 unsigned Opcode = IID == Intrinsic::uadd_with_overflow
2817 ? BinaryOperator::Add
2818 : BinaryOperator::Sub;
2824 Cost += thisT()->getArithmeticInstrCost(Opcode, SumTy,
CostKind);
2825 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, SumTy,
2829 case Intrinsic::smul_with_overflow:
2830 case Intrinsic::umul_with_overflow: {
2835 bool IsSigned = IID == Intrinsic::smul_with_overflow;
2837 unsigned ExtOp = IsSigned ? Instruction::SExt : Instruction::ZExt;
2841 Cost += 2 * thisT()->getCastInstrCost(ExtOp, ExtTy, MulTy, CCH,
CostKind);
2843 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy,
CostKind);
2844 Cost += 2 * thisT()->getCastInstrCost(Instruction::Trunc, MulTy, ExtTy,
2846 Cost += thisT()->getArithmeticInstrCost(
2851 Cost += thisT()->getArithmeticInstrCost(
2852 Instruction::AShr, MulTy,
CostKind,
2856 Cost += thisT()->getCmpSelInstrCost(
2860 case Intrinsic::sadd_sat:
2861 case Intrinsic::ssub_sat: {
2867 ? Intrinsic::sadd_with_overflow
2868 : Intrinsic::ssub_with_overflow;
2875 nullptr, ScalarizationCostPassed);
2876 Cost += thisT()->getIntrinsicInstrCost(Attrs,
CostKind);
2877 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2879 Cost += 2 * thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy,
2883 case Intrinsic::uadd_sat:
2884 case Intrinsic::usub_sat: {
2889 ? Intrinsic::uadd_with_overflow
2890 : Intrinsic::usub_with_overflow;
2894 nullptr, ScalarizationCostPassed);
2895 Cost += thisT()->getIntrinsicInstrCost(Attrs,
CostKind);
2897 thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2901 case Intrinsic::smul_fix:
2902 case Intrinsic::umul_fix: {
2907 IID == Intrinsic::smul_fix ? Instruction::SExt : Instruction::ZExt;
2911 Cost += 2 * thisT()->getCastInstrCost(ExtOp, ExtTy, RetTy, CCH,
CostKind);
2913 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy,
CostKind);
2914 Cost += 2 * thisT()->getCastInstrCost(Instruction::Trunc, RetTy, ExtTy,
2916 Cost += thisT()->getArithmeticInstrCost(
2919 Cost += thisT()->getArithmeticInstrCost(
2922 Cost += thisT()->getArithmeticInstrCost(Instruction::Or, RetTy,
CostKind);
2925 case Intrinsic::abs: {
2930 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2932 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2935 Cost += thisT()->getArithmeticInstrCost(
2936 BinaryOperator::Sub, RetTy,
CostKind,
2940 case Intrinsic::fshl:
2941 case Intrinsic::fshr: {
2947 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy,
CostKind);
2949 thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy,
CostKind);
2951 thisT()->getArithmeticInstrCost(BinaryOperator::Shl, RetTy,
CostKind);
2952 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::LShr, RetTy,
2957 Cost += thisT()->getArithmeticInstrCost(
2959 : BinaryOperator::URem,
2960 RetTy,
CostKind, {TTI::OK_AnyValue, TTI::OP_None},
2961 {TTI::OK_UniformConstantValue, TTI::OP_None});
2963 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2965 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2969 case Intrinsic::fptosi_sat:
2970 case Intrinsic::fptoui_sat: {
2973 Type *FromTy = Tys[0];
2974 bool IsSigned = IID == Intrinsic::fptosi_sat;
2979 Cost += thisT()->getIntrinsicInstrCost(Attrs1,
CostKind);
2982 Cost += thisT()->getIntrinsicInstrCost(Attrs2,
CostKind);
2983 Cost += thisT()->getCastInstrCost(
2984 IsSigned ? Instruction::FPToSI : Instruction::FPToUI, RetTy, FromTy,
2988 Cost += thisT()->getCmpSelInstrCost(
2990 Cost += thisT()->getCmpSelInstrCost(
2995 case Intrinsic::ucmp:
2996 case Intrinsic::scmp: {
2997 Type *CmpTy = Tys[0];
3000 thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CmpTy, CondTy,
3003 thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CmpTy, CondTy,
3010 Cost += 2 * thisT()->getCmpSelInstrCost(
3011 BinaryOperator::Select, RetTy, CondTy,
3016 2 * thisT()->getCastInstrCost(CastInst::ZExt, RetTy, CondTy,
3018 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy,
3023 case Intrinsic::maximumnum:
3024 case Intrinsic::minimumnum: {
3039 thisT()->getIntrinsicInstrCost(FCanonicalizeAttrs,
CostKind);
3040 return LT.first + FCanonicalizeCost * 2;
3044 case Intrinsic::clmul: {
3048 thisT()->getArithmeticInstrCost(Instruction::And, RetTy,
CostKind) +
3049 thisT()->getArithmeticInstrCost(Instruction::Mul, RetTy,
CostKind) +
3050 thisT()->getArithmeticInstrCost(Instruction::Xor, RetTy,
CostKind);
3052 thisT()->getArithmeticInstrCost(Instruction::And, RetTy,
CostKind) +
3053 thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, RetTy,
3055 thisT()->getCmpSelInstrCost(Instruction::ICmp, RetTy, RetTy,
3057 InstructionCost PerBitCost = std::min(PerBitCostMul, PerBitCostBittest);
3076 if (!SkipScalarizationCost) {
3077 ScalarizationCost = 0;
3078 for (
Type *RetVTy : RetVTys) {
3087 for (
Type *Ty : Tys) {
3088 if (Ty->isVectorTy())
3089 Ty = Ty->getScalarType();
3094 thisT()->getIntrinsicInstrCost(Attrs,
CostKind);
3095 for (
Type *Ty : Tys) {
3100 ScalarCalls = std::max(ScalarCalls,
3104 return ScalarCalls * ScalarCost + ScalarizationCost;
3108 return SingleCallCost;
3115 unsigned Id = MICA.
getID();
3121 case Intrinsic::experimental_vp_strided_load:
3122 case Intrinsic::experimental_vp_strided_store: {
3123 unsigned Opcode = Id == Intrinsic::experimental_vp_strided_load
3125 : Instruction::Store;
3129 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3132 case Intrinsic::masked_scatter:
3133 case Intrinsic::masked_gather:
3134 case Intrinsic::vp_scatter:
3135 case Intrinsic::vp_gather: {
3136 unsigned Opcode = (MICA.
getID() == Intrinsic::masked_gather ||
3137 MICA.
getID() == Intrinsic::vp_gather)
3139 : Instruction::Store;
3141 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3144 case Intrinsic::vp_load:
3145 case Intrinsic::vp_store:
3147 case Intrinsic::masked_load:
3148 case Intrinsic::masked_store: {
3150 Id == Intrinsic::masked_load ? Instruction::Load : Instruction::Store;
3152 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
true,
false,
3155 case Intrinsic::masked_compressstore:
3156 case Intrinsic::masked_expandload: {
3157 unsigned Opcode = MICA.
getID() == Intrinsic::masked_expandload
3159 : Instruction::Store;
3162 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3166 case Intrinsic::vp_load_ff:
3192 if (!LT.first.isValid())
3197 Tp && LT.second.isFixedLengthVector() &&
3202 return divideCeil(FTp->getNumElements(), SubTp->getNumElements());
3204 return LT.first.getValue();
3241 Type *ScalarTy = Ty->getElementType();
3243 if ((Opcode == Instruction::Or || Opcode == Instruction::And) &&
3253 return thisT()->getCastInstrCost(Instruction::BitCast, ValTy, Ty,
3255 thisT()->getCmpSelInstrCost(Instruction::ICmp, ValTy,
3259 unsigned NumReduxLevels =
Log2_32(NumVecElts);
3262 std::pair<InstructionCost, MVT> LT = thisT()->getTypeLegalizationCost(Ty);
3263 unsigned LongVectorCount = 0;
3265 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
3266 while (NumVecElts > MVTLen) {
3269 ShuffleCost += thisT()->getShuffleCost(
3271 ArithCost += thisT()->getArithmeticInstrCost(Opcode, SubTy,
CostKind);
3276 NumReduxLevels -= LongVectorCount;
3288 NumReduxLevels * thisT()->getArithmeticInstrCost(Opcode, Ty,
CostKind);
3289 return ShuffleCost + ArithCost +
3290 thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
3324 return ExtractCost + ArithCost;
3329 std::optional<FastMathFlags> FMF,
3331 assert(Ty &&
"Unknown reduction vector type");
3347 Type *ScalarTy = Ty->getElementType();
3349 unsigned NumReduxLevels =
Log2_32(NumVecElts);
3352 std::pair<InstructionCost, MVT> LT = thisT()->getTypeLegalizationCost(Ty);
3353 unsigned LongVectorCount = 0;
3355 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
3356 while (NumVecElts > MVTLen) {
3360 ShuffleCost += thisT()->getShuffleCost(
3369 NumReduxLevels -= LongVectorCount;
3382 return ShuffleCost + MinMaxCost +
3383 thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
3389 VectorType *Ty, std::optional<FastMathFlags> FMF,
3392 FTy && IsUnsigned && Opcode == Instruction::Add &&
3400 return thisT()->getCastInstrCost(Instruction::BitCast, IntTy, FTy,
3402 thisT()->getIntrinsicInstrCost(ICA,
CostKind);
3408 thisT()->getArithmeticReductionCost(Opcode, ExtTy, FMF,
CostKind);
3410 IsUnsigned ? Instruction::ZExt : Instruction::SExt, ExtTy, Ty,
3413 return RedCost + ExtCost;
3423 assert((RedOpcode == Instruction::Add || RedOpcode == Instruction::Sub) &&
3424 "The reduction opcode is expected to be Add or Sub.");
3427 RedOpcode, ExtTy, std::nullopt,
CostKind);
3429 IsUnsigned ? Instruction::ZExt : Instruction::SExt, ExtTy, Ty,
3433 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy,
CostKind);
3435 return RedCost + MulCost + 2 * ExtCost;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
This file implements the BitVector class.
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
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")))
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
static const Function * getCalledFunction(const Value *V)
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
static unsigned getNumElements(Type *Ty)
static Type * getValueType(Value *V)
Returns the type of the given value/instruction V.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static SymbolRef::Type getType(const Symbol *Sym)
This file describes how to lower LLVM code to machine code.
Class for arbitrary precision integers.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
bool sgt(const APInt &RHS) const
Signed greater than comparison.
unsigned getBitWidth() const
Return the number of bits in the APInt.
bool slt(const APInt &RHS) const
Signed less than comparison.
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
an instruction to allocate memory on the stack
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
ArrayRef< T > drop_front(size_t N=1) const
Drop the first N elements of the array.
size_t size() const
size - Get the array size.
ArrayRef< T > drop_back(size_t N=1) const
Drop the last N elements of the array.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
InstructionCost getFPOpCost(Type *Ty) const override
bool preferToKeepConstantsAttached(const Instruction &Inst, const Function &Fn) 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
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
Try to calculate op costs for min/max reduction operations.
bool isIndexedLoadLegal(TTI::MemIndexedMode M, Type *Ty) const override
InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, ArrayRef< const Value * > Operands, Type *AccessType, TTI::TargetCostKind CostKind) const override
unsigned getCallerAllocaCost(const CallBase *CB, const AllocaInst *AI) const override
InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const override
TypeSize getRegisterBitWidth(TargetTransformInfo::RegisterKind K) const override
bool shouldBuildLookupTables() const override
bool isNoopAddrSpaceCast(unsigned FromAS, unsigned ToAS) const override
bool isProfitableToHoist(Instruction *I) const override
unsigned getNumberOfParts(Type *Tp) const override
unsigned getMinPrefetchStride(unsigned NumMemAccesses, unsigned NumStridedMemAccesses, unsigned NumPrefetches, bool HasCall) const override
bool useAA() const override
unsigned getPrefetchDistance() const override
TTI::ShuffleKind improveShuffleKindFromMask(TTI::ShuffleKind Kind, ArrayRef< int > Mask, VectorType *SrcTy, int &Index, VectorType *&SubTy) const
unsigned getStoreMinimumVF(unsigned VF, Type *ScalarMemTy, Type *ScalarValTy) const override
InstructionCost getOperandsScalarizationOverhead(ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
Estimate the overhead of scalarizing an instruction's operands.
bool isLegalAddScalableImmediate(int64_t Imm) const override
unsigned getAssumedAddrSpace(const Value *V) const override
std::optional< Value * > simplifyDemandedUseBitsIntrinsic(InstCombiner &IC, IntrinsicInst &II, APInt DemandedMask, KnownBits &Known, bool &KnownBitsComputed) const override
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 addrspacesMayAlias(unsigned AS0, unsigned AS1) const override
bool areInlineCompatible(const Function *Caller, const Function *Callee) const override
bool isIndexedStoreLegal(TTI::MemIndexedMode M, Type *Ty) const override
bool haveFastSqrt(Type *Ty) const override
bool collectFlatAddressOperands(SmallVectorImpl< int > &OpIndexes, Intrinsic::ID IID) 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
unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI, unsigned &JumpTableSize, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) const override
Value * rewriteIntrinsicWithAddressSpace(IntrinsicInst *II, Value *OldV, Value *NewV) const override
unsigned adjustInliningThreshold(const CallBase *CB) const override
unsigned getInliningThresholdMultiplier() 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
Estimate the overhead of scalarizing an instruction.
InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, Value *Scalar, ArrayRef< std::tuple< Value *, User *, int > > ScalarUserAndIdx, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
int64_t getPreferredLargeGEPBaseOffset(int64_t MinOffset, int64_t MaxOffset)
bool shouldBuildRelLookupTables() const override
bool isTargetIntrinsicWithStructReturnOverloadAtField(Intrinsic::ID ID, int RetIdx) 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 getVectorInstrCost(const Instruction &I, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const override
InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace) const override
unsigned getEpilogueVectorizationMinVF() const override
InstructionCost getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy, unsigned Index, TTI::TargetCostKind CostKind) const override
InstructionCost getVectorSplitCost() const
bool isTruncateFree(Type *Ty1, Type *Ty2) const override
std::optional< unsigned > getMaxVScale() const override
unsigned getFlatAddressSpace() const override
InstructionCost getCallInstrCost(Function *F, Type *RetTy, ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const override
Compute a cost of the given call instruction.
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const override
InstructionCost getTreeReductionCost(unsigned Opcode, VectorType *Ty, TTI::TargetCostKind CostKind) const
Try to calculate arithmetic and shuffle op costs for reduction intrinsics.
~BasicTTIImplBase() override=default
std::pair< const Value *, unsigned > getPredicatedAddrSpace(const Value *V) const override
unsigned getMaxPrefetchIterationsAhead() const override
void getPeelingPreferences(Loop *L, ScalarEvolution &SE, TTI::PeelingPreferences &PP) const override
InstructionCost getTypeBasedIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const
Get intrinsic cost based on argument types.
bool hasBranchDivergence(const Function *F=nullptr) const override
InstructionCost getOrderedReductionCost(unsigned Opcode, VectorType *Ty, TTI::TargetCostKind CostKind) const
Try to calculate the cost of performing strict (in-order) reductions, which involves doing a sequence...
bool isTargetIntrinsicTriviallyScalarizable(Intrinsic::ID ID) const override
bool preferPredicateOverEpilogue(TailFoldingInfo *TFI) const override
std::optional< unsigned > getCacheAssociativity(TargetTransformInfo::CacheLevel Level) const override
bool shouldPrefetchAddressSpace(unsigned AS) const override
bool allowsMisalignedMemoryAccesses(LLVMContext &Context, unsigned BitWidth, unsigned AddressSpace, Align Alignment, unsigned *Fast) const override
unsigned getCacheLineSize() const override
std::optional< Instruction * > instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const override
bool shouldDropLSRSolutionIfLessProfitable() const override
int getInlinerVectorBonusPercent() 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
Estimate the cost of type-legalization and the legalized type.
bool isLegalAddImmediate(int64_t imm) const override
InstructionCost getReplicationShuffleCost(Type *EltTy, int ReplicationFactor, int VF, const APInt &DemandedDstElts, TTI::TargetCostKind CostKind) const override
unsigned getMaxInterleaveFactor(ElementCount VF) const override
bool isSingleThreaded() const override
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
bool isProfitableLSRChainElement(Instruction *I) const override
bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const override
bool isTargetIntrinsicWithOverloadTypeAtArg(Intrinsic::ID ID, int OpdIdx) const override
bool isTargetIntrinsicWithScalarOpAtArg(Intrinsic::ID ID, unsigned ScalarOpdIdx) const override
std::optional< unsigned > getVScaleForTuning() 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
Get intrinsic cost based on arguments.
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
InstructionCost getAddressComputationCost(Type *PtrTy, ScalarEvolution *, const SCEV *, TTI::TargetCostKind) const override
bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const override
InstructionCost getScalarizationOverhead(VectorType *RetTy, ArrayRef< const Value * > Args, ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const
Estimate the overhead of scalarizing the inputs and outputs of an instruction, with return type RetTy...
TailFoldingStyle getPreferredTailFoldingStyle() const override
std::optional< unsigned > getCacheSize(TargetTransformInfo::CacheLevel Level) const override
bool isLegalICmpImmediate(int64_t imm) const override
bool isHardwareLoopProfitable(Loop *L, ScalarEvolution &SE, AssumptionCache &AC, TargetLibraryInfo *LibInfo, HardwareLoopInfo &HWLoopInfo) const override
unsigned getRegUsageForType(Type *Ty) const override
InstructionCost getMemIntrinsicInstrCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const override
Get memory intrinsic cost based on arguments.
BasicTTIImplBase(const TargetMachine *TM, const DataLayout &DL)
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
bool enableWritePrefetching() const override
bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const override
InstructionCost getScalarizationOverhead(VectorType *InTy, bool Insert, bool Extract, TTI::TargetCostKind CostKind, bool ForPoisonSrc=true, ArrayRef< Value * > VL={}, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
Helper wrapper for the DemandedElts variant of getScalarizationOverhead.
bool isNumRegsMajorCostOfLSR() const override
BasicTTIImpl(const TargetMachine *TM, const Function &F)
size_type count() const
count - Returns the number of bits which are set.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
static Type * makeCmpResultType(Type *opnd_type)
Create a result type for fcmp/icmp.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLE
signed less or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
static CmpInst::Predicate getGTPredicate(Intrinsic::ID ID)
static CmpInst::Predicate getLTPredicate(Intrinsic::ID ID)
This class represents a range of values.
A parsed version of the target data layout string in and methods for querying it.
constexpr bool isVector() const
One or more elements.
static constexpr ElementCount getFixed(ScalarTy MinVal)
constexpr bool isScalar() const
Exactly one element.
Convenience struct for specifying and reasoning about fast-math flags.
Container class for subtarget features.
Class to represent fixed width SIMD vectors.
unsigned getNumElements() const
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
AttributeList getAttributes() const
Return the attribute list for this Function.
The core instruction combiner logic.
static InstructionCost getInvalid(CostType Val=0)
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
FastMathFlags getFlags() const
const SmallVectorImpl< Type * > & getArgTypes() const
Type * getReturnType() const
bool skipScalarizationCost() const
const SmallVectorImpl< const Value * > & getArgs() const
InstructionCost getScalarizationCost() const
const IntrinsicInst * getInst() const
Intrinsic::ID getID() const
bool isTypeBasedOnly() const
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
Represents a single loop in the control flow graph.
const FeatureBitset & getFeatureBits() const
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
Information for memory intrinsic cost model.
Align getAlignment() const
Type * getDataType() const
bool getVariableMask() const
Intrinsic::ID getID() const
static LLVM_ABI PointerType * get(Type *ElementType, unsigned AddressSpace)
This constructs a pointer to an object of the specified type in a numbered address space.
Analysis providing profile information.
This class represents an analyzed expression in the program.
The main scalar evolution driver.
static LLVM_ABI bool isZeroEltSplatMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses all elements with the same value as the first element of exa...
static LLVM_ABI bool isSpliceMask(ArrayRef< int > Mask, int NumSrcElts, int &Index)
Return true if this shuffle mask is a splice mask, concatenating the two inputs together and then ext...
static LLVM_ABI bool isSelectMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask chooses elements from its source vectors without lane crossings.
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 isReverseMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask swaps the order of elements from exactly one source vector.
static LLVM_ABI bool isTransposeMask(ArrayRef< int > Mask, int NumSrcElts)
Return true if this shuffle mask is a transpose mask.
static LLVM_ABI bool isInsertSubvectorMask(ArrayRef< int > Mask, int NumSrcElts, int &NumSubElts, int &Index)
Return true if this shuffle mask is an insert subvector mask.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void 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)
static LLVM_ABI StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Provides information about what library functions are available for the current target.
This base class for TargetLowering contains the SelectionDAG-independent parts that can be used from ...
bool isOperationExpand(unsigned Op, EVT VT) const
Return true if the specified operation is illegal on this target or unlikely to be made legal with cu...
int InstructionOpcodeToISD(unsigned Opcode) const
Get the ISD node that corresponds to the Instruction class opcode.
EVT getValueType(const DataLayout &DL, Type *Ty, bool AllowUnknown=false) const
Return the EVT corresponding to this LLVM type.
LegalizeAction
This enum indicates whether operations are valid for a target, and if not, what action should be used...
virtual bool preferSelectsOverBooleanArithmetic(EVT VT) const
Should we prefer selects to doing arithmetic on boolean types.
virtual bool isZExtFree(Type *FromTy, Type *ToTy) const
Return true if any actual instruction that defines a value of type FromTy implicitly zero-extends the...
@ TypeScalarizeScalableVector
virtual bool isSuitableForJumpTable(const SwitchInst *SI, uint64_t NumCases, uint64_t Range, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) const
Return true if lowering to a jump table is suitable for a set of case clusters which may contain NumC...
virtual bool areJTsAllowed(const Function *Fn) const
Return true if lowering to a jump table is allowed.
bool isOperationLegalOrPromote(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal using promotion.
bool isOperationCustom(unsigned Op, EVT VT) const
Return true if the operation uses custom lowering, regardless of whether the type is legal or not.
bool isSuitableForBitTests(const DenseMap< const BasicBlock *, unsigned int > &DestCmps, const APInt &Low, const APInt &High, const DataLayout &DL) const
Return true if lowering to a bit test is suitable for a set of case clusters which contains NumDests ...
virtual bool isTruncateFree(Type *FromTy, Type *ToTy) const
Return true if it's free to truncate a value of type FromTy to type ToTy.
bool isTypeLegal(EVT VT) const
Return true if the target has native support for the specified value type.
virtual bool isFreeAddrSpaceCast(unsigned SrcAS, unsigned DestAS) const
Returns true if a cast from SrcAS to DestAS is "cheap", such that e.g.
bool isOperationLegal(unsigned Op, EVT VT) const
Return true if the specified operation is legal on this target.
LegalizeAction getTruncStoreAction(EVT ValVT, EVT MemVT) const
Return how this store with truncation should be treated: either it is legal, needs to be promoted to ...
bool isOperationLegalOrCustom(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal with custom lower...
LegalizeAction getLoadAction(EVT ValVT, EVT MemVT, Align Alignment, unsigned AddrSpace, unsigned ExtType, bool Atomic) const
Return how this load with extension should be treated: either it is legal, needs to be promoted to a ...
LegalizeTypeAction getTypeAction(LLVMContext &Context, EVT VT) const
Return how we should legalize values of this type, either it is already legal (return 'Legal') or we ...
bool isLoadLegal(EVT ValVT, EVT MemVT, Align Alignment, unsigned AddrSpace, unsigned ExtType, bool Atomic) const
Return true if the specified load with extension is legal on this target.
virtual bool isFAbsFree(EVT VT) const
Return true if an fabs operation is free to the point where it is never worthwhile to replace it with...
bool isOperationLegalOrCustomOrPromote(unsigned Op, EVT VT, bool LegalOnly=false) const
Return true if the specified operation is legal on this target or can be made legal with custom lower...
std::pair< LegalizeTypeAction, EVT > LegalizeKind
LegalizeKind holds the legalization kind that needs to happen to EVT in order to type-legalize it.
Primary interface to the complete machine description for the target machine.
bool isPositionIndependent() const
const Triple & getTargetTriple() const
virtual const TargetSubtargetInfo * getSubtargetImpl(const Function &) const
Virtual method implemented by subclasses that returns a reference to that target's TargetSubtargetInf...
CodeModel::Model getCodeModel() const
Returns the code model.
TargetSubtargetInfo - Generic base class for all target subtargets.
Triple - Helper class for working with autoconf configuration names.
ArchType getArch() const
Get the parsed architecture type of this triple.
LLVM_ABI bool isArch64Bit() const
Test whether the architecture is 64-bit.
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
static constexpr TypeSize getFixed(ScalarTy ExactSize)
The instances of the Type class are immutable: once they are created, they are never changed.
bool isVectorTy() const
True if this is an instance of VectorType.
bool isPointerTy() const
True if this is an instance of PointerType.
LLVM_ABI unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector 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 Type * getWithNewBitWidth(unsigned NewBitWidth) const
Given an integer or vector type, change the lane bitwidth to NewBitwidth, whilst keeping the old numb...
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.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Type * getContainedType(unsigned i) const
This method is used to implement the type iterator (defined at the end of the file).
bool isVoidTy() const
Return true if this is 'void'.
Value * getOperand(unsigned i) const
static LLVM_ABI bool isVPBinOp(Intrinsic::ID ID)
static LLVM_ABI bool isVPCast(Intrinsic::ID ID)
static LLVM_ABI bool isVPCmp(Intrinsic::ID ID)
static LLVM_ABI std::optional< unsigned > getFunctionalOpcodeForVP(Intrinsic::ID ID)
static LLVM_ABI std::optional< Intrinsic::ID > getFunctionalIntrinsicIDForVP(Intrinsic::ID ID)
static LLVM_ABI bool isVPIntrinsic(Intrinsic::ID)
static LLVM_ABI bool isVPReduction(Intrinsic::ID ID)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
Base class of all SIMD vector types.
static VectorType * getHalfElementsVectorType(VectorType *VTy)
This static method returns a VectorType with half as many elements as the input type and the same ele...
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
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
LLVM_ABI APInt ScaleBitMask(const APInt &A, unsigned NewBitWidth, bool MatchAllBits=false)
Splat/Merge neighboring bits to widen/narrow the bitmask represented by.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
@ Fast
Attempts to make calls as fast as possible (e.g.
@ C
The default llvm calling convention, compatible with C.
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
@ BSWAP
Byte Swap and Counting operators.
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
@ FMODF
FMODF - Decomposes the operand into integral and fractional parts, each having the same type and sign...
@ FATAN2
FATAN2 - atan2, inspired by libm.
@ FSINCOSPI
FSINCOSPI - Compute both the sine and cosine times pi more accurately than FSINCOS(pi*x),...
@ FADD
Simple binary floating point operators.
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
@ CLMUL
Carry-less multiplication operations.
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ SSUBO
Same for subtraction.
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
@ FMINNUM_IEEE
FMINNUM_IEEE/FMAXNUM_IEEE - Perform floating-point minimumNumber or maximumNumber on two values,...
@ FMINNUM
FMINNUM/FMAXNUM - Perform floating-point minimum maximum on two values, following IEEE-754 definition...
@ SMULO
Same for multiplication.
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
@ FMINIMUM
FMINIMUM/FMAXIMUM - NaN-propagating minimum/maximum that also treat -0.0 as less than 0....
@ SCMP
[US]CMP - 3-way comparison of signed or unsigned integers.
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
@ FMINIMUMNUM
FMINIMUMNUM/FMAXIMUMNUM - minimumnum/maximumnum that is same with FMINNUM_IEEE and FMAXNUM_IEEE besid...
MemIndexedMode
MemIndexedMode enum - This enum defines the load / store indexed addressing modes.
LLVM_ABI bool isTargetIntrinsic(ID IID)
isTargetIntrinsic - Returns true if IID is an intrinsic specific to a certain target.
LLVM_ABI Libcall getSINCOSPI(EVT RetVT)
getSINCOSPI - Return the SINCOSPI_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getMODF(EVT VT)
getMODF - Return the MODF_* value for the given types, or UNKNOWN_LIBCALL if there is none.
LLVM_ABI Libcall getSINCOS(EVT RetVT)
getSINCOS - Return the SINCOS_* value for the given types, or UNKNOWN_LIBCALL if there is none.
DiagnosticInfoOptimizationBase::Argument NV
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI Intrinsic::ID getMinMaxReductionIntrinsicOp(Intrinsic::ID RdxID)
Returns the min/max intrinsic used when expanding a min/max reduction.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Type * toScalarizedTy(Type *Ty)
A helper for converting vectorized types to scalarized (non-vector) types.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
LLVM_ABI unsigned getArithmeticReductionInstruction(Intrinsic::ID RdxID)
Returns the arithmetic instruction opcode used when expanding a reduction.
bool isVectorizedTy(Type *Ty)
Returns true if Ty is a vector type or a struct of vector types where all vector types share the same...
detail::concat_range< ValueT, RangeTs... > concat(RangeTs &&...Ranges)
Returns a concatenated range across two or more ranges.
auto dyn_cast_or_null(const Y &Val)
constexpr bool has_single_bit(T Value) noexcept
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
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.
ElementCount getVectorizedTypeVF(Type *Ty)
Returns the number of vector elements for a vectorized type.
LLVM_ABI ConstantRange getVScaleRange(const Function *F, unsigned BitWidth)
Determine the possible constant range of vscale with the given bit width, based on the vscale_range f...
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
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
FunctionAddr VTableAddr uintptr_t uintptr_t Data
@ UMin
Unsigned integer min implemented in terms of select(cmp()).
@ UMax
Unsigned integer max implemented in terms of select(cmp()).
DWARFExpression::Operation Op
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
ArrayRef< Type * > getContainedTypes(Type *const &Ty)
Returns the types contained in Ty.
cl::opt< unsigned > PartialUnrollingThreshold
LLVM_ABI bool isVectorizedStructTy(StructType *StructTy)
Returns true if StructTy is an unpacked literal struct where all elements are vectors of matching ele...
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).
ElementCount getVectorElementCount() 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.
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
LLVM_ABI Type * getTypeForEVT(LLVMContext &Context) const
This method returns an LLVM type corresponding to the specified EVT.
Attributes of a target dependent hardware loop.
static bool hasVectorMaskArgument(RTLIB::LibcallImpl Impl)
Returns true if the function has a vector mask argument, which is assumed to be the last argument.
This represents an addressing mode of: BaseGV + BaseOffs + BaseReg + Scale*ScaleReg + ScalableOffset*...