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"
|
2014-07-25 22:22:39 +00:00
|
|
|
#include "R600ISelLowering.h"
|
2014-06-13 01:32:00 +00:00
|
|
|
#include "R600InstrInfo.h"
|
2014-07-25 22:22:39 +00:00
|
|
|
#include "R600MachineScheduler.h"
|
2014-06-13 01:32:00 +00:00
|
|
|
#include "SIInstrInfo.h"
|
2014-07-25 22:22:39 +00:00
|
|
|
#include "SIISelLowering.h"
|
2014-07-14 23:40:49 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2012-12-11 21:25:42 +00:00
|
|
|
|
2014-07-13 02:08:26 +00:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
|
|
|
|
2012-12-11 21:25:42 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-21 22:55:11 +00:00
|
|
|
#define DEBUG_TYPE "amdgpu-subtarget"
|
|
|
|
|
2012-12-11 21:25:42 +00:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "AMDGPUGenSubtargetInfo.inc"
|
|
|
|
|
2014-07-25 22:22:39 +00:00
|
|
|
static std::string computeDataLayout(const AMDGPUSubtarget &ST) {
|
|
|
|
std::string Ret = "e-p:32:32";
|
|
|
|
|
|
|
|
if (ST.is64bit()) {
|
2014-08-06 00:44:25 +00:00
|
|
|
// 32-bit private, local, and region pointers. 64-bit global and constant.
|
2014-07-25 22:22:39 +00:00
|
|
|
Ret += "-p1:64:64-p2:64:64-p3:32:32-p4:64:64-p5:32:32-p24:64:64";
|
|
|
|
}
|
|
|
|
|
|
|
|
Ret += "-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256"
|
|
|
|
"-v512:512-v1024:1024-v2048:2048-n32:64";
|
|
|
|
|
|
|
|
return Ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
AMDGPUSubtarget &
|
|
|
|
AMDGPUSubtarget::initializeSubtargetDependencies(StringRef GPU, StringRef FS) {
|
|
|
|
// Determine default and user-specified characteristics
|
2014-07-14 23:40:49 +00:00
|
|
|
// On SI+, we want FP64 denormals to be on by default. FP32 denormals can be
|
|
|
|
// enabled, but some instructions do not respect them and they run at the
|
|
|
|
// double precision rate, so don't enable by default.
|
|
|
|
//
|
|
|
|
// We want to be able to turn these off, but making this a subtarget feature
|
|
|
|
// for SI has the unhelpful behavior that it unsets everything else if you
|
|
|
|
// disable it.
|
2014-07-13 02:08:26 +00:00
|
|
|
|
2014-07-14 23:40:49 +00:00
|
|
|
SmallString<256> FullFS("+promote-alloca,+fp64-denormals,");
|
2014-07-13 02:08:26 +00:00
|
|
|
FullFS += FS;
|
|
|
|
|
|
|
|
ParseSubtargetFeatures(GPU, FullFS);
|
2014-06-13 01:32:00 +00:00
|
|
|
|
2014-07-25 22:22:39 +00:00
|
|
|
// FIXME: I don't think think Evergreen has any useful support for
|
|
|
|
// denormals, but should be checked. Should we issue a warning somewhere
|
|
|
|
// if someone tries to enable these?
|
2014-06-13 01:32:00 +00:00
|
|
|
if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
|
2014-07-14 23:40:49 +00:00
|
|
|
FP32Denormals = false;
|
|
|
|
FP64Denormals = false;
|
2014-07-25 22:22:39 +00:00
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
AMDGPUSubtarget::AMDGPUSubtarget(StringRef TT, StringRef GPU, StringRef FS,
|
|
|
|
TargetMachine &TM)
|
|
|
|
: AMDGPUGenSubtargetInfo(TT, GPU, FS), DevName(GPU), Is64bit(false),
|
|
|
|
DumpCode(false), R600ALUInst(false), HasVertexCache(false),
|
|
|
|
TexVTXClauseSize(0), Gen(AMDGPUSubtarget::R600), FP64(false),
|
|
|
|
FP64Denormals(false), FP32Denormals(false), CaymanISA(false),
|
2014-09-15 15:41:53 +00:00
|
|
|
FlatAddressSpace(false), EnableIRStructurizer(true),
|
|
|
|
EnablePromoteAlloca(false), EnableIfCvt(true),
|
2014-10-10 22:01:59 +00:00
|
|
|
EnableLoadStoreOpt(false), WavefrontSize(0), CFALUBug(false), LocalMemorySize(0),
|
2014-07-25 22:22:39 +00:00
|
|
|
DL(computeDataLayout(initializeSubtargetDependencies(GPU, FS))),
|
|
|
|
FrameLowering(TargetFrameLowering::StackGrowsUp,
|
|
|
|
64 * 16, // Maximum stack alignment (long16)
|
|
|
|
0),
|
2014-12-02 17:05:41 +00:00
|
|
|
InstrItins(getInstrItineraryForCPU(GPU)),
|
|
|
|
TargetTriple(TT) {
|
2014-07-25 22:22:39 +00:00
|
|
|
if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
|
|
|
|
InstrInfo.reset(new R600InstrInfo(*this));
|
|
|
|
TLInfo.reset(new R600TargetLowering(TM));
|
2014-06-13 01:32:00 +00:00
|
|
|
} else {
|
|
|
|
InstrInfo.reset(new SIInstrInfo(*this));
|
2014-07-25 22:22:39 +00:00
|
|
|
TLInfo.reset(new SITargetLowering(TM));
|
2014-06-13 01:32:00 +00:00
|
|
|
}
|
2012-12-11 21:25:42 +00:00
|
|
|
}
|
|
|
|
|
2014-06-27 17:57:00 +00:00
|
|
|
unsigned AMDGPUSubtarget::getStackEntrySize() const {
|
2014-01-22 21:55:43 +00:00
|
|
|
assert(getGeneration() <= NORTHERN_ISLANDS);
|
|
|
|
switch(getWavefrontSize()) {
|
|
|
|
case 16:
|
|
|
|
return 8;
|
|
|
|
case 32:
|
2014-06-27 17:57:00 +00:00
|
|
|
return hasCaymanISA() ? 4 : 8;
|
2014-01-22 21:55:43 +00:00
|
|
|
case 64:
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Illegal wavefront size.");
|
|
|
|
}
|
|
|
|
}
|
2014-12-02 22:00:07 +00:00
|
|
|
|
|
|
|
unsigned AMDGPUSubtarget::getAmdKernelCodeChipID() const {
|
|
|
|
switch(getGeneration()) {
|
|
|
|
default: llvm_unreachable("ChipID unknown");
|
|
|
|
case SEA_ISLANDS: return 12;
|
|
|
|
}
|
|
|
|
}
|