summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/AMDILDevice.h
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-07-30 15:57:50 +0000
committerTom Stellard <[email protected]>2012-07-30 21:10:14 +0000
commit2f921101c0826dc52a2c69f85c3da0f7f6e8212a (patch)
treeb0e58be6d20eee06df83a94571e149d73a401c15 /src/gallium/drivers/radeon/AMDILDevice.h
parentb72ab79d73b29ec087d90cf2c698adbab4db5def (diff)
radeon/llvm: Rename all AMDIL* classes to AMDGPU*
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILDevice.h')
-rw-r--r--src/gallium/drivers/radeon/AMDILDevice.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gallium/drivers/radeon/AMDILDevice.h b/src/gallium/drivers/radeon/AMDILDevice.h
index 158925c2fc5..a7528ad0b14 100644
--- a/src/gallium/drivers/radeon/AMDILDevice.h
+++ b/src/gallium/drivers/radeon/AMDILDevice.h
@@ -21,17 +21,17 @@
namespace llvm {
class AMDGPUSubtarget;
- class AMDILAsmPrinter;
- class AMDILPointerManager;
+ class AMDGPUAsmPrinter;
+ class AMDGPUPointerManager;
class AsmPrinter;
class MCStreamer;
//===----------------------------------------------------------------------===//
// Interface for data that is specific to a single device
//===----------------------------------------------------------------------===//
-class AMDILDevice {
+class AMDGPUDevice {
public:
- AMDILDevice(AMDGPUSubtarget *ST);
- virtual ~AMDILDevice();
+ AMDGPUDevice(AMDGPUSubtarget *ST);
+ virtual ~AMDGPUDevice();
// Enum values for the various memory types.
enum {
@@ -98,9 +98,9 @@ public:
// software that emulates it with possibly using the hardware for
// support since the hardware does not fully comply with OpenCL
// specs.
- bool isSupported(AMDILDeviceInfo::Caps Mode) const;
- bool usesHardware(AMDILDeviceInfo::Caps Mode) const;
- bool usesSoftware(AMDILDeviceInfo::Caps Mode) const;
+ bool isSupported(AMDGPUDeviceInfo::Caps Mode) const;
+ bool usesHardware(AMDGPUDeviceInfo::Caps Mode) const;
+ bool usesSoftware(AMDGPUDeviceInfo::Caps Mode) const;
virtual std::string getDataLayout() const;
static const unsigned int MAX_LDS_SIZE_700 = 16384;
static const unsigned int MAX_LDS_SIZE_800 = 32768;
@@ -114,8 +114,8 @@ protected:
AMDGPUSubtarget *mSTM;
uint32_t mDeviceFlag;
private:
- AMDILDeviceInfo::ExecutionMode
- getExecutionMode(AMDILDeviceInfo::Caps Caps) const;
+ AMDGPUDeviceInfo::ExecutionMode
+ getExecutionMode(AMDGPUDeviceInfo::Caps Caps) const;
}; // AMDILDevice
} // namespace llvm