diff options
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILDevice.h')
-rw-r--r-- | src/gallium/drivers/radeon/AMDILDevice.h | 20 |
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 |