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"
|
2017-07-06 02:40:56 +08:00
|
|
|
#include "AMDGPU.h"
|
|
|
|
#include "AMDGPUTargetMachine.h"
|
|
|
|
#ifdef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
#include "AMDGPUCallLowering.h"
|
|
|
|
#include "AMDGPUInstructionSelector.h"
|
|
|
|
#include "AMDGPULegalizerInfo.h"
|
|
|
|
#include "AMDGPURegisterBankInfo.h"
|
|
|
|
#endif
|
2017-02-08 21:02:33 +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"
|
2017-04-13 04:48:56 +08:00
|
|
|
#include "llvm/IR/MDBuilder.h"
|
2016-12-13 06:23:53 +08:00
|
|
|
#include "llvm/Target/TargetFrameLowering.h"
|
|
|
|
#include <algorithm>
|
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_TARGET_DESC
|
|
|
|
#define GET_SUBTARGETINFO_CTOR
|
|
|
|
#include "AMDGPUGenSubtargetInfo.inc"
|
|
|
|
|
2016-12-13 06:23:53 +08:00
|
|
|
AMDGPUSubtarget::~AMDGPUSubtarget() = default;
|
2016-06-24 14:30:11 +08:00
|
|
|
|
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
|
|
|
|
2017-02-22 07:35:48 +08:00
|
|
|
SmallString<256> FullFS("+promote-alloca,+fp64-fp16-denormals,+dx10-clamp,+load-store-opt,");
|
2015-12-23 04:55:23 +08:00
|
|
|
if (isAmdHsaOS()) // Turn on FlatForGlobal for HSA.
|
2017-02-10 10:15:29 +08:00
|
|
|
FullFS += "+flat-for-global,+unaligned-buffer-access,+trap-handler,";
|
2017-01-24 06:31:03 +08:00
|
|
|
|
2014-07-13 10:08:26 +08:00
|
|
|
FullFS += FS;
|
|
|
|
|
|
|
|
ParseSubtargetFeatures(GPU, FullFS);
|
2014-06-13 09:32:00 +08:00
|
|
|
|
2017-01-28 01:42:26 +08:00
|
|
|
// Unless +-flat-for-global is specified, turn on FlatForGlobal for all OS-es
|
|
|
|
// on VI and newer hardware to avoid assertion failures due to missing ADDR64
|
|
|
|
// variants of MUBUF instructions.
|
|
|
|
if (!hasAddr64() && !FS.contains("flat-for-global")) {
|
|
|
|
FlatForGlobal = true;
|
|
|
|
}
|
|
|
|
|
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) {
|
2017-01-24 06:31:03 +08:00
|
|
|
FP64FP16Denormals = false;
|
2014-07-15 07:40:49 +08:00
|
|
|
FP32Denormals = 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;
|
|
|
|
}
|
|
|
|
|
2017-07-06 02:40:56 +08:00
|
|
|
#ifdef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
struct SIGISelActualAccessor : public GISelAccessor {
|
|
|
|
std::unique_ptr<AMDGPUCallLowering> CallLoweringInfo;
|
|
|
|
std::unique_ptr<InstructionSelector> InstSelector;
|
|
|
|
std::unique_ptr<LegalizerInfo> Legalizer;
|
|
|
|
std::unique_ptr<RegisterBankInfo> RegBankInfo;
|
|
|
|
const AMDGPUCallLowering *getCallLowering() const override {
|
|
|
|
return CallLoweringInfo.get();
|
|
|
|
}
|
|
|
|
const InstructionSelector *getInstructionSelector() const override {
|
|
|
|
return InstSelector.get();
|
|
|
|
}
|
|
|
|
const LegalizerInfo *getLegalizerInfo() const override {
|
|
|
|
return Legalizer.get();
|
|
|
|
}
|
|
|
|
const RegisterBankInfo *getRegBankInfo() const override {
|
|
|
|
return RegBankInfo.get();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end anonymous namespace
|
|
|
|
#endif
|
|
|
|
|
2015-06-10 20:11:26 +08:00
|
|
|
AMDGPUSubtarget::AMDGPUSubtarget(const Triple &TT, StringRef GPU, StringRef FS,
|
2016-06-24 14:30:11 +08:00
|
|
|
const TargetMachine &TM)
|
|
|
|
: AMDGPUGenSubtargetInfo(TT, GPU, FS),
|
|
|
|
TargetTriple(TT),
|
|
|
|
Gen(TT.getArch() == Triple::amdgcn ? SOUTHERN_ISLANDS : R600),
|
|
|
|
IsaVersion(ISAVersion0_0_0),
|
|
|
|
WavefrontSize(64),
|
|
|
|
LocalMemorySize(0),
|
|
|
|
LDSBankCount(0),
|
|
|
|
MaxPrivateElementSize(0),
|
|
|
|
|
|
|
|
FastFMAF32(false),
|
|
|
|
HalfRate64Ops(false),
|
|
|
|
|
|
|
|
FP32Denormals(false),
|
2017-01-24 06:31:03 +08:00
|
|
|
FP64FP16Denormals(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
FPExceptions(false),
|
2017-02-22 07:35:48 +08:00
|
|
|
DX10Clamp(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
FlatForGlobal(false),
|
2017-06-03 01:40:26 +08:00
|
|
|
AutoWaitcntBeforeBarrier(false),
|
2016-10-15 02:10:39 +08:00
|
|
|
UnalignedScratchAccess(false),
|
2016-07-02 07:03:44 +08:00
|
|
|
UnalignedBufferAccess(false),
|
|
|
|
|
2017-02-19 02:29:53 +08:00
|
|
|
HasApertureRegs(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
EnableXNACK(false),
|
2017-02-10 10:15:29 +08:00
|
|
|
TrapHandler(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
DebuggerInsertNops(false),
|
|
|
|
DebuggerReserveRegs(false),
|
2016-06-25 11:11:28 +08:00
|
|
|
DebuggerEmitPrologue(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
|
|
|
|
EnableVGPRSpilling(false),
|
|
|
|
EnablePromoteAlloca(false),
|
|
|
|
EnableLoadStoreOpt(false),
|
|
|
|
EnableUnsafeDSOffsetFolding(false),
|
|
|
|
EnableSIScheduler(false),
|
|
|
|
DumpCode(false),
|
|
|
|
|
|
|
|
FP64(false),
|
|
|
|
IsGCN(false),
|
|
|
|
GCN1Encoding(false),
|
|
|
|
GCN3Encoding(false),
|
|
|
|
CIInsts(false),
|
2017-02-19 03:12:26 +08:00
|
|
|
GFX9Insts(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
SGPRInitBug(false),
|
|
|
|
HasSMemRealTime(false),
|
|
|
|
Has16BitInsts(false),
|
2017-02-28 02:49:11 +08:00
|
|
|
HasVOP3PInsts(false),
|
2016-10-13 02:00:51 +08:00
|
|
|
HasMovrel(false),
|
|
|
|
HasVGPRIndexMode(false),
|
2016-10-29 12:05:06 +08:00
|
|
|
HasScalarStores(false),
|
2017-01-20 18:37:53 +08:00
|
|
|
HasInv2PiInlineImm(false),
|
2017-01-20 18:01:25 +08:00
|
|
|
HasSDWA(false),
|
2017-06-22 14:26:41 +08:00
|
|
|
HasSDWAOmod(false),
|
|
|
|
HasSDWAScalar(false),
|
|
|
|
HasSDWASdst(false),
|
|
|
|
HasSDWAMac(false),
|
[AMDGPU] SDWA: several fixes for V_CVT and VOPC instructions
Summary:
1. Instruction V_CVT_U32_F32 allow omod operand (see SIInstrInfo.td:1435). In fact this operand shouldn't be allowed here. This fix checks if SDWA pseudo instruction has OMod operand and then copy it.
2. There were several problems with support of VOPC instructions in SDWA peephole pass.
Reviewers: tstellar, arsenm, vpykhtin, airlied, kzhuravl
Subscribers: wdng, nhaehnle, yaxunl, dstuttard, tpr, sarnex, t-tye
Differential Revision: https://reviews.llvm.org/D34626
llvm-svn: 306413
2017-06-27 23:02:23 +08:00
|
|
|
HasSDWAOutModsVOPC(false),
|
2017-01-20 18:01:25 +08:00
|
|
|
HasDPP(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
FlatAddressSpace(false),
|
2017-05-11 05:19:05 +08:00
|
|
|
FlatInstOffsets(false),
|
|
|
|
FlatGlobalInsts(false),
|
|
|
|
FlatScratchInsts(false),
|
2017-07-21 01:42:47 +08:00
|
|
|
AddNoCarryInsts(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
|
|
|
|
R600ALUInst(false),
|
|
|
|
CaymanISA(false),
|
|
|
|
CFALUBug(false),
|
|
|
|
HasVertexCache(false),
|
|
|
|
TexVTXClauseSize(0),
|
2016-12-09 01:28:47 +08:00
|
|
|
ScalarizeGlobal(false),
|
2016-06-24 14:30:11 +08:00
|
|
|
|
|
|
|
FeatureDisable(false),
|
2016-12-13 06:23:53 +08:00
|
|
|
InstrItins(getInstrItineraryForCPU(GPU)) {
|
2017-03-27 22:04:01 +08:00
|
|
|
AS = AMDGPU::getAMDGPUAS(TT);
|
2015-01-29 00:04:26 +08:00
|
|
|
initializeSubtargetDependencies(TT, GPU, FS);
|
2014-01-23 05:55:43 +08:00
|
|
|
}
|
2014-12-03 06:00:07 +08:00
|
|
|
|
2017-02-02 06:59:50 +08:00
|
|
|
unsigned AMDGPUSubtarget::getMaxLocalMemSizeWithWaveCount(unsigned NWaves,
|
|
|
|
const Function &F) const {
|
|
|
|
if (NWaves == 1)
|
2016-05-17 05:19:59 +08:00
|
|
|
return getLocalMemorySize();
|
2017-02-02 06:59:50 +08:00
|
|
|
unsigned WorkGroupSize = getFlatWorkGroupSizes(F).second;
|
|
|
|
unsigned WorkGroupsPerCu = getMaxWorkGroupsPerCU(WorkGroupSize);
|
|
|
|
unsigned MaxWaves = getMaxWavesPerEU();
|
|
|
|
return getLocalMemorySize() * MaxWaves / WorkGroupsPerCu / NWaves;
|
2016-05-17 05:19:59 +08:00
|
|
|
}
|
|
|
|
|
2017-02-02 06:59:50 +08:00
|
|
|
unsigned AMDGPUSubtarget::getOccupancyWithLocalMemSize(uint32_t Bytes,
|
|
|
|
const Function &F) const {
|
|
|
|
unsigned WorkGroupSize = getFlatWorkGroupSizes(F).second;
|
|
|
|
unsigned WorkGroupsPerCu = getMaxWorkGroupsPerCU(WorkGroupSize);
|
|
|
|
unsigned MaxWaves = getMaxWavesPerEU();
|
|
|
|
unsigned Limit = getLocalMemorySize() * MaxWaves / WorkGroupsPerCu;
|
|
|
|
unsigned NumWaves = Limit / (Bytes ? Bytes : 1u);
|
|
|
|
NumWaves = std::min(NumWaves, MaxWaves);
|
|
|
|
NumWaves = std::max(NumWaves, 1u);
|
|
|
|
return NumWaves;
|
2016-05-17 05:19:59 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:22:28 +08:00
|
|
|
std::pair<unsigned, unsigned> AMDGPUSubtarget::getFlatWorkGroupSizes(
|
|
|
|
const Function &F) const {
|
|
|
|
// Default minimum/maximum flat work group sizes.
|
|
|
|
std::pair<unsigned, unsigned> Default =
|
|
|
|
AMDGPU::isCompute(F.getCallingConv()) ?
|
|
|
|
std::pair<unsigned, unsigned>(getWavefrontSize() * 2,
|
|
|
|
getWavefrontSize() * 4) :
|
|
|
|
std::pair<unsigned, unsigned>(1, getWavefrontSize());
|
|
|
|
|
|
|
|
// TODO: Do not process "amdgpu-max-work-group-size" attribute once mesa
|
|
|
|
// starts using "amdgpu-flat-work-group-size" attribute.
|
|
|
|
Default.second = AMDGPU::getIntegerAttribute(
|
|
|
|
F, "amdgpu-max-work-group-size", Default.second);
|
|
|
|
Default.first = std::min(Default.first, Default.second);
|
|
|
|
|
|
|
|
// Requested minimum/maximum flat work group sizes.
|
|
|
|
std::pair<unsigned, unsigned> Requested = AMDGPU::getIntegerPairAttribute(
|
|
|
|
F, "amdgpu-flat-work-group-size", Default);
|
|
|
|
|
|
|
|
// Make sure requested minimum is less than requested maximum.
|
|
|
|
if (Requested.first > Requested.second)
|
|
|
|
return Default;
|
|
|
|
|
|
|
|
// Make sure requested values do not violate subtarget's specifications.
|
|
|
|
if (Requested.first < getMinFlatWorkGroupSize())
|
|
|
|
return Default;
|
|
|
|
if (Requested.second > getMaxFlatWorkGroupSize())
|
|
|
|
return Default;
|
|
|
|
|
|
|
|
return Requested;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<unsigned, unsigned> AMDGPUSubtarget::getWavesPerEU(
|
|
|
|
const Function &F) const {
|
|
|
|
// Default minimum/maximum number of waves per execution unit.
|
2017-02-10 05:33:23 +08:00
|
|
|
std::pair<unsigned, unsigned> Default(1, getMaxWavesPerEU());
|
2016-09-07 04:22:28 +08:00
|
|
|
|
|
|
|
// Default/requested minimum/maximum flat work group sizes.
|
|
|
|
std::pair<unsigned, unsigned> FlatWorkGroupSizes = getFlatWorkGroupSizes(F);
|
|
|
|
|
|
|
|
// If minimum/maximum flat work group sizes were explicitly requested using
|
|
|
|
// "amdgpu-flat-work-group-size" attribute, then set default minimum/maximum
|
|
|
|
// number of waves per execution unit to values implied by requested
|
|
|
|
// minimum/maximum flat work group sizes.
|
|
|
|
unsigned MinImpliedByFlatWorkGroupSize =
|
|
|
|
getMaxWavesPerEU(FlatWorkGroupSizes.second);
|
|
|
|
bool RequestedFlatWorkGroupSize = false;
|
|
|
|
|
|
|
|
// TODO: Do not process "amdgpu-max-work-group-size" attribute once mesa
|
|
|
|
// starts using "amdgpu-flat-work-group-size" attribute.
|
|
|
|
if (F.hasFnAttribute("amdgpu-max-work-group-size") ||
|
|
|
|
F.hasFnAttribute("amdgpu-flat-work-group-size")) {
|
|
|
|
Default.first = MinImpliedByFlatWorkGroupSize;
|
|
|
|
RequestedFlatWorkGroupSize = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Requested minimum/maximum number of waves per execution unit.
|
|
|
|
std::pair<unsigned, unsigned> Requested = AMDGPU::getIntegerPairAttribute(
|
|
|
|
F, "amdgpu-waves-per-eu", Default, true);
|
|
|
|
|
|
|
|
// Make sure requested minimum is less than requested maximum.
|
|
|
|
if (Requested.second && Requested.first > Requested.second)
|
|
|
|
return Default;
|
|
|
|
|
|
|
|
// Make sure requested values do not violate subtarget's specifications.
|
|
|
|
if (Requested.first < getMinWavesPerEU() ||
|
|
|
|
Requested.first > getMaxWavesPerEU())
|
|
|
|
return Default;
|
|
|
|
if (Requested.second > getMaxWavesPerEU())
|
|
|
|
return Default;
|
|
|
|
|
|
|
|
// Make sure requested values are compatible with values implied by requested
|
|
|
|
// minimum/maximum flat work group sizes.
|
|
|
|
if (RequestedFlatWorkGroupSize &&
|
2017-07-17 03:38:47 +08:00
|
|
|
Requested.first < MinImpliedByFlatWorkGroupSize)
|
2016-09-07 04:22:28 +08:00
|
|
|
return Default;
|
|
|
|
|
|
|
|
return Requested;
|
|
|
|
}
|
|
|
|
|
2017-04-13 04:48:56 +08:00
|
|
|
bool AMDGPUSubtarget::makeLIDRangeMetadata(Instruction *I) const {
|
|
|
|
Function *Kernel = I->getParent()->getParent();
|
|
|
|
unsigned MinSize = 0;
|
|
|
|
unsigned MaxSize = getFlatWorkGroupSizes(*Kernel).second;
|
|
|
|
bool IdQuery = false;
|
|
|
|
|
|
|
|
// If reqd_work_group_size is present it narrows value down.
|
|
|
|
if (auto *CI = dyn_cast<CallInst>(I)) {
|
|
|
|
const Function *F = CI->getCalledFunction();
|
|
|
|
if (F) {
|
|
|
|
unsigned Dim = UINT_MAX;
|
|
|
|
switch (F->getIntrinsicID()) {
|
|
|
|
case Intrinsic::amdgcn_workitem_id_x:
|
|
|
|
case Intrinsic::r600_read_tidig_x:
|
|
|
|
IdQuery = true;
|
2017-07-07 18:18:57 +08:00
|
|
|
LLVM_FALLTHROUGH;
|
2017-04-13 04:48:56 +08:00
|
|
|
case Intrinsic::r600_read_local_size_x:
|
|
|
|
Dim = 0;
|
|
|
|
break;
|
|
|
|
case Intrinsic::amdgcn_workitem_id_y:
|
|
|
|
case Intrinsic::r600_read_tidig_y:
|
|
|
|
IdQuery = true;
|
2017-07-07 18:18:57 +08:00
|
|
|
LLVM_FALLTHROUGH;
|
2017-04-13 04:48:56 +08:00
|
|
|
case Intrinsic::r600_read_local_size_y:
|
|
|
|
Dim = 1;
|
|
|
|
break;
|
|
|
|
case Intrinsic::amdgcn_workitem_id_z:
|
|
|
|
case Intrinsic::r600_read_tidig_z:
|
|
|
|
IdQuery = true;
|
2017-07-07 18:18:57 +08:00
|
|
|
LLVM_FALLTHROUGH;
|
2017-04-13 04:48:56 +08:00
|
|
|
case Intrinsic::r600_read_local_size_z:
|
|
|
|
Dim = 2;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (Dim <= 3) {
|
|
|
|
if (auto Node = Kernel->getMetadata("reqd_work_group_size"))
|
|
|
|
if (Node->getNumOperands() == 3)
|
|
|
|
MinSize = MaxSize = mdconst::extract<ConstantInt>(
|
|
|
|
Node->getOperand(Dim))->getZExtValue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!MaxSize)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Range metadata is [Lo, Hi). For ID query we need to pass max size
|
|
|
|
// as Hi. For size query we need to pass Hi + 1.
|
|
|
|
if (IdQuery)
|
|
|
|
MinSize = 0;
|
|
|
|
else
|
|
|
|
++MaxSize;
|
|
|
|
|
|
|
|
MDBuilder MDB(I->getContext());
|
|
|
|
MDNode *MaxWorkGroupSizeRange = MDB.createRange(APInt(32, MinSize),
|
|
|
|
APInt(32, MaxSize));
|
|
|
|
I->setMetadata(LLVMContext::MD_range, MaxWorkGroupSizeRange);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-06-24 14:30:11 +08:00
|
|
|
R600Subtarget::R600Subtarget(const Triple &TT, StringRef GPU, StringRef FS,
|
|
|
|
const TargetMachine &TM) :
|
|
|
|
AMDGPUSubtarget(TT, GPU, FS, TM),
|
|
|
|
InstrInfo(*this),
|
|
|
|
FrameLowering(TargetFrameLowering::StackGrowsUp, getStackAlignment(), 0),
|
|
|
|
TLInfo(TM, *this) {}
|
|
|
|
|
|
|
|
SISubtarget::SISubtarget(const Triple &TT, StringRef GPU, StringRef FS,
|
2017-07-06 02:40:56 +08:00
|
|
|
const TargetMachine &TM)
|
|
|
|
: AMDGPUSubtarget(TT, GPU, FS, TM), InstrInfo(*this),
|
|
|
|
FrameLowering(TargetFrameLowering::StackGrowsUp, getStackAlignment(), 0),
|
|
|
|
TLInfo(TM, *this) {
|
|
|
|
#ifndef LLVM_BUILD_GLOBAL_ISEL
|
|
|
|
GISelAccessor *GISel = new GISelAccessor();
|
|
|
|
#else
|
|
|
|
SIGISelActualAccessor *GISel = new SIGISelActualAccessor();
|
|
|
|
GISel->CallLoweringInfo.reset(new AMDGPUCallLowering(*getTargetLowering()));
|
|
|
|
GISel->Legalizer.reset(new AMDGPULegalizerInfo());
|
|
|
|
|
|
|
|
GISel->RegBankInfo.reset(new AMDGPURegisterBankInfo(*getRegisterInfo()));
|
|
|
|
GISel->InstSelector.reset(new AMDGPUInstructionSelector(
|
|
|
|
*this, *static_cast<AMDGPURegisterBankInfo *>(GISel->RegBankInfo.get())));
|
|
|
|
#endif
|
|
|
|
setGISelAccessor(*GISel);
|
|
|
|
}
|
2015-06-27 05:15:07 +08:00
|
|
|
|
2016-06-24 14:30:11 +08:00
|
|
|
void SISubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy,
|
2016-06-28 08:11:26 +08:00
|
|
|
unsigned NumRegionInstrs) const {
|
2016-06-24 14:30:11 +08:00
|
|
|
// 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;
|
|
|
|
|
2017-02-14 22:29:05 +08:00
|
|
|
// Enabling ShouldTrackLaneMasks crashes the SI Machine Scheduler.
|
|
|
|
if (!enableSIScheduler())
|
|
|
|
Policy.ShouldTrackLaneMasks = true;
|
2016-06-24 14:30:11 +08:00
|
|
|
}
|
2015-01-30 00:55:25 +08:00
|
|
|
|
2016-06-24 14:30:11 +08:00
|
|
|
bool SISubtarget::isVGPRSpillingEnabled(const Function& F) const {
|
|
|
|
return EnableVGPRSpilling || !AMDGPU::isShader(F.getCallingConv());
|
|
|
|
}
|
2016-08-30 03:42:52 +08:00
|
|
|
|
2017-01-25 09:25:13 +08:00
|
|
|
unsigned SISubtarget::getKernArgSegmentSize(const MachineFunction &MF,
|
2017-02-08 21:29:23 +08:00
|
|
|
unsigned ExplicitArgBytes) const {
|
2017-01-25 09:25:13 +08:00
|
|
|
unsigned ImplicitBytes = getImplicitArgNumBytes(MF);
|
2016-09-23 09:33:26 +08:00
|
|
|
if (ImplicitBytes == 0)
|
|
|
|
return ExplicitArgBytes;
|
|
|
|
|
|
|
|
unsigned Alignment = getAlignmentForImplicitArgPtr();
|
|
|
|
return alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes;
|
|
|
|
}
|
|
|
|
|
2016-08-30 03:42:52 +08:00
|
|
|
unsigned SISubtarget::getOccupancyWithNumSGPRs(unsigned SGPRs) const {
|
|
|
|
if (getGeneration() >= SISubtarget::VOLCANIC_ISLANDS) {
|
|
|
|
if (SGPRs <= 80)
|
|
|
|
return 10;
|
|
|
|
if (SGPRs <= 88)
|
|
|
|
return 9;
|
|
|
|
if (SGPRs <= 100)
|
|
|
|
return 8;
|
|
|
|
return 7;
|
|
|
|
}
|
|
|
|
if (SGPRs <= 48)
|
|
|
|
return 10;
|
|
|
|
if (SGPRs <= 56)
|
|
|
|
return 9;
|
|
|
|
if (SGPRs <= 64)
|
|
|
|
return 8;
|
|
|
|
if (SGPRs <= 72)
|
|
|
|
return 7;
|
|
|
|
if (SGPRs <= 80)
|
|
|
|
return 6;
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned SISubtarget::getOccupancyWithNumVGPRs(unsigned VGPRs) const {
|
|
|
|
if (VGPRs <= 24)
|
|
|
|
return 10;
|
|
|
|
if (VGPRs <= 28)
|
|
|
|
return 9;
|
|
|
|
if (VGPRs <= 32)
|
|
|
|
return 8;
|
|
|
|
if (VGPRs <= 36)
|
|
|
|
return 7;
|
|
|
|
if (VGPRs <= 40)
|
|
|
|
return 6;
|
|
|
|
if (VGPRs <= 48)
|
|
|
|
return 5;
|
|
|
|
if (VGPRs <= 64)
|
|
|
|
return 4;
|
|
|
|
if (VGPRs <= 84)
|
|
|
|
return 3;
|
|
|
|
if (VGPRs <= 128)
|
|
|
|
return 2;
|
|
|
|
return 1;
|
|
|
|
}
|
2016-10-29 04:31:47 +08:00
|
|
|
|
2017-02-08 21:02:33 +08:00
|
|
|
unsigned SISubtarget::getReservedNumSGPRs(const MachineFunction &MF) const {
|
|
|
|
const SIMachineFunctionInfo &MFI = *MF.getInfo<SIMachineFunctionInfo>();
|
|
|
|
if (MFI.hasFlatScratchInit()) {
|
|
|
|
if (getGeneration() >= AMDGPUSubtarget::VOLCANIC_ISLANDS)
|
|
|
|
return 6; // FLAT_SCRATCH, XNACK, VCC (in that order).
|
|
|
|
if (getGeneration() == AMDGPUSubtarget::SEA_ISLANDS)
|
|
|
|
return 4; // FLAT_SCRATCH, VCC (in that order).
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isXNACKEnabled())
|
|
|
|
return 4; // XNACK, VCC (in that order).
|
|
|
|
return 2; // VCC.
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned SISubtarget::getMaxNumSGPRs(const MachineFunction &MF) const {
|
|
|
|
const Function &F = *MF.getFunction();
|
|
|
|
const SIMachineFunctionInfo &MFI = *MF.getInfo<SIMachineFunctionInfo>();
|
|
|
|
|
|
|
|
// Compute maximum number of SGPRs function can use using default/requested
|
|
|
|
// minimum number of waves per execution unit.
|
|
|
|
std::pair<unsigned, unsigned> WavesPerEU = MFI.getWavesPerEU();
|
|
|
|
unsigned MaxNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, false);
|
|
|
|
unsigned MaxAddressableNumSGPRs = getMaxNumSGPRs(WavesPerEU.first, true);
|
|
|
|
|
|
|
|
// Check if maximum number of SGPRs was explicitly requested using
|
|
|
|
// "amdgpu-num-sgpr" attribute.
|
|
|
|
if (F.hasFnAttribute("amdgpu-num-sgpr")) {
|
|
|
|
unsigned Requested = AMDGPU::getIntegerAttribute(
|
|
|
|
F, "amdgpu-num-sgpr", MaxNumSGPRs);
|
|
|
|
|
|
|
|
// Make sure requested value does not violate subtarget's specifications.
|
|
|
|
if (Requested && (Requested <= getReservedNumSGPRs(MF)))
|
|
|
|
Requested = 0;
|
|
|
|
|
|
|
|
// If more SGPRs are required to support the input user/system SGPRs,
|
|
|
|
// increase to accommodate them.
|
|
|
|
//
|
|
|
|
// FIXME: This really ends up using the requested number of SGPRs + number
|
|
|
|
// of reserved special registers in total. Theoretically you could re-use
|
|
|
|
// the last input registers for these special registers, but this would
|
|
|
|
// require a lot of complexity to deal with the weird aliasing.
|
|
|
|
unsigned InputNumSGPRs = MFI.getNumPreloadedSGPRs();
|
|
|
|
if (Requested && Requested < InputNumSGPRs)
|
|
|
|
Requested = InputNumSGPRs;
|
|
|
|
|
|
|
|
// Make sure requested value is compatible with values implied by
|
|
|
|
// default/requested minimum/maximum number of waves per execution unit.
|
|
|
|
if (Requested && Requested > getMaxNumSGPRs(WavesPerEU.first, false))
|
|
|
|
Requested = 0;
|
|
|
|
if (WavesPerEU.second &&
|
|
|
|
Requested && Requested < getMinNumSGPRs(WavesPerEU.second))
|
|
|
|
Requested = 0;
|
|
|
|
|
|
|
|
if (Requested)
|
|
|
|
MaxNumSGPRs = Requested;
|
|
|
|
}
|
|
|
|
|
2016-10-29 04:31:47 +08:00
|
|
|
if (hasSGPRInitBug())
|
2017-02-08 22:05:23 +08:00
|
|
|
MaxNumSGPRs = AMDGPU::IsaInfo::FIXED_NUM_SGPRS_FOR_INIT_BUG;
|
2017-02-08 21:02:33 +08:00
|
|
|
|
|
|
|
return std::min(MaxNumSGPRs - getReservedNumSGPRs(MF),
|
|
|
|
MaxAddressableNumSGPRs);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned SISubtarget::getMaxNumVGPRs(const MachineFunction &MF) const {
|
|
|
|
const Function &F = *MF.getFunction();
|
|
|
|
const SIMachineFunctionInfo &MFI = *MF.getInfo<SIMachineFunctionInfo>();
|
|
|
|
|
|
|
|
// Compute maximum number of VGPRs function can use using default/requested
|
|
|
|
// minimum number of waves per execution unit.
|
|
|
|
std::pair<unsigned, unsigned> WavesPerEU = MFI.getWavesPerEU();
|
|
|
|
unsigned MaxNumVGPRs = getMaxNumVGPRs(WavesPerEU.first);
|
|
|
|
|
|
|
|
// Check if maximum number of VGPRs was explicitly requested using
|
|
|
|
// "amdgpu-num-vgpr" attribute.
|
|
|
|
if (F.hasFnAttribute("amdgpu-num-vgpr")) {
|
|
|
|
unsigned Requested = AMDGPU::getIntegerAttribute(
|
|
|
|
F, "amdgpu-num-vgpr", MaxNumVGPRs);
|
|
|
|
|
|
|
|
// Make sure requested value does not violate subtarget's specifications.
|
|
|
|
if (Requested && Requested <= getReservedNumVGPRs(MF))
|
|
|
|
Requested = 0;
|
|
|
|
|
|
|
|
// Make sure requested value is compatible with values implied by
|
|
|
|
// default/requested minimum/maximum number of waves per execution unit.
|
|
|
|
if (Requested && Requested > getMaxNumVGPRs(WavesPerEU.first))
|
|
|
|
Requested = 0;
|
|
|
|
if (WavesPerEU.second &&
|
|
|
|
Requested && Requested < getMinNumVGPRs(WavesPerEU.second))
|
|
|
|
Requested = 0;
|
|
|
|
|
|
|
|
if (Requested)
|
|
|
|
MaxNumVGPRs = Requested;
|
|
|
|
}
|
2016-10-29 04:31:47 +08:00
|
|
|
|
2017-02-08 21:02:33 +08:00
|
|
|
return MaxNumVGPRs - getReservedNumVGPRs(MF);
|
2016-10-29 04:31:47 +08:00
|
|
|
}
|