]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/X86/X86TargetTransformInfo.h
Merge ^/head r311314 through r311459.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / X86 / X86TargetTransformInfo.h
1 //===-- X86TargetTransformInfo.h - X86 specific TTI -------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 /// \file
10 /// This file a TargetTransformInfo::Concept conforming object specific to the
11 /// X86 target machine. It uses the target's detailed information to
12 /// provide more precise answers to certain TTI queries, while letting the
13 /// target independent and default TTI implementations handle the rest.
14 ///
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_LIB_TARGET_X86_X86TARGETTRANSFORMINFO_H
18 #define LLVM_LIB_TARGET_X86_X86TARGETTRANSFORMINFO_H
19
20 #include "X86.h"
21 #include "X86TargetMachine.h"
22 #include "llvm/Analysis/TargetTransformInfo.h"
23 #include "llvm/CodeGen/BasicTTIImpl.h"
24 #include "llvm/Target/TargetLowering.h"
25
26 namespace llvm {
27
28 class X86TTIImpl : public BasicTTIImplBase<X86TTIImpl> {
29   typedef BasicTTIImplBase<X86TTIImpl> BaseT;
30   typedef TargetTransformInfo TTI;
31   friend BaseT;
32
33   const X86Subtarget *ST;
34   const X86TargetLowering *TLI;
35
36   int getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
37
38   const X86Subtarget *getST() const { return ST; }
39   const X86TargetLowering *getTLI() const { return TLI; }
40
41 public:
42   explicit X86TTIImpl(const X86TargetMachine *TM, const Function &F)
43       : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
44         TLI(ST->getTargetLowering()) {}
45
46   /// \name Scalar TTI Implementations
47   /// @{
48   TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
49
50   /// @}
51
52   /// \name Vector TTI Implementations
53   /// @{
54
55   unsigned getNumberOfRegisters(bool Vector);
56   unsigned getRegisterBitWidth(bool Vector);
57   unsigned getMaxInterleaveFactor(unsigned VF);
58   int getArithmeticInstrCost(
59       unsigned Opcode, Type *Ty,
60       TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue,
61       TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue,
62       TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None,
63       TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None);
64   int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
65   int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
66   int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
67   int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
68   int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
69                       unsigned AddressSpace);
70   int getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
71                             unsigned AddressSpace);
72   int getGatherScatterOpCost(unsigned Opcode, Type *DataTy, Value *Ptr,
73                              bool VariableMask, unsigned Alignment);
74   int getAddressComputationCost(Type *PtrTy, bool IsComplex);
75
76   int getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy,
77                             ArrayRef<Type *> Tys, FastMathFlags FMF);
78   int getIntrinsicInstrCost(Intrinsic::ID IID, Type *RetTy,
79                             ArrayRef<Value *> Args, FastMathFlags FMF);
80
81   int getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
82
83   int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
84                                  unsigned Factor, ArrayRef<unsigned> Indices,
85                                  unsigned Alignment, unsigned AddressSpace);
86   int getInterleavedMemoryOpCostAVX512(unsigned Opcode, Type *VecTy,
87                                  unsigned Factor, ArrayRef<unsigned> Indices,
88                                  unsigned Alignment, unsigned AddressSpace);
89
90   int getIntImmCost(int64_t);
91
92   int getIntImmCost(const APInt &Imm, Type *Ty);
93
94   int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
95   int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
96                     Type *Ty);
97   bool isLegalMaskedLoad(Type *DataType);
98   bool isLegalMaskedStore(Type *DataType);
99   bool isLegalMaskedGather(Type *DataType);
100   bool isLegalMaskedScatter(Type *DataType);
101   bool areInlineCompatible(const Function *Caller,
102                            const Function *Callee) const;
103
104   bool enableInterleavedAccessVectorization();
105 private:
106   int getGSScalarCost(unsigned Opcode, Type *DataTy, bool VariableMask,
107                       unsigned Alignment, unsigned AddressSpace);
108   int getGSVectorCost(unsigned Opcode, Type *DataTy, Value *Ptr,
109                       unsigned Alignment, unsigned AddressSpace);
110
111   /// @}
112 };
113
114 } // end namespace llvm
115
116 #endif