blob: 2ee2b3eb8084638ba794461a3b5283fd984ea275 [file] [log] [blame]
Chandler Carruth93dcdc42015-01-31 11:17:59 +00001//===-- 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"
David Blaikieb3bde2e2017-11-17 01:07:10 +000024#include "llvm/CodeGen/TargetLowering.h"
Chandler Carruth93dcdc42015-01-31 11:17:59 +000025
26namespace llvm {
27
28class PPCTTIImpl : public BasicTTIImplBase<PPCTTIImpl> {
29 typedef BasicTTIImplBase<PPCTTIImpl> BaseT;
30 typedef TargetTransformInfo TTI;
Chandler Carruthc340ca82015-02-01 14:01:15 +000031 friend BaseT;
Chandler Carruth93dcdc42015-01-31 11:17:59 +000032
33 const PPCSubtarget *ST;
34 const PPCTargetLowering *TLI;
35
Chandler Carruthc956ab662015-02-01 14:22:17 +000036 const PPCSubtarget *getST() const { return ST; }
Chandler Carruthc340ca82015-02-01 14:01:15 +000037 const PPCTargetLowering *getTLI() const { return TLI; }
38
Chandler Carruth93dcdc42015-01-31 11:17:59 +000039public:
Eric Christophera4e5d3c2015-09-16 23:38:13 +000040 explicit PPCTTIImpl(const PPCTargetMachine *TM, const Function &F)
Mehdi Amini5010ebf2015-07-09 02:08:42 +000041 : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)),
42 TLI(ST->getTargetLowering()) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000043
Chandler Carruth93dcdc42015-01-31 11:17:59 +000044 /// \name Scalar TTI Implementations
45 /// @{
46
47 using BaseT::getIntImmCost;
Chandler Carruth93205eb2015-08-05 18:08:10 +000048 int getIntImmCost(const APInt &Imm, Type *Ty);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000049
Chandler Carruth93205eb2015-08-05 18:08:10 +000050 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);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000053
Graham Yiu488782e2017-10-19 18:16:31 +000054 unsigned getUserCost(const User *U, ArrayRef<const Value *> Operands);
55
Chandler Carruth93dcdc42015-01-31 11:17:59 +000056 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth);
Geoff Berry66d9bdb2017-06-28 15:53:17 +000057 void getUnrollingPreferences(Loop *L, ScalarEvolution &SE,
58 TTI::UnrollingPreferences &UP);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000059
60 /// @}
61
62 /// \name Vector TTI Implementations
63 /// @{
Zaara Syeda1f59ae32018-01-30 16:17:22 +000064 bool useColdCCForColdCall(Function &F);
Olivier Sallenave049d8032015-03-06 23:12:04 +000065 bool enableAggressiveInterleaving(bool LoopHasReductions);
Clement Courbetb2c3eb82017-10-30 14:19:33 +000066 const TTI::MemCmpExpansionOptions *enableMemCmpExpansion(
67 bool IsZeroCmp) const;
Hal Finkel4a7be232015-09-04 00:10:41 +000068 bool enableInterleavedAccessVectorization();
Chandler Carruth93dcdc42015-01-31 11:17:59 +000069 unsigned getNumberOfRegisters(bool Vector);
Daniel Neilsonc0112ae2017-06-12 14:22:21 +000070 unsigned getRegisterBitWidth(bool Vector) const;
Adam Nemetaf761102016-01-21 18:28:36 +000071 unsigned getCacheLineSize();
Adam Nemetdadfbb52016-01-27 22:21:25 +000072 unsigned getPrefetchDistance();
Wei Mi062c7442015-05-06 17:12:25 +000073 unsigned getMaxInterleaveFactor(unsigned VF);
Chandler Carruth93205eb2015-08-05 18:08:10 +000074 int getArithmeticInstrCost(
Chandler Carruth93dcdc42015-01-31 11:17:59 +000075 unsigned Opcode, Type *Ty,
76 TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue,
77 TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue,
78 TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None,
Mohammed Agabaria2c96c432017-01-11 08:23:37 +000079 TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None,
80 ArrayRef<const Value *> Args = ArrayRef<const Value *>());
Chandler Carruth93205eb2015-08-05 18:08:10 +000081 int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp);
Jonas Paulssonfccc7d62017-04-12 11:49:08 +000082 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);
Chandler Carruth93205eb2015-08-05 18:08:10 +000086 int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index);
87 int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment,
Jonas Paulssonfccc7d62017-04-12 11:49:08 +000088 unsigned AddressSpace, const Instruction *I = nullptr);
Hal Finkel4a7be232015-09-04 00:10:41 +000089 int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy,
90 unsigned Factor,
91 ArrayRef<unsigned> Indices,
92 unsigned Alignment,
93 unsigned AddressSpace);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000094
95 /// @}
96};
97
98} // end namespace llvm
99
100#endif