radeon/llvm: Remove IOExpansion files
[mesa.git] / src / gallium / drivers / radeon / AMDILEvergreenDevice.h
1 //==- AMDILEvergreenDevice.h - Define Evergreen Device for 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 // Interface for the subtarget data classes.
11 //
12 //===----------------------------------------------------------------------===//
13 // This file will define the interface that each generation needs to
14 // implement in order to correctly answer queries on the capabilities of the
15 // specific hardware.
16 //===----------------------------------------------------------------------===//
17 #ifndef _AMDILEVERGREENDEVICE_H_
18 #define _AMDILEVERGREENDEVICE_H_
19 #include "AMDILDevice.h"
20 #include "AMDILSubtarget.h"
21
22 namespace llvm {
23 class AMDILSubtarget;
24 //===----------------------------------------------------------------------===//
25 // Evergreen generation of devices and their respective sub classes
26 //===----------------------------------------------------------------------===//
27
28
29 // The AMDILEvergreenDevice is the base device class for all of the Evergreen
30 // series of cards. This class contains information required to differentiate
31 // the Evergreen device from the generic AMDILDevice. This device represents
32 // that capabilities of the 'Juniper' cards, also known as the HD57XX.
33 class AMDILEvergreenDevice : public AMDILDevice {
34 public:
35 AMDILEvergreenDevice(AMDILSubtarget *ST);
36 virtual ~AMDILEvergreenDevice();
37 virtual size_t getMaxLDSSize() const;
38 virtual size_t getMaxGDSSize() const;
39 virtual size_t getWavefrontSize() const;
40 virtual uint32_t getGeneration() const;
41 virtual uint32_t getMaxNumUAVs() const;
42 virtual uint32_t getResourceID(uint32_t) const;
43 virtual AsmPrinter*
44 getAsmPrinter(TargetMachine& TM, MCStreamer &Streamer) const;
45 protected:
46 virtual void setCaps();
47 }; // AMDILEvergreenDevice
48
49 // The AMDILCypressDevice is similiar to the AMDILEvergreenDevice, except it has
50 // support for double precision operations. This device is used to represent
51 // both the Cypress and Hemlock cards, which are commercially known as HD58XX
52 // and HD59XX cards.
53 class AMDILCypressDevice : public AMDILEvergreenDevice {
54 public:
55 AMDILCypressDevice(AMDILSubtarget *ST);
56 virtual ~AMDILCypressDevice();
57 private:
58 virtual void setCaps();
59 }; // AMDILCypressDevice
60
61
62 // The AMDILCedarDevice is the class that represents all of the 'Cedar' based
63 // devices. This class differs from the base AMDILEvergreenDevice in that the
64 // device is a ~quarter of the 'Juniper'. These are commercially known as the
65 // HD54XX and HD53XX series of cards.
66 class AMDILCedarDevice : public AMDILEvergreenDevice {
67 public:
68 AMDILCedarDevice(AMDILSubtarget *ST);
69 virtual ~AMDILCedarDevice();
70 virtual size_t getWavefrontSize() const;
71 private:
72 virtual void setCaps();
73 }; // AMDILCedarDevice
74
75 // The AMDILRedwoodDevice is the class the represents all of the 'Redwood' based
76 // devices. This class differs from the base class, in that these devices are
77 // considered about half of a 'Juniper' device. These are commercially known as
78 // the HD55XX and HD56XX series of cards.
79 class AMDILRedwoodDevice : public AMDILEvergreenDevice {
80 public:
81 AMDILRedwoodDevice(AMDILSubtarget *ST);
82 virtual ~AMDILRedwoodDevice();
83 virtual size_t getWavefrontSize() const;
84 private:
85 virtual void setCaps();
86 }; // AMDILRedwoodDevice
87
88 } // namespace llvm
89 #endif // _AMDILEVERGREENDEVICE_H_