clang 19.0.0git
ASTDeserializationListener.h
Go to the documentation of this file.
1//===- ASTDeserializationListener.h - Decl/Type PCH Read Events -*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the ASTDeserializationListener class, which is notified
10// by the ASTReader whenever a type or declaration is deserialized.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_CLANG_SERIALIZATION_ASTDESERIALIZATIONLISTENER_H
15#define LLVM_CLANG_SERIALIZATION_ASTDESERIALIZATIONLISTENER_H
16
19
20namespace clang {
21
22class Decl;
23class ASTReader;
24class QualType;
25class MacroDefinitionRecord;
26class MacroInfo;
27class Module;
28class SourceLocation;
29
31public:
33
34 /// The ASTReader was initialized.
35 virtual void ReaderInitialized(ASTReader *Reader) { }
36
37 /// An identifier was deserialized from the AST file.
39 IdentifierInfo *II) { }
40 /// A macro was read from the AST file.
42 /// A type was deserialized from the AST file. The ID here has the
43 /// qualifier bits already removed, and T is guaranteed to be locally
44 /// unqualified.
46 /// A decl was deserialized from the AST file.
47 virtual void DeclRead(serialization::DeclID ID, const Decl *D) { }
48 /// A selector was read from the AST file.
50 /// A macro definition was read from the AST file.
53 /// A module definition was read from the AST file.
55 /// A module import was read from the AST file.
57 SourceLocation ImportLoc) {}
58};
59}
60
61#endif
static char ID
Definition: Arena.cpp:183
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
virtual void MacroDefinitionRead(serialization::PreprocessedEntityID, MacroDefinitionRecord *MD)
A macro definition was read from the AST file.
virtual void TypeRead(serialization::TypeIdx Idx, QualType T)
A type was deserialized from the AST file.
virtual void MacroRead(serialization::MacroID ID, MacroInfo *MI)
A macro was read from the AST file.
virtual void IdentifierRead(serialization::IdentID ID, IdentifierInfo *II)
An identifier was deserialized from the AST file.
virtual void DeclRead(serialization::DeclID ID, const Decl *D)
A decl was deserialized from the AST file.
virtual void ModuleImportRead(serialization::SubmoduleID ID, SourceLocation ImportLoc)
A module import was read from the AST file.
virtual void SelectorRead(serialization::SelectorID iD, Selector Sel)
A selector was read from the AST file.
virtual void ReaderInitialized(ASTReader *Reader)
The ASTReader was initialized.
virtual void ModuleRead(serialization::SubmoduleID ID, Module *Mod)
A module definition was read from the AST file.
Reads an AST files chain containing the contents of a translation unit.
Definition: ASTReader.h:366
Decl - This represents one declaration (or definition), e.g.
Definition: DeclBase.h:85
One of these records is kept for each identifier that is lexed.
Record the location of a macro definition.
Encapsulates the data about a macro definition (e.g.
Definition: MacroInfo.h:39
Describes a module or submodule.
Definition: Module.h:105
A (possibly-)qualified type.
Definition: Type.h:738
Smart pointer class that efficiently represents Objective-C method names.
Encodes a location in the source.
A type index; the type ID with the qualifier bits removed.
Definition: ASTBitCodes.h:161
@ Decl
The l-value was an access to a declared entity or something equivalently strong, like the address of ...
uint32_t SubmoduleID
An ID number that refers to a submodule in a module file.
Definition: ASTBitCodes.h:244
uint32_t SelectorID
An ID number that refers to an ObjC selector in an AST file.
Definition: ASTBitCodes.h:226
uint32_t PreprocessedEntityID
An ID number that refers to an entity in the detailed preprocessing record.
Definition: ASTBitCodes.h:241
uint32_t IdentID
An ID number that refers to an identifier in an AST file.
Definition: ASTBitCodes.h:207
uint32_t DeclID
An ID number that refers to a declaration in an AST file.
Definition: ASTBitCodes.h:70
uint32_t MacroID
An ID number that refers to a macro in an AST file.
Definition: ASTBitCodes.h:213
The JSON file list parser is used to communicate input to InstallAPI.
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
const FunctionProtoType * T