clang-tools 24.0.0git
YAMLSerialization.cpp
Go to the documentation of this file.
1//===-- YAMLSerialization.cpp ------------------------------------*- 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// A YAML index file is a sequence of tagged entries.
10// Each entry either encodes a Symbol or the list of references to a symbol
11// (a "ref bundle").
12//
13//===----------------------------------------------------------------------===//
14
15#include "Headers.h"
16#include "index/Ref.h"
17#include "index/Relation.h"
18#include "index/Serialization.h"
19#include "index/Symbol.h"
21#include "index/SymbolOrigin.h"
22#include "clang/Tooling/CompilationDatabase.h"
23#include "llvm/ADT/StringRef.h"
24#include "llvm/Support/Allocator.h"
25#include "llvm/Support/StringSaver.h"
26#include "llvm/Support/YAMLTraits.h"
27#include "llvm/Support/raw_ostream.h"
28#include <cstdint>
29#include <optional>
30
31namespace {
32struct YIncludeHeaderWithReferences;
33}
34
36LLVM_YAML_IS_SEQUENCE_VECTOR(clang::clangd::Ref)
37LLVM_YAML_IS_SEQUENCE_VECTOR(YIncludeHeaderWithReferences)
38
39namespace {
40using RefBundle =
41 std::pair<clang::clangd::SymbolID, std::vector<clang::clangd::Ref>>;
42// This is a pale imitation of std::variant<Symbol, RefBundle, Relation>
43struct VariantEntry {
44 std::optional<clang::clangd::Symbol> Symbol;
45 std::optional<RefBundle> Refs;
46 std::optional<clang::clangd::Relation> Relation;
47 std::optional<clang::clangd::IncludeGraphNode> Source;
48 std::optional<clang::tooling::CompileCommand> Cmd;
49};
50// A class helps YAML to serialize the 32-bit encoded position (Line&Column),
51// as YAMLIO can't directly map bitfields.
52struct YPosition {
53 uint32_t Line;
54 uint32_t Column;
55};
56// A class helps YAML to serialize the IncludeHeaderWithReferences as YAMLIO
57// can't directly map bitfields.
58struct YIncludeHeaderWithReferences {
59 llvm::StringRef IncludeHeader;
60 uint32_t References;
62
63 YIncludeHeaderWithReferences() = default;
64
65 YIncludeHeaderWithReferences(
66 llvm::StringRef IncludeHeader, uint32_t References,
68 : IncludeHeader(IncludeHeader), References(References),
69 SupportedDirectives(SupportedDirectives) {}
70};
71
72// avoid ODR violation of specialization for non-owned CompileCommand
73struct CompileCommandYAML : clang::tooling::CompileCommand {};
74
75} // namespace
76namespace llvm {
77namespace yaml {
78
81using clang::clangd::IncludeGraphNode;
82using clang::clangd::Ref;
84using clang::clangd::Relation;
86using clang::clangd::Symbol;
87using clang::clangd::SymbolID;
88using clang::clangd::SymbolLocation;
89using clang::index::SymbolInfo;
90using clang::index::SymbolKind;
91using clang::index::SymbolLanguage;
92using clang::tooling::CompileCommand;
93
94// Helper to (de)serialize the SymbolID. We serialize it as a hex string.
97 NormalizedSymbolID(IO &, const SymbolID &ID) {
98 llvm::raw_string_ostream OS(HexString);
99 OS << ID;
100 }
101
103 auto ID = SymbolID::fromStr(HexString);
104 if (!ID) {
105 I.setError(llvm::toString(ID.takeError()));
106 return SymbolID();
107 }
108 return *ID;
109 }
110
111 std::string HexString;
112};
113
117 Flag = static_cast<uint8_t>(F);
118 }
119
121 return static_cast<Symbol::SymbolFlag>(Flag);
122 }
123
124 uint8_t Flag = 0;
125};
126
127template <> struct MappingTraits<YPosition> {
128 static void mapping(IO &IO, YPosition &Value) {
129 IO.mapRequired("Line", Value.Line);
130 IO.mapRequired("Column", Value.Column);
131 }
132};
133
137 NormalizedPosition(IO &, const Position &Pos) {
138 P.Line = Pos.line();
139 P.Column = Pos.column();
140 }
141
143 Position Pos;
144 Pos.setLine(P.Line);
145 Pos.setColumn(P.Column);
146 return Pos;
147 }
148 YPosition P;
149};
150
153 NormalizedFileURI(IO &, const char *FileURI) { URI = FileURI; }
154
155 const char *denormalize(IO &IO) {
156 assert(IO.getContext() &&
157 "Expecting an UniqueStringSaver to allocate data");
158 return static_cast<llvm::UniqueStringSaver *>(IO.getContext())
159 ->save(URI)
160 .data();
161 }
162
163 std::string URI;
164};
165
166template <> struct MappingTraits<SymbolLocation> {
167 static void mapping(IO &IO, SymbolLocation &Value) {
168 MappingNormalization<NormalizedFileURI, const char *> NFile(IO,
169 Value.FileURI);
170 IO.mapRequired("FileURI", NFile->URI);
171 MappingNormalization<NormalizedPosition, SymbolLocation::Position> NStart(
172 IO, Value.Start);
173 IO.mapRequired("Start", NStart->P);
174 MappingNormalization<NormalizedPosition, SymbolLocation::Position> NEnd(
175 IO, Value.End);
176 IO.mapRequired("End", NEnd->P);
177 }
178};
179
180template <> struct MappingTraits<SymbolInfo> {
181 static void mapping(IO &IO, SymbolInfo &SymInfo) {
182 // FIXME: expose other fields?
183 IO.mapRequired("Kind", SymInfo.Kind);
184 IO.mapRequired("Lang", SymInfo.Lang);
185 }
186};
187
188template <> struct ScalarBitSetTraits<clang::clangd::Symbol::IncludeDirective> {
190 IO.bitSetCase(Value, "Include", clang::clangd::Symbol::Include);
191 IO.bitSetCase(Value, "Import", clang::clangd::Symbol::Import);
192 }
193};
194
195template <> struct MappingTraits<YIncludeHeaderWithReferences> {
196 static void mapping(IO &IO, YIncludeHeaderWithReferences &Inc) {
197 IO.mapRequired("Header", Inc.IncludeHeader);
198 IO.mapRequired("References", Inc.References);
199 IO.mapOptional("Directives", Inc.SupportedDirectives,
201 }
202};
203
208 IO &, const llvm::SmallVector<IncludeHeader, 1> &IncludeHeaders) {
209 for (auto &I : IncludeHeaders) {
210 Headers.emplace_back(I.IncludeHeader, I.References,
211 I.supportedDirectives());
212 }
213 }
214
215 llvm::SmallVector<IncludeHeader, 1> denormalize(IO &) {
216 llvm::SmallVector<IncludeHeader, 1> Result;
217 for (auto &H : Headers)
218 Result.emplace_back(H.IncludeHeader, H.References, H.SupportedDirectives);
219 return Result;
220 }
221 llvm::SmallVector<YIncludeHeaderWithReferences, 1> Headers;
222};
223
224template <> struct MappingTraits<Symbol> {
225 static void mapping(IO &IO, Symbol &Sym) {
226 MappingNormalization<NormalizedSymbolID, SymbolID> NSymbolID(IO, Sym.ID);
227 MappingNormalization<NormalizedSymbolFlag, Symbol::SymbolFlag> NSymbolFlag(
228 IO, Sym.Flags);
229 MappingNormalization<
231 llvm::SmallVector<Symbol::IncludeHeaderWithReferences, 1>>
232 NIncludeHeaders(IO, Sym.IncludeHeaders);
233 IO.mapRequired("ID", NSymbolID->HexString);
234 IO.mapRequired("Name", Sym.Name);
235 IO.mapRequired("Scope", Sym.Scope);
236 IO.mapRequired("SymInfo", Sym.SymInfo);
237 IO.mapOptional("CanonicalDeclaration", Sym.CanonicalDeclaration,
239 IO.mapOptional("Definition", Sym.Definition, SymbolLocation());
240 IO.mapOptional("References", Sym.References, 0u);
241 IO.mapOptional("Flags", NSymbolFlag->Flag);
242 IO.mapOptional("Signature", Sym.Signature);
243 IO.mapOptional("TemplateSpecializationArgs",
245 IO.mapOptional("CompletionSnippetSuffix", Sym.CompletionSnippetSuffix);
246 IO.mapOptional("Documentation", Sym.Documentation);
247 IO.mapOptional("ReturnType", Sym.ReturnType);
248 IO.mapOptional("Type", Sym.Type);
249 IO.mapOptional("Tags", Sym.Tags);
250 IO.mapOptional("IncludeHeaders", NIncludeHeaders->Headers);
251 }
252};
253
254template <> struct ScalarEnumerationTraits<SymbolLanguage> {
255 static void enumeration(IO &IO, SymbolLanguage &Value) {
256 IO.enumCase(Value, "C", SymbolLanguage::C);
257 IO.enumCase(Value, "Cpp", SymbolLanguage::CXX);
258 IO.enumCase(Value, "ObjC", SymbolLanguage::ObjC);
259 IO.enumCase(Value, "Swift", SymbolLanguage::Swift);
260 }
261};
262
263template <> struct ScalarEnumerationTraits<SymbolKind> {
264 static void enumeration(IO &IO, SymbolKind &Value) {
265#define DEFINE_ENUM(name) IO.enumCase(Value, #name, SymbolKind::name)
266
267 DEFINE_ENUM(Unknown);
268 DEFINE_ENUM(Function);
269 DEFINE_ENUM(Module);
270 DEFINE_ENUM(Namespace);
271 DEFINE_ENUM(NamespaceAlias);
272 DEFINE_ENUM(Macro);
273 DEFINE_ENUM(Enum);
274 DEFINE_ENUM(Struct);
275 DEFINE_ENUM(Class);
276 DEFINE_ENUM(Protocol);
277 DEFINE_ENUM(Extension);
278 DEFINE_ENUM(Union);
279 DEFINE_ENUM(TypeAlias);
280 DEFINE_ENUM(Function);
281 DEFINE_ENUM(Variable);
282 DEFINE_ENUM(Field);
283 DEFINE_ENUM(EnumConstant);
284 DEFINE_ENUM(InstanceMethod);
285 DEFINE_ENUM(ClassMethod);
286 DEFINE_ENUM(StaticMethod);
287 DEFINE_ENUM(InstanceProperty);
288 DEFINE_ENUM(ClassProperty);
289 DEFINE_ENUM(StaticProperty);
290 DEFINE_ENUM(Constructor);
291 DEFINE_ENUM(Destructor);
292 DEFINE_ENUM(ConversionFunction);
293 DEFINE_ENUM(Parameter);
294 DEFINE_ENUM(Using);
295
296#undef DEFINE_ENUM
297 }
298};
299
300template <> struct MappingTraits<RefBundle> {
301 static void mapping(IO &IO, RefBundle &Refs) {
302 MappingNormalization<NormalizedSymbolID, SymbolID> NSymbolID(IO,
303 Refs.first);
304 IO.mapRequired("ID", NSymbolID->HexString);
305 IO.mapRequired("References", Refs.second);
306 }
307};
308
311 NormalizedRefKind(IO &, RefKind O) { Kind = static_cast<uint8_t>(O); }
312
313 RefKind denormalize(IO &) { return static_cast<RefKind>(Kind); }
314
315 uint8_t Kind = 0;
316};
317
318template <> struct MappingTraits<Ref> {
319 static void mapping(IO &IO, Ref &R) {
320 MappingNormalization<NormalizedRefKind, RefKind> NKind(IO, R.Kind);
321 IO.mapRequired("Kind", NKind->Kind);
322 IO.mapRequired("Location", R.Location);
323 IO.mapOptional("Container", R.Container);
324 }
325};
326
330 Kind = static_cast<uint8_t>(R);
331 }
332
333 RelationKind denormalize(IO &IO) { return static_cast<RelationKind>(Kind); }
334
335 uint8_t Kind = 0;
336};
337
338template <> struct MappingTraits<SymbolID> {
339 static void mapping(IO &IO, SymbolID &ID) {
340 MappingNormalization<NormalizedSymbolID, SymbolID> NSymbolID(IO, ID);
341 IO.mapRequired("ID", NSymbolID->HexString);
342 }
343};
344
345template <> struct MappingTraits<Relation> {
346 static void mapping(IO &IO, Relation &Relation) {
347 MappingNormalization<NormalizedSymbolRole, RelationKind> NRole(
348 IO, Relation.Predicate);
349 IO.mapRequired("Subject", Relation.Subject);
350 IO.mapRequired("Predicate", NRole->Kind);
351 IO.mapRequired("Object", Relation.Object);
352 }
353};
354
358 Flag = static_cast<uint8_t>(O);
359 }
360
364
365 uint8_t Flag = 0;
366};
367
370 NormalizedFileDigest(IO &, const FileDigest &Digest) {
371 HexString = llvm::toHex(Digest);
372 }
373
375 FileDigest Digest;
376 if (HexString.size() == Digest.size() * 2 &&
377 llvm::all_of(HexString, llvm::isHexDigit)) {
378 memcpy(Digest.data(), llvm::fromHex(HexString).data(), Digest.size());
379 } else {
380 I.setError(std::string("Bad hex file digest: ") + HexString);
381 }
382 return Digest;
383 }
384
385 std::string HexString;
386};
387
388template <> struct MappingTraits<IncludeGraphNode> {
389 static void mapping(IO &IO, IncludeGraphNode &Node) {
390 IO.mapRequired("URI", Node.URI);
391 MappingNormalization<NormalizedSourceFlag, IncludeGraphNode::SourceFlag>
392 NSourceFlag(IO, Node.Flags);
393 IO.mapRequired("Flags", NSourceFlag->Flag);
394 MappingNormalization<NormalizedFileDigest, FileDigest> NDigest(IO,
395 Node.Digest);
396 IO.mapRequired("Digest", NDigest->HexString);
397 IO.mapRequired("DirectIncludes", Node.DirectIncludes);
398 }
399};
400
401template <> struct MappingTraits<CompileCommandYAML> {
402 static void mapping(IO &IO, CompileCommandYAML &Cmd) {
403 IO.mapRequired("Directory", Cmd.Directory);
404 IO.mapRequired("CommandLine", Cmd.CommandLine);
405 }
406};
407
408template <> struct MappingTraits<VariantEntry> {
409 static void mapping(IO &IO, VariantEntry &Variant) {
410 if (IO.mapTag("!Symbol", Variant.Symbol.has_value())) {
411 if (!IO.outputting())
412 Variant.Symbol.emplace();
413 MappingTraits<Symbol>::mapping(IO, *Variant.Symbol);
414 } else if (IO.mapTag("!Refs", Variant.Refs.has_value())) {
415 if (!IO.outputting())
416 Variant.Refs.emplace();
417 MappingTraits<RefBundle>::mapping(IO, *Variant.Refs);
418 } else if (IO.mapTag("!Relations", Variant.Relation.has_value())) {
419 if (!IO.outputting())
420 Variant.Relation.emplace();
421 MappingTraits<Relation>::mapping(IO, *Variant.Relation);
422 } else if (IO.mapTag("!Source", Variant.Source.has_value())) {
423 if (!IO.outputting())
424 Variant.Source.emplace();
425 MappingTraits<IncludeGraphNode>::mapping(IO, *Variant.Source);
426 } else if (IO.mapTag("!Cmd", Variant.Cmd.has_value())) {
427 if (!IO.outputting())
428 Variant.Cmd.emplace();
429 MappingTraits<CompileCommandYAML>::mapping(
430 IO, static_cast<CompileCommandYAML &>(*Variant.Cmd));
431 }
432 }
433};
434
435} // namespace yaml
436} // namespace llvm
437
438namespace clang {
439namespace clangd {
440
441void writeYAML(const IndexFileOut &O, llvm::raw_ostream &OS) {
442 llvm::yaml::Output Yout(OS);
443 for (const auto &Sym : *O.Symbols) {
444 VariantEntry Entry;
445 Entry.Symbol = Sym;
446 Yout << Entry;
447 }
448 if (O.Refs)
449 for (auto &Sym : *O.Refs) {
450 VariantEntry Entry;
451 Entry.Refs = Sym;
452 Yout << Entry;
453 }
454 if (O.Relations)
455 for (auto &R : *O.Relations) {
456 VariantEntry Entry;
457 Entry.Relation = R;
458 Yout << Entry;
459 }
460 if (O.Sources) {
461 for (const auto &Source : *O.Sources) {
462 VariantEntry Entry;
463 Entry.Source = Source.getValue();
464 Yout << Entry;
465 }
466 }
467 if (O.Cmd) {
468 VariantEntry Entry;
469 Entry.Cmd = *O.Cmd;
470 Yout << Entry;
471 }
472}
473
474llvm::Expected<IndexFileIn> readYAML(llvm::StringRef Data,
475 SymbolOrigin Origin) {
477 RefSlab::Builder Refs;
478 RelationSlab::Builder Relations;
479 llvm::BumpPtrAllocator
480 Arena; // store the underlying data of Position::FileURI.
481 llvm::UniqueStringSaver Strings(Arena);
482 llvm::yaml::Input Yin(Data, &Strings);
483 IncludeGraph Sources;
484 std::optional<tooling::CompileCommand> Cmd;
485 while (Yin.setCurrentDocument()) {
486 llvm::yaml::EmptyContext Ctx;
487 VariantEntry Variant;
488 yamlize(Yin, Variant, true, Ctx);
489 if (Yin.error())
490 return llvm::errorCodeToError(Yin.error());
491
492 if (Variant.Symbol) {
493 Variant.Symbol->Origin = Origin;
494 Symbols.insert(*Variant.Symbol);
495 }
496 if (Variant.Refs)
497 for (const auto &Ref : Variant.Refs->second)
498 Refs.insert(Variant.Refs->first, Ref);
499 if (Variant.Relation)
500 Relations.insert(*Variant.Relation);
501 if (Variant.Source) {
502 auto &IGN = *Variant.Source;
503 auto Entry = Sources.try_emplace(IGN.URI).first;
504 Entry->getValue() = std::move(IGN);
505 // Fixup refs to refer to map keys which will live on
506 Entry->getValue().URI = Entry->getKey();
507 for (auto &Include : Entry->getValue().DirectIncludes)
508 Include = Sources.try_emplace(Include).first->getKey();
509 }
510 if (Variant.Cmd)
511 Cmd = *Variant.Cmd;
512 Yin.nextDocument();
513 }
514
515 IndexFileIn Result;
516 Result.Symbols.emplace(std::move(Symbols).build());
517 Result.Refs.emplace(std::move(Refs).build());
518 Result.Relations.emplace(std::move(Relations).build());
519 if (Sources.size())
520 Result.Sources = std::move(Sources);
521 Result.Cmd = std::move(Cmd);
522 return std::move(Result);
523}
524
525std::string toYAML(const Symbol &S) {
526 std::string Buf;
527 {
528 llvm::raw_string_ostream OS(Buf);
529 llvm::yaml::Output Yout(OS);
530 Symbol Sym = S; // copy: Yout<< requires mutability.
531 Yout << Sym;
532 }
533 return Buf;
534}
535
536std::string toYAML(const std::pair<SymbolID, llvm::ArrayRef<Ref>> &Data) {
537 RefBundle Refs = {Data.first, Data.second};
538 std::string Buf;
539 {
540 llvm::raw_string_ostream OS(Buf);
541 llvm::yaml::Output Yout(OS);
542 Yout << Refs;
543 }
544 return Buf;
545}
546
547std::string toYAML(const Relation &R) {
548 std::string Buf;
549 {
550 llvm::raw_string_ostream OS(Buf);
551 llvm::yaml::Output Yout(OS);
552 Relation Rel = R; // copy: Yout<< requires mutability.
553 Yout << Rel;
554 }
555 return Buf;
556}
557
558std::string toYAML(const Ref &R) {
559 std::string Buf;
560 {
561 llvm::raw_string_ostream OS(Buf);
562 llvm::yaml::Output Yout(OS);
563 Ref Reference = R; // copy: Yout<< requires mutability.
564 Yout << Reference;
565 }
566 return Buf;
567}
568
569} // namespace clangd
570} // namespace clang
clang::find_all_symbols::SymbolInfo SymbolInfo
clang::find_all_symbols::SymbolInfo::SymbolKind SymbolKind
#define DEFINE_ENUM(name)
RefSlab::Builder is a mutable container that can 'freeze' to RefSlab.
Definition Ref.h:135
RelationSlab::Builder is a mutable container that can 'freeze' to RelationSlab.
Definition Relation.h:75
SymbolSlab::Builder is a mutable container that can 'freeze' to SymbolSlab.
Definition Symbol.h:238
static llvm::Expected< SymbolID > fromStr(llvm::StringRef)
Definition SymbolID.cpp:37
FIXME: Skip testing on windows temporarily due to the different escaping code mode.
Definition AST.cpp:44
llvm::Expected< IndexFileIn > readYAML(llvm::StringRef, SymbolOrigin Origin)
llvm::StringMap< IncludeGraphNode > IncludeGraph
Definition Headers.h:103
std::string toYAML(const Symbol &)
RefKind
Describes the kind of a cross-reference.
Definition Ref.h:28
void writeYAML(const IndexFileOut &, llvm::raw_ostream &)
std::array< uint8_t, 8 > FileDigest
Definition SourceCode.h:42
===– Representation.cpp - ClangDoc Representation --------—*- C++ -*-===//
Some operations such as code completion produce a set of candidates.
Definition Generators.h:150
std::vector< llvm::StringRef > DirectIncludes
Definition Headers.h:97
std::optional< RelationSlab > Relations
std::optional< SymbolSlab > Symbols
std::optional< RefSlab > Refs
std::optional< tooling::CompileCommand > Cmd
std::optional< IncludeGraph > Sources
const IncludeGraph * Sources
const RelationSlab * Relations
const tooling::CompileCommand * Cmd
const SymbolSlab * Symbols
Represents a symbol occurrence in the source file.
Definition Ref.h:88
RefKind Kind
Definition Ref.h:91
SymbolID Container
The ID of the symbol whose definition contains this reference.
Definition Ref.h:95
SymbolLocation Location
The source location where the symbol is named.
Definition Ref.h:90
Represents a relation between two symbols.
Definition Relation.h:32
RelationKind Predicate
Definition Relation.h:34
Ensure we have enough bits to represent all SymbolTag values.
Definition Symbol.h:49
SymbolFlag Flags
Definition Symbol.h:165
@ Include
#include "header.h"
Definition Symbol.h:107
@ Import
#import "header.h"
Definition Symbol.h:109
SymbolLocation Definition
The location of the symbol's definition, if one was found.
Definition Symbol.h:62
llvm::StringRef Type
Raw representation of the OpaqueType of the symbol, used for scoring purposes.
Definition Symbol.h:102
llvm::StringRef Documentation
Documentation including comment for the symbol declaration.
Definition Symbol.h:93
SymbolTags Tags
Symbol tags for LSP protocol (Deprecated, Static, Virtual, Abstract, Final, ReadOnly,...
Definition Symbol.h:78
index::SymbolInfo SymInfo
The symbol information, like symbol kind.
Definition Symbol.h:53
llvm::SmallVector< IncludeHeaderWithReferences, 1 > IncludeHeaders
One Symbol can potentially be included via different headers.
Definition Symbol.h:147
llvm::StringRef Name
The unqualified name of the symbol, e.g. "bar" (for ns::bar).
Definition Symbol.h:57
llvm::StringRef Scope
The containing namespace. e.g. "" (global), "ns::" (top-level namespace).
Definition Symbol.h:59
llvm::StringRef Signature
A brief description of the symbol that can be appended in the completion candidate list.
Definition Symbol.h:82
unsigned References
The number of translation units that reference this symbol from their main file.
Definition Symbol.h:74
llvm::StringRef ReturnType
Type when this symbol is used in an expression.
Definition Symbol.h:97
llvm::StringRef TemplateSpecializationArgs
Argument list in human-readable format, will be displayed to help disambiguate between different spec...
Definition Symbol.h:86
SymbolLocation CanonicalDeclaration
The location of the preferred declaration of the symbol.
Definition Symbol.h:71
llvm::StringRef CompletionSnippetSuffix
What to insert when completing this symbol, after the symbol name.
Definition Symbol.h:91
SymbolID ID
The ID of the symbol.
Definition Symbol.h:51
static void mapping(IO &IO, CompileCommandYAML &Cmd)
static void mapping(IO &IO, IncludeGraphNode &Node)
static void mapping(IO &IO, RefBundle &Refs)
static void mapping(IO &IO, Ref &R)
static void mapping(IO &IO, Relation &Relation)
static void mapping(IO &IO, SymbolID &ID)
static void mapping(IO &IO, SymbolInfo &SymInfo)
static void mapping(IO &IO, SymbolLocation &Value)
static void mapping(IO &IO, Symbol &Sym)
static void mapping(IO &IO, VariantEntry &Variant)
static void mapping(IO &IO, YIncludeHeaderWithReferences &Inc)
static void mapping(IO &IO, YPosition &Value)
NormalizedFileDigest(IO &, const FileDigest &Digest)
NormalizedFileURI(IO &, const char *FileURI)
NormalizedIncludeHeaders(IO &, const llvm::SmallVector< IncludeHeader, 1 > &IncludeHeaders)
llvm::SmallVector< IncludeHeader, 1 > denormalize(IO &)
llvm::SmallVector< YIncludeHeaderWithReferences, 1 > Headers
clang::clangd::Symbol::IncludeHeaderWithReferences IncludeHeader
NormalizedPosition(IO &, const Position &Pos)
clang::clangd::SymbolLocation::Position Position
IncludeGraphNode::SourceFlag denormalize(IO &)
NormalizedSourceFlag(IO &, IncludeGraphNode::SourceFlag O)
NormalizedSymbolFlag(IO &, Symbol::SymbolFlag F)
Symbol::SymbolFlag denormalize(IO &)
NormalizedSymbolID(IO &, const SymbolID &ID)
NormalizedSymbolRole(IO &IO, RelationKind R)
static void bitset(IO &IO, clang::clangd::Symbol::IncludeDirective &Value)
static void enumeration(IO &IO, SymbolKind &Value)
static void enumeration(IO &IO, SymbolLanguage &Value)