mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
58a2cbef4a
utils/sort_includes.py script. Most of these are updating the new R600 target and fixing up a few regressions that have creeped in since the last time I sorted the includes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171362 91177308-0d34-0410-b5e6-96231b3b80d8
66 lines
1.6 KiB
C++
66 lines
1.6 KiB
C++
//===-- AMDILNIDevice.cpp - Device Info for Northern Islands devices ------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
/// \file
|
|
//==-----------------------------------------------------------------------===//
|
|
#include "AMDILNIDevice.h"
|
|
#include "AMDGPUSubtarget.h"
|
|
#include "AMDILEvergreenDevice.h"
|
|
|
|
using namespace llvm;
|
|
|
|
AMDGPUNIDevice::AMDGPUNIDevice(AMDGPUSubtarget *ST)
|
|
: AMDGPUEvergreenDevice(ST) {
|
|
std::string name = ST->getDeviceName();
|
|
if (name == "caicos") {
|
|
DeviceFlag = OCL_DEVICE_CAICOS;
|
|
} else if (name == "turks") {
|
|
DeviceFlag = OCL_DEVICE_TURKS;
|
|
} else if (name == "cayman") {
|
|
DeviceFlag = OCL_DEVICE_CAYMAN;
|
|
} else {
|
|
DeviceFlag = OCL_DEVICE_BARTS;
|
|
}
|
|
}
|
|
AMDGPUNIDevice::~AMDGPUNIDevice() {
|
|
}
|
|
|
|
size_t
|
|
AMDGPUNIDevice::getMaxLDSSize() const {
|
|
if (usesHardware(AMDGPUDeviceInfo::LocalMem)) {
|
|
return MAX_LDS_SIZE_900;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
uint32_t
|
|
AMDGPUNIDevice::getGeneration() const {
|
|
return AMDGPUDeviceInfo::HD6XXX;
|
|
}
|
|
|
|
|
|
AMDGPUCaymanDevice::AMDGPUCaymanDevice(AMDGPUSubtarget *ST)
|
|
: AMDGPUNIDevice(ST) {
|
|
setCaps();
|
|
}
|
|
|
|
AMDGPUCaymanDevice::~AMDGPUCaymanDevice() {
|
|
}
|
|
|
|
void
|
|
AMDGPUCaymanDevice::setCaps() {
|
|
if (mSTM->isOverride(AMDGPUDeviceInfo::DoubleOps)) {
|
|
mHWBits.set(AMDGPUDeviceInfo::DoubleOps);
|
|
mHWBits.set(AMDGPUDeviceInfo::FMA);
|
|
}
|
|
mHWBits.set(AMDGPUDeviceInfo::Signed24BitOps);
|
|
mSWBits.reset(AMDGPUDeviceInfo::Signed24BitOps);
|
|
mSWBits.set(AMDGPUDeviceInfo::ArenaSegment);
|
|
}
|
|
|