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#ifndef LLVM_CLANG_FRONTEND_PCHBITCODES_H
18#define LLVM_CLANG_FRONTEND_PCHBITCODES_H
19
20#include "clang/AST/Type.h"
21#include "llvm/ADT/DenseMap.h"
22#include "llvm/Bitcode/BitCodes.h"
23#include "llvm/Support/DataTypes.h"
24
25namespace clang {
26  namespace serialization {
27    /// \brief AST file major version number supported by this version of
28    /// Clang.
29    ///
30    /// Whenever the AST file format changes in a way that makes it
31    /// incompatible with previous versions (such that a reader
32    /// designed for the previous version could not support reading
33    /// the new version), this number should be increased.
34    ///
35    /// Version 4 of AST files also requires that the version control branch and
36    /// revision match exactly, since there is no backward compatibility of
37    /// AST files at this time.
38    const unsigned VERSION_MAJOR = 5;
39
40    /// \brief AST file minor version number supported by this version of
41    /// Clang.
42    ///
43    /// Whenever the AST format changes in a way that is still
44    /// compatible with previous versions (such that a reader designed
45    /// for the previous version could still support reading the new
46    /// version by ignoring new kinds of subblocks), this number
47    /// should be increased.
48    const unsigned VERSION_MINOR = 0;
49
50    /// \brief An ID number that refers to an identifier in an AST file.
51    ///
52    /// The ID numbers of identifiers are consecutive (in order of discovery)
53    /// and start at 1. 0 is reserved for NULL.
54    typedef uint32_t IdentifierID;
55
56    /// \brief An ID number that refers to a declaration in an AST file.
57    ///
58    /// The ID numbers of declarations are consecutive (in order of
59    /// discovery), with values below NUM_PREDEF_DECL_IDS being reserved.
60    /// At the start of a chain of precompiled headers, declaration ID 1 is
61    /// used for the translation unit declaration.
62    typedef uint32_t DeclID;
63
64    /// \brief a Decl::Kind/DeclID pair.
65    typedef std::pair<uint32_t, DeclID> KindDeclIDPair;
66
67    // FIXME: Turn these into classes so we can have some type safety when
68    // we go from local ID to global and vice-versa.
69    typedef DeclID LocalDeclID;
70    typedef DeclID GlobalDeclID;
71
72    /// \brief An ID number that refers to a type in an AST file.
73    ///
74    /// The ID of a type is partitioned into two parts: the lower
75    /// three bits are used to store the const/volatile/restrict
76    /// qualifiers (as with QualType) and the upper bits provide a
77    /// type index. The type index values are partitioned into two
78    /// sets. The values below NUM_PREDEF_TYPE_IDs are predefined type
79    /// IDs (based on the PREDEF_TYPE_*_ID constants), with 0 as a
80    /// placeholder for "no type". Values from NUM_PREDEF_TYPE_IDs are
81    /// other types that have serialized representations.
82    typedef uint32_t TypeID;
83
84    /// \brief A type index; the type ID with the qualifier bits removed.
85    class TypeIdx {
86      uint32_t Idx;
87    public:
88      TypeIdx() : Idx(0) { }
89      explicit TypeIdx(uint32_t index) : Idx(index) { }
90
91      uint32_t getIndex() const { return Idx; }
92      TypeID asTypeID(unsigned FastQuals) const {
93        if (Idx == uint32_t(-1))
94          return TypeID(-1);
95
96        return (Idx << Qualifiers::FastWidth) | FastQuals;
97      }
98      static TypeIdx fromTypeID(TypeID ID) {
99        if (ID == TypeID(-1))
100          return TypeIdx(-1);
101
102        return TypeIdx(ID >> Qualifiers::FastWidth);
103      }
104    };
105
106    /// A structure for putting "fast"-unqualified QualTypes into a
107    /// DenseMap.  This uses the standard pointer hash function.
108    struct UnsafeQualTypeDenseMapInfo {
109      static inline bool isEqual(QualType A, QualType B) { return A == B; }
110      static inline QualType getEmptyKey() {
111        return QualType::getFromOpaquePtr((void*) 1);
112      }
113      static inline QualType getTombstoneKey() {
114        return QualType::getFromOpaquePtr((void*) 2);
115      }
116      static inline unsigned getHashValue(QualType T) {
117        assert(!T.getLocalFastQualifiers() &&
118               "hash invalid for types with fast quals");
119        uintptr_t v = reinterpret_cast<uintptr_t>(T.getAsOpaquePtr());
120        return (unsigned(v) >> 4) ^ (unsigned(v) >> 9);
121      }
122    };
123
124    /// \brief An ID number that refers to an identifier in an AST file.
125    typedef uint32_t IdentID;
126
127    /// \brief The number of predefined identifier IDs.
128    const unsigned int NUM_PREDEF_IDENT_IDS = 1;
129
130    /// \brief An ID number that refers to a macro in an AST file.
131    typedef uint32_t MacroID;
132
133    /// \brief A global ID number that refers to a macro in an AST file.
134    typedef uint32_t GlobalMacroID;
135
136    /// \brief A local to a module ID number that refers to a macro in an
137    /// AST file.
138    typedef uint32_t LocalMacroID;
139
140    /// \brief The number of predefined macro IDs.
141    const unsigned int NUM_PREDEF_MACRO_IDS = 1;
142
143    /// \brief An ID number that refers to an ObjC selector in an AST file.
144    typedef uint32_t SelectorID;
145
146    /// \brief The number of predefined selector IDs.
147    const unsigned int NUM_PREDEF_SELECTOR_IDS = 1;
148
149    /// \brief An ID number that refers to a set of CXXBaseSpecifiers in an
150    /// AST file.
151    typedef uint32_t CXXBaseSpecifiersID;
152
153    /// \brief An ID number that refers to an entity in the detailed
154    /// preprocessing record.
155    typedef uint32_t PreprocessedEntityID;
156
157    /// \brief An ID number that refers to a submodule in a module file.
158    typedef uint32_t SubmoduleID;
159
160    /// \brief The number of predefined submodule IDs.
161    const unsigned int NUM_PREDEF_SUBMODULE_IDS = 1;
162
163    /// \brief Source range/offset of a preprocessed entity.
164    struct PPEntityOffset {
165      /// \brief Raw source location of beginning of range.
166      unsigned Begin;
167      /// \brief Raw source location of end of range.
168      unsigned End;
169      /// \brief Offset in the AST file.
170      uint32_t BitOffset;
171
172      PPEntityOffset(SourceRange R, uint32_t BitOffset)
173        : Begin(R.getBegin().getRawEncoding()),
174          End(R.getEnd().getRawEncoding()),
175          BitOffset(BitOffset) { }
176    };
177
178    /// \brief Source range/offset of a preprocessed entity.
179    struct DeclOffset {
180      /// \brief Raw source location.
181      unsigned Loc;
182      /// \brief Offset in the AST file.
183      uint32_t BitOffset;
184
185      DeclOffset() : Loc(0), BitOffset(0) { }
186      DeclOffset(SourceLocation Loc, uint32_t BitOffset)
187        : Loc(Loc.getRawEncoding()),
188          BitOffset(BitOffset) { }
189      void setLocation(SourceLocation L) {
190        Loc = L.getRawEncoding();
191      }
192    };
193
194    /// \brief The number of predefined preprocessed entity IDs.
195    const unsigned int NUM_PREDEF_PP_ENTITY_IDS = 1;
196
197    /// \brief Describes the various kinds of blocks that occur within
198    /// an AST file.
199    enum BlockIDs {
200      /// \brief The AST block, which acts as a container around the
201      /// full AST block.
202      AST_BLOCK_ID = llvm::bitc::FIRST_APPLICATION_BLOCKID,
203
204      /// \brief The block containing information about the source
205      /// manager.
206      SOURCE_MANAGER_BLOCK_ID,
207
208      /// \brief The block containing information about the
209      /// preprocessor.
210      PREPROCESSOR_BLOCK_ID,
211
212      /// \brief The block containing the definitions of all of the
213      /// types and decls used within the AST file.
214      DECLTYPES_BLOCK_ID,
215
216      /// \brief The block containing DECL_UPDATES records.
217      DECL_UPDATES_BLOCK_ID,
218
219      /// \brief The block containing the detailed preprocessing record.
220      PREPROCESSOR_DETAIL_BLOCK_ID,
221
222      /// \brief The block containing the submodule structure.
223      SUBMODULE_BLOCK_ID,
224
225      /// \brief The block containing comments.
226      COMMENTS_BLOCK_ID,
227
228      /// \brief The control block, which contains all of the
229      /// information that needs to be validated prior to committing
230      /// to loading the AST file.
231      CONTROL_BLOCK_ID,
232
233      /// \brief The block of input files, which were used as inputs
234      /// to create this AST file.
235      ///
236      /// This block is part of the control block.
237      INPUT_FILES_BLOCK_ID
238    };
239
240    /// \brief Record types that occur within the control block.
241    enum ControlRecordTypes {
242      /// \brief AST file metadata, including the AST file version number
243      /// and information about the compiler used to build this AST file.
244      METADATA = 1,
245
246      /// \brief Record code for the list of other AST files imported by
247      /// this AST file.
248      IMPORTS = 2,
249
250      /// \brief Record code for the language options table.
251      ///
252      /// The record with this code contains the contents of the
253      /// LangOptions structure. We serialize the entire contents of
254      /// the structure, and let the reader decide which options are
255      /// actually important to check.
256      LANGUAGE_OPTIONS = 3,
257
258      /// \brief Record code for the target options table.
259      TARGET_OPTIONS = 4,
260
261      /// \brief Record code for the original file that was used to
262      /// generate the AST file, including both its file ID and its
263      /// name.
264      ORIGINAL_FILE = 5,
265
266      /// \brief The directory that the PCH was originally created in.
267      ORIGINAL_PCH_DIR = 6,
268
269      /// \brief Record code for file ID of the file or buffer that was used to
270      /// generate the AST file.
271      ORIGINAL_FILE_ID = 7,
272
273      /// \brief Offsets into the input-files block where input files
274      /// reside.
275      INPUT_FILE_OFFSETS = 8,
276
277      /// \brief Record code for the diagnostic options table.
278      DIAGNOSTIC_OPTIONS = 9,
279
280      /// \brief Record code for the filesystem options table.
281      FILE_SYSTEM_OPTIONS = 10,
282
283      /// \brief Record code for the headers search options table.
284      HEADER_SEARCH_OPTIONS = 11,
285
286      /// \brief Record code for the preprocessor options table.
287      PREPROCESSOR_OPTIONS = 12
288    };
289
290    /// \brief Record types that occur within the input-files block
291    /// inside the control block.
292    enum InputFileRecordTypes {
293      /// \brief An input file.
294      INPUT_FILE = 1
295    };
296
297    /// \brief Record types that occur within the AST block itself.
298    enum ASTRecordTypes {
299      /// \brief Record code for the offsets of each type.
300      ///
301      /// The TYPE_OFFSET constant describes the record that occurs
302      /// within the AST block. The record itself is an array of offsets that
303      /// point into the declarations and types block (identified by
304      /// DECLTYPES_BLOCK_ID). The index into the array is based on the ID
305      /// of a type. For a given type ID @c T, the lower three bits of
306      /// @c T are its qualifiers (const, volatile, restrict), as in
307      /// the QualType class. The upper bits, after being shifted and
308      /// subtracting NUM_PREDEF_TYPE_IDS, are used to index into the
309      /// TYPE_OFFSET block to determine the offset of that type's
310      /// corresponding record within the DECLTYPES_BLOCK_ID block.
311      TYPE_OFFSET = 1,
312
313      /// \brief Record code for the offsets of each decl.
314      ///
315      /// The DECL_OFFSET constant describes the record that occurs
316      /// within the block identified by DECL_OFFSETS_BLOCK_ID within
317      /// the AST block. The record itself is an array of offsets that
318      /// point into the declarations and types block (identified by
319      /// DECLTYPES_BLOCK_ID). The declaration ID is an index into this
320      /// record, after subtracting one to account for the use of
321      /// declaration ID 0 for a NULL declaration pointer. Index 0 is
322      /// reserved for the translation unit declaration.
323      DECL_OFFSET = 2,
324
325      /// \brief Record code for the table of offsets of each
326      /// identifier ID.
327      ///
328      /// The offset table contains offsets into the blob stored in
329      /// the IDENTIFIER_TABLE record. Each offset points to the
330      /// NULL-terminated string that corresponds to that identifier.
331      IDENTIFIER_OFFSET = 3,
332
333      /// \brief This is so that older clang versions, before the introduction
334      /// of the control block, can read and reject the newer PCH format.
335      /// *DON"T CHANGE THIS NUMBER*.
336      METADATA_OLD_FORMAT = 4,
337
338      /// \brief Record code for the identifier table.
339      ///
340      /// The identifier table is a simple blob that contains
341      /// NULL-terminated strings for all of the identifiers
342      /// referenced by the AST file. The IDENTIFIER_OFFSET table
343      /// contains the mapping from identifier IDs to the characters
344      /// in this blob. Note that the starting offsets of all of the
345      /// identifiers are odd, so that, when the identifier offset
346      /// table is loaded in, we can use the low bit to distinguish
347      /// between offsets (for unresolved identifier IDs) and
348      /// IdentifierInfo pointers (for already-resolved identifier
349      /// IDs).
350      IDENTIFIER_TABLE = 5,
351
352      /// \brief Record code for the array of external definitions.
353      ///
354      /// The AST file contains a list of all of the unnamed external
355      /// definitions present within the parsed headers, stored as an
356      /// array of declaration IDs. These external definitions will be
357      /// reported to the AST consumer after the AST file has been
358      /// read, since their presence can affect the semantics of the
359      /// program (e.g., for code generation).
360      EXTERNAL_DEFINITIONS = 6,
361
362      /// \brief Record code for the set of non-builtin, special
363      /// types.
364      ///
365      /// This record contains the type IDs for the various type nodes
366      /// that are constructed during semantic analysis (e.g.,
367      /// __builtin_va_list). The SPECIAL_TYPE_* constants provide
368      /// offsets into this record.
369      SPECIAL_TYPES = 7,
370
371      /// \brief Record code for the extra statistics we gather while
372      /// generating an AST file.
373      STATISTICS = 8,
374
375      /// \brief Record code for the array of tentative definitions.
376      TENTATIVE_DEFINITIONS = 9,
377
378      /// \brief Record code for the array of locally-scoped extern "C"
379      /// declarations.
380      LOCALLY_SCOPED_EXTERN_C_DECLS = 10,
381
382      /// \brief Record code for the table of offsets into the
383      /// Objective-C method pool.
384      SELECTOR_OFFSETS = 11,
385
386      /// \brief Record code for the Objective-C method pool,
387      METHOD_POOL = 12,
388
389      /// \brief The value of the next __COUNTER__ to dispense.
390      /// [PP_COUNTER_VALUE, Val]
391      PP_COUNTER_VALUE = 13,
392
393      /// \brief Record code for the table of offsets into the block
394      /// of source-location information.
395      SOURCE_LOCATION_OFFSETS = 14,
396
397      /// \brief Record code for the set of source location entries
398      /// that need to be preloaded by the AST reader.
399      ///
400      /// This set contains the source location entry for the
401      /// predefines buffer and for any file entries that need to be
402      /// preloaded.
403      SOURCE_LOCATION_PRELOADS = 15,
404
405      /// \brief Record code for the set of ext_vector type names.
406      EXT_VECTOR_DECLS = 16,
407
408      /// \brief Record code for the array of unused file scoped decls.
409      UNUSED_FILESCOPED_DECLS = 17,
410
411      /// \brief Record code for the table of offsets to entries in the
412      /// preprocessing record.
413      PPD_ENTITIES_OFFSETS = 18,
414
415      /// \brief Record code for the array of VTable uses.
416      VTABLE_USES = 19,
417
418      /// \brief Record code for the array of dynamic classes.
419      DYNAMIC_CLASSES = 20,
420
421      /// \brief Record code for referenced selector pool.
422      REFERENCED_SELECTOR_POOL = 21,
423
424      /// \brief Record code for an update to the TU's lexically contained
425      /// declarations.
426      TU_UPDATE_LEXICAL = 22,
427
428      /// \brief Record code for the array describing the locations (in the
429      /// LOCAL_REDECLARATIONS record) of the redeclaration chains, indexed by
430      /// the first known ID.
431      LOCAL_REDECLARATIONS_MAP = 23,
432
433      /// \brief Record code for declarations that Sema keeps references of.
434      SEMA_DECL_REFS = 24,
435
436      /// \brief Record code for weak undeclared identifiers.
437      WEAK_UNDECLARED_IDENTIFIERS = 25,
438
439      /// \brief Record code for pending implicit instantiations.
440      PENDING_IMPLICIT_INSTANTIATIONS = 26,
441
442      /// \brief Record code for a decl replacement block.
443      ///
444      /// If a declaration is modified after having been deserialized, and then
445      /// written to a dependent AST file, its ID and offset must be added to
446      /// the replacement block.
447      DECL_REPLACEMENTS = 27,
448
449      /// \brief Record code for an update to a decl context's lookup table.
450      ///
451      /// In practice, this should only be used for the TU and namespaces.
452      UPDATE_VISIBLE = 28,
453
454      /// \brief Record for offsets of DECL_UPDATES records for declarations
455      /// that were modified after being deserialized and need updates.
456      DECL_UPDATE_OFFSETS = 29,
457
458      /// \brief Record of updates for a declaration that was modified after
459      /// being deserialized.
460      DECL_UPDATES = 30,
461
462      /// \brief Record code for the table of offsets to CXXBaseSpecifier
463      /// sets.
464      CXX_BASE_SPECIFIER_OFFSETS = 31,
465
466      /// \brief Record code for \#pragma diagnostic mappings.
467      DIAG_PRAGMA_MAPPINGS = 32,
468
469      /// \brief Record code for special CUDA declarations.
470      CUDA_SPECIAL_DECL_REFS = 33,
471
472      /// \brief Record code for header search information.
473      HEADER_SEARCH_TABLE = 34,
474
475      /// \brief Record code for floating point \#pragma options.
476      FP_PRAGMA_OPTIONS = 35,
477
478      /// \brief Record code for enabled OpenCL extensions.
479      OPENCL_EXTENSIONS = 36,
480
481      /// \brief The list of delegating constructor declarations.
482      DELEGATING_CTORS = 37,
483
484      /// \brief Record code for the set of known namespaces, which are used
485      /// for typo correction.
486      KNOWN_NAMESPACES = 38,
487
488      /// \brief Record code for the remapping information used to relate
489      /// loaded modules to the various offsets and IDs(e.g., source location
490      /// offests, declaration and type IDs) that are used in that module to
491      /// refer to other modules.
492      MODULE_OFFSET_MAP = 39,
493
494      /// \brief Record code for the source manager line table information,
495      /// which stores information about \#line directives.
496      SOURCE_MANAGER_LINE_TABLE = 40,
497
498      /// \brief Record code for map of Objective-C class definition IDs to the
499      /// ObjC categories in a module that are attached to that class.
500      OBJC_CATEGORIES_MAP = 41,
501
502      /// \brief Record code for a file sorted array of DeclIDs in a module.
503      FILE_SORTED_DECLS = 42,
504
505      /// \brief Record code for an array of all of the (sub)modules that were
506      /// imported by the AST file.
507      IMPORTED_MODULES = 43,
508
509      /// \brief Record code for the set of merged declarations in an AST file.
510      MERGED_DECLARATIONS = 44,
511
512      /// \brief Record code for the array of redeclaration chains.
513      ///
514      /// This array can only be interpreted properly using the local
515      /// redeclarations map.
516      LOCAL_REDECLARATIONS = 45,
517
518      /// \brief Record code for the array of Objective-C categories (including
519      /// extensions).
520      ///
521      /// This array can only be interpreted properly using the Objective-C
522      /// categories map.
523      OBJC_CATEGORIES = 46,
524
525      /// \brief Record code for the table of offsets of each macro ID.
526      ///
527      /// The offset table contains offsets into the blob stored in
528      /// the preprocessor block. Each offset points to the corresponding
529      /// macro definition.
530      MACRO_OFFSET = 47,
531
532      /// \brief Mapping table from the identifier ID to the offset of the
533      /// macro directive history for the identifier.
534      MACRO_TABLE = 48,
535
536      /// \brief Record code for undefined but used functions and variables that
537      /// need a definition in this TU.
538      UNDEFINED_BUT_USED = 49
539    };
540
541    /// \brief Record types used within a source manager block.
542    enum SourceManagerRecordTypes {
543      /// \brief Describes a source location entry (SLocEntry) for a
544      /// file.
545      SM_SLOC_FILE_ENTRY = 1,
546      /// \brief Describes a source location entry (SLocEntry) for a
547      /// buffer.
548      SM_SLOC_BUFFER_ENTRY = 2,
549      /// \brief Describes a blob that contains the data for a buffer
550      /// entry. This kind of record always directly follows a
551      /// SM_SLOC_BUFFER_ENTRY record or a SM_SLOC_FILE_ENTRY with an
552      /// overridden buffer.
553      SM_SLOC_BUFFER_BLOB = 3,
554      /// \brief Describes a source location entry (SLocEntry) for a
555      /// macro expansion.
556      SM_SLOC_EXPANSION_ENTRY = 4
557    };
558
559    /// \brief Record types used within a preprocessor block.
560    enum PreprocessorRecordTypes {
561      // The macros in the PP section are a PP_MACRO_* instance followed by a
562      // list of PP_TOKEN instances for each token in the definition.
563
564      /// \brief An object-like macro definition.
565      /// [PP_MACRO_OBJECT_LIKE, IdentInfoID, SLoc, IsUsed]
566      PP_MACRO_OBJECT_LIKE = 1,
567
568      /// \brief A function-like macro definition.
569      /// [PP_MACRO_FUNCTION_LIKE, \<ObjectLikeStuff>, IsC99Varargs,
570      /// IsGNUVarars, NumArgs, ArgIdentInfoID* ]
571      PP_MACRO_FUNCTION_LIKE = 2,
572
573      /// \brief Describes one token.
574      /// [PP_TOKEN, SLoc, Length, IdentInfoID, Kind, Flags]
575      PP_TOKEN = 3,
576
577      /// \brief The macro directives history for a particular identifier.
578      PP_MACRO_DIRECTIVE_HISTORY = 4
579    };
580
581    /// \brief Record types used within a preprocessor detail block.
582    enum PreprocessorDetailRecordTypes {
583      /// \brief Describes a macro expansion within the preprocessing record.
584      PPD_MACRO_EXPANSION = 0,
585
586      /// \brief Describes a macro definition within the preprocessing record.
587      PPD_MACRO_DEFINITION = 1,
588
589      /// \brief Describes an inclusion directive within the preprocessing
590      /// record.
591      PPD_INCLUSION_DIRECTIVE = 2
592    };
593
594    /// \brief Record types used within a submodule description block.
595    enum SubmoduleRecordTypes {
596      /// \brief Metadata for submodules as a whole.
597      SUBMODULE_METADATA = 0,
598      /// \brief Defines the major attributes of a submodule, including its
599      /// name and parent.
600      SUBMODULE_DEFINITION = 1,
601      /// \brief Specifies the umbrella header used to create this module,
602      /// if any.
603      SUBMODULE_UMBRELLA_HEADER = 2,
604      /// \brief Specifies a header that falls into this (sub)module.
605      SUBMODULE_HEADER = 3,
606      /// \brief Specifies a top-level header that falls into this (sub)module.
607      SUBMODULE_TOPHEADER = 4,
608      /// \brief Specifies an umbrella directory.
609      SUBMODULE_UMBRELLA_DIR = 5,
610      /// \brief Specifies the submodules that are imported by this
611      /// submodule.
612      SUBMODULE_IMPORTS = 6,
613      /// \brief Specifies the submodules that are re-exported from this
614      /// submodule.
615      SUBMODULE_EXPORTS = 7,
616      /// \brief Specifies a required feature.
617      SUBMODULE_REQUIRES = 8,
618      /// \brief Specifies a header that has been explicitly excluded
619      /// from this submodule.
620      SUBMODULE_EXCLUDED_HEADER = 9,
621      /// \brief Specifies a library or framework to link against.
622      SUBMODULE_LINK_LIBRARY = 10,
623      /// \brief Specifies a configuration macro for this module.
624      SUBMODULE_CONFIG_MACRO = 11,
625      /// \brief Specifies a conflict with another module.
626      SUBMODULE_CONFLICT = 12,
627      /// \brief Specifies a header that is private to this submodule.
628      SUBMODULE_PRIVATE_HEADER = 13
629    };
630
631    /// \brief Record types used within a comments block.
632    enum CommentRecordTypes {
633      COMMENTS_RAW_COMMENT = 0
634    };
635
636    /// \defgroup ASTAST AST file AST constants
637    ///
638    /// The constants in this group describe various components of the
639    /// abstract syntax tree within an AST file.
640    ///
641    /// @{
642
643    /// \brief Predefined type IDs.
644    ///
645    /// These type IDs correspond to predefined types in the AST
646    /// context, such as built-in types (int) and special place-holder
647    /// types (the \<overload> and \<dependent> type markers). Such
648    /// types are never actually serialized, since they will be built
649    /// by the AST context when it is created.
650    enum PredefinedTypeIDs {
651      /// \brief The NULL type.
652      PREDEF_TYPE_NULL_ID       = 0,
653      /// \brief The void type.
654      PREDEF_TYPE_VOID_ID       = 1,
655      /// \brief The 'bool' or '_Bool' type.
656      PREDEF_TYPE_BOOL_ID       = 2,
657      /// \brief The 'char' type, when it is unsigned.
658      PREDEF_TYPE_CHAR_U_ID     = 3,
659      /// \brief The 'unsigned char' type.
660      PREDEF_TYPE_UCHAR_ID      = 4,
661      /// \brief The 'unsigned short' type.
662      PREDEF_TYPE_USHORT_ID     = 5,
663      /// \brief The 'unsigned int' type.
664      PREDEF_TYPE_UINT_ID       = 6,
665      /// \brief The 'unsigned long' type.
666      PREDEF_TYPE_ULONG_ID      = 7,
667      /// \brief The 'unsigned long long' type.
668      PREDEF_TYPE_ULONGLONG_ID  = 8,
669      /// \brief The 'char' type, when it is signed.
670      PREDEF_TYPE_CHAR_S_ID     = 9,
671      /// \brief The 'signed char' type.
672      PREDEF_TYPE_SCHAR_ID      = 10,
673      /// \brief The C++ 'wchar_t' type.
674      PREDEF_TYPE_WCHAR_ID      = 11,
675      /// \brief The (signed) 'short' type.
676      PREDEF_TYPE_SHORT_ID      = 12,
677      /// \brief The (signed) 'int' type.
678      PREDEF_TYPE_INT_ID        = 13,
679      /// \brief The (signed) 'long' type.
680      PREDEF_TYPE_LONG_ID       = 14,
681      /// \brief The (signed) 'long long' type.
682      PREDEF_TYPE_LONGLONG_ID   = 15,
683      /// \brief The 'float' type.
684      PREDEF_TYPE_FLOAT_ID      = 16,
685      /// \brief The 'double' type.
686      PREDEF_TYPE_DOUBLE_ID     = 17,
687      /// \brief The 'long double' type.
688      PREDEF_TYPE_LONGDOUBLE_ID = 18,
689      /// \brief The placeholder type for overloaded function sets.
690      PREDEF_TYPE_OVERLOAD_ID   = 19,
691      /// \brief The placeholder type for dependent types.
692      PREDEF_TYPE_DEPENDENT_ID  = 20,
693      /// \brief The '__uint128_t' type.
694      PREDEF_TYPE_UINT128_ID    = 21,
695      /// \brief The '__int128_t' type.
696      PREDEF_TYPE_INT128_ID     = 22,
697      /// \brief The type of 'nullptr'.
698      PREDEF_TYPE_NULLPTR_ID    = 23,
699      /// \brief The C++ 'char16_t' type.
700      PREDEF_TYPE_CHAR16_ID     = 24,
701      /// \brief The C++ 'char32_t' type.
702      PREDEF_TYPE_CHAR32_ID     = 25,
703      /// \brief The ObjC 'id' type.
704      PREDEF_TYPE_OBJC_ID       = 26,
705      /// \brief The ObjC 'Class' type.
706      PREDEF_TYPE_OBJC_CLASS    = 27,
707      /// \brief The ObjC 'SEL' type.
708      PREDEF_TYPE_OBJC_SEL      = 28,
709      /// \brief The 'unknown any' placeholder type.
710      PREDEF_TYPE_UNKNOWN_ANY   = 29,
711      /// \brief The placeholder type for bound member functions.
712      PREDEF_TYPE_BOUND_MEMBER  = 30,
713      /// \brief The "auto" deduction type.
714      PREDEF_TYPE_AUTO_DEDUCT   = 31,
715      /// \brief The "auto &&" deduction type.
716      PREDEF_TYPE_AUTO_RREF_DEDUCT = 32,
717      /// \brief The OpenCL 'half' / ARM NEON __fp16 type.
718      PREDEF_TYPE_HALF_ID       = 33,
719      /// \brief ARC's unbridged-cast placeholder type.
720      PREDEF_TYPE_ARC_UNBRIDGED_CAST = 34,
721      /// \brief The pseudo-object placeholder type.
722      PREDEF_TYPE_PSEUDO_OBJECT = 35,
723      /// \brief The __va_list_tag placeholder type.
724      PREDEF_TYPE_VA_LIST_TAG = 36,
725      /// \brief The placeholder type for builtin functions.
726      PREDEF_TYPE_BUILTIN_FN = 37,
727      /// \brief OpenCL 1d image type.
728      PREDEF_TYPE_IMAGE1D_ID    = 38,
729      /// \brief OpenCL 1d image array type.
730      PREDEF_TYPE_IMAGE1D_ARR_ID = 39,
731      /// \brief OpenCL 1d image buffer type.
732      PREDEF_TYPE_IMAGE1D_BUFF_ID = 40,
733      /// \brief OpenCL 2d image type.
734      PREDEF_TYPE_IMAGE2D_ID    = 41,
735      /// \brief OpenCL 2d image array type.
736      PREDEF_TYPE_IMAGE2D_ARR_ID = 42,
737      /// \brief OpenCL 3d image type.
738      PREDEF_TYPE_IMAGE3D_ID    = 43,
739      /// \brief OpenCL event type.
740      PREDEF_TYPE_EVENT_ID      = 44,
741      /// \brief OpenCL sampler type.
742      PREDEF_TYPE_SAMPLER_ID    = 45
743    };
744
745    /// \brief The number of predefined type IDs that are reserved for
746    /// the PREDEF_TYPE_* constants.
747    ///
748    /// Type IDs for non-predefined types will start at
749    /// NUM_PREDEF_TYPE_IDs.
750    const unsigned NUM_PREDEF_TYPE_IDS = 100;
751
752    /// \brief The number of allowed abbreviations in bits
753    const unsigned NUM_ALLOWED_ABBREVS_SIZE = 4;
754
755    /// \brief Record codes for each kind of type.
756    ///
757    /// These constants describe the type records that can occur within a
758    /// block identified by DECLTYPES_BLOCK_ID in the AST file. Each
759    /// constant describes a record for a specific type class in the
760    /// AST.
761    enum TypeCode {
762      /// \brief An ExtQualType record.
763      TYPE_EXT_QUAL                 = 1,
764      /// \brief A ComplexType record.
765      TYPE_COMPLEX                  = 3,
766      /// \brief A PointerType record.
767      TYPE_POINTER                  = 4,
768      /// \brief A BlockPointerType record.
769      TYPE_BLOCK_POINTER            = 5,
770      /// \brief An LValueReferenceType record.
771      TYPE_LVALUE_REFERENCE         = 6,
772      /// \brief An RValueReferenceType record.
773      TYPE_RVALUE_REFERENCE         = 7,
774      /// \brief A MemberPointerType record.
775      TYPE_MEMBER_POINTER           = 8,
776      /// \brief A ConstantArrayType record.
777      TYPE_CONSTANT_ARRAY           = 9,
778      /// \brief An IncompleteArrayType record.
779      TYPE_INCOMPLETE_ARRAY         = 10,
780      /// \brief A VariableArrayType record.
781      TYPE_VARIABLE_ARRAY           = 11,
782      /// \brief A VectorType record.
783      TYPE_VECTOR                   = 12,
784      /// \brief An ExtVectorType record.
785      TYPE_EXT_VECTOR               = 13,
786      /// \brief A FunctionNoProtoType record.
787      TYPE_FUNCTION_NO_PROTO        = 14,
788      /// \brief A FunctionProtoType record.
789      TYPE_FUNCTION_PROTO           = 15,
790      /// \brief A TypedefType record.
791      TYPE_TYPEDEF                  = 16,
792      /// \brief A TypeOfExprType record.
793      TYPE_TYPEOF_EXPR              = 17,
794      /// \brief A TypeOfType record.
795      TYPE_TYPEOF                   = 18,
796      /// \brief A RecordType record.
797      TYPE_RECORD                   = 19,
798      /// \brief An EnumType record.
799      TYPE_ENUM                     = 20,
800      /// \brief An ObjCInterfaceType record.
801      TYPE_OBJC_INTERFACE           = 21,
802      /// \brief An ObjCObjectPointerType record.
803      TYPE_OBJC_OBJECT_POINTER      = 22,
804      /// \brief a DecltypeType record.
805      TYPE_DECLTYPE                 = 23,
806      /// \brief An ElaboratedType record.
807      TYPE_ELABORATED               = 24,
808      /// \brief A SubstTemplateTypeParmType record.
809      TYPE_SUBST_TEMPLATE_TYPE_PARM = 25,
810      /// \brief An UnresolvedUsingType record.
811      TYPE_UNRESOLVED_USING         = 26,
812      /// \brief An InjectedClassNameType record.
813      TYPE_INJECTED_CLASS_NAME      = 27,
814      /// \brief An ObjCObjectType record.
815      TYPE_OBJC_OBJECT              = 28,
816      /// \brief An TemplateTypeParmType record.
817      TYPE_TEMPLATE_TYPE_PARM       = 29,
818      /// \brief An TemplateSpecializationType record.
819      TYPE_TEMPLATE_SPECIALIZATION  = 30,
820      /// \brief A DependentNameType record.
821      TYPE_DEPENDENT_NAME           = 31,
822      /// \brief A DependentTemplateSpecializationType record.
823      TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION = 32,
824      /// \brief A DependentSizedArrayType record.
825      TYPE_DEPENDENT_SIZED_ARRAY    = 33,
826      /// \brief A ParenType record.
827      TYPE_PAREN                    = 34,
828      /// \brief A PackExpansionType record.
829      TYPE_PACK_EXPANSION           = 35,
830      /// \brief An AttributedType record.
831      TYPE_ATTRIBUTED               = 36,
832      /// \brief A SubstTemplateTypeParmPackType record.
833      TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK = 37,
834      /// \brief A AutoType record.
835      TYPE_AUTO                  = 38,
836      /// \brief A UnaryTransformType record.
837      TYPE_UNARY_TRANSFORM       = 39,
838      /// \brief An AtomicType record.
839      TYPE_ATOMIC                = 40,
840      /// \brief A DecayedType record.
841      TYPE_DECAYED               = 41
842    };
843
844    /// \brief The type IDs for special types constructed by semantic
845    /// analysis.
846    ///
847    /// The constants in this enumeration are indices into the
848    /// SPECIAL_TYPES record.
849    enum SpecialTypeIDs {
850      /// \brief CFConstantString type
851      SPECIAL_TYPE_CF_CONSTANT_STRING          = 0,
852      /// \brief C FILE typedef type
853      SPECIAL_TYPE_FILE                        = 1,
854      /// \brief C jmp_buf typedef type
855      SPECIAL_TYPE_JMP_BUF                     = 2,
856      /// \brief C sigjmp_buf typedef type
857      SPECIAL_TYPE_SIGJMP_BUF                  = 3,
858      /// \brief Objective-C "id" redefinition type
859      SPECIAL_TYPE_OBJC_ID_REDEFINITION        = 4,
860      /// \brief Objective-C "Class" redefinition type
861      SPECIAL_TYPE_OBJC_CLASS_REDEFINITION     = 5,
862      /// \brief Objective-C "SEL" redefinition type
863      SPECIAL_TYPE_OBJC_SEL_REDEFINITION       = 6,
864      /// \brief C ucontext_t typedef type
865      SPECIAL_TYPE_UCONTEXT_T                  = 7
866    };
867
868    /// \brief The number of special type IDs.
869    const unsigned NumSpecialTypeIDs = 8;
870
871    /// \brief Predefined declaration IDs.
872    ///
873    /// These declaration IDs correspond to predefined declarations in the AST
874    /// context, such as the NULL declaration ID. Such declarations are never
875    /// actually serialized, since they will be built by the AST context when
876    /// it is created.
877    enum PredefinedDeclIDs {
878      /// \brief The NULL declaration.
879      PREDEF_DECL_NULL_ID       = 0,
880
881      /// \brief The translation unit.
882      PREDEF_DECL_TRANSLATION_UNIT_ID = 1,
883
884      /// \brief The Objective-C 'id' type.
885      PREDEF_DECL_OBJC_ID_ID = 2,
886
887      /// \brief The Objective-C 'SEL' type.
888      PREDEF_DECL_OBJC_SEL_ID = 3,
889
890      /// \brief The Objective-C 'Class' type.
891      PREDEF_DECL_OBJC_CLASS_ID = 4,
892
893      /// \brief The Objective-C 'Protocol' type.
894      PREDEF_DECL_OBJC_PROTOCOL_ID = 5,
895
896      /// \brief The signed 128-bit integer type.
897      PREDEF_DECL_INT_128_ID = 6,
898
899      /// \brief The unsigned 128-bit integer type.
900      PREDEF_DECL_UNSIGNED_INT_128_ID = 7,
901
902      /// \brief The internal 'instancetype' typedef.
903      PREDEF_DECL_OBJC_INSTANCETYPE_ID = 8,
904
905      /// \brief The internal '__builtin_va_list' typedef.
906      PREDEF_DECL_BUILTIN_VA_LIST_ID = 9
907    };
908
909    /// \brief The number of declaration IDs that are predefined.
910    ///
911    /// For more information about predefined declarations, see the
912    /// \c PredefinedDeclIDs type and the PREDEF_DECL_*_ID constants.
913    const unsigned int NUM_PREDEF_DECL_IDS = 10;
914
915    /// \brief Record codes for each kind of declaration.
916    ///
917    /// These constants describe the declaration records that can occur within
918    /// a declarations block (identified by DECLS_BLOCK_ID). Each
919    /// constant describes a record for a specific declaration class
920    /// in the AST.
921    enum DeclCode {
922      /// \brief A TypedefDecl record.
923      DECL_TYPEDEF = 51,
924      /// \brief A TypeAliasDecl record.
925      DECL_TYPEALIAS,
926      /// \brief An EnumDecl record.
927      DECL_ENUM,
928      /// \brief A RecordDecl record.
929      DECL_RECORD,
930      /// \brief An EnumConstantDecl record.
931      DECL_ENUM_CONSTANT,
932      /// \brief A FunctionDecl record.
933      DECL_FUNCTION,
934      /// \brief A ObjCMethodDecl record.
935      DECL_OBJC_METHOD,
936      /// \brief A ObjCInterfaceDecl record.
937      DECL_OBJC_INTERFACE,
938      /// \brief A ObjCProtocolDecl record.
939      DECL_OBJC_PROTOCOL,
940      /// \brief A ObjCIvarDecl record.
941      DECL_OBJC_IVAR,
942      /// \brief A ObjCAtDefsFieldDecl record.
943      DECL_OBJC_AT_DEFS_FIELD,
944      /// \brief A ObjCCategoryDecl record.
945      DECL_OBJC_CATEGORY,
946      /// \brief A ObjCCategoryImplDecl record.
947      DECL_OBJC_CATEGORY_IMPL,
948      /// \brief A ObjCImplementationDecl record.
949      DECL_OBJC_IMPLEMENTATION,
950      /// \brief A ObjCCompatibleAliasDecl record.
951      DECL_OBJC_COMPATIBLE_ALIAS,
952      /// \brief A ObjCPropertyDecl record.
953      DECL_OBJC_PROPERTY,
954      /// \brief A ObjCPropertyImplDecl record.
955      DECL_OBJC_PROPERTY_IMPL,
956      /// \brief A FieldDecl record.
957      DECL_FIELD,
958      /// \brief A MSPropertyDecl record.
959      DECL_MS_PROPERTY,
960      /// \brief A VarDecl record.
961      DECL_VAR,
962      /// \brief An ImplicitParamDecl record.
963      DECL_IMPLICIT_PARAM,
964      /// \brief A ParmVarDecl record.
965      DECL_PARM_VAR,
966      /// \brief A FileScopeAsmDecl record.
967      DECL_FILE_SCOPE_ASM,
968      /// \brief A BlockDecl record.
969      DECL_BLOCK,
970      /// \brief A CapturedDecl record.
971      DECL_CAPTURED,
972      /// \brief A record that stores the set of declarations that are
973      /// lexically stored within a given DeclContext.
974      ///
975      /// The record itself is a blob that is an array of declaration IDs,
976      /// in the order in which those declarations were added to the
977      /// declaration context. This data is used when iterating over
978      /// the contents of a DeclContext, e.g., via
979      /// DeclContext::decls_begin() and DeclContext::decls_end().
980      DECL_CONTEXT_LEXICAL,
981      /// \brief A record that stores the set of declarations that are
982      /// visible from a given DeclContext.
983      ///
984      /// The record itself stores a set of mappings, each of which
985      /// associates a declaration name with one or more declaration
986      /// IDs. This data is used when performing qualified name lookup
987      /// into a DeclContext via DeclContext::lookup.
988      DECL_CONTEXT_VISIBLE,
989      /// \brief A LabelDecl record.
990      DECL_LABEL,
991      /// \brief A NamespaceDecl record.
992      DECL_NAMESPACE,
993      /// \brief A NamespaceAliasDecl record.
994      DECL_NAMESPACE_ALIAS,
995      /// \brief A UsingDecl record.
996      DECL_USING,
997      /// \brief A UsingShadowDecl record.
998      DECL_USING_SHADOW,
999      /// \brief A UsingDirecitveDecl record.
1000      DECL_USING_DIRECTIVE,
1001      /// \brief An UnresolvedUsingValueDecl record.
1002      DECL_UNRESOLVED_USING_VALUE,
1003      /// \brief An UnresolvedUsingTypenameDecl record.
1004      DECL_UNRESOLVED_USING_TYPENAME,
1005      /// \brief A LinkageSpecDecl record.
1006      DECL_LINKAGE_SPEC,
1007      /// \brief A CXXRecordDecl record.
1008      DECL_CXX_RECORD,
1009      /// \brief A CXXMethodDecl record.
1010      DECL_CXX_METHOD,
1011      /// \brief A CXXConstructorDecl record.
1012      DECL_CXX_CONSTRUCTOR,
1013      /// \brief A CXXDestructorDecl record.
1014      DECL_CXX_DESTRUCTOR,
1015      /// \brief A CXXConversionDecl record.
1016      DECL_CXX_CONVERSION,
1017      /// \brief An AccessSpecDecl record.
1018      DECL_ACCESS_SPEC,
1019
1020      /// \brief A FriendDecl record.
1021      DECL_FRIEND,
1022      /// \brief A FriendTemplateDecl record.
1023      DECL_FRIEND_TEMPLATE,
1024      /// \brief A ClassTemplateDecl record.
1025      DECL_CLASS_TEMPLATE,
1026      /// \brief A ClassTemplateSpecializationDecl record.
1027      DECL_CLASS_TEMPLATE_SPECIALIZATION,
1028      /// \brief A ClassTemplatePartialSpecializationDecl record.
1029      DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION,
1030      /// \brief A VarTemplateDecl record.
1031      DECL_VAR_TEMPLATE,
1032      /// \brief A VarTemplateSpecializationDecl record.
1033      DECL_VAR_TEMPLATE_SPECIALIZATION,
1034      /// \brief A VarTemplatePartialSpecializationDecl record.
1035      DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION,
1036      /// \brief A FunctionTemplateDecl record.
1037      DECL_FUNCTION_TEMPLATE,
1038      /// \brief A TemplateTypeParmDecl record.
1039      DECL_TEMPLATE_TYPE_PARM,
1040      /// \brief A NonTypeTemplateParmDecl record.
1041      DECL_NON_TYPE_TEMPLATE_PARM,
1042      /// \brief A TemplateTemplateParmDecl record.
1043      DECL_TEMPLATE_TEMPLATE_PARM,
1044      /// \brief A TypeAliasTemplateDecl record.
1045      DECL_TYPE_ALIAS_TEMPLATE,
1046      /// \brief A StaticAssertDecl record.
1047      DECL_STATIC_ASSERT,
1048      /// \brief A record containing CXXBaseSpecifiers.
1049      DECL_CXX_BASE_SPECIFIERS,
1050      /// \brief A IndirectFieldDecl record.
1051      DECL_INDIRECTFIELD,
1052      /// \brief A NonTypeTemplateParmDecl record that stores an expanded
1053      /// non-type template parameter pack.
1054      DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK,
1055      /// \brief A TemplateTemplateParmDecl record that stores an expanded
1056      /// template template parameter pack.
1057      DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK,
1058      /// \brief A ClassScopeFunctionSpecializationDecl record a class scope
1059      /// function specialization. (Microsoft extension).
1060      DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION,
1061      /// \brief An ImportDecl recording a module import.
1062      DECL_IMPORT,
1063      /// \brief An OMPThreadPrivateDecl record.
1064      DECL_OMP_THREADPRIVATE,
1065      /// \brief An EmptyDecl record.
1066      DECL_EMPTY
1067    };
1068
1069    /// \brief Record codes for each kind of statement or expression.
1070    ///
1071    /// These constants describe the records that describe statements
1072    /// or expressions. These records  occur within type and declarations
1073    /// block, so they begin with record values of 100.  Each constant
1074    /// describes a record for a specific statement or expression class in the
1075    /// AST.
1076    enum StmtCode {
1077      /// \brief A marker record that indicates that we are at the end
1078      /// of an expression.
1079      STMT_STOP = 100,
1080      /// \brief A NULL expression.
1081      STMT_NULL_PTR,
1082      /// \brief A reference to a previously [de]serialized Stmt record.
1083      STMT_REF_PTR,
1084      /// \brief A NullStmt record.
1085      STMT_NULL,
1086      /// \brief A CompoundStmt record.
1087      STMT_COMPOUND,
1088      /// \brief A CaseStmt record.
1089      STMT_CASE,
1090      /// \brief A DefaultStmt record.
1091      STMT_DEFAULT,
1092      /// \brief A LabelStmt record.
1093      STMT_LABEL,
1094      /// \brief An AttributedStmt record.
1095      STMT_ATTRIBUTED,
1096      /// \brief An IfStmt record.
1097      STMT_IF,
1098      /// \brief A SwitchStmt record.
1099      STMT_SWITCH,
1100      /// \brief A WhileStmt record.
1101      STMT_WHILE,
1102      /// \brief A DoStmt record.
1103      STMT_DO,
1104      /// \brief A ForStmt record.
1105      STMT_FOR,
1106      /// \brief A GotoStmt record.
1107      STMT_GOTO,
1108      /// \brief An IndirectGotoStmt record.
1109      STMT_INDIRECT_GOTO,
1110      /// \brief A ContinueStmt record.
1111      STMT_CONTINUE,
1112      /// \brief A BreakStmt record.
1113      STMT_BREAK,
1114      /// \brief A ReturnStmt record.
1115      STMT_RETURN,
1116      /// \brief A DeclStmt record.
1117      STMT_DECL,
1118      /// \brief A CapturedStmt record.
1119      STMT_CAPTURED,
1120      /// \brief A GCC-style AsmStmt record.
1121      STMT_GCCASM,
1122      /// \brief A MS-style AsmStmt record.
1123      STMT_MSASM,
1124      /// \brief A PredefinedExpr record.
1125      EXPR_PREDEFINED,
1126      /// \brief A DeclRefExpr record.
1127      EXPR_DECL_REF,
1128      /// \brief An IntegerLiteral record.
1129      EXPR_INTEGER_LITERAL,
1130      /// \brief A FloatingLiteral record.
1131      EXPR_FLOATING_LITERAL,
1132      /// \brief An ImaginaryLiteral record.
1133      EXPR_IMAGINARY_LITERAL,
1134      /// \brief A StringLiteral record.
1135      EXPR_STRING_LITERAL,
1136      /// \brief A CharacterLiteral record.
1137      EXPR_CHARACTER_LITERAL,
1138      /// \brief A ParenExpr record.
1139      EXPR_PAREN,
1140      /// \brief A ParenListExpr record.
1141      EXPR_PAREN_LIST,
1142      /// \brief A UnaryOperator record.
1143      EXPR_UNARY_OPERATOR,
1144      /// \brief An OffsetOfExpr record.
1145      EXPR_OFFSETOF,
1146      /// \brief A SizefAlignOfExpr record.
1147      EXPR_SIZEOF_ALIGN_OF,
1148      /// \brief An ArraySubscriptExpr record.
1149      EXPR_ARRAY_SUBSCRIPT,
1150      /// \brief A CallExpr record.
1151      EXPR_CALL,
1152      /// \brief A MemberExpr record.
1153      EXPR_MEMBER,
1154      /// \brief A BinaryOperator record.
1155      EXPR_BINARY_OPERATOR,
1156      /// \brief A CompoundAssignOperator record.
1157      EXPR_COMPOUND_ASSIGN_OPERATOR,
1158      /// \brief A ConditionOperator record.
1159      EXPR_CONDITIONAL_OPERATOR,
1160      /// \brief An ImplicitCastExpr record.
1161      EXPR_IMPLICIT_CAST,
1162      /// \brief A CStyleCastExpr record.
1163      EXPR_CSTYLE_CAST,
1164      /// \brief A CompoundLiteralExpr record.
1165      EXPR_COMPOUND_LITERAL,
1166      /// \brief An ExtVectorElementExpr record.
1167      EXPR_EXT_VECTOR_ELEMENT,
1168      /// \brief An InitListExpr record.
1169      EXPR_INIT_LIST,
1170      /// \brief A DesignatedInitExpr record.
1171      EXPR_DESIGNATED_INIT,
1172      /// \brief An ImplicitValueInitExpr record.
1173      EXPR_IMPLICIT_VALUE_INIT,
1174      /// \brief A VAArgExpr record.
1175      EXPR_VA_ARG,
1176      /// \brief An AddrLabelExpr record.
1177      EXPR_ADDR_LABEL,
1178      /// \brief A StmtExpr record.
1179      EXPR_STMT,
1180      /// \brief A ChooseExpr record.
1181      EXPR_CHOOSE,
1182      /// \brief A GNUNullExpr record.
1183      EXPR_GNU_NULL,
1184      /// \brief A ShuffleVectorExpr record.
1185      EXPR_SHUFFLE_VECTOR,
1186      /// \brief BlockExpr
1187      EXPR_BLOCK,
1188      /// \brief A GenericSelectionExpr record.
1189      EXPR_GENERIC_SELECTION,
1190      /// \brief A PseudoObjectExpr record.
1191      EXPR_PSEUDO_OBJECT,
1192      /// \brief An AtomicExpr record.
1193      EXPR_ATOMIC,
1194
1195      // Objective-C
1196
1197      /// \brief An ObjCStringLiteral record.
1198      EXPR_OBJC_STRING_LITERAL,
1199
1200      EXPR_OBJC_BOXED_EXPRESSION,
1201      EXPR_OBJC_ARRAY_LITERAL,
1202      EXPR_OBJC_DICTIONARY_LITERAL,
1203
1204
1205      /// \brief An ObjCEncodeExpr record.
1206      EXPR_OBJC_ENCODE,
1207      /// \brief An ObjCSelectorExpr record.
1208      EXPR_OBJC_SELECTOR_EXPR,
1209      /// \brief An ObjCProtocolExpr record.
1210      EXPR_OBJC_PROTOCOL_EXPR,
1211      /// \brief An ObjCIvarRefExpr record.
1212      EXPR_OBJC_IVAR_REF_EXPR,
1213      /// \brief An ObjCPropertyRefExpr record.
1214      EXPR_OBJC_PROPERTY_REF_EXPR,
1215      /// \brief An ObjCSubscriptRefExpr record.
1216      EXPR_OBJC_SUBSCRIPT_REF_EXPR,
1217      /// \brief UNUSED
1218      EXPR_OBJC_KVC_REF_EXPR,
1219      /// \brief An ObjCMessageExpr record.
1220      EXPR_OBJC_MESSAGE_EXPR,
1221      /// \brief An ObjCIsa Expr record.
1222      EXPR_OBJC_ISA,
1223      /// \brief An ObjCIndirectCopyRestoreExpr record.
1224      EXPR_OBJC_INDIRECT_COPY_RESTORE,
1225
1226      /// \brief An ObjCForCollectionStmt record.
1227      STMT_OBJC_FOR_COLLECTION,
1228      /// \brief An ObjCAtCatchStmt record.
1229      STMT_OBJC_CATCH,
1230      /// \brief An ObjCAtFinallyStmt record.
1231      STMT_OBJC_FINALLY,
1232      /// \brief An ObjCAtTryStmt record.
1233      STMT_OBJC_AT_TRY,
1234      /// \brief An ObjCAtSynchronizedStmt record.
1235      STMT_OBJC_AT_SYNCHRONIZED,
1236      /// \brief An ObjCAtThrowStmt record.
1237      STMT_OBJC_AT_THROW,
1238      /// \brief An ObjCAutoreleasePoolStmt record.
1239      STMT_OBJC_AUTORELEASE_POOL,
1240      /// \brief A ObjCBoolLiteralExpr record.
1241      EXPR_OBJC_BOOL_LITERAL,
1242
1243      // C++
1244
1245      /// \brief A CXXCatchStmt record.
1246      STMT_CXX_CATCH,
1247      /// \brief A CXXTryStmt record.
1248      STMT_CXX_TRY,
1249      /// \brief A CXXForRangeStmt record.
1250      STMT_CXX_FOR_RANGE,
1251
1252      /// \brief A CXXOperatorCallExpr record.
1253      EXPR_CXX_OPERATOR_CALL,
1254      /// \brief A CXXMemberCallExpr record.
1255      EXPR_CXX_MEMBER_CALL,
1256      /// \brief A CXXConstructExpr record.
1257      EXPR_CXX_CONSTRUCT,
1258      /// \brief A CXXTemporaryObjectExpr record.
1259      EXPR_CXX_TEMPORARY_OBJECT,
1260      /// \brief A CXXStaticCastExpr record.
1261      EXPR_CXX_STATIC_CAST,
1262      /// \brief A CXXDynamicCastExpr record.
1263      EXPR_CXX_DYNAMIC_CAST,
1264      /// \brief A CXXReinterpretCastExpr record.
1265      EXPR_CXX_REINTERPRET_CAST,
1266      /// \brief A CXXConstCastExpr record.
1267      EXPR_CXX_CONST_CAST,
1268      /// \brief A CXXFunctionalCastExpr record.
1269      EXPR_CXX_FUNCTIONAL_CAST,
1270      /// \brief A UserDefinedLiteral record.
1271      EXPR_USER_DEFINED_LITERAL,
1272      /// \brief A CXXStdInitializerListExpr record.
1273      EXPR_CXX_STD_INITIALIZER_LIST,
1274      /// \brief A CXXBoolLiteralExpr record.
1275      EXPR_CXX_BOOL_LITERAL,
1276      EXPR_CXX_NULL_PTR_LITERAL,  // CXXNullPtrLiteralExpr
1277      EXPR_CXX_TYPEID_EXPR,       // CXXTypeidExpr (of expr).
1278      EXPR_CXX_TYPEID_TYPE,       // CXXTypeidExpr (of type).
1279      EXPR_CXX_THIS,              // CXXThisExpr
1280      EXPR_CXX_THROW,             // CXXThrowExpr
1281      EXPR_CXX_DEFAULT_ARG,       // CXXDefaultArgExpr
1282      EXPR_CXX_DEFAULT_INIT,      // CXXDefaultInitExpr
1283      EXPR_CXX_BIND_TEMPORARY,    // CXXBindTemporaryExpr
1284
1285      EXPR_CXX_SCALAR_VALUE_INIT, // CXXScalarValueInitExpr
1286      EXPR_CXX_NEW,               // CXXNewExpr
1287      EXPR_CXX_DELETE,            // CXXDeleteExpr
1288      EXPR_CXX_PSEUDO_DESTRUCTOR, // CXXPseudoDestructorExpr
1289
1290      EXPR_EXPR_WITH_CLEANUPS,    // ExprWithCleanups
1291
1292      EXPR_CXX_DEPENDENT_SCOPE_MEMBER,   // CXXDependentScopeMemberExpr
1293      EXPR_CXX_DEPENDENT_SCOPE_DECL_REF, // DependentScopeDeclRefExpr
1294      EXPR_CXX_UNRESOLVED_CONSTRUCT,     // CXXUnresolvedConstructExpr
1295      EXPR_CXX_UNRESOLVED_MEMBER,        // UnresolvedMemberExpr
1296      EXPR_CXX_UNRESOLVED_LOOKUP,        // UnresolvedLookupExpr
1297
1298      EXPR_CXX_UNARY_TYPE_TRAIT,  // UnaryTypeTraitExpr
1299      EXPR_CXX_EXPRESSION_TRAIT,  // ExpressionTraitExpr
1300      EXPR_CXX_NOEXCEPT,          // CXXNoexceptExpr
1301
1302      EXPR_OPAQUE_VALUE,          // OpaqueValueExpr
1303      EXPR_BINARY_CONDITIONAL_OPERATOR,  // BinaryConditionalOperator
1304      EXPR_BINARY_TYPE_TRAIT,     // BinaryTypeTraitExpr
1305      EXPR_TYPE_TRAIT,            // TypeTraitExpr
1306      EXPR_ARRAY_TYPE_TRAIT,      // ArrayTypeTraitIntExpr
1307
1308      EXPR_PACK_EXPANSION,        // PackExpansionExpr
1309      EXPR_SIZEOF_PACK,           // SizeOfPackExpr
1310      EXPR_SUBST_NON_TYPE_TEMPLATE_PARM, // SubstNonTypeTemplateParmExpr
1311      EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK,// SubstNonTypeTemplateParmPackExpr
1312      EXPR_FUNCTION_PARM_PACK,    // FunctionParmPackExpr
1313      EXPR_MATERIALIZE_TEMPORARY, // MaterializeTemporaryExpr
1314
1315      // CUDA
1316      EXPR_CUDA_KERNEL_CALL,       // CUDAKernelCallExpr
1317
1318      // OpenCL
1319      EXPR_ASTYPE,                 // AsTypeExpr
1320
1321      // Microsoft
1322      EXPR_CXX_PROPERTY_REF_EXPR, // MSPropertyRefExpr
1323      EXPR_CXX_UUIDOF_EXPR,       // CXXUuidofExpr (of expr).
1324      EXPR_CXX_UUIDOF_TYPE,       // CXXUuidofExpr (of type).
1325      STMT_SEH_EXCEPT,            // SEHExceptStmt
1326      STMT_SEH_FINALLY,           // SEHFinallyStmt
1327      STMT_SEH_TRY,               // SEHTryStmt
1328
1329      // OpenMP drectives
1330      STMT_OMP_PARALLEL_DIRECTIVE,
1331
1332      // ARC
1333      EXPR_OBJC_BRIDGED_CAST,     // ObjCBridgedCastExpr
1334
1335      STMT_MS_DEPENDENT_EXISTS,   // MSDependentExistsStmt
1336      EXPR_LAMBDA                 // LambdaExpr
1337    };
1338
1339    /// \brief The kinds of designators that can occur in a
1340    /// DesignatedInitExpr.
1341    enum DesignatorTypes {
1342      /// \brief Field designator where only the field name is known.
1343      DESIG_FIELD_NAME  = 0,
1344      /// \brief Field designator where the field has been resolved to
1345      /// a declaration.
1346      DESIG_FIELD_DECL  = 1,
1347      /// \brief Array designator.
1348      DESIG_ARRAY       = 2,
1349      /// \brief GNU array range designator.
1350      DESIG_ARRAY_RANGE = 3
1351    };
1352
1353    /// \brief The different kinds of data that can occur in a
1354    /// CtorInitializer.
1355    enum CtorInitializerType {
1356      CTOR_INITIALIZER_BASE,
1357      CTOR_INITIALIZER_DELEGATING,
1358      CTOR_INITIALIZER_MEMBER,
1359      CTOR_INITIALIZER_INDIRECT_MEMBER
1360    };
1361
1362    /// \brief Describes the redeclarations of a declaration.
1363    struct LocalRedeclarationsInfo {
1364      DeclID FirstID;      // The ID of the first declaration
1365      unsigned Offset;     // Offset into the array of redeclaration chains.
1366
1367      friend bool operator<(const LocalRedeclarationsInfo &X,
1368                            const LocalRedeclarationsInfo &Y) {
1369        return X.FirstID < Y.FirstID;
1370      }
1371
1372      friend bool operator>(const LocalRedeclarationsInfo &X,
1373                            const LocalRedeclarationsInfo &Y) {
1374        return X.FirstID > Y.FirstID;
1375      }
1376
1377      friend bool operator<=(const LocalRedeclarationsInfo &X,
1378                             const LocalRedeclarationsInfo &Y) {
1379        return X.FirstID <= Y.FirstID;
1380      }
1381
1382      friend bool operator>=(const LocalRedeclarationsInfo &X,
1383                             const LocalRedeclarationsInfo &Y) {
1384        return X.FirstID >= Y.FirstID;
1385      }
1386    };
1387
1388    /// \brief Describes the categories of an Objective-C class.
1389    struct ObjCCategoriesInfo {
1390      DeclID DefinitionID; // The ID of the definition
1391      unsigned Offset;     // Offset into the array of category lists.
1392
1393      friend bool operator<(const ObjCCategoriesInfo &X,
1394                            const ObjCCategoriesInfo &Y) {
1395        return X.DefinitionID < Y.DefinitionID;
1396      }
1397
1398      friend bool operator>(const ObjCCategoriesInfo &X,
1399                            const ObjCCategoriesInfo &Y) {
1400        return X.DefinitionID > Y.DefinitionID;
1401      }
1402
1403      friend bool operator<=(const ObjCCategoriesInfo &X,
1404                             const ObjCCategoriesInfo &Y) {
1405        return X.DefinitionID <= Y.DefinitionID;
1406      }
1407
1408      friend bool operator>=(const ObjCCategoriesInfo &X,
1409                             const ObjCCategoriesInfo &Y) {
1410        return X.DefinitionID >= Y.DefinitionID;
1411      }
1412    };
1413
1414    /// @}
1415  }
1416} // end namespace clang
1417
1418#endif
1419