[PM] Switch the TargetMachine interface from accepting a pass manager
[oota-llvm.git] / 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
32   const X86Subtarget *ST;
33   const X86TargetLowering *TLI;
34
35   unsigned getScalarizationOverhead(Type *Ty, bool Insert, bool Extract);
36
37 public:
38   explicit X86TTIImpl(const X86TargetMachine *TM = nullptr)
39       : BaseT(TM), ST(TM ? TM->getSubtargetImpl() : nullptr),
40         TLI(ST ? ST->getTargetLowering() : nullptr) {}
41
42   // Provide value semantics. MSVC requires that we spell all of these out.
43   X86TTIImpl(const X86TTIImpl &Arg)
44       : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
45   X86TTIImpl(X86TTIImpl &&Arg)
46       : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
47         TLI(std::move(Arg.TLI)) {}
48   X86TTIImpl &operator=(const X86TTIImpl &RHS) {
49     BaseT::operator=(static_cast<const BaseT &>(RHS));
50     ST = RHS.ST;
51     TLI = RHS.TLI;
52     return *this;
53   }
54   X86TTIImpl &operator=(X86TTIImpl &&RHS) {
55     BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
56     ST = std::move(RHS.ST);
57     TLI = std::move(RHS.TLI);
58     return *this;
59   }
60
61   /// \name Scalar TTI Implementations
62   /// @{
63   TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
64
65   /// @}
66
67   /// \name Vector TTI Implementations
68   /// @{
69
70   unsigned getNumberOfRegisters(bool Vector);
71   unsigned getRegisterBitWidth(bool Vector);
72   unsigned getMaxInterleaveFactor();
73   unsigned getArithmeticInstrCost(
74       unsigned Opcode, Type *Ty,
75       TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue,
76       TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue,
77       TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None,
78       TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None);
79   unsigned getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index,
80                           Type *SubTp);
81   unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
82   unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
83   unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
84   unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
85                            unsigned AddressSpace);
86   unsigned getMaskedMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
87                                  unsigned AddressSpace);
88
89   unsigned getAddressComputationCost(Type *PtrTy, bool IsComplex);
90
91   unsigned getReductionCost(unsigned Opcode, Type *Ty, bool IsPairwiseForm);
92
93   unsigned getIntImmCost(int64_t);
94
95   unsigned getIntImmCost(const APInt &Imm, Type *Ty);
96
97   unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
98                          Type *Ty);
99   unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
100                          Type *Ty);
101   bool isLegalMaskedLoad(Type *DataType, int Consecutive);
102   bool isLegalMaskedStore(Type *DataType, int Consecutive);
103
104   /// @}
105 };
106 ;
107
108 } // end namespace llvm
109
110 #endif