clang-tools
9.0.0
|
Collect declarations (symbols) from an AST. More...
#include <SymbolCollector.h>
Classes | |
struct | Options |
Public Member Functions | |
SymbolCollector (Options Opts) | |
void | initialize (ASTContext &Ctx) override |
void | setPreprocessor (std::shared_ptr< Preprocessor > PP) override |
bool | handleDeclOccurence (const Decl *D, index::SymbolRoleSet Roles, ArrayRef< index::SymbolRelation > Relations, SourceLocation Loc, index::IndexDataConsumer::ASTNodeInfo ASTNode) override |
bool | handleMacroOccurence (const IdentifierInfo *Name, const MacroInfo *MI, index::SymbolRoleSet Roles, SourceLocation Loc) override |
SymbolSlab | takeSymbols () |
RefSlab | takeRefs () |
RelationSlab | takeRelations () |
bool | shouldIndexFile (FileID FID) |
Returns true if we are interested in references and declarations from FID . More... | |
void | finish () override |
Static Public Member Functions | |
static bool | shouldCollectSymbol (const NamedDecl &ND, const ASTContext &ASTCtx, const Options &Opts, bool IsMainFileSymbol) |
Returns true is ND should be collected. More... | |
Collect declarations (symbols) from an AST.
It collects most declarations except:
References to main-file symbols are not collected.
See also shouldCollectSymbol(...).
Clients (e.g. clangd) can use SymbolCollector together with index::indexTopLevelDecls to retrieve all symbols when the source file is changed.
Definition at line 45 of file SymbolCollector.h.
clang::clangd::SymbolCollector::SymbolCollector | ( | Options | Opts | ) |
Definition at line 191 of file SymbolCollector.cpp.
|
override |
Definition at line 461 of file SymbolCollector.cpp.
Referenced by takeRelations().
|
override |
|
override |
Definition at line 346 of file SymbolCollector.cpp.
Referenced by setPreprocessor().
|
override |
Definition at line 193 of file SymbolCollector.cpp.
References Ctx.
|
inlineoverride |
Definition at line 97 of file SymbolCollector.h.
References D, handleDeclOccurence(), handleMacroOccurence(), Loc, and Name.
|
static |
Returns true is ND
should be collected.
Definition at line 200 of file SymbolCollector.cpp.
References clang::clangd::SymbolCollector::Options::CollectMainFileSymbols, clang::clangd::Enum, and clang::clangd::Namespace.
Referenced by clang::clangd::enhanceFromIndex().
bool clang::clangd::SymbolCollector::shouldIndexFile | ( | FileID | FID | ) |
Returns true if we are interested in references and declarations from FID
.
If this function return false, bodies of functions inside those files will be skipped to decrease indexing time.
Definition at line 733 of file SymbolCollector.cpp.
Referenced by takeRelations().
|
inline |
Definition at line 112 of file SymbolCollector.h.
|
inline |
Definition at line 113 of file SymbolCollector.h.
References finish(), and shouldIndexFile().
|
inline |
Definition at line 111 of file SymbolCollector.h.