Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 1 | //===-- NVPTXTargetTransformInfo.h - NVPTX 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 | /// NVPTX 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_NVPTX_NVPTXTARGETTRANSFORMINFO_H |
| 18 | #define LLVM_LIB_TARGET_NVPTX_NVPTXTARGETTRANSFORMINFO_H |
| 19 | |
| 20 | #include "NVPTX.h" |
| 21 | #include "NVPTXTargetMachine.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 NVPTXTTIImpl : public BasicTTIImplBase<NVPTXTTIImpl> { |
| 29 | typedef BasicTTIImplBase<NVPTXTTIImpl> 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 | |
Chandler Carruth | c956ab66 | 2015-02-01 14:22:17 +0000 | [diff] [blame] | 33 | const NVPTXSubtarget *ST; |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 34 | const NVPTXTargetLowering *TLI; |
| 35 | |
Chandler Carruth | c956ab66 | 2015-02-01 14:22:17 +0000 | [diff] [blame] | 36 | const NVPTXSubtarget *getST() const { return ST; }; |
Chandler Carruth | c340ca8 | 2015-02-01 14:01:15 +0000 | [diff] [blame] | 37 | const NVPTXTargetLowering *getTLI() const { return TLI; }; |
| 38 | |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 39 | public: |
Mehdi Amini | 5010ebf | 2015-07-09 02:08:42 +0000 | [diff] [blame] | 40 | explicit NVPTXTTIImpl(const NVPTXTargetMachine *TM, const Function &F) |
| 41 | : BaseT(TM, F.getParent()->getDataLayout()), ST(TM->getSubtargetImpl()), |
| 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 | NVPTXTTIImpl(const NVPTXTTIImpl &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 | NVPTXTTIImpl(NVPTXTTIImpl &&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 | bool hasBranchDivergence() { return true; } |
| 52 | |
Jingyue Wu | 5da831c | 2015-04-10 05:03:50 +0000 | [diff] [blame] | 53 | bool isSourceOfDivergence(const Value *V); |
| 54 | |
Chandler Carruth | 93205eb | 2015-08-05 18:08:10 +0000 | [diff] [blame] | 55 | int getArithmeticInstrCost( |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 56 | unsigned Opcode, Type *Ty, |
| 57 | TTI::OperandValueKind Opd1Info = TTI::OK_AnyValue, |
| 58 | TTI::OperandValueKind Opd2Info = TTI::OK_AnyValue, |
| 59 | TTI::OperandValueProperties Opd1PropInfo = TTI::OP_None, |
| 60 | TTI::OperandValueProperties Opd2PropInfo = TTI::OP_None); |
Mark Heffernan | 4c8ca53 | 2015-07-13 18:33:21 +0000 | [diff] [blame] | 61 | |
| 62 | void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP); |
Chandler Carruth | 93dcdc4 | 2015-01-31 11:17:59 +0000 | [diff] [blame] | 63 | }; |
| 64 | |
| 65 | } // end namespace llvm |
| 66 | |
| 67 | #endif |