blob: 83cb5e5d113683c7a9ddd52ea5d42a7b39fca5b3 [file] [log] [blame]
Chandler Carruth93dcdc42015-01-31 11:17:59 +00001//===-- PPCTargetTransformInfo.h - PPC 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/// PPC 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_POWERPC_PPCTARGETTRANSFORMINFO_H
18#define LLVM_LIB_TARGET_POWERPC_PPCTARGETTRANSFORMINFO_H
19
20#include "PPC.h"
21#include "PPCTargetMachine.h"
22#include "llvm/Analysis/TargetTransformInfo.h"
23#include "llvm/CodeGen/BasicTTIImpl.h"
24#include "llvm/Target/TargetLowering.h"
25
26namespace llvm {
27
28class PPCTTIImpl : public BasicTTIImplBase<PPCTTIImpl> {
29 typedef BasicTTIImplBase<PPCTTIImpl> BaseT;
30 typedef TargetTransformInfo TTI;
Chandler Carruthc340ca82015-02-01 14:01:15 +000031 friend BaseT;
Chandler Carruth93dcdc42015-01-31 11:17:59 +000032
Chandler Carruthc340ca82015-02-01 14:01:15 +000033 const PPCTargetMachine *TM;
Chandler Carruth93dcdc42015-01-31 11:17:59 +000034 const PPCSubtarget *ST;
35 const PPCTargetLowering *TLI;
36
Chandler Carruthc340ca82015-02-01 14:01:15 +000037 const PPCTargetMachine *getTM() const { return TM; }
38 const PPCTargetLowering *getTLI() const { return TLI; }
39
Chandler Carruth93dcdc42015-01-31 11:17:59 +000040public:
Chandler Carruth8b04c0d2015-02-01 13:20:00 +000041 explicit PPCTTIImpl(const PPCTargetMachine *TM, Function &F)
Chandler Carruthc340ca82015-02-01 14:01:15 +000042 : BaseT(TM), TM(TM), ST(TM->getSubtargetImpl(F)),
43 TLI(ST->getTargetLowering()) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000044
45 // Provide value semantics. MSVC requires that we spell all of these out.
46 PPCTTIImpl(const PPCTTIImpl &Arg)
Chandler Carruthc340ca82015-02-01 14:01:15 +000047 : BaseT(static_cast<const BaseT &>(Arg)), TM(Arg.TM), ST(Arg.ST),
48 TLI(Arg.TLI) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000049 PPCTTIImpl(PPCTTIImpl &&Arg)
Chandler Carruthc340ca82015-02-01 14:01:15 +000050 : BaseT(std::move(static_cast<BaseT &>(Arg))), TM(std::move(Arg.TM)),
51 ST(std::move(Arg.ST)), TLI(std::move(Arg.TLI)) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000052 PPCTTIImpl &operator=(const PPCTTIImpl &RHS) {
53 BaseT::operator=(static_cast<const BaseT &>(RHS));
Chandler Carruthc340ca82015-02-01 14:01:15 +000054 TM = RHS.TM;
Chandler Carruth93dcdc42015-01-31 11:17:59 +000055 ST = RHS.ST;
56 TLI = RHS.TLI;
57 return *this;
58 }
59 PPCTTIImpl &operator=(PPCTTIImpl &&RHS) {
60 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
Chandler Carruthc340ca82015-02-01 14:01:15 +000061 TM = std::move(RHS.TM);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000062 ST = std::move(RHS.ST);
63 TLI = std::move(RHS.TLI);
64 return *this;
65 }
66
67 /// \name Scalar TTI Implementations
68 /// @{
69
70 using BaseT::getIntImmCost;
71 unsigned getIntImmCost(const APInt &Imm, Type *Ty);
72
73 unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
74 Type *Ty);
75 unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
76 Type *Ty);
77
78 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
79 void getUnrollingPreferences(const Function *F, Loop *L,
80 TTI::UnrollingPreferences &UP);
81
82 /// @}
83
84 /// \name Vector TTI Implementations
85 /// @{
86
87 unsigned getNumberOfRegisters(bool Vector);
88 unsigned getRegisterBitWidth(bool Vector);
89 unsigned getMaxInterleaveFactor();
90 unsigned getArithmeticInstrCost(
91 unsigned Opcode, Type *Ty,
92 TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue,
93 TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue,
94 TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None,
95 TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None);
96 unsigned getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index,
97 Type *SubTp);
98 unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
99 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
100 unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
101 unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
102 unsigned AddressSpace);
103
104 /// @}
105};
106
107} // end namespace llvm
108
109#endif