blob: 4abbdf20e766ca10a5922937678e99f593d4d3fa [file] [log] [blame]
Chandler Carruth93dcdc42015-01-31 11:17:59 +00001//===-- AMDGPUTargetTransformInfo.h - AMDGPU 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/// AMDGPU 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_R600_AMDGPUTARGETTRANSFORMINFO_H
18#define LLVM_LIB_TARGET_R600_AMDGPUTARGETTRANSFORMINFO_H
19
20#include "AMDGPU.h"
21#include "AMDGPUTargetMachine.h"
22#include "llvm/Analysis/TargetTransformInfo.h"
23#include "llvm/CodeGen/BasicTTIImpl.h"
24#include "llvm/Target/TargetLowering.h"
25
26namespace llvm {
27
28class AMDGPUTTIImpl : public BasicTTIImplBase<AMDGPUTTIImpl> {
29 typedef BasicTTIImplBase<AMDGPUTTIImpl> 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 AMDGPUSubtarget *ST;
Chandler Carruthc340ca82015-02-01 14:01:15 +000034 const AMDGPUTargetLowering *TLI;
35
Chandler Carruthc956ab662015-02-01 14:22:17 +000036 const AMDGPUSubtarget *getST() const { return ST; }
Chandler Carruthc340ca82015-02-01 14:01:15 +000037 const AMDGPUTargetLowering *getTLI() const { return TLI; }
Chandler Carruth93dcdc42015-01-31 11:17:59 +000038
39public:
Chandler Carruthee642692015-02-01 12:38:24 +000040 explicit AMDGPUTTIImpl(const AMDGPUTargetMachine *TM)
Chandler Carruthc956ab662015-02-01 14:22:17 +000041 : BaseT(TM), ST(TM->getSubtargetImpl()), TLI(ST->getTargetLowering()) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000042
43 // Provide value semantics. MSVC requires that we spell all of these out.
44 AMDGPUTTIImpl(const AMDGPUTTIImpl &Arg)
Chandler Carruthc956ab662015-02-01 14:22:17 +000045 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000046 AMDGPUTTIImpl(AMDGPUTTIImpl &&Arg)
Chandler Carruthc956ab662015-02-01 14:22:17 +000047 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
48 TLI(std::move(Arg.TLI)) {}
Chandler Carruth93dcdc42015-01-31 11:17:59 +000049 AMDGPUTTIImpl &operator=(const AMDGPUTTIImpl &RHS) {
50 BaseT::operator=(static_cast<const BaseT &>(RHS));
51 ST = RHS.ST;
Chandler Carruthc340ca82015-02-01 14:01:15 +000052 TLI = RHS.TLI;
Chandler Carruth93dcdc42015-01-31 11:17:59 +000053 return *this;
54 }
55 AMDGPUTTIImpl &operator=(AMDGPUTTIImpl &&RHS) {
56 BaseT::operator=(std::move(static_cast<BaseT &>(RHS)));
57 ST = std::move(RHS.ST);
Chandler Carruthc340ca82015-02-01 14:01:15 +000058 TLI = std::move(RHS.TLI);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000059 return *this;
60 }
61
62 bool hasBranchDivergence() { return true; }
63
Chandler Carruthab5cb362015-02-01 14:31:23 +000064 void getUnrollingPreferences(Loop *L, TTI::UnrollingPreferences &UP);
Chandler Carruth93dcdc42015-01-31 11:17:59 +000065
66 TTI::PopcntSupportKind getPopcntSupport(unsigned TyWidth) {
67 assert(isPowerOf2_32(TyWidth) && "Ty width must be power of 2");
68 return ST->hasBCNT(TyWidth) ? TTI::PSK_FastHardware : TTI::PSK_Software;
69 }
70
71 unsigned getNumberOfRegisters(bool Vector);
72 unsigned getRegisterBitWidth(bool Vector);
73 unsigned getMaxInterleaveFactor();
74};
75
76} // end namespace llvm
77
78#endif