• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===--- SymbolOrigin.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_INDEX_SYMBOL_ORIGIN_H
10 #define LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_SYMBOL_ORIGIN_H
11 
12 #include "llvm/Support/raw_ostream.h"
13 #include <cstdint>
14 
15 namespace clang {
16 namespace clangd {
17 
18 // Describes the source of information about a symbol.
19 // Mainly useful for debugging, e.g. understanding code completion results.
20 // This is a bitfield as information can be combined from several sources.
21 enum class SymbolOrigin : uint8_t {
22   Unknown = 0,
23   AST = 1 << 0,        // Directly from the AST (indexes should not set this).
24   Dynamic = 1 << 1,    // From the dynamic index of opened files.
25   Static = 1 << 2,     // From the static, externally-built index.
26   Merge = 1 << 3,      // A non-trivial index merge was performed.
27   Identifier = 1 << 4, // Raw identifiers in file.
28   Remote = 1 << 5,     // Remote index.
29   // Remaining bits reserved for index implementations.
30 };
31 
32 inline SymbolOrigin operator|(SymbolOrigin A, SymbolOrigin B) {
33   return static_cast<SymbolOrigin>(static_cast<uint8_t>(A) |
34                                    static_cast<uint8_t>(B));
35 }
36 inline SymbolOrigin &operator|=(SymbolOrigin &A, SymbolOrigin B) {
37   return A = A | B;
38 }
39 inline SymbolOrigin operator&(SymbolOrigin A, SymbolOrigin B) {
40   return static_cast<SymbolOrigin>(static_cast<uint8_t>(A) &
41                                    static_cast<uint8_t>(B));
42 }
43 
44 llvm::raw_ostream &operator<<(llvm::raw_ostream &, SymbolOrigin);
45 
46 } // namespace clangd
47 } // namespace clang
48 
49 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANGD_INDEX_SYMBOL_ORIGIN_H
50