xref: /freebsd-src/contrib/llvm-project/clang/lib/Serialization/ASTReaderDecl.cpp (revision 4824e7fd18a1223177218d4aec1b3c6c5c4a444e)
1 //===- ASTReaderDecl.cpp - Decl Deserialization ---------------------------===//
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 implements the ASTReader::readDeclRecord method, which is the
10 // entrypoint for loading a decl.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "ASTCommon.h"
15 #include "ASTReaderInternals.h"
16 #include "clang/AST/ASTContext.h"
17 #include "clang/AST/Attr.h"
18 #include "clang/AST/AttrIterator.h"
19 #include "clang/AST/Decl.h"
20 #include "clang/AST/DeclBase.h"
21 #include "clang/AST/DeclCXX.h"
22 #include "clang/AST/DeclFriend.h"
23 #include "clang/AST/DeclObjC.h"
24 #include "clang/AST/DeclOpenMP.h"
25 #include "clang/AST/DeclTemplate.h"
26 #include "clang/AST/DeclVisitor.h"
27 #include "clang/AST/DeclarationName.h"
28 #include "clang/AST/Expr.h"
29 #include "clang/AST/ExternalASTSource.h"
30 #include "clang/AST/LambdaCapture.h"
31 #include "clang/AST/NestedNameSpecifier.h"
32 #include "clang/AST/OpenMPClause.h"
33 #include "clang/AST/Redeclarable.h"
34 #include "clang/AST/Stmt.h"
35 #include "clang/AST/TemplateBase.h"
36 #include "clang/AST/Type.h"
37 #include "clang/AST/UnresolvedSet.h"
38 #include "clang/Basic/AttrKinds.h"
39 #include "clang/Basic/ExceptionSpecificationType.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/Linkage.h"
45 #include "clang/Basic/Module.h"
46 #include "clang/Basic/PragmaKinds.h"
47 #include "clang/Basic/SourceLocation.h"
48 #include "clang/Basic/Specifiers.h"
49 #include "clang/Sema/IdentifierResolver.h"
50 #include "clang/Serialization/ASTBitCodes.h"
51 #include "clang/Serialization/ASTRecordReader.h"
52 #include "clang/Serialization/ContinuousRangeMap.h"
53 #include "clang/Serialization/ModuleFile.h"
54 #include "llvm/ADT/DenseMap.h"
55 #include "llvm/ADT/FoldingSet.h"
56 #include "llvm/ADT/STLExtras.h"
57 #include "llvm/ADT/SmallPtrSet.h"
58 #include "llvm/ADT/SmallVector.h"
59 #include "llvm/ADT/iterator_range.h"
60 #include "llvm/Bitstream/BitstreamReader.h"
61 #include "llvm/Support/Casting.h"
62 #include "llvm/Support/ErrorHandling.h"
63 #include "llvm/Support/SaveAndRestore.h"
64 #include <algorithm>
65 #include <cassert>
66 #include <cstdint>
67 #include <cstring>
68 #include <string>
69 #include <utility>
70 
71 using namespace clang;
72 using namespace serialization;
73 
74 //===----------------------------------------------------------------------===//
75 // Declaration deserialization
76 //===----------------------------------------------------------------------===//
77 
78 namespace clang {
79 
80   class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
81     ASTReader &Reader;
82     ASTRecordReader &Record;
83     ASTReader::RecordLocation Loc;
84     const DeclID ThisDeclID;
85     const SourceLocation ThisDeclLoc;
86 
87     using RecordData = ASTReader::RecordData;
88 
89     TypeID DeferredTypeID = 0;
90     unsigned AnonymousDeclNumber;
91     GlobalDeclID NamedDeclForTagDecl = 0;
92     IdentifierInfo *TypedefNameForLinkage = nullptr;
93 
94     bool HasPendingBody = false;
95 
96     ///A flag to carry the information for a decl from the entity is
97     /// used. We use it to delay the marking of the canonical decl as used until
98     /// the entire declaration is deserialized and merged.
99     bool IsDeclMarkedUsed = false;
100 
101     uint64_t GetCurrentCursorOffset();
102 
103     uint64_t ReadLocalOffset() {
104       uint64_t LocalOffset = Record.readInt();
105       assert(LocalOffset < Loc.Offset && "offset point after current record");
106       return LocalOffset ? Loc.Offset - LocalOffset : 0;
107     }
108 
109     uint64_t ReadGlobalOffset() {
110       uint64_t Local = ReadLocalOffset();
111       return Local ? Record.getGlobalBitOffset(Local) : 0;
112     }
113 
114     SourceLocation readSourceLocation() {
115       return Record.readSourceLocation();
116     }
117 
118     SourceRange readSourceRange() {
119       return Record.readSourceRange();
120     }
121 
122     TypeSourceInfo *readTypeSourceInfo() {
123       return Record.readTypeSourceInfo();
124     }
125 
126     serialization::DeclID readDeclID() {
127       return Record.readDeclID();
128     }
129 
130     std::string readString() {
131       return Record.readString();
132     }
133 
134     void readDeclIDList(SmallVectorImpl<DeclID> &IDs) {
135       for (unsigned I = 0, Size = Record.readInt(); I != Size; ++I)
136         IDs.push_back(readDeclID());
137     }
138 
139     Decl *readDecl() {
140       return Record.readDecl();
141     }
142 
143     template<typename T>
144     T *readDeclAs() {
145       return Record.readDeclAs<T>();
146     }
147 
148     serialization::SubmoduleID readSubmoduleID() {
149       if (Record.getIdx() == Record.size())
150         return 0;
151 
152       return Record.getGlobalSubmoduleID(Record.readInt());
153     }
154 
155     Module *readModule() {
156       return Record.getSubmodule(readSubmoduleID());
157     }
158 
159     void ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update);
160     void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data,
161                                const CXXRecordDecl *D);
162     void MergeDefinitionData(CXXRecordDecl *D,
163                              struct CXXRecordDecl::DefinitionData &&NewDD);
164     void ReadObjCDefinitionData(struct ObjCInterfaceDecl::DefinitionData &Data);
165     void MergeDefinitionData(ObjCInterfaceDecl *D,
166                              struct ObjCInterfaceDecl::DefinitionData &&NewDD);
167     void ReadObjCDefinitionData(struct ObjCProtocolDecl::DefinitionData &Data);
168     void MergeDefinitionData(ObjCProtocolDecl *D,
169                              struct ObjCProtocolDecl::DefinitionData &&NewDD);
170 
171     static DeclContext *getPrimaryDCForAnonymousDecl(DeclContext *LexicalDC);
172 
173     static NamedDecl *getAnonymousDeclForMerging(ASTReader &Reader,
174                                                  DeclContext *DC,
175                                                  unsigned Index);
176     static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC,
177                                            unsigned Index, NamedDecl *D);
178 
179     /// Results from loading a RedeclarableDecl.
180     class RedeclarableResult {
181       Decl *MergeWith;
182       GlobalDeclID FirstID;
183       bool IsKeyDecl;
184 
185     public:
186       RedeclarableResult(Decl *MergeWith, GlobalDeclID FirstID, bool IsKeyDecl)
187           : MergeWith(MergeWith), FirstID(FirstID), IsKeyDecl(IsKeyDecl) {}
188 
189       /// Retrieve the first ID.
190       GlobalDeclID getFirstID() const { return FirstID; }
191 
192       /// Is this declaration a key declaration?
193       bool isKeyDecl() const { return IsKeyDecl; }
194 
195       /// Get a known declaration that this should be merged with, if
196       /// any.
197       Decl *getKnownMergeTarget() const { return MergeWith; }
198     };
199 
200     /// Class used to capture the result of searching for an existing
201     /// declaration of a specific kind and name, along with the ability
202     /// to update the place where this result was found (the declaration
203     /// chain hanging off an identifier or the DeclContext we searched in)
204     /// if requested.
205     class FindExistingResult {
206       ASTReader &Reader;
207       NamedDecl *New = nullptr;
208       NamedDecl *Existing = nullptr;
209       bool AddResult = false;
210       unsigned AnonymousDeclNumber = 0;
211       IdentifierInfo *TypedefNameForLinkage = nullptr;
212 
213     public:
214       FindExistingResult(ASTReader &Reader) : Reader(Reader) {}
215 
216       FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
217                          unsigned AnonymousDeclNumber,
218                          IdentifierInfo *TypedefNameForLinkage)
219           : Reader(Reader), New(New), Existing(Existing), AddResult(true),
220             AnonymousDeclNumber(AnonymousDeclNumber),
221             TypedefNameForLinkage(TypedefNameForLinkage) {}
222 
223       FindExistingResult(FindExistingResult &&Other)
224           : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
225             AddResult(Other.AddResult),
226             AnonymousDeclNumber(Other.AnonymousDeclNumber),
227             TypedefNameForLinkage(Other.TypedefNameForLinkage) {
228         Other.AddResult = false;
229       }
230 
231       FindExistingResult &operator=(FindExistingResult &&) = delete;
232       ~FindExistingResult();
233 
234       /// Suppress the addition of this result into the known set of
235       /// names.
236       void suppress() { AddResult = false; }
237 
238       operator NamedDecl*() const { return Existing; }
239 
240       template<typename T>
241       operator T*() const { return dyn_cast_or_null<T>(Existing); }
242     };
243 
244     static DeclContext *getPrimaryContextForMerging(ASTReader &Reader,
245                                                     DeclContext *DC);
246     FindExistingResult findExisting(NamedDecl *D);
247 
248   public:
249     ASTDeclReader(ASTReader &Reader, ASTRecordReader &Record,
250                   ASTReader::RecordLocation Loc,
251                   DeclID thisDeclID, SourceLocation ThisDeclLoc)
252         : Reader(Reader), Record(Record), Loc(Loc), ThisDeclID(thisDeclID),
253           ThisDeclLoc(ThisDeclLoc) {}
254 
255     template <typename T> static
256     void AddLazySpecializations(T *D,
257                                 SmallVectorImpl<serialization::DeclID>& IDs) {
258       if (IDs.empty())
259         return;
260 
261       // FIXME: We should avoid this pattern of getting the ASTContext.
262       ASTContext &C = D->getASTContext();
263 
264       auto *&LazySpecializations = D->getCommonPtr()->LazySpecializations;
265 
266       if (auto &Old = LazySpecializations) {
267         IDs.insert(IDs.end(), Old + 1, Old + 1 + Old[0]);
268         llvm::sort(IDs);
269         IDs.erase(std::unique(IDs.begin(), IDs.end()), IDs.end());
270       }
271 
272       auto *Result = new (C) serialization::DeclID[1 + IDs.size()];
273       *Result = IDs.size();
274       std::copy(IDs.begin(), IDs.end(), Result + 1);
275 
276       LazySpecializations = Result;
277     }
278 
279     template <typename DeclT>
280     static Decl *getMostRecentDeclImpl(Redeclarable<DeclT> *D);
281     static Decl *getMostRecentDeclImpl(...);
282     static Decl *getMostRecentDecl(Decl *D);
283 
284     static void mergeInheritableAttributes(ASTReader &Reader, Decl *D,
285                                            Decl *Previous);
286 
287     template <typename DeclT>
288     static void attachPreviousDeclImpl(ASTReader &Reader,
289                                        Redeclarable<DeclT> *D, Decl *Previous,
290                                        Decl *Canon);
291     static void attachPreviousDeclImpl(ASTReader &Reader, ...);
292     static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous,
293                                    Decl *Canon);
294 
295     template <typename DeclT>
296     static void attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest);
297     static void attachLatestDeclImpl(...);
298     static void attachLatestDecl(Decl *D, Decl *latest);
299 
300     template <typename DeclT>
301     static void markIncompleteDeclChainImpl(Redeclarable<DeclT> *D);
302     static void markIncompleteDeclChainImpl(...);
303 
304     /// Determine whether this declaration has a pending body.
305     bool hasPendingBody() const { return HasPendingBody; }
306 
307     void ReadFunctionDefinition(FunctionDecl *FD);
308     void Visit(Decl *D);
309 
310     void UpdateDecl(Decl *D, SmallVectorImpl<serialization::DeclID> &);
311 
312     static void setNextObjCCategory(ObjCCategoryDecl *Cat,
313                                     ObjCCategoryDecl *Next) {
314       Cat->NextClassCategory = Next;
315     }
316 
317     void VisitDecl(Decl *D);
318     void VisitPragmaCommentDecl(PragmaCommentDecl *D);
319     void VisitPragmaDetectMismatchDecl(PragmaDetectMismatchDecl *D);
320     void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
321     void VisitNamedDecl(NamedDecl *ND);
322     void VisitLabelDecl(LabelDecl *LD);
323     void VisitNamespaceDecl(NamespaceDecl *D);
324     void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
325     void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
326     void VisitTypeDecl(TypeDecl *TD);
327     RedeclarableResult VisitTypedefNameDecl(TypedefNameDecl *TD);
328     void VisitTypedefDecl(TypedefDecl *TD);
329     void VisitTypeAliasDecl(TypeAliasDecl *TD);
330     void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
331     void VisitUnresolvedUsingIfExistsDecl(UnresolvedUsingIfExistsDecl *D);
332     RedeclarableResult VisitTagDecl(TagDecl *TD);
333     void VisitEnumDecl(EnumDecl *ED);
334     RedeclarableResult VisitRecordDeclImpl(RecordDecl *RD);
335     void VisitRecordDecl(RecordDecl *RD);
336     RedeclarableResult VisitCXXRecordDeclImpl(CXXRecordDecl *D);
337     void VisitCXXRecordDecl(CXXRecordDecl *D) { VisitCXXRecordDeclImpl(D); }
338     RedeclarableResult VisitClassTemplateSpecializationDeclImpl(
339                                             ClassTemplateSpecializationDecl *D);
340 
341     void VisitClassTemplateSpecializationDecl(
342         ClassTemplateSpecializationDecl *D) {
343       VisitClassTemplateSpecializationDeclImpl(D);
344     }
345 
346     void VisitClassTemplatePartialSpecializationDecl(
347                                      ClassTemplatePartialSpecializationDecl *D);
348     void VisitClassScopeFunctionSpecializationDecl(
349                                        ClassScopeFunctionSpecializationDecl *D);
350     RedeclarableResult
351     VisitVarTemplateSpecializationDeclImpl(VarTemplateSpecializationDecl *D);
352 
353     void VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D) {
354       VisitVarTemplateSpecializationDeclImpl(D);
355     }
356 
357     void VisitVarTemplatePartialSpecializationDecl(
358         VarTemplatePartialSpecializationDecl *D);
359     void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
360     void VisitValueDecl(ValueDecl *VD);
361     void VisitEnumConstantDecl(EnumConstantDecl *ECD);
362     void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
363     void VisitDeclaratorDecl(DeclaratorDecl *DD);
364     void VisitFunctionDecl(FunctionDecl *FD);
365     void VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *GD);
366     void VisitCXXMethodDecl(CXXMethodDecl *D);
367     void VisitCXXConstructorDecl(CXXConstructorDecl *D);
368     void VisitCXXDestructorDecl(CXXDestructorDecl *D);
369     void VisitCXXConversionDecl(CXXConversionDecl *D);
370     void VisitFieldDecl(FieldDecl *FD);
371     void VisitMSPropertyDecl(MSPropertyDecl *FD);
372     void VisitMSGuidDecl(MSGuidDecl *D);
373     void VisitTemplateParamObjectDecl(TemplateParamObjectDecl *D);
374     void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
375     RedeclarableResult VisitVarDeclImpl(VarDecl *D);
376     void VisitVarDecl(VarDecl *VD) { VisitVarDeclImpl(VD); }
377     void VisitImplicitParamDecl(ImplicitParamDecl *PD);
378     void VisitParmVarDecl(ParmVarDecl *PD);
379     void VisitDecompositionDecl(DecompositionDecl *DD);
380     void VisitBindingDecl(BindingDecl *BD);
381     void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
382     DeclID VisitTemplateDecl(TemplateDecl *D);
383     void VisitConceptDecl(ConceptDecl *D);
384     void VisitRequiresExprBodyDecl(RequiresExprBodyDecl *D);
385     RedeclarableResult VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
386     void VisitClassTemplateDecl(ClassTemplateDecl *D);
387     void VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D);
388     void VisitVarTemplateDecl(VarTemplateDecl *D);
389     void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
390     void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
391     void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
392     void VisitUsingDecl(UsingDecl *D);
393     void VisitUsingEnumDecl(UsingEnumDecl *D);
394     void VisitUsingPackDecl(UsingPackDecl *D);
395     void VisitUsingShadowDecl(UsingShadowDecl *D);
396     void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D);
397     void VisitLinkageSpecDecl(LinkageSpecDecl *D);
398     void VisitExportDecl(ExportDecl *D);
399     void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
400     void VisitImportDecl(ImportDecl *D);
401     void VisitAccessSpecDecl(AccessSpecDecl *D);
402     void VisitFriendDecl(FriendDecl *D);
403     void VisitFriendTemplateDecl(FriendTemplateDecl *D);
404     void VisitStaticAssertDecl(StaticAssertDecl *D);
405     void VisitBlockDecl(BlockDecl *BD);
406     void VisitCapturedDecl(CapturedDecl *CD);
407     void VisitEmptyDecl(EmptyDecl *D);
408     void VisitLifetimeExtendedTemporaryDecl(LifetimeExtendedTemporaryDecl *D);
409 
410     std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
411 
412     template<typename T>
413     RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
414 
415     template<typename T>
416     void mergeRedeclarable(Redeclarable<T> *D, RedeclarableResult &Redecl,
417                            DeclID TemplatePatternID = 0);
418 
419     template<typename T>
420     void mergeRedeclarable(Redeclarable<T> *D, T *Existing,
421                            RedeclarableResult &Redecl,
422                            DeclID TemplatePatternID = 0);
423 
424     template<typename T>
425     void mergeMergeable(Mergeable<T> *D);
426 
427     void mergeMergeable(LifetimeExtendedTemporaryDecl *D);
428 
429     void mergeTemplatePattern(RedeclarableTemplateDecl *D,
430                               RedeclarableTemplateDecl *Existing,
431                               DeclID DsID, bool IsKeyDecl);
432 
433     ObjCTypeParamList *ReadObjCTypeParamList();
434 
435     // FIXME: Reorder according to DeclNodes.td?
436     void VisitObjCMethodDecl(ObjCMethodDecl *D);
437     void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D);
438     void VisitObjCContainerDecl(ObjCContainerDecl *D);
439     void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
440     void VisitObjCIvarDecl(ObjCIvarDecl *D);
441     void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
442     void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
443     void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
444     void VisitObjCImplDecl(ObjCImplDecl *D);
445     void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
446     void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
447     void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
448     void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
449     void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
450     void VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D);
451     void VisitOMPAllocateDecl(OMPAllocateDecl *D);
452     void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D);
453     void VisitOMPDeclareMapperDecl(OMPDeclareMapperDecl *D);
454     void VisitOMPRequiresDecl(OMPRequiresDecl *D);
455     void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D);
456   };
457 
458 } // namespace clang
459 
460 namespace {
461 
462 /// Iterator over the redeclarations of a declaration that have already
463 /// been merged into the same redeclaration chain.
464 template<typename DeclT>
465 class MergedRedeclIterator {
466   DeclT *Start;
467   DeclT *Canonical = nullptr;
468   DeclT *Current = nullptr;
469 
470 public:
471   MergedRedeclIterator() = default;
472   MergedRedeclIterator(DeclT *Start) : Start(Start), Current(Start) {}
473 
474   DeclT *operator*() { return Current; }
475 
476   MergedRedeclIterator &operator++() {
477     if (Current->isFirstDecl()) {
478       Canonical = Current;
479       Current = Current->getMostRecentDecl();
480     } else
481       Current = Current->getPreviousDecl();
482 
483     // If we started in the merged portion, we'll reach our start position
484     // eventually. Otherwise, we'll never reach it, but the second declaration
485     // we reached was the canonical declaration, so stop when we see that one
486     // again.
487     if (Current == Start || Current == Canonical)
488       Current = nullptr;
489     return *this;
490   }
491 
492   friend bool operator!=(const MergedRedeclIterator &A,
493                          const MergedRedeclIterator &B) {
494     return A.Current != B.Current;
495   }
496 };
497 
498 } // namespace
499 
500 template <typename DeclT>
501 static llvm::iterator_range<MergedRedeclIterator<DeclT>>
502 merged_redecls(DeclT *D) {
503   return llvm::make_range(MergedRedeclIterator<DeclT>(D),
504                           MergedRedeclIterator<DeclT>());
505 }
506 
507 uint64_t ASTDeclReader::GetCurrentCursorOffset() {
508   return Loc.F->DeclsCursor.GetCurrentBitNo() + Loc.F->GlobalBitOffset;
509 }
510 
511 void ASTDeclReader::ReadFunctionDefinition(FunctionDecl *FD) {
512   if (Record.readInt()) {
513     Reader.DefinitionSource[FD] =
514         Loc.F->Kind == ModuleKind::MK_MainFile ||
515         Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
516   }
517   if (auto *CD = dyn_cast<CXXConstructorDecl>(FD)) {
518     CD->setNumCtorInitializers(Record.readInt());
519     if (CD->getNumCtorInitializers())
520       CD->CtorInitializers = ReadGlobalOffset();
521   }
522   // Store the offset of the body so we can lazily load it later.
523   Reader.PendingBodies[FD] = GetCurrentCursorOffset();
524   HasPendingBody = true;
525 }
526 
527 void ASTDeclReader::Visit(Decl *D) {
528   DeclVisitor<ASTDeclReader, void>::Visit(D);
529 
530   // At this point we have deserialized and merged the decl and it is safe to
531   // update its canonical decl to signal that the entire entity is used.
532   D->getCanonicalDecl()->Used |= IsDeclMarkedUsed;
533   IsDeclMarkedUsed = false;
534 
535   if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
536     if (auto *TInfo = DD->getTypeSourceInfo())
537       Record.readTypeLoc(TInfo->getTypeLoc());
538   }
539 
540   if (auto *TD = dyn_cast<TypeDecl>(D)) {
541     // We have a fully initialized TypeDecl. Read its type now.
542     TD->setTypeForDecl(Reader.GetType(DeferredTypeID).getTypePtrOrNull());
543 
544     // If this is a tag declaration with a typedef name for linkage, it's safe
545     // to load that typedef now.
546     if (NamedDeclForTagDecl)
547       cast<TagDecl>(D)->TypedefNameDeclOrQualifier =
548           cast<TypedefNameDecl>(Reader.GetDecl(NamedDeclForTagDecl));
549   } else if (auto *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
550     // if we have a fully initialized TypeDecl, we can safely read its type now.
551     ID->TypeForDecl = Reader.GetType(DeferredTypeID).getTypePtrOrNull();
552   } else if (auto *FD = dyn_cast<FunctionDecl>(D)) {
553     // FunctionDecl's body was written last after all other Stmts/Exprs.
554     // We only read it if FD doesn't already have a body (e.g., from another
555     // module).
556     // FIXME: Can we diagnose ODR violations somehow?
557     if (Record.readInt())
558       ReadFunctionDefinition(FD);
559   }
560 }
561 
562 void ASTDeclReader::VisitDecl(Decl *D) {
563   if (D->isTemplateParameter() || D->isTemplateParameterPack() ||
564       isa<ParmVarDecl>(D) || isa<ObjCTypeParamDecl>(D)) {
565     // We don't want to deserialize the DeclContext of a template
566     // parameter or of a parameter of a function template immediately.   These
567     // entities might be used in the formulation of its DeclContext (for
568     // example, a function parameter can be used in decltype() in trailing
569     // return type of the function).  Use the translation unit DeclContext as a
570     // placeholder.
571     GlobalDeclID SemaDCIDForTemplateParmDecl = readDeclID();
572     GlobalDeclID LexicalDCIDForTemplateParmDecl = readDeclID();
573     if (!LexicalDCIDForTemplateParmDecl)
574       LexicalDCIDForTemplateParmDecl = SemaDCIDForTemplateParmDecl;
575     Reader.addPendingDeclContextInfo(D,
576                                      SemaDCIDForTemplateParmDecl,
577                                      LexicalDCIDForTemplateParmDecl);
578     D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
579   } else {
580     auto *SemaDC = readDeclAs<DeclContext>();
581     auto *LexicalDC = readDeclAs<DeclContext>();
582     if (!LexicalDC)
583       LexicalDC = SemaDC;
584     DeclContext *MergedSemaDC = Reader.MergedDeclContexts.lookup(SemaDC);
585     // Avoid calling setLexicalDeclContext() directly because it uses
586     // Decl::getASTContext() internally which is unsafe during derialization.
587     D->setDeclContextsImpl(MergedSemaDC ? MergedSemaDC : SemaDC, LexicalDC,
588                            Reader.getContext());
589   }
590   D->setLocation(ThisDeclLoc);
591   D->InvalidDecl = Record.readInt();
592   if (Record.readInt()) { // hasAttrs
593     AttrVec Attrs;
594     Record.readAttributes(Attrs);
595     // Avoid calling setAttrs() directly because it uses Decl::getASTContext()
596     // internally which is unsafe during derialization.
597     D->setAttrsImpl(Attrs, Reader.getContext());
598   }
599   D->setImplicit(Record.readInt());
600   D->Used = Record.readInt();
601   IsDeclMarkedUsed |= D->Used;
602   D->setReferenced(Record.readInt());
603   D->setTopLevelDeclInObjCContainer(Record.readInt());
604   D->setAccess((AccessSpecifier)Record.readInt());
605   D->FromASTFile = true;
606   bool ModulePrivate = Record.readInt();
607 
608   // Determine whether this declaration is part of a (sub)module. If so, it
609   // may not yet be visible.
610   if (unsigned SubmoduleID = readSubmoduleID()) {
611     // Store the owning submodule ID in the declaration.
612     D->setModuleOwnershipKind(
613         ModulePrivate ? Decl::ModuleOwnershipKind::ModulePrivate
614                       : Decl::ModuleOwnershipKind::VisibleWhenImported);
615     D->setOwningModuleID(SubmoduleID);
616 
617     if (ModulePrivate) {
618       // Module-private declarations are never visible, so there is no work to
619       // do.
620     } else if (Reader.getContext().getLangOpts().ModulesLocalVisibility) {
621       // If local visibility is being tracked, this declaration will become
622       // hidden and visible as the owning module does.
623     } else if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
624       // Mark the declaration as visible when its owning module becomes visible.
625       if (Owner->NameVisibility == Module::AllVisible)
626         D->setVisibleDespiteOwningModule();
627       else
628         Reader.HiddenNamesMap[Owner].push_back(D);
629     }
630   } else if (ModulePrivate) {
631     D->setModuleOwnershipKind(Decl::ModuleOwnershipKind::ModulePrivate);
632   }
633 }
634 
635 void ASTDeclReader::VisitPragmaCommentDecl(PragmaCommentDecl *D) {
636   VisitDecl(D);
637   D->setLocation(readSourceLocation());
638   D->CommentKind = (PragmaMSCommentKind)Record.readInt();
639   std::string Arg = readString();
640   memcpy(D->getTrailingObjects<char>(), Arg.data(), Arg.size());
641   D->getTrailingObjects<char>()[Arg.size()] = '\0';
642 }
643 
644 void ASTDeclReader::VisitPragmaDetectMismatchDecl(PragmaDetectMismatchDecl *D) {
645   VisitDecl(D);
646   D->setLocation(readSourceLocation());
647   std::string Name = readString();
648   memcpy(D->getTrailingObjects<char>(), Name.data(), Name.size());
649   D->getTrailingObjects<char>()[Name.size()] = '\0';
650 
651   D->ValueStart = Name.size() + 1;
652   std::string Value = readString();
653   memcpy(D->getTrailingObjects<char>() + D->ValueStart, Value.data(),
654          Value.size());
655   D->getTrailingObjects<char>()[D->ValueStart + Value.size()] = '\0';
656 }
657 
658 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
659   llvm_unreachable("Translation units are not serialized");
660 }
661 
662 void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
663   VisitDecl(ND);
664   ND->setDeclName(Record.readDeclarationName());
665   AnonymousDeclNumber = Record.readInt();
666 }
667 
668 void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
669   VisitNamedDecl(TD);
670   TD->setLocStart(readSourceLocation());
671   // Delay type reading until after we have fully initialized the decl.
672   DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
673 }
674 
675 ASTDeclReader::RedeclarableResult
676 ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
677   RedeclarableResult Redecl = VisitRedeclarable(TD);
678   VisitTypeDecl(TD);
679   TypeSourceInfo *TInfo = readTypeSourceInfo();
680   if (Record.readInt()) { // isModed
681     QualType modedT = Record.readType();
682     TD->setModedTypeSourceInfo(TInfo, modedT);
683   } else
684     TD->setTypeSourceInfo(TInfo);
685   // Read and discard the declaration for which this is a typedef name for
686   // linkage, if it exists. We cannot rely on our type to pull in this decl,
687   // because it might have been merged with a type from another module and
688   // thus might not refer to our version of the declaration.
689   readDecl();
690   return Redecl;
691 }
692 
693 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
694   RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
695   mergeRedeclarable(TD, Redecl);
696 }
697 
698 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
699   RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
700   if (auto *Template = readDeclAs<TypeAliasTemplateDecl>())
701     // Merged when we merge the template.
702     TD->setDescribedAliasTemplate(Template);
703   else
704     mergeRedeclarable(TD, Redecl);
705 }
706 
707 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitTagDecl(TagDecl *TD) {
708   RedeclarableResult Redecl = VisitRedeclarable(TD);
709   VisitTypeDecl(TD);
710 
711   TD->IdentifierNamespace = Record.readInt();
712   TD->setTagKind((TagDecl::TagKind)Record.readInt());
713   if (!isa<CXXRecordDecl>(TD))
714     TD->setCompleteDefinition(Record.readInt());
715   TD->setEmbeddedInDeclarator(Record.readInt());
716   TD->setFreeStanding(Record.readInt());
717   TD->setCompleteDefinitionRequired(Record.readInt());
718   TD->setBraceRange(readSourceRange());
719 
720   switch (Record.readInt()) {
721   case 0:
722     break;
723   case 1: { // ExtInfo
724     auto *Info = new (Reader.getContext()) TagDecl::ExtInfo();
725     Record.readQualifierInfo(*Info);
726     TD->TypedefNameDeclOrQualifier = Info;
727     break;
728   }
729   case 2: // TypedefNameForAnonDecl
730     NamedDeclForTagDecl = readDeclID();
731     TypedefNameForLinkage = Record.readIdentifier();
732     break;
733   default:
734     llvm_unreachable("unexpected tag info kind");
735   }
736 
737   if (!isa<CXXRecordDecl>(TD))
738     mergeRedeclarable(TD, Redecl);
739   return Redecl;
740 }
741 
742 void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
743   VisitTagDecl(ED);
744   if (TypeSourceInfo *TI = readTypeSourceInfo())
745     ED->setIntegerTypeSourceInfo(TI);
746   else
747     ED->setIntegerType(Record.readType());
748   ED->setPromotionType(Record.readType());
749   ED->setNumPositiveBits(Record.readInt());
750   ED->setNumNegativeBits(Record.readInt());
751   ED->setScoped(Record.readInt());
752   ED->setScopedUsingClassTag(Record.readInt());
753   ED->setFixed(Record.readInt());
754 
755   ED->setHasODRHash(true);
756   ED->ODRHash = Record.readInt();
757 
758   // If this is a definition subject to the ODR, and we already have a
759   // definition, merge this one into it.
760   if (ED->isCompleteDefinition() &&
761       Reader.getContext().getLangOpts().Modules &&
762       Reader.getContext().getLangOpts().CPlusPlus) {
763     EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()];
764     if (!OldDef) {
765       // This is the first time we've seen an imported definition. Look for a
766       // local definition before deciding that we are the first definition.
767       for (auto *D : merged_redecls(ED->getCanonicalDecl())) {
768         if (!D->isFromASTFile() && D->isCompleteDefinition()) {
769           OldDef = D;
770           break;
771         }
772       }
773     }
774     if (OldDef) {
775       Reader.MergedDeclContexts.insert(std::make_pair(ED, OldDef));
776       ED->setCompleteDefinition(false);
777       Reader.mergeDefinitionVisibility(OldDef, ED);
778       if (OldDef->getODRHash() != ED->getODRHash())
779         Reader.PendingEnumOdrMergeFailures[OldDef].push_back(ED);
780     } else {
781       OldDef = ED;
782     }
783   }
784 
785   if (auto *InstED = readDeclAs<EnumDecl>()) {
786     auto TSK = (TemplateSpecializationKind)Record.readInt();
787     SourceLocation POI = readSourceLocation();
788     ED->setInstantiationOfMemberEnum(Reader.getContext(), InstED, TSK);
789     ED->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
790   }
791 }
792 
793 ASTDeclReader::RedeclarableResult
794 ASTDeclReader::VisitRecordDeclImpl(RecordDecl *RD) {
795   RedeclarableResult Redecl = VisitTagDecl(RD);
796   RD->setHasFlexibleArrayMember(Record.readInt());
797   RD->setAnonymousStructOrUnion(Record.readInt());
798   RD->setHasObjectMember(Record.readInt());
799   RD->setHasVolatileMember(Record.readInt());
800   RD->setNonTrivialToPrimitiveDefaultInitialize(Record.readInt());
801   RD->setNonTrivialToPrimitiveCopy(Record.readInt());
802   RD->setNonTrivialToPrimitiveDestroy(Record.readInt());
803   RD->setHasNonTrivialToPrimitiveDefaultInitializeCUnion(Record.readInt());
804   RD->setHasNonTrivialToPrimitiveDestructCUnion(Record.readInt());
805   RD->setHasNonTrivialToPrimitiveCopyCUnion(Record.readInt());
806   RD->setParamDestroyedInCallee(Record.readInt());
807   RD->setArgPassingRestrictions((RecordDecl::ArgPassingKind)Record.readInt());
808   return Redecl;
809 }
810 
811 void ASTDeclReader::VisitRecordDecl(RecordDecl *RD) {
812   VisitRecordDeclImpl(RD);
813 
814   // Maintain the invariant of a redeclaration chain containing only
815   // a single definition.
816   if (RD->isCompleteDefinition()) {
817     RecordDecl *Canon = static_cast<RecordDecl *>(RD->getCanonicalDecl());
818     RecordDecl *&OldDef = Reader.RecordDefinitions[Canon];
819     if (!OldDef) {
820       // This is the first time we've seen an imported definition. Look for a
821       // local definition before deciding that we are the first definition.
822       for (auto *D : merged_redecls(Canon)) {
823         if (!D->isFromASTFile() && D->isCompleteDefinition()) {
824           OldDef = D;
825           break;
826         }
827       }
828     }
829     if (OldDef) {
830       Reader.MergedDeclContexts.insert(std::make_pair(RD, OldDef));
831       RD->setCompleteDefinition(false);
832       Reader.mergeDefinitionVisibility(OldDef, RD);
833     } else {
834       OldDef = RD;
835     }
836   }
837 }
838 
839 void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
840   VisitNamedDecl(VD);
841   // For function declarations, defer reading the type in case the function has
842   // a deduced return type that references an entity declared within the
843   // function.
844   if (isa<FunctionDecl>(VD))
845     DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
846   else
847     VD->setType(Record.readType());
848 }
849 
850 void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
851   VisitValueDecl(ECD);
852   if (Record.readInt())
853     ECD->setInitExpr(Record.readExpr());
854   ECD->setInitVal(Record.readAPSInt());
855   mergeMergeable(ECD);
856 }
857 
858 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
859   VisitValueDecl(DD);
860   DD->setInnerLocStart(readSourceLocation());
861   if (Record.readInt()) { // hasExtInfo
862     auto *Info = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
863     Record.readQualifierInfo(*Info);
864     Info->TrailingRequiresClause = Record.readExpr();
865     DD->DeclInfo = Info;
866   }
867   QualType TSIType = Record.readType();
868   DD->setTypeSourceInfo(
869       TSIType.isNull() ? nullptr
870                        : Reader.getContext().CreateTypeSourceInfo(TSIType));
871 }
872 
873 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
874   RedeclarableResult Redecl = VisitRedeclarable(FD);
875   VisitDeclaratorDecl(FD);
876 
877   // Attach a type to this function. Use the real type if possible, but fall
878   // back to the type as written if it involves a deduced return type.
879   if (FD->getTypeSourceInfo() &&
880       FD->getTypeSourceInfo()->getType()->castAs<FunctionType>()
881                              ->getReturnType()->getContainedAutoType()) {
882     // We'll set up the real type in Visit, once we've finished loading the
883     // function.
884     FD->setType(FD->getTypeSourceInfo()->getType());
885     Reader.PendingFunctionTypes.push_back({FD, DeferredTypeID});
886   } else {
887     FD->setType(Reader.GetType(DeferredTypeID));
888   }
889   DeferredTypeID = 0;
890 
891   FD->DNLoc = Record.readDeclarationNameLoc(FD->getDeclName());
892   FD->IdentifierNamespace = Record.readInt();
893 
894   // FunctionDecl's body is handled last at ASTDeclReader::Visit,
895   // after everything else is read.
896 
897   FD->setStorageClass(static_cast<StorageClass>(Record.readInt()));
898   FD->setInlineSpecified(Record.readInt());
899   FD->setImplicitlyInline(Record.readInt());
900   FD->setVirtualAsWritten(Record.readInt());
901   // We defer calling `FunctionDecl::setPure()` here as for methods of
902   // `CXXTemplateSpecializationDecl`s, we may not have connected up the
903   // definition (which is required for `setPure`).
904   const bool Pure = Record.readInt();
905   FD->setHasInheritedPrototype(Record.readInt());
906   FD->setHasWrittenPrototype(Record.readInt());
907   FD->setDeletedAsWritten(Record.readInt());
908   FD->setTrivial(Record.readInt());
909   FD->setTrivialForCall(Record.readInt());
910   FD->setDefaulted(Record.readInt());
911   FD->setExplicitlyDefaulted(Record.readInt());
912   FD->setHasImplicitReturnZero(Record.readInt());
913   FD->setConstexprKind(static_cast<ConstexprSpecKind>(Record.readInt()));
914   FD->setUsesSEHTry(Record.readInt());
915   FD->setHasSkippedBody(Record.readInt());
916   FD->setIsMultiVersion(Record.readInt());
917   FD->setLateTemplateParsed(Record.readInt());
918 
919   FD->setCachedLinkage(static_cast<Linkage>(Record.readInt()));
920   FD->EndRangeLoc = readSourceLocation();
921 
922   FD->ODRHash = Record.readInt();
923   FD->setHasODRHash(true);
924 
925   if (FD->isDefaulted()) {
926     if (unsigned NumLookups = Record.readInt()) {
927       SmallVector<DeclAccessPair, 8> Lookups;
928       for (unsigned I = 0; I != NumLookups; ++I) {
929         NamedDecl *ND = Record.readDeclAs<NamedDecl>();
930         AccessSpecifier AS = (AccessSpecifier)Record.readInt();
931         Lookups.push_back(DeclAccessPair::make(ND, AS));
932       }
933       FD->setDefaultedFunctionInfo(FunctionDecl::DefaultedFunctionInfo::Create(
934           Reader.getContext(), Lookups));
935     }
936   }
937 
938   switch ((FunctionDecl::TemplatedKind)Record.readInt()) {
939   case FunctionDecl::TK_NonTemplate:
940     mergeRedeclarable(FD, Redecl);
941     break;
942   case FunctionDecl::TK_FunctionTemplate:
943     // Merged when we merge the template.
944     FD->setDescribedFunctionTemplate(readDeclAs<FunctionTemplateDecl>());
945     break;
946   case FunctionDecl::TK_MemberSpecialization: {
947     auto *InstFD = readDeclAs<FunctionDecl>();
948     auto TSK = (TemplateSpecializationKind)Record.readInt();
949     SourceLocation POI = readSourceLocation();
950     FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
951     FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
952     mergeRedeclarable(FD, Redecl);
953     break;
954   }
955   case FunctionDecl::TK_FunctionTemplateSpecialization: {
956     auto *Template = readDeclAs<FunctionTemplateDecl>();
957     auto TSK = (TemplateSpecializationKind)Record.readInt();
958 
959     // Template arguments.
960     SmallVector<TemplateArgument, 8> TemplArgs;
961     Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
962 
963     // Template args as written.
964     SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
965     SourceLocation LAngleLoc, RAngleLoc;
966     bool HasTemplateArgumentsAsWritten = Record.readInt();
967     if (HasTemplateArgumentsAsWritten) {
968       unsigned NumTemplateArgLocs = Record.readInt();
969       TemplArgLocs.reserve(NumTemplateArgLocs);
970       for (unsigned i = 0; i != NumTemplateArgLocs; ++i)
971         TemplArgLocs.push_back(Record.readTemplateArgumentLoc());
972 
973       LAngleLoc = readSourceLocation();
974       RAngleLoc = readSourceLocation();
975     }
976 
977     SourceLocation POI = readSourceLocation();
978 
979     ASTContext &C = Reader.getContext();
980     TemplateArgumentList *TemplArgList
981       = TemplateArgumentList::CreateCopy(C, TemplArgs);
982     TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
983     for (unsigned i = 0, e = TemplArgLocs.size(); i != e; ++i)
984       TemplArgsInfo.addArgument(TemplArgLocs[i]);
985 
986     MemberSpecializationInfo *MSInfo = nullptr;
987     if (Record.readInt()) {
988       auto *FD = readDeclAs<FunctionDecl>();
989       auto TSK = (TemplateSpecializationKind)Record.readInt();
990       SourceLocation POI = readSourceLocation();
991 
992       MSInfo = new (C) MemberSpecializationInfo(FD, TSK);
993       MSInfo->setPointOfInstantiation(POI);
994     }
995 
996     FunctionTemplateSpecializationInfo *FTInfo =
997         FunctionTemplateSpecializationInfo::Create(
998             C, FD, Template, TSK, TemplArgList,
999             HasTemplateArgumentsAsWritten ? &TemplArgsInfo : nullptr, POI,
1000             MSInfo);
1001     FD->TemplateOrSpecialization = FTInfo;
1002 
1003     if (FD->isCanonicalDecl()) { // if canonical add to template's set.
1004       // The template that contains the specializations set. It's not safe to
1005       // use getCanonicalDecl on Template since it may still be initializing.
1006       auto *CanonTemplate = readDeclAs<FunctionTemplateDecl>();
1007       // Get the InsertPos by FindNodeOrInsertPos() instead of calling
1008       // InsertNode(FTInfo) directly to avoid the getASTContext() call in
1009       // FunctionTemplateSpecializationInfo's Profile().
1010       // We avoid getASTContext because a decl in the parent hierarchy may
1011       // be initializing.
1012       llvm::FoldingSetNodeID ID;
1013       FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs, C);
1014       void *InsertPos = nullptr;
1015       FunctionTemplateDecl::Common *CommonPtr = CanonTemplate->getCommonPtr();
1016       FunctionTemplateSpecializationInfo *ExistingInfo =
1017           CommonPtr->Specializations.FindNodeOrInsertPos(ID, InsertPos);
1018       if (InsertPos)
1019         CommonPtr->Specializations.InsertNode(FTInfo, InsertPos);
1020       else {
1021         assert(Reader.getContext().getLangOpts().Modules &&
1022                "already deserialized this template specialization");
1023         mergeRedeclarable(FD, ExistingInfo->getFunction(), Redecl);
1024       }
1025     }
1026     break;
1027   }
1028   case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
1029     // Templates.
1030     UnresolvedSet<8> TemplDecls;
1031     unsigned NumTemplates = Record.readInt();
1032     while (NumTemplates--)
1033       TemplDecls.addDecl(readDeclAs<NamedDecl>());
1034 
1035     // Templates args.
1036     TemplateArgumentListInfo TemplArgs;
1037     unsigned NumArgs = Record.readInt();
1038     while (NumArgs--)
1039       TemplArgs.addArgument(Record.readTemplateArgumentLoc());
1040     TemplArgs.setLAngleLoc(readSourceLocation());
1041     TemplArgs.setRAngleLoc(readSourceLocation());
1042 
1043     FD->setDependentTemplateSpecialization(Reader.getContext(),
1044                                            TemplDecls, TemplArgs);
1045     // These are not merged; we don't need to merge redeclarations of dependent
1046     // template friends.
1047     break;
1048   }
1049   }
1050 
1051   // Defer calling `setPure` until merging above has guaranteed we've set
1052   // `DefinitionData` (as this will need to access it).
1053   FD->setPure(Pure);
1054 
1055   // Read in the parameters.
1056   unsigned NumParams = Record.readInt();
1057   SmallVector<ParmVarDecl *, 16> Params;
1058   Params.reserve(NumParams);
1059   for (unsigned I = 0; I != NumParams; ++I)
1060     Params.push_back(readDeclAs<ParmVarDecl>());
1061   FD->setParams(Reader.getContext(), Params);
1062 }
1063 
1064 void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
1065   VisitNamedDecl(MD);
1066   if (Record.readInt()) {
1067     // Load the body on-demand. Most clients won't care, because method
1068     // definitions rarely show up in headers.
1069     Reader.PendingBodies[MD] = GetCurrentCursorOffset();
1070     HasPendingBody = true;
1071   }
1072   MD->setSelfDecl(readDeclAs<ImplicitParamDecl>());
1073   MD->setCmdDecl(readDeclAs<ImplicitParamDecl>());
1074   MD->setInstanceMethod(Record.readInt());
1075   MD->setVariadic(Record.readInt());
1076   MD->setPropertyAccessor(Record.readInt());
1077   MD->setSynthesizedAccessorStub(Record.readInt());
1078   MD->setDefined(Record.readInt());
1079   MD->setOverriding(Record.readInt());
1080   MD->setHasSkippedBody(Record.readInt());
1081 
1082   MD->setIsRedeclaration(Record.readInt());
1083   MD->setHasRedeclaration(Record.readInt());
1084   if (MD->hasRedeclaration())
1085     Reader.getContext().setObjCMethodRedeclaration(MD,
1086                                        readDeclAs<ObjCMethodDecl>());
1087 
1088   MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record.readInt());
1089   MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record.readInt());
1090   MD->setRelatedResultType(Record.readInt());
1091   MD->setReturnType(Record.readType());
1092   MD->setReturnTypeSourceInfo(readTypeSourceInfo());
1093   MD->DeclEndLoc = readSourceLocation();
1094   unsigned NumParams = Record.readInt();
1095   SmallVector<ParmVarDecl *, 16> Params;
1096   Params.reserve(NumParams);
1097   for (unsigned I = 0; I != NumParams; ++I)
1098     Params.push_back(readDeclAs<ParmVarDecl>());
1099 
1100   MD->setSelLocsKind((SelectorLocationsKind)Record.readInt());
1101   unsigned NumStoredSelLocs = Record.readInt();
1102   SmallVector<SourceLocation, 16> SelLocs;
1103   SelLocs.reserve(NumStoredSelLocs);
1104   for (unsigned i = 0; i != NumStoredSelLocs; ++i)
1105     SelLocs.push_back(readSourceLocation());
1106 
1107   MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
1108 }
1109 
1110 void ASTDeclReader::VisitObjCTypeParamDecl(ObjCTypeParamDecl *D) {
1111   VisitTypedefNameDecl(D);
1112 
1113   D->Variance = Record.readInt();
1114   D->Index = Record.readInt();
1115   D->VarianceLoc = readSourceLocation();
1116   D->ColonLoc = readSourceLocation();
1117 }
1118 
1119 void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
1120   VisitNamedDecl(CD);
1121   CD->setAtStartLoc(readSourceLocation());
1122   CD->setAtEndRange(readSourceRange());
1123 }
1124 
1125 ObjCTypeParamList *ASTDeclReader::ReadObjCTypeParamList() {
1126   unsigned numParams = Record.readInt();
1127   if (numParams == 0)
1128     return nullptr;
1129 
1130   SmallVector<ObjCTypeParamDecl *, 4> typeParams;
1131   typeParams.reserve(numParams);
1132   for (unsigned i = 0; i != numParams; ++i) {
1133     auto *typeParam = readDeclAs<ObjCTypeParamDecl>();
1134     if (!typeParam)
1135       return nullptr;
1136 
1137     typeParams.push_back(typeParam);
1138   }
1139 
1140   SourceLocation lAngleLoc = readSourceLocation();
1141   SourceLocation rAngleLoc = readSourceLocation();
1142 
1143   return ObjCTypeParamList::create(Reader.getContext(), lAngleLoc,
1144                                    typeParams, rAngleLoc);
1145 }
1146 
1147 void ASTDeclReader::ReadObjCDefinitionData(
1148          struct ObjCInterfaceDecl::DefinitionData &Data) {
1149   // Read the superclass.
1150   Data.SuperClassTInfo = readTypeSourceInfo();
1151 
1152   Data.EndLoc = readSourceLocation();
1153   Data.HasDesignatedInitializers = Record.readInt();
1154 
1155   // Read the directly referenced protocols and their SourceLocations.
1156   unsigned NumProtocols = Record.readInt();
1157   SmallVector<ObjCProtocolDecl *, 16> Protocols;
1158   Protocols.reserve(NumProtocols);
1159   for (unsigned I = 0; I != NumProtocols; ++I)
1160     Protocols.push_back(readDeclAs<ObjCProtocolDecl>());
1161   SmallVector<SourceLocation, 16> ProtoLocs;
1162   ProtoLocs.reserve(NumProtocols);
1163   for (unsigned I = 0; I != NumProtocols; ++I)
1164     ProtoLocs.push_back(readSourceLocation());
1165   Data.ReferencedProtocols.set(Protocols.data(), NumProtocols, ProtoLocs.data(),
1166                                Reader.getContext());
1167 
1168   // Read the transitive closure of protocols referenced by this class.
1169   NumProtocols = Record.readInt();
1170   Protocols.clear();
1171   Protocols.reserve(NumProtocols);
1172   for (unsigned I = 0; I != NumProtocols; ++I)
1173     Protocols.push_back(readDeclAs<ObjCProtocolDecl>());
1174   Data.AllReferencedProtocols.set(Protocols.data(), NumProtocols,
1175                                   Reader.getContext());
1176 }
1177 
1178 void ASTDeclReader::MergeDefinitionData(ObjCInterfaceDecl *D,
1179          struct ObjCInterfaceDecl::DefinitionData &&NewDD) {
1180   struct ObjCInterfaceDecl::DefinitionData &DD = D->data();
1181   if (DD.Definition != NewDD.Definition) {
1182     Reader.MergedDeclContexts.insert(
1183         std::make_pair(NewDD.Definition, DD.Definition));
1184     Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition);
1185   }
1186 
1187   // FIXME: odr checking?
1188 }
1189 
1190 void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
1191   RedeclarableResult Redecl = VisitRedeclarable(ID);
1192   VisitObjCContainerDecl(ID);
1193   DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
1194   mergeRedeclarable(ID, Redecl);
1195 
1196   ID->TypeParamList = ReadObjCTypeParamList();
1197   if (Record.readInt()) {
1198     // Read the definition.
1199     ID->allocateDefinitionData();
1200 
1201     ReadObjCDefinitionData(ID->data());
1202     ObjCInterfaceDecl *Canon = ID->getCanonicalDecl();
1203     if (Canon->Data.getPointer()) {
1204       // If we already have a definition, keep the definition invariant and
1205       // merge the data.
1206       MergeDefinitionData(Canon, std::move(ID->data()));
1207       ID->Data = Canon->Data;
1208     } else {
1209       // Set the definition data of the canonical declaration, so other
1210       // redeclarations will see it.
1211       ID->getCanonicalDecl()->Data = ID->Data;
1212 
1213       // We will rebuild this list lazily.
1214       ID->setIvarList(nullptr);
1215     }
1216 
1217     // Note that we have deserialized a definition.
1218     Reader.PendingDefinitions.insert(ID);
1219 
1220     // Note that we've loaded this Objective-C class.
1221     Reader.ObjCClassesLoaded.push_back(ID);
1222   } else {
1223     ID->Data = ID->getCanonicalDecl()->Data;
1224   }
1225 }
1226 
1227 void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
1228   VisitFieldDecl(IVD);
1229   IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record.readInt());
1230   // This field will be built lazily.
1231   IVD->setNextIvar(nullptr);
1232   bool synth = Record.readInt();
1233   IVD->setSynthesize(synth);
1234 }
1235 
1236 void ASTDeclReader::ReadObjCDefinitionData(
1237          struct ObjCProtocolDecl::DefinitionData &Data) {
1238     unsigned NumProtoRefs = Record.readInt();
1239     SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
1240     ProtoRefs.reserve(NumProtoRefs);
1241     for (unsigned I = 0; I != NumProtoRefs; ++I)
1242       ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>());
1243     SmallVector<SourceLocation, 16> ProtoLocs;
1244     ProtoLocs.reserve(NumProtoRefs);
1245     for (unsigned I = 0; I != NumProtoRefs; ++I)
1246       ProtoLocs.push_back(readSourceLocation());
1247     Data.ReferencedProtocols.set(ProtoRefs.data(), NumProtoRefs,
1248                                  ProtoLocs.data(), Reader.getContext());
1249 }
1250 
1251 void ASTDeclReader::MergeDefinitionData(ObjCProtocolDecl *D,
1252          struct ObjCProtocolDecl::DefinitionData &&NewDD) {
1253   struct ObjCProtocolDecl::DefinitionData &DD = D->data();
1254   if (DD.Definition != NewDD.Definition) {
1255     Reader.MergedDeclContexts.insert(
1256         std::make_pair(NewDD.Definition, DD.Definition));
1257     Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition);
1258   }
1259 
1260   // FIXME: odr checking?
1261 }
1262 
1263 void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
1264   RedeclarableResult Redecl = VisitRedeclarable(PD);
1265   VisitObjCContainerDecl(PD);
1266   mergeRedeclarable(PD, Redecl);
1267 
1268   if (Record.readInt()) {
1269     // Read the definition.
1270     PD->allocateDefinitionData();
1271 
1272     ReadObjCDefinitionData(PD->data());
1273 
1274     ObjCProtocolDecl *Canon = PD->getCanonicalDecl();
1275     if (Canon->Data.getPointer()) {
1276       // If we already have a definition, keep the definition invariant and
1277       // merge the data.
1278       MergeDefinitionData(Canon, std::move(PD->data()));
1279       PD->Data = Canon->Data;
1280     } else {
1281       // Set the definition data of the canonical declaration, so other
1282       // redeclarations will see it.
1283       PD->getCanonicalDecl()->Data = PD->Data;
1284     }
1285     // Note that we have deserialized a definition.
1286     Reader.PendingDefinitions.insert(PD);
1287   } else {
1288     PD->Data = PD->getCanonicalDecl()->Data;
1289   }
1290 }
1291 
1292 void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
1293   VisitFieldDecl(FD);
1294 }
1295 
1296 void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
1297   VisitObjCContainerDecl(CD);
1298   CD->setCategoryNameLoc(readSourceLocation());
1299   CD->setIvarLBraceLoc(readSourceLocation());
1300   CD->setIvarRBraceLoc(readSourceLocation());
1301 
1302   // Note that this category has been deserialized. We do this before
1303   // deserializing the interface declaration, so that it will consider this
1304   /// category.
1305   Reader.CategoriesDeserialized.insert(CD);
1306 
1307   CD->ClassInterface = readDeclAs<ObjCInterfaceDecl>();
1308   CD->TypeParamList = ReadObjCTypeParamList();
1309   unsigned NumProtoRefs = Record.readInt();
1310   SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
1311   ProtoRefs.reserve(NumProtoRefs);
1312   for (unsigned I = 0; I != NumProtoRefs; ++I)
1313     ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>());
1314   SmallVector<SourceLocation, 16> ProtoLocs;
1315   ProtoLocs.reserve(NumProtoRefs);
1316   for (unsigned I = 0; I != NumProtoRefs; ++I)
1317     ProtoLocs.push_back(readSourceLocation());
1318   CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
1319                       Reader.getContext());
1320 
1321   // Protocols in the class extension belong to the class.
1322   if (NumProtoRefs > 0 && CD->ClassInterface && CD->IsClassExtension())
1323     CD->ClassInterface->mergeClassExtensionProtocolList(
1324         (ObjCProtocolDecl *const *)ProtoRefs.data(), NumProtoRefs,
1325         Reader.getContext());
1326 }
1327 
1328 void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
1329   VisitNamedDecl(CAD);
1330   CAD->setClassInterface(readDeclAs<ObjCInterfaceDecl>());
1331 }
1332 
1333 void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
1334   VisitNamedDecl(D);
1335   D->setAtLoc(readSourceLocation());
1336   D->setLParenLoc(readSourceLocation());
1337   QualType T = Record.readType();
1338   TypeSourceInfo *TSI = readTypeSourceInfo();
1339   D->setType(T, TSI);
1340   D->setPropertyAttributes((ObjCPropertyAttribute::Kind)Record.readInt());
1341   D->setPropertyAttributesAsWritten(
1342       (ObjCPropertyAttribute::Kind)Record.readInt());
1343   D->setPropertyImplementation(
1344       (ObjCPropertyDecl::PropertyControl)Record.readInt());
1345   DeclarationName GetterName = Record.readDeclarationName();
1346   SourceLocation GetterLoc = readSourceLocation();
1347   D->setGetterName(GetterName.getObjCSelector(), GetterLoc);
1348   DeclarationName SetterName = Record.readDeclarationName();
1349   SourceLocation SetterLoc = readSourceLocation();
1350   D->setSetterName(SetterName.getObjCSelector(), SetterLoc);
1351   D->setGetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1352   D->setSetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1353   D->setPropertyIvarDecl(readDeclAs<ObjCIvarDecl>());
1354 }
1355 
1356 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
1357   VisitObjCContainerDecl(D);
1358   D->setClassInterface(readDeclAs<ObjCInterfaceDecl>());
1359 }
1360 
1361 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
1362   VisitObjCImplDecl(D);
1363   D->CategoryNameLoc = readSourceLocation();
1364 }
1365 
1366 void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
1367   VisitObjCImplDecl(D);
1368   D->setSuperClass(readDeclAs<ObjCInterfaceDecl>());
1369   D->SuperLoc = readSourceLocation();
1370   D->setIvarLBraceLoc(readSourceLocation());
1371   D->setIvarRBraceLoc(readSourceLocation());
1372   D->setHasNonZeroConstructors(Record.readInt());
1373   D->setHasDestructors(Record.readInt());
1374   D->NumIvarInitializers = Record.readInt();
1375   if (D->NumIvarInitializers)
1376     D->IvarInitializers = ReadGlobalOffset();
1377 }
1378 
1379 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
1380   VisitDecl(D);
1381   D->setAtLoc(readSourceLocation());
1382   D->setPropertyDecl(readDeclAs<ObjCPropertyDecl>());
1383   D->PropertyIvarDecl = readDeclAs<ObjCIvarDecl>();
1384   D->IvarLoc = readSourceLocation();
1385   D->setGetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1386   D->setSetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1387   D->setGetterCXXConstructor(Record.readExpr());
1388   D->setSetterCXXAssignment(Record.readExpr());
1389 }
1390 
1391 void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
1392   VisitDeclaratorDecl(FD);
1393   FD->Mutable = Record.readInt();
1394 
1395   if (auto ISK = static_cast<FieldDecl::InitStorageKind>(Record.readInt())) {
1396     FD->InitStorage.setInt(ISK);
1397     FD->InitStorage.setPointer(ISK == FieldDecl::ISK_CapturedVLAType
1398                                    ? Record.readType().getAsOpaquePtr()
1399                                    : Record.readExpr());
1400   }
1401 
1402   if (auto *BW = Record.readExpr())
1403     FD->setBitWidth(BW);
1404 
1405   if (!FD->getDeclName()) {
1406     if (auto *Tmpl = readDeclAs<FieldDecl>())
1407       Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
1408   }
1409   mergeMergeable(FD);
1410 }
1411 
1412 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) {
1413   VisitDeclaratorDecl(PD);
1414   PD->GetterId = Record.readIdentifier();
1415   PD->SetterId = Record.readIdentifier();
1416 }
1417 
1418 void ASTDeclReader::VisitMSGuidDecl(MSGuidDecl *D) {
1419   VisitValueDecl(D);
1420   D->PartVal.Part1 = Record.readInt();
1421   D->PartVal.Part2 = Record.readInt();
1422   D->PartVal.Part3 = Record.readInt();
1423   for (auto &C : D->PartVal.Part4And5)
1424     C = Record.readInt();
1425 
1426   // Add this GUID to the AST context's lookup structure, and merge if needed.
1427   if (MSGuidDecl *Existing = Reader.getContext().MSGuidDecls.GetOrInsertNode(D))
1428     Reader.getContext().setPrimaryMergedDecl(D, Existing->getCanonicalDecl());
1429 }
1430 
1431 void ASTDeclReader::VisitTemplateParamObjectDecl(TemplateParamObjectDecl *D) {
1432   VisitValueDecl(D);
1433   D->Value = Record.readAPValue();
1434 
1435   // Add this template parameter object to the AST context's lookup structure,
1436   // and merge if needed.
1437   if (TemplateParamObjectDecl *Existing =
1438           Reader.getContext().TemplateParamObjectDecls.GetOrInsertNode(D))
1439     Reader.getContext().setPrimaryMergedDecl(D, Existing->getCanonicalDecl());
1440 }
1441 
1442 void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
1443   VisitValueDecl(FD);
1444 
1445   FD->ChainingSize = Record.readInt();
1446   assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
1447   FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
1448 
1449   for (unsigned I = 0; I != FD->ChainingSize; ++I)
1450     FD->Chaining[I] = readDeclAs<NamedDecl>();
1451 
1452   mergeMergeable(FD);
1453 }
1454 
1455 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitVarDeclImpl(VarDecl *VD) {
1456   RedeclarableResult Redecl = VisitRedeclarable(VD);
1457   VisitDeclaratorDecl(VD);
1458 
1459   VD->VarDeclBits.SClass = (StorageClass)Record.readInt();
1460   VD->VarDeclBits.TSCSpec = Record.readInt();
1461   VD->VarDeclBits.InitStyle = Record.readInt();
1462   VD->VarDeclBits.ARCPseudoStrong = Record.readInt();
1463   if (!isa<ParmVarDecl>(VD)) {
1464     VD->NonParmVarDeclBits.IsThisDeclarationADemotedDefinition =
1465         Record.readInt();
1466     VD->NonParmVarDeclBits.ExceptionVar = Record.readInt();
1467     VD->NonParmVarDeclBits.NRVOVariable = Record.readInt();
1468     VD->NonParmVarDeclBits.CXXForRangeDecl = Record.readInt();
1469     VD->NonParmVarDeclBits.ObjCForDecl = Record.readInt();
1470     VD->NonParmVarDeclBits.IsInline = Record.readInt();
1471     VD->NonParmVarDeclBits.IsInlineSpecified = Record.readInt();
1472     VD->NonParmVarDeclBits.IsConstexpr = Record.readInt();
1473     VD->NonParmVarDeclBits.IsInitCapture = Record.readInt();
1474     VD->NonParmVarDeclBits.PreviousDeclInSameBlockScope = Record.readInt();
1475     VD->NonParmVarDeclBits.ImplicitParamKind = Record.readInt();
1476     VD->NonParmVarDeclBits.EscapingByref = Record.readInt();
1477   }
1478   auto VarLinkage = Linkage(Record.readInt());
1479   VD->setCachedLinkage(VarLinkage);
1480 
1481   // Reconstruct the one piece of the IdentifierNamespace that we need.
1482   if (VD->getStorageClass() == SC_Extern && VarLinkage != NoLinkage &&
1483       VD->getLexicalDeclContext()->isFunctionOrMethod())
1484     VD->setLocalExternDecl();
1485 
1486   if (uint64_t Val = Record.readInt()) {
1487     VD->setInit(Record.readExpr());
1488     if (Val != 1) {
1489       EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
1490       Eval->HasConstantInitialization = (Val & 2) != 0;
1491       Eval->HasConstantDestruction = (Val & 4) != 0;
1492     }
1493   }
1494 
1495   if (VD->hasAttr<BlocksAttr>() && VD->getType()->getAsCXXRecordDecl()) {
1496     Expr *CopyExpr = Record.readExpr();
1497     if (CopyExpr)
1498       Reader.getContext().setBlockVarCopyInit(VD, CopyExpr, Record.readInt());
1499   }
1500 
1501   if (VD->getStorageDuration() == SD_Static && Record.readInt()) {
1502     Reader.DefinitionSource[VD] =
1503         Loc.F->Kind == ModuleKind::MK_MainFile ||
1504         Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
1505   }
1506 
1507   enum VarKind {
1508     VarNotTemplate = 0, VarTemplate, StaticDataMemberSpecialization
1509   };
1510   switch ((VarKind)Record.readInt()) {
1511   case VarNotTemplate:
1512     // Only true variables (not parameters or implicit parameters) can be
1513     // merged; the other kinds are not really redeclarable at all.
1514     if (!isa<ParmVarDecl>(VD) && !isa<ImplicitParamDecl>(VD) &&
1515         !isa<VarTemplateSpecializationDecl>(VD))
1516       mergeRedeclarable(VD, Redecl);
1517     break;
1518   case VarTemplate:
1519     // Merged when we merge the template.
1520     VD->setDescribedVarTemplate(readDeclAs<VarTemplateDecl>());
1521     break;
1522   case StaticDataMemberSpecialization: { // HasMemberSpecializationInfo.
1523     auto *Tmpl = readDeclAs<VarDecl>();
1524     auto TSK = (TemplateSpecializationKind)Record.readInt();
1525     SourceLocation POI = readSourceLocation();
1526     Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
1527     mergeRedeclarable(VD, Redecl);
1528     break;
1529   }
1530   }
1531 
1532   return Redecl;
1533 }
1534 
1535 void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
1536   VisitVarDecl(PD);
1537 }
1538 
1539 void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
1540   VisitVarDecl(PD);
1541   unsigned isObjCMethodParam = Record.readInt();
1542   unsigned scopeDepth = Record.readInt();
1543   unsigned scopeIndex = Record.readInt();
1544   unsigned declQualifier = Record.readInt();
1545   if (isObjCMethodParam) {
1546     assert(scopeDepth == 0);
1547     PD->setObjCMethodScopeInfo(scopeIndex);
1548     PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
1549   } else {
1550     PD->setScopeInfo(scopeDepth, scopeIndex);
1551   }
1552   PD->ParmVarDeclBits.IsKNRPromoted = Record.readInt();
1553   PD->ParmVarDeclBits.HasInheritedDefaultArg = Record.readInt();
1554   if (Record.readInt()) // hasUninstantiatedDefaultArg.
1555     PD->setUninstantiatedDefaultArg(Record.readExpr());
1556 
1557   // FIXME: If this is a redeclaration of a function from another module, handle
1558   // inheritance of default arguments.
1559 }
1560 
1561 void ASTDeclReader::VisitDecompositionDecl(DecompositionDecl *DD) {
1562   VisitVarDecl(DD);
1563   auto **BDs = DD->getTrailingObjects<BindingDecl *>();
1564   for (unsigned I = 0; I != DD->NumBindings; ++I) {
1565     BDs[I] = readDeclAs<BindingDecl>();
1566     BDs[I]->setDecomposedDecl(DD);
1567   }
1568 }
1569 
1570 void ASTDeclReader::VisitBindingDecl(BindingDecl *BD) {
1571   VisitValueDecl(BD);
1572   BD->Binding = Record.readExpr();
1573 }
1574 
1575 void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
1576   VisitDecl(AD);
1577   AD->setAsmString(cast<StringLiteral>(Record.readExpr()));
1578   AD->setRParenLoc(readSourceLocation());
1579 }
1580 
1581 void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
1582   VisitDecl(BD);
1583   BD->setBody(cast_or_null<CompoundStmt>(Record.readStmt()));
1584   BD->setSignatureAsWritten(readTypeSourceInfo());
1585   unsigned NumParams = Record.readInt();
1586   SmallVector<ParmVarDecl *, 16> Params;
1587   Params.reserve(NumParams);
1588   for (unsigned I = 0; I != NumParams; ++I)
1589     Params.push_back(readDeclAs<ParmVarDecl>());
1590   BD->setParams(Params);
1591 
1592   BD->setIsVariadic(Record.readInt());
1593   BD->setBlockMissingReturnType(Record.readInt());
1594   BD->setIsConversionFromLambda(Record.readInt());
1595   BD->setDoesNotEscape(Record.readInt());
1596   BD->setCanAvoidCopyToHeap(Record.readInt());
1597 
1598   bool capturesCXXThis = Record.readInt();
1599   unsigned numCaptures = Record.readInt();
1600   SmallVector<BlockDecl::Capture, 16> captures;
1601   captures.reserve(numCaptures);
1602   for (unsigned i = 0; i != numCaptures; ++i) {
1603     auto *decl = readDeclAs<VarDecl>();
1604     unsigned flags = Record.readInt();
1605     bool byRef = (flags & 1);
1606     bool nested = (flags & 2);
1607     Expr *copyExpr = ((flags & 4) ? Record.readExpr() : nullptr);
1608 
1609     captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1610   }
1611   BD->setCaptures(Reader.getContext(), captures, capturesCXXThis);
1612 }
1613 
1614 void ASTDeclReader::VisitCapturedDecl(CapturedDecl *CD) {
1615   VisitDecl(CD);
1616   unsigned ContextParamPos = Record.readInt();
1617   CD->setNothrow(Record.readInt() != 0);
1618   // Body is set by VisitCapturedStmt.
1619   for (unsigned I = 0; I < CD->NumParams; ++I) {
1620     if (I != ContextParamPos)
1621       CD->setParam(I, readDeclAs<ImplicitParamDecl>());
1622     else
1623       CD->setContextParam(I, readDeclAs<ImplicitParamDecl>());
1624   }
1625 }
1626 
1627 void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
1628   VisitDecl(D);
1629   D->setLanguage((LinkageSpecDecl::LanguageIDs)Record.readInt());
1630   D->setExternLoc(readSourceLocation());
1631   D->setRBraceLoc(readSourceLocation());
1632 }
1633 
1634 void ASTDeclReader::VisitExportDecl(ExportDecl *D) {
1635   VisitDecl(D);
1636   D->RBraceLoc = readSourceLocation();
1637 }
1638 
1639 void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
1640   VisitNamedDecl(D);
1641   D->setLocStart(readSourceLocation());
1642 }
1643 
1644 void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
1645   RedeclarableResult Redecl = VisitRedeclarable(D);
1646   VisitNamedDecl(D);
1647   D->setInline(Record.readInt());
1648   D->LocStart = readSourceLocation();
1649   D->RBraceLoc = readSourceLocation();
1650 
1651   // Defer loading the anonymous namespace until we've finished merging
1652   // this namespace; loading it might load a later declaration of the
1653   // same namespace, and we have an invariant that older declarations
1654   // get merged before newer ones try to merge.
1655   GlobalDeclID AnonNamespace = 0;
1656   if (Redecl.getFirstID() == ThisDeclID) {
1657     AnonNamespace = readDeclID();
1658   } else {
1659     // Link this namespace back to the first declaration, which has already
1660     // been deserialized.
1661     D->AnonOrFirstNamespaceAndInline.setPointer(D->getFirstDecl());
1662   }
1663 
1664   mergeRedeclarable(D, Redecl);
1665 
1666   if (AnonNamespace) {
1667     // Each module has its own anonymous namespace, which is disjoint from
1668     // any other module's anonymous namespaces, so don't attach the anonymous
1669     // namespace at all.
1670     auto *Anon = cast<NamespaceDecl>(Reader.GetDecl(AnonNamespace));
1671     if (!Record.isModule())
1672       D->setAnonymousNamespace(Anon);
1673   }
1674 }
1675 
1676 void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
1677   RedeclarableResult Redecl = VisitRedeclarable(D);
1678   VisitNamedDecl(D);
1679   D->NamespaceLoc = readSourceLocation();
1680   D->IdentLoc = readSourceLocation();
1681   D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1682   D->Namespace = readDeclAs<NamedDecl>();
1683   mergeRedeclarable(D, Redecl);
1684 }
1685 
1686 void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
1687   VisitNamedDecl(D);
1688   D->setUsingLoc(readSourceLocation());
1689   D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1690   D->DNLoc = Record.readDeclarationNameLoc(D->getDeclName());
1691   D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>());
1692   D->setTypename(Record.readInt());
1693   if (auto *Pattern = readDeclAs<NamedDecl>())
1694     Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
1695   mergeMergeable(D);
1696 }
1697 
1698 void ASTDeclReader::VisitUsingEnumDecl(UsingEnumDecl *D) {
1699   VisitNamedDecl(D);
1700   D->setUsingLoc(readSourceLocation());
1701   D->setEnumLoc(readSourceLocation());
1702   D->Enum = readDeclAs<EnumDecl>();
1703   D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>());
1704   if (auto *Pattern = readDeclAs<UsingEnumDecl>())
1705     Reader.getContext().setInstantiatedFromUsingEnumDecl(D, Pattern);
1706   mergeMergeable(D);
1707 }
1708 
1709 void ASTDeclReader::VisitUsingPackDecl(UsingPackDecl *D) {
1710   VisitNamedDecl(D);
1711   D->InstantiatedFrom = readDeclAs<NamedDecl>();
1712   auto **Expansions = D->getTrailingObjects<NamedDecl *>();
1713   for (unsigned I = 0; I != D->NumExpansions; ++I)
1714     Expansions[I] = readDeclAs<NamedDecl>();
1715   mergeMergeable(D);
1716 }
1717 
1718 void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
1719   RedeclarableResult Redecl = VisitRedeclarable(D);
1720   VisitNamedDecl(D);
1721   D->Underlying = readDeclAs<NamedDecl>();
1722   D->IdentifierNamespace = Record.readInt();
1723   D->UsingOrNextShadow = readDeclAs<NamedDecl>();
1724   auto *Pattern = readDeclAs<UsingShadowDecl>();
1725   if (Pattern)
1726     Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
1727   mergeRedeclarable(D, Redecl);
1728 }
1729 
1730 void ASTDeclReader::VisitConstructorUsingShadowDecl(
1731     ConstructorUsingShadowDecl *D) {
1732   VisitUsingShadowDecl(D);
1733   D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>();
1734   D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>();
1735   D->IsVirtual = Record.readInt();
1736 }
1737 
1738 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1739   VisitNamedDecl(D);
1740   D->UsingLoc = readSourceLocation();
1741   D->NamespaceLoc = readSourceLocation();
1742   D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1743   D->NominatedNamespace = readDeclAs<NamedDecl>();
1744   D->CommonAncestor = readDeclAs<DeclContext>();
1745 }
1746 
1747 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1748   VisitValueDecl(D);
1749   D->setUsingLoc(readSourceLocation());
1750   D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1751   D->DNLoc = Record.readDeclarationNameLoc(D->getDeclName());
1752   D->EllipsisLoc = readSourceLocation();
1753   mergeMergeable(D);
1754 }
1755 
1756 void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
1757                                                UnresolvedUsingTypenameDecl *D) {
1758   VisitTypeDecl(D);
1759   D->TypenameLocation = readSourceLocation();
1760   D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1761   D->EllipsisLoc = readSourceLocation();
1762   mergeMergeable(D);
1763 }
1764 
1765 void ASTDeclReader::VisitUnresolvedUsingIfExistsDecl(
1766     UnresolvedUsingIfExistsDecl *D) {
1767   VisitNamedDecl(D);
1768 }
1769 
1770 void ASTDeclReader::ReadCXXDefinitionData(
1771     struct CXXRecordDecl::DefinitionData &Data, const CXXRecordDecl *D) {
1772   #define FIELD(Name, Width, Merge) \
1773   Data.Name = Record.readInt();
1774   #include "clang/AST/CXXRecordDeclDefinitionBits.def"
1775 
1776   // Note: the caller has deserialized the IsLambda bit already.
1777   Data.ODRHash = Record.readInt();
1778   Data.HasODRHash = true;
1779 
1780   if (Record.readInt()) {
1781     Reader.DefinitionSource[D] =
1782         Loc.F->Kind == ModuleKind::MK_MainFile ||
1783         Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
1784   }
1785 
1786   Data.NumBases = Record.readInt();
1787   if (Data.NumBases)
1788     Data.Bases = ReadGlobalOffset();
1789   Data.NumVBases = Record.readInt();
1790   if (Data.NumVBases)
1791     Data.VBases = ReadGlobalOffset();
1792 
1793   Record.readUnresolvedSet(Data.Conversions);
1794   Data.ComputedVisibleConversions = Record.readInt();
1795   if (Data.ComputedVisibleConversions)
1796     Record.readUnresolvedSet(Data.VisibleConversions);
1797   assert(Data.Definition && "Data.Definition should be already set!");
1798   Data.FirstFriend = readDeclID();
1799 
1800   if (Data.IsLambda) {
1801     using Capture = LambdaCapture;
1802 
1803     auto &Lambda = static_cast<CXXRecordDecl::LambdaDefinitionData &>(Data);
1804     Lambda.Dependent = Record.readInt();
1805     Lambda.IsGenericLambda = Record.readInt();
1806     Lambda.CaptureDefault = Record.readInt();
1807     Lambda.NumCaptures = Record.readInt();
1808     Lambda.NumExplicitCaptures = Record.readInt();
1809     Lambda.HasKnownInternalLinkage = Record.readInt();
1810     Lambda.ManglingNumber = Record.readInt();
1811     D->setDeviceLambdaManglingNumber(Record.readInt());
1812     Lambda.ContextDecl = readDeclID();
1813     Lambda.Captures = (Capture *)Reader.getContext().Allocate(
1814         sizeof(Capture) * Lambda.NumCaptures);
1815     Capture *ToCapture = Lambda.Captures;
1816     Lambda.MethodTyInfo = readTypeSourceInfo();
1817     for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {
1818       SourceLocation Loc = readSourceLocation();
1819       bool IsImplicit = Record.readInt();
1820       auto Kind = static_cast<LambdaCaptureKind>(Record.readInt());
1821       switch (Kind) {
1822       case LCK_StarThis:
1823       case LCK_This:
1824       case LCK_VLAType:
1825         *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation());
1826         break;
1827       case LCK_ByCopy:
1828       case LCK_ByRef:
1829         auto *Var = readDeclAs<VarDecl>();
1830         SourceLocation EllipsisLoc = readSourceLocation();
1831         *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
1832         break;
1833       }
1834     }
1835   }
1836 }
1837 
1838 void ASTDeclReader::MergeDefinitionData(
1839     CXXRecordDecl *D, struct CXXRecordDecl::DefinitionData &&MergeDD) {
1840   assert(D->DefinitionData &&
1841          "merging class definition into non-definition");
1842   auto &DD = *D->DefinitionData;
1843 
1844   if (DD.Definition != MergeDD.Definition) {
1845     // Track that we merged the definitions.
1846     Reader.MergedDeclContexts.insert(std::make_pair(MergeDD.Definition,
1847                                                     DD.Definition));
1848     Reader.PendingDefinitions.erase(MergeDD.Definition);
1849     MergeDD.Definition->setCompleteDefinition(false);
1850     Reader.mergeDefinitionVisibility(DD.Definition, MergeDD.Definition);
1851     assert(Reader.Lookups.find(MergeDD.Definition) == Reader.Lookups.end() &&
1852            "already loaded pending lookups for merged definition");
1853   }
1854 
1855   auto PFDI = Reader.PendingFakeDefinitionData.find(&DD);
1856   if (PFDI != Reader.PendingFakeDefinitionData.end() &&
1857       PFDI->second == ASTReader::PendingFakeDefinitionKind::Fake) {
1858     // We faked up this definition data because we found a class for which we'd
1859     // not yet loaded the definition. Replace it with the real thing now.
1860     assert(!DD.IsLambda && !MergeDD.IsLambda && "faked up lambda definition?");
1861     PFDI->second = ASTReader::PendingFakeDefinitionKind::FakeLoaded;
1862 
1863     // Don't change which declaration is the definition; that is required
1864     // to be invariant once we select it.
1865     auto *Def = DD.Definition;
1866     DD = std::move(MergeDD);
1867     DD.Definition = Def;
1868     return;
1869   }
1870 
1871   bool DetectedOdrViolation = false;
1872 
1873   #define FIELD(Name, Width, Merge) Merge(Name)
1874   #define MERGE_OR(Field) DD.Field |= MergeDD.Field;
1875   #define NO_MERGE(Field) \
1876     DetectedOdrViolation |= DD.Field != MergeDD.Field; \
1877     MERGE_OR(Field)
1878   #include "clang/AST/CXXRecordDeclDefinitionBits.def"
1879   NO_MERGE(IsLambda)
1880   #undef NO_MERGE
1881   #undef MERGE_OR
1882 
1883   if (DD.NumBases != MergeDD.NumBases || DD.NumVBases != MergeDD.NumVBases)
1884     DetectedOdrViolation = true;
1885   // FIXME: Issue a diagnostic if the base classes don't match when we come
1886   // to lazily load them.
1887 
1888   // FIXME: Issue a diagnostic if the list of conversion functions doesn't
1889   // match when we come to lazily load them.
1890   if (MergeDD.ComputedVisibleConversions && !DD.ComputedVisibleConversions) {
1891     DD.VisibleConversions = std::move(MergeDD.VisibleConversions);
1892     DD.ComputedVisibleConversions = true;
1893   }
1894 
1895   // FIXME: Issue a diagnostic if FirstFriend doesn't match when we come to
1896   // lazily load it.
1897 
1898   if (DD.IsLambda) {
1899     // FIXME: ODR-checking for merging lambdas (this happens, for instance,
1900     // when they occur within the body of a function template specialization).
1901   }
1902 
1903   if (D->getODRHash() != MergeDD.ODRHash) {
1904     DetectedOdrViolation = true;
1905   }
1906 
1907   if (DetectedOdrViolation)
1908     Reader.PendingOdrMergeFailures[DD.Definition].push_back(
1909         {MergeDD.Definition, &MergeDD});
1910 }
1911 
1912 void ASTDeclReader::ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update) {
1913   struct CXXRecordDecl::DefinitionData *DD;
1914   ASTContext &C = Reader.getContext();
1915 
1916   // Determine whether this is a lambda closure type, so that we can
1917   // allocate the appropriate DefinitionData structure.
1918   bool IsLambda = Record.readInt();
1919   if (IsLambda)
1920     DD = new (C) CXXRecordDecl::LambdaDefinitionData(D, nullptr, false, false,
1921                                                      LCD_None);
1922   else
1923     DD = new (C) struct CXXRecordDecl::DefinitionData(D);
1924 
1925   CXXRecordDecl *Canon = D->getCanonicalDecl();
1926   // Set decl definition data before reading it, so that during deserialization
1927   // when we read CXXRecordDecl, it already has definition data and we don't
1928   // set fake one.
1929   if (!Canon->DefinitionData)
1930     Canon->DefinitionData = DD;
1931   D->DefinitionData = Canon->DefinitionData;
1932   ReadCXXDefinitionData(*DD, D);
1933 
1934   // We might already have a different definition for this record. This can
1935   // happen either because we're reading an update record, or because we've
1936   // already done some merging. Either way, just merge into it.
1937   if (Canon->DefinitionData != DD) {
1938     MergeDefinitionData(Canon, std::move(*DD));
1939     return;
1940   }
1941 
1942   // Mark this declaration as being a definition.
1943   D->setCompleteDefinition(true);
1944 
1945   // If this is not the first declaration or is an update record, we can have
1946   // other redeclarations already. Make a note that we need to propagate the
1947   // DefinitionData pointer onto them.
1948   if (Update || Canon != D)
1949     Reader.PendingDefinitions.insert(D);
1950 }
1951 
1952 ASTDeclReader::RedeclarableResult
1953 ASTDeclReader::VisitCXXRecordDeclImpl(CXXRecordDecl *D) {
1954   RedeclarableResult Redecl = VisitRecordDeclImpl(D);
1955 
1956   ASTContext &C = Reader.getContext();
1957 
1958   enum CXXRecKind {
1959     CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1960   };
1961   switch ((CXXRecKind)Record.readInt()) {
1962   case CXXRecNotTemplate:
1963     // Merged when we merge the folding set entry in the primary template.
1964     if (!isa<ClassTemplateSpecializationDecl>(D))
1965       mergeRedeclarable(D, Redecl);
1966     break;
1967   case CXXRecTemplate: {
1968     // Merged when we merge the template.
1969     auto *Template = readDeclAs<ClassTemplateDecl>();
1970     D->TemplateOrInstantiation = Template;
1971     if (!Template->getTemplatedDecl()) {
1972       // We've not actually loaded the ClassTemplateDecl yet, because we're
1973       // currently being loaded as its pattern. Rely on it to set up our
1974       // TypeForDecl (see VisitClassTemplateDecl).
1975       //
1976       // Beware: we do not yet know our canonical declaration, and may still
1977       // get merged once the surrounding class template has got off the ground.
1978       DeferredTypeID = 0;
1979     }
1980     break;
1981   }
1982   case CXXRecMemberSpecialization: {
1983     auto *RD = readDeclAs<CXXRecordDecl>();
1984     auto TSK = (TemplateSpecializationKind)Record.readInt();
1985     SourceLocation POI = readSourceLocation();
1986     MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1987     MSI->setPointOfInstantiation(POI);
1988     D->TemplateOrInstantiation = MSI;
1989     mergeRedeclarable(D, Redecl);
1990     break;
1991   }
1992   }
1993 
1994   bool WasDefinition = Record.readInt();
1995   if (WasDefinition)
1996     ReadCXXRecordDefinition(D, /*Update*/false);
1997   else
1998     // Propagate DefinitionData pointer from the canonical declaration.
1999     D->DefinitionData = D->getCanonicalDecl()->DefinitionData;
2000 
2001   // Lazily load the key function to avoid deserializing every method so we can
2002   // compute it.
2003   if (WasDefinition) {
2004     DeclID KeyFn = readDeclID();
2005     if (KeyFn && D->isCompleteDefinition())
2006       // FIXME: This is wrong for the ARM ABI, where some other module may have
2007       // made this function no longer be a key function. We need an update
2008       // record or similar for that case.
2009       C.KeyFunctions[D] = KeyFn;
2010   }
2011 
2012   return Redecl;
2013 }
2014 
2015 void ASTDeclReader::VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *D) {
2016   D->setExplicitSpecifier(Record.readExplicitSpec());
2017   D->Ctor = readDeclAs<CXXConstructorDecl>();
2018   VisitFunctionDecl(D);
2019   D->setIsCopyDeductionCandidate(Record.readInt());
2020 }
2021 
2022 void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
2023   VisitFunctionDecl(D);
2024 
2025   unsigned NumOverridenMethods = Record.readInt();
2026   if (D->isCanonicalDecl()) {
2027     while (NumOverridenMethods--) {
2028       // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
2029       // MD may be initializing.
2030       if (auto *MD = readDeclAs<CXXMethodDecl>())
2031         Reader.getContext().addOverriddenMethod(D, MD->getCanonicalDecl());
2032     }
2033   } else {
2034     // We don't care about which declarations this used to override; we get
2035     // the relevant information from the canonical declaration.
2036     Record.skipInts(NumOverridenMethods);
2037   }
2038 }
2039 
2040 void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
2041   // We need the inherited constructor information to merge the declaration,
2042   // so we have to read it before we call VisitCXXMethodDecl.
2043   D->setExplicitSpecifier(Record.readExplicitSpec());
2044   if (D->isInheritingConstructor()) {
2045     auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>();
2046     auto *Ctor = readDeclAs<CXXConstructorDecl>();
2047     *D->getTrailingObjects<InheritedConstructor>() =
2048         InheritedConstructor(Shadow, Ctor);
2049   }
2050 
2051   VisitCXXMethodDecl(D);
2052 }
2053 
2054 void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
2055   VisitCXXMethodDecl(D);
2056 
2057   if (auto *OperatorDelete = readDeclAs<FunctionDecl>()) {
2058     CXXDestructorDecl *Canon = D->getCanonicalDecl();
2059     auto *ThisArg = Record.readExpr();
2060     // FIXME: Check consistency if we have an old and new operator delete.
2061     if (!Canon->OperatorDelete) {
2062       Canon->OperatorDelete = OperatorDelete;
2063       Canon->OperatorDeleteThisArg = ThisArg;
2064     }
2065   }
2066 }
2067 
2068 void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
2069   D->setExplicitSpecifier(Record.readExplicitSpec());
2070   VisitCXXMethodDecl(D);
2071 }
2072 
2073 void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
2074   VisitDecl(D);
2075   D->ImportedModule = readModule();
2076   D->setImportComplete(Record.readInt());
2077   auto *StoredLocs = D->getTrailingObjects<SourceLocation>();
2078   for (unsigned I = 0, N = Record.back(); I != N; ++I)
2079     StoredLocs[I] = readSourceLocation();
2080   Record.skipInts(1); // The number of stored source locations.
2081 }
2082 
2083 void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
2084   VisitDecl(D);
2085   D->setColonLoc(readSourceLocation());
2086 }
2087 
2088 void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
2089   VisitDecl(D);
2090   if (Record.readInt()) // hasFriendDecl
2091     D->Friend = readDeclAs<NamedDecl>();
2092   else
2093     D->Friend = readTypeSourceInfo();
2094   for (unsigned i = 0; i != D->NumTPLists; ++i)
2095     D->getTrailingObjects<TemplateParameterList *>()[i] =
2096         Record.readTemplateParameterList();
2097   D->NextFriend = readDeclID();
2098   D->UnsupportedFriend = (Record.readInt() != 0);
2099   D->FriendLoc = readSourceLocation();
2100 }
2101 
2102 void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
2103   VisitDecl(D);
2104   unsigned NumParams = Record.readInt();
2105   D->NumParams = NumParams;
2106   D->Params = new TemplateParameterList*[NumParams];
2107   for (unsigned i = 0; i != NumParams; ++i)
2108     D->Params[i] = Record.readTemplateParameterList();
2109   if (Record.readInt()) // HasFriendDecl
2110     D->Friend = readDeclAs<NamedDecl>();
2111   else
2112     D->Friend = readTypeSourceInfo();
2113   D->FriendLoc = readSourceLocation();
2114 }
2115 
2116 DeclID ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
2117   VisitNamedDecl(D);
2118 
2119   DeclID PatternID = readDeclID();
2120   auto *TemplatedDecl = cast_or_null<NamedDecl>(Reader.GetDecl(PatternID));
2121   TemplateParameterList *TemplateParams = Record.readTemplateParameterList();
2122   D->init(TemplatedDecl, TemplateParams);
2123 
2124   return PatternID;
2125 }
2126 
2127 void ASTDeclReader::VisitConceptDecl(ConceptDecl *D) {
2128   VisitTemplateDecl(D);
2129   D->ConstraintExpr = Record.readExpr();
2130   mergeMergeable(D);
2131 }
2132 
2133 void ASTDeclReader::VisitRequiresExprBodyDecl(RequiresExprBodyDecl *D) {
2134 }
2135 
2136 ASTDeclReader::RedeclarableResult
2137 ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
2138   RedeclarableResult Redecl = VisitRedeclarable(D);
2139 
2140   // Make sure we've allocated the Common pointer first. We do this before
2141   // VisitTemplateDecl so that getCommonPtr() can be used during initialization.
2142   RedeclarableTemplateDecl *CanonD = D->getCanonicalDecl();
2143   if (!CanonD->Common) {
2144     CanonD->Common = CanonD->newCommon(Reader.getContext());
2145     Reader.PendingDefinitions.insert(CanonD);
2146   }
2147   D->Common = CanonD->Common;
2148 
2149   // If this is the first declaration of the template, fill in the information
2150   // for the 'common' pointer.
2151   if (ThisDeclID == Redecl.getFirstID()) {
2152     if (auto *RTD = readDeclAs<RedeclarableTemplateDecl>()) {
2153       assert(RTD->getKind() == D->getKind() &&
2154              "InstantiatedFromMemberTemplate kind mismatch");
2155       D->setInstantiatedFromMemberTemplate(RTD);
2156       if (Record.readInt())
2157         D->setMemberSpecialization();
2158     }
2159   }
2160 
2161   DeclID PatternID = VisitTemplateDecl(D);
2162   D->IdentifierNamespace = Record.readInt();
2163 
2164   mergeRedeclarable(D, Redecl, PatternID);
2165 
2166   // If we merged the template with a prior declaration chain, merge the common
2167   // pointer.
2168   // FIXME: Actually merge here, don't just overwrite.
2169   D->Common = D->getCanonicalDecl()->Common;
2170 
2171   return Redecl;
2172 }
2173 
2174 void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
2175   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2176 
2177   if (ThisDeclID == Redecl.getFirstID()) {
2178     // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
2179     // the specializations.
2180     SmallVector<serialization::DeclID, 32> SpecIDs;
2181     readDeclIDList(SpecIDs);
2182     ASTDeclReader::AddLazySpecializations(D, SpecIDs);
2183   }
2184 
2185   if (D->getTemplatedDecl()->TemplateOrInstantiation) {
2186     // We were loaded before our templated declaration was. We've not set up
2187     // its corresponding type yet (see VisitCXXRecordDeclImpl), so reconstruct
2188     // it now.
2189     Reader.getContext().getInjectedClassNameType(
2190         D->getTemplatedDecl(), D->getInjectedClassNameSpecialization());
2191   }
2192 }
2193 
2194 void ASTDeclReader::VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D) {
2195   llvm_unreachable("BuiltinTemplates are not serialized");
2196 }
2197 
2198 /// TODO: Unify with ClassTemplateDecl version?
2199 ///       May require unifying ClassTemplateDecl and
2200 ///        VarTemplateDecl beyond TemplateDecl...
2201 void ASTDeclReader::VisitVarTemplateDecl(VarTemplateDecl *D) {
2202   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2203 
2204   if (ThisDeclID == Redecl.getFirstID()) {
2205     // This VarTemplateDecl owns a CommonPtr; read it to keep track of all of
2206     // the specializations.
2207     SmallVector<serialization::DeclID, 32> SpecIDs;
2208     readDeclIDList(SpecIDs);
2209     ASTDeclReader::AddLazySpecializations(D, SpecIDs);
2210   }
2211 }
2212 
2213 ASTDeclReader::RedeclarableResult
2214 ASTDeclReader::VisitClassTemplateSpecializationDeclImpl(
2215     ClassTemplateSpecializationDecl *D) {
2216   RedeclarableResult Redecl = VisitCXXRecordDeclImpl(D);
2217 
2218   ASTContext &C = Reader.getContext();
2219   if (Decl *InstD = readDecl()) {
2220     if (auto *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
2221       D->SpecializedTemplate = CTD;
2222     } else {
2223       SmallVector<TemplateArgument, 8> TemplArgs;
2224       Record.readTemplateArgumentList(TemplArgs);
2225       TemplateArgumentList *ArgList
2226         = TemplateArgumentList::CreateCopy(C, TemplArgs);
2227       auto *PS =
2228           new (C) ClassTemplateSpecializationDecl::
2229                                              SpecializedPartialSpecialization();
2230       PS->PartialSpecialization
2231           = cast<ClassTemplatePartialSpecializationDecl>(InstD);
2232       PS->TemplateArgs = ArgList;
2233       D->SpecializedTemplate = PS;
2234     }
2235   }
2236 
2237   SmallVector<TemplateArgument, 8> TemplArgs;
2238   Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
2239   D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs);
2240   D->PointOfInstantiation = readSourceLocation();
2241   D->SpecializationKind = (TemplateSpecializationKind)Record.readInt();
2242 
2243   bool writtenAsCanonicalDecl = Record.readInt();
2244   if (writtenAsCanonicalDecl) {
2245     auto *CanonPattern = readDeclAs<ClassTemplateDecl>();
2246     if (D->isCanonicalDecl()) { // It's kept in the folding set.
2247       // Set this as, or find, the canonical declaration for this specialization
2248       ClassTemplateSpecializationDecl *CanonSpec;
2249       if (auto *Partial = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
2250         CanonSpec = CanonPattern->getCommonPtr()->PartialSpecializations
2251             .GetOrInsertNode(Partial);
2252       } else {
2253         CanonSpec =
2254             CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
2255       }
2256       // If there was already a canonical specialization, merge into it.
2257       if (CanonSpec != D) {
2258         mergeRedeclarable<TagDecl>(D, CanonSpec, Redecl);
2259 
2260         // This declaration might be a definition. Merge with any existing
2261         // definition.
2262         if (auto *DDD = D->DefinitionData) {
2263           if (CanonSpec->DefinitionData)
2264             MergeDefinitionData(CanonSpec, std::move(*DDD));
2265           else
2266             CanonSpec->DefinitionData = D->DefinitionData;
2267         }
2268         D->DefinitionData = CanonSpec->DefinitionData;
2269       }
2270     }
2271   }
2272 
2273   // Explicit info.
2274   if (TypeSourceInfo *TyInfo = readTypeSourceInfo()) {
2275     auto *ExplicitInfo =
2276         new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
2277     ExplicitInfo->TypeAsWritten = TyInfo;
2278     ExplicitInfo->ExternLoc = readSourceLocation();
2279     ExplicitInfo->TemplateKeywordLoc = readSourceLocation();
2280     D->ExplicitInfo = ExplicitInfo;
2281   }
2282 
2283   return Redecl;
2284 }
2285 
2286 void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
2287                                     ClassTemplatePartialSpecializationDecl *D) {
2288   // We need to read the template params first because redeclarable is going to
2289   // need them for profiling
2290   TemplateParameterList *Params = Record.readTemplateParameterList();
2291   D->TemplateParams = Params;
2292   D->ArgsAsWritten = Record.readASTTemplateArgumentListInfo();
2293 
2294   RedeclarableResult Redecl = VisitClassTemplateSpecializationDeclImpl(D);
2295 
2296   // These are read/set from/to the first declaration.
2297   if (ThisDeclID == Redecl.getFirstID()) {
2298     D->InstantiatedFromMember.setPointer(
2299       readDeclAs<ClassTemplatePartialSpecializationDecl>());
2300     D->InstantiatedFromMember.setInt(Record.readInt());
2301   }
2302 }
2303 
2304 void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
2305                                     ClassScopeFunctionSpecializationDecl *D) {
2306   VisitDecl(D);
2307   D->Specialization = readDeclAs<CXXMethodDecl>();
2308   if (Record.readInt())
2309     D->TemplateArgs = Record.readASTTemplateArgumentListInfo();
2310 }
2311 
2312 void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
2313   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2314 
2315   if (ThisDeclID == Redecl.getFirstID()) {
2316     // This FunctionTemplateDecl owns a CommonPtr; read it.
2317     SmallVector<serialization::DeclID, 32> SpecIDs;
2318     readDeclIDList(SpecIDs);
2319     ASTDeclReader::AddLazySpecializations(D, SpecIDs);
2320   }
2321 }
2322 
2323 /// TODO: Unify with ClassTemplateSpecializationDecl version?
2324 ///       May require unifying ClassTemplate(Partial)SpecializationDecl and
2325 ///        VarTemplate(Partial)SpecializationDecl with a new data
2326 ///        structure Template(Partial)SpecializationDecl, and
2327 ///        using Template(Partial)SpecializationDecl as input type.
2328 ASTDeclReader::RedeclarableResult
2329 ASTDeclReader::VisitVarTemplateSpecializationDeclImpl(
2330     VarTemplateSpecializationDecl *D) {
2331   RedeclarableResult Redecl = VisitVarDeclImpl(D);
2332 
2333   ASTContext &C = Reader.getContext();
2334   if (Decl *InstD = readDecl()) {
2335     if (auto *VTD = dyn_cast<VarTemplateDecl>(InstD)) {
2336       D->SpecializedTemplate = VTD;
2337     } else {
2338       SmallVector<TemplateArgument, 8> TemplArgs;
2339       Record.readTemplateArgumentList(TemplArgs);
2340       TemplateArgumentList *ArgList = TemplateArgumentList::CreateCopy(
2341           C, TemplArgs);
2342       auto *PS =
2343           new (C)
2344           VarTemplateSpecializationDecl::SpecializedPartialSpecialization();
2345       PS->PartialSpecialization =
2346           cast<VarTemplatePartialSpecializationDecl>(InstD);
2347       PS->TemplateArgs = ArgList;
2348       D->SpecializedTemplate = PS;
2349     }
2350   }
2351 
2352   // Explicit info.
2353   if (TypeSourceInfo *TyInfo = readTypeSourceInfo()) {
2354     auto *ExplicitInfo =
2355         new (C) VarTemplateSpecializationDecl::ExplicitSpecializationInfo;
2356     ExplicitInfo->TypeAsWritten = TyInfo;
2357     ExplicitInfo->ExternLoc = readSourceLocation();
2358     ExplicitInfo->TemplateKeywordLoc = readSourceLocation();
2359     D->ExplicitInfo = ExplicitInfo;
2360   }
2361 
2362   SmallVector<TemplateArgument, 8> TemplArgs;
2363   Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
2364   D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs);
2365   D->PointOfInstantiation = readSourceLocation();
2366   D->SpecializationKind = (TemplateSpecializationKind)Record.readInt();
2367   D->IsCompleteDefinition = Record.readInt();
2368 
2369   bool writtenAsCanonicalDecl = Record.readInt();
2370   if (writtenAsCanonicalDecl) {
2371     auto *CanonPattern = readDeclAs<VarTemplateDecl>();
2372     if (D->isCanonicalDecl()) { // It's kept in the folding set.
2373       // FIXME: If it's already present, merge it.
2374       if (auto *Partial = dyn_cast<VarTemplatePartialSpecializationDecl>(D)) {
2375         CanonPattern->getCommonPtr()->PartialSpecializations
2376             .GetOrInsertNode(Partial);
2377       } else {
2378         CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
2379       }
2380     }
2381   }
2382 
2383   return Redecl;
2384 }
2385 
2386 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2387 ///       May require unifying ClassTemplate(Partial)SpecializationDecl and
2388 ///        VarTemplate(Partial)SpecializationDecl with a new data
2389 ///        structure Template(Partial)SpecializationDecl, and
2390 ///        using Template(Partial)SpecializationDecl as input type.
2391 void ASTDeclReader::VisitVarTemplatePartialSpecializationDecl(
2392     VarTemplatePartialSpecializationDecl *D) {
2393   TemplateParameterList *Params = Record.readTemplateParameterList();
2394   D->TemplateParams = Params;
2395   D->ArgsAsWritten = Record.readASTTemplateArgumentListInfo();
2396 
2397   RedeclarableResult Redecl = VisitVarTemplateSpecializationDeclImpl(D);
2398 
2399   // These are read/set from/to the first declaration.
2400   if (ThisDeclID == Redecl.getFirstID()) {
2401     D->InstantiatedFromMember.setPointer(
2402         readDeclAs<VarTemplatePartialSpecializationDecl>());
2403     D->InstantiatedFromMember.setInt(Record.readInt());
2404   }
2405 }
2406 
2407 void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
2408   VisitTypeDecl(D);
2409 
2410   D->setDeclaredWithTypename(Record.readInt());
2411 
2412   if (Record.readBool()) {
2413     NestedNameSpecifierLoc NNS = Record.readNestedNameSpecifierLoc();
2414     DeclarationNameInfo DN = Record.readDeclarationNameInfo();
2415     ConceptDecl *NamedConcept = Record.readDeclAs<ConceptDecl>();
2416     const ASTTemplateArgumentListInfo *ArgsAsWritten = nullptr;
2417     if (Record.readBool())
2418         ArgsAsWritten = Record.readASTTemplateArgumentListInfo();
2419     Expr *ImmediatelyDeclaredConstraint = Record.readExpr();
2420     D->setTypeConstraint(NNS, DN, /*FoundDecl=*/nullptr, NamedConcept,
2421                          ArgsAsWritten, ImmediatelyDeclaredConstraint);
2422     if ((D->ExpandedParameterPack = Record.readInt()))
2423       D->NumExpanded = Record.readInt();
2424   }
2425 
2426   if (Record.readInt())
2427     D->setDefaultArgument(readTypeSourceInfo());
2428 }
2429 
2430 void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
2431   VisitDeclaratorDecl(D);
2432   // TemplateParmPosition.
2433   D->setDepth(Record.readInt());
2434   D->setPosition(Record.readInt());
2435   if (D->hasPlaceholderTypeConstraint())
2436     D->setPlaceholderTypeConstraint(Record.readExpr());
2437   if (D->isExpandedParameterPack()) {
2438     auto TypesAndInfos =
2439         D->getTrailingObjects<std::pair<QualType, TypeSourceInfo *>>();
2440     for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
2441       new (&TypesAndInfos[I].first) QualType(Record.readType());
2442       TypesAndInfos[I].second = readTypeSourceInfo();
2443     }
2444   } else {
2445     // Rest of NonTypeTemplateParmDecl.
2446     D->ParameterPack = Record.readInt();
2447     if (Record.readInt())
2448       D->setDefaultArgument(Record.readExpr());
2449   }
2450 }
2451 
2452 void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
2453   VisitTemplateDecl(D);
2454   // TemplateParmPosition.
2455   D->setDepth(Record.readInt());
2456   D->setPosition(Record.readInt());
2457   if (D->isExpandedParameterPack()) {
2458     auto **Data = D->getTrailingObjects<TemplateParameterList *>();
2459     for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2460          I != N; ++I)
2461       Data[I] = Record.readTemplateParameterList();
2462   } else {
2463     // Rest of TemplateTemplateParmDecl.
2464     D->ParameterPack = Record.readInt();
2465     if (Record.readInt())
2466       D->setDefaultArgument(Reader.getContext(),
2467                             Record.readTemplateArgumentLoc());
2468   }
2469 }
2470 
2471 void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
2472   VisitRedeclarableTemplateDecl(D);
2473 }
2474 
2475 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
2476   VisitDecl(D);
2477   D->AssertExprAndFailed.setPointer(Record.readExpr());
2478   D->AssertExprAndFailed.setInt(Record.readInt());
2479   D->Message = cast_or_null<StringLiteral>(Record.readExpr());
2480   D->RParenLoc = readSourceLocation();
2481 }
2482 
2483 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) {
2484   VisitDecl(D);
2485 }
2486 
2487 void ASTDeclReader::VisitLifetimeExtendedTemporaryDecl(
2488     LifetimeExtendedTemporaryDecl *D) {
2489   VisitDecl(D);
2490   D->ExtendingDecl = readDeclAs<ValueDecl>();
2491   D->ExprWithTemporary = Record.readStmt();
2492   if (Record.readInt()) {
2493     D->Value = new (D->getASTContext()) APValue(Record.readAPValue());
2494     D->getASTContext().addDestruction(D->Value);
2495   }
2496   D->ManglingNumber = Record.readInt();
2497   mergeMergeable(D);
2498 }
2499 
2500 std::pair<uint64_t, uint64_t>
2501 ASTDeclReader::VisitDeclContext(DeclContext *DC) {
2502   uint64_t LexicalOffset = ReadLocalOffset();
2503   uint64_t VisibleOffset = ReadLocalOffset();
2504   return std::make_pair(LexicalOffset, VisibleOffset);
2505 }
2506 
2507 template <typename T>
2508 ASTDeclReader::RedeclarableResult
2509 ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
2510   DeclID FirstDeclID = readDeclID();
2511   Decl *MergeWith = nullptr;
2512 
2513   bool IsKeyDecl = ThisDeclID == FirstDeclID;
2514   bool IsFirstLocalDecl = false;
2515 
2516   uint64_t RedeclOffset = 0;
2517 
2518   // 0 indicates that this declaration was the only declaration of its entity,
2519   // and is used for space optimization.
2520   if (FirstDeclID == 0) {
2521     FirstDeclID = ThisDeclID;
2522     IsKeyDecl = true;
2523     IsFirstLocalDecl = true;
2524   } else if (unsigned N = Record.readInt()) {
2525     // This declaration was the first local declaration, but may have imported
2526     // other declarations.
2527     IsKeyDecl = N == 1;
2528     IsFirstLocalDecl = true;
2529 
2530     // We have some declarations that must be before us in our redeclaration
2531     // chain. Read them now, and remember that we ought to merge with one of
2532     // them.
2533     // FIXME: Provide a known merge target to the second and subsequent such
2534     // declaration.
2535     for (unsigned I = 0; I != N - 1; ++I)
2536       MergeWith = readDecl();
2537 
2538     RedeclOffset = ReadLocalOffset();
2539   } else {
2540     // This declaration was not the first local declaration. Read the first
2541     // local declaration now, to trigger the import of other redeclarations.
2542     (void)readDecl();
2543   }
2544 
2545   auto *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
2546   if (FirstDecl != D) {
2547     // We delay loading of the redeclaration chain to avoid deeply nested calls.
2548     // We temporarily set the first (canonical) declaration as the previous one
2549     // which is the one that matters and mark the real previous DeclID to be
2550     // loaded & attached later on.
2551     D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl);
2552     D->First = FirstDecl->getCanonicalDecl();
2553   }
2554 
2555   auto *DAsT = static_cast<T *>(D);
2556 
2557   // Note that we need to load local redeclarations of this decl and build a
2558   // decl chain for them. This must happen *after* we perform the preloading
2559   // above; this ensures that the redeclaration chain is built in the correct
2560   // order.
2561   if (IsFirstLocalDecl)
2562     Reader.PendingDeclChains.push_back(std::make_pair(DAsT, RedeclOffset));
2563 
2564   return RedeclarableResult(MergeWith, FirstDeclID, IsKeyDecl);
2565 }
2566 
2567 /// Attempts to merge the given declaration (D) with another declaration
2568 /// of the same entity.
2569 template<typename T>
2570 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase,
2571                                       RedeclarableResult &Redecl,
2572                                       DeclID TemplatePatternID) {
2573   // If modules are not available, there is no reason to perform this merge.
2574   if (!Reader.getContext().getLangOpts().Modules)
2575     return;
2576 
2577   // If we're not the canonical declaration, we don't need to merge.
2578   if (!DBase->isFirstDecl())
2579     return;
2580 
2581   auto *D = static_cast<T *>(DBase);
2582 
2583   if (auto *Existing = Redecl.getKnownMergeTarget())
2584     // We already know of an existing declaration we should merge with.
2585     mergeRedeclarable(D, cast<T>(Existing), Redecl, TemplatePatternID);
2586   else if (FindExistingResult ExistingRes = findExisting(D))
2587     if (T *Existing = ExistingRes)
2588       mergeRedeclarable(D, Existing, Redecl, TemplatePatternID);
2589 }
2590 
2591 /// "Cast" to type T, asserting if we don't have an implicit conversion.
2592 /// We use this to put code in a template that will only be valid for certain
2593 /// instantiations.
2594 template<typename T> static T assert_cast(T t) { return t; }
2595 template<typename T> static T assert_cast(...) {
2596   llvm_unreachable("bad assert_cast");
2597 }
2598 
2599 /// Merge together the pattern declarations from two template
2600 /// declarations.
2601 void ASTDeclReader::mergeTemplatePattern(RedeclarableTemplateDecl *D,
2602                                          RedeclarableTemplateDecl *Existing,
2603                                          DeclID DsID, bool IsKeyDecl) {
2604   auto *DPattern = D->getTemplatedDecl();
2605   auto *ExistingPattern = Existing->getTemplatedDecl();
2606   RedeclarableResult Result(/*MergeWith*/ ExistingPattern,
2607                             DPattern->getCanonicalDecl()->getGlobalID(),
2608                             IsKeyDecl);
2609 
2610   if (auto *DClass = dyn_cast<CXXRecordDecl>(DPattern)) {
2611     // Merge with any existing definition.
2612     // FIXME: This is duplicated in several places. Refactor.
2613     auto *ExistingClass =
2614         cast<CXXRecordDecl>(ExistingPattern)->getCanonicalDecl();
2615     if (auto *DDD = DClass->DefinitionData) {
2616       if (ExistingClass->DefinitionData) {
2617         MergeDefinitionData(ExistingClass, std::move(*DDD));
2618       } else {
2619         ExistingClass->DefinitionData = DClass->DefinitionData;
2620         // We may have skipped this before because we thought that DClass
2621         // was the canonical declaration.
2622         Reader.PendingDefinitions.insert(DClass);
2623       }
2624     }
2625     DClass->DefinitionData = ExistingClass->DefinitionData;
2626 
2627     return mergeRedeclarable(DClass, cast<TagDecl>(ExistingPattern),
2628                              Result);
2629   }
2630   if (auto *DFunction = dyn_cast<FunctionDecl>(DPattern))
2631     return mergeRedeclarable(DFunction, cast<FunctionDecl>(ExistingPattern),
2632                              Result);
2633   if (auto *DVar = dyn_cast<VarDecl>(DPattern))
2634     return mergeRedeclarable(DVar, cast<VarDecl>(ExistingPattern), Result);
2635   if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern))
2636     return mergeRedeclarable(DAlias, cast<TypedefNameDecl>(ExistingPattern),
2637                              Result);
2638   llvm_unreachable("merged an unknown kind of redeclarable template");
2639 }
2640 
2641 /// Attempts to merge the given declaration (D) with another declaration
2642 /// of the same entity.
2643 template<typename T>
2644 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase, T *Existing,
2645                                       RedeclarableResult &Redecl,
2646                                       DeclID TemplatePatternID) {
2647   auto *D = static_cast<T *>(DBase);
2648   T *ExistingCanon = Existing->getCanonicalDecl();
2649   T *DCanon = D->getCanonicalDecl();
2650   if (ExistingCanon != DCanon) {
2651     assert(DCanon->getGlobalID() == Redecl.getFirstID() &&
2652            "already merged this declaration");
2653 
2654     // Have our redeclaration link point back at the canonical declaration
2655     // of the existing declaration, so that this declaration has the
2656     // appropriate canonical declaration.
2657     D->RedeclLink = Redeclarable<T>::PreviousDeclLink(ExistingCanon);
2658     D->First = ExistingCanon;
2659     ExistingCanon->Used |= D->Used;
2660     D->Used = false;
2661 
2662     // When we merge a namespace, update its pointer to the first namespace.
2663     // We cannot have loaded any redeclarations of this declaration yet, so
2664     // there's nothing else that needs to be updated.
2665     if (auto *Namespace = dyn_cast<NamespaceDecl>(D))
2666       Namespace->AnonOrFirstNamespaceAndInline.setPointer(
2667           assert_cast<NamespaceDecl*>(ExistingCanon));
2668 
2669     // When we merge a template, merge its pattern.
2670     if (auto *DTemplate = dyn_cast<RedeclarableTemplateDecl>(D))
2671       mergeTemplatePattern(
2672           DTemplate, assert_cast<RedeclarableTemplateDecl*>(ExistingCanon),
2673           TemplatePatternID, Redecl.isKeyDecl());
2674 
2675     // If this declaration is a key declaration, make a note of that.
2676     if (Redecl.isKeyDecl())
2677       Reader.KeyDecls[ExistingCanon].push_back(Redecl.getFirstID());
2678   }
2679 }
2680 
2681 /// ODR-like semantics for C/ObjC allow us to merge tag types and a structural
2682 /// check in Sema guarantees the types can be merged (see C11 6.2.7/1 or C89
2683 /// 6.1.2.6/1). Although most merging is done in Sema, we need to guarantee
2684 /// that some types are mergeable during deserialization, otherwise name
2685 /// lookup fails. This is the case for EnumConstantDecl.
2686 static bool allowODRLikeMergeInC(NamedDecl *ND) {
2687   if (!ND)
2688     return false;
2689   // TODO: implement merge for other necessary decls.
2690   if (isa<EnumConstantDecl, FieldDecl, IndirectFieldDecl>(ND))
2691     return true;
2692   return false;
2693 }
2694 
2695 /// Attempts to merge LifetimeExtendedTemporaryDecl with
2696 /// identical class definitions from two different modules.
2697 void ASTDeclReader::mergeMergeable(LifetimeExtendedTemporaryDecl *D) {
2698   // If modules are not available, there is no reason to perform this merge.
2699   if (!Reader.getContext().getLangOpts().Modules)
2700     return;
2701 
2702   LifetimeExtendedTemporaryDecl *LETDecl = D;
2703 
2704   LifetimeExtendedTemporaryDecl *&LookupResult =
2705       Reader.LETemporaryForMerging[std::make_pair(
2706           LETDecl->getExtendingDecl(), LETDecl->getManglingNumber())];
2707   if (LookupResult)
2708     Reader.getContext().setPrimaryMergedDecl(LETDecl,
2709                                              LookupResult->getCanonicalDecl());
2710   else
2711     LookupResult = LETDecl;
2712 }
2713 
2714 /// Attempts to merge the given declaration (D) with another declaration
2715 /// of the same entity, for the case where the entity is not actually
2716 /// redeclarable. This happens, for instance, when merging the fields of
2717 /// identical class definitions from two different modules.
2718 template<typename T>
2719 void ASTDeclReader::mergeMergeable(Mergeable<T> *D) {
2720   // If modules are not available, there is no reason to perform this merge.
2721   if (!Reader.getContext().getLangOpts().Modules)
2722     return;
2723 
2724   // ODR-based merging is performed in C++ and in some cases (tag types) in C.
2725   // Note that C identically-named things in different translation units are
2726   // not redeclarations, but may still have compatible types, where ODR-like
2727   // semantics may apply.
2728   if (!Reader.getContext().getLangOpts().CPlusPlus &&
2729       !allowODRLikeMergeInC(dyn_cast<NamedDecl>(static_cast<T*>(D))))
2730     return;
2731 
2732   if (FindExistingResult ExistingRes = findExisting(static_cast<T*>(D)))
2733     if (T *Existing = ExistingRes)
2734       Reader.getContext().setPrimaryMergedDecl(static_cast<T *>(D),
2735                                                Existing->getCanonicalDecl());
2736 }
2737 
2738 void ASTDeclReader::VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D) {
2739   Record.readOMPChildren(D->Data);
2740   VisitDecl(D);
2741 }
2742 
2743 void ASTDeclReader::VisitOMPAllocateDecl(OMPAllocateDecl *D) {
2744   Record.readOMPChildren(D->Data);
2745   VisitDecl(D);
2746 }
2747 
2748 void ASTDeclReader::VisitOMPRequiresDecl(OMPRequiresDecl * D) {
2749   Record.readOMPChildren(D->Data);
2750   VisitDecl(D);
2751 }
2752 
2753 void ASTDeclReader::VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D) {
2754   VisitValueDecl(D);
2755   D->setLocation(readSourceLocation());
2756   Expr *In = Record.readExpr();
2757   Expr *Out = Record.readExpr();
2758   D->setCombinerData(In, Out);
2759   Expr *Combiner = Record.readExpr();
2760   D->setCombiner(Combiner);
2761   Expr *Orig = Record.readExpr();
2762   Expr *Priv = Record.readExpr();
2763   D->setInitializerData(Orig, Priv);
2764   Expr *Init = Record.readExpr();
2765   auto IK = static_cast<OMPDeclareReductionDecl::InitKind>(Record.readInt());
2766   D->setInitializer(Init, IK);
2767   D->PrevDeclInScope = readDeclID();
2768 }
2769 
2770 void ASTDeclReader::VisitOMPDeclareMapperDecl(OMPDeclareMapperDecl *D) {
2771   Record.readOMPChildren(D->Data);
2772   VisitValueDecl(D);
2773   D->VarName = Record.readDeclarationName();
2774   D->PrevDeclInScope = readDeclID();
2775 }
2776 
2777 void ASTDeclReader::VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D) {
2778   VisitVarDecl(D);
2779 }
2780 
2781 //===----------------------------------------------------------------------===//
2782 // Attribute Reading
2783 //===----------------------------------------------------------------------===//
2784 
2785 namespace {
2786 class AttrReader {
2787   ASTRecordReader &Reader;
2788 
2789 public:
2790   AttrReader(ASTRecordReader &Reader) : Reader(Reader) {}
2791 
2792   uint64_t readInt() {
2793     return Reader.readInt();
2794   }
2795 
2796   SourceRange readSourceRange() {
2797     return Reader.readSourceRange();
2798   }
2799 
2800   SourceLocation readSourceLocation() {
2801     return Reader.readSourceLocation();
2802   }
2803 
2804   Expr *readExpr() { return Reader.readExpr(); }
2805 
2806   std::string readString() {
2807     return Reader.readString();
2808   }
2809 
2810   TypeSourceInfo *readTypeSourceInfo() {
2811     return Reader.readTypeSourceInfo();
2812   }
2813 
2814   IdentifierInfo *readIdentifier() {
2815     return Reader.readIdentifier();
2816   }
2817 
2818   VersionTuple readVersionTuple() {
2819     return Reader.readVersionTuple();
2820   }
2821 
2822   OMPTraitInfo *readOMPTraitInfo() { return Reader.readOMPTraitInfo(); }
2823 
2824   template <typename T> T *GetLocalDeclAs(uint32_t LocalID) {
2825     return Reader.GetLocalDeclAs<T>(LocalID);
2826   }
2827 };
2828 }
2829 
2830 Attr *ASTRecordReader::readAttr() {
2831   AttrReader Record(*this);
2832   auto V = Record.readInt();
2833   if (!V)
2834     return nullptr;
2835 
2836   Attr *New = nullptr;
2837   // Kind is stored as a 1-based integer because 0 is used to indicate a null
2838   // Attr pointer.
2839   auto Kind = static_cast<attr::Kind>(V - 1);
2840   ASTContext &Context = getContext();
2841 
2842   IdentifierInfo *AttrName = Record.readIdentifier();
2843   IdentifierInfo *ScopeName = Record.readIdentifier();
2844   SourceRange AttrRange = Record.readSourceRange();
2845   SourceLocation ScopeLoc = Record.readSourceLocation();
2846   unsigned ParsedKind = Record.readInt();
2847   unsigned Syntax = Record.readInt();
2848   unsigned SpellingIndex = Record.readInt();
2849 
2850   AttributeCommonInfo Info(AttrName, ScopeName, AttrRange, ScopeLoc,
2851                            AttributeCommonInfo::Kind(ParsedKind),
2852                            AttributeCommonInfo::Syntax(Syntax), SpellingIndex);
2853 
2854 #include "clang/Serialization/AttrPCHRead.inc"
2855 
2856   assert(New && "Unable to decode attribute?");
2857   return New;
2858 }
2859 
2860 /// Reads attributes from the current stream position.
2861 void ASTRecordReader::readAttributes(AttrVec &Attrs) {
2862   for (unsigned I = 0, E = readInt(); I != E; ++I)
2863     Attrs.push_back(readAttr());
2864 }
2865 
2866 //===----------------------------------------------------------------------===//
2867 // ASTReader Implementation
2868 //===----------------------------------------------------------------------===//
2869 
2870 /// Note that we have loaded the declaration with the given
2871 /// Index.
2872 ///
2873 /// This routine notes that this declaration has already been loaded,
2874 /// so that future GetDecl calls will return this declaration rather
2875 /// than trying to load a new declaration.
2876 inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
2877   assert(!DeclsLoaded[Index] && "Decl loaded twice?");
2878   DeclsLoaded[Index] = D;
2879 }
2880 
2881 /// Determine whether the consumer will be interested in seeing
2882 /// this declaration (via HandleTopLevelDecl).
2883 ///
2884 /// This routine should return true for anything that might affect
2885 /// code generation, e.g., inline function definitions, Objective-C
2886 /// declarations with metadata, etc.
2887 static bool isConsumerInterestedIn(ASTContext &Ctx, Decl *D, bool HasBody) {
2888   // An ObjCMethodDecl is never considered as "interesting" because its
2889   // implementation container always is.
2890 
2891   // An ImportDecl or VarDecl imported from a module map module will get
2892   // emitted when we import the relevant module.
2893   if (isPartOfPerModuleInitializer(D)) {
2894     auto *M = D->getImportedOwningModule();
2895     if (M && M->Kind == Module::ModuleMapModule &&
2896         Ctx.DeclMustBeEmitted(D))
2897       return false;
2898   }
2899 
2900   if (isa<FileScopeAsmDecl>(D) ||
2901       isa<ObjCProtocolDecl>(D) ||
2902       isa<ObjCImplDecl>(D) ||
2903       isa<ImportDecl>(D) ||
2904       isa<PragmaCommentDecl>(D) ||
2905       isa<PragmaDetectMismatchDecl>(D))
2906     return true;
2907   if (isa<OMPThreadPrivateDecl>(D) || isa<OMPDeclareReductionDecl>(D) ||
2908       isa<OMPDeclareMapperDecl>(D) || isa<OMPAllocateDecl>(D) ||
2909       isa<OMPRequiresDecl>(D))
2910     return !D->getDeclContext()->isFunctionOrMethod();
2911   if (const auto *Var = dyn_cast<VarDecl>(D))
2912     return Var->isFileVarDecl() &&
2913            (Var->isThisDeclarationADefinition() == VarDecl::Definition ||
2914             OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(Var));
2915   if (const auto *Func = dyn_cast<FunctionDecl>(D))
2916     return Func->doesThisDeclarationHaveABody() || HasBody;
2917 
2918   if (auto *ES = D->getASTContext().getExternalSource())
2919     if (ES->hasExternalDefinitions(D) == ExternalASTSource::EK_Never)
2920       return true;
2921 
2922   return false;
2923 }
2924 
2925 /// Get the correct cursor and offset for loading a declaration.
2926 ASTReader::RecordLocation
2927 ASTReader::DeclCursorForID(DeclID ID, SourceLocation &Loc) {
2928   GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
2929   assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
2930   ModuleFile *M = I->second;
2931   const DeclOffset &DOffs =
2932       M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
2933   Loc = TranslateSourceLocation(*M, DOffs.getLocation());
2934   return RecordLocation(M, DOffs.getBitOffset(M->DeclsBlockStartOffset));
2935 }
2936 
2937 ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
2938   auto I = GlobalBitOffsetsMap.find(GlobalOffset);
2939 
2940   assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
2941   return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
2942 }
2943 
2944 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint64_t LocalOffset) {
2945   return LocalOffset + M.GlobalBitOffset;
2946 }
2947 
2948 static bool isSameTemplateParameterList(const ASTContext &C,
2949                                         const TemplateParameterList *X,
2950                                         const TemplateParameterList *Y);
2951 
2952 /// Determine whether two template parameters are similar enough
2953 /// that they may be used in declarations of the same template.
2954 static bool isSameTemplateParameter(const NamedDecl *X,
2955                                     const NamedDecl *Y) {
2956   if (X->getKind() != Y->getKind())
2957     return false;
2958 
2959   if (const auto *TX = dyn_cast<TemplateTypeParmDecl>(X)) {
2960     const auto *TY = cast<TemplateTypeParmDecl>(Y);
2961     if (TX->isParameterPack() != TY->isParameterPack())
2962       return false;
2963     if (TX->hasTypeConstraint() != TY->hasTypeConstraint())
2964       return false;
2965     const TypeConstraint *TXTC = TX->getTypeConstraint();
2966     const TypeConstraint *TYTC = TY->getTypeConstraint();
2967     if (!TXTC != !TYTC)
2968       return false;
2969     if (TXTC && TYTC) {
2970       if (TXTC->getNamedConcept() != TYTC->getNamedConcept())
2971         return false;
2972       if (TXTC->hasExplicitTemplateArgs() != TYTC->hasExplicitTemplateArgs())
2973         return false;
2974       if (TXTC->hasExplicitTemplateArgs()) {
2975         const auto *TXTCArgs = TXTC->getTemplateArgsAsWritten();
2976         const auto *TYTCArgs = TYTC->getTemplateArgsAsWritten();
2977         if (TXTCArgs->NumTemplateArgs != TYTCArgs->NumTemplateArgs)
2978           return false;
2979         llvm::FoldingSetNodeID XID, YID;
2980         for (const auto &ArgLoc : TXTCArgs->arguments())
2981           ArgLoc.getArgument().Profile(XID, X->getASTContext());
2982         for (const auto &ArgLoc : TYTCArgs->arguments())
2983           ArgLoc.getArgument().Profile(YID, Y->getASTContext());
2984         if (XID != YID)
2985           return false;
2986       }
2987     }
2988     return true;
2989   }
2990 
2991   if (const auto *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) {
2992     const auto *TY = cast<NonTypeTemplateParmDecl>(Y);
2993     return TX->isParameterPack() == TY->isParameterPack() &&
2994            TX->getASTContext().hasSameType(TX->getType(), TY->getType());
2995   }
2996 
2997   const auto *TX = cast<TemplateTemplateParmDecl>(X);
2998   const auto *TY = cast<TemplateTemplateParmDecl>(Y);
2999   return TX->isParameterPack() == TY->isParameterPack() &&
3000          isSameTemplateParameterList(TX->getASTContext(),
3001                                      TX->getTemplateParameters(),
3002                                      TY->getTemplateParameters());
3003 }
3004 
3005 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) {
3006   if (auto *NS = X->getAsNamespace())
3007     return NS;
3008   if (auto *NAS = X->getAsNamespaceAlias())
3009     return NAS->getNamespace();
3010   return nullptr;
3011 }
3012 
3013 static bool isSameQualifier(const NestedNameSpecifier *X,
3014                             const NestedNameSpecifier *Y) {
3015   if (auto *NSX = getNamespace(X)) {
3016     auto *NSY = getNamespace(Y);
3017     if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl())
3018       return false;
3019   } else if (X->getKind() != Y->getKind())
3020     return false;
3021 
3022   // FIXME: For namespaces and types, we're permitted to check that the entity
3023   // is named via the same tokens. We should probably do so.
3024   switch (X->getKind()) {
3025   case NestedNameSpecifier::Identifier:
3026     if (X->getAsIdentifier() != Y->getAsIdentifier())
3027       return false;
3028     break;
3029   case NestedNameSpecifier::Namespace:
3030   case NestedNameSpecifier::NamespaceAlias:
3031     // We've already checked that we named the same namespace.
3032     break;
3033   case NestedNameSpecifier::TypeSpec:
3034   case NestedNameSpecifier::TypeSpecWithTemplate:
3035     if (X->getAsType()->getCanonicalTypeInternal() !=
3036         Y->getAsType()->getCanonicalTypeInternal())
3037       return false;
3038     break;
3039   case NestedNameSpecifier::Global:
3040   case NestedNameSpecifier::Super:
3041     return true;
3042   }
3043 
3044   // Recurse into earlier portion of NNS, if any.
3045   auto *PX = X->getPrefix();
3046   auto *PY = Y->getPrefix();
3047   if (PX && PY)
3048     return isSameQualifier(PX, PY);
3049   return !PX && !PY;
3050 }
3051 
3052 /// Determine whether two template parameter lists are similar enough
3053 /// that they may be used in declarations of the same template.
3054 static bool isSameTemplateParameterList(const ASTContext &C,
3055                                         const TemplateParameterList *X,
3056                                         const TemplateParameterList *Y) {
3057   if (X->size() != Y->size())
3058     return false;
3059 
3060   for (unsigned I = 0, N = X->size(); I != N; ++I)
3061     if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I)))
3062       return false;
3063 
3064   const Expr *XRC = X->getRequiresClause();
3065   const Expr *YRC = Y->getRequiresClause();
3066   if (!XRC != !YRC)
3067     return false;
3068   if (XRC) {
3069     llvm::FoldingSetNodeID XRCID, YRCID;
3070     XRC->Profile(XRCID, C, /*Canonical=*/true);
3071     YRC->Profile(YRCID, C, /*Canonical=*/true);
3072     if (XRCID != YRCID)
3073       return false;
3074   }
3075 
3076   return true;
3077 }
3078 
3079 /// Determine whether the attributes we can overload on are identical for A and
3080 /// B. Will ignore any overloadable attrs represented in the type of A and B.
3081 static bool hasSameOverloadableAttrs(const FunctionDecl *A,
3082                                      const FunctionDecl *B) {
3083   // Note that pass_object_size attributes are represented in the function's
3084   // ExtParameterInfo, so we don't need to check them here.
3085 
3086   llvm::FoldingSetNodeID Cand1ID, Cand2ID;
3087   auto AEnableIfAttrs = A->specific_attrs<EnableIfAttr>();
3088   auto BEnableIfAttrs = B->specific_attrs<EnableIfAttr>();
3089 
3090   for (auto Pair : zip_longest(AEnableIfAttrs, BEnableIfAttrs)) {
3091     Optional<EnableIfAttr *> Cand1A = std::get<0>(Pair);
3092     Optional<EnableIfAttr *> Cand2A = std::get<1>(Pair);
3093 
3094     // Return false if the number of enable_if attributes is different.
3095     if (!Cand1A || !Cand2A)
3096       return false;
3097 
3098     Cand1ID.clear();
3099     Cand2ID.clear();
3100 
3101     (*Cand1A)->getCond()->Profile(Cand1ID, A->getASTContext(), true);
3102     (*Cand2A)->getCond()->Profile(Cand2ID, B->getASTContext(), true);
3103 
3104     // Return false if any of the enable_if expressions of A and B are
3105     // different.
3106     if (Cand1ID != Cand2ID)
3107       return false;
3108   }
3109   return true;
3110 }
3111 
3112 /// Determine whether the two declarations refer to the same entity.
3113 static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
3114   assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
3115 
3116   if (X == Y)
3117     return true;
3118 
3119   // Must be in the same context.
3120   //
3121   // Note that we can't use DeclContext::Equals here, because the DeclContexts
3122   // could be two different declarations of the same function. (We will fix the
3123   // semantic DC to refer to the primary definition after merging.)
3124   if (!declaresSameEntity(cast<Decl>(X->getDeclContext()->getRedeclContext()),
3125                           cast<Decl>(Y->getDeclContext()->getRedeclContext())))
3126     return false;
3127 
3128   // Two typedefs refer to the same entity if they have the same underlying
3129   // type.
3130   if (const auto *TypedefX = dyn_cast<TypedefNameDecl>(X))
3131     if (const auto *TypedefY = dyn_cast<TypedefNameDecl>(Y))
3132       return X->getASTContext().hasSameType(TypedefX->getUnderlyingType(),
3133                                             TypedefY->getUnderlyingType());
3134 
3135   // Must have the same kind.
3136   if (X->getKind() != Y->getKind())
3137     return false;
3138 
3139   // Objective-C classes and protocols with the same name always match.
3140   if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X))
3141     return true;
3142 
3143   if (isa<ClassTemplateSpecializationDecl>(X)) {
3144     // No need to handle these here: we merge them when adding them to the
3145     // template.
3146     return false;
3147   }
3148 
3149   // Compatible tags match.
3150   if (const auto *TagX = dyn_cast<TagDecl>(X)) {
3151     const auto *TagY = cast<TagDecl>(Y);
3152     return (TagX->getTagKind() == TagY->getTagKind()) ||
3153       ((TagX->getTagKind() == TTK_Struct || TagX->getTagKind() == TTK_Class ||
3154         TagX->getTagKind() == TTK_Interface) &&
3155        (TagY->getTagKind() == TTK_Struct || TagY->getTagKind() == TTK_Class ||
3156         TagY->getTagKind() == TTK_Interface));
3157   }
3158 
3159   // Functions with the same type and linkage match.
3160   // FIXME: This needs to cope with merging of prototyped/non-prototyped
3161   // functions, etc.
3162   if (const auto *FuncX = dyn_cast<FunctionDecl>(X)) {
3163     const auto *FuncY = cast<FunctionDecl>(Y);
3164     if (const auto *CtorX = dyn_cast<CXXConstructorDecl>(X)) {
3165       const auto *CtorY = cast<CXXConstructorDecl>(Y);
3166       if (CtorX->getInheritedConstructor() &&
3167           !isSameEntity(CtorX->getInheritedConstructor().getConstructor(),
3168                         CtorY->getInheritedConstructor().getConstructor()))
3169         return false;
3170     }
3171 
3172     if (FuncX->isMultiVersion() != FuncY->isMultiVersion())
3173       return false;
3174 
3175     // Multiversioned functions with different feature strings are represented
3176     // as separate declarations.
3177     if (FuncX->isMultiVersion()) {
3178       const auto *TAX = FuncX->getAttr<TargetAttr>();
3179       const auto *TAY = FuncY->getAttr<TargetAttr>();
3180       assert(TAX && TAY && "Multiversion Function without target attribute");
3181 
3182       if (TAX->getFeaturesStr() != TAY->getFeaturesStr())
3183         return false;
3184     }
3185 
3186     ASTContext &C = FuncX->getASTContext();
3187 
3188     const Expr *XRC = FuncX->getTrailingRequiresClause();
3189     const Expr *YRC = FuncY->getTrailingRequiresClause();
3190     if (!XRC != !YRC)
3191       return false;
3192     if (XRC) {
3193       llvm::FoldingSetNodeID XRCID, YRCID;
3194       XRC->Profile(XRCID, C, /*Canonical=*/true);
3195       YRC->Profile(YRCID, C, /*Canonical=*/true);
3196       if (XRCID != YRCID)
3197         return false;
3198     }
3199 
3200     auto GetTypeAsWritten = [](const FunctionDecl *FD) {
3201       // Map to the first declaration that we've already merged into this one.
3202       // The TSI of redeclarations might not match (due to calling conventions
3203       // being inherited onto the type but not the TSI), but the TSI type of
3204       // the first declaration of the function should match across modules.
3205       FD = FD->getCanonicalDecl();
3206       return FD->getTypeSourceInfo() ? FD->getTypeSourceInfo()->getType()
3207                                      : FD->getType();
3208     };
3209     QualType XT = GetTypeAsWritten(FuncX), YT = GetTypeAsWritten(FuncY);
3210     if (!C.hasSameType(XT, YT)) {
3211       // We can get functions with different types on the redecl chain in C++17
3212       // if they have differing exception specifications and at least one of
3213       // the excpetion specs is unresolved.
3214       auto *XFPT = XT->getAs<FunctionProtoType>();
3215       auto *YFPT = YT->getAs<FunctionProtoType>();
3216       if (C.getLangOpts().CPlusPlus17 && XFPT && YFPT &&
3217           (isUnresolvedExceptionSpec(XFPT->getExceptionSpecType()) ||
3218            isUnresolvedExceptionSpec(YFPT->getExceptionSpecType())) &&
3219           C.hasSameFunctionTypeIgnoringExceptionSpec(XT, YT))
3220         return true;
3221       return false;
3222     }
3223 
3224     return FuncX->getLinkageInternal() == FuncY->getLinkageInternal() &&
3225            hasSameOverloadableAttrs(FuncX, FuncY);
3226   }
3227 
3228   // Variables with the same type and linkage match.
3229   if (const auto *VarX = dyn_cast<VarDecl>(X)) {
3230     const auto *VarY = cast<VarDecl>(Y);
3231     if (VarX->getLinkageInternal() == VarY->getLinkageInternal()) {
3232       ASTContext &C = VarX->getASTContext();
3233       if (C.hasSameType(VarX->getType(), VarY->getType()))
3234         return true;
3235 
3236       // We can get decls with different types on the redecl chain. Eg.
3237       // template <typename T> struct S { static T Var[]; }; // #1
3238       // template <typename T> T S<T>::Var[sizeof(T)]; // #2
3239       // Only? happens when completing an incomplete array type. In this case
3240       // when comparing #1 and #2 we should go through their element type.
3241       const ArrayType *VarXTy = C.getAsArrayType(VarX->getType());
3242       const ArrayType *VarYTy = C.getAsArrayType(VarY->getType());
3243       if (!VarXTy || !VarYTy)
3244         return false;
3245       if (VarXTy->isIncompleteArrayType() || VarYTy->isIncompleteArrayType())
3246         return C.hasSameType(VarXTy->getElementType(), VarYTy->getElementType());
3247     }
3248     return false;
3249   }
3250 
3251   // Namespaces with the same name and inlinedness match.
3252   if (const auto *NamespaceX = dyn_cast<NamespaceDecl>(X)) {
3253     const auto *NamespaceY = cast<NamespaceDecl>(Y);
3254     return NamespaceX->isInline() == NamespaceY->isInline();
3255   }
3256 
3257   // Identical template names and kinds match if their template parameter lists
3258   // and patterns match.
3259   if (const auto *TemplateX = dyn_cast<TemplateDecl>(X)) {
3260     const auto *TemplateY = cast<TemplateDecl>(Y);
3261     return isSameEntity(TemplateX->getTemplatedDecl(),
3262                         TemplateY->getTemplatedDecl()) &&
3263            isSameTemplateParameterList(TemplateX->getASTContext(),
3264                                        TemplateX->getTemplateParameters(),
3265                                        TemplateY->getTemplateParameters());
3266   }
3267 
3268   // Fields with the same name and the same type match.
3269   if (const auto *FDX = dyn_cast<FieldDecl>(X)) {
3270     const auto *FDY = cast<FieldDecl>(Y);
3271     // FIXME: Also check the bitwidth is odr-equivalent, if any.
3272     return X->getASTContext().hasSameType(FDX->getType(), FDY->getType());
3273   }
3274 
3275   // Indirect fields with the same target field match.
3276   if (const auto *IFDX = dyn_cast<IndirectFieldDecl>(X)) {
3277     const auto *IFDY = cast<IndirectFieldDecl>(Y);
3278     return IFDX->getAnonField()->getCanonicalDecl() ==
3279            IFDY->getAnonField()->getCanonicalDecl();
3280   }
3281 
3282   // Enumerators with the same name match.
3283   if (isa<EnumConstantDecl>(X))
3284     // FIXME: Also check the value is odr-equivalent.
3285     return true;
3286 
3287   // Using shadow declarations with the same target match.
3288   if (const auto *USX = dyn_cast<UsingShadowDecl>(X)) {
3289     const auto *USY = cast<UsingShadowDecl>(Y);
3290     return USX->getTargetDecl() == USY->getTargetDecl();
3291   }
3292 
3293   // Using declarations with the same qualifier match. (We already know that
3294   // the name matches.)
3295   if (const auto *UX = dyn_cast<UsingDecl>(X)) {
3296     const auto *UY = cast<UsingDecl>(Y);
3297     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
3298            UX->hasTypename() == UY->hasTypename() &&
3299            UX->isAccessDeclaration() == UY->isAccessDeclaration();
3300   }
3301   if (const auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) {
3302     const auto *UY = cast<UnresolvedUsingValueDecl>(Y);
3303     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
3304            UX->isAccessDeclaration() == UY->isAccessDeclaration();
3305   }
3306   if (const auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) {
3307     return isSameQualifier(
3308         UX->getQualifier(),
3309         cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier());
3310   }
3311 
3312   // Using-pack declarations are only created by instantiation, and match if
3313   // they're instantiated from matching UnresolvedUsing...Decls.
3314   if (const auto *UX = dyn_cast<UsingPackDecl>(X)) {
3315     return declaresSameEntity(
3316         UX->getInstantiatedFromUsingDecl(),
3317         cast<UsingPackDecl>(Y)->getInstantiatedFromUsingDecl());
3318   }
3319 
3320   // Namespace alias definitions with the same target match.
3321   if (const auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) {
3322     const auto *NAY = cast<NamespaceAliasDecl>(Y);
3323     return NAX->getNamespace()->Equals(NAY->getNamespace());
3324   }
3325 
3326   return false;
3327 }
3328 
3329 /// Find the context in which we should search for previous declarations when
3330 /// looking for declarations to merge.
3331 DeclContext *ASTDeclReader::getPrimaryContextForMerging(ASTReader &Reader,
3332                                                         DeclContext *DC) {
3333   if (auto *ND = dyn_cast<NamespaceDecl>(DC))
3334     return ND->getOriginalNamespace();
3335 
3336   if (auto *RD = dyn_cast<CXXRecordDecl>(DC)) {
3337     // Try to dig out the definition.
3338     auto *DD = RD->DefinitionData;
3339     if (!DD)
3340       DD = RD->getCanonicalDecl()->DefinitionData;
3341 
3342     // If there's no definition yet, then DC's definition is added by an update
3343     // record, but we've not yet loaded that update record. In this case, we
3344     // commit to DC being the canonical definition now, and will fix this when
3345     // we load the update record.
3346     if (!DD) {
3347       DD = new (Reader.getContext()) struct CXXRecordDecl::DefinitionData(RD);
3348       RD->setCompleteDefinition(true);
3349       RD->DefinitionData = DD;
3350       RD->getCanonicalDecl()->DefinitionData = DD;
3351 
3352       // Track that we did this horrible thing so that we can fix it later.
3353       Reader.PendingFakeDefinitionData.insert(
3354           std::make_pair(DD, ASTReader::PendingFakeDefinitionKind::Fake));
3355     }
3356 
3357     return DD->Definition;
3358   }
3359 
3360   if (auto *RD = dyn_cast<RecordDecl>(DC))
3361     return RD->getDefinition();
3362 
3363   if (auto *ED = dyn_cast<EnumDecl>(DC))
3364     return ED->getASTContext().getLangOpts().CPlusPlus? ED->getDefinition()
3365                                                       : nullptr;
3366 
3367   if (auto *OID = dyn_cast<ObjCInterfaceDecl>(DC))
3368     return OID->getDefinition();
3369 
3370   // We can see the TU here only if we have no Sema object. In that case,
3371   // there's no TU scope to look in, so using the DC alone is sufficient.
3372   if (auto *TU = dyn_cast<TranslationUnitDecl>(DC))
3373     return TU;
3374 
3375   return nullptr;
3376 }
3377 
3378 ASTDeclReader::FindExistingResult::~FindExistingResult() {
3379   // Record that we had a typedef name for linkage whether or not we merge
3380   // with that declaration.
3381   if (TypedefNameForLinkage) {
3382     DeclContext *DC = New->getDeclContext()->getRedeclContext();
3383     Reader.ImportedTypedefNamesForLinkage.insert(
3384         std::make_pair(std::make_pair(DC, TypedefNameForLinkage), New));
3385     return;
3386   }
3387 
3388   if (!AddResult || Existing)
3389     return;
3390 
3391   DeclarationName Name = New->getDeclName();
3392   DeclContext *DC = New->getDeclContext()->getRedeclContext();
3393   if (needsAnonymousDeclarationNumber(New)) {
3394     setAnonymousDeclForMerging(Reader, New->getLexicalDeclContext(),
3395                                AnonymousDeclNumber, New);
3396   } else if (DC->isTranslationUnit() &&
3397              !Reader.getContext().getLangOpts().CPlusPlus) {
3398     if (Reader.getIdResolver().tryAddTopLevelDecl(New, Name))
3399       Reader.PendingFakeLookupResults[Name.getAsIdentifierInfo()]
3400             .push_back(New);
3401   } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) {
3402     // Add the declaration to its redeclaration context so later merging
3403     // lookups will find it.
3404     MergeDC->makeDeclVisibleInContextImpl(New, /*Internal*/true);
3405   }
3406 }
3407 
3408 /// Find the declaration that should be merged into, given the declaration found
3409 /// by name lookup. If we're merging an anonymous declaration within a typedef,
3410 /// we need a matching typedef, and we merge with the type inside it.
3411 static NamedDecl *getDeclForMerging(NamedDecl *Found,
3412                                     bool IsTypedefNameForLinkage) {
3413   if (!IsTypedefNameForLinkage)
3414     return Found;
3415 
3416   // If we found a typedef declaration that gives a name to some other
3417   // declaration, then we want that inner declaration. Declarations from
3418   // AST files are handled via ImportedTypedefNamesForLinkage.
3419   if (Found->isFromASTFile())
3420     return nullptr;
3421 
3422   if (auto *TND = dyn_cast<TypedefNameDecl>(Found))
3423     return TND->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
3424 
3425   return nullptr;
3426 }
3427 
3428 /// Find the declaration to use to populate the anonymous declaration table
3429 /// for the given lexical DeclContext. We only care about finding local
3430 /// definitions of the context; we'll merge imported ones as we go.
3431 DeclContext *
3432 ASTDeclReader::getPrimaryDCForAnonymousDecl(DeclContext *LexicalDC) {
3433   // For classes, we track the definition as we merge.
3434   if (auto *RD = dyn_cast<CXXRecordDecl>(LexicalDC)) {
3435     auto *DD = RD->getCanonicalDecl()->DefinitionData;
3436     return DD ? DD->Definition : nullptr;
3437   }
3438 
3439   // For anything else, walk its merged redeclarations looking for a definition.
3440   // Note that we can't just call getDefinition here because the redeclaration
3441   // chain isn't wired up.
3442   for (auto *D : merged_redecls(cast<Decl>(LexicalDC))) {
3443     if (auto *FD = dyn_cast<FunctionDecl>(D))
3444       if (FD->isThisDeclarationADefinition())
3445         return FD;
3446     if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
3447       if (MD->isThisDeclarationADefinition())
3448         return MD;
3449     if (auto *RD = dyn_cast<RecordDecl>(D))
3450       if (RD->isThisDeclarationADefinition())
3451         return RD;
3452   }
3453 
3454   // No merged definition yet.
3455   return nullptr;
3456 }
3457 
3458 NamedDecl *ASTDeclReader::getAnonymousDeclForMerging(ASTReader &Reader,
3459                                                      DeclContext *DC,
3460                                                      unsigned Index) {
3461   // If the lexical context has been merged, look into the now-canonical
3462   // definition.
3463   auto *CanonDC = cast<Decl>(DC)->getCanonicalDecl();
3464 
3465   // If we've seen this before, return the canonical declaration.
3466   auto &Previous = Reader.AnonymousDeclarationsForMerging[CanonDC];
3467   if (Index < Previous.size() && Previous[Index])
3468     return Previous[Index];
3469 
3470   // If this is the first time, but we have parsed a declaration of the context,
3471   // build the anonymous declaration list from the parsed declaration.
3472   auto *PrimaryDC = getPrimaryDCForAnonymousDecl(DC);
3473   if (PrimaryDC && !cast<Decl>(PrimaryDC)->isFromASTFile()) {
3474     numberAnonymousDeclsWithin(PrimaryDC, [&](NamedDecl *ND, unsigned Number) {
3475       if (Previous.size() == Number)
3476         Previous.push_back(cast<NamedDecl>(ND->getCanonicalDecl()));
3477       else
3478         Previous[Number] = cast<NamedDecl>(ND->getCanonicalDecl());
3479     });
3480   }
3481 
3482   return Index < Previous.size() ? Previous[Index] : nullptr;
3483 }
3484 
3485 void ASTDeclReader::setAnonymousDeclForMerging(ASTReader &Reader,
3486                                                DeclContext *DC, unsigned Index,
3487                                                NamedDecl *D) {
3488   auto *CanonDC = cast<Decl>(DC)->getCanonicalDecl();
3489 
3490   auto &Previous = Reader.AnonymousDeclarationsForMerging[CanonDC];
3491   if (Index >= Previous.size())
3492     Previous.resize(Index + 1);
3493   if (!Previous[Index])
3494     Previous[Index] = D;
3495 }
3496 
3497 ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
3498   DeclarationName Name = TypedefNameForLinkage ? TypedefNameForLinkage
3499                                                : D->getDeclName();
3500 
3501   if (!Name && !needsAnonymousDeclarationNumber(D)) {
3502     // Don't bother trying to find unnamed declarations that are in
3503     // unmergeable contexts.
3504     FindExistingResult Result(Reader, D, /*Existing=*/nullptr,
3505                               AnonymousDeclNumber, TypedefNameForLinkage);
3506     Result.suppress();
3507     return Result;
3508   }
3509 
3510   DeclContext *DC = D->getDeclContext()->getRedeclContext();
3511   if (TypedefNameForLinkage) {
3512     auto It = Reader.ImportedTypedefNamesForLinkage.find(
3513         std::make_pair(DC, TypedefNameForLinkage));
3514     if (It != Reader.ImportedTypedefNamesForLinkage.end())
3515       if (isSameEntity(It->second, D))
3516         return FindExistingResult(Reader, D, It->second, AnonymousDeclNumber,
3517                                   TypedefNameForLinkage);
3518     // Go on to check in other places in case an existing typedef name
3519     // was not imported.
3520   }
3521 
3522   if (needsAnonymousDeclarationNumber(D)) {
3523     // This is an anonymous declaration that we may need to merge. Look it up
3524     // in its context by number.
3525     if (auto *Existing = getAnonymousDeclForMerging(
3526             Reader, D->getLexicalDeclContext(), AnonymousDeclNumber))
3527       if (isSameEntity(Existing, D))
3528         return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3529                                   TypedefNameForLinkage);
3530   } else if (DC->isTranslationUnit() &&
3531              !Reader.getContext().getLangOpts().CPlusPlus) {
3532     IdentifierResolver &IdResolver = Reader.getIdResolver();
3533 
3534     // Temporarily consider the identifier to be up-to-date. We don't want to
3535     // cause additional lookups here.
3536     class UpToDateIdentifierRAII {
3537       IdentifierInfo *II;
3538       bool WasOutToDate = false;
3539 
3540     public:
3541       explicit UpToDateIdentifierRAII(IdentifierInfo *II) : II(II) {
3542         if (II) {
3543           WasOutToDate = II->isOutOfDate();
3544           if (WasOutToDate)
3545             II->setOutOfDate(false);
3546         }
3547       }
3548 
3549       ~UpToDateIdentifierRAII() {
3550         if (WasOutToDate)
3551           II->setOutOfDate(true);
3552       }
3553     } UpToDate(Name.getAsIdentifierInfo());
3554 
3555     for (IdentifierResolver::iterator I = IdResolver.begin(Name),
3556                                    IEnd = IdResolver.end();
3557          I != IEnd; ++I) {
3558       if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage))
3559         if (isSameEntity(Existing, D))
3560           return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3561                                     TypedefNameForLinkage);
3562     }
3563   } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) {
3564     DeclContext::lookup_result R = MergeDC->noload_lookup(Name);
3565     for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
3566       if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage))
3567         if (isSameEntity(Existing, D))
3568           return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3569                                     TypedefNameForLinkage);
3570     }
3571   } else {
3572     // Not in a mergeable context.
3573     return FindExistingResult(Reader);
3574   }
3575 
3576   // If this declaration is from a merged context, make a note that we need to
3577   // check that the canonical definition of that context contains the decl.
3578   //
3579   // FIXME: We should do something similar if we merge two definitions of the
3580   // same template specialization into the same CXXRecordDecl.
3581   auto MergedDCIt = Reader.MergedDeclContexts.find(D->getLexicalDeclContext());
3582   if (MergedDCIt != Reader.MergedDeclContexts.end() &&
3583       MergedDCIt->second == D->getDeclContext())
3584     Reader.PendingOdrMergeChecks.push_back(D);
3585 
3586   return FindExistingResult(Reader, D, /*Existing=*/nullptr,
3587                             AnonymousDeclNumber, TypedefNameForLinkage);
3588 }
3589 
3590 template<typename DeclT>
3591 Decl *ASTDeclReader::getMostRecentDeclImpl(Redeclarable<DeclT> *D) {
3592   return D->RedeclLink.getLatestNotUpdated();
3593 }
3594 
3595 Decl *ASTDeclReader::getMostRecentDeclImpl(...) {
3596   llvm_unreachable("getMostRecentDecl on non-redeclarable declaration");
3597 }
3598 
3599 Decl *ASTDeclReader::getMostRecentDecl(Decl *D) {
3600   assert(D);
3601 
3602   switch (D->getKind()) {
3603 #define ABSTRACT_DECL(TYPE)
3604 #define DECL(TYPE, BASE)                               \
3605   case Decl::TYPE:                                     \
3606     return getMostRecentDeclImpl(cast<TYPE##Decl>(D));
3607 #include "clang/AST/DeclNodes.inc"
3608   }
3609   llvm_unreachable("unknown decl kind");
3610 }
3611 
3612 Decl *ASTReader::getMostRecentExistingDecl(Decl *D) {
3613   return ASTDeclReader::getMostRecentDecl(D->getCanonicalDecl());
3614 }
3615 
3616 void ASTDeclReader::mergeInheritableAttributes(ASTReader &Reader, Decl *D,
3617                                                Decl *Previous) {
3618   InheritableAttr *NewAttr = nullptr;
3619   ASTContext &Context = Reader.getContext();
3620   const auto *IA = Previous->getAttr<MSInheritanceAttr>();
3621 
3622   if (IA && !D->hasAttr<MSInheritanceAttr>()) {
3623     NewAttr = cast<InheritableAttr>(IA->clone(Context));
3624     NewAttr->setInherited(true);
3625     D->addAttr(NewAttr);
3626   }
3627 }
3628 
3629 template<typename DeclT>
3630 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader,
3631                                            Redeclarable<DeclT> *D,
3632                                            Decl *Previous, Decl *Canon) {
3633   D->RedeclLink.setPrevious(cast<DeclT>(Previous));
3634   D->First = cast<DeclT>(Previous)->First;
3635 }
3636 
3637 namespace clang {
3638 
3639 template<>
3640 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader,
3641                                            Redeclarable<VarDecl> *D,
3642                                            Decl *Previous, Decl *Canon) {
3643   auto *VD = static_cast<VarDecl *>(D);
3644   auto *PrevVD = cast<VarDecl>(Previous);
3645   D->RedeclLink.setPrevious(PrevVD);
3646   D->First = PrevVD->First;
3647 
3648   // We should keep at most one definition on the chain.
3649   // FIXME: Cache the definition once we've found it. Building a chain with
3650   // N definitions currently takes O(N^2) time here.
3651   if (VD->isThisDeclarationADefinition() == VarDecl::Definition) {
3652     for (VarDecl *CurD = PrevVD; CurD; CurD = CurD->getPreviousDecl()) {
3653       if (CurD->isThisDeclarationADefinition() == VarDecl::Definition) {
3654         Reader.mergeDefinitionVisibility(CurD, VD);
3655         VD->demoteThisDefinitionToDeclaration();
3656         break;
3657       }
3658     }
3659   }
3660 }
3661 
3662 static bool isUndeducedReturnType(QualType T) {
3663   auto *DT = T->getContainedDeducedType();
3664   return DT && !DT->isDeduced();
3665 }
3666 
3667 template<>
3668 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader,
3669                                            Redeclarable<FunctionDecl> *D,
3670                                            Decl *Previous, Decl *Canon) {
3671   auto *FD = static_cast<FunctionDecl *>(D);
3672   auto *PrevFD = cast<FunctionDecl>(Previous);
3673 
3674   FD->RedeclLink.setPrevious(PrevFD);
3675   FD->First = PrevFD->First;
3676 
3677   // If the previous declaration is an inline function declaration, then this
3678   // declaration is too.
3679   if (PrevFD->isInlined() != FD->isInlined()) {
3680     // FIXME: [dcl.fct.spec]p4:
3681     //   If a function with external linkage is declared inline in one
3682     //   translation unit, it shall be declared inline in all translation
3683     //   units in which it appears.
3684     //
3685     // Be careful of this case:
3686     //
3687     // module A:
3688     //   template<typename T> struct X { void f(); };
3689     //   template<typename T> inline void X<T>::f() {}
3690     //
3691     // module B instantiates the declaration of X<int>::f
3692     // module C instantiates the definition of X<int>::f
3693     //
3694     // If module B and C are merged, we do not have a violation of this rule.
3695     FD->setImplicitlyInline(true);
3696   }
3697 
3698   auto *FPT = FD->getType()->getAs<FunctionProtoType>();
3699   auto *PrevFPT = PrevFD->getType()->getAs<FunctionProtoType>();
3700   if (FPT && PrevFPT) {
3701     // If we need to propagate an exception specification along the redecl
3702     // chain, make a note of that so that we can do so later.
3703     bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType());
3704     bool WasUnresolved =
3705         isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType());
3706     if (IsUnresolved != WasUnresolved)
3707       Reader.PendingExceptionSpecUpdates.insert(
3708           {Canon, IsUnresolved ? PrevFD : FD});
3709 
3710     // If we need to propagate a deduced return type along the redecl chain,
3711     // make a note of that so that we can do it later.
3712     bool IsUndeduced = isUndeducedReturnType(FPT->getReturnType());
3713     bool WasUndeduced = isUndeducedReturnType(PrevFPT->getReturnType());
3714     if (IsUndeduced != WasUndeduced)
3715       Reader.PendingDeducedTypeUpdates.insert(
3716           {cast<FunctionDecl>(Canon),
3717            (IsUndeduced ? PrevFPT : FPT)->getReturnType()});
3718   }
3719 }
3720 
3721 } // namespace clang
3722 
3723 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader, ...) {
3724   llvm_unreachable("attachPreviousDecl on non-redeclarable declaration");
3725 }
3726 
3727 /// Inherit the default template argument from \p From to \p To. Returns
3728 /// \c false if there is no default template for \p From.
3729 template <typename ParmDecl>
3730 static bool inheritDefaultTemplateArgument(ASTContext &Context, ParmDecl *From,
3731                                            Decl *ToD) {
3732   auto *To = cast<ParmDecl>(ToD);
3733   if (!From->hasDefaultArgument())
3734     return false;
3735   To->setInheritedDefaultArgument(Context, From);
3736   return true;
3737 }
3738 
3739 static void inheritDefaultTemplateArguments(ASTContext &Context,
3740                                             TemplateDecl *From,
3741                                             TemplateDecl *To) {
3742   auto *FromTP = From->getTemplateParameters();
3743   auto *ToTP = To->getTemplateParameters();
3744   assert(FromTP->size() == ToTP->size() && "merged mismatched templates?");
3745 
3746   for (unsigned I = 0, N = FromTP->size(); I != N; ++I) {
3747     NamedDecl *FromParam = FromTP->getParam(I);
3748     NamedDecl *ToParam = ToTP->getParam(I);
3749 
3750     if (auto *FTTP = dyn_cast<TemplateTypeParmDecl>(FromParam))
3751       inheritDefaultTemplateArgument(Context, FTTP, ToParam);
3752     else if (auto *FNTTP = dyn_cast<NonTypeTemplateParmDecl>(FromParam))
3753       inheritDefaultTemplateArgument(Context, FNTTP, ToParam);
3754     else
3755       inheritDefaultTemplateArgument(
3756               Context, cast<TemplateTemplateParmDecl>(FromParam), ToParam);
3757   }
3758 }
3759 
3760 void ASTDeclReader::attachPreviousDecl(ASTReader &Reader, Decl *D,
3761                                        Decl *Previous, Decl *Canon) {
3762   assert(D && Previous);
3763 
3764   switch (D->getKind()) {
3765 #define ABSTRACT_DECL(TYPE)
3766 #define DECL(TYPE, BASE)                                                  \
3767   case Decl::TYPE:                                                        \
3768     attachPreviousDeclImpl(Reader, cast<TYPE##Decl>(D), Previous, Canon); \
3769     break;
3770 #include "clang/AST/DeclNodes.inc"
3771   }
3772 
3773   // If the declaration was visible in one module, a redeclaration of it in
3774   // another module remains visible even if it wouldn't be visible by itself.
3775   //
3776   // FIXME: In this case, the declaration should only be visible if a module
3777   //        that makes it visible has been imported.
3778   D->IdentifierNamespace |=
3779       Previous->IdentifierNamespace &
3780       (Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Type);
3781 
3782   // If the declaration declares a template, it may inherit default arguments
3783   // from the previous declaration.
3784   if (auto *TD = dyn_cast<TemplateDecl>(D))
3785     inheritDefaultTemplateArguments(Reader.getContext(),
3786                                     cast<TemplateDecl>(Previous), TD);
3787 
3788   // If any of the declaration in the chain contains an Inheritable attribute,
3789   // it needs to be added to all the declarations in the redeclarable chain.
3790   // FIXME: Only the logic of merging MSInheritableAttr is present, it should
3791   // be extended for all inheritable attributes.
3792   mergeInheritableAttributes(Reader, D, Previous);
3793 }
3794 
3795 template<typename DeclT>
3796 void ASTDeclReader::attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest) {
3797   D->RedeclLink.setLatest(cast<DeclT>(Latest));
3798 }
3799 
3800 void ASTDeclReader::attachLatestDeclImpl(...) {
3801   llvm_unreachable("attachLatestDecl on non-redeclarable declaration");
3802 }
3803 
3804 void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
3805   assert(D && Latest);
3806 
3807   switch (D->getKind()) {
3808 #define ABSTRACT_DECL(TYPE)
3809 #define DECL(TYPE, BASE)                                  \
3810   case Decl::TYPE:                                        \
3811     attachLatestDeclImpl(cast<TYPE##Decl>(D), Latest); \
3812     break;
3813 #include "clang/AST/DeclNodes.inc"
3814   }
3815 }
3816 
3817 template<typename DeclT>
3818 void ASTDeclReader::markIncompleteDeclChainImpl(Redeclarable<DeclT> *D) {
3819   D->RedeclLink.markIncomplete();
3820 }
3821 
3822 void ASTDeclReader::markIncompleteDeclChainImpl(...) {
3823   llvm_unreachable("markIncompleteDeclChain on non-redeclarable declaration");
3824 }
3825 
3826 void ASTReader::markIncompleteDeclChain(Decl *D) {
3827   switch (D->getKind()) {
3828 #define ABSTRACT_DECL(TYPE)
3829 #define DECL(TYPE, BASE)                                             \
3830   case Decl::TYPE:                                                   \
3831     ASTDeclReader::markIncompleteDeclChainImpl(cast<TYPE##Decl>(D)); \
3832     break;
3833 #include "clang/AST/DeclNodes.inc"
3834   }
3835 }
3836 
3837 /// Read the declaration at the given offset from the AST file.
3838 Decl *ASTReader::ReadDeclRecord(DeclID ID) {
3839   unsigned Index = ID - NUM_PREDEF_DECL_IDS;
3840   SourceLocation DeclLoc;
3841   RecordLocation Loc = DeclCursorForID(ID, DeclLoc);
3842   llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
3843   // Keep track of where we are in the stream, then jump back there
3844   // after reading this declaration.
3845   SavedStreamPosition SavedPosition(DeclsCursor);
3846 
3847   ReadingKindTracker ReadingKind(Read_Decl, *this);
3848 
3849   // Note that we are loading a declaration record.
3850   Deserializing ADecl(this);
3851 
3852   auto Fail = [](const char *what, llvm::Error &&Err) {
3853     llvm::report_fatal_error(Twine("ASTReader::readDeclRecord failed ") + what +
3854                              ": " + toString(std::move(Err)));
3855   };
3856 
3857   if (llvm::Error JumpFailed = DeclsCursor.JumpToBit(Loc.Offset))
3858     Fail("jumping", std::move(JumpFailed));
3859   ASTRecordReader Record(*this, *Loc.F);
3860   ASTDeclReader Reader(*this, Record, Loc, ID, DeclLoc);
3861   Expected<unsigned> MaybeCode = DeclsCursor.ReadCode();
3862   if (!MaybeCode)
3863     Fail("reading code", MaybeCode.takeError());
3864   unsigned Code = MaybeCode.get();
3865 
3866   ASTContext &Context = getContext();
3867   Decl *D = nullptr;
3868   Expected<unsigned> MaybeDeclCode = Record.readRecord(DeclsCursor, Code);
3869   if (!MaybeDeclCode)
3870     llvm::report_fatal_error(
3871         Twine("ASTReader::readDeclRecord failed reading decl code: ") +
3872         toString(MaybeDeclCode.takeError()));
3873   switch ((DeclCode)MaybeDeclCode.get()) {
3874   case DECL_CONTEXT_LEXICAL:
3875   case DECL_CONTEXT_VISIBLE:
3876     llvm_unreachable("Record cannot be de-serialized with readDeclRecord");
3877   case DECL_TYPEDEF:
3878     D = TypedefDecl::CreateDeserialized(Context, ID);
3879     break;
3880   case DECL_TYPEALIAS:
3881     D = TypeAliasDecl::CreateDeserialized(Context, ID);
3882     break;
3883   case DECL_ENUM:
3884     D = EnumDecl::CreateDeserialized(Context, ID);
3885     break;
3886   case DECL_RECORD:
3887     D = RecordDecl::CreateDeserialized(Context, ID);
3888     break;
3889   case DECL_ENUM_CONSTANT:
3890     D = EnumConstantDecl::CreateDeserialized(Context, ID);
3891     break;
3892   case DECL_FUNCTION:
3893     D = FunctionDecl::CreateDeserialized(Context, ID);
3894     break;
3895   case DECL_LINKAGE_SPEC:
3896     D = LinkageSpecDecl::CreateDeserialized(Context, ID);
3897     break;
3898   case DECL_EXPORT:
3899     D = ExportDecl::CreateDeserialized(Context, ID);
3900     break;
3901   case DECL_LABEL:
3902     D = LabelDecl::CreateDeserialized(Context, ID);
3903     break;
3904   case DECL_NAMESPACE:
3905     D = NamespaceDecl::CreateDeserialized(Context, ID);
3906     break;
3907   case DECL_NAMESPACE_ALIAS:
3908     D = NamespaceAliasDecl::CreateDeserialized(Context, ID);
3909     break;
3910   case DECL_USING:
3911     D = UsingDecl::CreateDeserialized(Context, ID);
3912     break;
3913   case DECL_USING_PACK:
3914     D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt());
3915     break;
3916   case DECL_USING_SHADOW:
3917     D = UsingShadowDecl::CreateDeserialized(Context, ID);
3918     break;
3919   case DECL_USING_ENUM:
3920     D = UsingEnumDecl::CreateDeserialized(Context, ID);
3921     break;
3922   case DECL_CONSTRUCTOR_USING_SHADOW:
3923     D = ConstructorUsingShadowDecl::CreateDeserialized(Context, ID);
3924     break;
3925   case DECL_USING_DIRECTIVE:
3926     D = UsingDirectiveDecl::CreateDeserialized(Context, ID);
3927     break;
3928   case DECL_UNRESOLVED_USING_VALUE:
3929     D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID);
3930     break;
3931   case DECL_UNRESOLVED_USING_TYPENAME:
3932     D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID);
3933     break;
3934   case DECL_UNRESOLVED_USING_IF_EXISTS:
3935     D = UnresolvedUsingIfExistsDecl::CreateDeserialized(Context, ID);
3936     break;
3937   case DECL_CXX_RECORD:
3938     D = CXXRecordDecl::CreateDeserialized(Context, ID);
3939     break;
3940   case DECL_CXX_DEDUCTION_GUIDE:
3941     D = CXXDeductionGuideDecl::CreateDeserialized(Context, ID);
3942     break;
3943   case DECL_CXX_METHOD:
3944     D = CXXMethodDecl::CreateDeserialized(Context, ID);
3945     break;
3946   case DECL_CXX_CONSTRUCTOR:
3947     D = CXXConstructorDecl::CreateDeserialized(Context, ID, Record.readInt());
3948     break;
3949   case DECL_CXX_DESTRUCTOR:
3950     D = CXXDestructorDecl::CreateDeserialized(Context, ID);
3951     break;
3952   case DECL_CXX_CONVERSION:
3953     D = CXXConversionDecl::CreateDeserialized(Context, ID);
3954     break;
3955   case DECL_ACCESS_SPEC:
3956     D = AccessSpecDecl::CreateDeserialized(Context, ID);
3957     break;
3958   case DECL_FRIEND:
3959     D = FriendDecl::CreateDeserialized(Context, ID, Record.readInt());
3960     break;
3961   case DECL_FRIEND_TEMPLATE:
3962     D = FriendTemplateDecl::CreateDeserialized(Context, ID);
3963     break;
3964   case DECL_CLASS_TEMPLATE:
3965     D = ClassTemplateDecl::CreateDeserialized(Context, ID);
3966     break;
3967   case DECL_CLASS_TEMPLATE_SPECIALIZATION:
3968     D = ClassTemplateSpecializationDecl::CreateDeserialized(Context, ID);
3969     break;
3970   case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
3971     D = ClassTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID);
3972     break;
3973   case DECL_VAR_TEMPLATE:
3974     D = VarTemplateDecl::CreateDeserialized(Context, ID);
3975     break;
3976   case DECL_VAR_TEMPLATE_SPECIALIZATION:
3977     D = VarTemplateSpecializationDecl::CreateDeserialized(Context, ID);
3978     break;
3979   case DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION:
3980     D = VarTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID);
3981     break;
3982   case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
3983     D = ClassScopeFunctionSpecializationDecl::CreateDeserialized(Context, ID);
3984     break;
3985   case DECL_FUNCTION_TEMPLATE:
3986     D = FunctionTemplateDecl::CreateDeserialized(Context, ID);
3987     break;
3988   case DECL_TEMPLATE_TYPE_PARM: {
3989     bool HasTypeConstraint = Record.readInt();
3990     D = TemplateTypeParmDecl::CreateDeserialized(Context, ID,
3991                                                  HasTypeConstraint);
3992     break;
3993   }
3994   case DECL_NON_TYPE_TEMPLATE_PARM: {
3995     bool HasTypeConstraint = Record.readInt();
3996     D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID,
3997                                                     HasTypeConstraint);
3998     break;
3999   }
4000   case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK: {
4001     bool HasTypeConstraint = Record.readInt();
4002     D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID,
4003                                                     Record.readInt(),
4004                                                     HasTypeConstraint);
4005     break;
4006   }
4007   case DECL_TEMPLATE_TEMPLATE_PARM:
4008     D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID);
4009     break;
4010   case DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK:
4011     D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID,
4012                                                      Record.readInt());
4013     break;
4014   case DECL_TYPE_ALIAS_TEMPLATE:
4015     D = TypeAliasTemplateDecl::CreateDeserialized(Context, ID);
4016     break;
4017   case DECL_CONCEPT:
4018     D = ConceptDecl::CreateDeserialized(Context, ID);
4019     break;
4020   case DECL_REQUIRES_EXPR_BODY:
4021     D = RequiresExprBodyDecl::CreateDeserialized(Context, ID);
4022     break;
4023   case DECL_STATIC_ASSERT:
4024     D = StaticAssertDecl::CreateDeserialized(Context, ID);
4025     break;
4026   case DECL_OBJC_METHOD:
4027     D = ObjCMethodDecl::CreateDeserialized(Context, ID);
4028     break;
4029   case DECL_OBJC_INTERFACE:
4030     D = ObjCInterfaceDecl::CreateDeserialized(Context, ID);
4031     break;
4032   case DECL_OBJC_IVAR:
4033     D = ObjCIvarDecl::CreateDeserialized(Context, ID);
4034     break;
4035   case DECL_OBJC_PROTOCOL:
4036     D = ObjCProtocolDecl::CreateDeserialized(Context, ID);
4037     break;
4038   case DECL_OBJC_AT_DEFS_FIELD:
4039     D = ObjCAtDefsFieldDecl::CreateDeserialized(Context, ID);
4040     break;
4041   case DECL_OBJC_CATEGORY:
4042     D = ObjCCategoryDecl::CreateDeserialized(Context, ID);
4043     break;
4044   case DECL_OBJC_CATEGORY_IMPL:
4045     D = ObjCCategoryImplDecl::CreateDeserialized(Context, ID);
4046     break;
4047   case DECL_OBJC_IMPLEMENTATION:
4048     D = ObjCImplementationDecl::CreateDeserialized(Context, ID);
4049     break;
4050   case DECL_OBJC_COMPATIBLE_ALIAS:
4051     D = ObjCCompatibleAliasDecl::CreateDeserialized(Context, ID);
4052     break;
4053   case DECL_OBJC_PROPERTY:
4054     D = ObjCPropertyDecl::CreateDeserialized(Context, ID);
4055     break;
4056   case DECL_OBJC_PROPERTY_IMPL:
4057     D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID);
4058     break;
4059   case DECL_FIELD:
4060     D = FieldDecl::CreateDeserialized(Context, ID);
4061     break;
4062   case DECL_INDIRECTFIELD:
4063     D = IndirectFieldDecl::CreateDeserialized(Context, ID);
4064     break;
4065   case DECL_VAR:
4066     D = VarDecl::CreateDeserialized(Context, ID);
4067     break;
4068   case DECL_IMPLICIT_PARAM:
4069     D = ImplicitParamDecl::CreateDeserialized(Context, ID);
4070     break;
4071   case DECL_PARM_VAR:
4072     D = ParmVarDecl::CreateDeserialized(Context, ID);
4073     break;
4074   case DECL_DECOMPOSITION:
4075     D = DecompositionDecl::CreateDeserialized(Context, ID, Record.readInt());
4076     break;
4077   case DECL_BINDING:
4078     D = BindingDecl::CreateDeserialized(Context, ID);
4079     break;
4080   case DECL_FILE_SCOPE_ASM:
4081     D = FileScopeAsmDecl::CreateDeserialized(Context, ID);
4082     break;
4083   case DECL_BLOCK:
4084     D = BlockDecl::CreateDeserialized(Context, ID);
4085     break;
4086   case DECL_MS_PROPERTY:
4087     D = MSPropertyDecl::CreateDeserialized(Context, ID);
4088     break;
4089   case DECL_MS_GUID:
4090     D = MSGuidDecl::CreateDeserialized(Context, ID);
4091     break;
4092   case DECL_TEMPLATE_PARAM_OBJECT:
4093     D = TemplateParamObjectDecl::CreateDeserialized(Context, ID);
4094     break;
4095   case DECL_CAPTURED:
4096     D = CapturedDecl::CreateDeserialized(Context, ID, Record.readInt());
4097     break;
4098   case DECL_CXX_BASE_SPECIFIERS:
4099     Error("attempt to read a C++ base-specifier record as a declaration");
4100     return nullptr;
4101   case DECL_CXX_CTOR_INITIALIZERS:
4102     Error("attempt to read a C++ ctor initializer record as a declaration");
4103     return nullptr;
4104   case DECL_IMPORT:
4105     // Note: last entry of the ImportDecl record is the number of stored source
4106     // locations.
4107     D = ImportDecl::CreateDeserialized(Context, ID, Record.back());
4108     break;
4109   case DECL_OMP_THREADPRIVATE: {
4110     Record.skipInts(1);
4111     unsigned NumChildren = Record.readInt();
4112     Record.skipInts(1);
4113     D = OMPThreadPrivateDecl::CreateDeserialized(Context, ID, NumChildren);
4114     break;
4115   }
4116   case DECL_OMP_ALLOCATE: {
4117     unsigned NumClauses = Record.readInt();
4118     unsigned NumVars = Record.readInt();
4119     Record.skipInts(1);
4120     D = OMPAllocateDecl::CreateDeserialized(Context, ID, NumVars, NumClauses);
4121     break;
4122   }
4123   case DECL_OMP_REQUIRES: {
4124     unsigned NumClauses = Record.readInt();
4125     Record.skipInts(2);
4126     D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses);
4127     break;
4128   }
4129   case DECL_OMP_DECLARE_REDUCTION:
4130     D = OMPDeclareReductionDecl::CreateDeserialized(Context, ID);
4131     break;
4132   case DECL_OMP_DECLARE_MAPPER: {
4133     unsigned NumClauses = Record.readInt();
4134     Record.skipInts(2);
4135     D = OMPDeclareMapperDecl::CreateDeserialized(Context, ID, NumClauses);
4136     break;
4137   }
4138   case DECL_OMP_CAPTUREDEXPR:
4139     D = OMPCapturedExprDecl::CreateDeserialized(Context, ID);
4140     break;
4141   case DECL_PRAGMA_COMMENT:
4142     D = PragmaCommentDecl::CreateDeserialized(Context, ID, Record.readInt());
4143     break;
4144   case DECL_PRAGMA_DETECT_MISMATCH:
4145     D = PragmaDetectMismatchDecl::CreateDeserialized(Context, ID,
4146                                                      Record.readInt());
4147     break;
4148   case DECL_EMPTY:
4149     D = EmptyDecl::CreateDeserialized(Context, ID);
4150     break;
4151   case DECL_LIFETIME_EXTENDED_TEMPORARY:
4152     D = LifetimeExtendedTemporaryDecl::CreateDeserialized(Context, ID);
4153     break;
4154   case DECL_OBJC_TYPE_PARAM:
4155     D = ObjCTypeParamDecl::CreateDeserialized(Context, ID);
4156     break;
4157   }
4158 
4159   assert(D && "Unknown declaration reading AST file");
4160   LoadedDecl(Index, D);
4161   // Set the DeclContext before doing any deserialization, to make sure internal
4162   // calls to Decl::getASTContext() by Decl's methods will find the
4163   // TranslationUnitDecl without crashing.
4164   D->setDeclContext(Context.getTranslationUnitDecl());
4165   Reader.Visit(D);
4166 
4167   // If this declaration is also a declaration context, get the
4168   // offsets for its tables of lexical and visible declarations.
4169   if (auto *DC = dyn_cast<DeclContext>(D)) {
4170     std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
4171     if (Offsets.first &&
4172         ReadLexicalDeclContextStorage(*Loc.F, DeclsCursor, Offsets.first, DC))
4173       return nullptr;
4174     if (Offsets.second &&
4175         ReadVisibleDeclContextStorage(*Loc.F, DeclsCursor, Offsets.second, ID))
4176       return nullptr;
4177   }
4178   assert(Record.getIdx() == Record.size());
4179 
4180   // Load any relevant update records.
4181   PendingUpdateRecords.push_back(
4182       PendingUpdateRecord(ID, D, /*JustLoaded=*/true));
4183 
4184   // Load the categories after recursive loading is finished.
4185   if (auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
4186     // If we already have a definition when deserializing the ObjCInterfaceDecl,
4187     // we put the Decl in PendingDefinitions so we can pull the categories here.
4188     if (Class->isThisDeclarationADefinition() ||
4189         PendingDefinitions.count(Class))
4190       loadObjCCategories(ID, Class);
4191 
4192   // If we have deserialized a declaration that has a definition the
4193   // AST consumer might need to know about, queue it.
4194   // We don't pass it to the consumer immediately because we may be in recursive
4195   // loading, and some declarations may still be initializing.
4196   PotentiallyInterestingDecls.push_back(
4197       InterestingDecl(D, Reader.hasPendingBody()));
4198 
4199   return D;
4200 }
4201 
4202 void ASTReader::PassInterestingDeclsToConsumer() {
4203   assert(Consumer);
4204 
4205   if (PassingDeclsToConsumer)
4206     return;
4207 
4208   // Guard variable to avoid recursively redoing the process of passing
4209   // decls to consumer.
4210   SaveAndRestore<bool> GuardPassingDeclsToConsumer(PassingDeclsToConsumer,
4211                                                    true);
4212 
4213   // Ensure that we've loaded all potentially-interesting declarations
4214   // that need to be eagerly loaded.
4215   for (auto ID : EagerlyDeserializedDecls)
4216     GetDecl(ID);
4217   EagerlyDeserializedDecls.clear();
4218 
4219   while (!PotentiallyInterestingDecls.empty()) {
4220     InterestingDecl D = PotentiallyInterestingDecls.front();
4221     PotentiallyInterestingDecls.pop_front();
4222     if (isConsumerInterestedIn(getContext(), D.getDecl(), D.hasPendingBody()))
4223       PassInterestingDeclToConsumer(D.getDecl());
4224   }
4225 }
4226 
4227 void ASTReader::loadDeclUpdateRecords(PendingUpdateRecord &Record) {
4228   // The declaration may have been modified by files later in the chain.
4229   // If this is the case, read the record containing the updates from each file
4230   // and pass it to ASTDeclReader to make the modifications.
4231   serialization::GlobalDeclID ID = Record.ID;
4232   Decl *D = Record.D;
4233   ProcessingUpdatesRAIIObj ProcessingUpdates(*this);
4234   DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
4235 
4236   SmallVector<serialization::DeclID, 8> PendingLazySpecializationIDs;
4237 
4238   if (UpdI != DeclUpdateOffsets.end()) {
4239     auto UpdateOffsets = std::move(UpdI->second);
4240     DeclUpdateOffsets.erase(UpdI);
4241 
4242     // Check if this decl was interesting to the consumer. If we just loaded
4243     // the declaration, then we know it was interesting and we skip the call
4244     // to isConsumerInterestedIn because it is unsafe to call in the
4245     // current ASTReader state.
4246     bool WasInteresting =
4247         Record.JustLoaded || isConsumerInterestedIn(getContext(), D, false);
4248     for (auto &FileAndOffset : UpdateOffsets) {
4249       ModuleFile *F = FileAndOffset.first;
4250       uint64_t Offset = FileAndOffset.second;
4251       llvm::BitstreamCursor &Cursor = F->DeclsCursor;
4252       SavedStreamPosition SavedPosition(Cursor);
4253       if (llvm::Error JumpFailed = Cursor.JumpToBit(Offset))
4254         // FIXME don't do a fatal error.
4255         llvm::report_fatal_error(
4256             Twine("ASTReader::loadDeclUpdateRecords failed jumping: ") +
4257             toString(std::move(JumpFailed)));
4258       Expected<unsigned> MaybeCode = Cursor.ReadCode();
4259       if (!MaybeCode)
4260         llvm::report_fatal_error(
4261             Twine("ASTReader::loadDeclUpdateRecords failed reading code: ") +
4262             toString(MaybeCode.takeError()));
4263       unsigned Code = MaybeCode.get();
4264       ASTRecordReader Record(*this, *F);
4265       if (Expected<unsigned> MaybeRecCode = Record.readRecord(Cursor, Code))
4266         assert(MaybeRecCode.get() == DECL_UPDATES &&
4267                "Expected DECL_UPDATES record!");
4268       else
4269         llvm::report_fatal_error(
4270             Twine("ASTReader::loadDeclUpdateRecords failed reading rec code: ") +
4271             toString(MaybeCode.takeError()));
4272 
4273       ASTDeclReader Reader(*this, Record, RecordLocation(F, Offset), ID,
4274                            SourceLocation());
4275       Reader.UpdateDecl(D, PendingLazySpecializationIDs);
4276 
4277       // We might have made this declaration interesting. If so, remember that
4278       // we need to hand it off to the consumer.
4279       if (!WasInteresting &&
4280           isConsumerInterestedIn(getContext(), D, Reader.hasPendingBody())) {
4281         PotentiallyInterestingDecls.push_back(
4282             InterestingDecl(D, Reader.hasPendingBody()));
4283         WasInteresting = true;
4284       }
4285     }
4286   }
4287   // Add the lazy specializations to the template.
4288   assert((PendingLazySpecializationIDs.empty() || isa<ClassTemplateDecl>(D) ||
4289           isa<FunctionTemplateDecl>(D) || isa<VarTemplateDecl>(D)) &&
4290          "Must not have pending specializations");
4291   if (auto *CTD = dyn_cast<ClassTemplateDecl>(D))
4292     ASTDeclReader::AddLazySpecializations(CTD, PendingLazySpecializationIDs);
4293   else if (auto *FTD = dyn_cast<FunctionTemplateDecl>(D))
4294     ASTDeclReader::AddLazySpecializations(FTD, PendingLazySpecializationIDs);
4295   else if (auto *VTD = dyn_cast<VarTemplateDecl>(D))
4296     ASTDeclReader::AddLazySpecializations(VTD, PendingLazySpecializationIDs);
4297   PendingLazySpecializationIDs.clear();
4298 
4299   // Load the pending visible updates for this decl context, if it has any.
4300   auto I = PendingVisibleUpdates.find(ID);
4301   if (I != PendingVisibleUpdates.end()) {
4302     auto VisibleUpdates = std::move(I->second);
4303     PendingVisibleUpdates.erase(I);
4304 
4305     auto *DC = cast<DeclContext>(D)->getPrimaryContext();
4306     for (const auto &Update : VisibleUpdates)
4307       Lookups[DC].Table.add(
4308           Update.Mod, Update.Data,
4309           reader::ASTDeclContextNameLookupTrait(*this, *Update.Mod));
4310     DC->setHasExternalVisibleStorage(true);
4311   }
4312 }
4313 
4314 void ASTReader::loadPendingDeclChain(Decl *FirstLocal, uint64_t LocalOffset) {
4315   // Attach FirstLocal to the end of the decl chain.
4316   Decl *CanonDecl = FirstLocal->getCanonicalDecl();
4317   if (FirstLocal != CanonDecl) {
4318     Decl *PrevMostRecent = ASTDeclReader::getMostRecentDecl(CanonDecl);
4319     ASTDeclReader::attachPreviousDecl(
4320         *this, FirstLocal, PrevMostRecent ? PrevMostRecent : CanonDecl,
4321         CanonDecl);
4322   }
4323 
4324   if (!LocalOffset) {
4325     ASTDeclReader::attachLatestDecl(CanonDecl, FirstLocal);
4326     return;
4327   }
4328 
4329   // Load the list of other redeclarations from this module file.
4330   ModuleFile *M = getOwningModuleFile(FirstLocal);
4331   assert(M && "imported decl from no module file");
4332 
4333   llvm::BitstreamCursor &Cursor = M->DeclsCursor;
4334   SavedStreamPosition SavedPosition(Cursor);
4335   if (llvm::Error JumpFailed = Cursor.JumpToBit(LocalOffset))
4336     llvm::report_fatal_error(
4337         Twine("ASTReader::loadPendingDeclChain failed jumping: ") +
4338         toString(std::move(JumpFailed)));
4339 
4340   RecordData Record;
4341   Expected<unsigned> MaybeCode = Cursor.ReadCode();
4342   if (!MaybeCode)
4343     llvm::report_fatal_error(
4344         Twine("ASTReader::loadPendingDeclChain failed reading code: ") +
4345         toString(MaybeCode.takeError()));
4346   unsigned Code = MaybeCode.get();
4347   if (Expected<unsigned> MaybeRecCode = Cursor.readRecord(Code, Record))
4348     assert(MaybeRecCode.get() == LOCAL_REDECLARATIONS &&
4349            "expected LOCAL_REDECLARATIONS record!");
4350   else
4351     llvm::report_fatal_error(
4352         Twine("ASTReader::loadPendingDeclChain failed reading rec code: ") +
4353         toString(MaybeCode.takeError()));
4354 
4355   // FIXME: We have several different dispatches on decl kind here; maybe
4356   // we should instead generate one loop per kind and dispatch up-front?
4357   Decl *MostRecent = FirstLocal;
4358   for (unsigned I = 0, N = Record.size(); I != N; ++I) {
4359     auto *D = GetLocalDecl(*M, Record[N - I - 1]);
4360     ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl);
4361     MostRecent = D;
4362   }
4363   ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent);
4364 }
4365 
4366 namespace {
4367 
4368   /// Given an ObjC interface, goes through the modules and links to the
4369   /// interface all the categories for it.
4370   class ObjCCategoriesVisitor {
4371     ASTReader &Reader;
4372     ObjCInterfaceDecl *Interface;
4373     llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized;
4374     ObjCCategoryDecl *Tail = nullptr;
4375     llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
4376     serialization::GlobalDeclID InterfaceID;
4377     unsigned PreviousGeneration;
4378 
4379     void add(ObjCCategoryDecl *Cat) {
4380       // Only process each category once.
4381       if (!Deserialized.erase(Cat))
4382         return;
4383 
4384       // Check for duplicate categories.
4385       if (Cat->getDeclName()) {
4386         ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()];
4387         if (Existing &&
4388             Reader.getOwningModuleFile(Existing)
4389                                           != Reader.getOwningModuleFile(Cat)) {
4390           // FIXME: We should not warn for duplicates in diamond:
4391           //
4392           //   MT     //
4393           //  /  \    //
4394           // ML  MR   //
4395           //  \  /    //
4396           //   MB     //
4397           //
4398           // If there are duplicates in ML/MR, there will be warning when
4399           // creating MB *and* when importing MB. We should not warn when
4400           // importing.
4401           Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
4402             << Interface->getDeclName() << Cat->getDeclName();
4403           Reader.Diag(Existing->getLocation(), diag::note_previous_definition);
4404         } else if (!Existing) {
4405           // Record this category.
4406           Existing = Cat;
4407         }
4408       }
4409 
4410       // Add this category to the end of the chain.
4411       if (Tail)
4412         ASTDeclReader::setNextObjCCategory(Tail, Cat);
4413       else
4414         Interface->setCategoryListRaw(Cat);
4415       Tail = Cat;
4416     }
4417 
4418   public:
4419     ObjCCategoriesVisitor(ASTReader &Reader,
4420                           ObjCInterfaceDecl *Interface,
4421                           llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized,
4422                           serialization::GlobalDeclID InterfaceID,
4423                           unsigned PreviousGeneration)
4424         : Reader(Reader), Interface(Interface), Deserialized(Deserialized),
4425           InterfaceID(InterfaceID), PreviousGeneration(PreviousGeneration) {
4426       // Populate the name -> category map with the set of known categories.
4427       for (auto *Cat : Interface->known_categories()) {
4428         if (Cat->getDeclName())
4429           NameCategoryMap[Cat->getDeclName()] = Cat;
4430 
4431         // Keep track of the tail of the category list.
4432         Tail = Cat;
4433       }
4434     }
4435 
4436     bool operator()(ModuleFile &M) {
4437       // If we've loaded all of the category information we care about from
4438       // this module file, we're done.
4439       if (M.Generation <= PreviousGeneration)
4440         return true;
4441 
4442       // Map global ID of the definition down to the local ID used in this
4443       // module file. If there is no such mapping, we'll find nothing here
4444       // (or in any module it imports).
4445       DeclID LocalID = Reader.mapGlobalIDToModuleFileGlobalID(M, InterfaceID);
4446       if (!LocalID)
4447         return true;
4448 
4449       // Perform a binary search to find the local redeclarations for this
4450       // declaration (if any).
4451       const ObjCCategoriesInfo Compare = { LocalID, 0 };
4452       const ObjCCategoriesInfo *Result
4453         = std::lower_bound(M.ObjCCategoriesMap,
4454                            M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap,
4455                            Compare);
4456       if (Result == M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap ||
4457           Result->DefinitionID != LocalID) {
4458         // We didn't find anything. If the class definition is in this module
4459         // file, then the module files it depends on cannot have any categories,
4460         // so suppress further lookup.
4461         return Reader.isDeclIDFromModule(InterfaceID, M);
4462       }
4463 
4464       // We found something. Dig out all of the categories.
4465       unsigned Offset = Result->Offset;
4466       unsigned N = M.ObjCCategories[Offset];
4467       M.ObjCCategories[Offset++] = 0; // Don't try to deserialize again
4468       for (unsigned I = 0; I != N; ++I)
4469         add(cast_or_null<ObjCCategoryDecl>(
4470               Reader.GetLocalDecl(M, M.ObjCCategories[Offset++])));
4471       return true;
4472     }
4473   };
4474 
4475 } // namespace
4476 
4477 void ASTReader::loadObjCCategories(serialization::GlobalDeclID ID,
4478                                    ObjCInterfaceDecl *D,
4479                                    unsigned PreviousGeneration) {
4480   ObjCCategoriesVisitor Visitor(*this, D, CategoriesDeserialized, ID,
4481                                 PreviousGeneration);
4482   ModuleMgr.visit(Visitor);
4483 }
4484 
4485 template<typename DeclT, typename Fn>
4486 static void forAllLaterRedecls(DeclT *D, Fn F) {
4487   F(D);
4488 
4489   // Check whether we've already merged D into its redeclaration chain.
4490   // MostRecent may or may not be nullptr if D has not been merged. If
4491   // not, walk the merged redecl chain and see if it's there.
4492   auto *MostRecent = D->getMostRecentDecl();
4493   bool Found = false;
4494   for (auto *Redecl = MostRecent; Redecl && !Found;
4495        Redecl = Redecl->getPreviousDecl())
4496     Found = (Redecl == D);
4497 
4498   // If this declaration is merged, apply the functor to all later decls.
4499   if (Found) {
4500     for (auto *Redecl = MostRecent; Redecl != D;
4501          Redecl = Redecl->getPreviousDecl())
4502       F(Redecl);
4503   }
4504 }
4505 
4506 void ASTDeclReader::UpdateDecl(Decl *D,
4507    llvm::SmallVectorImpl<serialization::DeclID> &PendingLazySpecializationIDs) {
4508   while (Record.getIdx() < Record.size()) {
4509     switch ((DeclUpdateKind)Record.readInt()) {
4510     case UPD_CXX_ADDED_IMPLICIT_MEMBER: {
4511       auto *RD = cast<CXXRecordDecl>(D);
4512       // FIXME: If we also have an update record for instantiating the
4513       // definition of D, we need that to happen before we get here.
4514       Decl *MD = Record.readDecl();
4515       assert(MD && "couldn't read decl from update record");
4516       // FIXME: We should call addHiddenDecl instead, to add the member
4517       // to its DeclContext.
4518       RD->addedMember(MD);
4519       break;
4520     }
4521 
4522     case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
4523       // It will be added to the template's lazy specialization set.
4524       PendingLazySpecializationIDs.push_back(readDeclID());
4525       break;
4526 
4527     case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
4528       auto *Anon = readDeclAs<NamespaceDecl>();
4529 
4530       // Each module has its own anonymous namespace, which is disjoint from
4531       // any other module's anonymous namespaces, so don't attach the anonymous
4532       // namespace at all.
4533       if (!Record.isModule()) {
4534         if (auto *TU = dyn_cast<TranslationUnitDecl>(D))
4535           TU->setAnonymousNamespace(Anon);
4536         else
4537           cast<NamespaceDecl>(D)->setAnonymousNamespace(Anon);
4538       }
4539       break;
4540     }
4541 
4542     case UPD_CXX_ADDED_VAR_DEFINITION: {
4543       auto *VD = cast<VarDecl>(D);
4544       VD->NonParmVarDeclBits.IsInline = Record.readInt();
4545       VD->NonParmVarDeclBits.IsInlineSpecified = Record.readInt();
4546       uint64_t Val = Record.readInt();
4547       if (Val && !VD->getInit()) {
4548         VD->setInit(Record.readExpr());
4549         if (Val != 1) {
4550           EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
4551           Eval->HasConstantInitialization = (Val & 2) != 0;
4552           Eval->HasConstantDestruction = (Val & 4) != 0;
4553         }
4554       }
4555       break;
4556     }
4557 
4558     case UPD_CXX_POINT_OF_INSTANTIATION: {
4559       SourceLocation POI = Record.readSourceLocation();
4560       if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(D)) {
4561         VTSD->setPointOfInstantiation(POI);
4562       } else if (auto *VD = dyn_cast<VarDecl>(D)) {
4563         VD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
4564       } else {
4565         auto *FD = cast<FunctionDecl>(D);
4566         if (auto *FTSInfo = FD->TemplateOrSpecialization
4567                     .dyn_cast<FunctionTemplateSpecializationInfo *>())
4568           FTSInfo->setPointOfInstantiation(POI);
4569         else
4570           FD->TemplateOrSpecialization.get<MemberSpecializationInfo *>()
4571               ->setPointOfInstantiation(POI);
4572       }
4573       break;
4574     }
4575 
4576     case UPD_CXX_INSTANTIATED_DEFAULT_ARGUMENT: {
4577       auto *Param = cast<ParmVarDecl>(D);
4578 
4579       // We have to read the default argument regardless of whether we use it
4580       // so that hypothetical further update records aren't messed up.
4581       // TODO: Add a function to skip over the next expr record.
4582       auto *DefaultArg = Record.readExpr();
4583 
4584       // Only apply the update if the parameter still has an uninstantiated
4585       // default argument.
4586       if (Param->hasUninstantiatedDefaultArg())
4587         Param->setDefaultArg(DefaultArg);
4588       break;
4589     }
4590 
4591     case UPD_CXX_INSTANTIATED_DEFAULT_MEMBER_INITIALIZER: {
4592       auto *FD = cast<FieldDecl>(D);
4593       auto *DefaultInit = Record.readExpr();
4594 
4595       // Only apply the update if the field still has an uninstantiated
4596       // default member initializer.
4597       if (FD->hasInClassInitializer() && !FD->getInClassInitializer()) {
4598         if (DefaultInit)
4599           FD->setInClassInitializer(DefaultInit);
4600         else
4601           // Instantiation failed. We can get here if we serialized an AST for
4602           // an invalid program.
4603           FD->removeInClassInitializer();
4604       }
4605       break;
4606     }
4607 
4608     case UPD_CXX_ADDED_FUNCTION_DEFINITION: {
4609       auto *FD = cast<FunctionDecl>(D);
4610       if (Reader.PendingBodies[FD]) {
4611         // FIXME: Maybe check for ODR violations.
4612         // It's safe to stop now because this update record is always last.
4613         return;
4614       }
4615 
4616       if (Record.readInt()) {
4617         // Maintain AST consistency: any later redeclarations of this function
4618         // are inline if this one is. (We might have merged another declaration
4619         // into this one.)
4620         forAllLaterRedecls(FD, [](FunctionDecl *FD) {
4621           FD->setImplicitlyInline();
4622         });
4623       }
4624       FD->setInnerLocStart(readSourceLocation());
4625       ReadFunctionDefinition(FD);
4626       assert(Record.getIdx() == Record.size() && "lazy body must be last");
4627       break;
4628     }
4629 
4630     case UPD_CXX_INSTANTIATED_CLASS_DEFINITION: {
4631       auto *RD = cast<CXXRecordDecl>(D);
4632       auto *OldDD = RD->getCanonicalDecl()->DefinitionData;
4633       bool HadRealDefinition =
4634           OldDD && (OldDD->Definition != RD ||
4635                     !Reader.PendingFakeDefinitionData.count(OldDD));
4636       RD->setParamDestroyedInCallee(Record.readInt());
4637       RD->setArgPassingRestrictions(
4638           (RecordDecl::ArgPassingKind)Record.readInt());
4639       ReadCXXRecordDefinition(RD, /*Update*/true);
4640 
4641       // Visible update is handled separately.
4642       uint64_t LexicalOffset = ReadLocalOffset();
4643       if (!HadRealDefinition && LexicalOffset) {
4644         Record.readLexicalDeclContextStorage(LexicalOffset, RD);
4645         Reader.PendingFakeDefinitionData.erase(OldDD);
4646       }
4647 
4648       auto TSK = (TemplateSpecializationKind)Record.readInt();
4649       SourceLocation POI = readSourceLocation();
4650       if (MemberSpecializationInfo *MSInfo =
4651               RD->getMemberSpecializationInfo()) {
4652         MSInfo->setTemplateSpecializationKind(TSK);
4653         MSInfo->setPointOfInstantiation(POI);
4654       } else {
4655         auto *Spec = cast<ClassTemplateSpecializationDecl>(RD);
4656         Spec->setTemplateSpecializationKind(TSK);
4657         Spec->setPointOfInstantiation(POI);
4658 
4659         if (Record.readInt()) {
4660           auto *PartialSpec =
4661               readDeclAs<ClassTemplatePartialSpecializationDecl>();
4662           SmallVector<TemplateArgument, 8> TemplArgs;
4663           Record.readTemplateArgumentList(TemplArgs);
4664           auto *TemplArgList = TemplateArgumentList::CreateCopy(
4665               Reader.getContext(), TemplArgs);
4666 
4667           // FIXME: If we already have a partial specialization set,
4668           // check that it matches.
4669           if (!Spec->getSpecializedTemplateOrPartial()
4670                    .is<ClassTemplatePartialSpecializationDecl *>())
4671             Spec->setInstantiationOf(PartialSpec, TemplArgList);
4672         }
4673       }
4674 
4675       RD->setTagKind((TagTypeKind)Record.readInt());
4676       RD->setLocation(readSourceLocation());
4677       RD->setLocStart(readSourceLocation());
4678       RD->setBraceRange(readSourceRange());
4679 
4680       if (Record.readInt()) {
4681         AttrVec Attrs;
4682         Record.readAttributes(Attrs);
4683         // If the declaration already has attributes, we assume that some other
4684         // AST file already loaded them.
4685         if (!D->hasAttrs())
4686           D->setAttrsImpl(Attrs, Reader.getContext());
4687       }
4688       break;
4689     }
4690 
4691     case UPD_CXX_RESOLVED_DTOR_DELETE: {
4692       // Set the 'operator delete' directly to avoid emitting another update
4693       // record.
4694       auto *Del = readDeclAs<FunctionDecl>();
4695       auto *First = cast<CXXDestructorDecl>(D->getCanonicalDecl());
4696       auto *ThisArg = Record.readExpr();
4697       // FIXME: Check consistency if we have an old and new operator delete.
4698       if (!First->OperatorDelete) {
4699         First->OperatorDelete = Del;
4700         First->OperatorDeleteThisArg = ThisArg;
4701       }
4702       break;
4703     }
4704 
4705     case UPD_CXX_RESOLVED_EXCEPTION_SPEC: {
4706       SmallVector<QualType, 8> ExceptionStorage;
4707       auto ESI = Record.readExceptionSpecInfo(ExceptionStorage);
4708 
4709       // Update this declaration's exception specification, if needed.
4710       auto *FD = cast<FunctionDecl>(D);
4711       auto *FPT = FD->getType()->castAs<FunctionProtoType>();
4712       // FIXME: If the exception specification is already present, check that it
4713       // matches.
4714       if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
4715         FD->setType(Reader.getContext().getFunctionType(
4716             FPT->getReturnType(), FPT->getParamTypes(),
4717             FPT->getExtProtoInfo().withExceptionSpec(ESI)));
4718 
4719         // When we get to the end of deserializing, see if there are other decls
4720         // that we need to propagate this exception specification onto.
4721         Reader.PendingExceptionSpecUpdates.insert(
4722             std::make_pair(FD->getCanonicalDecl(), FD));
4723       }
4724       break;
4725     }
4726 
4727     case UPD_CXX_DEDUCED_RETURN_TYPE: {
4728       auto *FD = cast<FunctionDecl>(D);
4729       QualType DeducedResultType = Record.readType();
4730       Reader.PendingDeducedTypeUpdates.insert(
4731           {FD->getCanonicalDecl(), DeducedResultType});
4732       break;
4733     }
4734 
4735     case UPD_DECL_MARKED_USED:
4736       // Maintain AST consistency: any later redeclarations are used too.
4737       D->markUsed(Reader.getContext());
4738       break;
4739 
4740     case UPD_MANGLING_NUMBER:
4741       Reader.getContext().setManglingNumber(cast<NamedDecl>(D),
4742                                             Record.readInt());
4743       break;
4744 
4745     case UPD_STATIC_LOCAL_NUMBER:
4746       Reader.getContext().setStaticLocalNumber(cast<VarDecl>(D),
4747                                                Record.readInt());
4748       break;
4749 
4750     case UPD_DECL_MARKED_OPENMP_THREADPRIVATE:
4751       D->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(
4752           Reader.getContext(), readSourceRange(),
4753           AttributeCommonInfo::AS_Pragma));
4754       break;
4755 
4756     case UPD_DECL_MARKED_OPENMP_ALLOCATE: {
4757       auto AllocatorKind =
4758           static_cast<OMPAllocateDeclAttr::AllocatorTypeTy>(Record.readInt());
4759       Expr *Allocator = Record.readExpr();
4760       Expr *Alignment = Record.readExpr();
4761       SourceRange SR = readSourceRange();
4762       D->addAttr(OMPAllocateDeclAttr::CreateImplicit(
4763           Reader.getContext(), AllocatorKind, Allocator, Alignment, SR,
4764           AttributeCommonInfo::AS_Pragma));
4765       break;
4766     }
4767 
4768     case UPD_DECL_EXPORTED: {
4769       unsigned SubmoduleID = readSubmoduleID();
4770       auto *Exported = cast<NamedDecl>(D);
4771       Module *Owner = SubmoduleID ? Reader.getSubmodule(SubmoduleID) : nullptr;
4772       Reader.getContext().mergeDefinitionIntoModule(Exported, Owner);
4773       Reader.PendingMergedDefinitionsToDeduplicate.insert(Exported);
4774       break;
4775     }
4776 
4777     case UPD_DECL_MARKED_OPENMP_DECLARETARGET: {
4778       auto MapType = Record.readEnum<OMPDeclareTargetDeclAttr::MapTypeTy>();
4779       auto DevType = Record.readEnum<OMPDeclareTargetDeclAttr::DevTypeTy>();
4780       unsigned Level = Record.readInt();
4781       D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(
4782           Reader.getContext(), MapType, DevType, Level, readSourceRange(),
4783           AttributeCommonInfo::AS_Pragma));
4784       break;
4785     }
4786 
4787     case UPD_ADDED_ATTR_TO_RECORD:
4788       AttrVec Attrs;
4789       Record.readAttributes(Attrs);
4790       assert(Attrs.size() == 1);
4791       D->addAttr(Attrs[0]);
4792       break;
4793     }
4794   }
4795 }
4796