Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 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" |
| 22 | #include "llvm/Analysis/TargetTransformInfo.h" |
| 23 | #include "llvm/CodeGen/BasicTTIImpl.h" |
| 24 | #include "llvm/Target/TargetLowering.h" |
| 25 | |
| 26 | namespace llvm { |
| 27 | |
| 28 | class PPCTTIImpl : public BasicTTIImplBase<PPCTTIImpl> { |
| 29 | typedef BasicTTIImplBase<PPCTTIImpl> BaseT; |
| 30 | typedef TargetTransformInfo TTI; |
Chandler Carruth | c340ca8 | 2015-02-01 14:01:15 +0000 | [diff] [blame] | 31 | friend BaseT; |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 32 | |
| 33 | const PPCSubtarget *ST; |
| 34 | const PPCTargetLowering *TLI; |
| 35 | |
Chandler Carruth | c956ab66 | 2015-02-01 14:22:17 +0000 | [diff] [blame] | 36 | const PPCSubtarget *getST() const { return ST; } |
Chandler Carruth | c340ca8 | 2015-02-01 14:01:15 +0000 | [diff] [blame] | 37 | const PPCTargetLowering *getTLI() const { return TLI; } |
| 38 | |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 39 | public: |
Eric Christopher | a4e5d3c | 2015-09-16 23:38:13 +0000 | [diff] [blame] | 40 | explicit PPCTTIImpl(const PPCTargetMachine *TM, const Function &F) |
Mehdi Amini | 5010ebf | 2015-07-09 02:08:42 +0000 | [diff] [blame] | 41 | : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl(F)), |
| 42 | TLI(ST->getTargetLowering()) {} |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 43 | |
| 44 | // Provide value semantics. MSVC requires that we spell all of these out. |
| 45 | PPCTTIImpl(const PPCTTIImpl &Arg) |
Chandler Carruth | c956ab66 | 2015-02-01 14:22:17 +0000 | [diff] [blame] | 46 | : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {} |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 47 | PPCTTIImpl(PPCTTIImpl &&Arg) |
Chandler Carruth | c956ab66 | 2015-02-01 14:22:17 +0000 | [diff] [blame] | 48 | : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)), |
| 49 | TLI(std::move(Arg.TLI)) {} |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 50 | |
| 51 | /// \name Scalar TTI Implementations |
| 52 | /// @{ |
| 53 | |
| 54 | using BaseT::getIntImmCost; |
Chandler Carruth | 93205eb | 2015-08-05 18:08:10 +0000 | [diff] [blame] | 55 | int getIntImmCost(const APInt &Imm, Type *Ty); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 56 | |
Chandler Carruth | 93205eb | 2015-08-05 18:08:10 +0000 | [diff] [blame] | 57 | int getIntImmCost(unsigned Opcode, unsigned Idx, const APInt &Imm, Type *Ty); |
| 58 | int getIntImmCost(Intrinsic::ID IID, unsigned Idx, const APInt &Imm, |
| 59 | Type *Ty); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 60 | |
| 61 | TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth); |
Chandler Carruth | ab5cb36 | 2015-02-01 14:31:23 +0000 | [diff] [blame] | 62 | void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 63 | |
| 64 | /// @} |
| 65 | |
| 66 | /// \name Vector TTI Implementations |
| 67 | /// @{ |
| 68 | |
Olivier Sallenave | 049d803 | 2015-03-06 23:12:04 +0000 | [diff] [blame] | 69 | bool enableAggressiveInterleaving(bool LoopHasReductions); |
Hal Finkel | 4a7be23 | 2015-09-04 00:10:41 +0000 | [diff] [blame] | 70 | bool enableInterleavedAccessVectorization(); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 71 | unsigned getNumberOfRegisters(bool Vector); |
| 72 | unsigned getRegisterBitWidth(bool Vector); |
Wei Mi | 062c744 | 2015-05-06 17:12:25 +0000 | [diff] [blame] | 73 | unsigned getMaxInterleaveFactor(unsigned VF); |
Chandler Carruth | 93205eb | 2015-08-05 18:08:10 +0000 | [diff] [blame] | 74 | int getArithmeticInstrCost( |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 75 | 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, |
| 79 | TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None); |
Chandler Carruth | 93205eb | 2015-08-05 18:08:10 +0000 | [diff] [blame] | 80 | int getShuffleCost(TTI::ShuffleKind Kind, Type *Tp, int Index, Type *SubTp); |
| 81 | int getCastInstrCost(unsigned Opcode, Type *Dst, Type *Src); |
| 82 | int getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy); |
| 83 | int getVectorInstrCost(unsigned Opcode, Type *Val, unsigned Index); |
| 84 | int getMemoryOpCost(unsigned Opcode, Type *Src, unsigned Alignment, |
| 85 | unsigned AddressSpace); |
Hal Finkel | 4a7be23 | 2015-09-04 00:10:41 +0000 | [diff] [blame] | 86 | int getInterleavedMemoryOpCost(unsigned Opcode, Type *VecTy, |
| 87 | unsigned Factor, |
| 88 | ArrayRef<unsigned> Indices, |
| 89 | unsigned Alignment, |
| 90 | unsigned AddressSpace); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 91 | |
| 92 | /// @} |
| 93 | }; |
| 94 | |
| 95 | } // end namespace llvm |
| 96 | |
| 97 | #endif |