]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
MFV r329753: 8809 libzpool should leverage work done in libfakekernel
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Serialization / ASTBitCodes.h
1 //===- ASTBitCodes.h - Enum values for the PCH bitcode format ---*- 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 // This header defines Bitcode enum values for Clang serialized AST files.
11 //
12 // The enum values defined in this file should be considered permanent.  If
13 // new features are added, they should have values added at the end of the
14 // respective lists.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_CLANG_SERIALIZATION_ASTBITCODES_H
19 #define LLVM_CLANG_SERIALIZATION_ASTBITCODES_H
20
21 #include "clang/AST/DeclarationName.h"
22 #include "clang/AST/Type.h"
23 #include "clang/Basic/IdentifierTable.h"
24 #include "clang/Basic/OperatorKinds.h"
25 #include "clang/Basic/SourceLocation.h"
26 #include "llvm/ADT/DenseMapInfo.h"
27 #include "llvm/Bitcode/BitCodes.h"
28 #include <cassert>
29 #include <cstdint>
30
31 namespace clang {
32 namespace serialization {
33
34     /// \brief AST file major version number supported by this version of
35     /// Clang.
36     ///
37     /// Whenever the AST file format changes in a way that makes it
38     /// incompatible with previous versions (such that a reader
39     /// designed for the previous version could not support reading
40     /// the new version), this number should be increased.
41     ///
42     /// Version 4 of AST files also requires that the version control branch and
43     /// revision match exactly, since there is no backward compatibility of
44     /// AST files at this time.
45     const unsigned VERSION_MAJOR = 6;
46
47     /// \brief AST file minor version number supported by this version of
48     /// Clang.
49     ///
50     /// Whenever the AST format changes in a way that is still
51     /// compatible with previous versions (such that a reader designed
52     /// for the previous version could still support reading the new
53     /// version by ignoring new kinds of subblocks), this number
54     /// should be increased.
55     const unsigned VERSION_MINOR = 0;
56
57     /// \brief An ID number that refers to an identifier in an AST file.
58     /// 
59     /// The ID numbers of identifiers are consecutive (in order of discovery)
60     /// and start at 1. 0 is reserved for NULL.
61     using IdentifierID = uint32_t;
62     
63     /// \brief An ID number that refers to a declaration in an AST file.
64     ///
65     /// The ID numbers of declarations are consecutive (in order of
66     /// discovery), with values below NUM_PREDEF_DECL_IDS being reserved. 
67     /// At the start of a chain of precompiled headers, declaration ID 1 is 
68     /// used for the translation unit declaration.
69     using DeclID = uint32_t;
70
71     // FIXME: Turn these into classes so we can have some type safety when
72     // we go from local ID to global and vice-versa.
73     using LocalDeclID = DeclID;
74     using GlobalDeclID = DeclID;
75
76     /// \brief An ID number that refers to a type in an AST file.
77     ///
78     /// The ID of a type is partitioned into two parts: the lower
79     /// three bits are used to store the const/volatile/restrict
80     /// qualifiers (as with QualType) and the upper bits provide a
81     /// type index. The type index values are partitioned into two
82     /// sets. The values below NUM_PREDEF_TYPE_IDs are predefined type
83     /// IDs (based on the PREDEF_TYPE_*_ID constants), with 0 as a
84     /// placeholder for "no type". Values from NUM_PREDEF_TYPE_IDs are
85     /// other types that have serialized representations.
86     using TypeID = uint32_t;
87
88     /// \brief A type index; the type ID with the qualifier bits removed.
89     class TypeIdx {
90       uint32_t Idx = 0;
91
92     public:
93       TypeIdx() = default;
94       explicit TypeIdx(uint32_t index) : Idx(index) {}
95
96       uint32_t getIndex() const { return Idx; }
97
98       TypeID asTypeID(unsigned FastQuals) const {
99         if (Idx == uint32_t(-1))
100           return TypeID(-1);
101         
102         return (Idx << Qualifiers::FastWidth) | FastQuals;
103       }
104
105       static TypeIdx fromTypeID(TypeID ID) {
106         if (ID == TypeID(-1))
107           return TypeIdx(-1);
108         
109         return TypeIdx(ID >> Qualifiers::FastWidth);
110       }
111     };
112
113     /// A structure for putting "fast"-unqualified QualTypes into a
114     /// DenseMap.  This uses the standard pointer hash function.
115     struct UnsafeQualTypeDenseMapInfo {
116       static bool isEqual(QualType A, QualType B) { return A == B; }
117
118       static QualType getEmptyKey() {
119         return QualType::getFromOpaquePtr((void*) 1);
120       }
121
122       static QualType getTombstoneKey() {
123         return QualType::getFromOpaquePtr((void*) 2);
124       }
125
126       static unsigned getHashValue(QualType T) {
127         assert(!T.getLocalFastQualifiers() && 
128                "hash invalid for types with fast quals");
129         uintptr_t v = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
130         return (unsigned(v) >> 4) ^ (unsigned(v) >> 9);
131       }
132     };
133
134     /// \brief An ID number that refers to an identifier in an AST file.
135     using IdentID = uint32_t;
136
137     /// \brief The number of predefined identifier IDs.
138     const unsigned int NUM_PREDEF_IDENT_IDS = 1;
139
140     /// \brief An ID number that refers to a macro in an AST file.
141     using MacroID = uint32_t;
142
143     /// \brief A global ID number that refers to a macro in an AST file.
144     using GlobalMacroID = uint32_t;
145
146     /// \brief A local to a module ID number that refers to a macro in an
147     /// AST file.
148     using LocalMacroID = uint32_t;
149
150     /// \brief The number of predefined macro IDs.
151     const unsigned int NUM_PREDEF_MACRO_IDS = 1;
152
153     /// \brief An ID number that refers to an ObjC selector in an AST file.
154     using SelectorID = uint32_t;
155
156     /// \brief The number of predefined selector IDs.
157     const unsigned int NUM_PREDEF_SELECTOR_IDS = 1;
158     
159     /// \brief An ID number that refers to a set of CXXBaseSpecifiers in an 
160     /// AST file.
161     using CXXBaseSpecifiersID = uint32_t;
162
163     /// \brief An ID number that refers to a list of CXXCtorInitializers in an
164     /// AST file.
165     using CXXCtorInitializersID = uint32_t;
166
167     /// \brief An ID number that refers to an entity in the detailed
168     /// preprocessing record.
169     using PreprocessedEntityID = uint32_t;
170
171     /// \brief An ID number that refers to a submodule in a module file.
172     using SubmoduleID = uint32_t;
173     
174     /// \brief The number of predefined submodule IDs.
175     const unsigned int NUM_PREDEF_SUBMODULE_IDS = 1;
176
177     /// \brief Source range/offset of a preprocessed entity.
178     struct PPEntityOffset {
179       /// \brief Raw source location of beginning of range.
180       unsigned Begin;
181
182       /// \brief Raw source location of end of range.
183       unsigned End;
184
185       /// \brief Offset in the AST file.
186       uint32_t BitOffset;
187
188       PPEntityOffset(SourceRange R, uint32_t BitOffset)
189         : Begin(R.getBegin().getRawEncoding()),
190           End(R.getEnd().getRawEncoding()), BitOffset(BitOffset) {}
191
192       SourceLocation getBegin() const {
193         return SourceLocation::getFromRawEncoding(Begin);
194       }
195
196       SourceLocation getEnd() const {
197         return SourceLocation::getFromRawEncoding(End);
198       }
199     };
200
201     /// \brief Source range/offset of a preprocessed entity.
202     struct DeclOffset {
203       /// \brief Raw source location.
204       unsigned Loc = 0;
205
206       /// \brief Offset in the AST file.
207       uint32_t BitOffset = 0;
208
209       DeclOffset() = default;
210       DeclOffset(SourceLocation Loc, uint32_t BitOffset)
211         : Loc(Loc.getRawEncoding()), BitOffset(BitOffset) {}
212
213       void setLocation(SourceLocation L) {
214         Loc = L.getRawEncoding();
215       }
216
217       SourceLocation getLocation() const {
218         return SourceLocation::getFromRawEncoding(Loc);
219       }
220     };
221
222     /// \brief The number of predefined preprocessed entity IDs.
223     const unsigned int NUM_PREDEF_PP_ENTITY_IDS = 1;
224
225     /// \brief Describes the various kinds of blocks that occur within
226     /// an AST file.
227     enum BlockIDs {
228       /// \brief The AST block, which acts as a container around the
229       /// full AST block.
230       AST_BLOCK_ID = llvm::bitc::FIRST_APPLICATION_BLOCKID,
231
232       /// \brief The block containing information about the source
233       /// manager.
234       SOURCE_MANAGER_BLOCK_ID,
235
236       /// \brief The block containing information about the
237       /// preprocessor.
238       PREPROCESSOR_BLOCK_ID,
239
240       /// \brief The block containing the definitions of all of the
241       /// types and decls used within the AST file.
242       DECLTYPES_BLOCK_ID,
243
244       /// \brief The block containing the detailed preprocessing record.
245       PREPROCESSOR_DETAIL_BLOCK_ID,
246
247       /// \brief The block containing the submodule structure.
248       SUBMODULE_BLOCK_ID,
249
250       /// \brief The block containing comments.
251       COMMENTS_BLOCK_ID,
252
253       /// \brief The control block, which contains all of the
254       /// information that needs to be validated prior to committing
255       /// to loading the AST file.
256       CONTROL_BLOCK_ID,
257
258       /// \brief The block of input files, which were used as inputs
259       /// to create this AST file.
260       ///
261       /// This block is part of the control block.
262       INPUT_FILES_BLOCK_ID,
263
264       /// \brief The block of configuration options, used to check that
265       /// a module is being used in a configuration compatible with the
266       /// configuration in which it was built.
267       ///
268       /// This block is part of the control block.
269       OPTIONS_BLOCK_ID,
270
271       /// \brief A block containing a module file extension.
272       EXTENSION_BLOCK_ID,
273
274       /// A block with unhashed content.
275       ///
276       /// These records should not change the \a ASTFileSignature.  See \a
277       /// UnhashedControlBlockRecordTypes for the list of records.
278       UNHASHED_CONTROL_BLOCK_ID,
279     };
280
281     /// \brief Record types that occur within the control block.
282     enum ControlRecordTypes {
283       /// \brief AST file metadata, including the AST file version number
284       /// and information about the compiler used to build this AST file.
285       METADATA = 1,
286
287       /// \brief Record code for the list of other AST files imported by
288       /// this AST file.
289       IMPORTS,
290
291       /// \brief Record code for the original file that was used to
292       /// generate the AST file, including both its file ID and its
293       /// name.
294       ORIGINAL_FILE,
295       
296       /// \brief The directory that the PCH was originally created in.
297       ORIGINAL_PCH_DIR,
298
299       /// \brief Record code for file ID of the file or buffer that was used to
300       /// generate the AST file.
301       ORIGINAL_FILE_ID,
302
303       /// \brief Offsets into the input-files block where input files
304       /// reside.
305       INPUT_FILE_OFFSETS,
306
307       /// \brief Record code for the module name.
308       MODULE_NAME,
309
310       /// \brief Record code for the module map file that was used to build this
311       /// AST file.
312       MODULE_MAP_FILE,
313
314       /// \brief Record code for the module build directory.
315       MODULE_DIRECTORY,
316     };
317
318     /// \brief Record types that occur within the options block inside
319     /// the control block.
320     enum OptionsRecordTypes {
321       /// \brief Record code for the language options table.
322       ///
323       /// The record with this code contains the contents of the
324       /// LangOptions structure. We serialize the entire contents of
325       /// the structure, and let the reader decide which options are
326       /// actually important to check.
327       LANGUAGE_OPTIONS = 1,
328
329       /// \brief Record code for the target options table.
330       TARGET_OPTIONS,
331
332       /// \brief Record code for the filesystem options table.
333       FILE_SYSTEM_OPTIONS,
334
335       /// \brief Record code for the headers search options table.
336       HEADER_SEARCH_OPTIONS,
337
338       /// \brief Record code for the preprocessor options table.
339       PREPROCESSOR_OPTIONS,
340     };
341
342     /// Record codes for the unhashed control block.
343     enum UnhashedControlBlockRecordTypes {
344       /// Record code for the signature that identifiers this AST file.
345       SIGNATURE = 1,
346
347       /// Record code for the diagnostic options table.
348       DIAGNOSTIC_OPTIONS,
349
350       /// Record code for \#pragma diagnostic mappings.
351       DIAG_PRAGMA_MAPPINGS,
352     };
353
354     /// \brief Record code for extension blocks.
355     enum ExtensionBlockRecordTypes {
356       /// Metadata describing this particular extension.
357       EXTENSION_METADATA = 1,
358
359       /// The first record ID allocated to the extensions themselves.
360       FIRST_EXTENSION_RECORD_ID = 4
361     };
362
363     /// \brief Record types that occur within the input-files block
364     /// inside the control block.
365     enum InputFileRecordTypes {
366       /// \brief An input file.
367       INPUT_FILE = 1
368     };
369
370     /// \brief Record types that occur within the AST block itself.
371     enum ASTRecordTypes {
372       /// \brief Record code for the offsets of each type.
373       ///
374       /// The TYPE_OFFSET constant describes the record that occurs
375       /// within the AST block. The record itself is an array of offsets that
376       /// point into the declarations and types block (identified by
377       /// DECLTYPES_BLOCK_ID). The index into the array is based on the ID
378       /// of a type. For a given type ID @c T, the lower three bits of
379       /// @c T are its qualifiers (const, volatile, restrict), as in
380       /// the QualType class. The upper bits, after being shifted and
381       /// subtracting NUM_PREDEF_TYPE_IDS, are used to index into the
382       /// TYPE_OFFSET block to determine the offset of that type's
383       /// corresponding record within the DECLTYPES_BLOCK_ID block.
384       TYPE_OFFSET = 1,
385
386       /// \brief Record code for the offsets of each decl.
387       ///
388       /// The DECL_OFFSET constant describes the record that occurs
389       /// within the block identified by DECL_OFFSETS_BLOCK_ID within
390       /// the AST block. The record itself is an array of offsets that
391       /// point into the declarations and types block (identified by
392       /// DECLTYPES_BLOCK_ID). The declaration ID is an index into this
393       /// record, after subtracting one to account for the use of
394       /// declaration ID 0 for a NULL declaration pointer. Index 0 is
395       /// reserved for the translation unit declaration.
396       DECL_OFFSET = 2,
397
398       /// \brief Record code for the table of offsets of each
399       /// identifier ID.
400       ///
401       /// The offset table contains offsets into the blob stored in
402       /// the IDENTIFIER_TABLE record. Each offset points to the
403       /// NULL-terminated string that corresponds to that identifier.
404       IDENTIFIER_OFFSET = 3,
405
406       /// \brief This is so that older clang versions, before the introduction
407       /// of the control block, can read and reject the newer PCH format.
408       /// *DON'T CHANGE THIS NUMBER*.
409       METADATA_OLD_FORMAT = 4,
410
411       /// \brief Record code for the identifier table.
412       ///
413       /// The identifier table is a simple blob that contains
414       /// NULL-terminated strings for all of the identifiers
415       /// referenced by the AST file. The IDENTIFIER_OFFSET table
416       /// contains the mapping from identifier IDs to the characters
417       /// in this blob. Note that the starting offsets of all of the
418       /// identifiers are odd, so that, when the identifier offset
419       /// table is loaded in, we can use the low bit to distinguish
420       /// between offsets (for unresolved identifier IDs) and
421       /// IdentifierInfo pointers (for already-resolved identifier
422       /// IDs).
423       IDENTIFIER_TABLE = 5,
424
425       /// \brief Record code for the array of eagerly deserialized decls.
426       ///
427       /// The AST file contains a list of all of the declarations that should be
428       /// eagerly deserialized present within the parsed headers, stored as an
429       /// array of declaration IDs. These declarations will be
430       /// reported to the AST consumer after the AST file has been
431       /// read, since their presence can affect the semantics of the
432       /// program (e.g., for code generation).
433       EAGERLY_DESERIALIZED_DECLS = 6,
434
435       /// \brief Record code for the set of non-builtin, special
436       /// types.
437       ///
438       /// This record contains the type IDs for the various type nodes
439       /// that are constructed during semantic analysis (e.g.,
440       /// __builtin_va_list). The SPECIAL_TYPE_* constants provide
441       /// offsets into this record.
442       SPECIAL_TYPES = 7,
443
444       /// \brief Record code for the extra statistics we gather while
445       /// generating an AST file.
446       STATISTICS = 8,
447
448       /// \brief Record code for the array of tentative definitions.
449       TENTATIVE_DEFINITIONS = 9,
450
451       // ID 10 used to be for a list of extern "C" declarations.
452
453       /// \brief Record code for the table of offsets into the
454       /// Objective-C method pool.
455       SELECTOR_OFFSETS = 11,
456
457       /// \brief Record code for the Objective-C method pool,
458       METHOD_POOL = 12,
459
460       /// \brief The value of the next __COUNTER__ to dispense.
461       /// [PP_COUNTER_VALUE, Val]
462       PP_COUNTER_VALUE = 13,
463
464       /// \brief Record code for the table of offsets into the block
465       /// of source-location information.
466       SOURCE_LOCATION_OFFSETS = 14,
467
468       /// \brief Record code for the set of source location entries
469       /// that need to be preloaded by the AST reader.
470       ///
471       /// This set contains the source location entry for the
472       /// predefines buffer and for any file entries that need to be
473       /// preloaded.
474       SOURCE_LOCATION_PRELOADS = 15,
475
476       /// \brief Record code for the set of ext_vector type names.
477       EXT_VECTOR_DECLS = 16,
478
479       /// \brief Record code for the array of unused file scoped decls.
480       UNUSED_FILESCOPED_DECLS = 17,
481
482       /// \brief Record code for the table of offsets to entries in the
483       /// preprocessing record.
484       PPD_ENTITIES_OFFSETS = 18,
485
486       /// \brief Record code for the array of VTable uses.
487       VTABLE_USES = 19,
488
489       // ID 20 used to be for a list of dynamic classes.
490
491       /// \brief Record code for referenced selector pool.
492       REFERENCED_SELECTOR_POOL = 21,
493
494       /// \brief Record code for an update to the TU's lexically contained
495       /// declarations.
496       TU_UPDATE_LEXICAL = 22,
497
498       // ID 23 used to be for a list of local redeclarations.
499
500       /// \brief Record code for declarations that Sema keeps references of.
501       SEMA_DECL_REFS = 24,
502
503       /// \brief Record code for weak undeclared identifiers.
504       WEAK_UNDECLARED_IDENTIFIERS = 25,
505
506       /// \brief Record code for pending implicit instantiations.
507       PENDING_IMPLICIT_INSTANTIATIONS = 26,
508
509       // ID 27 used to be for a list of replacement decls.
510
511       /// \brief Record code for an update to a decl context's lookup table.
512       ///
513       /// In practice, this should only be used for the TU and namespaces.
514       UPDATE_VISIBLE = 28,
515
516       /// \brief Record for offsets of DECL_UPDATES records for declarations
517       /// that were modified after being deserialized and need updates.
518       DECL_UPDATE_OFFSETS = 29,
519
520       // ID 30 used to be a decl update record. These are now in the DECLTYPES
521       // block.
522
523       // ID 31 used to be a list of offsets to DECL_CXX_BASE_SPECIFIERS records.
524
525       // ID 32 used to be the code for \#pragma diagnostic mappings.
526
527       /// \brief Record code for special CUDA declarations.
528       CUDA_SPECIAL_DECL_REFS = 33,
529
530       /// \brief Record code for header search information.
531       HEADER_SEARCH_TABLE = 34,
532
533       /// \brief Record code for floating point \#pragma options.
534       FP_PRAGMA_OPTIONS = 35,
535
536       /// \brief Record code for enabled OpenCL extensions.
537       OPENCL_EXTENSIONS = 36,
538
539       /// \brief The list of delegating constructor declarations.
540       DELEGATING_CTORS = 37,
541
542       /// \brief Record code for the set of known namespaces, which are used
543       /// for typo correction.
544       KNOWN_NAMESPACES = 38,
545
546       /// \brief Record code for the remapping information used to relate
547       /// loaded modules to the various offsets and IDs(e.g., source location
548       /// offests, declaration and type IDs) that are used in that module to
549       /// refer to other modules.
550       MODULE_OFFSET_MAP = 39,
551
552       /// \brief Record code for the source manager line table information,
553       /// which stores information about \#line directives.
554       SOURCE_MANAGER_LINE_TABLE = 40,
555
556       /// \brief Record code for map of Objective-C class definition IDs to the
557       /// ObjC categories in a module that are attached to that class.
558       OBJC_CATEGORIES_MAP = 41,
559
560       /// \brief Record code for a file sorted array of DeclIDs in a module.
561       FILE_SORTED_DECLS = 42,
562
563       /// \brief Record code for an array of all of the (sub)modules that were
564       /// imported by the AST file.
565       IMPORTED_MODULES = 43,
566
567       // ID 44 used to be a table of merged canonical declarations.
568       // ID 45 used to be a list of declaration IDs of local redeclarations.
569
570       /// \brief Record code for the array of Objective-C categories (including
571       /// extensions).
572       ///
573       /// This array can only be interpreted properly using the Objective-C
574       /// categories map.
575       OBJC_CATEGORIES = 46,
576
577       /// \brief Record code for the table of offsets of each macro ID.
578       ///
579       /// The offset table contains offsets into the blob stored in
580       /// the preprocessor block. Each offset points to the corresponding
581       /// macro definition.
582       MACRO_OFFSET = 47,
583
584       /// \brief A list of "interesting" identifiers. Only used in C++ (where we
585       /// don't normally do lookups into the serialized identifier table). These
586       /// are eagerly deserialized.
587       INTERESTING_IDENTIFIERS = 48,
588
589       /// \brief Record code for undefined but used functions and variables that
590       /// need a definition in this TU.
591       UNDEFINED_BUT_USED = 49,
592
593       /// \brief Record code for late parsed template functions.
594       LATE_PARSED_TEMPLATE = 50,
595
596       /// \brief Record code for \#pragma optimize options.
597       OPTIMIZE_PRAGMA_OPTIONS = 51,
598
599       /// \brief Record code for potentially unused local typedef names.
600       UNUSED_LOCAL_TYPEDEF_NAME_CANDIDATES = 52,
601
602       // ID 53 used to be a table of constructor initializer records.
603
604       /// \brief Delete expressions that will be analyzed later.
605       DELETE_EXPRS_TO_ANALYZE = 54,
606
607       /// \brief Record code for \#pragma ms_struct options.
608       MSSTRUCT_PRAGMA_OPTIONS = 55,
609
610       /// \brief Record code for \#pragma ms_struct options.
611       POINTERS_TO_MEMBERS_PRAGMA_OPTIONS = 56,
612
613       /// \brief Number of unmatched #pragma clang cuda_force_host_device begin
614       /// directives we've seen.
615       CUDA_PRAGMA_FORCE_HOST_DEVICE_DEPTH = 57,
616
617       /// \brief Record code for types associated with OpenCL extensions.
618       OPENCL_EXTENSION_TYPES = 58,
619
620       /// \brief Record code for declarations associated with OpenCL extensions.
621       OPENCL_EXTENSION_DECLS = 59,
622
623       MODULAR_CODEGEN_DECLS = 60,
624
625       /// \brief Record code for \#pragma pack options.
626       PACK_PRAGMA_OPTIONS = 61,
627
628       /// \brief The stack of open #ifs/#ifdefs recorded in a preamble.
629       PP_CONDITIONAL_STACK = 62,
630     };
631
632     /// \brief Record types used within a source manager block.
633     enum SourceManagerRecordTypes {
634       /// \brief Describes a source location entry (SLocEntry) for a
635       /// file.
636       SM_SLOC_FILE_ENTRY = 1,
637
638       /// \brief Describes a source location entry (SLocEntry) for a
639       /// buffer.
640       SM_SLOC_BUFFER_ENTRY = 2,
641
642       /// \brief Describes a blob that contains the data for a buffer
643       /// entry. This kind of record always directly follows a
644       /// SM_SLOC_BUFFER_ENTRY record or a SM_SLOC_FILE_ENTRY with an
645       /// overridden buffer.
646       SM_SLOC_BUFFER_BLOB = 3,
647
648       /// \brief Describes a zlib-compressed blob that contains the data for
649       /// a buffer entry.
650       SM_SLOC_BUFFER_BLOB_COMPRESSED = 4,
651
652       /// \brief Describes a source location entry (SLocEntry) for a
653       /// macro expansion.
654       SM_SLOC_EXPANSION_ENTRY = 5
655     };
656
657     /// \brief Record types used within a preprocessor block.
658     enum PreprocessorRecordTypes {
659       // The macros in the PP section are a PP_MACRO_* instance followed by a
660       // list of PP_TOKEN instances for each token in the definition.
661
662       /// \brief An object-like macro definition.
663       /// [PP_MACRO_OBJECT_LIKE, IdentInfoID, SLoc, IsUsed]
664       PP_MACRO_OBJECT_LIKE = 1,
665
666       /// \brief A function-like macro definition.
667       /// [PP_MACRO_FUNCTION_LIKE, \<ObjectLikeStuff>, IsC99Varargs,
668       /// IsGNUVarars, NumArgs, ArgIdentInfoID* ]
669       PP_MACRO_FUNCTION_LIKE = 2,
670
671       /// \brief Describes one token.
672       /// [PP_TOKEN, SLoc, Length, IdentInfoID, Kind, Flags]
673       PP_TOKEN = 3,
674
675       /// \brief The macro directives history for a particular identifier.
676       PP_MACRO_DIRECTIVE_HISTORY = 4,
677
678       /// \brief A macro directive exported by a module.
679       /// [PP_MODULE_MACRO, SubmoduleID, MacroID, (Overridden SubmoduleID)*]
680       PP_MODULE_MACRO = 5,
681     };
682
683     /// \brief Record types used within a preprocessor detail block.
684     enum PreprocessorDetailRecordTypes {
685       /// \brief Describes a macro expansion within the preprocessing record.
686       PPD_MACRO_EXPANSION = 0,
687       
688       /// \brief Describes a macro definition within the preprocessing record.
689       PPD_MACRO_DEFINITION = 1,
690       
691       /// \brief Describes an inclusion directive within the preprocessing
692       /// record.
693       PPD_INCLUSION_DIRECTIVE = 2
694     };
695     
696     /// \brief Record types used within a submodule description block.
697     enum SubmoduleRecordTypes {
698       /// \brief Metadata for submodules as a whole.
699       SUBMODULE_METADATA = 0,
700
701       /// \brief Defines the major attributes of a submodule, including its
702       /// name and parent.
703       SUBMODULE_DEFINITION = 1,
704
705       /// \brief Specifies the umbrella header used to create this module,
706       /// if any.
707       SUBMODULE_UMBRELLA_HEADER = 2,
708
709       /// \brief Specifies a header that falls into this (sub)module.
710       SUBMODULE_HEADER = 3,
711
712       /// \brief Specifies a top-level header that falls into this (sub)module.
713       SUBMODULE_TOPHEADER = 4,
714
715       /// \brief Specifies an umbrella directory.
716       SUBMODULE_UMBRELLA_DIR = 5,
717
718       /// \brief Specifies the submodules that are imported by this 
719       /// submodule.
720       SUBMODULE_IMPORTS = 6,
721
722       /// \brief Specifies the submodules that are re-exported from this 
723       /// submodule.
724       SUBMODULE_EXPORTS = 7,
725
726       /// \brief Specifies a required feature.
727       SUBMODULE_REQUIRES = 8,
728
729       /// \brief Specifies a header that has been explicitly excluded
730       /// from this submodule.
731       SUBMODULE_EXCLUDED_HEADER = 9,
732
733       /// \brief Specifies a library or framework to link against.
734       SUBMODULE_LINK_LIBRARY = 10,
735
736       /// \brief Specifies a configuration macro for this module.
737       SUBMODULE_CONFIG_MACRO = 11,
738
739       /// \brief Specifies a conflict with another module.
740       SUBMODULE_CONFLICT = 12,
741
742       /// \brief Specifies a header that is private to this submodule.
743       SUBMODULE_PRIVATE_HEADER = 13,
744
745       /// \brief Specifies a header that is part of the module but must be
746       /// textually included.
747       SUBMODULE_TEXTUAL_HEADER = 14,
748
749       /// \brief Specifies a header that is private to this submodule but
750       /// must be textually included.
751       SUBMODULE_PRIVATE_TEXTUAL_HEADER = 15,
752
753       /// \brief Specifies some declarations with initializers that must be
754       /// emitted to initialize the module.
755       SUBMODULE_INITIALIZERS = 16,
756
757       /// \brief Specifies the name of the module that will eventually
758       /// re-export the entities in this module.
759       SUBMODULE_EXPORT_AS = 17,
760     };
761
762     /// \brief Record types used within a comments block.
763     enum CommentRecordTypes {
764       COMMENTS_RAW_COMMENT = 0
765     };
766
767     /// \defgroup ASTAST AST file AST constants
768     ///
769     /// The constants in this group describe various components of the
770     /// abstract syntax tree within an AST file.
771     ///
772     /// @{
773
774     /// \brief Predefined type IDs.
775     ///
776     /// These type IDs correspond to predefined types in the AST
777     /// context, such as built-in types (int) and special place-holder
778     /// types (the \<overload> and \<dependent> type markers). Such
779     /// types are never actually serialized, since they will be built
780     /// by the AST context when it is created.
781     enum PredefinedTypeIDs {
782       /// \brief The NULL type.
783       PREDEF_TYPE_NULL_ID       = 0,
784
785       /// \brief The void type.
786       PREDEF_TYPE_VOID_ID       = 1,
787
788       /// \brief The 'bool' or '_Bool' type.
789       PREDEF_TYPE_BOOL_ID       = 2,
790
791       /// \brief The 'char' type, when it is unsigned.
792       PREDEF_TYPE_CHAR_U_ID     = 3,
793
794       /// \brief The 'unsigned char' type.
795       PREDEF_TYPE_UCHAR_ID      = 4,
796
797       /// \brief The 'unsigned short' type.
798       PREDEF_TYPE_USHORT_ID     = 5,
799
800       /// \brief The 'unsigned int' type.
801       PREDEF_TYPE_UINT_ID       = 6,
802
803       /// \brief The 'unsigned long' type.
804       PREDEF_TYPE_ULONG_ID      = 7,
805
806       /// \brief The 'unsigned long long' type.
807       PREDEF_TYPE_ULONGLONG_ID  = 8,
808
809       /// \brief The 'char' type, when it is signed.
810       PREDEF_TYPE_CHAR_S_ID     = 9,
811
812       /// \brief The 'signed char' type.
813       PREDEF_TYPE_SCHAR_ID      = 10,
814
815       /// \brief The C++ 'wchar_t' type.
816       PREDEF_TYPE_WCHAR_ID      = 11,
817
818       /// \brief The (signed) 'short' type.
819       PREDEF_TYPE_SHORT_ID      = 12,
820
821       /// \brief The (signed) 'int' type.
822       PREDEF_TYPE_INT_ID        = 13,
823
824       /// \brief The (signed) 'long' type.
825       PREDEF_TYPE_LONG_ID       = 14,
826
827       /// \brief The (signed) 'long long' type.
828       PREDEF_TYPE_LONGLONG_ID   = 15,
829
830       /// \brief The 'float' type.
831       PREDEF_TYPE_FLOAT_ID      = 16,
832
833       /// \brief The 'double' type.
834       PREDEF_TYPE_DOUBLE_ID     = 17,
835
836       /// \brief The 'long double' type.
837       PREDEF_TYPE_LONGDOUBLE_ID = 18,
838
839       /// \brief The placeholder type for overloaded function sets.
840       PREDEF_TYPE_OVERLOAD_ID   = 19,
841
842       /// \brief The placeholder type for dependent types.
843       PREDEF_TYPE_DEPENDENT_ID  = 20,
844
845       /// \brief The '__uint128_t' type.
846       PREDEF_TYPE_UINT128_ID    = 21,
847
848       /// \brief The '__int128_t' type.
849       PREDEF_TYPE_INT128_ID     = 22,
850
851       /// \brief The type of 'nullptr'.
852       PREDEF_TYPE_NULLPTR_ID    = 23,
853
854       /// \brief The C++ 'char16_t' type.
855       PREDEF_TYPE_CHAR16_ID     = 24,
856
857       /// \brief The C++ 'char32_t' type.
858       PREDEF_TYPE_CHAR32_ID     = 25,
859
860       /// \brief The ObjC 'id' type.
861       PREDEF_TYPE_OBJC_ID       = 26,
862
863       /// \brief The ObjC 'Class' type.
864       PREDEF_TYPE_OBJC_CLASS    = 27,
865
866       /// \brief The ObjC 'SEL' type.
867       PREDEF_TYPE_OBJC_SEL      = 28,
868
869       /// \brief The 'unknown any' placeholder type.
870       PREDEF_TYPE_UNKNOWN_ANY   = 29,
871
872       /// \brief The placeholder type for bound member functions.
873       PREDEF_TYPE_BOUND_MEMBER  = 30,
874
875       /// \brief The "auto" deduction type.
876       PREDEF_TYPE_AUTO_DEDUCT   = 31,
877
878       /// \brief The "auto &&" deduction type.
879       PREDEF_TYPE_AUTO_RREF_DEDUCT = 32,
880
881       /// \brief The OpenCL 'half' / ARM NEON __fp16 type.
882       PREDEF_TYPE_HALF_ID       = 33,
883
884       /// \brief ARC's unbridged-cast placeholder type.
885       PREDEF_TYPE_ARC_UNBRIDGED_CAST = 34,
886
887       /// \brief The pseudo-object placeholder type.
888       PREDEF_TYPE_PSEUDO_OBJECT = 35,
889
890       /// \brief The placeholder type for builtin functions.
891       PREDEF_TYPE_BUILTIN_FN = 36,
892
893       /// \brief OpenCL event type.
894       PREDEF_TYPE_EVENT_ID      = 37,
895
896       /// \brief OpenCL clk event type.
897       PREDEF_TYPE_CLK_EVENT_ID  = 38,
898
899       /// \brief OpenCL sampler type.
900       PREDEF_TYPE_SAMPLER_ID    = 39,
901
902       /// \brief OpenCL queue type.
903       PREDEF_TYPE_QUEUE_ID      = 40,
904
905       /// \brief OpenCL reserve_id type.
906       PREDEF_TYPE_RESERVE_ID_ID = 41,
907
908       /// \brief The placeholder type for OpenMP array section.
909       PREDEF_TYPE_OMP_ARRAY_SECTION = 42,
910
911       /// \brief The '__float128' type
912       PREDEF_TYPE_FLOAT128_ID = 43,
913
914       /// \brief The '_Float16' type
915       PREDEF_TYPE_FLOAT16_ID = 44,
916
917       /// \brief OpenCL image types with auto numeration
918 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
919       PREDEF_TYPE_##Id##_ID,
920 #include "clang/Basic/OpenCLImageTypes.def"
921     };
922
923     /// \brief The number of predefined type IDs that are reserved for
924     /// the PREDEF_TYPE_* constants.
925     ///
926     /// Type IDs for non-predefined types will start at
927     /// NUM_PREDEF_TYPE_IDs.
928     const unsigned NUM_PREDEF_TYPE_IDS = 100;
929
930     /// \brief Record codes for each kind of type.
931     ///
932     /// These constants describe the type records that can occur within a
933     /// block identified by DECLTYPES_BLOCK_ID in the AST file. Each
934     /// constant describes a record for a specific type class in the
935     /// AST. Note that DeclCode values share this code space.
936     enum TypeCode {
937       /// \brief An ExtQualType record.
938       TYPE_EXT_QUAL                 = 1,
939
940       /// \brief A ComplexType record.
941       TYPE_COMPLEX                  = 3,
942
943       /// \brief A PointerType record.
944       TYPE_POINTER                  = 4,
945
946       /// \brief A BlockPointerType record.
947       TYPE_BLOCK_POINTER            = 5,
948
949       /// \brief An LValueReferenceType record.
950       TYPE_LVALUE_REFERENCE         = 6,
951
952       /// \brief An RValueReferenceType record.
953       TYPE_RVALUE_REFERENCE         = 7,
954
955       /// \brief A MemberPointerType record.
956       TYPE_MEMBER_POINTER           = 8,
957
958       /// \brief A ConstantArrayType record.
959       TYPE_CONSTANT_ARRAY           = 9,
960
961       /// \brief An IncompleteArrayType record.
962       TYPE_INCOMPLETE_ARRAY         = 10,
963
964       /// \brief A VariableArrayType record.
965       TYPE_VARIABLE_ARRAY           = 11,
966
967       /// \brief A VectorType record.
968       TYPE_VECTOR                   = 12,
969
970       /// \brief An ExtVectorType record.
971       TYPE_EXT_VECTOR               = 13,
972
973       /// \brief A FunctionNoProtoType record.
974       TYPE_FUNCTION_NO_PROTO        = 14,
975
976       /// \brief A FunctionProtoType record.
977       TYPE_FUNCTION_PROTO           = 15,
978
979       /// \brief A TypedefType record.
980       TYPE_TYPEDEF                  = 16,
981
982       /// \brief A TypeOfExprType record.
983       TYPE_TYPEOF_EXPR              = 17,
984
985       /// \brief A TypeOfType record.
986       TYPE_TYPEOF                   = 18,
987
988       /// \brief A RecordType record.
989       TYPE_RECORD                   = 19,
990
991       /// \brief An EnumType record.
992       TYPE_ENUM                     = 20,
993
994       /// \brief An ObjCInterfaceType record.
995       TYPE_OBJC_INTERFACE           = 21,
996
997       /// \brief An ObjCObjectPointerType record.
998       TYPE_OBJC_OBJECT_POINTER      = 22,
999
1000       /// \brief a DecltypeType record.
1001       TYPE_DECLTYPE                 = 23,
1002
1003       /// \brief An ElaboratedType record.
1004       TYPE_ELABORATED               = 24,
1005
1006       /// \brief A SubstTemplateTypeParmType record.
1007       TYPE_SUBST_TEMPLATE_TYPE_PARM = 25,
1008
1009       /// \brief An UnresolvedUsingType record.
1010       TYPE_UNRESOLVED_USING         = 26,
1011
1012       /// \brief An InjectedClassNameType record.
1013       TYPE_INJECTED_CLASS_NAME      = 27,
1014
1015       /// \brief An ObjCObjectType record.
1016       TYPE_OBJC_OBJECT              = 28,
1017
1018       /// \brief An TemplateTypeParmType record.
1019       TYPE_TEMPLATE_TYPE_PARM       = 29,
1020
1021       /// \brief An TemplateSpecializationType record.
1022       TYPE_TEMPLATE_SPECIALIZATION  = 30,
1023
1024       /// \brief A DependentNameType record.
1025       TYPE_DEPENDENT_NAME           = 31,
1026
1027       /// \brief A DependentTemplateSpecializationType record.
1028       TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION = 32,
1029
1030       /// \brief A DependentSizedArrayType record.
1031       TYPE_DEPENDENT_SIZED_ARRAY    = 33,
1032
1033       /// \brief A ParenType record.
1034       TYPE_PAREN                    = 34,
1035
1036       /// \brief A PackExpansionType record.
1037       TYPE_PACK_EXPANSION           = 35,
1038
1039       /// \brief An AttributedType record.
1040       TYPE_ATTRIBUTED               = 36,
1041
1042       /// \brief A SubstTemplateTypeParmPackType record.
1043       TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK = 37,
1044
1045       /// \brief A AutoType record.
1046       TYPE_AUTO                  = 38,
1047
1048       /// \brief A UnaryTransformType record.
1049       TYPE_UNARY_TRANSFORM       = 39,
1050
1051       /// \brief An AtomicType record.
1052       TYPE_ATOMIC                = 40,
1053
1054       /// \brief A DecayedType record.
1055       TYPE_DECAYED               = 41,
1056
1057       /// \brief An AdjustedType record.
1058       TYPE_ADJUSTED              = 42,
1059
1060       /// \brief A PipeType record.
1061       TYPE_PIPE                  = 43,
1062
1063       /// \brief An ObjCTypeParamType record.
1064       TYPE_OBJC_TYPE_PARAM       = 44,
1065
1066       /// \brief A DeducedTemplateSpecializationType record.
1067       TYPE_DEDUCED_TEMPLATE_SPECIALIZATION = 45,
1068
1069       /// \brief A DependentSizedExtVectorType record.
1070       TYPE_DEPENDENT_SIZED_EXT_VECTOR = 46,
1071
1072       /// \brief A DependentAddressSpaceType record.
1073       TYPE_DEPENDENT_ADDRESS_SPACE = 47
1074     };
1075
1076     /// \brief The type IDs for special types constructed by semantic
1077     /// analysis.
1078     ///
1079     /// The constants in this enumeration are indices into the
1080     /// SPECIAL_TYPES record.
1081     enum SpecialTypeIDs {
1082       /// \brief CFConstantString type
1083       SPECIAL_TYPE_CF_CONSTANT_STRING          = 0,
1084
1085       /// \brief C FILE typedef type
1086       SPECIAL_TYPE_FILE                        = 1,
1087
1088       /// \brief C jmp_buf typedef type
1089       SPECIAL_TYPE_JMP_BUF                     = 2,
1090
1091       /// \brief C sigjmp_buf typedef type
1092       SPECIAL_TYPE_SIGJMP_BUF                  = 3,
1093
1094       /// \brief Objective-C "id" redefinition type
1095       SPECIAL_TYPE_OBJC_ID_REDEFINITION        = 4,
1096
1097       /// \brief Objective-C "Class" redefinition type
1098       SPECIAL_TYPE_OBJC_CLASS_REDEFINITION     = 5,
1099
1100       /// \brief Objective-C "SEL" redefinition type
1101       SPECIAL_TYPE_OBJC_SEL_REDEFINITION       = 6,
1102
1103       /// \brief C ucontext_t typedef type
1104       SPECIAL_TYPE_UCONTEXT_T                  = 7
1105     };
1106     
1107     /// \brief The number of special type IDs.
1108     const unsigned NumSpecialTypeIDs = 8;
1109
1110     /// \brief Predefined declaration IDs.
1111     ///
1112     /// These declaration IDs correspond to predefined declarations in the AST
1113     /// context, such as the NULL declaration ID. Such declarations are never
1114     /// actually serialized, since they will be built by the AST context when 
1115     /// it is created.
1116     enum PredefinedDeclIDs {
1117       /// \brief The NULL declaration.
1118       PREDEF_DECL_NULL_ID = 0,
1119
1120       /// \brief The translation unit.
1121       PREDEF_DECL_TRANSLATION_UNIT_ID = 1,
1122
1123       /// \brief The Objective-C 'id' type.
1124       PREDEF_DECL_OBJC_ID_ID = 2,
1125
1126       /// \brief The Objective-C 'SEL' type.
1127       PREDEF_DECL_OBJC_SEL_ID = 3,
1128
1129       /// \brief The Objective-C 'Class' type.
1130       PREDEF_DECL_OBJC_CLASS_ID = 4,
1131
1132       /// \brief The Objective-C 'Protocol' type.
1133       PREDEF_DECL_OBJC_PROTOCOL_ID = 5,
1134
1135       /// \brief The signed 128-bit integer type.
1136       PREDEF_DECL_INT_128_ID = 6,
1137
1138       /// \brief The unsigned 128-bit integer type.
1139       PREDEF_DECL_UNSIGNED_INT_128_ID = 7,
1140
1141       /// \brief The internal 'instancetype' typedef.
1142       PREDEF_DECL_OBJC_INSTANCETYPE_ID = 8,
1143
1144       /// \brief The internal '__builtin_va_list' typedef.
1145       PREDEF_DECL_BUILTIN_VA_LIST_ID = 9,
1146
1147       /// \brief The internal '__va_list_tag' struct, if any.
1148       PREDEF_DECL_VA_LIST_TAG = 10,
1149
1150       /// \brief The internal '__builtin_ms_va_list' typedef.
1151       PREDEF_DECL_BUILTIN_MS_VA_LIST_ID = 11,
1152
1153       /// \brief The extern "C" context.
1154       PREDEF_DECL_EXTERN_C_CONTEXT_ID = 12,
1155
1156       /// \brief The internal '__make_integer_seq' template.
1157       PREDEF_DECL_MAKE_INTEGER_SEQ_ID = 13,
1158
1159       /// \brief The internal '__NSConstantString' typedef.
1160       PREDEF_DECL_CF_CONSTANT_STRING_ID = 14,
1161
1162       /// \brief The internal '__NSConstantString' tag type.
1163       PREDEF_DECL_CF_CONSTANT_STRING_TAG_ID = 15,
1164
1165       /// \brief The internal '__type_pack_element' template.
1166       PREDEF_DECL_TYPE_PACK_ELEMENT_ID = 16,
1167     };
1168
1169     /// \brief The number of declaration IDs that are predefined.
1170     ///
1171     /// For more information about predefined declarations, see the
1172     /// \c PredefinedDeclIDs type and the PREDEF_DECL_*_ID constants.
1173     const unsigned int NUM_PREDEF_DECL_IDS = 17;
1174
1175     /// \brief Record of updates for a declaration that was modified after
1176     /// being deserialized. This can occur within DECLTYPES_BLOCK_ID.
1177     const unsigned int DECL_UPDATES = 49;
1178
1179     /// \brief Record code for a list of local redeclarations of a declaration.
1180     /// This can occur within DECLTYPES_BLOCK_ID.
1181     const unsigned int LOCAL_REDECLARATIONS = 50;
1182     
1183     /// \brief Record codes for each kind of declaration.
1184     ///
1185     /// These constants describe the declaration records that can occur within
1186     /// a declarations block (identified by DECLTYPES_BLOCK_ID). Each
1187     /// constant describes a record for a specific declaration class
1188     /// in the AST. Note that TypeCode values share this code space.
1189     enum DeclCode {
1190       /// \brief A TypedefDecl record.
1191       DECL_TYPEDEF = 51,
1192       /// \brief A TypeAliasDecl record.
1193
1194       DECL_TYPEALIAS,
1195
1196       /// \brief An EnumDecl record.
1197       DECL_ENUM,
1198
1199       /// \brief A RecordDecl record.
1200       DECL_RECORD,
1201
1202       /// \brief An EnumConstantDecl record.
1203       DECL_ENUM_CONSTANT,
1204
1205       /// \brief A FunctionDecl record.
1206       DECL_FUNCTION,
1207
1208       /// \brief A ObjCMethodDecl record.
1209       DECL_OBJC_METHOD,
1210
1211       /// \brief A ObjCInterfaceDecl record.
1212       DECL_OBJC_INTERFACE,
1213
1214       /// \brief A ObjCProtocolDecl record.
1215       DECL_OBJC_PROTOCOL,
1216
1217       /// \brief A ObjCIvarDecl record.
1218       DECL_OBJC_IVAR,
1219
1220       /// \brief A ObjCAtDefsFieldDecl record.
1221       DECL_OBJC_AT_DEFS_FIELD,
1222
1223       /// \brief A ObjCCategoryDecl record.
1224       DECL_OBJC_CATEGORY,
1225
1226       /// \brief A ObjCCategoryImplDecl record.
1227       DECL_OBJC_CATEGORY_IMPL,
1228
1229       /// \brief A ObjCImplementationDecl record.
1230       DECL_OBJC_IMPLEMENTATION,
1231
1232       /// \brief A ObjCCompatibleAliasDecl record.
1233       DECL_OBJC_COMPATIBLE_ALIAS,
1234
1235       /// \brief A ObjCPropertyDecl record.
1236       DECL_OBJC_PROPERTY,
1237
1238       /// \brief A ObjCPropertyImplDecl record.
1239       DECL_OBJC_PROPERTY_IMPL,
1240
1241       /// \brief A FieldDecl record.
1242       DECL_FIELD,
1243
1244       /// \brief A MSPropertyDecl record.
1245       DECL_MS_PROPERTY,
1246
1247       /// \brief A VarDecl record.
1248       DECL_VAR,
1249
1250       /// \brief An ImplicitParamDecl record.
1251       DECL_IMPLICIT_PARAM,
1252
1253       /// \brief A ParmVarDecl record.
1254       DECL_PARM_VAR,
1255
1256       /// \brief A DecompositionDecl record.
1257       DECL_DECOMPOSITION,
1258
1259       /// \brief A BindingDecl record.
1260       DECL_BINDING,
1261
1262       /// \brief A FileScopeAsmDecl record.
1263       DECL_FILE_SCOPE_ASM,
1264
1265       /// \brief A BlockDecl record.
1266       DECL_BLOCK,
1267
1268       /// \brief A CapturedDecl record.
1269       DECL_CAPTURED,
1270
1271       /// \brief A record that stores the set of declarations that are
1272       /// lexically stored within a given DeclContext.
1273       ///
1274       /// The record itself is a blob that is an array of declaration IDs,
1275       /// in the order in which those declarations were added to the
1276       /// declaration context. This data is used when iterating over
1277       /// the contents of a DeclContext, e.g., via
1278       /// DeclContext::decls_begin() and DeclContext::decls_end().
1279       DECL_CONTEXT_LEXICAL,
1280
1281       /// \brief A record that stores the set of declarations that are
1282       /// visible from a given DeclContext.
1283       ///
1284       /// The record itself stores a set of mappings, each of which
1285       /// associates a declaration name with one or more declaration
1286       /// IDs. This data is used when performing qualified name lookup
1287       /// into a DeclContext via DeclContext::lookup.
1288       DECL_CONTEXT_VISIBLE,
1289
1290       /// \brief A LabelDecl record.
1291       DECL_LABEL,
1292
1293       /// \brief A NamespaceDecl record.
1294       DECL_NAMESPACE,
1295
1296       /// \brief A NamespaceAliasDecl record.
1297       DECL_NAMESPACE_ALIAS,
1298
1299       /// \brief A UsingDecl record.
1300       DECL_USING,
1301
1302       /// \brief A UsingPackDecl record.
1303       DECL_USING_PACK,
1304
1305       /// \brief A UsingShadowDecl record.
1306       DECL_USING_SHADOW,
1307
1308       /// \brief A ConstructorUsingShadowDecl record.
1309       DECL_CONSTRUCTOR_USING_SHADOW,
1310
1311       /// \brief A UsingDirecitveDecl record.
1312       DECL_USING_DIRECTIVE,
1313
1314       /// \brief An UnresolvedUsingValueDecl record.
1315       DECL_UNRESOLVED_USING_VALUE,
1316
1317       /// \brief An UnresolvedUsingTypenameDecl record.
1318       DECL_UNRESOLVED_USING_TYPENAME,
1319
1320       /// \brief A LinkageSpecDecl record.
1321       DECL_LINKAGE_SPEC,
1322
1323       /// \brief An ExportDecl record.
1324       DECL_EXPORT,
1325
1326       /// \brief A CXXRecordDecl record.
1327       DECL_CXX_RECORD,
1328
1329       /// \brief A CXXDeductionGuideDecl record.
1330       DECL_CXX_DEDUCTION_GUIDE,
1331
1332       /// \brief A CXXMethodDecl record.
1333       DECL_CXX_METHOD,
1334
1335       /// \brief A CXXConstructorDecl record.
1336       DECL_CXX_CONSTRUCTOR,
1337
1338       /// \brief A CXXConstructorDecl record for an inherited constructor.
1339       DECL_CXX_INHERITED_CONSTRUCTOR,
1340
1341       /// \brief A CXXDestructorDecl record.
1342       DECL_CXX_DESTRUCTOR,
1343
1344       /// \brief A CXXConversionDecl record.
1345       DECL_CXX_CONVERSION,
1346
1347       /// \brief An AccessSpecDecl record.
1348       DECL_ACCESS_SPEC,
1349
1350       /// \brief A FriendDecl record.
1351       DECL_FRIEND,
1352
1353       /// \brief A FriendTemplateDecl record.
1354       DECL_FRIEND_TEMPLATE,
1355
1356       /// \brief A ClassTemplateDecl record.
1357       DECL_CLASS_TEMPLATE,
1358
1359       /// \brief A ClassTemplateSpecializationDecl record.
1360       DECL_CLASS_TEMPLATE_SPECIALIZATION,
1361
1362       /// \brief A ClassTemplatePartialSpecializationDecl record.
1363       DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION,
1364
1365       /// \brief A VarTemplateDecl record.
1366       DECL_VAR_TEMPLATE,
1367
1368       /// \brief A VarTemplateSpecializationDecl record.
1369       DECL_VAR_TEMPLATE_SPECIALIZATION,
1370
1371       /// \brief A VarTemplatePartialSpecializationDecl record.
1372       DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION,
1373
1374       /// \brief A FunctionTemplateDecl record.
1375       DECL_FUNCTION_TEMPLATE,
1376
1377       /// \brief A TemplateTypeParmDecl record.
1378       DECL_TEMPLATE_TYPE_PARM,
1379
1380       /// \brief A NonTypeTemplateParmDecl record.
1381       DECL_NON_TYPE_TEMPLATE_PARM,
1382
1383       /// \brief A TemplateTemplateParmDecl record.
1384       DECL_TEMPLATE_TEMPLATE_PARM,
1385
1386       /// \brief A TypeAliasTemplateDecl record.
1387       DECL_TYPE_ALIAS_TEMPLATE,
1388
1389       /// \brief A StaticAssertDecl record.
1390       DECL_STATIC_ASSERT,
1391
1392       /// \brief A record containing CXXBaseSpecifiers.
1393       DECL_CXX_BASE_SPECIFIERS,
1394
1395       /// \brief A record containing CXXCtorInitializers.
1396       DECL_CXX_CTOR_INITIALIZERS,
1397
1398       /// \brief A IndirectFieldDecl record.
1399       DECL_INDIRECTFIELD,
1400
1401       /// \brief A NonTypeTemplateParmDecl record that stores an expanded
1402       /// non-type template parameter pack.
1403       DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK,
1404
1405       /// \brief A TemplateTemplateParmDecl record that stores an expanded
1406       /// template template parameter pack.
1407       DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK,
1408
1409       /// \brief A ClassScopeFunctionSpecializationDecl record a class scope
1410       /// function specialization. (Microsoft extension).
1411       DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION,
1412
1413       /// \brief An ImportDecl recording a module import.
1414       DECL_IMPORT,
1415
1416       /// \brief An OMPThreadPrivateDecl record.
1417       DECL_OMP_THREADPRIVATE,
1418
1419       /// \brief An EmptyDecl record.
1420       DECL_EMPTY,
1421
1422       /// \brief An ObjCTypeParamDecl record.
1423       DECL_OBJC_TYPE_PARAM,
1424
1425       /// \brief An OMPCapturedExprDecl record.
1426       DECL_OMP_CAPTUREDEXPR,
1427
1428       /// \brief A PragmaCommentDecl record.
1429       DECL_PRAGMA_COMMENT,
1430
1431       /// \brief A PragmaDetectMismatchDecl record.
1432       DECL_PRAGMA_DETECT_MISMATCH,
1433
1434       /// \brief An OMPDeclareReductionDecl record.
1435       DECL_OMP_DECLARE_REDUCTION,
1436     };
1437
1438     /// \brief Record codes for each kind of statement or expression.
1439     ///
1440     /// These constants describe the records that describe statements
1441     /// or expressions. These records  occur within type and declarations
1442     /// block, so they begin with record values of 128.  Each constant 
1443     /// describes a record for a specific statement or expression class in the
1444     /// AST.
1445     enum StmtCode {
1446       /// \brief A marker record that indicates that we are at the end
1447       /// of an expression.
1448       STMT_STOP = 128,
1449
1450       /// \brief A NULL expression.
1451       STMT_NULL_PTR,
1452
1453       /// \brief A reference to a previously [de]serialized Stmt record.
1454       STMT_REF_PTR,
1455
1456       /// \brief A NullStmt record.
1457       STMT_NULL,
1458
1459       /// \brief A CompoundStmt record.
1460       STMT_COMPOUND,
1461
1462       /// \brief A CaseStmt record.
1463       STMT_CASE,
1464
1465       /// \brief A DefaultStmt record.
1466       STMT_DEFAULT,
1467
1468       /// \brief A LabelStmt record.
1469       STMT_LABEL,
1470
1471       /// \brief An AttributedStmt record.
1472       STMT_ATTRIBUTED,
1473
1474       /// \brief An IfStmt record.
1475       STMT_IF,
1476
1477       /// \brief A SwitchStmt record.
1478       STMT_SWITCH,
1479
1480       /// \brief A WhileStmt record.
1481       STMT_WHILE,
1482
1483       /// \brief A DoStmt record.
1484       STMT_DO,
1485
1486       /// \brief A ForStmt record.
1487       STMT_FOR,
1488
1489       /// \brief A GotoStmt record.
1490       STMT_GOTO,
1491
1492       /// \brief An IndirectGotoStmt record.
1493       STMT_INDIRECT_GOTO,
1494
1495       /// \brief A ContinueStmt record.
1496       STMT_CONTINUE,
1497
1498       /// \brief A BreakStmt record.
1499       STMT_BREAK,
1500
1501       /// \brief A ReturnStmt record.
1502       STMT_RETURN,
1503
1504       /// \brief A DeclStmt record.
1505       STMT_DECL,
1506
1507       /// \brief A CapturedStmt record.
1508       STMT_CAPTURED,
1509
1510       /// \brief A GCC-style AsmStmt record.
1511       STMT_GCCASM,
1512
1513       /// \brief A MS-style AsmStmt record.
1514       STMT_MSASM,
1515
1516       /// \brief A PredefinedExpr record.
1517       EXPR_PREDEFINED,
1518
1519       /// \brief A DeclRefExpr record.
1520       EXPR_DECL_REF,
1521
1522       /// \brief An IntegerLiteral record.
1523       EXPR_INTEGER_LITERAL,
1524
1525       /// \brief A FloatingLiteral record.
1526       EXPR_FLOATING_LITERAL,
1527
1528       /// \brief An ImaginaryLiteral record.
1529       EXPR_IMAGINARY_LITERAL,
1530
1531       /// \brief A StringLiteral record.
1532       EXPR_STRING_LITERAL,
1533
1534       /// \brief A CharacterLiteral record.
1535       EXPR_CHARACTER_LITERAL,
1536
1537       /// \brief A ParenExpr record.
1538       EXPR_PAREN,
1539
1540       /// \brief A ParenListExpr record.
1541       EXPR_PAREN_LIST,
1542
1543       /// \brief A UnaryOperator record.
1544       EXPR_UNARY_OPERATOR,
1545
1546       /// \brief An OffsetOfExpr record.
1547       EXPR_OFFSETOF,
1548
1549       /// \brief A SizefAlignOfExpr record.
1550       EXPR_SIZEOF_ALIGN_OF,
1551
1552       /// \brief An ArraySubscriptExpr record.
1553       EXPR_ARRAY_SUBSCRIPT,
1554
1555       /// \brief A CallExpr record.
1556       EXPR_CALL,
1557
1558       /// \brief A MemberExpr record.
1559       EXPR_MEMBER,
1560
1561       /// \brief A BinaryOperator record.
1562       EXPR_BINARY_OPERATOR,
1563
1564       /// \brief A CompoundAssignOperator record.
1565       EXPR_COMPOUND_ASSIGN_OPERATOR,
1566
1567       /// \brief A ConditionOperator record.
1568       EXPR_CONDITIONAL_OPERATOR,
1569
1570       /// \brief An ImplicitCastExpr record.
1571       EXPR_IMPLICIT_CAST,
1572
1573       /// \brief A CStyleCastExpr record.
1574       EXPR_CSTYLE_CAST,
1575
1576       /// \brief A CompoundLiteralExpr record.
1577       EXPR_COMPOUND_LITERAL,
1578
1579       /// \brief An ExtVectorElementExpr record.
1580       EXPR_EXT_VECTOR_ELEMENT,
1581
1582       /// \brief An InitListExpr record.
1583       EXPR_INIT_LIST,
1584
1585       /// \brief A DesignatedInitExpr record.
1586       EXPR_DESIGNATED_INIT,
1587
1588       /// \brief A DesignatedInitUpdateExpr record.
1589       EXPR_DESIGNATED_INIT_UPDATE,
1590
1591       /// \brief An NoInitExpr record.
1592       EXPR_NO_INIT,
1593
1594       /// \brief An ArrayInitLoopExpr record.
1595       EXPR_ARRAY_INIT_LOOP,
1596
1597       /// \brief An ArrayInitIndexExpr record.
1598       EXPR_ARRAY_INIT_INDEX,
1599
1600       /// \brief An ImplicitValueInitExpr record.
1601       EXPR_IMPLICIT_VALUE_INIT,
1602
1603       /// \brief A VAArgExpr record.
1604       EXPR_VA_ARG,
1605
1606       /// \brief An AddrLabelExpr record.
1607       EXPR_ADDR_LABEL,
1608
1609       /// \brief A StmtExpr record.
1610       EXPR_STMT,
1611
1612       /// \brief A ChooseExpr record.
1613       EXPR_CHOOSE,
1614
1615       /// \brief A GNUNullExpr record.
1616       EXPR_GNU_NULL,
1617
1618       /// \brief A ShuffleVectorExpr record.
1619       EXPR_SHUFFLE_VECTOR,
1620
1621       /// \brief A ConvertVectorExpr record.
1622       EXPR_CONVERT_VECTOR,
1623
1624       /// \brief BlockExpr
1625       EXPR_BLOCK,
1626
1627       /// \brief A GenericSelectionExpr record.
1628       EXPR_GENERIC_SELECTION,
1629
1630       /// \brief A PseudoObjectExpr record.
1631       EXPR_PSEUDO_OBJECT,
1632
1633       /// \brief An AtomicExpr record.
1634       EXPR_ATOMIC,
1635
1636       // Objective-C
1637
1638       /// \brief An ObjCStringLiteral record.
1639       EXPR_OBJC_STRING_LITERAL,
1640
1641       EXPR_OBJC_BOXED_EXPRESSION,
1642       EXPR_OBJC_ARRAY_LITERAL,
1643       EXPR_OBJC_DICTIONARY_LITERAL,
1644    
1645       /// \brief An ObjCEncodeExpr record.
1646       EXPR_OBJC_ENCODE,
1647
1648       /// \brief An ObjCSelectorExpr record.
1649       EXPR_OBJC_SELECTOR_EXPR,
1650
1651       /// \brief An ObjCProtocolExpr record.
1652       EXPR_OBJC_PROTOCOL_EXPR,
1653
1654       /// \brief An ObjCIvarRefExpr record.
1655       EXPR_OBJC_IVAR_REF_EXPR,
1656
1657       /// \brief An ObjCPropertyRefExpr record.
1658       EXPR_OBJC_PROPERTY_REF_EXPR,
1659
1660       /// \brief An ObjCSubscriptRefExpr record.
1661       EXPR_OBJC_SUBSCRIPT_REF_EXPR,
1662
1663       /// \brief UNUSED
1664       EXPR_OBJC_KVC_REF_EXPR,
1665
1666       /// \brief An ObjCMessageExpr record.
1667       EXPR_OBJC_MESSAGE_EXPR,
1668
1669       /// \brief An ObjCIsa Expr record.
1670       EXPR_OBJC_ISA,
1671
1672       /// \brief An ObjCIndirectCopyRestoreExpr record.
1673       EXPR_OBJC_INDIRECT_COPY_RESTORE,
1674
1675       /// \brief An ObjCForCollectionStmt record.
1676       STMT_OBJC_FOR_COLLECTION,
1677
1678       /// \brief An ObjCAtCatchStmt record.
1679       STMT_OBJC_CATCH,
1680
1681       /// \brief An ObjCAtFinallyStmt record.
1682       STMT_OBJC_FINALLY,
1683
1684       /// \brief An ObjCAtTryStmt record.
1685       STMT_OBJC_AT_TRY,
1686
1687       /// \brief An ObjCAtSynchronizedStmt record.
1688       STMT_OBJC_AT_SYNCHRONIZED,
1689
1690       /// \brief An ObjCAtThrowStmt record.
1691       STMT_OBJC_AT_THROW,
1692
1693       /// \brief An ObjCAutoreleasePoolStmt record.
1694       STMT_OBJC_AUTORELEASE_POOL,
1695
1696       /// \brief An ObjCBoolLiteralExpr record.
1697       EXPR_OBJC_BOOL_LITERAL,
1698
1699       /// \brief An ObjCAvailabilityCheckExpr record.
1700       EXPR_OBJC_AVAILABILITY_CHECK,
1701
1702       // C++
1703       
1704       /// \brief A CXXCatchStmt record.
1705       STMT_CXX_CATCH,
1706
1707       /// \brief A CXXTryStmt record.
1708       STMT_CXX_TRY,
1709       /// \brief A CXXForRangeStmt record.
1710
1711       STMT_CXX_FOR_RANGE,
1712
1713       /// \brief A CXXOperatorCallExpr record.
1714       EXPR_CXX_OPERATOR_CALL,
1715
1716       /// \brief A CXXMemberCallExpr record.
1717       EXPR_CXX_MEMBER_CALL,
1718
1719       /// \brief A CXXConstructExpr record.
1720       EXPR_CXX_CONSTRUCT,
1721
1722       /// \brief A CXXInheritedCtorInitExpr record.
1723       EXPR_CXX_INHERITED_CTOR_INIT,
1724
1725       /// \brief A CXXTemporaryObjectExpr record.
1726       EXPR_CXX_TEMPORARY_OBJECT,
1727
1728       /// \brief A CXXStaticCastExpr record.
1729       EXPR_CXX_STATIC_CAST,
1730
1731       /// \brief A CXXDynamicCastExpr record.
1732       EXPR_CXX_DYNAMIC_CAST,
1733
1734       /// \brief A CXXReinterpretCastExpr record.
1735       EXPR_CXX_REINTERPRET_CAST,
1736
1737       /// \brief A CXXConstCastExpr record.
1738       EXPR_CXX_CONST_CAST,
1739
1740       /// \brief A CXXFunctionalCastExpr record.
1741       EXPR_CXX_FUNCTIONAL_CAST,
1742
1743       /// \brief A UserDefinedLiteral record.
1744       EXPR_USER_DEFINED_LITERAL,
1745
1746       /// \brief A CXXStdInitializerListExpr record.
1747       EXPR_CXX_STD_INITIALIZER_LIST,
1748
1749       /// \brief A CXXBoolLiteralExpr record.
1750       EXPR_CXX_BOOL_LITERAL,
1751
1752       EXPR_CXX_NULL_PTR_LITERAL,  // CXXNullPtrLiteralExpr
1753       EXPR_CXX_TYPEID_EXPR,       // CXXTypeidExpr (of expr).
1754       EXPR_CXX_TYPEID_TYPE,       // CXXTypeidExpr (of type).
1755       EXPR_CXX_THIS,              // CXXThisExpr
1756       EXPR_CXX_THROW,             // CXXThrowExpr
1757       EXPR_CXX_DEFAULT_ARG,       // CXXDefaultArgExpr
1758       EXPR_CXX_DEFAULT_INIT,      // CXXDefaultInitExpr
1759       EXPR_CXX_BIND_TEMPORARY,    // CXXBindTemporaryExpr
1760
1761       EXPR_CXX_SCALAR_VALUE_INIT, // CXXScalarValueInitExpr
1762       EXPR_CXX_NEW,               // CXXNewExpr
1763       EXPR_CXX_DELETE,            // CXXDeleteExpr
1764       EXPR_CXX_PSEUDO_DESTRUCTOR, // CXXPseudoDestructorExpr
1765       
1766       EXPR_EXPR_WITH_CLEANUPS,    // ExprWithCleanups
1767       
1768       EXPR_CXX_DEPENDENT_SCOPE_MEMBER,   // CXXDependentScopeMemberExpr
1769       EXPR_CXX_DEPENDENT_SCOPE_DECL_REF, // DependentScopeDeclRefExpr
1770       EXPR_CXX_UNRESOLVED_CONSTRUCT,     // CXXUnresolvedConstructExpr
1771       EXPR_CXX_UNRESOLVED_MEMBER,        // UnresolvedMemberExpr
1772       EXPR_CXX_UNRESOLVED_LOOKUP,        // UnresolvedLookupExpr
1773
1774       EXPR_CXX_EXPRESSION_TRAIT,  // ExpressionTraitExpr
1775       EXPR_CXX_NOEXCEPT,          // CXXNoexceptExpr
1776
1777       EXPR_OPAQUE_VALUE,          // OpaqueValueExpr
1778       EXPR_BINARY_CONDITIONAL_OPERATOR,  // BinaryConditionalOperator
1779       EXPR_TYPE_TRAIT,            // TypeTraitExpr
1780       EXPR_ARRAY_TYPE_TRAIT,      // ArrayTypeTraitIntExpr
1781       
1782       EXPR_PACK_EXPANSION,        // PackExpansionExpr
1783       EXPR_SIZEOF_PACK,           // SizeOfPackExpr
1784       EXPR_SUBST_NON_TYPE_TEMPLATE_PARM, // SubstNonTypeTemplateParmExpr
1785       EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK,// SubstNonTypeTemplateParmPackExpr
1786       EXPR_FUNCTION_PARM_PACK,    // FunctionParmPackExpr
1787       EXPR_MATERIALIZE_TEMPORARY, // MaterializeTemporaryExpr
1788       EXPR_CXX_FOLD,              // CXXFoldExpr
1789
1790       // CUDA
1791       EXPR_CUDA_KERNEL_CALL,       // CUDAKernelCallExpr      
1792
1793       // OpenCL
1794       EXPR_ASTYPE,                 // AsTypeExpr
1795
1796       // Microsoft
1797       EXPR_CXX_PROPERTY_REF_EXPR, // MSPropertyRefExpr
1798       EXPR_CXX_PROPERTY_SUBSCRIPT_EXPR, // MSPropertySubscriptExpr
1799       EXPR_CXX_UUIDOF_EXPR,       // CXXUuidofExpr (of expr).
1800       EXPR_CXX_UUIDOF_TYPE,       // CXXUuidofExpr (of type).
1801       STMT_SEH_LEAVE,             // SEHLeaveStmt
1802       STMT_SEH_EXCEPT,            // SEHExceptStmt
1803       STMT_SEH_FINALLY,           // SEHFinallyStmt
1804       STMT_SEH_TRY,               // SEHTryStmt
1805
1806       // OpenMP directives
1807       STMT_OMP_PARALLEL_DIRECTIVE,
1808       STMT_OMP_SIMD_DIRECTIVE,
1809       STMT_OMP_FOR_DIRECTIVE,
1810       STMT_OMP_FOR_SIMD_DIRECTIVE,
1811       STMT_OMP_SECTIONS_DIRECTIVE,
1812       STMT_OMP_SECTION_DIRECTIVE,
1813       STMT_OMP_SINGLE_DIRECTIVE,
1814       STMT_OMP_MASTER_DIRECTIVE,
1815       STMT_OMP_CRITICAL_DIRECTIVE,
1816       STMT_OMP_PARALLEL_FOR_DIRECTIVE,
1817       STMT_OMP_PARALLEL_FOR_SIMD_DIRECTIVE,
1818       STMT_OMP_PARALLEL_SECTIONS_DIRECTIVE,
1819       STMT_OMP_TASK_DIRECTIVE,
1820       STMT_OMP_TASKYIELD_DIRECTIVE,
1821       STMT_OMP_BARRIER_DIRECTIVE,
1822       STMT_OMP_TASKWAIT_DIRECTIVE,
1823       STMT_OMP_FLUSH_DIRECTIVE,
1824       STMT_OMP_ORDERED_DIRECTIVE,
1825       STMT_OMP_ATOMIC_DIRECTIVE,
1826       STMT_OMP_TARGET_DIRECTIVE,
1827       STMT_OMP_TARGET_DATA_DIRECTIVE,
1828       STMT_OMP_TARGET_ENTER_DATA_DIRECTIVE,
1829       STMT_OMP_TARGET_EXIT_DATA_DIRECTIVE,
1830       STMT_OMP_TARGET_PARALLEL_DIRECTIVE,
1831       STMT_OMP_TARGET_PARALLEL_FOR_DIRECTIVE,
1832       STMT_OMP_TEAMS_DIRECTIVE,
1833       STMT_OMP_TASKGROUP_DIRECTIVE,
1834       STMT_OMP_CANCELLATION_POINT_DIRECTIVE,
1835       STMT_OMP_CANCEL_DIRECTIVE,
1836       STMT_OMP_TASKLOOP_DIRECTIVE,
1837       STMT_OMP_TASKLOOP_SIMD_DIRECTIVE,
1838       STMT_OMP_DISTRIBUTE_DIRECTIVE,
1839       STMT_OMP_TARGET_UPDATE_DIRECTIVE,
1840       STMT_OMP_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE,
1841       STMT_OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE,
1842       STMT_OMP_DISTRIBUTE_SIMD_DIRECTIVE,
1843       STMT_OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE,
1844       STMT_OMP_TARGET_SIMD_DIRECTIVE,
1845       STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE,
1846       STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE,
1847       STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE,
1848       STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE,
1849       STMT_OMP_TARGET_TEAMS_DIRECTIVE,
1850       STMT_OMP_TARGET_TEAMS_DISTRIBUTE_DIRECTIVE,
1851       STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE,
1852       STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE,
1853       STMT_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE,
1854       EXPR_OMP_ARRAY_SECTION,
1855
1856       // ARC
1857       EXPR_OBJC_BRIDGED_CAST,     // ObjCBridgedCastExpr
1858
1859       STMT_MS_DEPENDENT_EXISTS,   // MSDependentExistsStmt
1860       EXPR_LAMBDA,                // LambdaExpr
1861       STMT_COROUTINE_BODY,
1862       STMT_CORETURN,
1863       EXPR_COAWAIT,
1864       EXPR_COYIELD,
1865       EXPR_DEPENDENT_COAWAIT,
1866     };
1867
1868     /// \brief The kinds of designators that can occur in a
1869     /// DesignatedInitExpr.
1870     enum DesignatorTypes {
1871       /// \brief Field designator where only the field name is known.
1872       DESIG_FIELD_NAME  = 0,
1873
1874       /// \brief Field designator where the field has been resolved to
1875       /// a declaration.
1876       DESIG_FIELD_DECL  = 1,
1877
1878       /// \brief Array designator.
1879       DESIG_ARRAY       = 2,
1880
1881       /// \brief GNU array range designator.
1882       DESIG_ARRAY_RANGE = 3
1883     };
1884
1885     /// \brief The different kinds of data that can occur in a
1886     /// CtorInitializer.
1887     enum CtorInitializerType {
1888       CTOR_INITIALIZER_BASE,
1889       CTOR_INITIALIZER_DELEGATING,
1890       CTOR_INITIALIZER_MEMBER,
1891       CTOR_INITIALIZER_INDIRECT_MEMBER
1892     };
1893
1894     /// \brief Describes the redeclarations of a declaration.
1895     struct LocalRedeclarationsInfo {
1896       // The ID of the first declaration
1897       DeclID FirstID;
1898
1899       // Offset into the array of redeclaration chains.
1900       unsigned Offset;
1901       
1902       friend bool operator<(const LocalRedeclarationsInfo &X,
1903                             const LocalRedeclarationsInfo &Y) {
1904         return X.FirstID < Y.FirstID;
1905       }
1906       
1907       friend bool operator>(const LocalRedeclarationsInfo &X,
1908                             const LocalRedeclarationsInfo &Y) {
1909         return X.FirstID > Y.FirstID;
1910       }
1911       
1912       friend bool operator<=(const LocalRedeclarationsInfo &X,
1913                              const LocalRedeclarationsInfo &Y) {
1914         return X.FirstID <= Y.FirstID;
1915       }
1916       
1917       friend bool operator>=(const LocalRedeclarationsInfo &X,
1918                              const LocalRedeclarationsInfo &Y) {
1919         return X.FirstID >= Y.FirstID;
1920       }
1921     };
1922
1923     /// \brief Describes the categories of an Objective-C class.
1924     struct ObjCCategoriesInfo {
1925       // The ID of the definition
1926       DeclID DefinitionID;
1927
1928       // Offset into the array of category lists.
1929       unsigned Offset;
1930       
1931       friend bool operator<(const ObjCCategoriesInfo &X,
1932                             const ObjCCategoriesInfo &Y) {
1933         return X.DefinitionID < Y.DefinitionID;
1934       }
1935       
1936       friend bool operator>(const ObjCCategoriesInfo &X,
1937                             const ObjCCategoriesInfo &Y) {
1938         return X.DefinitionID > Y.DefinitionID;
1939       }
1940       
1941       friend bool operator<=(const ObjCCategoriesInfo &X,
1942                              const ObjCCategoriesInfo &Y) {
1943         return X.DefinitionID <= Y.DefinitionID;
1944       }
1945       
1946       friend bool operator>=(const ObjCCategoriesInfo &X,
1947                              const ObjCCategoriesInfo &Y) {
1948         return X.DefinitionID >= Y.DefinitionID;
1949       }
1950     };
1951
1952     /// \brief A key used when looking up entities by \ref DeclarationName.
1953     ///
1954     /// Different \ref DeclarationNames are mapped to different keys, but the
1955     /// same key can occasionally represent multiple names (for names that
1956     /// contain types, in particular).
1957     class DeclarationNameKey {
1958       using NameKind = unsigned;
1959
1960       NameKind Kind = 0;
1961       uint64_t Data = 0;
1962
1963     public:
1964       DeclarationNameKey() = default;
1965       DeclarationNameKey(DeclarationName Name);
1966       DeclarationNameKey(NameKind Kind, uint64_t Data)
1967           : Kind(Kind), Data(Data) {}
1968
1969       NameKind getKind() const { return Kind; }
1970
1971       IdentifierInfo *getIdentifier() const {
1972         assert(Kind == DeclarationName::Identifier ||
1973                Kind == DeclarationName::CXXLiteralOperatorName ||
1974                Kind == DeclarationName::CXXDeductionGuideName);
1975         return (IdentifierInfo *)Data;
1976       }
1977
1978       Selector getSelector() const {
1979         assert(Kind == DeclarationName::ObjCZeroArgSelector ||
1980                Kind == DeclarationName::ObjCOneArgSelector ||
1981                Kind == DeclarationName::ObjCMultiArgSelector);
1982         return Selector(Data);
1983       }
1984
1985       OverloadedOperatorKind getOperatorKind() const {
1986         assert(Kind == DeclarationName::CXXOperatorName);
1987         return (OverloadedOperatorKind)Data;
1988       }
1989
1990       /// Compute a fingerprint of this key for use in on-disk hash table.
1991       unsigned getHash() const;
1992
1993       friend bool operator==(const DeclarationNameKey &A,
1994                              const DeclarationNameKey &B) {
1995         return A.Kind == B.Kind && A.Data == B.Data;
1996       }
1997     };
1998
1999     /// @}
2000
2001 } // namespace serialization
2002 } // namespace clang
2003
2004 namespace llvm {
2005
2006   template <> struct DenseMapInfo<clang::serialization::DeclarationNameKey> {
2007     static clang::serialization::DeclarationNameKey getEmptyKey() {
2008       return clang::serialization::DeclarationNameKey(-1, 1);
2009     }
2010
2011     static clang::serialization::DeclarationNameKey getTombstoneKey() {
2012       return clang::serialization::DeclarationNameKey(-1, 2);
2013     }
2014
2015     static unsigned
2016     getHashValue(const clang::serialization::DeclarationNameKey &Key) {
2017       return Key.getHash();
2018     }
2019
2020     static bool isEqual(const clang::serialization::DeclarationNameKey &L,
2021                         const clang::serialization::DeclarationNameKey &R) {
2022       return L == R;
2023     }
2024   };
2025
2026 } // namespace llvm
2027
2028 #endif // LLVM_CLANG_SERIALIZATION_ASTBITCODES_H