LLVM 24.0.0git
TargetTransformInfo.h
Go to the documentation of this file.
1//===- TargetTransformInfo.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 pass exposes codegen information to IR-level passes. Every
10/// transformation that uses codegen information is broken into three parts:
11/// 1. The IR-level analysis pass.
12/// 2. The IR-level transformation interface which provides the needed
13/// information.
14/// 3. Codegen-level implementation which uses target-specific hooks.
15///
16/// This file defines #2, which is the interface that IR-level transformations
17/// use for querying the codegen.
18///
19//===----------------------------------------------------------------------===//
20
21#ifndef LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
22#define LLVM_ANALYSIS_TARGETTRANSFORMINFO_H
23
24#include "llvm/ADT/APInt.h"
25#include "llvm/ADT/ArrayRef.h"
28#include "llvm/ADT/Uniformity.h"
31#include "llvm/IR/FMF.h"
32#include "llvm/IR/InstrTypes.h"
33#include "llvm/IR/PassManager.h"
34#include "llvm/Pass.h"
39#include <functional>
40#include <optional>
41#include <utility>
42
43namespace llvm {
44
45namespace Intrinsic {
46typedef unsigned ID;
47}
48
49class AllocaInst;
50class AssumptionCache;
52class DominatorTree;
53class CondBrInst;
54class Function;
55class GlobalValue;
56class InstCombiner;
59class IntrinsicInst;
60class LoadInst;
61class Loop;
62class LoopInfo;
66class SCEV;
67class ScalarEvolution;
68class SmallBitVector;
69class StoreInst;
70class SwitchInst;
72class Type;
73class VPIntrinsic;
74struct KnownBits;
75
76/// Information about a load/store intrinsic defined by the target.
78 /// This is the pointer that the intrinsic is loading from or storing to.
79 /// If this is non-null, then analysis/optimization passes can assume that
80 /// this intrinsic is functionally equivalent to a load/store from this
81 /// pointer.
82 Value *PtrVal = nullptr;
83
84 // Ordering for atomic operations.
86
87 // Same Id is set by the target for corresponding load/store intrinsics.
88 unsigned short MatchingId = 0;
89
90 bool ReadMem = false;
91 bool WriteMem = false;
92 bool IsVolatile = false;
93
95
96 bool isUnordered() const {
100 }
101};
102
103/// Attributes of a target dependent hardware loop.
107 Loop *L = nullptr;
110 const SCEV *ExitCount = nullptr;
112 Value *LoopDecrement = nullptr; // Decrement the loop counter by this
113 // value in every iteration.
114 bool IsNestingLegal = false; // Can a hardware loop be a parent to
115 // another hardware loop?
116 bool CounterInReg = false; // Should loop counter be updated in
117 // the loop via a phi?
118 bool PerformEntryTest = false; // Generate the intrinsic which also performs
119 // icmp ne zero on the loop counter value and
120 // produces an i1 to guard the loop entry.
122 DominatorTree &DT,
123 bool ForceNestedLoop = false,
124 bool ForceHardwareLoopPHI = false);
125 LLVM_ABI bool canAnalyze(LoopInfo &LI);
126};
127
128/// Information for memory intrinsic cost model.
130 /// Optional context instruction, if one exists, e.g. the
131 /// load/store to transform to the intrinsic.
132 const Instruction *I = nullptr;
133
134 /// Address in memory.
135 const Value *Ptr = nullptr;
136
137 /// Vector type of the data to be loaded or stored.
138 Type *DataTy = nullptr;
139
140 /// ID of the memory intrinsic.
141 Intrinsic::ID IID;
142
143 /// True when the memory access is predicated with a mask
144 /// that is not a compile-time constant.
145 bool VariableMask = true;
146
147 /// Address space of the pointer.
148 unsigned AddressSpace = 0;
149
150 /// Alignment of single element.
151 Align Alignment;
152
153 const Value *StrideVal;
154
155public:
157 bool VariableMask, Align Alignment,
158 const Instruction *I = nullptr,
159 const Value *StrideVal = nullptr)
160
161 : I(I), Ptr(Ptr), DataTy(DataTy), IID(Id), VariableMask(VariableMask),
162 Alignment(Alignment), StrideVal(StrideVal) {}
163
165 unsigned AddressSpace = 0,
166 const Value *StrideVal = nullptr)
167 : DataTy(DataTy), IID(Id), AddressSpace(AddressSpace),
168 Alignment(Alignment), StrideVal(StrideVal) {}
169
170 MemIntrinsicCostAttributes(Intrinsic::ID Id, Type *DataTy, bool VariableMask,
171 Align Alignment, const Instruction *I = nullptr,
172 const Value *StrideVal = nullptr)
173
174 : I(I), DataTy(DataTy), IID(Id), VariableMask(VariableMask),
175 Alignment(Alignment), StrideVal(StrideVal) {}
176
177 Intrinsic::ID getID() const { return IID; }
178 const Instruction *getInst() const { return I; }
179 const Value *getPointer() const { return Ptr; }
180 Type *getDataType() const { return DataTy; }
181 bool getVariableMask() const { return VariableMask; }
182 unsigned getAddressSpace() const { return AddressSpace; }
183 Align getAlignment() const { return Alignment; }
184 const Value *getStrideVal() const { return StrideVal; }
185};
186
187/// Represents a hint about the context in which a vector instruction or
188/// intrinsic is used.
189///
190/// On some targets, inserts/extracts can cheaply be folded into loads/stores.
191/// Similarly, vp.merge can also be folded into binary ops on some targets.
192///
193/// This enum allows the vectorizer to give getVectorInstrCost and
194/// getIntrinsicInstrCost an idea of how the values are used.
195///
196/// See \c getVectorInstrContextHint to compute a VectorInstrContext from an
197/// insert/extract Instruction*.
199 None, ///< The instruction is not folded.
200 Load, ///< The value being inserted comes from a load (InsertElement only).
201 Store, ///< The extracted value is stored (ExtractElement only).
202 BinaryOp, ///< One of the operands is a binary op.
203 SplatOpFolded, ///< All of the value's users support splatting the value.
204};
205
207 const IntrinsicInst *II = nullptr;
208 Type *RetTy = nullptr;
209 Intrinsic::ID IID;
210 SmallVector<Type *, 4> ParamTys;
212 FastMathFlags FMF;
213 // If ScalarizationCost is UINT_MAX, the cost of scalarizing the
214 // arguments and the return value will be computed based on types.
215 InstructionCost ScalarizationCost = InstructionCost::getInvalid();
217
218public:
220 Intrinsic::ID Id, const CallBase &CI,
222 bool TypeBasedOnly = false);
223
225 Intrinsic::ID Id, Type *RTy, ArrayRef<Type *> Tys,
226 FastMathFlags Flags = FastMathFlags(), const IntrinsicInst *I = nullptr,
228
231
235 const IntrinsicInst *I = nullptr,
238
239 Intrinsic::ID getID() const { return IID; }
240 const IntrinsicInst *getInst() const { return II; }
241 Type *getReturnType() const { return RetTy; }
242 FastMathFlags getFlags() const { return FMF; }
243 InstructionCost getScalarizationCost() const { return ScalarizationCost; }
245 const SmallVectorImpl<const Value *> &getArgs() const { return Arguments; }
246 const SmallVectorImpl<Type *> &getArgTypes() const { return ParamTys; }
247
248 bool isTypeBasedOnly() const {
249 return Arguments.empty();
250 }
251
252 bool skipScalarizationCost() const { return ScalarizationCost.isValid(); }
253};
254
256 /// Don't use tail folding
258 /// Use predicate only to mask operations on data in the loop.
259 /// When the VL is not known to be a power-of-2, this method requires a
260 /// runtime overflow check for the i + VL in the loop because it compares the
261 /// scalar induction variable against the tripcount rounded up by VL which may
262 /// overflow. When the VL is a power-of-2, both the increment and uprounded
263 /// tripcount will overflow to 0, which does not require a runtime check
264 /// since the loop is exited when the loop induction variable equals the
265 /// uprounded trip-count, which are both 0.
267 /// Same as Data, but avoids using the get.active.lane.mask intrinsic to
268 /// calculate the mask and instead implements this with a
269 /// splat/stepvector/cmp.
270 /// FIXME: Can this kind be removed now that SelectionDAGBuilder expands the
271 /// active.lane.mask intrinsic when it is not natively supported?
273 /// Use predicate to control both data and control flow.
274 /// This method always requires a runtime overflow check for the i + VL
275 /// increment inside the loop, because it uses the result direclty in the
276 /// active.lane.mask to calculate the mask for the next iteration. If the
277 /// increment overflows, the mask is no longer correct.
279 /// Use predicated EVL instructions for tail-folding.
280 /// Indicates that VP intrinsics should be used.
282};
283
292
293class TargetTransformInfo;
296
297/// This pass provides access to the codegen interfaces that are needed
298/// for IR-level transformations.
300public:
307
308 /// Get the kind of extension that an instruction represents.
311 /// Get the kind of extension that a cast opcode represents.
314 /// Get the cast opcode for an extension kind.
317
318 /// Construct a TTI object using a type implementing the \c Concept
319 /// API below.
320 ///
321 /// This is used by targets to construct a TTI wrapping their target-specific
322 /// implementation that encodes appropriate costs for their target.
324 std::unique_ptr<const TargetTransformInfoImplBase> Impl);
325
326 /// Construct a baseline TTI object using a minimal implementation of
327 /// the \c Concept API below.
328 ///
329 /// The TTI implementation will reflect the information in the DataLayout
330 /// provided if non-null.
331 LLVM_ABI explicit TargetTransformInfo(const DataLayout &DL);
332
333 // Provide move semantics.
336
337 // We need to define the destructor out-of-line to define our sub-classes
338 // out-of-line.
340
341 /// Handle the invalidation of this information.
342 ///
343 /// When used as a result of \c TargetIRAnalysis this method will be called
344 /// when the function this was computed for changes. When it returns false,
345 /// the information is preserved across those changes.
347 FunctionAnalysisManager::Invalidator &) {
348 // FIXME: We should probably in some way ensure that the subtarget
349 // information for a function hasn't changed.
350 return false;
351 }
352
353 /// \name Generic Target Information
354 /// @{
355
356 /// The kind of cost model.
357 ///
358 /// There are several different cost models that can be customized by the
359 /// target. The normalization of each cost model may be target specific.
360 /// e.g. TCK_SizeAndLatency should be comparable to target thresholds such as
361 /// those derived from MCSchedModel::LoopMicroOpBufferSize etc.
363 TCK_RecipThroughput, ///< Reciprocal throughput.
364 TCK_Latency, ///< The latency of instruction.
365 TCK_CodeSize, ///< Instruction code size.
366 TCK_SizeAndLatency ///< The weighted sum of size and latency.
367 };
368
369 /// Underlying constants for 'cost' values in this interface.
370 ///
371 /// Many APIs in this interface return a cost. This enum defines the
372 /// fundamental values that should be used to interpret (and produce) those
373 /// costs. The costs are returned as an int rather than a member of this
374 /// enumeration because it is expected that the cost of one IR instruction
375 /// may have a multiplicative factor to it or otherwise won't fit directly
376 /// into the enum. Moreover, it is common to sum or average costs which works
377 /// better as simple integral values. Thus this enum only provides constants.
378 /// Also note that the returned costs are signed integers to make it natural
379 /// to add, subtract, and test with zero (a common boundary condition). It is
380 /// not expected that 2^32 is a realistic cost to be modeling at any point.
381 ///
382 /// Note that these costs should usually reflect the intersection of code-size
383 /// cost and execution cost. A free instruction is typically one that folds
384 /// into another instruction. For example, reg-to-reg moves can often be
385 /// skipped by renaming the registers in the CPU, but they still are encoded
386 /// and thus wouldn't be considered 'free' here.
388 TCC_Free = 0, ///< Expected to fold away in lowering.
389 TCC_Basic = 1, ///< The cost of a typical 'add' instruction.
390 TCC_Expensive = 4 ///< The cost of a 'div' instruction on x86.
391 };
392
393 /// Estimate the cost of a GEP operation when lowered.
394 ///
395 /// \p PointeeType is the source element type of the GEP.
396 /// \p Ptr is the base pointer operand.
397 /// \p Operands is the list of indices following the base pointer.
398 ///
399 /// \p AccessType is a hint as to what type of memory might be accessed by
400 /// users of the GEP. getGEPCost will use it to determine if the GEP can be
401 /// folded into the addressing mode of a load/store. If AccessType is null,
402 /// then the resulting target type based off of PointeeType will be used as an
403 /// approximation.
404 LLVM_ABI InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr,
406 TargetCostKind CostKind,
407 Type *AccessType = nullptr) const;
408
409 /// Describe known properties for a set of pointers.
411 /// All the GEPs in a set have same base address.
412 unsigned IsSameBaseAddress : 1;
413 /// These properties only valid if SameBaseAddress is set.
414 /// True if all pointers are separated by a unit stride.
415 unsigned IsUnitStride : 1;
416 /// True if distance between any two neigbouring pointers is a known value.
417 unsigned IsKnownStride : 1;
418 unsigned Reserved : 29;
419
420 bool isSameBase() const { return IsSameBaseAddress; }
421 bool isUnitStride() const { return IsSameBaseAddress && IsUnitStride; }
423
425 return {/*IsSameBaseAddress=*/1, /*IsUnitStride=*/1,
426 /*IsKnownStride=*/1, 0};
427 }
429 return {/*IsSameBaseAddress=*/1, /*IsUnitStride=*/0,
430 /*IsKnownStride=*/1, 0};
431 }
433 return {/*IsSameBaseAddress=*/1, /*IsUnitStride=*/0,
434 /*IsKnownStride=*/0, 0};
435 }
436 };
437 static_assert(sizeof(PointersChainInfo) == 4, "Was size increase justified?");
438
439 /// Estimate the cost of a chain of pointers (typically pointer operands of a
440 /// chain of loads or stores within same block) operations set when lowered.
441 /// \p AccessTy is the type of the loads/stores that will ultimately use the
442 /// \p Ptrs.
445 const PointersChainInfo &Info, Type *AccessTy,
446 const TargetCostKind CostKind) const;
447
448 /// \returns A value by which our inlining threshold should be multiplied.
449 /// This is primarily used to bump up the inlining threshold wholesale on
450 /// targets where calls are unusually expensive.
451 ///
452 /// TODO: This is a rather blunt instrument. Perhaps altering the costs of
453 /// individual classes of instructions would be better.
455
458
459 /// \returns The bonus of inlining the last call to a static function.
461
462 /// \returns A value to be added to the inlining threshold.
463 LLVM_ABI unsigned adjustInliningThreshold(const CallBase *CB) const;
464
465 /// \returns The cost of having an Alloca in the caller if not inlined, to be
466 /// added to the threshold
467 LLVM_ABI unsigned getCallerAllocaCost(const CallBase *CB,
468 const AllocaInst *AI) const;
469
470 /// \returns Vector bonus in percent.
471 ///
472 /// Vector bonuses: We want to more aggressively inline vector-dense kernels
473 /// and apply this bonus based on the percentage of vector instructions. A
474 /// bonus is applied if the vector instructions exceed 50% and half that
475 /// amount is applied if it exceeds 10%. Note that these bonuses are some what
476 /// arbitrary and evolved over time by accident as much as because they are
477 /// principled bonuses.
478 /// FIXME: It would be nice to base the bonus values on something more
479 /// scientific. A target may has no bonus on vector instructions.
481
482 /// \return the expected cost of a memcpy, which could e.g. depend on the
483 /// source/destination type and alignment and the number of bytes copied.
485
486 /// Returns the maximum memset / memcpy size in bytes that still makes it
487 /// profitable to inline the call.
489
490 /// \return The estimated number of case clusters when lowering \p 'SI'.
491 /// \p JTSize Set a jump table size only when \p SI is suitable for a jump
492 /// table.
493 LLVM_ABI unsigned
494 getEstimatedNumberOfCaseClusters(const SwitchInst &SI, unsigned &JTSize,
496 BlockFrequencyInfo *BFI) const;
497
498 /// Estimate the cost of a given IR user when lowered.
499 ///
500 /// This can estimate the cost of either a ConstantExpr or Instruction when
501 /// lowered.
502 ///
503 /// \p Operands is a list of operands which can be a result of transformations
504 /// of the current operands. The number of the operands on the list must equal
505 /// to the number of the current operands the IR user has. Their order on the
506 /// list must be the same as the order of the current operands the IR user
507 /// has.
508 ///
509 /// The returned cost is defined in terms of \c TargetCostConstants, see its
510 /// comments for a detailed explanation of the cost values.
513 TargetCostKind CostKind) const;
514
515 /// This is a helper function which calls the three-argument
516 /// getInstructionCost with \p Operands which are the current operands U has.
522
523 /// If a branch or a select condition is skewed in one direction by more than
524 /// this factor, it is very likely to be predicted correctly.
526
527 /// Returns estimated penalty of a branch misprediction in latency. Indicates
528 /// how aggressive the target wants for eliminating unpredictable branches. A
529 /// zero return value means extra optimization applied to them should be
530 /// minimal.
532
533 /// Return true if branch divergence exists.
534 ///
535 /// Branch divergence has a significantly negative impact on GPU performance
536 /// when threads in the same wavefront take different paths due to conditional
537 /// branches.
538 ///
539 /// If \p F is passed, provides a context function. If \p F is known to only
540 /// execute in a single threaded environment, the target may choose to skip
541 /// uniformity analysis and assume all values are uniform.
542 LLVM_ABI bool hasBranchDivergence(const Function *F = nullptr) const;
543
544 /// Get target-specific uniformity information for a value.
545 /// This allows targets to provide more fine-grained control over
546 /// uniformity analysis by specifying whether specific values
547 /// should always or never be considered uniform, or require custom
548 /// operand-based analysis.
549 /// \param V The value to query for uniformity information.
550 /// \return ValueUniformity.
552
553 /// Query the target whether the specified address space cast from FromAS to
554 /// ToAS is valid.
555 LLVM_ABI bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const;
556
557 /// Return false if a \p AS0 address cannot possibly alias a \p AS1 address.
558 LLVM_ABI bool addrspacesMayAlias(unsigned AS0, unsigned AS1) const;
559
560 /// Returns the address space ID for a target's 'flat' address space. Note
561 /// this is not necessarily the same as addrspace(0), which LLVM sometimes
562 /// refers to as the generic address space. The flat address space is a
563 /// generic address space that can be used access multiple segments of memory
564 /// with different address spaces. Access of a memory location through a
565 /// pointer with this address space is expected to be legal but slower
566 /// compared to the same memory location accessed through a pointer with a
567 /// different address space.
568 //
569 /// This is for targets with different pointer representations which can
570 /// be converted with the addrspacecast instruction. If a pointer is converted
571 /// to this address space, optimizations should attempt to replace the access
572 /// with the source address space.
573 ///
574 /// \returns ~0u if the target does not have such a flat address space to
575 /// optimize away.
576 LLVM_ABI unsigned getFlatAddressSpace() const;
577
578 /// Return the most specific common address space containing AS1 and AS2.
579 /// AS1 and AS2 must be distinct, and pointers from both spaces must be
580 /// convertible to the target's flat address space with addrspacecast.
581 /// Pointers from either input space must be convertible to the result with
582 /// addrspacecast. Return getFlatAddressSpace() if no more specific common
583 /// address space is available.
584 LLVM_ABI unsigned getAddressSpaceJoin(unsigned AS1, unsigned AS2) const;
585
586 /// Return any intrinsic address operand indexes which may be rewritten if
587 /// they use a flat address space pointer.
588 ///
589 /// \returns true if the intrinsic was handled.
591 Intrinsic::ID IID) const;
592
593 LLVM_ABI bool isNoopAddrSpaceCast(unsigned FromAS, unsigned ToAS) const;
594
595 // Given an address space cast of the given pointer value, calculate the known
596 // bits of the source pointer in the source addrspace and the destination
597 // pointer in the destination addrspace.
598 LLVM_ABI std::pair<KnownBits, KnownBits>
599 computeKnownBitsAddrSpaceCast(unsigned ToAS, const Value &PtrOp) const;
600
601 // Given an address space cast, calculate the known bits of the resulting ptr
602 // in the destination addrspace using the known bits of the source pointer in
603 // the source addrspace.
605 unsigned FromAS, unsigned ToAS, const KnownBits &FromPtrBits) const;
606
607 /// Returns a mask indicating which bits of a pointer remain unchanged when
608 /// casting between address spaces. The returned APInt has the same bit width
609 /// as the source address space pointer size.
610 ///
611 /// Some targets allow certain bits of a pointer to change (e.g., the low
612 /// bits within a page) while still preserving the address space. This mask
613 /// identifies those bits that are guaranteed to be preserved. If the mask is
614 /// all zeros, no bits are preserved and address space inference cannot be
615 /// performed safely.
616 ///
617 /// For example, given:
618 /// %gp = addrspacecast ptr addrspace(2) %sp to ptr
619 /// %a = ptrtoint ptr %gp to i64
620 /// %b = xor i64 7, %a
621 /// %gp2 = inttoptr i64 %b to ptr
622 /// store i16 0, ptr %gp2, align 2
623 /// if the target preserves the upper bits, `%gp2` can be safely replaced
624 /// with `inttoptr i64 %b to ptr addrspace(2)`.
626 unsigned DstAS) const;
627
628 /// Return true if globals in this address space can have initializers other
629 /// than `undef`.
630 LLVM_ABI bool
632
633 LLVM_ABI unsigned getAssumedAddrSpace(const Value *V) const;
634
635 LLVM_ABI std::pair<const Value *, unsigned>
636 getPredicatedAddrSpace(const Value *V) const;
637
638 /// Rewrite intrinsic call \p II such that \p OldV will be replaced with \p
639 /// NewV, which has a different address space. This should happen for every
640 /// operand index that collectFlatAddressOperands returned for the intrinsic.
641 /// \returns nullptr if the intrinsic was not handled. Otherwise, returns the
642 /// new value (which may be the original \p II with modified operands).
644 Value *OldV,
645 Value *NewV) const;
646
647 /// Test whether calls to a function lower to actual program function
648 /// calls.
649 ///
650 /// The idea is to test whether the program is likely to require a 'call'
651 /// instruction or equivalent in order to call the given function.
652 ///
653 /// FIXME: It's not clear that this is a good or useful query API. Client's
654 /// should probably move to simpler cost metrics using the above.
655 /// Alternatively, we could split the cost interface into distinct code-size
656 /// and execution-speed costs. This would allow modelling the core of this
657 /// query more accurately as a call is a single small instruction, but
658 /// incurs significant execution cost.
659 LLVM_ABI bool isLoweredToCall(const Function *F) const;
660
661 struct LSRCost {
662 /// TODO: Some of these could be merged. Also, a lexical ordering
663 /// isn't always optimal.
664 unsigned Insns;
665 unsigned NumRegs;
666 unsigned AddRecCost;
667 unsigned NumIVMuls;
668 unsigned NumBaseAdds;
669 unsigned ImmCost;
670 unsigned SetupCost;
671 unsigned ScaleCost;
672 };
673
674 /// Parameters that control the generic loop unrolling transformation.
676 /// The cost threshold for the unrolled loop. Should be relative to the
677 /// getInstructionCost values returned by this API, and the expectation is
678 /// that the unrolled loop's instructions when run through that interface
679 /// should not exceed this cost. However, this is only an estimate. Also,
680 /// specific loops may be unrolled even with a cost above this threshold if
681 /// deemed profitable. Set this to UINT_MAX to disable the loop body cost
682 /// restriction.
683 unsigned Threshold;
684 /// If complete unrolling will reduce the cost of the loop, we will boost
685 /// the Threshold by a certain percent to allow more aggressive complete
686 /// unrolling. This value provides the maximum boost percentage that we
687 /// can apply to Threshold (The value should be no less than 100).
688 /// BoostedThreshold = Threshold * min(RolledCost / UnrolledCost,
689 /// MaxPercentThresholdBoost / 100)
690 /// E.g. if complete unrolling reduces the loop execution time by 50%
691 /// then we boost the threshold by the factor of 2x. If unrolling is not
692 /// expected to reduce the running time, then we do not increase the
693 /// threshold.
695 /// The cost threshold for the unrolled loop when optimizing for size (set
696 /// to UINT_MAX to disable).
698 /// The cost threshold for the unrolled loop, like Threshold, but used
699 /// for partial/runtime unrolling (set to UINT_MAX to disable).
701 /// The cost threshold for the unrolled loop when optimizing for size, like
702 /// OptSizeThreshold, but used for partial/runtime unrolling (set to
703 /// UINT_MAX to disable).
705 /// Default unroll count for loops with run-time trip count.
707 // Set the maximum unrolling factor. The unrolling factor may be selected
708 // using the appropriate cost threshold, but may not exceed this number
709 // (set to UINT_MAX to disable). This does not apply in cases where the
710 // loop is being fully unrolled.
711 unsigned MaxCount;
712 /// Set the maximum upper bound of trip count. Allowing the MaxUpperBound
713 /// to be overrided by a target gives more flexiblity on certain cases.
714 /// By default, MaxUpperBound uses UnrollMaxUpperBound which value is 8.
716 /// Set the maximum unrolling factor for full unrolling. Like MaxCount, but
717 /// applies even if full unrolling is selected. This allows a target to fall
718 /// back to Partial unrolling if full unrolling is above FullUnrollMaxCount.
720 // Represents number of instructions optimized when "back edge"
721 // becomes "fall through" in unrolled loop.
722 // For now we count a conditional branch on a backedge and a comparison
723 // feeding it.
724 unsigned BEInsns;
725 /// Allow partial unrolling (unrolling of loops to expand the size of the
726 /// loop body, not only to eliminate small constant-trip-count loops).
728 /// Allow runtime unrolling (unrolling of loops to expand the size of the
729 /// loop body even when the number of loop iterations is not known at
730 /// compile time).
732 /// Allow generation of a loop remainder (extra iterations after unroll).
734 /// Allow emitting expensive instructions (such as divisions) when computing
735 /// the trip count of a loop for runtime unrolling.
737 /// Apply loop unroll on any kind of loop
738 /// (mainly to loops that fail runtime unrolling).
739 bool Force;
740 /// Allow using trip count upper bound to unroll loops.
742 /// Allow unrolling of all the iterations of the runtime loop remainder.
744 /// Allow unroll and jam. Used to enable unroll and jam for the target.
746 /// Threshold for unroll and jam, for inner loop size. The 'Threshold'
747 /// value above is used during unroll and jam for the outer loop size.
748 /// This value is used in the same manner to limit the size of the inner
749 /// loop.
751 /// Don't allow loop unrolling to simulate more than this number of
752 /// iterations when checking full unroll profitability
754 /// Disable runtime unrolling by default for vectorized loops.
756 /// Don't allow runtime unrolling if expanding the trip count takes more
757 /// than SCEVExpansionBudget.
759 /// Allow runtime unrolling multi-exit loops. Should only be set if the
760 /// target determined that multi-exit unrolling is profitable for the loop.
761 /// Fall back to the generic logic to determine whether multi-exit unrolling
762 /// is profitable if set to false.
764 /// Allow unrolling to add parallel reduction phis.
766 };
767
768 /// Get target-customized preferences for the generic loop unrolling
769 /// transformation. The caller will initialize UP with the current
770 /// target-independent defaults.
773 OptimizationRemarkEmitter *ORE) const;
774
775 /// Query the target whether it would be profitable to convert the given loop
776 /// into a hardware loop.
778 AssumptionCache &AC,
779 TargetLibraryInfo *LibInfo,
780 HardwareLoopInfo &HWLoopInfo) const;
781
782 // Query the target for which minimum vectorization factor epilogue
783 // vectorization should be considered.
785
786 /// Query the target whether it would be preferred to create a tail-folded
787 /// vector loop, which can avoid the need to emit a scalar epilogue loop.
789
790 /// Query the target what the preferred style of tail folding is.
792
793 // Parameters that control the loop peeling transformation
795 /// A forced peeling factor (the number of bodied of the original loop
796 /// that should be peeled off before the loop body). When set to 0, the
797 /// a peeling factor based on profile information and other factors.
798 unsigned PeelCount;
799 /// Allow peeling off loop iterations.
801 /// Allow peeling off loop iterations for loop nests.
803 /// Allow peeling basing on profile. Uses to enable peeling off all
804 /// iterations basing on provided profile.
805 /// If the value is true the peeling cost model can decide to peel only
806 /// some iterations and in this case it will set this to false.
808
809 /// Peel off the last PeelCount loop iterations.
811 };
812
813 /// Get target-customized preferences for the generic loop peeling
814 /// transformation. The caller will initialize \p PP with the current
815 /// target-independent defaults with information from \p L and \p SE.
817 PeelingPreferences &PP) const;
818
819 /// Targets can implement their own combinations for target-specific
820 /// intrinsics. This function will be called from the InstCombine pass every
821 /// time a target-specific intrinsic is encountered.
822 ///
823 /// \returns std::nullopt to not do anything target specific or a value that
824 /// will be returned from the InstCombiner. It is possible to return null and
825 /// stop further processing of the intrinsic by returning nullptr.
826 LLVM_ABI std::optional<Instruction *>
828 /// Can be used to implement target-specific instruction combining.
829 /// \see instCombineIntrinsic
830 LLVM_ABI std::optional<Value *>
832 APInt DemandedMask, KnownBits &Known,
833 bool &KnownBitsComputed) const;
834 /// Can be used to implement target-specific instruction combining.
835 /// \see instCombineIntrinsic
836 LLVM_ABI std::optional<Value *> simplifyDemandedVectorEltsIntrinsic(
837 InstCombiner &IC, IntrinsicInst &II, APInt DemandedElts, APInt &UndefElts,
838 APInt &UndefElts2, APInt &UndefElts3,
839 std::function<void(Instruction *, unsigned, APInt, APInt &)>
840 SimplifyAndSetOp) const;
841 /// @}
842
843 /// \name Scalar Target Information
844 /// @{
845
846 /// Flags indicating the kind of support for population count.
847 ///
848 /// Compared to the SW implementation, HW support is supposed to
849 /// significantly boost the performance when the population is dense, and it
850 /// may or may not degrade performance if the population is sparse. A HW
851 /// support is considered as "Fast" if it can outperform, or is on a par
852 /// with, SW implementation when the population is sparse; otherwise, it is
853 /// considered as "Slow".
855
856 /// Return true if the specified immediate is legal add immediate, that
857 /// is the target has add instructions which can add a register with the
858 /// immediate without having to materialize the immediate into a register.
859 LLVM_ABI bool isLegalAddImmediate(int64_t Imm) const;
860
861 /// Return true if adding the specified scalable immediate is legal, that is
862 /// the target has add instructions which can add a register with the
863 /// immediate (multiplied by vscale) without having to materialize the
864 /// immediate into a register.
865 LLVM_ABI bool isLegalAddScalableImmediate(int64_t Imm) const;
866
867 /// Return true if the specified immediate is legal icmp immediate,
868 /// that is the target has icmp instructions which can compare a register
869 /// against the immediate without having to materialize the immediate into a
870 /// register.
871 LLVM_ABI bool isLegalICmpImmediate(int64_t Imm) const;
872
873 /// Return true if the addressing mode represented by AM is legal for
874 /// this target, for a load/store of the specified type.
875 /// The type may be VoidTy, in which case only return true if the addressing
876 /// mode is legal for a load/store of any legal type.
877 /// If target returns true in LSRWithInstrQueries(), I may be valid.
878 /// \param ScalableOffset represents a quantity of bytes multiplied by vscale,
879 /// an invariant value known only at runtime. Most targets should not accept
880 /// a scalable offset.
881 ///
882 /// TODO: Handle pre/postinc as well.
884 int64_t BaseOffset, bool HasBaseReg,
885 int64_t Scale, unsigned AddrSpace = 0,
886 Instruction *I = nullptr,
887 int64_t ScalableOffset = 0) const;
888
889 /// Return true if LSR cost of C1 is lower than C2.
891 const TargetTransformInfo::LSRCost &C2) const;
892
893 /// Return true if LSR major cost is number of registers. Targets which
894 /// implement their own isLSRCostLess and unset number of registers as major
895 /// cost should return false, otherwise return true.
897
898 /// Return true if LSR should drop a found solution if it's calculated to be
899 /// less profitable than the baseline.
901
902 /// \returns true if LSR should not optimize a chain that includes \p I.
904
905 /// Return true if the target can fuse a compare and branch.
906 /// Loop-strength-reduction (LSR) uses that knowledge to adjust its cost
907 /// calculation for the instructions in a loop.
908 LLVM_ABI bool canMacroFuseCmp() const;
909
910 /// Return true if the target can save a compare for loop count, for example
911 /// hardware loop saves a compare.
914 TargetLibraryInfo *LibInfo) const;
915
916 /// Which addressing mode Loop Strength Reduction will try to generate.
918 AMK_None = 0x0, ///< Don't prefer any addressing mode
919 AMK_PreIndexed = 0x1, ///< Prefer pre-indexed addressing mode
920 AMK_PostIndexed = 0x2, ///< Prefer post-indexed addressing mode
921 AMK_All = 0x3, ///< Consider all addressing modes
922 LLVM_MARK_AS_BITMASK_ENUM(/*LargestValue=*/AMK_All)
923 };
924
925 /// Return the preferred addressing mode LSR should make efforts to generate.
928
929 /// Some targets only support masked load/store with a constant mask.
934
935 /// Return true if the target supports masked store.
936 LLVM_ABI bool
937 isLegalMaskedStore(Type *DataType, Align Alignment, unsigned AddressSpace,
939 /// Return true if the target supports masked load.
940 LLVM_ABI bool
941 isLegalMaskedLoad(Type *DataType, Align Alignment, unsigned AddressSpace,
943
944 /// Return true if the target supports nontemporal store.
945 LLVM_ABI bool isLegalNTStore(Type *DataType, Align Alignment) const;
946 /// Return true if the target supports nontemporal load.
947 LLVM_ABI bool isLegalNTLoad(Type *DataType, Align Alignment) const;
948
949 /// \Returns true if the target supports broadcasting a load to a vector of
950 /// type <NumElements x ElementTy>.
951 LLVM_ABI bool isLegalBroadcastLoad(Type *ElementTy,
952 ElementCount NumElements) const;
953
954 /// Return true if the target supports masked scatter.
955 LLVM_ABI bool isLegalMaskedScatter(Type *DataType, Align Alignment) const;
956 /// Return true if the target supports masked gather.
957 LLVM_ABI bool isLegalMaskedGather(Type *DataType, Align Alignment) const;
958 /// Return true if the target forces scalarizing of llvm.masked.gather
959 /// intrinsics.
961 Align Alignment) const;
962 /// Return true if the target forces scalarizing of llvm.masked.scatter
963 /// intrinsics.
965 Align Alignment) const;
966
967 /// Return true if the target supports masked compress store.
969 Align Alignment) const;
970 /// Return true if the target supports masked expand load.
971 LLVM_ABI bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment) const;
972
973 /// Return true if the target supports strided load.
974 LLVM_ABI bool isLegalStridedLoadStore(Type *DataType, Align Alignment) const;
975
976 /// Return true is the target supports interleaved access for the given vector
977 /// type \p VTy, interleave factor \p Factor, alignment \p Alignment and
978 /// address space \p AddrSpace.
979 LLVM_ABI bool isLegalInterleavedAccessType(VectorType *VTy, unsigned Factor,
980 Align Alignment,
981 unsigned AddrSpace) const;
982
983 // Return true if the target supports masked vector histograms.
985 Type *DataType) const;
986
987 /// Return true if this is an alternating opcode pattern that can be lowered
988 /// to a single instruction on the target. In X86 this is for the addsub
989 /// instruction which corrsponds to a Shuffle + Fadd + FSub pattern in IR.
990 /// This function expectes two opcodes: \p Opcode1 and \p Opcode2 being
991 /// selected by \p OpcodeMask. The mask contains one bit per lane and is a `0`
992 /// when \p Opcode0 is selected and `1` when Opcode1 is selected.
993 /// \p VecTy is the vector type of the instruction to be generated.
994 LLVM_ABI bool isLegalAltInstr(VectorType *VecTy, unsigned Opcode0,
995 unsigned Opcode1,
996 const SmallBitVector &OpcodeMask) const;
997
998 /// Return true if we should be enabling ordered reductions for the target.
1000
1001 /// Return true if the target has a unified operation to calculate division
1002 /// and remainder. If so, the additional implicit multiplication and
1003 /// subtraction required to calculate a remainder from division are free. This
1004 /// can enable more aggressive transformations for division and remainder than
1005 /// would typically be allowed using throughput or size cost models.
1006 LLVM_ABI bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1007
1008 /// Return true if the given instruction (assumed to be a memory access
1009 /// instruction) has a volatile variant. If that's the case then we can avoid
1010 /// addrspacecast to generic AS for volatile loads/stores. Default
1011 /// implementation returns false, which prevents address space inference for
1012 /// volatile loads/stores.
1013 LLVM_ABI bool hasVolatileVariant(Instruction *I, unsigned AddrSpace) const;
1014
1015 /// Return true if target doesn't mind addresses in vectors.
1017
1018 /// Return the cost of the scaling factor used in the addressing
1019 /// mode represented by AM for this target, for a load/store
1020 /// of the specified type.
1021 /// If the AM is supported, the return value must be >= 0.
1022 /// If the AM is not supported, it returns a negative value.
1023 /// TODO: Handle pre/postinc as well.
1025 StackOffset BaseOffset,
1026 bool HasBaseReg, int64_t Scale,
1027 unsigned AddrSpace = 0) const;
1028
1029 /// Return true if the loop strength reduce pass should make
1030 /// Instruction* based TTI queries to isLegalAddressingMode(). This is
1031 /// needed on SystemZ, where e.g. a memcpy can only have a 12 bit unsigned
1032 /// immediate offset and no index register.
1033 LLVM_ABI bool LSRWithInstrQueries() const;
1034
1035 /// Return true if it's free to truncate a value of type Ty1 to type
1036 /// Ty2. e.g. On x86 it's free to truncate a i32 value in register EAX to i16
1037 /// by referencing its sub-register AX.
1038 LLVM_ABI bool isTruncateFree(Type *Ty1, Type *Ty2) const;
1039
1040 /// Return true if it is profitable to hoist instruction in the
1041 /// then/else to before if.
1043
1044 LLVM_ABI bool useAA() const;
1045
1046 /// Return true if this type is legal.
1047 LLVM_ABI bool isTypeLegal(Type *Ty) const;
1048
1049 /// Returns the estimated number of registers required to represent \p Ty.
1050 LLVM_ABI unsigned getRegUsageForType(Type *Ty) const;
1051
1052 /// Return true if switches should be turned into lookup tables for the
1053 /// target.
1054 LLVM_ABI bool shouldBuildLookupTables() const;
1055
1056 /// Return true if switches should be turned into lookup tables
1057 /// containing this constant value for the target.
1059
1060 /// Return the minimum bit width to use for integer switch lookup table
1061 /// elements on this target.
1063
1064 /// Return true if lookup tables should be turned into relative lookup tables.
1066
1067 /// Return true if the input function which is cold at all call sites,
1068 /// should use coldcc calling convention.
1070
1071 /// Return true if the input function is internal, should use fastcc calling
1072 /// convention.
1074
1075 /// Identifies if the vector form of the intrinsic has a scalar operand.
1077 unsigned ScalarOpdIdx) const;
1078
1079 /// Identifies if the vector form of the intrinsic is overloaded on the type
1080 /// of the operand at index \p OpdIdx, or on the return type if \p OpdIdx is
1081 /// -1.
1083 int OpdIdx) const;
1084
1085 /// Identifies if the vector form of the intrinsic that returns a struct is
1086 /// overloaded at the struct element index \p RetIdx.
1087 LLVM_ABI bool
1089 int RetIdx) const;
1090
1092
1093 /// Combines 2 context hints into a single value. If both are equal, keep the
1094 /// shared context, otherwise fall back to no specific context.
1098
1099 /// Stores information about the uses of a build vector
1106
1107 /// Calculates a VectorInstrContext from \p I.
1110
1111 /// Calculates a VectorInstrContext for buildvector-like gather sequences.
1112 ///
1113 /// \p GatherUserOps must collect all users of \p Scalars relevant for
1114 /// determining whether a splat can be folded as a scalar operand. It returns
1115 /// false if those users cannot be gathered in the required form.
1117 ArrayRef<int> Mask, ArrayRef<Value *> Scalars,
1118 function_ref<bool(SmallVectorImpl<BuildVectorUseOp> &)> GatherUseOps)
1119 const;
1120
1121 /// Estimate the overhead of scalarizing an instruction. Insert and Extract
1122 /// are set if the demanded result elements need to be inserted and/or
1123 /// extracted from vectors. The involved values may be passed in VL if
1124 /// Insert is true.
1126 VectorType *Ty, const APInt &DemandedElts, bool Insert, bool Extract,
1127 TTI::TargetCostKind CostKind, bool ForPoisonSrc = true,
1128 ArrayRef<Value *> VL = {},
1130
1131 /// Estimate the overhead of scalarizing operands with the given types. The
1132 /// (potentially vector) types to use for each of argument are passes via Tys.
1136
1137 /// If target has efficient vector element load/store instructions, it can
1138 /// return true here so that insertion/extraction costs are not added to
1139 /// the scalarization cost of a load/store.
1141
1142 /// If the target supports tail calls.
1143 LLVM_ABI bool supportsTailCalls() const;
1144
1145 /// If target supports tail call on \p CB
1146 LLVM_ABI bool supportsTailCallFor(const CallBase *CB) const;
1147
1148 /// Don't restrict interleaved unrolling to small loops.
1149 LLVM_ABI bool enableAggressiveInterleaving(bool LoopHasReductions) const;
1150
1151 /// Returns options for expansion of memcmp. IsZeroCmp is
1152 // true if this is the expansion of memcmp(p1, p2, s) == 0.
1154 // Return true if memcmp expansion is enabled.
1155 operator bool() const { return MaxNumLoads > 0; }
1156
1157 // Maximum number of load operations.
1158 unsigned MaxNumLoads = 0;
1159
1160 // The list of available load sizes (in bytes), sorted in decreasing order.
1162
1163 // For memcmp expansion, allow up to this number of load pairs per block.
1164 // As an example, this may allow 'memcmp(a, b, 3) == 0' in a single block:
1165 // a0 = load2bytes &a[0]
1166 // b0 = load2bytes &b[0]
1167 // a2 = load1byte &a[2]
1168 // b2 = load1byte &b[2]
1169 // r = cmp eq (a0 ^ b0 | a2 ^ b2), 0
1170 // Equality comparisons combine the differences with xor/or. Ordering
1171 // comparisons pack the loads in memory order into a wider integer before
1172 // comparing, without exceeding the target's preferred load width.
1173 unsigned NumLoadsPerBlock = 1;
1174
1175 // Set to true to allow overlapping loads. For example, 7-byte compares can
1176 // be done with two 4-byte compares instead of 4+2+1-byte compares. This
1177 // requires all loads in LoadSizes to be doable in an unaligned way.
1179
1180 // Sometimes, the amount of data that needs to be compared is smaller than
1181 // the standard register size, but it cannot be loaded with just one load
1182 // instruction. For example, if the size of the memory comparison is 6
1183 // bytes, we can handle it more efficiently by loading all 6 bytes in a
1184 // single block and generating an 8-byte number, instead of generating two
1185 // separate blocks with conditional jumps for 4 and 2 byte loads. This
1186 // approach simplifies the process and produces the comparison result as
1187 // normal. This array lists the allowed sizes of memcmp tails that can be
1188 // merged into one block
1190 };
1192 bool IsZeroCmp) const;
1193
1194 /// Should the Select Optimization pass be enabled and ran.
1195 LLVM_ABI bool enableSelectOptimize() const;
1196
1197 /// Should the Select Optimization pass treat the given instruction like a
1198 /// select, potentially converting it to a conditional branch. This can
1199 /// include select-like instructions like or(zext(c), x) that can be converted
1200 /// to selects.
1202
1203 /// Enable matching of interleaved access groups.
1205
1206 /// Enable matching of interleaved access groups that contain predicated
1207 /// accesses or gaps and therefore vectorized using masked
1208 /// vector loads/stores.
1210
1211 /// Indicate that it is potentially unsafe to automatically vectorize
1212 /// floating-point operations because the semantics of vector and scalar
1213 /// floating-point semantics may differ. For example, ARM NEON v7 SIMD math
1214 /// does not support IEEE-754 denormal numbers, while depending on the
1215 /// platform, scalar floating-point math does.
1216 /// This applies to floating-point math operations and calls, not memory
1217 /// operations, shuffles, or casts.
1219
1220 /// Determine if the target supports unaligned memory accesses.
1222 unsigned BitWidth,
1223 unsigned AddressSpace = 0,
1224 Align Alignment = Align(1),
1225 unsigned *Fast = nullptr) const;
1226
1227 /// Return hardware support for population count.
1228 LLVM_ABI PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const;
1229
1230 /// Return true if the hardware has a fast square-root instruction.
1231 LLVM_ABI bool haveFastSqrt(Type *Ty) const;
1232
1233 /// Return true if the hardware has a fast carry-less multiplication
1234 /// instruction.
1235 LLVM_ABI bool haveFastClmul(IntegerType *Ty) const;
1236
1237 /// Return true if the cost of the instruction is too high to speculatively
1238 /// execute and should be kept behind a branch.
1239 /// This normally just wraps around a getInstructionCost() call, but some
1240 /// targets might report a low TCK_SizeAndLatency value that is incompatible
1241 /// with the fixed TCC_Expensive value.
1242 /// NOTE: This assumes the instruction passes isSafeToSpeculativelyExecute().
1244
1245 /// Return true if it is faster to check if a floating-point value is NaN
1246 /// (or not-NaN) versus a comparison against a constant FP zero value.
1247 /// Targets should override this if materializing a 0.0 for comparison is
1248 /// generally as cheap as checking for ordered/unordered.
1250
1251 /// Return the expected cost of supporting the floating point operation
1252 /// of the specified type.
1254
1255 /// Return the expected cost of materializing for the given integer
1256 /// immediate of the specified type.
1258 TargetCostKind CostKind) const;
1259
1260 /// Return the expected cost of materialization for the given integer
1261 /// immediate of the specified type for a given instruction. The cost can be
1262 /// zero if the immediate can be folded into the specified instruction.
1263 LLVM_ABI InstructionCost getIntImmCostInst(unsigned Opc, unsigned Idx,
1264 const APInt &Imm, Type *Ty,
1266 Instruction *Inst = nullptr) const;
1268 const APInt &Imm, Type *Ty,
1269 TargetCostKind CostKind) const;
1270
1271 /// Return the expected cost for the given integer when optimising
1272 /// for size. This is different than the other integer immediate cost
1273 /// functions in that it is subtarget agnostic. This is useful when you e.g.
1274 /// target one ISA such as Aarch32 but smaller encodings could be possible
1275 /// with another such as Thumb. This return value is used as a penalty when
1276 /// the total costs for a constant is calculated (the bigger the cost, the
1277 /// more beneficial constant hoisting is).
1278 LLVM_ABI InstructionCost getIntImmCodeSizeCost(unsigned Opc, unsigned Idx,
1279 const APInt &Imm,
1280 Type *Ty) const;
1281
1282 /// It can be advantageous to detach complex constants from their uses to make
1283 /// their generation cheaper. This hook allows targets to report when such
1284 /// transformations might negatively effect the code generation of the
1285 /// underlying operation. The motivating example is divides whereby hoisting
1286 /// constants prevents the code generator's ability to transform them into
1287 /// combinations of simpler operations.
1289 const Function &Fn) const;
1290
1291 /// @}
1292
1293 /// \name Vector Target Information
1294 /// @{
1295
1296 /// The various kinds of shuffle patterns for vector queries.
1298 SK_Broadcast, ///< Broadcast element 0 to all other elements.
1299 SK_Reverse, ///< Reverse the order of the vector.
1300 SK_Select, ///< Selects elements from the corresponding lane of
1301 ///< either source operand. This is equivalent to a
1302 ///< vector select with a constant condition operand.
1303 SK_Transpose, ///< Transpose two vectors.
1304 SK_InsertSubvector, ///< InsertSubvector. Index indicates start offset.
1305 SK_ExtractSubvector, ///< ExtractSubvector Index indicates start offset.
1306 SK_PermuteTwoSrc, ///< Merge elements from two source vectors into one
1307 ///< with any shuffle mask.
1308 SK_PermuteSingleSrc, ///< Shuffle elements of single source vector with any
1309 ///< shuffle mask.
1310 SK_Splice ///< Concatenates elements from the first input vector
1311 ///< with elements of the second input vector. Returning
1312 ///< a vector of the same type as the input vectors.
1313 ///< Index indicates start offset in first input vector.
1314 };
1315
1316 /// Additional information about an operand's possible values.
1318 OK_AnyValue, // Operand can have any value.
1319 OK_UniformValue, // Operand is uniform (splat of a value).
1320 OK_UniformConstantValue, // Operand is uniform constant.
1321 OK_NonUniformConstantValue // Operand is a non uniform constant value.
1322 };
1323
1324 /// Additional properties of an operand's values.
1330
1331 // Describe the values an operand can take. We're in the process
1332 // of migrating uses of OperandValueKind and OperandValueProperties
1333 // to use this class, and then will change the internal representation.
1337
1338 bool isConstant() const {
1340 }
1341 bool isUniform() const {
1343 }
1344 bool isPowerOf2() const {
1345 return Properties == OP_PowerOf2;
1346 }
1347 bool isNegatedPowerOf2() const {
1349 }
1350
1352 return {Kind, OP_None};
1353 }
1354
1356 OperandValueKind MergeKind = OK_AnyValue;
1357 if (isConstant() && OpInfoY.isConstant())
1358 MergeKind = OK_NonUniformConstantValue;
1359
1360 OperandValueProperties MergeProp = OP_None;
1361 if (Properties == OpInfoY.Properties)
1362 MergeProp = Properties;
1363 return {MergeKind, MergeProp};
1364 }
1365 };
1366
1367 /// \return the number of registers in the target-provided register class.
1368 LLVM_ABI unsigned getNumberOfRegisters(unsigned ClassID) const;
1369
1370 /// \return true if the target supports load/store that enables fault
1371 /// suppression of memory operands when the source condition is false.
1372 LLVM_ABI bool hasConditionalLoadStoreForType(Type *Ty, bool IsStore) const;
1373
1374 /// \return the target-provided register class ID for the provided type,
1375 /// accounting for type promotion and other type-legalization techniques that
1376 /// the target might apply. However, it specifically does not account for the
1377 /// scalarization or splitting of vector types. Should a vector type require
1378 /// scalarization or splitting into multiple underlying vector registers, that
1379 /// type should be mapped to a register class containing no registers.
1380 /// Specifically, this is designed to provide a simple, high-level view of the
1381 /// register allocation later performed by the backend. These register classes
1382 /// don't necessarily map onto the register classes used by the backend.
1383 /// FIXME: It's not currently possible to determine how many registers
1384 /// are used by the provided type.
1386 Type *Ty = nullptr) const;
1387
1388 /// \return the target-provided register class name
1389 LLVM_ABI const char *getRegisterClassName(unsigned ClassID) const;
1390
1391 /// \return the cost of spilling a register in the target-provided register
1392 /// class to the stack.
1394 getRegisterClassSpillCost(unsigned ClassID, TargetCostKind CostKind) const;
1395
1396 /// \return the cost of reloading a register in the target-provided register
1397 /// class from the stack.
1399 getRegisterClassReloadCost(unsigned ClassID, TargetCostKind CostKind) const;
1400
1402
1403 /// \return The width of the largest scalar or vector register type.
1404 LLVM_ABI TypeSize getRegisterBitWidth(RegisterKind K) const;
1405
1406 /// \return The width of the smallest vector register type.
1407 LLVM_ABI unsigned getMinVectorRegisterBitWidth() const;
1408
1409 /// \return the value of vscale to tune the cost model for.
1410 LLVM_ABI std::optional<unsigned> getVScaleForTuning() const;
1411
1412 /// \return True if the vectorization factor should be chosen to
1413 /// make the vector of the smallest element type match the size of a
1414 /// vector register. For wider element types, this could result in
1415 /// creating vectors that span multiple vector registers.
1416 /// If false, the vectorization factor will be chosen based on the
1417 /// size of the widest element type.
1418 /// \p K Register Kind for vectorization.
1419 LLVM_ABI bool
1421
1422 /// \return The minimum vectorization factor for types of given element
1423 /// bit width, or 0 if there is no minimum VF. The returned value only
1424 /// applies when shouldMaximizeVectorBandwidth returns true.
1425 /// If IsScalable is true, the returned ElementCount must be a scalable VF.
1426 LLVM_ABI ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const;
1427
1428 /// \return The maximum vectorization factor for types of given element
1429 /// bit width and opcode, or 0 if there is no maximum VF.
1430 /// Currently only used by the SLP vectorizer.
1431 LLVM_ABI unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const;
1432
1433 /// \return The minimum vectorization factor for the store instruction. Given
1434 /// the initial estimation of the minimum vector factor and store value type,
1435 /// it tries to find possible lowest VF, which still might be profitable for
1436 /// the vectorization.
1437 /// \param VF Initial estimation of the minimum vector factor.
1438 /// \param ScalarMemTy Scalar memory type of the store operation.
1439 /// \param ScalarValTy Scalar type of the stored value.
1440 /// \param Alignment Alignment of the store
1441 /// \param AddrSpace Address space of the store
1442 /// Currently only used by the SLP vectorizer.
1443 LLVM_ABI unsigned getStoreMinimumVF(unsigned VF, Type *ScalarMemTy,
1444 Type *ScalarValTy, Align Alignment,
1445 unsigned AddrSpace) const;
1446
1447 /// \return True if it should be considered for address type promotion.
1448 /// \p AllowPromotionWithoutCommonHeader Set true if promoting \p I is
1449 /// profitable without finding other extensions fed by the same input.
1451 const Instruction &I, bool &AllowPromotionWithoutCommonHeader) const;
1452
1453 /// \return The size of a cache line in bytes.
1454 LLVM_ABI unsigned getCacheLineSize() const;
1455
1456 /// The possible cache levels
1457 enum class CacheLevel {
1458 L1D, // The L1 data cache
1459 L2D, // The L2 data cache
1460
1461 // We currently do not model L3 caches, as their sizes differ widely between
1462 // microarchitectures. Also, we currently do not have a use for L3 cache
1463 // size modeling yet.
1464 };
1465
1466 /// \return The size of the cache level in bytes, if available.
1467 LLVM_ABI std::optional<unsigned> getCacheSize(CacheLevel Level) const;
1468
1469 /// \return The associativity of the cache level, if available.
1470 LLVM_ABI std::optional<unsigned>
1471 getCacheAssociativity(CacheLevel Level) const;
1472
1473 /// \return The minimum architectural page size for the target.
1474 LLVM_ABI std::optional<unsigned> getMinPageSize() const;
1475
1476 /// \return How much before a load we should place the prefetch
1477 /// instruction. This is currently measured in number of
1478 /// instructions.
1479 LLVM_ABI unsigned getPrefetchDistance() const;
1480
1481 /// Some HW prefetchers can handle accesses up to a certain constant stride.
1482 /// Sometimes prefetching is beneficial even below the HW prefetcher limit,
1483 /// and the arguments provided are meant to serve as a basis for deciding this
1484 /// for a particular loop.
1485 ///
1486 /// \param NumMemAccesses Number of memory accesses in the loop.
1487 /// \param NumStridedMemAccesses Number of the memory accesses that
1488 /// ScalarEvolution could find a known stride
1489 /// for.
1490 /// \param NumPrefetches Number of software prefetches that will be
1491 /// emitted as determined by the addresses
1492 /// involved and the cache line size.
1493 /// \param HasCall True if the loop contains a call.
1494 ///
1495 /// \return This is the minimum stride in bytes where it makes sense to start
1496 /// adding SW prefetches. The default is 1, i.e. prefetch with any
1497 /// stride.
1498 LLVM_ABI unsigned getMinPrefetchStride(unsigned NumMemAccesses,
1499 unsigned NumStridedMemAccesses,
1500 unsigned NumPrefetches,
1501 bool HasCall) const;
1502
1503 /// \return The maximum number of iterations to prefetch ahead. If
1504 /// the required number of iterations is more than this number, no
1505 /// prefetching is performed.
1506 LLVM_ABI unsigned getMaxPrefetchIterationsAhead() const;
1507
1508 /// \return True if prefetching should also be done for writes.
1509 LLVM_ABI bool enableWritePrefetching() const;
1510
1511 /// \return if target want to issue a prefetch in address space \p AS.
1512 LLVM_ABI bool shouldPrefetchAddressSpace(unsigned AS) const;
1513
1514 /// \return The cost of a partial reduction, which is a reduction from a
1515 /// vector to another vector with fewer elements of larger size. They are
1516 /// represented by the llvm.vector.partial.reduce.add and
1517 /// llvm.vector.partial.reduce.fadd intrinsics, which take an accumulator of
1518 /// type \p AccumType and a second vector operand to be accumulated, whose
1519 /// element count is specified by \p VF. The type of reduction is specified by
1520 /// \p Opcode. The second operand passed to the intrinsic could be the result
1521 /// of an extend, such as sext or zext. In this case \p BinOp is nullopt,
1522 /// \p InputTypeA represents the type being extended and \p OpAExtend the
1523 /// operation, i.e. sign- or zero-extend.
1524 /// For floating-point partial reductions, any fast math flags (FMF) should be
1525 /// provided to govern which reductions are valid to perform (depending on
1526 /// reassoc or contract, for example), whereas this must be nullopt for
1527 /// integer partial reductions.
1528 /// Also, \p InputTypeB should be nullptr and OpBExtend should be None.
1529 /// Alternatively, the second operand could be the result of a binary
1530 /// operation performed on two extends, i.e.
1531 /// mul(zext i8 %a -> i32, zext i8 %b -> i32).
1532 /// In this case \p BinOp may specify the opcode of the binary operation,
1533 /// \p InputTypeA and \p InputTypeB the types being extended, and
1534 /// \p OpAExtend, \p OpBExtend the form of extensions. An example of an
1535 /// operation that uses a partial reduction is a dot product, which reduces
1536 /// two vectors in binary mul operation to another of 4 times fewer and 4
1537 /// times larger elements.
1539 unsigned Opcode, Type *InputTypeA, Type *InputTypeB, Type *AccumType,
1541 PartialReductionExtendKind OpBExtend, std::optional<unsigned> BinOp,
1542 TTI::TargetCostKind CostKind, std::optional<FastMathFlags> FMF) const;
1543
1544 /// \return The maximum interleave factor that any transform should try to
1545 /// perform for this target. This number depends on the level of parallelism
1546 /// and the number of execution units in the CPU. HasUnorderedReductions
1547 /// specifies whether (unordered) reductions are present in the loop being
1548 /// vectorized.
1550 bool HasUnorderedReductions) const;
1551
1552 /// Collect properties of V used in cost analysis, e.g. OP_PowerOf2.
1553 LLVM_ABI static OperandValueInfo getOperandInfo(const Value *V);
1554
1555 /// Collect common data between two OperandValueInfo inputs
1556 LLVM_ABI static OperandValueInfo commonOperandInfo(const Value *X,
1557 const Value *Y);
1558
1559 /// This is an approximation of reciprocal throughput of a math/logic op.
1560 /// A higher cost indicates less expected throughput.
1561 /// From Agner Fog's guides, reciprocal throughput is "the average number of
1562 /// clock cycles per instruction when the instructions are not part of a
1563 /// limiting dependency chain."
1564 /// Therefore, costs should be scaled to account for multiple execution units
1565 /// on the target that can process this type of instruction. For example, if
1566 /// there are 5 scalar integer units and 2 vector integer units that can
1567 /// calculate an 'add' in a single cycle, this model should indicate that the
1568 /// cost of the vector add instruction is 2.5 times the cost of the scalar
1569 /// add instruction.
1570 /// \p Args is an optional argument which holds the instruction operands
1571 /// values so the TTI can analyze those values searching for special
1572 /// cases or optimizations based on those values.
1573 /// \p CtxI is the optional original context instruction, if one exists, to
1574 /// provide even more information.
1575 /// \p TLibInfo is used to search for platform specific vector library
1576 /// functions for instructions that might be converted to calls (e.g. frem).
1578 unsigned Opcode, Type *Ty, TTI::TargetCostKind CostKind,
1581 ArrayRef<const Value *> Args = {}, const Instruction *CtxI = nullptr,
1582 const TargetLibraryInfo *TLibInfo = nullptr) const;
1583
1584 /// Returns the cost estimation for alternating opcode pattern that can be
1585 /// lowered to a single instruction on the target. In X86 this is for the
1586 /// addsub instruction which corrsponds to a Shuffle + Fadd + FSub pattern in
1587 /// IR. This function expects two opcodes: \p Opcode1 and \p Opcode2 being
1588 /// selected by \p OpcodeMask. The mask contains one bit per lane and is a `0`
1589 /// when \p Opcode0 is selected and `1` when Opcode1 is selected.
1590 /// \p VecTy is the vector type of the instruction to be generated.
1591 LLVM_ABI InstructionCost getAltInstrCost(VectorType *VecTy, unsigned Opcode0,
1592 unsigned Opcode1,
1593 const SmallBitVector &OpcodeMask,
1595
1596 /// \return The cost of a shuffle instruction of kind Kind with inputs of type
1597 /// SrcTy, producing a vector of type DstTy. The exact mask may be passed as
1598 /// Mask, or else the array will be empty. The Index and SubTp parameters
1599 /// are used by the subvector insertions shuffle kinds to show the insert
1600 /// point and the type of the subvector being inserted. The operands of the
1601 /// shuffle can be passed through \p Args, which helps improve the cost
1602 /// estimation in some cases, like in broadcast loads.
1604 ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy,
1605 TTI::TargetCostKind CostKind, ArrayRef<int> Mask = {}, int Index = 0,
1606 VectorType *SubTp = nullptr, ArrayRef<const Value *> Args = {},
1607 const Instruction *CtxI = nullptr,
1609
1610 /// Represents a hint about the context in which a cast is used.
1611 ///
1612 /// For zext/sext, the context of the cast is the operand, which must be a
1613 /// load of some kind. For trunc, the context is of the cast is the single
1614 /// user of the instruction, which must be a store of some kind.
1615 ///
1616 /// This enum allows the vectorizer to give getCastInstrCost an idea of the
1617 /// type of cast it's dealing with, as not every cast is equal. For instance,
1618 /// the zext of a load may be free, but the zext of an interleaving load can
1619 //// be (very) expensive!
1620 ///
1621 /// See \c getCastContextHint to compute a CastContextHint from a cast
1622 /// Instruction*. Callers can use it if they don't need to override the
1623 /// context and just want it to be calculated from the instruction.
1624 ///
1625 /// FIXME: This handles the types of load/store that the vectorizer can
1626 /// produce, which are the cases where the context instruction is most
1627 /// likely to be incorrect. There are other situations where that can happen
1628 /// too, which might be handled here but in the long run a more general
1629 /// solution of costing multiple instructions at the same times may be better.
1631 None, ///< The cast is not used with a load/store of any kind.
1632 Normal, ///< The cast is used with a normal load/store.
1633 Masked, ///< The cast is used with a masked load/store.
1634 GatherScatter, ///< The cast is used with a gather/scatter.
1635 Interleave, ///< The cast is used with an interleaved load/store.
1636 Reversed, ///< The cast is used with a reversed load/store.
1637 };
1638
1639 /// Calculates a CastContextHint from \p I.
1640 /// This should be used by callers of getCastInstrCost if they wish to
1641 /// determine the context from some instruction.
1642 /// \returns the CastContextHint for ZExt/SExt/Trunc, None if \p I is nullptr,
1643 /// or if it's another type of cast.
1645
1646 /// \return The expected cost of cast instructions, such as bitcast, trunc,
1647 /// zext, etc. If there is an existing instruction that holds Opcode, it
1648 /// may be passed in the 'I' parameter.
1650 unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH,
1651 TTI::TargetCostKind CostKind, const Instruction *I = nullptr) const;
1652
1653 /// \return The expected cost of a sign- or zero-extended vector extract. Use
1654 /// Index = -1 to indicate that there is no information about the index value.
1656 getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy,
1657 unsigned Index, TTI::TargetCostKind CostKind) const;
1658
1659 /// \return The expected cost of control-flow related instructions such as
1660 /// Phi, Ret, Br, Switch.
1661 LLVM_ABI InstructionCost getCFInstrCost(unsigned Opcode,
1663 const Instruction *I = nullptr) const;
1664
1665 /// \returns The expected cost of compare and select instructions. If there
1666 /// is an existing instruction that holds Opcode, it may be passed in the
1667 /// 'I' parameter. The \p VecPred parameter can be used to indicate the select
1668 /// is using a compare with the specified predicate as condition. When vector
1669 /// types are passed, \p VecPred must be used for all lanes. For a
1670 /// comparison, the two operands are the natural values. For a select, the
1671 /// two operands are the *value* operands, not the condition operand.
1673 getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
1675 OperandValueInfo Op1Info = {OK_AnyValue, OP_None},
1676 OperandValueInfo Op2Info = {OK_AnyValue, OP_None},
1677 const Instruction *I = nullptr) const;
1678
1679 /// \return The expected cost of vector Insert and Extract.
1680 /// Use -1 to indicate that there is no information on the index value.
1681 /// This is used when the instruction is not available; a typical use
1682 /// case is to provision the cost of vectorization/scalarization in
1683 /// vectorizer passes.
1685 unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind,
1686 unsigned Index = -1, const Value *Op0 = nullptr,
1687 const Value *Op1 = nullptr,
1689
1690 /// \return The expected cost of vector Insert and Extract.
1691 /// Use -1 to indicate that there is no information on the index value.
1692 /// This is used when the instruction is not available; a typical use
1693 /// case is to provision the cost of vectorization/scalarization in
1694 /// vectorizer passes.
1695 /// \param ScalarUserAndIdx encodes the information about extracts from a
1696 /// vector with 'Scalar' being the value being extracted,'User' being the user
1697 /// of the extract(nullptr if user is not known before vectorization) and
1698 /// 'Idx' being the extract lane.
1700 unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index,
1701 Value *Scalar,
1702 ArrayRef<std::tuple<Value *, User *, int>> ScalarUserAndIdx,
1704
1705 /// \return The expected cost of vector Insert and Extract.
1706 /// This is used when instruction is available, and implementation
1707 /// asserts 'I' is not nullptr.
1708 ///
1709 /// A typical suitable use case is cost estimation when vector instruction
1710 /// exists (e.g., from basic blocks during transformation).
1712 const Instruction &I, Type *Val, TTI::TargetCostKind CostKind,
1713 unsigned Index = -1,
1715
1716 /// \return The expected cost of inserting or extracting a lane that is \p
1717 /// Index elements from the end of a vector, i.e. the mathematical expression
1718 /// for the lane is (VF - 1 - Index). This is required for scalable vectors
1719 /// where the exact lane index is unknown at compile time.
1721 unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind,
1722 unsigned Index) const;
1723
1724 /// \return The expected cost of aggregate inserts and extracts. This is
1725 /// used when the instruction is not available; a typical use case is to
1726 /// provision the cost of vectorization/scalarization in vectorizer passes.
1728 unsigned Opcode, TTI::TargetCostKind CostKind) const;
1729
1730 /// \return The cost of replication shuffle of \p VF elements typed \p EltTy
1731 /// \p ReplicationFactor times.
1732 ///
1733 /// For example, the mask for \p ReplicationFactor=3 and \p VF=4 is:
1734 /// <0,0,0,1,1,1,2,2,2,3,3,3>
1736 Type *EltTy, int ReplicationFactor, int VF, const APInt &DemandedDstElts,
1738
1739 /// \return The cost of Load and Store instructions. The operand info
1740 /// \p OpdInfo should refer to the stored value for stores and the address
1741 /// for loads.
1743 getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment,
1746 const Instruction *I = nullptr) const;
1747
1748 /// \return The cost of the interleaved memory operation.
1749 /// \p Opcode is the memory operation code
1750 /// \p VecTy is the vector type of the interleaved access.
1751 /// \p Factor is the interleave factor
1752 /// \p Indices is the indices for interleaved load members (as interleaved
1753 /// load allows gaps)
1754 /// \p Alignment is the alignment of the memory operation
1755 /// \p AddressSpace is address space of the pointer.
1756 /// \p UseMaskForCond indicates if the memory access is predicated.
1757 /// \p UseMaskForGaps indicates if gaps should be masked.
1759 unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef<unsigned> Indices,
1760 Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind,
1761 bool UseMaskForCond = false, bool UseMaskForGaps = false) const;
1762
1763 /// A helper function to determine the type of reduction algorithm used
1764 /// for a given \p Opcode and set of FastMathFlags \p FMF.
1765 static bool requiresOrderedReduction(std::optional<FastMathFlags> FMF) {
1766 return FMF && !(*FMF).allowReassoc();
1767 }
1768
1769 /// Calculate the cost of vector reduction intrinsics.
1770 ///
1771 /// This is the cost of reducing the vector value of type \p Ty to a scalar
1772 /// value using the operation denoted by \p Opcode. The FastMathFlags
1773 /// parameter \p FMF indicates what type of reduction we are performing:
1774 /// 1. Tree-wise. This is the typical 'fast' reduction performed that
1775 /// involves successively splitting a vector into half and doing the
1776 /// operation on the pair of halves until you have a scalar value. For
1777 /// example:
1778 /// (v0, v1, v2, v3)
1779 /// ((v0+v2), (v1+v3), undef, undef)
1780 /// ((v0+v2+v1+v3), undef, undef, undef)
1781 /// This is the default behaviour for integer operations, whereas for
1782 /// floating point we only do this if \p FMF indicates that
1783 /// reassociation is allowed.
1784 /// 2. Ordered. For a vector with N elements this involves performing N
1785 /// operations in lane order, starting with an initial scalar value, i.e.
1786 /// result = InitVal + v0
1787 /// result = result + v1
1788 /// result = result + v2
1789 /// result = result + v3
1790 /// This is only the case for FP operations and when reassociation is not
1791 /// allowed.
1792 ///
1794 unsigned Opcode, VectorType *Ty, std::optional<FastMathFlags> FMF,
1796
1800
1801 /// Calculate the cost of an extended reduction pattern, similar to
1802 /// getArithmeticReductionCost of an Add/Sub reduction with multiply and
1803 /// optional extensions. This is the cost of as:
1804 /// * ResTy vecreduce.add/sub(mul (A, B)) or,
1805 /// * ResTy vecreduce.add/sub(mul(ext(Ty A), ext(Ty B)).
1807 getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy,
1809
1810 /// Calculate the cost of an extended reduction pattern, similar to
1811 /// getArithmeticReductionCost of a reduction with an extension.
1812 /// This is the cost of as:
1813 /// ResTy vecreduce.opcode(ext(Ty A)).
1815 unsigned Opcode, bool IsUnsigned, Type *ResTy, VectorType *Ty,
1816 std::optional<FastMathFlags> FMF, TTI::TargetCostKind CostKind) const;
1817
1818 /// \returns The cost of Intrinsic instructions. Analyses the real arguments.
1819 /// Three cases are handled: 1. scalar instruction 2. vector instruction
1820 /// 3. scalar instruction which is to be vectorized.
1823
1824 /// \returns The cost of memory intrinsic instructions.
1825 /// Used when IntrinsicInst is not materialized.
1829
1830 /// \returns The cost of Call instructions.
1832 ArrayRef<Type *> Tys,
1834
1835 /// \returns The number of pieces into which the provided type must be
1836 /// split during legalization. Zero is returned when the answer is unknown.
1837 LLVM_ABI unsigned getNumberOfParts(Type *Tp) const;
1838
1839 /// \returns The cost of the address computation. For most targets this can be
1840 /// merged into the instruction indexing mode. Some targets might want to
1841 /// distinguish between address computation for memory operations with vector
1842 /// pointer types and scalar pointer types. Such targets should override this
1843 /// function. \p SE holds the pointer for the scalar evolution object which
1844 /// was used in order to get the Ptr step value. \p Ptr holds the SCEV of the
1845 /// access pointer.
1847 getAddressComputationCost(Type *PtrTy, ScalarEvolution *SE, const SCEV *Ptr,
1849
1850 /// \returns The cost, if any, of keeping values of the given types alive
1851 /// over a callsite.
1852 ///
1853 /// Some types may require the use of register classes that do not have
1854 /// any callee-saved registers, so would require a spill and fill.
1857
1858 /// \returns True if the intrinsic is a supported memory intrinsic. Info
1859 /// will contain additional information - whether the intrinsic may write
1860 /// or read to memory, volatility and the pointer. Info is undefined
1861 /// if false is returned.
1863 MemIntrinsicInfo &Info) const;
1864
1865 /// \returns The maximum element size, in bytes, for an element
1866 /// unordered-atomic memory intrinsic.
1868
1869 /// \returns A value which is the result of the given memory intrinsic. If \p
1870 /// CanCreate is true, new instructions may be created to extract the result
1871 /// from the given intrinsic memory operation. Returns nullptr if the target
1872 /// cannot create a result from the given intrinsic.
1873 LLVM_ABI Value *
1875 bool CanCreate = true) const;
1876
1877 /// \returns The type to use in a loop expansion of a memcpy call.
1879 LLVMContext &Context, Value *Length, unsigned SrcAddrSpace,
1880 unsigned DestAddrSpace, Align SrcAlign, Align DestAlign,
1881 std::optional<uint32_t> AtomicElementSize = std::nullopt) const;
1882
1883 /// \param[out] OpsOut The operand types to copy RemainingBytes of memory.
1884 /// \param RemainingBytes The number of bytes to copy.
1885 ///
1886 /// Calculates the operand types to use when copying \p RemainingBytes of
1887 /// memory, where source and destination alignments are \p SrcAlign and
1888 /// \p DestAlign respectively.
1890 SmallVectorImpl<Type *> &OpsOut, LLVMContext &Context,
1891 unsigned RemainingBytes, unsigned SrcAddrSpace, unsigned DestAddrSpace,
1892 Align SrcAlign, Align DestAlign,
1893 std::optional<uint32_t> AtomicCpySize = std::nullopt) const;
1894
1895 /// \returns True if the two functions have compatible attributes for inlining
1896 /// purposes.
1897 LLVM_ABI bool areInlineCompatible(const Function *Caller,
1898 const Function *Callee) const;
1899
1900 /// Returns a penalty for invoking call \p Call in \p F.
1901 /// For example, if a function F calls a function G, which in turn calls
1902 /// function H, then getInlineCallPenalty(F, H()) would return the
1903 /// penalty of calling H from F, e.g. after inlining G into F.
1904 /// \p DefaultCallPenalty is passed to give a default penalty that
1905 /// the target can amend or override.
1906 LLVM_ABI unsigned getInlineCallPenalty(const Function *F,
1907 const CallBase &Call,
1908 unsigned DefaultCallPenalty) const;
1909
1910 /// \returns true if `Caller`'s `Attr` should be added to the new function
1911 /// created by outlining part of `Caller`.
1912 LLVM_ABI bool
1914 const Attribute &Attr) const;
1915
1916 /// \returns True if the caller and callee agree on how \p Types will be
1917 /// passed to or returned from the callee.
1918 /// to the callee.
1919 /// \param Types List of types to check.
1920 LLVM_ABI bool areTypesABICompatible(const Function *Caller,
1921 const Function *Callee,
1922 ArrayRef<Type *> Types) const;
1923
1924 /// The type of load/store indexing.
1926 MIM_Unindexed, ///< No indexing.
1927 MIM_PreInc, ///< Pre-incrementing.
1928 MIM_PreDec, ///< Pre-decrementing.
1929 MIM_PostInc, ///< Post-incrementing.
1930 MIM_PostDec ///< Post-decrementing.
1931 };
1932
1933 /// \returns True if the specified indexed load for the given type is legal.
1934 LLVM_ABI bool isIndexedLoadLegal(enum MemIndexedMode Mode, Type *Ty) const;
1935
1936 /// \returns True if the specified indexed store for the given type is legal.
1937 LLVM_ABI bool isIndexedStoreLegal(enum MemIndexedMode Mode, Type *Ty) const;
1938
1939 /// \returns The bitwidth of the largest vector type that should be used to
1940 /// load/store in the given address space.
1941 LLVM_ABI unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const;
1942
1943 /// \returns True if the load instruction is legal to vectorize.
1945
1946 /// \returns True if the store instruction is legal to vectorize.
1948
1949 /// \returns True if it is legal to vectorize the given load chain.
1950 LLVM_ABI bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes,
1951 Align Alignment,
1952 unsigned AddrSpace) const;
1953
1954 /// \returns True if it is legal to vectorize the given store chain.
1955 LLVM_ABI bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes,
1956 Align Alignment,
1957 unsigned AddrSpace) const;
1958
1959 /// \returns True if it is legal to vectorize the given reduction kind.
1961 ElementCount VF) const;
1962
1963 /// \returns True if the given type is supported for scalable vectors
1965
1966 /// \returns The new vector factor value if the target doesn't support \p
1967 /// SizeInBytes loads or has a better vector factor.
1968 LLVM_ABI unsigned getLoadVectorFactor(unsigned VF, unsigned LoadSize,
1969 unsigned ChainSizeInBytes,
1970 VectorType *VecTy) const;
1971
1972 /// \returns The new vector factor value if the target doesn't support \p
1973 /// SizeInBytes stores or has a better vector factor.
1974 LLVM_ABI unsigned getStoreVectorFactor(unsigned VF, unsigned StoreSize,
1975 unsigned ChainSizeInBytes,
1976 VectorType *VecTy) const;
1977
1978 /// \returns True if the target prefers fixed width vectorization if the
1979 /// loop vectorizer's cost-model assigns an equal cost to the fixed and
1980 /// scalable version of the vectorized loop.
1982
1983 /// \returns True if target prefers SLP vectorizer with altermate opcode
1984 /// vectorization, false - otherwise.
1986
1987 /// \returns True if the SLP vectorizer should apply the instruction-count
1988 /// check that rejects 2-element vector trees when the vector instruction
1989 /// count exceeds the scalar instruction count, false if the target opts out
1990 /// of this heuristic.
1991 LLVM_ABI bool preferSLPInstCountCheck() const;
1992
1993 /// \returns True if the target prefers reductions of \p Kind to be performed
1994 /// in the loop.
1995 LLVM_ABI bool preferInLoopReduction(RecurKind Kind, Type *Ty) const;
1996
1997 /// \returns True if the target prefers reductions select kept in the loop
1998 /// when tail folding. i.e.
1999 /// loop:
2000 /// p = phi (0, s)
2001 /// a = add (p, x)
2002 /// s = select (mask, a, p)
2003 /// vecreduce.add(s)
2004 ///
2005 /// As opposed to the normal scheme of p = phi (0, a) which allows the select
2006 /// to be pulled out of the loop. If the select(.., add, ..) can be predicated
2007 /// by the target, this can lead to cleaner code generation.
2009
2010 /// Return true if the loop vectorizer should consider vectorizing an
2011 /// otherwise scalar epilogue loop if the loop already has been vectorized
2012 /// processing \p Iters scalar iterations per vector iteration.
2014
2015 /// \returns True if the loop vectorizer should discard any VFs where the
2016 /// maximum register pressure exceeds getNumberOfRegisters.
2018
2019 /// \returns True if the target wants to expand the given reduction intrinsic
2020 /// into a shuffle sequence.
2022
2024
2025 /// \returns The shuffle sequence pattern used to expand the given reduction
2026 /// intrinsic.
2029
2030 /// \returns the size cost of rematerializing a GlobalValue address relative
2031 /// to a stack reload.
2032 LLVM_ABI unsigned getGISelRematGlobalCost() const;
2033
2034 /// \returns the lower bound of a trip count to decide on vectorization
2035 /// while tail-folding.
2037
2038 /// \returns True if the target supports scalable vectors.
2039 LLVM_ABI bool supportsScalableVectors() const;
2040
2041 /// \return true when scalable vectorization is preferred.
2043
2044 /// \name Vector Predication Information
2045 /// @{
2046 /// Whether the target supports the %evl parameter of VP intrinsic efficiently
2047 /// in hardware. (see LLVM Language Reference - "Vector Predication
2048 /// Intrinsics"). Use of %evl is discouraged when that is not the case.
2049 LLVM_ABI bool hasActiveVectorLength() const;
2050
2051 /// Return true if sinking I's operands to the same basic block as I is
2052 /// profitable, e.g. because the operands can be folded into a target
2053 /// instruction during instruction selection. After calling the function
2054 /// \p Ops contains the Uses to sink ordered by dominance (dominating users
2055 /// come first).
2058
2059 /// Return true if it's significantly cheaper to shift a vector by a uniform
2060 /// scalar than by an amount which will vary across each lane. On x86 before
2061 /// AVX2 for example, there is a "psllw" instruction for the former case, but
2062 /// no simple instruction for a general "a << b" operation on vectors.
2063 /// This should also apply to lowering for vector funnel shifts (rotates).
2065
2068 // keep the predicating parameter
2070 // where legal, discard the predicate parameter
2072 // transform into something else that is also predicating
2074 };
2075
2076 // How to transform the EVL parameter.
2077 // Legal: keep the EVL parameter as it is.
2078 // Discard: Ignore the EVL parameter where it is safe to do so.
2079 // Convert: Fold the EVL into the mask parameter.
2081
2082 // How to transform the operator.
2083 // Legal: The target supports this operator.
2084 // Convert: Convert this to a non-VP operation.
2085 // The 'Discard' strategy is invalid.
2087
2088 bool shouldDoNothing() const {
2089 return (EVLParamStrategy == Legal) && (OpStrategy == Legal);
2090 }
2093 };
2094
2095 /// \returns How the target needs this vector-predicated operation to be
2096 /// transformed.
2098 getVPLegalizationStrategy(const VPIntrinsic &PI) const;
2099 /// @}
2100
2101 /// \returns Whether a 32-bit branch instruction is available in Arm or Thumb
2102 /// state.
2103 ///
2104 /// Used by the LowerTypeTests pass, which constructs an IR inline assembler
2105 /// node containing a jump table in a format suitable for the target, so it
2106 /// needs to know what format of jump table it can legally use.
2107 ///
2108 /// For non-Arm targets, this function isn't used. It defaults to returning
2109 /// false, but it shouldn't matter what it returns anyway.
2110 LLVM_ABI bool hasArmWideBranch(bool Thumb) const;
2111
2112 /// Returns a bitmask constructed from the target-features or fmv-features
2113 /// metadata of a function corresponding to its Arch Extensions.
2114 LLVM_ABI APInt getFeatureMask(const Function &F) const;
2115
2116 /// Returns a bitmask constructed from the target-features or fmv-features
2117 /// metadata of a function corresponding to its FMV priority.
2118 LLVM_ABI APInt getPriorityMask(const Function &F) const;
2119
2120 /// Returns true if this is an instance of a function with multiple versions.
2121 LLVM_ABI bool isMultiversionedFunction(const Function &F) const;
2122
2123 /// \return The maximum number of function arguments the target supports.
2124 LLVM_ABI unsigned getMaxNumArgs() const;
2125
2126 /// \return For an array of given Size, return alignment boundary to
2127 /// pad to. Default is no padding.
2128 LLVM_ABI unsigned getNumBytesToPadGlobalArray(unsigned Size,
2129 Type *ArrayType) const;
2130
2131 /// @}
2132
2133 /// Collect kernel launch bounds for \p F into \p LB.
2135 const Function &F,
2136 SmallVectorImpl<std::pair<StringRef, int64_t>> &LB) const;
2137
2138 /// Returns true if GEP should not be used to index into vectors for this
2139 /// target.
2141
2142 /// Determine if an instruction with Custom uniformity can be proven uniform
2143 /// based on which operands are uniform.
2144 ///
2145 /// \param I The instruction to check.
2146 /// \param UniformArgs A bitvector indicating which operands are known to be
2147 /// uniform (bit N corresponds to operand N).
2148 /// \returns true if the instruction result can be proven uniform given the
2149 /// uniform operands, false otherwise.
2150 LLVM_ABI bool isUniform(const Instruction *I,
2151 const SmallBitVector &UniformArgs) const;
2152
2153private:
2154 std::unique_ptr<const TargetTransformInfoImplBase> TTIImpl;
2155};
2156
2157/// Analysis pass providing the \c TargetTransformInfo.
2158///
2159/// The core idea of the TargetIRAnalysis is to expose an interface through
2160/// which LLVM targets can analyze and provide information about the middle
2161/// end's target-independent IR. This supports use cases such as target-aware
2162/// cost modeling of IR constructs.
2163///
2164/// This is a function analysis because much of the cost modeling for targets
2165/// is done in a subtarget specific way and LLVM supports compiling different
2166/// functions targeting different subtargets in order to support runtime
2167/// dispatch according to the observed subtarget.
2168class TargetIRAnalysis : public AnalysisInfoMixin<TargetIRAnalysis> {
2169public:
2171
2172 /// Default construct a target IR analysis.
2173 ///
2174 /// This will use the module's datalayout to construct a baseline
2175 /// conservative TTI result.
2177
2178 /// Construct an IR analysis pass around a target-provide callback.
2179 ///
2180 /// The callback will be called with a particular function for which the TTI
2181 /// is needed and must return a TTI object for that function.
2182 LLVM_ABI
2183 TargetIRAnalysis(std::function<Result(const Function &)> TTICallback);
2184
2185 // Value semantics. We spell out the constructors for MSVC.
2187 : TTICallback(Arg.TTICallback) {}
2189 : TTICallback(std::move(Arg.TTICallback)) {}
2191 TTICallback = RHS.TTICallback;
2192 return *this;
2193 }
2195 TTICallback = std::move(RHS.TTICallback);
2196 return *this;
2197 }
2198
2200
2201private:
2203 LLVM_ABI static AnalysisKey Key;
2204
2205 /// The callback used to produce a result.
2206 ///
2207 /// We use a completely opaque callback so that targets can provide whatever
2208 /// mechanism they desire for constructing the TTI for a given function.
2209 ///
2210 /// FIXME: Should we really use std::function? It's relatively inefficient.
2211 /// It might be possible to arrange for even stateful callbacks to outlive
2212 /// the analysis and thus use a function_ref which would be lighter weight.
2213 /// This may also be less error prone as the callback is likely to reference
2214 /// the external TargetMachine, and that reference needs to never dangle.
2215 std::function<Result(const Function &)> TTICallback;
2216
2217 /// Helper function used as the callback in the default constructor.
2218 static Result getDefaultTTI(const Function &F);
2219};
2220
2221/// Wrapper pass for TargetTransformInfo.
2222///
2223/// This pass can be constructed from a TTI object which it stores internally
2224/// and is queried by passes.
2226 TargetIRAnalysis TIRA;
2227 std::optional<TargetTransformInfo> TTI;
2228
2229 virtual void anchor();
2230
2231public:
2232 static char ID;
2233
2234 /// We must provide a default constructor for the pass but it should
2235 /// never be used.
2236 ///
2237 /// Use the constructor below or call one of the creation routines.
2239
2241
2243};
2244
2245/// Create an analysis pass wrapper around a TTI object.
2246///
2247/// This analysis pass just holds the TTI instance and makes it available to
2248/// clients.
2251
2252} // namespace llvm
2253
2254#endif
unsigned Imm
unsigned uint64_t
This file implements a class to represent arbitrary precision integral constant values and operations...
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Atomic ordering constants.
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
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")))
TargetTransformInfo::VPLegalization VPLegalization
static cl::opt< bool > ForceNestedLoop("force-nested-hardware-loop", cl::Hidden, cl::init(false), cl::desc("Force allowance of nested hardware loops"))
static cl::opt< bool > ForceHardwareLoopPHI("force-hardware-loop-phi", cl::Hidden, cl::init(false), cl::desc("Force hardware loop counter to be updated through a phi"))
This header defines various interfaces for pass management in LLVM.
This file defines an InstructionCost class that is used when calculating the cost of an instruction,...
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
uint64_t IntrinsicInst * II
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 TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
Value * RHS
Class for arbitrary precision integers.
Definition APInt.h:78
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
LLVM Basic Block Representation.
Definition BasicBlock.h:62
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 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
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:23
ImmutablePass class - This class is used to provide information that does not need to be run.
Definition Pass.h:285
ImmutablePass(char &pid)
Definition Pass.h:287
The core instruction combiner logic.
static InstructionCost getInvalid(CostType Val=0)
Class to represent integer types.
Drive the analysis of interleaved memory accesses in the loop.
const SmallVectorImpl< Type * > & getArgTypes() const
const SmallVectorImpl< const Value * > & getArgs() const
LLVM_ABI IntrinsicCostAttributes(Intrinsic::ID Id, const CallBase &CI, InstructionCost ScalarCost=InstructionCost::getInvalid(), bool TypeBasedOnly=false)
VectorInstrContext getVectorInstrContext() 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
An instruction for reading from memory.
LoopVectorizationLegality checks if it is legal to vectorize a loop, and to what vectorization factor...
Represents a single loop in the control flow graph.
Definition LoopInfo.h:40
Information for memory intrinsic cost model.
MemIntrinsicCostAttributes(Intrinsic::ID Id, Type *DataTy, const Value *Ptr, bool VariableMask, Align Alignment, const Instruction *I=nullptr, const Value *StrideVal=nullptr)
MemIntrinsicCostAttributes(Intrinsic::ID Id, Type *DataTy, bool VariableMask, Align Alignment, const Instruction *I=nullptr, const Value *StrideVal=nullptr)
MemIntrinsicCostAttributes(Intrinsic::ID Id, Type *DataTy, Align Alignment, unsigned AddressSpace=0, const Value *StrideVal=nullptr)
const Instruction * getInst() const
The optimization diagnostic interface.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
Analysis providing profile information.
The RecurrenceDescriptor is used to identify recurrences variables in a loop.
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...
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
An instruction for storing to memory.
Multiway switch.
Analysis pass providing the TargetTransformInfo.
TargetIRAnalysis(const TargetIRAnalysis &Arg)
TargetIRAnalysis & operator=(const TargetIRAnalysis &RHS)
LLVM_ABI Result run(const Function &F, FunctionAnalysisManager &)
LLVM_ABI TargetIRAnalysis()
Default construct a target IR analysis.
TargetIRAnalysis & operator=(TargetIRAnalysis &&RHS)
TargetIRAnalysis(TargetIRAnalysis &&Arg)
Provides information about what library functions are available for the current target.
Base class for use as a mix-in that aids implementing a TargetTransformInfo-compatible class.
TargetTransformInfoWrapperPass()
We must provide a default constructor for the pass but it should never be used.
TargetTransformInfo & getTTI(const Function &F)
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
LLVM_ABI bool getTgtMemIntrinsic(IntrinsicInst *Inst, MemIntrinsicInfo &Info) const
LLVM_ABI Value * getOrCreateResultFromMemIntrinsic(IntrinsicInst *Inst, Type *ExpectedType, bool CanCreate=true) const
LLVM_ABI bool isLegalToVectorizeLoad(LoadInst *LI) const
LLVM_ABI std::optional< unsigned > getVScaleForTuning() const
static LLVM_ABI CastContextHint getCastContextHint(const Instruction *I)
Calculates a CastContextHint from I.
LLVM_ABI unsigned getMaxNumArgs() const
LLVM_ABI bool addrspacesMayAlias(unsigned AS0, unsigned AS1) const
Return false if a AS0 address cannot possibly alias a AS1 address.
LLVM_ABI bool isLegalMaskedScatter(Type *DataType, Align Alignment) const
Return true if the target supports masked scatter.
LLVM_ABI bool shouldBuildLookupTables() const
Return true if switches should be turned into lookup tables for the target.
LLVM_ABI VectorInstrContext getBuildVectorContextHint(ArrayRef< int > Mask, ArrayRef< Value * > Scalars, function_ref< bool(SmallVectorImpl< BuildVectorUseOp > &)> GatherUseOps) const
Calculates a VectorInstrContext for buildvector-like gather sequences.
LLVM_ABI bool isLegalToVectorizeStore(StoreInst *SI) const
LLVM_ABI bool areTypesABICompatible(const Function *Caller, const Function *Callee, ArrayRef< Type * > Types) const
LLVM_ABI bool enableAggressiveInterleaving(bool LoopHasReductions) const
Don't restrict interleaved unrolling to small loops.
LLVM_ABI bool isMultiversionedFunction(const Function &F) const
Returns true if this is an instance of a function with multiple versions.
LLVM_ABI unsigned getMaxInterleaveFactor(ElementCount VF, bool HasUnorderedReductions) const
LLVM_ABI bool isFCmpOrdCheaperThanFCmpZero(Type *Ty) const
Return true if it is faster to check if a floating-point value is NaN (or not-NaN) versus a compariso...
LLVM_ABI bool isLegalMaskedStore(Type *DataType, Align Alignment, unsigned AddressSpace, MaskKind MaskKind=VariableOrConstantMask) const
Return true if the target supports masked store.
LLVM_ABI unsigned getMinimumLookupTableEntryBitWidth() const
Return the minimum bit width to use for integer switch lookup table elements on this target.
LLVM_ABI bool supportsEfficientVectorElementLoadStore() const
If target has efficient vector element load/store instructions, it can return true here so that inser...
LLVM_ABI unsigned getAssumedAddrSpace(const Value *V) const
LLVM_ABI bool preferAlternateOpcodeVectorization() const
LLVM_ABI bool shouldDropLSRSolutionIfLessProfitable() const
Return true if LSR should drop a found solution if it's calculated to be less profitable than the bas...
LLVM_ABI bool isLSRCostLess(const TargetTransformInfo::LSRCost &C1, const TargetTransformInfo::LSRCost &C2) const
Return true if LSR cost of C1 is lower than C2.
LLVM_ABI unsigned getPrefetchDistance() const
LLVM_ABI Type * getMemcpyLoopLoweringType(LLVMContext &Context, Value *Length, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicElementSize=std::nullopt) const
LLVM_ABI bool haveFastClmul(IntegerType *Ty) const
Return true if the hardware has a fast carry-less multiplication instruction.
LLVM_ABI bool isLegalMaskedExpandLoad(Type *DataType, Align Alignment) const
Return true if the target supports masked expand load.
LLVM_ABI bool prefersVectorizedAddressing() const
Return true if target doesn't mind addresses in vectors.
LLVM_ABI InstructionCost getCFInstrCost(unsigned Opcode, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const
LLVM_ABI bool hasBranchDivergence(const Function *F=nullptr) const
Return true if branch divergence exists.
LLVM_ABI bool preferEpilogueVectorization(ElementCount Iters) const
Return true if the loop vectorizer should consider vectorizing an otherwise scalar epilogue loop if t...
LLVM_ABI MemCmpExpansionOptions enableMemCmpExpansion(bool OptSize, bool IsZeroCmp) const
bool invalidate(Function &, const PreservedAnalyses &, FunctionAnalysisManager::Invalidator &)
Handle the invalidation of this information.
LLVM_ABI void getUnrollingPreferences(Loop *L, ScalarEvolution &, UnrollingPreferences &UP, OptimizationRemarkEmitter *ORE) const
Get target-customized preferences for the generic loop unrolling transformation.
LLVM_ABI bool shouldBuildLookupTablesForConstant(Constant *C) const
Return true if switches should be turned into lookup tables containing this constant value for the ta...
LLVM_ABI InstructionCost getGEPCost(Type *PointeeType, const Value *Ptr, ArrayRef< const Value * > Operands, TargetCostKind CostKind, Type *AccessType=nullptr) const
Estimate the cost of a GEP operation when lowered.
LLVM_ABI TailFoldingStyle getPreferredTailFoldingStyle() const
Query the target what the preferred style of tail folding is.
LLVM_ABI bool supportsTailCallFor(const CallBase *CB) const
If target supports tail call on CB.
LLVM_ABI std::optional< Instruction * > instCombineIntrinsic(InstCombiner &IC, IntrinsicInst &II) const
Targets can implement their own combinations for target-specific intrinsics.
LLVM_ABI bool isProfitableLSRChainElement(Instruction *I) const
LLVM_ABI TypeSize getRegisterBitWidth(RegisterKind K) const
MaskKind
Some targets only support masked load/store with a constant mask.
LLVM_ABI unsigned getInlineCallPenalty(const Function *F, const CallBase &Call, unsigned DefaultCallPenalty) const
Returns a penalty for invoking call Call in F.
LLVM_ABI InstructionCost getOperandsScalarizationOverhead(ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
Estimate the overhead of scalarizing operands with the given types.
LLVM_ABI bool hasActiveVectorLength() const
LLVM_ABI bool isExpensiveToSpeculativelyExecute(const Instruction *I) const
Return true if the cost of the instruction is too high to speculatively execute and should be kept be...
LLVM_ABI InstructionCost getMemoryOpCost(unsigned Opcode, Type *Src, Align Alignment, unsigned AddressSpace, TTI::TargetCostKind CostKind, OperandValueInfo OpdInfo={OK_AnyValue, OP_None}, const Instruction *I=nullptr) const
LLVM_ABI bool isLegalMaskedGather(Type *DataType, Align Alignment) const
Return true if the target supports masked gather.
LLVM_ABI ValueUniformity getValueUniformity(const Value *V) const
Get target-specific uniformity information for a value.
static LLVM_ABI OperandValueInfo commonOperandInfo(const Value *X, const Value *Y)
Collect common data between two OperandValueInfo inputs.
LLVM_ABI InstructionCost getReplicationShuffleCost(Type *EltTy, int ReplicationFactor, int VF, const APInt &DemandedDstElts, TTI::TargetCostKind CostKind) const
LLVM_ABI bool allowVectorElementIndexingUsingGEP() const
Returns true if GEP should not be used to index into vectors for this target.
LLVM_ABI bool preferTailFoldingOverEpilogue(TailFoldingInfo *TFI) const
Query the target whether it would be preferred to create a tail-folded vector loop,...
LLVM_ABI 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
Can be used to implement target-specific instruction combining.
LLVM_ABI bool enableOrderedReductions() const
Return true if we should be enabling ordered reductions for the target.
InstructionCost getInstructionCost(const User *U, TargetCostKind CostKind) const
This is a helper function which calls the three-argument getInstructionCost with Operands which are t...
LLVM_ABI unsigned getInliningCostBenefitAnalysisProfitableMultiplier() const
LLVM_ABI InstructionCost getIntrinsicInstrCost(const IntrinsicCostAttributes &ICA, TTI::TargetCostKind CostKind) const
LLVM_ABI unsigned getAtomicMemIntrinsicMaxElementSize() const
LLVM_ABI InstructionCost getVectorInstrCost(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index=-1, const Value *Op0=nullptr, const Value *Op1=nullptr, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
LLVM_ABI std::pair< KnownBits, KnownBits > computeKnownBitsAddrSpaceCast(unsigned ToAS, const Value &PtrOp) const
LLVM_ABI bool LSRWithInstrQueries() const
Return true if the loop strength reduce pass should make Instruction* based TTI queries to isLegalAdd...
LLVM_ABI unsigned getStoreVectorFactor(unsigned VF, unsigned StoreSize, unsigned ChainSizeInBytes, VectorType *VecTy) const
LLVM_ABI VPLegalization getVPLegalizationStrategy(const VPIntrinsic &PI) const
static LLVM_ABI PartialReductionExtendKind getPartialReductionExtendKind(Instruction *I)
Get the kind of extension that an instruction represents.
LLVM_ABI InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, CmpInst::Predicate VecPred, TTI::TargetCostKind CostKind, OperandValueInfo Op1Info={OK_AnyValue, OP_None}, OperandValueInfo Op2Info={OK_AnyValue, OP_None}, const Instruction *I=nullptr) const
LLVM_ABI bool shouldConsiderVectorizationRegPressure() const
LLVM_ABI bool enableWritePrefetching() const
LLVM_ABI bool shouldTreatInstructionLikeSelect(const Instruction *I) const
Should the Select Optimization pass treat the given instruction like a select, potentially converting...
LLVM_ABI bool isNoopAddrSpaceCast(unsigned FromAS, unsigned ToAS) const
LLVM_ABI bool shouldMaximizeVectorBandwidth(TargetTransformInfo::RegisterKind K) const
LLVM_ABI InstructionCost getShuffleCost(ShuffleKind Kind, VectorType *DstTy, VectorType *SrcTy, TTI::TargetCostKind CostKind, ArrayRef< int > Mask={}, int Index=0, VectorType *SubTp=nullptr, ArrayRef< const Value * > Args={}, const Instruction *CtxI=nullptr, TTI::VectorInstrContext VIC=TTI::VectorInstrContext::None) const
LLVM_ABI bool isLegalToVectorizeStoreChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const
LLVM_ABI bool isLegalInterleavedAccessType(VectorType *VTy, unsigned Factor, Align Alignment, unsigned AddrSpace) const
Return true is the target supports interleaved access for the given vector type VTy,...
LLVM_ABI unsigned getRegUsageForType(Type *Ty) const
Returns the estimated number of registers required to represent Ty.
LLVM_ABI bool isLegalBroadcastLoad(Type *ElementTy, ElementCount NumElements) const
\Returns true if the target supports broadcasting a load to a vector of type <NumElements x ElementTy...
LLVM_ABI bool isIndexedStoreLegal(enum MemIndexedMode Mode, Type *Ty) const
LLVM_ABI std::pair< const Value *, unsigned > getPredicatedAddrSpace(const Value *V) const
static LLVM_ABI TargetTransformInfo::VectorInstrContext combineVectorInstrContexts(TargetTransformInfo::VectorInstrContext Ctx1, TargetTransformInfo::VectorInstrContext Ctx2)
Combines 2 context hints into a single value.
LLVM_ABI unsigned getLoadStoreVecRegBitWidth(unsigned AddrSpace) const
LLVM_ABI InstructionCost getRegisterClassReloadCost(unsigned ClassID, TargetCostKind CostKind) const
LLVM_ABI ReductionShuffle getPreferredExpandedReductionShuffle(const IntrinsicInst *II) const
static LLVM_ABI OperandValueInfo getOperandInfo(const Value *V)
Collect properties of V used in cost analysis, e.g. OP_PowerOf2.
LLVM_ABI 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
LLVM_ABI InstructionCost getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, TTI::CastContextHint CCH, TTI::TargetCostKind CostKind, const Instruction *I=nullptr) const
LLVM_ABI unsigned getAddressSpaceJoin(unsigned AS1, unsigned AS2) const
Return the most specific common address space containing AS1 and AS2.
LLVM_ABI unsigned getRegisterClassForType(bool Vector, Type *Ty=nullptr) const
LLVM_ABI bool isLegalAddressingMode(Type *Ty, GlobalValue *BaseGV, int64_t BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace=0, Instruction *I=nullptr, int64_t ScalableOffset=0) const
Return true if the addressing mode represented by AM is legal for this target, for a load/store of th...
LLVM_ABI PopcntSupportKind getPopcntSupport(unsigned IntTyWidthInBit) const
Return hardware support for population count.
LLVM_ABI unsigned getEstimatedNumberOfCaseClusters(const SwitchInst &SI, unsigned &JTSize, ProfileSummaryInfo *PSI, BlockFrequencyInfo *BFI) const
LLVM_ABI bool isElementTypeLegalForScalableVector(Type *Ty) const
LLVM_ABI bool forceScalarizeMaskedGather(VectorType *Type, Align Alignment) const
Return true if the target forces scalarizing of llvm.masked.gather intrinsics.
LLVM_ABI InstructionCost getArithmeticReductionCost(unsigned Opcode, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const
Calculate the cost of vector reduction intrinsics.
LLVM_ABI unsigned getMaxPrefetchIterationsAhead() const
LLVM_ABI bool canHaveNonUndefGlobalInitializerInAddressSpace(unsigned AS) const
Return true if globals in this address space can have initializers other than undef.
LLVM_ABI ElementCount getMinimumVF(unsigned ElemWidth, bool IsScalable) const
LLVM_ABI InstructionCost getIntImmCostIntrin(Intrinsic::ID IID, unsigned Idx, const APInt &Imm, Type *Ty, TargetCostKind CostKind) const
LLVM_ABI bool enableMaskedInterleavedAccessVectorization() const
Enable matching of interleaved access groups that contain predicated accesses or gaps and therefore v...
LLVM_ABI InstructionCost getIntImmCostInst(unsigned Opc, unsigned Idx, const APInt &Imm, Type *Ty, TargetCostKind CostKind, Instruction *Inst=nullptr) const
Return the expected cost of materialization for the given integer immediate of the specified type for...
LLVM_ABI bool isLegalStridedLoadStore(Type *DataType, Align Alignment) const
Return true if the target supports strided load.
LLVM_ABI TargetTransformInfo & operator=(TargetTransformInfo &&RHS)
LLVM_ABI InstructionCost getExtendedReductionCost(unsigned Opcode, bool IsUnsigned, Type *ResTy, VectorType *Ty, std::optional< FastMathFlags > FMF, TTI::TargetCostKind CostKind) const
Calculate the cost of an extended reduction pattern, similar to getArithmeticReductionCost of a reduc...
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.
LLVM_ABI bool enableSelectOptimize() const
Should the Select Optimization pass be enabled and ran.
LLVM_ABI bool collectFlatAddressOperands(SmallVectorImpl< int > &OpIndexes, Intrinsic::ID IID) const
Return any intrinsic address operand indexes which may be rewritten if they use a flat address space ...
OperandValueProperties
Additional properties of an operand's values.
LLVM_ABI int getInliningLastCallToStaticBonus() const
LLVM_ABI bool isIndexedLoadLegal(enum MemIndexedMode Mode, Type *Ty) const
LLVM_ABI InstructionCost getCallInstrCost(Function *F, Type *RetTy, ArrayRef< Type * > Tys, TTI::TargetCostKind CostKind) const
LLVM_ABI unsigned getMaximumVF(unsigned ElemWidth, unsigned Opcode) const
LLVM_ABI unsigned getStoreMinimumVF(unsigned VF, Type *ScalarMemTy, Type *ScalarValTy, Align Alignment, unsigned AddrSpace) const
LLVM_ABI bool isLegalICmpImmediate(int64_t Imm) const
Return true if the specified immediate is legal icmp immediate, that is the target has icmp instructi...
LLVM_ABI bool isTypeLegal(Type *Ty) const
Return true if this type is legal.
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...
LLVM_ABI bool isLegalToVectorizeReduction(const RecurrenceDescriptor &RdxDesc, ElementCount VF) const
LLVM_ABI std::optional< unsigned > getCacheAssociativity(CacheLevel Level) const
LLVM_ABI bool isLegalNTLoad(Type *DataType, Align Alignment) const
Return true if the target supports nontemporal load.
LLVM_ABI bool isUniform(const Instruction *I, const SmallBitVector &UniformArgs) const
Determine if an instruction with Custom uniformity can be proven uniform based on which operands are ...
LLVM_ABI InstructionCost getMemcpyCost(const Instruction *I) const
LLVM_ABI unsigned adjustInliningThreshold(const CallBase *CB) const
LLVM_ABI bool isLegalAddImmediate(int64_t Imm) const
Return true if the specified immediate is legal add immediate, that is the target has add instruction...
LLVM_ABI bool isTargetIntrinsicWithStructReturnOverloadAtField(Intrinsic::ID ID, int RetIdx) const
Identifies if the vector form of the intrinsic that returns a struct is overloaded at the struct elem...
LLVM_ABI unsigned getLoadVectorFactor(unsigned VF, unsigned LoadSize, unsigned ChainSizeInBytes, VectorType *VecTy) const
LLVM_ABI InstructionCost getMemIntrinsicInstrCost(const MemIntrinsicCostAttributes &MICA, TTI::TargetCostKind CostKind) const
LLVM_ABI InstructionCost getMinMaxReductionCost(Intrinsic::ID IID, VectorType *Ty, FastMathFlags FMF, TTI::TargetCostKind CostKind) const
LLVM_ABI InstructionCost getAltInstrCost(VectorType *VecTy, unsigned Opcode0, unsigned Opcode1, const SmallBitVector &OpcodeMask, TTI::TargetCostKind CostKind) const
Returns the cost estimation for alternating opcode pattern that can be lowered to a single instructio...
LLVM_ABI Value * rewriteIntrinsicWithAddressSpace(IntrinsicInst *II, Value *OldV, Value *NewV) const
Rewrite intrinsic call II such that OldV will be replaced with NewV, which has a different address sp...
LLVM_ABI InstructionCost getCostOfKeepingLiveOverCall(ArrayRef< Type * > Tys) const
LLVM_ABI bool canSaveCmp(Loop *L, CondBrInst **BI, ScalarEvolution *SE, LoopInfo *LI, DominatorTree *DT, AssumptionCache *AC, TargetLibraryInfo *LibInfo) const
Return true if the target can save a compare for loop count, for example hardware loop saves a compar...
LLVM_ABI unsigned getMinPrefetchStride(unsigned NumMemAccesses, unsigned NumStridedMemAccesses, unsigned NumPrefetches, bool HasCall) const
Some HW prefetchers can handle accesses up to a certain constant stride.
LLVM_ABI bool shouldPrefetchAddressSpace(unsigned AS) const
LLVM_ABI InstructionCost getIntImmCost(const APInt &Imm, Type *Ty, TargetCostKind CostKind) const
Return the expected cost of materializing for the given integer immediate of the specified type.
LLVM_ABI unsigned getMinVectorRegisterBitWidth() const
LLVM_ABI InstructionCost getAddressComputationCost(Type *PtrTy, ScalarEvolution *SE, const SCEV *Ptr, TTI::TargetCostKind CostKind) const
LLVM_ABI bool isLegalNTStore(Type *DataType, Align Alignment) const
Return true if the target supports nontemporal store.
LLVM_ABI unsigned getFlatAddressSpace() const
Returns the address space ID for a target's 'flat' address space.
LLVM_ABI bool preferToKeepConstantsAttached(const Instruction &Inst, const Function &Fn) const
It can be advantageous to detach complex constants from their uses to make their generation cheaper.
LLVM_ABI bool hasArmWideBranch(bool Thumb) const
LLVM_ABI const char * getRegisterClassName(unsigned ClassID) const
LLVM_ABI bool shouldConsiderAddressTypePromotion(const Instruction &I, bool &AllowPromotionWithoutCommonHeader) const
LLVM_ABI APInt getPriorityMask(const Function &F) const
Returns a bitmask constructed from the target-features or fmv-features metadata of a function corresp...
LLVM_ABI BranchProbability getPredictableBranchThreshold() const
If a branch or a select condition is skewed in one direction by more than this factor,...
LLVM_ABI TargetTransformInfo(std::unique_ptr< const TargetTransformInfoImplBase > Impl)
Construct a TTI object using a type implementing the Concept API below.
LLVM_ABI bool preferInLoopReduction(RecurKind Kind, Type *Ty) const
LLVM_ABI unsigned getCallerAllocaCost(const CallBase *CB, const AllocaInst *AI) const
LLVM_ABI bool hasConditionalLoadStoreForType(Type *Ty, bool IsStore) const
LLVM_ABI InstructionCost getMulAccReductionCost(bool IsUnsigned, unsigned RedOpcode, Type *ResTy, VectorType *Ty, TTI::TargetCostKind CostKind) const
Calculate the cost of an extended reduction pattern, similar to getArithmeticReductionCost of an Add/...
LLVM_ABI unsigned getCacheLineSize() const
LLVM_ABI bool allowsMisalignedMemoryAccesses(LLVMContext &Context, unsigned BitWidth, unsigned AddressSpace=0, Align Alignment=Align(1), unsigned *Fast=nullptr) const
Determine if the target supports unaligned memory accesses.
LLVM_ABI bool shouldCopyAttributeWhenOutliningFrom(const Function *Caller, const Attribute &Attr) const
LLVM_ABI APInt getAddrSpaceCastPreservedPtrMask(unsigned SrcAS, unsigned DstAS) const
Returns a mask indicating which bits of a pointer remain unchanged when casting between address space...
LLVM_ABI int getInlinerVectorBonusPercent() const
LLVM_ABI unsigned getEpilogueVectorizationMinVF() const
LLVM_ABI void collectKernelLaunchBounds(const Function &F, SmallVectorImpl< std::pair< StringRef, int64_t > > &LB) const
Collect kernel launch bounds for F into LB.
PopcntSupportKind
Flags indicating the kind of support for population count.
LLVM_ABI bool preferPredicatedReductionSelect() const
LLVM_ABI InstructionCost getIntImmCodeSizeCost(unsigned Opc, unsigned Idx, const APInt &Imm, Type *Ty) const
Return the expected cost for the given integer when optimising for size.
LLVM_ABI AddressingModeKind getPreferredAddressingMode(const Loop *L, ScalarEvolution *SE) const
Return the preferred addressing mode LSR should make efforts to generate.
LLVM_ABI bool isLoweredToCall(const Function *F) const
Test whether calls to a function lower to actual program function calls.
llvm::VectorInstrContext VectorInstrContext
LLVM_ABI bool isLegalToVectorizeLoadChain(unsigned ChainSizeInBytes, Align Alignment, unsigned AddrSpace) const
LLVM_ABI bool isHardwareLoopProfitable(Loop *L, ScalarEvolution &SE, AssumptionCache &AC, TargetLibraryInfo *LibInfo, HardwareLoopInfo &HWLoopInfo) const
Query the target whether it would be profitable to convert the given loop into a hardware loop.
LLVM_ABI unsigned getInliningThresholdMultiplier() const
LLVM_ABI InstructionCost getBranchMispredictPenalty() const
Returns estimated penalty of a branch misprediction in latency.
LLVM_ABI unsigned getNumberOfRegisters(unsigned ClassID) const
LLVM_ABI bool isLegalAltInstr(VectorType *VecTy, unsigned Opcode0, unsigned Opcode1, const SmallBitVector &OpcodeMask) const
Return true if this is an alternating opcode pattern that can be lowered to a single instruction on t...
LLVM_ABI bool isProfitableToHoist(Instruction *I) const
Return true if it is profitable to hoist instruction in the then/else to before if.
LLVM_ABI bool supportsScalableVectors() const
LLVM_ABI bool hasVolatileVariant(Instruction *I, unsigned AddrSpace) const
Return true if the given instruction (assumed to be a memory access instruction) has a volatile varia...
LLVM_ABI bool isLegalMaskedCompressStore(Type *DataType, Align Alignment) const
Return true if the target supports masked compress store.
LLVM_ABI std::optional< unsigned > getMinPageSize() const
LLVM_ABI bool preferSLPInstCountCheck() const
LLVM_ABI bool isFPVectorizationPotentiallyUnsafe() const
Indicate that it is potentially unsafe to automatically vectorize floating-point operations because t...
LLVM_ABI InstructionCost getInsertExtractValueCost(unsigned Opcode, TTI::TargetCostKind CostKind) const
LLVM_ABI bool shouldBuildRelLookupTables() const
Return true if lookup tables should be turned into relative lookup tables.
LLVM_ABI std::optional< unsigned > getCacheSize(CacheLevel Level) const
LLVM_ABI std::optional< Value * > simplifyDemandedUseBitsIntrinsic(InstCombiner &IC, IntrinsicInst &II, APInt DemandedMask, KnownBits &Known, bool &KnownBitsComputed) const
Can be used to implement target-specific instruction combining.
LLVM_ABI 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 *CtxI=nullptr, const TargetLibraryInfo *TLibInfo=nullptr) const
This is an approximation of reciprocal throughput of a math/logic op.
LLVM_ABI bool isLegalAddScalableImmediate(int64_t Imm) const
Return true if adding the specified scalable immediate is legal, that is the target has add instructi...
LLVM_ABI bool isTargetIntrinsicWithScalarOpAtArg(Intrinsic::ID ID, unsigned ScalarOpdIdx) const
Identifies if the vector form of the intrinsic has a scalar operand.
LLVM_ABI bool hasDivRemOp(Type *DataType, bool IsSigned) const
Return true if the target has a unified operation to calculate division and remainder.
TargetCostConstants
Underlying constants for 'cost' values in this interface.
@ 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.
LLVM_ABI bool enableInterleavedAccessVectorization() const
Enable matching of interleaved access groups.
LLVM_ABI unsigned getMinTripCountTailFoldingThreshold() const
LLVM_ABI InstructionCost getPartialReductionCost(unsigned Opcode, Type *InputTypeA, Type *InputTypeB, Type *AccumType, ElementCount VF, PartialReductionExtendKind OpAExtend, PartialReductionExtendKind OpBExtend, std::optional< unsigned > BinOp, TTI::TargetCostKind CostKind, std::optional< FastMathFlags > FMF) const
LLVM_ABI InstructionCost getInstructionCost(const User *U, ArrayRef< const Value * > Operands, TargetCostKind CostKind) const
Estimate the cost of a given IR user when lowered.
LLVM_ABI bool enableScalableVectorization() const
LLVM_ABI bool useFastCCForInternalCall(Function &F) const
Return true if the input function is internal, should use fastcc calling convention.
LLVM_ABI bool isVectorShiftByScalarCheap(Type *Ty) const
Return true if it's significantly cheaper to shift a vector by a uniform scalar than by an amount whi...
LLVM_ABI bool isNumRegsMajorCostOfLSR() const
Return true if LSR major cost is number of registers.
LLVM_ABI unsigned getInliningCostBenefitAnalysisSavingsMultiplier() const
LLVM_ABI bool isLegalMaskedVectorHistogram(Type *AddrType, Type *DataType) const
LLVM_ABI unsigned getGISelRematGlobalCost() const
LLVM_ABI unsigned getNumBytesToPadGlobalArray(unsigned Size, Type *ArrayType) const
static LLVM_ABI Instruction::CastOps getOpcodeForPartialReductionExtendKind(PartialReductionExtendKind Kind)
Get the cast opcode for an extension kind.
MemIndexedMode
The type of load/store indexing.
LLVM_ABI bool isLegalMaskedLoad(Type *DataType, Align Alignment, unsigned AddressSpace, MaskKind MaskKind=VariableOrConstantMask) const
Return true if the target supports masked load.
LLVM_ABI InstructionCost getIndexedVectorInstrCostFromEnd(unsigned Opcode, Type *Val, TTI::TargetCostKind CostKind, unsigned Index) const
LLVM_ABI bool areInlineCompatible(const Function *Caller, const Function *Callee) const
LLVM_ABI bool useColdCCForColdCall(Function &F) const
Return true if the input function which is cold at all call sites, should use coldcc calling conventi...
LLVM_ABI InstructionCost getFPOpCost(Type *Ty) const
Return the expected cost of supporting the floating point operation of the specified type.
LLVM_ABI bool supportsTailCalls() const
If the target supports tail calls.
LLVM_ABI bool canMacroFuseCmp() const
Return true if the target can fuse a compare and branch.
LLVM_ABI bool isValidAddrSpaceCast(unsigned FromAS, unsigned ToAS) const
Query the target whether the specified address space cast from FromAS to ToAS is valid.
LLVM_ABI unsigned getNumberOfParts(Type *Tp) const
AddressingModeKind
Which addressing mode Loop Strength Reduction will try to generate.
@ AMK_PostIndexed
Prefer post-indexed addressing mode.
@ AMK_All
Consider all addressing modes.
@ AMK_PreIndexed
Prefer pre-indexed addressing mode.
@ AMK_None
Don't prefer any addressing mode.
LLVM_ABI InstructionCost getScalingFactorCost(Type *Ty, GlobalValue *BaseGV, StackOffset BaseOffset, bool HasBaseReg, int64_t Scale, unsigned AddrSpace=0) const
Return the cost of the scaling factor used in the addressing mode represented by AM for this target,...
LLVM_ABI bool isTruncateFree(Type *Ty1, Type *Ty2) const
Return true if it's free to truncate a value of type Ty1 to type Ty2.
LLVM_ABI bool isProfitableToSinkOperands(Instruction *I, SmallVectorImpl< Use * > &Ops) const
Return true if sinking I's operands to the same basic block as I is profitable, e....
LLVM_ABI void getMemcpyLoopResidualLoweringType(SmallVectorImpl< Type * > &OpsOut, LLVMContext &Context, unsigned RemainingBytes, unsigned SrcAddrSpace, unsigned DestAddrSpace, Align SrcAlign, Align DestAlign, std::optional< uint32_t > AtomicCpySize=std::nullopt) const
LLVM_ABI bool forceScalarizeMaskedScatter(VectorType *Type, Align Alignment) const
Return true if the target forces scalarizing of llvm.masked.scatter intrinsics.
LLVM_ABI bool isTargetIntrinsicWithOverloadTypeAtArg(Intrinsic::ID ID, int OpdIdx) const
Identifies if the vector form of the intrinsic is overloaded on the type of the operand at index OpdI...
static LLVM_ABI VectorInstrContext getVectorInstrContextHint(const Instruction *I)
Calculates a VectorInstrContext from I.
LLVM_ABI InstructionCost getPointersChainCost(ArrayRef< const Value * > Ptrs, const Value *Base, const PointersChainInfo &Info, Type *AccessTy, const TargetCostKind CostKind) const
Estimate the cost of a chain of pointers (typically pointer operands of a chain of loads or stores wi...
LLVM_ABI bool haveFastSqrt(Type *Ty) const
Return true if the hardware has a fast square-root instruction.
LLVM_ABI bool shouldExpandReduction(const IntrinsicInst *II) const
LLVM_ABI 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
Estimate the overhead of scalarizing an instruction.
LLVM_ABI uint64_t getMaxMemIntrinsicInlineSizeThreshold() const
Returns the maximum memset / memcpy size in bytes that still makes it profitable to inline the call.
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.
LLVM_ABI APInt getFeatureMask(const Function &F) const
Returns a bitmask constructed from the target-features or fmv-features metadata of a function corresp...
LLVM_ABI void getPeelingPreferences(Loop *L, ScalarEvolution &SE, PeelingPreferences &PP) const
Get target-customized preferences for the generic loop peeling transformation.
CastContextHint
Represents a hint about the context in which a cast is used.
@ Reversed
The cast is used with a reversed load/store.
@ Masked
The cast is used with a masked load/store.
@ None
The cast is not used with a load/store of any kind.
@ Normal
The cast is used with a normal load/store.
@ Interleave
The cast is used with an interleaved load/store.
@ GatherScatter
The cast is used with a gather/scatter.
LLVM_ABI InstructionCost getExtractWithExtendCost(unsigned Opcode, Type *Dst, VectorType *VecTy, unsigned Index, TTI::TargetCostKind CostKind) const
LLVM_ABI InstructionCost getRegisterClassSpillCost(unsigned ClassID, TargetCostKind CostKind) const
OperandValueKind
Additional information about an operand's possible values.
CacheLevel
The possible cache levels.
LLVM_ABI bool preferFixedOverScalableIfEqualCost() const
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
This is the common base class for vector predication intrinsics.
LLVM Value Representation.
Definition Value.h:75
Base class of all SIMD vector types.
An efficient, type-erasing, non-owning reference to a callable.
CallInst * Call
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
This namespace contains an enum with a value for every intrinsic/builtin function known by LLVM.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition BasicBlock.h:73
This is an optimization pass for GlobalISel generic memory operations.
@ Length
Definition DWP.cpp:577
@ Known
Known to have no common set bits.
VectorInstrContext
Represents a hint about the context in which a vector instruction or intrinsic is used.
@ None
The instruction is not folded.
@ BinaryOp
One of the operands is a binary op.
@ SplatOpFolded
All of the value's users support splatting the value.
@ Load
The value being inserted comes from a load (InsertElement only).
@ Store
The extracted value is stored (ExtractElement only).
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
Definition InstrProf.h:143
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
AtomicOrdering
Atomic ordering for LLVM's memory model.
TargetTransformInfo TTI
LLVM_ABI ImmutablePass * createTargetTransformInfoWrapperPass(TargetIRAnalysis TIRA)
Create an analysis pass wrapper around a TTI object.
RecurKind
These are the kinds of recurrences that we support.
@ Fast
Assign the register banks as fast as possible (default).
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition STLExtras.h:1933
@ DataWithEVL
Use predicated EVL instructions for tail-folding.
@ DataAndControlFlow
Use predicate to control both data and control flow.
@ DataWithoutLaneMask
Same as Data, but avoids using the get.active.lane.mask intrinsic to calculate the mask and instead i...
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
ValueUniformity
Enum describing how values behave with respect to uniformity and divergence, to answer the question: ...
Definition Uniformity.h:18
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:878
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29
Attributes of a target dependent hardware loop.
LLVM_ABI bool canAnalyze(LoopInfo &LI)
LLVM_ABI bool isHardwareLoopCandidate(ScalarEvolution &SE, LoopInfo &LI, DominatorTree &DT, bool ForceNestedLoop=false, bool ForceHardwareLoopPHI=false)
Information about a load/store intrinsic defined by the target.
SmallVector< InterestingMemoryOperand, 1 > InterestingOperands
Value * PtrVal
This is the pointer that the intrinsic is loading from or storing to.
InterleavedAccessInfo * IAI
TailFoldingInfo(TargetLibraryInfo *TLI, LoopVectorizationLegality *LVL, InterleavedAccessInfo *IAI)
TargetLibraryInfo * TLI
LoopVectorizationLegality * LVL
BuildVectorUseOp(unsigned Opcode, int OperandIndex)
unsigned Insns
TODO: Some of these could be merged.
Returns options for expansion of memcmp. IsZeroCmp is.
OperandValueInfo mergeWith(const OperandValueInfo OpInfoY)
bool AllowPeeling
Allow peeling off loop iterations.
bool AllowLoopNestsPeeling
Allow peeling off loop iterations for loop nests.
bool PeelLast
Peel off the last PeelCount loop iterations.
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...
Describe known properties for a set of pointers.
unsigned IsKnownStride
True if distance between any two neigbouring pointers is a known value.
unsigned IsUnitStride
These properties only valid if SameBaseAddress is set.
unsigned IsSameBaseAddress
All the GEPs in a set have same base address.
Parameters that control the generic loop unrolling transformation.
bool UpperBound
Allow using trip count upper bound to unroll loops.
unsigned Threshold
The cost threshold for the unrolled loop.
bool Force
Apply loop unroll on any kind of loop (mainly to loops that fail runtime unrolling).
unsigned PartialOptSizeThreshold
The cost threshold for the unrolled loop when optimizing for size, like OptSizeThreshold,...
bool UnrollVectorizedLoop
Disable runtime unrolling by default for vectorized loops.
unsigned DefaultUnrollRuntimeCount
Default unroll count for loops with run-time trip count.
unsigned MaxPercentThresholdBoost
If complete unrolling will reduce the cost of the loop, we will boost the Threshold by a certain perc...
bool RuntimeUnrollMultiExit
Allow runtime unrolling multi-exit loops.
unsigned SCEVExpansionBudget
Don't allow runtime unrolling if expanding the trip count takes more than SCEVExpansionBudget.
bool AddAdditionalAccumulators
Allow unrolling to add parallel reduction phis.
unsigned UnrollAndJamInnerLoopThreshold
Threshold for unroll and jam, for inner loop size.
unsigned MaxIterationsCountToAnalyze
Don't allow loop unrolling to simulate more than this number of iterations when checking full unroll ...
bool AllowRemainder
Allow generation of a loop remainder (extra iterations after unroll).
bool UnrollAndJam
Allow unroll and jam. Used to enable unroll and jam for the target.
bool UnrollRemainder
Allow unrolling of all the iterations of the runtime loop remainder.
unsigned FullUnrollMaxCount
Set the maximum unrolling factor for full unrolling.
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).
bool AllowExpensiveTripCount
Allow emitting expensive instructions (such as divisions) when computing the trip count of a loop for...
unsigned MaxUpperBound
Set the maximum upper bound of trip count.
VPLegalization(VPTransform EVLParamStrategy, VPTransform OpStrategy)