2015-11-06 19:17:45 +01:00
|
|
|
//=====-- AMDGPUSubtarget.h - Define Subtarget for AMDGPU ------*- C++ -*-====//
|
2012-12-11 22:25:42 +01:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//==-----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// \file
|
|
|
|
/// \brief AMDGPU specific subclass of TargetSubtarget.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2015-11-06 19:17:45 +01:00
|
|
|
#ifndef LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H
|
|
|
|
#define LLVM_LIB_TARGET_AMDGPU_AMDGPUSUBTARGET_H
|
2015-11-06 19:23:00 +01:00
|
|
|
|
2013-06-07 22:37:48 +02:00
|
|
|
#include "AMDGPU.h"
|
2014-07-26 00:22:39 +02:00
|
|
|
#include "AMDGPUFrameLowering.h"
|
2014-06-13 03:32:00 +02:00
|
|
|
#include "AMDGPUInstrInfo.h"
|
2015-11-06 19:23:00 +01:00
|
|
|
#include "AMDGPUISelLowering.h"
|
2014-07-26 00:22:39 +02:00
|
|
|
#include "AMDGPUSubtarget.h"
|
2015-06-26 23:15:07 +02:00
|
|
|
#include "Utils/AMDGPUBaseInfo.h"
|
2012-12-11 22:25:42 +01:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Target/TargetSubtargetInfo.h"
|
|
|
|
|
|
|
|
#define GET_SUBTARGETINFO_HEADER
|
|
|
|
#include "AMDGPUGenSubtargetInfo.inc"
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2015-01-20 20:33:04 +01:00
|
|
|
class SIMachineFunctionInfo;
|
|
|
|
|
2012-12-11 22:25:42 +01:00
|
|
|
class AMDGPUSubtarget : public AMDGPUGenSubtargetInfo {
|
2014-06-13 03:32:00 +02:00
|
|
|
|
2013-06-07 22:37:48 +02:00
|
|
|
public:
|
|
|
|
enum Generation {
|
|
|
|
R600 = 0,
|
|
|
|
R700,
|
|
|
|
EVERGREEN,
|
|
|
|
NORTHERN_ISLANDS,
|
2013-10-29 17:37:28 +01:00
|
|
|
SOUTHERN_ISLANDS,
|
2014-12-07 13:18:57 +01:00
|
|
|
SEA_ISLANDS,
|
|
|
|
VOLCANIC_ISLANDS,
|
2013-06-07 22:37:48 +02:00
|
|
|
};
|
|
|
|
|
2015-03-09 16:48:09 +01:00
|
|
|
enum {
|
|
|
|
FIXED_SGPR_COUNT_FOR_INIT_BUG = 80
|
|
|
|
};
|
|
|
|
|
2015-06-26 23:15:07 +02:00
|
|
|
enum {
|
|
|
|
ISAVersion0_0_0,
|
|
|
|
ISAVersion7_0_0,
|
|
|
|
ISAVersion7_0_1,
|
|
|
|
ISAVersion8_0_0,
|
|
|
|
ISAVersion8_0_1
|
|
|
|
};
|
|
|
|
|
2012-12-11 22:25:42 +01:00
|
|
|
private:
|
|
|
|
std::string DevName;
|
|
|
|
bool Is64bit;
|
|
|
|
bool DumpCode;
|
|
|
|
bool R600ALUInst;
|
2013-04-30 02:13:39 +02:00
|
|
|
bool HasVertexCache;
|
2013-05-17 18:49:55 +02:00
|
|
|
short TexVTXClauseSize;
|
2014-06-27 19:57:00 +02:00
|
|
|
Generation Gen;
|
2013-06-07 22:37:48 +02:00
|
|
|
bool FP64;
|
2014-07-15 01:40:49 +02:00
|
|
|
bool FP64Denormals;
|
|
|
|
bool FP32Denormals;
|
2015-01-29 20:34:25 +01:00
|
|
|
bool FastFMAF32;
|
2013-06-07 22:37:48 +02:00
|
|
|
bool CaymanISA;
|
2014-09-15 17:41:53 +02:00
|
|
|
bool FlatAddressSpace;
|
2015-12-22 21:55:23 +01:00
|
|
|
bool FlatForGlobal;
|
2013-10-10 19:11:12 +02:00
|
|
|
bool EnableIRStructurizer;
|
2014-07-13 04:08:26 +02:00
|
|
|
bool EnablePromoteAlloca;
|
2013-11-18 20:43:33 +01:00
|
|
|
bool EnableIfCvt;
|
2014-10-11 00:01:59 +02:00
|
|
|
bool EnableLoadStoreOpt;
|
2015-07-06 18:01:58 +02:00
|
|
|
bool EnableUnsafeDSOffsetFolding;
|
2014-01-22 22:55:40 +01:00
|
|
|
unsigned WavefrontSize;
|
2014-01-23 17:18:02 +01:00
|
|
|
bool CFALUBug;
|
2014-06-17 18:53:14 +02:00
|
|
|
int LocalMemorySize;
|
2015-01-20 20:33:04 +01:00
|
|
|
bool EnableVGPRSpilling;
|
2015-03-09 16:48:09 +01:00
|
|
|
bool SGPRInitBug;
|
2015-04-08 03:09:26 +02:00
|
|
|
bool IsGCN;
|
|
|
|
bool GCN1Encoding;
|
|
|
|
bool GCN3Encoding;
|
2015-04-23 21:33:54 +02:00
|
|
|
bool CIInsts;
|
|
|
|
bool FeatureDisable;
|
2015-05-25 18:15:54 +02:00
|
|
|
int LDSBankCount;
|
2015-11-06 19:23:00 +01:00
|
|
|
unsigned IsaVersion;
|
2015-07-16 21:40:07 +02:00
|
|
|
bool EnableHugeScratchBuffer;
|
2012-12-11 22:25:42 +01:00
|
|
|
|
2015-11-06 19:17:45 +01:00
|
|
|
std::unique_ptr<AMDGPUFrameLowering> FrameLowering;
|
2014-07-26 00:22:39 +02:00
|
|
|
std::unique_ptr<AMDGPUTargetLowering> TLInfo;
|
|
|
|
std::unique_ptr<AMDGPUInstrInfo> InstrInfo;
|
2012-12-11 22:25:42 +01:00
|
|
|
InstrItineraryData InstrItins;
|
2014-12-02 18:05:41 +01:00
|
|
|
Triple TargetTriple;
|
2012-12-11 22:25:42 +01:00
|
|
|
|
|
|
|
public:
|
2015-06-10 14:11:26 +02:00
|
|
|
AMDGPUSubtarget(const Triple &TT, StringRef CPU, StringRef FS,
|
|
|
|
TargetMachine &TM);
|
|
|
|
AMDGPUSubtarget &initializeSubtargetDependencies(const Triple &TT,
|
|
|
|
StringRef GPU, StringRef FS);
|
2014-06-27 19:57:00 +02:00
|
|
|
|
2014-08-04 23:25:23 +02:00
|
|
|
const AMDGPUFrameLowering *getFrameLowering() const override {
|
2015-11-06 19:17:45 +01:00
|
|
|
return FrameLowering.get();
|
2014-08-04 23:25:23 +02:00
|
|
|
}
|
|
|
|
const AMDGPUInstrInfo *getInstrInfo() const override {
|
|
|
|
return InstrInfo.get();
|
|
|
|
}
|
|
|
|
const AMDGPURegisterInfo *getRegisterInfo() const override {
|
2014-07-26 00:22:39 +02:00
|
|
|
return &InstrInfo->getRegisterInfo();
|
2014-06-27 19:57:00 +02:00
|
|
|
}
|
2014-08-04 23:25:23 +02:00
|
|
|
AMDGPUTargetLowering *getTargetLowering() const override {
|
|
|
|
return TLInfo.get();
|
|
|
|
}
|
|
|
|
const InstrItineraryData *getInstrItineraryData() const override {
|
|
|
|
return &InstrItins;
|
|
|
|
}
|
2014-06-27 19:57:00 +02:00
|
|
|
|
2014-04-30 07:53:27 +02:00
|
|
|
void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
|
2012-12-11 22:25:42 +01:00
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
bool is64bit() const {
|
|
|
|
return Is64bit;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasVertexCache() const {
|
|
|
|
return HasVertexCache;
|
|
|
|
}
|
|
|
|
|
|
|
|
short getTexVTXClauseSize() const {
|
2014-07-13 04:08:26 +02:00
|
|
|
return TexVTXClauseSize;
|
2014-06-27 19:57:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Generation getGeneration() const {
|
|
|
|
return Gen;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasHWFP64() const {
|
|
|
|
return FP64;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasCaymanISA() const {
|
|
|
|
return CaymanISA;
|
|
|
|
}
|
2014-03-17 19:58:11 +01:00
|
|
|
|
2014-07-15 01:40:49 +02:00
|
|
|
bool hasFP32Denormals() const {
|
|
|
|
return FP32Denormals;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasFP64Denormals() const {
|
|
|
|
return FP64Denormals;
|
|
|
|
}
|
|
|
|
|
2015-01-29 20:34:25 +01:00
|
|
|
bool hasFastFMAF32() const {
|
|
|
|
return FastFMAF32;
|
|
|
|
}
|
|
|
|
|
2014-09-15 17:41:53 +02:00
|
|
|
bool hasFlatAddressSpace() const {
|
|
|
|
return FlatAddressSpace;
|
|
|
|
}
|
|
|
|
|
2015-12-22 21:55:23 +01:00
|
|
|
bool useFlatForGlobal() const {
|
|
|
|
return FlatForGlobal;
|
|
|
|
}
|
|
|
|
|
2014-03-17 19:58:11 +01:00
|
|
|
bool hasBFE() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
2014-06-10 21:00:20 +02:00
|
|
|
bool hasBFI() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
2014-03-17 19:58:11 +01:00
|
|
|
bool hasBFM() const {
|
|
|
|
return hasBFE();
|
|
|
|
}
|
|
|
|
|
2014-06-10 21:18:28 +02:00
|
|
|
bool hasBCNT(unsigned Size) const {
|
|
|
|
if (Size == 32)
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
|
2014-07-18 08:07:13 +02:00
|
|
|
if (Size == 64)
|
|
|
|
return (getGeneration() >= SOUTHERN_ISLANDS);
|
|
|
|
|
|
|
|
return false;
|
2014-06-10 21:18:28 +02:00
|
|
|
}
|
|
|
|
|
2014-04-07 21:45:41 +02:00
|
|
|
bool hasMulU24() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasMulI24() const {
|
|
|
|
return (getGeneration() >= SOUTHERN_ISLANDS ||
|
|
|
|
hasCaymanISA());
|
|
|
|
}
|
|
|
|
|
2014-07-15 17:51:09 +02:00
|
|
|
bool hasFFBL() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasFFBH() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
2015-04-30 19:15:56 +02:00
|
|
|
bool hasCARRY() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasBORROW() const {
|
|
|
|
return (getGeneration() >= EVERGREEN);
|
|
|
|
}
|
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
bool IsIRStructurizerEnabled() const {
|
|
|
|
return EnableIRStructurizer;
|
|
|
|
}
|
|
|
|
|
2014-07-13 04:08:26 +02:00
|
|
|
bool isPromoteAllocaEnabled() const {
|
|
|
|
return EnablePromoteAlloca;
|
|
|
|
}
|
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
bool isIfCvtEnabled() const {
|
|
|
|
return EnableIfCvt;
|
|
|
|
}
|
|
|
|
|
2014-10-11 00:01:59 +02:00
|
|
|
bool loadStoreOptEnabled() const {
|
|
|
|
return EnableLoadStoreOpt;
|
|
|
|
}
|
|
|
|
|
2015-07-06 18:01:58 +02:00
|
|
|
bool unsafeDSOffsetFoldingEnabled() const {
|
|
|
|
return EnableUnsafeDSOffsetFolding;
|
|
|
|
}
|
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
unsigned getWavefrontSize() const {
|
|
|
|
return WavefrontSize;
|
|
|
|
}
|
|
|
|
|
2014-01-22 22:55:43 +01:00
|
|
|
unsigned getStackEntrySize() const;
|
2014-06-27 19:57:00 +02:00
|
|
|
|
|
|
|
bool hasCFAluBug() const {
|
|
|
|
assert(getGeneration() <= NORTHERN_ISLANDS);
|
|
|
|
return CFALUBug;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getLocalMemorySize() const {
|
|
|
|
return LocalMemorySize;
|
|
|
|
}
|
2012-12-11 22:25:42 +01:00
|
|
|
|
2015-03-09 16:48:09 +01:00
|
|
|
bool hasSGPRInitBug() const {
|
|
|
|
return SGPRInitBug;
|
|
|
|
}
|
|
|
|
|
2015-05-25 18:15:54 +02:00
|
|
|
int getLDSBankCount() const {
|
|
|
|
return LDSBankCount;
|
|
|
|
}
|
|
|
|
|
2014-12-02 23:00:07 +01:00
|
|
|
unsigned getAmdKernelCodeChipID() const;
|
|
|
|
|
2015-06-26 23:15:07 +02:00
|
|
|
AMDGPU::IsaVersion getIsaVersion() const;
|
|
|
|
|
2014-04-29 09:57:24 +02:00
|
|
|
bool enableMachineScheduler() const override {
|
2015-01-29 17:55:25 +01:00
|
|
|
return true;
|
2013-09-20 07:14:41 +02:00
|
|
|
}
|
|
|
|
|
2015-01-29 17:55:25 +01:00
|
|
|
void overrideSchedPolicy(MachineSchedPolicy &Policy,
|
|
|
|
MachineInstr *begin, MachineInstr *end,
|
|
|
|
unsigned NumRegionInstrs) const override;
|
|
|
|
|
2012-12-11 22:25:42 +01:00
|
|
|
// Helper functions to simplify if statements
|
2014-06-27 19:57:00 +02:00
|
|
|
bool isTargetELF() const {
|
|
|
|
return false;
|
|
|
|
}
|
2012-12-11 22:25:42 +01:00
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
StringRef getDeviceName() const {
|
|
|
|
return DevName;
|
|
|
|
}
|
|
|
|
|
2015-07-16 21:40:07 +02:00
|
|
|
bool enableHugeScratchBuffer() const {
|
|
|
|
return EnableHugeScratchBuffer;
|
|
|
|
}
|
|
|
|
|
2014-06-27 19:57:00 +02:00
|
|
|
bool dumpCode() const {
|
|
|
|
return DumpCode;
|
|
|
|
}
|
|
|
|
bool r600ALUEncoding() const {
|
|
|
|
return R600ALUInst;
|
|
|
|
}
|
2014-12-02 18:05:41 +01:00
|
|
|
bool isAmdHsaOS() const {
|
|
|
|
return TargetTriple.getOS() == Triple::AMDHSA;
|
|
|
|
}
|
2015-01-20 20:33:04 +01:00
|
|
|
bool isVGPRSpillingEnabled(const SIMachineFunctionInfo *MFI) const;
|
2015-01-29 17:55:25 +01:00
|
|
|
|
|
|
|
unsigned getMaxWavesPerCU() const {
|
|
|
|
if (getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS)
|
|
|
|
return 10;
|
|
|
|
|
|
|
|
// FIXME: Not sure what this is for other subtagets.
|
|
|
|
llvm_unreachable("do not know max waves per CU for this subtarget.");
|
|
|
|
}
|
2015-02-05 00:14:18 +01:00
|
|
|
|
|
|
|
bool enableSubRegLiveness() const override {
|
2015-06-04 03:20:04 +02:00
|
|
|
return true;
|
2015-02-05 00:14:18 +01:00
|
|
|
}
|
2015-06-26 23:15:03 +02:00
|
|
|
|
|
|
|
/// \brief Returns the offset in bytes from the start of the input buffer
|
|
|
|
/// of the first explicit kernel argument.
|
|
|
|
unsigned getExplicitKernelArgOffset() const {
|
|
|
|
return isAmdHsaOS() ? 0 : 36;
|
|
|
|
}
|
|
|
|
|
2015-11-30 22:16:07 +01:00
|
|
|
unsigned getMaxNumUserSGPRs() const {
|
|
|
|
return 16;
|
|
|
|
}
|
2012-12-11 22:25:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End namespace llvm
|
|
|
|
|
2014-08-13 18:26:38 +02:00
|
|
|
#endif
|