2012-12-11 21:25:42 +00:00
|
|
|
//===-- AMDGPUSubtarget.cpp - AMDGPU Subtarget Information ----------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief Implements the AMDGPU specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "AMDGPUSubtarget.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "AMDGPUGenSubtargetInfo.inc"
|
|
|
|
|
|
|
|
AMDGPUSubtarget::AMDGPUSubtarget(StringRef TT, StringRef CPU, StringRef FS) :
|
|
|
|
AMDGPUGenSubtargetInfo(TT, CPU, FS), DumpCode(false) {
|
|
|
|
InstrItins = getInstrItineraryForCPU(CPU);
|
|
|
|
|
|
|
|
// Default card
|
|
|
|
StringRef GPU = CPU;
|
|
|
|
Is64bit = false;
|
|
|
|
DefaultSize[0] = 64;
|
|
|
|
DefaultSize[1] = 1;
|
|
|
|
DefaultSize[2] = 1;
|
2013-04-30 00:13:39 +00:00
|
|
|
HasVertexCache = false;
|
2013-06-07 20:28:55 +00:00
|
|
|
TexVTXClauseSize = 0;
|
2013-06-07 20:37:48 +00:00
|
|
|
Gen = AMDGPUSubtarget::R600;
|
|
|
|
FP64 = false;
|
|
|
|
CaymanISA = false;
|
2013-11-18 19:43:44 +00:00
|
|
|
EnableIRStructurizer = true;
|
2013-11-18 19:43:33 +00:00
|
|
|
EnableIfCvt = true;
|
2014-01-22 21:55:40 +00:00
|
|
|
WavefrontSize = 0;
|
2014-01-23 16:18:02 +00:00
|
|
|
CFALUBug = false;
|
2012-12-11 21:25:42 +00:00
|
|
|
ParseSubtargetFeatures(GPU, FS);
|
|
|
|
DevName = GPU;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AMDGPUSubtarget::is64bit() const {
|
|
|
|
return Is64bit;
|
|
|
|
}
|
|
|
|
bool
|
2013-04-30 00:13:39 +00:00
|
|
|
AMDGPUSubtarget::hasVertexCache() const {
|
|
|
|
return HasVertexCache;
|
|
|
|
}
|
2013-05-17 16:49:55 +00:00
|
|
|
short
|
|
|
|
AMDGPUSubtarget::getTexVTXClauseSize() const {
|
|
|
|
return TexVTXClauseSize;
|
|
|
|
}
|
2013-06-07 20:37:48 +00:00
|
|
|
enum AMDGPUSubtarget::Generation
|
|
|
|
AMDGPUSubtarget::getGeneration() const {
|
|
|
|
return Gen;
|
|
|
|
}
|
|
|
|
bool
|
|
|
|
AMDGPUSubtarget::hasHWFP64() const {
|
|
|
|
return FP64;
|
|
|
|
}
|
|
|
|
bool
|
|
|
|
AMDGPUSubtarget::hasCaymanISA() const {
|
|
|
|
return CaymanISA;
|
|
|
|
}
|
2013-04-30 00:13:39 +00:00
|
|
|
bool
|
2013-10-10 17:11:12 +00:00
|
|
|
AMDGPUSubtarget::IsIRStructurizerEnabled() const {
|
|
|
|
return EnableIRStructurizer;
|
|
|
|
}
|
|
|
|
bool
|
2013-11-18 19:43:33 +00:00
|
|
|
AMDGPUSubtarget::isIfCvtEnabled() const {
|
|
|
|
return EnableIfCvt;
|
|
|
|
}
|
2014-01-22 21:55:40 +00:00
|
|
|
unsigned
|
|
|
|
AMDGPUSubtarget::getWavefrontSize() const {
|
|
|
|
return WavefrontSize;
|
|
|
|
}
|
2014-01-22 21:55:43 +00:00
|
|
|
unsigned
|
|
|
|
AMDGPUSubtarget::getStackEntrySize() const {
|
|
|
|
assert(getGeneration() <= NORTHERN_ISLANDS);
|
|
|
|
switch(getWavefrontSize()) {
|
|
|
|
case 16:
|
|
|
|
return 8;
|
|
|
|
case 32:
|
|
|
|
if (hasCaymanISA())
|
|
|
|
return 4;
|
|
|
|
else
|
|
|
|
return 8;
|
|
|
|
case 64:
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Illegal wavefront size.");
|
|
|
|
}
|
|
|
|
}
|
2013-11-18 19:43:33 +00:00
|
|
|
bool
|
2014-01-23 16:18:02 +00:00
|
|
|
AMDGPUSubtarget::hasCFAluBug() const {
|
|
|
|
assert(getGeneration() <= NORTHERN_ISLANDS);
|
|
|
|
return CFALUBug;
|
|
|
|
}
|
|
|
|
bool
|
2012-12-11 21:25:42 +00:00
|
|
|
AMDGPUSubtarget::isTargetELF() const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
size_t
|
|
|
|
AMDGPUSubtarget::getDefaultSize(uint32_t dim) const {
|
2013-12-06 02:45:24 +00:00
|
|
|
if (dim > 2) {
|
2012-12-11 21:25:42 +00:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return DefaultSize[dim];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string
|
|
|
|
AMDGPUSubtarget::getDeviceName() const {
|
|
|
|
return DevName;
|
|
|
|
}
|