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