blob: eecea0455be2702fd837a84cb0f8dc28f878ff47 [file] [log] [blame]
Haojian Wu7e3c74b2019-09-24 11:14:06 +00001//===--- CollectMacros.h -----------------------------------------*- 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#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTEDMACROS_H
10#define LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTEDMACROS_H
11
Utkarsh Saxena2054ed02019-11-07 12:14:38 +010012#include "AST.h"
Haojian Wu7e3c74b2019-09-24 11:14:06 +000013#include "Protocol.h"
14#include "SourceCode.h"
Utkarsh Saxena2054ed02019-11-07 12:14:38 +010015#include "index/SymbolID.h"
Haojian Wu7e3c74b2019-09-24 11:14:06 +000016#include "clang/Basic/IdentifierTable.h"
17#include "clang/Lex/PPCallbacks.h"
Utkarsh Saxena2054ed02019-11-07 12:14:38 +010018#include "llvm/ADT/DenseMap.h"
Haojian Wu7e3c74b2019-09-24 11:14:06 +000019#include <string>
20
21namespace clang {
22namespace clangd {
23
24struct MainFileMacros {
25 llvm::StringSet<> Names;
26 // Instead of storing SourceLocation, we have to store the token range because
27 // SourceManager from preamble is not available when we build the AST.
Utkarsh Saxena2054ed02019-11-07 12:14:38 +010028 llvm::DenseMap<SymbolID, std::vector<Range>> MacroRefs;
29 // Somtimes it is not possible to compute the SymbolID for the Macro, e.g. a
30 // reference to an undefined macro. Store them separately, e.g. for semantic
31 // highlighting.
32 std::vector<Range> UnknownMacros;
Nathan Ridgeb2e6c2b2019-09-24 18:17:55 -040033 // Ranges skipped by the preprocessor due to being inactive.
34 std::vector<Range> SkippedRanges;
Haojian Wu7e3c74b2019-09-24 11:14:06 +000035};
36
Haojian Wu2fa81d22019-10-07 10:10:31 +000037/// Collects macro references (e.g. definitions, expansions) in the main file.
38/// It is used to:
Haojian Wu7e3c74b2019-09-24 11:14:06 +000039/// - collect macros in the preamble section of the main file (in Preamble.cpp)
40/// - collect macros after the preamble of the main file (in ParsedAST.cpp)
41class CollectMainFileMacros : public PPCallbacks {
42public:
Kadir Cetinkaya37550392020-03-01 16:05:12 +010043 explicit CollectMainFileMacros(const SourceManager &SM, MainFileMacros &Out)
44 : SM(SM), Out(Out) {}
Haojian Wu7e3c74b2019-09-24 11:14:06 +000045
46 void FileChanged(SourceLocation Loc, FileChangeReason,
47 SrcMgr::CharacteristicKind, FileID) override {
48 InMainFile = isInsideMainFile(Loc, SM);
49 }
50
51 void MacroDefined(const Token &MacroName, const MacroDirective *MD) override {
52 add(MacroName, MD->getMacroInfo());
53 }
54
55 void MacroExpands(const Token &MacroName, const MacroDefinition &MD,
56 SourceRange Range, const MacroArgs *Args) override {
57 add(MacroName, MD.getMacroInfo());
58 }
59
Haojian Wu2fa81d22019-10-07 10:10:31 +000060 void MacroUndefined(const clang::Token &MacroName,
61 const clang::MacroDefinition &MD,
62 const clang::MacroDirective *Undef) override {
63 add(MacroName, MD.getMacroInfo());
64 }
65
66 void Ifdef(SourceLocation Loc, const Token &MacroName,
67 const MacroDefinition &MD) override {
68 add(MacroName, MD.getMacroInfo());
69 }
70
71 void Ifndef(SourceLocation Loc, const Token &MacroName,
72 const MacroDefinition &MD) override {
73 add(MacroName, MD.getMacroInfo());
74 }
75
76 void Defined(const Token &MacroName, const MacroDefinition &MD,
77 SourceRange Range) override {
78 add(MacroName, MD.getMacroInfo());
79 }
80
Nathan Ridgeb2e6c2b2019-09-24 18:17:55 -040081 void SourceRangeSkipped(SourceRange R, SourceLocation EndifLoc) override {
82 if (!InMainFile)
83 return;
84 Position Begin = sourceLocToPosition(SM, R.getBegin());
85 Position End = sourceLocToPosition(SM, R.getEnd());
86 Out.SkippedRanges.push_back(Range{Begin, End});
87 }
88
Haojian Wu7e3c74b2019-09-24 11:14:06 +000089private:
Kadir Cetinkaya37550392020-03-01 16:05:12 +010090 void add(const Token &MacroNameTok, const MacroInfo *MI);
Haojian Wu7e3c74b2019-09-24 11:14:06 +000091 const SourceManager &SM;
Haojian Wu7e3c74b2019-09-24 11:14:06 +000092 bool InMainFile = true;
93 MainFileMacros &Out;
94};
95
96} // namespace clangd
97} // namespace clang
98
99#endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_COLLECTEDMACROS_H