LLVM  8.0.1
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:
40  explicit PPCTTIImpl(const PPCTargetMachine *TM, const Function &F)
41  : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
42  TLI(ST->getTargetLowering()) {}
43 
44  /// \name Scalar TTI Implementations
45  /// @{
46 
48  int getIntImmCost(const APInt &Imm, Type *Ty);
49 
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);
53 
54  unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
55 
56  TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
59 
60  /// @}
61 
62  /// \name Vector TTI Implementations
63  /// @{
65  bool enableAggressiveInterleaving(bool LoopHasReductions);
67  bool IsZeroCmp) const;
69  unsigned getNumberOfRegisters(bool Vector);
70  unsigned getRegisterBitWidth(bool Vector) const;
71  unsigned getCacheLineSize();
72  unsigned getPrefetchDistance();
73  unsigned getMaxInterleaveFactor(unsigned VF);
75  unsigned Opcode, Type *Ty,
81  int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
82  int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
83  const Instruction *I = nullptr);
84  int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
85  const Instruction *I = nullptr);
86  int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
87  int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
88  unsigned AddressSpace, const Instruction *I = nullptr);
89  int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
90  unsigned Factor,
91  ArrayRef<unsigned> Indices,
92  unsigned Alignment,
93  unsigned AddressSpace,
94  bool UseMaskForCond = false,
95  bool UseMaskForGaps = false);
96 
97  /// @}
98 };
99 
100 } // end namespace llvm
101 
102 #endif
bool useColdCCForColdCall(Function &F)
This class represents lattice values for constants.
Definition: AllocatorList.h:24
The main scalar evolution driver.
F(f)
Base class which can be used to help build a TTI implementation.
Definition: BasicTTIImpl.h:78
unsigned getIntImmCost(const APInt &Imm, Type *Ty)
int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp)
unsigned getUserCost(const User *U, ArrayRef< const Value *> Operands)
int getIntImmCost(const APInt &Imm, Type *Ty)
PPCTTIImpl(const PPCTargetMachine *TM, const Function &F)
int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index)
unsigned getMaxInterleaveFactor(unsigned VF)
PopcntSupportKind
Flags indicating the kind of support for population count.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory)...
Definition: APInt.h:33
const TTI::MemCmpExpansionOptions * enableMemCmpExpansion(bool IsZeroCmp) const
unsigned getRegisterBitWidth(bool Vector) const
If not nullptr, enable inline expansion of memcmp.
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
int 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, ArrayRef< const Value *> Args=ArrayRef< const Value *>())
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
Common code between 32-bit and 64-bit PowerPC targets.
unsigned getNumberOfRegisters(bool Vector)
OperandValueProperties
Additional properties of an operand&#39;s values.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
AddressSpace
Definition: NVPTXBaseInfo.h:22
bool enableAggressiveInterleaving(bool LoopHasReductions)
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP)
Class for arbitrary precision integers.
Definition: APInt.h:70
int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, const Instruction *I=nullptr)
TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth)
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:465
Parameters that control the generic loop unrolling transformation.
#define I(x, y, z)
Definition: MD5.cpp:58
const unsigned Kind
int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, const Instruction *I=nullptr)
static const Function * getParent(const Value *V)
const DataLayout & getDataLayout() const
OperandValueKind
Additional information about an operand&#39;s possible values.
int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef< unsigned > Indices, unsigned Alignment, unsigned AddressSpace, bool UseMaskForCond=false, bool UseMaskForGaps=false)
This pass exposes codegen information to IR-level passes.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
This file describes how to lower LLVM code to machine code.
int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace, const Instruction *I=nullptr)
ShuffleKind
The various kinds of shuffle patterns for vector queries.