[Alignment][NFC] Convert StoreInst to MaybeAlign
[llvm-core.git] / lib / Target / X86 / X86TargetTransformInfo.h
blob7581257f41f8cbc9641ce51a403126a1ff2e4789
1 //===-- X86TargetTransformInfo.h - X86 specific TTI -------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 /// This file a TargetTransformInfo::Concept conforming object specific to the
10 /// X86 target machine. It uses the target's detailed information to
11 /// provide more precise answers to certain TTI queries, while letting the
12 /// target independent and default TTI implementations handle the rest.
13 ///
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_LIB_TARGET_X86_X86TARGETTRANSFORMINFO_H
17 #define LLVM_LIB_TARGET_X86_X86TARGETTRANSFORMINFO_H
19 #include "X86.h"
20 #include "X86TargetMachine.h"
21 #include "llvm/Analysis/TargetTransformInfo.h"
22 #include "llvm/CodeGen/BasicTTIImpl.h"
23 #include "llvm/CodeGen/TargetLowering.h"
25 namespace llvm {
27 class X86TTIImpl : public BasicTTIImplBase<X86TTIImpl> {
28 typedef BasicTTIImplBase<X86TTIImpl> BaseT;
29 typedef TargetTransformInfo TTI;
30 friend BaseT;
32 const X86Subtarget *ST;
33 const X86TargetLowering *TLI;
35 const X86Subtarget *getST() const { return ST; }
36 const X86TargetLowering *getTLI() const { return TLI; }
38 const FeatureBitset InlineFeatureIgnoreList = {
39 // This indicates the CPU is 64 bit capable not that we are in 64-bit
40 // mode.
41 X86::Feature64Bit,
43 // These features don't have any intrinsics or ABI effect.
44 X86::FeatureNOPL,
45 X86::FeatureCMPXCHG16B,
46 X86::FeatureLAHFSAHF,
48 // Codegen control options.
49 X86::FeatureFast11ByteNOP,
50 X86::FeatureFast15ByteNOP,
51 X86::FeatureFastBEXTR,
52 X86::FeatureFastHorizontalOps,
53 X86::FeatureFastLZCNT,
54 X86::FeatureFastPartialYMMorZMMWrite,
55 X86::FeatureFastScalarFSQRT,
56 X86::FeatureFastSHLDRotate,
57 X86::FeatureFastScalarShiftMasks,
58 X86::FeatureFastVectorShiftMasks,
59 X86::FeatureFastVariableShuffle,
60 X86::FeatureFastVectorFSQRT,
61 X86::FeatureLEAForSP,
62 X86::FeatureLEAUsesAG,
63 X86::FeatureLZCNTFalseDeps,
64 X86::FeatureBranchFusion,
65 X86::FeatureMacroFusion,
66 X86::FeatureMergeToThreeWayBranch,
67 X86::FeaturePadShortFunctions,
68 X86::FeaturePOPCNTFalseDeps,
69 X86::FeatureSSEUnalignedMem,
70 X86::FeatureSlow3OpsLEA,
71 X86::FeatureSlowDivide32,
72 X86::FeatureSlowDivide64,
73 X86::FeatureSlowIncDec,
74 X86::FeatureSlowLEA,
75 X86::FeatureSlowPMADDWD,
76 X86::FeatureSlowPMULLD,
77 X86::FeatureSlowSHLD,
78 X86::FeatureSlowTwoMemOps,
79 X86::FeatureSlowUAMem16,
81 // Perf-tuning flags.
82 X86::FeatureHasFastGather,
83 X86::FeatureSlowUAMem32,
85 // Based on whether user set the -mprefer-vector-width command line.
86 X86::FeaturePrefer128Bit,
87 X86::FeaturePrefer256Bit,
89 // CPU name enums. These just follow CPU string.
90 X86::ProcIntelAtom,
91 X86::ProcIntelGLM,
92 X86::ProcIntelGLP,
93 X86::ProcIntelSLM,
94 X86::ProcIntelTRM,
97 public:
98 explicit X86TTIImpl(const X86TargetMachine *TM, const Function &F)
99 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
100 TLI(ST->getTargetLowering()) {}
102 /// \name Scalar TTI Implementations
103 /// @{
104 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
106 /// @}
108 /// \name Cache TTI Implementation
109 /// @{
110 llvm::Optional<unsigned> getCacheSize(
111 TargetTransformInfo::CacheLevel Level) const;
112 llvm::Optional<unsigned> getCacheAssociativity(
113 TargetTransformInfo::CacheLevel Level) const;
114 /// @}
116 /// \name Vector TTI Implementations
117 /// @{
119 unsigned getNumberOfRegisters(unsigned ClassID) const;
120 unsigned getRegisterBitWidth(bool Vector) const;
121 unsigned getLoadStoreVecRegBitWidth(unsigned AS) const;
122 unsigned getMaxInterleaveFactor(unsigned VF);
123 int getArithmeticInstrCost(
124 unsigned Opcode, Type *Ty,
125 TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue,
126 TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue,
127 TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None,
128 TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None,
129 ArrayRef<const Value *> Args = ArrayRef<const Value *>());
130 int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
131 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
132 const Instruction *I = nullptr);
133 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
134 const Instruction *I = nullptr);
135 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
136 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
137 unsigned AddressSpace, const Instruction *I = nullptr);
138 int getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
139 unsigned AddressSpace);
140 int getGatherScatterOpCost(unsigned Opcode, Type *DataTy, Value *Ptr,
141 bool VariableMask, unsigned Alignment);
142 int getAddressComputationCost(Type *PtrTy, ScalarEvolution *SE,
143 const SCEV *Ptr);
145 unsigned getAtomicMemIntrinsicMaxElementSize() const;
147 int getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy,
148 ArrayRef<Type *> Tys, FastMathFlags FMF,
149 unsigned ScalarizationCostPassed = UINT_MAX);
150 int getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy,
151 ArrayRef<Value *> Args, FastMathFlags FMF,
152 unsigned VF = 1);
154 int getArithmeticReductionCost(unsigned Opcode, Type *Ty,
155 bool IsPairwiseForm);
157 int getMinMaxReductionCost(Type *Ty, Type *CondTy, bool IsPairwiseForm,
158 bool IsUnsigned);
160 int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
161 unsigned Factor, ArrayRef<unsigned> Indices,
162 unsigned Alignment, unsigned AddressSpace,
163 bool UseMaskForCond = false,
164 bool UseMaskForGaps = false);
165 int getInterleavedMemoryOpCostAVX512(unsigned Opcode, Type *VecTy,
166 unsigned Factor, ArrayRef<unsigned> Indices,
167 unsigned Alignment, unsigned AddressSpace,
168 bool UseMaskForCond = false,
169 bool UseMaskForGaps = false);
170 int getInterleavedMemoryOpCostAVX2(unsigned Opcode, Type *VecTy,
171 unsigned Factor, ArrayRef<unsigned> Indices,
172 unsigned Alignment, unsigned AddressSpace,
173 bool UseMaskForCond = false,
174 bool UseMaskForGaps = false);
176 int getIntImmCost(int64_t);
178 int getIntImmCost(const APInt &Imm, Type *Ty);
180 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
182 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
183 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
184 Type *Ty);
185 bool isLSRCostLess(TargetTransformInfo::LSRCost &C1,
186 TargetTransformInfo::LSRCost &C2);
187 bool canMacroFuseCmp();
188 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment);
189 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment);
190 bool isLegalNTLoad(Type *DataType, Align Alignment);
191 bool isLegalNTStore(Type *DataType, Align Alignment);
192 bool isLegalMaskedGather(Type *DataType);
193 bool isLegalMaskedScatter(Type *DataType);
194 bool isLegalMaskedExpandLoad(Type *DataType);
195 bool isLegalMaskedCompressStore(Type *DataType);
196 bool hasDivRemOp(Type *DataType, bool IsSigned);
197 bool isFCmpOrdCheaperThanFCmpZero(Type *Ty);
198 bool areInlineCompatible(const Function *Caller,
199 const Function *Callee) const;
200 bool areFunctionArgsABICompatible(const Function *Caller,
201 const Function *Callee,
202 SmallPtrSetImpl<Argument *> &Args) const;
203 TTI::MemCmpExpansionOptions enableMemCmpExpansion(bool OptSize,
204 bool IsZeroCmp) const;
205 bool enableInterleavedAccessVectorization();
206 private:
207 int getGSScalarCost(unsigned Opcode, Type *DataTy, bool VariableMask,
208 unsigned Alignment, unsigned AddressSpace);
209 int getGSVectorCost(unsigned Opcode, Type *DataTy, Value *Ptr,
210 unsigned Alignment, unsigned AddressSpace);
212 /// @}
215 } // end namespace llvm
217 #endif