1 //===-- PPCTargetTransformInfo.h - PPC specific TTI -------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 /// This file a TargetTransformInfo::Concept conforming object specific to the
10 /// PPC target machine. It uses the target's detailed information to
11 /// provide more precise answers to certain TTI queries, while letting the
12 /// target independent and default TTI implementations handle the rest.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_LIB_TARGET_POWERPC_PPCTARGETTRANSFORMINFO_H
17 #define LLVM_LIB_TARGET_POWERPC_PPCTARGETTRANSFORMINFO_H
19 #include "PPCTargetMachine.h"
20 #include "llvm/Analysis/TargetTransformInfo.h"
21 #include "llvm/CodeGen/BasicTTIImpl.h"
22 #include "llvm/CodeGen/TargetLowering.h"
26 class PPCTTIImpl
: public BasicTTIImplBase
<PPCTTIImpl
> {
27 typedef BasicTTIImplBase
<PPCTTIImpl
> BaseT
;
28 typedef TargetTransformInfo TTI
;
31 const PPCSubtarget
*ST
;
32 const PPCTargetLowering
*TLI
;
34 const PPCSubtarget
*getST() const { return ST
; }
35 const PPCTargetLowering
*getTLI() const { return TLI
; }
36 bool mightUseCTR(BasicBlock
*BB
, TargetLibraryInfo
*LibInfo
,
37 SmallPtrSetImpl
<const Value
*> &Visited
);
40 explicit PPCTTIImpl(const PPCTargetMachine
*TM
, const Function
&F
)
41 : BaseT(TM
, F
.getParent()->getDataLayout()), ST(TM
->getSubtargetImpl(F
)),
42 TLI(ST
->getTargetLowering()) {}
44 Optional
<Instruction
*> instCombineIntrinsic(InstCombiner
&IC
,
45 IntrinsicInst
&II
) const;
47 /// \name Scalar TTI Implementations
50 using BaseT::getIntImmCost
;
51 InstructionCost
getIntImmCost(const APInt
&Imm
, Type
*Ty
,
52 TTI::TargetCostKind CostKind
);
54 InstructionCost
getIntImmCostInst(unsigned Opcode
, unsigned Idx
,
55 const APInt
&Imm
, Type
*Ty
,
56 TTI::TargetCostKind CostKind
,
57 Instruction
*Inst
= nullptr);
58 InstructionCost
getIntImmCostIntrin(Intrinsic::ID IID
, unsigned Idx
,
59 const APInt
&Imm
, Type
*Ty
,
60 TTI::TargetCostKind CostKind
);
62 InstructionCost
getUserCost(const User
*U
, ArrayRef
<const Value
*> Operands
,
63 TTI::TargetCostKind CostKind
);
65 TTI::PopcntSupportKind
getPopcntSupport(unsigned TyWidth
);
66 bool isHardwareLoopProfitable(Loop
*L
, ScalarEvolution
&SE
,
68 TargetLibraryInfo
*LibInfo
,
69 HardwareLoopInfo
&HWLoopInfo
);
70 bool canSaveCmp(Loop
*L
, BranchInst
**BI
, ScalarEvolution
*SE
, LoopInfo
*LI
,
71 DominatorTree
*DT
, AssumptionCache
*AC
,
72 TargetLibraryInfo
*LibInfo
);
73 bool getTgtMemIntrinsic(IntrinsicInst
*Inst
, MemIntrinsicInfo
&Info
);
74 void getUnrollingPreferences(Loop
*L
, ScalarEvolution
&SE
,
75 TTI::UnrollingPreferences
&UP
,
76 OptimizationRemarkEmitter
*ORE
);
77 void getPeelingPreferences(Loop
*L
, ScalarEvolution
&SE
,
78 TTI::PeelingPreferences
&PP
);
79 bool isLSRCostLess(TargetTransformInfo::LSRCost
&C1
,
80 TargetTransformInfo::LSRCost
&C2
);
81 bool isNumRegsMajorCostOfLSR();
82 bool shouldBuildRelLookupTables() const;
85 /// \name Vector TTI Implementations
87 bool useColdCCForColdCall(Function
&F
);
88 bool enableAggressiveInterleaving(bool LoopHasReductions
);
89 TTI::MemCmpExpansionOptions
enableMemCmpExpansion(bool OptSize
,
90 bool IsZeroCmp
) const;
91 bool enableInterleavedAccessVectorization();
93 enum PPCRegisterClass
{
94 GPRRC
, FPRRC
, VRRC
, VSXRC
96 unsigned getNumberOfRegisters(unsigned ClassID
) const;
97 unsigned getRegisterClassForType(bool Vector
, Type
*Ty
= nullptr) const;
98 const char* getRegisterClassName(unsigned ClassID
) const;
99 TypeSize
getRegisterBitWidth(TargetTransformInfo::RegisterKind K
) const;
100 unsigned getCacheLineSize() const override
;
101 unsigned getPrefetchDistance() const override
;
102 unsigned getMaxInterleaveFactor(unsigned VF
);
103 InstructionCost
vectorCostAdjustment(InstructionCost Cost
, unsigned Opcode
,
104 Type
*Ty1
, Type
*Ty2
);
105 InstructionCost
getArithmeticInstrCost(
106 unsigned Opcode
, Type
*Ty
,
107 TTI::TargetCostKind CostKind
= TTI::TCK_RecipThroughput
,
108 TTI::OperandValueKind Opd1Info
= TTI::OK_AnyValue
,
109 TTI::OperandValueKind Opd2Info
= TTI::OK_AnyValue
,
110 TTI::OperandValueProperties Opd1PropInfo
= TTI::OP_None
,
111 TTI::OperandValueProperties Opd2PropInfo
= TTI::OP_None
,
112 ArrayRef
<const Value
*> Args
= ArrayRef
<const Value
*>(),
113 const Instruction
*CxtI
= nullptr);
114 InstructionCost
getShuffleCost(TTI::ShuffleKind Kind
, Type
*Tp
,
115 ArrayRef
<int> Mask
, int Index
, Type
*SubTp
);
116 InstructionCost
getCastInstrCost(unsigned Opcode
, Type
*Dst
, Type
*Src
,
117 TTI::CastContextHint CCH
,
118 TTI::TargetCostKind CostKind
,
119 const Instruction
*I
= nullptr);
120 InstructionCost
getCFInstrCost(unsigned Opcode
, TTI::TargetCostKind CostKind
,
121 const Instruction
*I
= nullptr);
122 InstructionCost
getCmpSelInstrCost(unsigned Opcode
, Type
*ValTy
, Type
*CondTy
,
123 CmpInst::Predicate VecPred
,
124 TTI::TargetCostKind CostKind
,
125 const Instruction
*I
= nullptr);
126 InstructionCost
getVectorInstrCost(unsigned Opcode
, Type
*Val
,
128 InstructionCost
getMemoryOpCost(unsigned Opcode
, Type
*Src
,
129 MaybeAlign Alignment
, unsigned AddressSpace
,
130 TTI::TargetCostKind CostKind
,
131 const Instruction
*I
= nullptr);
132 InstructionCost
getInterleavedMemoryOpCost(
133 unsigned Opcode
, Type
*VecTy
, unsigned Factor
, ArrayRef
<unsigned> Indices
,
134 Align Alignment
, unsigned AddressSpace
,
135 TTI::TargetCostKind CostKind
= TTI::TCK_SizeAndLatency
,
136 bool UseMaskForCond
= false, bool UseMaskForGaps
= false);
137 InstructionCost
getIntrinsicInstrCost(const IntrinsicCostAttributes
&ICA
,
138 TTI::TargetCostKind CostKind
);
139 bool areFunctionArgsABICompatible(const Function
*Caller
,
140 const Function
*Callee
,
141 SmallPtrSetImpl
<Argument
*> &Args
) const;
145 } // end namespace llvm