1 //===- ASTWriter.cpp - AST File Writer ------------------------------------===//
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 //  This file defines the ASTWriter class, which writes AST files.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "clang/Serialization/ASTWriter.h"
14 #include "ASTCommon.h"
15 #include "ASTReaderInternals.h"
16 #include "MultiOnDiskHashTable.h"
17 #include "clang/AST/ASTContext.h"
18 #include "clang/AST/ASTUnresolvedSet.h"
19 #include "clang/AST/Attr.h"
20 #include "clang/AST/Decl.h"
21 #include "clang/AST/DeclBase.h"
22 #include "clang/AST/DeclCXX.h"
23 #include "clang/AST/DeclContextInternals.h"
24 #include "clang/AST/DeclFriend.h"
25 #include "clang/AST/DeclObjC.h"
26 #include "clang/AST/DeclTemplate.h"
27 #include "clang/AST/DeclarationName.h"
28 #include "clang/AST/Expr.h"
29 #include "clang/AST/ExprCXX.h"
30 #include "clang/AST/LambdaCapture.h"
31 #include "clang/AST/NestedNameSpecifier.h"
32 #include "clang/AST/RawCommentList.h"
33 #include "clang/AST/TemplateName.h"
34 #include "clang/AST/Type.h"
35 #include "clang/AST/TypeLocVisitor.h"
36 #include "clang/Basic/Diagnostic.h"
37 #include "clang/Basic/DiagnosticOptions.h"
38 #include "clang/Basic/FileManager.h"
39 #include "clang/Basic/FileSystemOptions.h"
40 #include "clang/Basic/IdentifierTable.h"
41 #include "clang/Basic/LLVM.h"
42 #include "clang/Basic/Lambda.h"
43 #include "clang/Basic/LangOptions.h"
44 #include "clang/Basic/Module.h"
45 #include "clang/Basic/ObjCRuntime.h"
46 #include "clang/Basic/OpenCLOptions.h"
47 #include "clang/Basic/SourceLocation.h"
48 #include "clang/Basic/SourceManager.h"
49 #include "clang/Basic/SourceManagerInternals.h"
50 #include "clang/Basic/Specifiers.h"
51 #include "clang/Basic/TargetInfo.h"
52 #include "clang/Basic/TargetOptions.h"
53 #include "clang/Basic/Version.h"
54 #include "clang/Lex/HeaderSearch.h"
55 #include "clang/Lex/HeaderSearchOptions.h"
56 #include "clang/Lex/MacroInfo.h"
57 #include "clang/Lex/ModuleMap.h"
58 #include "clang/Lex/PreprocessingRecord.h"
59 #include "clang/Lex/Preprocessor.h"
60 #include "clang/Lex/PreprocessorOptions.h"
61 #include "clang/Lex/Token.h"
62 #include "clang/Sema/IdentifierResolver.h"
63 #include "clang/Sema/ObjCMethodList.h"
64 #include "clang/Sema/Sema.h"
65 #include "clang/Sema/Weak.h"
66 #include "clang/Serialization/ASTReader.h"
67 #include "clang/Serialization/InMemoryModuleCache.h"
68 #include "clang/Serialization/Module.h"
69 #include "clang/Serialization/ModuleFileExtension.h"
70 #include "clang/Serialization/SerializationDiagnostic.h"
71 #include "llvm/ADT/APFloat.h"
72 #include "llvm/ADT/APInt.h"
73 #include "llvm/ADT/APSInt.h"
74 #include "llvm/ADT/ArrayRef.h"
75 #include "llvm/ADT/DenseMap.h"
76 #include "llvm/ADT/Hashing.h"
77 #include "llvm/ADT/Optional.h"
78 #include "llvm/ADT/PointerIntPair.h"
79 #include "llvm/ADT/STLExtras.h"
80 #include "llvm/ADT/ScopeExit.h"
81 #include "llvm/ADT/SmallSet.h"
82 #include "llvm/ADT/SmallString.h"
83 #include "llvm/ADT/SmallVector.h"
84 #include "llvm/ADT/StringMap.h"
85 #include "llvm/ADT/StringRef.h"
86 #include "llvm/Bitstream/BitCodes.h"
87 #include "llvm/Bitstream/BitstreamWriter.h"
88 #include "llvm/Support/Casting.h"
89 #include "llvm/Support/Compression.h"
90 #include "llvm/Support/DJB.h"
91 #include "llvm/Support/Endian.h"
92 #include "llvm/Support/EndianStream.h"
93 #include "llvm/Support/Error.h"
94 #include "llvm/Support/ErrorHandling.h"
95 #include "llvm/Support/MemoryBuffer.h"
96 #include "llvm/Support/OnDiskHashTable.h"
97 #include "llvm/Support/Path.h"
98 #include "llvm/Support/SHA1.h"
99 #include "llvm/Support/VersionTuple.h"
100 #include "llvm/Support/raw_ostream.h"
101 #include <algorithm>
102 #include <cassert>
103 #include <cstdint>
104 #include <cstdlib>
105 #include <cstring>
106 #include <ctime>
107 #include <deque>
108 #include <limits>
109 #include <memory>
110 #include <queue>
111 #include <tuple>
112 #include <utility>
113 #include <vector>
114 
115 using namespace clang;
116 using namespace clang::serialization;
117 
118 template <typename T, typename Allocator>
119 static StringRef bytes(const std::vector<T, Allocator> &v) {
120   if (v.empty()) return StringRef();
121   return StringRef(reinterpret_cast<const char*>(&v[0]),
122                          sizeof(T) * v.size());
123 }
124 
125 template <typename T>
126 static StringRef bytes(const SmallVectorImpl<T> &v) {
127   return StringRef(reinterpret_cast<const char*>(v.data()),
128                          sizeof(T) * v.size());
129 }
130 
131 //===----------------------------------------------------------------------===//
132 // Type serialization
133 //===----------------------------------------------------------------------===//
134 
135 namespace clang {
136 
137   class ASTTypeWriter {
138     ASTWriter &Writer;
139     ASTRecordWriter Record;
140 
141     /// Type code that corresponds to the record generated.
142     TypeCode Code = static_cast<TypeCode>(0);
143 
144     /// Abbreviation to use for the record, if any.
145     unsigned AbbrevToUse = 0;
146 
147   public:
148     ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
149       : Writer(Writer), Record(Writer, Record) {}
150 
151     uint64_t Emit() {
152       return Record.Emit(Code, AbbrevToUse);
153     }
154 
155     void Visit(QualType T) {
156       if (T.hasLocalNonFastQualifiers()) {
157         Qualifiers Qs = T.getLocalQualifiers();
158         Record.AddTypeRef(T.getLocalUnqualifiedType());
159         Record.push_back(Qs.getAsOpaqueValue());
160         Code = TYPE_EXT_QUAL;
161         AbbrevToUse = Writer.TypeExtQualAbbrev;
162       } else {
163         switch (T->getTypeClass()) {
164           // For all of the concrete, non-dependent types, call the
165           // appropriate visitor function.
166 #define TYPE(Class, Base) \
167         case Type::Class: Visit##Class##Type(cast<Class##Type>(T)); break;
168 #define ABSTRACT_TYPE(Class, Base)
169 #include "clang/AST/TypeNodes.def"
170         }
171       }
172     }
173 
174     void VisitArrayType(const ArrayType *T);
175     void VisitFunctionType(const FunctionType *T);
176     void VisitTagType(const TagType *T);
177 
178 #define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T);
179 #define ABSTRACT_TYPE(Class, Base)
180 #include "clang/AST/TypeNodes.def"
181   };
182 
183 } // namespace clang
184 
185 void ASTTypeWriter::VisitBuiltinType(const BuiltinType *T) {
186   llvm_unreachable("Built-in types are never serialized");
187 }
188 
189 void ASTTypeWriter::VisitComplexType(const ComplexType *T) {
190   Record.AddTypeRef(T->getElementType());
191   Code = TYPE_COMPLEX;
192 }
193 
194 void ASTTypeWriter::VisitPointerType(const PointerType *T) {
195   Record.AddTypeRef(T->getPointeeType());
196   Code = TYPE_POINTER;
197 }
198 
199 void ASTTypeWriter::VisitDecayedType(const DecayedType *T) {
200   Record.AddTypeRef(T->getOriginalType());
201   Code = TYPE_DECAYED;
202 }
203 
204 void ASTTypeWriter::VisitAdjustedType(const AdjustedType *T) {
205   Record.AddTypeRef(T->getOriginalType());
206   Record.AddTypeRef(T->getAdjustedType());
207   Code = TYPE_ADJUSTED;
208 }
209 
210 void ASTTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
211   Record.AddTypeRef(T->getPointeeType());
212   Code = TYPE_BLOCK_POINTER;
213 }
214 
215 void ASTTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
216   Record.AddTypeRef(T->getPointeeTypeAsWritten());
217   Record.push_back(T->isSpelledAsLValue());
218   Code = TYPE_LVALUE_REFERENCE;
219 }
220 
221 void ASTTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
222   Record.AddTypeRef(T->getPointeeTypeAsWritten());
223   Code = TYPE_RVALUE_REFERENCE;
224 }
225 
226 void ASTTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
227   Record.AddTypeRef(T->getPointeeType());
228   Record.AddTypeRef(QualType(T->getClass(), 0));
229   Code = TYPE_MEMBER_POINTER;
230 }
231 
232 void ASTTypeWriter::VisitArrayType(const ArrayType *T) {
233   Record.AddTypeRef(T->getElementType());
234   Record.push_back(T->getSizeModifier()); // FIXME: stable values
235   Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values
236 }
237 
238 void ASTTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
239   VisitArrayType(T);
240   Record.AddAPInt(T->getSize());
241   Code = TYPE_CONSTANT_ARRAY;
242 }
243 
244 void ASTTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
245   VisitArrayType(T);
246   Code = TYPE_INCOMPLETE_ARRAY;
247 }
248 
249 void ASTTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
250   VisitArrayType(T);
251   Record.AddSourceLocation(T->getLBracketLoc());
252   Record.AddSourceLocation(T->getRBracketLoc());
253   Record.AddStmt(T->getSizeExpr());
254   Code = TYPE_VARIABLE_ARRAY;
255 }
256 
257 void ASTTypeWriter::VisitVectorType(const VectorType *T) {
258   Record.AddTypeRef(T->getElementType());
259   Record.push_back(T->getNumElements());
260   Record.push_back(T->getVectorKind());
261   Code = TYPE_VECTOR;
262 }
263 
264 void ASTTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
265   VisitVectorType(T);
266   Code = TYPE_EXT_VECTOR;
267 }
268 
269 void ASTTypeWriter::VisitFunctionType(const FunctionType *T) {
270   Record.AddTypeRef(T->getReturnType());
271   FunctionType::ExtInfo C = T->getExtInfo();
272   Record.push_back(C.getNoReturn());
273   Record.push_back(C.getHasRegParm());
274   Record.push_back(C.getRegParm());
275   // FIXME: need to stabilize encoding of calling convention...
276   Record.push_back(C.getCC());
277   Record.push_back(C.getProducesResult());
278   Record.push_back(C.getNoCallerSavedRegs());
279   Record.push_back(C.getNoCfCheck());
280 
281   if (C.getHasRegParm() || C.getRegParm() || C.getProducesResult())
282     AbbrevToUse = 0;
283 }
284 
285 void ASTTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
286   VisitFunctionType(T);
287   Code = TYPE_FUNCTION_NO_PROTO;
288 }
289 
290 static void addExceptionSpec(const FunctionProtoType *T,
291                              ASTRecordWriter &Record) {
292   Record.push_back(T->getExceptionSpecType());
293   if (T->getExceptionSpecType() == EST_Dynamic) {
294     Record.push_back(T->getNumExceptions());
295     for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I)
296       Record.AddTypeRef(T->getExceptionType(I));
297   } else if (isComputedNoexcept(T->getExceptionSpecType())) {
298     Record.AddStmt(T->getNoexceptExpr());
299   } else if (T->getExceptionSpecType() == EST_Uninstantiated) {
300     Record.AddDeclRef(T->getExceptionSpecDecl());
301     Record.AddDeclRef(T->getExceptionSpecTemplate());
302   } else if (T->getExceptionSpecType() == EST_Unevaluated) {
303     Record.AddDeclRef(T->getExceptionSpecDecl());
304   }
305 }
306 
307 void ASTTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
308   VisitFunctionType(T);
309 
310   Record.push_back(T->isVariadic());
311   Record.push_back(T->hasTrailingReturn());
312   Record.push_back(T->getMethodQuals().getAsOpaqueValue());
313   Record.push_back(static_cast<unsigned>(T->getRefQualifier()));
314   addExceptionSpec(T, Record);
315 
316   Record.push_back(T->getNumParams());
317   for (unsigned I = 0, N = T->getNumParams(); I != N; ++I)
318     Record.AddTypeRef(T->getParamType(I));
319 
320   if (T->hasExtParameterInfos()) {
321     for (unsigned I = 0, N = T->getNumParams(); I != N; ++I)
322       Record.push_back(T->getExtParameterInfo(I).getOpaqueValue());
323   }
324 
325   if (T->isVariadic() || T->hasTrailingReturn() || T->getMethodQuals() ||
326       T->getRefQualifier() || T->getExceptionSpecType() != EST_None ||
327       T->hasExtParameterInfos())
328     AbbrevToUse = 0;
329 
330   Code = TYPE_FUNCTION_PROTO;
331 }
332 
333 void ASTTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
334   Record.AddDeclRef(T->getDecl());
335   Code = TYPE_UNRESOLVED_USING;
336 }
337 
338 void ASTTypeWriter::VisitTypedefType(const TypedefType *T) {
339   Record.AddDeclRef(T->getDecl());
340   assert(!T->isCanonicalUnqualified() && "Invalid typedef ?");
341   Record.AddTypeRef(T->getCanonicalTypeInternal());
342   Code = TYPE_TYPEDEF;
343 }
344 
345 void ASTTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
346   Record.AddStmt(T->getUnderlyingExpr());
347   Code = TYPE_TYPEOF_EXPR;
348 }
349 
350 void ASTTypeWriter::VisitTypeOfType(const TypeOfType *T) {
351   Record.AddTypeRef(T->getUnderlyingType());
352   Code = TYPE_TYPEOF;
353 }
354 
355 void ASTTypeWriter::VisitDecltypeType(const DecltypeType *T) {
356   Record.AddTypeRef(T->getUnderlyingType());
357   Record.AddStmt(T->getUnderlyingExpr());
358   Code = TYPE_DECLTYPE;
359 }
360 
361 void ASTTypeWriter::VisitUnaryTransformType(const UnaryTransformType *T) {
362   Record.AddTypeRef(T->getBaseType());
363   Record.AddTypeRef(T->getUnderlyingType());
364   Record.push_back(T->getUTTKind());
365   Code = TYPE_UNARY_TRANSFORM;
366 }
367 
368 void ASTTypeWriter::VisitAutoType(const AutoType *T) {
369   Record.AddTypeRef(T->getDeducedType());
370   Record.push_back((unsigned)T->getKeyword());
371   if (T->getDeducedType().isNull())
372     Record.push_back(T->containsUnexpandedParameterPack() ? 2 :
373                      T->isDependentType() ? 1 : 0);
374   Code = TYPE_AUTO;
375 }
376 
377 void ASTTypeWriter::VisitDeducedTemplateSpecializationType(
378     const DeducedTemplateSpecializationType *T) {
379   Record.AddTemplateName(T->getTemplateName());
380   Record.AddTypeRef(T->getDeducedType());
381   if (T->getDeducedType().isNull())
382     Record.push_back(T->isDependentType());
383   Code = TYPE_DEDUCED_TEMPLATE_SPECIALIZATION;
384 }
385 
386 void ASTTypeWriter::VisitTagType(const TagType *T) {
387   Record.push_back(T->isDependentType());
388   Record.AddDeclRef(T->getDecl()->getCanonicalDecl());
389   assert(!T->isBeingDefined() &&
390          "Cannot serialize in the middle of a type definition");
391 }
392 
393 void ASTTypeWriter::VisitRecordType(const RecordType *T) {
394   VisitTagType(T);
395   Code = TYPE_RECORD;
396 }
397 
398 void ASTTypeWriter::VisitEnumType(const EnumType *T) {
399   VisitTagType(T);
400   Code = TYPE_ENUM;
401 }
402 
403 void ASTTypeWriter::VisitAttributedType(const AttributedType *T) {
404   Record.AddTypeRef(T->getModifiedType());
405   Record.AddTypeRef(T->getEquivalentType());
406   Record.push_back(T->getAttrKind());
407   Code = TYPE_ATTRIBUTED;
408 }
409 
410 void
411 ASTTypeWriter::VisitSubstTemplateTypeParmType(
412                                         const SubstTemplateTypeParmType *T) {
413   Record.AddTypeRef(QualType(T->getReplacedParameter(), 0));
414   Record.AddTypeRef(T->getReplacementType());
415   Code = TYPE_SUBST_TEMPLATE_TYPE_PARM;
416 }
417 
418 void
419 ASTTypeWriter::VisitSubstTemplateTypeParmPackType(
420                                       const SubstTemplateTypeParmPackType *T) {
421   Record.AddTypeRef(QualType(T->getReplacedParameter(), 0));
422   Record.AddTemplateArgument(T->getArgumentPack());
423   Code = TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK;
424 }
425 
426 void
427 ASTTypeWriter::VisitTemplateSpecializationType(
428                                        const TemplateSpecializationType *T) {
429   Record.push_back(T->isDependentType());
430   Record.AddTemplateName(T->getTemplateName());
431   Record.push_back(T->getNumArgs());
432   for (const auto &ArgI : *T)
433     Record.AddTemplateArgument(ArgI);
434   Record.AddTypeRef(T->isTypeAlias() ? T->getAliasedType()
435                                      : T->isCanonicalUnqualified()
436                                            ? QualType()
437                                            : T->getCanonicalTypeInternal());
438   Code = TYPE_TEMPLATE_SPECIALIZATION;
439 }
440 
441 void
442 ASTTypeWriter::VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
443   VisitArrayType(T);
444   Record.AddStmt(T->getSizeExpr());
445   Record.AddSourceRange(T->getBracketsRange());
446   Code = TYPE_DEPENDENT_SIZED_ARRAY;
447 }
448 
449 void
450 ASTTypeWriter::VisitDependentSizedExtVectorType(
451                                         const DependentSizedExtVectorType *T) {
452   Record.AddTypeRef(T->getElementType());
453   Record.AddStmt(T->getSizeExpr());
454   Record.AddSourceLocation(T->getAttributeLoc());
455   Code = TYPE_DEPENDENT_SIZED_EXT_VECTOR;
456 }
457 
458 void ASTTypeWriter::VisitDependentVectorType(const DependentVectorType *T) {
459   Record.AddTypeRef(T->getElementType());
460   Record.AddStmt(const_cast<Expr*>(T->getSizeExpr()));
461   Record.AddSourceLocation(T->getAttributeLoc());
462   Record.push_back(T->getVectorKind());
463   Code = TYPE_DEPENDENT_SIZED_VECTOR;
464 }
465 
466 void
467 ASTTypeWriter::VisitDependentAddressSpaceType(
468     const DependentAddressSpaceType *T) {
469   Record.AddTypeRef(T->getPointeeType());
470   Record.AddStmt(T->getAddrSpaceExpr());
471   Record.AddSourceLocation(T->getAttributeLoc());
472   Code = TYPE_DEPENDENT_ADDRESS_SPACE;
473 }
474 
475 void
476 ASTTypeWriter::VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
477   Record.push_back(T->getDepth());
478   Record.push_back(T->getIndex());
479   Record.push_back(T->isParameterPack());
480   Record.AddDeclRef(T->getDecl());
481   Code = TYPE_TEMPLATE_TYPE_PARM;
482 }
483 
484 void
485 ASTTypeWriter::VisitDependentNameType(const DependentNameType *T) {
486   Record.push_back(T->getKeyword());
487   Record.AddNestedNameSpecifier(T->getQualifier());
488   Record.AddIdentifierRef(T->getIdentifier());
489   Record.AddTypeRef(
490       T->isCanonicalUnqualified() ? QualType() : T->getCanonicalTypeInternal());
491   Code = TYPE_DEPENDENT_NAME;
492 }
493 
494 void
495 ASTTypeWriter::VisitDependentTemplateSpecializationType(
496                                 const DependentTemplateSpecializationType *T) {
497   Record.push_back(T->getKeyword());
498   Record.AddNestedNameSpecifier(T->getQualifier());
499   Record.AddIdentifierRef(T->getIdentifier());
500   Record.push_back(T->getNumArgs());
501   for (const auto &I : *T)
502     Record.AddTemplateArgument(I);
503   Code = TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION;
504 }
505 
506 void ASTTypeWriter::VisitPackExpansionType(const PackExpansionType *T) {
507   Record.AddTypeRef(T->getPattern());
508   if (Optional<unsigned> NumExpansions = T->getNumExpansions())
509     Record.push_back(*NumExpansions + 1);
510   else
511     Record.push_back(0);
512   Code = TYPE_PACK_EXPANSION;
513 }
514 
515 void ASTTypeWriter::VisitParenType(const ParenType *T) {
516   Record.AddTypeRef(T->getInnerType());
517   Code = TYPE_PAREN;
518 }
519 
520 void ASTTypeWriter::VisitMacroQualifiedType(const MacroQualifiedType *T) {
521   Record.AddTypeRef(T->getUnderlyingType());
522   Record.AddIdentifierRef(T->getMacroIdentifier());
523   Code = TYPE_MACRO_QUALIFIED;
524 }
525 
526 void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) {
527   Record.push_back(T->getKeyword());
528   Record.AddNestedNameSpecifier(T->getQualifier());
529   Record.AddTypeRef(T->getNamedType());
530   Record.AddDeclRef(T->getOwnedTagDecl());
531   Code = TYPE_ELABORATED;
532 }
533 
534 void ASTTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) {
535   Record.AddDeclRef(T->getDecl()->getCanonicalDecl());
536   Record.AddTypeRef(T->getInjectedSpecializationType());
537   Code = TYPE_INJECTED_CLASS_NAME;
538 }
539 
540 void ASTTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
541   Record.AddDeclRef(T->getDecl()->getCanonicalDecl());
542   Code = TYPE_OBJC_INTERFACE;
543 }
544 
545 void ASTTypeWriter::VisitObjCTypeParamType(const ObjCTypeParamType *T) {
546   Record.AddDeclRef(T->getDecl());
547   Record.push_back(T->getNumProtocols());
548   for (const auto *I : T->quals())
549     Record.AddDeclRef(I);
550   Code = TYPE_OBJC_TYPE_PARAM;
551 }
552 
553 void ASTTypeWriter::VisitObjCObjectType(const ObjCObjectType *T) {
554   Record.AddTypeRef(T->getBaseType());
555   Record.push_back(T->getTypeArgsAsWritten().size());
556   for (auto TypeArg : T->getTypeArgsAsWritten())
557     Record.AddTypeRef(TypeArg);
558   Record.push_back(T->getNumProtocols());
559   for (const auto *I : T->quals())
560     Record.AddDeclRef(I);
561   Record.push_back(T->isKindOfTypeAsWritten());
562   Code = TYPE_OBJC_OBJECT;
563 }
564 
565 void
566 ASTTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
567   Record.AddTypeRef(T->getPointeeType());
568   Code = TYPE_OBJC_OBJECT_POINTER;
569 }
570 
571 void
572 ASTTypeWriter::VisitAtomicType(const AtomicType *T) {
573   Record.AddTypeRef(T->getValueType());
574   Code = TYPE_ATOMIC;
575 }
576 
577 void
578 ASTTypeWriter::VisitPipeType(const PipeType *T) {
579   Record.AddTypeRef(T->getElementType());
580   Record.push_back(T->isReadOnly());
581   Code = TYPE_PIPE;
582 }
583 
584 namespace {
585 
586 class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> {
587   ASTRecordWriter &Record;
588 
589 public:
590   TypeLocWriter(ASTRecordWriter &Record) : Record(Record) {}
591 
592 #define ABSTRACT_TYPELOC(CLASS, PARENT)
593 #define TYPELOC(CLASS, PARENT) \
594     void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
595 #include "clang/AST/TypeLocNodes.def"
596 
597   void VisitArrayTypeLoc(ArrayTypeLoc TyLoc);
598   void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc);
599 };
600 
601 } // namespace
602 
603 void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
604   // nothing to do
605 }
606 
607 void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
608   Record.AddSourceLocation(TL.getBuiltinLoc());
609   if (TL.needsExtraLocalData()) {
610     Record.push_back(TL.getWrittenTypeSpec());
611     Record.push_back(TL.getWrittenSignSpec());
612     Record.push_back(TL.getWrittenWidthSpec());
613     Record.push_back(TL.hasModeAttr());
614   }
615 }
616 
617 void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
618   Record.AddSourceLocation(TL.getNameLoc());
619 }
620 
621 void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
622   Record.AddSourceLocation(TL.getStarLoc());
623 }
624 
625 void TypeLocWriter::VisitDecayedTypeLoc(DecayedTypeLoc TL) {
626   // nothing to do
627 }
628 
629 void TypeLocWriter::VisitAdjustedTypeLoc(AdjustedTypeLoc TL) {
630   // nothing to do
631 }
632 
633 void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
634   Record.AddSourceLocation(TL.getCaretLoc());
635 }
636 
637 void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
638   Record.AddSourceLocation(TL.getAmpLoc());
639 }
640 
641 void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
642   Record.AddSourceLocation(TL.getAmpAmpLoc());
643 }
644 
645 void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
646   Record.AddSourceLocation(TL.getStarLoc());
647   Record.AddTypeSourceInfo(TL.getClassTInfo());
648 }
649 
650 void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) {
651   Record.AddSourceLocation(TL.getLBracketLoc());
652   Record.AddSourceLocation(TL.getRBracketLoc());
653   Record.push_back(TL.getSizeExpr() ? 1 : 0);
654   if (TL.getSizeExpr())
655     Record.AddStmt(TL.getSizeExpr());
656 }
657 
658 void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
659   VisitArrayTypeLoc(TL);
660 }
661 
662 void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
663   VisitArrayTypeLoc(TL);
664 }
665 
666 void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
667   VisitArrayTypeLoc(TL);
668 }
669 
670 void TypeLocWriter::VisitDependentSizedArrayTypeLoc(
671                                             DependentSizedArrayTypeLoc TL) {
672   VisitArrayTypeLoc(TL);
673 }
674 
675 void TypeLocWriter::VisitDependentAddressSpaceTypeLoc(
676     DependentAddressSpaceTypeLoc TL) {
677   Record.AddSourceLocation(TL.getAttrNameLoc());
678   SourceRange range = TL.getAttrOperandParensRange();
679   Record.AddSourceLocation(range.getBegin());
680   Record.AddSourceLocation(range.getEnd());
681   Record.AddStmt(TL.getAttrExprOperand());
682 }
683 
684 void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc(
685                                         DependentSizedExtVectorTypeLoc TL) {
686   Record.AddSourceLocation(TL.getNameLoc());
687 }
688 
689 void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) {
690   Record.AddSourceLocation(TL.getNameLoc());
691 }
692 
693 void TypeLocWriter::VisitDependentVectorTypeLoc(
694     DependentVectorTypeLoc TL) {
695   Record.AddSourceLocation(TL.getNameLoc());
696 }
697 
698 void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
699   Record.AddSourceLocation(TL.getNameLoc());
700 }
701 
702 void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
703   Record.AddSourceLocation(TL.getLocalRangeBegin());
704   Record.AddSourceLocation(TL.getLParenLoc());
705   Record.AddSourceLocation(TL.getRParenLoc());
706   Record.AddSourceRange(TL.getExceptionSpecRange());
707   Record.AddSourceLocation(TL.getLocalRangeEnd());
708   for (unsigned i = 0, e = TL.getNumParams(); i != e; ++i)
709     Record.AddDeclRef(TL.getParam(i));
710 }
711 
712 void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
713   VisitFunctionTypeLoc(TL);
714 }
715 
716 void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
717   VisitFunctionTypeLoc(TL);
718 }
719 
720 void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
721   Record.AddSourceLocation(TL.getNameLoc());
722 }
723 
724 void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
725   Record.AddSourceLocation(TL.getNameLoc());
726 }
727 
728 void TypeLocWriter::VisitObjCTypeParamTypeLoc(ObjCTypeParamTypeLoc TL) {
729   if (TL.getNumProtocols()) {
730     Record.AddSourceLocation(TL.getProtocolLAngleLoc());
731     Record.AddSourceLocation(TL.getProtocolRAngleLoc());
732   }
733   for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
734     Record.AddSourceLocation(TL.getProtocolLoc(i));
735 }
736 
737 void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
738   Record.AddSourceLocation(TL.getTypeofLoc());
739   Record.AddSourceLocation(TL.getLParenLoc());
740   Record.AddSourceLocation(TL.getRParenLoc());
741 }
742 
743 void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
744   Record.AddSourceLocation(TL.getTypeofLoc());
745   Record.AddSourceLocation(TL.getLParenLoc());
746   Record.AddSourceLocation(TL.getRParenLoc());
747   Record.AddTypeSourceInfo(TL.getUnderlyingTInfo());
748 }
749 
750 void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
751   Record.AddSourceLocation(TL.getNameLoc());
752 }
753 
754 void TypeLocWriter::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
755   Record.AddSourceLocation(TL.getKWLoc());
756   Record.AddSourceLocation(TL.getLParenLoc());
757   Record.AddSourceLocation(TL.getRParenLoc());
758   Record.AddTypeSourceInfo(TL.getUnderlyingTInfo());
759 }
760 
761 void TypeLocWriter::VisitAutoTypeLoc(AutoTypeLoc TL) {
762   Record.AddSourceLocation(TL.getNameLoc());
763 }
764 
765 void TypeLocWriter::VisitDeducedTemplateSpecializationTypeLoc(
766     DeducedTemplateSpecializationTypeLoc TL) {
767   Record.AddSourceLocation(TL.getTemplateNameLoc());
768 }
769 
770 void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) {
771   Record.AddSourceLocation(TL.getNameLoc());
772 }
773 
774 void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) {
775   Record.AddSourceLocation(TL.getNameLoc());
776 }
777 
778 void TypeLocWriter::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
779   Record.AddAttr(TL.getAttr());
780 }
781 
782 void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
783   Record.AddSourceLocation(TL.getNameLoc());
784 }
785 
786 void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc(
787                                             SubstTemplateTypeParmTypeLoc TL) {
788   Record.AddSourceLocation(TL.getNameLoc());
789 }
790 
791 void TypeLocWriter::VisitSubstTemplateTypeParmPackTypeLoc(
792                                           SubstTemplateTypeParmPackTypeLoc TL) {
793   Record.AddSourceLocation(TL.getNameLoc());
794 }
795 
796 void TypeLocWriter::VisitTemplateSpecializationTypeLoc(
797                                            TemplateSpecializationTypeLoc TL) {
798   Record.AddSourceLocation(TL.getTemplateKeywordLoc());
799   Record.AddSourceLocation(TL.getTemplateNameLoc());
800   Record.AddSourceLocation(TL.getLAngleLoc());
801   Record.AddSourceLocation(TL.getRAngleLoc());
802   for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
803     Record.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(),
804                                       TL.getArgLoc(i).getLocInfo());
805 }
806 
807 void TypeLocWriter::VisitParenTypeLoc(ParenTypeLoc TL) {
808   Record.AddSourceLocation(TL.getLParenLoc());
809   Record.AddSourceLocation(TL.getRParenLoc());
810 }
811 
812 void TypeLocWriter::VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc TL) {
813   Record.AddSourceLocation(TL.getExpansionLoc());
814 }
815 
816 void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
817   Record.AddSourceLocation(TL.getElaboratedKeywordLoc());
818   Record.AddNestedNameSpecifierLoc(TL.getQualifierLoc());
819 }
820 
821 void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
822   Record.AddSourceLocation(TL.getNameLoc());
823 }
824 
825 void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
826   Record.AddSourceLocation(TL.getElaboratedKeywordLoc());
827   Record.AddNestedNameSpecifierLoc(TL.getQualifierLoc());
828   Record.AddSourceLocation(TL.getNameLoc());
829 }
830 
831 void TypeLocWriter::VisitDependentTemplateSpecializationTypeLoc(
832        DependentTemplateSpecializationTypeLoc TL) {
833   Record.AddSourceLocation(TL.getElaboratedKeywordLoc());
834   Record.AddNestedNameSpecifierLoc(TL.getQualifierLoc());
835   Record.AddSourceLocation(TL.getTemplateKeywordLoc());
836   Record.AddSourceLocation(TL.getTemplateNameLoc());
837   Record.AddSourceLocation(TL.getLAngleLoc());
838   Record.AddSourceLocation(TL.getRAngleLoc());
839   for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
840     Record.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(),
841                                       TL.getArgLoc(I).getLocInfo());
842 }
843 
844 void TypeLocWriter::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
845   Record.AddSourceLocation(TL.getEllipsisLoc());
846 }
847 
848 void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
849   Record.AddSourceLocation(TL.getNameLoc());
850 }
851 
852 void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
853   Record.push_back(TL.hasBaseTypeAsWritten());
854   Record.AddSourceLocation(TL.getTypeArgsLAngleLoc());
855   Record.AddSourceLocation(TL.getTypeArgsRAngleLoc());
856   for (unsigned i = 0, e = TL.getNumTypeArgs(); i != e; ++i)
857     Record.AddTypeSourceInfo(TL.getTypeArgTInfo(i));
858   Record.AddSourceLocation(TL.getProtocolLAngleLoc());
859   Record.AddSourceLocation(TL.getProtocolRAngleLoc());
860   for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
861     Record.AddSourceLocation(TL.getProtocolLoc(i));
862 }
863 
864 void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
865   Record.AddSourceLocation(TL.getStarLoc());
866 }
867 
868 void TypeLocWriter::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
869   Record.AddSourceLocation(TL.getKWLoc());
870   Record.AddSourceLocation(TL.getLParenLoc());
871   Record.AddSourceLocation(TL.getRParenLoc());
872 }
873 
874 void TypeLocWriter::VisitPipeTypeLoc(PipeTypeLoc TL) {
875   Record.AddSourceLocation(TL.getKWLoc());
876 }
877 
878 void ASTWriter::WriteTypeAbbrevs() {
879   using namespace llvm;
880 
881   std::shared_ptr<BitCodeAbbrev> Abv;
882 
883   // Abbreviation for TYPE_EXT_QUAL
884   Abv = std::make_shared<BitCodeAbbrev>();
885   Abv->Add(BitCodeAbbrevOp(serialization::TYPE_EXT_QUAL));
886   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));   // Type
887   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 3));   // Quals
888   TypeExtQualAbbrev = Stream.EmitAbbrev(std::move(Abv));
889 
890   // Abbreviation for TYPE_FUNCTION_PROTO
891   Abv = std::make_shared<BitCodeAbbrev>();
892   Abv->Add(BitCodeAbbrevOp(serialization::TYPE_FUNCTION_PROTO));
893   // FunctionType
894   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));   // ReturnType
895   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // NoReturn
896   Abv->Add(BitCodeAbbrevOp(0));                         // HasRegParm
897   Abv->Add(BitCodeAbbrevOp(0));                         // RegParm
898   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 4)); // CC
899   Abv->Add(BitCodeAbbrevOp(0));                         // ProducesResult
900   Abv->Add(BitCodeAbbrevOp(0));                         // NoCallerSavedRegs
901   Abv->Add(BitCodeAbbrevOp(0));                         // NoCfCheck
902   // FunctionProtoType
903   Abv->Add(BitCodeAbbrevOp(0));                         // IsVariadic
904   Abv->Add(BitCodeAbbrevOp(0));                         // HasTrailingReturn
905   Abv->Add(BitCodeAbbrevOp(0));                         // TypeQuals
906   Abv->Add(BitCodeAbbrevOp(0));                         // RefQualifier
907   Abv->Add(BitCodeAbbrevOp(EST_None));                  // ExceptionSpec
908   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));   // NumParams
909   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Array));
910   Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));   // Params
911   TypeFunctionProtoAbbrev = Stream.EmitAbbrev(std::move(Abv));
912 }
913 
914 //===----------------------------------------------------------------------===//
915 // ASTWriter Implementation
916 //===----------------------------------------------------------------------===//
917 
918 static void EmitBlockID(unsigned ID, const char *Name,
919                         llvm::BitstreamWriter &Stream,
920                         ASTWriter::RecordDataImpl &Record) {
921   Record.clear();
922   Record.push_back(ID);
923   Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
924 
925   // Emit the block name if present.
926   if (!Name || Name[0] == 0)
927     return;
928   Record.clear();
929   while (*Name)
930     Record.push_back(*Name++);
931   Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
932 }
933 
934 static void EmitRecordID(unsigned ID, const char *Name,
935                          llvm::BitstreamWriter &Stream,
936                          ASTWriter::RecordDataImpl &Record) {
937   Record.clear();
938   Record.push_back(ID);
939   while (*Name)
940     Record.push_back(*Name++);
941   Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
942 }
943 
944 static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
945                           ASTWriter::RecordDataImpl &Record) {
946 #define RECORD(X) EmitRecordID(X, #X, Stream, Record)
947   RECORD(STMT_STOP);
948   RECORD(STMT_NULL_PTR);
949   RECORD(STMT_REF_PTR);
950   RECORD(STMT_NULL);
951   RECORD(STMT_COMPOUND);
952   RECORD(STMT_CASE);
953   RECORD(STMT_DEFAULT);
954   RECORD(STMT_LABEL);
955   RECORD(STMT_ATTRIBUTED);
956   RECORD(STMT_IF);
957   RECORD(STMT_SWITCH);
958   RECORD(STMT_WHILE);
959   RECORD(STMT_DO);
960   RECORD(STMT_FOR);
961   RECORD(STMT_GOTO);
962   RECORD(STMT_INDIRECT_GOTO);
963   RECORD(STMT_CONTINUE);
964   RECORD(STMT_BREAK);
965   RECORD(STMT_RETURN);
966   RECORD(STMT_DECL);
967   RECORD(STMT_GCCASM);
968   RECORD(STMT_MSASM);
969   RECORD(EXPR_PREDEFINED);
970   RECORD(EXPR_DECL_REF);
971   RECORD(EXPR_INTEGER_LITERAL);
972   RECORD(EXPR_FLOATING_LITERAL);
973   RECORD(EXPR_IMAGINARY_LITERAL);
974   RECORD(EXPR_STRING_LITERAL);
975   RECORD(EXPR_CHARACTER_LITERAL);
976   RECORD(EXPR_PAREN);
977   RECORD(EXPR_PAREN_LIST);
978   RECORD(EXPR_UNARY_OPERATOR);
979   RECORD(EXPR_SIZEOF_ALIGN_OF);
980   RECORD(EXPR_ARRAY_SUBSCRIPT);
981   RECORD(EXPR_CALL);
982   RECORD(EXPR_MEMBER);
983   RECORD(EXPR_BINARY_OPERATOR);
984   RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR);
985   RECORD(EXPR_CONDITIONAL_OPERATOR);
986   RECORD(EXPR_IMPLICIT_CAST);
987   RECORD(EXPR_CSTYLE_CAST);
988   RECORD(EXPR_COMPOUND_LITERAL);
989   RECORD(EXPR_EXT_VECTOR_ELEMENT);
990   RECORD(EXPR_INIT_LIST);
991   RECORD(EXPR_DESIGNATED_INIT);
992   RECORD(EXPR_DESIGNATED_INIT_UPDATE);
993   RECORD(EXPR_IMPLICIT_VALUE_INIT);
994   RECORD(EXPR_NO_INIT);
995   RECORD(EXPR_VA_ARG);
996   RECORD(EXPR_ADDR_LABEL);
997   RECORD(EXPR_STMT);
998   RECORD(EXPR_CHOOSE);
999   RECORD(EXPR_GNU_NULL);
1000   RECORD(EXPR_SHUFFLE_VECTOR);
1001   RECORD(EXPR_BLOCK);
1002   RECORD(EXPR_GENERIC_SELECTION);
1003   RECORD(EXPR_OBJC_STRING_LITERAL);
1004   RECORD(EXPR_OBJC_BOXED_EXPRESSION);
1005   RECORD(EXPR_OBJC_ARRAY_LITERAL);
1006   RECORD(EXPR_OBJC_DICTIONARY_LITERAL);
1007   RECORD(EXPR_OBJC_ENCODE);
1008   RECORD(EXPR_OBJC_SELECTOR_EXPR);
1009   RECORD(EXPR_OBJC_PROTOCOL_EXPR);
1010   RECORD(EXPR_OBJC_IVAR_REF_EXPR);
1011   RECORD(EXPR_OBJC_PROPERTY_REF_EXPR);
1012   RECORD(EXPR_OBJC_KVC_REF_EXPR);
1013   RECORD(EXPR_OBJC_MESSAGE_EXPR);
1014   RECORD(STMT_OBJC_FOR_COLLECTION);
1015   RECORD(STMT_OBJC_CATCH);
1016   RECORD(STMT_OBJC_FINALLY);
1017   RECORD(STMT_OBJC_AT_TRY);
1018   RECORD(STMT_OBJC_AT_SYNCHRONIZED);
1019   RECORD(STMT_OBJC_AT_THROW);
1020   RECORD(EXPR_OBJC_BOOL_LITERAL);
1021   RECORD(STMT_CXX_CATCH);
1022   RECORD(STMT_CXX_TRY);
1023   RECORD(STMT_CXX_FOR_RANGE);
1024   RECORD(EXPR_CXX_OPERATOR_CALL);
1025   RECORD(EXPR_CXX_MEMBER_CALL);
1026   RECORD(EXPR_CXX_CONSTRUCT);
1027   RECORD(EXPR_CXX_TEMPORARY_OBJECT);
1028   RECORD(EXPR_CXX_STATIC_CAST);
1029   RECORD(EXPR_CXX_DYNAMIC_CAST);
1030   RECORD(EXPR_CXX_REINTERPRET_CAST);
1031   RECORD(EXPR_CXX_CONST_CAST);
1032   RECORD(EXPR_CXX_FUNCTIONAL_CAST);
1033   RECORD(EXPR_USER_DEFINED_LITERAL);
1034   RECORD(EXPR_CXX_STD_INITIALIZER_LIST);
1035   RECORD(EXPR_CXX_BOOL_LITERAL);
1036   RECORD(EXPR_CXX_NULL_PTR_LITERAL);
1037   RECORD(EXPR_CXX_TYPEID_EXPR);
1038   RECORD(EXPR_CXX_TYPEID_TYPE);
1039   RECORD(EXPR_CXX_THIS);
1040   RECORD(EXPR_CXX_THROW);
1041   RECORD(EXPR_CXX_DEFAULT_ARG);
1042   RECORD(EXPR_CXX_DEFAULT_INIT);
1043   RECORD(EXPR_CXX_BIND_TEMPORARY);
1044   RECORD(EXPR_CXX_SCALAR_VALUE_INIT);
1045   RECORD(EXPR_CXX_NEW);
1046   RECORD(EXPR_CXX_DELETE);
1047   RECORD(EXPR_CXX_PSEUDO_DESTRUCTOR);
1048   RECORD(EXPR_EXPR_WITH_CLEANUPS);
1049   RECORD(EXPR_CXX_DEPENDENT_SCOPE_MEMBER);
1050   RECORD(EXPR_CXX_DEPENDENT_SCOPE_DECL_REF);
1051   RECORD(EXPR_CXX_UNRESOLVED_CONSTRUCT);
1052   RECORD(EXPR_CXX_UNRESOLVED_MEMBER);
1053   RECORD(EXPR_CXX_UNRESOLVED_LOOKUP);
1054   RECORD(EXPR_CXX_EXPRESSION_TRAIT);
1055   RECORD(EXPR_CXX_NOEXCEPT);
1056   RECORD(EXPR_OPAQUE_VALUE);
1057   RECORD(EXPR_BINARY_CONDITIONAL_OPERATOR);
1058   RECORD(EXPR_TYPE_TRAIT);
1059   RECORD(EXPR_ARRAY_TYPE_TRAIT);
1060   RECORD(EXPR_PACK_EXPANSION);
1061   RECORD(EXPR_SIZEOF_PACK);
1062   RECORD(EXPR_SUBST_NON_TYPE_TEMPLATE_PARM);
1063   RECORD(EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK);
1064   RECORD(EXPR_FUNCTION_PARM_PACK);
1065   RECORD(EXPR_MATERIALIZE_TEMPORARY);
1066   RECORD(EXPR_CUDA_KERNEL_CALL);
1067   RECORD(EXPR_CXX_UUIDOF_EXPR);
1068   RECORD(EXPR_CXX_UUIDOF_TYPE);
1069   RECORD(EXPR_LAMBDA);
1070 #undef RECORD
1071 }
1072 
1073 void ASTWriter::WriteBlockInfoBlock() {
1074   RecordData Record;
1075   Stream.EnterBlockInfoBlock();
1076 
1077 #define BLOCK(X) EmitBlockID(X ## _ID, #X, Stream, Record)
1078 #define RECORD(X) EmitRecordID(X, #X, Stream, Record)
1079 
1080   // Control Block.
1081   BLOCK(CONTROL_BLOCK);
1082   RECORD(METADATA);
1083   RECORD(MODULE_NAME);
1084   RECORD(MODULE_DIRECTORY);
1085   RECORD(MODULE_MAP_FILE);
1086   RECORD(IMPORTS);
1087   RECORD(ORIGINAL_FILE);
1088   RECORD(ORIGINAL_PCH_DIR);
1089   RECORD(ORIGINAL_FILE_ID);
1090   RECORD(INPUT_FILE_OFFSETS);
1091 
1092   BLOCK(OPTIONS_BLOCK);
1093   RECORD(LANGUAGE_OPTIONS);
1094   RECORD(TARGET_OPTIONS);
1095   RECORD(FILE_SYSTEM_OPTIONS);
1096   RECORD(HEADER_SEARCH_OPTIONS);
1097   RECORD(PREPROCESSOR_OPTIONS);
1098 
1099   BLOCK(INPUT_FILES_BLOCK);
1100   RECORD(INPUT_FILE);
1101 
1102   // AST Top-Level Block.
1103   BLOCK(AST_BLOCK);
1104   RECORD(TYPE_OFFSET);
1105   RECORD(DECL_OFFSET);
1106   RECORD(IDENTIFIER_OFFSET);
1107   RECORD(IDENTIFIER_TABLE);
1108   RECORD(EAGERLY_DESERIALIZED_DECLS);
1109   RECORD(MODULAR_CODEGEN_DECLS);
1110   RECORD(SPECIAL_TYPES);
1111   RECORD(STATISTICS);
1112   RECORD(TENTATIVE_DEFINITIONS);
1113   RECORD(SELECTOR_OFFSETS);
1114   RECORD(METHOD_POOL);
1115   RECORD(PP_COUNTER_VALUE);
1116   RECORD(SOURCE_LOCATION_OFFSETS);
1117   RECORD(SOURCE_LOCATION_PRELOADS);
1118   RECORD(EXT_VECTOR_DECLS);
1119   RECORD(UNUSED_FILESCOPED_DECLS);
1120   RECORD(PPD_ENTITIES_OFFSETS);
1121   RECORD(VTABLE_USES);
1122   RECORD(PPD_SKIPPED_RANGES);
1123   RECORD(REFERENCED_SELECTOR_POOL);
1124   RECORD(TU_UPDATE_LEXICAL);
1125   RECORD(SEMA_DECL_REFS);
1126   RECORD(WEAK_UNDECLARED_IDENTIFIERS);
1127   RECORD(PENDING_IMPLICIT_INSTANTIATIONS);
1128   RECORD(UPDATE_VISIBLE);
1129   RECORD(DECL_UPDATE_OFFSETS);
1130   RECORD(DECL_UPDATES);
1131   RECORD(CUDA_SPECIAL_DECL_REFS);
1132   RECORD(HEADER_SEARCH_TABLE);
1133   RECORD(FP_PRAGMA_OPTIONS);
1134   RECORD(OPENCL_EXTENSIONS);
1135   RECORD(OPENCL_EXTENSION_TYPES);
1136   RECORD(OPENCL_EXTENSION_DECLS);
1137   RECORD(DELEGATING_CTORS);
1138   RECORD(KNOWN_NAMESPACES);
1139   RECORD(MODULE_OFFSET_MAP);
1140   RECORD(SOURCE_MANAGER_LINE_TABLE);
1141   RECORD(OBJC_CATEGORIES_MAP);
1142   RECORD(FILE_SORTED_DECLS);
1143   RECORD(IMPORTED_MODULES);
1144   RECORD(OBJC_CATEGORIES);
1145   RECORD(MACRO_OFFSET);
1146   RECORD(INTERESTING_IDENTIFIERS);
1147   RECORD(UNDEFINED_BUT_USED);
1148   RECORD(LATE_PARSED_TEMPLATE);
1149   RECORD(OPTIMIZE_PRAGMA_OPTIONS);
1150   RECORD(MSSTRUCT_PRAGMA_OPTIONS);
1151   RECORD(POINTERS_TO_MEMBERS_PRAGMA_OPTIONS);
1152   RECORD(UNUSED_LOCAL_TYPEDEF_NAME_CANDIDATES);
1153   RECORD(DELETE_EXPRS_TO_ANALYZE);
1154   RECORD(CUDA_PRAGMA_FORCE_HOST_DEVICE_DEPTH);
1155   RECORD(PP_CONDITIONAL_STACK);
1156 
1157   // SourceManager Block.
1158   BLOCK(SOURCE_MANAGER_BLOCK);
1159   RECORD(SM_SLOC_FILE_ENTRY);
1160   RECORD(SM_SLOC_BUFFER_ENTRY);
1161   RECORD(SM_SLOC_BUFFER_BLOB);
1162   RECORD(SM_SLOC_BUFFER_BLOB_COMPRESSED);
1163   RECORD(SM_SLOC_EXPANSION_ENTRY);
1164 
1165   // Preprocessor Block.
1166   BLOCK(PREPROCESSOR_BLOCK);
1167   RECORD(PP_MACRO_DIRECTIVE_HISTORY);
1168   RECORD(PP_MACRO_FUNCTION_LIKE);
1169   RECORD(PP_MACRO_OBJECT_LIKE);
1170   RECORD(PP_MODULE_MACRO);
1171   RECORD(PP_TOKEN);
1172 
1173   // Submodule Block.
1174   BLOCK(SUBMODULE_BLOCK);
1175   RECORD(SUBMODULE_METADATA);
1176   RECORD(SUBMODULE_DEFINITION);
1177   RECORD(SUBMODULE_UMBRELLA_HEADER);
1178   RECORD(SUBMODULE_HEADER);
1179   RECORD(SUBMODULE_TOPHEADER);
1180   RECORD(SUBMODULE_UMBRELLA_DIR);
1181   RECORD(SUBMODULE_IMPORTS);
1182   RECORD(SUBMODULE_EXPORTS);
1183   RECORD(SUBMODULE_REQUIRES);
1184   RECORD(SUBMODULE_EXCLUDED_HEADER);
1185   RECORD(SUBMODULE_LINK_LIBRARY);
1186   RECORD(SUBMODULE_CONFIG_MACRO);
1187   RECORD(SUBMODULE_CONFLICT);
1188   RECORD(SUBMODULE_PRIVATE_HEADER);
1189   RECORD(SUBMODULE_TEXTUAL_HEADER);
1190   RECORD(SUBMODULE_PRIVATE_TEXTUAL_HEADER);
1191   RECORD(SUBMODULE_INITIALIZERS);
1192   RECORD(SUBMODULE_EXPORT_AS);
1193 
1194   // Comments Block.
1195   BLOCK(COMMENTS_BLOCK);
1196   RECORD(COMMENTS_RAW_COMMENT);
1197 
1198   // Decls and Types block.
1199   BLOCK(DECLTYPES_BLOCK);
1200   RECORD(TYPE_EXT_QUAL);
1201   RECORD(TYPE_COMPLEX);
1202   RECORD(TYPE_POINTER);
1203   RECORD(TYPE_BLOCK_POINTER);
1204   RECORD(TYPE_LVALUE_REFERENCE);
1205   RECORD(TYPE_RVALUE_REFERENCE);
1206   RECORD(TYPE_MEMBER_POINTER);
1207   RECORD(TYPE_CONSTANT_ARRAY);
1208   RECORD(TYPE_INCOMPLETE_ARRAY);
1209   RECORD(TYPE_VARIABLE_ARRAY);
1210   RECORD(TYPE_VECTOR);
1211   RECORD(TYPE_EXT_VECTOR);
1212   RECORD(TYPE_FUNCTION_NO_PROTO);
1213   RECORD(TYPE_FUNCTION_PROTO);
1214   RECORD(TYPE_TYPEDEF);
1215   RECORD(TYPE_TYPEOF_EXPR);
1216   RECORD(TYPE_TYPEOF);
1217   RECORD(TYPE_RECORD);
1218   RECORD(TYPE_ENUM);
1219   RECORD(TYPE_OBJC_INTERFACE);
1220   RECORD(TYPE_OBJC_OBJECT_POINTER);
1221   RECORD(TYPE_DECLTYPE);
1222   RECORD(TYPE_ELABORATED);
1223   RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM);
1224   RECORD(TYPE_UNRESOLVED_USING);
1225   RECORD(TYPE_INJECTED_CLASS_NAME);
1226   RECORD(TYPE_OBJC_OBJECT);
1227   RECORD(TYPE_TEMPLATE_TYPE_PARM);
1228   RECORD(TYPE_TEMPLATE_SPECIALIZATION);
1229   RECORD(TYPE_DEPENDENT_NAME);
1230   RECORD(TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION);
1231   RECORD(TYPE_DEPENDENT_SIZED_ARRAY);
1232   RECORD(TYPE_PAREN);
1233   RECORD(TYPE_MACRO_QUALIFIED);
1234   RECORD(TYPE_PACK_EXPANSION);
1235   RECORD(TYPE_ATTRIBUTED);
1236   RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK);
1237   RECORD(TYPE_AUTO);
1238   RECORD(TYPE_UNARY_TRANSFORM);
1239   RECORD(TYPE_ATOMIC);
1240   RECORD(TYPE_DECAYED);
1241   RECORD(TYPE_ADJUSTED);
1242   RECORD(TYPE_OBJC_TYPE_PARAM);
1243   RECORD(LOCAL_REDECLARATIONS);
1244   RECORD(DECL_TYPEDEF);
1245   RECORD(DECL_TYPEALIAS);
1246   RECORD(DECL_ENUM);
1247   RECORD(DECL_RECORD);
1248   RECORD(DECL_ENUM_CONSTANT);
1249   RECORD(DECL_FUNCTION);
1250   RECORD(DECL_OBJC_METHOD);
1251   RECORD(DECL_OBJC_INTERFACE);
1252   RECORD(DECL_OBJC_PROTOCOL);
1253   RECORD(DECL_OBJC_IVAR);
1254   RECORD(DECL_OBJC_AT_DEFS_FIELD);
1255   RECORD(DECL_OBJC_CATEGORY);
1256   RECORD(DECL_OBJC_CATEGORY_IMPL);
1257   RECORD(DECL_OBJC_IMPLEMENTATION);
1258   RECORD(DECL_OBJC_COMPATIBLE_ALIAS);
1259   RECORD(DECL_OBJC_PROPERTY);
1260   RECORD(DECL_OBJC_PROPERTY_IMPL);
1261   RECORD(DECL_FIELD);
1262   RECORD(DECL_MS_PROPERTY);
1263   RECORD(DECL_VAR);
1264   RECORD(DECL_IMPLICIT_PARAM);
1265   RECORD(DECL_PARM_VAR);
1266   RECORD(DECL_FILE_SCOPE_ASM);
1267   RECORD(DECL_BLOCK);
1268   RECORD(DECL_CONTEXT_LEXICAL);
1269   RECORD(DECL_CONTEXT_VISIBLE);
1270   RECORD(DECL_NAMESPACE);
1271   RECORD(DECL_NAMESPACE_ALIAS);
1272   RECORD(DECL_USING);
1273   RECORD(DECL_USING_SHADOW);
1274   RECORD(DECL_USING_DIRECTIVE);
1275   RECORD(DECL_UNRESOLVED_USING_VALUE);
1276   RECORD(DECL_UNRESOLVED_USING_TYPENAME);
1277   RECORD(DECL_LINKAGE_SPEC);
1278   RECORD(DECL_CXX_RECORD);
1279   RECORD(DECL_CXX_METHOD);
1280   RECORD(DECL_CXX_CONSTRUCTOR);
1281   RECORD(DECL_CXX_DESTRUCTOR);
1282   RECORD(DECL_CXX_CONVERSION);
1283   RECORD(DECL_ACCESS_SPEC);
1284   RECORD(DECL_FRIEND);
1285   RECORD(DECL_FRIEND_TEMPLATE);
1286   RECORD(DECL_CLASS_TEMPLATE);
1287   RECORD(DECL_CLASS_TEMPLATE_SPECIALIZATION);
1288   RECORD(DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION);
1289   RECORD(DECL_VAR_TEMPLATE);
1290   RECORD(DECL_VAR_TEMPLATE_SPECIALIZATION);
1291   RECORD(DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION);
1292   RECORD(DECL_FUNCTION_TEMPLATE);
1293   RECORD(DECL_TEMPLATE_TYPE_PARM);
1294   RECORD(DECL_NON_TYPE_TEMPLATE_PARM);
1295   RECORD(DECL_TEMPLATE_TEMPLATE_PARM);
1296   RECORD(DECL_CONCEPT);
1297   RECORD(DECL_TYPE_ALIAS_TEMPLATE);
1298   RECORD(DECL_STATIC_ASSERT);
1299   RECORD(DECL_CXX_BASE_SPECIFIERS);
1300   RECORD(DECL_CXX_CTOR_INITIALIZERS);
1301   RECORD(DECL_INDIRECTFIELD);
1302   RECORD(DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK);
1303   RECORD(DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK);
1304   RECORD(DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION);
1305   RECORD(DECL_IMPORT);
1306   RECORD(DECL_OMP_THREADPRIVATE);
1307   RECORD(DECL_EMPTY);
1308   RECORD(DECL_OBJC_TYPE_PARAM);
1309   RECORD(DECL_OMP_CAPTUREDEXPR);
1310   RECORD(DECL_PRAGMA_COMMENT);
1311   RECORD(DECL_PRAGMA_DETECT_MISMATCH);
1312   RECORD(DECL_OMP_DECLARE_REDUCTION);
1313   RECORD(DECL_OMP_ALLOCATE);
1314 
1315   // Statements and Exprs can occur in the Decls and Types block.
1316   AddStmtsExprs(Stream, Record);
1317 
1318   BLOCK(PREPROCESSOR_DETAIL_BLOCK);
1319   RECORD(PPD_MACRO_EXPANSION);
1320   RECORD(PPD_MACRO_DEFINITION);
1321   RECORD(PPD_INCLUSION_DIRECTIVE);
1322 
1323   // Decls and Types block.
1324   BLOCK(EXTENSION_BLOCK);
1325   RECORD(EXTENSION_METADATA);
1326 
1327   BLOCK(UNHASHED_CONTROL_BLOCK);
1328   RECORD(SIGNATURE);
1329   RECORD(DIAGNOSTIC_OPTIONS);
1330   RECORD(DIAG_PRAGMA_MAPPINGS);
1331 
1332 #undef RECORD
1333 #undef BLOCK
1334   Stream.ExitBlock();
1335 }
1336 
1337 /// Prepares a path for being written to an AST file by converting it
1338 /// to an absolute path and removing nested './'s.
1339 ///
1340 /// \return \c true if the path was changed.
1341 static bool cleanPathForOutput(FileManager &FileMgr,
1342                                SmallVectorImpl<char> &Path) {
1343   bool Changed = FileMgr.makeAbsolutePath(Path);
1344   return Changed | llvm::sys::path::remove_dots(Path);
1345 }
1346 
1347 /// Adjusts the given filename to only write out the portion of the
1348 /// filename that is not part of the system root directory.
1349 ///
1350 /// \param Filename the file name to adjust.
1351 ///
1352 /// \param BaseDir When non-NULL, the PCH file is a relocatable AST file and
1353 /// the returned filename will be adjusted by this root directory.
1354 ///
1355 /// \returns either the original filename (if it needs no adjustment) or the
1356 /// adjusted filename (which points into the @p Filename parameter).
1357 static const char *
1358 adjustFilenameForRelocatableAST(const char *Filename, StringRef BaseDir) {
1359   assert(Filename && "No file name to adjust?");
1360 
1361   if (BaseDir.empty())
1362     return Filename;
1363 
1364   // Verify that the filename and the system root have the same prefix.
1365   unsigned Pos = 0;
1366   for (; Filename[Pos] && Pos < BaseDir.size(); ++Pos)
1367     if (Filename[Pos] != BaseDir[Pos])
1368       return Filename; // Prefixes don't match.
1369 
1370   // We hit the end of the filename before we hit the end of the system root.
1371   if (!Filename[Pos])
1372     return Filename;
1373 
1374   // If there's not a path separator at the end of the base directory nor
1375   // immediately after it, then this isn't within the base directory.
1376   if (!llvm::sys::path::is_separator(Filename[Pos])) {
1377     if (!llvm::sys::path::is_separator(BaseDir.back()))
1378       return Filename;
1379   } else {
1380     // If the file name has a '/' at the current position, skip over the '/'.
1381     // We distinguish relative paths from absolute paths by the
1382     // absence of '/' at the beginning of relative paths.
1383     //
1384     // FIXME: This is wrong. We distinguish them by asking if the path is
1385     // absolute, which isn't the same thing. And there might be multiple '/'s
1386     // in a row. Use a better mechanism to indicate whether we have emitted an
1387     // absolute or relative path.
1388     ++Pos;
1389   }
1390 
1391   return Filename + Pos;
1392 }
1393 
1394 ASTFileSignature ASTWriter::createSignature(StringRef Bytes) {
1395   // Calculate the hash till start of UNHASHED_CONTROL_BLOCK.
1396   llvm::SHA1 Hasher;
1397   Hasher.update(ArrayRef<uint8_t>(Bytes.bytes_begin(), Bytes.size()));
1398   auto Hash = Hasher.result();
1399 
1400   // Convert to an array [5*i32].
1401   ASTFileSignature Signature;
1402   auto LShift = [&](unsigned char Val, unsigned Shift) {
1403     return (uint32_t)Val << Shift;
1404   };
1405   for (int I = 0; I != 5; ++I)
1406     Signature[I] = LShift(Hash[I * 4 + 0], 24) | LShift(Hash[I * 4 + 1], 16) |
1407                    LShift(Hash[I * 4 + 2], 8) | LShift(Hash[I * 4 + 3], 0);
1408 
1409   return Signature;
1410 }
1411 
1412 ASTFileSignature ASTWriter::writeUnhashedControlBlock(Preprocessor &PP,
1413                                                       ASTContext &Context) {
1414   // Flush first to prepare the PCM hash (signature).
1415   Stream.FlushToWord();
1416   auto StartOfUnhashedControl = Stream.GetCurrentBitNo() >> 3;
1417 
1418   // Enter the block and prepare to write records.
1419   RecordData Record;
1420   Stream.EnterSubblock(UNHASHED_CONTROL_BLOCK_ID, 5);
1421 
1422   // For implicit modules, write the hash of the PCM as its signature.
1423   ASTFileSignature Signature;
1424   if (WritingModule &&
1425       PP.getHeaderSearchInfo().getHeaderSearchOpts().ModulesHashContent) {
1426     Signature = createSignature(StringRef(Buffer.begin(), StartOfUnhashedControl));
1427     Record.append(Signature.begin(), Signature.end());
1428     Stream.EmitRecord(SIGNATURE, Record);
1429     Record.clear();
1430   }
1431 
1432   // Diagnostic options.
1433   const auto &Diags = Context.getDiagnostics();
1434   const DiagnosticOptions &DiagOpts = Diags.getDiagnosticOptions();
1435 #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name);
1436 #define ENUM_DIAGOPT(Name, Type, Bits, Default)                                \
1437   Record.push_back(static_cast<unsigned>(DiagOpts.get##Name()));
1438 #include "clang/Basic/DiagnosticOptions.def"
1439   Record.push_back(DiagOpts.Warnings.size());
1440   for (unsigned I = 0, N = DiagOpts.Warnings.size(); I != N; ++I)
1441     AddString(DiagOpts.Warnings[I], Record);
1442   Record.push_back(DiagOpts.Remarks.size());
1443   for (unsigned I = 0, N = DiagOpts.Remarks.size(); I != N; ++I)
1444     AddString(DiagOpts.Remarks[I], Record);
1445   // Note: we don't serialize the log or serialization file names, because they
1446   // are generally transient files and will almost always be overridden.
1447   Stream.EmitRecord(DIAGNOSTIC_OPTIONS, Record);
1448 
1449   // Write out the diagnostic/pragma mappings.
1450   WritePragmaDiagnosticMappings(Diags, /* isModule = */ WritingModule);
1451 
1452   // Leave the options block.
1453   Stream.ExitBlock();
1454   return Signature;
1455 }
1456 
1457 /// Write the control block.
1458 void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context,
1459                                   StringRef isysroot,
1460                                   const std::string &OutputFile) {
1461   using namespace llvm;
1462 
1463   Stream.EnterSubblock(CONTROL_BLOCK_ID, 5);
1464   RecordData Record;
1465 
1466   // Metadata
1467   auto MetadataAbbrev = std::make_shared<BitCodeAbbrev>();
1468   MetadataAbbrev->Add(BitCodeAbbrevOp(METADATA));
1469   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Major
1470   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Minor
1471   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang maj.
1472   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang min.
1473   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable
1474   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Timestamps
1475   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // PCHHasObjectFile
1476   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Errors
1477   MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
1478   unsigned MetadataAbbrevCode = Stream.EmitAbbrev(std::move(MetadataAbbrev));
1479   assert((!WritingModule || isysroot.empty()) &&
1480          "writing module as a relocatable PCH?");
1481   {
1482     RecordData::value_type Record[] = {
1483         METADATA,
1484         VERSION_MAJOR,
1485         VERSION_MINOR,
1486         CLANG_VERSION_MAJOR,
1487         CLANG_VERSION_MINOR,
1488         !isysroot.empty(),
1489         IncludeTimestamps,
1490         Context.getLangOpts().BuildingPCHWithObjectFile,
1491         ASTHasCompilerErrors};
1492     Stream.EmitRecordWithBlob(MetadataAbbrevCode, Record,
1493                               getClangFullRepositoryVersion());
1494   }
1495 
1496   if (WritingModule) {
1497     // Module name
1498     auto Abbrev = std::make_shared<BitCodeAbbrev>();
1499     Abbrev->Add(BitCodeAbbrevOp(MODULE_NAME));
1500     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
1501     unsigned AbbrevCode = Stream.EmitAbbrev(std::move(Abbrev));
1502     RecordData::value_type Record[] = {MODULE_NAME};
1503     Stream.EmitRecordWithBlob(AbbrevCode, Record, WritingModule->Name);
1504   }
1505 
1506   if (WritingModule && WritingModule->Directory) {
1507     SmallString<128> BaseDir(WritingModule->Directory->getName());
1508     cleanPathForOutput(Context.getSourceManager().getFileManager(), BaseDir);
1509 
1510     // If the home of the module is the current working directory, then we
1511     // want to pick up the cwd of the build process loading the module, not
1512     // our cwd, when we load this module.
1513     if (!PP.getHeaderSearchInfo()
1514              .getHeaderSearchOpts()
1515              .ModuleMapFileHomeIsCwd ||
1516         WritingModule->Directory->getName() != StringRef(".")) {
1517       // Module directory.
1518       auto Abbrev = std::make_shared<BitCodeAbbrev>();
1519       Abbrev->Add(BitCodeAbbrevOp(MODULE_DIRECTORY));
1520       Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Directory
1521       unsigned AbbrevCode = Stream.EmitAbbrev(std::move(Abbrev));
1522 
1523       RecordData::value_type Record[] = {MODULE_DIRECTORY};
1524       Stream.EmitRecordWithBlob(AbbrevCode, Record, BaseDir);
1525     }
1526 
1527     // Write out all other paths relative to the base directory if possible.
1528     BaseDirectory.assign(BaseDir.begin(), BaseDir.end());
1529   } else if (!isysroot.empty()) {
1530     // Write out paths relative to the sysroot if possible.
1531     BaseDirectory = isysroot;
1532   }
1533 
1534   // Module map file
1535   if (WritingModule && WritingModule->Kind == Module::ModuleMapModule) {
1536     Record.clear();
1537 
1538     auto &Map = PP.getHeaderSearchInfo().getModuleMap();
1539     AddPath(WritingModule->PresumedModuleMapFile.empty()
1540                 ? Map.getModuleMapFileForUniquing(WritingModule)->getName()
1541                 : StringRef(WritingModule->PresumedModuleMapFile),
1542             Record);
1543 
1544     // Additional module map files.
1545     if (auto *AdditionalModMaps =
1546             Map.getAdditionalModuleMapFiles(WritingModule)) {
1547       Record.push_back(AdditionalModMaps->size());
1548       for (const FileEntry *F : *AdditionalModMaps)
1549         AddPath(F->getName(), Record);
1550     } else {
1551       Record.push_back(0);
1552     }
1553 
1554     Stream.EmitRecord(MODULE_MAP_FILE, Record);
1555   }
1556 
1557   // Imports
1558   if (Chain) {
1559     serialization::ModuleManager &Mgr = Chain->getModuleManager();
1560     Record.clear();
1561 
1562     for (ModuleFile &M : Mgr) {
1563       // Skip modules that weren't directly imported.
1564       if (!M.isDirectlyImported())
1565         continue;
1566 
1567       Record.push_back((unsigned)M.Kind); // FIXME: Stable encoding
1568       AddSourceLocation(M.ImportLoc, Record);
1569 
1570       // If we have calculated signature, there is no need to store
1571       // the size or timestamp.
1572       Record.push_back(M.Signature ? 0 : M.File->getSize());
1573       Record.push_back(M.Signature ? 0 : getTimestampForOutput(M.File));
1574 
1575       for (auto I : M.Signature)
1576         Record.push_back(I);
1577 
1578       AddString(M.ModuleName, Record);
1579       AddPath(M.FileName, Record);
1580     }
1581     Stream.EmitRecord(IMPORTS, Record);
1582   }
1583 
1584   // Write the options block.
1585   Stream.EnterSubblock(OPTIONS_BLOCK_ID, 4);
1586 
1587   // Language options.
1588   Record.clear();
1589   const LangOptions &LangOpts = Context.getLangOpts();
1590 #define LANGOPT(Name, Bits, Default, Description) \
1591   Record.push_back(LangOpts.Name);
1592 #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
1593   Record.push_back(static_cast<unsigned>(LangOpts.get##Name()));
1594 #include "clang/Basic/LangOptions.def"
1595 #define SANITIZER(NAME, ID)                                                    \
1596   Record.push_back(LangOpts.Sanitize.has(SanitizerKind::ID));
1597 #include "clang/Basic/Sanitizers.def"
1598 
1599   Record.push_back(LangOpts.ModuleFeatures.size());
1600   for (StringRef Feature : LangOpts.ModuleFeatures)
1601     AddString(Feature, Record);
1602 
1603   Record.push_back((unsigned) LangOpts.ObjCRuntime.getKind());
1604   AddVersionTuple(LangOpts.ObjCRuntime.getVersion(), Record);
1605 
1606   AddString(LangOpts.CurrentModule, Record);
1607 
1608   // Comment options.
1609   Record.push_back(LangOpts.CommentOpts.BlockCommandNames.size());
1610   for (const auto &I : LangOpts.CommentOpts.BlockCommandNames) {
1611     AddString(I, Record);
1612   }
1613   Record.push_back(LangOpts.CommentOpts.ParseAllComments);
1614 
1615   // OpenMP offloading options.
1616   Record.push_back(LangOpts.OMPTargetTriples.size());
1617   for (auto &T : LangOpts.OMPTargetTriples)
1618     AddString(T.getTriple(), Record);
1619 
1620   AddString(LangOpts.OMPHostIRFile, Record);
1621 
1622   Stream.EmitRecord(LANGUAGE_OPTIONS, Record);
1623 
1624   // Target options.
1625   Record.clear();
1626   const TargetInfo &Target = Context.getTargetInfo();
1627   const TargetOptions &TargetOpts = Target.getTargetOpts();
1628   AddString(TargetOpts.Triple, Record);
1629   AddString(TargetOpts.CPU, Record);
1630   AddString(TargetOpts.ABI, Record);
1631   Record.push_back(TargetOpts.FeaturesAsWritten.size());
1632   for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size(); I != N; ++I) {
1633     AddString(TargetOpts.FeaturesAsWritten[I], Record);
1634   }
1635   Record.push_back(TargetOpts.Features.size());
1636   for (unsigned I = 0, N = TargetOpts.Features.size(); I != N; ++I) {
1637     AddString(TargetOpts.Features[I], Record);
1638   }
1639   Stream.EmitRecord(TARGET_OPTIONS, Record);
1640 
1641   // File system options.
1642   Record.clear();
1643   const FileSystemOptions &FSOpts =
1644       Context.getSourceManager().getFileManager().getFileSystemOpts();
1645   AddString(FSOpts.WorkingDir, Record);
1646   Stream.EmitRecord(FILE_SYSTEM_OPTIONS, Record);
1647 
1648   // Header search options.
1649   Record.clear();
1650   const HeaderSearchOptions &HSOpts
1651     = PP.getHeaderSearchInfo().getHeaderSearchOpts();
1652   AddString(HSOpts.Sysroot, Record);
1653 
1654   // Include entries.
1655   Record.push_back(HSOpts.UserEntries.size());
1656   for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) {
1657     const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I];
1658     AddString(Entry.Path, Record);
1659     Record.push_back(static_cast<unsigned>(Entry.Group));
1660     Record.push_back(Entry.IsFramework);
1661     Record.push_back(Entry.IgnoreSysRoot);
1662   }
1663 
1664   // System header prefixes.
1665   Record.push_back(HSOpts.SystemHeaderPrefixes.size());
1666   for (unsigned I = 0, N = HSOpts.SystemHeaderPrefixes.size(); I != N; ++I) {
1667     AddString(HSOpts.SystemHeaderPrefixes[I].Prefix, Record);
1668     Record.push_back(HSOpts.SystemHeaderPrefixes[I].IsSystemHeader);
1669   }
1670 
1671   AddString(HSOpts.ResourceDir, Record);
1672   AddString(HSOpts.ModuleCachePath, Record);
1673   AddString(HSOpts.ModuleUserBuildPath, Record);
1674   Record.push_back(HSOpts.DisableModuleHash);
1675   Record.push_back(HSOpts.ImplicitModuleMaps);
1676   Record.push_back(HSOpts.ModuleMapFileHomeIsCwd);
1677   Record.push_back(HSOpts.UseBuiltinIncludes);
1678   Record.push_back(HSOpts.UseStandardSystemIncludes);
1679   Record.push_back(HSOpts.UseStandardCXXIncludes);
1680   Record.push_back(HSOpts.UseLibcxx);
1681   // Write out the specific module cache path that contains the module files.
1682   AddString(PP.getHeaderSearchInfo().getModuleCachePath(), Record);
1683   Stream.EmitRecord(HEADER_SEARCH_OPTIONS, Record);
1684 
1685   // Preprocessor options.
1686   Record.clear();
1687   const PreprocessorOptions &PPOpts = PP.getPreprocessorOpts();
1688 
1689   // Macro definitions.
1690   Record.push_back(PPOpts.Macros.size());
1691   for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
1692     AddString(PPOpts.Macros[I].first, Record);
1693     Record.push_back(PPOpts.Macros[I].second);
1694   }
1695 
1696   // Includes
1697   Record.push_back(PPOpts.Includes.size());
1698   for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I)
1699     AddString(PPOpts.Includes[I], Record);
1700 
1701   // Macro includes
1702   Record.push_back(PPOpts.MacroIncludes.size());
1703   for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I)
1704     AddString(PPOpts.MacroIncludes[I], Record);
1705 
1706   Record.push_back(PPOpts.UsePredefines);
1707   // Detailed record is important since it is used for the module cache hash.
1708   Record.push_back(PPOpts.DetailedRecord);
1709   AddString(PPOpts.ImplicitPCHInclude, Record);
1710   Record.push_back(static_cast<unsigned>(PPOpts.ObjCXXARCStandardLibrary));
1711   Stream.EmitRecord(PREPROCESSOR_OPTIONS, Record);
1712 
1713   // Leave the options block.
1714   Stream.ExitBlock();
1715 
1716   // Original file name and file ID
1717   SourceManager &SM = Context.getSourceManager();
1718   if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
1719     auto FileAbbrev = std::make_shared<BitCodeAbbrev>();
1720     FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE));
1721     FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // File ID
1722     FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1723     unsigned FileAbbrevCode = Stream.EmitAbbrev(std::move(FileAbbrev));
1724 
1725     Record.clear();
1726     Record.push_back(ORIGINAL_FILE);
1727     Record.push_back(SM.getMainFileID().getOpaqueValue());
1728     EmitRecordWithPath(FileAbbrevCode, Record, MainFile->getName());
1729   }
1730 
1731   Record.clear();
1732   Record.push_back(SM.getMainFileID().getOpaqueValue());
1733   Stream.EmitRecord(ORIGINAL_FILE_ID, Record);
1734 
1735   // Original PCH directory
1736   if (!OutputFile.empty() && OutputFile != "-") {
1737     auto Abbrev = std::make_shared<BitCodeAbbrev>();
1738     Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR));
1739     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1740     unsigned AbbrevCode = Stream.EmitAbbrev(std::move(Abbrev));
1741 
1742     SmallString<128> OutputPath(OutputFile);
1743 
1744     SM.getFileManager().makeAbsolutePath(OutputPath);
1745     StringRef origDir = llvm::sys::path::parent_path(OutputPath);
1746 
1747     RecordData::value_type Record[] = {ORIGINAL_PCH_DIR};
1748     Stream.EmitRecordWithBlob(AbbrevCode, Record, origDir);
1749   }
1750 
1751   WriteInputFiles(Context.SourceMgr,
1752                   PP.getHeaderSearchInfo().getHeaderSearchOpts(),
1753                   PP.getLangOpts().Modules);
1754   Stream.ExitBlock();
1755 }
1756 
1757 namespace  {
1758 
1759 /// An input file.
1760 struct InputFileEntry {
1761   const FileEntry *File;
1762   bool IsSystemFile;
1763   bool IsTransient;
1764   bool BufferOverridden;
1765   bool IsTopLevelModuleMap;
1766 };
1767 
1768 } // namespace
1769 
1770 void ASTWriter::WriteInputFiles(SourceManager &SourceMgr,
1771                                 HeaderSearchOptions &HSOpts,
1772                                 bool Modules) {
1773   using namespace llvm;
1774 
1775   Stream.EnterSubblock(INPUT_FILES_BLOCK_ID, 4);
1776 
1777   // Create input-file abbreviation.
1778   auto IFAbbrev = std::make_shared<BitCodeAbbrev>();
1779   IFAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE));
1780   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID
1781   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size
1782   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time
1783   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Overridden
1784   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Transient
1785   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Module map
1786   IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1787   unsigned IFAbbrevCode = Stream.EmitAbbrev(std::move(IFAbbrev));
1788 
1789   // Get all ContentCache objects for files, sorted by whether the file is a
1790   // system one or not. System files go at the back, users files at the front.
1791   std::deque<InputFileEntry> SortedFiles;
1792   for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size(); I != N; ++I) {
1793     // Get this source location entry.
1794     const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I);
1795     assert(&SourceMgr.getSLocEntry(FileID::get(I)) == SLoc);
1796 
1797     // We only care about file entries that were not overridden.
1798     if (!SLoc->isFile())
1799       continue;
1800     const SrcMgr::FileInfo &File = SLoc->getFile();
1801     const SrcMgr::ContentCache *Cache = File.getContentCache();
1802     if (!Cache->OrigEntry)
1803       continue;
1804 
1805     InputFileEntry Entry;
1806     Entry.File = Cache->OrigEntry;
1807     Entry.IsSystemFile = isSystem(File.getFileCharacteristic());
1808     Entry.IsTransient = Cache->IsTransient;
1809     Entry.BufferOverridden = Cache->BufferOverridden;
1810     Entry.IsTopLevelModuleMap = isModuleMap(File.getFileCharacteristic()) &&
1811                                 File.getIncludeLoc().isInvalid();
1812     if (Entry.IsSystemFile)
1813       SortedFiles.push_back(Entry);
1814     else
1815       SortedFiles.push_front(Entry);
1816   }
1817 
1818   unsigned UserFilesNum = 0;
1819   // Write out all of the input files.
1820   std::vector<uint64_t> InputFileOffsets;
1821   for (const auto &Entry : SortedFiles) {
1822     uint32_t &InputFileID = InputFileIDs[Entry.File];
1823     if (InputFileID != 0)
1824       continue; // already recorded this file.
1825 
1826     // Record this entry's offset.
1827     InputFileOffsets.push_back(Stream.GetCurrentBitNo());
1828 
1829     InputFileID = InputFileOffsets.size();
1830 
1831     if (!Entry.IsSystemFile)
1832       ++UserFilesNum;
1833 
1834     // Emit size/modification time for this file.
1835     // And whether this file was overridden.
1836     RecordData::value_type Record[] = {
1837         INPUT_FILE,
1838         InputFileOffsets.size(),
1839         (uint64_t)Entry.File->getSize(),
1840         (uint64_t)getTimestampForOutput(Entry.File),
1841         Entry.BufferOverridden,
1842         Entry.IsTransient,
1843         Entry.IsTopLevelModuleMap};
1844 
1845     // FIXME: The path should be taken from the FileEntryRef.
1846     EmitRecordWithPath(IFAbbrevCode, Record, Entry.File->getName());
1847   }
1848 
1849   Stream.ExitBlock();
1850 
1851   // Create input file offsets abbreviation.
1852   auto OffsetsAbbrev = std::make_shared<BitCodeAbbrev>();
1853   OffsetsAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE_OFFSETS));
1854   OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # input files
1855   OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # non-system
1856                                                                 //   input files
1857   OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));   // Array
1858   unsigned OffsetsAbbrevCode = Stream.EmitAbbrev(std::move(OffsetsAbbrev));
1859 
1860   // Write input file offsets.
1861   RecordData::value_type Record[] = {INPUT_FILE_OFFSETS,
1862                                      InputFileOffsets.size(), UserFilesNum};
1863   Stream.EmitRecordWithBlob(OffsetsAbbrevCode, Record, bytes(InputFileOffsets));
1864 }
1865 
1866 //===----------------------------------------------------------------------===//
1867 // Source Manager Serialization
1868 //===----------------------------------------------------------------------===//
1869 
1870 /// Create an abbreviation for the SLocEntry that refers to a
1871 /// file.
1872 static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
1873   using namespace llvm;
1874 
1875   auto Abbrev = std::make_shared<BitCodeAbbrev>();
1876   Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY));
1877   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1878   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1879   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Characteristic
1880   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
1881   // FileEntry fields.
1882   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Input File ID
1883   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumCreatedFIDs
1884   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 24)); // FirstDeclIndex
1885   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumDecls
1886   return Stream.EmitAbbrev(std::move(Abbrev));
1887 }
1888 
1889 /// Create an abbreviation for the SLocEntry that refers to a
1890 /// buffer.
1891 static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
1892   using namespace llvm;
1893 
1894   auto Abbrev = std::make_shared<BitCodeAbbrev>();
1895   Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_ENTRY));
1896   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1897   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1898   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 3)); // Characteristic
1899   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
1900   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob
1901   return Stream.EmitAbbrev(std::move(Abbrev));
1902 }
1903 
1904 /// Create an abbreviation for the SLocEntry that refers to a
1905 /// buffer's blob.
1906 static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream,
1907                                            bool Compressed) {
1908   using namespace llvm;
1909 
1910   auto Abbrev = std::make_shared<BitCodeAbbrev>();
1911   Abbrev->Add(BitCodeAbbrevOp(Compressed ? SM_SLOC_BUFFER_BLOB_COMPRESSED
1912                                          : SM_SLOC_BUFFER_BLOB));
1913   if (Compressed)
1914     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Uncompressed size
1915   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
1916   return Stream.EmitAbbrev(std::move(Abbrev));
1917 }
1918 
1919 /// Create an abbreviation for the SLocEntry that refers to a macro
1920 /// expansion.
1921 static unsigned CreateSLocExpansionAbbrev(llvm::BitstreamWriter &Stream) {
1922   using namespace llvm;
1923 
1924   auto Abbrev = std::make_shared<BitCodeAbbrev>();
1925   Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_EXPANSION_ENTRY));
1926   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1927   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location
1928   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
1929   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location
1930   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Is token range
1931   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
1932   return Stream.EmitAbbrev(std::move(Abbrev));
1933 }
1934 
1935 namespace {
1936 
1937   // Trait used for the on-disk hash table of header search information.
1938   class HeaderFileInfoTrait {
1939     ASTWriter &Writer;
1940 
1941     // Keep track of the framework names we've used during serialization.
1942     SmallVector<char, 128> FrameworkStringData;
1943     llvm::StringMap<unsigned> FrameworkNameOffset;
1944 
1945   public:
1946     HeaderFileInfoTrait(ASTWriter &Writer) : Writer(Writer) {}
1947 
1948     struct key_type {
1949       StringRef Filename;
1950       off_t Size;
1951       time_t ModTime;
1952     };
1953     using key_type_ref = const key_type &;
1954 
1955     using UnresolvedModule =
1956         llvm::PointerIntPair<Module *, 2, ModuleMap::ModuleHeaderRole>;
1957 
1958     struct data_type {
1959       const HeaderFileInfo &HFI;
1960       ArrayRef<ModuleMap::KnownHeader> KnownHeaders;
1961       UnresolvedModule Unresolved;
1962     };
1963     using data_type_ref = const data_type &;
1964 
1965     using hash_value_type = unsigned;
1966     using offset_type = unsigned;
1967 
1968     hash_value_type ComputeHash(key_type_ref key) {
1969       // The hash is based only on size/time of the file, so that the reader can
1970       // match even when symlinking or excess path elements ("foo/../", "../")
1971       // change the form of the name. However, complete path is still the key.
1972       return llvm::hash_combine(key.Size, key.ModTime);
1973     }
1974 
1975     std::pair<unsigned, unsigned>
1976     EmitKeyDataLength(raw_ostream& Out, key_type_ref key, data_type_ref Data) {
1977       using namespace llvm::support;
1978 
1979       endian::Writer LE(Out, little);
1980       unsigned KeyLen = key.Filename.size() + 1 + 8 + 8;
1981       LE.write<uint16_t>(KeyLen);
1982       unsigned DataLen = 1 + 2 + 4 + 4;
1983       for (auto ModInfo : Data.KnownHeaders)
1984         if (Writer.getLocalOrImportedSubmoduleID(ModInfo.getModule()))
1985           DataLen += 4;
1986       if (Data.Unresolved.getPointer())
1987         DataLen += 4;
1988       LE.write<uint8_t>(DataLen);
1989       return std::make_pair(KeyLen, DataLen);
1990     }
1991 
1992     void EmitKey(raw_ostream& Out, key_type_ref key, unsigned KeyLen) {
1993       using namespace llvm::support;
1994 
1995       endian::Writer LE(Out, little);
1996       LE.write<uint64_t>(key.Size);
1997       KeyLen -= 8;
1998       LE.write<uint64_t>(key.ModTime);
1999       KeyLen -= 8;
2000       Out.write(key.Filename.data(), KeyLen);
2001     }
2002 
2003     void EmitData(raw_ostream &Out, key_type_ref key,
2004                   data_type_ref Data, unsigned DataLen) {
2005       using namespace llvm::support;
2006 
2007       endian::Writer LE(Out, little);
2008       uint64_t Start = Out.tell(); (void)Start;
2009 
2010       unsigned char Flags = (Data.HFI.isImport << 5)
2011                           | (Data.HFI.isPragmaOnce << 4)
2012                           | (Data.HFI.DirInfo << 1)
2013                           | Data.HFI.IndexHeaderMapHeader;
2014       LE.write<uint8_t>(Flags);
2015       LE.write<uint16_t>(Data.HFI.NumIncludes);
2016 
2017       if (!Data.HFI.ControllingMacro)
2018         LE.write<uint32_t>(Data.HFI.ControllingMacroID);
2019       else
2020         LE.write<uint32_t>(Writer.getIdentifierRef(Data.HFI.ControllingMacro));
2021 
2022       unsigned Offset = 0;
2023       if (!Data.HFI.Framework.empty()) {
2024         // If this header refers into a framework, save the framework name.
2025         llvm::StringMap<unsigned>::iterator Pos
2026           = FrameworkNameOffset.find(Data.HFI.Framework);
2027         if (Pos == FrameworkNameOffset.end()) {
2028           Offset = FrameworkStringData.size() + 1;
2029           FrameworkStringData.append(Data.HFI.Framework.begin(),
2030                                      Data.HFI.Framework.end());
2031           FrameworkStringData.push_back(0);
2032 
2033           FrameworkNameOffset[Data.HFI.Framework] = Offset;
2034         } else
2035           Offset = Pos->second;
2036       }
2037       LE.write<uint32_t>(Offset);
2038 
2039       auto EmitModule = [&](Module *M, ModuleMap::ModuleHeaderRole Role) {
2040         if (uint32_t ModID = Writer.getLocalOrImportedSubmoduleID(M)) {
2041           uint32_t Value = (ModID << 2) | (unsigned)Role;
2042           assert((Value >> 2) == ModID && "overflow in header module info");
2043           LE.write<uint32_t>(Value);
2044         }
2045       };
2046 
2047       // FIXME: If the header is excluded, we should write out some
2048       // record of that fact.
2049       for (auto ModInfo : Data.KnownHeaders)
2050         EmitModule(ModInfo.getModule(), ModInfo.getRole());
2051       if (Data.Unresolved.getPointer())
2052         EmitModule(Data.Unresolved.getPointer(), Data.Unresolved.getInt());
2053 
2054       assert(Out.tell() - Start == DataLen && "Wrong data length");
2055     }
2056 
2057     const char *strings_begin() const { return FrameworkStringData.begin(); }
2058     const char *strings_end() const { return FrameworkStringData.end(); }
2059   };
2060 
2061 } // namespace
2062 
2063 /// Write the header search block for the list of files that
2064 ///
2065 /// \param HS The header search structure to save.
2066 void ASTWriter::WriteHeaderSearch(const HeaderSearch &HS) {
2067   HeaderFileInfoTrait GeneratorTrait(*this);
2068   llvm::OnDiskChainedHashTableGenerator<HeaderFileInfoTrait> Generator;
2069   SmallVector<const char *, 4> SavedStrings;
2070   unsigned NumHeaderSearchEntries = 0;
2071 
2072   // Find all unresolved headers for the current module. We generally will
2073   // have resolved them before we get here, but not necessarily: we might be
2074   // compiling a preprocessed module, where there is no requirement for the
2075   // original files to exist any more.
2076   const HeaderFileInfo Empty; // So we can take a reference.
2077   if (WritingModule) {
2078     llvm::SmallVector<Module *, 16> Worklist(1, WritingModule);
2079     while (!Worklist.empty()) {
2080       Module *M = Worklist.pop_back_val();
2081       if (!M->isAvailable())
2082         continue;
2083 
2084       // Map to disk files where possible, to pick up any missing stat
2085       // information. This also means we don't need to check the unresolved
2086       // headers list when emitting resolved headers in the first loop below.
2087       // FIXME: It'd be preferable to avoid doing this if we were given
2088       // sufficient stat information in the module map.
2089       HS.getModuleMap().resolveHeaderDirectives(M);
2090 
2091       // If the file didn't exist, we can still create a module if we were given
2092       // enough information in the module map.
2093       for (auto U : M->MissingHeaders) {
2094         // Check that we were given enough information to build a module
2095         // without this file existing on disk.
2096         if (!U.Size || (!U.ModTime && IncludeTimestamps)) {
2097           PP->Diag(U.FileNameLoc, diag::err_module_no_size_mtime_for_header)
2098             << WritingModule->getFullModuleName() << U.Size.hasValue()
2099             << U.FileName;
2100           continue;
2101         }
2102 
2103         // Form the effective relative pathname for the file.
2104         SmallString<128> Filename(M->Directory->getName());
2105         llvm::sys::path::append(Filename, U.FileName);
2106         PreparePathForOutput(Filename);
2107 
2108         StringRef FilenameDup = strdup(Filename.c_str());
2109         SavedStrings.push_back(FilenameDup.data());
2110 
2111         HeaderFileInfoTrait::key_type Key = {
2112           FilenameDup, *U.Size, IncludeTimestamps ? *U.ModTime : 0
2113         };
2114         HeaderFileInfoTrait::data_type Data = {
2115           Empty, {}, {M, ModuleMap::headerKindToRole(U.Kind)}
2116         };
2117         // FIXME: Deal with cases where there are multiple unresolved header
2118         // directives in different submodules for the same header.
2119         Generator.insert(Key, Data, GeneratorTrait);
2120         ++NumHeaderSearchEntries;
2121       }
2122 
2123       Worklist.append(M->submodule_begin(), M->submodule_end());
2124     }
2125   }
2126 
2127   SmallVector<const FileEntry *, 16> FilesByUID;
2128   HS.getFileMgr().GetUniqueIDMapping(FilesByUID);
2129 
2130   if (FilesByUID.size() > HS.header_file_size())
2131     FilesByUID.resize(HS.header_file_size());
2132 
2133   for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) {
2134     const FileEntry *File = FilesByUID[UID];
2135     if (!File)
2136       continue;
2137 
2138     // Get the file info. This will load info from the external source if
2139     // necessary. Skip emitting this file if we have no information on it
2140     // as a header file (in which case HFI will be null) or if it hasn't
2141     // changed since it was loaded. Also skip it if it's for a modular header
2142     // from a different module; in that case, we rely on the module(s)
2143     // containing the header to provide this information.
2144     const HeaderFileInfo *HFI =
2145         HS.getExistingFileInfo(File, /*WantExternal*/!Chain);
2146     if (!HFI || (HFI->isModuleHeader && !HFI->isCompilingModuleHeader))
2147       continue;
2148 
2149     // Massage the file path into an appropriate form.
2150     StringRef Filename = File->getName();
2151     SmallString<128> FilenameTmp(Filename);
2152     if (PreparePathForOutput(FilenameTmp)) {
2153       // If we performed any translation on the file name at all, we need to
2154       // save this string, since the generator will refer to it later.
2155       Filename = StringRef(strdup(FilenameTmp.c_str()));
2156       SavedStrings.push_back(Filename.data());
2157     }
2158 
2159     HeaderFileInfoTrait::key_type Key = {
2160       Filename, File->getSize(), getTimestampForOutput(File)
2161     };
2162     HeaderFileInfoTrait::data_type Data = {
2163       *HFI, HS.getModuleMap().findAllModulesForHeader(File), {}
2164     };
2165     Generator.insert(Key, Data, GeneratorTrait);
2166     ++NumHeaderSearchEntries;
2167   }
2168 
2169   // Create the on-disk hash table in a buffer.
2170   SmallString<4096> TableData;
2171   uint32_t BucketOffset;
2172   {
2173     using namespace llvm::support;
2174 
2175     llvm::raw_svector_ostream Out(TableData);
2176     // Make sure that no bucket is at offset 0
2177     endian::write<uint32_t>(Out, 0, little);
2178     BucketOffset = Generator.Emit(Out, GeneratorTrait);
2179   }
2180 
2181   // Create a blob abbreviation
2182   using namespace llvm;
2183 
2184   auto Abbrev = std::make_shared<BitCodeAbbrev>();
2185   Abbrev->Add(BitCodeAbbrevOp(HEADER_SEARCH_TABLE));
2186   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
2187   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
2188   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
2189   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2190   unsigned TableAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2191 
2192   // Write the header search table
2193   RecordData::value_type Record[] = {HEADER_SEARCH_TABLE, BucketOffset,
2194                                      NumHeaderSearchEntries, TableData.size()};
2195   TableData.append(GeneratorTrait.strings_begin(),GeneratorTrait.strings_end());
2196   Stream.EmitRecordWithBlob(TableAbbrev, Record, TableData);
2197 
2198   // Free all of the strings we had to duplicate.
2199   for (unsigned I = 0, N = SavedStrings.size(); I != N; ++I)
2200     free(const_cast<char *>(SavedStrings[I]));
2201 }
2202 
2203 static void emitBlob(llvm::BitstreamWriter &Stream, StringRef Blob,
2204                      unsigned SLocBufferBlobCompressedAbbrv,
2205                      unsigned SLocBufferBlobAbbrv) {
2206   using RecordDataType = ASTWriter::RecordData::value_type;
2207 
2208   // Compress the buffer if possible. We expect that almost all PCM
2209   // consumers will not want its contents.
2210   SmallString<0> CompressedBuffer;
2211   if (llvm::zlib::isAvailable()) {
2212     llvm::Error E = llvm::zlib::compress(Blob.drop_back(1), CompressedBuffer);
2213     if (!E) {
2214       RecordDataType Record[] = {SM_SLOC_BUFFER_BLOB_COMPRESSED,
2215                                  Blob.size() - 1};
2216       Stream.EmitRecordWithBlob(SLocBufferBlobCompressedAbbrv, Record,
2217                                 CompressedBuffer);
2218       return;
2219     }
2220     llvm::consumeError(std::move(E));
2221   }
2222 
2223   RecordDataType Record[] = {SM_SLOC_BUFFER_BLOB};
2224   Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record, Blob);
2225 }
2226 
2227 /// Writes the block containing the serialized form of the
2228 /// source manager.
2229 ///
2230 /// TODO: We should probably use an on-disk hash table (stored in a
2231 /// blob), indexed based on the file name, so that we only create
2232 /// entries for files that we actually need. In the common case (no
2233 /// errors), we probably won't have to create file entries for any of
2234 /// the files in the AST.
2235 void ASTWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
2236                                         const Preprocessor &PP) {
2237   RecordData Record;
2238 
2239   // Enter the source manager block.
2240   Stream.EnterSubblock(SOURCE_MANAGER_BLOCK_ID, 4);
2241 
2242   // Abbreviations for the various kinds of source-location entries.
2243   unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
2244   unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
2245   unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream, false);
2246   unsigned SLocBufferBlobCompressedAbbrv =
2247       CreateSLocBufferBlobAbbrev(Stream, true);
2248   unsigned SLocExpansionAbbrv = CreateSLocExpansionAbbrev(Stream);
2249 
2250   // Write out the source location entry table. We skip the first
2251   // entry, which is always the same dummy entry.
2252   std::vector<uint32_t> SLocEntryOffsets;
2253   RecordData PreloadSLocs;
2254   SLocEntryOffsets.reserve(SourceMgr.local_sloc_entry_size() - 1);
2255   for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size();
2256        I != N; ++I) {
2257     // Get this source location entry.
2258     const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I);
2259     FileID FID = FileID::get(I);
2260     assert(&SourceMgr.getSLocEntry(FID) == SLoc);
2261 
2262     // Record the offset of this source-location entry.
2263     SLocEntryOffsets.push_back(Stream.GetCurrentBitNo());
2264 
2265     // Figure out which record code to use.
2266     unsigned Code;
2267     if (SLoc->isFile()) {
2268       const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
2269       if (Cache->OrigEntry) {
2270         Code = SM_SLOC_FILE_ENTRY;
2271       } else
2272         Code = SM_SLOC_BUFFER_ENTRY;
2273     } else
2274       Code = SM_SLOC_EXPANSION_ENTRY;
2275     Record.clear();
2276     Record.push_back(Code);
2277 
2278     // Starting offset of this entry within this module, so skip the dummy.
2279     Record.push_back(SLoc->getOffset() - 2);
2280     if (SLoc->isFile()) {
2281       const SrcMgr::FileInfo &File = SLoc->getFile();
2282       AddSourceLocation(File.getIncludeLoc(), Record);
2283       Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding
2284       Record.push_back(File.hasLineDirectives());
2285 
2286       const SrcMgr::ContentCache *Content = File.getContentCache();
2287       bool EmitBlob = false;
2288       if (Content->OrigEntry) {
2289         assert(Content->OrigEntry == Content->ContentsEntry &&
2290                "Writing to AST an overridden file is not supported");
2291 
2292         // The source location entry is a file. Emit input file ID.
2293         assert(InputFileIDs[Content->OrigEntry] != 0 && "Missed file entry");
2294         Record.push_back(InputFileIDs[Content->OrigEntry]);
2295 
2296         Record.push_back(File.NumCreatedFIDs);
2297 
2298         FileDeclIDsTy::iterator FDI = FileDeclIDs.find(FID);
2299         if (FDI != FileDeclIDs.end()) {
2300           Record.push_back(FDI->second->FirstDeclIndex);
2301           Record.push_back(FDI->second->DeclIDs.size());
2302         } else {
2303           Record.push_back(0);
2304           Record.push_back(0);
2305         }
2306 
2307         Stream.EmitRecordWithAbbrev(SLocFileAbbrv, Record);
2308 
2309         if (Content->BufferOverridden || Content->IsTransient)
2310           EmitBlob = true;
2311       } else {
2312         // The source location entry is a buffer. The blob associated
2313         // with this entry contains the contents of the buffer.
2314 
2315         // We add one to the size so that we capture the trailing NULL
2316         // that is required by llvm::MemoryBuffer::getMemBuffer (on
2317         // the reader side).
2318         const llvm::MemoryBuffer *Buffer =
2319             Content->getBuffer(PP.getDiagnostics(), PP.getFileManager());
2320         StringRef Name = Buffer->getBufferIdentifier();
2321         Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record,
2322                                   StringRef(Name.data(), Name.size() + 1));
2323         EmitBlob = true;
2324 
2325         if (Name == "<built-in>")
2326           PreloadSLocs.push_back(SLocEntryOffsets.size());
2327       }
2328 
2329       if (EmitBlob) {
2330         // Include the implicit terminating null character in the on-disk buffer
2331         // if we're writing it uncompressed.
2332         const llvm::MemoryBuffer *Buffer =
2333             Content->getBuffer(PP.getDiagnostics(), PP.getFileManager());
2334         StringRef Blob(Buffer->getBufferStart(), Buffer->getBufferSize() + 1);
2335         emitBlob(Stream, Blob, SLocBufferBlobCompressedAbbrv,
2336                  SLocBufferBlobAbbrv);
2337       }
2338     } else {
2339       // The source location entry is a macro expansion.
2340       const SrcMgr::ExpansionInfo &Expansion = SLoc->getExpansion();
2341       AddSourceLocation(Expansion.getSpellingLoc(), Record);
2342       AddSourceLocation(Expansion.getExpansionLocStart(), Record);
2343       AddSourceLocation(Expansion.isMacroArgExpansion()
2344                             ? SourceLocation()
2345                             : Expansion.getExpansionLocEnd(),
2346                         Record);
2347       Record.push_back(Expansion.isExpansionTokenRange());
2348 
2349       // Compute the token length for this macro expansion.
2350       unsigned NextOffset = SourceMgr.getNextLocalOffset();
2351       if (I + 1 != N)
2352         NextOffset = SourceMgr.getLocalSLocEntry(I + 1).getOffset();
2353       Record.push_back(NextOffset - SLoc->getOffset() - 1);
2354       Stream.EmitRecordWithAbbrev(SLocExpansionAbbrv, Record);
2355     }
2356   }
2357 
2358   Stream.ExitBlock();
2359 
2360   if (SLocEntryOffsets.empty())
2361     return;
2362 
2363   // Write the source-location offsets table into the AST block. This
2364   // table is used for lazily loading source-location information.
2365   using namespace llvm;
2366 
2367   auto Abbrev = std::make_shared<BitCodeAbbrev>();
2368   Abbrev->Add(BitCodeAbbrevOp(SOURCE_LOCATION_OFFSETS));
2369   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs
2370   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // total size
2371   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets
2372   unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2373   {
2374     RecordData::value_type Record[] = {
2375         SOURCE_LOCATION_OFFSETS, SLocEntryOffsets.size(),
2376         SourceMgr.getNextLocalOffset() - 1 /* skip dummy */};
2377     Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record,
2378                               bytes(SLocEntryOffsets));
2379   }
2380   // Write the source location entry preloads array, telling the AST
2381   // reader which source locations entries it should load eagerly.
2382   Stream.EmitRecord(SOURCE_LOCATION_PRELOADS, PreloadSLocs);
2383 
2384   // Write the line table. It depends on remapping working, so it must come
2385   // after the source location offsets.
2386   if (SourceMgr.hasLineTable()) {
2387     LineTableInfo &LineTable = SourceMgr.getLineTable();
2388 
2389     Record.clear();
2390 
2391     // Emit the needed file names.
2392     llvm::DenseMap<int, int> FilenameMap;
2393     FilenameMap[-1] = -1; // For unspecified filenames.
2394     for (const auto &L : LineTable) {
2395       if (L.first.ID < 0)
2396         continue;
2397       for (auto &LE : L.second) {
2398         if (FilenameMap.insert(std::make_pair(LE.FilenameID,
2399                                               FilenameMap.size() - 1)).second)
2400           AddPath(LineTable.getFilename(LE.FilenameID), Record);
2401       }
2402     }
2403     Record.push_back(0);
2404 
2405     // Emit the line entries
2406     for (const auto &L : LineTable) {
2407       // Only emit entries for local files.
2408       if (L.first.ID < 0)
2409         continue;
2410 
2411       // Emit the file ID
2412       Record.push_back(L.first.ID);
2413 
2414       // Emit the line entries
2415       Record.push_back(L.second.size());
2416       for (const auto &LE : L.second) {
2417         Record.push_back(LE.FileOffset);
2418         Record.push_back(LE.LineNo);
2419         Record.push_back(FilenameMap[LE.FilenameID]);
2420         Record.push_back((unsigned)LE.FileKind);
2421         Record.push_back(LE.IncludeOffset);
2422       }
2423     }
2424 
2425     Stream.EmitRecord(SOURCE_MANAGER_LINE_TABLE, Record);
2426   }
2427 }
2428 
2429 //===----------------------------------------------------------------------===//
2430 // Preprocessor Serialization
2431 //===----------------------------------------------------------------------===//
2432 
2433 static bool shouldIgnoreMacro(MacroDirective *MD, bool IsModule,
2434                               const Preprocessor &PP) {
2435   if (MacroInfo *MI = MD->getMacroInfo())
2436     if (MI->isBuiltinMacro())
2437       return true;
2438 
2439   if (IsModule) {
2440     SourceLocation Loc = MD->getLocation();
2441     if (Loc.isInvalid())
2442       return true;
2443     if (PP.getSourceManager().getFileID(Loc) == PP.getPredefinesFileID())
2444       return true;
2445   }
2446 
2447   return false;
2448 }
2449 
2450 /// Writes the block containing the serialized form of the
2451 /// preprocessor.
2452 void ASTWriter::WritePreprocessor(const Preprocessor &PP, bool IsModule) {
2453   PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
2454   if (PPRec)
2455     WritePreprocessorDetail(*PPRec);
2456 
2457   RecordData Record;
2458   RecordData ModuleMacroRecord;
2459 
2460   // If the preprocessor __COUNTER__ value has been bumped, remember it.
2461   if (PP.getCounterValue() != 0) {
2462     RecordData::value_type Record[] = {PP.getCounterValue()};
2463     Stream.EmitRecord(PP_COUNTER_VALUE, Record);
2464   }
2465 
2466   if (PP.isRecordingPreamble() && PP.hasRecordedPreamble()) {
2467     assert(!IsModule);
2468     auto SkipInfo = PP.getPreambleSkipInfo();
2469     if (SkipInfo.hasValue()) {
2470       Record.push_back(true);
2471       AddSourceLocation(SkipInfo->HashTokenLoc, Record);
2472       AddSourceLocation(SkipInfo->IfTokenLoc, Record);
2473       Record.push_back(SkipInfo->FoundNonSkipPortion);
2474       Record.push_back(SkipInfo->FoundElse);
2475       AddSourceLocation(SkipInfo->ElseLoc, Record);
2476     } else {
2477       Record.push_back(false);
2478     }
2479     for (const auto &Cond : PP.getPreambleConditionalStack()) {
2480       AddSourceLocation(Cond.IfLoc, Record);
2481       Record.push_back(Cond.WasSkipping);
2482       Record.push_back(Cond.FoundNonSkip);
2483       Record.push_back(Cond.FoundElse);
2484     }
2485     Stream.EmitRecord(PP_CONDITIONAL_STACK, Record);
2486     Record.clear();
2487   }
2488 
2489   // Enter the preprocessor block.
2490   Stream.EnterSubblock(PREPROCESSOR_BLOCK_ID, 3);
2491 
2492   // If the AST file contains __DATE__ or __TIME__ emit a warning about this.
2493   // FIXME: Include a location for the use, and say which one was used.
2494   if (PP.SawDateOrTime())
2495     PP.Diag(SourceLocation(), diag::warn_module_uses_date_time) << IsModule;
2496 
2497   // Loop over all the macro directives that are live at the end of the file,
2498   // emitting each to the PP section.
2499 
2500   // Construct the list of identifiers with macro directives that need to be
2501   // serialized.
2502   SmallVector<const IdentifierInfo *, 128> MacroIdentifiers;
2503   for (auto &Id : PP.getIdentifierTable())
2504     if (Id.second->hadMacroDefinition() &&
2505         (!Id.second->isFromAST() ||
2506          Id.second->hasChangedSinceDeserialization()))
2507       MacroIdentifiers.push_back(Id.second);
2508   // Sort the set of macro definitions that need to be serialized by the
2509   // name of the macro, to provide a stable ordering.
2510   llvm::sort(MacroIdentifiers, llvm::deref<std::less<>>());
2511 
2512   // Emit the macro directives as a list and associate the offset with the
2513   // identifier they belong to.
2514   for (const IdentifierInfo *Name : MacroIdentifiers) {
2515     MacroDirective *MD = PP.getLocalMacroDirectiveHistory(Name);
2516     auto StartOffset = Stream.GetCurrentBitNo();
2517 
2518     // Emit the macro directives in reverse source order.
2519     for (; MD; MD = MD->getPrevious()) {
2520       // Once we hit an ignored macro, we're done: the rest of the chain
2521       // will all be ignored macros.
2522       if (shouldIgnoreMacro(MD, IsModule, PP))
2523         break;
2524 
2525       AddSourceLocation(MD->getLocation(), Record);
2526       Record.push_back(MD->getKind());
2527       if (auto *DefMD = dyn_cast<DefMacroDirective>(MD)) {
2528         Record.push_back(getMacroRef(DefMD->getInfo(), Name));
2529       } else if (auto *VisMD = dyn_cast<VisibilityMacroDirective>(MD)) {
2530         Record.push_back(VisMD->isPublic());
2531       }
2532     }
2533 
2534     // Write out any exported module macros.
2535     bool EmittedModuleMacros = false;
2536     // We write out exported module macros for PCH as well.
2537     auto Leafs = PP.getLeafModuleMacros(Name);
2538     SmallVector<ModuleMacro*, 8> Worklist(Leafs.begin(), Leafs.end());
2539     llvm::DenseMap<ModuleMacro*, unsigned> Visits;
2540     while (!Worklist.empty()) {
2541       auto *Macro = Worklist.pop_back_val();
2542 
2543       // Emit a record indicating this submodule exports this macro.
2544       ModuleMacroRecord.push_back(
2545           getSubmoduleID(Macro->getOwningModule()));
2546       ModuleMacroRecord.push_back(getMacroRef(Macro->getMacroInfo(), Name));
2547       for (auto *M : Macro->overrides())
2548         ModuleMacroRecord.push_back(getSubmoduleID(M->getOwningModule()));
2549 
2550       Stream.EmitRecord(PP_MODULE_MACRO, ModuleMacroRecord);
2551       ModuleMacroRecord.clear();
2552 
2553       // Enqueue overridden macros once we've visited all their ancestors.
2554       for (auto *M : Macro->overrides())
2555         if (++Visits[M] == M->getNumOverridingMacros())
2556           Worklist.push_back(M);
2557 
2558       EmittedModuleMacros = true;
2559     }
2560 
2561     if (Record.empty() && !EmittedModuleMacros)
2562       continue;
2563 
2564     IdentMacroDirectivesOffsetMap[Name] = StartOffset;
2565     Stream.EmitRecord(PP_MACRO_DIRECTIVE_HISTORY, Record);
2566     Record.clear();
2567   }
2568 
2569   /// Offsets of each of the macros into the bitstream, indexed by
2570   /// the local macro ID
2571   ///
2572   /// For each identifier that is associated with a macro, this map
2573   /// provides the offset into the bitstream where that macro is
2574   /// defined.
2575   std::vector<uint32_t> MacroOffsets;
2576 
2577   for (unsigned I = 0, N = MacroInfosToEmit.size(); I != N; ++I) {
2578     const IdentifierInfo *Name = MacroInfosToEmit[I].Name;
2579     MacroInfo *MI = MacroInfosToEmit[I].MI;
2580     MacroID ID = MacroInfosToEmit[I].ID;
2581 
2582     if (ID < FirstMacroID) {
2583       assert(0 && "Loaded MacroInfo entered MacroInfosToEmit ?");
2584       continue;
2585     }
2586 
2587     // Record the local offset of this macro.
2588     unsigned Index = ID - FirstMacroID;
2589     if (Index == MacroOffsets.size())
2590       MacroOffsets.push_back(Stream.GetCurrentBitNo());
2591     else {
2592       if (Index > MacroOffsets.size())
2593         MacroOffsets.resize(Index + 1);
2594 
2595       MacroOffsets[Index] = Stream.GetCurrentBitNo();
2596     }
2597 
2598     AddIdentifierRef(Name, Record);
2599     AddSourceLocation(MI->getDefinitionLoc(), Record);
2600     AddSourceLocation(MI->getDefinitionEndLoc(), Record);
2601     Record.push_back(MI->isUsed());
2602     Record.push_back(MI->isUsedForHeaderGuard());
2603     unsigned Code;
2604     if (MI->isObjectLike()) {
2605       Code = PP_MACRO_OBJECT_LIKE;
2606     } else {
2607       Code = PP_MACRO_FUNCTION_LIKE;
2608 
2609       Record.push_back(MI->isC99Varargs());
2610       Record.push_back(MI->isGNUVarargs());
2611       Record.push_back(MI->hasCommaPasting());
2612       Record.push_back(MI->getNumParams());
2613       for (const IdentifierInfo *Param : MI->params())
2614         AddIdentifierRef(Param, Record);
2615     }
2616 
2617     // If we have a detailed preprocessing record, record the macro definition
2618     // ID that corresponds to this macro.
2619     if (PPRec)
2620       Record.push_back(MacroDefinitions[PPRec->findMacroDefinition(MI)]);
2621 
2622     Stream.EmitRecord(Code, Record);
2623     Record.clear();
2624 
2625     // Emit the tokens array.
2626     for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) {
2627       // Note that we know that the preprocessor does not have any annotation
2628       // tokens in it because they are created by the parser, and thus can't
2629       // be in a macro definition.
2630       const Token &Tok = MI->getReplacementToken(TokNo);
2631       AddToken(Tok, Record);
2632       Stream.EmitRecord(PP_TOKEN, Record);
2633       Record.clear();
2634     }
2635     ++NumMacros;
2636   }
2637 
2638   Stream.ExitBlock();
2639 
2640   // Write the offsets table for macro IDs.
2641   using namespace llvm;
2642 
2643   auto Abbrev = std::make_shared<BitCodeAbbrev>();
2644   Abbrev->Add(BitCodeAbbrevOp(MACRO_OFFSET));
2645   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of macros
2646   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
2647   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2648 
2649   unsigned MacroOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2650   {
2651     RecordData::value_type Record[] = {MACRO_OFFSET, MacroOffsets.size(),
2652                                        FirstMacroID - NUM_PREDEF_MACRO_IDS};
2653     Stream.EmitRecordWithBlob(MacroOffsetAbbrev, Record, bytes(MacroOffsets));
2654   }
2655 }
2656 
2657 void ASTWriter::WritePreprocessorDetail(PreprocessingRecord &PPRec) {
2658   if (PPRec.local_begin() == PPRec.local_end())
2659     return;
2660 
2661   SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets;
2662 
2663   // Enter the preprocessor block.
2664   Stream.EnterSubblock(PREPROCESSOR_DETAIL_BLOCK_ID, 3);
2665 
2666   // If the preprocessor has a preprocessing record, emit it.
2667   unsigned NumPreprocessingRecords = 0;
2668   using namespace llvm;
2669 
2670   // Set up the abbreviation for
2671   unsigned InclusionAbbrev = 0;
2672   {
2673     auto Abbrev = std::make_shared<BitCodeAbbrev>();
2674     Abbrev->Add(BitCodeAbbrevOp(PPD_INCLUSION_DIRECTIVE));
2675     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // filename length
2676     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // in quotes
2677     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // kind
2678     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // imported module
2679     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2680     InclusionAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2681   }
2682 
2683   unsigned FirstPreprocessorEntityID
2684     = (Chain ? PPRec.getNumLoadedPreprocessedEntities() : 0)
2685     + NUM_PREDEF_PP_ENTITY_IDS;
2686   unsigned NextPreprocessorEntityID = FirstPreprocessorEntityID;
2687   RecordData Record;
2688   for (PreprocessingRecord::iterator E = PPRec.local_begin(),
2689                                   EEnd = PPRec.local_end();
2690        E != EEnd;
2691        (void)++E, ++NumPreprocessingRecords, ++NextPreprocessorEntityID) {
2692     Record.clear();
2693 
2694     PreprocessedEntityOffsets.push_back(
2695         PPEntityOffset((*E)->getSourceRange(), Stream.GetCurrentBitNo()));
2696 
2697     if (auto *MD = dyn_cast<MacroDefinitionRecord>(*E)) {
2698       // Record this macro definition's ID.
2699       MacroDefinitions[MD] = NextPreprocessorEntityID;
2700 
2701       AddIdentifierRef(MD->getName(), Record);
2702       Stream.EmitRecord(PPD_MACRO_DEFINITION, Record);
2703       continue;
2704     }
2705 
2706     if (auto *ME = dyn_cast<MacroExpansion>(*E)) {
2707       Record.push_back(ME->isBuiltinMacro());
2708       if (ME->isBuiltinMacro())
2709         AddIdentifierRef(ME->getName(), Record);
2710       else
2711         Record.push_back(MacroDefinitions[ME->getDefinition()]);
2712       Stream.EmitRecord(PPD_MACRO_EXPANSION, Record);
2713       continue;
2714     }
2715 
2716     if (auto *ID = dyn_cast<InclusionDirective>(*E)) {
2717       Record.push_back(PPD_INCLUSION_DIRECTIVE);
2718       Record.push_back(ID->getFileName().size());
2719       Record.push_back(ID->wasInQuotes());
2720       Record.push_back(static_cast<unsigned>(ID->getKind()));
2721       Record.push_back(ID->importedModule());
2722       SmallString<64> Buffer;
2723       Buffer += ID->getFileName();
2724       // Check that the FileEntry is not null because it was not resolved and
2725       // we create a PCH even with compiler errors.
2726       if (ID->getFile())
2727         Buffer += ID->getFile()->getName();
2728       Stream.EmitRecordWithBlob(InclusionAbbrev, Record, Buffer);
2729       continue;
2730     }
2731 
2732     llvm_unreachable("Unhandled PreprocessedEntity in ASTWriter");
2733   }
2734   Stream.ExitBlock();
2735 
2736   // Write the offsets table for the preprocessing record.
2737   if (NumPreprocessingRecords > 0) {
2738     assert(PreprocessedEntityOffsets.size() == NumPreprocessingRecords);
2739 
2740     // Write the offsets table for identifier IDs.
2741     using namespace llvm;
2742 
2743     auto Abbrev = std::make_shared<BitCodeAbbrev>();
2744     Abbrev->Add(BitCodeAbbrevOp(PPD_ENTITIES_OFFSETS));
2745     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first pp entity
2746     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2747     unsigned PPEOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2748 
2749     RecordData::value_type Record[] = {PPD_ENTITIES_OFFSETS,
2750                                        FirstPreprocessorEntityID -
2751                                            NUM_PREDEF_PP_ENTITY_IDS};
2752     Stream.EmitRecordWithBlob(PPEOffsetAbbrev, Record,
2753                               bytes(PreprocessedEntityOffsets));
2754   }
2755 
2756   // Write the skipped region table for the preprocessing record.
2757   ArrayRef<SourceRange> SkippedRanges = PPRec.getSkippedRanges();
2758   if (SkippedRanges.size() > 0) {
2759     std::vector<PPSkippedRange> SerializedSkippedRanges;
2760     SerializedSkippedRanges.reserve(SkippedRanges.size());
2761     for (auto const& Range : SkippedRanges)
2762       SerializedSkippedRanges.emplace_back(Range);
2763 
2764     using namespace llvm;
2765     auto Abbrev = std::make_shared<BitCodeAbbrev>();
2766     Abbrev->Add(BitCodeAbbrevOp(PPD_SKIPPED_RANGES));
2767     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2768     unsigned PPESkippedRangeAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2769 
2770     Record.clear();
2771     Record.push_back(PPD_SKIPPED_RANGES);
2772     Stream.EmitRecordWithBlob(PPESkippedRangeAbbrev, Record,
2773                               bytes(SerializedSkippedRanges));
2774   }
2775 }
2776 
2777 unsigned ASTWriter::getLocalOrImportedSubmoduleID(Module *Mod) {
2778   if (!Mod)
2779     return 0;
2780 
2781   llvm::DenseMap<Module *, unsigned>::iterator Known = SubmoduleIDs.find(Mod);
2782   if (Known != SubmoduleIDs.end())
2783     return Known->second;
2784 
2785   auto *Top = Mod->getTopLevelModule();
2786   if (Top != WritingModule &&
2787       (getLangOpts().CompilingPCH ||
2788        !Top->fullModuleNameIs(StringRef(getLangOpts().CurrentModule))))
2789     return 0;
2790 
2791   return SubmoduleIDs[Mod] = NextSubmoduleID++;
2792 }
2793 
2794 unsigned ASTWriter::getSubmoduleID(Module *Mod) {
2795   // FIXME: This can easily happen, if we have a reference to a submodule that
2796   // did not result in us loading a module file for that submodule. For
2797   // instance, a cross-top-level-module 'conflict' declaration will hit this.
2798   unsigned ID = getLocalOrImportedSubmoduleID(Mod);
2799   assert((ID || !Mod) &&
2800          "asked for module ID for non-local, non-imported module");
2801   return ID;
2802 }
2803 
2804 /// Compute the number of modules within the given tree (including the
2805 /// given module).
2806 static unsigned getNumberOfModules(Module *Mod) {
2807   unsigned ChildModules = 0;
2808   for (auto Sub = Mod->submodule_begin(), SubEnd = Mod->submodule_end();
2809        Sub != SubEnd; ++Sub)
2810     ChildModules += getNumberOfModules(*Sub);
2811 
2812   return ChildModules + 1;
2813 }
2814 
2815 void ASTWriter::WriteSubmodules(Module *WritingModule) {
2816   // Enter the submodule description block.
2817   Stream.EnterSubblock(SUBMODULE_BLOCK_ID, /*bits for abbreviations*/5);
2818 
2819   // Write the abbreviations needed for the submodules block.
2820   using namespace llvm;
2821 
2822   auto Abbrev = std::make_shared<BitCodeAbbrev>();
2823   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_DEFINITION));
2824   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID
2825   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Parent
2826   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Kind
2827   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2828   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsExplicit
2829   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsSystem
2830   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsExternC
2831   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferSubmodules...
2832   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExplicit...
2833   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExportWild...
2834   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ConfigMacrosExh...
2835   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ModuleMapIsPriv...
2836   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2837   unsigned DefinitionAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2838 
2839   Abbrev = std::make_shared<BitCodeAbbrev>();
2840   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_HEADER));
2841   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2842   unsigned UmbrellaAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2843 
2844   Abbrev = std::make_shared<BitCodeAbbrev>();
2845   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_HEADER));
2846   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2847   unsigned HeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2848 
2849   Abbrev = std::make_shared<BitCodeAbbrev>();
2850   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_TOPHEADER));
2851   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2852   unsigned TopHeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2853 
2854   Abbrev = std::make_shared<BitCodeAbbrev>();
2855   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_DIR));
2856   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2857   unsigned UmbrellaDirAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2858 
2859   Abbrev = std::make_shared<BitCodeAbbrev>();
2860   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_REQUIRES));
2861   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // State
2862   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));     // Feature
2863   unsigned RequiresAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2864 
2865   Abbrev = std::make_shared<BitCodeAbbrev>();
2866   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_EXCLUDED_HEADER));
2867   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2868   unsigned ExcludedHeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2869 
2870   Abbrev = std::make_shared<BitCodeAbbrev>();
2871   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_TEXTUAL_HEADER));
2872   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2873   unsigned TextualHeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2874 
2875   Abbrev = std::make_shared<BitCodeAbbrev>();
2876   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_PRIVATE_HEADER));
2877   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2878   unsigned PrivateHeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2879 
2880   Abbrev = std::make_shared<BitCodeAbbrev>();
2881   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_PRIVATE_TEXTUAL_HEADER));
2882   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2883   unsigned PrivateTextualHeaderAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2884 
2885   Abbrev = std::make_shared<BitCodeAbbrev>();
2886   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_LINK_LIBRARY));
2887   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2888   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));     // Name
2889   unsigned LinkLibraryAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2890 
2891   Abbrev = std::make_shared<BitCodeAbbrev>();
2892   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFIG_MACRO));
2893   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));    // Macro name
2894   unsigned ConfigMacroAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2895 
2896   Abbrev = std::make_shared<BitCodeAbbrev>();
2897   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFLICT));
2898   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6));  // Other module
2899   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));    // Message
2900   unsigned ConflictAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2901 
2902   Abbrev = std::make_shared<BitCodeAbbrev>();
2903   Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_EXPORT_AS));
2904   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));    // Macro name
2905   unsigned ExportAsAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
2906 
2907   // Write the submodule metadata block.
2908   RecordData::value_type Record[] = {
2909       getNumberOfModules(WritingModule),
2910       FirstSubmoduleID - NUM_PREDEF_SUBMODULE_IDS};
2911   Stream.EmitRecord(SUBMODULE_METADATA, Record);
2912 
2913   // Write all of the submodules.
2914   std::queue<Module *> Q;
2915   Q.push(WritingModule);
2916   while (!Q.empty()) {
2917     Module *Mod = Q.front();
2918     Q.pop();
2919     unsigned ID = getSubmoduleID(Mod);
2920 
2921     uint64_t ParentID = 0;
2922     if (Mod->Parent) {
2923       assert(SubmoduleIDs[Mod->Parent] && "Submodule parent not written?");
2924       ParentID = SubmoduleIDs[Mod->Parent];
2925     }
2926 
2927     // Emit the definition of the block.
2928     {
2929       RecordData::value_type Record[] = {SUBMODULE_DEFINITION,
2930                                          ID,
2931                                          ParentID,
2932                                          (RecordData::value_type)Mod->Kind,
2933                                          Mod->IsFramework,
2934                                          Mod->IsExplicit,
2935                                          Mod->IsSystem,
2936                                          Mod->IsExternC,
2937                                          Mod->InferSubmodules,
2938                                          Mod->InferExplicitSubmodules,
2939                                          Mod->InferExportWildcard,
2940                                          Mod->ConfigMacrosExhaustive,
2941                                          Mod->ModuleMapIsPrivate};
2942       Stream.EmitRecordWithBlob(DefinitionAbbrev, Record, Mod->Name);
2943     }
2944 
2945     // Emit the requirements.
2946     for (const auto &R : Mod->Requirements) {
2947       RecordData::value_type Record[] = {SUBMODULE_REQUIRES, R.second};
2948       Stream.EmitRecordWithBlob(RequiresAbbrev, Record, R.first);
2949     }
2950 
2951     // Emit the umbrella header, if there is one.
2952     if (auto UmbrellaHeader = Mod->getUmbrellaHeader()) {
2953       RecordData::value_type Record[] = {SUBMODULE_UMBRELLA_HEADER};
2954       Stream.EmitRecordWithBlob(UmbrellaAbbrev, Record,
2955                                 UmbrellaHeader.NameAsWritten);
2956     } else if (auto UmbrellaDir = Mod->getUmbrellaDir()) {
2957       RecordData::value_type Record[] = {SUBMODULE_UMBRELLA_DIR};
2958       Stream.EmitRecordWithBlob(UmbrellaDirAbbrev, Record,
2959                                 UmbrellaDir.NameAsWritten);
2960     }
2961 
2962     // Emit the headers.
2963     struct {
2964       unsigned RecordKind;
2965       unsigned Abbrev;
2966       Module::HeaderKind HeaderKind;
2967     } HeaderLists[] = {
2968       {SUBMODULE_HEADER, HeaderAbbrev, Module::HK_Normal},
2969       {SUBMODULE_TEXTUAL_HEADER, TextualHeaderAbbrev, Module::HK_Textual},
2970       {SUBMODULE_PRIVATE_HEADER, PrivateHeaderAbbrev, Module::HK_Private},
2971       {SUBMODULE_PRIVATE_TEXTUAL_HEADER, PrivateTextualHeaderAbbrev,
2972         Module::HK_PrivateTextual},
2973       {SUBMODULE_EXCLUDED_HEADER, ExcludedHeaderAbbrev, Module::HK_Excluded}
2974     };
2975     for (auto &HL : HeaderLists) {
2976       RecordData::value_type Record[] = {HL.RecordKind};
2977       for (auto &H : Mod->Headers[HL.HeaderKind])
2978         Stream.EmitRecordWithBlob(HL.Abbrev, Record, H.NameAsWritten);
2979     }
2980 
2981     // Emit the top headers.
2982     {
2983       auto TopHeaders = Mod->getTopHeaders(PP->getFileManager());
2984       RecordData::value_type Record[] = {SUBMODULE_TOPHEADER};
2985       for (auto *H : TopHeaders)
2986         Stream.EmitRecordWithBlob(TopHeaderAbbrev, Record, H->getName());
2987     }
2988 
2989     // Emit the imports.
2990     if (!Mod->Imports.empty()) {
2991       RecordData Record;
2992       for (auto *I : Mod->Imports)
2993         Record.push_back(getSubmoduleID(I));
2994       Stream.EmitRecord(SUBMODULE_IMPORTS, Record);
2995     }
2996 
2997     // Emit the exports.
2998     if (!Mod->Exports.empty()) {
2999       RecordData Record;
3000       for (const auto &E : Mod->Exports) {
3001         // FIXME: This may fail; we don't require that all exported modules
3002         // are local or imported.
3003         Record.push_back(getSubmoduleID(E.getPointer()));
3004         Record.push_back(E.getInt());
3005       }
3006       Stream.EmitRecord(SUBMODULE_EXPORTS, Record);
3007     }
3008 
3009     //FIXME: How do we emit the 'use'd modules?  They may not be submodules.
3010     // Might be unnecessary as use declarations are only used to build the
3011     // module itself.
3012 
3013     // Emit the link libraries.
3014     for (const auto &LL : Mod->LinkLibraries) {
3015       RecordData::value_type Record[] = {SUBMODULE_LINK_LIBRARY,
3016                                          LL.IsFramework};
3017       Stream.EmitRecordWithBlob(LinkLibraryAbbrev, Record, LL.Library);
3018     }
3019 
3020     // Emit the conflicts.
3021     for (const auto &C : Mod->Conflicts) {
3022       // FIXME: This may fail; we don't require that all conflicting modules
3023       // are local or imported.
3024       RecordData::value_type Record[] = {SUBMODULE_CONFLICT,
3025                                          getSubmoduleID(C.Other)};
3026       Stream.EmitRecordWithBlob(ConflictAbbrev, Record, C.Message);
3027     }
3028 
3029     // Emit the configuration macros.
3030     for (const auto &CM : Mod->ConfigMacros) {
3031       RecordData::value_type Record[] = {SUBMODULE_CONFIG_MACRO};
3032       Stream.EmitRecordWithBlob(ConfigMacroAbbrev, Record, CM);
3033     }
3034 
3035     // Emit the initializers, if any.
3036     RecordData Inits;
3037     for (Decl *D : Context->getModuleInitializers(Mod))
3038       Inits.push_back(GetDeclRef(D));
3039     if (!Inits.empty())
3040       Stream.EmitRecord(SUBMODULE_INITIALIZERS, Inits);
3041 
3042     // Emit the name of the re-exported module, if any.
3043     if (!Mod->ExportAsModule.empty()) {
3044       RecordData::value_type Record[] = {SUBMODULE_EXPORT_AS};
3045       Stream.EmitRecordWithBlob(ExportAsAbbrev, Record, Mod->ExportAsModule);
3046     }
3047 
3048     // Queue up the submodules of this module.
3049     for (auto *M : Mod->submodules())
3050       Q.push(M);
3051   }
3052 
3053   Stream.ExitBlock();
3054 
3055   assert((NextSubmoduleID - FirstSubmoduleID ==
3056           getNumberOfModules(WritingModule)) &&
3057          "Wrong # of submodules; found a reference to a non-local, "
3058          "non-imported submodule?");
3059 }
3060 
3061 void ASTWriter::WritePragmaDiagnosticMappings(const DiagnosticsEngine &Diag,
3062                                               bool isModule) {
3063   llvm::SmallDenseMap<const DiagnosticsEngine::DiagState *, unsigned, 64>
3064       DiagStateIDMap;
3065   unsigned CurrID = 0;
3066   RecordData Record;
3067 
3068   auto EncodeDiagStateFlags =
3069       [](const DiagnosticsEngine::DiagState *DS) -> unsigned {
3070     unsigned Result = (unsigned)DS->ExtBehavior;
3071     for (unsigned Val :
3072          {(unsigned)DS->IgnoreAllWarnings, (unsigned)DS->EnableAllWarnings,
3073           (unsigned)DS->WarningsAsErrors, (unsigned)DS->ErrorsAsFatal,
3074           (unsigned)DS->SuppressSystemWarnings})
3075       Result = (Result << 1) | Val;
3076     return Result;
3077   };
3078 
3079   unsigned Flags = EncodeDiagStateFlags(Diag.DiagStatesByLoc.FirstDiagState);
3080   Record.push_back(Flags);
3081 
3082   auto AddDiagState = [&](const DiagnosticsEngine::DiagState *State,
3083                           bool IncludeNonPragmaStates) {
3084     // Ensure that the diagnostic state wasn't modified since it was created.
3085     // We will not correctly round-trip this information otherwise.
3086     assert(Flags == EncodeDiagStateFlags(State) &&
3087            "diag state flags vary in single AST file");
3088 
3089     unsigned &DiagStateID = DiagStateIDMap[State];
3090     Record.push_back(DiagStateID);
3091 
3092     if (DiagStateID == 0) {
3093       DiagStateID = ++CurrID;
3094 
3095       // Add a placeholder for the number of mappings.
3096       auto SizeIdx = Record.size();
3097       Record.emplace_back();
3098       for (const auto &I : *State) {
3099         if (I.second.isPragma() || IncludeNonPragmaStates) {
3100           Record.push_back(I.first);
3101           Record.push_back(I.second.serialize());
3102         }
3103       }
3104       // Update the placeholder.
3105       Record[SizeIdx] = (Record.size() - SizeIdx) / 2;
3106     }
3107   };
3108 
3109   AddDiagState(Diag.DiagStatesByLoc.FirstDiagState, isModule);
3110 
3111   // Reserve a spot for the number of locations with state transitions.
3112   auto NumLocationsIdx = Record.size();
3113   Record.emplace_back();
3114 
3115   // Emit the state transitions.
3116   unsigned NumLocations = 0;
3117   for (auto &FileIDAndFile : Diag.DiagStatesByLoc.Files) {
3118     if (!FileIDAndFile.first.isValid() ||
3119         !FileIDAndFile.second.HasLocalTransitions)
3120       continue;
3121     ++NumLocations;
3122 
3123     SourceLocation Loc = Diag.SourceMgr->getComposedLoc(FileIDAndFile.first, 0);
3124     assert(!Loc.isInvalid() && "start loc for valid FileID is invalid");
3125     AddSourceLocation(Loc, Record);
3126 
3127     Record.push_back(FileIDAndFile.second.StateTransitions.size());
3128     for (auto &StatePoint : FileIDAndFile.second.StateTransitions) {
3129       Record.push_back(StatePoint.Offset);
3130       AddDiagState(StatePoint.State, false);
3131     }
3132   }
3133 
3134   // Backpatch the number of locations.
3135   Record[NumLocationsIdx] = NumLocations;
3136 
3137   // Emit CurDiagStateLoc.  Do it last in order to match source order.
3138   //
3139   // This also protects against a hypothetical corner case with simulating
3140   // -Werror settings for implicit modules in the ASTReader, where reading
3141   // CurDiagState out of context could change whether warning pragmas are
3142   // treated as errors.
3143   AddSourceLocation(Diag.DiagStatesByLoc.CurDiagStateLoc, Record);
3144   AddDiagState(Diag.DiagStatesByLoc.CurDiagState, false);
3145 
3146   Stream.EmitRecord(DIAG_PRAGMA_MAPPINGS, Record);
3147 }
3148 
3149 //===----------------------------------------------------------------------===//
3150 // Type Serialization
3151 //===----------------------------------------------------------------------===//
3152 
3153 /// Write the representation of a type to the AST stream.
3154 void ASTWriter::WriteType(QualType T) {
3155   TypeIdx &IdxRef = TypeIdxs[T];
3156   if (IdxRef.getIndex() == 0) // we haven't seen this type before.
3157     IdxRef = TypeIdx(NextTypeID++);
3158   TypeIdx Idx = IdxRef;
3159 
3160   assert(Idx.getIndex() >= FirstTypeID && "Re-writing a type from a prior AST");
3161 
3162   RecordData Record;
3163 
3164   // Emit the type's representation.
3165   ASTTypeWriter W(*this, Record);
3166   W.Visit(T);
3167   uint64_t Offset = W.Emit();
3168 
3169   // Record the offset for this type.
3170   unsigned Index = Idx.getIndex() - FirstTypeID;
3171   if (TypeOffsets.size() == Index)
3172     TypeOffsets.push_back(Offset);
3173   else if (TypeOffsets.size() < Index) {
3174     TypeOffsets.resize(Index + 1);
3175     TypeOffsets[Index] = Offset;
3176   } else {
3177     llvm_unreachable("Types emitted in wrong order");
3178   }
3179 }
3180 
3181 //===----------------------------------------------------------------------===//
3182 // Declaration Serialization
3183 //===----------------------------------------------------------------------===//
3184 
3185 /// Write the block containing all of the declaration IDs
3186 /// lexically declared within the given DeclContext.
3187 ///
3188 /// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
3189 /// bitstream, or 0 if no block was written.
3190 uint64_t ASTWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
3191                                                  DeclContext *DC) {
3192   if (DC->decls_empty())
3193     return 0;
3194 
3195   uint64_t Offset = Stream.GetCurrentBitNo();
3196   SmallVector<uint32_t, 128> KindDeclPairs;
3197   for (const auto *D : DC->decls()) {
3198     KindDeclPairs.push_back(D->getKind());
3199     KindDeclPairs.push_back(GetDeclRef(D));
3200   }
3201 
3202   ++NumLexicalDeclContexts;
3203   RecordData::value_type Record[] = {DECL_CONTEXT_LEXICAL};
3204   Stream.EmitRecordWithBlob(DeclContextLexicalAbbrev, Record,
3205                             bytes(KindDeclPairs));
3206   return Offset;
3207 }
3208 
3209 void ASTWriter::WriteTypeDeclOffsets() {
3210   using namespace llvm;
3211 
3212   // Write the type offsets array
3213   auto Abbrev = std::make_shared<BitCodeAbbrev>();
3214   Abbrev->Add(BitCodeAbbrevOp(TYPE_OFFSET));
3215   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types
3216   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base type index
3217   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block
3218   unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3219   {
3220     RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(),
3221                                        FirstTypeID - NUM_PREDEF_TYPE_IDS};
3222     Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets));
3223   }
3224 
3225   // Write the declaration offsets array
3226   Abbrev = std::make_shared<BitCodeAbbrev>();
3227   Abbrev->Add(BitCodeAbbrevOp(DECL_OFFSET));
3228   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations
3229   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base decl ID
3230   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block
3231   unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3232   {
3233     RecordData::value_type Record[] = {DECL_OFFSET, DeclOffsets.size(),
3234                                        FirstDeclID - NUM_PREDEF_DECL_IDS};
3235     Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, bytes(DeclOffsets));
3236   }
3237 }
3238 
3239 void ASTWriter::WriteFileDeclIDsMap() {
3240   using namespace llvm;
3241 
3242   SmallVector<std::pair<FileID, DeclIDInFileInfo *>, 64> SortedFileDeclIDs(
3243       FileDeclIDs.begin(), FileDeclIDs.end());
3244   llvm::sort(SortedFileDeclIDs, llvm::less_first());
3245 
3246   // Join the vectors of DeclIDs from all files.
3247   SmallVector<DeclID, 256> FileGroupedDeclIDs;
3248   for (auto &FileDeclEntry : SortedFileDeclIDs) {
3249     DeclIDInFileInfo &Info = *FileDeclEntry.second;
3250     Info.FirstDeclIndex = FileGroupedDeclIDs.size();
3251     for (auto &LocDeclEntry : Info.DeclIDs)
3252       FileGroupedDeclIDs.push_back(LocDeclEntry.second);
3253   }
3254 
3255   auto Abbrev = std::make_shared<BitCodeAbbrev>();
3256   Abbrev->Add(BitCodeAbbrevOp(FILE_SORTED_DECLS));
3257   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
3258   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3259   unsigned AbbrevCode = Stream.EmitAbbrev(std::move(Abbrev));
3260   RecordData::value_type Record[] = {FILE_SORTED_DECLS,
3261                                      FileGroupedDeclIDs.size()};
3262   Stream.EmitRecordWithBlob(AbbrevCode, Record, bytes(FileGroupedDeclIDs));
3263 }
3264 
3265 void ASTWriter::WriteComments() {
3266   Stream.EnterSubblock(COMMENTS_BLOCK_ID, 3);
3267   auto _ = llvm::make_scope_exit([this] { Stream.ExitBlock(); });
3268   if (!PP->getPreprocessorOpts().WriteCommentListToPCH)
3269     return;
3270   RecordData Record;
3271   for (const auto &FO : Context->Comments.OrderedComments) {
3272     for (const auto &OC : FO.second) {
3273       const RawComment *I = OC.second;
3274       Record.clear();
3275       AddSourceRange(I->getSourceRange(), Record);
3276       Record.push_back(I->getKind());
3277       Record.push_back(I->isTrailingComment());
3278       Record.push_back(I->isAlmostTrailingComment());
3279       Stream.EmitRecord(COMMENTS_RAW_COMMENT, Record);
3280     }
3281   }
3282 }
3283 
3284 //===----------------------------------------------------------------------===//
3285 // Global Method Pool and Selector Serialization
3286 //===----------------------------------------------------------------------===//
3287 
3288 namespace {
3289 
3290 // Trait used for the on-disk hash table used in the method pool.
3291 class ASTMethodPoolTrait {
3292   ASTWriter &Writer;
3293 
3294 public:
3295   using key_type = Selector;
3296   using key_type_ref = key_type;
3297 
3298   struct data_type {
3299     SelectorID ID;
3300     ObjCMethodList Instance, Factory;
3301   };
3302   using data_type_ref = const data_type &;
3303 
3304   using hash_value_type = unsigned;
3305   using offset_type = unsigned;
3306 
3307   explicit ASTMethodPoolTrait(ASTWriter &Writer) : Writer(Writer) {}
3308 
3309   static hash_value_type ComputeHash(Selector Sel) {
3310     return serialization::ComputeHash(Sel);
3311   }
3312 
3313   std::pair<unsigned, unsigned>
3314     EmitKeyDataLength(raw_ostream& Out, Selector Sel,
3315                       data_type_ref Methods) {
3316     using namespace llvm::support;
3317 
3318     endian::Writer LE(Out, little);
3319     unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4);
3320     LE.write<uint16_t>(KeyLen);
3321     unsigned DataLen = 4 + 2 + 2; // 2 bytes for each of the method counts
3322     for (const ObjCMethodList *Method = &Methods.Instance; Method;
3323          Method = Method->getNext())
3324       if (Method->getMethod())
3325         DataLen += 4;
3326     for (const ObjCMethodList *Method = &Methods.Factory; Method;
3327          Method = Method->getNext())
3328       if (Method->getMethod())
3329         DataLen += 4;
3330     LE.write<uint16_t>(DataLen);
3331     return std::make_pair(KeyLen, DataLen);
3332   }
3333 
3334   void EmitKey(raw_ostream& Out, Selector Sel, unsigned) {
3335     using namespace llvm::support;
3336 
3337     endian::Writer LE(Out, little);
3338     uint64_t Start = Out.tell();
3339     assert((Start >> 32) == 0 && "Selector key offset too large");
3340     Writer.SetSelectorOffset(Sel, Start);
3341     unsigned N = Sel.getNumArgs();
3342     LE.write<uint16_t>(N);
3343     if (N == 0)
3344       N = 1;
3345     for (unsigned I = 0; I != N; ++I)
3346       LE.write<uint32_t>(
3347           Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I)));
3348   }
3349 
3350   void EmitData(raw_ostream& Out, key_type_ref,
3351                 data_type_ref Methods, unsigned DataLen) {
3352     using namespace llvm::support;
3353 
3354     endian::Writer LE(Out, little);
3355     uint64_t Start = Out.tell(); (void)Start;
3356     LE.write<uint32_t>(Methods.ID);
3357     unsigned NumInstanceMethods = 0;
3358     for (const ObjCMethodList *Method = &Methods.Instance; Method;
3359          Method = Method->getNext())
3360       if (Method->getMethod())
3361         ++NumInstanceMethods;
3362 
3363     unsigned NumFactoryMethods = 0;
3364     for (const ObjCMethodList *Method = &Methods.Factory; Method;
3365          Method = Method->getNext())
3366       if (Method->getMethod())
3367         ++NumFactoryMethods;
3368 
3369     unsigned InstanceBits = Methods.Instance.getBits();
3370     assert(InstanceBits < 4);
3371     unsigned InstanceHasMoreThanOneDeclBit =
3372         Methods.Instance.hasMoreThanOneDecl();
3373     unsigned FullInstanceBits = (NumInstanceMethods << 3) |
3374                                 (InstanceHasMoreThanOneDeclBit << 2) |
3375                                 InstanceBits;
3376     unsigned FactoryBits = Methods.Factory.getBits();
3377     assert(FactoryBits < 4);
3378     unsigned FactoryHasMoreThanOneDeclBit =
3379         Methods.Factory.hasMoreThanOneDecl();
3380     unsigned FullFactoryBits = (NumFactoryMethods << 3) |
3381                                (FactoryHasMoreThanOneDeclBit << 2) |
3382                                FactoryBits;
3383     LE.write<uint16_t>(FullInstanceBits);
3384     LE.write<uint16_t>(FullFactoryBits);
3385     for (const ObjCMethodList *Method = &Methods.Instance; Method;
3386          Method = Method->getNext())
3387       if (Method->getMethod())
3388         LE.write<uint32_t>(Writer.getDeclID(Method->getMethod()));
3389     for (const ObjCMethodList *Method = &Methods.Factory; Method;
3390          Method = Method->getNext())
3391       if (Method->getMethod())
3392         LE.write<uint32_t>(Writer.getDeclID(Method->getMethod()));
3393 
3394     assert(Out.tell() - Start == DataLen && "Data length is wrong");
3395   }
3396 };
3397 
3398 } // namespace
3399 
3400 /// Write ObjC data: selectors and the method pool.
3401 ///
3402 /// The method pool contains both instance and factory methods, stored
3403 /// in an on-disk hash table indexed by the selector. The hash table also
3404 /// contains an empty entry for every other selector known to Sema.
3405 void ASTWriter::WriteSelectors(Sema &SemaRef) {
3406   using namespace llvm;
3407 
3408   // Do we have to do anything at all?
3409   if (SemaRef.MethodPool.empty() && SelectorIDs.empty())
3410     return;
3411   unsigned NumTableEntries = 0;
3412   // Create and write out the blob that contains selectors and the method pool.
3413   {
3414     llvm::OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator;
3415     ASTMethodPoolTrait Trait(*this);
3416 
3417     // Create the on-disk hash table representation. We walk through every
3418     // selector we've seen and look it up in the method pool.
3419     SelectorOffsets.resize(NextSelectorID - FirstSelectorID);
3420     for (auto &SelectorAndID : SelectorIDs) {
3421       Selector S = SelectorAndID.first;
3422       SelectorID ID = SelectorAndID.second;
3423       Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S);
3424       ASTMethodPoolTrait::data_type Data = {
3425         ID,
3426         ObjCMethodList(),
3427         ObjCMethodList()
3428       };
3429       if (F != SemaRef.MethodPool.end()) {
3430         Data.Instance = F->second.first;
3431         Data.Factory = F->second.second;
3432       }
3433       // Only write this selector if it's not in an existing AST or something
3434       // changed.
3435       if (Chain && ID < FirstSelectorID) {
3436         // Selector already exists. Did it change?
3437         bool changed = false;
3438         for (ObjCMethodList *M = &Data.Instance;
3439              !changed && M && M->getMethod(); M = M->getNext()) {
3440           if (!M->getMethod()->isFromASTFile())
3441             changed = true;
3442         }
3443         for (ObjCMethodList *M = &Data.Factory; !changed && M && M->getMethod();
3444              M = M->getNext()) {
3445           if (!M->getMethod()->isFromASTFile())
3446             changed = true;
3447         }
3448         if (!changed)
3449           continue;
3450       } else if (Data.Instance.getMethod() || Data.Factory.getMethod()) {
3451         // A new method pool entry.
3452         ++NumTableEntries;
3453       }
3454       Generator.insert(S, Data, Trait);
3455     }
3456 
3457     // Create the on-disk hash table in a buffer.
3458     SmallString<4096> MethodPool;
3459     uint32_t BucketOffset;
3460     {
3461       using namespace llvm::support;
3462 
3463       ASTMethodPoolTrait Trait(*this);
3464       llvm::raw_svector_ostream Out(MethodPool);
3465       // Make sure that no bucket is at offset 0
3466       endian::write<uint32_t>(Out, 0, little);
3467       BucketOffset = Generator.Emit(Out, Trait);
3468     }
3469 
3470     // Create a blob abbreviation
3471     auto Abbrev = std::make_shared<BitCodeAbbrev>();
3472     Abbrev->Add(BitCodeAbbrevOp(METHOD_POOL));
3473     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
3474     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
3475     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3476     unsigned MethodPoolAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3477 
3478     // Write the method pool
3479     {
3480       RecordData::value_type Record[] = {METHOD_POOL, BucketOffset,
3481                                          NumTableEntries};
3482       Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool);
3483     }
3484 
3485     // Create a blob abbreviation for the selector table offsets.
3486     Abbrev = std::make_shared<BitCodeAbbrev>();
3487     Abbrev->Add(BitCodeAbbrevOp(SELECTOR_OFFSETS));
3488     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size
3489     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
3490     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3491     unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3492 
3493     // Write the selector offsets table.
3494     {
3495       RecordData::value_type Record[] = {
3496           SELECTOR_OFFSETS, SelectorOffsets.size(),
3497           FirstSelectorID - NUM_PREDEF_SELECTOR_IDS};
3498       Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record,
3499                                 bytes(SelectorOffsets));
3500     }
3501   }
3502 }
3503 
3504 /// Write the selectors referenced in @selector expression into AST file.
3505 void ASTWriter::WriteReferencedSelectorsPool(Sema &SemaRef) {
3506   using namespace llvm;
3507 
3508   if (SemaRef.ReferencedSelectors.empty())
3509     return;
3510 
3511   RecordData Record;
3512   ASTRecordWriter Writer(*this, Record);
3513 
3514   // Note: this writes out all references even for a dependent AST. But it is
3515   // very tricky to fix, and given that @selector shouldn't really appear in
3516   // headers, probably not worth it. It's not a correctness issue.
3517   for (auto &SelectorAndLocation : SemaRef.ReferencedSelectors) {
3518     Selector Sel = SelectorAndLocation.first;
3519     SourceLocation Loc = SelectorAndLocation.second;
3520     Writer.AddSelectorRef(Sel);
3521     Writer.AddSourceLocation(Loc);
3522   }
3523   Writer.Emit(REFERENCED_SELECTOR_POOL);
3524 }
3525 
3526 //===----------------------------------------------------------------------===//
3527 // Identifier Table Serialization
3528 //===----------------------------------------------------------------------===//
3529 
3530 /// Determine the declaration that should be put into the name lookup table to
3531 /// represent the given declaration in this module. This is usually D itself,
3532 /// but if D was imported and merged into a local declaration, we want the most
3533 /// recent local declaration instead. The chosen declaration will be the most
3534 /// recent declaration in any module that imports this one.
3535 static NamedDecl *getDeclForLocalLookup(const LangOptions &LangOpts,
3536                                         NamedDecl *D) {
3537   if (!LangOpts.Modules || !D->isFromASTFile())
3538     return D;
3539 
3540   if (Decl *Redecl = D->getPreviousDecl()) {
3541     // For Redeclarable decls, a prior declaration might be local.
3542     for (; Redecl; Redecl = Redecl->getPreviousDecl()) {
3543       // If we find a local decl, we're done.
3544       if (!Redecl->isFromASTFile()) {
3545         // Exception: in very rare cases (for injected-class-names), not all
3546         // redeclarations are in the same semantic context. Skip ones in a
3547         // different context. They don't go in this lookup table at all.
3548         if (!Redecl->getDeclContext()->getRedeclContext()->Equals(
3549                 D->getDeclContext()->getRedeclContext()))
3550           continue;
3551         return cast<NamedDecl>(Redecl);
3552       }
3553 
3554       // If we find a decl from a (chained-)PCH stop since we won't find a
3555       // local one.
3556       if (Redecl->getOwningModuleID() == 0)
3557         break;
3558     }
3559   } else if (Decl *First = D->getCanonicalDecl()) {
3560     // For Mergeable decls, the first decl might be local.
3561     if (!First->isFromASTFile())
3562       return cast<NamedDecl>(First);
3563   }
3564 
3565   // All declarations are imported. Our most recent declaration will also be
3566   // the most recent one in anyone who imports us.
3567   return D;
3568 }
3569 
3570 namespace {
3571 
3572 class ASTIdentifierTableTrait {
3573   ASTWriter &Writer;
3574   Preprocessor &PP;
3575   IdentifierResolver &IdResolver;
3576   bool IsModule;
3577   bool NeedDecls;
3578   ASTWriter::RecordData *InterestingIdentifierOffsets;
3579 
3580   /// Determines whether this is an "interesting" identifier that needs a
3581   /// full IdentifierInfo structure written into the hash table. Notably, this
3582   /// doesn't check whether the name has macros defined; use PublicMacroIterator
3583   /// to check that.
3584   bool isInterestingIdentifier(const IdentifierInfo *II, uint64_t MacroOffset) {
3585     if (MacroOffset ||
3586         II->isPoisoned() ||
3587         (IsModule ? II->hasRevertedBuiltin() : II->getObjCOrBuiltinID()) ||
3588         II->hasRevertedTokenIDToIdentifier() ||
3589         (NeedDecls && II->getFETokenInfo()))
3590       return true;
3591 
3592     return false;
3593   }
3594 
3595 public:
3596   using key_type = IdentifierInfo *;
3597   using key_type_ref = key_type;
3598 
3599   using data_type = IdentID;
3600   using data_type_ref = data_type;
3601 
3602   using hash_value_type = unsigned;
3603   using offset_type = unsigned;
3604 
3605   ASTIdentifierTableTrait(ASTWriter &Writer, Preprocessor &PP,
3606                           IdentifierResolver &IdResolver, bool IsModule,
3607                           ASTWriter::RecordData *InterestingIdentifierOffsets)
3608       : Writer(Writer), PP(PP), IdResolver(IdResolver), IsModule(IsModule),
3609         NeedDecls(!IsModule || !Writer.getLangOpts().CPlusPlus),
3610         InterestingIdentifierOffsets(InterestingIdentifierOffsets) {}
3611 
3612   bool needDecls() const { return NeedDecls; }
3613 
3614   static hash_value_type ComputeHash(const IdentifierInfo* II) {
3615     return llvm::djbHash(II->getName());
3616   }
3617 
3618   bool isInterestingIdentifier(const IdentifierInfo *II) {
3619     auto MacroOffset = Writer.getMacroDirectivesOffset(II);
3620     return isInterestingIdentifier(II, MacroOffset);
3621   }
3622 
3623   bool isInterestingNonMacroIdentifier(const IdentifierInfo *II) {
3624     return isInterestingIdentifier(II, 0);
3625   }
3626 
3627   std::pair<unsigned, unsigned>
3628   EmitKeyDataLength(raw_ostream& Out, IdentifierInfo* II, IdentID ID) {
3629     unsigned KeyLen = II->getLength() + 1;
3630     unsigned DataLen = 4; // 4 bytes for the persistent ID << 1
3631     auto MacroOffset = Writer.getMacroDirectivesOffset(II);
3632     if (isInterestingIdentifier(II, MacroOffset)) {
3633       DataLen += 2; // 2 bytes for builtin ID
3634       DataLen += 2; // 2 bytes for flags
3635       if (MacroOffset)
3636         DataLen += 4; // MacroDirectives offset.
3637 
3638       if (NeedDecls) {
3639         for (IdentifierResolver::iterator D = IdResolver.begin(II),
3640                                        DEnd = IdResolver.end();
3641              D != DEnd; ++D)
3642           DataLen += 4;
3643       }
3644     }
3645 
3646     using namespace llvm::support;
3647 
3648     endian::Writer LE(Out, little);
3649 
3650     assert((uint16_t)DataLen == DataLen && (uint16_t)KeyLen == KeyLen);
3651     LE.write<uint16_t>(DataLen);
3652     // We emit the key length after the data length so that every
3653     // string is preceded by a 16-bit length. This matches the PTH
3654     // format for storing identifiers.
3655     LE.write<uint16_t>(KeyLen);
3656     return std::make_pair(KeyLen, DataLen);
3657   }
3658 
3659   void EmitKey(raw_ostream& Out, const IdentifierInfo* II,
3660                unsigned KeyLen) {
3661     // Record the location of the key data.  This is used when generating
3662     // the mapping from persistent IDs to strings.
3663     Writer.SetIdentifierOffset(II, Out.tell());
3664 
3665     // Emit the offset of the key/data length information to the interesting
3666     // identifiers table if necessary.
3667     if (InterestingIdentifierOffsets && isInterestingIdentifier(II))
3668       InterestingIdentifierOffsets->push_back(Out.tell() - 4);
3669 
3670     Out.write(II->getNameStart(), KeyLen);
3671   }
3672 
3673   void EmitData(raw_ostream& Out, IdentifierInfo* II,
3674                 IdentID ID, unsigned) {
3675     using namespace llvm::support;
3676 
3677     endian::Writer LE(Out, little);
3678 
3679     auto MacroOffset = Writer.getMacroDirectivesOffset(II);
3680     if (!isInterestingIdentifier(II, MacroOffset)) {
3681       LE.write<uint32_t>(ID << 1);
3682       return;
3683     }
3684 
3685     LE.write<uint32_t>((ID << 1) | 0x01);
3686     uint32_t Bits = (uint32_t)II->getObjCOrBuiltinID();
3687     assert((Bits & 0xffff) == Bits && "ObjCOrBuiltinID too big for ASTReader.");
3688     LE.write<uint16_t>(Bits);
3689     Bits = 0;
3690     bool HadMacroDefinition = MacroOffset != 0;
3691     Bits = (Bits << 1) | unsigned(HadMacroDefinition);
3692     Bits = (Bits << 1) | unsigned(II->isExtensionToken());
3693     Bits = (Bits << 1) | unsigned(II->isPoisoned());
3694     Bits = (Bits << 1) | unsigned(II->hasRevertedBuiltin());
3695     Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier());
3696     Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword());
3697     LE.write<uint16_t>(Bits);
3698 
3699     if (HadMacroDefinition)
3700       LE.write<uint32_t>(MacroOffset);
3701 
3702     if (NeedDecls) {
3703       // Emit the declaration IDs in reverse order, because the
3704       // IdentifierResolver provides the declarations as they would be
3705       // visible (e.g., the function "stat" would come before the struct
3706       // "stat"), but the ASTReader adds declarations to the end of the list
3707       // (so we need to see the struct "stat" before the function "stat").
3708       // Only emit declarations that aren't from a chained PCH, though.
3709       SmallVector<NamedDecl *, 16> Decls(IdResolver.begin(II),
3710                                          IdResolver.end());
3711       for (SmallVectorImpl<NamedDecl *>::reverse_iterator D = Decls.rbegin(),
3712                                                           DEnd = Decls.rend();
3713            D != DEnd; ++D)
3714         LE.write<uint32_t>(
3715             Writer.getDeclID(getDeclForLocalLookup(PP.getLangOpts(), *D)));
3716     }
3717   }
3718 };
3719 
3720 } // namespace
3721 
3722 /// Write the identifier table into the AST file.
3723 ///
3724 /// The identifier table consists of a blob containing string data
3725 /// (the actual identifiers themselves) and a separate "offsets" index
3726 /// that maps identifier IDs to locations within the blob.
3727 void ASTWriter::WriteIdentifierTable(Preprocessor &PP,
3728                                      IdentifierResolver &IdResolver,
3729                                      bool IsModule) {
3730   using namespace llvm;
3731 
3732   RecordData InterestingIdents;
3733 
3734   // Create and write out the blob that contains the identifier
3735   // strings.
3736   {
3737     llvm::OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator;
3738     ASTIdentifierTableTrait Trait(
3739         *this, PP, IdResolver, IsModule,
3740         (getLangOpts().CPlusPlus && IsModule) ? &InterestingIdents : nullptr);
3741 
3742     // Look for any identifiers that were named while processing the
3743     // headers, but are otherwise not needed. We add these to the hash
3744     // table to enable checking of the predefines buffer in the case
3745     // where the user adds new macro definitions when building the AST
3746     // file.
3747     SmallVector<const IdentifierInfo *, 128> IIs;
3748     for (const auto &ID : PP.getIdentifierTable())
3749       IIs.push_back(ID.second);
3750     // Sort the identifiers lexicographically before getting them references so
3751     // that their order is stable.
3752     llvm::sort(IIs, llvm::deref<std::less<>>());
3753     for (const IdentifierInfo *II : IIs)
3754       if (Trait.isInterestingNonMacroIdentifier(II))
3755         getIdentifierRef(II);
3756 
3757     // Create the on-disk hash table representation. We only store offsets
3758     // for identifiers that appear here for the first time.
3759     IdentifierOffsets.resize(NextIdentID - FirstIdentID);
3760     for (auto IdentIDPair : IdentifierIDs) {
3761       auto *II = const_cast<IdentifierInfo *>(IdentIDPair.first);
3762       IdentID ID = IdentIDPair.second;
3763       assert(II && "NULL identifier in identifier table");
3764       // Write out identifiers if either the ID is local or the identifier has
3765       // changed since it was loaded.
3766       if (ID >= FirstIdentID || !Chain || !II->isFromAST()
3767           || II->hasChangedSinceDeserialization() ||
3768           (Trait.needDecls() &&
3769            II->hasFETokenInfoChangedSinceDeserialization()))
3770         Generator.insert(II, ID, Trait);
3771     }
3772 
3773     // Create the on-disk hash table in a buffer.
3774     SmallString<4096> IdentifierTable;
3775     uint32_t BucketOffset;
3776     {
3777       using namespace llvm::support;
3778 
3779       llvm::raw_svector_ostream Out(IdentifierTable);
3780       // Make sure that no bucket is at offset 0
3781       endian::write<uint32_t>(Out, 0, little);
3782       BucketOffset = Generator.Emit(Out, Trait);
3783     }
3784 
3785     // Create a blob abbreviation
3786     auto Abbrev = std::make_shared<BitCodeAbbrev>();
3787     Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_TABLE));
3788     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
3789     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3790     unsigned IDTableAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3791 
3792     // Write the identifier table
3793     RecordData::value_type Record[] = {IDENTIFIER_TABLE, BucketOffset};
3794     Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable);
3795   }
3796 
3797   // Write the offsets table for identifier IDs.
3798   auto Abbrev = std::make_shared<BitCodeAbbrev>();
3799   Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_OFFSET));
3800   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers
3801   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
3802   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3803   unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
3804 
3805 #ifndef NDEBUG
3806   for (unsigned I = 0, N = IdentifierOffsets.size(); I != N; ++I)
3807     assert(IdentifierOffsets[I] && "Missing identifier offset?");
3808 #endif
3809 
3810   RecordData::value_type Record[] = {IDENTIFIER_OFFSET,
3811                                      IdentifierOffsets.size(),
3812                                      FirstIdentID - NUM_PREDEF_IDENT_IDS};
3813   Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record,
3814                             bytes(IdentifierOffsets));
3815 
3816   // In C++, write the list of interesting identifiers (those that are
3817   // defined as macros, poisoned, or similar unusual things).
3818   if (!InterestingIdents.empty())
3819     Stream.EmitRecord(INTERESTING_IDENTIFIERS, InterestingIdents);
3820 }
3821 
3822 //===----------------------------------------------------------------------===//
3823 // DeclContext's Name Lookup Table Serialization
3824 //===----------------------------------------------------------------------===//
3825 
3826 namespace {
3827 
3828 // Trait used for the on-disk hash table used in the method pool.
3829 class ASTDeclContextNameLookupTrait {
3830   ASTWriter &Writer;
3831   llvm::SmallVector<DeclID, 64> DeclIDs;
3832 
3833 public:
3834   using key_type = DeclarationNameKey;
3835   using key_type_ref = key_type;
3836 
3837   /// A start and end index into DeclIDs, representing a sequence of decls.
3838   using data_type = std::pair<unsigned, unsigned>;
3839   using data_type_ref = const data_type &;
3840 
3841   using hash_value_type = unsigned;
3842   using offset_type = unsigned;
3843 
3844   explicit ASTDeclContextNameLookupTrait(ASTWriter &Writer) : Writer(Writer) {}
3845 
3846   template<typename Coll>
3847   data_type getData(const Coll &Decls) {
3848     unsigned Start = DeclIDs.size();
3849     for (NamedDecl *D : Decls) {
3850       DeclIDs.push_back(
3851           Writer.GetDeclRef(getDeclForLocalLookup(Writer.getLangOpts(), D)));
3852     }
3853     return std::make_pair(Start, DeclIDs.size());
3854   }
3855 
3856   data_type ImportData(const reader::ASTDeclContextNameLookupTrait::data_type &FromReader) {
3857     unsigned Start = DeclIDs.size();
3858     for (auto ID : FromReader)
3859       DeclIDs.push_back(ID);
3860     return std::make_pair(Start, DeclIDs.size());
3861   }
3862 
3863   static bool EqualKey(key_type_ref a, key_type_ref b) {
3864     return a == b;
3865   }
3866 
3867   hash_value_type ComputeHash(DeclarationNameKey Name) {
3868     return Name.getHash();
3869   }
3870 
3871   void EmitFileRef(raw_ostream &Out, ModuleFile *F) const {
3872     assert(Writer.hasChain() &&
3873            "have reference to loaded module file but no chain?");
3874 
3875     using namespace llvm::support;
3876 
3877     endian::write<uint32_t>(Out, Writer.getChain()->getModuleFileID(F), little);
3878   }
3879 
3880   std::pair<unsigned, unsigned> EmitKeyDataLength(raw_ostream &Out,
3881                                                   DeclarationNameKey Name,
3882                                                   data_type_ref Lookup) {
3883     using namespace llvm::support;
3884 
3885     endian::Writer LE(Out, little);
3886     unsigned KeyLen = 1;
3887     switch (Name.getKind()) {
3888     case DeclarationName::Identifier:
3889     case DeclarationName::ObjCZeroArgSelector:
3890     case DeclarationName::ObjCOneArgSelector:
3891     case DeclarationName::ObjCMultiArgSelector:
3892     case DeclarationName::CXXLiteralOperatorName:
3893     case DeclarationName::CXXDeductionGuideName:
3894       KeyLen += 4;
3895       break;
3896     case DeclarationName::CXXOperatorName:
3897       KeyLen += 1;
3898       break;
3899     case DeclarationName::CXXConstructorName:
3900     case DeclarationName::CXXDestructorName:
3901     case DeclarationName::CXXConversionFunctionName:
3902     case DeclarationName::CXXUsingDirective:
3903       break;
3904     }
3905     LE.write<uint16_t>(KeyLen);
3906 
3907     // 4 bytes for each DeclID.
3908     unsigned DataLen = 4 * (Lookup.second - Lookup.first);
3909     assert(uint16_t(DataLen) == DataLen &&
3910            "too many decls for serialized lookup result");
3911     LE.write<uint16_t>(DataLen);
3912 
3913     return std::make_pair(KeyLen, DataLen);
3914   }
3915 
3916   void EmitKey(raw_ostream &Out, DeclarationNameKey Name, unsigned) {
3917     using namespace llvm::support;
3918 
3919     endian::Writer LE(Out, little);
3920     LE.write<uint8_t>(Name.getKind());
3921     switch (Name.getKind()) {
3922     case DeclarationName::Identifier:
3923     case DeclarationName::CXXLiteralOperatorName:
3924     case DeclarationName::CXXDeductionGuideName:
3925       LE.write<uint32_t>(Writer.getIdentifierRef(Name.getIdentifier()));
3926       return;
3927     case DeclarationName::ObjCZeroArgSelector:
3928     case DeclarationName::ObjCOneArgSelector:
3929     case DeclarationName::ObjCMultiArgSelector:
3930       LE.write<uint32_t>(Writer.getSelectorRef(Name.getSelector()));
3931       return;
3932     case DeclarationName::CXXOperatorName:
3933       assert(Name.getOperatorKind() < NUM_OVERLOADED_OPERATORS &&
3934              "Invalid operator?");
3935       LE.write<uint8_t>(Name.getOperatorKind());
3936       return;
3937     case DeclarationName::CXXConstructorName:
3938     case DeclarationName::CXXDestructorName:
3939     case DeclarationName::CXXConversionFunctionName:
3940     case DeclarationName::CXXUsingDirective:
3941       return;
3942     }
3943 
3944     llvm_unreachable("Invalid name kind?");
3945   }
3946 
3947   void EmitData(raw_ostream &Out, key_type_ref, data_type Lookup,
3948                 unsigned DataLen) {
3949     using namespace llvm::support;
3950 
3951     endian::Writer LE(Out, little);
3952     uint64_t Start = Out.tell(); (void)Start;
3953     for (unsigned I = Lookup.first, N = Lookup.second; I != N; ++I)
3954       LE.write<uint32_t>(DeclIDs[I]);
3955     assert(Out.tell() - Start == DataLen && "Data length is wrong");
3956   }
3957 };
3958 
3959 } // namespace
3960 
3961 bool ASTWriter::isLookupResultExternal(StoredDeclsList &Result,
3962                                        DeclContext *DC) {
3963   return Result.hasExternalDecls() &&
3964          DC->hasNeedToReconcileExternalVisibleStorage();
3965 }
3966 
3967 bool ASTWriter::isLookupResultEntirelyExternal(StoredDeclsList &Result,
3968                                                DeclContext *DC) {
3969   for (auto *D : Result.getLookupResult())
3970     if (!getDeclForLocalLookup(getLangOpts(), D)->isFromASTFile())
3971       return false;
3972 
3973   return true;
3974 }
3975 
3976 void
3977 ASTWriter::GenerateNameLookupTable(const DeclContext *ConstDC,
3978                                    llvm::SmallVectorImpl<char> &LookupTable) {
3979   assert(!ConstDC->hasLazyLocalLexicalLookups() &&
3980          !ConstDC->hasLazyExternalLexicalLookups() &&
3981          "must call buildLookups first");
3982 
3983   // FIXME: We need to build the lookups table, which is logically const.
3984   auto *DC = const_cast<DeclContext*>(ConstDC);
3985   assert(DC == DC->getPrimaryContext() && "only primary DC has lookup table");
3986 
3987   // Create the on-disk hash table representation.
3988   MultiOnDiskHashTableGenerator<reader::ASTDeclContextNameLookupTrait,
3989                                 ASTDeclContextNameLookupTrait> Generator;
3990   ASTDeclContextNameLookupTrait Trait(*this);
3991 
3992   // The first step is to collect the declaration names which we need to
3993   // serialize into the name lookup table, and to collect them in a stable
3994   // order.
3995   SmallVector<DeclarationName, 16> Names;
3996 
3997   // We also build up small sets of the constructor and conversion function
3998   // names which are visible.
3999   llvm::SmallSet<DeclarationName, 8> ConstructorNameSet, ConversionNameSet;
4000 
4001   for (auto &Lookup : *DC->buildLookup()) {
4002     auto &Name = Lookup.first;
4003     auto &Result = Lookup.second;
4004 
4005     // If there are no local declarations in our lookup result, we
4006     // don't need to write an entry for the name at all. If we can't
4007     // write out a lookup set without performing more deserialization,
4008     // just skip this entry.
4009     if (isLookupResultExternal(Result, DC) &&
4010         isLookupResultEntirelyExternal(Result, DC))
4011       continue;
4012 
4013     // We also skip empty results. If any of the results could be external and
4014     // the currently available results are empty, then all of the results are
4015     // external and we skip it above. So the only way we get here with an empty
4016     // results is when no results could have been external *and* we have
4017     // external results.
4018     //
4019     // FIXME: While we might want to start emitting on-disk entries for negative
4020     // lookups into a decl context as an optimization, today we *have* to skip
4021     // them because there are names with empty lookup results in decl contexts
4022     // which we can't emit in any stable ordering: we lookup constructors and
4023     // conversion functions in the enclosing namespace scope creating empty
4024     // results for them. This in almost certainly a bug in Clang's name lookup,
4025     // but that is likely to be hard or impossible to fix and so we tolerate it
4026     // here by omitting lookups with empty results.
4027     if (Lookup.second.getLookupResult().empty())
4028       continue;
4029 
4030     switch (Lookup.first.getNameKind()) {
4031     default:
4032       Names.push_back(Lookup.first);
4033       break;
4034 
4035     case DeclarationName::CXXConstructorName:
4036       assert(isa<CXXRecordDecl>(DC) &&
4037              "Cannot have a constructor name outside of a class!");
4038       ConstructorNameSet.insert(Name);
4039       break;
4040 
4041     case DeclarationName::CXXConversionFunctionName:
4042       assert(isa<CXXRecordDecl>(DC) &&
4043              "Cannot have a conversion function name outside of a class!");
4044       ConversionNameSet.insert(Name);
4045       break;
4046     }
4047   }
4048 
4049   // Sort the names into a stable order.
4050   llvm::sort(Names);
4051 
4052   if (auto *D = dyn_cast<CXXRecordDecl>(DC)) {
4053     // We need to establish an ordering of constructor and conversion function
4054     // names, and they don't have an intrinsic ordering.
4055 
4056     // First we try the easy case by forming the current context's constructor
4057     // name and adding that name first. This is a very useful optimization to
4058     // avoid walking the lexical declarations in many cases, and it also
4059     // handles the only case where a constructor name can come from some other
4060     // lexical context -- when that name is an implicit constructor merged from
4061     // another declaration in the redecl chain. Any non-implicit constructor or
4062     // conversion function which doesn't occur in all the lexical contexts
4063     // would be an ODR violation.
4064     auto ImplicitCtorName = Context->DeclarationNames.getCXXConstructorName(
4065         Context->getCanonicalType(Context->getRecordType(D)));
4066     if (ConstructorNameSet.erase(ImplicitCtorName))
4067       Names.push_back(ImplicitCtorName);
4068 
4069     // If we still have constructors or conversion functions, we walk all the
4070     // names in the decl and add the constructors and conversion functions
4071     // which are visible in the order they lexically occur within the context.
4072     if (!ConstructorNameSet.empty() || !ConversionNameSet.empty())
4073       for (Decl *ChildD : cast<CXXRecordDecl>(DC)->decls())
4074         if (auto *ChildND = dyn_cast<NamedDecl>(ChildD)) {
4075           auto Name = ChildND->getDeclName();
4076           switch (Name.getNameKind()) {
4077           default:
4078             continue;
4079 
4080           case DeclarationName::CXXConstructorName:
4081             if (ConstructorNameSet.erase(Name))
4082               Names.push_back(Name);
4083             break;
4084 
4085           case DeclarationName::CXXConversionFunctionName:
4086             if (ConversionNameSet.erase(Name))
4087               Names.push_back(Name);
4088             break;
4089           }
4090 
4091           if (ConstructorNameSet.empty() && ConversionNameSet.empty())
4092             break;
4093         }
4094 
4095     assert(ConstructorNameSet.empty() && "Failed to find all of the visible "
4096                                          "constructors by walking all the "
4097                                          "lexical members of the context.");
4098     assert(ConversionNameSet.empty() && "Failed to find all of the visible "
4099                                         "conversion functions by walking all "
4100                                         "the lexical members of the context.");
4101   }
4102 
4103   // Next we need to do a lookup with each name into this decl context to fully
4104   // populate any results from external sources. We don't actually use the
4105   // results of these lookups because we only want to use the results after all
4106   // results have been loaded and the pointers into them will be stable.
4107   for (auto &Name : Names)
4108     DC->lookup(Name);
4109 
4110   // Now we need to insert the results for each name into the hash table. For
4111   // constructor names and conversion function names, we actually need to merge
4112   // all of the results for them into one list of results each and insert
4113   // those.
4114   SmallVector<NamedDecl *, 8> ConstructorDecls;
4115   SmallVector<NamedDecl *, 8> ConversionDecls;
4116 
4117   // Now loop over the names, either inserting them or appending for the two
4118   // special cases.
4119   for (auto &Name : Names) {
4120     DeclContext::lookup_result Result = DC->noload_lookup(Name);
4121 
4122     switch (Name.getNameKind()) {
4123     default:
4124       Generator.insert(Name, Trait.getData(Result), Trait);
4125       break;
4126 
4127     case DeclarationName::CXXConstructorName:
4128       ConstructorDecls.append(Result.begin(), Result.end());
4129       break;
4130 
4131     case DeclarationName::CXXConversionFunctionName:
4132       ConversionDecls.append(Result.begin(), Result.end());
4133       break;
4134     }
4135   }
4136 
4137   // Handle our two special cases if we ended up having any. We arbitrarily use
4138   // the first declaration's name here because the name itself isn't part of
4139   // the key, only the kind of name is used.
4140   if (!ConstructorDecls.empty())
4141     Generator.insert(ConstructorDecls.front()->getDeclName(),
4142                      Trait.getData(ConstructorDecls), Trait);
4143   if (!ConversionDecls.empty())
4144     Generator.insert(ConversionDecls.front()->getDeclName(),
4145                      Trait.getData(ConversionDecls), Trait);
4146 
4147   // Create the on-disk hash table. Also emit the existing imported and
4148   // merged table if there is one.
4149   auto *Lookups = Chain ? Chain->getLoadedLookupTables(DC) : nullptr;
4150   Generator.emit(LookupTable, Trait, Lookups ? &Lookups->Table : nullptr);
4151 }
4152 
4153 /// Write the block containing all of the declaration IDs
4154 /// visible from the given DeclContext.
4155 ///
4156 /// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
4157 /// bitstream, or 0 if no block was written.
4158 uint64_t ASTWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
4159                                                  DeclContext *DC) {
4160   // If we imported a key declaration of this namespace, write the visible
4161   // lookup results as an update record for it rather than including them
4162   // on this declaration. We will only look at key declarations on reload.
4163   if (isa<NamespaceDecl>(DC) && Chain &&
4164       Chain->getKeyDeclaration(cast<Decl>(DC))->isFromASTFile()) {
4165     // Only do this once, for the first local declaration of the namespace.
4166     for (auto *Prev = cast<NamespaceDecl>(DC)->getPreviousDecl(); Prev;
4167          Prev = Prev->getPreviousDecl())
4168       if (!Prev->isFromASTFile())
4169         return 0;
4170 
4171     // Note that we need to emit an update record for the primary context.
4172     UpdatedDeclContexts.insert(DC->getPrimaryContext());
4173 
4174     // Make sure all visible decls are written. They will be recorded later. We
4175     // do this using a side data structure so we can sort the names into
4176     // a deterministic order.
4177     StoredDeclsMap *Map = DC->getPrimaryContext()->buildLookup();
4178     SmallVector<std::pair<DeclarationName, DeclContext::lookup_result>, 16>
4179         LookupResults;
4180     if (Map) {
4181       LookupResults.reserve(Map->size());
4182       for (auto &Entry : *Map)
4183         LookupResults.push_back(
4184             std::make_pair(Entry.first, Entry.second.getLookupResult()));
4185     }
4186 
4187     llvm::sort(LookupResults, llvm::less_first());
4188     for (auto &NameAndResult : LookupResults) {
4189       DeclarationName Name = NameAndResult.first;
4190       DeclContext::lookup_result Result = NameAndResult.second;
4191       if (Name.getNameKind() == DeclarationName::CXXConstructorName ||
4192           Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
4193         // We have to work around a name lookup bug here where negative lookup
4194         // results for these names get cached in namespace lookup tables (these
4195         // names should never be looked up in a namespace).
4196         assert(Result.empty() && "Cannot have a constructor or conversion "
4197                                  "function name in a namespace!");
4198         continue;
4199       }
4200 
4201       for (NamedDecl *ND : Result)
4202         if (!ND->isFromASTFile())
4203           GetDeclRef(ND);
4204     }
4205 
4206     return 0;
4207   }
4208 
4209   if (DC->getPrimaryContext() != DC)
4210     return 0;
4211 
4212   // Skip contexts which don't support name lookup.
4213   if (!DC->isLookupContext())
4214     return 0;
4215 
4216   // If not in C++, we perform name lookup for the translation unit via the
4217   // IdentifierInfo chains, don't bother to build a visible-declarations table.
4218   if (DC->isTranslationUnit() && !Context.getLangOpts().CPlusPlus)
4219     return 0;
4220 
4221   // Serialize the contents of the mapping used for lookup. Note that,
4222   // although we have two very different code paths, the serialized
4223   // representation is the same for both cases: a declaration name,
4224   // followed by a size, followed by references to the visible
4225   // declarations that have that name.
4226   uint64_t Offset = Stream.GetCurrentBitNo();
4227   StoredDeclsMap *Map = DC->buildLookup();
4228   if (!Map || Map->empty())
4229     return 0;
4230 
4231   // Create the on-disk hash table in a buffer.
4232   SmallString<4096> LookupTable;
4233   GenerateNameLookupTable(DC, LookupTable);
4234 
4235   // Write the lookup table
4236   RecordData::value_type Record[] = {DECL_CONTEXT_VISIBLE};
4237   Stream.EmitRecordWithBlob(DeclContextVisibleLookupAbbrev, Record,
4238                             LookupTable);
4239   ++NumVisibleDeclContexts;
4240   return Offset;
4241 }
4242 
4243 /// Write an UPDATE_VISIBLE block for the given context.
4244 ///
4245 /// UPDATE_VISIBLE blocks contain the declarations that are added to an existing
4246 /// DeclContext in a dependent AST file. As such, they only exist for the TU
4247 /// (in C++), for namespaces, and for classes with forward-declared unscoped
4248 /// enumeration members (in C++11).
4249 void ASTWriter::WriteDeclContextVisibleUpdate(const DeclContext *DC) {
4250   StoredDeclsMap *Map = DC->getLookupPtr();
4251   if (!Map || Map->empty())
4252     return;
4253 
4254   // Create the on-disk hash table in a buffer.
4255   SmallString<4096> LookupTable;
4256   GenerateNameLookupTable(DC, LookupTable);
4257 
4258   // If we're updating a namespace, select a key declaration as the key for the
4259   // update record; those are the only ones that will be checked on reload.
4260   if (isa<NamespaceDecl>(DC))
4261     DC = cast<DeclContext>(Chain->getKeyDeclaration(cast<Decl>(DC)));
4262 
4263   // Write the lookup table
4264   RecordData::value_type Record[] = {UPDATE_VISIBLE, getDeclID(cast<Decl>(DC))};
4265   Stream.EmitRecordWithBlob(UpdateVisibleAbbrev, Record, LookupTable);
4266 }
4267 
4268 /// Write an FP_PRAGMA_OPTIONS block for the given FPOptions.
4269 void ASTWriter::WriteFPPragmaOptions(const FPOptions &Opts) {
4270   RecordData::value_type Record[] = {Opts.getInt()};
4271   Stream.EmitRecord(FP_PRAGMA_OPTIONS, Record);
4272 }
4273 
4274 /// Write an OPENCL_EXTENSIONS block for the given OpenCLOptions.
4275 void ASTWriter::WriteOpenCLExtensions(Sema &SemaRef) {
4276   if (!SemaRef.Context.getLangOpts().OpenCL)
4277     return;
4278 
4279   const OpenCLOptions &Opts = SemaRef.getOpenCLOptions();
4280   RecordData Record;
4281   for (const auto &I:Opts.OptMap) {
4282     AddString(I.getKey(), Record);
4283     auto V = I.getValue();
4284     Record.push_back(V.Supported ? 1 : 0);
4285     Record.push_back(V.Enabled ? 1 : 0);
4286     Record.push_back(V.Avail);
4287     Record.push_back(V.Core);
4288   }
4289   Stream.EmitRecord(OPENCL_EXTENSIONS, Record);
4290 }
4291 
4292 void ASTWriter::WriteOpenCLExtensionTypes(Sema &SemaRef) {
4293   if (!SemaRef.Context.getLangOpts().OpenCL)
4294     return;
4295 
4296   // Sort the elements of the map OpenCLTypeExtMap by TypeIDs,
4297   // without copying them.
4298   const llvm::DenseMap<const Type *, std::set<std::string>> &OpenCLTypeExtMap =
4299       SemaRef.OpenCLTypeExtMap;
4300   using ElementTy = std::pair<TypeID, const std::set<std::string> *>;
4301   llvm::SmallVector<ElementTy, 8> StableOpenCLTypeExtMap;
4302   StableOpenCLTypeExtMap.reserve(OpenCLTypeExtMap.size());
4303 
4304   for (const auto &I : OpenCLTypeExtMap)
4305     StableOpenCLTypeExtMap.emplace_back(
4306         getTypeID(I.first->getCanonicalTypeInternal()), &I.second);
4307 
4308   auto CompareByTypeID = [](const ElementTy &E1, const ElementTy &E2) -> bool {
4309     return E1.first < E2.first;
4310   };
4311   llvm::sort(StableOpenCLTypeExtMap, CompareByTypeID);
4312 
4313   RecordData Record;
4314   for (const ElementTy &E : StableOpenCLTypeExtMap) {
4315     Record.push_back(E.first); // TypeID
4316     const std::set<std::string> *ExtSet = E.second;
4317     Record.push_back(static_cast<unsigned>(ExtSet->size()));
4318     for (const std::string &Ext : *ExtSet)
4319       AddString(Ext, Record);
4320   }
4321 
4322   Stream.EmitRecord(OPENCL_EXTENSION_TYPES, Record);
4323 }
4324 
4325 void ASTWriter::WriteOpenCLExtensionDecls(Sema &SemaRef) {
4326   if (!SemaRef.Context.getLangOpts().OpenCL)
4327     return;
4328 
4329   // Sort the elements of the map OpenCLDeclExtMap by DeclIDs,
4330   // without copying them.
4331   const llvm::DenseMap<const Decl *, std::set<std::string>> &OpenCLDeclExtMap =
4332       SemaRef.OpenCLDeclExtMap;
4333   using ElementTy = std::pair<DeclID, const std::set<std::string> *>;
4334   llvm::SmallVector<ElementTy, 8> StableOpenCLDeclExtMap;
4335   StableOpenCLDeclExtMap.reserve(OpenCLDeclExtMap.size());
4336 
4337   for (const auto &I : OpenCLDeclExtMap)
4338     StableOpenCLDeclExtMap.emplace_back(getDeclID(I.first), &I.second);
4339 
4340   auto CompareByDeclID = [](const ElementTy &E1, const ElementTy &E2) -> bool {
4341     return E1.first < E2.first;
4342   };
4343   llvm::sort(StableOpenCLDeclExtMap, CompareByDeclID);
4344 
4345   RecordData Record;
4346   for (const ElementTy &E : StableOpenCLDeclExtMap) {
4347     Record.push_back(E.first); // DeclID
4348     const std::set<std::string> *ExtSet = E.second;
4349     Record.push_back(static_cast<unsigned>(ExtSet->size()));
4350     for (const std::string &Ext : *ExtSet)
4351       AddString(Ext, Record);
4352   }
4353 
4354   Stream.EmitRecord(OPENCL_EXTENSION_DECLS, Record);
4355 }
4356 
4357 void ASTWriter::WriteCUDAPragmas(Sema &SemaRef) {
4358   if (SemaRef.ForceCUDAHostDeviceDepth > 0) {
4359     RecordData::value_type Record[] = {SemaRef.ForceCUDAHostDeviceDepth};
4360     Stream.EmitRecord(CUDA_PRAGMA_FORCE_HOST_DEVICE_DEPTH, Record);
4361   }
4362 }
4363 
4364 void ASTWriter::WriteObjCCategories() {
4365   SmallVector<ObjCCategoriesInfo, 2> CategoriesMap;
4366   RecordData Categories;
4367 
4368   for (unsigned I = 0, N = ObjCClassesWithCategories.size(); I != N; ++I) {
4369     unsigned Size = 0;
4370     unsigned StartIndex = Categories.size();
4371 
4372     ObjCInterfaceDecl *Class = ObjCClassesWithCategories[I];
4373 
4374     // Allocate space for the size.
4375     Categories.push_back(0);
4376 
4377     // Add the categories.
4378     for (ObjCInterfaceDecl::known_categories_iterator
4379            Cat = Class->known_categories_begin(),
4380            CatEnd = Class->known_categories_end();
4381          Cat != CatEnd; ++Cat, ++Size) {
4382       assert(getDeclID(*Cat) != 0 && "Bogus category");
4383       AddDeclRef(*Cat, Categories);
4384     }
4385 
4386     // Update the size.
4387     Categories[StartIndex] = Size;
4388 
4389     // Record this interface -> category map.
4390     ObjCCategoriesInfo CatInfo = { getDeclID(Class), StartIndex };
4391     CategoriesMap.push_back(CatInfo);
4392   }
4393 
4394   // Sort the categories map by the definition ID, since the reader will be
4395   // performing binary searches on this information.
4396   llvm::array_pod_sort(CategoriesMap.begin(), CategoriesMap.end());
4397 
4398   // Emit the categories map.
4399   using namespace llvm;
4400 
4401   auto Abbrev = std::make_shared<BitCodeAbbrev>();
4402   Abbrev->Add(BitCodeAbbrevOp(OBJC_CATEGORIES_MAP));
4403   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of entries
4404   Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
4405   unsigned AbbrevID = Stream.EmitAbbrev(std::move(Abbrev));
4406 
4407   RecordData::value_type Record[] = {OBJC_CATEGORIES_MAP, CategoriesMap.size()};
4408   Stream.EmitRecordWithBlob(AbbrevID, Record,
4409                             reinterpret_cast<char *>(CategoriesMap.data()),
4410                             CategoriesMap.size() * sizeof(ObjCCategoriesInfo));
4411 
4412   // Emit the category lists.
4413   Stream.EmitRecord(OBJC_CATEGORIES, Categories);
4414 }
4415 
4416 void ASTWriter::WriteLateParsedTemplates(Sema &SemaRef) {
4417   Sema::LateParsedTemplateMapT &LPTMap = SemaRef.LateParsedTemplateMap;
4418 
4419   if (LPTMap.empty())
4420     return;
4421 
4422   RecordData Record;
4423   for (auto &LPTMapEntry : LPTMap) {
4424     const FunctionDecl *FD = LPTMapEntry.first;
4425     LateParsedTemplate &LPT = *LPTMapEntry.second;
4426     AddDeclRef(FD, Record);
4427     AddDeclRef(LPT.D, Record);
4428     Record.push_back(LPT.Toks.size());
4429 
4430     for (const auto &Tok : LPT.Toks) {
4431       AddToken(Tok, Record);
4432     }
4433   }
4434   Stream.EmitRecord(LATE_PARSED_TEMPLATE, Record);
4435 }
4436 
4437 /// Write the state of 'pragma clang optimize' at the end of the module.
4438 void ASTWriter::WriteOptimizePragmaOptions(Sema &SemaRef) {
4439   RecordData Record;
4440   SourceLocation PragmaLoc = SemaRef.getOptimizeOffPragmaLocation();
4441   AddSourceLocation(PragmaLoc, Record);
4442   Stream.EmitRecord(OPTIMIZE_PRAGMA_OPTIONS, Record);
4443 }
4444 
4445 /// Write the state of 'pragma ms_struct' at the end of the module.
4446 void ASTWriter::WriteMSStructPragmaOptions(Sema &SemaRef) {
4447   RecordData Record;
4448   Record.push_back(SemaRef.MSStructPragmaOn ? PMSST_ON : PMSST_OFF);
4449   Stream.EmitRecord(MSSTRUCT_PRAGMA_OPTIONS, Record);
4450 }
4451 
4452 /// Write the state of 'pragma pointers_to_members' at the end of the
4453 //module.
4454 void ASTWriter::WriteMSPointersToMembersPragmaOptions(Sema &SemaRef) {
4455   RecordData Record;
4456   Record.push_back(SemaRef.MSPointerToMemberRepresentationMethod);
4457   AddSourceLocation(SemaRef.ImplicitMSInheritanceAttrLoc, Record);
4458   Stream.EmitRecord(POINTERS_TO_MEMBERS_PRAGMA_OPTIONS, Record);
4459 }
4460 
4461 /// Write the state of 'pragma pack' at the end of the module.
4462 void ASTWriter::WritePackPragmaOptions(Sema &SemaRef) {
4463   // Don't serialize pragma pack state for modules, since it should only take
4464   // effect on a per-submodule basis.
4465   if (WritingModule)
4466     return;
4467 
4468   RecordData Record;
4469   Record.push_back(SemaRef.PackStack.CurrentValue);
4470   AddSourceLocation(SemaRef.PackStack.CurrentPragmaLocation, Record);
4471   Record.push_back(SemaRef.PackStack.Stack.size());
4472   for (const auto &StackEntry : SemaRef.PackStack.Stack) {
4473     Record.push_back(StackEntry.Value);
4474     AddSourceLocation(StackEntry.PragmaLocation, Record);
4475     AddSourceLocation(StackEntry.PragmaPushLocation, Record);
4476     AddString(StackEntry.StackSlotLabel, Record);
4477   }
4478   Stream.EmitRecord(PACK_PRAGMA_OPTIONS, Record);
4479 }
4480 
4481 void ASTWriter::WriteModuleFileExtension(Sema &SemaRef,
4482                                          ModuleFileExtensionWriter &Writer) {
4483   // Enter the extension block.
4484   Stream.EnterSubblock(EXTENSION_BLOCK_ID, 4);
4485 
4486   // Emit the metadata record abbreviation.
4487   auto Abv = std::make_shared<llvm::BitCodeAbbrev>();
4488   Abv->Add(llvm::BitCodeAbbrevOp(EXTENSION_METADATA));
4489   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4490   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4491   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4492   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4493   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4494   unsigned Abbrev = Stream.EmitAbbrev(std::move(Abv));
4495 
4496   // Emit the metadata record.
4497   RecordData Record;
4498   auto Metadata = Writer.getExtension()->getExtensionMetadata();
4499   Record.push_back(EXTENSION_METADATA);
4500   Record.push_back(Metadata.MajorVersion);
4501   Record.push_back(Metadata.MinorVersion);
4502   Record.push_back(Metadata.BlockName.size());
4503   Record.push_back(Metadata.UserInfo.size());
4504   SmallString<64> Buffer;
4505   Buffer += Metadata.BlockName;
4506   Buffer += Metadata.UserInfo;
4507   Stream.EmitRecordWithBlob(Abbrev, Record, Buffer);
4508 
4509   // Emit the contents of the extension block.
4510   Writer.writeExtensionContents(SemaRef, Stream);
4511 
4512   // Exit the extension block.
4513   Stream.ExitBlock();
4514 }
4515 
4516 //===----------------------------------------------------------------------===//
4517 // General Serialization Routines
4518 //===----------------------------------------------------------------------===//
4519 
4520 void ASTRecordWriter::AddAttr(const Attr *A) {
4521   auto &Record = *this;
4522   if (!A)
4523     return Record.push_back(0);
4524   Record.push_back(A->getKind() + 1); // FIXME: stable encoding, target attrs
4525   Record.AddSourceRange(A->getRange());
4526 
4527 #include "clang/Serialization/AttrPCHWrite.inc"
4528 }
4529 
4530 /// Emit the list of attributes to the specified record.
4531 void ASTRecordWriter::AddAttributes(ArrayRef<const Attr *> Attrs) {
4532   push_back(Attrs.size());
4533   for (const auto *A : Attrs)
4534     AddAttr(A);
4535 }
4536 
4537 void ASTWriter::AddToken(const Token &Tok, RecordDataImpl &Record) {
4538   AddSourceLocation(Tok.getLocation(), Record);
4539   Record.push_back(Tok.getLength());
4540 
4541   // FIXME: When reading literal tokens, reconstruct the literal pointer
4542   // if it is needed.
4543   AddIdentifierRef(Tok.getIdentifierInfo(), Record);
4544   // FIXME: Should translate token kind to a stable encoding.
4545   Record.push_back(Tok.getKind());
4546   // FIXME: Should translate token flags to a stable encoding.
4547   Record.push_back(Tok.getFlags());
4548 }
4549 
4550 void ASTWriter::AddString(StringRef Str, RecordDataImpl &Record) {
4551   Record.push_back(Str.size());
4552   Record.insert(Record.end(), Str.begin(), Str.end());
4553 }
4554 
4555 bool ASTWriter::PreparePathForOutput(SmallVectorImpl<char> &Path) {
4556   assert(Context && "should have context when outputting path");
4557 
4558   bool Changed =
4559       cleanPathForOutput(Context->getSourceManager().getFileManager(), Path);
4560 
4561   // Remove a prefix to make the path relative, if relevant.
4562   const char *PathBegin = Path.data();
4563   const char *PathPtr =
4564       adjustFilenameForRelocatableAST(PathBegin, BaseDirectory);
4565   if (PathPtr != PathBegin) {
4566     Path.erase(Path.begin(), Path.begin() + (PathPtr - PathBegin));
4567     Changed = true;
4568   }
4569 
4570   return Changed;
4571 }
4572 
4573 void ASTWriter::AddPath(StringRef Path, RecordDataImpl &Record) {
4574   SmallString<128> FilePath(Path);
4575   PreparePathForOutput(FilePath);
4576   AddString(FilePath, Record);
4577 }
4578 
4579 void ASTWriter::EmitRecordWithPath(unsigned Abbrev, RecordDataRef Record,
4580                                    StringRef Path) {
4581   SmallString<128> FilePath(Path);
4582   PreparePathForOutput(FilePath);
4583   Stream.EmitRecordWithBlob(Abbrev, Record, FilePath);
4584 }
4585 
4586 void ASTWriter::AddVersionTuple(const VersionTuple &Version,
4587                                 RecordDataImpl &Record) {
4588   Record.push_back(Version.getMajor());
4589   if (Optional<unsigned> Minor = Version.getMinor())
4590     Record.push_back(*Minor + 1);
4591   else
4592     Record.push_back(0);
4593   if (Optional<unsigned> Subminor = Version.getSubminor())
4594     Record.push_back(*Subminor + 1);
4595   else
4596     Record.push_back(0);
4597 }
4598 
4599 /// Note that the identifier II occurs at the given offset
4600 /// within the identifier table.
4601 void ASTWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
4602   IdentID ID = IdentifierIDs[II];
4603   // Only store offsets new to this AST file. Other identifier names are looked
4604   // up earlier in the chain and thus don't need an offset.
4605   if (ID >= FirstIdentID)
4606     IdentifierOffsets[ID - FirstIdentID] = Offset;
4607 }
4608 
4609 /// Note that the selector Sel occurs at the given offset
4610 /// within the method pool/selector table.
4611 void ASTWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) {
4612   unsigned ID = SelectorIDs[Sel];
4613   assert(ID && "Unknown selector");
4614   // Don't record offsets for selectors that are also available in a different
4615   // file.
4616   if (ID < FirstSelectorID)
4617     return;
4618   SelectorOffsets[ID - FirstSelectorID] = Offset;
4619 }
4620 
4621 ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream,
4622                      SmallVectorImpl<char> &Buffer,
4623                      InMemoryModuleCache &ModuleCache,
4624                      ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
4625                      bool IncludeTimestamps)
4626     : Stream(Stream), Buffer(Buffer), ModuleCache(ModuleCache),
4627       IncludeTimestamps(IncludeTimestamps) {
4628   for (const auto &Ext : Extensions) {
4629     if (auto Writer = Ext->createExtensionWriter(*this))
4630       ModuleFileExtensionWriters.push_back(std::move(Writer));
4631   }
4632 }
4633 
4634 ASTWriter::~ASTWriter() {
4635   llvm::DeleteContainerSeconds(FileDeclIDs);
4636 }
4637 
4638 const LangOptions &ASTWriter::getLangOpts() const {
4639   assert(WritingAST && "can't determine lang opts when not writing AST");
4640   return Context->getLangOpts();
4641 }
4642 
4643 time_t ASTWriter::getTimestampForOutput(const FileEntry *E) const {
4644   return IncludeTimestamps ? E->getModificationTime() : 0;
4645 }
4646 
4647 ASTFileSignature ASTWriter::WriteAST(Sema &SemaRef,
4648                                      const std::string &OutputFile,
4649                                      Module *WritingModule, StringRef isysroot,
4650                                      bool hasErrors,
4651                                      bool ShouldCacheASTInMemory) {
4652   WritingAST = true;
4653 
4654   ASTHasCompilerErrors = hasErrors;
4655 
4656   // Emit the file header.
4657   Stream.Emit((unsigned)'C', 8);
4658   Stream.Emit((unsigned)'P', 8);
4659   Stream.Emit((unsigned)'C', 8);
4660   Stream.Emit((unsigned)'H', 8);
4661 
4662   WriteBlockInfoBlock();
4663 
4664   Context = &SemaRef.Context;
4665   PP = &SemaRef.PP;
4666   this->WritingModule = WritingModule;
4667   ASTFileSignature Signature =
4668       WriteASTCore(SemaRef, isysroot, OutputFile, WritingModule);
4669   Context = nullptr;
4670   PP = nullptr;
4671   this->WritingModule = nullptr;
4672   this->BaseDirectory.clear();
4673 
4674   WritingAST = false;
4675   if (ShouldCacheASTInMemory) {
4676     // Construct MemoryBuffer and update buffer manager.
4677     ModuleCache.addBuiltPCM(OutputFile,
4678                             llvm::MemoryBuffer::getMemBufferCopy(
4679                                 StringRef(Buffer.begin(), Buffer.size())));
4680   }
4681   return Signature;
4682 }
4683 
4684 template<typename Vector>
4685 static void AddLazyVectorDecls(ASTWriter &Writer, Vector &Vec,
4686                                ASTWriter::RecordData &Record) {
4687   for (typename Vector::iterator I = Vec.begin(nullptr, true), E = Vec.end();
4688        I != E; ++I) {
4689     Writer.AddDeclRef(*I, Record);
4690   }
4691 }
4692 
4693 ASTFileSignature ASTWriter::WriteASTCore(Sema &SemaRef, StringRef isysroot,
4694                                          const std::string &OutputFile,
4695                                          Module *WritingModule) {
4696   using namespace llvm;
4697 
4698   bool isModule = WritingModule != nullptr;
4699 
4700   // Make sure that the AST reader knows to finalize itself.
4701   if (Chain)
4702     Chain->finalizeForWriting();
4703 
4704   ASTContext &Context = SemaRef.Context;
4705   Preprocessor &PP = SemaRef.PP;
4706 
4707   // Set up predefined declaration IDs.
4708   auto RegisterPredefDecl = [&] (Decl *D, PredefinedDeclIDs ID) {
4709     if (D) {
4710       assert(D->isCanonicalDecl() && "predefined decl is not canonical");
4711       DeclIDs[D] = ID;
4712     }
4713   };
4714   RegisterPredefDecl(Context.getTranslationUnitDecl(),
4715                      PREDEF_DECL_TRANSLATION_UNIT_ID);
4716   RegisterPredefDecl(Context.ObjCIdDecl, PREDEF_DECL_OBJC_ID_ID);
4717   RegisterPredefDecl(Context.ObjCSelDecl, PREDEF_DECL_OBJC_SEL_ID);
4718   RegisterPredefDecl(Context.ObjCClassDecl, PREDEF_DECL_OBJC_CLASS_ID);
4719   RegisterPredefDecl(Context.ObjCProtocolClassDecl,
4720                      PREDEF_DECL_OBJC_PROTOCOL_ID);
4721   RegisterPredefDecl(Context.Int128Decl, PREDEF_DECL_INT_128_ID);
4722   RegisterPredefDecl(Context.UInt128Decl, PREDEF_DECL_UNSIGNED_INT_128_ID);
4723   RegisterPredefDecl(Context.ObjCInstanceTypeDecl,
4724                      PREDEF_DECL_OBJC_INSTANCETYPE_ID);
4725   RegisterPredefDecl(Context.BuiltinVaListDecl, PREDEF_DECL_BUILTIN_VA_LIST_ID);
4726   RegisterPredefDecl(Context.VaListTagDecl, PREDEF_DECL_VA_LIST_TAG);
4727   RegisterPredefDecl(Context.BuiltinMSVaListDecl,
4728                      PREDEF_DECL_BUILTIN_MS_VA_LIST_ID);
4729   RegisterPredefDecl(Context.ExternCContext, PREDEF_DECL_EXTERN_C_CONTEXT_ID);
4730   RegisterPredefDecl(Context.MakeIntegerSeqDecl,
4731                      PREDEF_DECL_MAKE_INTEGER_SEQ_ID);
4732   RegisterPredefDecl(Context.CFConstantStringTypeDecl,
4733                      PREDEF_DECL_CF_CONSTANT_STRING_ID);
4734   RegisterPredefDecl(Context.CFConstantStringTagDecl,
4735                      PREDEF_DECL_CF_CONSTANT_STRING_TAG_ID);
4736   RegisterPredefDecl(Context.TypePackElementDecl,
4737                      PREDEF_DECL_TYPE_PACK_ELEMENT_ID);
4738 
4739   // Build a record containing all of the tentative definitions in this file, in
4740   // TentativeDefinitions order.  Generally, this record will be empty for
4741   // headers.
4742   RecordData TentativeDefinitions;
4743   AddLazyVectorDecls(*this, SemaRef.TentativeDefinitions, TentativeDefinitions);
4744 
4745   // Build a record containing all of the file scoped decls in this file.
4746   RecordData UnusedFileScopedDecls;
4747   if (!isModule)
4748     AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls,
4749                        UnusedFileScopedDecls);
4750 
4751   // Build a record containing all of the delegating constructors we still need
4752   // to resolve.
4753   RecordData DelegatingCtorDecls;
4754   if (!isModule)
4755     AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls);
4756 
4757   // Write the set of weak, undeclared identifiers. We always write the
4758   // entire table, since later PCH files in a PCH chain are only interested in
4759   // the results at the end of the chain.
4760   RecordData WeakUndeclaredIdentifiers;
4761   for (auto &WeakUndeclaredIdentifier : SemaRef.WeakUndeclaredIdentifiers) {
4762     IdentifierInfo *II = WeakUndeclaredIdentifier.first;
4763     WeakInfo &WI = WeakUndeclaredIdentifier.second;
4764     AddIdentifierRef(II, WeakUndeclaredIdentifiers);
4765     AddIdentifierRef(WI.getAlias(), WeakUndeclaredIdentifiers);
4766     AddSourceLocation(WI.getLocation(), WeakUndeclaredIdentifiers);
4767     WeakUndeclaredIdentifiers.push_back(WI.getUsed());
4768   }
4769 
4770   // Build a record containing all of the ext_vector declarations.
4771   RecordData ExtVectorDecls;
4772   AddLazyVectorDecls(*this, SemaRef.ExtVectorDecls, ExtVectorDecls);
4773 
4774   // Build a record containing all of the VTable uses information.
4775   RecordData VTableUses;
4776   if (!SemaRef.VTableUses.empty()) {
4777     for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
4778       AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
4779       AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
4780       VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
4781     }
4782   }
4783 
4784   // Build a record containing all of the UnusedLocalTypedefNameCandidates.
4785   RecordData UnusedLocalTypedefNameCandidates;
4786   for (const TypedefNameDecl *TD : SemaRef.UnusedLocalTypedefNameCandidates)
4787     AddDeclRef(TD, UnusedLocalTypedefNameCandidates);
4788 
4789   // Build a record containing all of pending implicit instantiations.
4790   RecordData PendingInstantiations;
4791   for (const auto &I : SemaRef.PendingInstantiations) {
4792     AddDeclRef(I.first, PendingInstantiations);
4793     AddSourceLocation(I.second, PendingInstantiations);
4794   }
4795   assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
4796          "There are local ones at end of translation unit!");
4797 
4798   // Build a record containing some declaration references.
4799   RecordData SemaDeclRefs;
4800   if (SemaRef.StdNamespace || SemaRef.StdBadAlloc || SemaRef.StdAlignValT) {
4801     AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
4802     AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
4803     AddDeclRef(SemaRef.getStdAlignValT(), SemaDeclRefs);
4804   }
4805 
4806   RecordData CUDASpecialDeclRefs;
4807   if (Context.getcudaConfigureCallDecl()) {
4808     AddDeclRef(Context.getcudaConfigureCallDecl(), CUDASpecialDeclRefs);
4809   }
4810 
4811   // Build a record containing all of the known namespaces.
4812   RecordData KnownNamespaces;
4813   for (const auto &I : SemaRef.KnownNamespaces) {
4814     if (!I.second)
4815       AddDeclRef(I.first, KnownNamespaces);
4816   }
4817 
4818   // Build a record of all used, undefined objects that require definitions.
4819   RecordData UndefinedButUsed;
4820 
4821   SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined;
4822   SemaRef.getUndefinedButUsed(Undefined);
4823   for (const auto &I : Undefined) {
4824     AddDeclRef(I.first, UndefinedButUsed);
4825     AddSourceLocation(I.second, UndefinedButUsed);
4826   }
4827 
4828   // Build a record containing all delete-expressions that we would like to
4829   // analyze later in AST.
4830   RecordData DeleteExprsToAnalyze;
4831 
4832   if (!isModule) {
4833     for (const auto &DeleteExprsInfo :
4834          SemaRef.getMismatchingDeleteExpressions()) {
4835       AddDeclRef(DeleteExprsInfo.first, DeleteExprsToAnalyze);
4836       DeleteExprsToAnalyze.push_back(DeleteExprsInfo.second.size());
4837       for (const auto &DeleteLoc : DeleteExprsInfo.second) {
4838         AddSourceLocation(DeleteLoc.first, DeleteExprsToAnalyze);
4839         DeleteExprsToAnalyze.push_back(DeleteLoc.second);
4840       }
4841     }
4842   }
4843 
4844   // Write the control block
4845   WriteControlBlock(PP, Context, isysroot, OutputFile);
4846 
4847   // Write the remaining AST contents.
4848   Stream.EnterSubblock(AST_BLOCK_ID, 5);
4849 
4850   // This is so that older clang versions, before the introduction
4851   // of the control block, can read and reject the newer PCH format.
4852   {
4853     RecordData Record = {VERSION_MAJOR};
4854     Stream.EmitRecord(METADATA_OLD_FORMAT, Record);
4855   }
4856 
4857   // Create a lexical update block containing all of the declarations in the
4858   // translation unit that do not come from other AST files.
4859   const TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
4860   SmallVector<uint32_t, 128> NewGlobalKindDeclPairs;
4861   for (const auto *D : TU->noload_decls()) {
4862     if (!D->isFromASTFile()) {
4863       NewGlobalKindDeclPairs.push_back(D->getKind());
4864       NewGlobalKindDeclPairs.push_back(GetDeclRef(D));
4865     }
4866   }
4867 
4868   auto Abv = std::make_shared<BitCodeAbbrev>();
4869   Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
4870   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4871   unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(std::move(Abv));
4872   {
4873     RecordData::value_type Record[] = {TU_UPDATE_LEXICAL};
4874     Stream.EmitRecordWithBlob(TuUpdateLexicalAbbrev, Record,
4875                               bytes(NewGlobalKindDeclPairs));
4876   }
4877 
4878   // And a visible updates block for the translation unit.
4879   Abv = std::make_shared<BitCodeAbbrev>();
4880   Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
4881   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
4882   Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
4883   UpdateVisibleAbbrev = Stream.EmitAbbrev(std::move(Abv));
4884   WriteDeclContextVisibleUpdate(TU);
4885 
4886   // If we have any extern "C" names, write out a visible update for them.
4887   if (Context.ExternCContext)
4888     WriteDeclContextVisibleUpdate(Context.ExternCContext);
4889 
4890   // If the translation unit has an anonymous namespace, and we don't already
4891   // have an update block for it, write it as an update block.
4892   // FIXME: Why do we not do this if there's already an update block?
4893   if (NamespaceDecl *NS = TU->getAnonymousNamespace()) {
4894     ASTWriter::UpdateRecord &Record = DeclUpdates[TU];
4895     if (Record.empty())
4896       Record.push_back(DeclUpdate(UPD_CXX_ADDED_ANONYMOUS_NAMESPACE, NS));
4897   }
4898 
4899   // Add update records for all mangling numbers and static local numbers.
4900   // These aren't really update records, but this is a convenient way of
4901   // tagging this rare extra data onto the declarations.
4902   for (const auto &Number : Context.MangleNumbers)
4903     if (!Number.first->isFromASTFile())
4904       DeclUpdates[Number.first].push_back(DeclUpdate(UPD_MANGLING_NUMBER,
4905                                                      Number.second));
4906   for (const auto &Number : Context.StaticLocalNumbers)
4907     if (!Number.first->isFromASTFile())
4908       DeclUpdates[Number.first].push_back(DeclUpdate(UPD_STATIC_LOCAL_NUMBER,
4909                                                      Number.second));
4910 
4911   // Make sure visible decls, added to DeclContexts previously loaded from
4912   // an AST file, are registered for serialization. Likewise for template
4913   // specializations added to imported templates.
4914   for (const auto *I : DeclsToEmitEvenIfUnreferenced) {
4915     GetDeclRef(I);
4916   }
4917 
4918   // Make sure all decls associated with an identifier are registered for
4919   // serialization, if we're storing decls with identifiers.
4920   if (!WritingModule || !getLangOpts().CPlusPlus) {
4921     llvm::SmallVector<const IdentifierInfo*, 256> IIs;
4922     for (const auto &ID : PP.getIdentifierTable()) {
4923       const IdentifierInfo *II = ID.second;
4924       if (!Chain || !II->isFromAST() || II->hasChangedSinceDeserialization())
4925         IIs.push_back(II);
4926     }
4927     // Sort the identifiers to visit based on their name.
4928     llvm::sort(IIs, llvm::deref<std::less<>>());
4929     for (const IdentifierInfo *II : IIs) {
4930       for (IdentifierResolver::iterator D = SemaRef.IdResolver.begin(II),
4931                                      DEnd = SemaRef.IdResolver.end();
4932            D != DEnd; ++D) {
4933         GetDeclRef(*D);
4934       }
4935     }
4936   }
4937 
4938   // For method pool in the module, if it contains an entry for a selector,
4939   // the entry should be complete, containing everything introduced by that
4940   // module and all modules it imports. It's possible that the entry is out of
4941   // date, so we need to pull in the new content here.
4942 
4943   // It's possible that updateOutOfDateSelector can update SelectorIDs. To be
4944   // safe, we copy all selectors out.
4945   llvm::SmallVector<Selector, 256> AllSelectors;
4946   for (auto &SelectorAndID : SelectorIDs)
4947     AllSelectors.push_back(SelectorAndID.first);
4948   for (auto &Selector : AllSelectors)
4949     SemaRef.updateOutOfDateSelector(Selector);
4950 
4951   // Form the record of special types.
4952   RecordData SpecialTypes;
4953   AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes);
4954   AddTypeRef(Context.getFILEType(), SpecialTypes);
4955   AddTypeRef(Context.getjmp_bufType(), SpecialTypes);
4956   AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes);
4957   AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes);
4958   AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes);
4959   AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes);
4960   AddTypeRef(Context.getucontext_tType(), SpecialTypes);
4961 
4962   if (Chain) {
4963     // Write the mapping information describing our module dependencies and how
4964     // each of those modules were mapped into our own offset/ID space, so that
4965     // the reader can build the appropriate mapping to its own offset/ID space.
4966     // The map consists solely of a blob with the following format:
4967     // *(module-kind:i8
4968     //   module-name-len:i16 module-name:len*i8
4969     //   source-location-offset:i32
4970     //   identifier-id:i32
4971     //   preprocessed-entity-id:i32
4972     //   macro-definition-id:i32
4973     //   submodule-id:i32
4974     //   selector-id:i32
4975     //   declaration-id:i32
4976     //   c++-base-specifiers-id:i32
4977     //   type-id:i32)
4978     //
4979     // module-kind is the ModuleKind enum value. If it is MK_PrebuiltModule or
4980     // MK_ExplicitModule, then the module-name is the module name. Otherwise,
4981     // it is the module file name.
4982     auto Abbrev = std::make_shared<BitCodeAbbrev>();
4983     Abbrev->Add(BitCodeAbbrevOp(MODULE_OFFSET_MAP));
4984     Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
4985     unsigned ModuleOffsetMapAbbrev = Stream.EmitAbbrev(std::move(Abbrev));
4986     SmallString<2048> Buffer;
4987     {
4988       llvm::raw_svector_ostream Out(Buffer);
4989       for (ModuleFile &M : Chain->ModuleMgr) {
4990         using namespace llvm::support;
4991 
4992         endian::Writer LE(Out, little);
4993         LE.write<uint8_t>(static_cast<uint8_t>(M.Kind));
4994         StringRef Name =
4995           M.Kind == MK_PrebuiltModule || M.Kind == MK_ExplicitModule
4996           ? M.ModuleName
4997           : M.FileName;
4998         LE.write<uint16_t>(Name.size());
4999         Out.write(Name.data(), Name.size());
5000 
5001         // Note: if a base ID was uint max, it would not be possible to load
5002         // another module after it or have more than one entity inside it.
5003         uint32_t None = std::numeric_limits<uint32_t>::max();
5004 
5005         auto writeBaseIDOrNone = [&](uint32_t BaseID, bool ShouldWrite) {
5006           assert(BaseID < std::numeric_limits<uint32_t>::max() && "base id too high");
5007           if (ShouldWrite)
5008             LE.write<uint32_t>(BaseID);
5009           else
5010             LE.write<uint32_t>(None);
5011         };
5012 
5013         // These values should be unique within a chain, since they will be read
5014         // as keys into ContinuousRangeMaps.
5015         writeBaseIDOrNone(M.SLocEntryBaseOffset, M.LocalNumSLocEntries);
5016         writeBaseIDOrNone(M.BaseIdentifierID, M.LocalNumIdentifiers);
5017         writeBaseIDOrNone(M.BaseMacroID, M.LocalNumMacros);
5018         writeBaseIDOrNone(M.BasePreprocessedEntityID,
5019                           M.NumPreprocessedEntities);
5020         writeBaseIDOrNone(M.BaseSubmoduleID, M.LocalNumSubmodules);
5021         writeBaseIDOrNone(M.BaseSelectorID, M.LocalNumSelectors);
5022         writeBaseIDOrNone(M.BaseDeclID, M.LocalNumDecls);
5023         writeBaseIDOrNone(M.BaseTypeIndex, M.LocalNumTypes);
5024       }
5025     }
5026     RecordData::value_type Record[] = {MODULE_OFFSET_MAP};
5027     Stream.EmitRecordWithBlob(ModuleOffsetMapAbbrev, Record,
5028                               Buffer.data(), Buffer.size());
5029   }
5030 
5031   RecordData DeclUpdatesOffsetsRecord;
5032 
5033   // Keep writing types, declarations, and declaration update records
5034   // until we've emitted all of them.
5035   Stream.EnterSubblock(DECLTYPES_BLOCK_ID, /*bits for abbreviations*/5);
5036   WriteTypeAbbrevs();
5037   WriteDeclAbbrevs();
5038   do {
5039     WriteDeclUpdatesBlocks(DeclUpdatesOffsetsRecord);
5040     while (!DeclTypesToEmit.empty()) {
5041       DeclOrType DOT = DeclTypesToEmit.front();
5042       DeclTypesToEmit.pop();
5043       if (DOT.isType())
5044         WriteType(DOT.getType());
5045       else
5046         WriteDecl(Context, DOT.getDecl());
5047     }
5048   } while (!DeclUpdates.empty());
5049   Stream.ExitBlock();
5050 
5051   DoneWritingDeclsAndTypes = true;
5052 
5053   // These things can only be done once we've written out decls and types.
5054   WriteTypeDeclOffsets();
5055   if (!DeclUpdatesOffsetsRecord.empty())
5056     Stream.EmitRecord(DECL_UPDATE_OFFSETS, DeclUpdatesOffsetsRecord);
5057   WriteFileDeclIDsMap();
5058   WriteSourceManagerBlock(Context.getSourceManager(), PP);
5059   WriteComments();
5060   WritePreprocessor(PP, isModule);
5061   WriteHeaderSearch(PP.getHeaderSearchInfo());
5062   WriteSelectors(SemaRef);
5063   WriteReferencedSelectorsPool(SemaRef);
5064   WriteLateParsedTemplates(SemaRef);
5065   WriteIdentifierTable(PP, SemaRef.IdResolver, isModule);
5066   WriteFPPragmaOptions(SemaRef.getFPOptions());
5067   WriteOpenCLExtensions(SemaRef);
5068   WriteOpenCLExtensionTypes(SemaRef);
5069   WriteCUDAPragmas(SemaRef);
5070 
5071   // If we're emitting a module, write out the submodule information.
5072   if (WritingModule)
5073     WriteSubmodules(WritingModule);
5074 
5075   // We need to have information about submodules to correctly deserialize
5076   // decls from OpenCLExtensionDecls block
5077   WriteOpenCLExtensionDecls(SemaRef);
5078 
5079   Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes);
5080 
5081   // Write the record containing external, unnamed definitions.
5082   if (!EagerlyDeserializedDecls.empty())
5083     Stream.EmitRecord(EAGERLY_DESERIALIZED_DECLS, EagerlyDeserializedDecls);
5084 
5085   if (!ModularCodegenDecls.empty())
5086     Stream.EmitRecord(MODULAR_CODEGEN_DECLS, ModularCodegenDecls);
5087 
5088   // Write the record containing tentative definitions.
5089   if (!TentativeDefinitions.empty())
5090     Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
5091 
5092   // Write the record containing unused file scoped decls.
5093   if (!UnusedFileScopedDecls.empty())
5094     Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
5095 
5096   // Write the record containing weak undeclared identifiers.
5097   if (!WeakUndeclaredIdentifiers.empty())
5098     Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
5099                       WeakUndeclaredIdentifiers);
5100 
5101   // Write the record containing ext_vector type names.
5102   if (!ExtVectorDecls.empty())
5103     Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
5104 
5105   // Write the record containing VTable uses information.
5106   if (!VTableUses.empty())
5107     Stream.EmitRecord(VTABLE_USES, VTableUses);
5108 
5109   // Write the record containing potentially unused local typedefs.
5110   if (!UnusedLocalTypedefNameCandidates.empty())
5111     Stream.EmitRecord(UNUSED_LOCAL_TYPEDEF_NAME_CANDIDATES,
5112                       UnusedLocalTypedefNameCandidates);
5113 
5114   // Write the record containing pending implicit instantiations.
5115   if (!PendingInstantiations.empty())
5116     Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
5117 
5118   // Write the record containing declaration references of Sema.
5119   if (!SemaDeclRefs.empty())
5120     Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
5121 
5122   // Write the record containing CUDA-specific declaration references.
5123   if (!CUDASpecialDeclRefs.empty())
5124     Stream.EmitRecord(CUDA_SPECIAL_DECL_REFS, CUDASpecialDeclRefs);
5125 
5126   // Write the delegating constructors.
5127   if (!DelegatingCtorDecls.empty())
5128     Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls);
5129 
5130   // Write the known namespaces.
5131   if (!KnownNamespaces.empty())
5132     Stream.EmitRecord(KNOWN_NAMESPACES, KnownNamespaces);
5133 
5134   // Write the undefined internal functions and variables, and inline functions.
5135   if (!UndefinedButUsed.empty())
5136     Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed);
5137 
5138   if (!DeleteExprsToAnalyze.empty())
5139     Stream.EmitRecord(DELETE_EXPRS_TO_ANALYZE, DeleteExprsToAnalyze);
5140 
5141   // Write the visible updates to DeclContexts.
5142   for (auto *DC : UpdatedDeclContexts)
5143     WriteDeclContextVisibleUpdate(DC);
5144 
5145   if (!WritingModule) {
5146     // Write the submodules that were imported, if any.
5147     struct ModuleInfo {
5148       uint64_t ID;
5149       Module *M;
5150       ModuleInfo(uint64_t ID, Module *M) : ID(ID), M(M) {}
5151     };
5152     llvm::SmallVector<ModuleInfo, 64> Imports;
5153     for (const auto *I : Context.local_imports()) {
5154       assert(SubmoduleIDs.find(I->getImportedModule()) != SubmoduleIDs.end());
5155       Imports.push_back(ModuleInfo(SubmoduleIDs[I->getImportedModule()],
5156                          I->getImportedModule()));
5157     }
5158 
5159     if (!Imports.empty()) {
5160       auto Cmp = [](const ModuleInfo &A, const ModuleInfo &B) {
5161         return A.ID < B.ID;
5162       };
5163       auto Eq = [](const ModuleInfo &A, const ModuleInfo &B) {
5164         return A.ID == B.ID;
5165       };
5166 
5167       // Sort and deduplicate module IDs.
5168       llvm::sort(Imports, Cmp);
5169       Imports.erase(std::unique(Imports.begin(), Imports.end(), Eq),
5170                     Imports.end());
5171 
5172       RecordData ImportedModules;
5173       for (const auto &Import : Imports) {
5174         ImportedModules.push_back(Import.ID);
5175         // FIXME: If the module has macros imported then later has declarations
5176         // imported, this location won't be the right one as a location for the
5177         // declaration imports.
5178         AddSourceLocation(PP.getModuleImportLoc(Import.M), ImportedModules);
5179       }
5180 
5181       Stream.EmitRecord(IMPORTED_MODULES, ImportedModules);
5182     }
5183   }
5184 
5185   WriteObjCCategories();
5186   if(!WritingModule) {
5187     WriteOptimizePragmaOptions(SemaRef);
5188     WriteMSStructPragmaOptions(SemaRef);
5189     WriteMSPointersToMembersPragmaOptions(SemaRef);
5190   }
5191   WritePackPragmaOptions(SemaRef);
5192 
5193   // Some simple statistics
5194   RecordData::value_type Record[] = {
5195       NumStatements, NumMacros, NumLexicalDeclContexts, NumVisibleDeclContexts};
5196   Stream.EmitRecord(STATISTICS, Record);
5197   Stream.ExitBlock();
5198 
5199   // Write the module file extension blocks.
5200   for (const auto &ExtWriter : ModuleFileExtensionWriters)
5201     WriteModuleFileExtension(SemaRef, *ExtWriter);
5202 
5203   return writeUnhashedControlBlock(PP, Context);
5204 }
5205 
5206 void ASTWriter::WriteDeclUpdatesBlocks(RecordDataImpl &OffsetsRecord) {
5207   if (DeclUpdates.empty())
5208     return;
5209 
5210   DeclUpdateMap LocalUpdates;
5211   LocalUpdates.swap(DeclUpdates);
5212 
5213   for (auto &DeclUpdate : LocalUpdates) {
5214     const Decl *D = DeclUpdate.first;
5215 
5216     bool HasUpdatedBody = false;
5217     RecordData RecordData;
5218     ASTRecordWriter Record(*this, RecordData);
5219     for (auto &Update : DeclUpdate.second) {
5220       DeclUpdateKind Kind = (DeclUpdateKind)Update.getKind();
5221 
5222       // An updated body is emitted last, so that the reader doesn't need
5223       // to skip over the lazy body to reach statements for other records.
5224       if (Kind == UPD_CXX_ADDED_FUNCTION_DEFINITION)
5225         HasUpdatedBody = true;
5226       else
5227         Record.push_back(Kind);
5228 
5229       switch (Kind) {
5230       case UPD_CXX_ADDED_IMPLICIT_MEMBER:
5231       case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
5232       case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE:
5233         assert(Update.getDecl() && "no decl to add?");
5234         Record.push_back(GetDeclRef(Update.getDecl()));
5235         break;
5236 
5237       case UPD_CXX_ADDED_FUNCTION_DEFINITION:
5238         break;
5239 
5240       case UPD_CXX_POINT_OF_INSTANTIATION:
5241         // FIXME: Do we need to also save the template specialization kind here?
5242         Record.AddSourceLocation(Update.getLoc());
5243         break;
5244 
5245       case UPD_CXX_ADDED_VAR_DEFINITION: {
5246         const VarDecl *VD = cast<VarDecl>(D);
5247         Record.push_back(VD->isInline());
5248         Record.push_back(VD->isInlineSpecified());
5249         if (VD->getInit()) {
5250           Record.push_back(!VD->isInitKnownICE() ? 1
5251                                                  : (VD->isInitICE() ? 3 : 2));
5252           Record.AddStmt(const_cast<Expr*>(VD->getInit()));
5253         } else {
5254           Record.push_back(0);
5255         }
5256         break;
5257       }
5258 
5259       case UPD_CXX_INSTANTIATED_DEFAULT_ARGUMENT:
5260         Record.AddStmt(const_cast<Expr *>(
5261             cast<ParmVarDecl>(Update.getDecl())->getDefaultArg()));
5262         break;
5263 
5264       case UPD_CXX_INSTANTIATED_DEFAULT_MEMBER_INITIALIZER:
5265         Record.AddStmt(
5266             cast<FieldDecl>(Update.getDecl())->getInClassInitializer());
5267         break;
5268 
5269       case UPD_CXX_INSTANTIATED_CLASS_DEFINITION: {
5270         auto *RD = cast<CXXRecordDecl>(D);
5271         UpdatedDeclContexts.insert(RD->getPrimaryContext());
5272         Record.push_back(RD->isParamDestroyedInCallee());
5273         Record.push_back(RD->getArgPassingRestrictions());
5274         Record.AddCXXDefinitionData(RD);
5275         Record.AddOffset(WriteDeclContextLexicalBlock(
5276             *Context, const_cast<CXXRecordDecl *>(RD)));
5277 
5278         // This state is sometimes updated by template instantiation, when we
5279         // switch from the specialization referring to the template declaration
5280         // to it referring to the template definition.
5281         if (auto *MSInfo = RD->getMemberSpecializationInfo()) {
5282           Record.push_back(MSInfo->getTemplateSpecializationKind());
5283           Record.AddSourceLocation(MSInfo->getPointOfInstantiation());
5284         } else {
5285           auto *Spec = cast<ClassTemplateSpecializationDecl>(RD);
5286           Record.push_back(Spec->getTemplateSpecializationKind());
5287           Record.AddSourceLocation(Spec->getPointOfInstantiation());
5288 
5289           // The instantiation might have been resolved to a partial
5290           // specialization. If so, record which one.
5291           auto From = Spec->getInstantiatedFrom();
5292           if (auto PartialSpec =
5293                 From.dyn_cast<ClassTemplatePartialSpecializationDecl*>()) {
5294             Record.push_back(true);
5295             Record.AddDeclRef(PartialSpec);
5296             Record.AddTemplateArgumentList(
5297                 &Spec->getTemplateInstantiationArgs());
5298           } else {
5299             Record.push_back(false);
5300           }
5301         }
5302         Record.push_back(RD->getTagKind());
5303         Record.AddSourceLocation(RD->getLocation());
5304         Record.AddSourceLocation(RD->getBeginLoc());
5305         Record.AddSourceRange(RD->getBraceRange());
5306 
5307         // Instantiation may change attributes; write them all out afresh.
5308         Record.push_back(D->hasAttrs());
5309         if (D->hasAttrs())
5310           Record.AddAttributes(D->getAttrs());
5311 
5312         // FIXME: Ensure we don't get here for explicit instantiations.
5313         break;
5314       }
5315 
5316       case UPD_CXX_RESOLVED_DTOR_DELETE:
5317         Record.AddDeclRef(Update.getDecl());
5318         Record.AddStmt(cast<CXXDestructorDecl>(D)->getOperatorDeleteThisArg());
5319         break;
5320 
5321       case UPD_CXX_RESOLVED_EXCEPTION_SPEC:
5322         addExceptionSpec(
5323             cast<FunctionDecl>(D)->getType()->castAs<FunctionProtoType>(),
5324             Record);
5325         break;
5326 
5327       case UPD_CXX_DEDUCED_RETURN_TYPE:
5328         Record.push_back(GetOrCreateTypeID(Update.getType()));
5329         break;
5330 
5331       case UPD_DECL_MARKED_USED:
5332         break;
5333 
5334       case UPD_MANGLING_NUMBER:
5335       case UPD_STATIC_LOCAL_NUMBER:
5336         Record.push_back(Update.getNumber());
5337         break;
5338 
5339       case UPD_DECL_MARKED_OPENMP_THREADPRIVATE:
5340         Record.AddSourceRange(
5341             D->getAttr<OMPThreadPrivateDeclAttr>()->getRange());
5342         break;
5343 
5344       case UPD_DECL_MARKED_OPENMP_ALLOCATE: {
5345         auto *A = D->getAttr<OMPAllocateDeclAttr>();
5346         Record.push_back(A->getAllocatorType());
5347         Record.AddStmt(A->getAllocator());
5348         Record.AddSourceRange(A->getRange());
5349         break;
5350       }
5351 
5352       case UPD_DECL_MARKED_OPENMP_DECLARETARGET:
5353         Record.push_back(D->getAttr<OMPDeclareTargetDeclAttr>()->getMapType());
5354         Record.AddSourceRange(
5355             D->getAttr<OMPDeclareTargetDeclAttr>()->getRange());
5356         break;
5357 
5358       case UPD_DECL_EXPORTED:
5359         Record.push_back(getSubmoduleID(Update.getModule()));
5360         break;
5361 
5362       case UPD_ADDED_ATTR_TO_RECORD:
5363         Record.AddAttributes(llvm::makeArrayRef(Update.getAttr()));
5364         break;
5365       }
5366     }
5367 
5368     if (HasUpdatedBody) {
5369       const auto *Def = cast<FunctionDecl>(D);
5370       Record.push_back(UPD_CXX_ADDED_FUNCTION_DEFINITION);
5371       Record.push_back(Def->isInlined());
5372       Record.AddSourceLocation(Def->getInnerLocStart());
5373       Record.AddFunctionDefinition(Def);
5374     }
5375 
5376     OffsetsRecord.push_back(GetDeclRef(D));
5377     OffsetsRecord.push_back(Record.Emit(DECL_UPDATES));
5378   }
5379 }
5380 
5381 void ASTWriter::AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) {
5382   uint32_t Raw = Loc.getRawEncoding();
5383   Record.push_back((Raw << 1) | (Raw >> 31));
5384 }
5385 
5386 void ASTWriter::AddSourceRange(SourceRange Range, RecordDataImpl &Record) {
5387   AddSourceLocation(Range.getBegin(), Record);
5388   AddSourceLocation(Range.getEnd(), Record);
5389 }
5390 
5391 void ASTRecordWriter::AddAPInt(const llvm::APInt &Value) {
5392   Record->push_back(Value.getBitWidth());
5393   const uint64_t *Words = Value.getRawData();
5394   Record->append(Words, Words + Value.getNumWords());
5395 }
5396 
5397 void ASTRecordWriter::AddAPSInt(const llvm::APSInt &Value) {
5398   Record->push_back(Value.isUnsigned());
5399   AddAPInt(Value);
5400 }
5401 
5402 void ASTRecordWriter::AddAPFloat(const llvm::APFloat &Value) {
5403   AddAPInt(Value.bitcastToAPInt());
5404 }
5405 
5406 static void WriteFixedPointSemantics(ASTRecordWriter &Record,
5407                                      FixedPointSemantics FPSema) {
5408   Record.push_back(FPSema.getWidth());
5409   Record.push_back(FPSema.getScale());
5410   Record.push_back(FPSema.isSigned() | FPSema.isSaturated() << 1 |
5411                    FPSema.hasUnsignedPadding() << 2);
5412 }
5413 
5414 void ASTRecordWriter::AddAPValue(const APValue &Value) {
5415   APValue::ValueKind Kind = Value.getKind();
5416   push_back(static_cast<uint64_t>(Kind));
5417   switch (Kind) {
5418   case APValue::None:
5419   case APValue::Indeterminate:
5420     return;
5421   case APValue::Int:
5422     AddAPSInt(Value.getInt());
5423     return;
5424   case APValue::Float:
5425     push_back(static_cast<uint64_t>(
5426         llvm::APFloatBase::SemanticsToEnum(Value.getFloat().getSemantics())));
5427     AddAPFloat(Value.getFloat());
5428     return;
5429   case APValue::FixedPoint: {
5430     WriteFixedPointSemantics(*this, Value.getFixedPoint().getSemantics());
5431     AddAPSInt(Value.getFixedPoint().getValue());
5432     return;
5433   }
5434   case APValue::ComplexInt: {
5435     AddAPSInt(Value.getComplexIntReal());
5436     AddAPSInt(Value.getComplexIntImag());
5437     return;
5438   }
5439   case APValue::ComplexFloat: {
5440     push_back(static_cast<uint64_t>(llvm::APFloatBase::SemanticsToEnum(
5441         Value.getComplexFloatReal().getSemantics())));
5442     AddAPFloat(Value.getComplexFloatReal());
5443     push_back(static_cast<uint64_t>(llvm::APFloatBase::SemanticsToEnum(
5444         Value.getComplexFloatImag().getSemantics())));
5445     AddAPFloat(Value.getComplexFloatImag());
5446     return;
5447   }
5448   case APValue::LValue:
5449   case APValue::Vector:
5450   case APValue::Array:
5451   case APValue::Struct:
5452   case APValue::Union:
5453   case APValue::MemberPointer:
5454   case APValue::AddrLabelDiff:
5455     // TODO : Handle all these APValue::ValueKind.
5456     return;
5457   }
5458   llvm_unreachable("Invalid APValue::ValueKind");
5459 }
5460 
5461 void ASTWriter::AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) {
5462   Record.push_back(getIdentifierRef(II));
5463 }
5464 
5465 IdentID ASTWriter::getIdentifierRef(const IdentifierInfo *II) {
5466   if (!II)
5467     return 0;
5468 
5469   IdentID &ID = IdentifierIDs[II];
5470   if (ID == 0)
5471     ID = NextIdentID++;
5472   return ID;
5473 }
5474 
5475 MacroID ASTWriter::getMacroRef(MacroInfo *MI, const IdentifierInfo *Name) {
5476   // Don't emit builtin macros like __LINE__ to the AST file unless they
5477   // have been redefined by the header (in which case they are not
5478   // isBuiltinMacro).
5479   if (!MI || MI->isBuiltinMacro())
5480     return 0;
5481 
5482   MacroID &ID = MacroIDs[MI];
5483   if (ID == 0) {
5484     ID = NextMacroID++;
5485     MacroInfoToEmitData Info = { Name, MI, ID };
5486     MacroInfosToEmit.push_back(Info);
5487   }
5488   return ID;
5489 }
5490 
5491 MacroID ASTWriter::getMacroID(MacroInfo *MI) {
5492   if (!MI || MI->isBuiltinMacro())
5493     return 0;
5494 
5495   assert(MacroIDs.find(MI) != MacroIDs.end() && "Macro not emitted!");
5496   return MacroIDs[MI];
5497 }
5498 
5499 uint64_t ASTWriter::getMacroDirectivesOffset(const IdentifierInfo *Name) {
5500   return IdentMacroDirectivesOffsetMap.lookup(Name);
5501 }
5502 
5503 void ASTRecordWriter::AddSelectorRef(const Selector SelRef) {
5504   Record->push_back(Writer->getSelectorRef(SelRef));
5505 }
5506 
5507 SelectorID ASTWriter::getSelectorRef(Selector Sel) {
5508   if (Sel.getAsOpaquePtr() == nullptr) {
5509     return 0;
5510   }
5511 
5512   SelectorID SID = SelectorIDs[Sel];
5513   if (SID == 0 && Chain) {
5514     // This might trigger a ReadSelector callback, which will set the ID for
5515     // this selector.
5516     Chain->LoadSelector(Sel);
5517     SID = SelectorIDs[Sel];
5518   }
5519   if (SID == 0) {
5520     SID = NextSelectorID++;
5521     SelectorIDs[Sel] = SID;
5522   }
5523   return SID;
5524 }
5525 
5526 void ASTRecordWriter::AddCXXTemporary(const CXXTemporary *Temp) {
5527   AddDeclRef(Temp->getDestructor());
5528 }
5529 
5530 void ASTRecordWriter::AddTemplateArgumentLocInfo(
5531     TemplateArgument::ArgKind Kind, const TemplateArgumentLocInfo &Arg) {
5532   switch (Kind) {
5533   case TemplateArgument::Expression:
5534     AddStmt(Arg.getAsExpr());
5535     break;
5536   case TemplateArgument::Type:
5537     AddTypeSourceInfo(Arg.getAsTypeSourceInfo());
5538     break;
5539   case TemplateArgument::Template:
5540     AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc());
5541     AddSourceLocation(Arg.getTemplateNameLoc());
5542     break;
5543   case TemplateArgument::TemplateExpansion:
5544     AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc());
5545     AddSourceLocation(Arg.getTemplateNameLoc());
5546     AddSourceLocation(Arg.getTemplateEllipsisLoc());
5547     break;
5548   case TemplateArgument::Null:
5549   case TemplateArgument::Integral:
5550   case TemplateArgument::Declaration:
5551   case TemplateArgument::NullPtr:
5552   case TemplateArgument::Pack:
5553     // FIXME: Is this right?
5554     break;
5555   }
5556 }
5557 
5558 void ASTRecordWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg) {
5559   AddTemplateArgument(Arg.getArgument());
5560 
5561   if (Arg.getArgument().getKind() == TemplateArgument::Expression) {
5562     bool InfoHasSameExpr
5563       = Arg.getArgument().getAsExpr() == Arg.getLocInfo().getAsExpr();
5564     Record->push_back(InfoHasSameExpr);
5565     if (InfoHasSameExpr)
5566       return; // Avoid storing the same expr twice.
5567   }
5568   AddTemplateArgumentLocInfo(Arg.getArgument().getKind(), Arg.getLocInfo());
5569 }
5570 
5571 void ASTRecordWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo) {
5572   if (!TInfo) {
5573     AddTypeRef(QualType());
5574     return;
5575   }
5576 
5577   AddTypeRef(TInfo->getType());
5578   AddTypeLoc(TInfo->getTypeLoc());
5579 }
5580 
5581 void ASTRecordWriter::AddTypeLoc(TypeLoc TL) {
5582   TypeLocWriter TLW(*this);
5583   for (; !TL.isNull(); TL = TL.getNextTypeLoc())
5584     TLW.Visit(TL);
5585 }
5586 
5587 void ASTWriter::AddTypeRef(QualType T, RecordDataImpl &Record) {
5588   Record.push_back(GetOrCreateTypeID(T));
5589 }
5590 
5591 TypeID ASTWriter::GetOrCreateTypeID(QualType T) {
5592   assert(Context);
5593   return MakeTypeID(*Context, T, [&](QualType T) -> TypeIdx {
5594     if (T.isNull())
5595       return TypeIdx();
5596     assert(!T.getLocalFastQualifiers());
5597 
5598     TypeIdx &Idx = TypeIdxs[T];
5599     if (Idx.getIndex() == 0) {
5600       if (DoneWritingDeclsAndTypes) {
5601         assert(0 && "New type seen after serializing all the types to emit!");
5602         return TypeIdx();
5603       }
5604 
5605       // We haven't seen this type before. Assign it a new ID and put it
5606       // into the queue of types to emit.
5607       Idx = TypeIdx(NextTypeID++);
5608       DeclTypesToEmit.push(T);
5609     }
5610     return Idx;
5611   });
5612 }
5613 
5614 TypeID ASTWriter::getTypeID(QualType T) const {
5615   assert(Context);
5616   return MakeTypeID(*Context, T, [&](QualType T) -> TypeIdx {
5617     if (T.isNull())
5618       return TypeIdx();
5619     assert(!T.getLocalFastQualifiers());
5620 
5621     TypeIdxMap::const_iterator I = TypeIdxs.find(T);
5622     assert(I != TypeIdxs.end() && "Type not emitted!");
5623     return I->second;
5624   });
5625 }
5626 
5627 void ASTWriter::AddDeclRef(const Decl *D, RecordDataImpl &Record) {
5628   Record.push_back(GetDeclRef(D));
5629 }
5630 
5631 DeclID ASTWriter::GetDeclRef(const Decl *D) {
5632   assert(WritingAST && "Cannot request a declaration ID before AST writing");
5633 
5634   if (!D) {
5635     return 0;
5636   }
5637 
5638   // If D comes from an AST file, its declaration ID is already known and
5639   // fixed.
5640   if (D->isFromASTFile())
5641     return D->getGlobalID();
5642 
5643   assert(!(reinterpret_cast<uintptr_t>(D) & 0x01) && "Invalid decl pointer");
5644   DeclID &ID = DeclIDs[D];
5645   if (ID == 0) {
5646     if (DoneWritingDeclsAndTypes) {
5647       assert(0 && "New decl seen after serializing all the decls to emit!");
5648       return 0;
5649     }
5650 
5651     // We haven't seen this declaration before. Give it a new ID and
5652     // enqueue it in the list of declarations to emit.
5653     ID = NextDeclID++;
5654     DeclTypesToEmit.push(const_cast<Decl *>(D));
5655   }
5656 
5657   return ID;
5658 }
5659 
5660 DeclID ASTWriter::getDeclID(const Decl *D) {
5661   if (!D)
5662     return 0;
5663 
5664   // If D comes from an AST file, its declaration ID is already known and
5665   // fixed.
5666   if (D->isFromASTFile())
5667     return D->getGlobalID();
5668 
5669   assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
5670   return DeclIDs[D];
5671 }
5672 
5673 void ASTWriter::associateDeclWithFile(const Decl *D, DeclID ID) {
5674   assert(ID);
5675   assert(D);
5676 
5677   SourceLocation Loc = D->getLocation();
5678   if (Loc.isInvalid())
5679     return;
5680 
5681   // We only keep track of the file-level declarations of each file.
5682   if (!D->getLexicalDeclContext()->isFileContext())
5683     return;
5684   // FIXME: ParmVarDecls that are part of a function type of a parameter of
5685   // a function/objc method, should not have TU as lexical context.
5686   // TemplateTemplateParmDecls that are part of an alias template, should not
5687   // have TU as lexical context.
5688   if (isa<ParmVarDecl>(D) || isa<TemplateTemplateParmDecl>(D))
5689     return;
5690 
5691   SourceManager &SM = Context->getSourceManager();
5692   SourceLocation FileLoc = SM.getFileLoc(Loc);
5693   assert(SM.isLocalSourceLocation(FileLoc));
5694   FileID FID;
5695   unsigned Offset;
5696   std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);
5697   if (FID.isInvalid())
5698     return;
5699   assert(SM.getSLocEntry(FID).isFile());
5700 
5701   DeclIDInFileInfo *&Info = FileDeclIDs[FID];
5702   if (!Info)
5703     Info = new DeclIDInFileInfo();
5704 
5705   std::pair<unsigned, serialization::DeclID> LocDecl(Offset, ID);
5706   LocDeclIDsTy &Decls = Info->DeclIDs;
5707 
5708   if (Decls.empty() || Decls.back().first <= Offset) {
5709     Decls.push_back(LocDecl);
5710     return;
5711   }
5712 
5713   LocDeclIDsTy::iterator I =
5714       llvm::upper_bound(Decls, LocDecl, llvm::less_first());
5715 
5716   Decls.insert(I, LocDecl);
5717 }
5718 
5719 void ASTRecordWriter::AddDeclarationName(DeclarationName Name) {
5720   // FIXME: Emit a stable enum for NameKind.  0 = Identifier etc.
5721   Record->push_back(Name.getNameKind());
5722   switch (Name.getNameKind()) {
5723   case DeclarationName::Identifier:
5724     AddIdentifierRef(Name.getAsIdentifierInfo());
5725     break;
5726 
5727   case DeclarationName::ObjCZeroArgSelector:
5728   case DeclarationName::ObjCOneArgSelector:
5729   case DeclarationName::ObjCMultiArgSelector:
5730     AddSelectorRef(Name.getObjCSelector());
5731     break;
5732 
5733   case DeclarationName::CXXConstructorName:
5734   case DeclarationName::CXXDestructorName:
5735   case DeclarationName::CXXConversionFunctionName:
5736     AddTypeRef(Name.getCXXNameType());
5737     break;
5738 
5739   case DeclarationName::CXXDeductionGuideName:
5740     AddDeclRef(Name.getCXXDeductionGuideTemplate());
5741     break;
5742 
5743   case DeclarationName::CXXOperatorName:
5744     Record->push_back(Name.getCXXOverloadedOperator());
5745     break;
5746 
5747   case DeclarationName::CXXLiteralOperatorName:
5748     AddIdentifierRef(Name.getCXXLiteralIdentifier());
5749     break;
5750 
5751   case DeclarationName::CXXUsingDirective:
5752     // No extra data to emit
5753     break;
5754   }
5755 }
5756 
5757 unsigned ASTWriter::getAnonymousDeclarationNumber(const NamedDecl *D) {
5758   assert(needsAnonymousDeclarationNumber(D) &&
5759          "expected an anonymous declaration");
5760 
5761   // Number the anonymous declarations within this context, if we've not
5762   // already done so.
5763   auto It = AnonymousDeclarationNumbers.find(D);
5764   if (It == AnonymousDeclarationNumbers.end()) {
5765     auto *DC = D->getLexicalDeclContext();
5766     numberAnonymousDeclsWithin(DC, [&](const NamedDecl *ND, unsigned Number) {
5767       AnonymousDeclarationNumbers[ND] = Number;
5768     });
5769 
5770     It = AnonymousDeclarationNumbers.find(D);
5771     assert(It != AnonymousDeclarationNumbers.end() &&
5772            "declaration not found within its lexical context");
5773   }
5774 
5775   return It->second;
5776 }
5777 
5778 void ASTRecordWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc,
5779                                             DeclarationName Name) {
5780   switch (Name.getNameKind()) {
5781   case DeclarationName::CXXConstructorName:
5782   case DeclarationName::CXXDestructorName:
5783   case DeclarationName::CXXConversionFunctionName:
5784     AddTypeSourceInfo(DNLoc.NamedType.TInfo);
5785     break;
5786 
5787   case DeclarationName::CXXOperatorName:
5788     AddSourceLocation(SourceLocation::getFromRawEncoding(
5789         DNLoc.CXXOperatorName.BeginOpNameLoc));
5790     AddSourceLocation(
5791         SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc));
5792     break;
5793 
5794   case DeclarationName::CXXLiteralOperatorName:
5795     AddSourceLocation(SourceLocation::getFromRawEncoding(
5796         DNLoc.CXXLiteralOperatorName.OpNameLoc));
5797     break;
5798 
5799   case DeclarationName::Identifier:
5800   case DeclarationName::ObjCZeroArgSelector:
5801   case DeclarationName::ObjCOneArgSelector:
5802   case DeclarationName::ObjCMultiArgSelector:
5803   case DeclarationName::CXXUsingDirective:
5804   case DeclarationName::CXXDeductionGuideName:
5805     break;
5806   }
5807 }
5808 
5809 void ASTRecordWriter::AddDeclarationNameInfo(
5810     const DeclarationNameInfo &NameInfo) {
5811   AddDeclarationName(NameInfo.getName());
5812   AddSourceLocation(NameInfo.getLoc());
5813   AddDeclarationNameLoc(NameInfo.getInfo(), NameInfo.getName());
5814 }
5815 
5816 void ASTRecordWriter::AddQualifierInfo(const QualifierInfo &Info) {
5817   AddNestedNameSpecifierLoc(Info.QualifierLoc);
5818   Record->push_back(Info.NumTemplParamLists);
5819   for (unsigned i = 0, e = Info.NumTemplParamLists; i != e; ++i)
5820     AddTemplateParameterList(Info.TemplParamLists[i]);
5821 }
5822 
5823 void ASTRecordWriter::AddNestedNameSpecifier(NestedNameSpecifier *NNS) {
5824   // Nested name specifiers usually aren't too long. I think that 8 would
5825   // typically accommodate the vast majority.
5826   SmallVector<NestedNameSpecifier *, 8> NestedNames;
5827 
5828   // Push each of the NNS's onto a stack for serialization in reverse order.
5829   while (NNS) {
5830     NestedNames.push_back(NNS);
5831     NNS = NNS->getPrefix();
5832   }
5833 
5834   Record->push_back(NestedNames.size());
5835   while(!NestedNames.empty()) {
5836     NNS = NestedNames.pop_back_val();
5837     NestedNameSpecifier::SpecifierKind Kind = NNS->getKind();
5838     Record->push_back(Kind);
5839     switch (Kind) {
5840     case NestedNameSpecifier::Identifier:
5841       AddIdentifierRef(NNS->getAsIdentifier());
5842       break;
5843 
5844     case NestedNameSpecifier::Namespace:
5845       AddDeclRef(NNS->getAsNamespace());
5846       break;
5847 
5848     case NestedNameSpecifier::NamespaceAlias:
5849       AddDeclRef(NNS->getAsNamespaceAlias());
5850       break;
5851 
5852     case NestedNameSpecifier::TypeSpec:
5853     case NestedNameSpecifier::TypeSpecWithTemplate:
5854       AddTypeRef(QualType(NNS->getAsType(), 0));
5855       Record->push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
5856       break;
5857 
5858     case NestedNameSpecifier::Global:
5859       // Don't need to write an associated value.
5860       break;
5861 
5862     case NestedNameSpecifier::Super:
5863       AddDeclRef(NNS->getAsRecordDecl());
5864       break;
5865     }
5866   }
5867 }
5868 
5869 void ASTRecordWriter::AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS) {
5870   // Nested name specifiers usually aren't too long. I think that 8 would
5871   // typically accommodate the vast majority.
5872   SmallVector<NestedNameSpecifierLoc , 8> NestedNames;
5873 
5874   // Push each of the nested-name-specifiers's onto a stack for
5875   // serialization in reverse order.
5876   while (NNS) {
5877     NestedNames.push_back(NNS);
5878     NNS = NNS.getPrefix();
5879   }
5880 
5881   Record->push_back(NestedNames.size());
5882   while(!NestedNames.empty()) {
5883     NNS = NestedNames.pop_back_val();
5884     NestedNameSpecifier::SpecifierKind Kind
5885       = NNS.getNestedNameSpecifier()->getKind();
5886     Record->push_back(Kind);
5887     switch (Kind) {
5888     case NestedNameSpecifier::Identifier:
5889       AddIdentifierRef(NNS.getNestedNameSpecifier()->getAsIdentifier());
5890       AddSourceRange(NNS.getLocalSourceRange());
5891       break;
5892 
5893     case NestedNameSpecifier::Namespace:
5894       AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespace());
5895       AddSourceRange(NNS.getLocalSourceRange());
5896       break;
5897 
5898     case NestedNameSpecifier::NamespaceAlias:
5899       AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespaceAlias());
5900       AddSourceRange(NNS.getLocalSourceRange());
5901       break;
5902 
5903     case NestedNameSpecifier::TypeSpec:
5904     case NestedNameSpecifier::TypeSpecWithTemplate:
5905       Record->push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
5906       AddTypeRef(NNS.getTypeLoc().getType());
5907       AddTypeLoc(NNS.getTypeLoc());
5908       AddSourceLocation(NNS.getLocalSourceRange().getEnd());
5909       break;
5910 
5911     case NestedNameSpecifier::Global:
5912       AddSourceLocation(NNS.getLocalSourceRange().getEnd());
5913       break;
5914 
5915     case NestedNameSpecifier::Super:
5916       AddDeclRef(NNS.getNestedNameSpecifier()->getAsRecordDecl());
5917       AddSourceRange(NNS.getLocalSourceRange());
5918       break;
5919     }
5920   }
5921 }
5922 
5923 void ASTRecordWriter::AddTemplateName(TemplateName Name) {
5924   TemplateName::NameKind Kind = Name.getKind();
5925   Record->push_back(Kind);
5926   switch (Kind) {
5927   case TemplateName::Template:
5928     AddDeclRef(Name.getAsTemplateDecl());
5929     break;
5930 
5931   case TemplateName::OverloadedTemplate: {
5932     OverloadedTemplateStorage *OvT = Name.getAsOverloadedTemplate();
5933     Record->push_back(OvT->size());
5934     for (const auto &I : *OvT)
5935       AddDeclRef(I);
5936     break;
5937   }
5938 
5939   case TemplateName::AssumedTemplate: {
5940     AssumedTemplateStorage *ADLT = Name.getAsAssumedTemplateName();
5941     AddDeclarationName(ADLT->getDeclName());
5942     break;
5943   }
5944 
5945   case TemplateName::QualifiedTemplate: {
5946     QualifiedTemplateName *QualT = Name.getAsQualifiedTemplateName();
5947     AddNestedNameSpecifier(QualT->getQualifier());
5948     Record->push_back(QualT->hasTemplateKeyword());
5949     AddDeclRef(QualT->getTemplateDecl());
5950     break;
5951   }
5952 
5953   case TemplateName::DependentTemplate: {
5954     DependentTemplateName *DepT = Name.getAsDependentTemplateName();
5955     AddNestedNameSpecifier(DepT->getQualifier());
5956     Record->push_back(DepT->isIdentifier());
5957     if (DepT->isIdentifier())
5958       AddIdentifierRef(DepT->getIdentifier());
5959     else
5960       Record->push_back(DepT->getOperator());
5961     break;
5962   }
5963 
5964   case TemplateName::SubstTemplateTemplateParm: {
5965     SubstTemplateTemplateParmStorage *subst
5966       = Name.getAsSubstTemplateTemplateParm();
5967     AddDeclRef(subst->getParameter());
5968     AddTemplateName(subst->getReplacement());
5969     break;
5970   }
5971 
5972   case TemplateName::SubstTemplateTemplateParmPack: {
5973     SubstTemplateTemplateParmPackStorage *SubstPack
5974       = Name.getAsSubstTemplateTemplateParmPack();
5975     AddDeclRef(SubstPack->getParameterPack());
5976     AddTemplateArgument(SubstPack->getArgumentPack());
5977     break;
5978   }
5979   }
5980 }
5981 
5982 void ASTRecordWriter::AddTemplateArgument(const TemplateArgument &Arg) {
5983   Record->push_back(Arg.getKind());
5984   switch (Arg.getKind()) {
5985   case TemplateArgument::Null:
5986     break;
5987   case TemplateArgument::Type:
5988     AddTypeRef(Arg.getAsType());
5989     break;
5990   case TemplateArgument::Declaration:
5991     AddDeclRef(Arg.getAsDecl());
5992     AddTypeRef(Arg.getParamTypeForDecl());
5993     break;
5994   case TemplateArgument::NullPtr:
5995     AddTypeRef(Arg.getNullPtrType());
5996     break;
5997   case TemplateArgument::Integral:
5998     AddAPSInt(Arg.getAsIntegral());
5999     AddTypeRef(Arg.getIntegralType());
6000     break;
6001   case TemplateArgument::Template:
6002     AddTemplateName(Arg.getAsTemplateOrTemplatePattern());
6003     break;
6004   case TemplateArgument::TemplateExpansion:
6005     AddTemplateName(Arg.getAsTemplateOrTemplatePattern());
6006     if (Optional<unsigned> NumExpansions = Arg.getNumTemplateExpansions())
6007       Record->push_back(*NumExpansions + 1);
6008     else
6009       Record->push_back(0);
6010     break;
6011   case TemplateArgument::Expression:
6012     AddStmt(Arg.getAsExpr());
6013     break;
6014   case TemplateArgument::Pack:
6015     Record->push_back(Arg.pack_size());
6016     for (const auto &P : Arg.pack_elements())
6017       AddTemplateArgument(P);
6018     break;
6019   }
6020 }
6021 
6022 void ASTRecordWriter::AddTemplateParameterList(
6023     const TemplateParameterList *TemplateParams) {
6024   assert(TemplateParams && "No TemplateParams!");
6025   AddSourceLocation(TemplateParams->getTemplateLoc());
6026   AddSourceLocation(TemplateParams->getLAngleLoc());
6027   AddSourceLocation(TemplateParams->getRAngleLoc());
6028   // TODO: Concepts
6029   Record->push_back(TemplateParams->size());
6030   for (const auto &P : *TemplateParams)
6031     AddDeclRef(P);
6032 }
6033 
6034 /// Emit a template argument list.
6035 void ASTRecordWriter::AddTemplateArgumentList(
6036     const TemplateArgumentList *TemplateArgs) {
6037   assert(TemplateArgs && "No TemplateArgs!");
6038   Record->push_back(TemplateArgs->size());
6039   for (int i = 0, e = TemplateArgs->size(); i != e; ++i)
6040     AddTemplateArgument(TemplateArgs->get(i));
6041 }
6042 
6043 void ASTRecordWriter::AddASTTemplateArgumentListInfo(
6044     const ASTTemplateArgumentListInfo *ASTTemplArgList) {
6045   assert(ASTTemplArgList && "No ASTTemplArgList!");
6046   AddSourceLocation(ASTTemplArgList->LAngleLoc);
6047   AddSourceLocation(ASTTemplArgList->RAngleLoc);
6048   Record->push_back(ASTTemplArgList->NumTemplateArgs);
6049   const TemplateArgumentLoc *TemplArgs = ASTTemplArgList->getTemplateArgs();
6050   for (int i = 0, e = ASTTemplArgList->NumTemplateArgs; i != e; ++i)
6051     AddTemplateArgumentLoc(TemplArgs[i]);
6052 }
6053 
6054 void ASTRecordWriter::AddUnresolvedSet(const ASTUnresolvedSet &Set) {
6055   Record->push_back(Set.size());
6056   for (ASTUnresolvedSet::const_iterator
6057          I = Set.begin(), E = Set.end(); I != E; ++I) {
6058     AddDeclRef(I.getDecl());
6059     Record->push_back(I.getAccess());
6060   }
6061 }
6062 
6063 // FIXME: Move this out of the main ASTRecordWriter interface.
6064 void ASTRecordWriter::AddCXXBaseSpecifier(const CXXBaseSpecifier &Base) {
6065   Record->push_back(Base.isVirtual());
6066   Record->push_back(Base.isBaseOfClass());
6067   Record->push_back(Base.getAccessSpecifierAsWritten());
6068   Record->push_back(Base.getInheritConstructors());
6069   AddTypeSourceInfo(Base.getTypeSourceInfo());
6070   AddSourceRange(Base.getSourceRange());
6071   AddSourceLocation(Base.isPackExpansion()? Base.getEllipsisLoc()
6072                                           : SourceLocation());
6073 }
6074 
6075 static uint64_t EmitCXXBaseSpecifiers(ASTWriter &W,
6076                                       ArrayRef<CXXBaseSpecifier> Bases) {
6077   ASTWriter::RecordData Record;
6078   ASTRecordWriter Writer(W, Record);
6079   Writer.push_back(Bases.size());
6080 
6081   for (auto &Base : Bases)
6082     Writer.AddCXXBaseSpecifier(Base);
6083 
6084   return Writer.Emit(serialization::DECL_CXX_BASE_SPECIFIERS);
6085 }
6086 
6087 // FIXME: Move this out of the main ASTRecordWriter interface.
6088 void ASTRecordWriter::AddCXXBaseSpecifiers(ArrayRef<CXXBaseSpecifier> Bases) {
6089   AddOffset(EmitCXXBaseSpecifiers(*Writer, Bases));
6090 }
6091 
6092 static uint64_t
6093 EmitCXXCtorInitializers(ASTWriter &W,
6094                         ArrayRef<CXXCtorInitializer *> CtorInits) {
6095   ASTWriter::RecordData Record;
6096   ASTRecordWriter Writer(W, Record);
6097   Writer.push_back(CtorInits.size());
6098 
6099   for (auto *Init : CtorInits) {
6100     if (Init->isBaseInitializer()) {
6101       Writer.push_back(CTOR_INITIALIZER_BASE);
6102       Writer.AddTypeSourceInfo(Init->getTypeSourceInfo());
6103       Writer.push_back(Init->isBaseVirtual());
6104     } else if (Init->isDelegatingInitializer()) {
6105       Writer.push_back(CTOR_INITIALIZER_DELEGATING);
6106       Writer.AddTypeSourceInfo(Init->getTypeSourceInfo());
6107     } else if (Init->isMemberInitializer()){
6108       Writer.push_back(CTOR_INITIALIZER_MEMBER);
6109       Writer.AddDeclRef(Init->getMember());
6110     } else {
6111       Writer.push_back(CTOR_INITIALIZER_INDIRECT_MEMBER);
6112       Writer.AddDeclRef(Init->getIndirectMember());
6113     }
6114 
6115     Writer.AddSourceLocation(Init->getMemberLocation());
6116     Writer.AddStmt(Init->getInit());
6117     Writer.AddSourceLocation(Init->getLParenLoc());
6118     Writer.AddSourceLocation(Init->getRParenLoc());
6119     Writer.push_back(Init->isWritten());
6120     if (Init->isWritten())
6121       Writer.push_back(Init->getSourceOrder());
6122   }
6123 
6124   return Writer.Emit(serialization::DECL_CXX_CTOR_INITIALIZERS);
6125 }
6126 
6127 // FIXME: Move this out of the main ASTRecordWriter interface.
6128 void ASTRecordWriter::AddCXXCtorInitializers(
6129     ArrayRef<CXXCtorInitializer *> CtorInits) {
6130   AddOffset(EmitCXXCtorInitializers(*Writer, CtorInits));
6131 }
6132 
6133 void ASTRecordWriter::AddCXXDefinitionData(const CXXRecordDecl *D) {
6134   auto &Data = D->data();
6135   Record->push_back(Data.IsLambda);
6136   Record->push_back(Data.UserDeclaredConstructor);
6137   Record->push_back(Data.UserDeclaredSpecialMembers);
6138   Record->push_back(Data.Aggregate);
6139   Record->push_back(Data.PlainOldData);
6140   Record->push_back(Data.Empty);
6141   Record->push_back(Data.Polymorphic);
6142   Record->push_back(Data.Abstract);
6143   Record->push_back(Data.IsStandardLayout);
6144   Record->push_back(Data.IsCXX11StandardLayout);
6145   Record->push_back(Data.HasBasesWithFields);
6146   Record->push_back(Data.HasBasesWithNonStaticDataMembers);
6147   Record->push_back(Data.HasPrivateFields);
6148   Record->push_back(Data.HasProtectedFields);
6149   Record->push_back(Data.HasPublicFields);
6150   Record->push_back(Data.HasMutableFields);
6151   Record->push_back(Data.HasVariantMembers);
6152   Record->push_back(Data.HasOnlyCMembers);
6153   Record->push_back(Data.HasInClassInitializer);
6154   Record->push_back(Data.HasUninitializedReferenceMember);
6155   Record->push_back(Data.HasUninitializedFields);
6156   Record->push_back(Data.HasInheritedConstructor);
6157   Record->push_back(Data.HasInheritedAssignment);
6158   Record->push_back(Data.NeedOverloadResolutionForCopyConstructor);
6159   Record->push_back(Data.NeedOverloadResolutionForMoveConstructor);
6160   Record->push_back(Data.NeedOverloadResolutionForMoveAssignment);
6161   Record->push_back(Data.NeedOverloadResolutionForDestructor);
6162   Record->push_back(Data.DefaultedCopyConstructorIsDeleted);
6163   Record->push_back(Data.DefaultedMoveConstructorIsDeleted);
6164   Record->push_back(Data.DefaultedMoveAssignmentIsDeleted);
6165   Record->push_back(Data.DefaultedDestructorIsDeleted);
6166   Record->push_back(Data.HasTrivialSpecialMembers);
6167   Record->push_back(Data.HasTrivialSpecialMembersForCall);
6168   Record->push_back(Data.DeclaredNonTrivialSpecialMembers);
6169   Record->push_back(Data.DeclaredNonTrivialSpecialMembersForCall);
6170   Record->push_back(Data.HasIrrelevantDestructor);
6171   Record->push_back(Data.HasConstexprNonCopyMoveConstructor);
6172   Record->push_back(Data.HasDefaultedDefaultConstructor);
6173   Record->push_back(Data.DefaultedDefaultConstructorIsConstexpr);
6174   Record->push_back(Data.HasConstexprDefaultConstructor);
6175   Record->push_back(Data.HasNonLiteralTypeFieldsOrBases);
6176   Record->push_back(Data.ComputedVisibleConversions);
6177   Record->push_back(Data.UserProvidedDefaultConstructor);
6178   Record->push_back(Data.DeclaredSpecialMembers);
6179   Record->push_back(Data.ImplicitCopyConstructorCanHaveConstParamForVBase);
6180   Record->push_back(Data.ImplicitCopyConstructorCanHaveConstParamForNonVBase);
6181   Record->push_back(Data.ImplicitCopyAssignmentHasConstParam);
6182   Record->push_back(Data.HasDeclaredCopyConstructorWithConstParam);
6183   Record->push_back(Data.HasDeclaredCopyAssignmentWithConstParam);
6184 
6185   // getODRHash will compute the ODRHash if it has not been previously computed.
6186   Record->push_back(D->getODRHash());
6187   bool ModulesDebugInfo = Writer->Context->getLangOpts().ModulesDebugInfo &&
6188                           Writer->WritingModule && !D->isDependentType();
6189   Record->push_back(ModulesDebugInfo);
6190   if (ModulesDebugInfo)
6191     Writer->ModularCodegenDecls.push_back(Writer->GetDeclRef(D));
6192 
6193   // IsLambda bit is already saved.
6194 
6195   Record->push_back(Data.NumBases);
6196   if (Data.NumBases > 0)
6197     AddCXXBaseSpecifiers(Data.bases());
6198 
6199   // FIXME: Make VBases lazily computed when needed to avoid storing them.
6200   Record->push_back(Data.NumVBases);
6201   if (Data.NumVBases > 0)
6202     AddCXXBaseSpecifiers(Data.vbases());
6203 
6204   AddUnresolvedSet(Data.Conversions.get(*Writer->Context));
6205   AddUnresolvedSet(Data.VisibleConversions.get(*Writer->Context));
6206   // Data.Definition is the owning decl, no need to write it.
6207   AddDeclRef(D->getFirstFriend());
6208 
6209   // Add lambda-specific data.
6210   if (Data.IsLambda) {
6211     auto &Lambda = D->getLambdaData();
6212     Record->push_back(Lambda.Dependent);
6213     Record->push_back(Lambda.IsGenericLambda);
6214     Record->push_back(Lambda.CaptureDefault);
6215     Record->push_back(Lambda.NumCaptures);
6216     Record->push_back(Lambda.NumExplicitCaptures);
6217     Record->push_back(Lambda.ManglingNumber);
6218     AddDeclRef(D->getLambdaContextDecl());
6219     AddTypeSourceInfo(Lambda.MethodTyInfo);
6220     for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {
6221       const LambdaCapture &Capture = Lambda.Captures[I];
6222       AddSourceLocation(Capture.getLocation());
6223       Record->push_back(Capture.isImplicit());
6224       Record->push_back(Capture.getCaptureKind());
6225       switch (Capture.getCaptureKind()) {
6226       case LCK_StarThis:
6227       case LCK_This:
6228       case LCK_VLAType:
6229         break;
6230       case LCK_ByCopy:
6231       case LCK_ByRef:
6232         VarDecl *Var =
6233             Capture.capturesVariable() ? Capture.getCapturedVar() : nullptr;
6234         AddDeclRef(Var);
6235         AddSourceLocation(Capture.isPackExpansion() ? Capture.getEllipsisLoc()
6236                                                     : SourceLocation());
6237         break;
6238       }
6239     }
6240   }
6241 }
6242 
6243 void ASTWriter::ReaderInitialized(ASTReader *Reader) {
6244   assert(Reader && "Cannot remove chain");
6245   assert((!Chain || Chain == Reader) && "Cannot replace chain");
6246   assert(FirstDeclID == NextDeclID &&
6247          FirstTypeID == NextTypeID &&
6248          FirstIdentID == NextIdentID &&
6249          FirstMacroID == NextMacroID &&
6250          FirstSubmoduleID == NextSubmoduleID &&
6251          FirstSelectorID == NextSelectorID &&
6252          "Setting chain after writing has started.");
6253 
6254   Chain = Reader;
6255 
6256   // Note, this will get called multiple times, once one the reader starts up
6257   // and again each time it's done reading a PCH or module.
6258   FirstDeclID = NUM_PREDEF_DECL_IDS + Chain->getTotalNumDecls();
6259   FirstTypeID = NUM_PREDEF_TYPE_IDS + Chain->getTotalNumTypes();
6260   FirstIdentID = NUM_PREDEF_IDENT_IDS + Chain->getTotalNumIdentifiers();
6261   FirstMacroID = NUM_PREDEF_MACRO_IDS + Chain->getTotalNumMacros();
6262   FirstSubmoduleID = NUM_PREDEF_SUBMODULE_IDS + Chain->getTotalNumSubmodules();
6263   FirstSelectorID = NUM_PREDEF_SELECTOR_IDS + Chain->getTotalNumSelectors();
6264   NextDeclID = FirstDeclID;
6265   NextTypeID = FirstTypeID;
6266   NextIdentID = FirstIdentID;
6267   NextMacroID = FirstMacroID;
6268   NextSelectorID = FirstSelectorID;
6269   NextSubmoduleID = FirstSubmoduleID;
6270 }
6271 
6272 void ASTWriter::IdentifierRead(IdentID ID, IdentifierInfo *II) {
6273   // Always keep the highest ID. See \p TypeRead() for more information.
6274   IdentID &StoredID = IdentifierIDs[II];
6275   if (ID > StoredID)
6276     StoredID = ID;
6277 }
6278 
6279 void ASTWriter::MacroRead(serialization::MacroID ID, MacroInfo *MI) {
6280   // Always keep the highest ID. See \p TypeRead() for more information.
6281   MacroID &StoredID = MacroIDs[MI];
6282   if (ID > StoredID)
6283     StoredID = ID;
6284 }
6285 
6286 void ASTWriter::TypeRead(TypeIdx Idx, QualType T) {
6287   // Always take the highest-numbered type index. This copes with an interesting
6288   // case for chained AST writing where we schedule writing the type and then,
6289   // later, deserialize the type from another AST. In this case, we want to
6290   // keep the higher-numbered entry so that we can properly write it out to
6291   // the AST file.
6292   TypeIdx &StoredIdx = TypeIdxs[T];
6293   if (Idx.getIndex() >= StoredIdx.getIndex())
6294     StoredIdx = Idx;
6295 }
6296 
6297 void ASTWriter::SelectorRead(SelectorID ID, Selector S) {
6298   // Always keep the highest ID. See \p TypeRead() for more information.
6299   SelectorID &StoredID = SelectorIDs[S];
6300   if (ID > StoredID)
6301     StoredID = ID;
6302 }
6303 
6304 void ASTWriter::MacroDefinitionRead(serialization::PreprocessedEntityID ID,
6305                                     MacroDefinitionRecord *MD) {
6306   assert(MacroDefinitions.find(MD) == MacroDefinitions.end());
6307   MacroDefinitions[MD] = ID;
6308 }
6309 
6310 void ASTWriter::ModuleRead(serialization::SubmoduleID ID, Module *Mod) {
6311   assert(SubmoduleIDs.find(Mod) == SubmoduleIDs.end());
6312   SubmoduleIDs[Mod] = ID;
6313 }
6314 
6315 void ASTWriter::CompletedTagDefinition(const TagDecl *D) {
6316   if (Chain && Chain->isProcessingUpdateRecords()) return;
6317   assert(D->isCompleteDefinition());
6318   assert(!WritingAST && "Already writing the AST!");
6319   if (auto *RD = dyn_cast<CXXRecordDecl>(D)) {
6320     // We are interested when a PCH decl is modified.
6321     if (RD->isFromASTFile()) {
6322       // A forward reference was mutated into a definition. Rewrite it.
6323       // FIXME: This happens during template instantiation, should we
6324       // have created a new definition decl instead ?
6325       assert(isTemplateInstantiation(RD->getTemplateSpecializationKind()) &&
6326              "completed a tag from another module but not by instantiation?");
6327       DeclUpdates[RD].push_back(
6328           DeclUpdate(UPD_CXX_INSTANTIATED_CLASS_DEFINITION));
6329     }
6330   }
6331 }
6332 
6333 static bool isImportedDeclContext(ASTReader *Chain, const Decl *D) {
6334   if (D->isFromASTFile())
6335     return true;
6336 
6337   // The predefined __va_list_tag struct is imported if we imported any decls.
6338   // FIXME: This is a gross hack.
6339   return D == D->getASTContext().getVaListTagDecl();
6340 }
6341 
6342 void ASTWriter::AddedVisibleDecl(const DeclContext *DC, const Decl *D) {
6343   if (Chain && Chain->isProcessingUpdateRecords()) return;
6344   assert(DC->isLookupContext() &&
6345           "Should not add lookup results to non-lookup contexts!");
6346 
6347   // TU is handled elsewhere.
6348   if (isa<TranslationUnitDecl>(DC))
6349     return;
6350 
6351   // Namespaces are handled elsewhere, except for template instantiations of
6352   // FunctionTemplateDecls in namespaces. We are interested in cases where the
6353   // local instantiations are added to an imported context. Only happens when
6354   // adding ADL lookup candidates, for example templated friends.
6355   if (isa<NamespaceDecl>(DC) && D->getFriendObjectKind() == Decl::FOK_None &&
6356       !isa<FunctionTemplateDecl>(D))
6357     return;
6358 
6359   // We're only interested in cases where a local declaration is added to an
6360   // imported context.
6361   if (D->isFromASTFile() || !isImportedDeclContext(Chain, cast<Decl>(DC)))
6362     return;
6363 
6364   assert(DC == DC->getPrimaryContext() && "added to non-primary context");
6365   assert(!getDefinitiveDeclContext(DC) && "DeclContext not definitive!");
6366   assert(!WritingAST && "Already writing the AST!");
6367   if (UpdatedDeclContexts.insert(DC) && !cast<Decl>(DC)->isFromASTFile()) {
6368     // We're adding a visible declaration to a predefined decl context. Ensure
6369     // that we write out all of its lookup results so we don't get a nasty
6370     // surprise when we try to emit its lookup table.
6371     for (auto *Child : DC->decls())
6372       DeclsToEmitEvenIfUnreferenced.push_back(Child);
6373   }
6374   DeclsToEmitEvenIfUnreferenced.push_back(D);
6375 }
6376 
6377 void ASTWriter::AddedCXXImplicitMember(const CXXRecordDecl *RD, const Decl *D) {
6378   if (Chain && Chain->isProcessingUpdateRecords()) return;
6379   assert(D->isImplicit());
6380 
6381   // We're only interested in cases where a local declaration is added to an
6382   // imported context.
6383   if (D->isFromASTFile() || !isImportedDeclContext(Chain, RD))
6384     return;
6385 
6386   if (!isa<CXXMethodDecl>(D))
6387     return;
6388 
6389   // A decl coming from PCH was modified.
6390   assert(RD->isCompleteDefinition());
6391   assert(!WritingAST && "Already writing the AST!");
6392   DeclUpdates[RD].push_back(DeclUpdate(UPD_CXX_ADDED_IMPLICIT_MEMBER, D));
6393 }
6394 
6395 void ASTWriter::ResolvedExceptionSpec(const FunctionDecl *FD) {
6396   if (Chain && Chain->isProcessingUpdateRecords()) return;
6397   assert(!DoneWritingDeclsAndTypes && "Already done writing updates!");
6398   if (!Chain) return;
6399   Chain->forEachImportedKeyDecl(FD, [&](const Decl *D) {
6400     // If we don't already know the exception specification for this redecl
6401     // chain, add an update record for it.
6402     if (isUnresolvedExceptionSpec(cast<FunctionDecl>(D)
6403                                       ->getType()
6404                                       ->castAs<FunctionProtoType>()
6405                                       ->getExceptionSpecType()))
6406       DeclUpdates[D].push_back(UPD_CXX_RESOLVED_EXCEPTION_SPEC);
6407   });
6408 }
6409 
6410 void ASTWriter::DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) {
6411   if (Chain && Chain->isProcessingUpdateRecords()) return;
6412   assert(!WritingAST && "Already writing the AST!");
6413   if (!Chain) return;
6414   Chain->forEachImportedKeyDecl(FD, [&](const Decl *D) {
6415     DeclUpdates[D].push_back(
6416         DeclUpdate(UPD_CXX_DEDUCED_RETURN_TYPE, ReturnType));
6417   });
6418 }
6419 
6420 void ASTWriter::ResolvedOperatorDelete(const CXXDestructorDecl *DD,
6421                                        const FunctionDecl *Delete,
6422                                        Expr *ThisArg) {
6423   if (Chain && Chain->isProcessingUpdateRecords()) return;
6424   assert(!WritingAST && "Already writing the AST!");
6425   assert(Delete && "Not given an operator delete");
6426   if (!Chain) return;
6427   Chain->forEachImportedKeyDecl(DD, [&](const Decl *D) {
6428     DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_RESOLVED_DTOR_DELETE, Delete));
6429   });
6430 }
6431 
6432 void ASTWriter::CompletedImplicitDefinition(const FunctionDecl *D) {
6433   if (Chain && Chain->isProcessingUpdateRecords()) return;
6434   assert(!WritingAST && "Already writing the AST!");
6435   if (!D->isFromASTFile())
6436     return; // Declaration not imported from PCH.
6437 
6438   // Implicit function decl from a PCH was defined.
6439   DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_ADDED_FUNCTION_DEFINITION));
6440 }
6441 
6442 void ASTWriter::VariableDefinitionInstantiated(const VarDecl *D) {
6443   if (Chain && Chain->isProcessingUpdateRecords()) return;
6444   assert(!WritingAST && "Already writing the AST!");
6445   if (!D->isFromASTFile())
6446     return;
6447 
6448   DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_ADDED_VAR_DEFINITION));
6449 }
6450 
6451 void ASTWriter::FunctionDefinitionInstantiated(const FunctionDecl *D) {
6452   if (Chain && Chain->isProcessingUpdateRecords()) return;
6453   assert(!WritingAST && "Already writing the AST!");
6454   if (!D->isFromASTFile())
6455     return;
6456 
6457   DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_ADDED_FUNCTION_DEFINITION));
6458 }
6459 
6460 void ASTWriter::InstantiationRequested(const ValueDecl *D) {
6461   if (Chain && Chain->isProcessingUpdateRecords()) return;
6462   assert(!WritingAST && "Already writing the AST!");
6463   if (!D->isFromASTFile())
6464     return;
6465 
6466   // Since the actual instantiation is delayed, this really means that we need
6467   // to update the instantiation location.
6468   SourceLocation POI;
6469   if (auto *VD = dyn_cast<VarDecl>(D))
6470     POI = VD->getPointOfInstantiation();
6471   else
6472     POI = cast<FunctionDecl>(D)->getPointOfInstantiation();
6473   DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_POINT_OF_INSTANTIATION, POI));
6474 }
6475 
6476 void ASTWriter::DefaultArgumentInstantiated(const ParmVarDecl *D) {
6477   if (Chain && Chain->isProcessingUpdateRecords()) return;
6478   assert(!WritingAST && "Already writing the AST!");
6479   if (!D->isFromASTFile())
6480     return;
6481 
6482   DeclUpdates[D].push_back(
6483       DeclUpdate(UPD_CXX_INSTANTIATED_DEFAULT_ARGUMENT, D));
6484 }
6485 
6486 void ASTWriter::DefaultMemberInitializerInstantiated(const FieldDecl *D) {
6487   assert(!WritingAST && "Already writing the AST!");
6488   if (!D->isFromASTFile())
6489     return;
6490 
6491   DeclUpdates[D].push_back(
6492       DeclUpdate(UPD_CXX_INSTANTIATED_DEFAULT_MEMBER_INITIALIZER, D));
6493 }
6494 
6495 void ASTWriter::AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD,
6496                                              const ObjCInterfaceDecl *IFD) {
6497   if (Chain && Chain->isProcessingUpdateRecords()) return;
6498   assert(!WritingAST && "Already writing the AST!");
6499   if (!IFD->isFromASTFile())
6500     return; // Declaration not imported from PCH.
6501 
6502   assert(IFD->getDefinition() && "Category on a class without a definition?");
6503   ObjCClassesWithCategories.insert(
6504     const_cast<ObjCInterfaceDecl *>(IFD->getDefinition()));
6505 }
6506 
6507 void ASTWriter::DeclarationMarkedUsed(const Decl *D) {
6508   if (Chain && Chain->isProcessingUpdateRecords()) return;
6509   assert(!WritingAST && "Already writing the AST!");
6510 
6511   // If there is *any* declaration of the entity that's not from an AST file,
6512   // we can skip writing the update record. We make sure that isUsed() triggers
6513   // completion of the redeclaration chain of the entity.
6514   for (auto Prev = D->getMostRecentDecl(); Prev; Prev = Prev->getPreviousDecl())
6515     if (IsLocalDecl(Prev))
6516       return;
6517 
6518   DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_MARKED_USED));
6519 }
6520 
6521 void ASTWriter::DeclarationMarkedOpenMPThreadPrivate(const Decl *D) {
6522   if (Chain && Chain->isProcessingUpdateRecords()) return;
6523   assert(!WritingAST && "Already writing the AST!");
6524   if (!D->isFromASTFile())
6525     return;
6526 
6527   DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_MARKED_OPENMP_THREADPRIVATE));
6528 }
6529 
6530 void ASTWriter::DeclarationMarkedOpenMPAllocate(const Decl *D, const Attr *A) {
6531   if (Chain && Chain->isProcessingUpdateRecords()) return;
6532   assert(!WritingAST && "Already writing the AST!");
6533   if (!D->isFromASTFile())
6534     return;
6535 
6536   DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_MARKED_OPENMP_ALLOCATE, A));
6537 }
6538 
6539 void ASTWriter::DeclarationMarkedOpenMPDeclareTarget(const Decl *D,
6540                                                      const Attr *Attr) {
6541   if (Chain && Chain->isProcessingUpdateRecords()) return;
6542   assert(!WritingAST && "Already writing the AST!");
6543   if (!D->isFromASTFile())
6544     return;
6545 
6546   DeclUpdates[D].push_back(
6547       DeclUpdate(UPD_DECL_MARKED_OPENMP_DECLARETARGET, Attr));
6548 }
6549 
6550 void ASTWriter::RedefinedHiddenDefinition(const NamedDecl *D, Module *M) {
6551   if (Chain && Chain->isProcessingUpdateRecords()) return;
6552   assert(!WritingAST && "Already writing the AST!");
6553   assert(D->isHidden() && "expected a hidden declaration");
6554   DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_EXPORTED, M));
6555 }
6556 
6557 void ASTWriter::AddedAttributeToRecord(const Attr *Attr,
6558                                        const RecordDecl *Record) {
6559   if (Chain && Chain->isProcessingUpdateRecords()) return;
6560   assert(!WritingAST && "Already writing the AST!");
6561   if (!Record->isFromASTFile())
6562     return;
6563   DeclUpdates[Record].push_back(DeclUpdate(UPD_ADDED_ATTR_TO_RECORD, Attr));
6564 }
6565 
6566 void ASTWriter::AddedCXXTemplateSpecialization(
6567     const ClassTemplateDecl *TD, const ClassTemplateSpecializationDecl *D) {
6568   assert(!WritingAST && "Already writing the AST!");
6569 
6570   if (!TD->getFirstDecl()->isFromASTFile())
6571     return;
6572   if (Chain && Chain->isProcessingUpdateRecords())
6573     return;
6574 
6575   DeclsToEmitEvenIfUnreferenced.push_back(D);
6576 }
6577 
6578 void ASTWriter::AddedCXXTemplateSpecialization(
6579     const VarTemplateDecl *TD, const VarTemplateSpecializationDecl *D) {
6580   assert(!WritingAST && "Already writing the AST!");
6581 
6582   if (!TD->getFirstDecl()->isFromASTFile())
6583     return;
6584   if (Chain && Chain->isProcessingUpdateRecords())
6585     return;
6586 
6587   DeclsToEmitEvenIfUnreferenced.push_back(D);
6588 }
6589 
6590 void ASTWriter::AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD,
6591                                                const FunctionDecl *D) {
6592   assert(!WritingAST && "Already writing the AST!");
6593 
6594   if (!TD->getFirstDecl()->isFromASTFile())
6595     return;
6596   if (Chain && Chain->isProcessingUpdateRecords())
6597     return;
6598 
6599   DeclsToEmitEvenIfUnreferenced.push_back(D);
6600 }
6601 
6602 //===----------------------------------------------------------------------===//
6603 //// OMPClause Serialization
6604 ////===----------------------------------------------------------------------===//
6605 
6606 void OMPClauseWriter::writeClause(OMPClause *C) {
6607   Record.push_back(C->getClauseKind());
6608   Visit(C);
6609   Record.AddSourceLocation(C->getBeginLoc());
6610   Record.AddSourceLocation(C->getEndLoc());
6611 }
6612 
6613 void OMPClauseWriter::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
6614   Record.push_back(C->getCaptureRegion());
6615   Record.AddStmt(C->getPreInitStmt());
6616 }
6617 
6618 void OMPClauseWriter::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) {
6619   VisitOMPClauseWithPreInit(C);
6620   Record.AddStmt(C->getPostUpdateExpr());
6621 }
6622 
6623 void OMPClauseWriter::VisitOMPIfClause(OMPIfClause *C) {
6624   VisitOMPClauseWithPreInit(C);
6625   Record.push_back(C->getNameModifier());
6626   Record.AddSourceLocation(C->getNameModifierLoc());
6627   Record.AddSourceLocation(C->getColonLoc());
6628   Record.AddStmt(C->getCondition());
6629   Record.AddSourceLocation(C->getLParenLoc());
6630 }
6631 
6632 void OMPClauseWriter::VisitOMPFinalClause(OMPFinalClause *C) {
6633   Record.AddStmt(C->getCondition());
6634   Record.AddSourceLocation(C->getLParenLoc());
6635 }
6636 
6637 void OMPClauseWriter::VisitOMPNumThreadsClause(OMPNumThreadsClause *C) {
6638   VisitOMPClauseWithPreInit(C);
6639   Record.AddStmt(C->getNumThreads());
6640   Record.AddSourceLocation(C->getLParenLoc());
6641 }
6642 
6643 void OMPClauseWriter::VisitOMPSafelenClause(OMPSafelenClause *C) {
6644   Record.AddStmt(C->getSafelen());
6645   Record.AddSourceLocation(C->getLParenLoc());
6646 }
6647 
6648 void OMPClauseWriter::VisitOMPSimdlenClause(OMPSimdlenClause *C) {
6649   Record.AddStmt(C->getSimdlen());
6650   Record.AddSourceLocation(C->getLParenLoc());
6651 }
6652 
6653 void OMPClauseWriter::VisitOMPAllocatorClause(OMPAllocatorClause *C) {
6654   Record.AddStmt(C->getAllocator());
6655   Record.AddSourceLocation(C->getLParenLoc());
6656 }
6657 
6658 void OMPClauseWriter::VisitOMPCollapseClause(OMPCollapseClause *C) {
6659   Record.AddStmt(C->getNumForLoops());
6660   Record.AddSourceLocation(C->getLParenLoc());
6661 }
6662 
6663 void OMPClauseWriter::VisitOMPDefaultClause(OMPDefaultClause *C) {
6664   Record.push_back(C->getDefaultKind());
6665   Record.AddSourceLocation(C->getLParenLoc());
6666   Record.AddSourceLocation(C->getDefaultKindKwLoc());
6667 }
6668 
6669 void OMPClauseWriter::VisitOMPProcBindClause(OMPProcBindClause *C) {
6670   Record.push_back(C->getProcBindKind());
6671   Record.AddSourceLocation(C->getLParenLoc());
6672   Record.AddSourceLocation(C->getProcBindKindKwLoc());
6673 }
6674 
6675 void OMPClauseWriter::VisitOMPScheduleClause(OMPScheduleClause *C) {
6676   VisitOMPClauseWithPreInit(C);
6677   Record.push_back(C->getScheduleKind());
6678   Record.push_back(C->getFirstScheduleModifier());
6679   Record.push_back(C->getSecondScheduleModifier());
6680   Record.AddStmt(C->getChunkSize());
6681   Record.AddSourceLocation(C->getLParenLoc());
6682   Record.AddSourceLocation(C->getFirstScheduleModifierLoc());
6683   Record.AddSourceLocation(C->getSecondScheduleModifierLoc());
6684   Record.AddSourceLocation(C->getScheduleKindLoc());
6685   Record.AddSourceLocation(C->getCommaLoc());
6686 }
6687 
6688 void OMPClauseWriter::VisitOMPOrderedClause(OMPOrderedClause *C) {
6689   Record.push_back(C->getLoopNumIterations().size());
6690   Record.AddStmt(C->getNumForLoops());
6691   for (Expr *NumIter : C->getLoopNumIterations())
6692     Record.AddStmt(NumIter);
6693   for (unsigned I = 0, E = C->getLoopNumIterations().size(); I <E; ++I)
6694     Record.AddStmt(C->getLoopCounter(I));
6695   Record.AddSourceLocation(C->getLParenLoc());
6696 }
6697 
6698 void OMPClauseWriter::VisitOMPNowaitClause(OMPNowaitClause *) {}
6699 
6700 void OMPClauseWriter::VisitOMPUntiedClause(OMPUntiedClause *) {}
6701 
6702 void OMPClauseWriter::VisitOMPMergeableClause(OMPMergeableClause *) {}
6703 
6704 void OMPClauseWriter::VisitOMPReadClause(OMPReadClause *) {}
6705 
6706 void OMPClauseWriter::VisitOMPWriteClause(OMPWriteClause *) {}
6707 
6708 void OMPClauseWriter::VisitOMPUpdateClause(OMPUpdateClause *) {}
6709 
6710 void OMPClauseWriter::VisitOMPCaptureClause(OMPCaptureClause *) {}
6711 
6712 void OMPClauseWriter::VisitOMPSeqCstClause(OMPSeqCstClause *) {}
6713 
6714 void OMPClauseWriter::VisitOMPThreadsClause(OMPThreadsClause *) {}
6715 
6716 void OMPClauseWriter::VisitOMPSIMDClause(OMPSIMDClause *) {}
6717 
6718 void OMPClauseWriter::VisitOMPNogroupClause(OMPNogroupClause *) {}
6719 
6720 void OMPClauseWriter::VisitOMPPrivateClause(OMPPrivateClause *C) {
6721   Record.push_back(C->varlist_size());
6722   Record.AddSourceLocation(C->getLParenLoc());
6723   for (auto *VE : C->varlists()) {
6724     Record.AddStmt(VE);
6725   }
6726   for (auto *VE : C->private_copies()) {
6727     Record.AddStmt(VE);
6728   }
6729 }
6730 
6731 void OMPClauseWriter::VisitOMPFirstprivateClause(OMPFirstprivateClause *C) {
6732   Record.push_back(C->varlist_size());
6733   VisitOMPClauseWithPreInit(C);
6734   Record.AddSourceLocation(C->getLParenLoc());
6735   for (auto *VE : C->varlists()) {
6736     Record.AddStmt(VE);
6737   }
6738   for (auto *VE : C->private_copies()) {
6739     Record.AddStmt(VE);
6740   }
6741   for (auto *VE : C->inits()) {
6742     Record.AddStmt(VE);
6743   }
6744 }
6745 
6746 void OMPClauseWriter::VisitOMPLastprivateClause(OMPLastprivateClause *C) {
6747   Record.push_back(C->varlist_size());
6748   VisitOMPClauseWithPostUpdate(C);
6749   Record.AddSourceLocation(C->getLParenLoc());
6750   for (auto *VE : C->varlists())
6751     Record.AddStmt(VE);
6752   for (auto *E : C->private_copies())
6753     Record.AddStmt(E);
6754   for (auto *E : C->source_exprs())
6755     Record.AddStmt(E);
6756   for (auto *E : C->destination_exprs())
6757     Record.AddStmt(E);
6758   for (auto *E : C->assignment_ops())
6759     Record.AddStmt(E);
6760 }
6761 
6762 void OMPClauseWriter::VisitOMPSharedClause(OMPSharedClause *C) {
6763   Record.push_back(C->varlist_size());
6764   Record.AddSourceLocation(C->getLParenLoc());
6765   for (auto *VE : C->varlists())
6766     Record.AddStmt(VE);
6767 }
6768 
6769 void OMPClauseWriter::VisitOMPReductionClause(OMPReductionClause *C) {
6770   Record.push_back(C->varlist_size());
6771   VisitOMPClauseWithPostUpdate(C);
6772   Record.AddSourceLocation(C->getLParenLoc());
6773   Record.AddSourceLocation(C->getColonLoc());
6774   Record.AddNestedNameSpecifierLoc(C->getQualifierLoc());
6775   Record.AddDeclarationNameInfo(C->getNameInfo());
6776   for (auto *VE : C->varlists())
6777     Record.AddStmt(VE);
6778   for (auto *VE : C->privates())
6779     Record.AddStmt(VE);
6780   for (auto *E : C->lhs_exprs())
6781     Record.AddStmt(E);
6782   for (auto *E : C->rhs_exprs())
6783     Record.AddStmt(E);
6784   for (auto *E : C->reduction_ops())
6785     Record.AddStmt(E);
6786 }
6787 
6788 void OMPClauseWriter::VisitOMPTaskReductionClause(OMPTaskReductionClause *C) {
6789   Record.push_back(C->varlist_size());
6790   VisitOMPClauseWithPostUpdate(C);
6791   Record.AddSourceLocation(C->getLParenLoc());
6792   Record.AddSourceLocation(C->getColonLoc());
6793   Record.AddNestedNameSpecifierLoc(C->getQualifierLoc());
6794   Record.AddDeclarationNameInfo(C->getNameInfo());
6795   for (auto *VE : C->varlists())
6796     Record.AddStmt(VE);
6797   for (auto *VE : C->privates())
6798     Record.AddStmt(VE);
6799   for (auto *E : C->lhs_exprs())
6800     Record.AddStmt(E);
6801   for (auto *E : C->rhs_exprs())
6802     Record.AddStmt(E);
6803   for (auto *E : C->reduction_ops())
6804     Record.AddStmt(E);
6805 }
6806 
6807 void OMPClauseWriter::VisitOMPInReductionClause(OMPInReductionClause *C) {
6808   Record.push_back(C->varlist_size());
6809   VisitOMPClauseWithPostUpdate(C);
6810   Record.AddSourceLocation(C->getLParenLoc());
6811   Record.AddSourceLocation(C->getColonLoc());
6812   Record.AddNestedNameSpecifierLoc(C->getQualifierLoc());
6813   Record.AddDeclarationNameInfo(C->getNameInfo());
6814   for (auto *VE : C->varlists())
6815     Record.AddStmt(VE);
6816   for (auto *VE : C->privates())
6817     Record.AddStmt(VE);
6818   for (auto *E : C->lhs_exprs())
6819     Record.AddStmt(E);
6820   for (auto *E : C->rhs_exprs())
6821     Record.AddStmt(E);
6822   for (auto *E : C->reduction_ops())
6823     Record.AddStmt(E);
6824   for (auto *E : C->taskgroup_descriptors())
6825     Record.AddStmt(E);
6826 }
6827 
6828 void OMPClauseWriter::VisitOMPLinearClause(OMPLinearClause *C) {
6829   Record.push_back(C->varlist_size());
6830   VisitOMPClauseWithPostUpdate(C);
6831   Record.AddSourceLocation(C->getLParenLoc());
6832   Record.AddSourceLocation(C->getColonLoc());
6833   Record.push_back(C->getModifier());
6834   Record.AddSourceLocation(C->getModifierLoc());
6835   for (auto *VE : C->varlists()) {
6836     Record.AddStmt(VE);
6837   }
6838   for (auto *VE : C->privates()) {
6839     Record.AddStmt(VE);
6840   }
6841   for (auto *VE : C->inits()) {
6842     Record.AddStmt(VE);
6843   }
6844   for (auto *VE : C->updates()) {
6845     Record.AddStmt(VE);
6846   }
6847   for (auto *VE : C->finals()) {
6848     Record.AddStmt(VE);
6849   }
6850   Record.AddStmt(C->getStep());
6851   Record.AddStmt(C->getCalcStep());
6852   for (auto *VE : C->used_expressions())
6853     Record.AddStmt(VE);
6854 }
6855 
6856 void OMPClauseWriter::VisitOMPAlignedClause(OMPAlignedClause *C) {
6857   Record.push_back(C->varlist_size());
6858   Record.AddSourceLocation(C->getLParenLoc());
6859   Record.AddSourceLocation(C->getColonLoc());
6860   for (auto *VE : C->varlists())
6861     Record.AddStmt(VE);
6862   Record.AddStmt(C->getAlignment());
6863 }
6864 
6865 void OMPClauseWriter::VisitOMPCopyinClause(OMPCopyinClause *C) {
6866   Record.push_back(C->varlist_size());
6867   Record.AddSourceLocation(C->getLParenLoc());
6868   for (auto *VE : C->varlists())
6869     Record.AddStmt(VE);
6870   for (auto *E : C->source_exprs())
6871     Record.AddStmt(E);
6872   for (auto *E : C->destination_exprs())
6873     Record.AddStmt(E);
6874   for (auto *E : C->assignment_ops())
6875     Record.AddStmt(E);
6876 }
6877 
6878 void OMPClauseWriter::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) {
6879   Record.push_back(C->varlist_size());
6880   Record.AddSourceLocation(C->getLParenLoc());
6881   for (auto *VE : C->varlists())
6882     Record.AddStmt(VE);
6883   for (auto *E : C->source_exprs())
6884     Record.AddStmt(E);
6885   for (auto *E : C->destination_exprs())
6886     Record.AddStmt(E);
6887   for (auto *E : C->assignment_ops())
6888     Record.AddStmt(E);
6889 }
6890 
6891 void OMPClauseWriter::VisitOMPFlushClause(OMPFlushClause *C) {
6892   Record.push_back(C->varlist_size());
6893   Record.AddSourceLocation(C->getLParenLoc());
6894   for (auto *VE : C->varlists())
6895     Record.AddStmt(VE);
6896 }
6897 
6898 void OMPClauseWriter::VisitOMPDependClause(OMPDependClause *C) {
6899   Record.push_back(C->varlist_size());
6900   Record.push_back(C->getNumLoops());
6901   Record.AddSourceLocation(C->getLParenLoc());
6902   Record.push_back(C->getDependencyKind());
6903   Record.AddSourceLocation(C->getDependencyLoc());
6904   Record.AddSourceLocation(C->getColonLoc());
6905   for (auto *VE : C->varlists())
6906     Record.AddStmt(VE);
6907   for (unsigned I = 0, E = C->getNumLoops(); I < E; ++I)
6908     Record.AddStmt(C->getLoopData(I));
6909 }
6910 
6911 void OMPClauseWriter::VisitOMPDeviceClause(OMPDeviceClause *C) {
6912   VisitOMPClauseWithPreInit(C);
6913   Record.AddStmt(C->getDevice());
6914   Record.AddSourceLocation(C->getLParenLoc());
6915 }
6916 
6917 void OMPClauseWriter::VisitOMPMapClause(OMPMapClause *C) {
6918   Record.push_back(C->varlist_size());
6919   Record.push_back(C->getUniqueDeclarationsNum());
6920   Record.push_back(C->getTotalComponentListNum());
6921   Record.push_back(C->getTotalComponentsNum());
6922   Record.AddSourceLocation(C->getLParenLoc());
6923   for (unsigned I = 0; I < OMPMapClause::NumberOfModifiers; ++I) {
6924     Record.push_back(C->getMapTypeModifier(I));
6925     Record.AddSourceLocation(C->getMapTypeModifierLoc(I));
6926   }
6927   Record.AddNestedNameSpecifierLoc(C->getMapperQualifierLoc());
6928   Record.AddDeclarationNameInfo(C->getMapperIdInfo());
6929   Record.push_back(C->getMapType());
6930   Record.AddSourceLocation(C->getMapLoc());
6931   Record.AddSourceLocation(C->getColonLoc());
6932   for (auto *E : C->varlists())
6933     Record.AddStmt(E);
6934   for (auto *E : C->mapperlists())
6935     Record.AddStmt(E);
6936   for (auto *D : C->all_decls())
6937     Record.AddDeclRef(D);
6938   for (auto N : C->all_num_lists())
6939     Record.push_back(N);
6940   for (auto N : C->all_lists_sizes())
6941     Record.push_back(N);
6942   for (auto &M : C->all_components()) {
6943     Record.AddStmt(M.getAssociatedExpression());
6944     Record.AddDeclRef(M.getAssociatedDeclaration());
6945   }
6946 }
6947 
6948 void OMPClauseWriter::VisitOMPAllocateClause(OMPAllocateClause *C) {
6949   Record.push_back(C->varlist_size());
6950   Record.AddSourceLocation(C->getLParenLoc());
6951   Record.AddSourceLocation(C->getColonLoc());
6952   Record.AddStmt(C->getAllocator());
6953   for (auto *VE : C->varlists())
6954     Record.AddStmt(VE);
6955 }
6956 
6957 void OMPClauseWriter::VisitOMPNumTeamsClause(OMPNumTeamsClause *C) {
6958   VisitOMPClauseWithPreInit(C);
6959   Record.AddStmt(C->getNumTeams());
6960   Record.AddSourceLocation(C->getLParenLoc());
6961 }
6962 
6963 void OMPClauseWriter::VisitOMPThreadLimitClause(OMPThreadLimitClause *C) {
6964   VisitOMPClauseWithPreInit(C);
6965   Record.AddStmt(C->getThreadLimit());
6966   Record.AddSourceLocation(C->getLParenLoc());
6967 }
6968 
6969 void OMPClauseWriter::VisitOMPPriorityClause(OMPPriorityClause *C) {
6970   Record.AddStmt(C->getPriority());
6971   Record.AddSourceLocation(C->getLParenLoc());
6972 }
6973 
6974 void OMPClauseWriter::VisitOMPGrainsizeClause(OMPGrainsizeClause *C) {
6975   Record.AddStmt(C->getGrainsize());
6976   Record.AddSourceLocation(C->getLParenLoc());
6977 }
6978 
6979 void OMPClauseWriter::VisitOMPNumTasksClause(OMPNumTasksClause *C) {
6980   Record.AddStmt(C->getNumTasks());
6981   Record.AddSourceLocation(C->getLParenLoc());
6982 }
6983 
6984 void OMPClauseWriter::VisitOMPHintClause(OMPHintClause *C) {
6985   Record.AddStmt(C->getHint());
6986   Record.AddSourceLocation(C->getLParenLoc());
6987 }
6988 
6989 void OMPClauseWriter::VisitOMPDistScheduleClause(OMPDistScheduleClause *C) {
6990   VisitOMPClauseWithPreInit(C);
6991   Record.push_back(C->getDistScheduleKind());
6992   Record.AddStmt(C->getChunkSize());
6993   Record.AddSourceLocation(C->getLParenLoc());
6994   Record.AddSourceLocation(C->getDistScheduleKindLoc());
6995   Record.AddSourceLocation(C->getCommaLoc());
6996 }
6997 
6998 void OMPClauseWriter::VisitOMPDefaultmapClause(OMPDefaultmapClause *C) {
6999   Record.push_back(C->getDefaultmapKind());
7000   Record.push_back(C->getDefaultmapModifier());
7001   Record.AddSourceLocation(C->getLParenLoc());
7002   Record.AddSourceLocation(C->getDefaultmapModifierLoc());
7003   Record.AddSourceLocation(C->getDefaultmapKindLoc());
7004 }
7005 
7006 void OMPClauseWriter::VisitOMPToClause(OMPToClause *C) {
7007   Record.push_back(C->varlist_size());
7008   Record.push_back(C->getUniqueDeclarationsNum());
7009   Record.push_back(C->getTotalComponentListNum());
7010   Record.push_back(C->getTotalComponentsNum());
7011   Record.AddSourceLocation(C->getLParenLoc());
7012   Record.AddNestedNameSpecifierLoc(C->getMapperQualifierLoc());
7013   Record.AddDeclarationNameInfo(C->getMapperIdInfo());
7014   for (auto *E : C->varlists())
7015     Record.AddStmt(E);
7016   for (auto *E : C->mapperlists())
7017     Record.AddStmt(E);
7018   for (auto *D : C->all_decls())
7019     Record.AddDeclRef(D);
7020   for (auto N : C->all_num_lists())
7021     Record.push_back(N);
7022   for (auto N : C->all_lists_sizes())
7023     Record.push_back(N);
7024   for (auto &M : C->all_components()) {
7025     Record.AddStmt(M.getAssociatedExpression());
7026     Record.AddDeclRef(M.getAssociatedDeclaration());
7027   }
7028 }
7029 
7030 void OMPClauseWriter::VisitOMPFromClause(OMPFromClause *C) {
7031   Record.push_back(C->varlist_size());
7032   Record.push_back(C->getUniqueDeclarationsNum());
7033   Record.push_back(C->getTotalComponentListNum());
7034   Record.push_back(C->getTotalComponentsNum());
7035   Record.AddSourceLocation(C->getLParenLoc());
7036   Record.AddNestedNameSpecifierLoc(C->getMapperQualifierLoc());
7037   Record.AddDeclarationNameInfo(C->getMapperIdInfo());
7038   for (auto *E : C->varlists())
7039     Record.AddStmt(E);
7040   for (auto *E : C->mapperlists())
7041     Record.AddStmt(E);
7042   for (auto *D : C->all_decls())
7043     Record.AddDeclRef(D);
7044   for (auto N : C->all_num_lists())
7045     Record.push_back(N);
7046   for (auto N : C->all_lists_sizes())
7047     Record.push_back(N);
7048   for (auto &M : C->all_components()) {
7049     Record.AddStmt(M.getAssociatedExpression());
7050     Record.AddDeclRef(M.getAssociatedDeclaration());
7051   }
7052 }
7053 
7054 void OMPClauseWriter::VisitOMPUseDevicePtrClause(OMPUseDevicePtrClause *C) {
7055   Record.push_back(C->varlist_size());
7056   Record.push_back(C->getUniqueDeclarationsNum());
7057   Record.push_back(C->getTotalComponentListNum());
7058   Record.push_back(C->getTotalComponentsNum());
7059   Record.AddSourceLocation(C->getLParenLoc());
7060   for (auto *E : C->varlists())
7061     Record.AddStmt(E);
7062   for (auto *VE : C->private_copies())
7063     Record.AddStmt(VE);
7064   for (auto *VE : C->inits())
7065     Record.AddStmt(VE);
7066   for (auto *D : C->all_decls())
7067     Record.AddDeclRef(D);
7068   for (auto N : C->all_num_lists())
7069     Record.push_back(N);
7070   for (auto N : C->all_lists_sizes())
7071     Record.push_back(N);
7072   for (auto &M : C->all_components()) {
7073     Record.AddStmt(M.getAssociatedExpression());
7074     Record.AddDeclRef(M.getAssociatedDeclaration());
7075   }
7076 }
7077 
7078 void OMPClauseWriter::VisitOMPIsDevicePtrClause(OMPIsDevicePtrClause *C) {
7079   Record.push_back(C->varlist_size());
7080   Record.push_back(C->getUniqueDeclarationsNum());
7081   Record.push_back(C->getTotalComponentListNum());
7082   Record.push_back(C->getTotalComponentsNum());
7083   Record.AddSourceLocation(C->getLParenLoc());
7084   for (auto *E : C->varlists())
7085     Record.AddStmt(E);
7086   for (auto *D : C->all_decls())
7087     Record.AddDeclRef(D);
7088   for (auto N : C->all_num_lists())
7089     Record.push_back(N);
7090   for (auto N : C->all_lists_sizes())
7091     Record.push_back(N);
7092   for (auto &M : C->all_components()) {
7093     Record.AddStmt(M.getAssociatedExpression());
7094     Record.AddDeclRef(M.getAssociatedDeclaration());
7095   }
7096 }
7097 
7098 void OMPClauseWriter::VisitOMPUnifiedAddressClause(OMPUnifiedAddressClause *) {}
7099 
7100 void OMPClauseWriter::VisitOMPUnifiedSharedMemoryClause(
7101     OMPUnifiedSharedMemoryClause *) {}
7102 
7103 void OMPClauseWriter::VisitOMPReverseOffloadClause(OMPReverseOffloadClause *) {}
7104 
7105 void
7106 OMPClauseWriter::VisitOMPDynamicAllocatorsClause(OMPDynamicAllocatorsClause *) {
7107 }
7108 
7109 void OMPClauseWriter::VisitOMPAtomicDefaultMemOrderClause(
7110     OMPAtomicDefaultMemOrderClause *C) {
7111   Record.push_back(C->getAtomicDefaultMemOrderKind());
7112   Record.AddSourceLocation(C->getLParenLoc());
7113   Record.AddSourceLocation(C->getAtomicDefaultMemOrderKindKwLoc());
7114 }
7115