//===--- CollectMacros.h -----------------------------------------*- C++-*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTMACROS_H #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTMACROS_H #include "Protocol.h" #include "SourceCode.h" #include "index/SymbolID.h" #include "clang/Basic/SourceLocation.h" #include "clang/Lex/PPCallbacks.h" #include "clang/Lex/Preprocessor.h" #include "llvm/ADT/DenseMap.h" #include namespace clang { namespace clangd { struct MacroOccurrence { // Instead of storing SourceLocation, we have to store the token range because // SourceManager from preamble is not available when we build the AST. Range Rng; bool IsDefinition; // True if the occurence is used in a conditional directive, e.g. #ifdef MACRO bool InConditionalDirective; }; struct MainFileMacros { llvm::StringSet<> Names; llvm::DenseMap> MacroRefs; // Somtimes it is not possible to compute the SymbolID for the Macro, e.g. a // reference to an undefined macro. Store them separately, e.g. for semantic // highlighting. std::vector UnknownMacros; // Ranges skipped by the preprocessor due to being inactive. std::vector SkippedRanges; }; /// Collects macro references (e.g. definitions, expansions) in the main file. /// It is used to: /// - collect macros in the preamble section of the main file (in Preamble.cpp) /// - collect macros after the preamble of the main file (in ParsedAST.cpp) class CollectMainFileMacros : public PPCallbacks { public: explicit CollectMainFileMacros(const Preprocessor &PP, MainFileMacros &Out) : SM(PP.getSourceManager()), PP(PP), Out(Out) {} void FileChanged(SourceLocation Loc, FileChangeReason, SrcMgr::CharacteristicKind, FileID) override; void MacroDefined(const Token &MacroName, const MacroDirective *MD) override; void MacroExpands(const Token &MacroName, const MacroDefinition &MD, SourceRange Range, const MacroArgs *Args) override; void MacroUndefined(const clang::Token &MacroName, const clang::MacroDefinition &MD, const clang::MacroDirective *Undef) override; void Ifdef(SourceLocation Loc, const Token &MacroName, const MacroDefinition &MD) override; void Ifndef(SourceLocation Loc, const Token &MacroName, const MacroDefinition &MD) override; using PPCallbacks::Elifdef; using PPCallbacks::Elifndef; void Elifdef(SourceLocation Loc, const Token &MacroNameTok, const MacroDefinition &MD) override; void Elifndef(SourceLocation Loc, const Token &MacroNameTok, const MacroDefinition &MD) override; void Defined(const Token &MacroName, const MacroDefinition &MD, SourceRange Range) override; void SourceRangeSkipped(SourceRange R, SourceLocation EndifLoc) override; private: void add(const Token &MacroNameTok, const MacroInfo *MI, bool IsDefinition = false, bool InConditionalDirective = false); const SourceManager &SM; const Preprocessor &PP; bool InMainFile = true; MainFileMacros &Out; }; /// Represents a `#pragma mark` in the main file. /// /// There can be at most one pragma mark per line. struct PragmaMark { Range Rng; std::string Trivia; }; /// Collect all pragma marks from the main file. std::unique_ptr collectPragmaMarksCallback(const SourceManager &, std::vector &Out); } // namespace clangd } // namespace clang #endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTMACROS_H