LLVM  8.0.1
SystemZTargetTransformInfo.h
Go to the documentation of this file.
1 //===-- SystemZTargetTransformInfo.h - SystemZ-specific TTI ---------------===//
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 
10 #ifndef LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETTRANSFORMINFO_H
11 #define LLVM_LIB_TARGET_SYSTEMZ_SYSTEMZTARGETTRANSFORMINFO_H
12 
13 #include "SystemZTargetMachine.h"
16 
17 namespace llvm {
18 
19 class SystemZTTIImpl : public BasicTTIImplBase<SystemZTTIImpl> {
21  typedef TargetTransformInfo TTI;
22  friend BaseT;
23 
24  const SystemZSubtarget *ST;
25  const SystemZTargetLowering *TLI;
26 
27  const SystemZSubtarget *getST() const { return ST; }
28  const SystemZTargetLowering *getTLI() const { return TLI; }
29 
30  unsigned const LIBCALL_COST = 30;
31 
32 public:
33  explicit SystemZTTIImpl(const SystemZTargetMachine *TM, const Function &F)
34  : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
35  TLI(ST->getTargetLowering()) {}
36 
37  /// \name Scalar TTI Implementations
38  /// @{
39 
40  unsigned getInliningThresholdMultiplier() { return 3; }
41 
42  int getIntImmCost(const APInt &Imm, Type *Ty);
43 
44  int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty);
45  int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm,
46  Type *Ty);
47 
48  TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
49 
52 
55  /// @}
56 
57  /// \name Vector TTI Implementations
58  /// @{
59 
60  unsigned getNumberOfRegisters(bool Vector);
61  unsigned getRegisterBitWidth(bool Vector) const;
62 
63  unsigned getCacheLineSize() { return 256; }
64  unsigned getPrefetchDistance() { return 2000; }
65  unsigned getMinPrefetchStride() { return 2048; }
66 
67  bool hasDivRemOp(Type *DataType, bool IsSigned);
68  bool prefersVectorizedAddressing() { return false; }
69  bool LSRWithInstrQueries() { return true; }
71  bool enableInterleavedAccessVectorization() { return true; }
72 
74  unsigned Opcode, Type *Ty,
80  int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
81  unsigned getVectorTruncCost(Type *SrcTy, Type *DstTy);
82  unsigned getVectorBitmaskConversionCost(Type *SrcTy, Type *DstTy);
83  unsigned getBoolVecToIntConversionCost(unsigned Opcode, Type *Dst,
84  const Instruction *I);
85  int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src,
86  const Instruction *I = nullptr);
87  int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
88  const Instruction *I = nullptr);
89  int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
90  bool isFoldableLoad(const LoadInst *Ld, const Instruction *&FoldedValue);
91  int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
92  unsigned AddressSpace, const Instruction *I = nullptr);
93 
94  int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
95  unsigned Factor,
96  ArrayRef<unsigned> Indices,
97  unsigned Alignment,
98  unsigned AddressSpace,
99  bool UseMaskForCond = false,
100  bool UseMaskForGaps = false);
101 
104  unsigned VF = 1);
107  unsigned ScalarizationCostPassed = UINT_MAX);
108  /// @}
109 };
110 
111 } // end namespace llvm
112 
113 #endif
This class represents lattice values for constants.
Definition: AllocatorList.h:24
unsigned getVectorTruncCost(Type *SrcTy, Type *DstTy)
SystemZTTIImpl(const SystemZTargetMachine *TM, const Function &F)
bool isLSRCostLess(TargetTransformInfo::LSRCost &C1, TargetTransformInfo::LSRCost &C2)
The main scalar evolution driver.
F(f)
An instruction for reading from memory.
Definition: Instructions.h:168
Base class which can be used to help build a TTI implementation.
Definition: BasicTTIImpl.h:78
TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth)
int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp)
unsigned getNumberOfRegisters(bool Vector)
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
void getUnrollingPreferences(Loop *L, ScalarEvolution &SE, TTI::UnrollingPreferences &UP)
int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, unsigned AddressSpace, const Instruction *I=nullptr)
The instances of the Type class are immutable: once they are created, they are never changed...
Definition: Type.h:46
bool hasDivRemOp(Type *DataType, bool IsSigned)
int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy, const Instruction *I=nullptr)
This file provides a helper that implements much of the TTI interface in terms of the target-independ...
unsigned getBoolVecToIntConversionCost(unsigned Opcode, Type *Dst, const Instruction *I)
OperandValueProperties
Additional properties of an operand&#39;s values.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
unsigned getRegisterBitWidth(bool Vector) const
AddressSpace
Definition: NVPTXBaseInfo.h:22
int getIntImmCost(const APInt &Imm, Type *Ty)
Class for arbitrary precision integers.
Definition: APInt.h:70
Represents a single loop in the control flow graph.
Definition: LoopInfo.h:465
Parameters that control the generic loop unrolling transformation.
int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index)
#define I(x, y, z)
Definition: MD5.cpp:58
int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, unsigned Factor, ArrayRef< unsigned > Indices, unsigned Alignment, unsigned AddressSpace, bool UseMaskForCond=false, bool UseMaskForGaps=false)
const unsigned Kind
int getIntrinsicInstrCost(Intrinsic::ID ID, Type *RetTy, ArrayRef< Value *> Args, FastMathFlags FMF, unsigned VF=1)
static const Function * getParent(const Value *V)
const DataLayout & getDataLayout() const
Convenience struct for specifying and reasoning about fast-math flags.
Definition: Operator.h:160
OperandValueKind
Additional information about an operand&#39;s possible values.
This pass exposes codegen information to IR-level passes.
bool isFoldableLoad(const LoadInst *Ld, const Instruction *&FoldedValue)
int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src, const Instruction *I=nullptr)
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 *>())
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
ShuffleKind
The various kinds of shuffle patterns for vector queries.
unsigned getVectorBitmaskConversionCost(Type *SrcTy, Type *DstTy)