LLVM 22.0.0git
BasicTTIImpl.h
Go to the documentation of this file.
1//===- BasicTTIImpl.h -------------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10/// This file provides a helper that implements much of the TTI interface in
11/// terms of the target-independent code generator and TargetLowering
12/// interfaces.
13//
14//===----------------------------------------------------------------------===//
15
16#ifndef LLVM_CODEGEN_BASICTTIIMPL_H
17#define LLVM_CODEGEN_BASICTTIIMPL_H
18
19#include "llvm/ADT/APInt.h"
20#include "llvm/ADT/BitVector.h"
21#include "llvm/ADT/STLExtras.h"
35#include "llvm/IR/BasicBlock.h"
36#include "llvm/IR/Constant.h"
37#include "llvm/IR/Constants.h"
38#include "llvm/IR/DataLayout.h"
40#include "llvm/IR/InstrTypes.h"
41#include "llvm/IR/Instruction.h"
43#include "llvm/IR/Intrinsics.h"
44#include "llvm/IR/Operator.h"
45#include "llvm/IR/Type.h"
46#include "llvm/IR/Value.h"
54#include <algorithm>
55#include <cassert>
56#include <cstdint>
57#include <limits>
58#include <optional>
59#include <utility>
60
61namespace llvm {
62
63class Function;
64class GlobalValue;
65class LLVMContext;
66class ScalarEvolution;
67class SCEV;
68class TargetMachine;
69
71
72/// Base class which can be used to help build a TTI implementation.
73///
74/// This class provides as much implementation of the TTI interface as is
75/// possible using the target independent parts of the code generator.
76///
77/// In order to subclass it, your class must implement a getST() method to
78/// return the subtarget, and a getTLI() method to return the target lowering.
79/// We need these methods implemented in the derived class so that this class
80/// doesn't have to duplicate storage for them.
81template <typename T>
83private:
85 using TTI = TargetTransformInfo;
86
87 /// Helper function to access this as a T.
88 const T *thisT() const { return static_cast<const T *>(this); }
89
90 /// Estimate a cost of Broadcast as an extract and sequence of insert
91 /// operations.
93 getBroadcastShuffleOverhead(FixedVectorType *VTy,
96 // Broadcast cost is equal to the cost of extracting the zero'th element
97 // plus the cost of inserting it into every element of the result vector.
98 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
99 CostKind, 0, nullptr, nullptr);
100
101 for (int i = 0, e = VTy->getNumElements(); i < e; ++i) {
102 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, VTy,
103 CostKind, i, nullptr, nullptr);
104 }
105 return Cost;
106 }
107
108 /// Estimate a cost of shuffle as a sequence of extract and insert
109 /// operations.
111 getPermuteShuffleOverhead(FixedVectorType *VTy,
114 // Shuffle cost is equal to the cost of extracting element from its argument
115 // plus the cost of inserting them onto the result vector.
116
117 // e.g. <4 x float> has a mask of <0,5,2,7> i.e we need to extract from
118 // index 0 of first vector, index 1 of second vector,index 2 of first
119 // vector and finally index 3 of second vector and insert them at index
120 // <0,1,2,3> of result vector.
121 for (int i = 0, e = VTy->getNumElements(); i < e; ++i) {
122 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, VTy,
123 CostKind, i, nullptr, nullptr);
124 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
125 CostKind, i, nullptr, nullptr);
126 }
127 return Cost;
128 }
129
130 /// Estimate a cost of subvector extraction as a sequence of extract and
131 /// insert operations.
132 InstructionCost getExtractSubvectorOverhead(VectorType *VTy,
134 int Index,
135 FixedVectorType *SubVTy) const {
136 assert(VTy && SubVTy &&
137 "Can only extract subvectors from vectors");
138 int NumSubElts = SubVTy->getNumElements();
140 (Index + NumSubElts) <=
142 "SK_ExtractSubvector index out of range");
143
145 // Subvector extraction cost is equal to the cost of extracting element from
146 // the source type plus the cost of inserting them into the result vector
147 // type.
148 for (int i = 0; i != NumSubElts; ++i) {
149 Cost +=
150 thisT()->getVectorInstrCost(Instruction::ExtractElement, VTy,
151 CostKind, i + Index, nullptr, nullptr);
152 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, SubVTy,
153 CostKind, i, nullptr, nullptr);
154 }
155 return Cost;
156 }
157
158 /// Estimate a cost of subvector insertion as a sequence of extract and
159 /// insert operations.
160 InstructionCost getInsertSubvectorOverhead(VectorType *VTy,
162 int Index,
163 FixedVectorType *SubVTy) const {
164 assert(VTy && SubVTy &&
165 "Can only insert subvectors into vectors");
166 int NumSubElts = SubVTy->getNumElements();
168 (Index + NumSubElts) <=
170 "SK_InsertSubvector index out of range");
171
173 // Subvector insertion cost is equal to the cost of extracting element from
174 // the source type plus the cost of inserting them into the result vector
175 // type.
176 for (int i = 0; i != NumSubElts; ++i) {
177 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, SubVTy,
178 CostKind, i, nullptr, nullptr);
179 Cost +=
180 thisT()->getVectorInstrCost(Instruction::InsertElement, VTy, CostKind,
181 i + Index, nullptr, nullptr);
182 }
183 return Cost;
184 }
185
186 /// Local query method delegates up to T which *must* implement this!
187 const TargetSubtargetInfo *getST() const {
188 return static_cast<const T *>(this)->getST();
189 }
190
191 /// Local query method delegates up to T which *must* implement this!
192 const TargetLoweringBase *getTLI() const {
193 return static_cast<const T *>(this)->getTLI();
194 }
195
196 static ISD::MemIndexedMode getISDIndexedMode(TTI::MemIndexedMode M) {
197 switch (M) {
199 return ISD::UNINDEXED;
200 case TTI::MIM_PreInc:
201 return ISD::PRE_INC;
202 case TTI::MIM_PreDec:
203 return ISD::PRE_DEC;
204 case TTI::MIM_PostInc:
205 return ISD::POST_INC;
206 case TTI::MIM_PostDec:
207 return ISD::POST_DEC;
208 }
209 llvm_unreachable("Unexpected MemIndexedMode");
210 }
211
212 InstructionCost getCommonMaskedMemoryOpCost(unsigned Opcode, Type *DataTy,
213 Align Alignment,
214 bool VariableMask,
215 bool IsGatherScatter,
217 unsigned AddressSpace = 0) const {
218 // We cannot scalarize scalable vectors, so return Invalid.
219 if (isa<ScalableVectorType>(DataTy))
221
222 auto *VT = cast<FixedVectorType>(DataTy);
223 unsigned VF = VT->getNumElements();
224
225 // Assume the target does not have support for gather/scatter operations
226 // and provide a rough estimate.
227 //
228 // First, compute the cost of the individual memory operations.
229 InstructionCost AddrExtractCost =
230 IsGatherScatter ? getScalarizationOverhead(
232 PointerType::get(VT->getContext(), 0), VF),
233 /*Insert=*/false, /*Extract=*/true, CostKind)
234 : 0;
235
236 // The cost of the scalar loads/stores.
237 InstructionCost MemoryOpCost =
238 VF * thisT()->getMemoryOpCost(Opcode, VT->getElementType(), Alignment,
240
241 // Next, compute the cost of packing the result in a vector.
242 InstructionCost PackingCost =
243 getScalarizationOverhead(VT, Opcode != Instruction::Store,
244 Opcode == Instruction::Store, CostKind);
245
246 InstructionCost ConditionalCost = 0;
247 if (VariableMask) {
248 // Compute the cost of conditionally executing the memory operations with
249 // variable masks. This includes extracting the individual conditions, a
250 // branches and PHIs to combine the results.
251 // NOTE: Estimating the cost of conditionally executing the memory
252 // operations accurately is quite difficult and the current solution
253 // provides a very rough estimate only.
254 ConditionalCost =
257 /*Insert=*/false, /*Extract=*/true, CostKind) +
258 VF * (thisT()->getCFInstrCost(Instruction::Br, CostKind) +
259 thisT()->getCFInstrCost(Instruction::PHI, CostKind));
260 }
261
262 return AddrExtractCost + MemoryOpCost + PackingCost + ConditionalCost;
263 }
264
265 /// Checks if the provided mask \p is a splat mask, i.e. it contains only -1
266 /// or same non -1 index value and this index value contained at least twice.
267 /// So, mask <0, -1,-1, -1> is not considered splat (it is just identity),
268 /// same for <-1, 0, -1, -1> (just a slide), while <2, -1, 2, -1> is a splat
269 /// with \p Index=2.
270 static bool isSplatMask(ArrayRef<int> Mask, unsigned NumSrcElts, int &Index) {
271 // Check that the broadcast index meets at least twice.
272 bool IsCompared = false;
273 if (int SplatIdx = PoisonMaskElem;
274 all_of(enumerate(Mask), [&](const auto &P) {
275 if (P.value() == PoisonMaskElem)
276 return P.index() != Mask.size() - 1 || IsCompared;
277 if (static_cast<unsigned>(P.value()) >= NumSrcElts * 2)
278 return false;
279 if (SplatIdx == PoisonMaskElem) {
280 SplatIdx = P.value();
281 return P.index() != Mask.size() - 1;
282 }
283 IsCompared = true;
284 return SplatIdx == P.value();
285 })) {
286 Index = SplatIdx;
287 return true;
288 }
289 return false;
290 }
291
292 /// Several intrinsics that return structs (including llvm.sincos[pi] and
293 /// llvm.modf) can be lowered to a vector library call (for certain VFs). The
294 /// vector library functions correspond to the scalar calls (e.g. sincos or
295 /// modf), which unlike the intrinsic return values via output pointers. This
296 /// helper checks if a vector call exists for the given intrinsic, and returns
297 /// the cost, which includes the cost of the mask (if required), and the loads
298 /// for values returned via output pointers. \p LC is the scalar libcall and
299 /// \p CallRetElementIndex (optional) is the struct element which is mapped to
300 /// the call return value. If std::nullopt is returned, then no vector library
301 /// call is available, so the intrinsic should be assigned the default cost
302 /// (e.g. scalarization).
303 std::optional<InstructionCost> getMultipleResultIntrinsicVectorLibCallCost(
305 std::optional<unsigned> CallRetElementIndex = {}) const {
306 Type *RetTy = ICA.getReturnType();
307 // Vector variants of the intrinsic can be mapped to a vector library call.
308 auto const *LibInfo = ICA.getLibInfo();
309 if (!LibInfo || !isa<StructType>(RetTy) ||
311 return std::nullopt;
312
313 Type *Ty = getContainedTypes(RetTy).front();
314 EVT VT = getTLI()->getValueType(DL, Ty);
315
316 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
317
318 switch (ICA.getID()) {
319 case Intrinsic::modf:
320 LC = RTLIB::getMODF(VT);
321 break;
322 case Intrinsic::sincospi:
323 LC = RTLIB::getSINCOSPI(VT);
324 break;
325 case Intrinsic::sincos:
326 LC = RTLIB::getSINCOS(VT);
327 break;
328 default:
329 return std::nullopt;
330 }
331
332 // Find associated libcall.
333 RTLIB::LibcallImpl LibcallImpl = getTLI()->getLibcallImpl(LC);
334 if (LibcallImpl == RTLIB::Unsupported)
335 return std::nullopt;
336
337 LLVMContext &Ctx = RetTy->getContext();
338
339 // Cost the call + mask.
340 auto Cost =
341 thisT()->getCallInstrCost(nullptr, RetTy, ICA.getArgTypes(), CostKind);
342
345 auto VecTy = VectorType::get(IntegerType::getInt1Ty(Ctx), VF);
346 Cost += thisT()->getShuffleCost(TargetTransformInfo::SK_Broadcast, VecTy,
347 VecTy, {}, CostKind, 0, nullptr, {});
348 }
349
350 // Lowering to a library call (with output pointers) may require us to emit
351 // reloads for the results.
352 for (auto [Idx, VectorTy] : enumerate(getContainedTypes(RetTy))) {
353 if (Idx == CallRetElementIndex)
354 continue;
355 Cost += thisT()->getMemoryOpCost(
356 Instruction::Load, VectorTy,
357 thisT()->getDataLayout().getABITypeAlign(VectorTy), 0, CostKind);
358 }
359 return Cost;
360 }
361
362 /// Filter out constant and duplicated entries in \p Ops and return a vector
363 /// containing the types from \p Tys corresponding to the remaining operands.
365 filterConstantAndDuplicatedOperands(ArrayRef<const Value *> Ops,
366 ArrayRef<Type *> Tys) {
367 SmallPtrSet<const Value *, 4> UniqueOperands;
368 SmallVector<Type *, 4> FilteredTys;
369 for (const auto &[Op, Ty] : zip_equal(Ops, Tys)) {
370 if (isa<Constant>(Op) || !UniqueOperands.insert(Op).second)
371 continue;
372 FilteredTys.push_back(Ty);
373 }
374 return FilteredTys;
375 }
376
377protected:
378 explicit BasicTTIImplBase(const TargetMachine *TM, const DataLayout &DL)
379 : BaseT(DL) {}
380 ~BasicTTIImplBase() override = default;
381
383
384public:
385 /// \name Scalar TTI Implementations
386 /// @{
388 unsigned AddressSpace, Align Alignment,
389 unsigned *Fast) const override {
390 EVT E = EVT::getIntegerVT(Context, BitWidth);
391 return getTLI()->allowsMisalignedMemoryAccesses(
393 }
394
395 bool areInlineCompatible(const Function *Caller,
396 const Function *Callee) const override {
397 const TargetMachine &TM = getTLI()->getTargetMachine();
398
399 const FeatureBitset &CallerBits =
400 TM.getSubtargetImpl(*Caller)->getFeatureBits();
401 const FeatureBitset &CalleeBits =
402 TM.getSubtargetImpl(*Callee)->getFeatureBits();
403
404 // Inline a callee if its target-features are a subset of the callers
405 // target-features.
406 return (CallerBits & CalleeBits) == CalleeBits;
407 }
408
409 bool hasBranchDivergence(const Function *F = nullptr) const override {
410 return false;
411 }
412
413 bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const override {
414 return false;
415 }
416
417 bool addrspacesMayAlias(unsigned AS0, unsigned AS1) const override {
418 return true;
419 }
420
421 unsigned getFlatAddressSpace() const override {
422 // Return an invalid address space.
423 return -1;
424 }
425
427 Intrinsic::ID IID) const override {
428 return false;
429 }
430
431 bool isNoopAddrSpaceCast(unsigned FromAS, unsigned ToAS) const override {
432 return getTLI()->getTargetMachine().isNoopAddrSpaceCast(FromAS, ToAS);
433 }
434
435 unsigned getAssumedAddrSpace(const Value *V) const override {
436 return getTLI()->getTargetMachine().getAssumedAddrSpace(V);
437 }
438
439 bool isSingleThreaded() const override {
440 return getTLI()->getTargetMachine().Options.ThreadModel ==
442 }
443
444 std::pair<const Value *, unsigned>
445 getPredicatedAddrSpace(const Value *V) const override {
446 return getTLI()->getTargetMachine().getPredicatedAddrSpace(V);
447 }
448
450 Value *NewV) const override {
451 return nullptr;
452 }
453
454 bool isLegalAddImmediate(int64_t imm) const override {
455 return getTLI()->isLegalAddImmediate(imm);
456 }
457
458 bool isLegalAddScalableImmediate(int64_t Imm) const override {
459 return getTLI()->isLegalAddScalableImmediate(Imm);
460 }
461
462 bool isLegalICmpImmediate(int64_t imm) const override {
463 return getTLI()->isLegalICmpImmediate(imm);
464 }
465
466 bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset,
467 bool HasBaseReg, int64_t Scale, unsigned AddrSpace,
468 Instruction *I = nullptr,
469 int64_t ScalableOffset = 0) const override {
471 AM.BaseGV = BaseGV;
472 AM.BaseOffs = BaseOffset;
473 AM.HasBaseReg = HasBaseReg;
474 AM.Scale = Scale;
475 AM.ScalableOffset = ScalableOffset;
476 return getTLI()->isLegalAddressingMode(DL, AM, Ty, AddrSpace, I);
477 }
478
479 int64_t getPreferredLargeGEPBaseOffset(int64_t MinOffset, int64_t MaxOffset) {
480 return getTLI()->getPreferredLargeGEPBaseOffset(MinOffset, MaxOffset);
481 }
482
483 unsigned getStoreMinimumVF(unsigned VF, Type *ScalarMemTy,
484 Type *ScalarValTy) const override {
485 auto &&IsSupportedByTarget = [this, ScalarMemTy, ScalarValTy](unsigned VF) {
486 auto *SrcTy = FixedVectorType::get(ScalarMemTy, VF / 2);
487 EVT VT = getTLI()->getValueType(DL, SrcTy);
488 if (getTLI()->isOperationLegal(ISD::STORE, VT) ||
489 getTLI()->isOperationCustom(ISD::STORE, VT))
490 return true;
491
492 EVT ValVT =
493 getTLI()->getValueType(DL, FixedVectorType::get(ScalarValTy, VF / 2));
494 EVT LegalizedVT =
495 getTLI()->getTypeToTransformTo(ScalarMemTy->getContext(), VT);
496 return getTLI()->isTruncStoreLegal(LegalizedVT, ValVT);
497 };
498 while (VF > 2 && IsSupportedByTarget(VF))
499 VF /= 2;
500 return VF;
501 }
502
503 bool isIndexedLoadLegal(TTI::MemIndexedMode M, Type *Ty) const override {
504 EVT VT = getTLI()->getValueType(DL, Ty, /*AllowUnknown=*/true);
505 return getTLI()->isIndexedLoadLegal(getISDIndexedMode(M), VT);
506 }
507
508 bool isIndexedStoreLegal(TTI::MemIndexedMode M, Type *Ty) const override {
509 EVT VT = getTLI()->getValueType(DL, Ty, /*AllowUnknown=*/true);
510 return getTLI()->isIndexedStoreLegal(getISDIndexedMode(M), VT);
511 }
512
514 const TTI::LSRCost &C2) const override {
516 }
517
521
525
529
531 StackOffset BaseOffset, bool HasBaseReg,
532 int64_t Scale,
533 unsigned AddrSpace) const override {
535 AM.BaseGV = BaseGV;
536 AM.BaseOffs = BaseOffset.getFixed();
537 AM.HasBaseReg = HasBaseReg;
538 AM.Scale = Scale;
539 AM.ScalableOffset = BaseOffset.getScalable();
540 if (getTLI()->isLegalAddressingMode(DL, AM, Ty, AddrSpace))
541 return 0;
543 }
544
545 bool isTruncateFree(Type *Ty1, Type *Ty2) const override {
546 return getTLI()->isTruncateFree(Ty1, Ty2);
547 }
548
549 bool isProfitableToHoist(Instruction *I) const override {
550 return getTLI()->isProfitableToHoist(I);
551 }
552
553 bool useAA() const override { return getST()->useAA(); }
554
555 bool isTypeLegal(Type *Ty) const override {
556 EVT VT = getTLI()->getValueType(DL, Ty, /*AllowUnknown=*/true);
557 return getTLI()->isTypeLegal(VT);
558 }
559
560 unsigned getRegUsageForType(Type *Ty) const override {
561 EVT ETy = getTLI()->getValueType(DL, Ty);
562 return getTLI()->getNumRegisters(Ty->getContext(), ETy);
563 }
564
565 InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr,
566 ArrayRef<const Value *> Operands, Type *AccessType,
567 TTI::TargetCostKind CostKind) const override {
568 return BaseT::getGEPCost(PointeeType, Ptr, Operands, AccessType, CostKind);
569 }
570
572 const SwitchInst &SI, unsigned &JumpTableSize, ProfileSummaryInfo *PSI,
573 BlockFrequencyInfo *BFI) const override {
574 /// Try to find the estimated number of clusters. Note that the number of
575 /// clusters identified in this function could be different from the actual
576 /// numbers found in lowering. This function ignore switches that are
577 /// lowered with a mix of jump table / bit test / BTree. This function was
578 /// initially intended to be used when estimating the cost of switch in
579 /// inline cost heuristic, but it's a generic cost model to be used in other
580 /// places (e.g., in loop unrolling).
581 unsigned N = SI.getNumCases();
582 const TargetLoweringBase *TLI = getTLI();
583 const DataLayout &DL = this->getDataLayout();
584
585 JumpTableSize = 0;
586 bool IsJTAllowed = TLI->areJTsAllowed(SI.getParent()->getParent());
587
588 // Early exit if both a jump table and bit test are not allowed.
589 if (N < 1 || (!IsJTAllowed && DL.getIndexSizeInBits(0u) < N))
590 return N;
591
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;
600 }
601
602 // Check if suitable for a bit test
603 if (N <= DL.getIndexSizeInBits(0u)) {
605 for (auto I : SI.cases()) {
606 const BasicBlock *BB = I.getCaseSuccessor();
607 ++DestMap[BB];
608 }
609
610 if (TLI->isSuitableForBitTests(DestMap, MinCaseVal, MaxCaseVal, DL))
611 return 1;
612 }
613
614 // Check if suitable for a jump table.
615 if (IsJTAllowed) {
616 if (N < 2 || N < TLI->getMinimumJumpTableEntries())
617 return N;
619 (MaxCaseVal - MinCaseVal)
620 .getLimitedValue(std::numeric_limits<uint64_t>::max() - 1) + 1;
621 // Check whether a range of clusters is dense enough for a jump table
622 if (TLI->isSuitableForJumpTable(&SI, N, Range, PSI, BFI)) {
623 JumpTableSize = Range;
624 return 1;
625 }
626 }
627 return N;
628 }
629
630 bool shouldBuildLookupTables() const override {
631 const TargetLoweringBase *TLI = getTLI();
632 return TLI->isOperationLegalOrCustom(ISD::BR_JT, MVT::Other) ||
633 TLI->isOperationLegalOrCustom(ISD::BRIND, MVT::Other);
634 }
635
636 bool shouldBuildRelLookupTables() const override {
637 const TargetMachine &TM = getTLI()->getTargetMachine();
638 // If non-PIC mode, do not generate a relative lookup table.
639 if (!TM.isPositionIndependent())
640 return false;
641
642 /// Relative lookup table entries consist of 32-bit offsets.
643 /// Do not generate relative lookup tables for large code models
644 /// in 64-bit achitectures where 32-bit offsets might not be enough.
645 if (TM.getCodeModel() == CodeModel::Medium ||
647 return false;
648
649 const Triple &TargetTriple = TM.getTargetTriple();
650 if (!TargetTriple.isArch64Bit())
651 return false;
652
653 // TODO: Triggers issues on aarch64 on darwin, so temporarily disable it
654 // there.
655 if (TargetTriple.getArch() == Triple::aarch64 && TargetTriple.isOSDarwin())
656 return false;
657
658 return true;
659 }
660
661 bool haveFastSqrt(Type *Ty) const override {
662 const TargetLoweringBase *TLI = getTLI();
663 EVT VT = TLI->getValueType(DL, Ty);
664 return TLI->isTypeLegal(VT) &&
666 }
667
668 bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const override { return true; }
669
670 InstructionCost getFPOpCost(Type *Ty) const override {
671 // Check whether FADD is available, as a proxy for floating-point in
672 // general.
673 const TargetLoweringBase *TLI = getTLI();
674 EVT VT = TLI->getValueType(DL, Ty);
678 }
679
681 const Function &Fn) const override {
682 switch (Inst.getOpcode()) {
683 default:
684 break;
685 case Instruction::SDiv:
686 case Instruction::SRem:
687 case Instruction::UDiv:
688 case Instruction::URem: {
689 if (!isa<ConstantInt>(Inst.getOperand(1)))
690 return false;
691 EVT VT = getTLI()->getValueType(DL, Inst.getType());
692 return !getTLI()->isIntDivCheap(VT, Fn.getAttributes());
693 }
694 };
695
696 return false;
697 }
698
699 unsigned getInliningThresholdMultiplier() const override { return 1; }
700 unsigned adjustInliningThreshold(const CallBase *CB) const override {
701 return 0;
702 }
703 unsigned getCallerAllocaCost(const CallBase *CB,
704 const AllocaInst *AI) const override {
705 return 0;
706 }
707
708 int getInlinerVectorBonusPercent() const override { return 150; }
709
712 OptimizationRemarkEmitter *ORE) const override {
713 // This unrolling functionality is target independent, but to provide some
714 // motivation for its intended use, for x86:
715
716 // According to the Intel 64 and IA-32 Architectures Optimization Reference
717 // Manual, Intel Core models and later have a loop stream detector (and
718 // associated uop queue) that can benefit from partial unrolling.
719 // The relevant requirements are:
720 // - The loop must have no more than 4 (8 for Nehalem and later) branches
721 // taken, and none of them may be calls.
722 // - The loop can have no more than 18 (28 for Nehalem and later) uops.
723
724 // According to the Software Optimization Guide for AMD Family 15h
725 // Processors, models 30h-4fh (Steamroller and later) have a loop predictor
726 // and loop buffer which can benefit from partial unrolling.
727 // The relevant requirements are:
728 // - The loop must have fewer than 16 branches
729 // - The loop must have less than 40 uops in all executed loop branches
730
731 // The number of taken branches in a loop is hard to estimate here, and
732 // benchmarking has revealed that it is better not to be conservative when
733 // estimating the branch count. As a result, we'll ignore the branch limits
734 // until someone finds a case where it matters in practice.
735
736 unsigned MaxOps;
737 const TargetSubtargetInfo *ST = getST();
738 if (PartialUnrollingThreshold.getNumOccurrences() > 0)
740 else if (ST->getSchedModel().LoopMicroOpBufferSize > 0)
741 MaxOps = ST->getSchedModel().LoopMicroOpBufferSize;
742 else
743 return;
744
745 // Scan the loop: don't unroll loops with calls.
746 for (BasicBlock *BB : L->blocks()) {
747 for (Instruction &I : *BB) {
748 if (isa<CallInst>(I) || isa<InvokeInst>(I)) {
749 if (const Function *F = cast<CallBase>(I).getCalledFunction()) {
750 if (!thisT()->isLoweredToCall(F))
751 continue;
752 }
753
754 if (ORE) {
755 ORE->emit([&]() {
756 return OptimizationRemark("TTI", "DontUnroll", L->getStartLoc(),
757 L->getHeader())
758 << "advising against unrolling the loop because it "
759 "contains a "
760 << ore::NV("Call", &I);
761 });
762 }
763 return;
764 }
765 }
766 }
767
768 // Enable runtime and partial unrolling up to the specified size.
769 // Enable using trip count upper bound to unroll loops.
770 UP.Partial = UP.Runtime = UP.UpperBound = true;
771 UP.PartialThreshold = MaxOps;
772
773 // Avoid unrolling when optimizing for size.
774 UP.OptSizeThreshold = 0;
776
777 // Set number of instructions optimized when "back edge"
778 // becomes "fall through" to default value of 2.
779 UP.BEInsns = 2;
780 }
781
783 TTI::PeelingPreferences &PP) const override {
784 PP.PeelCount = 0;
785 PP.AllowPeeling = true;
786 PP.AllowLoopNestsPeeling = false;
787 PP.PeelProfiledIterations = true;
788 }
789
792 HardwareLoopInfo &HWLoopInfo) const override {
793 return BaseT::isHardwareLoopProfitable(L, SE, AC, LibInfo, HWLoopInfo);
794 }
795
796 unsigned getEpilogueVectorizationMinVF() const override {
798 }
799
802 }
803
805 getPreferredTailFoldingStyle(bool IVUpdateMayOverflow = true) const override {
806 return BaseT::getPreferredTailFoldingStyle(IVUpdateMayOverflow);
807 }
808
809 std::optional<Instruction *>
812 }
813
814 std::optional<Value *>
816 APInt DemandedMask, KnownBits &Known,
817 bool &KnownBitsComputed) const override {
818 return BaseT::simplifyDemandedUseBitsIntrinsic(IC, II, DemandedMask, Known,
819 KnownBitsComputed);
820 }
821
823 InstCombiner &IC, IntrinsicInst &II, APInt DemandedElts, APInt &UndefElts,
824 APInt &UndefElts2, APInt &UndefElts3,
825 std::function<void(Instruction *, unsigned, APInt, APInt &)>
826 SimplifyAndSetOp) const override {
828 IC, II, DemandedElts, UndefElts, UndefElts2, UndefElts3,
829 SimplifyAndSetOp);
830 }
831
832 std::optional<unsigned>
834 return std::optional<unsigned>(
835 getST()->getCacheSize(static_cast<unsigned>(Level)));
836 }
837
838 std::optional<unsigned>
840 std::optional<unsigned> TargetResult =
841 getST()->getCacheAssociativity(static_cast<unsigned>(Level));
842
843 if (TargetResult)
844 return TargetResult;
845
846 return BaseT::getCacheAssociativity(Level);
847 }
848
849 unsigned getCacheLineSize() const override {
850 return getST()->getCacheLineSize();
851 }
852
853 unsigned getPrefetchDistance() const override {
854 return getST()->getPrefetchDistance();
855 }
856
857 unsigned getMinPrefetchStride(unsigned NumMemAccesses,
858 unsigned NumStridedMemAccesses,
859 unsigned NumPrefetches,
860 bool HasCall) const override {
861 return getST()->getMinPrefetchStride(NumMemAccesses, NumStridedMemAccesses,
862 NumPrefetches, HasCall);
863 }
864
865 unsigned getMaxPrefetchIterationsAhead() const override {
866 return getST()->getMaxPrefetchIterationsAhead();
867 }
868
869 bool enableWritePrefetching() const override {
870 return getST()->enableWritePrefetching();
871 }
872
873 bool shouldPrefetchAddressSpace(unsigned AS) const override {
874 return getST()->shouldPrefetchAddressSpace(AS);
875 }
876
877 /// @}
878
879 /// \name Vector TTI Implementations
880 /// @{
881
886
887 std::optional<unsigned> getMaxVScale() const override { return std::nullopt; }
888 std::optional<unsigned> getVScaleForTuning() const override {
889 return std::nullopt;
890 }
891 bool isVScaleKnownToBeAPowerOfTwo() const override { return false; }
892
893 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
894 /// are set if the demanded result elements need to be inserted and/or
895 /// extracted from vectors.
897 VectorType *InTy, const APInt &DemandedElts, bool Insert, bool Extract,
898 TTI::TargetCostKind CostKind, bool ForPoisonSrc = true,
899 ArrayRef<Value *> VL = {}) const override {
900 /// FIXME: a bitfield is not a reasonable abstraction for talking about
901 /// which elements are needed from a scalable vector
902 if (isa<ScalableVectorType>(InTy))
904 auto *Ty = cast<FixedVectorType>(InTy);
905
906 assert(DemandedElts.getBitWidth() == Ty->getNumElements() &&
907 (VL.empty() || VL.size() == Ty->getNumElements()) &&
908 "Vector size mismatch");
909
911
912 for (int i = 0, e = Ty->getNumElements(); i < e; ++i) {
913 if (!DemandedElts[i])
914 continue;
915 if (Insert) {
916 Value *InsertedVal = VL.empty() ? nullptr : VL[i];
917 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, Ty,
918 CostKind, i, nullptr, InsertedVal);
919 }
920 if (Extract)
921 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
922 CostKind, i, nullptr, nullptr);
923 }
924
925 return Cost;
926 }
927
929 return false;
930 }
931
932 bool
934 unsigned ScalarOpdIdx) const override {
935 return false;
936 }
937
939 int OpdIdx) const override {
940 return OpdIdx == -1;
941 }
942
943 bool
945 int RetIdx) const override {
946 return RetIdx == 0;
947 }
948
949 /// Helper wrapper for the DemandedElts variant of getScalarizationOverhead.
951 bool Extract,
953 if (isa<ScalableVectorType>(InTy))
955 auto *Ty = cast<FixedVectorType>(InTy);
956
957 APInt DemandedElts = APInt::getAllOnes(Ty->getNumElements());
958 return thisT()->getScalarizationOverhead(Ty, DemandedElts, Insert, Extract,
959 CostKind);
960 }
961
962 /// Estimate the overhead of scalarizing an instruction's
963 /// operands. The (potentially vector) types to use for each of
964 /// argument are passes via Tys.
966 ArrayRef<Type *> Tys, TTI::TargetCostKind CostKind) const override {
968 for (Type *Ty : Tys) {
969 // Disregard things like metadata arguments.
970 if (!Ty->isIntOrIntVectorTy() && !Ty->isFPOrFPVectorTy() &&
971 !Ty->isPtrOrPtrVectorTy())
972 continue;
973
974 if (auto *VecTy = dyn_cast<VectorType>(Ty))
975 Cost += getScalarizationOverhead(VecTy, /*Insert*/ false,
976 /*Extract*/ true, CostKind);
977 }
978
979 return Cost;
980 }
981
982 /// Estimate the overhead of scalarizing the inputs and outputs of an
983 /// instruction, with return type RetTy and arguments Args of type Tys. If
984 /// Args are unknown (empty), then the cost associated with one argument is
985 /// added as a heuristic.
991 RetTy, /*Insert*/ true, /*Extract*/ false, CostKind);
992 if (!Args.empty())
994 filterConstantAndDuplicatedOperands(Args, Tys), CostKind);
995 else
996 // When no information on arguments is provided, we add the cost
997 // associated with one argument as a heuristic.
998 Cost += getScalarizationOverhead(RetTy, /*Insert*/ false,
999 /*Extract*/ true, CostKind);
1000
1001 return Cost;
1002 }
1003
1004 /// Estimate the cost of type-legalization and the legalized type.
1005 std::pair<InstructionCost, MVT> getTypeLegalizationCost(Type *Ty) const {
1006 LLVMContext &C = Ty->getContext();
1007 EVT MTy = getTLI()->getValueType(DL, Ty);
1008
1010 // We keep legalizing the type until we find a legal kind. We assume that
1011 // the only operation that costs anything is the split. After splitting
1012 // we need to handle two types.
1013 while (true) {
1014 TargetLoweringBase::LegalizeKind LK = getTLI()->getTypeConversion(C, MTy);
1015
1017 // Ensure we return a sensible simple VT here, since many callers of
1018 // this function require it.
1019 MVT VT = MTy.isSimple() ? MTy.getSimpleVT() : MVT::i64;
1020 return std::make_pair(InstructionCost::getInvalid(), VT);
1021 }
1022
1023 if (LK.first == TargetLoweringBase::TypeLegal)
1024 return std::make_pair(Cost, MTy.getSimpleVT());
1025
1026 if (LK.first == TargetLoweringBase::TypeSplitVector ||
1028 Cost *= 2;
1029
1030 // Do not loop with f128 type.
1031 if (MTy == LK.second)
1032 return std::make_pair(Cost, MTy.getSimpleVT());
1033
1034 // Keep legalizing the type.
1035 MTy = LK.second;
1036 }
1037 }
1038
1039 unsigned getMaxInterleaveFactor(ElementCount VF) const override { return 1; }
1040
1042 unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind,
1045 ArrayRef<const Value *> Args = {},
1046 const Instruction *CxtI = nullptr) const override {
1047 // Check if any of the operands are vector operands.
1048 const TargetLoweringBase *TLI = getTLI();
1049 int ISD = TLI->InstructionOpcodeToISD(Opcode);
1050 assert(ISD && "Invalid opcode");
1051
1052 // TODO: Handle more cost kinds.
1054 return BaseT::getArithmeticInstrCost(Opcode, Ty, CostKind,
1055 Opd1Info, Opd2Info,
1056 Args, CxtI);
1057
1058 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Ty);
1059
1060 bool IsFloat = Ty->isFPOrFPVectorTy();
1061 // Assume that floating point arithmetic operations cost twice as much as
1062 // integer operations.
1063 InstructionCost OpCost = (IsFloat ? 2 : 1);
1064
1065 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) {
1066 // The operation is legal. Assume it costs 1.
1067 // TODO: Once we have extract/insert subvector cost we need to use them.
1068 return LT.first * OpCost;
1069 }
1070
1071 if (!TLI->isOperationExpand(ISD, LT.second)) {
1072 // If the operation is custom lowered, then assume that the code is twice
1073 // as expensive.
1074 return LT.first * 2 * OpCost;
1075 }
1076
1077 // An 'Expand' of URem and SRem is special because it may default
1078 // to expanding the operation into a sequence of sub-operations
1079 // i.e. X % Y -> X-(X/Y)*Y.
1080 if (ISD == ISD::UREM || ISD == ISD::SREM) {
1081 bool IsSigned = ISD == ISD::SREM;
1082 if (TLI->isOperationLegalOrCustom(IsSigned ? ISD::SDIVREM : ISD::UDIVREM,
1083 LT.second) ||
1084 TLI->isOperationLegalOrCustom(IsSigned ? ISD::SDIV : ISD::UDIV,
1085 LT.second)) {
1086 unsigned DivOpc = IsSigned ? Instruction::SDiv : Instruction::UDiv;
1087 InstructionCost DivCost = thisT()->getArithmeticInstrCost(
1088 DivOpc, Ty, CostKind, Opd1Info, Opd2Info);
1089 InstructionCost MulCost =
1090 thisT()->getArithmeticInstrCost(Instruction::Mul, Ty, CostKind);
1091 InstructionCost SubCost =
1092 thisT()->getArithmeticInstrCost(Instruction::Sub, Ty, CostKind);
1093 return DivCost + MulCost + SubCost;
1094 }
1095 }
1096
1097 // We cannot scalarize scalable vectors, so return Invalid.
1100
1101 // Else, assume that we need to scalarize this op.
1102 // TODO: If one of the types get legalized by splitting, handle this
1103 // similarly to what getCastInstrCost() does.
1104 if (auto *VTy = dyn_cast<FixedVectorType>(Ty)) {
1105 InstructionCost Cost = thisT()->getArithmeticInstrCost(
1106 Opcode, VTy->getScalarType(), CostKind, Opd1Info, Opd2Info,
1107 Args, CxtI);
1108 // Return the cost of multiple scalar invocation plus the cost of
1109 // inserting and extracting the values.
1110 SmallVector<Type *> Tys(Args.size(), Ty);
1111 return getScalarizationOverhead(VTy, Args, Tys, CostKind) +
1112 VTy->getNumElements() * Cost;
1113 }
1114
1115 // We don't know anything about this scalar instruction.
1116 return OpCost;
1117 }
1118
1120 ArrayRef<int> Mask,
1121 VectorType *SrcTy, int &Index,
1122 VectorType *&SubTy) const {
1123 if (Mask.empty())
1124 return Kind;
1125 int NumDstElts = Mask.size();
1126 int NumSrcElts = SrcTy->getElementCount().getKnownMinValue();
1127 switch (Kind) {
1129 if (ShuffleVectorInst::isReverseMask(Mask, NumSrcElts))
1130 return TTI::SK_Reverse;
1131 if (ShuffleVectorInst::isZeroEltSplatMask(Mask, NumSrcElts))
1132 return TTI::SK_Broadcast;
1133 if (isSplatMask(Mask, NumSrcElts, Index))
1134 return TTI::SK_Broadcast;
1135 if (ShuffleVectorInst::isExtractSubvectorMask(Mask, NumSrcElts, Index) &&
1136 (Index + NumDstElts) <= NumSrcElts) {
1137 SubTy = FixedVectorType::get(SrcTy->getElementType(), NumDstElts);
1139 }
1140 break;
1141 }
1142 case TTI::SK_PermuteTwoSrc: {
1143 if (all_of(Mask, [NumSrcElts](int M) { return M < NumSrcElts; }))
1145 Index, SubTy);
1146 int NumSubElts;
1147 if (NumDstElts > 2 && ShuffleVectorInst::isInsertSubvectorMask(
1148 Mask, NumSrcElts, NumSubElts, Index)) {
1149 if (Index + NumSubElts > NumSrcElts)
1150 return Kind;
1151 SubTy = FixedVectorType::get(SrcTy->getElementType(), NumSubElts);
1153 }
1154 if (ShuffleVectorInst::isSelectMask(Mask, NumSrcElts))
1155 return TTI::SK_Select;
1156 if (ShuffleVectorInst::isTransposeMask(Mask, NumSrcElts))
1157 return TTI::SK_Transpose;
1158 if (ShuffleVectorInst::isSpliceMask(Mask, NumSrcElts, Index))
1159 return TTI::SK_Splice;
1160 break;
1161 }
1162 case TTI::SK_Select:
1163 case TTI::SK_Reverse:
1164 case TTI::SK_Broadcast:
1165 case TTI::SK_Transpose:
1168 case TTI::SK_Splice:
1169 break;
1170 }
1171 return Kind;
1172 }
1173
1177 VectorType *SubTp, ArrayRef<const Value *> Args = {},
1178 const Instruction *CxtI = nullptr) const override {
1179 switch (improveShuffleKindFromMask(Kind, Mask, SrcTy, Index, SubTp)) {
1180 case TTI::SK_Broadcast:
1181 if (auto *FVT = dyn_cast<FixedVectorType>(SrcTy))
1182 return getBroadcastShuffleOverhead(FVT, CostKind);
1184 case TTI::SK_Select:
1185 case TTI::SK_Splice:
1186 case TTI::SK_Reverse:
1187 case TTI::SK_Transpose:
1190 if (auto *FVT = dyn_cast<FixedVectorType>(SrcTy))
1191 return getPermuteShuffleOverhead(FVT, CostKind);
1194 return getExtractSubvectorOverhead(SrcTy, CostKind, Index,
1195 cast<FixedVectorType>(SubTp));
1197 return getInsertSubvectorOverhead(DstTy, CostKind, Index,
1198 cast<FixedVectorType>(SubTp));
1199 }
1200 llvm_unreachable("Unknown TTI::ShuffleKind");
1201 }
1202
1204 getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
1206 const Instruction *I = nullptr) const override {
1207 if (BaseT::getCastInstrCost(Opcode, Dst, Src, CCH, CostKind, I) == 0)
1208 return 0;
1209
1210 const TargetLoweringBase *TLI = getTLI();
1211 int ISD = TLI->InstructionOpcodeToISD(Opcode);
1212 assert(ISD && "Invalid opcode");
1213 std::pair<InstructionCost, MVT> SrcLT = getTypeLegalizationCost(Src);
1214 std::pair<InstructionCost, MVT> DstLT = getTypeLegalizationCost(Dst);
1215
1216 TypeSize SrcSize = SrcLT.second.getSizeInBits();
1217 TypeSize DstSize = DstLT.second.getSizeInBits();
1218 bool IntOrPtrSrc = Src->isIntegerTy() || Src->isPointerTy();
1219 bool IntOrPtrDst = Dst->isIntegerTy() || Dst->isPointerTy();
1220
1221 switch (Opcode) {
1222 default:
1223 break;
1224 case Instruction::Trunc:
1225 // Check for NOOP conversions.
1226 if (TLI->isTruncateFree(SrcLT.second, DstLT.second))
1227 return 0;
1228 [[fallthrough]];
1229 case Instruction::BitCast:
1230 // Bitcast between types that are legalized to the same type are free and
1231 // assume int to/from ptr of the same size is also free.
1232 if (SrcLT.first == DstLT.first && IntOrPtrSrc == IntOrPtrDst &&
1233 SrcSize == DstSize)
1234 return 0;
1235 break;
1236 case Instruction::FPExt:
1237 if (I && getTLI()->isExtFree(I))
1238 return 0;
1239 break;
1240 case Instruction::ZExt:
1241 if (TLI->isZExtFree(SrcLT.second, DstLT.second))
1242 return 0;
1243 [[fallthrough]];
1244 case Instruction::SExt:
1245 if (I && getTLI()->isExtFree(I))
1246 return 0;
1247
1248 // If this is a zext/sext of a load, return 0 if the corresponding
1249 // extending load exists on target and the result type is legal.
1250 if (CCH == TTI::CastContextHint::Normal) {
1251 EVT ExtVT = EVT::getEVT(Dst);
1252 EVT LoadVT = EVT::getEVT(Src);
1253 unsigned LType =
1254 ((Opcode == Instruction::ZExt) ? ISD::ZEXTLOAD : ISD::SEXTLOAD);
1255 if (DstLT.first == SrcLT.first &&
1256 TLI->isLoadExtLegal(LType, ExtVT, LoadVT))
1257 return 0;
1258 }
1259 break;
1260 case Instruction::AddrSpaceCast:
1261 if (TLI->isFreeAddrSpaceCast(Src->getPointerAddressSpace(),
1262 Dst->getPointerAddressSpace()))
1263 return 0;
1264 break;
1265 }
1266
1267 auto *SrcVTy = dyn_cast<VectorType>(Src);
1268 auto *DstVTy = dyn_cast<VectorType>(Dst);
1269
1270 // If the cast is marked as legal (or promote) then assume low cost.
1271 if (SrcLT.first == DstLT.first &&
1272 TLI->isOperationLegalOrPromote(ISD, DstLT.second))
1273 return SrcLT.first;
1274
1275 // Handle scalar conversions.
1276 if (!SrcVTy && !DstVTy) {
1277 // Just check the op cost. If the operation is legal then assume it costs
1278 // 1.
1279 if (!TLI->isOperationExpand(ISD, DstLT.second))
1280 return 1;
1281
1282 // Assume that illegal scalar instruction are expensive.
1283 return 4;
1284 }
1285
1286 // Check vector-to-vector casts.
1287 if (DstVTy && SrcVTy) {
1288 // If the cast is between same-sized registers, then the check is simple.
1289 if (SrcLT.first == DstLT.first && SrcSize == DstSize) {
1290
1291 // Assume that Zext is done using AND.
1292 if (Opcode == Instruction::ZExt)
1293 return SrcLT.first;
1294
1295 // Assume that sext is done using SHL and SRA.
1296 if (Opcode == Instruction::SExt)
1297 return SrcLT.first * 2;
1298
1299 // Just check the op cost. If the operation is legal then assume it
1300 // costs
1301 // 1 and multiply by the type-legalization overhead.
1302 if (!TLI->isOperationExpand(ISD, DstLT.second))
1303 return SrcLT.first * 1;
1304 }
1305
1306 // If we are legalizing by splitting, query the concrete TTI for the cost
1307 // of casting the original vector twice. We also need to factor in the
1308 // cost of the split itself. Count that as 1, to be consistent with
1309 // getTypeLegalizationCost().
1310 bool SplitSrc =
1311 TLI->getTypeAction(Src->getContext(), TLI->getValueType(DL, Src)) ==
1313 bool SplitDst =
1314 TLI->getTypeAction(Dst->getContext(), TLI->getValueType(DL, Dst)) ==
1316 if ((SplitSrc || SplitDst) && SrcVTy->getElementCount().isKnownEven() &&
1317 DstVTy->getElementCount().isKnownEven()) {
1318 Type *SplitDstTy = VectorType::getHalfElementsVectorType(DstVTy);
1319 Type *SplitSrcTy = VectorType::getHalfElementsVectorType(SrcVTy);
1320 const T *TTI = thisT();
1321 // If both types need to be split then the split is free.
1322 InstructionCost SplitCost =
1323 (!SplitSrc || !SplitDst) ? TTI->getVectorSplitCost() : 0;
1324 return SplitCost +
1325 (2 * TTI->getCastInstrCost(Opcode, SplitDstTy, SplitSrcTy, CCH,
1326 CostKind, I));
1327 }
1328
1329 // Scalarization cost is Invalid, can't assume any num elements.
1330 if (isa<ScalableVectorType>(DstVTy))
1332
1333 // In other cases where the source or destination are illegal, assume
1334 // the operation will get scalarized.
1335 unsigned Num = cast<FixedVectorType>(DstVTy)->getNumElements();
1336 InstructionCost Cost = thisT()->getCastInstrCost(
1337 Opcode, Dst->getScalarType(), Src->getScalarType(), CCH, CostKind, I);
1338
1339 // Return the cost of multiple scalar invocation plus the cost of
1340 // inserting and extracting the values.
1341 return getScalarizationOverhead(DstVTy, /*Insert*/ true, /*Extract*/ true,
1342 CostKind) +
1343 Num * Cost;
1344 }
1345
1346 // We already handled vector-to-vector and scalar-to-scalar conversions.
1347 // This
1348 // is where we handle bitcast between vectors and scalars. We need to assume
1349 // that the conversion is scalarized in one way or another.
1350 if (Opcode == Instruction::BitCast) {
1351 // Illegal bitcasts are done by storing and loading from a stack slot.
1352 return (SrcVTy ? getScalarizationOverhead(SrcVTy, /*Insert*/ false,
1353 /*Extract*/ true, CostKind)
1354 : 0) +
1355 (DstVTy ? getScalarizationOverhead(DstVTy, /*Insert*/ true,
1356 /*Extract*/ false, CostKind)
1357 : 0);
1358 }
1359
1360 llvm_unreachable("Unhandled cast");
1361 }
1362
1364 getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy,
1365 unsigned Index,
1366 TTI::TargetCostKind CostKind) const override {
1367 return thisT()->getVectorInstrCost(Instruction::ExtractElement, VecTy,
1368 CostKind, Index, nullptr, nullptr) +
1369 thisT()->getCastInstrCost(Opcode, Dst, VecTy->getElementType(),
1371 }
1372
1375 const Instruction *I = nullptr) const override {
1376 return BaseT::getCFInstrCost(Opcode, CostKind, I);
1377 }
1378
1380 unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred,
1384 const Instruction *I = nullptr) const override {
1385 const TargetLoweringBase *TLI = getTLI();
1386 int ISD = TLI->InstructionOpcodeToISD(Opcode);
1387 assert(ISD && "Invalid opcode");
1388
1389 if (getTLI()->getValueType(DL, ValTy, true) == MVT::Other)
1390 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, VecPred, CostKind,
1391 Op1Info, Op2Info, I);
1392
1393 // Selects on vectors are actually vector selects.
1394 if (ISD == ISD::SELECT) {
1395 assert(CondTy && "CondTy must exist");
1396 if (CondTy->isVectorTy())
1397 ISD = ISD::VSELECT;
1398 }
1399 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(ValTy);
1400
1401 if (!(ValTy->isVectorTy() && !LT.second.isVector()) &&
1402 !TLI->isOperationExpand(ISD, LT.second)) {
1403 // The operation is legal. Assume it costs 1. Multiply
1404 // by the type-legalization overhead.
1405 return LT.first * 1;
1406 }
1407
1408 // Otherwise, assume that the cast is scalarized.
1409 // TODO: If one of the types get legalized by splitting, handle this
1410 // similarly to what getCastInstrCost() does.
1411 if (auto *ValVTy = dyn_cast<VectorType>(ValTy)) {
1412 if (isa<ScalableVectorType>(ValTy))
1414
1415 unsigned Num = cast<FixedVectorType>(ValVTy)->getNumElements();
1416 InstructionCost Cost = thisT()->getCmpSelInstrCost(
1417 Opcode, ValVTy->getScalarType(), CondTy->getScalarType(), VecPred,
1418 CostKind, Op1Info, Op2Info, I);
1419
1420 // Return the cost of multiple scalar invocation plus the cost of
1421 // inserting and extracting the values.
1422 return getScalarizationOverhead(ValVTy, /*Insert*/ true,
1423 /*Extract*/ false, CostKind) +
1424 Num * Cost;
1425 }
1426
1427 // Unknown scalar opcode.
1428 return 1;
1429 }
1430
1433 unsigned Index, const Value *Op0,
1434 const Value *Op1) const override {
1435 return getRegUsageForType(Val->getScalarType());
1436 }
1437
1438 /// \param ScalarUserAndIdx encodes the information about extracts from a
1439 /// vector with 'Scalar' being the value being extracted,'User' being the user
1440 /// of the extract(nullptr if user is not known before vectorization) and
1441 /// 'Idx' being the extract lane.
1444 unsigned Index, Value *Scalar,
1445 ArrayRef<std::tuple<Value *, User *, int>>
1446 ScalarUserAndIdx) const override {
1447 return thisT()->getVectorInstrCost(Opcode, Val, CostKind, Index, nullptr,
1448 nullptr);
1449 }
1450
1453 unsigned Index) const override {
1454 Value *Op0 = nullptr;
1455 Value *Op1 = nullptr;
1456 if (auto *IE = dyn_cast<InsertElementInst>(&I)) {
1457 Op0 = IE->getOperand(0);
1458 Op1 = IE->getOperand(1);
1459 }
1460 return thisT()->getVectorInstrCost(I.getOpcode(), Val, CostKind, Index, Op0,
1461 Op1);
1462 }
1463
1467 unsigned Index) const override {
1468 unsigned NewIndex = -1;
1469 if (auto *FVTy = dyn_cast<FixedVectorType>(Val)) {
1470 assert(Index < FVTy->getNumElements() &&
1471 "Unexpected index from end of vector");
1472 NewIndex = FVTy->getNumElements() - 1 - Index;
1473 }
1474 return thisT()->getVectorInstrCost(Opcode, Val, CostKind, NewIndex, nullptr,
1475 nullptr);
1476 }
1477
1479 getReplicationShuffleCost(Type *EltTy, int ReplicationFactor, int VF,
1480 const APInt &DemandedDstElts,
1481 TTI::TargetCostKind CostKind) const override {
1482 assert(DemandedDstElts.getBitWidth() == (unsigned)VF * ReplicationFactor &&
1483 "Unexpected size of DemandedDstElts.");
1484
1486
1487 auto *SrcVT = FixedVectorType::get(EltTy, VF);
1488 auto *ReplicatedVT = FixedVectorType::get(EltTy, VF * ReplicationFactor);
1489
1490 // The Mask shuffling cost is extract all the elements of the Mask
1491 // and insert each of them Factor times into the wide vector:
1492 //
1493 // E.g. an interleaved group with factor 3:
1494 // %mask = icmp ult <8 x i32> %vec1, %vec2
1495 // %interleaved.mask = shufflevector <8 x i1> %mask, <8 x i1> undef,
1496 // <24 x i32> <0,0,0,1,1,1,2,2,2,3,3,3,4,4,4,5,5,5,6,6,6,7,7,7>
1497 // The cost is estimated as extract all mask elements from the <8xi1> mask
1498 // vector and insert them factor times into the <24xi1> shuffled mask
1499 // vector.
1500 APInt DemandedSrcElts = APIntOps::ScaleBitMask(DemandedDstElts, VF);
1501 Cost += thisT()->getScalarizationOverhead(SrcVT, DemandedSrcElts,
1502 /*Insert*/ false,
1503 /*Extract*/ true, CostKind);
1504 Cost += thisT()->getScalarizationOverhead(ReplicatedVT, DemandedDstElts,
1505 /*Insert*/ true,
1506 /*Extract*/ false, CostKind);
1507
1508 return Cost;
1509 }
1510
1512 unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace,
1515 const Instruction *I = nullptr) const override {
1516 assert(!Src->isVoidTy() && "Invalid type");
1517 // Assume types, such as structs, are expensive.
1518 if (getTLI()->getValueType(DL, Src, true) == MVT::Other)
1519 return 4;
1520 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Src);
1521
1522 // Assuming that all loads of legal types cost 1.
1523 InstructionCost Cost = LT.first;
1525 return Cost;
1526
1527 const DataLayout &DL = this->getDataLayout();
1528 if (Src->isVectorTy() &&
1529 // In practice it's not currently possible to have a change in lane
1530 // length for extending loads or truncating stores so both types should
1531 // have the same scalable property.
1532 TypeSize::isKnownLT(DL.getTypeStoreSizeInBits(Src),
1533 LT.second.getSizeInBits())) {
1534 // This is a vector load that legalizes to a larger type than the vector
1535 // itself. Unless the corresponding extending load or truncating store is
1536 // legal, then this will scalarize.
1538 EVT MemVT = getTLI()->getValueType(DL, Src);
1539 if (Opcode == Instruction::Store)
1540 LA = getTLI()->getTruncStoreAction(LT.second, MemVT);
1541 else
1542 LA = getTLI()->getLoadExtAction(ISD::EXTLOAD, LT.second, MemVT);
1543
1544 if (LA != TargetLowering::Legal && LA != TargetLowering::Custom) {
1545 // This is a vector load/store for some illegal type that is scalarized.
1546 // We must account for the cost of building or decomposing the vector.
1548 cast<VectorType>(Src), Opcode != Instruction::Store,
1549 Opcode == Instruction::Store, CostKind);
1550 }
1551 }
1552
1553 return Cost;
1554 }
1555
1557 unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef<unsigned> Indices,
1558 Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind,
1559 bool UseMaskForCond = false, bool UseMaskForGaps = false) const override {
1560
1561 // We cannot scalarize scalable vectors, so return Invalid.
1562 if (isa<ScalableVectorType>(VecTy))
1564
1565 auto *VT = cast<FixedVectorType>(VecTy);
1566
1567 unsigned NumElts = VT->getNumElements();
1568 assert(Factor > 1 && NumElts % Factor == 0 && "Invalid interleave factor");
1569
1570 unsigned NumSubElts = NumElts / Factor;
1571 auto *SubVT = FixedVectorType::get(VT->getElementType(), NumSubElts);
1572
1573 // Firstly, the cost of load/store operation.
1575 if (UseMaskForCond || UseMaskForGaps) {
1576 unsigned IID = Opcode == Instruction::Load ? Intrinsic::masked_load
1577 : Intrinsic::masked_store;
1578 Cost = thisT()->getMemIntrinsicInstrCost(
1579 MemIntrinsicCostAttributes(IID, VecTy, Alignment, AddressSpace),
1580 CostKind);
1581 } else
1582 Cost = thisT()->getMemoryOpCost(Opcode, VecTy, Alignment, AddressSpace,
1583 CostKind);
1584
1585 // Legalize the vector type, and get the legalized and unlegalized type
1586 // sizes.
1587 MVT VecTyLT = getTypeLegalizationCost(VecTy).second;
1588 unsigned VecTySize = thisT()->getDataLayout().getTypeStoreSize(VecTy);
1589 unsigned VecTyLTSize = VecTyLT.getStoreSize();
1590
1591 // Scale the cost of the memory operation by the fraction of legalized
1592 // instructions that will actually be used. We shouldn't account for the
1593 // cost of dead instructions since they will be removed.
1594 //
1595 // E.g., An interleaved load of factor 8:
1596 // %vec = load <16 x i64>, <16 x i64>* %ptr
1597 // %v0 = shufflevector %vec, undef, <0, 8>
1598 //
1599 // If <16 x i64> is legalized to 8 v2i64 loads, only 2 of the loads will be
1600 // used (those corresponding to elements [0:1] and [8:9] of the unlegalized
1601 // type). The other loads are unused.
1602 //
1603 // TODO: Note that legalization can turn masked loads/stores into unmasked
1604 // (legalized) loads/stores. This can be reflected in the cost.
1605 if (Cost.isValid() && VecTySize > VecTyLTSize) {
1606 // The number of loads of a legal type it will take to represent a load
1607 // of the unlegalized vector type.
1608 unsigned NumLegalInsts = divideCeil(VecTySize, VecTyLTSize);
1609
1610 // The number of elements of the unlegalized type that correspond to a
1611 // single legal instruction.
1612 unsigned NumEltsPerLegalInst = divideCeil(NumElts, NumLegalInsts);
1613
1614 // Determine which legal instructions will be used.
1615 BitVector UsedInsts(NumLegalInsts, false);
1616 for (unsigned Index : Indices)
1617 for (unsigned Elt = 0; Elt < NumSubElts; ++Elt)
1618 UsedInsts.set((Index + Elt * Factor) / NumEltsPerLegalInst);
1619
1620 // Scale the cost of the load by the fraction of legal instructions that
1621 // will be used.
1622 Cost = divideCeil(UsedInsts.count() * Cost.getValue(), NumLegalInsts);
1623 }
1624
1625 // Then plus the cost of interleave operation.
1626 assert(Indices.size() <= Factor &&
1627 "Interleaved memory op has too many members");
1628
1629 const APInt DemandedAllSubElts = APInt::getAllOnes(NumSubElts);
1630 const APInt DemandedAllResultElts = APInt::getAllOnes(NumElts);
1631
1632 APInt DemandedLoadStoreElts = APInt::getZero(NumElts);
1633 for (unsigned Index : Indices) {
1634 assert(Index < Factor && "Invalid index for interleaved memory op");
1635 for (unsigned Elm = 0; Elm < NumSubElts; Elm++)
1636 DemandedLoadStoreElts.setBit(Index + Elm * Factor);
1637 }
1638
1639 if (Opcode == Instruction::Load) {
1640 // The interleave cost is similar to extract sub vectors' elements
1641 // from the wide vector, and insert them into sub vectors.
1642 //
1643 // E.g. An interleaved load of factor 2 (with one member of index 0):
1644 // %vec = load <8 x i32>, <8 x i32>* %ptr
1645 // %v0 = shuffle %vec, undef, <0, 2, 4, 6> ; Index 0
1646 // The cost is estimated as extract elements at 0, 2, 4, 6 from the
1647 // <8 x i32> vector and insert them into a <4 x i32> vector.
1648 InstructionCost InsSubCost = thisT()->getScalarizationOverhead(
1649 SubVT, DemandedAllSubElts,
1650 /*Insert*/ true, /*Extract*/ false, CostKind);
1651 Cost += Indices.size() * InsSubCost;
1652 Cost += thisT()->getScalarizationOverhead(VT, DemandedLoadStoreElts,
1653 /*Insert*/ false,
1654 /*Extract*/ true, CostKind);
1655 } else {
1656 // The interleave cost is extract elements from sub vectors, and
1657 // insert them into the wide vector.
1658 //
1659 // E.g. An interleaved store of factor 3 with 2 members at indices 0,1:
1660 // (using VF=4):
1661 // %v0_v1 = shuffle %v0, %v1, <0,4,undef,1,5,undef,2,6,undef,3,7,undef>
1662 // %gaps.mask = <true, true, false, true, true, false,
1663 // true, true, false, true, true, false>
1664 // call llvm.masked.store <12 x i32> %v0_v1, <12 x i32>* %ptr,
1665 // i32 Align, <12 x i1> %gaps.mask
1666 // The cost is estimated as extract all elements (of actual members,
1667 // excluding gaps) from both <4 x i32> vectors and insert into the <12 x
1668 // i32> vector.
1669 InstructionCost ExtSubCost = thisT()->getScalarizationOverhead(
1670 SubVT, DemandedAllSubElts,
1671 /*Insert*/ false, /*Extract*/ true, CostKind);
1672 Cost += ExtSubCost * Indices.size();
1673 Cost += thisT()->getScalarizationOverhead(VT, DemandedLoadStoreElts,
1674 /*Insert*/ true,
1675 /*Extract*/ false, CostKind);
1676 }
1677
1678 if (!UseMaskForCond)
1679 return Cost;
1680
1681 Type *I8Type = Type::getInt8Ty(VT->getContext());
1682
1683 Cost += thisT()->getReplicationShuffleCost(
1684 I8Type, Factor, NumSubElts,
1685 UseMaskForGaps ? DemandedLoadStoreElts : DemandedAllResultElts,
1686 CostKind);
1687
1688 // The Gaps mask is invariant and created outside the loop, therefore the
1689 // cost of creating it is not accounted for here. However if we have both
1690 // a MaskForGaps and some other mask that guards the execution of the
1691 // memory access, we need to account for the cost of And-ing the two masks
1692 // inside the loop.
1693 if (UseMaskForGaps) {
1694 auto *MaskVT = FixedVectorType::get(I8Type, NumElts);
1695 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::And, MaskVT,
1696 CostKind);
1697 }
1698
1699 return Cost;
1700 }
1701
1702 /// Get intrinsic cost based on arguments.
1705 TTI::TargetCostKind CostKind) const override {
1706 // Check for generically free intrinsics.
1708 return 0;
1709
1710 // Assume that target intrinsics are cheap.
1711 Intrinsic::ID IID = ICA.getID();
1714
1715 // VP Intrinsics should have the same cost as their non-vp counterpart.
1716 // TODO: Adjust the cost to make the vp intrinsic cheaper than its non-vp
1717 // counterpart when the vector length argument is smaller than the maximum
1718 // vector length.
1719 // TODO: Support other kinds of VPIntrinsics
1720 if (VPIntrinsic::isVPIntrinsic(ICA.getID())) {
1721 std::optional<unsigned> FOp =
1723 if (FOp) {
1724 if (ICA.getID() == Intrinsic::vp_load) {
1725 Align Alignment;
1726 if (auto *VPI = dyn_cast_or_null<VPIntrinsic>(ICA.getInst()))
1727 Alignment = VPI->getPointerAlignment().valueOrOne();
1728 unsigned AS = 0;
1729 if (ICA.getArgTypes().size() > 1)
1730 if (auto *PtrTy = dyn_cast<PointerType>(ICA.getArgTypes()[0]))
1731 AS = PtrTy->getAddressSpace();
1732 return thisT()->getMemoryOpCost(*FOp, ICA.getReturnType(), Alignment,
1733 AS, CostKind);
1734 }
1735 if (ICA.getID() == Intrinsic::vp_store) {
1736 Align Alignment;
1737 if (auto *VPI = dyn_cast_or_null<VPIntrinsic>(ICA.getInst()))
1738 Alignment = VPI->getPointerAlignment().valueOrOne();
1739 unsigned AS = 0;
1740 if (ICA.getArgTypes().size() >= 2)
1741 if (auto *PtrTy = dyn_cast<PointerType>(ICA.getArgTypes()[1]))
1742 AS = PtrTy->getAddressSpace();
1743 return thisT()->getMemoryOpCost(*FOp, ICA.getArgTypes()[0], Alignment,
1744 AS, CostKind);
1745 }
1747 ICA.getID() == Intrinsic::vp_fneg) {
1748 return thisT()->getArithmeticInstrCost(*FOp, ICA.getReturnType(),
1749 CostKind);
1750 }
1751 if (VPCastIntrinsic::isVPCast(ICA.getID())) {
1752 return thisT()->getCastInstrCost(
1753 *FOp, ICA.getReturnType(), ICA.getArgTypes()[0],
1755 }
1756 if (VPCmpIntrinsic::isVPCmp(ICA.getID())) {
1757 // We can only handle vp_cmp intrinsics with underlying instructions.
1758 if (ICA.getInst()) {
1759 assert(FOp);
1760 auto *UI = cast<VPCmpIntrinsic>(ICA.getInst());
1761 return thisT()->getCmpSelInstrCost(*FOp, ICA.getArgTypes()[0],
1762 ICA.getReturnType(),
1763 UI->getPredicate(), CostKind);
1764 }
1765 }
1766 }
1767 if (ICA.getID() == Intrinsic::vp_load_ff) {
1768 Type *RetTy = ICA.getReturnType();
1769 Type *DataTy = cast<StructType>(RetTy)->getElementType(0);
1770 Align Alignment;
1771 if (auto *VPI = dyn_cast_or_null<VPIntrinsic>(ICA.getInst()))
1772 Alignment = VPI->getPointerAlignment().valueOrOne();
1773 return thisT()->getMemIntrinsicInstrCost(
1774 MemIntrinsicCostAttributes(ICA.getID(), DataTy, Alignment),
1775 CostKind);
1776 }
1777 if (ICA.getID() == Intrinsic::vp_scatter) {
1778 if (ICA.isTypeBasedOnly()) {
1779 IntrinsicCostAttributes MaskedScatter(
1782 ICA.getFlags());
1783 return getTypeBasedIntrinsicInstrCost(MaskedScatter, CostKind);
1784 }
1785 Align Alignment;
1786 if (auto *VPI = dyn_cast_or_null<VPIntrinsic>(ICA.getInst()))
1787 Alignment = VPI->getPointerAlignment().valueOrOne();
1788 bool VarMask = isa<Constant>(ICA.getArgs()[2]);
1789 return thisT()->getMemIntrinsicInstrCost(
1790 MemIntrinsicCostAttributes(Intrinsic::vp_scatter,
1791 ICA.getArgTypes()[0], ICA.getArgs()[1],
1792 VarMask, Alignment, nullptr),
1793 CostKind);
1794 }
1795 if (ICA.getID() == Intrinsic::vp_gather) {
1796 if (ICA.isTypeBasedOnly()) {
1797 IntrinsicCostAttributes MaskedGather(
1800 ICA.getFlags());
1801 return getTypeBasedIntrinsicInstrCost(MaskedGather, CostKind);
1802 }
1803 Align Alignment;
1804 if (auto *VPI = dyn_cast_or_null<VPIntrinsic>(ICA.getInst()))
1805 Alignment = VPI->getPointerAlignment().valueOrOne();
1806 bool VarMask = isa<Constant>(ICA.getArgs()[1]);
1807 return thisT()->getMemIntrinsicInstrCost(
1808 MemIntrinsicCostAttributes(Intrinsic::vp_gather,
1809 ICA.getReturnType(), ICA.getArgs()[0],
1810 VarMask, Alignment, nullptr),
1811 CostKind);
1812 }
1813
1814 if (ICA.getID() == Intrinsic::vp_select ||
1815 ICA.getID() == Intrinsic::vp_merge) {
1816 TTI::OperandValueInfo OpInfoX, OpInfoY;
1817 if (!ICA.isTypeBasedOnly()) {
1818 OpInfoX = TTI::getOperandInfo(ICA.getArgs()[0]);
1819 OpInfoY = TTI::getOperandInfo(ICA.getArgs()[1]);
1820 }
1821 return getCmpSelInstrCost(
1822 Instruction::Select, ICA.getReturnType(), ICA.getArgTypes()[0],
1823 CmpInst::BAD_ICMP_PREDICATE, CostKind, OpInfoX, OpInfoY);
1824 }
1825
1826 std::optional<Intrinsic::ID> FID =
1828
1829 // Not functionally equivalent but close enough for cost modelling.
1830 if (ICA.getID() == Intrinsic::experimental_vp_reverse)
1831 FID = Intrinsic::vector_reverse;
1832
1833 if (FID) {
1834 // Non-vp version will have same arg types except mask and vector
1835 // length.
1836 assert(ICA.getArgTypes().size() >= 2 &&
1837 "Expected VPIntrinsic to have Mask and Vector Length args and "
1838 "types");
1839
1840 ArrayRef<const Value *> NewArgs = ArrayRef(ICA.getArgs());
1841 if (!ICA.isTypeBasedOnly())
1842 NewArgs = NewArgs.drop_back(2);
1844
1845 // VPReduction intrinsics have a start value argument that their non-vp
1846 // counterparts do not have, except for the fadd and fmul non-vp
1847 // counterpart.
1849 *FID != Intrinsic::vector_reduce_fadd &&
1850 *FID != Intrinsic::vector_reduce_fmul) {
1851 if (!ICA.isTypeBasedOnly())
1852 NewArgs = NewArgs.drop_front();
1853 NewTys = NewTys.drop_front();
1854 }
1855
1856 IntrinsicCostAttributes NewICA(*FID, ICA.getReturnType(), NewArgs,
1857 NewTys, ICA.getFlags());
1858 return thisT()->getIntrinsicInstrCost(NewICA, CostKind);
1859 }
1860 }
1861
1862 if (ICA.isTypeBasedOnly())
1864
1865 Type *RetTy = ICA.getReturnType();
1866
1867 ElementCount RetVF = isVectorizedTy(RetTy) ? getVectorizedTypeVF(RetTy)
1869
1870 const IntrinsicInst *I = ICA.getInst();
1871 const SmallVectorImpl<const Value *> &Args = ICA.getArgs();
1872 FastMathFlags FMF = ICA.getFlags();
1873 switch (IID) {
1874 default:
1875 break;
1876
1877 case Intrinsic::powi:
1878 if (auto *RHSC = dyn_cast<ConstantInt>(Args[1])) {
1879 bool ShouldOptForSize = I->getParent()->getParent()->hasOptSize();
1880 if (getTLI()->isBeneficialToExpandPowI(RHSC->getSExtValue(),
1881 ShouldOptForSize)) {
1882 // The cost is modeled on the expansion performed by ExpandPowI in
1883 // SelectionDAGBuilder.
1884 APInt Exponent = RHSC->getValue().abs();
1885 unsigned ActiveBits = Exponent.getActiveBits();
1886 unsigned PopCount = Exponent.popcount();
1887 InstructionCost Cost = (ActiveBits + PopCount - 2) *
1888 thisT()->getArithmeticInstrCost(
1889 Instruction::FMul, RetTy, CostKind);
1890 if (RHSC->isNegative())
1891 Cost += thisT()->getArithmeticInstrCost(Instruction::FDiv, RetTy,
1892 CostKind);
1893 return Cost;
1894 }
1895 }
1896 break;
1897 case Intrinsic::cttz:
1898 // FIXME: If necessary, this should go in target-specific overrides.
1899 if (RetVF.isScalar() && getTLI()->isCheapToSpeculateCttz(RetTy))
1901 break;
1902
1903 case Intrinsic::ctlz:
1904 // FIXME: If necessary, this should go in target-specific overrides.
1905 if (RetVF.isScalar() && getTLI()->isCheapToSpeculateCtlz(RetTy))
1907 break;
1908
1909 case Intrinsic::memcpy:
1910 return thisT()->getMemcpyCost(ICA.getInst());
1911
1912 case Intrinsic::masked_scatter: {
1913 const Value *Mask = Args[2];
1914 bool VarMask = !isa<Constant>(Mask);
1915 Align Alignment = I->getParamAlign(1).valueOrOne();
1916 return thisT()->getMemIntrinsicInstrCost(
1917 MemIntrinsicCostAttributes(Intrinsic::masked_scatter,
1918 ICA.getArgTypes()[0], Args[1], VarMask,
1919 Alignment, I),
1920 CostKind);
1921 }
1922 case Intrinsic::masked_gather: {
1923 const Value *Mask = Args[1];
1924 bool VarMask = !isa<Constant>(Mask);
1925 Align Alignment = I->getParamAlign(0).valueOrOne();
1926 return thisT()->getMemIntrinsicInstrCost(
1927 MemIntrinsicCostAttributes(Intrinsic::masked_gather, RetTy, Args[0],
1928 VarMask, Alignment, I),
1929 CostKind);
1930 }
1931 case Intrinsic::masked_compressstore: {
1932 const Value *Data = Args[0];
1933 const Value *Mask = Args[2];
1934 Align Alignment = I->getParamAlign(1).valueOrOne();
1935 return thisT()->getMemIntrinsicInstrCost(
1936 MemIntrinsicCostAttributes(IID, Data->getType(), !isa<Constant>(Mask),
1937 Alignment, I),
1938 CostKind);
1939 }
1940 case Intrinsic::masked_expandload: {
1941 const Value *Mask = Args[1];
1942 Align Alignment = I->getParamAlign(0).valueOrOne();
1943 return thisT()->getMemIntrinsicInstrCost(
1944 MemIntrinsicCostAttributes(IID, RetTy, !isa<Constant>(Mask),
1945 Alignment, I),
1946 CostKind);
1947 }
1948 case Intrinsic::experimental_vp_strided_store: {
1949 const Value *Data = Args[0];
1950 const Value *Ptr = Args[1];
1951 const Value *Mask = Args[3];
1952 const Value *EVL = Args[4];
1953 bool VarMask = !isa<Constant>(Mask) || !isa<Constant>(EVL);
1954 Type *EltTy = cast<VectorType>(Data->getType())->getElementType();
1955 Align Alignment =
1956 I->getParamAlign(1).value_or(thisT()->DL.getABITypeAlign(EltTy));
1957 return thisT()->getMemIntrinsicInstrCost(
1958 MemIntrinsicCostAttributes(IID, Data->getType(), Ptr, VarMask,
1959 Alignment, I),
1960 CostKind);
1961 }
1962 case Intrinsic::experimental_vp_strided_load: {
1963 const Value *Ptr = Args[0];
1964 const Value *Mask = Args[2];
1965 const Value *EVL = Args[3];
1966 bool VarMask = !isa<Constant>(Mask) || !isa<Constant>(EVL);
1967 Type *EltTy = cast<VectorType>(RetTy)->getElementType();
1968 Align Alignment =
1969 I->getParamAlign(0).value_or(thisT()->DL.getABITypeAlign(EltTy));
1970 return thisT()->getMemIntrinsicInstrCost(
1971 MemIntrinsicCostAttributes(IID, RetTy, Ptr, VarMask, Alignment, I),
1972 CostKind);
1973 }
1974 case Intrinsic::stepvector: {
1975 if (isa<ScalableVectorType>(RetTy))
1977 // The cost of materialising a constant integer vector.
1979 }
1980 case Intrinsic::vector_extract: {
1981 // FIXME: Handle case where a scalable vector is extracted from a scalable
1982 // vector
1983 if (isa<ScalableVectorType>(RetTy))
1985 unsigned Index = cast<ConstantInt>(Args[1])->getZExtValue();
1986 return thisT()->getShuffleCost(TTI::SK_ExtractSubvector,
1987 cast<VectorType>(RetTy),
1988 cast<VectorType>(Args[0]->getType()), {},
1989 CostKind, Index, cast<VectorType>(RetTy));
1990 }
1991 case Intrinsic::vector_insert: {
1992 // FIXME: Handle case where a scalable vector is inserted into a scalable
1993 // vector
1994 if (isa<ScalableVectorType>(Args[1]->getType()))
1996 unsigned Index = cast<ConstantInt>(Args[2])->getZExtValue();
1997 return thisT()->getShuffleCost(
1999 cast<VectorType>(Args[0]->getType()), {}, CostKind, Index,
2000 cast<VectorType>(Args[1]->getType()));
2001 }
2002 case Intrinsic::vector_splice_left:
2003 case Intrinsic::vector_splice_right: {
2004 unsigned Index = cast<ConstantInt>(Args[2])->getZExtValue();
2005 return thisT()->getShuffleCost(
2007 cast<VectorType>(Args[0]->getType()), {}, CostKind,
2008 IID == Intrinsic::vector_splice_left ? Index : -Index,
2009 cast<VectorType>(RetTy));
2010 }
2011 case Intrinsic::vector_reduce_add:
2012 case Intrinsic::vector_reduce_mul:
2013 case Intrinsic::vector_reduce_and:
2014 case Intrinsic::vector_reduce_or:
2015 case Intrinsic::vector_reduce_xor:
2016 case Intrinsic::vector_reduce_smax:
2017 case Intrinsic::vector_reduce_smin:
2018 case Intrinsic::vector_reduce_fmax:
2019 case Intrinsic::vector_reduce_fmin:
2020 case Intrinsic::vector_reduce_fmaximum:
2021 case Intrinsic::vector_reduce_fminimum:
2022 case Intrinsic::vector_reduce_umax:
2023 case Intrinsic::vector_reduce_umin: {
2024 IntrinsicCostAttributes Attrs(IID, RetTy, Args[0]->getType(), FMF, I, 1);
2026 }
2027 case Intrinsic::vector_reduce_fadd:
2028 case Intrinsic::vector_reduce_fmul: {
2030 IID, RetTy, {Args[0]->getType(), Args[1]->getType()}, FMF, I, 1);
2032 }
2033 case Intrinsic::fshl:
2034 case Intrinsic::fshr: {
2035 const Value *X = Args[0];
2036 const Value *Y = Args[1];
2037 const Value *Z = Args[2];
2040 const TTI::OperandValueInfo OpInfoZ = TTI::getOperandInfo(Z);
2041
2042 // fshl: (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
2043 // fshr: (X << (BW - (Z % BW))) | (Y >> (Z % BW))
2045 Cost +=
2046 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy, CostKind);
2047 Cost +=
2048 thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy, CostKind);
2049 Cost += thisT()->getArithmeticInstrCost(
2050 BinaryOperator::Shl, RetTy, CostKind, OpInfoX,
2051 {OpInfoZ.Kind, TTI::OP_None});
2052 Cost += thisT()->getArithmeticInstrCost(
2053 BinaryOperator::LShr, RetTy, CostKind, OpInfoY,
2054 {OpInfoZ.Kind, TTI::OP_None});
2055 // Non-constant shift amounts requires a modulo. If the typesize is a
2056 // power-2 then this will be converted to an and, otherwise it will use a
2057 // urem.
2058 if (!OpInfoZ.isConstant())
2059 Cost += thisT()->getArithmeticInstrCost(
2060 isPowerOf2_32(RetTy->getScalarSizeInBits()) ? BinaryOperator::And
2061 : BinaryOperator::URem,
2062 RetTy, CostKind, OpInfoZ,
2063 {TTI::OK_UniformConstantValue, TTI::OP_None});
2064 // For non-rotates (X != Y) we must add shift-by-zero handling costs.
2065 if (X != Y) {
2066 Type *CondTy = RetTy->getWithNewBitWidth(1);
2067 Cost +=
2068 thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2070 Cost +=
2071 thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2073 }
2074 return Cost;
2075 }
2076 case Intrinsic::experimental_cttz_elts: {
2077 EVT ArgType = getTLI()->getValueType(DL, ICA.getArgTypes()[0], true);
2078
2079 // If we're not expanding the intrinsic then we assume this is cheap
2080 // to implement.
2081 if (!getTLI()->shouldExpandCttzElements(ArgType))
2082 return getTypeLegalizationCost(RetTy).first;
2083
2084 // TODO: The costs below reflect the expansion code in
2085 // SelectionDAGBuilder, but we may want to sacrifice some accuracy in
2086 // favour of compile time.
2087
2088 // Find the smallest "sensible" element type to use for the expansion.
2089 bool ZeroIsPoison = !cast<ConstantInt>(Args[1])->isZero();
2090 ConstantRange VScaleRange(APInt(64, 1), APInt::getZero(64));
2091 if (isa<ScalableVectorType>(ICA.getArgTypes()[0]) && I && I->getCaller())
2092 VScaleRange = getVScaleRange(I->getCaller(), 64);
2093
2094 unsigned EltWidth = getTLI()->getBitWidthForCttzElements(
2095 RetTy, ArgType.getVectorElementCount(), ZeroIsPoison, &VScaleRange);
2096 Type *NewEltTy = IntegerType::getIntNTy(RetTy->getContext(), EltWidth);
2097
2098 // Create the new vector type & get the vector length
2099 Type *NewVecTy = VectorType::get(
2100 NewEltTy, cast<VectorType>(Args[0]->getType())->getElementCount());
2101
2102 IntrinsicCostAttributes StepVecAttrs(Intrinsic::stepvector, NewVecTy, {},
2103 FMF);
2105 thisT()->getIntrinsicInstrCost(StepVecAttrs, CostKind);
2106
2107 Cost +=
2108 thisT()->getArithmeticInstrCost(Instruction::Sub, NewVecTy, CostKind);
2109 Cost += thisT()->getCastInstrCost(Instruction::SExt, NewVecTy,
2110 Args[0]->getType(),
2112 Cost +=
2113 thisT()->getArithmeticInstrCost(Instruction::And, NewVecTy, CostKind);
2114
2115 IntrinsicCostAttributes ReducAttrs(Intrinsic::vector_reduce_umax,
2116 NewEltTy, NewVecTy, FMF, I, 1);
2117 Cost += thisT()->getTypeBasedIntrinsicInstrCost(ReducAttrs, CostKind);
2118 Cost +=
2119 thisT()->getArithmeticInstrCost(Instruction::Sub, NewEltTy, CostKind);
2120
2121 return Cost;
2122 }
2123 case Intrinsic::get_active_lane_mask:
2124 case Intrinsic::experimental_vector_match:
2125 case Intrinsic::experimental_vector_histogram_add:
2126 case Intrinsic::experimental_vector_histogram_uadd_sat:
2127 case Intrinsic::experimental_vector_histogram_umax:
2128 case Intrinsic::experimental_vector_histogram_umin:
2129 return thisT()->getTypeBasedIntrinsicInstrCost(ICA, CostKind);
2130 case Intrinsic::modf:
2131 case Intrinsic::sincos:
2132 case Intrinsic::sincospi: {
2133 std::optional<unsigned> CallRetElementIndex;
2134 // The first element of the modf result is returned by value in the
2135 // libcall.
2136 if (ICA.getID() == Intrinsic::modf)
2137 CallRetElementIndex = 0;
2138
2139 if (auto Cost = getMultipleResultIntrinsicVectorLibCallCost(
2140 ICA, CostKind, CallRetElementIndex))
2141 return *Cost;
2142 // Otherwise, fallback to default scalarization cost.
2143 break;
2144 }
2145 case Intrinsic::loop_dependence_war_mask:
2146 case Intrinsic::loop_dependence_raw_mask: {
2147 // Compute the cost of the expanded version of these intrinsics:
2148 //
2149 // The possible expansions are...
2150 //
2151 // loop_dependence_war_mask:
2152 // diff = (ptrB - ptrA) / eltSize
2153 // cmp = icmp sle diff, 0
2154 // upper_bound = select cmp, -1, diff
2155 // mask = get_active_lane_mask 0, upper_bound
2156 //
2157 // loop_dependence_raw_mask:
2158 // diff = (abs(ptrB - ptrA)) / eltSize
2159 // cmp = icmp eq diff, 0
2160 // upper_bound = select cmp, -1, diff
2161 // mask = get_active_lane_mask 0, upper_bound
2162 //
2163 auto *PtrTy = cast<PointerType>(ICA.getArgTypes()[0]);
2164 Type *IntPtrTy = IntegerType::getIntNTy(
2165 RetTy->getContext(), thisT()->getDataLayout().getPointerSizeInBits(
2166 PtrTy->getAddressSpace()));
2167 bool IsReadAfterWrite = IID == Intrinsic::loop_dependence_raw_mask;
2168
2170 thisT()->getArithmeticInstrCost(Instruction::Sub, IntPtrTy, CostKind);
2171 if (IsReadAfterWrite) {
2172 IntrinsicCostAttributes AbsAttrs(Intrinsic::abs, IntPtrTy, {IntPtrTy},
2173 {});
2174 Cost += thisT()->getIntrinsicInstrCost(AbsAttrs, CostKind);
2175 }
2176
2177 TTI::OperandValueInfo EltSizeOpInfo =
2178 TTI::getOperandInfo(ICA.getArgs()[2]);
2179 Cost += thisT()->getArithmeticInstrCost(Instruction::SDiv, IntPtrTy,
2180 CostKind, {}, EltSizeOpInfo);
2181
2182 Type *CondTy = IntegerType::getInt1Ty(RetTy->getContext());
2183 CmpInst::Predicate Pred =
2184 IsReadAfterWrite ? CmpInst::ICMP_EQ : CmpInst::ICMP_SLE;
2185 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CondTy,
2186 IntPtrTy, Pred, CostKind);
2187 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, IntPtrTy,
2188 CondTy, Pred, CostKind);
2189
2190 IntrinsicCostAttributes Attrs(Intrinsic::get_active_lane_mask, RetTy,
2191 {IntPtrTy, IntPtrTy}, FMF);
2192 Cost += thisT()->getIntrinsicInstrCost(Attrs, CostKind);
2193 return Cost;
2194 }
2195 }
2196
2197 // Assume that we need to scalarize this intrinsic.)
2198 // Compute the scalarization overhead based on Args for a vector
2199 // intrinsic.
2200 InstructionCost ScalarizationCost = InstructionCost::getInvalid();
2201 if (RetVF.isVector() && !RetVF.isScalable()) {
2202 ScalarizationCost = 0;
2203 if (!RetTy->isVoidTy()) {
2204 for (Type *VectorTy : getContainedTypes(RetTy)) {
2205 ScalarizationCost += getScalarizationOverhead(
2206 cast<VectorType>(VectorTy),
2207 /*Insert=*/true, /*Extract=*/false, CostKind);
2208 }
2209 }
2210 ScalarizationCost += getOperandsScalarizationOverhead(
2211 filterConstantAndDuplicatedOperands(Args, ICA.getArgTypes()),
2212 CostKind);
2213 }
2214
2215 IntrinsicCostAttributes Attrs(IID, RetTy, ICA.getArgTypes(), FMF, I,
2216 ScalarizationCost);
2217 return thisT()->getTypeBasedIntrinsicInstrCost(Attrs, CostKind);
2218 }
2219
2220 /// Get intrinsic cost based on argument types.
2221 /// If ScalarizationCostPassed is std::numeric_limits<unsigned>::max(), the
2222 /// cost of scalarizing the arguments and the return value will be computed
2223 /// based on types.
2227 Intrinsic::ID IID = ICA.getID();
2228 Type *RetTy = ICA.getReturnType();
2229 const SmallVectorImpl<Type *> &Tys = ICA.getArgTypes();
2230 FastMathFlags FMF = ICA.getFlags();
2231 InstructionCost ScalarizationCostPassed = ICA.getScalarizationCost();
2232 bool SkipScalarizationCost = ICA.skipScalarizationCost();
2233
2234 VectorType *VecOpTy = nullptr;
2235 if (!Tys.empty()) {
2236 // The vector reduction operand is operand 0 except for fadd/fmul.
2237 // Their operand 0 is a scalar start value, so the vector op is operand 1.
2238 unsigned VecTyIndex = 0;
2239 if (IID == Intrinsic::vector_reduce_fadd ||
2240 IID == Intrinsic::vector_reduce_fmul)
2241 VecTyIndex = 1;
2242 assert(Tys.size() > VecTyIndex && "Unexpected IntrinsicCostAttributes");
2243 VecOpTy = dyn_cast<VectorType>(Tys[VecTyIndex]);
2244 }
2245
2246 // Library call cost - other than size, make it expensive.
2247 unsigned SingleCallCost = CostKind == TTI::TCK_CodeSize ? 1 : 10;
2248 unsigned ISD = 0;
2249 switch (IID) {
2250 default: {
2251 // Scalable vectors cannot be scalarized, so return Invalid.
2252 if (isa<ScalableVectorType>(RetTy) || any_of(Tys, [](const Type *Ty) {
2253 return isa<ScalableVectorType>(Ty);
2254 }))
2256
2257 // Assume that we need to scalarize this intrinsic.
2258 InstructionCost ScalarizationCost =
2259 SkipScalarizationCost ? ScalarizationCostPassed : 0;
2260 unsigned ScalarCalls = 1;
2261 Type *ScalarRetTy = RetTy;
2262 if (auto *RetVTy = dyn_cast<VectorType>(RetTy)) {
2263 if (!SkipScalarizationCost)
2264 ScalarizationCost = getScalarizationOverhead(
2265 RetVTy, /*Insert*/ true, /*Extract*/ false, CostKind);
2266 ScalarCalls = std::max(ScalarCalls,
2268 ScalarRetTy = RetTy->getScalarType();
2269 }
2270 SmallVector<Type *, 4> ScalarTys;
2271 for (Type *Ty : Tys) {
2272 if (auto *VTy = dyn_cast<VectorType>(Ty)) {
2273 if (!SkipScalarizationCost)
2274 ScalarizationCost += getScalarizationOverhead(
2275 VTy, /*Insert*/ false, /*Extract*/ true, CostKind);
2276 ScalarCalls = std::max(ScalarCalls,
2278 Ty = Ty->getScalarType();
2279 }
2280 ScalarTys.push_back(Ty);
2281 }
2282 if (ScalarCalls == 1)
2283 return 1; // Return cost of a scalar intrinsic. Assume it to be cheap.
2284
2285 IntrinsicCostAttributes ScalarAttrs(IID, ScalarRetTy, ScalarTys, FMF);
2286 InstructionCost ScalarCost =
2287 thisT()->getIntrinsicInstrCost(ScalarAttrs, CostKind);
2288
2289 return ScalarCalls * ScalarCost + ScalarizationCost;
2290 }
2291 // Look for intrinsics that can be lowered directly or turned into a scalar
2292 // intrinsic call.
2293 case Intrinsic::sqrt:
2294 ISD = ISD::FSQRT;
2295 break;
2296 case Intrinsic::sin:
2297 ISD = ISD::FSIN;
2298 break;
2299 case Intrinsic::cos:
2300 ISD = ISD::FCOS;
2301 break;
2302 case Intrinsic::sincos:
2303 ISD = ISD::FSINCOS;
2304 break;
2305 case Intrinsic::sincospi:
2307 break;
2308 case Intrinsic::modf:
2309 ISD = ISD::FMODF;
2310 break;
2311 case Intrinsic::tan:
2312 ISD = ISD::FTAN;
2313 break;
2314 case Intrinsic::asin:
2315 ISD = ISD::FASIN;
2316 break;
2317 case Intrinsic::acos:
2318 ISD = ISD::FACOS;
2319 break;
2320 case Intrinsic::atan:
2321 ISD = ISD::FATAN;
2322 break;
2323 case Intrinsic::atan2:
2324 ISD = ISD::FATAN2;
2325 break;
2326 case Intrinsic::sinh:
2327 ISD = ISD::FSINH;
2328 break;
2329 case Intrinsic::cosh:
2330 ISD = ISD::FCOSH;
2331 break;
2332 case Intrinsic::tanh:
2333 ISD = ISD::FTANH;
2334 break;
2335 case Intrinsic::exp:
2336 ISD = ISD::FEXP;
2337 break;
2338 case Intrinsic::exp2:
2339 ISD = ISD::FEXP2;
2340 break;
2341 case Intrinsic::exp10:
2342 ISD = ISD::FEXP10;
2343 break;
2344 case Intrinsic::log:
2345 ISD = ISD::FLOG;
2346 break;
2347 case Intrinsic::log10:
2348 ISD = ISD::FLOG10;
2349 break;
2350 case Intrinsic::log2:
2351 ISD = ISD::FLOG2;
2352 break;
2353 case Intrinsic::ldexp:
2354 ISD = ISD::FLDEXP;
2355 break;
2356 case Intrinsic::fabs:
2357 ISD = ISD::FABS;
2358 break;
2359 case Intrinsic::canonicalize:
2361 break;
2362 case Intrinsic::minnum:
2363 ISD = ISD::FMINNUM;
2364 break;
2365 case Intrinsic::maxnum:
2366 ISD = ISD::FMAXNUM;
2367 break;
2368 case Intrinsic::minimum:
2370 break;
2371 case Intrinsic::maximum:
2373 break;
2374 case Intrinsic::minimumnum:
2376 break;
2377 case Intrinsic::maximumnum:
2379 break;
2380 case Intrinsic::copysign:
2382 break;
2383 case Intrinsic::floor:
2384 ISD = ISD::FFLOOR;
2385 break;
2386 case Intrinsic::ceil:
2387 ISD = ISD::FCEIL;
2388 break;
2389 case Intrinsic::trunc:
2390 ISD = ISD::FTRUNC;
2391 break;
2392 case Intrinsic::nearbyint:
2394 break;
2395 case Intrinsic::rint:
2396 ISD = ISD::FRINT;
2397 break;
2398 case Intrinsic::lrint:
2399 ISD = ISD::LRINT;
2400 break;
2401 case Intrinsic::llrint:
2402 ISD = ISD::LLRINT;
2403 break;
2404 case Intrinsic::round:
2405 ISD = ISD::FROUND;
2406 break;
2407 case Intrinsic::roundeven:
2409 break;
2410 case Intrinsic::lround:
2411 ISD = ISD::LROUND;
2412 break;
2413 case Intrinsic::llround:
2414 ISD = ISD::LLROUND;
2415 break;
2416 case Intrinsic::pow:
2417 ISD = ISD::FPOW;
2418 break;
2419 case Intrinsic::fma:
2420 ISD = ISD::FMA;
2421 break;
2422 case Intrinsic::fmuladd:
2423 ISD = ISD::FMA;
2424 break;
2425 case Intrinsic::experimental_constrained_fmuladd:
2427 break;
2428 // FIXME: We should return 0 whenever getIntrinsicCost == TCC_Free.
2429 case Intrinsic::lifetime_start:
2430 case Intrinsic::lifetime_end:
2431 case Intrinsic::sideeffect:
2432 case Intrinsic::pseudoprobe:
2433 case Intrinsic::arithmetic_fence:
2434 return 0;
2435 case Intrinsic::masked_store: {
2436 Type *Ty = Tys[0];
2437 Align TyAlign = thisT()->DL.getABITypeAlign(Ty);
2438 return thisT()->getMemIntrinsicInstrCost(
2439 MemIntrinsicCostAttributes(IID, Ty, TyAlign, 0), CostKind);
2440 }
2441 case Intrinsic::masked_load: {
2442 Type *Ty = RetTy;
2443 Align TyAlign = thisT()->DL.getABITypeAlign(Ty);
2444 return thisT()->getMemIntrinsicInstrCost(
2445 MemIntrinsicCostAttributes(IID, Ty, TyAlign, 0), CostKind);
2446 }
2447 case Intrinsic::experimental_vp_strided_store: {
2448 auto *Ty = cast<VectorType>(ICA.getArgTypes()[0]);
2449 Align Alignment = thisT()->DL.getABITypeAlign(Ty->getElementType());
2450 return thisT()->getMemIntrinsicInstrCost(
2451 MemIntrinsicCostAttributes(IID, Ty, /*Ptr=*/nullptr,
2452 /*VariableMask=*/true, Alignment,
2453 ICA.getInst()),
2454 CostKind);
2455 }
2456 case Intrinsic::experimental_vp_strided_load: {
2457 auto *Ty = cast<VectorType>(ICA.getReturnType());
2458 Align Alignment = thisT()->DL.getABITypeAlign(Ty->getElementType());
2459 return thisT()->getMemIntrinsicInstrCost(
2460 MemIntrinsicCostAttributes(IID, Ty, /*Ptr=*/nullptr,
2461 /*VariableMask=*/true, Alignment,
2462 ICA.getInst()),
2463 CostKind);
2464 }
2465 case Intrinsic::vector_reduce_add:
2466 case Intrinsic::vector_reduce_mul:
2467 case Intrinsic::vector_reduce_and:
2468 case Intrinsic::vector_reduce_or:
2469 case Intrinsic::vector_reduce_xor:
2470 return thisT()->getArithmeticReductionCost(
2471 getArithmeticReductionInstruction(IID), VecOpTy, std::nullopt,
2472 CostKind);
2473 case Intrinsic::vector_reduce_fadd:
2474 case Intrinsic::vector_reduce_fmul:
2475 return thisT()->getArithmeticReductionCost(
2476 getArithmeticReductionInstruction(IID), VecOpTy, FMF, CostKind);
2477 case Intrinsic::vector_reduce_smax:
2478 case Intrinsic::vector_reduce_smin:
2479 case Intrinsic::vector_reduce_umax:
2480 case Intrinsic::vector_reduce_umin:
2481 case Intrinsic::vector_reduce_fmax:
2482 case Intrinsic::vector_reduce_fmin:
2483 case Intrinsic::vector_reduce_fmaximum:
2484 case Intrinsic::vector_reduce_fminimum:
2485 return thisT()->getMinMaxReductionCost(getMinMaxReductionIntrinsicOp(IID),
2486 VecOpTy, ICA.getFlags(), CostKind);
2487 case Intrinsic::experimental_vector_match: {
2488 auto *SearchTy = cast<VectorType>(ICA.getArgTypes()[0]);
2489 auto *NeedleTy = cast<FixedVectorType>(ICA.getArgTypes()[1]);
2490 unsigned SearchSize = NeedleTy->getNumElements();
2491
2492 // If we're not expanding the intrinsic then we assume this is cheap to
2493 // implement.
2494 EVT SearchVT = getTLI()->getValueType(DL, SearchTy);
2495 if (!getTLI()->shouldExpandVectorMatch(SearchVT, SearchSize))
2496 return getTypeLegalizationCost(RetTy).first;
2497
2498 // Approximate the cost based on the expansion code in
2499 // SelectionDAGBuilder.
2501 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, NeedleTy,
2502 CostKind, 1, nullptr, nullptr);
2503 Cost += thisT()->getVectorInstrCost(Instruction::InsertElement, SearchTy,
2504 CostKind, 0, nullptr, nullptr);
2505 Cost += thisT()->getShuffleCost(TTI::SK_Broadcast, SearchTy, SearchTy, {},
2506 CostKind, 0, nullptr);
2507 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, SearchTy, RetTy,
2509 Cost +=
2510 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy, CostKind);
2511 Cost *= SearchSize;
2512 Cost +=
2513 thisT()->getArithmeticInstrCost(BinaryOperator::And, RetTy, CostKind);
2514 return Cost;
2515 }
2516 case Intrinsic::vector_reverse:
2517 return thisT()->getShuffleCost(TTI::SK_Reverse, cast<VectorType>(RetTy),
2518 cast<VectorType>(ICA.getArgTypes()[0]), {},
2519 CostKind, 0, cast<VectorType>(RetTy));
2520 case Intrinsic::experimental_vector_histogram_add:
2521 case Intrinsic::experimental_vector_histogram_uadd_sat:
2522 case Intrinsic::experimental_vector_histogram_umax:
2523 case Intrinsic::experimental_vector_histogram_umin: {
2525 Type *EltTy = ICA.getArgTypes()[1];
2526
2527 // Targets with scalable vectors must handle this on their own.
2528 if (!PtrsTy)
2530
2531 Align Alignment = thisT()->DL.getABITypeAlign(EltTy);
2533 Cost += thisT()->getVectorInstrCost(Instruction::ExtractElement, PtrsTy,
2534 CostKind, 1, nullptr, nullptr);
2535 Cost += thisT()->getMemoryOpCost(Instruction::Load, EltTy, Alignment, 0,
2536 CostKind);
2537 switch (IID) {
2538 default:
2539 llvm_unreachable("Unhandled histogram update operation.");
2540 case Intrinsic::experimental_vector_histogram_add:
2541 Cost +=
2542 thisT()->getArithmeticInstrCost(Instruction::Add, EltTy, CostKind);
2543 break;
2544 case Intrinsic::experimental_vector_histogram_uadd_sat: {
2545 IntrinsicCostAttributes UAddSat(Intrinsic::uadd_sat, EltTy, {EltTy});
2546 Cost += thisT()->getIntrinsicInstrCost(UAddSat, CostKind);
2547 break;
2548 }
2549 case Intrinsic::experimental_vector_histogram_umax: {
2550 IntrinsicCostAttributes UMax(Intrinsic::umax, EltTy, {EltTy});
2551 Cost += thisT()->getIntrinsicInstrCost(UMax, CostKind);
2552 break;
2553 }
2554 case Intrinsic::experimental_vector_histogram_umin: {
2555 IntrinsicCostAttributes UMin(Intrinsic::umin, EltTy, {EltTy});
2556 Cost += thisT()->getIntrinsicInstrCost(UMin, CostKind);
2557 break;
2558 }
2559 }
2560 Cost += thisT()->getMemoryOpCost(Instruction::Store, EltTy, Alignment, 0,
2561 CostKind);
2562 Cost *= PtrsTy->getNumElements();
2563 return Cost;
2564 }
2565 case Intrinsic::get_active_lane_mask: {
2566 Type *ArgTy = ICA.getArgTypes()[0];
2567 EVT ResVT = getTLI()->getValueType(DL, RetTy, true);
2568 EVT ArgVT = getTLI()->getValueType(DL, ArgTy, true);
2569
2570 // If we're not expanding the intrinsic then we assume this is cheap
2571 // to implement.
2572 if (!getTLI()->shouldExpandGetActiveLaneMask(ResVT, ArgVT))
2573 return getTypeLegalizationCost(RetTy).first;
2574
2575 // Create the expanded types that will be used to calculate the uadd_sat
2576 // operation.
2577 Type *ExpRetTy =
2578 VectorType::get(ArgTy, cast<VectorType>(RetTy)->getElementCount());
2579 IntrinsicCostAttributes Attrs(Intrinsic::uadd_sat, ExpRetTy, {}, FMF);
2581 thisT()->getTypeBasedIntrinsicInstrCost(Attrs, CostKind);
2582 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, ExpRetTy, RetTy,
2584 return Cost;
2585 }
2586 case Intrinsic::experimental_memset_pattern:
2587 // This cost is set to match the cost of the memset_pattern16 libcall.
2588 // It should likely be re-evaluated after migration to this intrinsic
2589 // is complete.
2590 return TTI::TCC_Basic * 4;
2591 case Intrinsic::abs:
2592 ISD = ISD::ABS;
2593 break;
2594 case Intrinsic::fshl:
2595 ISD = ISD::FSHL;
2596 break;
2597 case Intrinsic::fshr:
2598 ISD = ISD::FSHR;
2599 break;
2600 case Intrinsic::smax:
2601 ISD = ISD::SMAX;
2602 break;
2603 case Intrinsic::smin:
2604 ISD = ISD::SMIN;
2605 break;
2606 case Intrinsic::umax:
2607 ISD = ISD::UMAX;
2608 break;
2609 case Intrinsic::umin:
2610 ISD = ISD::UMIN;
2611 break;
2612 case Intrinsic::sadd_sat:
2613 ISD = ISD::SADDSAT;
2614 break;
2615 case Intrinsic::ssub_sat:
2616 ISD = ISD::SSUBSAT;
2617 break;
2618 case Intrinsic::uadd_sat:
2619 ISD = ISD::UADDSAT;
2620 break;
2621 case Intrinsic::usub_sat:
2622 ISD = ISD::USUBSAT;
2623 break;
2624 case Intrinsic::smul_fix:
2625 ISD = ISD::SMULFIX;
2626 break;
2627 case Intrinsic::umul_fix:
2628 ISD = ISD::UMULFIX;
2629 break;
2630 case Intrinsic::sadd_with_overflow:
2631 ISD = ISD::SADDO;
2632 break;
2633 case Intrinsic::ssub_with_overflow:
2634 ISD = ISD::SSUBO;
2635 break;
2636 case Intrinsic::uadd_with_overflow:
2637 ISD = ISD::UADDO;
2638 break;
2639 case Intrinsic::usub_with_overflow:
2640 ISD = ISD::USUBO;
2641 break;
2642 case Intrinsic::smul_with_overflow:
2643 ISD = ISD::SMULO;
2644 break;
2645 case Intrinsic::umul_with_overflow:
2646 ISD = ISD::UMULO;
2647 break;
2648 case Intrinsic::fptosi_sat:
2649 case Intrinsic::fptoui_sat: {
2650 std::pair<InstructionCost, MVT> SrcLT = getTypeLegalizationCost(Tys[0]);
2651 std::pair<InstructionCost, MVT> RetLT = getTypeLegalizationCost(RetTy);
2652
2653 // For cast instructions, types are different between source and
2654 // destination. Also need to check if the source type can be legalize.
2655 if (!SrcLT.first.isValid() || !RetLT.first.isValid())
2657 ISD = IID == Intrinsic::fptosi_sat ? ISD::FP_TO_SINT_SAT
2659 break;
2660 }
2661 case Intrinsic::ctpop:
2662 ISD = ISD::CTPOP;
2663 // In case of legalization use TCC_Expensive. This is cheaper than a
2664 // library call but still not a cheap instruction.
2665 SingleCallCost = TargetTransformInfo::TCC_Expensive;
2666 break;
2667 case Intrinsic::ctlz:
2668 ISD = ISD::CTLZ;
2669 break;
2670 case Intrinsic::cttz:
2671 ISD = ISD::CTTZ;
2672 break;
2673 case Intrinsic::bswap:
2674 ISD = ISD::BSWAP;
2675 break;
2676 case Intrinsic::bitreverse:
2678 break;
2679 case Intrinsic::ucmp:
2680 ISD = ISD::UCMP;
2681 break;
2682 case Intrinsic::scmp:
2683 ISD = ISD::SCMP;
2684 break;
2685 }
2686
2687 auto *ST = dyn_cast<StructType>(RetTy);
2688 Type *LegalizeTy = ST ? ST->getContainedType(0) : RetTy;
2689 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(LegalizeTy);
2690
2691 const TargetLoweringBase *TLI = getTLI();
2692
2693 if (TLI->isOperationLegalOrPromote(ISD, LT.second)) {
2694 if (IID == Intrinsic::fabs && LT.second.isFloatingPoint() &&
2695 TLI->isFAbsFree(LT.second)) {
2696 return 0;
2697 }
2698
2699 // The operation is legal. Assume it costs 1.
2700 // If the type is split to multiple registers, assume that there is some
2701 // overhead to this.
2702 // TODO: Once we have extract/insert subvector cost we need to use them.
2703 if (LT.first > 1)
2704 return (LT.first * 2);
2705 else
2706 return (LT.first * 1);
2707 } else if (TLI->isOperationCustom(ISD, LT.second)) {
2708 // If the operation is custom lowered then assume
2709 // that the code is twice as expensive.
2710 return (LT.first * 2);
2711 }
2712
2713 switch (IID) {
2714 case Intrinsic::fmuladd: {
2715 // If we can't lower fmuladd into an FMA estimate the cost as a floating
2716 // point mul followed by an add.
2717
2718 return thisT()->getArithmeticInstrCost(BinaryOperator::FMul, RetTy,
2719 CostKind) +
2720 thisT()->getArithmeticInstrCost(BinaryOperator::FAdd, RetTy,
2721 CostKind);
2722 }
2723 case Intrinsic::experimental_constrained_fmuladd: {
2724 IntrinsicCostAttributes FMulAttrs(
2725 Intrinsic::experimental_constrained_fmul, RetTy, Tys);
2726 IntrinsicCostAttributes FAddAttrs(
2727 Intrinsic::experimental_constrained_fadd, RetTy, Tys);
2728 return thisT()->getIntrinsicInstrCost(FMulAttrs, CostKind) +
2729 thisT()->getIntrinsicInstrCost(FAddAttrs, CostKind);
2730 }
2731 case Intrinsic::smin:
2732 case Intrinsic::smax:
2733 case Intrinsic::umin:
2734 case Intrinsic::umax: {
2735 // minmax(X,Y) = select(icmp(X,Y),X,Y)
2736 Type *CondTy = RetTy->getWithNewBitWidth(1);
2737 bool IsUnsigned = IID == Intrinsic::umax || IID == Intrinsic::umin;
2738 CmpInst::Predicate Pred =
2739 IsUnsigned ? CmpInst::ICMP_UGT : CmpInst::ICMP_SGT;
2741 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2742 Pred, CostKind);
2743 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2744 Pred, CostKind);
2745 return Cost;
2746 }
2747 case Intrinsic::sadd_with_overflow:
2748 case Intrinsic::ssub_with_overflow: {
2749 Type *SumTy = RetTy->getContainedType(0);
2750 Type *OverflowTy = RetTy->getContainedType(1);
2751 unsigned Opcode = IID == Intrinsic::sadd_with_overflow
2752 ? BinaryOperator::Add
2753 : BinaryOperator::Sub;
2754
2755 // Add:
2756 // Overflow -> (Result < LHS) ^ (RHS < 0)
2757 // Sub:
2758 // Overflow -> (Result < LHS) ^ (RHS > 0)
2760 Cost += thisT()->getArithmeticInstrCost(Opcode, SumTy, CostKind);
2761 Cost +=
2762 2 * thisT()->getCmpSelInstrCost(Instruction::ICmp, SumTy, OverflowTy,
2764 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::Xor, OverflowTy,
2765 CostKind);
2766 return Cost;
2767 }
2768 case Intrinsic::uadd_with_overflow:
2769 case Intrinsic::usub_with_overflow: {
2770 Type *SumTy = RetTy->getContainedType(0);
2771 Type *OverflowTy = RetTy->getContainedType(1);
2772 unsigned Opcode = IID == Intrinsic::uadd_with_overflow
2773 ? BinaryOperator::Add
2774 : BinaryOperator::Sub;
2775 CmpInst::Predicate Pred = IID == Intrinsic::uadd_with_overflow
2778
2780 Cost += thisT()->getArithmeticInstrCost(Opcode, SumTy, CostKind);
2781 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, SumTy,
2782 OverflowTy, Pred, CostKind);
2783 return Cost;
2784 }
2785 case Intrinsic::smul_with_overflow:
2786 case Intrinsic::umul_with_overflow: {
2787 Type *MulTy = RetTy->getContainedType(0);
2788 Type *OverflowTy = RetTy->getContainedType(1);
2789 unsigned ExtSize = MulTy->getScalarSizeInBits() * 2;
2790 Type *ExtTy = MulTy->getWithNewBitWidth(ExtSize);
2791 bool IsSigned = IID == Intrinsic::smul_with_overflow;
2792
2793 unsigned ExtOp = IsSigned ? Instruction::SExt : Instruction::ZExt;
2795
2797 Cost += 2 * thisT()->getCastInstrCost(ExtOp, ExtTy, MulTy, CCH, CostKind);
2798 Cost +=
2799 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy, CostKind);
2800 Cost += 2 * thisT()->getCastInstrCost(Instruction::Trunc, MulTy, ExtTy,
2801 CCH, CostKind);
2802 Cost += thisT()->getArithmeticInstrCost(
2803 Instruction::LShr, ExtTy, CostKind, {TTI::OK_AnyValue, TTI::OP_None},
2805
2806 if (IsSigned)
2807 Cost += thisT()->getArithmeticInstrCost(
2808 Instruction::AShr, MulTy, CostKind,
2811
2812 Cost += thisT()->getCmpSelInstrCost(
2813 BinaryOperator::ICmp, MulTy, OverflowTy, CmpInst::ICMP_NE, CostKind);
2814 return Cost;
2815 }
2816 case Intrinsic::sadd_sat:
2817 case Intrinsic::ssub_sat: {
2818 // Assume a default expansion.
2819 Type *CondTy = RetTy->getWithNewBitWidth(1);
2820
2821 Type *OpTy = StructType::create({RetTy, CondTy});
2822 Intrinsic::ID OverflowOp = IID == Intrinsic::sadd_sat
2823 ? Intrinsic::sadd_with_overflow
2824 : Intrinsic::ssub_with_overflow;
2826
2827 // SatMax -> Overflow && SumDiff < 0
2828 // SatMin -> Overflow && SumDiff >= 0
2830 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF,
2831 nullptr, ScalarizationCostPassed);
2832 Cost += thisT()->getIntrinsicInstrCost(Attrs, CostKind);
2833 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2834 Pred, CostKind);
2835 Cost += 2 * thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy,
2836 CondTy, Pred, CostKind);
2837 return Cost;
2838 }
2839 case Intrinsic::uadd_sat:
2840 case Intrinsic::usub_sat: {
2841 Type *CondTy = RetTy->getWithNewBitWidth(1);
2842
2843 Type *OpTy = StructType::create({RetTy, CondTy});
2844 Intrinsic::ID OverflowOp = IID == Intrinsic::uadd_sat
2845 ? Intrinsic::uadd_with_overflow
2846 : Intrinsic::usub_with_overflow;
2847
2849 IntrinsicCostAttributes Attrs(OverflowOp, OpTy, {RetTy, RetTy}, FMF,
2850 nullptr, ScalarizationCostPassed);
2851 Cost += thisT()->getIntrinsicInstrCost(Attrs, CostKind);
2852 Cost +=
2853 thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2855 return Cost;
2856 }
2857 case Intrinsic::smul_fix:
2858 case Intrinsic::umul_fix: {
2859 unsigned ExtSize = RetTy->getScalarSizeInBits() * 2;
2860 Type *ExtTy = RetTy->getWithNewBitWidth(ExtSize);
2861
2862 unsigned ExtOp =
2863 IID == Intrinsic::smul_fix ? Instruction::SExt : Instruction::ZExt;
2865
2867 Cost += 2 * thisT()->getCastInstrCost(ExtOp, ExtTy, RetTy, CCH, CostKind);
2868 Cost +=
2869 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy, CostKind);
2870 Cost += 2 * thisT()->getCastInstrCost(Instruction::Trunc, RetTy, ExtTy,
2871 CCH, CostKind);
2872 Cost += thisT()->getArithmeticInstrCost(
2873 Instruction::LShr, RetTy, CostKind, {TTI::OK_AnyValue, TTI::OP_None},
2875 Cost += thisT()->getArithmeticInstrCost(
2876 Instruction::Shl, RetTy, CostKind, {TTI::OK_AnyValue, TTI::OP_None},
2878 Cost += thisT()->getArithmeticInstrCost(Instruction::Or, RetTy, CostKind);
2879 return Cost;
2880 }
2881 case Intrinsic::abs: {
2882 // abs(X) = select(icmp(X,0),X,sub(0,X))
2883 Type *CondTy = RetTy->getWithNewBitWidth(1);
2886 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2887 Pred, CostKind);
2888 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2889 Pred, CostKind);
2890 // TODO: Should we add an OperandValueProperties::OP_Zero property?
2891 Cost += thisT()->getArithmeticInstrCost(
2892 BinaryOperator::Sub, RetTy, CostKind,
2894 return Cost;
2895 }
2896 case Intrinsic::fshl:
2897 case Intrinsic::fshr: {
2898 // fshl: (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
2899 // fshr: (X << (BW - (Z % BW))) | (Y >> (Z % BW))
2900 Type *CondTy = RetTy->getWithNewBitWidth(1);
2902 Cost +=
2903 thisT()->getArithmeticInstrCost(BinaryOperator::Or, RetTy, CostKind);
2904 Cost +=
2905 thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy, CostKind);
2906 Cost +=
2907 thisT()->getArithmeticInstrCost(BinaryOperator::Shl, RetTy, CostKind);
2908 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::LShr, RetTy,
2909 CostKind);
2910 // Non-constant shift amounts requires a modulo. If the typesize is a
2911 // power-2 then this will be converted to an and, otherwise it will use a
2912 // urem.
2913 Cost += thisT()->getArithmeticInstrCost(
2914 isPowerOf2_32(RetTy->getScalarSizeInBits()) ? BinaryOperator::And
2915 : BinaryOperator::URem,
2916 RetTy, CostKind, {TTI::OK_AnyValue, TTI::OP_None},
2917 {TTI::OK_UniformConstantValue, TTI::OP_None});
2918 // Shift-by-zero handling.
2919 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, RetTy, CondTy,
2921 Cost += thisT()->getCmpSelInstrCost(BinaryOperator::Select, RetTy, CondTy,
2923 return Cost;
2924 }
2925 case Intrinsic::fptosi_sat:
2926 case Intrinsic::fptoui_sat: {
2927 if (Tys.empty())
2928 break;
2929 Type *FromTy = Tys[0];
2930 bool IsSigned = IID == Intrinsic::fptosi_sat;
2931
2933 IntrinsicCostAttributes Attrs1(Intrinsic::minnum, FromTy,
2934 {FromTy, FromTy});
2935 Cost += thisT()->getIntrinsicInstrCost(Attrs1, CostKind);
2936 IntrinsicCostAttributes Attrs2(Intrinsic::maxnum, FromTy,
2937 {FromTy, FromTy});
2938 Cost += thisT()->getIntrinsicInstrCost(Attrs2, CostKind);
2939 Cost += thisT()->getCastInstrCost(
2940 IsSigned ? Instruction::FPToSI : Instruction::FPToUI, RetTy, FromTy,
2942 if (IsSigned) {
2943 Type *CondTy = RetTy->getWithNewBitWidth(1);
2944 Cost += thisT()->getCmpSelInstrCost(
2945 BinaryOperator::FCmp, FromTy, CondTy, CmpInst::FCMP_UNO, CostKind);
2946 Cost += thisT()->getCmpSelInstrCost(
2947 BinaryOperator::Select, RetTy, CondTy, CmpInst::FCMP_UNO, CostKind);
2948 }
2949 return Cost;
2950 }
2951 case Intrinsic::ucmp:
2952 case Intrinsic::scmp: {
2953 Type *CmpTy = Tys[0];
2954 Type *CondTy = RetTy->getWithNewBitWidth(1);
2956 thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CmpTy, CondTy,
2958 CostKind) +
2959 thisT()->getCmpSelInstrCost(BinaryOperator::ICmp, CmpTy, CondTy,
2961 CostKind);
2962
2963 EVT VT = TLI->getValueType(DL, CmpTy, true);
2965 // x < y ? -1 : (x > y ? 1 : 0)
2966 Cost += 2 * thisT()->getCmpSelInstrCost(
2967 BinaryOperator::Select, RetTy, CondTy,
2969 } else {
2970 // zext(x > y) - zext(x < y)
2971 Cost +=
2972 2 * thisT()->getCastInstrCost(CastInst::ZExt, RetTy, CondTy,
2974 Cost += thisT()->getArithmeticInstrCost(BinaryOperator::Sub, RetTy,
2975 CostKind);
2976 }
2977 return Cost;
2978 }
2979 case Intrinsic::maximumnum:
2980 case Intrinsic::minimumnum: {
2981 // On platform that support FMAXNUM_IEEE/FMINNUM_IEEE, we expand
2982 // maximumnum/minimumnum to
2983 // ARG0 = fcanonicalize ARG0, ARG0 // to quiet ARG0
2984 // ARG1 = fcanonicalize ARG1, ARG1 // to quiet ARG1
2985 // RESULT = MAXNUM_IEEE ARG0, ARG1 // or MINNUM_IEEE
2986 // FIXME: In LangRef, we claimed FMAXNUM has the same behaviour of
2987 // FMAXNUM_IEEE, while the backend hasn't migrated the code yet.
2988 // Finally, we will remove FMAXNUM_IEEE and FMINNUM_IEEE.
2989 int IeeeISD =
2990 IID == Intrinsic::maximumnum ? ISD::FMAXNUM_IEEE : ISD::FMINNUM_IEEE;
2991 if (TLI->isOperationLegal(IeeeISD, LT.second)) {
2992 IntrinsicCostAttributes FCanonicalizeAttrs(Intrinsic::canonicalize,
2993 RetTy, Tys[0]);
2994 InstructionCost FCanonicalizeCost =
2995 thisT()->getIntrinsicInstrCost(FCanonicalizeAttrs, CostKind);
2996 return LT.first + FCanonicalizeCost * 2;
2997 }
2998 break;
2999 }
3000 default:
3001 break;
3002 }
3003
3004 // Else, assume that we need to scalarize this intrinsic. For math builtins
3005 // this will emit a costly libcall, adding call overhead and spills. Make it
3006 // very expensive.
3007 if (isVectorizedTy(RetTy)) {
3008 ArrayRef<Type *> RetVTys = getContainedTypes(RetTy);
3009
3010 // Scalable vectors cannot be scalarized, so return Invalid.
3011 if (any_of(concat<Type *const>(RetVTys, Tys),
3012 [](Type *Ty) { return isa<ScalableVectorType>(Ty); }))
3014
3015 InstructionCost ScalarizationCost = ScalarizationCostPassed;
3016 if (!SkipScalarizationCost) {
3017 ScalarizationCost = 0;
3018 for (Type *RetVTy : RetVTys) {
3019 ScalarizationCost += getScalarizationOverhead(
3020 cast<VectorType>(RetVTy), /*Insert=*/true,
3021 /*Extract=*/false, CostKind);
3022 }
3023 }
3024
3025 unsigned ScalarCalls = getVectorizedTypeVF(RetTy).getFixedValue();
3026 SmallVector<Type *, 4> ScalarTys;
3027 for (Type *Ty : Tys) {
3028 if (Ty->isVectorTy())
3029 Ty = Ty->getScalarType();
3030 ScalarTys.push_back(Ty);
3031 }
3032 IntrinsicCostAttributes Attrs(IID, toScalarizedTy(RetTy), ScalarTys, FMF);
3033 InstructionCost ScalarCost =
3034 thisT()->getIntrinsicInstrCost(Attrs, CostKind);
3035 for (Type *Ty : Tys) {
3036 if (auto *VTy = dyn_cast<VectorType>(Ty)) {
3037 if (!ICA.skipScalarizationCost())
3038 ScalarizationCost += getScalarizationOverhead(
3039 VTy, /*Insert*/ false, /*Extract*/ true, CostKind);
3040 ScalarCalls = std::max(ScalarCalls,
3042 }
3043 }
3044 return ScalarCalls * ScalarCost + ScalarizationCost;
3045 }
3046
3047 // This is going to be turned into a library call, make it expensive.
3048 return SingleCallCost;
3049 }
3050
3051 /// Get memory intrinsic cost based on arguments.
3054 TTI::TargetCostKind CostKind) const override {
3055 unsigned Id = MICA.getID();
3056 Type *DataTy = MICA.getDataType();
3057 bool VariableMask = MICA.getVariableMask();
3058 Align Alignment = MICA.getAlignment();
3059
3060 switch (Id) {
3061 case Intrinsic::experimental_vp_strided_load:
3062 case Intrinsic::experimental_vp_strided_store: {
3063 unsigned Opcode = Id == Intrinsic::experimental_vp_strided_load
3064 ? Instruction::Load
3065 : Instruction::Store;
3066 // For a target without strided memory operations (or for an illegal
3067 // operation type on one which does), assume we lower to a gather/scatter
3068 // operation. (Which may in turn be scalarized.)
3069 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3070 VariableMask, true, CostKind);
3071 }
3072 case Intrinsic::masked_scatter:
3073 case Intrinsic::masked_gather:
3074 case Intrinsic::vp_scatter:
3075 case Intrinsic::vp_gather: {
3076 unsigned Opcode = (MICA.getID() == Intrinsic::masked_gather ||
3077 MICA.getID() == Intrinsic::vp_gather)
3078 ? Instruction::Load
3079 : Instruction::Store;
3080
3081 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3082 VariableMask, true, CostKind);
3083 }
3084 case Intrinsic::vp_load:
3085 case Intrinsic::vp_store:
3087 case Intrinsic::masked_load:
3088 case Intrinsic::masked_store: {
3089 unsigned Opcode =
3090 Id == Intrinsic::masked_load ? Instruction::Load : Instruction::Store;
3091 // TODO: Pass on AddressSpace when we have test coverage.
3092 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment, true, false,
3093 CostKind);
3094 }
3095 case Intrinsic::masked_compressstore:
3096 case Intrinsic::masked_expandload: {
3097 unsigned Opcode = MICA.getID() == Intrinsic::masked_expandload
3098 ? Instruction::Load
3099 : Instruction::Store;
3100 // Treat expand load/compress store as gather/scatter operation.
3101 // TODO: implement more precise cost estimation for these intrinsics.
3102 return getCommonMaskedMemoryOpCost(Opcode, DataTy, Alignment,
3103 VariableMask,
3104 /*IsGatherScatter*/ true, CostKind);
3105 }
3106 case Intrinsic::vp_load_ff:
3108 default:
3109 llvm_unreachable("unexpected intrinsic");
3110 }
3111 }
3112
3113 /// Compute a cost of the given call instruction.
3114 ///
3115 /// Compute the cost of calling function F with return type RetTy and
3116 /// argument types Tys. F might be nullptr, in this case the cost of an
3117 /// arbitrary call with the specified signature will be returned.
3118 /// This is used, for instance, when we estimate call of a vector
3119 /// counterpart of the given function.
3120 /// \param F Called function, might be nullptr.
3121 /// \param RetTy Return value types.
3122 /// \param Tys Argument types.
3123 /// \returns The cost of Call instruction.
3126 TTI::TargetCostKind CostKind) const override {
3127 return 10;
3128 }
3129
3130 unsigned getNumberOfParts(Type *Tp) const override {
3131 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp);
3132 if (!LT.first.isValid())
3133 return 0;
3134 // Try to find actual number of parts for non-power-of-2 elements as
3135 // ceil(num-of-elements/num-of-subtype-elements).
3136 if (auto *FTp = dyn_cast<FixedVectorType>(Tp);
3137 Tp && LT.second.isFixedLengthVector() &&
3138 !has_single_bit(FTp->getNumElements())) {
3139 if (auto *SubTp = dyn_cast_if_present<FixedVectorType>(
3140 EVT(LT.second).getTypeForEVT(Tp->getContext()));
3141 SubTp && SubTp->getElementType() == FTp->getElementType())
3142 return divideCeil(FTp->getNumElements(), SubTp->getNumElements());
3143 }
3144 return LT.first.getValue();
3145 }
3146
3149 TTI::TargetCostKind) const override {
3150 return 0;
3151 }
3152
3153 /// Try to calculate arithmetic and shuffle op costs for reduction intrinsics.
3154 /// We're assuming that reduction operation are performing the following way:
3155 ///
3156 /// %val1 = shufflevector<n x t> %val, <n x t> %undef,
3157 /// <n x i32> <i32 n/2, i32 n/2 + 1, ..., i32 n, i32 undef, ..., i32 undef>
3158 /// \----------------v-------------/ \----------v------------/
3159 /// n/2 elements n/2 elements
3160 /// %red1 = op <n x t> %val, <n x t> val1
3161 /// After this operation we have a vector %red1 where only the first n/2
3162 /// elements are meaningful, the second n/2 elements are undefined and can be
3163 /// dropped. All other operations are actually working with the vector of
3164 /// length n/2, not n, though the real vector length is still n.
3165 /// %val2 = shufflevector<n x t> %red1, <n x t> %undef,
3166 /// <n x i32> <i32 n/4, i32 n/4 + 1, ..., i32 n/2, i32 undef, ..., i32 undef>
3167 /// \----------------v-------------/ \----------v------------/
3168 /// n/4 elements 3*n/4 elements
3169 /// %red2 = op <n x t> %red1, <n x t> val2 - working with the vector of
3170 /// length n/2, the resulting vector has length n/4 etc.
3171 ///
3172 /// The cost model should take into account that the actual length of the
3173 /// vector is reduced on each iteration.
3176 // Targets must implement a default value for the scalable case, since
3177 // we don't know how many lanes the vector has.
3180
3181 Type *ScalarTy = Ty->getElementType();
3182 unsigned NumVecElts = cast<FixedVectorType>(Ty)->getNumElements();
3183 if ((Opcode == Instruction::Or || Opcode == Instruction::And) &&
3184 ScalarTy == IntegerType::getInt1Ty(Ty->getContext()) &&
3185 NumVecElts >= 2) {
3186 // Or reduction for i1 is represented as:
3187 // %val = bitcast <ReduxWidth x i1> to iReduxWidth
3188 // %res = cmp ne iReduxWidth %val, 0
3189 // And reduction for i1 is represented as:
3190 // %val = bitcast <ReduxWidth x i1> to iReduxWidth
3191 // %res = cmp eq iReduxWidth %val, 11111
3192 Type *ValTy = IntegerType::get(Ty->getContext(), NumVecElts);
3193 return thisT()->getCastInstrCost(Instruction::BitCast, ValTy, Ty,
3195 thisT()->getCmpSelInstrCost(Instruction::ICmp, ValTy,
3198 }
3199 unsigned NumReduxLevels = Log2_32(NumVecElts);
3200 InstructionCost ArithCost = 0;
3201 InstructionCost ShuffleCost = 0;
3202 std::pair<InstructionCost, MVT> LT = thisT()->getTypeLegalizationCost(Ty);
3203 unsigned LongVectorCount = 0;
3204 unsigned MVTLen =
3205 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
3206 while (NumVecElts > MVTLen) {
3207 NumVecElts /= 2;
3208 VectorType *SubTy = FixedVectorType::get(ScalarTy, NumVecElts);
3209 ShuffleCost += thisT()->getShuffleCost(
3210 TTI::SK_ExtractSubvector, SubTy, Ty, {}, CostKind, NumVecElts, SubTy);
3211 ArithCost += thisT()->getArithmeticInstrCost(Opcode, SubTy, CostKind);
3212 Ty = SubTy;
3213 ++LongVectorCount;
3214 }
3215
3216 NumReduxLevels -= LongVectorCount;
3217
3218 // The minimal length of the vector is limited by the real length of vector
3219 // operations performed on the current platform. That's why several final
3220 // reduction operations are performed on the vectors with the same
3221 // architecture-dependent length.
3222
3223 // By default reductions need one shuffle per reduction level.
3224 ShuffleCost +=
3225 NumReduxLevels * thisT()->getShuffleCost(TTI::SK_PermuteSingleSrc, Ty,
3226 Ty, {}, CostKind, 0, Ty);
3227 ArithCost +=
3228 NumReduxLevels * thisT()->getArithmeticInstrCost(Opcode, Ty, CostKind);
3229 return ShuffleCost + ArithCost +
3230 thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
3231 CostKind, 0, nullptr, nullptr);
3232 }
3233
3234 /// Try to calculate the cost of performing strict (in-order) reductions,
3235 /// which involves doing a sequence of floating point additions in lane
3236 /// order, starting with an initial value. For example, consider a scalar
3237 /// initial value 'InitVal' of type float and a vector of type <4 x float>:
3238 ///
3239 /// Vector = <float %v0, float %v1, float %v2, float %v3>
3240 ///
3241 /// %add1 = %InitVal + %v0
3242 /// %add2 = %add1 + %v1
3243 /// %add3 = %add2 + %v2
3244 /// %add4 = %add3 + %v3
3245 ///
3246 /// As a simple estimate we can say the cost of such a reduction is 4 times
3247 /// the cost of a scalar FP addition. We can only estimate the costs for
3248 /// fixed-width vectors here because for scalable vectors we do not know the
3249 /// runtime number of operations.
3252 // Targets must implement a default value for the scalable case, since
3253 // we don't know how many lanes the vector has.
3256
3257 auto *VTy = cast<FixedVectorType>(Ty);
3259 VTy, /*Insert=*/false, /*Extract=*/true, CostKind);
3260 InstructionCost ArithCost = thisT()->getArithmeticInstrCost(
3261 Opcode, VTy->getElementType(), CostKind);
3262 ArithCost *= VTy->getNumElements();
3263
3264 return ExtractCost + ArithCost;
3265 }
3266
3269 std::optional<FastMathFlags> FMF,
3270 TTI::TargetCostKind CostKind) const override {
3271 assert(Ty && "Unknown reduction vector type");
3273 return getOrderedReductionCost(Opcode, Ty, CostKind);
3274 return getTreeReductionCost(Opcode, Ty, CostKind);
3275 }
3276
3277 /// Try to calculate op costs for min/max reduction operations.
3278 /// \param CondTy Conditional type for the Select instruction.
3281 TTI::TargetCostKind CostKind) const override {
3282 // Targets must implement a default value for the scalable case, since
3283 // we don't know how many lanes the vector has.
3286
3287 Type *ScalarTy = Ty->getElementType();
3288 unsigned NumVecElts = cast<FixedVectorType>(Ty)->getNumElements();
3289 unsigned NumReduxLevels = Log2_32(NumVecElts);
3290 InstructionCost MinMaxCost = 0;
3291 InstructionCost ShuffleCost = 0;
3292 std::pair<InstructionCost, MVT> LT = thisT()->getTypeLegalizationCost(Ty);
3293 unsigned LongVectorCount = 0;
3294 unsigned MVTLen =
3295 LT.second.isVector() ? LT.second.getVectorNumElements() : 1;
3296 while (NumVecElts > MVTLen) {
3297 NumVecElts /= 2;
3298 auto *SubTy = FixedVectorType::get(ScalarTy, NumVecElts);
3299
3300 ShuffleCost += thisT()->getShuffleCost(
3301 TTI::SK_ExtractSubvector, SubTy, Ty, {}, CostKind, NumVecElts, SubTy);
3302
3303 IntrinsicCostAttributes Attrs(IID, SubTy, {SubTy, SubTy}, FMF);
3304 MinMaxCost += getIntrinsicInstrCost(Attrs, CostKind);
3305 Ty = SubTy;
3306 ++LongVectorCount;
3307 }
3308
3309 NumReduxLevels -= LongVectorCount;
3310
3311 // The minimal length of the vector is limited by the real length of vector
3312 // operations performed on the current platform. That's why several final
3313 // reduction opertions are perfomed on the vectors with the same
3314 // architecture-dependent length.
3315 ShuffleCost +=
3316 NumReduxLevels * thisT()->getShuffleCost(TTI::SK_PermuteSingleSrc, Ty,
3317 Ty, {}, CostKind, 0, Ty);
3318 IntrinsicCostAttributes Attrs(IID, Ty, {Ty, Ty}, FMF);
3319 MinMaxCost += NumReduxLevels * getIntrinsicInstrCost(Attrs, CostKind);
3320 // The last min/max should be in vector registers and we counted it above.
3321 // So just need a single extractelement.
3322 return ShuffleCost + MinMaxCost +
3323 thisT()->getVectorInstrCost(Instruction::ExtractElement, Ty,
3324 CostKind, 0, nullptr, nullptr);
3325 }
3326
3328 getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy,
3329 VectorType *Ty, std::optional<FastMathFlags> FMF,
3330 TTI::TargetCostKind CostKind) const override {
3331 if (auto *FTy = dyn_cast<FixedVectorType>(Ty);
3332 FTy && IsUnsigned && Opcode == Instruction::Add &&
3333 FTy->getElementType() == IntegerType::getInt1Ty(Ty->getContext())) {
3334 // Represent vector_reduce_add(ZExt(<n x i1>)) as
3335 // ZExtOrTrunc(ctpop(bitcast <n x i1> to in)).
3336 auto *IntTy =
3337 IntegerType::get(ResTy->getContext(), FTy->getNumElements());
3338 IntrinsicCostAttributes ICA(Intrinsic::ctpop, IntTy, {IntTy},
3339 FMF ? *FMF : FastMathFlags());
3340 return thisT()->getCastInstrCost(Instruction::BitCast, IntTy, FTy,
3342 thisT()->getIntrinsicInstrCost(ICA, CostKind);
3343 }
3344 // Without any native support, this is equivalent to the cost of
3345 // vecreduce.opcode(ext(Ty A)).
3346 VectorType *ExtTy = VectorType::get(ResTy, Ty);
3347 InstructionCost RedCost =
3348 thisT()->getArithmeticReductionCost(Opcode, ExtTy, FMF, CostKind);
3349 InstructionCost ExtCost = thisT()->getCastInstrCost(
3350 IsUnsigned ? Instruction::ZExt : Instruction::SExt, ExtTy, Ty,
3352
3353 return RedCost + ExtCost;
3354 }
3355
3357 getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy,
3358 VectorType *Ty,
3359 TTI::TargetCostKind CostKind) const override {
3360 // Without any native support, this is equivalent to the cost of
3361 // vecreduce.add(mul(ext(Ty A), ext(Ty B))) or
3362 // vecreduce.add(mul(A, B)).
3363 assert((RedOpcode == Instruction::Add || RedOpcode == Instruction::Sub) &&
3364 "The reduction opcode is expected to be Add or Sub.");
3365 VectorType *ExtTy = VectorType::get(ResTy, Ty);
3366 InstructionCost RedCost = thisT()->getArithmeticReductionCost(
3367 RedOpcode, ExtTy, std::nullopt, CostKind);
3368 InstructionCost ExtCost = thisT()->getCastInstrCost(
3369 IsUnsigned ? Instruction::ZExt : Instruction::SExt, ExtTy, Ty,
3371
3372 InstructionCost MulCost =
3373 thisT()->getArithmeticInstrCost(Instruction::Mul, ExtTy, CostKind);
3374
3375 return RedCost + MulCost + 2 * ExtCost;
3376 }
3377
3379
3380 /// @}
3381};
3382
3383/// Concrete BasicTTIImpl that can be used if no further customization
3384/// is needed.
3385class BasicTTIImpl : public BasicTTIImplBase<BasicTTIImpl> {
3386 using BaseT = BasicTTIImplBase<BasicTTIImpl>;
3387
3388 friend class BasicTTIImplBase<BasicTTIImpl>;
3389
3390 const TargetSubtargetInfo *ST;
3391 const TargetLoweringBase *TLI;
3392
3393 const TargetSubtargetInfo *getST() const { return ST; }
3394 const TargetLoweringBase *getTLI() const { return TLI; }
3395
3396public:
3397 explicit BasicTTIImpl(const TargetMachine *TM, const Function &F);
3398};
3399
3400} // end namespace llvm
3401
3402#endif // LLVM_CODEGEN_BASICTTIIMPL_H
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[]
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
static const Function * getCalledFunction(const Value *V)
#define T
ConstantRange Range(APInt(BitWidth, Low), APInt(BitWidth, High))
uint64_t IntrinsicInst * II
#define P(N)
static unsigned getNumElements(Type *Ty)
static Type * getValueType(Value *V)
Returns the type of the given value/instruction V.
This file contains some templates that are useful if you are working with the STL at all.
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 TableGen::Emitter::OptClass< SkeletonEmitter > X("gen-skeleton-class", "Generate example skeleton class")
static SymbolRef::Type getType(const Symbol *Sym)
Definition TapiFile.cpp:39
This file describes how to lower LLVM code to machine code.
This file provides helpers for the implementation of a TargetTransformInfo-conforming class.
This pass exposes codegen information to IR-level passes.
Class for arbitrary precision integers.
Definition APInt.h:78
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
Definition APInt.h:235
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
Definition APInt.h:1331
bool sgt(const APInt &RHS) const
Signed greater than comparison.
Definition APInt.h:1202
unsigned getBitWidth() const
Return the number of bits in the APInt.
Definition APInt.h:1489
bool slt(const APInt &RHS) const
Signed less than comparison.
Definition APInt.h:1131
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
Definition APInt.h:201
an instruction to allocate memory on the stack
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
ArrayRef< T > drop_front(size_t N=1) const
Drop the first N elements of the array.
Definition ArrayRef.h:195
size_t size() const
size - Get the array size.
Definition ArrayRef.h:142
ArrayRef< T > drop_back(size_t N=1) const
Drop the last N elements of the array.
Definition ArrayRef.h:201
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
Definition BasicBlock.h:62
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 getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, const Value *Op0, const Value *Op1) 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
InstructionCost getScalarizationOverhead(VectorType *InTy, const APInt &DemandedElts, bool Insert, bool Extract, TTI::TargetCostKind CostKind, bool ForPoisonSrc=true, ArrayRef< Value * > VL={}) const override
Estimate the overhead of scalarizing an instruction.
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
InstructionCost getVectorInstrCost(const Instruction &I, Type *Val, TTI::TargetCostKind CostKind, unsigned Index) 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
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
InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, Value *Scalar, ArrayRef< std::tuple< Value *, User *, int > > ScalarUserAndIdx) 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
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 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
bool isVScaleKnownToBeAPowerOfTwo() 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 getScalarizationOverhead(VectorType *InTy, bool Insert, bool Extract, TTI::TargetCostKind CostKind) const
Helper wrapper for the DemandedElts variant of getScalarizationOverhead.
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.
TailFoldingStyle getPreferredTailFoldingStyle(bool IVUpdateMayOverflow=true) const override
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...
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 getOperandsScalarizationOverhead(ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const override
Estimate the overhead of scalarizing an instruction's operands.
bool isNumRegsMajorCostOfLSR() const override
BasicTTIImpl(const TargetMachine *TM, const Function &F)
size_type count() const
count - Returns the number of bits which are set.
Definition BitVector.h:181
BitVector & set()
Definition BitVector.h:370
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.
Definition InstrTypes.h:982
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition InstrTypes.h:676
@ ICMP_SLE
signed less or equal
Definition InstrTypes.h:706
@ ICMP_UGT
unsigned greater than
Definition InstrTypes.h:699
@ ICMP_SGT
signed greater than
Definition InstrTypes.h:703
@ ICMP_ULT
unsigned less than
Definition InstrTypes.h:701
@ ICMP_NE
not equal
Definition InstrTypes.h:698
@ FCMP_UNO
1 0 0 0 True if unordered: isnan(X) | isnan(Y)
Definition InstrTypes.h:686
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.
Definition DataLayout.h:64
constexpr bool isVector() const
One or more elements.
Definition TypeSize.h:324
static constexpr ElementCount getFixed(ScalarTy MinVal)
Definition TypeSize.h:309
constexpr bool isScalar() const
Exactly one element.
Definition TypeSize.h:320
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:22
Container class for subtarget features.
Class to represent fixed width SIMD vectors.
unsigned getNumElements() const
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
Definition Type.cpp:802
AttributeList getAttributes() const
Return the attribute list for this Function.
Definition Function.h:352
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.
Definition Type.cpp:318
const TargetLibraryInfo * getLibInfo() const
const SmallVectorImpl< Type * > & getArgTypes() const
const SmallVectorImpl< const Value * > & getArgs() const
InstructionCost getScalarizationCost() const
const IntrinsicInst * getInst() const
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
const FeatureBitset & getFeatureBits() const
Machine Value Type.
TypeSize getStoreSize() const
Return the number of bytes overwritten by a store of the specified value type.
Information for memory intrinsic cost model.
The optimization diagnostic interface.
LLVM_ABI void emit(DiagnosticInfoOptimizationBase &OptDiag)
Output the remark via the diagnostic handler and to the optimization record file.
Diagnostic information for applied optimization remarks.
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.
Definition TypeSize.h:30
static StackOffset getScalable(int64_t Scalable)
Definition TypeSize.h:40
static StackOffset getFixed(int64_t Fixed)
Definition TypeSize.h:39
static LLVM_ABI StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Definition Type.cpp:619
Multiway switch.
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...
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 ...
LegalizeAction getLoadExtAction(unsigned ExtType, EVT ValVT, EVT MemVT) const
Return how this load with extension should be treated: either it is legal, needs to be promoted to a ...
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...
bool isLoadExtLegal(unsigned ExtType, EVT ValVT, EVT MemVT) const
Return true if the specified load with extension is legal on this target.
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 ...
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.
virtual bool isProfitableLSRChainElement(Instruction *I) const
virtual const DataLayout & getDataLayout() const
virtual std::optional< unsigned > getCacheAssociativity(TargetTransformInfo::CacheLevel Level) const
virtual 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
virtual bool shouldDropLSRSolutionIfLessProfitable() const
virtual bool preferPredicateOverEpilogue(TailFoldingInfo *TFI) const
virtual bool isHardwareLoopProfitable(Loop *L, ScalarEvolution &SE, AssumptionCache &AC, TargetLibraryInfo *LibInfo, HardwareLoopInfo &HWLoopInfo) const
virtual std::optional< Value * > simplifyDemandedUseBitsIntrinsic(InstCombiner &IC, IntrinsicInst &II, APInt DemandedMask, KnownBits &Known, bool &KnownBitsComputed) const
virtual std::optional< Instruction * > instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const
virtual unsigned getEpilogueVectorizationMinVF() const
virtual bool isLoweredToCall(const Function *F) const
virtual InstructionCost getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Opd1Info, TTI::OperandValueInfo Opd2Info, ArrayRef< const Value * > Args, const Instruction *CxtI=nullptr) const
virtual InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const
virtual bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const
virtual InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I) const
virtual InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const
virtual InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info, TTI::OperandValueInfo Op2Info, const Instruction *I) const
virtual TailFoldingStyle getPreferredTailFoldingStyle(bool IVUpdateMayOverflow=true) const
InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, ArrayRef< const Value * > Operands, Type *AccessType, TTI::TargetCostKind CostKind) const override
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
static LLVM_ABI OperandValueInfo getOperandInfo(const Value *V)
Collect properties of V used in cost analysis, e.g. OP_PowerOf2.
TargetCostKind
The kind of cost model.
@ TCK_RecipThroughput
Reciprocal throughput.
@ TCK_CodeSize
Instruction code size.
static bool requiresOrderedReduction(std::optional< FastMathFlags > FMF)
A helper function to determine the type of reduction algorithm used for a given Opcode and set of Fas...
@ TCC_Expensive
The cost of a 'div' instruction on x86.
@ TCC_Basic
The cost of a typical 'add' instruction.
MemIndexedMode
The type of load/store indexing.
ShuffleKind
The various kinds of shuffle patterns for vector queries.
@ SK_InsertSubvector
InsertSubvector. Index indicates start offset.
@ SK_Select
Selects elements from the corresponding lane of either source operand.
@ SK_PermuteSingleSrc
Shuffle elements of single source vector with any shuffle mask.
@ SK_Transpose
Transpose two vectors.
@ SK_Splice
Concatenates elements from the first input vector with elements of the second input vector.
@ SK_Broadcast
Broadcast element 0 to all other elements.
@ SK_PermuteTwoSrc
Merge elements from two source vectors into one with any shuffle mask.
@ SK_Reverse
Reverse the order of the vector.
@ SK_ExtractSubvector
ExtractSubvector Index indicates start offset.
CastContextHint
Represents a hint about the context in which a cast is used.
@ None
The cast is not used with a load/store of any kind.
@ Normal
The cast is used with a normal load/store.
CacheLevel
The possible cache levels.
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
ArchType getArch() const
Get the parsed architecture type of this triple.
Definition Triple.h:414
LLVM_ABI bool isArch64Bit() const
Test whether the architecture is 64-bit.
Definition Triple.cpp:1797
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
Definition Triple.h:628
static constexpr TypeSize getFixed(ScalarTy ExactSize)
Definition TypeSize.h:343
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:45
bool isVectorTy() const
True if this is an instance of VectorType.
Definition Type.h:273
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
Definition Type.cpp:294
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition Type.h:352
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.
Definition Type.h:128
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
Definition Type.cpp:230
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
Definition Type.cpp:293
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
Definition Type.cpp:300
bool isFPOrFPVectorTy() const
Return true if this is a FP type or a vector of FP.
Definition Type.h:225
Type * getContainedType(unsigned i) const
This method is used to implement the type iterator (defined at the end of the file).
Definition Type.h:381
bool isVoidTy() const
Return true if this is 'void'.
Definition Type.h:139
Value * getOperand(unsigned i) const
Definition User.h:233
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.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:256
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
Definition TypeSize.h:200
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition TypeSize.h:216
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition TypeSize.h:168
#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.
Definition APInt.cpp:3009
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
@ Fast
Attempts to make calls as fast as possible (e.g.
Definition CallingConv.h:41
@ C
The default llvm calling convention, compatible with C.
Definition CallingConv.h:34
ISD namespace - This namespace contains an enum which represents all of the SelectionDAG node types a...
Definition ISDOpcodes.h:24
@ BSWAP
Byte Swap and Counting operators.
Definition ISDOpcodes.h:773
@ SMULFIX
RESULT = [US]MULFIX(LHS, RHS, SCALE) - Perform fixed point multiplication on 2 integers with the same...
Definition ISDOpcodes.h:389
@ FMA
FMA - Perform a * b + c with no intermediate rounding step.
Definition ISDOpcodes.h:513
@ 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.
Definition ISDOpcodes.h:412
@ ABS
ABS - Determine the unsigned absolute value of a signed integer value of the same bitwidth.
Definition ISDOpcodes.h:741
@ SDIVREM
SDIVREM/UDIVREM - Divide two integers and produce both a quotient and remainder result.
Definition ISDOpcodes.h:275
@ FLDEXP
FLDEXP - ldexp, inspired by libm (op0 * 2**op1).
@ FSINCOS
FSINCOS - Compute both fsin and fcos as a single operation.
@ SSUBO
Same for subtraction.
Definition ISDOpcodes.h:347
@ BRIND
BRIND - Indirect branch.
@ BR_JT
BR_JT - Jumptable branch.
@ FCANONICALIZE
Returns platform specific canonical encoding of a floating point number.
Definition ISDOpcodes.h:536
@ SSUBSAT
RESULT = [US]SUBSAT(LHS, RHS) - Perform saturation subtraction on 2 integers with the same bit width ...
Definition ISDOpcodes.h:369
@ SELECT
Select(COND, TRUEVAL, FALSEVAL).
Definition ISDOpcodes.h:790
@ SADDO
RESULT, BOOL = [SU]ADDO(LHS, RHS) - Overflow-aware nodes for addition.
Definition ISDOpcodes.h:343
@ 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.
Definition ISDOpcodes.h:351
@ SMIN
[US]{MIN/MAX} - Binary minimum or maximum of signed or unsigned integers.
Definition ISDOpcodes.h:721
@ VSELECT
Select with a vector condition (op #0) and two vector operands (ops #1 and #2), returning a vector re...
Definition ISDOpcodes.h:799
@ 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.
Definition ISDOpcodes.h:729
@ FP_TO_SINT_SAT
FP_TO_[US]INT_SAT - Convert floating point value in operand 0 to a signed or unsigned scalar integer ...
Definition ISDOpcodes.h:939
@ FCOPYSIGN
FCOPYSIGN(X, Y) - Return the value of X with the sign of Y.
Definition ISDOpcodes.h:529
@ SADDSAT
RESULT = [US]ADDSAT(LHS, RHS) - Perform saturation addition on 2 integers with the same bit width (W)...
Definition ISDOpcodes.h:360
@ 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.
Definition BasicBlock.h:73
This is an optimization pass for GlobalISel generic memory operations.
Definition Types.h:26
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1737
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.
Definition STLExtras.h:839
InstructionCost Cost
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2530
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.
Definition Casting.h:643
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 ...
Definition Casting.h:732
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.
Definition STLExtras.h:1150
auto dyn_cast_or_null(const Y &Val)
Definition Casting.h:753
constexpr bool has_single_bit(T Value) noexcept
Definition bit.h:147
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1744
unsigned Log2_32(uint32_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition MathExtras.h:331
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:279
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...
Definition Casting.h:547
constexpr int PoisonMaskElem
constexpr T divideCeil(U Numerator, V Denominator)
Returns the integer ceil(Numerator / Denominator).
Definition MathExtras.h:394
FunctionAddr VTableAddr uintptr_t uintptr_t Data
Definition InstrProf.h:189
@ 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.
Definition Casting.h:559
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...
#define N
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Extended Value Type.
Definition ValueTypes.h:35
bool isSimple() const
Test if the given EVT is simple (as opposed to being extended).
Definition ValueTypes.h:137
ElementCount getVectorElementCount() const
Definition ValueTypes.h:350
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.
Definition ValueTypes.h:316
static EVT getIntegerVT(LLVMContext &Context, unsigned BitWidth)
Returns the EVT that represents an integer with the given number of bits.
Definition ValueTypes.h:65
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*...
bool AllowPeeling
Allow peeling off loop iterations.
bool AllowLoopNestsPeeling
Allow peeling off loop iterations for loop nests.
bool PeelProfiledIterations
Allow peeling basing on profile.
unsigned PeelCount
A forced peeling factor (the number of bodied of the original loop that should be peeled off before t...
Parameters that control the generic loop unrolling transformation.
bool UpperBound
Allow using trip count upper bound to unroll loops.
unsigned PartialOptSizeThreshold
The cost threshold for the unrolled loop when optimizing for size, like OptSizeThreshold,...
unsigned PartialThreshold
The cost threshold for the unrolled loop, like Threshold, but used for partial/runtime unrolling (set...
bool Runtime
Allow runtime unrolling (unrolling of loops to expand the size of the loop body even when the number ...
bool Partial
Allow partial unrolling (unrolling of loops to expand the size of the loop body, not only to eliminat...
unsigned OptSizeThreshold
The cost threshold for the unrolled loop when optimizing for size (set to UINT_MAX to disable).