LLVM 24.0.0git
TargetTransformInfoImpl.h
Go to the documentation of this file.
1//===- TargetTransformInfoImpl.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/// \file
9/// This file provides helpers for the implementation of
10/// a TargetTransformInfo-conforming class.
11///
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
15#define LLVM_ANALYSIS_TARGETTRANSFORMINFOIMPL_H
16
21#include "llvm/IR/DataLayout.h"
24#include "llvm/IR/Operator.h"
26#include <optional>
27#include <utility>
28
29namespace llvm {
30
31class Function;
32
33/// Base class for use as a mix-in that aids implementing
34/// a TargetTransformInfo-compatible class.
36
37protected:
39
40 const DataLayout &DL;
41
43
44public:
46
47 // Provide value semantics. MSVC requires that we spell all of these out.
50
51 virtual const DataLayout &getDataLayout() const { return DL; }
52
53 // FIXME: It looks like this implementation is dead. All clients appear to
54 // use the (non-const) version from `TargetTransformInfoImplCRTPBase`.
55 virtual InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr,
58 Type *AccessType) const {
59 // In the basic model, we just assume that all-constant GEPs will be folded
60 // into their uses via addressing modes.
61 for (const Value *Operand : Operands)
62 if (!isa<Constant>(Operand))
63 return TTI::TCC_Basic;
64
65 return TTI::TCC_Free;
66 }
67
68 virtual InstructionCost
70 const TTI::PointersChainInfo &Info, Type *AccessTy,
71 const TTI::TargetCostKind CostKind) const {
72 llvm_unreachable("Not implemented");
73 }
74
75 virtual unsigned
78 BlockFrequencyInfo *BFI) const {
79 (void)PSI;
80 (void)BFI;
81 JTSize = 0;
82 return SI.getNumCases();
83 }
84
85 virtual InstructionCost
90
91 virtual unsigned getInliningThresholdMultiplier() const { return 1; }
93 return 8;
94 }
96 return 8;
97 }
99 // This is the value of InlineConstants::LastCallToStaticBonus before it was
100 // removed along with the introduction of this function.
101 return 15000;
102 }
103 virtual unsigned adjustInliningThreshold(const CallBase *CB) const {
104 return 0;
105 }
106 virtual unsigned getCallerAllocaCost(const CallBase *CB,
107 const AllocaInst *AI) const {
108 return 0;
109 };
110
111 virtual int getInlinerVectorBonusPercent() const { return 150; }
112
114 return TTI::TCC_Expensive;
115 }
116
117 virtual uint64_t getMaxMemIntrinsicInlineSizeThreshold() const { return 64; }
118
119 // Although this default value is arbitrary, it is not random. It is assumed
120 // that a condition that evaluates the same way by a higher percentage than
121 // this is best represented as control flow. Therefore, the default value N
122 // should be set such that the win from N% correct executions is greater than
123 // the loss from (100 - N)% mispredicted executions for the majority of
124 // intended targets.
126 return BranchProbability(99, 100);
127 }
128
129 virtual InstructionCost getBranchMispredictPenalty() const { return 0; }
130
131 virtual bool hasBranchDivergence(const Function *F = nullptr) const {
132 return false;
133 }
134
135 virtual ValueUniformity getValueUniformity(const Value *V) const {
137 }
138
139 virtual bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const {
140 return false;
141 }
142
143 virtual bool addrspacesMayAlias(unsigned AS0, unsigned AS1) const {
144 return true;
145 }
146
147 virtual unsigned getFlatAddressSpace() const { return -1; }
148
149 virtual unsigned getAddressSpaceJoin(unsigned AS1, unsigned AS2) const {
150 return getFlatAddressSpace();
151 }
152
154 Intrinsic::ID IID) const {
155 return false;
156 }
157
158 virtual bool isNoopAddrSpaceCast(unsigned, unsigned) const { return false; }
159
160 virtual std::pair<KnownBits, KnownBits>
161 computeKnownBitsAddrSpaceCast(unsigned ToAS, const Value &PtrOp) const {
162 const Type *PtrTy = PtrOp.getType();
163 assert(PtrTy->isPtrOrPtrVectorTy() &&
164 "expected pointer or pointer vector type");
165 unsigned FromAS = PtrTy->getPointerAddressSpace();
166
167 if (DL.isNonIntegralAddressSpace(FromAS))
168 return std::pair(KnownBits(DL.getPointerSizeInBits(FromAS)),
169 KnownBits(DL.getPointerSizeInBits(ToAS)));
170
171 KnownBits FromPtrBits;
172 if (const AddrSpaceCastInst *CastI = dyn_cast<AddrSpaceCastInst>(&PtrOp)) {
173 std::pair<KnownBits, KnownBits> KB = computeKnownBitsAddrSpaceCast(
174 CastI->getDestAddressSpace(), *CastI->getPointerOperand());
175 FromPtrBits = KB.second;
176 } else {
177 FromPtrBits = computeKnownBits(&PtrOp, DL, nullptr);
178 }
179
180 KnownBits ToPtrBits =
181 computeKnownBitsAddrSpaceCast(FromAS, ToAS, FromPtrBits);
182
183 return {FromPtrBits, ToPtrBits};
184 }
185
186 virtual KnownBits
187 computeKnownBitsAddrSpaceCast(unsigned FromAS, unsigned ToAS,
188 const KnownBits &FromPtrBits) const {
189 unsigned ToASBitSize = DL.getPointerSizeInBits(ToAS);
190
191 if (DL.isNonIntegralAddressSpace(FromAS))
192 return KnownBits(ToASBitSize);
193
194 // By default, we assume that all valid "larger" (e.g. 64-bit) to "smaller"
195 // (e.g. 32-bit) casts work by chopping off the high bits.
196 // By default, we do not assume that null results in null again.
197 return FromPtrBits.anyextOrTrunc(ToASBitSize);
198 }
199
201 unsigned DstAS) const {
202 return {DL.getPointerSizeInBits(SrcAS), 0};
203 }
204
205 virtual bool
207 return AS == 0;
208 };
209
210 virtual unsigned getAssumedAddrSpace(const Value *V) const { return -1; }
211
212 virtual std::pair<const Value *, unsigned>
214 return std::make_pair(nullptr, -1);
215 }
216
218 Value *OldV,
219 Value *NewV) const {
220 return nullptr;
221 }
222
223 virtual bool isLoweredToCall(const Function *F) const {
224 assert(F && "A concrete function must be provided to this routine.");
225
226 // FIXME: These should almost certainly not be handled here, and instead
227 // handled with the help of TLI or the target itself. This was largely
228 // ported from existing analysis heuristics here so that such refactorings
229 // can take place in the future.
230
231 if (F->isIntrinsic())
232 return false;
233
234 if (F->hasLocalLinkage() || !F->hasName())
235 return true;
236
237 StringRef Name = F->getName();
238
239 // These will all likely lower to a single selection DAG node.
240 // clang-format off
241 if (Name == "copysign" || Name == "copysignf" || Name == "copysignl" ||
242 Name == "fabs" || Name == "fabsf" || Name == "fabsl" ||
243 Name == "fmin" || Name == "fminf" || Name == "fminl" ||
244 Name == "fmax" || Name == "fmaxf" || Name == "fmaxl" ||
245 Name == "sin" || Name == "sinf" || Name == "sinl" ||
246 Name == "cos" || Name == "cosf" || Name == "cosl" ||
247 Name == "tan" || Name == "tanf" || Name == "tanl" ||
248 Name == "asin" || Name == "asinf" || Name == "asinl" ||
249 Name == "acos" || Name == "acosf" || Name == "acosl" ||
250 Name == "atan" || Name == "atanf" || Name == "atanl" ||
251 Name == "atan2" || Name == "atan2f" || Name == "atan2l"||
252 Name == "sinh" || Name == "sinhf" || Name == "sinhl" ||
253 Name == "cosh" || Name == "coshf" || Name == "coshl" ||
254 Name == "tanh" || Name == "tanhf" || Name == "tanhl" ||
255 Name == "sqrt" || Name == "sqrtf" || Name == "sqrtl" ||
256 Name == "exp10" || Name == "exp10l" || Name == "exp10f")
257 return false;
258 // clang-format on
259 // These are all likely to be optimized into something smaller.
260 if (Name == "pow" || Name == "powf" || Name == "powl" || Name == "exp2" ||
261 Name == "exp2l" || Name == "exp2f" || Name == "floor" ||
262 Name == "floorf" || Name == "ceil" || Name == "round" ||
263 Name == "ffs" || Name == "ffsl" || Name == "abs" || Name == "labs" ||
264 Name == "llabs")
265 return false;
266
267 return true;
268 }
269
271 AssumptionCache &AC,
272 TargetLibraryInfo *LibInfo,
273 HardwareLoopInfo &HWLoopInfo) const {
274 return false;
275 }
276
277 virtual unsigned getEpilogueVectorizationMinVF() const { return 16; }
278
280 return false;
281 }
282
286
287 virtual std::optional<Instruction *>
289 return std::nullopt;
290 }
291
292 virtual std::optional<Value *>
294 APInt DemandedMask, KnownBits &Known,
295 bool &KnownBitsComputed) const {
296 return std::nullopt;
297 }
298
299 virtual std::optional<Value *> simplifyDemandedVectorEltsIntrinsic(
300 InstCombiner &IC, IntrinsicInst &II, APInt DemandedElts, APInt &UndefElts,
301 APInt &UndefElts2, APInt &UndefElts3,
302 std::function<void(Instruction *, unsigned, APInt, APInt &)>
303 SimplifyAndSetOp) const {
304 return std::nullopt;
305 }
306
310
313
314 virtual bool isLegalAddImmediate(int64_t Imm) const { return false; }
315
316 virtual bool isLegalAddScalableImmediate(int64_t Imm) const { return false; }
317
318 virtual bool isLegalICmpImmediate(int64_t Imm) const { return false; }
319
320 virtual bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV,
321 int64_t BaseOffset, bool HasBaseReg,
322 int64_t Scale, unsigned AddrSpace,
323 Instruction *I = nullptr,
324 int64_t ScalableOffset = 0) const {
325 // Guess that only reg and reg+reg addressing is allowed. This heuristic is
326 // taken from the implementation of LSR.
327 return !BaseGV && BaseOffset == 0 && (Scale == 0 || Scale == 1);
328 }
329
330 virtual bool isLSRCostLess(const TTI::LSRCost &C1,
331 const TTI::LSRCost &C2) const {
332 return std::tie(C1.NumRegs, C1.AddRecCost, C1.NumIVMuls, C1.NumBaseAdds,
333 C1.ScaleCost, C1.ImmCost, C1.SetupCost) <
334 std::tie(C2.NumRegs, C2.AddRecCost, C2.NumIVMuls, C2.NumBaseAdds,
335 C2.ScaleCost, C2.ImmCost, C2.SetupCost);
336 }
337
338 virtual bool isNumRegsMajorCostOfLSR() const { return true; }
339
340 virtual bool shouldDropLSRSolutionIfLessProfitable() const { return false; }
341
343 return false;
344 }
345
346 virtual bool canMacroFuseCmp() const { return false; }
347
348 virtual bool canSaveCmp(Loop *L, CondBrInst **BI, ScalarEvolution *SE,
350 TargetLibraryInfo *LibInfo) const {
351 return false;
352 }
353
356 return TTI::AMK_None;
357 }
358
359 virtual bool isLegalMaskedStore(Type *DataType, Align Alignment,
360 unsigned AddressSpace,
361 TTI::MaskKind MaskKind) const {
362 return false;
363 }
364
365 virtual bool isLegalMaskedLoad(Type *DataType, Align Alignment,
366 unsigned AddressSpace,
367 TTI::MaskKind MaskKind) const {
368 return false;
369 }
370
371 virtual bool isLegalNTStore(Type *DataType, Align Alignment) const {
372 // By default, assume nontemporal memory stores are available for stores
373 // that are aligned and have a size that is a power of 2.
374 unsigned DataSize = DL.getTypeStoreSize(DataType);
375 return Alignment >= DataSize && isPowerOf2_32(DataSize);
376 }
377
378 virtual bool isLegalNTLoad(Type *DataType, Align Alignment) const {
379 // By default, assume nontemporal memory loads are available for loads that
380 // are aligned and have a size that is a power of 2.
381 unsigned DataSize = DL.getTypeStoreSize(DataType);
382 return Alignment >= DataSize && isPowerOf2_32(DataSize);
383 }
384
385 virtual bool isLegalBroadcastLoad(Type *ElementTy,
386 ElementCount NumElements) const {
387 return false;
388 }
389
390 virtual bool isLegalMaskedScatter(Type *DataType, Align Alignment) const {
391 return false;
392 }
393
394 virtual bool isLegalMaskedGather(Type *DataType, Align Alignment) const {
395 return false;
396 }
397
399 Align Alignment) const {
400 return false;
401 }
402
404 Align Alignment) const {
405 return false;
406 }
407
408 virtual bool isLegalMaskedCompressStore(Type *DataType,
409 Align Alignment) const {
410 return false;
411 }
412
413 virtual bool isLegalAltInstr(VectorType *VecTy, unsigned Opcode0,
414 unsigned Opcode1,
415 const SmallBitVector &OpcodeMask) const {
416 return false;
417 }
418
419 virtual bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment) const {
420 return false;
421 }
422
423 virtual bool isLegalStridedLoadStore(Type *DataType, Align Alignment) const {
424 return false;
425 }
426
427 virtual bool isLegalInterleavedAccessType(VectorType *VTy, unsigned Factor,
428 Align Alignment,
429 unsigned AddrSpace) const {
430 return false;
431 }
432
433 virtual bool isLegalMaskedVectorHistogram(Type *AddrType,
434 Type *DataType) const {
435 return false;
436 }
437
438 virtual bool enableOrderedReductions() const { return false; }
439
440 virtual bool hasDivRemOp(Type *DataType, bool IsSigned) const {
441 return false;
442 }
443
444 virtual bool hasVolatileVariant(Instruction *I, unsigned AddrSpace) const {
445 return false;
446 }
447
448 virtual bool prefersVectorizedAddressing() const { return true; }
449
451 StackOffset BaseOffset,
452 bool HasBaseReg, int64_t Scale,
453 unsigned AddrSpace) const {
454 // Guess that all legal addressing mode are free.
455 if (isLegalAddressingMode(Ty, BaseGV, BaseOffset.getFixed(), HasBaseReg,
456 Scale, AddrSpace, /*I=*/nullptr,
457 BaseOffset.getScalable()))
458 return 0;
460 }
461
462 virtual bool LSRWithInstrQueries() const { return false; }
463
464 virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const { return false; }
465
466 virtual bool isProfitableToHoist(Instruction *I) const { return true; }
467
468 virtual bool useAA() const { return false; }
469
470 virtual bool isTypeLegal(Type *Ty) const { return false; }
471
472 virtual unsigned getRegUsageForType(Type *Ty) const { return 1; }
473
474 virtual bool shouldBuildLookupTables() const { return true; }
475
477 return true;
478 }
479
480 virtual unsigned getMinimumLookupTableEntryBitWidth() const { return 8; }
481
482 virtual bool shouldBuildRelLookupTables() const { return false; }
483
484 virtual bool useColdCCForColdCall(Function &F) const { return false; }
485
486 virtual bool useFastCCForInternalCall(Function &F) const { return true; }
487
489 unsigned ScalarOpdIdx) const {
490 return false;
491 }
492
494 int OpdIdx) const {
495 return OpdIdx == -1;
496 }
497
498 virtual bool
500 int RetIdx) const {
501 return RetIdx == 0;
502 }
503
505 VectorType *Ty, const APInt &DemandedElts, bool Insert, bool Extract,
506 TTI::TargetCostKind CostKind, bool ForPoisonSrc = true,
507 ArrayRef<Value *> VL = {},
509 // Default implementation returns 0.
510 // BasicTTIImpl provides the actual implementation.
511 return 0;
512 }
513
519
520 virtual bool supportsEfficientVectorElementLoadStore() const { return false; }
521
522 virtual bool supportsTailCalls() const { return true; }
523
524 virtual bool supportsTailCallFor(const CallBase *CB) const {
525 llvm_unreachable("Not implemented");
526 }
527
528 virtual bool enableAggressiveInterleaving(bool LoopHasReductions) const {
529 return false;
530 }
531
533 enableMemCmpExpansion(bool OptSize, bool IsZeroCmp) const {
534 return {};
535 }
536
537 virtual bool enableSelectOptimize() const { return true; }
538
539 virtual bool shouldTreatInstructionLikeSelect(const Instruction *I) const {
540 // A select with two constant operands will usually be better left as a
541 // select.
542 using namespace llvm::PatternMatch;
544 return false;
545 // If the select is a logical-and/logical-or then it is better treated as a
546 // and/or by the backend.
547 return isa<SelectInst>(I) &&
550 }
551
552 virtual bool enableInterleavedAccessVectorization() const { return false; }
553
555 return false;
556 }
557
558 virtual bool isFPVectorizationPotentiallyUnsafe() const { return false; }
559
561 unsigned BitWidth,
562 unsigned AddressSpace,
563 Align Alignment,
564 unsigned *Fast) const {
565 return false;
566 }
567
569 getPopcntSupport(unsigned IntTyWidthInBit) const {
570 return TTI::PSK_Software;
571 }
572
573 virtual bool haveFastSqrt(Type *Ty) const { return false; }
574
575 virtual bool haveFastClmul(IntegerType *Ty) const { return false; }
576
578 return true;
579 }
580
581 virtual bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const { return true; }
582
583 virtual InstructionCost getFPOpCost(Type *Ty) const {
585 }
586
587 virtual InstructionCost getIntImmCodeSizeCost(unsigned Opcode, unsigned Idx,
588 const APInt &Imm,
589 Type *Ty) const {
590 return 0;
591 }
592
595 return TTI::TCC_Basic;
596 }
597
598 virtual InstructionCost getIntImmCostInst(unsigned Opcode, unsigned Idx,
599 const APInt &Imm, Type *Ty,
601 Instruction *Inst = nullptr) const {
602 return TTI::TCC_Free;
603 }
604
605 virtual InstructionCost
606 getIntImmCostIntrin(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
607 Type *Ty, TTI::TargetCostKind CostKind) const {
608 return TTI::TCC_Free;
609 }
610
612 const Function &Fn) const {
613 return false;
614 }
615
616 virtual unsigned getNumberOfRegisters(unsigned ClassID) const { return 8; }
617 virtual bool hasConditionalLoadStoreForType(Type *Ty, bool IsStore) const {
618 return false;
619 }
620
621 virtual unsigned getRegisterClassForType(bool Vector,
622 Type *Ty = nullptr) const {
623 return Vector ? 1 : 0;
624 }
625
626 virtual const char *getRegisterClassName(unsigned ClassID) const {
627 switch (ClassID) {
628 default:
629 return "Generic::Unknown Register Class";
630 case 0:
631 return "Generic::ScalarRC";
632 case 1:
633 return "Generic::VectorRC";
634 }
635 }
636
637 virtual InstructionCost
640 return TTI::TCC_Basic;
641 }
642
643 virtual InstructionCost
646 return TTI::TCC_Basic;
647 }
648
649 virtual TypeSize
653
654 virtual unsigned getMinVectorRegisterBitWidth() const { return 128; }
655
656 virtual std::optional<unsigned> getVScaleForTuning() const {
657 return std::nullopt;
658 }
659
660 virtual bool
664
665 virtual ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const {
666 return ElementCount::get(0, IsScalable);
667 }
668
669 virtual unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const {
670 return 0;
671 }
672 virtual unsigned getStoreMinimumVF(unsigned VF, Type *, Type *, Align,
673 unsigned) const {
674 return VF;
675 }
676
678 const Instruction &I, bool &AllowPromotionWithoutCommonHeader) const {
679 AllowPromotionWithoutCommonHeader = false;
680 return false;
681 }
682
683 virtual unsigned getCacheLineSize() const { return 0; }
684 virtual std::optional<unsigned>
686 switch (Level) {
688 [[fallthrough]];
690 return std::nullopt;
691 }
692 llvm_unreachable("Unknown TargetTransformInfo::CacheLevel");
693 }
694
695 virtual std::optional<unsigned>
697 switch (Level) {
699 [[fallthrough]];
701 return std::nullopt;
702 }
703
704 llvm_unreachable("Unknown TargetTransformInfo::CacheLevel");
705 }
706
707 virtual std::optional<unsigned> getMinPageSize() const { return {}; }
708
709 virtual unsigned getPrefetchDistance() const { return 0; }
710 virtual unsigned getMinPrefetchStride(unsigned NumMemAccesses,
711 unsigned NumStridedMemAccesses,
712 unsigned NumPrefetches,
713 bool HasCall) const {
714 return 1;
715 }
716 virtual unsigned getMaxPrefetchIterationsAhead() const { return UINT_MAX; }
717 virtual bool enableWritePrefetching() const { return false; }
718 virtual bool shouldPrefetchAddressSpace(unsigned AS) const { return !AS; }
719
721 unsigned Opcode, Type *InputTypeA, Type *InputTypeB, Type *AccumType,
723 TTI::PartialReductionExtendKind OpBExtend, std::optional<unsigned> BinOp,
724 TTI::TargetCostKind CostKind, std::optional<FastMathFlags> FMF) const {
726 }
727
729 bool HasUnorderedReductions) const {
730 return 1;
731 }
732
734 unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind,
736 ArrayRef<const Value *> Args, const Instruction *CxtI = nullptr) const {
737 // Widenable conditions will eventually lower into constants, so some
738 // operations with them will be trivially optimized away.
739 auto IsWidenableCondition = [](const Value *V) {
740 if (auto *II = dyn_cast<IntrinsicInst>(V))
741 if (II->getIntrinsicID() == Intrinsic::experimental_widenable_condition)
742 return true;
743 return false;
744 };
745 // FIXME: A number of transformation tests seem to require these values
746 // which seems a little odd for how arbitary there are.
747 switch (Opcode) {
748 default:
749 break;
750 case Instruction::FDiv:
751 case Instruction::FRem:
752 case Instruction::SDiv:
753 case Instruction::SRem:
754 case Instruction::UDiv:
755 case Instruction::URem:
756 // FIXME: Unlikely to be true for CodeSize.
757 return TTI::TCC_Expensive;
758 case Instruction::And:
759 case Instruction::Or:
760 if (any_of(Args, IsWidenableCondition))
761 return TTI::TCC_Free;
762 break;
763 }
764
765 // Assume a 3cy latency for fp arithmetic ops.
767 if (Ty->getScalarType()->isFloatingPointTy())
768 return 3;
769
770 return 1;
771 }
772
773 virtual InstructionCost getAltInstrCost(VectorType *VecTy, unsigned Opcode0,
774 unsigned Opcode1,
775 const SmallBitVector &OpcodeMask,
778 }
779
781 TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy,
783 VectorType *SubTp, ArrayRef<const Value *> Args = {},
784 const Instruction *CxtI = nullptr,
786 return 1;
787 }
788
789 virtual InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst,
790 Type *Src, TTI::CastContextHint CCH,
792 const Instruction *I) const {
793 switch (Opcode) {
794 default:
795 break;
796 case Instruction::IntToPtr: {
797 unsigned SrcSize = Src->getScalarSizeInBits();
798 if (DL.isLegalInteger(SrcSize) &&
799 SrcSize <= DL.getPointerTypeSizeInBits(Dst))
800 return 0;
801 break;
802 }
803 case Instruction::PtrToAddr: {
804 unsigned DstSize = Dst->getScalarSizeInBits();
805 assert(DstSize == DL.getAddressSizeInBits(Src));
806 if (DL.isLegalInteger(DstSize))
807 return 0;
808 break;
809 }
810 case Instruction::PtrToInt: {
811 unsigned DstSize = Dst->getScalarSizeInBits();
812 if (DL.isLegalInteger(DstSize) &&
813 DstSize >= DL.getPointerTypeSizeInBits(Src))
814 return 0;
815 break;
816 }
817 case Instruction::BitCast:
818 if (Dst == Src || (Dst->isPointerTy() && Src->isPointerTy()))
819 // Identity and pointer-to-pointer casts are free.
820 return 0;
821 break;
822 case Instruction::Trunc: {
823 // trunc to a native type is free (assuming the target has compare and
824 // shift-right of the same width).
825 TypeSize DstSize = DL.getTypeSizeInBits(Dst);
826 if (!DstSize.isScalable() && DL.isLegalInteger(DstSize.getFixedValue()))
827 return 0;
828 break;
829 }
830 }
831 return 1;
832 }
833
834 virtual InstructionCost
835 getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy,
836 unsigned Index, TTI::TargetCostKind CostKind) const {
837 return 1;
838 }
839
840 virtual InstructionCost getCFInstrCost(unsigned Opcode,
842 const Instruction *I = nullptr) const {
843 // A phi would be free, unless we're costing the throughput because it
844 // will require a register.
845 if (Opcode == Instruction::PHI && CostKind != TTI::TCK_RecipThroughput)
846 return 0;
847 return 1;
848 }
849
851 unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred,
853 TTI::OperandValueInfo Op2Info, const Instruction *I) const {
854 return 1;
855 }
856
858 unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index,
859 const Value *Op0, const Value *Op1,
861 return 1;
862 }
863
864 /// \param ScalarUserAndIdx encodes the information about extracts from a
865 /// vector with 'Scalar' being the value being extracted,'User' being the user
866 /// of the extract(nullptr if user is not known before vectorization) and
867 /// 'Idx' being the extract lane.
869 unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index,
870 Value *Scalar,
871 ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
873 return 1;
874 }
875
878 unsigned Index,
880 return 1;
881 }
882
883 virtual InstructionCost
886 unsigned Index) const {
887 return 1;
888 }
889
890 virtual InstructionCost
891 getReplicationShuffleCost(Type *EltTy, int ReplicationFactor, int VF,
892 const APInt &DemandedDstElts,
894 return 1;
895 }
896
897 virtual InstructionCost
900 // Note: The `insertvalue` cost here is chosen to match the default case of
901 // getInstructionCost() -- as prior to adding this helper `insertvalue` was
902 // not handled.
903 if (Opcode == Instruction::InsertValue &&
905 return TTI::TCC_Basic;
906 return TTI::TCC_Free;
907 }
908
909 virtual InstructionCost
910 getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment,
912 TTI::OperandValueInfo OpInfo, const Instruction *I) const {
913 return 1;
914 }
915
917 unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef<unsigned> Indices,
918 Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind,
919 bool UseMaskForCond, bool UseMaskForGaps) const {
920 return 1;
921 }
922
923 virtual InstructionCost
926 switch (ICA.getID()) {
927 default:
928 break;
929 case Intrinsic::allow_runtime_check:
930 case Intrinsic::allow_ubsan_check:
931 case Intrinsic::annotation:
932 case Intrinsic::assume:
933 case Intrinsic::sideeffect:
934 case Intrinsic::pseudoprobe:
935 case Intrinsic::arithmetic_fence:
936 case Intrinsic::dbg_assign:
937 case Intrinsic::dbg_declare:
938 case Intrinsic::dbg_value:
939 case Intrinsic::dbg_label:
940 case Intrinsic::invariant_start:
941 case Intrinsic::invariant_end:
942 case Intrinsic::launder_invariant_group:
943 case Intrinsic::is_constant:
944 case Intrinsic::lifetime_start:
945 case Intrinsic::lifetime_end:
946 case Intrinsic::experimental_noalias_scope_decl:
947 case Intrinsic::objectsize:
948 case Intrinsic::ptr_annotation:
949 case Intrinsic::var_annotation:
950 case Intrinsic::experimental_gc_result:
951 case Intrinsic::experimental_gc_relocate:
952 case Intrinsic::coro_alloc:
953 case Intrinsic::coro_begin:
954 case Intrinsic::coro_begin_custom_abi:
955 case Intrinsic::coro_dead:
956 case Intrinsic::coro_id:
957 case Intrinsic::coro_id_async:
958 case Intrinsic::coro_id_retcon:
959 case Intrinsic::coro_id_retcon_once:
960 case Intrinsic::coro_noop:
961 case Intrinsic::coro_free:
962 case Intrinsic::coro_end:
963 case Intrinsic::coro_frame:
964 case Intrinsic::coro_size:
965 case Intrinsic::coro_align:
966 case Intrinsic::coro_suspend:
967 case Intrinsic::coro_subfn_addr:
968 case Intrinsic::threadlocal_address:
969 case Intrinsic::experimental_widenable_condition:
970 case Intrinsic::ssa_copy:
971 // These intrinsics don't actually represent code after lowering.
972 return 0;
973 case Intrinsic::bswap:
974 if (!ICA.getReturnType()->isVectorTy() &&
975 !isPowerOf2_64(DL.getTypeSizeInBits(ICA.getReturnType())))
977 }
978 return 1;
979 }
980
981 virtual InstructionCost
984 switch (MICA.getID()) {
985 case Intrinsic::masked_scatter:
986 case Intrinsic::masked_gather:
987 case Intrinsic::masked_load:
988 case Intrinsic::masked_store:
989 case Intrinsic::vp_scatter:
990 case Intrinsic::vp_gather:
991 case Intrinsic::masked_compressstore:
992 case Intrinsic::masked_expandload:
993 return 1;
994 }
996 }
997
1001 return 1;
1002 }
1003
1004 // Assume that we have a register of the right size for the type.
1005 virtual unsigned getNumberOfParts(Type *Tp) const { return 1; }
1006
1009 const SCEV *,
1010 TTI::TargetCostKind) const {
1011 return 0;
1012 }
1013
1014 virtual InstructionCost
1016 std::optional<FastMathFlags> FMF,
1017 TTI::TargetCostKind) const {
1018 return 1;
1019 }
1020
1023 TTI::TargetCostKind) const {
1024 return 1;
1025 }
1026
1027 virtual InstructionCost
1028 getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy,
1029 VectorType *Ty, std::optional<FastMathFlags> FMF,
1031 return 1;
1032 }
1033
1034 virtual InstructionCost
1035 getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy,
1037 return 1;
1038 }
1039
1040 virtual InstructionCost
1042 return 0;
1043 }
1044
1046 MemIntrinsicInfo &Info) const {
1047 return false;
1048 }
1049
1050 virtual unsigned getAtomicMemIntrinsicMaxElementSize() const {
1051 // Note for overrides: You must ensure for all element unordered-atomic
1052 // memory intrinsics that all power-of-2 element sizes up to, and
1053 // including, the return value of this method have a corresponding
1054 // runtime lib call. These runtime lib call definitions can be found
1055 // in RuntimeLibcalls.h
1056 return 0;
1057 }
1058
1059 virtual Value *
1061 bool CanCreate = true) const {
1062 return nullptr;
1063 }
1064
1065 virtual Type *
1067 unsigned SrcAddrSpace, unsigned DestAddrSpace,
1068 Align SrcAlign, Align DestAlign,
1069 std::optional<uint32_t> AtomicElementSize) const {
1070 return AtomicElementSize ? Type::getIntNTy(Context, *AtomicElementSize * 8)
1071 : Type::getInt8Ty(Context);
1072 }
1073
1075 SmallVectorImpl<Type *> &OpsOut, LLVMContext &Context,
1076 unsigned RemainingBytes, unsigned SrcAddrSpace, unsigned DestAddrSpace,
1077 Align SrcAlign, Align DestAlign,
1078 std::optional<uint32_t> AtomicCpySize) const {
1079 unsigned OpSizeInBytes = AtomicCpySize.value_or(1);
1080 Type *OpType = Type::getIntNTy(Context, OpSizeInBytes * 8);
1081 for (unsigned i = 0; i != RemainingBytes; i += OpSizeInBytes)
1082 OpsOut.push_back(OpType);
1083 }
1084
1085 virtual bool areInlineCompatible(const Function *Caller,
1086 const Function *Callee) const {
1087 return (Caller->getFnAttribute("target-cpu") ==
1088 Callee->getFnAttribute("target-cpu")) &&
1089 (Caller->getFnAttribute("target-features") ==
1090 Callee->getFnAttribute("target-features"));
1091 }
1092
1093 virtual unsigned getInlineCallPenalty(const Function *F, const CallBase &Call,
1094 unsigned DefaultCallPenalty) const {
1095 return DefaultCallPenalty;
1096 }
1097
1098 virtual bool
1100 const Attribute &Attr) const {
1101 // Copy attributes by default
1102 return true;
1103 }
1104
1105 virtual bool areTypesABICompatible(const Function *Caller,
1106 const Function *Callee,
1107 ArrayRef<Type *> Types) const {
1108 return (Caller->getFnAttribute("target-cpu") ==
1109 Callee->getFnAttribute("target-cpu")) &&
1110 (Caller->getFnAttribute("target-features") ==
1111 Callee->getFnAttribute("target-features"));
1112 }
1113
1115 return false;
1116 }
1117
1119 return false;
1120 }
1121
1122 virtual unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const {
1123 return 128;
1124 }
1125
1126 virtual bool isLegalToVectorizeLoad(LoadInst *LI) const { return true; }
1127
1128 virtual bool isLegalToVectorizeStore(StoreInst *SI) const { return true; }
1129
1130 virtual bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
1131 Align Alignment,
1132 unsigned AddrSpace) const {
1133 return true;
1134 }
1135
1136 virtual bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
1137 Align Alignment,
1138 unsigned AddrSpace) const {
1139 return true;
1140 }
1141
1143 ElementCount VF) const {
1144 return true;
1145 }
1146
1148 ArrayRef<int> Mask, ArrayRef<Value *> Scalars,
1151 GatherUseOps) const {
1152 return TargetTransformInfo::VectorInstrContext::None;
1153 }
1154
1156 return true;
1157 }
1158
1159 virtual unsigned getLoadVectorFactor(unsigned VF, unsigned LoadSize,
1160 unsigned ChainSizeInBytes,
1161 VectorType *VecTy) const {
1162 return VF;
1163 }
1164
1165 virtual unsigned getStoreVectorFactor(unsigned VF, unsigned StoreSize,
1166 unsigned ChainSizeInBytes,
1167 VectorType *VecTy) const {
1168 return VF;
1169 }
1170
1171 virtual bool preferFixedOverScalableIfEqualCost() const { return false; }
1172
1173 virtual bool preferInLoopReduction(RecurKind Kind, Type *Ty) const {
1174 return false;
1175 }
1176 virtual bool preferAlternateOpcodeVectorization() const { return true; }
1177
1178 virtual bool preferSLPInstCountCheck() const { return true; }
1179
1180 virtual bool preferPredicatedReductionSelect() const { return false; }
1181
1182 virtual bool preferEpilogueVectorization(ElementCount Iters) const {
1183 // We consider epilogue vectorization unprofitable for targets that
1184 // don't consider interleaving beneficial (eg. MVE).
1185 return getMaxInterleaveFactor(Iters, false) > 1;
1186 }
1187
1188 virtual bool shouldConsiderVectorizationRegPressure() const { return false; }
1189
1190 virtual bool shouldExpandReduction(const IntrinsicInst *II) const {
1191 return true;
1192 }
1193
1194 virtual TTI::ReductionShuffle
1198
1199 virtual unsigned getGISelRematGlobalCost() const { return 1; }
1200
1201 virtual unsigned getMinTripCountTailFoldingThreshold() const { return 0; }
1202
1203 virtual bool supportsScalableVectors() const { return false; }
1204
1205 virtual bool enableScalableVectorization() const { return false; }
1206
1207 virtual bool hasActiveVectorLength() const { return false; }
1208
1210 SmallVectorImpl<Use *> &Ops) const {
1211 return false;
1212 }
1213
1214 virtual bool isVectorShiftByScalarCheap(Type *Ty) const { return false; }
1215
1222
1223 virtual bool hasArmWideBranch(bool) const { return false; }
1224
1225 virtual APInt getFeatureMask(const Function &F) const {
1226 return APInt::getZero(32);
1227 }
1228
1229 virtual APInt getPriorityMask(const Function &F) const {
1230 return APInt::getZero(32);
1231 }
1232
1233 virtual bool isMultiversionedFunction(const Function &F) const {
1234 return false;
1235 }
1236
1237 virtual unsigned getMaxNumArgs() const { return UINT_MAX; }
1238
1239 virtual unsigned getNumBytesToPadGlobalArray(unsigned Size,
1240 Type *ArrayType) const {
1241 return 0;
1242 }
1243
1245 const Function &F,
1246 SmallVectorImpl<std::pair<StringRef, int64_t>> &LB) const {}
1247
1248 virtual bool allowVectorElementIndexingUsingGEP() const { return true; }
1249
1250 virtual bool isUniform(const Instruction *I,
1251 const SmallBitVector &UniformArgs) const {
1252 llvm_unreachable("target must implement isUniform for Custom uniformity");
1253 }
1254
1255protected:
1256 // Obtain the minimum required size to hold the value (without the sign)
1257 // In case of a vector it returns the min required size for one element.
1258 unsigned minRequiredElementSize(const Value *Val, bool &isSigned) const {
1260 const auto *VectorValue = cast<Constant>(Val);
1261
1262 // In case of a vector need to pick the max between the min
1263 // required size for each element
1264 auto *VT = cast<FixedVectorType>(Val->getType());
1265
1266 // Assume unsigned elements
1267 isSigned = false;
1268
1269 // The max required size is the size of the vector element type
1270 unsigned MaxRequiredSize =
1271 VT->getElementType()->getPrimitiveSizeInBits().getFixedValue();
1272
1273 unsigned MinRequiredSize = 0;
1274 for (unsigned i = 0, e = VT->getNumElements(); i < e; ++i) {
1275 if (auto *IntElement =
1276 dyn_cast<ConstantInt>(VectorValue->getAggregateElement(i))) {
1277 bool signedElement = IntElement->getValue().isNegative();
1278 // Get the element min required size.
1279 unsigned ElementMinRequiredSize =
1280 IntElement->getValue().getSignificantBits() - 1;
1281 // In case one element is signed then all the vector is signed.
1282 isSigned |= signedElement;
1283 // Save the max required bit size between all the elements.
1284 MinRequiredSize = std::max(MinRequiredSize, ElementMinRequiredSize);
1285 } else {
1286 // not an int constant element
1287 return MaxRequiredSize;
1288 }
1289 }
1290 return MinRequiredSize;
1291 }
1292
1293 if (const auto *CI = dyn_cast<ConstantInt>(Val)) {
1294 isSigned = CI->getValue().isNegative();
1295 return CI->getValue().getSignificantBits() - 1;
1296 }
1297
1298 if (const auto *Cast = dyn_cast<SExtInst>(Val)) {
1299 isSigned = true;
1300 return Cast->getSrcTy()->getScalarSizeInBits() - 1;
1301 }
1302
1303 if (const auto *Cast = dyn_cast<ZExtInst>(Val)) {
1304 isSigned = false;
1305 return Cast->getSrcTy()->getScalarSizeInBits();
1306 }
1307
1308 isSigned = false;
1309 return Val->getType()->getScalarSizeInBits();
1310 }
1311
1312 bool isStridedAccess(const SCEV *Ptr) const {
1313 return Ptr && isa<SCEVAddRecExpr>(Ptr);
1314 }
1315
1317 const SCEV *Ptr) const {
1318 if (!isStridedAccess(Ptr))
1319 return nullptr;
1320 const SCEVAddRecExpr *AddRec = cast<SCEVAddRecExpr>(Ptr);
1321 return dyn_cast<SCEVConstant>(AddRec->getStepRecurrence(*SE));
1322 }
1323
1325 int64_t MergeDistance) const {
1326 const SCEVConstant *Step = getConstantStrideStep(SE, Ptr);
1327 if (!Step)
1328 return false;
1329 APInt StrideVal = Step->getAPInt();
1330 if (StrideVal.getBitWidth() > 64)
1331 return false;
1332 // FIXME: Need to take absolute value for negative stride case.
1333 return StrideVal.getSExtValue() < MergeDistance;
1334 }
1335};
1336
1337/// CRTP base class for use as a mix-in that aids implementing
1338/// a TargetTransformInfo-compatible class.
1339template <typename T>
1341private:
1342 typedef TargetTransformInfoImplBase BaseT;
1343
1344protected:
1346
1347public:
1348 InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr,
1351 Type *AccessType) const override {
1352 assert(PointeeType && Ptr && "can't get GEPCost of nullptr");
1353 auto *BaseGV = dyn_cast<GlobalValue>(Ptr->stripPointerCasts());
1354 bool HasBaseReg = (BaseGV == nullptr);
1355
1356 auto PtrSizeBits = DL.getPointerTypeSizeInBits(Ptr->getType());
1357 APInt BaseOffset(PtrSizeBits, 0);
1358 int64_t Scale = 0;
1359
1360 auto GTI = gep_type_begin(PointeeType, Operands);
1361 Type *TargetType = nullptr;
1362
1363 // Handle the case where the GEP instruction has a single operand,
1364 // the basis, therefore TargetType is a nullptr.
1365 if (Operands.empty())
1366 return !BaseGV ? TTI::TCC_Free : TTI::TCC_Basic;
1367
1368 for (auto I = Operands.begin(); I != Operands.end(); ++I, ++GTI) {
1369 TargetType = GTI.getIndexedType();
1370 // We assume that the cost of Scalar GEP with constant index and the
1371 // cost of Vector GEP with splat constant index are the same.
1372 const ConstantInt *ConstIdx = dyn_cast<ConstantInt>(*I);
1373 if (!ConstIdx)
1374 if (auto Splat = getSplatValue(*I))
1375 ConstIdx = dyn_cast<ConstantInt>(Splat);
1376 if (StructType *STy = GTI.getStructTypeOrNull()) {
1377 // For structures the index is always splat or scalar constant
1378 assert(ConstIdx && "Unexpected GEP index");
1379 uint64_t Field = ConstIdx->getZExtValue();
1380 BaseOffset += DL.getStructLayout(STy)->getElementOffset(Field);
1381 } else {
1382 // If this operand is a scalable type, bail out early.
1383 // TODO: Make isLegalAddressingMode TypeSize aware.
1384 if (TargetType->isScalableTy())
1385 return TTI::TCC_Basic;
1386 int64_t ElementSize =
1387 GTI.getSequentialElementStride(DL).getFixedValue();
1388 if (ConstIdx) {
1389 BaseOffset +=
1390 ConstIdx->getValue().sextOrTrunc(PtrSizeBits) * ElementSize;
1391 } else {
1392 // Needs scale register.
1393 if (Scale != 0)
1394 // No addressing mode takes two scale registers.
1395 return TTI::TCC_Basic;
1396 Scale = ElementSize;
1397 }
1398 }
1399 }
1400
1401 // If we haven't been provided a hint, use the target type for now.
1402 //
1403 // TODO: Take a look at potentially removing this: This is *slightly* wrong
1404 // as it's possible to have a GEP with a foldable target type but a memory
1405 // access that isn't foldable. For example, this load isn't foldable on
1406 // RISC-V:
1407 //
1408 // %p = getelementptr i32, ptr %base, i32 42
1409 // %x = load <2 x i32>, ptr %p
1410 if (!AccessType)
1411 AccessType = TargetType;
1412
1413 // If the final address of the GEP is a legal addressing mode for the given
1414 // access type, then we can fold it into its users.
1415 if (static_cast<const T *>(this)->isLegalAddressingMode(
1416 AccessType, const_cast<GlobalValue *>(BaseGV),
1417 BaseOffset.sextOrTrunc(64).getSExtValue(), HasBaseReg, Scale,
1419 return TTI::TCC_Free;
1420
1421 // TODO: Instead of returning TCC_Basic here, we should use
1422 // getArithmeticInstrCost. Or better yet, provide a hook to let the target
1423 // model it.
1424 return TTI::TCC_Basic;
1425 }
1426
1429 const TTI::PointersChainInfo &Info, Type *AccessTy,
1430 TTI::TargetCostKind CostKind) const override {
1432 // In the basic model we take into account GEP instructions only
1433 // (although here can come alloca instruction, a value, constants and/or
1434 // constant expressions, PHIs, bitcasts ... whatever allowed to be used as a
1435 // pointer). Typically, if Base is a not a GEP-instruction and all the
1436 // pointers are relative to the same base address, all the rest are
1437 // either GEP instructions, PHIs, bitcasts or constants. When we have same
1438 // base, we just calculate cost of each non-Base GEP as an ADD operation if
1439 // any their index is a non-const.
1440 // If no known dependecies between the pointers cost is calculated as a sum
1441 // of costs of GEP instructions.
1442 for (const Value *V : Ptrs) {
1443 const auto *GEP = dyn_cast<GetElementPtrInst>(V);
1444 if (!GEP)
1445 continue;
1446 if (Info.isSameBase() && V != Base) {
1447 if (GEP->hasAllConstantIndices())
1448 continue;
1449 Cost += static_cast<const T *>(this)->getArithmeticInstrCost(
1450 Instruction::Add, GEP->getType(), CostKind,
1451 {TTI::OK_AnyValue, TTI::OP_None}, {TTI::OK_AnyValue, TTI::OP_None},
1452 {});
1453 } else {
1454 SmallVector<const Value *> Indices(GEP->indices());
1455 Cost += static_cast<const T *>(this)->getGEPCost(
1456 GEP->getSourceElementType(), GEP->getPointerOperand(), Indices,
1457 CostKind, AccessTy);
1458 }
1459 }
1460 return Cost;
1461 }
1462
1465 TTI::TargetCostKind CostKind) const override {
1466 using namespace llvm::PatternMatch;
1467
1468 auto *TargetTTI = static_cast<const T *>(this);
1469 // Handle non-intrinsic calls, invokes, and callbr.
1470 // FIXME: Unlikely to be true for anything but CodeSize.
1471 auto *CB = dyn_cast<CallBase>(U);
1472 if (CB && !isa<IntrinsicInst>(U)) {
1473 if (const Function *F = CB->getCalledFunction()) {
1474 if (!TargetTTI->isLoweredToCall(F))
1475 return TTI::TCC_Basic; // Give a basic cost if it will be lowered
1476
1477 return TTI::TCC_Basic * (F->getFunctionType()->getNumParams() + 1);
1478 }
1479 // For indirect or other calls, scale cost by number of arguments.
1480 return TTI::TCC_Basic * (CB->arg_size() + 1);
1481 }
1482
1483 Type *Ty = U->getType();
1484 unsigned Opcode = Operator::getOpcode(U);
1485 auto *I = dyn_cast<Instruction>(U);
1486 switch (Opcode) {
1487 default:
1488 break;
1489 case Instruction::Call: {
1490 assert(isa<IntrinsicInst>(U) && "Unexpected non-intrinsic call");
1491 auto *Intrinsic = cast<IntrinsicInst>(U);
1492 IntrinsicCostAttributes CostAttrs(Intrinsic->getIntrinsicID(), *CB);
1493 return TargetTTI->getIntrinsicInstrCost(CostAttrs, CostKind);
1494 }
1495 case Instruction::UncondBr:
1496 case Instruction::CondBr:
1497 case Instruction::Ret:
1498 case Instruction::PHI:
1499 case Instruction::Switch:
1500 return TargetTTI->getCFInstrCost(Opcode, CostKind, I);
1501 case Instruction::Freeze:
1502 return TTI::TCC_Free;
1503 case Instruction::ExtractValue:
1504 case Instruction::InsertValue:
1505 return TargetTTI->getInsertExtractValueCost(Opcode, CostKind);
1506 case Instruction::Alloca:
1507 if (cast<AllocaInst>(U)->isStaticAlloca())
1508 return TTI::TCC_Free;
1509 break;
1510 case Instruction::GetElementPtr: {
1511 const auto *GEP = cast<GEPOperator>(U);
1512 Type *AccessType = nullptr;
1513 // For now, only provide the AccessType in the simple case where the GEP
1514 // only has one user.
1515 if (GEP->hasOneUser() && I)
1516 AccessType = I->user_back()->getAccessType();
1517
1518 return TargetTTI->getGEPCost(GEP->getSourceElementType(),
1519 Operands.front(), Operands.drop_front(),
1520 CostKind, AccessType);
1521 }
1522 case Instruction::Add:
1523 case Instruction::FAdd:
1524 case Instruction::Sub:
1525 case Instruction::FSub:
1526 case Instruction::Mul:
1527 case Instruction::FMul:
1528 case Instruction::UDiv:
1529 case Instruction::SDiv:
1530 case Instruction::FDiv:
1531 case Instruction::URem:
1532 case Instruction::SRem:
1533 case Instruction::FRem:
1534 case Instruction::Shl:
1535 case Instruction::LShr:
1536 case Instruction::AShr:
1537 case Instruction::And:
1538 case Instruction::Or:
1539 case Instruction::Xor:
1540 case Instruction::FNeg: {
1542 TTI::OperandValueInfo Op2Info;
1543 if (Opcode != Instruction::FNeg)
1544 Op2Info = TTI::getOperandInfo(Operands[1]);
1545 return TargetTTI->getArithmeticInstrCost(Opcode, Ty, CostKind, Op1Info,
1546 Op2Info, Operands, I);
1547 }
1548 case Instruction::IntToPtr:
1549 case Instruction::PtrToAddr:
1550 case Instruction::PtrToInt:
1551 case Instruction::SIToFP:
1552 case Instruction::UIToFP:
1553 case Instruction::FPToUI:
1554 case Instruction::FPToSI:
1555 case Instruction::Trunc:
1556 case Instruction::FPTrunc:
1557 case Instruction::BitCast:
1558 case Instruction::FPExt:
1559 case Instruction::SExt:
1560 case Instruction::ZExt:
1561 case Instruction::AddrSpaceCast: {
1562 Type *OpTy = Operands[0]->getType();
1563 return TargetTTI->getCastInstrCost(
1564 Opcode, Ty, OpTy, TTI::getCastContextHint(I), CostKind, I);
1565 }
1566 case Instruction::Store: {
1567 auto *SI = cast<StoreInst>(U);
1568 Type *ValTy = Operands[0]->getType();
1570 return TargetTTI->getMemoryOpCost(Opcode, ValTy, SI->getAlign(),
1571 SI->getPointerAddressSpace(), CostKind,
1572 OpInfo, I);
1573 }
1574 case Instruction::Load: {
1575 auto *LI = cast<LoadInst>(U);
1576 Type *LoadType = U->getType();
1577 // If there is a non-register sized type, the cost estimation may expand
1578 // it to be several instructions to load into multiple registers on the
1579 // target. But, if the only use of the load is a trunc instruction to a
1580 // register sized type, the instruction selector can combine these
1581 // instructions to be a single load. So, in this case, we use the
1582 // destination type of the trunc instruction rather than the load to
1583 // accurately estimate the cost of this load instruction.
1584 if (CostKind == TTI::TCK_CodeSize && LI->hasOneUse() &&
1585 !LoadType->isVectorTy()) {
1586 if (const TruncInst *TI = dyn_cast<TruncInst>(*LI->user_begin()))
1587 LoadType = TI->getDestTy();
1588 }
1589 return TargetTTI->getMemoryOpCost(Opcode, LoadType, LI->getAlign(),
1591 {TTI::OK_AnyValue, TTI::OP_None}, I);
1592 }
1593 case Instruction::Select: {
1594 const Value *Op0, *Op1;
1595 if (match(U, m_LogicalAnd(m_Value(Op0), m_Value(Op1))) ||
1596 match(U, m_LogicalOr(m_Value(Op0), m_Value(Op1)))) {
1597 // select x, y, false --> x & y
1598 // select x, true, y --> x | y
1599 const auto Op1Info = TTI::getOperandInfo(Op0);
1600 const auto Op2Info = TTI::getOperandInfo(Op1);
1601 assert(Op0->getType()->getScalarSizeInBits() == 1 &&
1602 Op1->getType()->getScalarSizeInBits() == 1);
1603
1605 return TargetTTI->getArithmeticInstrCost(
1606 match(U, m_LogicalOr()) ? Instruction::Or : Instruction::And, Ty,
1607 CostKind, Op1Info, Op2Info, Operands, I);
1608 }
1609 const auto Op1Info = TTI::getOperandInfo(Operands[1]);
1610 const auto Op2Info = TTI::getOperandInfo(Operands[2]);
1611 Type *CondTy = Operands[0]->getType();
1612 return TargetTTI->getCmpSelInstrCost(Opcode, U->getType(), CondTy,
1614 CostKind, Op1Info, Op2Info, I);
1615 }
1616 case Instruction::ICmp:
1617 case Instruction::FCmp: {
1618 const auto Op1Info = TTI::getOperandInfo(Operands[0]);
1619 const auto Op2Info = TTI::getOperandInfo(Operands[1]);
1620 Type *ValTy = Operands[0]->getType();
1621 // TODO: Also handle ICmp/FCmp constant expressions.
1622 return TargetTTI->getCmpSelInstrCost(Opcode, ValTy, U->getType(),
1623 I ? cast<CmpInst>(I)->getPredicate()
1625 CostKind, Op1Info, Op2Info, I);
1626 }
1627 case Instruction::InsertElement: {
1628 auto *IE = dyn_cast<InsertElementInst>(U);
1629 if (!IE)
1630 return TTI::TCC_Basic; // FIXME
1631 unsigned Idx = -1;
1632 if (auto *CI = dyn_cast<ConstantInt>(Operands[2]))
1633 if (CI->getValue().getActiveBits() <= 32)
1634 Idx = CI->getZExtValue();
1635 return TargetTTI->getVectorInstrCost(*IE, Ty, CostKind, Idx,
1637 }
1638 case Instruction::ShuffleVector: {
1639 auto *Shuffle = dyn_cast<ShuffleVectorInst>(U);
1640 if (!Shuffle)
1641 return TTI::TCC_Basic; // FIXME
1642
1643 auto *VecTy = cast<VectorType>(U->getType());
1644 auto *VecSrcTy = cast<VectorType>(Operands[0]->getType());
1645 ArrayRef<int> Mask = Shuffle->getShuffleMask();
1646 int NumSubElts, SubIndex;
1647
1648 // Treat undef/poison mask as free (no matter the length).
1649 if (all_of(Mask, [](int M) { return M < 0; }))
1650 return TTI::TCC_Free;
1651
1652 // TODO: move more of this inside improveShuffleKindFromMask.
1653 if (Shuffle->changesLength()) {
1654 // Treat a 'subvector widening' as a free shuffle.
1655 if (Shuffle->increasesLength() && Shuffle->isIdentityWithPadding())
1656 return TTI::TCC_Free;
1657
1658 if (Shuffle->isExtractSubvectorMask(SubIndex))
1659 return TargetTTI->getShuffleCost(TTI::SK_ExtractSubvector, VecTy,
1660 VecSrcTy, CostKind, Mask, SubIndex,
1661 VecTy, Operands, Shuffle);
1662
1663 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex))
1664 return TargetTTI->getShuffleCost(
1665 TTI::SK_InsertSubvector, VecTy, VecSrcTy, CostKind, Mask,
1666 SubIndex,
1667 FixedVectorType::get(VecTy->getScalarType(), NumSubElts),
1668 Operands, Shuffle);
1669
1670 int ReplicationFactor, VF;
1671 if (Shuffle->isReplicationMask(ReplicationFactor, VF)) {
1672 APInt DemandedDstElts = APInt::getZero(Mask.size());
1673 for (auto I : enumerate(Mask)) {
1674 if (I.value() != PoisonMaskElem)
1675 DemandedDstElts.setBit(I.index());
1676 }
1677 return TargetTTI->getReplicationShuffleCost(
1678 VecSrcTy->getElementType(), ReplicationFactor, VF,
1679 DemandedDstElts, CostKind);
1680 }
1681
1682 bool IsUnary = isa<UndefValue>(Operands[1]);
1683 NumSubElts = VecSrcTy->getElementCount().getKnownMinValue();
1684 SmallVector<int, 16> AdjustMask(Mask);
1685
1686 // Widening shuffle - widening the source(s) to the new length
1687 // (treated as free - see above), and then perform the adjusted
1688 // shuffle at that width.
1689 if (Shuffle->increasesLength()) {
1690 for (int &M : AdjustMask)
1691 M = M >= NumSubElts ? (M + (Mask.size() - NumSubElts)) : M;
1692
1693 return TargetTTI->getShuffleCost(
1695 VecTy, CostKind, AdjustMask, 0, nullptr, Operands, Shuffle);
1696 }
1697
1698 // Narrowing shuffle - perform shuffle at original wider width and
1699 // then extract the lower elements.
1700 // FIXME: This can assume widening, which is not true of all vector
1701 // architectures (and is not even the default).
1702 AdjustMask.append(NumSubElts - Mask.size(), PoisonMaskElem);
1703
1704 InstructionCost ShuffleCost = TargetTTI->getShuffleCost(
1706 VecSrcTy, VecSrcTy, CostKind, AdjustMask, 0, nullptr, Operands,
1707 Shuffle);
1708
1709 SmallVector<int, 16> ExtractMask(Mask.size());
1710 std::iota(ExtractMask.begin(), ExtractMask.end(), 0);
1711 return ShuffleCost + TargetTTI->getShuffleCost(
1712 TTI::SK_ExtractSubvector, VecTy, VecSrcTy,
1713 CostKind, ExtractMask, 0, VecTy, {}, Shuffle);
1714 }
1715
1716 if (Shuffle->isIdentity())
1717 return TTI::TCC_Free;
1718
1719 if (Shuffle->isReverse())
1720 return TargetTTI->getShuffleCost(TTI::SK_Reverse, VecTy, VecSrcTy,
1721 CostKind, Mask, 0, nullptr, Operands,
1722 Shuffle);
1723
1724 if (Shuffle->isTranspose())
1725 return TargetTTI->getShuffleCost(TTI::SK_Transpose, VecTy, VecSrcTy,
1726 CostKind, Mask, 0, nullptr, Operands,
1727 Shuffle);
1728
1729 if (Shuffle->isZeroEltSplat())
1730 return TargetTTI->getShuffleCost(TTI::SK_Broadcast, VecTy, VecSrcTy,
1731 CostKind, Mask, 0, nullptr, Operands,
1732 Shuffle);
1733
1734 if (Shuffle->isSingleSource())
1735 return TargetTTI->getShuffleCost(TTI::SK_PermuteSingleSrc, VecTy,
1736 VecSrcTy, CostKind, Mask, 0, nullptr,
1737 Operands, Shuffle);
1738
1739 if (Shuffle->isInsertSubvectorMask(NumSubElts, SubIndex))
1740 return TargetTTI->getShuffleCost(
1741 TTI::SK_InsertSubvector, VecTy, VecSrcTy, CostKind, Mask, SubIndex,
1742 FixedVectorType::get(VecTy->getScalarType(), NumSubElts), Operands,
1743 Shuffle);
1744
1745 if (Shuffle->isSelect())
1746 return TargetTTI->getShuffleCost(TTI::SK_Select, VecTy, VecSrcTy,
1747 CostKind, Mask, 0, nullptr, Operands,
1748 Shuffle);
1749
1750 if (Shuffle->isSplice(SubIndex))
1751 return TargetTTI->getShuffleCost(TTI::SK_Splice, VecTy, VecSrcTy,
1752 CostKind, Mask, SubIndex, nullptr,
1753 Operands, Shuffle);
1754
1755 return TargetTTI->getShuffleCost(TTI::SK_PermuteTwoSrc, VecTy, VecSrcTy,
1756 CostKind, Mask, 0, nullptr, Operands,
1757 Shuffle);
1758 }
1759 case Instruction::ExtractElement: {
1760 auto *EEI = dyn_cast<ExtractElementInst>(U);
1761 if (!EEI)
1762 return TTI::TCC_Basic; // FIXME
1763 unsigned Idx = -1;
1764 if (auto *CI = dyn_cast<ConstantInt>(Operands[1]))
1765 if (CI->getValue().getActiveBits() <= 32)
1766 Idx = CI->getZExtValue();
1767 Type *DstTy = Operands[0]->getType();
1768 return TargetTTI->getVectorInstrCost(*EEI, DstTy, CostKind, Idx);
1769 }
1770 }
1771
1772 // By default, just classify everything remaining as 'basic'.
1773 return TTI::TCC_Basic;
1774 }
1775
1777 auto *TargetTTI = static_cast<const T *>(this);
1778 SmallVector<const Value *, 4> Ops(I->operand_values());
1779 InstructionCost Cost = TargetTTI->getInstructionCost(
1782 }
1783
1784 bool supportsTailCallFor(const CallBase *CB) const override {
1785 return static_cast<const T *>(this)->supportsTailCalls();
1786 }
1787};
1788} // namespace llvm
1789
1790#endif
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
unsigned Imm
unsigned uint64_t
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
#define LLVM_ABI
Definition Compiler.h:215
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")))
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
static bool isSigned(unsigned Opcode)
Hexagon Common GEP
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
#define T
uint64_t IntrinsicInst * II
OptimizedStructLayoutField Field
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
SI Fold Operands
static SymbolRef::Type getType(const Symbol *Sym)
Definition TapiFile.cpp:39
This pass exposes codegen information to IR-level passes.
static void computeKnownBits(const Value *V, const APInt &DemandedElts, KnownBits &Known, const SimplifyQuery &Q, unsigned Depth)
Determine which bits of V are known to be either zero or one and return them in the Known bit set.
Class for arbitrary precision integers.
Definition APInt.h:78
void setBit(unsigned BitPosition)
Set the given bit to 1 whose position is given as "bitPosition".
Definition APInt.h:1350
unsigned getBitWidth() const
Return the number of bits in the APInt.
Definition APInt.h:1508
LLVM_ABI APInt sextOrTrunc(unsigned width) const
Sign extend or truncate to width.
Definition APInt.cpp:1086
static APInt getZero(unsigned numBits)
Get the '0' value for the specified bit-width.
Definition APInt.h:196
int64_t getSExtValue() const
Get sign extended value.
Definition APInt.h:1582
This class represents a conversion between pointers from one address space to another.
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
Class to represent array types.
A cache of @llvm.assume calls within a function.
Functions, function parameters, and return types can have attributes to indicate how they should be t...
Definition Attributes.h:106
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...
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition InstrTypes.h:740
Conditional Branch instruction.
This is the shared class of boolean and integer constants.
Definition Constants.h:87
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
Definition Constants.h:168
const APInt & getValue() const
Return the constant as an APInt value reference.
Definition Constants.h:159
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
static constexpr ElementCount get(ScalarTy MinVal, bool Scalable)
Definition TypeSize.h:311
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:23
static LLVM_ABI FixedVectorType * get(Type *ElementType, unsigned NumElts)
Definition Type.cpp:843
The core instruction combiner logic.
static InstructionCost getInvalid(CostType Val=0)
Class to represent integer types.
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
An instruction for reading from memory.
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Information for memory intrinsic cost model.
unsigned getOpcode() const
Return the opcode for this Instruction or ConstantExpr.
Definition Operator.h:43
The optimization diagnostic interface.
Analysis providing profile information.
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
This node represents a polynomial recurrence on the trip count of the specified loop.
SCEVUse getStepRecurrence(ScalarEvolution &SE) const
Constructs and returns the recurrence indicating how much this expression steps by.
This class represents a constant integer value.
const APInt & getAPInt() const
This class represents an analyzed expression in the program.
The main scalar evolution driver.
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is ...
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
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
An instruction for storing to memory.
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
Class to represent struct types.
Multiway switch.
Provides information about what library functions are available for the current target.
virtual bool preferAlternateOpcodeVectorization() const
virtual bool isProfitableLSRChainElement(Instruction *I) const
virtual unsigned getCallerAllocaCost(const CallBase *CB, const AllocaInst *AI) const
virtual unsigned getMinimumLookupTableEntryBitWidth() const
virtual bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) const
virtual InstructionCost getCostOfKeepingLiveOverCall(ArrayRef< Type * > Tys) const
virtual TailFoldingStyle getPreferredTailFoldingStyle() const
virtual unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const
virtual bool haveFastClmul(IntegerType *Ty) const
virtual bool preferFixedOverScalableIfEqualCost() const
virtual InstructionCost getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy, VectorType *Ty, TTI::TargetCostKind CostKind) const
virtual const DataLayout & getDataLayout() const
virtual std::optional< unsigned > getCacheAssociativity(TargetTransformInfo::CacheLevel Level) const
virtual InstructionCost getCallInstrCost(Function *F, Type *RetTy, ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const
virtual bool enableInterleavedAccessVectorization() const
virtual 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
virtual unsigned getAddressSpaceJoin(unsigned AS1, unsigned AS2) const
virtual InstructionCost getOperandsScalarizationOverhead(ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
virtual InstructionCost getFPOpCost(Type *Ty) const
virtual bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment) const
virtual TTI::MemCmpExpansionOptions enableMemCmpExpansion(bool OptSize, bool IsZeroCmp) const
virtual bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const
bool isStridedAccess(const SCEV *Ptr) const
virtual unsigned getAtomicMemIntrinsicMaxElementSize() const
virtual Value * rewriteIntrinsicWithAddressSpace(IntrinsicInst *II, Value *OldV, Value *NewV) const
virtual TargetTransformInfo::VPLegalization getVPLegalizationStrategy(const VPIntrinsic &PI) const
virtual bool enableAggressiveInterleaving(bool LoopHasReductions) 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 isLegalMaskedStore(Type *DataType, Align Alignment, unsigned AddressSpace, TTI::MaskKind MaskKind) const
virtual InstructionCost getAddressComputationCost(Type *PtrTy, ScalarEvolution *, const SCEV *, TTI::TargetCostKind) const
virtual bool isLegalBroadcastLoad(Type *ElementTy, ElementCount NumElements) const
virtual bool isIndexedLoadLegal(TTI::MemIndexedMode Mode, Type *Ty) const
virtual unsigned adjustInliningThreshold(const CallBase *CB) const
virtual unsigned getLoadVectorFactor(unsigned VF, unsigned LoadSize, unsigned ChainSizeInBytes, VectorType *VecTy) const
virtual bool shouldDropLSRSolutionIfLessProfitable() const
virtual bool hasVolatileVariant(Instruction *I, unsigned AddrSpace) const
virtual bool isLegalMaskedLoad(Type *DataType, Align Alignment, unsigned AddressSpace, TTI::MaskKind MaskKind) const
virtual bool hasDivRemOp(Type *DataType, bool IsSigned) const
virtual bool isLegalStridedLoadStore(Type *DataType, Align Alignment) const
virtual bool isLegalICmpImmediate(int64_t Imm) const
virtual InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, TTI::OperandValueInfo OpInfo, const Instruction *I) const
virtual bool haveFastSqrt(Type *Ty) const
virtual ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const
virtual bool collectFlatAddressOperands(SmallVectorImpl< int > &OpIndexes, Intrinsic::ID IID) const
virtual bool addrspacesMayAlias(unsigned AS0, unsigned AS1) const
virtual unsigned getRegisterClassForType(bool Vector, Type *Ty=nullptr) const
virtual std::optional< unsigned > getVScaleForTuning() const
virtual InstructionCost getIntImmCost(const APInt &Imm, Type *Ty, TTI::TargetCostKind CostKind) const
virtual InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace) const
virtual unsigned getNumberOfParts(Type *Tp) const
virtual bool isLegalMaskedCompressStore(Type *DataType, Align Alignment) const
virtual bool isHardwareLoopProfitable(Loop *L, ScalarEvolution &SE, AssumptionCache &AC, TargetLibraryInfo *LibInfo, HardwareLoopInfo &HWLoopInfo) const
virtual void getPeelingPreferences(Loop *, ScalarEvolution &, TTI::PeelingPreferences &) const
virtual std::optional< Value * > simplifyDemandedUseBitsIntrinsic(InstCombiner &IC, IntrinsicInst &II, APInt DemandedMask, KnownBits &Known, bool &KnownBitsComputed) const
virtual bool useColdCCForColdCall(Function &F) const
virtual unsigned getNumberOfRegisters(unsigned ClassID) const
virtual bool canHaveNonUndefGlobalInitializerInAddressSpace(unsigned AS) const
virtual APInt getAddrSpaceCastPreservedPtrMask(unsigned SrcAS, unsigned DstAS) const
virtual bool isLegalAddScalableImmediate(int64_t Imm) const
virtual bool isLegalInterleavedAccessType(VectorType *VTy, unsigned Factor, Align Alignment, unsigned AddrSpace) const
virtual bool preferTailFoldingOverEpilogue(TailFoldingInfo *TFI) const
TargetTransformInfoImplBase(TargetTransformInfoImplBase &&Arg)
virtual bool shouldPrefetchAddressSpace(unsigned AS) const
virtual bool forceScalarizeMaskedScatter(VectorType *DataType, Align Alignment) const
virtual uint64_t getMaxMemIntrinsicInlineSizeThreshold() const
virtual KnownBits computeKnownBitsAddrSpaceCast(unsigned FromAS, unsigned ToAS, const KnownBits &FromPtrBits) const
virtual unsigned getMinVectorRegisterBitWidth() const
unsigned minRequiredElementSize(const Value *Val, bool &isSigned) const
virtual bool shouldBuildLookupTablesForConstant(Constant *C) const
virtual bool isFPVectorizationPotentiallyUnsafe() const
virtual bool isLegalToVectorizeReduction(const RecurrenceDescriptor &RdxDesc, ElementCount VF) const
virtual InstructionCost getIntImmCostInst(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty, TTI::TargetCostKind CostKind, Instruction *Inst=nullptr) const
virtual bool isLegalAltInstr(VectorType *VecTy, unsigned Opcode0, unsigned Opcode1, const SmallBitVector &OpcodeMask) const
virtual InstructionCost getIndexedVectorInstrCostFromEnd(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index) const
virtual std::optional< unsigned > getCacheSize(TargetTransformInfo::CacheLevel Level) const
virtual InstructionCost getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy, unsigned Index, TTI::TargetCostKind CostKind) const
virtual bool shouldTreatInstructionLikeSelect(const Instruction *I) const
virtual std::optional< Instruction * > instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const
virtual unsigned getEpilogueVectorizationMinVF() const
virtual std::pair< const Value *, unsigned > getPredicatedAddrSpace(const Value *V) const
virtual bool shouldMaximizeVectorBandwidth(TargetTransformInfo::RegisterKind K) const
virtual void getMemcpyLoopResidualLoweringType(SmallVectorImpl< Type * > &OpsOut, LLVMContext &Context, unsigned RemainingBytes, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicCpySize) const
virtual unsigned getStoreMinimumVF(unsigned VF, Type *, Type *, Align, unsigned) const
virtual InstructionCost getRegisterClassReloadCost(unsigned ClassID, TTI::TargetCostKind CostKind) const
virtual TTI::PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const
virtual TTI::AddressingModeKind getPreferredAddressingMode(const Loop *L, ScalarEvolution *SE) const
virtual bool forceScalarizeMaskedGather(VectorType *DataType, Align Alignment) const
virtual unsigned getMaxPrefetchIterationsAhead() const
virtual bool allowVectorElementIndexingUsingGEP() const
virtual bool isUniform(const Instruction *I, const SmallBitVector &UniformArgs) const
virtual InstructionCost getInstructionCost(const User *U, ArrayRef< const Value * > Operands, TTI::TargetCostKind CostKind) const
virtual TTI::ReductionShuffle getPreferredExpandedReductionShuffle(const IntrinsicInst *II) const
const SCEVConstant * getConstantStrideStep(ScalarEvolution *SE, const SCEV *Ptr) const
virtual bool hasBranchDivergence(const Function *F=nullptr) const
virtual InstructionCost getArithmeticReductionCost(unsigned, VectorType *, std::optional< FastMathFlags > FMF, TTI::TargetCostKind) const
virtual bool isProfitableToHoist(Instruction *I) const
virtual const char * getRegisterClassName(unsigned ClassID) const
virtual InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *, FastMathFlags, TTI::TargetCostKind) const
virtual bool isLegalToVectorizeLoad(LoadInst *LI) const
virtual unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const
virtual InstructionCost getAltInstrCost(VectorType *VecTy, unsigned Opcode0, unsigned Opcode1, const SmallBitVector &OpcodeMask, TTI::TargetCostKind CostKind) const
virtual unsigned getInlineCallPenalty(const Function *F, const CallBase &Call, unsigned DefaultCallPenalty) const
virtual unsigned getMaxInterleaveFactor(ElementCount VF, bool HasUnorderedReductions) const
virtual InstructionCost getVectorInstrCost(const Instruction &I, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
virtual bool isVectorShiftByScalarCheap(Type *Ty) const
virtual InstructionCost getShuffleCost(TTI::ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, TTI::TargetCostKind CostKind, ArrayRef< int > Mask, int Index, VectorType *SubTp, ArrayRef< const Value * > Args={}, const Instruction *CxtI=nullptr, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
virtual bool isLegalNTStore(Type *DataType, Align Alignment) const
virtual APInt getFeatureMask(const Function &F) const
virtual InstructionCost getMemIntrinsicInstrCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const
virtual std::optional< unsigned > getMinPageSize() const
virtual bool shouldCopyAttributeWhenOutliningFrom(const Function *Caller, const Attribute &Attr) const
virtual unsigned getRegUsageForType(Type *Ty) const
virtual bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace, Instruction *I=nullptr, int64_t ScalableOffset=0) 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 isElementTypeLegalForScalableVector(Type *Ty) const
virtual bool isLoweredToCall(const Function *F) const
virtual bool isLegalMaskedScatter(Type *DataType, Align Alignment) const
virtual bool isTruncateFree(Type *Ty1, Type *Ty2) const
virtual 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
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 getRegisterClassSpillCost(unsigned ClassID, TTI::TargetCostKind CostKind) const
virtual bool isIndexedStoreLegal(TTI::MemIndexedMode Mode, Type *Ty) const
virtual BranchProbability getPredictableBranchThreshold() const
virtual InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, ArrayRef< const Value * > Operands, TTI::TargetCostKind CostKind, Type *AccessType) const
virtual bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const
virtual InstructionCost getReplicationShuffleCost(Type *EltTy, int ReplicationFactor, int VF, const APInt &DemandedDstElts, TTI::TargetCostKind CostKind) const
virtual bool isLegalToVectorizeStore(StoreInst *SI) const
virtual bool areInlineCompatible(const Function *Caller, const Function *Callee) const
virtual bool isTargetIntrinsicWithStructReturnOverloadAtField(Intrinsic::ID ID, int RetIdx) const
virtual bool hasConditionalLoadStoreForType(Type *Ty, bool IsStore) const
virtual bool canSaveCmp(Loop *L, CondBrInst **BI, ScalarEvolution *SE, LoopInfo *LI, DominatorTree *DT, AssumptionCache *AC, TargetLibraryInfo *LibInfo) const
virtual bool preferInLoopReduction(RecurKind Kind, Type *Ty) const
virtual bool isMultiversionedFunction(const Function &F) const
virtual InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const
virtual bool isNoopAddrSpaceCast(unsigned, unsigned) const
virtual bool isExpensiveToSpeculativelyExecute(const Instruction *I) const
virtual bool isLSRCostLess(const TTI::LSRCost &C1, const TTI::LSRCost &C2) const
virtual bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) const
virtual bool isLegalMaskedGather(Type *DataType, Align Alignment) const
virtual unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI, unsigned &JTSize, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) const
virtual bool isLegalAddImmediate(int64_t Imm) const
virtual InstructionCost getInsertExtractValueCost(unsigned Opcode, TTI::TargetCostKind CostKind) const
virtual InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I) const
virtual ValueUniformity getValueUniformity(const Value *V) const
virtual bool isLegalNTLoad(Type *DataType, Align Alignment) const
virtual TargetTransformInfo::VectorInstrContext getBuildVectorContextHint(ArrayRef< int > Mask, ArrayRef< Value * > Scalars, function_ref< bool(SmallVectorImpl< TargetTransformInfo::BuildVectorUseOp > &)> GatherUseOps) const
virtual InstructionCost getBranchMispredictPenalty() const
virtual bool isTargetIntrinsicWithOverloadTypeAtArg(Intrinsic::ID ID, int OpdIdx) const
virtual InstructionCost getIntImmCostIntrin(Intrinsic::ID IID, unsigned Idx, const APInt &Imm, Type *Ty, TTI::TargetCostKind CostKind) const
virtual InstructionCost getIntImmCodeSizeCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty) const
bool isConstantStridedAccessLessThan(ScalarEvolution *SE, const SCEV *Ptr, int64_t MergeDistance) const
virtual Value * getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType, bool CanCreate=true) const
virtual bool enableMaskedInterleavedAccessVectorization() const
virtual std::pair< KnownBits, KnownBits > computeKnownBitsAddrSpaceCast(unsigned ToAS, const Value &PtrOp) const
virtual Type * getMemcpyLoopLoweringType(LLVMContext &Context, Value *Length, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicElementSize) const
virtual unsigned getInliningThresholdMultiplier() const
TargetTransformInfoImplBase(const DataLayout &DL)
virtual InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const
virtual InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind, TTI::OperandValueInfo Op1Info, TTI::OperandValueInfo Op2Info, const Instruction *I) const
virtual bool shouldExpandReduction(const IntrinsicInst *II) const
virtual bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const
virtual unsigned getGISelRematGlobalCost() const
virtual InstructionCost getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef< unsigned > Indices, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, bool UseMaskForCond, bool UseMaskForGaps) const
virtual bool isTypeLegal(Type *Ty) const
virtual unsigned getAssumedAddrSpace(const Value *V) const
virtual bool allowsMisalignedMemoryAccesses(LLVMContext &Context, unsigned BitWidth, unsigned AddressSpace, Align Alignment, unsigned *Fast) const
virtual unsigned getStoreVectorFactor(unsigned VF, unsigned StoreSize, unsigned ChainSizeInBytes, VectorType *VecTy) const
virtual InstructionCost getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const
virtual unsigned getInliningCostBenefitAnalysisSavingsMultiplier() const
virtual bool areTypesABICompatible(const Function *Caller, const Function *Callee, ArrayRef< Type * > Types) const
virtual unsigned getNumBytesToPadGlobalArray(unsigned Size, Type *ArrayType) const
virtual bool preferToKeepConstantsAttached(const Instruction &Inst, const Function &Fn) const
virtual bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const
virtual bool supportsTailCallFor(const CallBase *CB) const
virtual bool shouldConsiderAddressTypePromotion(const Instruction &I, bool &AllowPromotionWithoutCommonHeader) const
virtual InstructionCost getPointersChainCost(ArrayRef< const Value * > Ptrs, const Value *Base, const TTI::PointersChainInfo &Info, Type *AccessTy, const TTI::TargetCostKind CostKind) const
virtual InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index, const Value *Op0, const Value *Op1, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
virtual bool isTargetIntrinsicWithScalarOpAtArg(Intrinsic::ID ID, unsigned ScalarOpdIdx) const
virtual bool shouldConsiderVectorizationRegPressure() const
virtual InstructionCost getMemcpyCost(const Instruction *I) const
virtual unsigned getInliningCostBenefitAnalysisProfitableMultiplier() const
virtual bool useFastCCForInternalCall(Function &F) const
virtual bool preferEpilogueVectorization(ElementCount Iters) const
virtual void getUnrollingPreferences(Loop *, ScalarEvolution &, TTI::UnrollingPreferences &, OptimizationRemarkEmitter *) const
TargetTransformInfoImplBase(const TargetTransformInfoImplBase &Arg)=default
virtual bool isProfitableToSinkOperands(Instruction *I, SmallVectorImpl< Use * > &Ops) const
virtual bool supportsEfficientVectorElementLoadStore() const
virtual unsigned getMinPrefetchStride(unsigned NumMemAccesses, unsigned NumStridedMemAccesses, unsigned NumPrefetches, bool HasCall) const
virtual APInt getPriorityMask(const Function &F) const
virtual unsigned getMinTripCountTailFoldingThreshold() const
virtual TypeSize getRegisterBitWidth(TargetTransformInfo::RegisterKind K) const
virtual void collectKernelLaunchBounds(const Function &F, SmallVectorImpl< std::pair< StringRef, int64_t > > &LB) const
bool supportsTailCallFor(const CallBase *CB) const override
bool isExpensiveToSpeculativelyExecute(const Instruction *I) const override
InstructionCost getInstructionCost(const User *U, ArrayRef< const Value * > Operands, TTI::TargetCostKind CostKind) const override
InstructionCost getPointersChainCost(ArrayRef< const Value * > Ptrs, const Value *Base, const TTI::PointersChainInfo &Info, Type *AccessTy, TTI::TargetCostKind CostKind) const override
InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, ArrayRef< const Value * > Operands, TTI::TargetCostKind CostKind, Type *AccessType) const override
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
static LLVM_ABI CastContextHint getCastContextHint(const Instruction *I)
Calculates a CastContextHint from I.
MaskKind
Some targets only support masked load/store with a constant mask.
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_SizeAndLatency
The weighted sum of size and latency.
@ TCK_Latency
The latency of instruction.
PopcntSupportKind
Flags indicating the kind of support for population count.
llvm::VectorInstrContext VectorInstrContext
@ TCC_Expensive
The cost of a 'div' instruction on x86.
@ TCC_Free
Expected to fold away in lowering.
@ TCC_Basic
The cost of a typical 'add' instruction.
MemIndexedMode
The type of load/store indexing.
AddressingModeKind
Which addressing mode Loop Strength Reduction will try to generate.
@ AMK_None
Don't prefer any addressing mode.
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.
@ None
The cast is not used with a load/store of any kind.
CacheLevel
The possible cache levels.
This class represents a truncation of integer types.
static constexpr TypeSize get(ScalarTy Quantity, bool Scalable)
Definition TypeSize.h:336
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:283
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:297
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
Definition Type.cpp:222
bool isPtrOrPtrVectorTy() const
Return true if this is a pointer type or a vector of pointer types.
Definition Type.h:280
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
Definition Type.cpp:303
This is the common base class for vector predication intrinsics.
LLVM Value Representation.
Definition Value.h:75
Type * getType() const
All values are typed, get the type of this value.
Definition Value.h:257
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
Definition Value.cpp:712
Base class of all SIMD vector types.
constexpr ScalarTy getFixedValue() const
Definition TypeSize.h:200
constexpr bool isScalable() const
Returns whether the quantity is scaled by a runtime quantity (vscale).
Definition TypeSize.h:168
An efficient, type-erasing, non-owning reference to a callable.
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
LogicalOp_match< LHS, RHS, Instruction::And > m_LogicalAnd(const LHS &L, const RHS &R)
Matches L && R either in the form of L & R or L ?
bool match(Val *V, const Pattern &P)
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
auto m_Value()
Match an arbitrary value and ignore it.
auto m_Constant()
Match an arbitrary Constant and ignore it.
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
LogicalOp_match< LHS, RHS, Instruction::Or > m_LogicalOr(const LHS &L, const RHS &R)
Matches L || R either in the form of L | R or L ?
This is an optimization pass for GlobalISel generic memory operations.
@ Length
Definition DWP.cpp:577
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:1755
InstructionCost Cost
@ Known
Known to have no common set bits.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
Definition STLExtras.h:2570
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
Definition MathExtras.h:285
LLVM_ABI Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
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:1762
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition MathExtras.h:280
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
RecurKind
These are the kinds of recurrences that we support.
@ Fast
Assign the register banks as fast as possible (default).
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
gep_type_iterator gep_type_begin(const User *GEP)
@ DataWithoutLaneMask
Same as Data, but avoids using the get.active.lane.mask intrinsic to calculate the mask and instead i...
ValueUniformity
Enum describing how values behave with respect to uniformity and divergence, to answer the question: ...
Definition Uniformity.h:18
@ Default
The result value is uniform if and only if all operands are uniform.
Definition Uniformity.h:20
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Attributes of a target dependent hardware loop.
KnownBits anyextOrTrunc(unsigned BitWidth) const
Return known bits for an "any" extension or truncation of the value we're tracking.
Definition KnownBits.h:190
Information about a load/store intrinsic defined by the target.
Returns options for expansion of memcmp. IsZeroCmp is.
Describe known properties for a set of pointers.
Parameters that control the generic loop unrolling transformation.