83
|
1 //===-- 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
|
|
26 namespace llvm {
|
|
27
|
|
28 class PPCTTIImpl : public BasicTTIImplBase<PPCTTIImpl> {
|
|
29 typedef BasicTTIImplBase<PPCTTIImpl> BaseT;
|
|
30 typedef TargetTransformInfo TTI;
|
|
31 friend BaseT;
|
|
32
|
|
33 const PPCSubtarget *ST;
|
|
34 const PPCTargetLowering *TLI;
|
|
35
|
|
36 const PPCSubtarget *getST() const { return ST; }
|
|
37 const PPCTargetLowering *getTLI() const { return TLI; }
|
|
38
|
|
39 public:
|
95
|
40 explicit PPCTTIImpl(const PPCTargetMachine *TM, const Function &F)
|
|
41 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
|
|
42 TLI(ST->getTargetLowering()) {}
|
83
|
43
|
|
44 /// \name Scalar TTI Implementations
|
|
45 /// @{
|
|
46
|
|
47 using BaseT::getIntImmCost;
|
95
|
48 int getIntImmCost(const APInt &Imm, Type *Ty);
|
83
|
49
|
95
|
50 int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
|
|
51 int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
|
|
52 Type *Ty);
|
83
|
53
|
121
|
54 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
|
|
55
|
83
|
56 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
|
121
|
57 void getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
|
|
58 TTI::UnrollingPreferences &UP);
|
83
|
59
|
|
60 /// @}
|
|
61
|
|
62 /// \name Vector TTI Implementations
|
|
63 /// @{
|
|
64
|
95
|
65 bool enableAggressiveInterleaving(bool LoopHasReductions);
|
121
|
66 bool enableMemCmpExpansion(unsigned &MaxLoadSize);
|
95
|
67 bool enableInterleavedAccessVectorization();
|
83
|
68 unsigned getNumberOfRegisters(bool Vector);
|
121
|
69 unsigned getRegisterBitWidth(bool Vector) const;
|
100
|
70 unsigned getCacheLineSize();
|
120
|
71 unsigned getPrefetchDistance();
|
95
|
72 unsigned getMaxInterleaveFactor(unsigned VF);
|
|
73 int getArithmeticInstrCost(
|
83
|
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,
|
121
|
78 TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None,
|
|
79 ArrayRef<const Value *> Args = ArrayRef<const Value *>());
|
95
|
80 int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
|
121
|
81 int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
|
|
82 const Instruction *I = nullptr);
|
|
83 int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
|
|
84 const Instruction *I = nullptr);
|
95
|
85 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
|
|
86 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
|
121
|
87 unsigned AddressSpace, const Instruction *I = nullptr);
|
95
|
88 int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
|
|
89 unsigned Factor,
|
|
90 ArrayRef<unsigned> Indices,
|
|
91 unsigned Alignment,
|
|
92 unsigned AddressSpace);
|
83
|
93
|
|
94 /// @}
|
|
95 };
|
|
96
|
|
97 } // end namespace llvm
|
|
98
|
|
99 #endif
|