13#ifndef LLVM_CLANG_LIB_BASIC_TARGETS_AMDGPU_H
14#define LLVM_CLANG_LIB_BASIC_TARGETS_AMDGPU_H
19#include "llvm/ADT/StringSet.h"
20#include "llvm/Support/AMDGPUAddrSpace.h"
21#include "llvm/Support/Compiler.h"
22#include "llvm/TargetParser/AMDGPUTargetParser.h"
23#include "llvm/TargetParser/Triple.h"
31 static const char *
const GCCRegNames[];
33 static const LangASMap AMDGPUAddrSpaceMap;
35 llvm::AMDGPU::GPUKind GPUKind;
37 unsigned WavefrontSize;
43 bool HasImage =
false;
50 llvm::StringMap<bool> OffloadArchFeatures;
53 bool hasFP64()
const {
55 !!(GPUFeatures & llvm::AMDGPU::FEATURE_FP64);
59 bool hasFastFMAF()
const {
60 return !!(GPUFeatures & llvm::AMDGPU::FEATURE_FAST_FMA_F32);
64 bool hasFastFMA()
const {
return getTriple().isAMDGCN(); }
66 bool hasFMAF()
const {
68 !!(GPUFeatures & llvm::AMDGPU::FEATURE_FMA);
71 bool hasFullRateDenormalsF32()
const {
72 return !!(GPUFeatures & llvm::AMDGPU::FEATURE_FAST_DENORMAL_F32);
75 bool hasLDEXPF()
const {
77 !!(GPUFeatures & llvm::AMDGPU::FEATURE_LDEXP);
80 static bool isR600(
const llvm::Triple &TT) {
81 return TT.getArch() == llvm::Triple::r600;
84 bool hasFlatSupport()
const {
85 if (GPUKind >= llvm::AMDGPU::GK_GFX700)
89 if (GPUKind == llvm::AMDGPU::GK_NONE &&
90 getTriple().getOS() == llvm::Triple::AMDHSA)
107 if (TargetAS == llvm::AMDGPUAS::PRIVATE_ADDRESS ||
108 TargetAS == llvm::AMDGPUAS::LOCAL_ADDRESS)
158 static const ::llvm::StringSet<> SpecialRegs({
159 "exec",
"vcc",
"flat_scratch",
"m0",
"scc",
"tba",
"tma",
160 "flat_scratch_lo",
"flat_scratch_hi",
"vcc_lo",
"vcc_hi",
"exec_lo",
161 "exec_hi",
"tma_lo",
"tma_hi",
"tba_lo",
"tba_hi",
182 if (S ==
"DA" || S ==
"DB") {
188 bool HasLeftParen = S.consume_front(
"{");
191 if (S.front() !=
'v' && S.front() !=
's' && S.front() !=
'a') {
194 auto E = S.find(
'}');
195 if (!SpecialRegs.count(S.substr(0, E)))
197 S = S.drop_front(E + 1);
214 bool HasLeftBracket = S.consume_front(
"[");
215 unsigned long long N;
216 if (S.empty() || consumeUnsignedInteger(S, 10, N))
218 if (S.consume_front(
":")) {
221 unsigned long long M;
222 if (consumeUnsignedInteger(S, 10, M) || N >= M)
225 if (HasLeftBracket) {
226 if (!S.consume_front(
"]"))
229 if (!S.consume_front(
"}"))
245 StringRef S(Constraint);
246 if (S ==
"DA" || S ==
"DB") {
247 return std::string(
"^") + std::string(Constraint++, 2);
250 const char *Begin = Constraint;
253 return std::string(Begin).substr(0, Constraint - Begin + 1);
256 return std::string(1, *Constraint);
262 const std::vector<std::string> &FeatureVec)
const override;
275 return llvm::AMDGPU::isCPUValidForSubArch(
getTriple().getSubArch(), Name);
276 return llvm::AMDGPU::parseArchR600(Name) != llvm::AMDGPU::GK_NONE;
283 GPUKind = llvm::AMDGPU::parseArchAMDGCN(Name);
284 GPUFeatures = llvm::AMDGPU::getArchAttrAMDGCN(GPUKind);
286 return llvm::AMDGPU::isCPUValidForSubArch(
getTriple().getSubArch(),
289 GPUKind = llvm::AMDGPU::parseArchR600(Name);
290 GPUFeatures = llvm::AMDGPU::getArchAttrR600(GPUKind);
291 return GPUKind != llvm::AMDGPU::GK_NONE;
296 Opts[
"cl_clang_storage_class_specifiers"] =
true;
297 Opts[
"__cl_clang_variadic_functions"] =
true;
298 Opts[
"__cl_clang_function_pointers"] =
true;
299 Opts[
"__cl_clang_function_scope_local_variables"] =
true;
300 Opts[
"__cl_clang_non_portable_kernel_param_types"] =
true;
301 Opts[
"__cl_clang_bitfields"] =
true;
305 Opts[
"cl_khr_fp64"] = hasFP64();
306 Opts[
"__opencl_c_fp64"] = hasFP64();
308 if (IsAMDGCN || GPUKind >= llvm::AMDGPU::GK_CEDAR) {
309 Opts[
"cl_khr_byte_addressable_store"] =
true;
310 Opts[
"cl_khr_global_int32_base_atomics"] =
true;
311 Opts[
"cl_khr_global_int32_extended_atomics"] =
true;
312 Opts[
"cl_khr_local_int32_base_atomics"] =
true;
313 Opts[
"cl_khr_local_int32_extended_atomics"] =
true;
317 Opts[
"cl_khr_fp16"] =
true;
318 Opts[
"cl_khr_int64_base_atomics"] =
true;
319 Opts[
"cl_khr_int64_extended_atomics"] =
true;
320 Opts[
"cl_khr_mipmap_image"] =
true;
321 Opts[
"cl_khr_mipmap_image_writes"] =
true;
322 Opts[
"cl_khr_subgroups"] =
true;
323 Opts[
"cl_amd_media_ops"] =
true;
324 Opts[
"cl_amd_media_ops2"] =
true;
327 Opts[
"__opencl_c_images"] =
true;
328 Opts[
"__opencl_c_3d_image_writes"] =
true;
329 Opts[
"__opencl_c_read_write_images"] =
true;
330 Opts[
"cl_khr_3d_image_writes"] =
true;
331 Opts[
"__opencl_c_program_scope_global_variables"] =
true;
332 Opts[
"__opencl_c_atomic_order_acq_rel"] =
true;
333 Opts[
"__opencl_c_atomic_order_seq_cst"] =
true;
334 Opts[
"__opencl_c_atomic_scope_device"] =
true;
335 Opts[
"__opencl_c_atomic_scope_all_devices"] =
true;
336 Opts[
"__opencl_c_work_group_collective_functions"] =
true;
338 if (hasFlatSupport()) {
339 Opts[
"__opencl_c_generic_address_space"] =
true;
340 Opts[
"__opencl_c_device_enqueue"] =
true;
341 Opts[
"__opencl_c_pipes"] =
true;
344 if (
getTriple().getEnvironment() == llvm::Triple::LLVM) {
345 Opts[
"cl_khr_subgroup_extended_types"] =
true;
402 switch (WavefrontSize) {
404 return llvm::omp::getAMDGPUGridValues<32>();
406 return llvm::omp::getAMDGPUGridValues<64>();
408 llvm_unreachable(
"getGridValue not implemented for this wavesize");
414 return static_cast<unsigned>(llvm::AMDGPUAS::CONSTANT_ADDRESS);
423 std::optional<unsigned>
425 int DWARFAS = llvm::AMDGPU::mapToDWARFAddrSpace(AddressSpace);
428 if (DWARFAS == -1 || DWARFAS == llvm::AMDGPU::DWARFAS::DEFAULT)
456 void setAuxTarget(
const TargetInfo *Aux)
override;
465 auto TargetIDFeatures =
467 for (
const auto &F : Features) {
468 assert(F.front() ==
'+' || F.front() ==
'-');
469 if (F ==
"+wavefrontsize64")
471 else if (F ==
"+cumode")
473 else if (F ==
"-cumode")
475 else if (F ==
"+image-insts")
477 bool IsOn = F.front() ==
'+';
478 StringRef Name = StringRef(F).drop_front();
479 if (!llvm::is_contained(TargetIDFeatures, Name))
481 assert(!OffloadArchFeatures.contains(Name));
482 OffloadArchFeatures[Name] = IsOn;
488 llvm::AMDGPU::GPUKind NameKind =
getTriple().isAMDGCN()
489 ? llvm::AMDGPU::parseArchAMDGCN(Name)
490 : llvm::AMDGPU::parseArchR600(Name);
491 return NameKind == GPUKind;
501 return std::make_pair(128, 128);
static StringRef getTriple(const Command &Job)
Defines the clang::TargetOptions class.
Concrete class used by the front-end to report problems and issues.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Exposes information about the current target.
TargetInfo(const llvm::Triple &T)
BuiltinVaListKind
The different kinds of __builtin_va_list types defined by the target implementation.
@ CharPtrBuiltinVaList
typedef char* __builtin_va_list;
virtual LangAS getOpenCLTypeAddrSpace(OpenCLTypeKind TK) const
Get address space for OpenCL type.
llvm::StringMap< bool > & getSupportedOpenCLOpts()
Get supported OpenCL extensions and optional core features.
unsigned getTargetAddressSpace(LangAS AS) const
Options for controlling the target.
const llvm::omp::GV & getGridValue() const override
std::string_view getClobbers() const override
Returns a string of target-specific clobbers, in LLVM format.
uint64_t getPointerAlignV(LangAS AddrSpace) const override
LangAS getOpenCLBuiltinAddressSpace(unsigned AS) const override
Map from the address space field in builtin description strings to the language address space.
AMDGPUTargetInfo(const llvm::Triple &Triple, const TargetOptions &Opts)
uint64_t getPointerWidthV(LangAS AS) const override
bool isProcessorName(StringRef Name) const override
Returns true if the target's processor is compatible with the processor named by Name,...
ArrayRef< TargetInfo::GCCRegAlias > getGCCRegAliases() const override
bool hasBFloat16Type() const override
Determine whether the _BFloat16 type is supported on this target.
uint64_t getNullPointerValue(LangAS AS) const override
Get integer value for null pointer.
void adjust(DiagnosticsEngine &Diags, LangOptions &Opts, const TargetInfo *Aux) override
Set forced language options.
LangAS getCUDABuiltinAddressSpace(unsigned AS) const override
Map from the address space field in builtin description strings to the language address space.
virtual bool isAddressSpaceSupersetOf(LangAS A, LangAS B) const override
Returns true if an address space can be safely converted to another.
bool handleTargetFeatures(std::vector< std::string > &Features, DiagnosticsEngine &Diags) override
Perform initialization based on the user configured set of features (e.g., +sse4).
bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &Info) const override
Accepted register names: (n, m is unsigned integer, n < m) v s a {vn}, {v[n]} {sn}...
std::optional< unsigned > getDWARFAddressSpace(unsigned AddressSpace) const override
std::string convertConstraint(const char *&Constraint) const override
std::pair< unsigned, unsigned > hardwareInterferenceSizes() const override
The first value in the pair is the minimum offset between two objects to avoid false sharing (destruc...
unsigned getVtblPtrAddressSpace() const override
std::optional< LangAS > getConstantAddressSpace() const override
Return an AST address space which can be used opportunistically for constant global memory.
bool isValidCPUName(StringRef Name) const override
Determine whether this TargetInfo supports the given CPU name.
bool hasBitIntType() const override
Determine whether the _BitInt type is supported on this target.
bool hasHIPImageSupport() const override
Whether to support HIP image/texture API's.
bool setCPU(StringRef Name) override
Target the specified CPU.
uint64_t getMaxPointerWidth() const override
Return the maximum width of pointers on this target.
CallingConvCheckResult checkCallingConvention(CallingConv CC) const override
Determines whether a given calling convention is valid for the target.
LangAS getOpenCLTypeAddrSpace(OpenCLTypeKind TK) const override
Get address space for OpenCL type.
void setSupportedOpenCLOpts() override
Set supported OpenCL extensions and optional core features.
BuiltinVaListKind getBuiltinVaListKind() const override
Returns the kind of __builtin_va_list type that should be used with this target.
Defines the clang::TargetInfo interface.
The JSON file list parser is used to communicate input to InstallAPI.
bool isTargetAddressSpace(LangAS AS)
OpenCLTypeKind
OpenCL type kinds.
unsigned toTargetAddressSpace(LangAS AS)
llvm::SmallVector< llvm::StringRef, 4 > getAllPossibleTargetIDFeatures(const llvm::Triple &T, llvm::StringRef Processor)
Get all feature strings that can be used in target ID for Processor.
LangAS
Defines the address space values used by the address space qualifier of QualType.
CallingConv
CallingConv - Specifies the calling convention that a function uses.
LangAS getLangASFromTargetAS(unsigned TargetAS)
unsigned[(unsigned) LangAS::FirstTargetAddressSpace] LangASMap
The type of a lookup table which maps from language-specific address spaces to target-specific ones.
void setRequiresImmediate(int Min, int Max)