R600: Factorize Fetch size limit inside AMDGPUSubTarget
[oota-llvm.git] / lib / Target / R600 / AMDGPUSubtarget.h
1 //=====-- AMDGPUSubtarget.h - Define Subtarget for the AMDIL ---*- 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 //
10 /// \file
11 /// \brief AMDGPU specific subclass of TargetSubtarget.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef AMDGPUSUBTARGET_H
16 #define AMDGPUSUBTARGET_H
17 #include "AMDILDevice.h"
18 #include "llvm/ADT/StringExtras.h"
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Target/TargetSubtargetInfo.h"
21
22 #define GET_SUBTARGETINFO_HEADER
23 #include "AMDGPUGenSubtargetInfo.inc"
24
25 #define MAX_CB_SIZE (1 << 16)
26
27 namespace llvm {
28
29 class AMDGPUSubtarget : public AMDGPUGenSubtargetInfo {
30 private:
31   bool CapsOverride[AMDGPUDeviceInfo::MaxNumberCapabilities];
32   const AMDGPUDevice *Device;
33   size_t DefaultSize[3];
34   std::string DevName;
35   bool Is64bit;
36   bool Is32on64bit;
37   bool DumpCode;
38   bool R600ALUInst;
39   bool HasVertexCache;
40   short TexVTXClauseSize;
41
42   InstrItineraryData InstrItins;
43
44 public:
45   AMDGPUSubtarget(StringRef TT, StringRef CPU, StringRef FS);
46   virtual ~AMDGPUSubtarget();
47
48   const InstrItineraryData &getInstrItineraryData() const { return InstrItins; }
49   virtual void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
50
51   bool isOverride(AMDGPUDeviceInfo::Caps) const;
52   bool is64bit() const;
53   bool hasVertexCache() const;
54   short getTexVTXClauseSize() const;
55
56   // Helper functions to simplify if statements
57   bool isTargetELF() const;
58   const AMDGPUDevice* device() const;
59   std::string getDataLayout() const;
60   std::string getDeviceName() const;
61   virtual size_t getDefaultSize(uint32_t dim) const;
62   bool dumpCode() const { return DumpCode; }
63   bool r600ALUEncoding() const { return R600ALUInst; }
64
65 };
66
67 } // End namespace llvm
68
69 #endif // AMDGPUSUBTARGET_H