LLVM  3.7.0
PPCTargetTransformInfo.h
Go to the documentation of this file.
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"
25 
26 namespace llvm {
27 
28 class PPCTTIImpl : public BasicTTIImplBase<PPCTTIImpl> {
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:
41  : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
42  TLI(ST->getTargetLowering()) {}
43 
44  // Provide value semantics. MSVC requires that we spell all of these out.
45  PPCTTIImpl(const PPCTTIImpl &Arg)
46  : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
48  : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
49  TLI(std::move(Arg.TLI)) {}
50 
51  /// \name Scalar TTI Implementations
52  /// @{
53 
55  unsigned getIntImmCost(const APInt &Imm, Type *Ty);
56 
57  unsigned getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm,
58  Type *Ty);
59  unsigned getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
60  Type *Ty);
61 
62  TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
63  void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP);
64 
65  /// @}
66 
67  /// \name Vector TTI Implementations
68  /// @{
69 
70  bool enableAggressiveInterleaving(bool LoopHasReductions);
71  unsigned getNumberOfRegisters(bool Vector);
72  unsigned getRegisterBitWidth(bool Vector);
73  unsigned getMaxInterleaveFactor(unsigned VF);
74  unsigned getArithmeticInstrCost(
75  unsigned Opcode, Type *Ty,
80  unsigned getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index,
81  Type *SubTp);
82  unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src);
83  unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy);
84  unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
85  unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
86  unsigned AddressSpace);
87 
88  /// @}
89 };
90 
91 } // end namespace llvm
92 
93 #endif
F(f)
Base class which can be used to help build a TTI implementation.
Definition: BasicTTIImpl.h:40
unsigned getArithmeticInstrCost(unsigned Opcode, Type *Ty, TTI::OperandValueKind Opd1Info=TTI::OK_AnyValue, TTI::OperandValueKind Opd2Info=TTI::OK_AnyValue, TTI::OperandValueProperties Opd1PropInfo=TTI::OP_None, TTI::OperandValueProperties Opd2PropInfo=TTI::OP_None)
unsigned getIntImmCost(const APInt &Imm, Type *Ty)
unsigned getMaxInterleaveFactor(unsigned VF)
PopcntSupportKind
Flags indicating the kind of support for population count.
PPCTTIImpl(const PPCTargetMachine *TM, Function &F)
unsigned getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src)
unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy)
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:45
PPCTTIImpl(const PPCTTIImpl &Arg)
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets.
void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP)
unsigned getNumberOfRegisters(bool Vector)
OperandValueProperties
Additional properties of an operand's values.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
AddressSpace
Definition: NVPTXBaseInfo.h:22
unsigned getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace)
bool enableAggressiveInterleaving(bool LoopHasReductions)
Class for arbitrary precision integers.
Definition: APInt.h:73
PPCTTIImpl(PPCTTIImpl &&Arg)
const DataLayout & getDataLayout() const
unsigned getIntImmCost(const APInt &Imm, Type *Ty)
TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth)
unsigned getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index)
const ARM::ArchExtKind Kind
aarch64 promote const
static const Function * getParent(const Value *V)
unsigned getRegisterBitWidth(bool Vector)
OperandValueKind
Additional information about an operand's possible values.
This pass exposes codegen information to IR-level passes.
unsigned getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp)
This file describes how to lower LLVM code to machine code.
ShuffleKind
The various kinds of shuffle patterns for vector queries.