clang
20.0.0git
include
clang
Basic
AddressSpaces.h
Go to the documentation of this file.
1
//===- AddressSpaces.h - Language-specific address spaces -------*- 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
/// \file
10
/// Provides definitions for the various language-specific address
11
/// spaces.
12
//
13
//===----------------------------------------------------------------------===//
14
15
#ifndef LLVM_CLANG_BASIC_ADDRESSSPACES_H
16
#define LLVM_CLANG_BASIC_ADDRESSSPACES_H
17
18
#include <cassert>
19
20
namespace
clang
{
21
22
/// Defines the address space values used by the address space qualifier
23
/// of QualType.
24
///
25
enum class
LangAS
:
unsigned
{
26
// The default value 0 is the value used in QualType for the situation
27
// where there is no address space qualifier.
28
Default
= 0,
29
30
// OpenCL specific address spaces.
31
// In OpenCL each l-value must have certain non-default address space, each
32
// r-value must have no address space (i.e. the default address space). The
33
// pointee of a pointer must have non-default address space.
34
opencl_global
,
35
opencl_local
,
36
opencl_constant
,
37
opencl_private
,
38
opencl_generic
,
39
opencl_global_device
,
40
opencl_global_host
,
41
42
// CUDA specific address spaces.
43
cuda_device
,
44
cuda_constant
,
45
cuda_shared
,
46
47
// SYCL specific address spaces.
48
sycl_global
,
49
sycl_global_device
,
50
sycl_global_host
,
51
sycl_local
,
52
sycl_private
,
53
54
// Pointer size and extension address spaces.
55
ptr32_sptr
,
56
ptr32_uptr
,
57
ptr64
,
58
59
// HLSL specific address spaces.
60
hlsl_groupshared
,
61
62
// Wasm specific address spaces.
63
wasm_funcref
,
64
65
// This denotes the count of language-specific address spaces and also
66
// the offset added to the target-specific address spaces, which are usually
67
// specified by address space attributes __attribute__(address_space(n))).
68
FirstTargetAddressSpace
69
};
70
71
/// The type of a lookup table which maps from language-specific address spaces
72
/// to target-specific ones.
73
using
LangASMap
=
unsigned
[(
unsigned
)
LangAS::FirstTargetAddressSpace
];
74
75
/// \return whether \p AS is a target-specific address space rather than a
76
/// clang AST address space
77
inline
bool
isTargetAddressSpace
(
LangAS
AS) {
78
return
(
unsigned
)AS >= (
unsigned
)
LangAS::FirstTargetAddressSpace
;
79
}
80
81
inline
unsigned
toTargetAddressSpace
(
LangAS
AS) {
82
assert(
isTargetAddressSpace
(AS));
83
return
(
unsigned
)AS - (
unsigned
)
LangAS::FirstTargetAddressSpace
;
84
}
85
86
inline
LangAS
getLangASFromTargetAS
(
unsigned
TargetAS) {
87
return
static_cast<
LangAS
>
((TargetAS) +
88
(
unsigned
)
LangAS::FirstTargetAddressSpace
);
89
}
90
91
inline
bool
isPtrSizeAddressSpace
(
LangAS
AS) {
92
return
(AS ==
LangAS::ptr32_sptr
|| AS ==
LangAS::ptr32_uptr
||
93
AS ==
LangAS::ptr64
);
94
}
95
96
}
// namespace clang
97
98
#endif
// LLVM_CLANG_BASIC_ADDRESSSPACES_H
unsigned
clang
The JSON file list parser is used to communicate input to InstallAPI.
Definition:
CalledOnceCheck.h:17
clang::LangASMap
unsigned[(unsigned) LangAS::FirstTargetAddressSpace] LangASMap
The type of a lookup table which maps from language-specific address spaces to target-specific ones.
Definition:
AddressSpaces.h:73
clang::StructuralEquivalenceKind::Default
@ Default
clang::isTargetAddressSpace
bool isTargetAddressSpace(LangAS AS)
Definition:
AddressSpaces.h:77
clang::toTargetAddressSpace
unsigned toTargetAddressSpace(LangAS AS)
Definition:
AddressSpaces.h:81
clang::LangAS
LangAS
Defines the address space values used by the address space qualifier of QualType.
Definition:
AddressSpaces.h:25
clang::LangAS::cuda_device
@ cuda_device
clang::LangAS::sycl_global_device
@ sycl_global_device
clang::LangAS::opencl_global
@ opencl_global
clang::LangAS::cuda_shared
@ cuda_shared
clang::LangAS::opencl_global_device
@ opencl_global_device
clang::LangAS::opencl_constant
@ opencl_constant
clang::LangAS::sycl_local
@ sycl_local
clang::LangAS::sycl_private
@ sycl_private
clang::LangAS::cuda_constant
@ cuda_constant
clang::LangAS::ptr32_sptr
@ ptr32_sptr
clang::LangAS::sycl_global
@ sycl_global
clang::LangAS::wasm_funcref
@ wasm_funcref
clang::LangAS::sycl_global_host
@ sycl_global_host
clang::LangAS::ptr64
@ ptr64
clang::LangAS::opencl_private
@ opencl_private
clang::LangAS::ptr32_uptr
@ ptr32_uptr
clang::LangAS::opencl_generic
@ opencl_generic
clang::LangAS::FirstTargetAddressSpace
@ FirstTargetAddressSpace
clang::LangAS::opencl_local
@ opencl_local
clang::LangAS::opencl_global_host
@ opencl_global_host
clang::LangAS::hlsl_groupshared
@ hlsl_groupshared
clang::isPtrSizeAddressSpace
bool isPtrSizeAddressSpace(LangAS AS)
Definition:
AddressSpaces.h:91
clang::getLangASFromTargetAS
LangAS getLangASFromTargetAS(unsigned TargetAS)
Definition:
AddressSpaces.h:86
Generated on Tue Nov 19 2024 23:01:28 for clang by
1.9.6