1 //===--- ASTReaderDecl.cpp - Decl Deserialization ---------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the ASTReader::ReadDeclRecord method, which is the
11 // entrypoint for loading a decl.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 #include "clang/Serialization/ASTReader.h"
16 #include "ASTCommon.h"
17 #include "ASTReaderInternals.h"
18 #include "clang/AST/ASTConsumer.h"
19 #include "clang/AST/ASTContext.h"
20 #include "clang/AST/DeclCXX.h"
21 #include "clang/AST/DeclGroup.h"
22 #include "clang/AST/DeclTemplate.h"
23 #include "clang/AST/DeclVisitor.h"
24 #include "clang/AST/Expr.h"
25 #include "clang/Sema/IdentifierResolver.h"
26 #include "clang/Sema/Sema.h"
27 #include "clang/Sema/SemaDiagnostic.h"
28 #include "llvm/Support/SaveAndRestore.h"
29 using namespace clang;
30 using namespace clang::serialization;
31 
32 //===----------------------------------------------------------------------===//
33 // Declaration deserialization
34 //===----------------------------------------------------------------------===//
35 
36 namespace clang {
37   class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
38     ASTReader &Reader;
39     ModuleFile &F;
40     const DeclID ThisDeclID;
41     const unsigned RawLocation;
42     typedef ASTReader::RecordData RecordData;
43     const RecordData &Record;
44     unsigned &Idx;
45     TypeID TypeIDForTypeDecl;
46     unsigned AnonymousDeclNumber;
47     GlobalDeclID NamedDeclForTagDecl;
48     IdentifierInfo *TypedefNameForLinkage;
49 
50     bool HasPendingBody;
51 
52     uint64_t GetCurrentCursorOffset();
53 
54     SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) {
55       return Reader.ReadSourceLocation(F, R, I);
56     }
57 
58     SourceRange ReadSourceRange(const RecordData &R, unsigned &I) {
59       return Reader.ReadSourceRange(F, R, I);
60     }
61 
62     TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) {
63       return Reader.GetTypeSourceInfo(F, R, I);
64     }
65 
66     serialization::DeclID ReadDeclID(const RecordData &R, unsigned &I) {
67       return Reader.ReadDeclID(F, R, I);
68     }
69 
70     Decl *ReadDecl(const RecordData &R, unsigned &I) {
71       return Reader.ReadDecl(F, R, I);
72     }
73 
74     template<typename T>
75     T *ReadDeclAs(const RecordData &R, unsigned &I) {
76       return Reader.ReadDeclAs<T>(F, R, I);
77     }
78 
79     void ReadQualifierInfo(QualifierInfo &Info,
80                            const RecordData &R, unsigned &I) {
81       Reader.ReadQualifierInfo(F, Info, R, I);
82     }
83 
84     void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name,
85                                 const RecordData &R, unsigned &I) {
86       Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
87     }
88 
89     void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo,
90                                 const RecordData &R, unsigned &I) {
91       Reader.ReadDeclarationNameInfo(F, NameInfo, R, I);
92     }
93 
94     serialization::SubmoduleID readSubmoduleID(const RecordData &R,
95                                                unsigned &I) {
96       if (I >= R.size())
97         return 0;
98 
99       return Reader.getGlobalSubmoduleID(F, R[I++]);
100     }
101 
102     Module *readModule(const RecordData &R, unsigned &I) {
103       return Reader.getSubmodule(readSubmoduleID(R, I));
104     }
105 
106     void ReadCXXRecordDefinition(CXXRecordDecl *D);
107     void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data,
108                                const RecordData &R, unsigned &I);
109     void MergeDefinitionData(CXXRecordDecl *D,
110                              struct CXXRecordDecl::DefinitionData &NewDD);
111 
112     static NamedDecl *getAnonymousDeclForMerging(ASTReader &Reader,
113                                                  DeclContext *DC,
114                                                  unsigned Index);
115     static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC,
116                                            unsigned Index, NamedDecl *D);
117 
118     /// \brief RAII class used to capture the first ID within a redeclaration
119     /// chain and to introduce it into the list of pending redeclaration chains
120     /// on destruction.
121     ///
122     /// The caller can choose not to introduce this ID into the list of pending
123     /// redeclaration chains by calling \c suppress().
124     class RedeclarableResult {
125       ASTReader &Reader;
126       GlobalDeclID FirstID;
127       mutable bool Owning;
128       Decl::Kind DeclKind;
129 
130       void operator=(RedeclarableResult &) LLVM_DELETED_FUNCTION;
131 
132     public:
133       RedeclarableResult(ASTReader &Reader, GlobalDeclID FirstID,
134                          Decl::Kind DeclKind)
135         : Reader(Reader), FirstID(FirstID), Owning(true), DeclKind(DeclKind) { }
136 
137       RedeclarableResult(const RedeclarableResult &Other)
138         : Reader(Other.Reader), FirstID(Other.FirstID), Owning(Other.Owning) ,
139           DeclKind(Other.DeclKind)
140       {
141         Other.Owning = false;
142       }
143 
144       ~RedeclarableResult() {
145         if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) &&
146             Reader.PendingDeclChainsKnown.insert(FirstID).second)
147           Reader.PendingDeclChains.push_back(FirstID);
148       }
149 
150       /// \brief Retrieve the first ID.
151       GlobalDeclID getFirstID() const { return FirstID; }
152 
153       /// \brief Do not introduce this declaration ID into the set of pending
154       /// declaration chains.
155       void suppress() {
156         Owning = false;
157       }
158     };
159 
160     /// \brief Class used to capture the result of searching for an existing
161     /// declaration of a specific kind and name, along with the ability
162     /// to update the place where this result was found (the declaration
163     /// chain hanging off an identifier or the DeclContext we searched in)
164     /// if requested.
165     class FindExistingResult {
166       ASTReader &Reader;
167       NamedDecl *New;
168       NamedDecl *Existing;
169       mutable bool AddResult;
170 
171       unsigned AnonymousDeclNumber;
172       IdentifierInfo *TypedefNameForLinkage;
173 
174       void operator=(FindExistingResult&) LLVM_DELETED_FUNCTION;
175 
176     public:
177       FindExistingResult(ASTReader &Reader)
178           : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false),
179             AnonymousDeclNumber(0), TypedefNameForLinkage(0) {}
180 
181       FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
182                          unsigned AnonymousDeclNumber,
183                          IdentifierInfo *TypedefNameForLinkage)
184           : Reader(Reader), New(New), Existing(Existing), AddResult(true),
185             AnonymousDeclNumber(AnonymousDeclNumber),
186             TypedefNameForLinkage(TypedefNameForLinkage) {}
187 
188       FindExistingResult(const FindExistingResult &Other)
189           : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
190             AddResult(Other.AddResult),
191             AnonymousDeclNumber(Other.AnonymousDeclNumber),
192             TypedefNameForLinkage(Other.TypedefNameForLinkage) {
193         Other.AddResult = false;
194       }
195 
196       ~FindExistingResult();
197 
198       /// \brief Suppress the addition of this result into the known set of
199       /// names.
200       void suppress() { AddResult = false; }
201 
202       operator NamedDecl*() const { return Existing; }
203 
204       template<typename T>
205       operator T*() const { return dyn_cast_or_null<T>(Existing); }
206     };
207 
208     FindExistingResult findExisting(NamedDecl *D);
209 
210   public:
211     ASTDeclReader(ASTReader &Reader, ModuleFile &F, DeclID thisDeclID,
212                   unsigned RawLocation, const RecordData &Record, unsigned &Idx)
213         : Reader(Reader), F(F), ThisDeclID(thisDeclID),
214           RawLocation(RawLocation), Record(Record), Idx(Idx),
215           TypeIDForTypeDecl(0), NamedDeclForTagDecl(0),
216           TypedefNameForLinkage(nullptr), HasPendingBody(false) {}
217 
218     template <typename DeclT>
219     static void attachPreviousDeclImpl(ASTReader &Reader,
220                                        Redeclarable<DeclT> *D, Decl *Previous);
221     static void attachPreviousDeclImpl(ASTReader &Reader, ...);
222     static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous);
223 
224     template <typename DeclT>
225     static void attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest);
226     static void attachLatestDeclImpl(...);
227     static void attachLatestDecl(Decl *D, Decl *latest);
228 
229     template <typename DeclT>
230     static void markIncompleteDeclChainImpl(Redeclarable<DeclT> *D);
231     static void markIncompleteDeclChainImpl(...);
232 
233     /// \brief Determine whether this declaration has a pending body.
234     bool hasPendingBody() const { return HasPendingBody; }
235 
236     void Visit(Decl *D);
237 
238     void UpdateDecl(Decl *D, ModuleFile &ModuleFile,
239                     const RecordData &Record);
240 
241     static void setNextObjCCategory(ObjCCategoryDecl *Cat,
242                                     ObjCCategoryDecl *Next) {
243       Cat->NextClassCategory = Next;
244     }
245 
246     void VisitDecl(Decl *D);
247     void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
248     void VisitNamedDecl(NamedDecl *ND);
249     void VisitLabelDecl(LabelDecl *LD);
250     void VisitNamespaceDecl(NamespaceDecl *D);
251     void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
252     void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
253     void VisitTypeDecl(TypeDecl *TD);
254     RedeclarableResult VisitTypedefNameDecl(TypedefNameDecl *TD);
255     void VisitTypedefDecl(TypedefDecl *TD);
256     void VisitTypeAliasDecl(TypeAliasDecl *TD);
257     void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
258     RedeclarableResult VisitTagDecl(TagDecl *TD);
259     void VisitEnumDecl(EnumDecl *ED);
260     RedeclarableResult VisitRecordDeclImpl(RecordDecl *RD);
261     void VisitRecordDecl(RecordDecl *RD) { VisitRecordDeclImpl(RD); }
262     RedeclarableResult VisitCXXRecordDeclImpl(CXXRecordDecl *D);
263     void VisitCXXRecordDecl(CXXRecordDecl *D) { VisitCXXRecordDeclImpl(D); }
264     RedeclarableResult VisitClassTemplateSpecializationDeclImpl(
265                                             ClassTemplateSpecializationDecl *D);
266     void VisitClassTemplateSpecializationDecl(
267         ClassTemplateSpecializationDecl *D) {
268       VisitClassTemplateSpecializationDeclImpl(D);
269     }
270     void VisitClassTemplatePartialSpecializationDecl(
271                                      ClassTemplatePartialSpecializationDecl *D);
272     void VisitClassScopeFunctionSpecializationDecl(
273                                        ClassScopeFunctionSpecializationDecl *D);
274     RedeclarableResult
275     VisitVarTemplateSpecializationDeclImpl(VarTemplateSpecializationDecl *D);
276     void VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D) {
277       VisitVarTemplateSpecializationDeclImpl(D);
278     }
279     void VisitVarTemplatePartialSpecializationDecl(
280         VarTemplatePartialSpecializationDecl *D);
281     void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
282     void VisitValueDecl(ValueDecl *VD);
283     void VisitEnumConstantDecl(EnumConstantDecl *ECD);
284     void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
285     void VisitDeclaratorDecl(DeclaratorDecl *DD);
286     void VisitFunctionDecl(FunctionDecl *FD);
287     void VisitCXXMethodDecl(CXXMethodDecl *D);
288     void VisitCXXConstructorDecl(CXXConstructorDecl *D);
289     void VisitCXXDestructorDecl(CXXDestructorDecl *D);
290     void VisitCXXConversionDecl(CXXConversionDecl *D);
291     void VisitFieldDecl(FieldDecl *FD);
292     void VisitMSPropertyDecl(MSPropertyDecl *FD);
293     void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
294     RedeclarableResult VisitVarDeclImpl(VarDecl *D);
295     void VisitVarDecl(VarDecl *VD) { VisitVarDeclImpl(VD); }
296     void VisitImplicitParamDecl(ImplicitParamDecl *PD);
297     void VisitParmVarDecl(ParmVarDecl *PD);
298     void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
299     DeclID VisitTemplateDecl(TemplateDecl *D);
300     RedeclarableResult VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
301     void VisitClassTemplateDecl(ClassTemplateDecl *D);
302     void VisitVarTemplateDecl(VarTemplateDecl *D);
303     void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
304     void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
305     void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
306     void VisitUsingDecl(UsingDecl *D);
307     void VisitUsingShadowDecl(UsingShadowDecl *D);
308     void VisitLinkageSpecDecl(LinkageSpecDecl *D);
309     void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
310     void VisitImportDecl(ImportDecl *D);
311     void VisitAccessSpecDecl(AccessSpecDecl *D);
312     void VisitFriendDecl(FriendDecl *D);
313     void VisitFriendTemplateDecl(FriendTemplateDecl *D);
314     void VisitStaticAssertDecl(StaticAssertDecl *D);
315     void VisitBlockDecl(BlockDecl *BD);
316     void VisitCapturedDecl(CapturedDecl *CD);
317     void VisitEmptyDecl(EmptyDecl *D);
318 
319     std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
320 
321     template<typename T>
322     RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
323 
324     template<typename T>
325     void mergeRedeclarable(Redeclarable<T> *D, RedeclarableResult &Redecl,
326                            DeclID TemplatePatternID = 0);
327 
328     template<typename T>
329     void mergeRedeclarable(Redeclarable<T> *D, T *Existing,
330                            RedeclarableResult &Redecl,
331                            DeclID TemplatePatternID = 0);
332 
333     template<typename T>
334     void mergeMergeable(Mergeable<T> *D);
335 
336     void mergeTemplatePattern(RedeclarableTemplateDecl *D,
337                               RedeclarableTemplateDecl *Existing,
338                               DeclID DsID);
339 
340     // FIXME: Reorder according to DeclNodes.td?
341     void VisitObjCMethodDecl(ObjCMethodDecl *D);
342     void VisitObjCContainerDecl(ObjCContainerDecl *D);
343     void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
344     void VisitObjCIvarDecl(ObjCIvarDecl *D);
345     void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
346     void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
347     void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
348     void VisitObjCImplDecl(ObjCImplDecl *D);
349     void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
350     void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
351     void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
352     void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
353     void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
354     void VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D);
355   };
356 }
357 
358 uint64_t ASTDeclReader::GetCurrentCursorOffset() {
359   return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset;
360 }
361 
362 void ASTDeclReader::Visit(Decl *D) {
363   DeclVisitor<ASTDeclReader, void>::Visit(D);
364 
365   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
366     if (DD->DeclInfo) {
367       DeclaratorDecl::ExtInfo *Info =
368           DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
369       Info->TInfo =
370           GetTypeSourceInfo(Record, Idx);
371     }
372     else {
373       DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
374     }
375   }
376 
377   if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
378     // We have a fully initialized TypeDecl. Read its type now.
379     TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull());
380 
381     // If this is a tag declaration with a typedef name for linkage, it's safe
382     // to load that typedef now.
383     if (NamedDeclForTagDecl)
384       cast<TagDecl>(D)->NamedDeclOrQualifier =
385           cast<NamedDecl>(Reader.GetDecl(NamedDeclForTagDecl));
386   } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
387     // if we have a fully initialized TypeDecl, we can safely read its type now.
388     ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull();
389   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
390     // FunctionDecl's body was written last after all other Stmts/Exprs.
391     // We only read it if FD doesn't already have a body (e.g., from another
392     // module).
393     // FIXME: Also consider = default and = delete.
394     // FIXME: Can we diagnose ODR violations somehow?
395     if (Record[Idx++]) {
396       Reader.PendingBodies[FD] = GetCurrentCursorOffset();
397       HasPendingBody = true;
398     }
399   }
400 }
401 
402 void ASTDeclReader::VisitDecl(Decl *D) {
403   if (D->isTemplateParameter() || D->isTemplateParameterPack() ||
404       isa<ParmVarDecl>(D)) {
405     // We don't want to deserialize the DeclContext of a template
406     // parameter or of a parameter of a function template immediately.   These
407     // entities might be used in the formulation of its DeclContext (for
408     // example, a function parameter can be used in decltype() in trailing
409     // return type of the function).  Use the translation unit DeclContext as a
410     // placeholder.
411     GlobalDeclID SemaDCIDForTemplateParmDecl = ReadDeclID(Record, Idx);
412     GlobalDeclID LexicalDCIDForTemplateParmDecl = ReadDeclID(Record, Idx);
413     Reader.addPendingDeclContextInfo(D,
414                                      SemaDCIDForTemplateParmDecl,
415                                      LexicalDCIDForTemplateParmDecl);
416     D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
417   } else {
418     DeclContext *SemaDC = ReadDeclAs<DeclContext>(Record, Idx);
419     DeclContext *LexicalDC = ReadDeclAs<DeclContext>(Record, Idx);
420     DeclContext *MergedSemaDC = Reader.MergedDeclContexts.lookup(SemaDC);
421     // Avoid calling setLexicalDeclContext() directly because it uses
422     // Decl::getASTContext() internally which is unsafe during derialization.
423     D->setDeclContextsImpl(MergedSemaDC ? MergedSemaDC : SemaDC, LexicalDC,
424                            Reader.getContext());
425   }
426   D->setLocation(Reader.ReadSourceLocation(F, RawLocation));
427   D->setInvalidDecl(Record[Idx++]);
428   if (Record[Idx++]) { // hasAttrs
429     AttrVec Attrs;
430     Reader.ReadAttributes(F, Attrs, Record, Idx);
431     // Avoid calling setAttrs() directly because it uses Decl::getASTContext()
432     // internally which is unsafe during derialization.
433     D->setAttrsImpl(Attrs, Reader.getContext());
434   }
435   D->setImplicit(Record[Idx++]);
436   D->Used = Record[Idx++];
437   D->setReferenced(Record[Idx++]);
438   D->setTopLevelDeclInObjCContainer(Record[Idx++]);
439   D->setAccess((AccessSpecifier)Record[Idx++]);
440   D->FromASTFile = true;
441   D->setModulePrivate(Record[Idx++]);
442   D->Hidden = D->isModulePrivate();
443 
444   // Determine whether this declaration is part of a (sub)module. If so, it
445   // may not yet be visible.
446   if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) {
447     // Store the owning submodule ID in the declaration.
448     D->setOwningModuleID(SubmoduleID);
449 
450     // Module-private declarations are never visible, so there is no work to do.
451     if (!D->isModulePrivate()) {
452       if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
453         if (Owner->NameVisibility != Module::AllVisible) {
454           // The owning module is not visible. Mark this declaration as hidden.
455           D->Hidden = true;
456 
457           // Note that this declaration was hidden because its owning module is
458           // not yet visible.
459           Reader.HiddenNamesMap[Owner].HiddenDecls.push_back(D);
460         }
461       }
462     }
463   }
464 }
465 
466 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
467   llvm_unreachable("Translation units are not serialized");
468 }
469 
470 void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
471   VisitDecl(ND);
472   ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx));
473   if (needsAnonymousDeclarationNumber(ND))
474     AnonymousDeclNumber = Record[Idx++];
475 }
476 
477 void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
478   VisitNamedDecl(TD);
479   TD->setLocStart(ReadSourceLocation(Record, Idx));
480   // Delay type reading until after we have fully initialized the decl.
481   TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
482 }
483 
484 ASTDeclReader::RedeclarableResult
485 ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
486   RedeclarableResult Redecl = VisitRedeclarable(TD);
487   VisitTypeDecl(TD);
488   TypeSourceInfo *TInfo = GetTypeSourceInfo(Record, Idx);
489   if (Record[Idx++]) { // isModed
490     QualType modedT = Reader.readType(F, Record, Idx);
491     TD->setModedTypeSourceInfo(TInfo, modedT);
492   } else
493     TD->setTypeSourceInfo(TInfo);
494   return Redecl;
495 }
496 
497 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
498   RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
499   mergeRedeclarable(TD, Redecl);
500 }
501 
502 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
503   RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
504   if (auto *Template = ReadDeclAs<TypeAliasTemplateDecl>(Record, Idx))
505     // Merged when we merge the template.
506     TD->setDescribedAliasTemplate(Template);
507   else
508     mergeRedeclarable(TD, Redecl);
509 }
510 
511 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitTagDecl(TagDecl *TD) {
512   RedeclarableResult Redecl = VisitRedeclarable(TD);
513   VisitTypeDecl(TD);
514 
515   TD->IdentifierNamespace = Record[Idx++];
516   TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
517   if (!isa<CXXRecordDecl>(TD))
518     TD->setCompleteDefinition(Record[Idx++]);
519   TD->setEmbeddedInDeclarator(Record[Idx++]);
520   TD->setFreeStanding(Record[Idx++]);
521   TD->setCompleteDefinitionRequired(Record[Idx++]);
522   TD->setRBraceLoc(ReadSourceLocation(Record, Idx));
523 
524   switch (Record[Idx++]) {
525   case 0:
526     break;
527   case 1: { // ExtInfo
528     TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
529     ReadQualifierInfo(*Info, Record, Idx);
530     TD->NamedDeclOrQualifier = Info;
531     break;
532   }
533   case 2: // TypedefNameForAnonDecl
534     NamedDeclForTagDecl = ReadDeclID(Record, Idx);
535     TypedefNameForLinkage = Reader.GetIdentifierInfo(F, Record, Idx);
536     break;
537   case 3: // DeclaratorForAnonDecl
538     NamedDeclForTagDecl = ReadDeclID(Record, Idx);
539     break;
540   default:
541     llvm_unreachable("unexpected tag info kind");
542   }
543 
544   if (!isa<CXXRecordDecl>(TD))
545     mergeRedeclarable(TD, Redecl);
546   return Redecl;
547 }
548 
549 void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
550   VisitTagDecl(ED);
551   if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
552     ED->setIntegerTypeSourceInfo(TI);
553   else
554     ED->setIntegerType(Reader.readType(F, Record, Idx));
555   ED->setPromotionType(Reader.readType(F, Record, Idx));
556   ED->setNumPositiveBits(Record[Idx++]);
557   ED->setNumNegativeBits(Record[Idx++]);
558   ED->IsScoped = Record[Idx++];
559   ED->IsScopedUsingClassTag = Record[Idx++];
560   ED->IsFixed = Record[Idx++];
561 
562   // If this is a definition subject to the ODR, and we already have a
563   // definition, merge this one into it.
564   if (ED->IsCompleteDefinition &&
565       Reader.getContext().getLangOpts().Modules &&
566       Reader.getContext().getLangOpts().CPlusPlus) {
567     if (EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()]) {
568       Reader.MergedDeclContexts.insert(std::make_pair(ED, OldDef));
569       ED->IsCompleteDefinition = false;
570     } else {
571       OldDef = ED;
572     }
573   }
574 
575   if (EnumDecl *InstED = ReadDeclAs<EnumDecl>(Record, Idx)) {
576     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
577     SourceLocation POI = ReadSourceLocation(Record, Idx);
578     ED->setInstantiationOfMemberEnum(Reader.getContext(), InstED, TSK);
579     ED->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
580   }
581 }
582 
583 ASTDeclReader::RedeclarableResult
584 ASTDeclReader::VisitRecordDeclImpl(RecordDecl *RD) {
585   RedeclarableResult Redecl = VisitTagDecl(RD);
586   RD->setHasFlexibleArrayMember(Record[Idx++]);
587   RD->setAnonymousStructOrUnion(Record[Idx++]);
588   RD->setHasObjectMember(Record[Idx++]);
589   RD->setHasVolatileMember(Record[Idx++]);
590   return Redecl;
591 }
592 
593 void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
594   VisitNamedDecl(VD);
595   VD->setType(Reader.readType(F, Record, Idx));
596 }
597 
598 void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
599   VisitValueDecl(ECD);
600   if (Record[Idx++])
601     ECD->setInitExpr(Reader.ReadExpr(F));
602   ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
603   mergeMergeable(ECD);
604 }
605 
606 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
607   VisitValueDecl(DD);
608   DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
609   if (Record[Idx++]) { // hasExtInfo
610     DeclaratorDecl::ExtInfo *Info
611         = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
612     ReadQualifierInfo(*Info, Record, Idx);
613     DD->DeclInfo = Info;
614   }
615 }
616 
617 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
618   RedeclarableResult Redecl = VisitRedeclarable(FD);
619   VisitDeclaratorDecl(FD);
620 
621   ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
622   FD->IdentifierNamespace = Record[Idx++];
623 
624   // FunctionDecl's body is handled last at ASTDeclReader::Visit,
625   // after everything else is read.
626 
627   FD->SClass = (StorageClass)Record[Idx++];
628   FD->IsInline = Record[Idx++];
629   FD->IsInlineSpecified = Record[Idx++];
630   FD->IsVirtualAsWritten = Record[Idx++];
631   FD->IsPure = Record[Idx++];
632   FD->HasInheritedPrototype = Record[Idx++];
633   FD->HasWrittenPrototype = Record[Idx++];
634   FD->IsDeleted = Record[Idx++];
635   FD->IsTrivial = Record[Idx++];
636   FD->IsDefaulted = Record[Idx++];
637   FD->IsExplicitlyDefaulted = Record[Idx++];
638   FD->HasImplicitReturnZero = Record[Idx++];
639   FD->IsConstexpr = Record[Idx++];
640   FD->HasSkippedBody = Record[Idx++];
641   FD->IsLateTemplateParsed = Record[Idx++];
642   FD->setCachedLinkage(Linkage(Record[Idx++]));
643   FD->EndRangeLoc = ReadSourceLocation(Record, Idx);
644 
645   switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
646   case FunctionDecl::TK_NonTemplate:
647     mergeRedeclarable(FD, Redecl);
648     break;
649   case FunctionDecl::TK_FunctionTemplate:
650     // Merged when we merge the template.
651     FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record,
652                                                                       Idx));
653     break;
654   case FunctionDecl::TK_MemberSpecialization: {
655     FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx);
656     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
657     SourceLocation POI = ReadSourceLocation(Record, Idx);
658     FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
659     FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
660     mergeRedeclarable(FD, Redecl);
661     break;
662   }
663   case FunctionDecl::TK_FunctionTemplateSpecialization: {
664     FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record,
665                                                                       Idx);
666     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
667 
668     // Template arguments.
669     SmallVector<TemplateArgument, 8> TemplArgs;
670     Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
671 
672     // Template args as written.
673     SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
674     SourceLocation LAngleLoc, RAngleLoc;
675     bool HasTemplateArgumentsAsWritten = Record[Idx++];
676     if (HasTemplateArgumentsAsWritten) {
677       unsigned NumTemplateArgLocs = Record[Idx++];
678       TemplArgLocs.reserve(NumTemplateArgLocs);
679       for (unsigned i=0; i != NumTemplateArgLocs; ++i)
680         TemplArgLocs.push_back(
681             Reader.ReadTemplateArgumentLoc(F, Record, Idx));
682 
683       LAngleLoc = ReadSourceLocation(Record, Idx);
684       RAngleLoc = ReadSourceLocation(Record, Idx);
685     }
686 
687     SourceLocation POI = ReadSourceLocation(Record, Idx);
688 
689     ASTContext &C = Reader.getContext();
690     TemplateArgumentList *TemplArgList
691       = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
692     TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
693     for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
694       TemplArgsInfo.addArgument(TemplArgLocs[i]);
695     FunctionTemplateSpecializationInfo *FTInfo
696         = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK,
697                                                      TemplArgList,
698                              HasTemplateArgumentsAsWritten ? &TemplArgsInfo
699                                                            : nullptr,
700                                                      POI);
701     FD->TemplateOrSpecialization = FTInfo;
702 
703     if (FD->isCanonicalDecl()) { // if canonical add to template's set.
704       // The template that contains the specializations set. It's not safe to
705       // use getCanonicalDecl on Template since it may still be initializing.
706       FunctionTemplateDecl *CanonTemplate
707         = ReadDeclAs<FunctionTemplateDecl>(Record, Idx);
708       // Get the InsertPos by FindNodeOrInsertPos() instead of calling
709       // InsertNode(FTInfo) directly to avoid the getASTContext() call in
710       // FunctionTemplateSpecializationInfo's Profile().
711       // We avoid getASTContext because a decl in the parent hierarchy may
712       // be initializing.
713       llvm::FoldingSetNodeID ID;
714       FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs, C);
715       void *InsertPos = nullptr;
716       FunctionTemplateDecl::Common *CommonPtr = CanonTemplate->getCommonPtr();
717       CommonPtr->Specializations.FindNodeOrInsertPos(ID, InsertPos);
718       if (InsertPos)
719         CommonPtr->Specializations.InsertNode(FTInfo, InsertPos);
720       else {
721         assert(Reader.getContext().getLangOpts().Modules &&
722                "already deserialized this template specialization");
723         // FIXME: This specialization is a redeclaration of one from another
724         // module. Merge it.
725       }
726     }
727     break;
728   }
729   case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
730     // Templates.
731     UnresolvedSet<8> TemplDecls;
732     unsigned NumTemplates = Record[Idx++];
733     while (NumTemplates--)
734       TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx));
735 
736     // Templates args.
737     TemplateArgumentListInfo TemplArgs;
738     unsigned NumArgs = Record[Idx++];
739     while (NumArgs--)
740       TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx));
741     TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx));
742     TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx));
743 
744     FD->setDependentTemplateSpecialization(Reader.getContext(),
745                                            TemplDecls, TemplArgs);
746 
747     // FIXME: Merging.
748     break;
749   }
750   }
751 
752   // Read in the parameters.
753   unsigned NumParams = Record[Idx++];
754   SmallVector<ParmVarDecl *, 16> Params;
755   Params.reserve(NumParams);
756   for (unsigned I = 0; I != NumParams; ++I)
757     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
758   FD->setParams(Reader.getContext(), Params);
759 }
760 
761 void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
762   VisitNamedDecl(MD);
763   if (Record[Idx++]) {
764     // Load the body on-demand. Most clients won't care, because method
765     // definitions rarely show up in headers.
766     Reader.PendingBodies[MD] = GetCurrentCursorOffset();
767     HasPendingBody = true;
768     MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
769     MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
770   }
771   MD->setInstanceMethod(Record[Idx++]);
772   MD->setVariadic(Record[Idx++]);
773   MD->setPropertyAccessor(Record[Idx++]);
774   MD->setDefined(Record[Idx++]);
775   MD->IsOverriding = Record[Idx++];
776   MD->HasSkippedBody = Record[Idx++];
777 
778   MD->IsRedeclaration = Record[Idx++];
779   MD->HasRedeclaration = Record[Idx++];
780   if (MD->HasRedeclaration)
781     Reader.getContext().setObjCMethodRedeclaration(MD,
782                                        ReadDeclAs<ObjCMethodDecl>(Record, Idx));
783 
784   MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
785   MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
786   MD->SetRelatedResultType(Record[Idx++]);
787   MD->setReturnType(Reader.readType(F, Record, Idx));
788   MD->setReturnTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
789   MD->DeclEndLoc = ReadSourceLocation(Record, Idx);
790   unsigned NumParams = Record[Idx++];
791   SmallVector<ParmVarDecl *, 16> Params;
792   Params.reserve(NumParams);
793   for (unsigned I = 0; I != NumParams; ++I)
794     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
795 
796   MD->SelLocsKind = Record[Idx++];
797   unsigned NumStoredSelLocs = Record[Idx++];
798   SmallVector<SourceLocation, 16> SelLocs;
799   SelLocs.reserve(NumStoredSelLocs);
800   for (unsigned i = 0; i != NumStoredSelLocs; ++i)
801     SelLocs.push_back(ReadSourceLocation(Record, Idx));
802 
803   MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
804 }
805 
806 void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
807   VisitNamedDecl(CD);
808   CD->setAtStartLoc(ReadSourceLocation(Record, Idx));
809   CD->setAtEndRange(ReadSourceRange(Record, Idx));
810 }
811 
812 void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
813   RedeclarableResult Redecl = VisitRedeclarable(ID);
814   VisitObjCContainerDecl(ID);
815   TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
816   mergeRedeclarable(ID, Redecl);
817 
818   if (Record[Idx++]) {
819     // Read the definition.
820     ID->allocateDefinitionData();
821 
822     // Set the definition data of the canonical declaration, so other
823     // redeclarations will see it.
824     ID->getCanonicalDecl()->Data = ID->Data;
825 
826     ObjCInterfaceDecl::DefinitionData &Data = ID->data();
827 
828     // Read the superclass.
829     Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
830     Data.SuperClassLoc = ReadSourceLocation(Record, Idx);
831 
832     Data.EndLoc = ReadSourceLocation(Record, Idx);
833     Data.HasDesignatedInitializers = Record[Idx++];
834 
835     // Read the directly referenced protocols and their SourceLocations.
836     unsigned NumProtocols = Record[Idx++];
837     SmallVector<ObjCProtocolDecl *, 16> Protocols;
838     Protocols.reserve(NumProtocols);
839     for (unsigned I = 0; I != NumProtocols; ++I)
840       Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
841     SmallVector<SourceLocation, 16> ProtoLocs;
842     ProtoLocs.reserve(NumProtocols);
843     for (unsigned I = 0; I != NumProtocols; ++I)
844       ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
845     ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
846                         Reader.getContext());
847 
848     // Read the transitive closure of protocols referenced by this class.
849     NumProtocols = Record[Idx++];
850     Protocols.clear();
851     Protocols.reserve(NumProtocols);
852     for (unsigned I = 0; I != NumProtocols; ++I)
853       Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
854     ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
855                                           Reader.getContext());
856 
857     // We will rebuild this list lazily.
858     ID->setIvarList(nullptr);
859 
860     // Note that we have deserialized a definition.
861     Reader.PendingDefinitions.insert(ID);
862 
863     // Note that we've loaded this Objective-C class.
864     Reader.ObjCClassesLoaded.push_back(ID);
865   } else {
866     ID->Data = ID->getCanonicalDecl()->Data;
867   }
868 }
869 
870 void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
871   VisitFieldDecl(IVD);
872   IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
873   // This field will be built lazily.
874   IVD->setNextIvar(nullptr);
875   bool synth = Record[Idx++];
876   IVD->setSynthesize(synth);
877 }
878 
879 void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
880   RedeclarableResult Redecl = VisitRedeclarable(PD);
881   VisitObjCContainerDecl(PD);
882   mergeRedeclarable(PD, Redecl);
883 
884   if (Record[Idx++]) {
885     // Read the definition.
886     PD->allocateDefinitionData();
887 
888     // Set the definition data of the canonical declaration, so other
889     // redeclarations will see it.
890     PD->getCanonicalDecl()->Data = PD->Data;
891 
892     unsigned NumProtoRefs = Record[Idx++];
893     SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
894     ProtoRefs.reserve(NumProtoRefs);
895     for (unsigned I = 0; I != NumProtoRefs; ++I)
896       ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
897     SmallVector<SourceLocation, 16> ProtoLocs;
898     ProtoLocs.reserve(NumProtoRefs);
899     for (unsigned I = 0; I != NumProtoRefs; ++I)
900       ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
901     PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
902                         Reader.getContext());
903 
904     // Note that we have deserialized a definition.
905     Reader.PendingDefinitions.insert(PD);
906   } else {
907     PD->Data = PD->getCanonicalDecl()->Data;
908   }
909 }
910 
911 void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
912   VisitFieldDecl(FD);
913 }
914 
915 void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
916   VisitObjCContainerDecl(CD);
917   CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx));
918   CD->setIvarLBraceLoc(ReadSourceLocation(Record, Idx));
919   CD->setIvarRBraceLoc(ReadSourceLocation(Record, Idx));
920 
921   // Note that this category has been deserialized. We do this before
922   // deserializing the interface declaration, so that it will consider this
923   /// category.
924   Reader.CategoriesDeserialized.insert(CD);
925 
926   CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
927   unsigned NumProtoRefs = Record[Idx++];
928   SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
929   ProtoRefs.reserve(NumProtoRefs);
930   for (unsigned I = 0; I != NumProtoRefs; ++I)
931     ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
932   SmallVector<SourceLocation, 16> ProtoLocs;
933   ProtoLocs.reserve(NumProtoRefs);
934   for (unsigned I = 0; I != NumProtoRefs; ++I)
935     ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
936   CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
937                       Reader.getContext());
938 }
939 
940 void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
941   VisitNamedDecl(CAD);
942   CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
943 }
944 
945 void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
946   VisitNamedDecl(D);
947   D->setAtLoc(ReadSourceLocation(Record, Idx));
948   D->setLParenLoc(ReadSourceLocation(Record, Idx));
949   D->setType(GetTypeSourceInfo(Record, Idx));
950   // FIXME: stable encoding
951   D->setPropertyAttributes(
952                       (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
953   D->setPropertyAttributesAsWritten(
954                       (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
955   // FIXME: stable encoding
956   D->setPropertyImplementation(
957                             (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
958   D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
959   D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
960   D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
961   D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
962   D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
963 }
964 
965 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
966   VisitObjCContainerDecl(D);
967   D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
968 }
969 
970 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
971   VisitObjCImplDecl(D);
972   D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx));
973   D->CategoryNameLoc = ReadSourceLocation(Record, Idx);
974 }
975 
976 void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
977   VisitObjCImplDecl(D);
978   D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
979   D->SuperLoc = ReadSourceLocation(Record, Idx);
980   D->setIvarLBraceLoc(ReadSourceLocation(Record, Idx));
981   D->setIvarRBraceLoc(ReadSourceLocation(Record, Idx));
982   D->setHasNonZeroConstructors(Record[Idx++]);
983   D->setHasDestructors(Record[Idx++]);
984   std::tie(D->IvarInitializers, D->NumIvarInitializers) =
985       Reader.ReadCXXCtorInitializers(F, Record, Idx);
986 }
987 
988 
989 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
990   VisitDecl(D);
991   D->setAtLoc(ReadSourceLocation(Record, Idx));
992   D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx));
993   D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx);
994   D->IvarLoc = ReadSourceLocation(Record, Idx);
995   D->setGetterCXXConstructor(Reader.ReadExpr(F));
996   D->setSetterCXXAssignment(Reader.ReadExpr(F));
997 }
998 
999 void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
1000   VisitDeclaratorDecl(FD);
1001   FD->Mutable = Record[Idx++];
1002   if (int BitWidthOrInitializer = Record[Idx++]) {
1003     FD->InitStorage.setInt(
1004           static_cast<FieldDecl::InitStorageKind>(BitWidthOrInitializer - 1));
1005     if (FD->InitStorage.getInt() == FieldDecl::ISK_CapturedVLAType) {
1006       // Read captured variable length array.
1007       FD->InitStorage.setPointer(
1008           Reader.readType(F, Record, Idx).getAsOpaquePtr());
1009     } else {
1010       FD->InitStorage.setPointer(Reader.ReadExpr(F));
1011     }
1012   }
1013   if (!FD->getDeclName()) {
1014     if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
1015       Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
1016   }
1017   mergeMergeable(FD);
1018 }
1019 
1020 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) {
1021   VisitDeclaratorDecl(PD);
1022   PD->GetterId = Reader.GetIdentifierInfo(F, Record, Idx);
1023   PD->SetterId = Reader.GetIdentifierInfo(F, Record, Idx);
1024 }
1025 
1026 void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
1027   VisitValueDecl(FD);
1028 
1029   FD->ChainingSize = Record[Idx++];
1030   assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
1031   FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
1032 
1033   for (unsigned I = 0; I != FD->ChainingSize; ++I)
1034     FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx);
1035 }
1036 
1037 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitVarDeclImpl(VarDecl *VD) {
1038   RedeclarableResult Redecl = VisitRedeclarable(VD);
1039   VisitDeclaratorDecl(VD);
1040 
1041   VD->VarDeclBits.SClass = (StorageClass)Record[Idx++];
1042   VD->VarDeclBits.TSCSpec = Record[Idx++];
1043   VD->VarDeclBits.InitStyle = Record[Idx++];
1044   VD->VarDeclBits.ExceptionVar = Record[Idx++];
1045   VD->VarDeclBits.NRVOVariable = Record[Idx++];
1046   VD->VarDeclBits.CXXForRangeDecl = Record[Idx++];
1047   VD->VarDeclBits.ARCPseudoStrong = Record[Idx++];
1048   VD->VarDeclBits.IsConstexpr = Record[Idx++];
1049   VD->VarDeclBits.IsInitCapture = Record[Idx++];
1050   VD->VarDeclBits.PreviousDeclInSameBlockScope = Record[Idx++];
1051   Linkage VarLinkage = Linkage(Record[Idx++]);
1052   VD->setCachedLinkage(VarLinkage);
1053 
1054   // Reconstruct the one piece of the IdentifierNamespace that we need.
1055   if (VD->getStorageClass() == SC_Extern && VarLinkage != NoLinkage &&
1056       VD->getLexicalDeclContext()->isFunctionOrMethod())
1057     VD->setLocalExternDecl();
1058 
1059   if (uint64_t Val = Record[Idx++]) {
1060     VD->setInit(Reader.ReadExpr(F));
1061     if (Val > 1) {
1062       EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
1063       Eval->CheckedICE = true;
1064       Eval->IsICE = Val == 3;
1065     }
1066   }
1067 
1068   enum VarKind {
1069     VarNotTemplate = 0, VarTemplate, StaticDataMemberSpecialization
1070   };
1071   switch ((VarKind)Record[Idx++]) {
1072   case VarNotTemplate:
1073     // Only true variables (not parameters or implicit parameters) can be merged
1074     if (VD->getKind() != Decl::ParmVar && VD->getKind() != Decl::ImplicitParam &&
1075         !isa<VarTemplateSpecializationDecl>(VD))
1076       mergeRedeclarable(VD, Redecl);
1077     break;
1078   case VarTemplate:
1079     // Merged when we merge the template.
1080     VD->setDescribedVarTemplate(ReadDeclAs<VarTemplateDecl>(Record, Idx));
1081     break;
1082   case StaticDataMemberSpecialization: { // HasMemberSpecializationInfo.
1083     VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
1084     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
1085     SourceLocation POI = ReadSourceLocation(Record, Idx);
1086     Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
1087     mergeRedeclarable(VD, Redecl);
1088     break;
1089   }
1090   }
1091 
1092   return Redecl;
1093 }
1094 
1095 void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
1096   VisitVarDecl(PD);
1097 }
1098 
1099 void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
1100   VisitVarDecl(PD);
1101   unsigned isObjCMethodParam = Record[Idx++];
1102   unsigned scopeDepth = Record[Idx++];
1103   unsigned scopeIndex = Record[Idx++];
1104   unsigned declQualifier = Record[Idx++];
1105   if (isObjCMethodParam) {
1106     assert(scopeDepth == 0);
1107     PD->setObjCMethodScopeInfo(scopeIndex);
1108     PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
1109   } else {
1110     PD->setScopeInfo(scopeDepth, scopeIndex);
1111   }
1112   PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++];
1113   PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++];
1114   if (Record[Idx++]) // hasUninstantiatedDefaultArg.
1115     PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F));
1116 
1117   // FIXME: If this is a redeclaration of a function from another module, handle
1118   // inheritance of default arguments.
1119 }
1120 
1121 void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
1122   VisitDecl(AD);
1123   AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F)));
1124   AD->setRParenLoc(ReadSourceLocation(Record, Idx));
1125 }
1126 
1127 void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
1128   VisitDecl(BD);
1129   BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F)));
1130   BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx));
1131   unsigned NumParams = Record[Idx++];
1132   SmallVector<ParmVarDecl *, 16> Params;
1133   Params.reserve(NumParams);
1134   for (unsigned I = 0; I != NumParams; ++I)
1135     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
1136   BD->setParams(Params);
1137 
1138   BD->setIsVariadic(Record[Idx++]);
1139   BD->setBlockMissingReturnType(Record[Idx++]);
1140   BD->setIsConversionFromLambda(Record[Idx++]);
1141 
1142   bool capturesCXXThis = Record[Idx++];
1143   unsigned numCaptures = Record[Idx++];
1144   SmallVector<BlockDecl::Capture, 16> captures;
1145   captures.reserve(numCaptures);
1146   for (unsigned i = 0; i != numCaptures; ++i) {
1147     VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx);
1148     unsigned flags = Record[Idx++];
1149     bool byRef = (flags & 1);
1150     bool nested = (flags & 2);
1151     Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : nullptr);
1152 
1153     captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1154   }
1155   BD->setCaptures(Reader.getContext(), captures.begin(),
1156                   captures.end(), capturesCXXThis);
1157 }
1158 
1159 void ASTDeclReader::VisitCapturedDecl(CapturedDecl *CD) {
1160   VisitDecl(CD);
1161   unsigned ContextParamPos = Record[Idx++];
1162   CD->setNothrow(Record[Idx++] != 0);
1163   // Body is set by VisitCapturedStmt.
1164   for (unsigned I = 0; I < CD->NumParams; ++I) {
1165     if (I != ContextParamPos)
1166       CD->setParam(I, ReadDeclAs<ImplicitParamDecl>(Record, Idx));
1167     else
1168       CD->setContextParam(I, ReadDeclAs<ImplicitParamDecl>(Record, Idx));
1169   }
1170 }
1171 
1172 void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
1173   VisitDecl(D);
1174   D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
1175   D->setExternLoc(ReadSourceLocation(Record, Idx));
1176   D->setRBraceLoc(ReadSourceLocation(Record, Idx));
1177 }
1178 
1179 void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
1180   VisitNamedDecl(D);
1181   D->setLocStart(ReadSourceLocation(Record, Idx));
1182 }
1183 
1184 
1185 void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
1186   RedeclarableResult Redecl = VisitRedeclarable(D);
1187   VisitNamedDecl(D);
1188   D->setInline(Record[Idx++]);
1189   D->LocStart = ReadSourceLocation(Record, Idx);
1190   D->RBraceLoc = ReadSourceLocation(Record, Idx);
1191 
1192   if (Redecl.getFirstID() == ThisDeclID) {
1193     // Each module has its own anonymous namespace, which is disjoint from
1194     // any other module's anonymous namespaces, so don't attach the anonymous
1195     // namespace at all.
1196     NamespaceDecl *Anon = ReadDeclAs<NamespaceDecl>(Record, Idx);
1197     if (F.Kind != MK_ImplicitModule && F.Kind != MK_ExplicitModule)
1198       D->setAnonymousNamespace(Anon);
1199   } else {
1200     // Link this namespace back to the first declaration, which has already
1201     // been deserialized.
1202     D->AnonOrFirstNamespaceAndInline.setPointer(D->getFirstDecl());
1203   }
1204 
1205   mergeRedeclarable(D, Redecl);
1206 }
1207 
1208 void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
1209   RedeclarableResult Redecl = VisitRedeclarable(D);
1210   VisitNamedDecl(D);
1211   D->NamespaceLoc = ReadSourceLocation(Record, Idx);
1212   D->IdentLoc = ReadSourceLocation(Record, Idx);
1213   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1214   D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx);
1215   mergeRedeclarable(D, Redecl);
1216 }
1217 
1218 void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
1219   VisitNamedDecl(D);
1220   D->setUsingLoc(ReadSourceLocation(Record, Idx));
1221   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1222   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
1223   D->FirstUsingShadow.setPointer(ReadDeclAs<UsingShadowDecl>(Record, Idx));
1224   D->setTypename(Record[Idx++]);
1225   if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx))
1226     Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
1227   mergeMergeable(D);
1228 }
1229 
1230 void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
1231   RedeclarableResult Redecl = VisitRedeclarable(D);
1232   VisitNamedDecl(D);
1233   D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx));
1234   D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx);
1235   UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx);
1236   if (Pattern)
1237     Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
1238   mergeRedeclarable(D, Redecl);
1239 }
1240 
1241 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1242   VisitNamedDecl(D);
1243   D->UsingLoc = ReadSourceLocation(Record, Idx);
1244   D->NamespaceLoc = ReadSourceLocation(Record, Idx);
1245   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1246   D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx);
1247   D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx);
1248 }
1249 
1250 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1251   VisitValueDecl(D);
1252   D->setUsingLoc(ReadSourceLocation(Record, Idx));
1253   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1254   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
1255   mergeMergeable(D);
1256 }
1257 
1258 void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
1259                                                UnresolvedUsingTypenameDecl *D) {
1260   VisitTypeDecl(D);
1261   D->TypenameLocation = ReadSourceLocation(Record, Idx);
1262   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1263   mergeMergeable(D);
1264 }
1265 
1266 void ASTDeclReader::ReadCXXDefinitionData(
1267                                    struct CXXRecordDecl::DefinitionData &Data,
1268                                    const RecordData &Record, unsigned &Idx) {
1269   // Note: the caller has deserialized the IsLambda bit already.
1270   Data.UserDeclaredConstructor = Record[Idx++];
1271   Data.UserDeclaredSpecialMembers = Record[Idx++];
1272   Data.Aggregate = Record[Idx++];
1273   Data.PlainOldData = Record[Idx++];
1274   Data.Empty = Record[Idx++];
1275   Data.Polymorphic = Record[Idx++];
1276   Data.Abstract = Record[Idx++];
1277   Data.IsStandardLayout = Record[Idx++];
1278   Data.HasNoNonEmptyBases = Record[Idx++];
1279   Data.HasPrivateFields = Record[Idx++];
1280   Data.HasProtectedFields = Record[Idx++];
1281   Data.HasPublicFields = Record[Idx++];
1282   Data.HasMutableFields = Record[Idx++];
1283   Data.HasVariantMembers = Record[Idx++];
1284   Data.HasOnlyCMembers = Record[Idx++];
1285   Data.HasInClassInitializer = Record[Idx++];
1286   Data.HasUninitializedReferenceMember = Record[Idx++];
1287   Data.NeedOverloadResolutionForMoveConstructor = Record[Idx++];
1288   Data.NeedOverloadResolutionForMoveAssignment = Record[Idx++];
1289   Data.NeedOverloadResolutionForDestructor = Record[Idx++];
1290   Data.DefaultedMoveConstructorIsDeleted = Record[Idx++];
1291   Data.DefaultedMoveAssignmentIsDeleted = Record[Idx++];
1292   Data.DefaultedDestructorIsDeleted = Record[Idx++];
1293   Data.HasTrivialSpecialMembers = Record[Idx++];
1294   Data.DeclaredNonTrivialSpecialMembers = Record[Idx++];
1295   Data.HasIrrelevantDestructor = Record[Idx++];
1296   Data.HasConstexprNonCopyMoveConstructor = Record[Idx++];
1297   Data.DefaultedDefaultConstructorIsConstexpr = Record[Idx++];
1298   Data.HasConstexprDefaultConstructor = Record[Idx++];
1299   Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++];
1300   Data.ComputedVisibleConversions = Record[Idx++];
1301   Data.UserProvidedDefaultConstructor = Record[Idx++];
1302   Data.DeclaredSpecialMembers = Record[Idx++];
1303   Data.ImplicitCopyConstructorHasConstParam = Record[Idx++];
1304   Data.ImplicitCopyAssignmentHasConstParam = Record[Idx++];
1305   Data.HasDeclaredCopyConstructorWithConstParam = Record[Idx++];
1306   Data.HasDeclaredCopyAssignmentWithConstParam = Record[Idx++];
1307 
1308   Data.NumBases = Record[Idx++];
1309   if (Data.NumBases)
1310     Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
1311   Data.NumVBases = Record[Idx++];
1312   if (Data.NumVBases)
1313     Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
1314 
1315   Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx);
1316   Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx);
1317   assert(Data.Definition && "Data.Definition should be already set!");
1318   Data.FirstFriend = ReadDeclID(Record, Idx);
1319 
1320   if (Data.IsLambda) {
1321     typedef LambdaCapture Capture;
1322     CXXRecordDecl::LambdaDefinitionData &Lambda
1323       = static_cast<CXXRecordDecl::LambdaDefinitionData &>(Data);
1324     Lambda.Dependent = Record[Idx++];
1325     Lambda.IsGenericLambda = Record[Idx++];
1326     Lambda.CaptureDefault = Record[Idx++];
1327     Lambda.NumCaptures = Record[Idx++];
1328     Lambda.NumExplicitCaptures = Record[Idx++];
1329     Lambda.ManglingNumber = Record[Idx++];
1330     Lambda.ContextDecl = ReadDecl(Record, Idx);
1331     Lambda.Captures
1332       = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures);
1333     Capture *ToCapture = Lambda.Captures;
1334     Lambda.MethodTyInfo = GetTypeSourceInfo(Record, Idx);
1335     for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {
1336       SourceLocation Loc = ReadSourceLocation(Record, Idx);
1337       bool IsImplicit = Record[Idx++];
1338       LambdaCaptureKind Kind = static_cast<LambdaCaptureKind>(Record[Idx++]);
1339       switch (Kind) {
1340       case LCK_This:
1341       case LCK_VLAType:
1342         *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation());
1343         break;
1344       case LCK_ByCopy:
1345       case LCK_ByRef:
1346         VarDecl *Var = ReadDeclAs<VarDecl>(Record, Idx);
1347         SourceLocation EllipsisLoc = ReadSourceLocation(Record, Idx);
1348         *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
1349         break;
1350       }
1351     }
1352   }
1353 }
1354 
1355 void ASTDeclReader::MergeDefinitionData(
1356     CXXRecordDecl *D, struct CXXRecordDecl::DefinitionData &MergeDD) {
1357   assert(D->DefinitionData.getNotUpdated() &&
1358          "merging class definition into non-definition");
1359   auto &DD = *D->DefinitionData.getNotUpdated();
1360 
1361   // If the new definition has new special members, let the name lookup
1362   // code know that it needs to look in the new definition too.
1363   //
1364   // FIXME: We only need to do this if the merged definition declares members
1365   // that this definition did not declare, or if it defines members that this
1366   // definition did not define.
1367   if (MergeDD.DeclaredSpecialMembers && DD.Definition != MergeDD.Definition) {
1368     Reader.MergedLookups[DD.Definition].push_back(MergeDD.Definition);
1369     DD.Definition->setHasExternalVisibleStorage();
1370   }
1371 
1372   // FIXME: Move this out into a .def file?
1373   // FIXME: Issue a diagnostic on a mismatched MATCH_FIELD, rather than
1374   // asserting; this can happen in the case of an ODR violation.
1375   bool DetectedOdrViolation = false;
1376 #define OR_FIELD(Field) DD.Field |= MergeDD.Field;
1377 #define MATCH_FIELD(Field) \
1378     DetectedOdrViolation |= DD.Field != MergeDD.Field; \
1379     OR_FIELD(Field)
1380   MATCH_FIELD(UserDeclaredConstructor)
1381   MATCH_FIELD(UserDeclaredSpecialMembers)
1382   MATCH_FIELD(Aggregate)
1383   MATCH_FIELD(PlainOldData)
1384   MATCH_FIELD(Empty)
1385   MATCH_FIELD(Polymorphic)
1386   MATCH_FIELD(Abstract)
1387   MATCH_FIELD(IsStandardLayout)
1388   MATCH_FIELD(HasNoNonEmptyBases)
1389   MATCH_FIELD(HasPrivateFields)
1390   MATCH_FIELD(HasProtectedFields)
1391   MATCH_FIELD(HasPublicFields)
1392   MATCH_FIELD(HasMutableFields)
1393   MATCH_FIELD(HasVariantMembers)
1394   MATCH_FIELD(HasOnlyCMembers)
1395   MATCH_FIELD(HasInClassInitializer)
1396   MATCH_FIELD(HasUninitializedReferenceMember)
1397   MATCH_FIELD(NeedOverloadResolutionForMoveConstructor)
1398   MATCH_FIELD(NeedOverloadResolutionForMoveAssignment)
1399   MATCH_FIELD(NeedOverloadResolutionForDestructor)
1400   MATCH_FIELD(DefaultedMoveConstructorIsDeleted)
1401   MATCH_FIELD(DefaultedMoveAssignmentIsDeleted)
1402   MATCH_FIELD(DefaultedDestructorIsDeleted)
1403   OR_FIELD(HasTrivialSpecialMembers)
1404   OR_FIELD(DeclaredNonTrivialSpecialMembers)
1405   MATCH_FIELD(HasIrrelevantDestructor)
1406   OR_FIELD(HasConstexprNonCopyMoveConstructor)
1407   MATCH_FIELD(DefaultedDefaultConstructorIsConstexpr)
1408   OR_FIELD(HasConstexprDefaultConstructor)
1409   MATCH_FIELD(HasNonLiteralTypeFieldsOrBases)
1410   // ComputedVisibleConversions is handled below.
1411   MATCH_FIELD(UserProvidedDefaultConstructor)
1412   OR_FIELD(DeclaredSpecialMembers)
1413   MATCH_FIELD(ImplicitCopyConstructorHasConstParam)
1414   MATCH_FIELD(ImplicitCopyAssignmentHasConstParam)
1415   OR_FIELD(HasDeclaredCopyConstructorWithConstParam)
1416   OR_FIELD(HasDeclaredCopyAssignmentWithConstParam)
1417   MATCH_FIELD(IsLambda)
1418 #undef OR_FIELD
1419 #undef MATCH_FIELD
1420 
1421   if (DD.NumBases != MergeDD.NumBases || DD.NumVBases != MergeDD.NumVBases)
1422     DetectedOdrViolation = true;
1423   // FIXME: Issue a diagnostic if the base classes don't match when we come
1424   // to lazily load them.
1425 
1426   // FIXME: Issue a diagnostic if the list of conversion functions doesn't
1427   // match when we come to lazily load them.
1428   if (MergeDD.ComputedVisibleConversions && !DD.ComputedVisibleConversions) {
1429     DD.VisibleConversions = std::move(MergeDD.VisibleConversions);
1430     DD.ComputedVisibleConversions = true;
1431   }
1432 
1433   // FIXME: Issue a diagnostic if FirstFriend doesn't match when we come to
1434   // lazily load it.
1435 
1436   if (DD.IsLambda) {
1437     // FIXME: ODR-checking for merging lambdas (this happens, for instance,
1438     // when they occur within the body of a function template specialization).
1439   }
1440 
1441   if (DetectedOdrViolation)
1442     Reader.PendingOdrMergeFailures[DD.Definition].push_back(MergeDD.Definition);
1443 }
1444 
1445 void ASTDeclReader::ReadCXXRecordDefinition(CXXRecordDecl *D) {
1446   struct CXXRecordDecl::DefinitionData *DD;
1447   ASTContext &C = Reader.getContext();
1448 
1449   // Determine whether this is a lambda closure type, so that we can
1450   // allocate the appropriate DefinitionData structure.
1451   bool IsLambda = Record[Idx++];
1452   if (IsLambda)
1453     DD = new (C) CXXRecordDecl::LambdaDefinitionData(D, nullptr, false, false,
1454                                                      LCD_None);
1455   else
1456     DD = new (C) struct CXXRecordDecl::DefinitionData(D);
1457 
1458   ReadCXXDefinitionData(*DD, Record, Idx);
1459 
1460   // We might already have a definition for this record. This can happen either
1461   // because we're reading an update record, or because we've already done some
1462   // merging. Either way, just merge into it.
1463   if (auto *CanonDD = D->DefinitionData.getNotUpdated()) {
1464     if (CanonDD->Definition != DD->Definition)
1465       Reader.MergedDeclContexts.insert(
1466           std::make_pair(DD->Definition, CanonDD->Definition));
1467     MergeDefinitionData(D, *DD);
1468     return;
1469   }
1470 
1471   // Propagate the DefinitionData pointer to the canonical declaration, so
1472   // that all other deserialized declarations will see it.
1473   CXXRecordDecl *Canon = D->getCanonicalDecl();
1474   if (Canon == D) {
1475     D->DefinitionData = DD;
1476     D->IsCompleteDefinition = true;
1477   } else if (auto *CanonDD = Canon->DefinitionData.getNotUpdated()) {
1478     // We have already deserialized a definition of this record. This
1479     // definition is no longer really a definition. Note that the pre-existing
1480     // definition is the *real* definition.
1481     Reader.MergedDeclContexts.insert(
1482         std::make_pair(D, CanonDD->Definition));
1483     D->DefinitionData = Canon->DefinitionData;
1484     D->IsCompleteDefinition = false;
1485     MergeDefinitionData(D, *DD);
1486   } else {
1487     Canon->DefinitionData = DD;
1488     D->DefinitionData = Canon->DefinitionData;
1489     D->IsCompleteDefinition = true;
1490 
1491     // Note that we have deserialized a definition. Any declarations
1492     // deserialized before this one will be be given the DefinitionData
1493     // pointer at the end.
1494     Reader.PendingDefinitions.insert(D);
1495   }
1496 }
1497 
1498 ASTDeclReader::RedeclarableResult
1499 ASTDeclReader::VisitCXXRecordDeclImpl(CXXRecordDecl *D) {
1500   RedeclarableResult Redecl = VisitRecordDeclImpl(D);
1501 
1502   ASTContext &C = Reader.getContext();
1503 
1504   enum CXXRecKind {
1505     CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1506   };
1507   switch ((CXXRecKind)Record[Idx++]) {
1508   case CXXRecNotTemplate:
1509     // Merged when we merge the folding set entry in the primary template.
1510     if (!isa<ClassTemplateSpecializationDecl>(D))
1511       mergeRedeclarable(D, Redecl);
1512     break;
1513   case CXXRecTemplate: {
1514     // Merged when we merge the template.
1515     ClassTemplateDecl *Template = ReadDeclAs<ClassTemplateDecl>(Record, Idx);
1516     D->TemplateOrInstantiation = Template;
1517     if (!Template->getTemplatedDecl()) {
1518       // We've not actually loaded the ClassTemplateDecl yet, because we're
1519       // currently being loaded as its pattern. Rely on it to set up our
1520       // TypeForDecl (see VisitClassTemplateDecl).
1521       //
1522       // Beware: we do not yet know our canonical declaration, and may still
1523       // get merged once the surrounding class template has got off the ground.
1524       TypeIDForTypeDecl = 0;
1525     }
1526     break;
1527   }
1528   case CXXRecMemberSpecialization: {
1529     CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx);
1530     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
1531     SourceLocation POI = ReadSourceLocation(Record, Idx);
1532     MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1533     MSI->setPointOfInstantiation(POI);
1534     D->TemplateOrInstantiation = MSI;
1535     mergeRedeclarable(D, Redecl);
1536     break;
1537   }
1538   }
1539 
1540   bool WasDefinition = Record[Idx++];
1541   if (WasDefinition)
1542     ReadCXXRecordDefinition(D);
1543   else
1544     // Propagate DefinitionData pointer from the canonical declaration.
1545     D->DefinitionData = D->getCanonicalDecl()->DefinitionData;
1546 
1547   // Lazily load the key function to avoid deserializing every method so we can
1548   // compute it.
1549   if (WasDefinition) {
1550     DeclID KeyFn = ReadDeclID(Record, Idx);
1551     if (KeyFn && D->IsCompleteDefinition)
1552       // FIXME: This is wrong for the ARM ABI, where some other module may have
1553       // made this function no longer be a key function. We need an update
1554       // record or similar for that case.
1555       C.KeyFunctions[D] = KeyFn;
1556   }
1557 
1558   return Redecl;
1559 }
1560 
1561 void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
1562   VisitFunctionDecl(D);
1563 
1564   unsigned NumOverridenMethods = Record[Idx++];
1565   if (D->isCanonicalDecl()) {
1566     while (NumOverridenMethods--) {
1567       // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
1568       // MD may be initializing.
1569       if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx))
1570         Reader.getContext().addOverriddenMethod(D, MD->getCanonicalDecl());
1571     }
1572   } else {
1573     // We don't care about which declarations this used to override; we get
1574     // the relevant information from the canonical declaration.
1575     Idx += NumOverridenMethods;
1576   }
1577 }
1578 
1579 void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
1580   VisitCXXMethodDecl(D);
1581 
1582   if (auto *CD = ReadDeclAs<CXXConstructorDecl>(Record, Idx))
1583     D->setInheritedConstructor(CD);
1584   D->IsExplicitSpecified = Record[Idx++];
1585   // FIXME: We should defer loading this until we need the constructor's body.
1586   std::tie(D->CtorInitializers, D->NumCtorInitializers) =
1587       Reader.ReadCXXCtorInitializers(F, Record, Idx);
1588 }
1589 
1590 void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
1591   VisitCXXMethodDecl(D);
1592 
1593   D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
1594 }
1595 
1596 void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
1597   VisitCXXMethodDecl(D);
1598   D->IsExplicitSpecified = Record[Idx++];
1599 }
1600 
1601 void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
1602   VisitDecl(D);
1603   D->ImportedAndComplete.setPointer(readModule(Record, Idx));
1604   D->ImportedAndComplete.setInt(Record[Idx++]);
1605   SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1);
1606   for (unsigned I = 0, N = Record.back(); I != N; ++I)
1607     StoredLocs[I] = ReadSourceLocation(Record, Idx);
1608   ++Idx; // The number of stored source locations.
1609 }
1610 
1611 void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
1612   VisitDecl(D);
1613   D->setColonLoc(ReadSourceLocation(Record, Idx));
1614 }
1615 
1616 void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
1617   VisitDecl(D);
1618   if (Record[Idx++]) // hasFriendDecl
1619     D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
1620   else
1621     D->Friend = GetTypeSourceInfo(Record, Idx);
1622   for (unsigned i = 0; i != D->NumTPLists; ++i)
1623     D->getTPLists()[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
1624   D->NextFriend = ReadDeclID(Record, Idx);
1625   D->UnsupportedFriend = (Record[Idx++] != 0);
1626   D->FriendLoc = ReadSourceLocation(Record, Idx);
1627 }
1628 
1629 void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
1630   VisitDecl(D);
1631   unsigned NumParams = Record[Idx++];
1632   D->NumParams = NumParams;
1633   D->Params = new TemplateParameterList*[NumParams];
1634   for (unsigned i = 0; i != NumParams; ++i)
1635     D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
1636   if (Record[Idx++]) // HasFriendDecl
1637     D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
1638   else
1639     D->Friend = GetTypeSourceInfo(Record, Idx);
1640   D->FriendLoc = ReadSourceLocation(Record, Idx);
1641 }
1642 
1643 DeclID ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
1644   VisitNamedDecl(D);
1645 
1646   DeclID PatternID = ReadDeclID(Record, Idx);
1647   NamedDecl *TemplatedDecl = cast_or_null<NamedDecl>(Reader.GetDecl(PatternID));
1648   TemplateParameterList* TemplateParams
1649       = Reader.ReadTemplateParameterList(F, Record, Idx);
1650   D->init(TemplatedDecl, TemplateParams);
1651 
1652   // FIXME: If this is a redeclaration of a template from another module, handle
1653   // inheritance of default template arguments.
1654 
1655   return PatternID;
1656 }
1657 
1658 ASTDeclReader::RedeclarableResult
1659 ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
1660   RedeclarableResult Redecl = VisitRedeclarable(D);
1661 
1662   // Make sure we've allocated the Common pointer first. We do this before
1663   // VisitTemplateDecl so that getCommonPtr() can be used during initialization.
1664   RedeclarableTemplateDecl *CanonD = D->getCanonicalDecl();
1665   if (!CanonD->Common) {
1666     CanonD->Common = CanonD->newCommon(Reader.getContext());
1667     Reader.PendingDefinitions.insert(CanonD);
1668   }
1669   D->Common = CanonD->Common;
1670 
1671   // If this is the first declaration of the template, fill in the information
1672   // for the 'common' pointer.
1673   if (ThisDeclID == Redecl.getFirstID()) {
1674     if (RedeclarableTemplateDecl *RTD
1675           = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) {
1676       assert(RTD->getKind() == D->getKind() &&
1677              "InstantiatedFromMemberTemplate kind mismatch");
1678       D->setInstantiatedFromMemberTemplate(RTD);
1679       if (Record[Idx++])
1680         D->setMemberSpecialization();
1681     }
1682   }
1683 
1684   DeclID PatternID = VisitTemplateDecl(D);
1685   D->IdentifierNamespace = Record[Idx++];
1686 
1687   mergeRedeclarable(D, Redecl, PatternID);
1688 
1689   // If we merged the template with a prior declaration chain, merge the common
1690   // pointer.
1691   // FIXME: Actually merge here, don't just overwrite.
1692   D->Common = D->getCanonicalDecl()->Common;
1693 
1694   return Redecl;
1695 }
1696 
1697 void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
1698   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
1699 
1700   if (ThisDeclID == Redecl.getFirstID()) {
1701     // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
1702     // the specializations.
1703     SmallVector<serialization::DeclID, 2> SpecIDs;
1704     SpecIDs.push_back(0);
1705 
1706     // Specializations.
1707     unsigned Size = Record[Idx++];
1708     SpecIDs[0] += Size;
1709     for (unsigned I = 0; I != Size; ++I)
1710       SpecIDs.push_back(ReadDeclID(Record, Idx));
1711 
1712     // Partial specializations.
1713     Size = Record[Idx++];
1714     SpecIDs[0] += Size;
1715     for (unsigned I = 0; I != Size; ++I)
1716       SpecIDs.push_back(ReadDeclID(Record, Idx));
1717 
1718     ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1719     if (SpecIDs[0]) {
1720       typedef serialization::DeclID DeclID;
1721 
1722       // FIXME: Append specializations!
1723       CommonPtr->LazySpecializations
1724         = new (Reader.getContext()) DeclID [SpecIDs.size()];
1725       memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1726              SpecIDs.size() * sizeof(DeclID));
1727     }
1728   }
1729 
1730   if (D->getTemplatedDecl()->TemplateOrInstantiation) {
1731     // We were loaded before our templated declaration was. We've not set up
1732     // its corresponding type yet (see VisitCXXRecordDeclImpl), so reconstruct
1733     // it now.
1734     Reader.Context.getInjectedClassNameType(
1735         D->getTemplatedDecl(), D->getInjectedClassNameSpecialization());
1736   }
1737 }
1738 
1739 /// TODO: Unify with ClassTemplateDecl version?
1740 ///       May require unifying ClassTemplateDecl and
1741 ///        VarTemplateDecl beyond TemplateDecl...
1742 void ASTDeclReader::VisitVarTemplateDecl(VarTemplateDecl *D) {
1743   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
1744 
1745   if (ThisDeclID == Redecl.getFirstID()) {
1746     // This VarTemplateDecl owns a CommonPtr; read it to keep track of all of
1747     // the specializations.
1748     SmallVector<serialization::DeclID, 2> SpecIDs;
1749     SpecIDs.push_back(0);
1750 
1751     // Specializations.
1752     unsigned Size = Record[Idx++];
1753     SpecIDs[0] += Size;
1754     for (unsigned I = 0; I != Size; ++I)
1755       SpecIDs.push_back(ReadDeclID(Record, Idx));
1756 
1757     // Partial specializations.
1758     Size = Record[Idx++];
1759     SpecIDs[0] += Size;
1760     for (unsigned I = 0; I != Size; ++I)
1761       SpecIDs.push_back(ReadDeclID(Record, Idx));
1762 
1763     VarTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1764     if (SpecIDs[0]) {
1765       typedef serialization::DeclID DeclID;
1766 
1767       // FIXME: Append specializations!
1768       CommonPtr->LazySpecializations =
1769           new (Reader.getContext()) DeclID[SpecIDs.size()];
1770       memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1771              SpecIDs.size() * sizeof(DeclID));
1772     }
1773   }
1774 }
1775 
1776 ASTDeclReader::RedeclarableResult
1777 ASTDeclReader::VisitClassTemplateSpecializationDeclImpl(
1778     ClassTemplateSpecializationDecl *D) {
1779   RedeclarableResult Redecl = VisitCXXRecordDeclImpl(D);
1780 
1781   ASTContext &C = Reader.getContext();
1782   if (Decl *InstD = ReadDecl(Record, Idx)) {
1783     if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
1784       D->SpecializedTemplate = CTD;
1785     } else {
1786       SmallVector<TemplateArgument, 8> TemplArgs;
1787       Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1788       TemplateArgumentList *ArgList
1789         = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1790                                            TemplArgs.size());
1791       ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS
1792           = new (C) ClassTemplateSpecializationDecl::
1793                                              SpecializedPartialSpecialization();
1794       PS->PartialSpecialization
1795           = cast<ClassTemplatePartialSpecializationDecl>(InstD);
1796       PS->TemplateArgs = ArgList;
1797       D->SpecializedTemplate = PS;
1798     }
1799   }
1800 
1801   SmallVector<TemplateArgument, 8> TemplArgs;
1802   Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1803   D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1804                                                      TemplArgs.size());
1805   D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
1806   D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
1807 
1808   bool writtenAsCanonicalDecl = Record[Idx++];
1809   if (writtenAsCanonicalDecl) {
1810     ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx);
1811     if (D->isCanonicalDecl()) { // It's kept in the folding set.
1812       // Set this as, or find, the canonical declaration for this specialization
1813       ClassTemplateSpecializationDecl *CanonSpec;
1814       if (ClassTemplatePartialSpecializationDecl *Partial =
1815               dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
1816         CanonSpec = CanonPattern->getCommonPtr()->PartialSpecializations
1817             .GetOrInsertNode(Partial);
1818       } else {
1819         CanonSpec =
1820             CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
1821       }
1822       // If there was already a canonical specialization, merge into it.
1823       if (CanonSpec != D) {
1824         mergeRedeclarable<TagDecl>(D, CanonSpec, Redecl);
1825 
1826         // This declaration might be a definition. Merge with any existing
1827         // definition.
1828         if (auto *DDD = D->DefinitionData.getNotUpdated()) {
1829           if (auto *CanonDD = CanonSpec->DefinitionData.getNotUpdated()) {
1830             MergeDefinitionData(CanonSpec, *DDD);
1831             Reader.PendingDefinitions.erase(D);
1832             Reader.MergedDeclContexts.insert(
1833                 std::make_pair(D, CanonDD->Definition));
1834             D->IsCompleteDefinition = false;
1835           } else {
1836             CanonSpec->DefinitionData = D->DefinitionData;
1837           }
1838         }
1839         D->DefinitionData = CanonSpec->DefinitionData;
1840       }
1841     }
1842   }
1843 
1844   // Explicit info.
1845   if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
1846     ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo
1847         = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
1848     ExplicitInfo->TypeAsWritten = TyInfo;
1849     ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1850     ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
1851     D->ExplicitInfo = ExplicitInfo;
1852   }
1853 
1854   return Redecl;
1855 }
1856 
1857 void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
1858                                     ClassTemplatePartialSpecializationDecl *D) {
1859   RedeclarableResult Redecl = VisitClassTemplateSpecializationDeclImpl(D);
1860 
1861   D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
1862   D->ArgsAsWritten = Reader.ReadASTTemplateArgumentListInfo(F, Record, Idx);
1863 
1864   // These are read/set from/to the first declaration.
1865   if (ThisDeclID == Redecl.getFirstID()) {
1866     D->InstantiatedFromMember.setPointer(
1867       ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx));
1868     D->InstantiatedFromMember.setInt(Record[Idx++]);
1869   }
1870 }
1871 
1872 void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
1873                                     ClassScopeFunctionSpecializationDecl *D) {
1874   VisitDecl(D);
1875   D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx);
1876 }
1877 
1878 void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
1879   RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
1880 
1881   if (ThisDeclID == Redecl.getFirstID()) {
1882     // This FunctionTemplateDecl owns a CommonPtr; read it.
1883 
1884     // Read the function specialization declaration IDs. The specializations
1885     // themselves will be loaded if they're needed.
1886     if (unsigned NumSpecs = Record[Idx++]) {
1887       // FIXME: Append specializations!
1888       FunctionTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1889       CommonPtr->LazySpecializations = new (Reader.getContext())
1890           serialization::DeclID[NumSpecs + 1];
1891       CommonPtr->LazySpecializations[0] = NumSpecs;
1892       for (unsigned I = 0; I != NumSpecs; ++I)
1893         CommonPtr->LazySpecializations[I + 1] = ReadDeclID(Record, Idx);
1894     }
1895   }
1896 }
1897 
1898 /// TODO: Unify with ClassTemplateSpecializationDecl version?
1899 ///       May require unifying ClassTemplate(Partial)SpecializationDecl and
1900 ///        VarTemplate(Partial)SpecializationDecl with a new data
1901 ///        structure Template(Partial)SpecializationDecl, and
1902 ///        using Template(Partial)SpecializationDecl as input type.
1903 ASTDeclReader::RedeclarableResult
1904 ASTDeclReader::VisitVarTemplateSpecializationDeclImpl(
1905     VarTemplateSpecializationDecl *D) {
1906   RedeclarableResult Redecl = VisitVarDeclImpl(D);
1907 
1908   ASTContext &C = Reader.getContext();
1909   if (Decl *InstD = ReadDecl(Record, Idx)) {
1910     if (VarTemplateDecl *VTD = dyn_cast<VarTemplateDecl>(InstD)) {
1911       D->SpecializedTemplate = VTD;
1912     } else {
1913       SmallVector<TemplateArgument, 8> TemplArgs;
1914       Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1915       TemplateArgumentList *ArgList = TemplateArgumentList::CreateCopy(
1916           C, TemplArgs.data(), TemplArgs.size());
1917       VarTemplateSpecializationDecl::SpecializedPartialSpecialization *PS =
1918           new (C)
1919           VarTemplateSpecializationDecl::SpecializedPartialSpecialization();
1920       PS->PartialSpecialization =
1921           cast<VarTemplatePartialSpecializationDecl>(InstD);
1922       PS->TemplateArgs = ArgList;
1923       D->SpecializedTemplate = PS;
1924     }
1925   }
1926 
1927   // Explicit info.
1928   if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
1929     VarTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo =
1930         new (C) VarTemplateSpecializationDecl::ExplicitSpecializationInfo;
1931     ExplicitInfo->TypeAsWritten = TyInfo;
1932     ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1933     ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
1934     D->ExplicitInfo = ExplicitInfo;
1935   }
1936 
1937   SmallVector<TemplateArgument, 8> TemplArgs;
1938   Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1939   D->TemplateArgs =
1940       TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
1941   D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
1942   D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
1943 
1944   bool writtenAsCanonicalDecl = Record[Idx++];
1945   if (writtenAsCanonicalDecl) {
1946     VarTemplateDecl *CanonPattern = ReadDeclAs<VarTemplateDecl>(Record, Idx);
1947     if (D->isCanonicalDecl()) { // It's kept in the folding set.
1948       if (VarTemplatePartialSpecializationDecl *Partial =
1949               dyn_cast<VarTemplatePartialSpecializationDecl>(D)) {
1950         CanonPattern->getCommonPtr()->PartialSpecializations
1951             .GetOrInsertNode(Partial);
1952       } else {
1953         CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
1954       }
1955     }
1956   }
1957 
1958   return Redecl;
1959 }
1960 
1961 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
1962 ///       May require unifying ClassTemplate(Partial)SpecializationDecl and
1963 ///        VarTemplate(Partial)SpecializationDecl with a new data
1964 ///        structure Template(Partial)SpecializationDecl, and
1965 ///        using Template(Partial)SpecializationDecl as input type.
1966 void ASTDeclReader::VisitVarTemplatePartialSpecializationDecl(
1967     VarTemplatePartialSpecializationDecl *D) {
1968   RedeclarableResult Redecl = VisitVarTemplateSpecializationDeclImpl(D);
1969 
1970   D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
1971   D->ArgsAsWritten = Reader.ReadASTTemplateArgumentListInfo(F, Record, Idx);
1972 
1973   // These are read/set from/to the first declaration.
1974   if (ThisDeclID == Redecl.getFirstID()) {
1975     D->InstantiatedFromMember.setPointer(
1976         ReadDeclAs<VarTemplatePartialSpecializationDecl>(Record, Idx));
1977     D->InstantiatedFromMember.setInt(Record[Idx++]);
1978   }
1979 }
1980 
1981 void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
1982   VisitTypeDecl(D);
1983 
1984   D->setDeclaredWithTypename(Record[Idx++]);
1985 
1986   bool Inherited = Record[Idx++];
1987   TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx);
1988   D->setDefaultArgument(DefArg, Inherited);
1989 }
1990 
1991 void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
1992   VisitDeclaratorDecl(D);
1993   // TemplateParmPosition.
1994   D->setDepth(Record[Idx++]);
1995   D->setPosition(Record[Idx++]);
1996   if (D->isExpandedParameterPack()) {
1997     void **Data = reinterpret_cast<void **>(D + 1);
1998     for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1999       Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr();
2000       Data[2*I + 1] = GetTypeSourceInfo(Record, Idx);
2001     }
2002   } else {
2003     // Rest of NonTypeTemplateParmDecl.
2004     D->ParameterPack = Record[Idx++];
2005     if (Record[Idx++]) {
2006       Expr *DefArg = Reader.ReadExpr(F);
2007       bool Inherited = Record[Idx++];
2008       D->setDefaultArgument(DefArg, Inherited);
2009    }
2010   }
2011 }
2012 
2013 void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
2014   VisitTemplateDecl(D);
2015   // TemplateParmPosition.
2016   D->setDepth(Record[Idx++]);
2017   D->setPosition(Record[Idx++]);
2018   if (D->isExpandedParameterPack()) {
2019     void **Data = reinterpret_cast<void **>(D + 1);
2020     for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2021          I != N; ++I)
2022       Data[I] = Reader.ReadTemplateParameterList(F, Record, Idx);
2023   } else {
2024     // Rest of TemplateTemplateParmDecl.
2025     TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
2026     bool IsInherited = Record[Idx++];
2027     D->setDefaultArgument(Arg, IsInherited);
2028     D->ParameterPack = Record[Idx++];
2029   }
2030 }
2031 
2032 void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
2033   VisitRedeclarableTemplateDecl(D);
2034 }
2035 
2036 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
2037   VisitDecl(D);
2038   D->AssertExprAndFailed.setPointer(Reader.ReadExpr(F));
2039   D->AssertExprAndFailed.setInt(Record[Idx++]);
2040   D->Message = cast<StringLiteral>(Reader.ReadExpr(F));
2041   D->RParenLoc = ReadSourceLocation(Record, Idx);
2042 }
2043 
2044 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) {
2045   VisitDecl(D);
2046 }
2047 
2048 std::pair<uint64_t, uint64_t>
2049 ASTDeclReader::VisitDeclContext(DeclContext *DC) {
2050   uint64_t LexicalOffset = Record[Idx++];
2051   uint64_t VisibleOffset = Record[Idx++];
2052   return std::make_pair(LexicalOffset, VisibleOffset);
2053 }
2054 
2055 template <typename T>
2056 ASTDeclReader::RedeclarableResult
2057 ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
2058   DeclID FirstDeclID = ReadDeclID(Record, Idx);
2059 
2060   // 0 indicates that this declaration was the only declaration of its entity,
2061   // and is used for space optimization.
2062   if (FirstDeclID == 0)
2063     FirstDeclID = ThisDeclID;
2064 
2065   T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
2066   if (FirstDecl != D) {
2067     // We delay loading of the redeclaration chain to avoid deeply nested calls.
2068     // We temporarily set the first (canonical) declaration as the previous one
2069     // which is the one that matters and mark the real previous DeclID to be
2070     // loaded & attached later on.
2071     D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl);
2072   }
2073 
2074   // Note that this declaration has been deserialized.
2075   Reader.RedeclsDeserialized.insert(static_cast<T *>(D));
2076 
2077   // The result structure takes care to note that we need to load the
2078   // other declaration chains for this ID.
2079   return RedeclarableResult(Reader, FirstDeclID,
2080                             static_cast<T *>(D)->getKind());
2081 }
2082 
2083 /// \brief Attempts to merge the given declaration (D) with another declaration
2084 /// of the same entity.
2085 template<typename T>
2086 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase,
2087                                       RedeclarableResult &Redecl,
2088                                       DeclID TemplatePatternID) {
2089   T *D = static_cast<T*>(DBase);
2090   T *DCanon = D->getCanonicalDecl();
2091   if (D != DCanon &&
2092       // IDs < NUM_PREDEF_DECL_IDS are not loaded from an AST file.
2093       Redecl.getFirstID() >= NUM_PREDEF_DECL_IDS &&
2094       (!Reader.getContext().getLangOpts().Modules ||
2095        Reader.getOwningModuleFile(DCanon) == Reader.getOwningModuleFile(D))) {
2096     // All redeclarations between this declaration and its originally-canonical
2097     // declaration get pulled in when we load DCanon; we don't need to
2098     // perform any more merging now.
2099     Redecl.suppress();
2100   }
2101 
2102   // If modules are not available, there is no reason to perform this merge.
2103   if (!Reader.getContext().getLangOpts().Modules)
2104     return;
2105 
2106   if (FindExistingResult ExistingRes = findExisting(D))
2107     if (T *Existing = ExistingRes)
2108       mergeRedeclarable(D, Existing, Redecl, TemplatePatternID);
2109 }
2110 
2111 /// \brief "Cast" to type T, asserting if we don't have an implicit conversion.
2112 /// We use this to put code in a template that will only be valid for certain
2113 /// instantiations.
2114 template<typename T> static T assert_cast(T t) { return t; }
2115 template<typename T> static T assert_cast(...) {
2116   llvm_unreachable("bad assert_cast");
2117 }
2118 
2119 /// \brief Merge together the pattern declarations from two template
2120 /// declarations.
2121 void ASTDeclReader::mergeTemplatePattern(RedeclarableTemplateDecl *D,
2122                                          RedeclarableTemplateDecl *Existing,
2123                                          DeclID DsID) {
2124   auto *DPattern = D->getTemplatedDecl();
2125   auto *ExistingPattern = Existing->getTemplatedDecl();
2126   RedeclarableResult Result(Reader, DPattern->getCanonicalDecl()->getGlobalID(),
2127                             DPattern->getKind());
2128   if (auto *DClass = dyn_cast<CXXRecordDecl>(DPattern)) {
2129     // Merge with any existing definition.
2130     // FIXME: This is duplicated in several places. Refactor.
2131     auto *ExistingClass =
2132         cast<CXXRecordDecl>(ExistingPattern)->getCanonicalDecl();
2133     if (auto *DDD = DClass->DefinitionData.getNotUpdated()) {
2134       if (auto *ExistingDD = ExistingClass->DefinitionData.getNotUpdated()) {
2135         MergeDefinitionData(ExistingClass, *DDD);
2136         Reader.PendingDefinitions.erase(DClass);
2137         Reader.MergedDeclContexts.insert(
2138             std::make_pair(DClass, ExistingDD->Definition));
2139         DClass->IsCompleteDefinition = false;
2140       } else {
2141         ExistingClass->DefinitionData = DClass->DefinitionData;
2142       }
2143     }
2144     DClass->DefinitionData = ExistingClass->DefinitionData;
2145 
2146     return mergeRedeclarable(DClass, cast<TagDecl>(ExistingPattern),
2147                              Result);
2148   }
2149   if (auto *DFunction = dyn_cast<FunctionDecl>(DPattern))
2150     return mergeRedeclarable(DFunction, cast<FunctionDecl>(ExistingPattern),
2151                              Result);
2152   if (auto *DVar = dyn_cast<VarDecl>(DPattern))
2153     return mergeRedeclarable(DVar, cast<VarDecl>(ExistingPattern), Result);
2154   if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern))
2155     return mergeRedeclarable(DAlias, cast<TypedefNameDecl>(ExistingPattern),
2156                              Result);
2157   llvm_unreachable("merged an unknown kind of redeclarable template");
2158 }
2159 
2160 /// \brief Attempts to merge the given declaration (D) with another declaration
2161 /// of the same entity.
2162 template<typename T>
2163 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase, T *Existing,
2164                                       RedeclarableResult &Redecl,
2165                                       DeclID TemplatePatternID) {
2166   T *D = static_cast<T*>(DBase);
2167   T *ExistingCanon = Existing->getCanonicalDecl();
2168   T *DCanon = D->getCanonicalDecl();
2169   if (ExistingCanon != DCanon) {
2170     assert(DCanon->getGlobalID() == Redecl.getFirstID());
2171 
2172     // Have our redeclaration link point back at the canonical declaration
2173     // of the existing declaration, so that this declaration has the
2174     // appropriate canonical declaration.
2175     D->RedeclLink = Redeclarable<T>::PreviousDeclLink(ExistingCanon);
2176 
2177     // When we merge a namespace, update its pointer to the first namespace.
2178     if (auto *Namespace = dyn_cast<NamespaceDecl>(D))
2179       Namespace->AnonOrFirstNamespaceAndInline.setPointer(
2180           assert_cast<NamespaceDecl*>(ExistingCanon));
2181 
2182     // When we merge a template, merge its pattern.
2183     if (auto *DTemplate = dyn_cast<RedeclarableTemplateDecl>(D))
2184       mergeTemplatePattern(
2185           DTemplate, assert_cast<RedeclarableTemplateDecl*>(ExistingCanon),
2186           TemplatePatternID);
2187 
2188     // If this declaration was the canonical declaration, make a note of
2189     // that. We accept the linear algorithm here because the number of
2190     // unique canonical declarations of an entity should always be tiny.
2191     if (DCanon == D) {
2192       SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon];
2193       if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID())
2194             == Merged.end())
2195         Merged.push_back(Redecl.getFirstID());
2196     }
2197   }
2198 }
2199 
2200 /// \brief Attempts to merge the given declaration (D) with another declaration
2201 /// of the same entity, for the case where the entity is not actually
2202 /// redeclarable. This happens, for instance, when merging the fields of
2203 /// identical class definitions from two different modules.
2204 template<typename T>
2205 void ASTDeclReader::mergeMergeable(Mergeable<T> *D) {
2206   // If modules are not available, there is no reason to perform this merge.
2207   if (!Reader.getContext().getLangOpts().Modules)
2208     return;
2209 
2210   // ODR-based merging is only performed in C++. In C, identically-named things
2211   // in different translation units are not redeclarations (but may still have
2212   // compatible types).
2213   if (!Reader.getContext().getLangOpts().CPlusPlus)
2214     return;
2215 
2216   if (FindExistingResult ExistingRes = findExisting(static_cast<T*>(D)))
2217     if (T *Existing = ExistingRes)
2218       Reader.Context.setPrimaryMergedDecl(static_cast<T*>(D),
2219                                           Existing->getCanonicalDecl());
2220 }
2221 
2222 void ASTDeclReader::VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D) {
2223   VisitDecl(D);
2224   unsigned NumVars = D->varlist_size();
2225   SmallVector<Expr *, 16> Vars;
2226   Vars.reserve(NumVars);
2227   for (unsigned i = 0; i != NumVars; ++i) {
2228     Vars.push_back(Reader.ReadExpr(F));
2229   }
2230   D->setVars(Vars);
2231 }
2232 
2233 //===----------------------------------------------------------------------===//
2234 // Attribute Reading
2235 //===----------------------------------------------------------------------===//
2236 
2237 /// \brief Reads attributes from the current stream position.
2238 void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs,
2239                                const RecordData &Record, unsigned &Idx) {
2240   for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) {
2241     Attr *New = nullptr;
2242     attr::Kind Kind = (attr::Kind)Record[Idx++];
2243     SourceRange Range = ReadSourceRange(F, Record, Idx);
2244 
2245 #include "clang/Serialization/AttrPCHRead.inc"
2246 
2247     assert(New && "Unable to decode attribute?");
2248     Attrs.push_back(New);
2249   }
2250 }
2251 
2252 //===----------------------------------------------------------------------===//
2253 // ASTReader Implementation
2254 //===----------------------------------------------------------------------===//
2255 
2256 /// \brief Note that we have loaded the declaration with the given
2257 /// Index.
2258 ///
2259 /// This routine notes that this declaration has already been loaded,
2260 /// so that future GetDecl calls will return this declaration rather
2261 /// than trying to load a new declaration.
2262 inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
2263   assert(!DeclsLoaded[Index] && "Decl loaded twice?");
2264   DeclsLoaded[Index] = D;
2265 }
2266 
2267 
2268 /// \brief Determine whether the consumer will be interested in seeing
2269 /// this declaration (via HandleTopLevelDecl).
2270 ///
2271 /// This routine should return true for anything that might affect
2272 /// code generation, e.g., inline function definitions, Objective-C
2273 /// declarations with metadata, etc.
2274 static bool isConsumerInterestedIn(Decl *D, bool HasBody) {
2275   // An ObjCMethodDecl is never considered as "interesting" because its
2276   // implementation container always is.
2277 
2278   if (isa<FileScopeAsmDecl>(D) ||
2279       isa<ObjCProtocolDecl>(D) ||
2280       isa<ObjCImplDecl>(D) ||
2281       isa<ImportDecl>(D) ||
2282       isa<OMPThreadPrivateDecl>(D))
2283     return true;
2284   if (VarDecl *Var = dyn_cast<VarDecl>(D))
2285     return Var->isFileVarDecl() &&
2286            Var->isThisDeclarationADefinition() == VarDecl::Definition;
2287   if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
2288     return Func->doesThisDeclarationHaveABody() || HasBody;
2289 
2290   return false;
2291 }
2292 
2293 /// \brief Get the correct cursor and offset for loading a declaration.
2294 ASTReader::RecordLocation
2295 ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) {
2296   // See if there's an override.
2297   DeclReplacementMap::iterator It = ReplacedDecls.find(ID);
2298   if (It != ReplacedDecls.end()) {
2299     RawLocation = It->second.RawLoc;
2300     return RecordLocation(It->second.Mod, It->second.Offset);
2301   }
2302 
2303   GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
2304   assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
2305   ModuleFile *M = I->second;
2306   const DeclOffset &
2307     DOffs =  M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
2308   RawLocation = DOffs.Loc;
2309   return RecordLocation(M, DOffs.BitOffset);
2310 }
2311 
2312 ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
2313   ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I
2314     = GlobalBitOffsetsMap.find(GlobalOffset);
2315 
2316   assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
2317   return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
2318 }
2319 
2320 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) {
2321   return LocalOffset + M.GlobalBitOffset;
2322 }
2323 
2324 static bool isSameTemplateParameterList(const TemplateParameterList *X,
2325                                         const TemplateParameterList *Y);
2326 
2327 /// \brief Determine whether two template parameters are similar enough
2328 /// that they may be used in declarations of the same template.
2329 static bool isSameTemplateParameter(const NamedDecl *X,
2330                                     const NamedDecl *Y) {
2331   if (X->getKind() != Y->getKind())
2332     return false;
2333 
2334   if (const TemplateTypeParmDecl *TX = dyn_cast<TemplateTypeParmDecl>(X)) {
2335     const TemplateTypeParmDecl *TY = cast<TemplateTypeParmDecl>(Y);
2336     return TX->isParameterPack() == TY->isParameterPack();
2337   }
2338 
2339   if (const NonTypeTemplateParmDecl *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) {
2340     const NonTypeTemplateParmDecl *TY = cast<NonTypeTemplateParmDecl>(Y);
2341     return TX->isParameterPack() == TY->isParameterPack() &&
2342            TX->getASTContext().hasSameType(TX->getType(), TY->getType());
2343   }
2344 
2345   const TemplateTemplateParmDecl *TX = cast<TemplateTemplateParmDecl>(X);
2346   const TemplateTemplateParmDecl *TY = cast<TemplateTemplateParmDecl>(Y);
2347   return TX->isParameterPack() == TY->isParameterPack() &&
2348          isSameTemplateParameterList(TX->getTemplateParameters(),
2349                                      TY->getTemplateParameters());
2350 }
2351 
2352 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) {
2353   if (auto *NS = X->getAsNamespace())
2354     return NS;
2355   if (auto *NAS = X->getAsNamespaceAlias())
2356     return NAS->getNamespace();
2357   return nullptr;
2358 }
2359 
2360 static bool isSameQualifier(const NestedNameSpecifier *X,
2361                             const NestedNameSpecifier *Y) {
2362   if (auto *NSX = getNamespace(X)) {
2363     auto *NSY = getNamespace(Y);
2364     if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl())
2365       return false;
2366   } else if (X->getKind() != Y->getKind())
2367     return false;
2368 
2369   // FIXME: For namespaces and types, we're permitted to check that the entity
2370   // is named via the same tokens. We should probably do so.
2371   switch (X->getKind()) {
2372   case NestedNameSpecifier::Identifier:
2373     if (X->getAsIdentifier() != Y->getAsIdentifier())
2374       return false;
2375     break;
2376   case NestedNameSpecifier::Namespace:
2377   case NestedNameSpecifier::NamespaceAlias:
2378     // We've already checked that we named the same namespace.
2379     break;
2380   case NestedNameSpecifier::TypeSpec:
2381   case NestedNameSpecifier::TypeSpecWithTemplate:
2382     if (X->getAsType()->getCanonicalTypeInternal() !=
2383         Y->getAsType()->getCanonicalTypeInternal())
2384       return false;
2385     break;
2386   case NestedNameSpecifier::Global:
2387   case NestedNameSpecifier::Super:
2388     return true;
2389   }
2390 
2391   // Recurse into earlier portion of NNS, if any.
2392   auto *PX = X->getPrefix();
2393   auto *PY = Y->getPrefix();
2394   if (PX && PY)
2395     return isSameQualifier(PX, PY);
2396   return !PX && !PY;
2397 }
2398 
2399 /// \brief Determine whether two template parameter lists are similar enough
2400 /// that they may be used in declarations of the same template.
2401 static bool isSameTemplateParameterList(const TemplateParameterList *X,
2402                                         const TemplateParameterList *Y) {
2403   if (X->size() != Y->size())
2404     return false;
2405 
2406   for (unsigned I = 0, N = X->size(); I != N; ++I)
2407     if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I)))
2408       return false;
2409 
2410   return true;
2411 }
2412 
2413 /// \brief Determine whether the two declarations refer to the same entity.
2414 static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
2415   assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
2416 
2417   if (X == Y)
2418     return true;
2419 
2420   // Must be in the same context.
2421   if (!X->getDeclContext()->getRedeclContext()->Equals(
2422          Y->getDeclContext()->getRedeclContext()))
2423     return false;
2424 
2425   // Two typedefs refer to the same entity if they have the same underlying
2426   // type.
2427   if (TypedefNameDecl *TypedefX = dyn_cast<TypedefNameDecl>(X))
2428     if (TypedefNameDecl *TypedefY = dyn_cast<TypedefNameDecl>(Y))
2429       return X->getASTContext().hasSameType(TypedefX->getUnderlyingType(),
2430                                             TypedefY->getUnderlyingType());
2431 
2432   // Must have the same kind.
2433   if (X->getKind() != Y->getKind())
2434     return false;
2435 
2436   // Objective-C classes and protocols with the same name always match.
2437   if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X))
2438     return true;
2439 
2440   if (isa<ClassTemplateSpecializationDecl>(X)) {
2441     // No need to handle these here: we merge them when adding them to the
2442     // template.
2443     return false;
2444   }
2445 
2446   // Compatible tags match.
2447   if (TagDecl *TagX = dyn_cast<TagDecl>(X)) {
2448     TagDecl *TagY = cast<TagDecl>(Y);
2449     return (TagX->getTagKind() == TagY->getTagKind()) ||
2450       ((TagX->getTagKind() == TTK_Struct || TagX->getTagKind() == TTK_Class ||
2451         TagX->getTagKind() == TTK_Interface) &&
2452        (TagY->getTagKind() == TTK_Struct || TagY->getTagKind() == TTK_Class ||
2453         TagY->getTagKind() == TTK_Interface));
2454   }
2455 
2456   // Functions with the same type and linkage match.
2457   // FIXME: This needs to cope with merging of prototyped/non-prototyped
2458   // functions, etc.
2459   if (FunctionDecl *FuncX = dyn_cast<FunctionDecl>(X)) {
2460     FunctionDecl *FuncY = cast<FunctionDecl>(Y);
2461     return (FuncX->getLinkageInternal() == FuncY->getLinkageInternal()) &&
2462       FuncX->getASTContext().hasSameType(FuncX->getType(), FuncY->getType());
2463   }
2464 
2465   // Variables with the same type and linkage match.
2466   if (VarDecl *VarX = dyn_cast<VarDecl>(X)) {
2467     VarDecl *VarY = cast<VarDecl>(Y);
2468     return (VarX->getLinkageInternal() == VarY->getLinkageInternal()) &&
2469       VarX->getASTContext().hasSameType(VarX->getType(), VarY->getType());
2470   }
2471 
2472   // Namespaces with the same name and inlinedness match.
2473   if (NamespaceDecl *NamespaceX = dyn_cast<NamespaceDecl>(X)) {
2474     NamespaceDecl *NamespaceY = cast<NamespaceDecl>(Y);
2475     return NamespaceX->isInline() == NamespaceY->isInline();
2476   }
2477 
2478   // Identical template names and kinds match if their template parameter lists
2479   // and patterns match.
2480   if (TemplateDecl *TemplateX = dyn_cast<TemplateDecl>(X)) {
2481     TemplateDecl *TemplateY = cast<TemplateDecl>(Y);
2482     return isSameEntity(TemplateX->getTemplatedDecl(),
2483                         TemplateY->getTemplatedDecl()) &&
2484            isSameTemplateParameterList(TemplateX->getTemplateParameters(),
2485                                        TemplateY->getTemplateParameters());
2486   }
2487 
2488   // Fields with the same name and the same type match.
2489   if (FieldDecl *FDX = dyn_cast<FieldDecl>(X)) {
2490     FieldDecl *FDY = cast<FieldDecl>(Y);
2491     // FIXME: Also check the bitwidth is odr-equivalent, if any.
2492     return X->getASTContext().hasSameType(FDX->getType(), FDY->getType());
2493   }
2494 
2495   // Enumerators with the same name match.
2496   if (isa<EnumConstantDecl>(X))
2497     // FIXME: Also check the value is odr-equivalent.
2498     return true;
2499 
2500   // Using shadow declarations with the same target match.
2501   if (UsingShadowDecl *USX = dyn_cast<UsingShadowDecl>(X)) {
2502     UsingShadowDecl *USY = cast<UsingShadowDecl>(Y);
2503     return USX->getTargetDecl() == USY->getTargetDecl();
2504   }
2505 
2506   // Using declarations with the same qualifier match. (We already know that
2507   // the name matches.)
2508   if (auto *UX = dyn_cast<UsingDecl>(X)) {
2509     auto *UY = cast<UsingDecl>(Y);
2510     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
2511            UX->hasTypename() == UY->hasTypename() &&
2512            UX->isAccessDeclaration() == UY->isAccessDeclaration();
2513   }
2514   if (auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) {
2515     auto *UY = cast<UnresolvedUsingValueDecl>(Y);
2516     return isSameQualifier(UX->getQualifier(), UY->getQualifier()) &&
2517            UX->isAccessDeclaration() == UY->isAccessDeclaration();
2518   }
2519   if (auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X))
2520     return isSameQualifier(
2521         UX->getQualifier(),
2522         cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier());
2523 
2524   // Namespace alias definitions with the same target match.
2525   if (auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) {
2526     auto *NAY = cast<NamespaceAliasDecl>(Y);
2527     return NAX->getNamespace()->Equals(NAY->getNamespace());
2528   }
2529 
2530   // FIXME: Many other cases to implement.
2531   return false;
2532 }
2533 
2534 /// Find the context in which we should search for previous declarations when
2535 /// looking for declarations to merge.
2536 static DeclContext *getPrimaryContextForMerging(DeclContext *DC) {
2537   if (NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC))
2538     return ND->getOriginalNamespace();
2539 
2540   // There is one tricky case here: if DC is a class with no definition, then
2541   // we're merging a declaration whose definition is added by an update record,
2542   // but we've not yet loaded that update record. In this case, we use the
2543   // canonical declaration for merging until we get a real definition.
2544   // FIXME: When we add a definition, we may need to move the partial lookup
2545   // information from the canonical declaration onto the chosen definition.
2546   if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC))
2547     return RD->getPrimaryContext();
2548 
2549   if (EnumDecl *ED = dyn_cast<EnumDecl>(DC))
2550     return ED->getASTContext().getLangOpts().CPlusPlus? ED->getDefinition()
2551                                                       : nullptr;
2552 
2553   return nullptr;
2554 }
2555 
2556 ASTDeclReader::FindExistingResult::~FindExistingResult() {
2557   // Record that we had a typedef name for linkage whether or not we merge
2558   // with that declaration.
2559   if (TypedefNameForLinkage) {
2560     DeclContext *DC = New->getDeclContext()->getRedeclContext();
2561     Reader.ImportedTypedefNamesForLinkage.insert(
2562         std::make_pair(std::make_pair(DC, TypedefNameForLinkage), New));
2563     return;
2564   }
2565 
2566   if (!AddResult || Existing)
2567     return;
2568 
2569   DeclarationName Name = New->getDeclName();
2570   DeclContext *DC = New->getDeclContext()->getRedeclContext();
2571   if (!Name) {
2572     assert(needsAnonymousDeclarationNumber(New));
2573     setAnonymousDeclForMerging(Reader, New->getLexicalDeclContext(),
2574                                AnonymousDeclNumber, New);
2575   } else if (DC->isTranslationUnit() && Reader.SemaObj) {
2576     Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, Name);
2577   } else if (DeclContext *MergeDC = getPrimaryContextForMerging(DC)) {
2578     // Add the declaration to its redeclaration context so later merging
2579     // lookups will find it.
2580     MergeDC->makeDeclVisibleInContextImpl(New, /*Internal*/true);
2581   }
2582 }
2583 
2584 /// Find the declaration that should be merged into, given the declaration found
2585 /// by name lookup. If we're merging an anonymous declaration within a typedef,
2586 /// we need a matching typedef, and we merge with the type inside it.
2587 static NamedDecl *getDeclForMerging(NamedDecl *Found,
2588                                     bool IsTypedefNameForLinkage) {
2589   if (!IsTypedefNameForLinkage)
2590     return Found;
2591 
2592   // If we found a typedef declaration that gives a name to some other
2593   // declaration, then we want that inner declaration. Declarations from
2594   // AST files are handled via ImportedTypedefNamesForLinkage.
2595   if (Found->isFromASTFile()) return 0;
2596   if (auto *TND = dyn_cast<TypedefNameDecl>(Found)) {
2597     if (auto *TT = TND->getTypeSourceInfo()->getType()->getAs<TagType>())
2598       if (TT->getDecl()->getTypedefNameForAnonDecl() == TND)
2599         return TT->getDecl();
2600   }
2601 
2602   return 0;
2603 }
2604 
2605 NamedDecl *ASTDeclReader::getAnonymousDeclForMerging(ASTReader &Reader,
2606                                                      DeclContext *DC,
2607                                                      unsigned Index) {
2608   // If the lexical context has been merged, look into the now-canonical
2609   // definition.
2610   if (auto *Merged = Reader.MergedDeclContexts.lookup(DC))
2611     DC = Merged;
2612 
2613   // If we've seen this before, return the canonical declaration.
2614   auto &Previous = Reader.AnonymousDeclarationsForMerging[DC];
2615   if (Index < Previous.size() && Previous[Index])
2616     return Previous[Index];
2617 
2618   // If this is the first time, but we have parsed a declaration of the context,
2619   // build the anonymous declaration list from the parsed declaration.
2620   if (!cast<Decl>(DC)->isFromASTFile()) {
2621     unsigned Index = 0;
2622     for (Decl *LexicalD : DC->decls()) {
2623       auto *ND = dyn_cast<NamedDecl>(LexicalD);
2624       if (!ND || !needsAnonymousDeclarationNumber(ND))
2625         continue;
2626       if (Previous.size() == Index)
2627         Previous.push_back(cast<NamedDecl>(ND->getCanonicalDecl()));
2628       else
2629         Previous[Index] = cast<NamedDecl>(ND->getCanonicalDecl());
2630       ++Index;
2631     }
2632   }
2633 
2634   return Index < Previous.size() ? Previous[Index] : nullptr;
2635 }
2636 
2637 void ASTDeclReader::setAnonymousDeclForMerging(ASTReader &Reader,
2638                                                DeclContext *DC, unsigned Index,
2639                                                NamedDecl *D) {
2640   if (auto *Merged = Reader.MergedDeclContexts.lookup(DC))
2641     DC = Merged;
2642 
2643   auto &Previous = Reader.AnonymousDeclarationsForMerging[DC];
2644   if (Index >= Previous.size())
2645     Previous.resize(Index + 1);
2646   if (!Previous[Index])
2647     Previous[Index] = D;
2648 }
2649 
2650 ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
2651   DeclarationName Name = TypedefNameForLinkage ? TypedefNameForLinkage
2652                                                : D->getDeclName();
2653 
2654   if (!Name && !needsAnonymousDeclarationNumber(D)) {
2655     // Don't bother trying to find unnamed declarations that are in
2656     // unmergeable contexts.
2657     FindExistingResult Result(Reader, D, /*Existing=*/nullptr,
2658                               AnonymousDeclNumber, TypedefNameForLinkage);
2659     // FIXME: We may still need to pull in the redeclaration chain; there can
2660     // be redeclarations via 'decltype'.
2661     Result.suppress();
2662     return Result;
2663   }
2664 
2665   // FIXME: Bail out for non-canonical declarations. We will have performed any
2666   // necessary merging already.
2667 
2668   DeclContext *DC = D->getDeclContext()->getRedeclContext();
2669   if (TypedefNameForLinkage) {
2670     auto It = Reader.ImportedTypedefNamesForLinkage.find(
2671         std::make_pair(DC, TypedefNameForLinkage));
2672     if (It != Reader.ImportedTypedefNamesForLinkage.end())
2673       if (isSameEntity(It->second, D))
2674         return FindExistingResult(Reader, D, It->second, AnonymousDeclNumber,
2675                                   TypedefNameForLinkage);
2676     // Go on to check in other places in case an existing typedef name
2677     // was not imported.
2678   }
2679 
2680   if (!Name) {
2681     // This is an anonymous declaration that we may need to merge. Look it up
2682     // in its context by number.
2683     assert(needsAnonymousDeclarationNumber(D));
2684     if (auto *Existing = getAnonymousDeclForMerging(
2685             Reader, D->getLexicalDeclContext(), AnonymousDeclNumber))
2686       if (isSameEntity(Existing, D))
2687         return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
2688                                   TypedefNameForLinkage);
2689   } else if (DC->isTranslationUnit() && Reader.SemaObj) {
2690     IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver;
2691 
2692     // Temporarily consider the identifier to be up-to-date. We don't want to
2693     // cause additional lookups here.
2694     class UpToDateIdentifierRAII {
2695       IdentifierInfo *II;
2696       bool WasOutToDate;
2697 
2698     public:
2699       explicit UpToDateIdentifierRAII(IdentifierInfo *II)
2700         : II(II), WasOutToDate(false)
2701       {
2702         if (II) {
2703           WasOutToDate = II->isOutOfDate();
2704           if (WasOutToDate)
2705             II->setOutOfDate(false);
2706         }
2707       }
2708 
2709       ~UpToDateIdentifierRAII() {
2710         if (WasOutToDate)
2711           II->setOutOfDate(true);
2712       }
2713     } UpToDate(Name.getAsIdentifierInfo());
2714 
2715     for (IdentifierResolver::iterator I = IdResolver.begin(Name),
2716                                    IEnd = IdResolver.end();
2717          I != IEnd; ++I) {
2718       if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage))
2719         if (isSameEntity(Existing, D))
2720           return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
2721                                     TypedefNameForLinkage);
2722     }
2723   } else if (DeclContext *MergeDC = getPrimaryContextForMerging(DC)) {
2724     DeclContext::lookup_result R = MergeDC->noload_lookup(Name);
2725     for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
2726       if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage))
2727         if (isSameEntity(Existing, D))
2728           return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
2729                                     TypedefNameForLinkage);
2730     }
2731   } else {
2732     // Not in a mergeable context.
2733     return FindExistingResult(Reader);
2734   }
2735 
2736   // If this declaration is from a merged context, make a note that we need to
2737   // check that the canonical definition of that context contains the decl.
2738   //
2739   // FIXME: We should do something similar if we merge two definitions of the
2740   // same template specialization into the same CXXRecordDecl.
2741   auto MergedDCIt = Reader.MergedDeclContexts.find(D->getLexicalDeclContext());
2742   if (MergedDCIt != Reader.MergedDeclContexts.end() &&
2743       MergedDCIt->second == D->getDeclContext())
2744     Reader.PendingOdrMergeChecks.push_back(D);
2745 
2746   return FindExistingResult(Reader, D, /*Existing=*/nullptr,
2747                             AnonymousDeclNumber, TypedefNameForLinkage);
2748 }
2749 
2750 template<typename DeclT>
2751 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader,
2752                                            Redeclarable<DeclT> *D,
2753                                            Decl *Previous) {
2754   D->RedeclLink.setPrevious(cast<DeclT>(Previous));
2755 }
2756 namespace clang {
2757 template<>
2758 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader,
2759                                            Redeclarable<FunctionDecl> *D,
2760                                            Decl *Previous) {
2761   FunctionDecl *FD = static_cast<FunctionDecl*>(D);
2762   FunctionDecl *PrevFD = cast<FunctionDecl>(Previous);
2763 
2764   FD->RedeclLink.setPrevious(PrevFD);
2765 
2766   // If the previous declaration is an inline function declaration, then this
2767   // declaration is too.
2768   if (PrevFD->IsInline != FD->IsInline) {
2769     // FIXME: [dcl.fct.spec]p4:
2770     //   If a function with external linkage is declared inline in one
2771     //   translation unit, it shall be declared inline in all translation
2772     //   units in which it appears.
2773     //
2774     // Be careful of this case:
2775     //
2776     // module A:
2777     //   template<typename T> struct X { void f(); };
2778     //   template<typename T> inline void X<T>::f() {}
2779     //
2780     // module B instantiates the declaration of X<int>::f
2781     // module C instantiates the definition of X<int>::f
2782     //
2783     // If module B and C are merged, we do not have a violation of this rule.
2784     FD->IsInline = true;
2785   }
2786 
2787   // If this declaration has an unresolved exception specification but the
2788   // previous declaration had a resolved one, resolve the exception
2789   // specification now.
2790   auto *FPT = FD->getType()->getAs<FunctionProtoType>();
2791   auto *PrevFPT = PrevFD->getType()->getAs<FunctionProtoType>();
2792   if (FPT && PrevFPT &&
2793       isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) &&
2794       !isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType())) {
2795     Reader.Context.adjustExceptionSpec(
2796         FD, PrevFPT->getExtProtoInfo().ExceptionSpec);
2797   }
2798 }
2799 }
2800 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader, ...) {
2801   llvm_unreachable("attachPreviousDecl on non-redeclarable declaration");
2802 }
2803 
2804 void ASTDeclReader::attachPreviousDecl(ASTReader &Reader, Decl *D,
2805                                        Decl *Previous) {
2806   assert(D && Previous);
2807 
2808   switch (D->getKind()) {
2809 #define ABSTRACT_DECL(TYPE)
2810 #define DECL(TYPE, BASE)                                           \
2811   case Decl::TYPE:                                                 \
2812     attachPreviousDeclImpl(Reader, cast<TYPE##Decl>(D), Previous); \
2813     break;
2814 #include "clang/AST/DeclNodes.inc"
2815   }
2816 
2817   // If the declaration was visible in one module, a redeclaration of it in
2818   // another module remains visible even if it wouldn't be visible by itself.
2819   //
2820   // FIXME: In this case, the declaration should only be visible if a module
2821   //        that makes it visible has been imported.
2822   D->IdentifierNamespace |=
2823       Previous->IdentifierNamespace &
2824       (Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Type);
2825 
2826   // If the previous declaration is marked as used, then this declaration should
2827   // be too.
2828   if (Previous->Used)
2829     D->Used = true;
2830 }
2831 
2832 template<typename DeclT>
2833 void ASTDeclReader::attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest) {
2834   D->RedeclLink.setLatest(cast<DeclT>(Latest));
2835 }
2836 void ASTDeclReader::attachLatestDeclImpl(...) {
2837   llvm_unreachable("attachLatestDecl on non-redeclarable declaration");
2838 }
2839 
2840 void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
2841   assert(D && Latest);
2842 
2843   switch (D->getKind()) {
2844 #define ABSTRACT_DECL(TYPE)
2845 #define DECL(TYPE, BASE)                                  \
2846   case Decl::TYPE:                                        \
2847     attachLatestDeclImpl(cast<TYPE##Decl>(D), Latest); \
2848     break;
2849 #include "clang/AST/DeclNodes.inc"
2850   }
2851 }
2852 
2853 template<typename DeclT>
2854 void ASTDeclReader::markIncompleteDeclChainImpl(Redeclarable<DeclT> *D) {
2855   D->RedeclLink.markIncomplete();
2856 }
2857 void ASTDeclReader::markIncompleteDeclChainImpl(...) {
2858   llvm_unreachable("markIncompleteDeclChain on non-redeclarable declaration");
2859 }
2860 
2861 void ASTReader::markIncompleteDeclChain(Decl *D) {
2862   switch (D->getKind()) {
2863 #define ABSTRACT_DECL(TYPE)
2864 #define DECL(TYPE, BASE)                                             \
2865   case Decl::TYPE:                                                   \
2866     ASTDeclReader::markIncompleteDeclChainImpl(cast<TYPE##Decl>(D)); \
2867     break;
2868 #include "clang/AST/DeclNodes.inc"
2869   }
2870 }
2871 
2872 ASTReader::MergedDeclsMap::iterator
2873 ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) {
2874   // If we don't have any stored merged declarations, just look in the
2875   // merged declarations set.
2876   StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID);
2877   if (StoredPos == StoredMergedDecls.end())
2878     return MergedDecls.find(Canon);
2879 
2880   // Append the stored merged declarations to the merged declarations set.
2881   MergedDeclsMap::iterator Pos = MergedDecls.find(Canon);
2882   if (Pos == MergedDecls.end())
2883     Pos = MergedDecls.insert(std::make_pair(Canon,
2884                                             SmallVector<DeclID, 2>())).first;
2885   Pos->second.append(StoredPos->second.begin(), StoredPos->second.end());
2886   StoredMergedDecls.erase(StoredPos);
2887 
2888   // Sort and uniquify the set of merged declarations.
2889   llvm::array_pod_sort(Pos->second.begin(), Pos->second.end());
2890   Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()),
2891                     Pos->second.end());
2892   return Pos;
2893 }
2894 
2895 /// \brief Read the declaration at the given offset from the AST file.
2896 Decl *ASTReader::ReadDeclRecord(DeclID ID) {
2897   unsigned Index = ID - NUM_PREDEF_DECL_IDS;
2898   unsigned RawLocation = 0;
2899   RecordLocation Loc = DeclCursorForID(ID, RawLocation);
2900   llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
2901   // Keep track of where we are in the stream, then jump back there
2902   // after reading this declaration.
2903   SavedStreamPosition SavedPosition(DeclsCursor);
2904 
2905   ReadingKindTracker ReadingKind(Read_Decl, *this);
2906 
2907   // Note that we are loading a declaration record.
2908   Deserializing ADecl(this);
2909 
2910   DeclsCursor.JumpToBit(Loc.Offset);
2911   RecordData Record;
2912   unsigned Code = DeclsCursor.ReadCode();
2913   unsigned Idx = 0;
2914   ASTDeclReader Reader(*this, *Loc.F, ID, RawLocation, Record,Idx);
2915 
2916   Decl *D = nullptr;
2917   switch ((DeclCode)DeclsCursor.readRecord(Code, Record)) {
2918   case DECL_CONTEXT_LEXICAL:
2919   case DECL_CONTEXT_VISIBLE:
2920     llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord");
2921   case DECL_TYPEDEF:
2922     D = TypedefDecl::CreateDeserialized(Context, ID);
2923     break;
2924   case DECL_TYPEALIAS:
2925     D = TypeAliasDecl::CreateDeserialized(Context, ID);
2926     break;
2927   case DECL_ENUM:
2928     D = EnumDecl::CreateDeserialized(Context, ID);
2929     break;
2930   case DECL_RECORD:
2931     D = RecordDecl::CreateDeserialized(Context, ID);
2932     break;
2933   case DECL_ENUM_CONSTANT:
2934     D = EnumConstantDecl::CreateDeserialized(Context, ID);
2935     break;
2936   case DECL_FUNCTION:
2937     D = FunctionDecl::CreateDeserialized(Context, ID);
2938     break;
2939   case DECL_LINKAGE_SPEC:
2940     D = LinkageSpecDecl::CreateDeserialized(Context, ID);
2941     break;
2942   case DECL_LABEL:
2943     D = LabelDecl::CreateDeserialized(Context, ID);
2944     break;
2945   case DECL_NAMESPACE:
2946     D = NamespaceDecl::CreateDeserialized(Context, ID);
2947     break;
2948   case DECL_NAMESPACE_ALIAS:
2949     D = NamespaceAliasDecl::CreateDeserialized(Context, ID);
2950     break;
2951   case DECL_USING:
2952     D = UsingDecl::CreateDeserialized(Context, ID);
2953     break;
2954   case DECL_USING_SHADOW:
2955     D = UsingShadowDecl::CreateDeserialized(Context, ID);
2956     break;
2957   case DECL_USING_DIRECTIVE:
2958     D = UsingDirectiveDecl::CreateDeserialized(Context, ID);
2959     break;
2960   case DECL_UNRESOLVED_USING_VALUE:
2961     D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID);
2962     break;
2963   case DECL_UNRESOLVED_USING_TYPENAME:
2964     D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID);
2965     break;
2966   case DECL_CXX_RECORD:
2967     D = CXXRecordDecl::CreateDeserialized(Context, ID);
2968     break;
2969   case DECL_CXX_METHOD:
2970     D = CXXMethodDecl::CreateDeserialized(Context, ID);
2971     break;
2972   case DECL_CXX_CONSTRUCTOR:
2973     D = CXXConstructorDecl::CreateDeserialized(Context, ID);
2974     break;
2975   case DECL_CXX_DESTRUCTOR:
2976     D = CXXDestructorDecl::CreateDeserialized(Context, ID);
2977     break;
2978   case DECL_CXX_CONVERSION:
2979     D = CXXConversionDecl::CreateDeserialized(Context, ID);
2980     break;
2981   case DECL_ACCESS_SPEC:
2982     D = AccessSpecDecl::CreateDeserialized(Context, ID);
2983     break;
2984   case DECL_FRIEND:
2985     D = FriendDecl::CreateDeserialized(Context, ID, Record[Idx++]);
2986     break;
2987   case DECL_FRIEND_TEMPLATE:
2988     D = FriendTemplateDecl::CreateDeserialized(Context, ID);
2989     break;
2990   case DECL_CLASS_TEMPLATE:
2991     D = ClassTemplateDecl::CreateDeserialized(Context, ID);
2992     break;
2993   case DECL_CLASS_TEMPLATE_SPECIALIZATION:
2994     D = ClassTemplateSpecializationDecl::CreateDeserialized(Context, ID);
2995     break;
2996   case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
2997     D = ClassTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID);
2998     break;
2999   case DECL_VAR_TEMPLATE:
3000     D = VarTemplateDecl::CreateDeserialized(Context, ID);
3001     break;
3002   case DECL_VAR_TEMPLATE_SPECIALIZATION:
3003     D = VarTemplateSpecializationDecl::CreateDeserialized(Context, ID);
3004     break;
3005   case DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION:
3006     D = VarTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID);
3007     break;
3008   case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
3009     D = ClassScopeFunctionSpecializationDecl::CreateDeserialized(Context, ID);
3010     break;
3011   case DECL_FUNCTION_TEMPLATE:
3012     D = FunctionTemplateDecl::CreateDeserialized(Context, ID);
3013     break;
3014   case DECL_TEMPLATE_TYPE_PARM:
3015     D = TemplateTypeParmDecl::CreateDeserialized(Context, ID);
3016     break;
3017   case DECL_NON_TYPE_TEMPLATE_PARM:
3018     D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID);
3019     break;
3020   case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK:
3021     D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID, Record[Idx++]);
3022     break;
3023   case DECL_TEMPLATE_TEMPLATE_PARM:
3024     D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID);
3025     break;
3026   case DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK:
3027     D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID,
3028                                                      Record[Idx++]);
3029     break;
3030   case DECL_TYPE_ALIAS_TEMPLATE:
3031     D = TypeAliasTemplateDecl::CreateDeserialized(Context, ID);
3032     break;
3033   case DECL_STATIC_ASSERT:
3034     D = StaticAssertDecl::CreateDeserialized(Context, ID);
3035     break;
3036   case DECL_OBJC_METHOD:
3037     D = ObjCMethodDecl::CreateDeserialized(Context, ID);
3038     break;
3039   case DECL_OBJC_INTERFACE:
3040     D = ObjCInterfaceDecl::CreateDeserialized(Context, ID);
3041     break;
3042   case DECL_OBJC_IVAR:
3043     D = ObjCIvarDecl::CreateDeserialized(Context, ID);
3044     break;
3045   case DECL_OBJC_PROTOCOL:
3046     D = ObjCProtocolDecl::CreateDeserialized(Context, ID);
3047     break;
3048   case DECL_OBJC_AT_DEFS_FIELD:
3049     D = ObjCAtDefsFieldDecl::CreateDeserialized(Context, ID);
3050     break;
3051   case DECL_OBJC_CATEGORY:
3052     D = ObjCCategoryDecl::CreateDeserialized(Context, ID);
3053     break;
3054   case DECL_OBJC_CATEGORY_IMPL:
3055     D = ObjCCategoryImplDecl::CreateDeserialized(Context, ID);
3056     break;
3057   case DECL_OBJC_IMPLEMENTATION:
3058     D = ObjCImplementationDecl::CreateDeserialized(Context, ID);
3059     break;
3060   case DECL_OBJC_COMPATIBLE_ALIAS:
3061     D = ObjCCompatibleAliasDecl::CreateDeserialized(Context, ID);
3062     break;
3063   case DECL_OBJC_PROPERTY:
3064     D = ObjCPropertyDecl::CreateDeserialized(Context, ID);
3065     break;
3066   case DECL_OBJC_PROPERTY_IMPL:
3067     D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID);
3068     break;
3069   case DECL_FIELD:
3070     D = FieldDecl::CreateDeserialized(Context, ID);
3071     break;
3072   case DECL_INDIRECTFIELD:
3073     D = IndirectFieldDecl::CreateDeserialized(Context, ID);
3074     break;
3075   case DECL_VAR:
3076     D = VarDecl::CreateDeserialized(Context, ID);
3077     break;
3078   case DECL_IMPLICIT_PARAM:
3079     D = ImplicitParamDecl::CreateDeserialized(Context, ID);
3080     break;
3081   case DECL_PARM_VAR:
3082     D = ParmVarDecl::CreateDeserialized(Context, ID);
3083     break;
3084   case DECL_FILE_SCOPE_ASM:
3085     D = FileScopeAsmDecl::CreateDeserialized(Context, ID);
3086     break;
3087   case DECL_BLOCK:
3088     D = BlockDecl::CreateDeserialized(Context, ID);
3089     break;
3090   case DECL_MS_PROPERTY:
3091     D = MSPropertyDecl::CreateDeserialized(Context, ID);
3092     break;
3093   case DECL_CAPTURED:
3094     D = CapturedDecl::CreateDeserialized(Context, ID, Record[Idx++]);
3095     break;
3096   case DECL_CXX_BASE_SPECIFIERS:
3097     Error("attempt to read a C++ base-specifier record as a declaration");
3098     return nullptr;
3099   case DECL_IMPORT:
3100     // Note: last entry of the ImportDecl record is the number of stored source
3101     // locations.
3102     D = ImportDecl::CreateDeserialized(Context, ID, Record.back());
3103     break;
3104   case DECL_OMP_THREADPRIVATE:
3105     D = OMPThreadPrivateDecl::CreateDeserialized(Context, ID, Record[Idx++]);
3106     break;
3107   case DECL_EMPTY:
3108     D = EmptyDecl::CreateDeserialized(Context, ID);
3109     break;
3110   }
3111 
3112   assert(D && "Unknown declaration reading AST file");
3113   LoadedDecl(Index, D);
3114   // Set the DeclContext before doing any deserialization, to make sure internal
3115   // calls to Decl::getASTContext() by Decl's methods will find the
3116   // TranslationUnitDecl without crashing.
3117   D->setDeclContext(Context.getTranslationUnitDecl());
3118   Reader.Visit(D);
3119 
3120   // If this declaration is also a declaration context, get the
3121   // offsets for its tables of lexical and visible declarations.
3122   if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
3123     // FIXME: This should really be
3124     //     DeclContext *LookupDC = DC->getPrimaryContext();
3125     // but that can walk the redeclaration chain, which might not work yet.
3126     DeclContext *LookupDC = DC;
3127     if (isa<NamespaceDecl>(DC))
3128       LookupDC = DC->getPrimaryContext();
3129     std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
3130     if (Offsets.first || Offsets.second) {
3131       if (Offsets.first != 0)
3132         DC->setHasExternalLexicalStorage(true);
3133       if (Offsets.second != 0)
3134         LookupDC->setHasExternalVisibleStorage(true);
3135       if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
3136                                  Loc.F->DeclContextInfos[DC]))
3137         return nullptr;
3138     }
3139 
3140     // Now add the pending visible updates for this decl context, if it has any.
3141     DeclContextVisibleUpdatesPending::iterator I =
3142         PendingVisibleUpdates.find(ID);
3143     if (I != PendingVisibleUpdates.end()) {
3144       // There are updates. This means the context has external visible
3145       // storage, even if the original stored version didn't.
3146       LookupDC->setHasExternalVisibleStorage(true);
3147       for (const auto &Update : I->second) {
3148         DeclContextInfo &Info = Update.second->DeclContextInfos[DC];
3149         delete Info.NameLookupTableData;
3150         Info.NameLookupTableData = Update.first;
3151       }
3152       PendingVisibleUpdates.erase(I);
3153     }
3154   }
3155   assert(Idx == Record.size());
3156 
3157   // Load any relevant update records.
3158   PendingUpdateRecords.push_back(std::make_pair(ID, D));
3159 
3160   // Load the categories after recursive loading is finished.
3161   if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D))
3162     if (Class->isThisDeclarationADefinition())
3163       loadObjCCategories(ID, Class);
3164 
3165   // If we have deserialized a declaration that has a definition the
3166   // AST consumer might need to know about, queue it.
3167   // We don't pass it to the consumer immediately because we may be in recursive
3168   // loading, and some declarations may still be initializing.
3169   if (isConsumerInterestedIn(D, Reader.hasPendingBody()))
3170     InterestingDecls.push_back(D);
3171 
3172   return D;
3173 }
3174 
3175 void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) {
3176   // The declaration may have been modified by files later in the chain.
3177   // If this is the case, read the record containing the updates from each file
3178   // and pass it to ASTDeclReader to make the modifications.
3179   DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
3180   if (UpdI != DeclUpdateOffsets.end()) {
3181     FileOffsetsTy &UpdateOffsets = UpdI->second;
3182     bool WasInteresting = isConsumerInterestedIn(D, false);
3183     for (FileOffsetsTy::iterator
3184          I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) {
3185       ModuleFile *F = I->first;
3186       uint64_t Offset = I->second;
3187       llvm::BitstreamCursor &Cursor = F->DeclsCursor;
3188       SavedStreamPosition SavedPosition(Cursor);
3189       Cursor.JumpToBit(Offset);
3190       RecordData Record;
3191       unsigned Code = Cursor.ReadCode();
3192       unsigned RecCode = Cursor.readRecord(Code, Record);
3193       (void)RecCode;
3194       assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!");
3195 
3196       unsigned Idx = 0;
3197       ASTDeclReader Reader(*this, *F, ID, 0, Record, Idx);
3198       Reader.UpdateDecl(D, *F, Record);
3199 
3200       // We might have made this declaration interesting. If so, remember that
3201       // we need to hand it off to the consumer.
3202       if (!WasInteresting &&
3203           isConsumerInterestedIn(D, Reader.hasPendingBody())) {
3204         InterestingDecls.push_back(D);
3205         WasInteresting = true;
3206       }
3207     }
3208   }
3209 }
3210 
3211 namespace {
3212   /// \brief Module visitor class that finds all of the redeclarations of a
3213   ///
3214   class RedeclChainVisitor {
3215     ASTReader &Reader;
3216     SmallVectorImpl<DeclID> &SearchDecls;
3217     llvm::SmallPtrSetImpl<Decl *> &Deserialized;
3218     GlobalDeclID CanonID;
3219     SmallVector<Decl *, 4> Chain;
3220 
3221   public:
3222     RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls,
3223                        llvm::SmallPtrSetImpl<Decl *> &Deserialized,
3224                        GlobalDeclID CanonID)
3225       : Reader(Reader), SearchDecls(SearchDecls), Deserialized(Deserialized),
3226         CanonID(CanonID) {
3227       for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
3228         addToChain(Reader.GetDecl(SearchDecls[I]));
3229     }
3230 
3231     static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
3232       if (Preorder)
3233         return false;
3234 
3235       return static_cast<RedeclChainVisitor *>(UserData)->visit(M);
3236     }
3237 
3238     void addToChain(Decl *D) {
3239       if (!D)
3240         return;
3241 
3242       if (Deserialized.erase(D))
3243         Chain.push_back(D);
3244     }
3245 
3246     void searchForID(ModuleFile &M, GlobalDeclID GlobalID) {
3247       // Map global ID of the first declaration down to the local ID
3248       // used in this module file.
3249       DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID);
3250       if (!ID)
3251         return;
3252 
3253       // Perform a binary search to find the local redeclarations for this
3254       // declaration (if any).
3255       const LocalRedeclarationsInfo Compare = { ID, 0 };
3256       const LocalRedeclarationsInfo *Result
3257         = std::lower_bound(M.RedeclarationsMap,
3258                            M.RedeclarationsMap + M.LocalNumRedeclarationsInMap,
3259                            Compare);
3260       if (Result == M.RedeclarationsMap + M.LocalNumRedeclarationsInMap ||
3261           Result->FirstID != ID) {
3262         // If we have a previously-canonical singleton declaration that was
3263         // merged into another redeclaration chain, create a trivial chain
3264         // for this single declaration so that it will get wired into the
3265         // complete redeclaration chain.
3266         if (GlobalID != CanonID &&
3267             GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
3268             GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) {
3269           addToChain(Reader.GetDecl(GlobalID));
3270         }
3271 
3272         return;
3273       }
3274 
3275       // Dig out all of the redeclarations.
3276       unsigned Offset = Result->Offset;
3277       unsigned N = M.RedeclarationChains[Offset];
3278       M.RedeclarationChains[Offset++] = 0; // Don't try to deserialize again
3279       for (unsigned I = 0; I != N; ++I)
3280         addToChain(Reader.GetLocalDecl(M, M.RedeclarationChains[Offset++]));
3281     }
3282 
3283     bool visit(ModuleFile &M) {
3284       // Visit each of the declarations.
3285       for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
3286         searchForID(M, SearchDecls[I]);
3287       // FIXME: If none of the SearchDecls had local IDs in this module, can
3288       // we avoid searching any ancestor module files?
3289       return false;
3290     }
3291 
3292     ArrayRef<Decl *> getChain() const {
3293       return Chain;
3294     }
3295   };
3296 }
3297 
3298 void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) {
3299   Decl *D = GetDecl(ID);
3300   Decl *CanonDecl = D->getCanonicalDecl();
3301 
3302   // Determine the set of declaration IDs we'll be searching for.
3303   SmallVector<DeclID, 1> SearchDecls;
3304   GlobalDeclID CanonID = 0;
3305   if (D == CanonDecl) {
3306     SearchDecls.push_back(ID); // Always first.
3307     CanonID = ID;
3308   }
3309   MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID);
3310   if (MergedPos != MergedDecls.end())
3311     SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end());
3312 
3313   // Build up the list of redeclarations.
3314   RedeclChainVisitor Visitor(*this, SearchDecls, RedeclsDeserialized, CanonID);
3315   ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor);
3316 
3317   // Retrieve the chains.
3318   ArrayRef<Decl *> Chain = Visitor.getChain();
3319   if (Chain.empty())
3320     return;
3321 
3322   // Hook up the chains.
3323   Decl *MostRecent = CanonDecl->getMostRecentDecl();
3324   for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
3325     if (Chain[I] == CanonDecl)
3326       continue;
3327 
3328     ASTDeclReader::attachPreviousDecl(*this, Chain[I], MostRecent);
3329     MostRecent = Chain[I];
3330   }
3331 
3332   ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent);
3333 }
3334 
3335 namespace {
3336   /// \brief Given an ObjC interface, goes through the modules and links to the
3337   /// interface all the categories for it.
3338   class ObjCCategoriesVisitor {
3339     ASTReader &Reader;
3340     serialization::GlobalDeclID InterfaceID;
3341     ObjCInterfaceDecl *Interface;
3342     llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized;
3343     unsigned PreviousGeneration;
3344     ObjCCategoryDecl *Tail;
3345     llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
3346 
3347     void add(ObjCCategoryDecl *Cat) {
3348       // Only process each category once.
3349       if (!Deserialized.erase(Cat))
3350         return;
3351 
3352       // Check for duplicate categories.
3353       if (Cat->getDeclName()) {
3354         ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()];
3355         if (Existing &&
3356             Reader.getOwningModuleFile(Existing)
3357                                           != Reader.getOwningModuleFile(Cat)) {
3358           // FIXME: We should not warn for duplicates in diamond:
3359           //
3360           //   MT     //
3361           //  /  \    //
3362           // ML  MR   //
3363           //  \  /    //
3364           //   MB     //
3365           //
3366           // If there are duplicates in ML/MR, there will be warning when
3367           // creating MB *and* when importing MB. We should not warn when
3368           // importing.
3369           Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
3370             << Interface->getDeclName() << Cat->getDeclName();
3371           Reader.Diag(Existing->getLocation(), diag::note_previous_definition);
3372         } else if (!Existing) {
3373           // Record this category.
3374           Existing = Cat;
3375         }
3376       }
3377 
3378       // Add this category to the end of the chain.
3379       if (Tail)
3380         ASTDeclReader::setNextObjCCategory(Tail, Cat);
3381       else
3382         Interface->setCategoryListRaw(Cat);
3383       Tail = Cat;
3384     }
3385 
3386   public:
3387     ObjCCategoriesVisitor(ASTReader &Reader,
3388                           serialization::GlobalDeclID InterfaceID,
3389                           ObjCInterfaceDecl *Interface,
3390                         llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized,
3391                           unsigned PreviousGeneration)
3392       : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
3393         Deserialized(Deserialized), PreviousGeneration(PreviousGeneration),
3394         Tail(nullptr)
3395     {
3396       // Populate the name -> category map with the set of known categories.
3397       for (auto *Cat : Interface->known_categories()) {
3398         if (Cat->getDeclName())
3399           NameCategoryMap[Cat->getDeclName()] = Cat;
3400 
3401         // Keep track of the tail of the category list.
3402         Tail = Cat;
3403       }
3404     }
3405 
3406     static bool visit(ModuleFile &M, void *UserData) {
3407       return static_cast<ObjCCategoriesVisitor *>(UserData)->visit(M);
3408     }
3409 
3410     bool visit(ModuleFile &M) {
3411       // If we've loaded all of the category information we care about from
3412       // this module file, we're done.
3413       if (M.Generation <= PreviousGeneration)
3414         return true;
3415 
3416       // Map global ID of the definition down to the local ID used in this
3417       // module file. If there is no such mapping, we'll find nothing here
3418       // (or in any module it imports).
3419       DeclID LocalID = Reader.mapGlobalIDToModuleFileGlobalID(M, InterfaceID);
3420       if (!LocalID)
3421         return true;
3422 
3423       // Perform a binary search to find the local redeclarations for this
3424       // declaration (if any).
3425       const ObjCCategoriesInfo Compare = { LocalID, 0 };
3426       const ObjCCategoriesInfo *Result
3427         = std::lower_bound(M.ObjCCategoriesMap,
3428                            M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap,
3429                            Compare);
3430       if (Result == M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap ||
3431           Result->DefinitionID != LocalID) {
3432         // We didn't find anything. If the class definition is in this module
3433         // file, then the module files it depends on cannot have any categories,
3434         // so suppress further lookup.
3435         return Reader.isDeclIDFromModule(InterfaceID, M);
3436       }
3437 
3438       // We found something. Dig out all of the categories.
3439       unsigned Offset = Result->Offset;
3440       unsigned N = M.ObjCCategories[Offset];
3441       M.ObjCCategories[Offset++] = 0; // Don't try to deserialize again
3442       for (unsigned I = 0; I != N; ++I)
3443         add(cast_or_null<ObjCCategoryDecl>(
3444               Reader.GetLocalDecl(M, M.ObjCCategories[Offset++])));
3445       return true;
3446     }
3447   };
3448 }
3449 
3450 void ASTReader::loadObjCCategories(serialization::GlobalDeclID ID,
3451                                    ObjCInterfaceDecl *D,
3452                                    unsigned PreviousGeneration) {
3453   ObjCCategoriesVisitor Visitor(*this, ID, D, CategoriesDeserialized,
3454                                 PreviousGeneration);
3455   ModuleMgr.visit(ObjCCategoriesVisitor::visit, &Visitor);
3456 }
3457 
3458 namespace {
3459 /// Iterator over the redeclarations of a declaration that have already
3460 /// been merged into the same redeclaration chain.
3461 template<typename DeclT>
3462 class MergedRedeclIterator {
3463   DeclT *Start, *Canonical, *Current;
3464 public:
3465   MergedRedeclIterator() : Current(nullptr) {}
3466   MergedRedeclIterator(DeclT *Start)
3467       : Start(Start), Canonical(nullptr), Current(Start) {}
3468 
3469   DeclT *operator*() { return Current; }
3470 
3471   MergedRedeclIterator &operator++() {
3472     if (Current->isFirstDecl()) {
3473       Canonical = Current;
3474       Current = Current->getMostRecentDecl();
3475     } else
3476       Current = Current->getPreviousDecl();
3477 
3478     // If we started in the merged portion, we'll reach our start position
3479     // eventually. Otherwise, we'll never reach it, but the second declaration
3480     // we reached was the canonical declaration, so stop when we see that one
3481     // again.
3482     if (Current == Start || Current == Canonical)
3483       Current = nullptr;
3484     return *this;
3485   }
3486 
3487   friend bool operator!=(const MergedRedeclIterator &A,
3488                          const MergedRedeclIterator &B) {
3489     return A.Current != B.Current;
3490   }
3491 };
3492 }
3493 template<typename DeclT>
3494 llvm::iterator_range<MergedRedeclIterator<DeclT>> merged_redecls(DeclT *D) {
3495   return llvm::iterator_range<MergedRedeclIterator<DeclT>>(
3496       MergedRedeclIterator<DeclT>(D),
3497       MergedRedeclIterator<DeclT>());
3498 }
3499 
3500 template<typename DeclT, typename Fn>
3501 static void forAllLaterRedecls(DeclT *D, Fn F) {
3502   F(D);
3503 
3504   // Check whether we've already merged D into its redeclaration chain.
3505   // MostRecent may or may not be nullptr if D has not been merged. If
3506   // not, walk the merged redecl chain and see if it's there.
3507   auto *MostRecent = D->getMostRecentDecl();
3508   bool Found = false;
3509   for (auto *Redecl = MostRecent; Redecl && !Found;
3510        Redecl = Redecl->getPreviousDecl())
3511     Found = (Redecl == D);
3512 
3513   // If this declaration is merged, apply the functor to all later decls.
3514   if (Found) {
3515     for (auto *Redecl = MostRecent; Redecl != D;
3516          Redecl = Redecl->getPreviousDecl())
3517       F(Redecl);
3518   }
3519 }
3520 
3521 void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile,
3522                                const RecordData &Record) {
3523   while (Idx < Record.size()) {
3524     switch ((DeclUpdateKind)Record[Idx++]) {
3525     case UPD_CXX_ADDED_IMPLICIT_MEMBER: {
3526       auto *RD = cast<CXXRecordDecl>(D);
3527       // FIXME: If we also have an update record for instantiating the
3528       // definition of D, we need that to happen before we get here.
3529       Decl *MD = Reader.ReadDecl(ModuleFile, Record, Idx);
3530       assert(MD && "couldn't read decl from update record");
3531       // FIXME: We should call addHiddenDecl instead, to add the member
3532       // to its DeclContext.
3533       RD->addedMember(MD);
3534 
3535       // If we've added a new special member to a class definition that is not
3536       // the canonical definition, then we need special member lookups in the
3537       // canonical definition to also look into our class.
3538       auto *DD = RD->DefinitionData.getNotUpdated();
3539       if (DD && DD->Definition != RD) {
3540         auto &Merged = Reader.MergedLookups[DD->Definition];
3541         // FIXME: Avoid the linear-time scan here.
3542         if (std::find(Merged.begin(), Merged.end(), RD) == Merged.end())
3543           Merged.push_back(RD);
3544       }
3545       break;
3546     }
3547 
3548     case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
3549       // It will be added to the template's specializations set when loaded.
3550       (void)Reader.ReadDecl(ModuleFile, Record, Idx);
3551       break;
3552 
3553     case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
3554       NamespaceDecl *Anon
3555         = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx);
3556 
3557       // Each module has its own anonymous namespace, which is disjoint from
3558       // any other module's anonymous namespaces, so don't attach the anonymous
3559       // namespace at all.
3560       if (ModuleFile.Kind != MK_ImplicitModule &&
3561           ModuleFile.Kind != MK_ExplicitModule) {
3562         if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
3563           TU->setAnonymousNamespace(Anon);
3564         else
3565           cast<NamespaceDecl>(D)->setAnonymousNamespace(Anon);
3566       }
3567       break;
3568     }
3569 
3570     case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
3571       cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation(
3572           Reader.ReadSourceLocation(ModuleFile, Record, Idx));
3573       break;
3574 
3575     case UPD_CXX_ADDED_FUNCTION_DEFINITION: {
3576       FunctionDecl *FD = cast<FunctionDecl>(D);
3577       if (Reader.PendingBodies[FD]) {
3578         // FIXME: Maybe check for ODR violations.
3579         // It's safe to stop now because this update record is always last.
3580         return;
3581       }
3582 
3583       if (Record[Idx++]) {
3584         // Maintain AST consistency: any later redeclarations of this function
3585         // are inline if this one is. (We might have merged another declaration
3586         // into this one.)
3587         forAllLaterRedecls(FD, [](FunctionDecl *FD) {
3588           FD->setImplicitlyInline();
3589         });
3590       }
3591       FD->setInnerLocStart(Reader.ReadSourceLocation(ModuleFile, Record, Idx));
3592       if (auto *CD = dyn_cast<CXXConstructorDecl>(FD))
3593         std::tie(CD->CtorInitializers, CD->NumCtorInitializers) =
3594             Reader.ReadCXXCtorInitializers(ModuleFile, Record, Idx);
3595       if (auto *DD = dyn_cast<CXXDestructorDecl>(FD))
3596         // FIXME: Check consistency.
3597         DD->setOperatorDelete(Reader.ReadDeclAs<FunctionDecl>(ModuleFile,
3598                                                               Record, Idx));
3599       // Store the offset of the body so we can lazily load it later.
3600       Reader.PendingBodies[FD] = GetCurrentCursorOffset();
3601       HasPendingBody = true;
3602       assert(Idx == Record.size() && "lazy body must be last");
3603       break;
3604     }
3605 
3606     case UPD_CXX_INSTANTIATED_CLASS_DEFINITION: {
3607       auto *RD = cast<CXXRecordDecl>(D);
3608       bool HadDefinition = RD->getDefinition();
3609       ReadCXXRecordDefinition(RD);
3610       // Visible update is handled separately.
3611       uint64_t LexicalOffset = Record[Idx++];
3612       if (!HadDefinition && LexicalOffset) {
3613         RD->setHasExternalLexicalStorage(true);
3614         Reader.ReadDeclContextStorage(ModuleFile, ModuleFile.DeclsCursor,
3615                                           std::make_pair(LexicalOffset, 0),
3616                                           ModuleFile.DeclContextInfos[RD]);
3617         Reader.PendingDefinitions.insert(RD);
3618       }
3619 
3620       auto TSK = (TemplateSpecializationKind)Record[Idx++];
3621       SourceLocation POI = Reader.ReadSourceLocation(ModuleFile, Record, Idx);
3622       if (MemberSpecializationInfo *MSInfo =
3623               RD->getMemberSpecializationInfo()) {
3624         MSInfo->setTemplateSpecializationKind(TSK);
3625         MSInfo->setPointOfInstantiation(POI);
3626       } else {
3627         ClassTemplateSpecializationDecl *Spec =
3628             cast<ClassTemplateSpecializationDecl>(RD);
3629         Spec->setTemplateSpecializationKind(TSK);
3630         Spec->setPointOfInstantiation(POI);
3631 
3632         if (Record[Idx++]) {
3633           auto PartialSpec =
3634               ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx);
3635           SmallVector<TemplateArgument, 8> TemplArgs;
3636           Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
3637           auto *TemplArgList = TemplateArgumentList::CreateCopy(
3638               Reader.getContext(), TemplArgs.data(), TemplArgs.size());
3639 
3640           // FIXME: If we already have a partial specialization set,
3641           // check that it matches.
3642           if (!Spec->getSpecializedTemplateOrPartial()
3643                    .is<ClassTemplatePartialSpecializationDecl *>())
3644             Spec->setInstantiationOf(PartialSpec, TemplArgList);
3645         }
3646       }
3647 
3648       RD->setTagKind((TagTypeKind)Record[Idx++]);
3649       RD->setLocation(Reader.ReadSourceLocation(ModuleFile, Record, Idx));
3650       RD->setLocStart(Reader.ReadSourceLocation(ModuleFile, Record, Idx));
3651       RD->setRBraceLoc(Reader.ReadSourceLocation(ModuleFile, Record, Idx));
3652 
3653       if (Record[Idx++]) {
3654         AttrVec Attrs;
3655         Reader.ReadAttributes(F, Attrs, Record, Idx);
3656         D->setAttrsImpl(Attrs, Reader.getContext());
3657       }
3658       break;
3659     }
3660 
3661     case UPD_CXX_RESOLVED_EXCEPTION_SPEC: {
3662       // FIXME: This doesn't send the right notifications if there are
3663       // ASTMutationListeners other than an ASTWriter.
3664       FunctionProtoType::ExceptionSpecInfo ESI;
3665       SmallVector<QualType, 8> ExceptionStorage;
3666       Reader.readExceptionSpec(ModuleFile, ExceptionStorage, ESI, Record, Idx);
3667       for (auto *Redecl : merged_redecls(D)) {
3668         auto *FD = cast<FunctionDecl>(Redecl);
3669         auto *FPT = FD->getType()->castAs<FunctionProtoType>();
3670         if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
3671           // AST invariant: if any exception spec in the redecl chain is
3672           // resolved, all are resolved. We don't need to go any further.
3673           // FIXME: If the exception spec is resolved, check that it matches.
3674           break;
3675         }
3676         FD->setType(Reader.Context.getFunctionType(
3677             FPT->getReturnType(), FPT->getParamTypes(),
3678             FPT->getExtProtoInfo().withExceptionSpec(ESI)));
3679       }
3680       break;
3681     }
3682 
3683     case UPD_CXX_DEDUCED_RETURN_TYPE: {
3684       // FIXME: Also do this when merging redecls.
3685       QualType DeducedResultType = Reader.readType(ModuleFile, Record, Idx);
3686       for (auto *Redecl : merged_redecls(D)) {
3687         // FIXME: If the return type is already deduced, check that it matches.
3688         FunctionDecl *FD = cast<FunctionDecl>(Redecl);
3689         Reader.Context.adjustDeducedFunctionResultType(FD, DeducedResultType);
3690       }
3691       break;
3692     }
3693 
3694     case UPD_DECL_MARKED_USED: {
3695       // FIXME: This doesn't send the right notifications if there are
3696       // ASTMutationListeners other than an ASTWriter.
3697 
3698       // Maintain AST consistency: any later redeclarations are used too.
3699       forAllLaterRedecls(D, [](Decl *D) { D->Used = true; });
3700       break;
3701     }
3702 
3703     case UPD_MANGLING_NUMBER:
3704       Reader.Context.setManglingNumber(cast<NamedDecl>(D), Record[Idx++]);
3705       break;
3706 
3707     case UPD_STATIC_LOCAL_NUMBER:
3708       Reader.Context.setStaticLocalNumber(cast<VarDecl>(D), Record[Idx++]);
3709       break;
3710     case UPD_DECL_MARKED_OPENMP_THREADPRIVATE:
3711       D->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(
3712           Reader.Context, ReadSourceRange(Record, Idx)));
3713       break;
3714     }
3715   }
3716 }
3717