]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h
Upgrade to Unbound 1.5.9.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / Specifiers.h
1 //===--- Specifiers.h - Declaration and Type Specifiers ---------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 ///
10 /// \file
11 /// \brief Defines various enumerations that describe declaration and
12 /// type specifiers.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_CLANG_BASIC_SPECIFIERS_H
17 #define LLVM_CLANG_BASIC_SPECIFIERS_H
18
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Support/DataTypes.h"
21 #include "llvm/Support/ErrorHandling.h"
22
23 namespace clang {
24   /// \brief Specifies the width of a type, e.g., short, long, or long long.
25   enum TypeSpecifierWidth {
26     TSW_unspecified,
27     TSW_short,
28     TSW_long,
29     TSW_longlong
30   };
31   
32   /// \brief Specifies the signedness of a type, e.g., signed or unsigned.
33   enum TypeSpecifierSign {
34     TSS_unspecified,
35     TSS_signed,
36     TSS_unsigned
37   };
38   
39   enum TypeSpecifiersPipe {
40     TSP_unspecified,
41     TSP_pipe
42   };
43
44   /// \brief Specifies the kind of type.
45   enum TypeSpecifierType {
46     TST_unspecified,
47     TST_void,
48     TST_char,
49     TST_wchar,        // C++ wchar_t
50     TST_char16,       // C++11 char16_t
51     TST_char32,       // C++11 char32_t
52     TST_int,
53     TST_int128,
54     TST_half,         // OpenCL half, ARM NEON __fp16
55     TST_float,
56     TST_double,
57     TST_bool,         // _Bool
58     TST_decimal32,    // _Decimal32
59     TST_decimal64,    // _Decimal64
60     TST_decimal128,   // _Decimal128
61     TST_enum,
62     TST_union,
63     TST_struct,
64     TST_class,        // C++ class type
65     TST_interface,    // C++ (Microsoft-specific) __interface type
66     TST_typename,     // Typedef, C++ class-name or enum name, etc.
67     TST_typeofType,
68     TST_typeofExpr,
69     TST_decltype,         // C++11 decltype
70     TST_underlyingType,   // __underlying_type for C++11
71     TST_auto,             // C++11 auto
72     TST_decltype_auto,    // C++1y decltype(auto)
73     TST_auto_type,        // __auto_type extension
74     TST_unknown_anytype,  // __unknown_anytype extension
75     TST_atomic,           // C11 _Atomic
76     TST_error         // erroneous type
77   };
78   
79   /// \brief Structure that packs information about the type specifiers that
80   /// were written in a particular type specifier sequence.
81   struct WrittenBuiltinSpecs {
82     /*DeclSpec::TST*/ unsigned Type  : 5;
83     /*DeclSpec::TSS*/ unsigned Sign  : 2;
84     /*DeclSpec::TSW*/ unsigned Width : 2;
85     bool ModeAttr : 1;
86   };  
87
88   /// \brief A C++ access specifier (public, private, protected), plus the
89   /// special value "none" which means different things in different contexts.
90   enum AccessSpecifier {
91     AS_public,
92     AS_protected,
93     AS_private,
94     AS_none
95   };
96
97   /// \brief The categorization of expression values, currently following the
98   /// C++11 scheme.
99   enum ExprValueKind {
100     /// \brief An r-value expression (a pr-value in the C++11 taxonomy)
101     /// produces a temporary value.
102     VK_RValue,
103
104     /// \brief An l-value expression is a reference to an object with
105     /// independent storage.
106     VK_LValue,
107
108     /// \brief An x-value expression is a reference to an object with
109     /// independent storage but which can be "moved", i.e.
110     /// efficiently cannibalized for its resources.
111     VK_XValue
112   };
113
114   /// \brief A further classification of the kind of object referenced by an
115   /// l-value or x-value.
116   enum ExprObjectKind {
117     /// An ordinary object is located at an address in memory.
118     OK_Ordinary,
119
120     /// A bitfield object is a bitfield on a C or C++ record.
121     OK_BitField,
122
123     /// A vector component is an element or range of elements on a vector.
124     OK_VectorComponent,
125
126     /// An Objective-C property is a logical field of an Objective-C
127     /// object which is read and written via Objective-C method calls.
128     OK_ObjCProperty,
129     
130     /// An Objective-C array/dictionary subscripting which reads an
131     /// object or writes at the subscripted array/dictionary element via
132     /// Objective-C method calls.
133     OK_ObjCSubscript
134   };
135
136   /// \brief Describes the kind of template specialization that a
137   /// particular template specialization declaration represents.
138   enum TemplateSpecializationKind {
139     /// This template specialization was formed from a template-id but
140     /// has not yet been declared, defined, or instantiated.
141     TSK_Undeclared = 0,
142     /// This template specialization was implicitly instantiated from a
143     /// template. (C++ [temp.inst]).
144     TSK_ImplicitInstantiation,
145     /// This template specialization was declared or defined by an
146     /// explicit specialization (C++ [temp.expl.spec]) or partial
147     /// specialization (C++ [temp.class.spec]).
148     TSK_ExplicitSpecialization,
149     /// This template specialization was instantiated from a template
150     /// due to an explicit instantiation declaration request
151     /// (C++11 [temp.explicit]).
152     TSK_ExplicitInstantiationDeclaration,
153     /// This template specialization was instantiated from a template
154     /// due to an explicit instantiation definition request
155     /// (C++ [temp.explicit]).
156     TSK_ExplicitInstantiationDefinition
157   };
158
159   /// \brief Determine whether this template specialization kind refers
160   /// to an instantiation of an entity (as opposed to a non-template or
161   /// an explicit specialization).
162   inline bool isTemplateInstantiation(TemplateSpecializationKind Kind) {
163     return Kind != TSK_Undeclared && Kind != TSK_ExplicitSpecialization;
164   }
165
166   /// \brief True if this template specialization kind is an explicit
167   /// specialization, explicit instantiation declaration, or explicit
168   /// instantiation definition.
169   inline bool isTemplateExplicitInstantiationOrSpecialization(
170       TemplateSpecializationKind Kind) {
171     switch (Kind) {
172     case TSK_ExplicitSpecialization:
173     case TSK_ExplicitInstantiationDeclaration:
174     case TSK_ExplicitInstantiationDefinition:
175       return true;
176
177     case TSK_Undeclared:
178     case TSK_ImplicitInstantiation:
179       return false;
180     }
181     llvm_unreachable("bad template specialization kind");
182   }
183
184   /// \brief Thread storage-class-specifier.
185   enum ThreadStorageClassSpecifier {
186     TSCS_unspecified,
187     /// GNU __thread.
188     TSCS___thread,
189     /// C++11 thread_local. Implies 'static' at block scope, but not at
190     /// class scope.
191     TSCS_thread_local,
192     /// C11 _Thread_local. Must be combined with either 'static' or 'extern'
193     /// if used at block scope.
194     TSCS__Thread_local
195   };
196
197   /// \brief Storage classes.
198   enum StorageClass {
199     // These are legal on both functions and variables.
200     SC_None,
201     SC_Extern,
202     SC_Static,
203     SC_PrivateExtern,
204
205     // These are only legal on variables.
206     SC_Auto,
207     SC_Register
208   };
209
210   /// \brief Checks whether the given storage class is legal for functions.
211   inline bool isLegalForFunction(StorageClass SC) {
212     return SC <= SC_PrivateExtern;
213   }
214
215   /// \brief Checks whether the given storage class is legal for variables.
216   inline bool isLegalForVariable(StorageClass SC) {
217     return true;
218   }
219
220   /// \brief In-class initialization styles for non-static data members.
221   enum InClassInitStyle {
222     ICIS_NoInit,   ///< No in-class initializer.
223     ICIS_CopyInit, ///< Copy initialization.
224     ICIS_ListInit  ///< Direct list-initialization.
225   };
226
227   /// \brief CallingConv - Specifies the calling convention that a function uses.
228   enum CallingConv {
229     CC_C,           // __attribute__((cdecl))
230     CC_X86StdCall,  // __attribute__((stdcall))
231     CC_X86FastCall, // __attribute__((fastcall))
232     CC_X86ThisCall, // __attribute__((thiscall))
233     CC_X86VectorCall, // __attribute__((vectorcall))
234     CC_X86Pascal,   // __attribute__((pascal))
235     CC_X86_64Win64, // __attribute__((ms_abi))
236     CC_X86_64SysV,  // __attribute__((sysv_abi))
237     CC_AAPCS,       // __attribute__((pcs("aapcs")))
238     CC_AAPCS_VFP,   // __attribute__((pcs("aapcs-vfp")))
239     CC_IntelOclBicc, // __attribute__((intel_ocl_bicc))
240     CC_SpirFunction, // default for OpenCL functions on SPIR target
241     CC_SpirKernel    // inferred for OpenCL kernels on SPIR target
242   };
243
244   /// \brief Checks whether the given calling convention supports variadic
245   /// calls. Unprototyped calls also use the variadic call rules.
246   inline bool supportsVariadicCall(CallingConv CC) {
247     switch (CC) {
248     case CC_X86StdCall:
249     case CC_X86FastCall:
250     case CC_X86ThisCall:
251     case CC_X86Pascal:
252     case CC_X86VectorCall:
253     case CC_SpirFunction:
254     case CC_SpirKernel:
255       return false;
256     default:
257       return true;
258     }
259   }
260
261   /// \brief The storage duration for an object (per C++ [basic.stc]).
262   enum StorageDuration {
263     SD_FullExpression, ///< Full-expression storage duration (for temporaries).
264     SD_Automatic,      ///< Automatic storage duration (most local variables).
265     SD_Thread,         ///< Thread storage duration.
266     SD_Static,         ///< Static storage duration.
267     SD_Dynamic         ///< Dynamic storage duration.
268   };
269
270   /// Describes the nullability of a particular type.
271   enum class NullabilityKind : uint8_t {
272     /// Values of this type can never be null.
273     NonNull = 0,
274     /// Values of this type can be null.
275     Nullable,
276     /// Whether values of this type can be null is (explicitly)
277     /// unspecified. This captures a (fairly rare) case where we
278     /// can't conclude anything about the nullability of the type even
279     /// though it has been considered.
280     Unspecified
281   };
282
283   /// Retrieve the spelling of the given nullability kind.
284   llvm::StringRef getNullabilitySpelling(NullabilityKind kind,
285                                          bool isContextSensitive = false);
286 } // end namespace clang
287
288 #endif // LLVM_CLANG_BASIC_SPECIFIERS_H