[index] Improve macro indexing support
authorBen Langmuir <blangmuir@apple.com>
Tue, 23 Mar 2021 22:22:58 +0000 (15:22 -0700)
committerBen Langmuir <blangmuir@apple.com>
Tue, 6 Apr 2021 16:12:14 +0000 (09:12 -0700)
commit93c87fc06eca8d8a65ff6c0bdd9f2671227224ac
treed05c24963349ef2d82ad719f49b2af693b0aef34
parent9c5ebf0358960adf28931569a0c801b56c8008d9
[index] Improve macro indexing support

The major change here is to index macro occurrences in more places than
before, specifically

* In non-expansion references such as `#if`, `#ifdef`, etc.
* When the macro is a reference to a builtin macro such as __LINE__.
* When using the preprocessor state instead of callbacks, we now include
  all definition locations and undefinitions instead of just the latest
  one (which may also have had the wrong location previously).
* When indexing an existing module file (.pcm), we now include module
  macros, and we no longer report unrelated preprocessor macros during
  indexing the module, which could have caused duplication.

Additionally, we now correctly obey the system symbol filter for macros,
so by default in system headers only definition/undefinition occurrences
are reported, but it can be configured to report references as well if
desired.

Extends FileIndexRecord to support occurrences of macros. Since the
design of this type is to keep a single list of entities organized by
source location, we incorporate macros into the existing DeclOccurrence
struct.

Differential Revision: https://reviews.llvm.org/D99758
15 files changed:
clang/include/clang/Index/DeclOccurrence.h
clang/include/clang/Index/IndexingOptions.h
clang/lib/Index/FileIndexRecord.cpp
clang/lib/Index/FileIndexRecord.h
clang/lib/Index/IndexingAction.cpp
clang/lib/Index/IndexingContext.cpp
clang/lib/Index/IndexingContext.h
clang/lib/Index/USRGeneration.cpp
clang/test/Index/Core/Inputs/module/ModA.h
clang/test/Index/Core/Inputs/module/SubModA.h
clang/test/Index/Core/Inputs/sys/system-head.h
clang/test/Index/Core/index-macros.c
clang/test/Index/Core/index-with-module.m
clang/tools/c-index-test/core_main.cpp
clang/unittests/Index/IndexTests.cpp