2012-12-12 05:25:42 +08: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"
|
2016-04-15 03:09:28 +08:00
|
|
|
#include "AMDGPUCallLowering.h"
|
2014-07-26 06:22:39 +08:00
|
|
|
#include "R600ISelLowering.h"
|
2014-06-13 09:32:00 +08:00
|
|
|
#include "R600InstrInfo.h"
|
2014-07-26 06:22:39 +08:00
|
|
|
#include "R600MachineScheduler.h"
|
2015-11-07 02:23:00 +08:00
|
|
|
#include "SIFrameLowering.h"
|
2014-07-26 06:22:39 +08:00
|
|
|
#include "SIISelLowering.h"
|
2015-01-14 19:23:27 +08:00
|
|
|
#include "SIInstrInfo.h"
|
2015-01-21 03:33:04 +08:00
|
|
|
#include "SIMachineFunctionInfo.h"
|
2014-07-13 10:08:26 +08:00
|
|
|
#include "llvm/ADT/SmallString.h"
|
2015-01-30 00:55:25 +08:00
|
|
|
#include "llvm/CodeGen/MachineScheduler.h"
|
2014-07-13 10:08:26 +08:00
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 06:55:11 +08:00
|
|
|
#define DEBUG_TYPE "amdgpu-subtarget"
|
|
|
|
|
2012-12-12 05:25:42 +08:00
|
|
|
#define GET_SUBTARGETINFO_ENUM
|
|
|
|
#define GET_SUBTARGETINFO_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "AMDGPUGenSubtargetInfo.inc"
|
|
|
|
|
2016-04-15 03:09:28 +08:00
|
|
|
#ifdef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
namespace {
|
|
|
|
struct AMDGPUGISelActualAccessor : public GISelAccessor {
|
|
|
|
std::unique_ptr<CallLowering> CallLoweringInfo;
|
|
|
|
const CallLowering *getCallLowering() const override {
|
|
|
|
return CallLoweringInfo.get();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} // End anonymous namespace.
|
|
|
|
#endif
|
|
|
|
|
2014-07-26 06:22:39 +08:00
|
|
|
AMDGPUSubtarget &
|
2015-06-10 20:11:26 +08:00
|
|
|
AMDGPUSubtarget::initializeSubtargetDependencies(const Triple &TT,
|
|
|
|
StringRef GPU, StringRef FS) {
|
2014-07-26 06:22:39 +08:00
|
|
|
// Determine default and user-specified characteristics
|
2014-07-15 07:40:49 +08: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 10:08:26 +08:00
|
|
|
|
2014-07-15 07:40:49 +08:00
|
|
|
SmallString<256> FullFS("+promote-alloca,+fp64-denormals,");
|
2015-12-23 04:55:23 +08:00
|
|
|
if (isAmdHsaOS()) // Turn on FlatForGlobal for HSA.
|
|
|
|
FullFS += "+flat-for-global,";
|
2014-07-13 10:08:26 +08:00
|
|
|
FullFS += FS;
|
|
|
|
|
|
|
|
ParseSubtargetFeatures(GPU, FullFS);
|
2014-06-13 09:32:00 +08:00
|
|
|
|
2014-07-26 06:22:39 +08: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 09:32:00 +08:00
|
|
|
if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
|
2014-07-15 07:40:49 +08:00
|
|
|
FP32Denormals = false;
|
|
|
|
FP64Denormals = false;
|
2014-07-26 06:22:39 +08:00
|
|
|
}
|
2016-02-12 10:40:47 +08:00
|
|
|
|
|
|
|
// Set defaults if needed.
|
|
|
|
if (MaxPrivateElementSize == 0)
|
2016-05-11 08:28:54 +08:00
|
|
|
MaxPrivateElementSize = 4;
|
2016-02-12 10:40:47 +08:00
|
|
|
|
2014-07-26 06:22:39 +08:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2015-06-10 20:11:26 +08:00
|
|
|
AMDGPUSubtarget::AMDGPUSubtarget(const Triple &TT, StringRef GPU, StringRef FS,
|
2014-07-26 06:22:39 +08:00
|
|
|
TargetMachine &TM)
|
2016-01-27 10:17:49 +08:00
|
|
|
: AMDGPUGenSubtargetInfo(TT, GPU, FS),
|
2015-09-16 00:17:27 +08:00
|
|
|
DumpCode(false), R600ALUInst(false), HasVertexCache(false),
|
|
|
|
TexVTXClauseSize(0), Gen(AMDGPUSubtarget::R600), FP64(false),
|
2016-01-29 04:53:42 +08:00
|
|
|
FP64Denormals(false), FP32Denormals(false), FPExceptions(false),
|
|
|
|
FastFMAF32(false), HalfRate64Ops(false), CaymanISA(false),
|
|
|
|
FlatAddressSpace(false), FlatForGlobal(false), EnableIRStructurizer(true),
|
2016-01-19 05:13:50 +08:00
|
|
|
EnablePromoteAlloca(false),
|
|
|
|
EnableIfCvt(true), EnableLoadStoreOpt(false),
|
|
|
|
EnableUnsafeDSOffsetFolding(false),
|
2016-01-05 07:35:53 +08:00
|
|
|
EnableXNACK(false),
|
2016-01-19 05:13:50 +08:00
|
|
|
WavefrontSize(0), CFALUBug(false),
|
2016-02-12 10:40:47 +08:00
|
|
|
LocalMemorySize(0), MaxPrivateElementSize(0),
|
2015-06-10 20:11:26 +08:00
|
|
|
EnableVGPRSpilling(false), SGPRInitBug(false), IsGCN(false),
|
2016-02-27 16:53:55 +08:00
|
|
|
GCN1Encoding(false), GCN3Encoding(false), CIInsts(false),
|
|
|
|
HasSMemRealTime(false), Has16BitInsts(false),
|
2016-02-27 16:53:46 +08:00
|
|
|
LDSBankCount(0),
|
2016-02-28 04:26:57 +08:00
|
|
|
IsaVersion(ISAVersion0_0_0),
|
2016-04-19 00:28:23 +08:00
|
|
|
EnableSIScheduler(false),
|
2016-05-25 02:37:18 +08:00
|
|
|
DebuggerInsertNops(false), DebuggerReserveRegs(false),
|
2016-04-19 00:28:23 +08:00
|
|
|
FrameLowering(nullptr),
|
2016-04-15 03:09:28 +08:00
|
|
|
GISel(),
|
2015-02-19 08:15:33 +08:00
|
|
|
InstrItins(getInstrItineraryForCPU(GPU)), TargetTriple(TT) {
|
2015-01-29 00:04:26 +08:00
|
|
|
|
|
|
|
initializeSubtargetDependencies(TT, GPU, FS);
|
|
|
|
|
2015-11-07 02:17:45 +08:00
|
|
|
const unsigned MaxStackAlign = 64 * 16; // Maximum stack alignment (long16)
|
|
|
|
|
2014-07-26 06:22:39 +08:00
|
|
|
if (getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
|
|
|
|
InstrInfo.reset(new R600InstrInfo(*this));
|
2015-01-31 07:24:40 +08:00
|
|
|
TLInfo.reset(new R600TargetLowering(TM, *this));
|
2015-11-07 02:17:45 +08:00
|
|
|
|
|
|
|
// FIXME: Should have R600 specific FrameLowering
|
|
|
|
FrameLowering.reset(new AMDGPUFrameLowering(
|
|
|
|
TargetFrameLowering::StackGrowsUp,
|
|
|
|
MaxStackAlign,
|
|
|
|
0));
|
2014-06-13 09:32:00 +08:00
|
|
|
} else {
|
|
|
|
InstrInfo.reset(new SIInstrInfo(*this));
|
2015-01-31 07:24:40 +08:00
|
|
|
TLInfo.reset(new SITargetLowering(TM, *this));
|
2015-11-07 02:17:45 +08:00
|
|
|
FrameLowering.reset(new SIFrameLowering(
|
|
|
|
TargetFrameLowering::StackGrowsUp,
|
|
|
|
MaxStackAlign,
|
|
|
|
0));
|
2016-04-15 03:09:28 +08:00
|
|
|
#ifndef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
GISelAccessor *GISel = new GISelAccessor();
|
|
|
|
#else
|
|
|
|
AMDGPUGISelActualAccessor *GISel =
|
|
|
|
new AMDGPUGISelActualAccessor();
|
|
|
|
GISel->CallLoweringInfo.reset(
|
|
|
|
new AMDGPUCallLowering(*getTargetLowering()));
|
|
|
|
#endif
|
|
|
|
setGISelAccessor(*GISel);
|
2014-06-13 09:32:00 +08:00
|
|
|
}
|
2012-12-12 05:25:42 +08:00
|
|
|
}
|
|
|
|
|
2016-04-15 03:09:28 +08:00
|
|
|
const CallLowering *AMDGPUSubtarget::getCallLowering() const {
|
|
|
|
assert(GISel && "Access to GlobalISel APIs not set");
|
|
|
|
return GISel->getCallLowering();
|
|
|
|
}
|
|
|
|
|
2014-06-28 01:57:00 +08:00
|
|
|
unsigned AMDGPUSubtarget::getStackEntrySize() const {
|
2014-01-23 05:55:43 +08:00
|
|
|
assert(getGeneration() <= NORTHERN_ISLANDS);
|
|
|
|
switch(getWavefrontSize()) {
|
|
|
|
case 16:
|
|
|
|
return 8;
|
|
|
|
case 32:
|
2014-06-28 01:57:00 +08:00
|
|
|
return hasCaymanISA() ? 4 : 8;
|
2014-01-23 05:55:43 +08:00
|
|
|
case 64:
|
|
|
|
return 4;
|
|
|
|
default:
|
|
|
|
llvm_unreachable("Illegal wavefront size.");
|
|
|
|
}
|
|
|
|
}
|
2014-12-03 06:00:07 +08:00
|
|
|
|
2016-05-17 05:19:59 +08:00
|
|
|
// FIXME: These limits are for SI. Did they change with the larger maximum LDS
|
|
|
|
// size?
|
|
|
|
unsigned AMDGPUSubtarget::getMaxLocalMemSizeWithWaveCount(unsigned NWaves) const {
|
|
|
|
switch (NWaves) {
|
|
|
|
case 10:
|
|
|
|
return 1638;
|
|
|
|
case 9:
|
|
|
|
return 1820;
|
|
|
|
case 8:
|
|
|
|
return 2048;
|
|
|
|
case 7:
|
|
|
|
return 2340;
|
|
|
|
case 6:
|
|
|
|
return 2730;
|
|
|
|
case 5:
|
|
|
|
return 3276;
|
|
|
|
case 4:
|
|
|
|
return 4096;
|
|
|
|
case 3:
|
|
|
|
return 5461;
|
|
|
|
case 2:
|
|
|
|
return 8192;
|
|
|
|
default:
|
|
|
|
return getLocalMemorySize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned AMDGPUSubtarget::getOccupancyWithLocalMemSize(uint32_t Bytes) const {
|
|
|
|
if (Bytes <= 1638)
|
|
|
|
return 10;
|
|
|
|
|
|
|
|
if (Bytes <= 1820)
|
|
|
|
return 9;
|
|
|
|
|
|
|
|
if (Bytes <= 2048)
|
|
|
|
return 8;
|
|
|
|
|
|
|
|
if (Bytes <= 2340)
|
|
|
|
return 7;
|
|
|
|
|
|
|
|
if (Bytes <= 2730)
|
|
|
|
return 6;
|
|
|
|
|
|
|
|
if (Bytes <= 3276)
|
|
|
|
return 5;
|
|
|
|
|
|
|
|
if (Bytes <= 4096)
|
|
|
|
return 4;
|
|
|
|
|
|
|
|
if (Bytes <= 5461)
|
|
|
|
return 3;
|
|
|
|
|
|
|
|
if (Bytes <= 8192)
|
|
|
|
return 2;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-12-03 06:00:07 +08:00
|
|
|
unsigned AMDGPUSubtarget::getAmdKernelCodeChipID() const {
|
|
|
|
switch(getGeneration()) {
|
|
|
|
default: llvm_unreachable("ChipID unknown");
|
|
|
|
case SEA_ISLANDS: return 12;
|
|
|
|
}
|
|
|
|
}
|
2015-01-21 03:33:04 +08:00
|
|
|
|
2015-06-27 05:15:07 +08:00
|
|
|
AMDGPU::IsaVersion AMDGPUSubtarget::getIsaVersion() const {
|
|
|
|
return AMDGPU::getIsaVersion(getFeatureBits());
|
|
|
|
}
|
|
|
|
|
2016-04-07 03:40:20 +08:00
|
|
|
bool AMDGPUSubtarget::isVGPRSpillingEnabled(const Function& F) const {
|
|
|
|
return !AMDGPU::isShader(F.getCallingConv()) || EnableVGPRSpilling;
|
2015-01-21 03:33:04 +08:00
|
|
|
}
|
2015-01-30 00:55:25 +08:00
|
|
|
|
|
|
|
void AMDGPUSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
|
|
|
|
MachineInstr *begin,
|
|
|
|
MachineInstr *end,
|
|
|
|
unsigned NumRegionInstrs) const {
|
|
|
|
if (getGeneration() >= SOUTHERN_ISLANDS) {
|
|
|
|
|
|
|
|
// Track register pressure so the scheduler can try to decrease
|
|
|
|
// pressure once register usage is above the threshold defined by
|
|
|
|
// SIRegisterInfo::getRegPressureSetLimit()
|
|
|
|
Policy.ShouldTrackPressure = true;
|
|
|
|
|
|
|
|
// Enabling both top down and bottom up scheduling seems to give us less
|
|
|
|
// register spills than just using one of these approaches on its own.
|
|
|
|
Policy.OnlyTopDown = false;
|
|
|
|
Policy.OnlyBottomUp = false;
|
2016-03-31 00:35:09 +08:00
|
|
|
|
|
|
|
// Enabling ShouldTrackLaneMasks crashes the SI Machine Scheduler.
|
|
|
|
if (!enableSIScheduler())
|
|
|
|
Policy.ShouldTrackLaneMasks = true;
|
2015-01-30 00:55:25 +08:00
|
|
|
}
|
|
|
|
}
|
2015-06-27 05:15:07 +08:00
|
|
|
|