clang 20.0.0git
DirectX.h
Go to the documentation of this file.
1//===--- DirectX.h - Declare DirectX target feature support -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file declares DXIL TargetInfo objects.
10//
11//===----------------------------------------------------------------------===//
12
13#ifndef LLVM_CLANG_LIB_BASIC_TARGETS_DIRECTX_H
14#define LLVM_CLANG_LIB_BASIC_TARGETS_DIRECTX_H
17#include "llvm/Support/Compiler.h"
18#include "llvm/TargetParser/Triple.h"
19
20namespace clang {
21namespace targets {
22
23static const unsigned DirectXAddrSpaceMap[] = {
24 0, // Default
25 1, // opencl_global
26 3, // opencl_local
27 2, // opencl_constant
28 0, // opencl_private
29 4, // opencl_generic
30 5, // opencl_global_device
31 6, // opencl_global_host
32 0, // cuda_device
33 0, // cuda_constant
34 0, // cuda_shared
35 // SYCL address space values for this map are dummy
36 0, // sycl_global
37 0, // sycl_global_device
38 0, // sycl_global_host
39 0, // sycl_local
40 0, // sycl_private
41 0, // ptr32_sptr
42 0, // ptr32_uptr
43 0, // ptr64
44 3, // hlsl_groupshared
45 // Wasm address space values for this target are dummy values,
46 // as it is only enabled for Wasm targets.
47 20, // wasm_funcref
48};
49
50class LLVM_LIBRARY_VISIBILITY DirectXTargetInfo : public TargetInfo {
51public:
52 DirectXTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
53 : TargetInfo(Triple) {
54 TLSSupported = false;
55 VLASupported = false;
56 AddrSpaceMap = &DirectXAddrSpaceMap;
57 UseAddrSpaceMapMangling = true;
58 HasLegalHalfType = true;
59 HasFloat16 = true;
60 NoAsmVariants = true;
61 PlatformMinVersion = Triple.getOSVersion();
62 PlatformName = llvm::Triple::getOSTypeName(Triple.getOS());
63 resetDataLayout("e-m:e-p:32:32-i1:32-i8:8-i16:16-i32:32-i64:64-f16:16-f32:"
64 "32-f64:64-n8:16:32:64");
65 TheCXXABI.set(TargetCXXABI::Microsoft);
66 }
67 bool useFP16ConversionIntrinsics() const override { return false; }
68 void getTargetDefines(const LangOptions &Opts,
69 MacroBuilder &Builder) const override;
70
71 bool hasFeature(StringRef Feature) const override {
72 return Feature == "directx";
73 }
74
76 return std::nullopt;
77 }
78
79 std::string_view getClobbers() const override { return ""; }
80
82 return std::nullopt;
83 }
84
85 bool validateAsmConstraint(const char *&Name,
86 TargetInfo::ConstraintInfo &info) const override {
87 return true;
88 }
89
91 return std::nullopt;
92 }
93
95 return TargetInfo::VoidPtrBuiltinVaList;
96 }
97};
98
99} // namespace targets
100} // namespace clang
101
102#endif // LLVM_CLANG_LIB_BASIC_TARGETS_DIRECTX_H
Defines the clang::TargetOptions class.
Keeps track of the various options that can be enabled, which controls the dialect of C or C++ that i...
Definition: LangOptions.h:461
Exposes information about the current target.
Definition: TargetInfo.h:218
BuiltinVaListKind
The different kinds of __builtin_va_list types defined by the target implementation.
Definition: TargetInfo.h:319
Options for controlling the target.
Definition: TargetOptions.h:26
std::string_view getClobbers() const override
Returns a string of target-specific clobbers, in LLVM format.
Definition: DirectX.h:79
BuiltinVaListKind getBuiltinVaListKind() const override
Returns the kind of __builtin_va_list type that should be used with this target.
Definition: DirectX.h:94
ArrayRef< TargetInfo::GCCRegAlias > getGCCRegAliases() const override
Definition: DirectX.h:90
bool useFP16ConversionIntrinsics() const override
Check whether llvm intrinsics such as llvm.convert.to.fp16 should be used to convert to and from __fp...
Definition: DirectX.h:67
ArrayRef< Builtin::Info > getTargetBuiltins() const override
Return information about target-specific builtins for the current primary target, and info about whic...
Definition: DirectX.h:75
ArrayRef< const char * > getGCCRegNames() const override
Definition: DirectX.h:81
bool hasFeature(StringRef Feature) const override
Determine whether the given target has the given feature.
Definition: DirectX.h:71
bool validateAsmConstraint(const char *&Name, TargetInfo::ConstraintInfo &info) const override
Definition: DirectX.h:85
DirectXTargetInfo(const llvm::Triple &Triple, const TargetOptions &)
Definition: DirectX.h:52
Defines the clang::TargetInfo interface.
static const unsigned DirectXAddrSpaceMap[]
Definition: DirectX.h:23
The JSON file list parser is used to communicate input to InstallAPI.