summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeon/AMDILSIDevice.cpp
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/AMDILSIDevice.cpp
parentb72ab79d73b29ec087d90cf2c698adbab4db5def (diff)
radeon/llvm: Rename all AMDIL* classes to AMDGPU*
Diffstat (limited to 'src/gallium/drivers/radeon/AMDILSIDevice.cpp')
-rw-r--r--src/gallium/drivers/radeon/AMDILSIDevice.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gallium/drivers/radeon/AMDILSIDevice.cpp b/src/gallium/drivers/radeon/AMDILSIDevice.cpp
index c300450f4f1..856b00f894a 100644
--- a/src/gallium/drivers/radeon/AMDILSIDevice.cpp
+++ b/src/gallium/drivers/radeon/AMDILSIDevice.cpp
@@ -13,18 +13,18 @@
using namespace llvm;
-AMDILSIDevice::AMDILSIDevice(AMDGPUSubtarget *ST)
- : AMDILEvergreenDevice(ST)
+AMDGPUSIDevice::AMDGPUSIDevice(AMDGPUSubtarget *ST)
+ : AMDGPUEvergreenDevice(ST)
{
}
-AMDILSIDevice::~AMDILSIDevice()
+AMDGPUSIDevice::~AMDGPUSIDevice()
{
}
size_t
-AMDILSIDevice::getMaxLDSSize() const
+AMDGPUSIDevice::getMaxLDSSize() const
{
- if (usesHardware(AMDILDeviceInfo::LocalMem)) {
+ if (usesHardware(AMDGPUDeviceInfo::LocalMem)) {
return MAX_LDS_SIZE_900;
} else {
return 0;
@@ -32,13 +32,13 @@ AMDILSIDevice::getMaxLDSSize() const
}
uint32_t
-AMDILSIDevice::getGeneration() const
+AMDGPUSIDevice::getGeneration() const
{
- return AMDILDeviceInfo::HD7XXX;
+ return AMDGPUDeviceInfo::HD7XXX;
}
std::string
-AMDILSIDevice::getDataLayout() const
+AMDGPUSIDevice::getDataLayout() const
{
return std::string("e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16"
"-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:32:32"