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 "ASTCommon.h"
16 #include "clang/Serialization/ASTReader.h"
17 #include "clang/Sema/IdentifierResolver.h"
18 #include "clang/Sema/Sema.h"
19 #include "clang/Sema/SemaDiagnostic.h"
20 #include "clang/AST/ASTConsumer.h"
21 #include "clang/AST/ASTContext.h"
22 #include "clang/AST/DeclVisitor.h"
23 #include "clang/AST/DeclGroup.h"
24 #include "clang/AST/DeclCXX.h"
25 #include "clang/AST/DeclTemplate.h"
26 #include "clang/AST/Expr.h"
27 using namespace clang;
28 using namespace clang::serialization;
29 
30 //===----------------------------------------------------------------------===//
31 // Declaration deserialization
32 //===----------------------------------------------------------------------===//
33 
34 namespace clang {
35   class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
36     ASTReader &Reader;
37     ModuleFile &F;
38     llvm::BitstreamCursor &Cursor;
39     const DeclID ThisDeclID;
40     const unsigned RawLocation;
41     typedef ASTReader::RecordData RecordData;
42     const RecordData &Record;
43     unsigned &Idx;
44     TypeID TypeIDForTypeDecl;
45 
46     DeclID DeclContextIDForTemplateParmDecl;
47     DeclID LexicalDeclContextIDForTemplateParmDecl;
48 
49     uint64_t GetCurrentCursorOffset();
50 
51     SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) {
52       return Reader.ReadSourceLocation(F, R, I);
53     }
54 
55     SourceRange ReadSourceRange(const RecordData &R, unsigned &I) {
56       return Reader.ReadSourceRange(F, R, I);
57     }
58 
59     TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) {
60       return Reader.GetTypeSourceInfo(F, R, I);
61     }
62 
63     serialization::DeclID ReadDeclID(const RecordData &R, unsigned &I) {
64       return Reader.ReadDeclID(F, R, I);
65     }
66 
67     Decl *ReadDecl(const RecordData &R, unsigned &I) {
68       return Reader.ReadDecl(F, R, I);
69     }
70 
71     template<typename T>
72     T *ReadDeclAs(const RecordData &R, unsigned &I) {
73       return Reader.ReadDeclAs<T>(F, R, I);
74     }
75 
76     void ReadQualifierInfo(QualifierInfo &Info,
77                            const RecordData &R, unsigned &I) {
78       Reader.ReadQualifierInfo(F, Info, R, I);
79     }
80 
81     void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name,
82                                 const RecordData &R, unsigned &I) {
83       Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
84     }
85 
86     void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo,
87                                 const RecordData &R, unsigned &I) {
88       Reader.ReadDeclarationNameInfo(F, NameInfo, R, I);
89     }
90 
91     serialization::SubmoduleID readSubmoduleID(const RecordData &R,
92                                                unsigned &I) {
93       if (I >= R.size())
94         return 0;
95 
96       return Reader.getGlobalSubmoduleID(F, R[I++]);
97     }
98 
99     Module *readModule(const RecordData &R, unsigned &I) {
100       return Reader.getSubmodule(readSubmoduleID(R, I));
101     }
102 
103     void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data,
104                                const RecordData &R, unsigned &I);
105 
106     void InitializeCXXDefinitionData(CXXRecordDecl *D,
107                                      CXXRecordDecl *DefinitionDecl,
108                                      const RecordData &Record, unsigned &Idx);
109 
110     /// \brief RAII class used to capture the first ID within a redeclaration
111     /// chain and to introduce it into the list of pending redeclaration chains
112     /// on destruction.
113     ///
114     /// The caller can choose not to introduce this ID into the redeclaration
115     /// chain by calling \c suppress().
116     class RedeclarableResult {
117       ASTReader &Reader;
118       GlobalDeclID FirstID;
119       mutable bool Owning;
120 
121       RedeclarableResult &operator=(RedeclarableResult&); // DO NOT IMPLEMENT
122 
123     public:
124       RedeclarableResult(ASTReader &Reader, GlobalDeclID FirstID)
125         : Reader(Reader), FirstID(FirstID), Owning(true) { }
126 
127       RedeclarableResult(const RedeclarableResult &Other)
128         : Reader(Other.Reader), FirstID(Other.FirstID), Owning(Other.Owning)
129       {
130         Other.Owning = false;
131       }
132 
133       ~RedeclarableResult() {
134         // FIXME: We want to suppress this when the declaration is local to
135         // a function, since there's no reason to search other AST files
136         // for redeclarations (they can't exist). However, this is hard to
137         // do locally because the declaration hasn't necessarily loaded its
138         // declaration context yet. Also, local externs still have the function
139         // as their (semantic) declaration context, which is wrong and would
140         // break this optimize.
141 
142         if (FirstID && Owning && Reader.PendingDeclChainsKnown.insert(FirstID))
143           Reader.PendingDeclChains.push_back(FirstID);
144       }
145 
146       /// \brief Retrieve the first ID.
147       GlobalDeclID getFirstID() const { return FirstID; }
148 
149       /// \brief Do not introduce this declaration ID into the set of pending
150       /// declaration chains.
151       void suppress() {
152         Owning = false;
153       }
154     };
155 
156     /// \brief Class used to capture the result of searching for an existing
157     /// declaration of a specific kind and name, along with the ability
158     /// to update the place where this result was found (the declaration
159     /// chain hanging off an identifier or the DeclContext we searched in)
160     /// if requested.
161     class FindExistingResult {
162       ASTReader &Reader;
163       NamedDecl *New;
164       NamedDecl *Existing;
165       mutable bool AddResult;
166 
167       FindExistingResult &operator=(FindExistingResult&); // DO NOT IMPLEMENT
168 
169     public:
170       FindExistingResult(ASTReader &Reader)
171         : Reader(Reader), New(0), Existing(0), AddResult(false) { }
172 
173       FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing)
174         : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
175 
176       FindExistingResult(const FindExistingResult &Other)
177         : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
178           AddResult(Other.AddResult)
179       {
180         Other.AddResult = false;
181       }
182 
183       ~FindExistingResult();
184 
185       operator NamedDecl*() const { return Existing; }
186 
187       template<typename T>
188       operator T*() const { return dyn_cast_or_null<T>(Existing); }
189     };
190 
191     FindExistingResult findExisting(NamedDecl *D);
192 
193   public:
194     ASTDeclReader(ASTReader &Reader, ModuleFile &F,
195                   llvm::BitstreamCursor &Cursor, DeclID thisDeclID,
196                   unsigned RawLocation,
197                   const RecordData &Record, unsigned &Idx)
198       : Reader(Reader), F(F), Cursor(Cursor), ThisDeclID(thisDeclID),
199         RawLocation(RawLocation), Record(Record), Idx(Idx),
200         TypeIDForTypeDecl(0) { }
201 
202     static void attachPreviousDecl(Decl *D, Decl *previous);
203     static void attachLatestDecl(Decl *D, Decl *latest);
204 
205     void Visit(Decl *D);
206 
207     void UpdateDecl(Decl *D, ModuleFile &ModuleFile,
208                     const RecordData &Record);
209 
210     static void setNextObjCCategory(ObjCCategoryDecl *Cat,
211                                     ObjCCategoryDecl *Next) {
212       Cat->NextClassCategory = Next;
213     }
214 
215     void VisitDecl(Decl *D);
216     void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
217     void VisitNamedDecl(NamedDecl *ND);
218     void VisitLabelDecl(LabelDecl *LD);
219     void VisitNamespaceDecl(NamespaceDecl *D);
220     void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
221     void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
222     void VisitTypeDecl(TypeDecl *TD);
223     void VisitTypedefNameDecl(TypedefNameDecl *TD);
224     void VisitTypedefDecl(TypedefDecl *TD);
225     void VisitTypeAliasDecl(TypeAliasDecl *TD);
226     void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
227     void VisitTagDecl(TagDecl *TD);
228     void VisitEnumDecl(EnumDecl *ED);
229     void VisitRecordDecl(RecordDecl *RD);
230     void VisitCXXRecordDecl(CXXRecordDecl *D);
231     void VisitClassTemplateSpecializationDecl(
232                                             ClassTemplateSpecializationDecl *D);
233     void VisitClassTemplatePartialSpecializationDecl(
234                                      ClassTemplatePartialSpecializationDecl *D);
235     void VisitClassScopeFunctionSpecializationDecl(
236                                        ClassScopeFunctionSpecializationDecl *D);
237     void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
238     void VisitValueDecl(ValueDecl *VD);
239     void VisitEnumConstantDecl(EnumConstantDecl *ECD);
240     void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
241     void VisitDeclaratorDecl(DeclaratorDecl *DD);
242     void VisitFunctionDecl(FunctionDecl *FD);
243     void VisitCXXMethodDecl(CXXMethodDecl *D);
244     void VisitCXXConstructorDecl(CXXConstructorDecl *D);
245     void VisitCXXDestructorDecl(CXXDestructorDecl *D);
246     void VisitCXXConversionDecl(CXXConversionDecl *D);
247     void VisitFieldDecl(FieldDecl *FD);
248     void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
249     void VisitVarDecl(VarDecl *VD);
250     void VisitImplicitParamDecl(ImplicitParamDecl *PD);
251     void VisitParmVarDecl(ParmVarDecl *PD);
252     void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
253     void VisitTemplateDecl(TemplateDecl *D);
254     void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
255     void VisitClassTemplateDecl(ClassTemplateDecl *D);
256     void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
257     void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
258     void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
259     void VisitUsingDecl(UsingDecl *D);
260     void VisitUsingShadowDecl(UsingShadowDecl *D);
261     void VisitLinkageSpecDecl(LinkageSpecDecl *D);
262     void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
263     void VisitImportDecl(ImportDecl *D);
264     void VisitAccessSpecDecl(AccessSpecDecl *D);
265     void VisitFriendDecl(FriendDecl *D);
266     void VisitFriendTemplateDecl(FriendTemplateDecl *D);
267     void VisitStaticAssertDecl(StaticAssertDecl *D);
268     void VisitBlockDecl(BlockDecl *BD);
269 
270     std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
271 
272     template <typename T>
273     RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
274 
275     // FIXME: Reorder according to DeclNodes.td?
276     void VisitObjCMethodDecl(ObjCMethodDecl *D);
277     void VisitObjCContainerDecl(ObjCContainerDecl *D);
278     void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
279     void VisitObjCIvarDecl(ObjCIvarDecl *D);
280     void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
281     void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
282     void VisitObjCClassDecl(ObjCClassDecl *D);
283     void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
284     void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
285     void VisitObjCImplDecl(ObjCImplDecl *D);
286     void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
287     void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
288     void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
289     void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
290     void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
291   };
292 }
293 
294 uint64_t ASTDeclReader::GetCurrentCursorOffset() {
295   return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset;
296 }
297 
298 void ASTDeclReader::Visit(Decl *D) {
299   DeclVisitor<ASTDeclReader, void>::Visit(D);
300 
301   if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
302     if (DD->DeclInfo) {
303       DeclaratorDecl::ExtInfo *Info =
304           DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
305       Info->TInfo =
306           GetTypeSourceInfo(Record, Idx);
307     }
308     else {
309       DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
310     }
311   }
312 
313   if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
314     // if we have a fully initialized TypeDecl, we can safely read its type now.
315     TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull());
316   } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
317     // if we have a fully initialized TypeDecl, we can safely read its type now.
318     ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull();
319   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
320     // FunctionDecl's body was written last after all other Stmts/Exprs.
321     if (Record[Idx++])
322       FD->setLazyBody(GetCurrentCursorOffset());
323   } else if (D->isTemplateParameter()) {
324     // If we have a fully initialized template parameter, we can now
325     // set its DeclContext.
326     D->setDeclContext(
327           cast_or_null<DeclContext>(
328                             Reader.GetDecl(DeclContextIDForTemplateParmDecl)));
329     D->setLexicalDeclContext(
330           cast_or_null<DeclContext>(
331                       Reader.GetDecl(LexicalDeclContextIDForTemplateParmDecl)));
332   }
333 }
334 
335 void ASTDeclReader::VisitDecl(Decl *D) {
336   if (D->isTemplateParameter()) {
337     // We don't want to deserialize the DeclContext of a template
338     // parameter immediately, because the template parameter might be
339     // used in the formulation of its DeclContext. Use the translation
340     // unit DeclContext as a placeholder.
341     DeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
342     LexicalDeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
343     D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
344   } else {
345     D->setDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
346     D->setLexicalDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
347   }
348   D->setLocation(Reader.ReadSourceLocation(F, RawLocation));
349   D->setInvalidDecl(Record[Idx++]);
350   if (Record[Idx++]) { // hasAttrs
351     AttrVec Attrs;
352     Reader.ReadAttributes(F, Attrs, Record, Idx);
353     D->setAttrs(Attrs);
354   }
355   D->setImplicit(Record[Idx++]);
356   D->setUsed(Record[Idx++]);
357   D->setReferenced(Record[Idx++]);
358   D->TopLevelDeclInObjCContainer = Record[Idx++];
359   D->setAccess((AccessSpecifier)Record[Idx++]);
360   D->FromASTFile = true;
361   D->ModulePrivate = Record[Idx++];
362 
363   // Determine whether this declaration is part of a (sub)module. If so, it
364   // may not yet be visible.
365   if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) {
366     // Module-private declarations are never visible, so there is no work to do.
367     if (!D->ModulePrivate) {
368       if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
369         if (Owner->NameVisibility != Module::AllVisible) {
370           // The owning module is not visible. Mark this declaration as
371           // module-private,
372           D->ModulePrivate = true;
373 
374           // Note that this declaration was hidden because its owning module is
375           // not yet visible.
376           Reader.HiddenNamesMap[Owner].push_back(D);
377         }
378       }
379     }
380   }
381 }
382 
383 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
384   llvm_unreachable("Translation units are not serialized");
385 }
386 
387 void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
388   VisitDecl(ND);
389   ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx));
390 }
391 
392 void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
393   VisitNamedDecl(TD);
394   TD->setLocStart(ReadSourceLocation(Record, Idx));
395   // Delay type reading until after we have fully initialized the decl.
396   TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
397 }
398 
399 void ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
400   VisitRedeclarable(TD);
401   VisitTypeDecl(TD);
402   TD->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
403 }
404 
405 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
406   VisitTypedefNameDecl(TD);
407 }
408 
409 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
410   VisitTypedefNameDecl(TD);
411 }
412 
413 void ASTDeclReader::VisitTagDecl(TagDecl *TD) {
414   VisitRedeclarable(TD);
415   VisitTypeDecl(TD);
416   TD->IdentifierNamespace = Record[Idx++];
417   TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
418   TD->setCompleteDefinition(Record[Idx++]);
419   TD->setEmbeddedInDeclarator(Record[Idx++]);
420   TD->setFreeStanding(Record[Idx++]);
421   TD->setRBraceLoc(ReadSourceLocation(Record, Idx));
422   if (Record[Idx++]) { // hasExtInfo
423     TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
424     ReadQualifierInfo(*Info, Record, Idx);
425     TD->TypedefNameDeclOrQualifier = Info;
426   } else
427     TD->setTypedefNameForAnonDecl(ReadDeclAs<TypedefNameDecl>(Record, Idx));
428 }
429 
430 void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
431   VisitTagDecl(ED);
432   if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
433     ED->setIntegerTypeSourceInfo(TI);
434   else
435     ED->setIntegerType(Reader.readType(F, Record, Idx));
436   ED->setPromotionType(Reader.readType(F, Record, Idx));
437   ED->setNumPositiveBits(Record[Idx++]);
438   ED->setNumNegativeBits(Record[Idx++]);
439   ED->IsScoped = Record[Idx++];
440   ED->IsScopedUsingClassTag = Record[Idx++];
441   ED->IsFixed = Record[Idx++];
442   ED->setInstantiationOfMemberEnum(ReadDeclAs<EnumDecl>(Record, Idx));
443 }
444 
445 void ASTDeclReader::VisitRecordDecl(RecordDecl *RD) {
446   VisitTagDecl(RD);
447   RD->setHasFlexibleArrayMember(Record[Idx++]);
448   RD->setAnonymousStructOrUnion(Record[Idx++]);
449   RD->setHasObjectMember(Record[Idx++]);
450 }
451 
452 void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
453   VisitNamedDecl(VD);
454   VD->setType(Reader.readType(F, Record, Idx));
455 }
456 
457 void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
458   VisitValueDecl(ECD);
459   if (Record[Idx++])
460     ECD->setInitExpr(Reader.ReadExpr(F));
461   ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
462 }
463 
464 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
465   VisitValueDecl(DD);
466   DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
467   if (Record[Idx++]) { // hasExtInfo
468     DeclaratorDecl::ExtInfo *Info
469         = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
470     ReadQualifierInfo(*Info, Record, Idx);
471     DD->DeclInfo = Info;
472   }
473 }
474 
475 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
476   VisitRedeclarable(FD);
477   VisitDeclaratorDecl(FD);
478 
479   ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
480   FD->IdentifierNamespace = Record[Idx++];
481   switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
482   default: llvm_unreachable("Unhandled TemplatedKind!");
483   case FunctionDecl::TK_NonTemplate:
484     break;
485   case FunctionDecl::TK_FunctionTemplate:
486     FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record,
487                                                                       Idx));
488     break;
489   case FunctionDecl::TK_MemberSpecialization: {
490     FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx);
491     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
492     SourceLocation POI = ReadSourceLocation(Record, Idx);
493     FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
494     FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
495     break;
496   }
497   case FunctionDecl::TK_FunctionTemplateSpecialization: {
498     FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record,
499                                                                       Idx);
500     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
501 
502     // Template arguments.
503     SmallVector<TemplateArgument, 8> TemplArgs;
504     Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
505 
506     // Template args as written.
507     SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
508     SourceLocation LAngleLoc, RAngleLoc;
509     bool HasTemplateArgumentsAsWritten = Record[Idx++];
510     if (HasTemplateArgumentsAsWritten) {
511       unsigned NumTemplateArgLocs = Record[Idx++];
512       TemplArgLocs.reserve(NumTemplateArgLocs);
513       for (unsigned i=0; i != NumTemplateArgLocs; ++i)
514         TemplArgLocs.push_back(
515             Reader.ReadTemplateArgumentLoc(F, Record, Idx));
516 
517       LAngleLoc = ReadSourceLocation(Record, Idx);
518       RAngleLoc = ReadSourceLocation(Record, Idx);
519     }
520 
521     SourceLocation POI = ReadSourceLocation(Record, Idx);
522 
523     ASTContext &C = Reader.getContext();
524     TemplateArgumentList *TemplArgList
525       = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
526     TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
527     for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
528       TemplArgsInfo.addArgument(TemplArgLocs[i]);
529     FunctionTemplateSpecializationInfo *FTInfo
530         = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK,
531                                                      TemplArgList,
532                              HasTemplateArgumentsAsWritten ? &TemplArgsInfo : 0,
533                                                      POI);
534     FD->TemplateOrSpecialization = FTInfo;
535 
536     if (FD->isCanonicalDecl()) { // if canonical add to template's set.
537       // The template that contains the specializations set. It's not safe to
538       // use getCanonicalDecl on Template since it may still be initializing.
539       FunctionTemplateDecl *CanonTemplate
540         = ReadDeclAs<FunctionTemplateDecl>(Record, Idx);
541       // Get the InsertPos by FindNodeOrInsertPos() instead of calling
542       // InsertNode(FTInfo) directly to avoid the getASTContext() call in
543       // FunctionTemplateSpecializationInfo's Profile().
544       // We avoid getASTContext because a decl in the parent hierarchy may
545       // be initializing.
546       llvm::FoldingSetNodeID ID;
547       FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs.data(),
548                                                   TemplArgs.size(), C);
549       void *InsertPos = 0;
550       CanonTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
551       assert(InsertPos && "Another specialization already inserted!");
552       CanonTemplate->getSpecializations().InsertNode(FTInfo, InsertPos);
553     }
554     break;
555   }
556   case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
557     // Templates.
558     UnresolvedSet<8> TemplDecls;
559     unsigned NumTemplates = Record[Idx++];
560     while (NumTemplates--)
561       TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx));
562 
563     // Templates args.
564     TemplateArgumentListInfo TemplArgs;
565     unsigned NumArgs = Record[Idx++];
566     while (NumArgs--)
567       TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx));
568     TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx));
569     TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx));
570 
571     FD->setDependentTemplateSpecialization(Reader.getContext(),
572                                            TemplDecls, TemplArgs);
573     break;
574   }
575   }
576 
577   // FunctionDecl's body is handled last at ASTDeclReader::Visit,
578   // after everything else is read.
579 
580   FD->SClass = (StorageClass)Record[Idx++];
581   FD->SClassAsWritten = (StorageClass)Record[Idx++];
582   FD->IsInline = Record[Idx++];
583   FD->IsInlineSpecified = Record[Idx++];
584   FD->IsVirtualAsWritten = Record[Idx++];
585   FD->IsPure = Record[Idx++];
586   FD->HasInheritedPrototype = Record[Idx++];
587   FD->HasWrittenPrototype = Record[Idx++];
588   FD->IsDeleted = Record[Idx++];
589   FD->IsTrivial = Record[Idx++];
590   FD->IsDefaulted = Record[Idx++];
591   FD->IsExplicitlyDefaulted = Record[Idx++];
592   FD->HasImplicitReturnZero = Record[Idx++];
593   FD->IsConstexpr = Record[Idx++];
594   FD->EndRangeLoc = ReadSourceLocation(Record, Idx);
595 
596   // Read in the parameters.
597   unsigned NumParams = Record[Idx++];
598   SmallVector<ParmVarDecl *, 16> Params;
599   Params.reserve(NumParams);
600   for (unsigned I = 0; I != NumParams; ++I)
601     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
602   FD->setParams(Reader.getContext(), Params);
603 }
604 
605 void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
606   VisitNamedDecl(MD);
607   if (Record[Idx++]) {
608     // In practice, this won't be executed (since method definitions
609     // don't occur in header files).
610     MD->setBody(Reader.ReadStmt(F));
611     MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
612     MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
613   }
614   MD->setInstanceMethod(Record[Idx++]);
615   MD->setVariadic(Record[Idx++]);
616   MD->setSynthesized(Record[Idx++]);
617   MD->setDefined(Record[Idx++]);
618 
619   MD->IsRedeclaration = Record[Idx++];
620   MD->HasRedeclaration = Record[Idx++];
621   if (MD->HasRedeclaration)
622     Reader.getContext().setObjCMethodRedeclaration(MD,
623                                        ReadDeclAs<ObjCMethodDecl>(Record, Idx));
624 
625   MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
626   MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
627   MD->SetRelatedResultType(Record[Idx++]);
628   MD->setResultType(Reader.readType(F, Record, Idx));
629   MD->setResultTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
630   MD->setEndLoc(ReadSourceLocation(Record, Idx));
631   unsigned NumParams = Record[Idx++];
632   SmallVector<ParmVarDecl *, 16> Params;
633   Params.reserve(NumParams);
634   for (unsigned I = 0; I != NumParams; ++I)
635     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
636 
637   MD->SelLocsKind = Record[Idx++];
638   unsigned NumStoredSelLocs = Record[Idx++];
639   SmallVector<SourceLocation, 16> SelLocs;
640   SelLocs.reserve(NumStoredSelLocs);
641   for (unsigned i = 0; i != NumStoredSelLocs; ++i)
642     SelLocs.push_back(ReadSourceLocation(Record, Idx));
643 
644   MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
645 }
646 
647 void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
648   VisitNamedDecl(CD);
649   CD->setAtStartLoc(ReadSourceLocation(Record, Idx));
650   CD->setAtEndRange(ReadSourceRange(Record, Idx));
651 }
652 
653 void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
654   // Record the declaration -> global ID mapping.
655   Reader.DeclToID[ID] = ThisDeclID;
656 
657   RedeclarableResult Redecl = VisitRedeclarable(ID);
658   VisitObjCContainerDecl(ID);
659   TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
660 
661   // Determine whether we need to merge this declaration with another @interface
662   // with the same name.
663   // FIXME: Not needed unless the module file graph is a DAG.
664   if (FindExistingResult ExistingRes = findExisting(ID)) {
665     if (ObjCInterfaceDecl *Existing = ExistingRes) {
666       ObjCInterfaceDecl *ExistingCanon = Existing->getCanonicalDecl();
667       ObjCInterfaceDecl *IDCanon = ID->getCanonicalDecl();
668       if (ExistingCanon != IDCanon) {
669         // Have our redeclaration link point back at the canonical declaration
670         // of the existing declaration, so that this declaration has the
671         // appropriate canonical declaration.
672         ID->RedeclLink = ObjCInterfaceDecl::PreviousDeclLink(ExistingCanon);
673 
674         // Don't introduce IDCanon into the set of pending declaration chains.
675         Redecl.suppress();
676 
677         // Introduce ExistingCanon into the set of pending declaration chains,
678         // if in fact it came from a module file.
679         if (ExistingCanon->isFromASTFile()) {
680           GlobalDeclID ExistingCanonID = Reader.DeclToID[ExistingCanon];
681           assert(ExistingCanonID && "Unrecorded canonical declaration ID?");
682           if (Reader.PendingDeclChainsKnown.insert(ExistingCanonID))
683             Reader.PendingDeclChains.push_back(ExistingCanonID);
684         }
685 
686         // If this declaration was the canonical declaration, make a note of
687         // that. We accept the linear algorithm here because the number of
688         // unique canonical declarations of an entity should always be tiny.
689         if (IDCanon == ID) {
690           SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon];
691           if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID())
692                 == Merged.end())
693             Merged.push_back(Redecl.getFirstID());
694         }
695       }
696     }
697   }
698 
699   ObjCInterfaceDecl *Def = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
700   if (ID == Def) {
701     // Read the definition.
702     ID->allocateDefinitionData();
703 
704     ObjCInterfaceDecl::DefinitionData &Data = ID->data();
705 
706     // Read the superclass.
707     Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
708     Data.SuperClassLoc = ReadSourceLocation(Record, Idx);
709 
710     Data.EndLoc = ReadSourceLocation(Record, Idx);
711 
712     // Read the directly referenced protocols and their SourceLocations.
713     unsigned NumProtocols = Record[Idx++];
714     SmallVector<ObjCProtocolDecl *, 16> Protocols;
715     Protocols.reserve(NumProtocols);
716     for (unsigned I = 0; I != NumProtocols; ++I)
717       Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
718     SmallVector<SourceLocation, 16> ProtoLocs;
719     ProtoLocs.reserve(NumProtocols);
720     for (unsigned I = 0; I != NumProtocols; ++I)
721       ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
722     ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
723                         Reader.getContext());
724 
725     // Read the transitive closure of protocols referenced by this class.
726     NumProtocols = Record[Idx++];
727     Protocols.clear();
728     Protocols.reserve(NumProtocols);
729     for (unsigned I = 0; I != NumProtocols; ++I)
730       Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
731     ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
732                                           Reader.getContext());
733 
734     // Read the ivars.
735     unsigned NumIvars = Record[Idx++];
736     SmallVector<ObjCIvarDecl *, 16> IVars;
737     IVars.reserve(NumIvars);
738     for (unsigned I = 0; I != NumIvars; ++I)
739       IVars.push_back(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
740 
741     // Read the categories.
742     ID->setCategoryList(ReadDeclAs<ObjCCategoryDecl>(Record, Idx));
743 
744     // We will rebuild this list lazily.
745     ID->setIvarList(0);
746 
747     // Note that we have deserialized a definition.
748     Reader.PendingDefinitions.insert(ID);
749   } else if (Def && Def->Data) {
750     ID->Data = Def->Data;
751   }
752 }
753 
754 void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
755   VisitFieldDecl(IVD);
756   IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
757   // This field will be built lazily.
758   IVD->setNextIvar(0);
759   bool synth = Record[Idx++];
760   IVD->setSynthesize(synth);
761 }
762 
763 void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
764   VisitObjCContainerDecl(PD);
765   PD->InitiallyForwardDecl = Record[Idx++];
766   PD->isForwardProtoDecl = Record[Idx++];
767   PD->setLocEnd(ReadSourceLocation(Record, Idx));
768   unsigned NumProtoRefs = Record[Idx++];
769   SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
770   ProtoRefs.reserve(NumProtoRefs);
771   for (unsigned I = 0; I != NumProtoRefs; ++I)
772     ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
773   SmallVector<SourceLocation, 16> ProtoLocs;
774   ProtoLocs.reserve(NumProtoRefs);
775   for (unsigned I = 0; I != NumProtoRefs; ++I)
776     ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
777   PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
778                       Reader.getContext());
779 }
780 
781 void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
782   VisitFieldDecl(FD);
783 }
784 
785 void ASTDeclReader::VisitObjCClassDecl(ObjCClassDecl *CD) {
786   VisitDecl(CD);
787   CD->Interface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
788   CD->InterfaceLoc = ReadSourceLocation(Record, Idx);
789 }
790 
791 void ASTDeclReader::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *FPD) {
792   VisitDecl(FPD);
793   unsigned NumProtoRefs = Record[Idx++];
794   SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
795   ProtoRefs.reserve(NumProtoRefs);
796   for (unsigned I = 0; I != NumProtoRefs; ++I)
797     ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
798   SmallVector<SourceLocation, 16> ProtoLocs;
799   ProtoLocs.reserve(NumProtoRefs);
800   for (unsigned I = 0; I != NumProtoRefs; ++I)
801     ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
802   FPD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
803                        Reader.getContext());
804 }
805 
806 void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
807   VisitObjCContainerDecl(CD);
808   CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
809   unsigned NumProtoRefs = Record[Idx++];
810   SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
811   ProtoRefs.reserve(NumProtoRefs);
812   for (unsigned I = 0; I != NumProtoRefs; ++I)
813     ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
814   SmallVector<SourceLocation, 16> ProtoLocs;
815   ProtoLocs.reserve(NumProtoRefs);
816   for (unsigned I = 0; I != NumProtoRefs; ++I)
817     ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
818   CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
819                       Reader.getContext());
820   CD->NextClassCategory = ReadDeclAs<ObjCCategoryDecl>(Record, Idx);
821   CD->setHasSynthBitfield(Record[Idx++]);
822   CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx));
823 }
824 
825 void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
826   VisitNamedDecl(CAD);
827   CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
828 }
829 
830 void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
831   VisitNamedDecl(D);
832   D->setAtLoc(ReadSourceLocation(Record, Idx));
833   D->setType(GetTypeSourceInfo(Record, Idx));
834   // FIXME: stable encoding
835   D->setPropertyAttributes(
836                       (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
837   D->setPropertyAttributesAsWritten(
838                       (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
839   // FIXME: stable encoding
840   D->setPropertyImplementation(
841                             (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
842   D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
843   D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
844   D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
845   D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
846   D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
847 }
848 
849 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
850   VisitObjCContainerDecl(D);
851   D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
852 }
853 
854 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
855   VisitObjCImplDecl(D);
856   D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx));
857   D->CategoryNameLoc = ReadSourceLocation(Record, Idx);
858 }
859 
860 void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
861   VisitObjCImplDecl(D);
862   D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
863   llvm::tie(D->IvarInitializers, D->NumIvarInitializers)
864       = Reader.ReadCXXCtorInitializers(F, Record, Idx);
865   D->setHasSynthBitfield(Record[Idx++]);
866 }
867 
868 
869 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
870   VisitDecl(D);
871   D->setAtLoc(ReadSourceLocation(Record, Idx));
872   D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx));
873   D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx);
874   D->IvarLoc = ReadSourceLocation(Record, Idx);
875   D->setGetterCXXConstructor(Reader.ReadExpr(F));
876   D->setSetterCXXAssignment(Reader.ReadExpr(F));
877 }
878 
879 void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
880   VisitDeclaratorDecl(FD);
881   FD->setMutable(Record[Idx++]);
882   int BitWidthOrInitializer = Record[Idx++];
883   if (BitWidthOrInitializer == 1)
884     FD->setBitWidth(Reader.ReadExpr(F));
885   else if (BitWidthOrInitializer == 2)
886     FD->setInClassInitializer(Reader.ReadExpr(F));
887   if (!FD->getDeclName()) {
888     if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
889       Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
890   }
891 }
892 
893 void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
894   VisitValueDecl(FD);
895 
896   FD->ChainingSize = Record[Idx++];
897   assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
898   FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
899 
900   for (unsigned I = 0; I != FD->ChainingSize; ++I)
901     FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx);
902 }
903 
904 void ASTDeclReader::VisitVarDecl(VarDecl *VD) {
905   VisitRedeclarable(VD);
906   VisitDeclaratorDecl(VD);
907   VD->VarDeclBits.SClass = (StorageClass)Record[Idx++];
908   VD->VarDeclBits.SClassAsWritten = (StorageClass)Record[Idx++];
909   VD->VarDeclBits.ThreadSpecified = Record[Idx++];
910   VD->VarDeclBits.HasCXXDirectInit = Record[Idx++];
911   VD->VarDeclBits.ExceptionVar = Record[Idx++];
912   VD->VarDeclBits.NRVOVariable = Record[Idx++];
913   VD->VarDeclBits.CXXForRangeDecl = Record[Idx++];
914   VD->VarDeclBits.ARCPseudoStrong = Record[Idx++];
915   if (uint64_t Val = Record[Idx++]) {
916     VD->setInit(Reader.ReadExpr(F));
917     if (Val > 1) {
918       EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
919       Eval->CheckedICE = true;
920       Eval->IsICE = Val == 3;
921     }
922   }
923 
924   if (Record[Idx++]) { // HasMemberSpecializationInfo.
925     VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
926     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
927     SourceLocation POI = ReadSourceLocation(Record, Idx);
928     Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
929   }
930 }
931 
932 void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
933   VisitVarDecl(PD);
934 }
935 
936 void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
937   VisitVarDecl(PD);
938   unsigned isObjCMethodParam = Record[Idx++];
939   unsigned scopeDepth = Record[Idx++];
940   unsigned scopeIndex = Record[Idx++];
941   unsigned declQualifier = Record[Idx++];
942   if (isObjCMethodParam) {
943     assert(scopeDepth == 0);
944     PD->setObjCMethodScopeInfo(scopeIndex);
945     PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
946   } else {
947     PD->setScopeInfo(scopeDepth, scopeIndex);
948   }
949   PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++];
950   PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++];
951   if (Record[Idx++]) // hasUninstantiatedDefaultArg.
952     PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F));
953 }
954 
955 void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
956   VisitDecl(AD);
957   AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F)));
958   AD->setRParenLoc(ReadSourceLocation(Record, Idx));
959 }
960 
961 void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
962   VisitDecl(BD);
963   BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F)));
964   BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx));
965   unsigned NumParams = Record[Idx++];
966   SmallVector<ParmVarDecl *, 16> Params;
967   Params.reserve(NumParams);
968   for (unsigned I = 0; I != NumParams; ++I)
969     Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
970   BD->setParams(Params);
971 
972   bool capturesCXXThis = Record[Idx++];
973   unsigned numCaptures = Record[Idx++];
974   SmallVector<BlockDecl::Capture, 16> captures;
975   captures.reserve(numCaptures);
976   for (unsigned i = 0; i != numCaptures; ++i) {
977     VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx);
978     unsigned flags = Record[Idx++];
979     bool byRef = (flags & 1);
980     bool nested = (flags & 2);
981     Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : 0);
982 
983     captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
984   }
985   BD->setCaptures(Reader.getContext(), captures.begin(),
986                   captures.end(), capturesCXXThis);
987 }
988 
989 void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
990   VisitDecl(D);
991   D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
992   D->setExternLoc(ReadSourceLocation(Record, Idx));
993   D->setRBraceLoc(ReadSourceLocation(Record, Idx));
994 }
995 
996 void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
997   VisitNamedDecl(D);
998   D->setLocStart(ReadSourceLocation(Record, Idx));
999 }
1000 
1001 
1002 void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
1003   VisitNamedDecl(D);
1004   D->IsInline = Record[Idx++];
1005   D->LocStart = ReadSourceLocation(Record, Idx);
1006   D->RBraceLoc = ReadSourceLocation(Record, Idx);
1007   D->NextNamespace = Record[Idx++];
1008 
1009   bool IsOriginal = Record[Idx++];
1010   // FIXME: Modules will likely have trouble with pointing directly at
1011   // the original namespace.
1012   D->OrigOrAnonNamespace.setInt(IsOriginal);
1013   D->OrigOrAnonNamespace.setPointer(ReadDeclAs<NamespaceDecl>(Record, Idx));
1014 }
1015 
1016 void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
1017   VisitNamedDecl(D);
1018   D->NamespaceLoc = ReadSourceLocation(Record, Idx);
1019   D->IdentLoc = ReadSourceLocation(Record, Idx);
1020   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1021   D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx);
1022 }
1023 
1024 void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
1025   VisitNamedDecl(D);
1026   D->setUsingLocation(ReadSourceLocation(Record, Idx));
1027   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1028   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
1029   D->FirstUsingShadow = ReadDeclAs<UsingShadowDecl>(Record, Idx);
1030   D->setTypeName(Record[Idx++]);
1031   if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx))
1032     Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
1033 }
1034 
1035 void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
1036   VisitNamedDecl(D);
1037   D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx));
1038   D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx);
1039   UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx);
1040   if (Pattern)
1041     Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
1042 }
1043 
1044 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
1045   VisitNamedDecl(D);
1046   D->UsingLoc = ReadSourceLocation(Record, Idx);
1047   D->NamespaceLoc = ReadSourceLocation(Record, Idx);
1048   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1049   D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx);
1050   D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx);
1051 }
1052 
1053 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
1054   VisitValueDecl(D);
1055   D->setUsingLoc(ReadSourceLocation(Record, Idx));
1056   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1057   ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
1058 }
1059 
1060 void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
1061                                                UnresolvedUsingTypenameDecl *D) {
1062   VisitTypeDecl(D);
1063   D->TypenameLocation = ReadSourceLocation(Record, Idx);
1064   D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1065 }
1066 
1067 void ASTDeclReader::ReadCXXDefinitionData(
1068                                    struct CXXRecordDecl::DefinitionData &Data,
1069                                    const RecordData &Record, unsigned &Idx) {
1070   Data.UserDeclaredConstructor = Record[Idx++];
1071   Data.UserDeclaredCopyConstructor = Record[Idx++];
1072   Data.UserDeclaredMoveConstructor = Record[Idx++];
1073   Data.UserDeclaredCopyAssignment = Record[Idx++];
1074   Data.UserDeclaredMoveAssignment = Record[Idx++];
1075   Data.UserDeclaredDestructor = Record[Idx++];
1076   Data.Aggregate = Record[Idx++];
1077   Data.PlainOldData = Record[Idx++];
1078   Data.Empty = Record[Idx++];
1079   Data.Polymorphic = Record[Idx++];
1080   Data.Abstract = Record[Idx++];
1081   Data.IsStandardLayout = Record[Idx++];
1082   Data.HasNoNonEmptyBases = Record[Idx++];
1083   Data.HasPrivateFields = Record[Idx++];
1084   Data.HasProtectedFields = Record[Idx++];
1085   Data.HasPublicFields = Record[Idx++];
1086   Data.HasMutableFields = Record[Idx++];
1087   Data.HasTrivialDefaultConstructor = Record[Idx++];
1088   Data.HasConstexprNonCopyMoveConstructor = Record[Idx++];
1089   Data.HasTrivialCopyConstructor = Record[Idx++];
1090   Data.HasTrivialMoveConstructor = Record[Idx++];
1091   Data.HasTrivialCopyAssignment = Record[Idx++];
1092   Data.HasTrivialMoveAssignment = Record[Idx++];
1093   Data.HasTrivialDestructor = Record[Idx++];
1094   Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++];
1095   Data.ComputedVisibleConversions = Record[Idx++];
1096   Data.UserProvidedDefaultConstructor = Record[Idx++];
1097   Data.DeclaredDefaultConstructor = Record[Idx++];
1098   Data.DeclaredCopyConstructor = Record[Idx++];
1099   Data.DeclaredMoveConstructor = Record[Idx++];
1100   Data.DeclaredCopyAssignment = Record[Idx++];
1101   Data.DeclaredMoveAssignment = Record[Idx++];
1102   Data.DeclaredDestructor = Record[Idx++];
1103   Data.FailedImplicitMoveConstructor = Record[Idx++];
1104   Data.FailedImplicitMoveAssignment = Record[Idx++];
1105 
1106   Data.NumBases = Record[Idx++];
1107   if (Data.NumBases)
1108     Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
1109   Data.NumVBases = Record[Idx++];
1110   if (Data.NumVBases)
1111     Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
1112 
1113   Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx);
1114   Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx);
1115   assert(Data.Definition && "Data.Definition should be already set!");
1116   Data.FirstFriend = ReadDeclAs<FriendDecl>(Record, Idx);
1117 }
1118 
1119 void ASTDeclReader::InitializeCXXDefinitionData(CXXRecordDecl *D,
1120                                                 CXXRecordDecl *DefinitionDecl,
1121                                                 const RecordData &Record,
1122                                                 unsigned &Idx) {
1123   ASTContext &C = Reader.getContext();
1124 
1125   if (D == DefinitionDecl) {
1126     D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
1127     ReadCXXDefinitionData(*D->DefinitionData, Record, Idx);
1128 
1129     // Note that we have deserialized a definition.
1130     Reader.PendingDefinitions.insert(D);
1131   } else if (DefinitionDecl && DefinitionDecl->DefinitionData) {
1132     D->DefinitionData = DefinitionDecl->DefinitionData;
1133   }
1134 }
1135 
1136 void ASTDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
1137   VisitRecordDecl(D);
1138 
1139   CXXRecordDecl *DefinitionDecl = ReadDeclAs<CXXRecordDecl>(Record, Idx);
1140   InitializeCXXDefinitionData(D, DefinitionDecl, Record, Idx);
1141 
1142   ASTContext &C = Reader.getContext();
1143 
1144   enum CXXRecKind {
1145     CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1146   };
1147   switch ((CXXRecKind)Record[Idx++]) {
1148   default:
1149     llvm_unreachable("Out of sync with ASTDeclWriter::VisitCXXRecordDecl?");
1150   case CXXRecNotTemplate:
1151     break;
1152   case CXXRecTemplate:
1153     D->TemplateOrInstantiation = ReadDeclAs<ClassTemplateDecl>(Record, Idx);
1154     break;
1155   case CXXRecMemberSpecialization: {
1156     CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx);
1157     TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
1158     SourceLocation POI = ReadSourceLocation(Record, Idx);
1159     MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1160     MSI->setPointOfInstantiation(POI);
1161     D->TemplateOrInstantiation = MSI;
1162     break;
1163   }
1164   }
1165 
1166   // Load the key function to avoid deserializing every method so we can
1167   // compute it.
1168   if (D->IsCompleteDefinition) {
1169     if (CXXMethodDecl *Key = ReadDeclAs<CXXMethodDecl>(Record, Idx))
1170       C.KeyFunctions[D] = Key;
1171   }
1172 }
1173 
1174 void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
1175   VisitFunctionDecl(D);
1176   unsigned NumOverridenMethods = Record[Idx++];
1177   while (NumOverridenMethods--) {
1178     // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
1179     // MD may be initializing.
1180     if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx))
1181       Reader.getContext().addOverriddenMethod(D, MD);
1182   }
1183 }
1184 
1185 void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
1186   VisitCXXMethodDecl(D);
1187 
1188   D->IsExplicitSpecified = Record[Idx++];
1189   D->ImplicitlyDefined = Record[Idx++];
1190   llvm::tie(D->CtorInitializers, D->NumCtorInitializers)
1191       = Reader.ReadCXXCtorInitializers(F, Record, Idx);
1192 }
1193 
1194 void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
1195   VisitCXXMethodDecl(D);
1196 
1197   D->ImplicitlyDefined = Record[Idx++];
1198   D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
1199 }
1200 
1201 void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
1202   VisitCXXMethodDecl(D);
1203   D->IsExplicitSpecified = Record[Idx++];
1204 }
1205 
1206 void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
1207   VisitDecl(D);
1208   D->ImportedAndComplete.setPointer(readModule(Record, Idx));
1209   D->ImportedAndComplete.setInt(Record[Idx++]);
1210   SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1);
1211   for (unsigned I = 0, N = Record.back(); I != N; ++I)
1212     StoredLocs[I] = ReadSourceLocation(Record, Idx);
1213   ++Idx;
1214 }
1215 
1216 void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
1217   VisitDecl(D);
1218   D->setColonLoc(ReadSourceLocation(Record, Idx));
1219 }
1220 
1221 void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
1222   VisitDecl(D);
1223   if (Record[Idx++])
1224     D->Friend = GetTypeSourceInfo(Record, Idx);
1225   else
1226     D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
1227   D->NextFriend = Record[Idx++];
1228   D->UnsupportedFriend = (Record[Idx++] != 0);
1229   D->FriendLoc = ReadSourceLocation(Record, Idx);
1230 }
1231 
1232 void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
1233   VisitDecl(D);
1234   unsigned NumParams = Record[Idx++];
1235   D->NumParams = NumParams;
1236   D->Params = new TemplateParameterList*[NumParams];
1237   for (unsigned i = 0; i != NumParams; ++i)
1238     D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
1239   if (Record[Idx++]) // HasFriendDecl
1240     D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
1241   else
1242     D->Friend = GetTypeSourceInfo(Record, Idx);
1243   D->FriendLoc = ReadSourceLocation(Record, Idx);
1244 }
1245 
1246 void ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
1247   VisitNamedDecl(D);
1248 
1249   NamedDecl *TemplatedDecl = ReadDeclAs<NamedDecl>(Record, Idx);
1250   TemplateParameterList* TemplateParams
1251       = Reader.ReadTemplateParameterList(F, Record, Idx);
1252   D->init(TemplatedDecl, TemplateParams);
1253 }
1254 
1255 void ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
1256   // Initialize CommonOrPrev before VisitTemplateDecl so that getCommonPtr()
1257   // can be used while this is still initializing.
1258   enum RedeclKind { FirstDeclaration, FirstInFile, PointsToPrevious };
1259   RedeclKind Kind = (RedeclKind)Record[Idx++];
1260 
1261   // Determine the first declaration ID.
1262   DeclID FirstDeclID;
1263   switch (Kind) {
1264   case FirstDeclaration: {
1265     FirstDeclID = ThisDeclID;
1266 
1267     // Since this is the first declaration of the template, fill in the
1268     // information for the 'common' pointer.
1269     if (D->CommonOrPrev.isNull()) {
1270       RedeclarableTemplateDecl::CommonBase *Common
1271         = D->newCommon(Reader.getContext());
1272       Common->Latest = D;
1273       D->CommonOrPrev = Common;
1274     }
1275 
1276     if (RedeclarableTemplateDecl *RTD
1277           = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) {
1278       assert(RTD->getKind() == D->getKind() &&
1279              "InstantiatedFromMemberTemplate kind mismatch");
1280       D->setInstantiatedFromMemberTemplateImpl(RTD);
1281       if (Record[Idx++])
1282         D->setMemberSpecialization();
1283     }
1284     break;
1285   }
1286 
1287   case FirstInFile:
1288   case PointsToPrevious: {
1289     FirstDeclID = ReadDeclID(Record, Idx);
1290     DeclID PrevDeclID = ReadDeclID(Record, Idx);
1291 
1292     RedeclarableTemplateDecl *FirstDecl
1293       = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(FirstDeclID));
1294 
1295     // We delay loading of the redeclaration chain to avoid deeply nested calls.
1296     // We temporarily set the first (canonical) declaration as the previous one
1297     // which is the one that matters and mark the real previous DeclID to be
1298     // loaded and attached later on.
1299     D->CommonOrPrev = FirstDecl;
1300 
1301     if (Kind == PointsToPrevious) {
1302       // Make a note that we need to wire up this declaration to its
1303       // previous declaration, later. We don't need to do this for the first
1304       // declaration in any given module file, because those will be wired
1305       // together later.
1306       Reader.PendingPreviousDecls.push_back(std::make_pair(D, PrevDeclID));
1307     }
1308     break;
1309   }
1310   }
1311 
1312   VisitTemplateDecl(D);
1313   D->IdentifierNamespace = Record[Idx++];
1314 }
1315 
1316 void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
1317   VisitRedeclarableTemplateDecl(D);
1318 
1319   if (D->getPreviousDeclaration() == 0) {
1320     // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
1321     // the specializations.
1322     SmallVector<serialization::DeclID, 2> SpecIDs;
1323     SpecIDs.push_back(0);
1324 
1325     // Specializations.
1326     unsigned Size = Record[Idx++];
1327     SpecIDs[0] += Size;
1328     for (unsigned I = 0; I != Size; ++I)
1329       SpecIDs.push_back(ReadDeclID(Record, Idx));
1330 
1331     // Partial specializations.
1332     Size = Record[Idx++];
1333     SpecIDs[0] += Size;
1334     for (unsigned I = 0; I != Size; ++I)
1335       SpecIDs.push_back(ReadDeclID(Record, Idx));
1336 
1337     if (SpecIDs[0]) {
1338       typedef serialization::DeclID DeclID;
1339 
1340       ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1341       CommonPtr->LazySpecializations
1342         = new (Reader.getContext()) DeclID [SpecIDs.size()];
1343       memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1344              SpecIDs.size() * sizeof(DeclID));
1345     }
1346 
1347     // InjectedClassNameType is computed.
1348   }
1349 }
1350 
1351 void ASTDeclReader::VisitClassTemplateSpecializationDecl(
1352                                            ClassTemplateSpecializationDecl *D) {
1353   VisitCXXRecordDecl(D);
1354 
1355   ASTContext &C = Reader.getContext();
1356   if (Decl *InstD = ReadDecl(Record, Idx)) {
1357     if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
1358       D->SpecializedTemplate = CTD;
1359     } else {
1360       SmallVector<TemplateArgument, 8> TemplArgs;
1361       Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1362       TemplateArgumentList *ArgList
1363         = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1364                                            TemplArgs.size());
1365       ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS
1366           = new (C) ClassTemplateSpecializationDecl::
1367                                              SpecializedPartialSpecialization();
1368       PS->PartialSpecialization
1369           = cast<ClassTemplatePartialSpecializationDecl>(InstD);
1370       PS->TemplateArgs = ArgList;
1371       D->SpecializedTemplate = PS;
1372     }
1373   }
1374 
1375   // Explicit info.
1376   if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
1377     ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo
1378         = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
1379     ExplicitInfo->TypeAsWritten = TyInfo;
1380     ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1381     ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
1382     D->ExplicitInfo = ExplicitInfo;
1383   }
1384 
1385   SmallVector<TemplateArgument, 8> TemplArgs;
1386   Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
1387   D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1388                                                      TemplArgs.size());
1389   D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
1390   D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
1391 
1392   if (D->isCanonicalDecl()) { // It's kept in the folding set.
1393     ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx);
1394     if (ClassTemplatePartialSpecializationDecl *Partial
1395                        = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
1396       CanonPattern->getCommonPtr()->PartialSpecializations.InsertNode(Partial);
1397     } else {
1398       CanonPattern->getCommonPtr()->Specializations.InsertNode(D);
1399     }
1400   }
1401 }
1402 
1403 void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
1404                                     ClassTemplatePartialSpecializationDecl *D) {
1405   VisitClassTemplateSpecializationDecl(D);
1406 
1407   ASTContext &C = Reader.getContext();
1408   D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
1409 
1410   unsigned NumArgs = Record[Idx++];
1411   if (NumArgs) {
1412     D->NumArgsAsWritten = NumArgs;
1413     D->ArgsAsWritten = new (C) TemplateArgumentLoc[NumArgs];
1414     for (unsigned i=0; i != NumArgs; ++i)
1415       D->ArgsAsWritten[i] = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
1416   }
1417 
1418   D->SequenceNumber = Record[Idx++];
1419 
1420   // These are read/set from/to the first declaration.
1421   if (D->getPreviousDeclaration() == 0) {
1422     D->InstantiatedFromMember.setPointer(
1423       ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx));
1424     D->InstantiatedFromMember.setInt(Record[Idx++]);
1425   }
1426 }
1427 
1428 void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
1429                                     ClassScopeFunctionSpecializationDecl *D) {
1430   VisitDecl(D);
1431   D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx);
1432 }
1433 
1434 void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
1435   VisitRedeclarableTemplateDecl(D);
1436 
1437   if (D->getPreviousDeclaration() == 0) {
1438     // This FunctionTemplateDecl owns a CommonPtr; read it.
1439 
1440     // Read the function specialization declarations.
1441     // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
1442     // when reading the specialized FunctionDecl.
1443     unsigned NumSpecs = Record[Idx++];
1444     while (NumSpecs--)
1445       (void)ReadDecl(Record, Idx);
1446   }
1447 }
1448 
1449 void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
1450   VisitTypeDecl(D);
1451 
1452   D->setDeclaredWithTypename(Record[Idx++]);
1453 
1454   bool Inherited = Record[Idx++];
1455   TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx);
1456   D->setDefaultArgument(DefArg, Inherited);
1457 }
1458 
1459 void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
1460   VisitDeclaratorDecl(D);
1461   // TemplateParmPosition.
1462   D->setDepth(Record[Idx++]);
1463   D->setPosition(Record[Idx++]);
1464   if (D->isExpandedParameterPack()) {
1465     void **Data = reinterpret_cast<void **>(D + 1);
1466     for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
1467       Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr();
1468       Data[2*I + 1] = GetTypeSourceInfo(Record, Idx);
1469     }
1470   } else {
1471     // Rest of NonTypeTemplateParmDecl.
1472     D->ParameterPack = Record[Idx++];
1473     if (Record[Idx++]) {
1474       Expr *DefArg = Reader.ReadExpr(F);
1475       bool Inherited = Record[Idx++];
1476       D->setDefaultArgument(DefArg, Inherited);
1477    }
1478   }
1479 }
1480 
1481 void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
1482   VisitTemplateDecl(D);
1483   // TemplateParmPosition.
1484   D->setDepth(Record[Idx++]);
1485   D->setPosition(Record[Idx++]);
1486   // Rest of TemplateTemplateParmDecl.
1487   TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
1488   bool IsInherited = Record[Idx++];
1489   D->setDefaultArgument(Arg, IsInherited);
1490   D->ParameterPack = Record[Idx++];
1491 }
1492 
1493 void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
1494   VisitRedeclarableTemplateDecl(D);
1495 }
1496 
1497 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
1498   VisitDecl(D);
1499   D->AssertExpr = Reader.ReadExpr(F);
1500   D->Message = cast<StringLiteral>(Reader.ReadExpr(F));
1501   D->RParenLoc = ReadSourceLocation(Record, Idx);
1502 }
1503 
1504 std::pair<uint64_t, uint64_t>
1505 ASTDeclReader::VisitDeclContext(DeclContext *DC) {
1506   uint64_t LexicalOffset = Record[Idx++];
1507   uint64_t VisibleOffset = Record[Idx++];
1508   return std::make_pair(LexicalOffset, VisibleOffset);
1509 }
1510 
1511 template <typename T>
1512 ASTDeclReader::RedeclarableResult
1513 ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
1514   enum RedeclKind { FirstDeclaration = 0, FirstInFile, PointsToPrevious };
1515   RedeclKind Kind = (RedeclKind)Record[Idx++];
1516 
1517   DeclID FirstDeclID;
1518   switch (Kind) {
1519   case FirstDeclaration:
1520     FirstDeclID = ThisDeclID;
1521     break;
1522 
1523   case FirstInFile:
1524   case PointsToPrevious: {
1525     FirstDeclID = ReadDeclID(Record, Idx);
1526     DeclID PrevDeclID = ReadDeclID(Record, Idx);
1527 
1528     T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
1529 
1530     // We delay loading of the redeclaration chain to avoid deeply nested calls.
1531     // We temporarily set the first (canonical) declaration as the previous one
1532     // which is the one that matters and mark the real previous DeclID to be
1533     // loaded & attached later on.
1534     D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink(FirstDecl);
1535 
1536     if (Kind == PointsToPrevious) {
1537       // Make a note that we need to wire up this declaration to its
1538       // previous declaration, later. We don't need to do this for the first
1539       // declaration in any given module file, because those will be wired
1540       // together later.
1541       Reader.PendingPreviousDecls.push_back(std::make_pair(static_cast<T*>(D),
1542                                                            PrevDeclID));
1543     }
1544     break;
1545   }
1546   }
1547 
1548   // The result structure takes care of note that we need to load the
1549   // other declaration chains for this ID.
1550   return RedeclarableResult(Reader, FirstDeclID);
1551 }
1552 
1553 //===----------------------------------------------------------------------===//
1554 // Attribute Reading
1555 //===----------------------------------------------------------------------===//
1556 
1557 /// \brief Reads attributes from the current stream position.
1558 void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs,
1559                                const RecordData &Record, unsigned &Idx) {
1560   for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) {
1561     Attr *New = 0;
1562     attr::Kind Kind = (attr::Kind)Record[Idx++];
1563     SourceRange Range = ReadSourceRange(F, Record, Idx);
1564 
1565 #include "clang/Serialization/AttrPCHRead.inc"
1566 
1567     assert(New && "Unable to decode attribute?");
1568     Attrs.push_back(New);
1569   }
1570 }
1571 
1572 //===----------------------------------------------------------------------===//
1573 // ASTReader Implementation
1574 //===----------------------------------------------------------------------===//
1575 
1576 /// \brief Note that we have loaded the declaration with the given
1577 /// Index.
1578 ///
1579 /// This routine notes that this declaration has already been loaded,
1580 /// so that future GetDecl calls will return this declaration rather
1581 /// than trying to load a new declaration.
1582 inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
1583   assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1584   DeclsLoaded[Index] = D;
1585 }
1586 
1587 
1588 /// \brief Determine whether the consumer will be interested in seeing
1589 /// this declaration (via HandleTopLevelDecl).
1590 ///
1591 /// This routine should return true for anything that might affect
1592 /// code generation, e.g., inline function definitions, Objective-C
1593 /// declarations with metadata, etc.
1594 static bool isConsumerInterestedIn(Decl *D) {
1595   // An ObjCMethodDecl is never considered as "interesting" because its
1596   // implementation container always is.
1597 
1598   if (isa<FileScopeAsmDecl>(D) ||
1599       isa<ObjCProtocolDecl>(D) ||
1600       isa<ObjCImplDecl>(D))
1601     return true;
1602   if (VarDecl *Var = dyn_cast<VarDecl>(D))
1603     return Var->isFileVarDecl() &&
1604            Var->isThisDeclarationADefinition() == VarDecl::Definition;
1605   if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
1606     return Func->doesThisDeclarationHaveABody();
1607 
1608   return false;
1609 }
1610 
1611 /// \brief Get the correct cursor and offset for loading a declaration.
1612 ASTReader::RecordLocation
1613 ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) {
1614   // See if there's an override.
1615   DeclReplacementMap::iterator It = ReplacedDecls.find(ID);
1616   if (It != ReplacedDecls.end()) {
1617     RawLocation = It->second.RawLoc;
1618     return RecordLocation(It->second.Mod, It->second.Offset);
1619   }
1620 
1621   GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
1622   assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
1623   ModuleFile *M = I->second;
1624   const DeclOffset &
1625     DOffs =  M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
1626   RawLocation = DOffs.Loc;
1627   return RecordLocation(M, DOffs.BitOffset);
1628 }
1629 
1630 ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
1631   ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I
1632     = GlobalBitOffsetsMap.find(GlobalOffset);
1633 
1634   assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
1635   return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
1636 }
1637 
1638 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) {
1639   return LocalOffset + M.GlobalBitOffset;
1640 }
1641 
1642 /// \brief Determine whether the two declarations refer to the same entity.
1643 static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
1644   assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
1645 
1646   if (X == Y)
1647     return true;
1648 
1649   // Must have the same kind.
1650   if (X->getKind() != Y->getKind())
1651     return false;
1652 
1653   // Must be in the same context.
1654   if (!X->getDeclContext()->getRedeclContext()->Equals(
1655          Y->getDeclContext()->getRedeclContext()))
1656     return false;
1657 
1658   // Objective-C classes with the same name always match.
1659   if (isa<ObjCInterfaceDecl>(X))
1660     return true;
1661 
1662   // FIXME: Many other cases to implement.
1663   return false;
1664 }
1665 
1666 ASTDeclReader::FindExistingResult::~FindExistingResult() {
1667   if (!AddResult)
1668     return;
1669 
1670   DeclContext *DC = New->getDeclContext()->getRedeclContext();
1671   if (DC->isTranslationUnit() && Reader.SemaObj) {
1672     if (!Existing) {
1673       Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, New->getDeclName());
1674     }
1675   }
1676 }
1677 
1678 ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
1679   DeclContext *DC = D->getDeclContext()->getRedeclContext();
1680   if (!DC->isFileContext())
1681     return FindExistingResult(Reader);
1682 
1683   if (DC->isTranslationUnit() && Reader.SemaObj) {
1684     IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver;
1685     for (IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1686                                    IEnd = IdResolver.end();
1687          I != IEnd; ++I) {
1688       if (isSameEntity(*I, D))
1689         return FindExistingResult(Reader, D, *I);
1690     }
1691   }
1692 
1693   // FIXME: Search in the DeclContext.
1694 
1695   return FindExistingResult(Reader, D, /*Existing=*/0);
1696 }
1697 
1698 void ASTDeclReader::attachPreviousDecl(Decl *D, Decl *previous) {
1699   assert(D && previous);
1700   if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1701     TD->RedeclLink.setPointer(cast<TagDecl>(previous));
1702   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1703     FD->RedeclLink.setPointer(cast<FunctionDecl>(previous));
1704   } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1705     VD->RedeclLink.setPointer(cast<VarDecl>(previous));
1706   } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1707     TD->RedeclLink.setPointer(cast<TypedefNameDecl>(previous));
1708   } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
1709     ID->RedeclLink.setPointer(cast<ObjCInterfaceDecl>(previous));
1710   } else {
1711     RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1712     TD->CommonOrPrev = cast<RedeclarableTemplateDecl>(previous);
1713   }
1714 }
1715 
1716 void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
1717   assert(D && Latest);
1718   if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1719     TD->RedeclLink
1720       = Redeclarable<TagDecl>::LatestDeclLink(cast<TagDecl>(Latest));
1721   } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1722     FD->RedeclLink
1723       = Redeclarable<FunctionDecl>::LatestDeclLink(cast<FunctionDecl>(Latest));
1724   } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1725     VD->RedeclLink
1726       = Redeclarable<VarDecl>::LatestDeclLink(cast<VarDecl>(Latest));
1727   } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1728     TD->RedeclLink
1729       = Redeclarable<TypedefNameDecl>::LatestDeclLink(
1730                                                 cast<TypedefNameDecl>(Latest));
1731   } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
1732     ID->RedeclLink
1733       = Redeclarable<ObjCInterfaceDecl>::LatestDeclLink(
1734                                               cast<ObjCInterfaceDecl>(Latest));
1735   } else {
1736     RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1737     TD->getCommonPtr()->Latest = cast<RedeclarableTemplateDecl>(Latest);
1738   }
1739 }
1740 
1741 ASTReader::MergedDeclsMap::iterator
1742 ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) {
1743   // If we don't have any stored merged declarations, just look in the
1744   // merged declarations set.
1745   StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID);
1746   if (StoredPos == StoredMergedDecls.end())
1747     return MergedDecls.find(Canon);
1748 
1749   // Append the stored merged declarations to the merged declarations set.
1750   MergedDeclsMap::iterator Pos = MergedDecls.find(Canon);
1751   if (Pos == MergedDecls.end())
1752     Pos = MergedDecls.insert(std::make_pair(Canon,
1753                                             SmallVector<DeclID, 2>())).first;
1754   Pos->second.append(StoredPos->second.begin(), StoredPos->second.end());
1755   StoredMergedDecls.erase(StoredPos);
1756 
1757   // Sort and uniquify the set of merged declarations.
1758   llvm::array_pod_sort(Pos->second.begin(), Pos->second.end());
1759   Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()),
1760                     Pos->second.end());
1761   return Pos;
1762 }
1763 
1764 void ASTReader::loadAndAttachPreviousDecl(Decl *D, serialization::DeclID ID) {
1765   Decl *previous = GetDecl(ID);
1766   ASTDeclReader::attachPreviousDecl(D, previous);
1767 }
1768 
1769 /// \brief Read the declaration at the given offset from the AST file.
1770 Decl *ASTReader::ReadDeclRecord(DeclID ID) {
1771   unsigned Index = ID - NUM_PREDEF_DECL_IDS;
1772   unsigned RawLocation = 0;
1773   RecordLocation Loc = DeclCursorForID(ID, RawLocation);
1774   llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
1775   // Keep track of where we are in the stream, then jump back there
1776   // after reading this declaration.
1777   SavedStreamPosition SavedPosition(DeclsCursor);
1778 
1779   ReadingKindTracker ReadingKind(Read_Decl, *this);
1780 
1781   // Note that we are loading a declaration record.
1782   Deserializing ADecl(this);
1783 
1784   DeclsCursor.JumpToBit(Loc.Offset);
1785   RecordData Record;
1786   unsigned Code = DeclsCursor.ReadCode();
1787   unsigned Idx = 0;
1788   ASTDeclReader Reader(*this, *Loc.F, DeclsCursor, ID, RawLocation, Record,Idx);
1789 
1790   Decl *D = 0;
1791   switch ((DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
1792   case DECL_CONTEXT_LEXICAL:
1793   case DECL_CONTEXT_VISIBLE:
1794     llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord");
1795   case DECL_TYPEDEF:
1796     D = TypedefDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
1797                             0, 0);
1798     break;
1799   case DECL_TYPEALIAS:
1800     D = TypeAliasDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
1801                               0, 0);
1802     break;
1803   case DECL_ENUM:
1804     D = EnumDecl::Create(Context, Decl::EmptyShell());
1805     break;
1806   case DECL_RECORD:
1807     D = RecordDecl::Create(Context, Decl::EmptyShell());
1808     break;
1809   case DECL_ENUM_CONSTANT:
1810     D = EnumConstantDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
1811                                  0, llvm::APSInt());
1812     break;
1813   case DECL_FUNCTION:
1814     D = FunctionDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
1815                              DeclarationName(), QualType(), 0);
1816     break;
1817   case DECL_LINKAGE_SPEC:
1818     D = LinkageSpecDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
1819                                 (LinkageSpecDecl::LanguageIDs)0,
1820                                 SourceLocation());
1821     break;
1822   case DECL_LABEL:
1823     D = LabelDecl::Create(Context, 0, SourceLocation(), 0);
1824     break;
1825   case DECL_NAMESPACE:
1826     D = NamespaceDecl::Create(Context, 0, SourceLocation(),
1827                               SourceLocation(), 0);
1828     break;
1829   case DECL_NAMESPACE_ALIAS:
1830     D = NamespaceAliasDecl::Create(Context, 0, SourceLocation(),
1831                                    SourceLocation(), 0,
1832                                    NestedNameSpecifierLoc(),
1833                                    SourceLocation(), 0);
1834     break;
1835   case DECL_USING:
1836     D = UsingDecl::Create(Context, 0, SourceLocation(),
1837                           NestedNameSpecifierLoc(), DeclarationNameInfo(),
1838                           false);
1839     break;
1840   case DECL_USING_SHADOW:
1841     D = UsingShadowDecl::Create(Context, 0, SourceLocation(), 0, 0);
1842     break;
1843   case DECL_USING_DIRECTIVE:
1844     D = UsingDirectiveDecl::Create(Context, 0, SourceLocation(),
1845                                    SourceLocation(), NestedNameSpecifierLoc(),
1846                                    SourceLocation(), 0, 0);
1847     break;
1848   case DECL_UNRESOLVED_USING_VALUE:
1849     D = UnresolvedUsingValueDecl::Create(Context, 0, SourceLocation(),
1850                                          NestedNameSpecifierLoc(),
1851                                          DeclarationNameInfo());
1852     break;
1853   case DECL_UNRESOLVED_USING_TYPENAME:
1854     D = UnresolvedUsingTypenameDecl::Create(Context, 0, SourceLocation(),
1855                                             SourceLocation(),
1856                                             NestedNameSpecifierLoc(),
1857                                             SourceLocation(),
1858                                             DeclarationName());
1859     break;
1860   case DECL_CXX_RECORD:
1861     D = CXXRecordDecl::Create(Context, Decl::EmptyShell());
1862     break;
1863   case DECL_CXX_METHOD:
1864     D = CXXMethodDecl::Create(Context, 0, SourceLocation(),
1865                               DeclarationNameInfo(), QualType(), 0,
1866                               false, SC_None, false, false, SourceLocation());
1867     break;
1868   case DECL_CXX_CONSTRUCTOR:
1869     D = CXXConstructorDecl::Create(Context, Decl::EmptyShell());
1870     break;
1871   case DECL_CXX_DESTRUCTOR:
1872     D = CXXDestructorDecl::Create(Context, Decl::EmptyShell());
1873     break;
1874   case DECL_CXX_CONVERSION:
1875     D = CXXConversionDecl::Create(Context, Decl::EmptyShell());
1876     break;
1877   case DECL_ACCESS_SPEC:
1878     D = AccessSpecDecl::Create(Context, Decl::EmptyShell());
1879     break;
1880   case DECL_FRIEND:
1881     D = FriendDecl::Create(Context, Decl::EmptyShell());
1882     break;
1883   case DECL_FRIEND_TEMPLATE:
1884     D = FriendTemplateDecl::Create(Context, Decl::EmptyShell());
1885     break;
1886   case DECL_CLASS_TEMPLATE:
1887     D = ClassTemplateDecl::Create(Context, Decl::EmptyShell());
1888     break;
1889   case DECL_CLASS_TEMPLATE_SPECIALIZATION:
1890     D = ClassTemplateSpecializationDecl::Create(Context, Decl::EmptyShell());
1891     break;
1892   case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
1893     D = ClassTemplatePartialSpecializationDecl::Create(Context,
1894                                                        Decl::EmptyShell());
1895     break;
1896   case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
1897     D = ClassScopeFunctionSpecializationDecl::Create(Context,
1898                                                      Decl::EmptyShell());
1899     break;
1900   case DECL_FUNCTION_TEMPLATE:
1901       D = FunctionTemplateDecl::Create(Context, Decl::EmptyShell());
1902     break;
1903   case DECL_TEMPLATE_TYPE_PARM:
1904     D = TemplateTypeParmDecl::Create(Context, Decl::EmptyShell());
1905     break;
1906   case DECL_NON_TYPE_TEMPLATE_PARM:
1907     D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
1908                                         SourceLocation(), 0, 0, 0, QualType(),
1909                                         false, 0);
1910     break;
1911   case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK:
1912     D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
1913                                         SourceLocation(), 0, 0, 0, QualType(),
1914                                         0, 0, Record[Idx++], 0);
1915     break;
1916   case DECL_TEMPLATE_TEMPLATE_PARM:
1917     D = TemplateTemplateParmDecl::Create(Context, 0, SourceLocation(), 0, 0,
1918                                          false, 0, 0);
1919     break;
1920   case DECL_TYPE_ALIAS_TEMPLATE:
1921     D = TypeAliasTemplateDecl::Create(Context, Decl::EmptyShell());
1922     break;
1923   case DECL_STATIC_ASSERT:
1924     D = StaticAssertDecl::Create(Context, 0, SourceLocation(), 0, 0,
1925                                  SourceLocation());
1926     break;
1927 
1928   case DECL_OBJC_METHOD:
1929     D = ObjCMethodDecl::Create(Context, SourceLocation(), SourceLocation(),
1930                                Selector(), QualType(), 0, 0);
1931     break;
1932   case DECL_OBJC_INTERFACE:
1933     D = ObjCInterfaceDecl::CreateEmpty(Context);
1934     break;
1935   case DECL_OBJC_IVAR:
1936     D = ObjCIvarDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
1937                              0, QualType(), 0, ObjCIvarDecl::None);
1938     break;
1939   case DECL_OBJC_PROTOCOL:
1940     D = ObjCProtocolDecl::Create(Context, 0, 0, SourceLocation(),
1941                                  SourceLocation(), 0);
1942     break;
1943   case DECL_OBJC_AT_DEFS_FIELD:
1944     D = ObjCAtDefsFieldDecl::Create(Context, 0, SourceLocation(),
1945                                     SourceLocation(), 0, QualType(), 0);
1946     break;
1947   case DECL_OBJC_CLASS:
1948     D = ObjCClassDecl::Create(Context, 0, SourceLocation());
1949     break;
1950   case DECL_OBJC_FORWARD_PROTOCOL:
1951     D = ObjCForwardProtocolDecl::Create(Context, 0, SourceLocation());
1952     break;
1953   case DECL_OBJC_CATEGORY:
1954     D = ObjCCategoryDecl::Create(Context, Decl::EmptyShell());
1955     break;
1956   case DECL_OBJC_CATEGORY_IMPL:
1957     D = ObjCCategoryImplDecl::Create(Context, 0, 0, 0, SourceLocation(),
1958                                      SourceLocation(), SourceLocation());
1959     break;
1960   case DECL_OBJC_IMPLEMENTATION:
1961     D = ObjCImplementationDecl::Create(Context, 0, 0, 0, SourceLocation(),
1962                                        SourceLocation());
1963     break;
1964   case DECL_OBJC_COMPATIBLE_ALIAS:
1965     D = ObjCCompatibleAliasDecl::Create(Context, 0, SourceLocation(), 0, 0);
1966     break;
1967   case DECL_OBJC_PROPERTY:
1968     D = ObjCPropertyDecl::Create(Context, 0, SourceLocation(), 0, SourceLocation(),
1969                                  0);
1970     break;
1971   case DECL_OBJC_PROPERTY_IMPL:
1972     D = ObjCPropertyImplDecl::Create(Context, 0, SourceLocation(),
1973                                      SourceLocation(), 0,
1974                                      ObjCPropertyImplDecl::Dynamic, 0,
1975                                      SourceLocation());
1976     break;
1977   case DECL_FIELD:
1978     D = FieldDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
1979                           QualType(), 0, 0, false, false);
1980     break;
1981   case DECL_INDIRECTFIELD:
1982     D = IndirectFieldDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
1983                                   0, 0);
1984     break;
1985   case DECL_VAR:
1986     D = VarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
1987                         QualType(), 0, SC_None, SC_None);
1988     break;
1989 
1990   case DECL_IMPLICIT_PARAM:
1991     D = ImplicitParamDecl::Create(Context, 0, SourceLocation(), 0, QualType());
1992     break;
1993 
1994   case DECL_PARM_VAR:
1995     D = ParmVarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
1996                             QualType(), 0, SC_None, SC_None, 0);
1997     break;
1998   case DECL_FILE_SCOPE_ASM:
1999     D = FileScopeAsmDecl::Create(Context, 0, 0, SourceLocation(),
2000                                  SourceLocation());
2001     break;
2002   case DECL_BLOCK:
2003     D = BlockDecl::Create(Context, 0, SourceLocation());
2004     break;
2005   case DECL_CXX_BASE_SPECIFIERS:
2006     Error("attempt to read a C++ base-specifier record as a declaration");
2007     return 0;
2008   case DECL_IMPORT:
2009     // Note: last entry of the ImportDecl record is the number of stored source
2010     // locations.
2011     D = ImportDecl::CreateEmpty(Context, Record.back());
2012     break;
2013   }
2014 
2015   assert(D && "Unknown declaration reading AST file");
2016   LoadedDecl(Index, D);
2017   Reader.Visit(D);
2018 
2019   // If this declaration is also a declaration context, get the
2020   // offsets for its tables of lexical and visible declarations.
2021   if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
2022     std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
2023     if (Offsets.first || Offsets.second) {
2024       if (Offsets.first != 0)
2025         DC->setHasExternalLexicalStorage(true);
2026       if (Offsets.second != 0)
2027         DC->setHasExternalVisibleStorage(true);
2028       if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
2029                                  Loc.F->DeclContextInfos[DC]))
2030         return 0;
2031     }
2032 
2033     // Now add the pending visible updates for this decl context, if it has any.
2034     DeclContextVisibleUpdatesPending::iterator I =
2035         PendingVisibleUpdates.find(ID);
2036     if (I != PendingVisibleUpdates.end()) {
2037       // There are updates. This means the context has external visible
2038       // storage, even if the original stored version didn't.
2039       DC->setHasExternalVisibleStorage(true);
2040       DeclContextVisibleUpdates &U = I->second;
2041       for (DeclContextVisibleUpdates::iterator UI = U.begin(), UE = U.end();
2042            UI != UE; ++UI) {
2043         UI->second->DeclContextInfos[DC].NameLookupTableData = UI->first;
2044       }
2045       PendingVisibleUpdates.erase(I);
2046     }
2047   }
2048   assert(Idx == Record.size());
2049 
2050   // Load any relevant update records.
2051   loadDeclUpdateRecords(ID, D);
2052 
2053   // Load the category chain after recursive loading is finished.
2054   if (ObjCChainedCategoriesInterfaces.count(ID))
2055     PendingChainedObjCCategories.push_back(
2056                                 std::make_pair(cast<ObjCInterfaceDecl>(D), ID));
2057 
2058   // If we have deserialized a declaration that has a definition the
2059   // AST consumer might need to know about, queue it.
2060   // We don't pass it to the consumer immediately because we may be in recursive
2061   // loading, and some declarations may still be initializing.
2062   if (isConsumerInterestedIn(D))
2063       InterestingDecls.push_back(D);
2064 
2065   return D;
2066 }
2067 
2068 void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) {
2069   // The declaration may have been modified by files later in the chain.
2070   // If this is the case, read the record containing the updates from each file
2071   // and pass it to ASTDeclReader to make the modifications.
2072   DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
2073   if (UpdI != DeclUpdateOffsets.end()) {
2074     FileOffsetsTy &UpdateOffsets = UpdI->second;
2075     for (FileOffsetsTy::iterator
2076          I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) {
2077       ModuleFile *F = I->first;
2078       uint64_t Offset = I->second;
2079       llvm::BitstreamCursor &Cursor = F->DeclsCursor;
2080       SavedStreamPosition SavedPosition(Cursor);
2081       Cursor.JumpToBit(Offset);
2082       RecordData Record;
2083       unsigned Code = Cursor.ReadCode();
2084       unsigned RecCode = Cursor.ReadRecord(Code, Record);
2085       (void)RecCode;
2086       assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!");
2087 
2088       unsigned Idx = 0;
2089       ASTDeclReader Reader(*this, *F, Cursor, ID, 0, Record, Idx);
2090       Reader.UpdateDecl(D, *F, Record);
2091     }
2092   }
2093 }
2094 
2095 namespace {
2096   struct CompareLocalRedeclarationsInfoToID {
2097     bool operator()(const LocalRedeclarationsInfo &X, DeclID Y) {
2098       return X.FirstID < Y;
2099     }
2100 
2101     bool operator()(DeclID X, const LocalRedeclarationsInfo &Y) {
2102       return X < Y.FirstID;
2103     }
2104 
2105     bool operator()(const LocalRedeclarationsInfo &X,
2106                     const LocalRedeclarationsInfo &Y) {
2107       return X.FirstID < Y.FirstID;
2108     }
2109     bool operator()(DeclID X, DeclID Y) {
2110       return X < Y;
2111     }
2112   };
2113 
2114   /// \brief Module visitor class that finds all of the redeclarations of a
2115   ///
2116   class RedeclChainVisitor {
2117     ASTReader &Reader;
2118     SmallVectorImpl<DeclID> &SearchDecls;
2119     GlobalDeclID CanonID;
2120     llvm::SmallVector<std::pair<Decl *, Decl *>, 4> Chains;
2121 
2122   public:
2123     RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls,
2124                        GlobalDeclID CanonID)
2125       : Reader(Reader), SearchDecls(SearchDecls), CanonID(CanonID) { }
2126 
2127     static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
2128       if (Preorder)
2129         return false;
2130 
2131       return static_cast<RedeclChainVisitor *>(UserData)->visit(M);
2132     }
2133 
2134     void searchForID(ModuleFile &M, GlobalDeclID GlobalID) {
2135       // Map global ID of the first declaration down to the local ID
2136       // used in this module file.
2137       DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID);
2138       if (!ID)
2139         return;
2140 
2141       // Perform a binary search to find the local redeclarations for this
2142       // declaration (if any).
2143       const LocalRedeclarationsInfo *Result
2144         = std::lower_bound(M.RedeclarationsInfo,
2145                            M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos,
2146                            ID, CompareLocalRedeclarationsInfoToID());
2147       if (Result == M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos ||
2148           Result->FirstID != ID) {
2149         // If we have a previously-canonical singleton declaration that was
2150         // merged into another redeclaration chain, create a trivial chain
2151         // for this single declaration so that it will get wired into the
2152         // complete redeclaration chain.
2153         if (GlobalID != CanonID &&
2154             GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
2155             GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) {
2156           if (Decl *D = Reader.GetDecl(GlobalID))
2157             Chains.push_back(std::make_pair(D, D));
2158         }
2159 
2160         return;
2161       }
2162 
2163       // Dig out the starting/ending declarations.
2164       Decl *FirstLocalDecl = Reader.GetLocalDecl(M, Result->FirstLocalID);
2165       Decl *LastLocalDecl = Reader.GetLocalDecl(M, Result->LastLocalID);
2166       if (!FirstLocalDecl || !LastLocalDecl)
2167         return;
2168 
2169       // Append this redeclaration chain to the list.
2170       Chains.push_back(std::make_pair(FirstLocalDecl, LastLocalDecl));
2171     }
2172 
2173     bool visit(ModuleFile &M) {
2174       // Visit each of the declarations.
2175       for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
2176         searchForID(M, SearchDecls[I]);
2177       return false;
2178     }
2179 
2180     ArrayRef<std::pair<Decl *, Decl *> > getChains() const {
2181       return Chains;
2182     }
2183 
2184     void addParsed(Decl *FirstParsedDecl, Decl *LastParsedDecl) {
2185       Chains.push_back(std::make_pair(FirstParsedDecl, LastParsedDecl));
2186     }
2187   };
2188 }
2189 
2190 /// \brief Retrieve the previous declaration to D.
2191 static Decl *getPreviousDecl(Decl *D) {
2192   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2193     return TD->getPreviousDeclaration();
2194   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2195     return FD->getPreviousDeclaration();
2196   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2197     return VD->getPreviousDeclaration();
2198   if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2199     return TD->getPreviousDeclaration();
2200   if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2201     return ID->getPreviousDeclaration();
2202 
2203   return cast<RedeclarableTemplateDecl>(D)->getPreviousDeclaration();
2204 }
2205 
2206 /// \brief Retrieve the most recent declaration of D.
2207 static Decl *getMostRecentDecl(Decl *D) {
2208   if (TagDecl *TD = dyn_cast<TagDecl>(D))
2209     return TD->getMostRecentDeclaration();
2210   if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2211     return FD->getMostRecentDeclaration();
2212   if (VarDecl *VD = dyn_cast<VarDecl>(D))
2213     return VD->getMostRecentDeclaration();
2214   if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2215     return TD->getMostRecentDeclaration();
2216   if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2217     return ID->getMostRecentDeclaration();
2218 
2219   return cast<RedeclarableTemplateDecl>(D)->getMostRecentDeclaration();
2220 }
2221 
2222 void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) {
2223   Decl *D = GetDecl(ID);
2224   Decl *CanonDecl = D->getCanonicalDecl();
2225 
2226   // Determine the set of declaration IDs we'll be searching for.
2227   llvm::SmallVector<DeclID, 1> SearchDecls;
2228   GlobalDeclID CanonID = 0;
2229   if (D == CanonDecl) {
2230     SearchDecls.push_back(ID); // Always first.
2231     CanonID = ID;
2232   }
2233   MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID);
2234   if (MergedPos != MergedDecls.end())
2235     SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end());
2236 
2237   // Build up the list of redeclaration chains.
2238   RedeclChainVisitor Visitor(*this, SearchDecls, CanonID);
2239   ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor);
2240 
2241   // Retrieve the chains.
2242   ArrayRef<std::pair<Decl *, Decl *> > Chains = Visitor.getChains();
2243   if (Chains.empty())
2244     return;
2245 
2246   // Capture all of the parsed declarations and put them at the end.
2247   Decl *MostRecent = getMostRecentDecl(CanonDecl);
2248   Decl *FirstParsed = MostRecent;
2249   if (CanonDecl != MostRecent && !MostRecent->isFromASTFile()) {
2250     Decl *Current = MostRecent;
2251     while (Decl *Prev = getPreviousDecl(Current)) {
2252       if (Prev == CanonDecl)
2253         break;
2254 
2255       if (Prev->isFromASTFile()) {
2256         Current = Prev;
2257         continue;
2258       }
2259 
2260       // Chain all of the parsed declarations together.
2261       ASTDeclReader::attachPreviousDecl(FirstParsed, Prev);
2262       FirstParsed = Prev;
2263       Current = Prev;
2264     }
2265 
2266     Visitor.addParsed(FirstParsed, MostRecent);
2267   }
2268 
2269   // Hook up the separate chains.
2270   Chains = Visitor.getChains();
2271   if (Chains[0].first != CanonDecl)
2272     ASTDeclReader::attachPreviousDecl(Chains[0].first, CanonDecl);
2273   for (unsigned I = 1, N = Chains.size(); I != N; ++I)
2274     ASTDeclReader::attachPreviousDecl(Chains[I].first, Chains[I-1].second);
2275   ASTDeclReader::attachLatestDecl(CanonDecl, Chains.back().second);
2276 }
2277 
2278 namespace {
2279   /// \brief Given an ObjC interface, goes through the modules and links to the
2280   /// interface all the categories for it.
2281   class ObjCChainedCategoriesVisitor {
2282     ASTReader &Reader;
2283     serialization::GlobalDeclID InterfaceID;
2284     ObjCInterfaceDecl *Interface;
2285     ObjCCategoryDecl *GlobHeadCat, *GlobTailCat;
2286     llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
2287 
2288   public:
2289     ObjCChainedCategoriesVisitor(ASTReader &Reader,
2290                                  serialization::GlobalDeclID InterfaceID,
2291                                  ObjCInterfaceDecl *Interface)
2292       : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
2293         GlobHeadCat(0), GlobTailCat(0) { }
2294 
2295     static bool visit(ModuleFile &M, void *UserData) {
2296       return static_cast<ObjCChainedCategoriesVisitor *>(UserData)->visit(M);
2297     }
2298 
2299     bool visit(ModuleFile &M) {
2300       if (Reader.isDeclIDFromModule(InterfaceID, M))
2301         return true; // We reached the module where the interface originated
2302                     // from. Stop traversing the imported modules.
2303 
2304       ModuleFile::ChainedObjCCategoriesMap::iterator
2305         I = M.ChainedObjCCategories.find(InterfaceID);
2306       if (I == M.ChainedObjCCategories.end())
2307         return false;
2308 
2309       ObjCCategoryDecl *
2310         HeadCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.first);
2311       ObjCCategoryDecl *
2312         TailCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.second);
2313 
2314       addCategories(HeadCat, TailCat);
2315       return false;
2316     }
2317 
2318     void addCategories(ObjCCategoryDecl *HeadCat,
2319                        ObjCCategoryDecl *TailCat = 0) {
2320       if (!HeadCat) {
2321         assert(!TailCat);
2322         return;
2323       }
2324 
2325       if (!TailCat) {
2326         TailCat = HeadCat;
2327         while (TailCat->getNextClassCategory())
2328           TailCat = TailCat->getNextClassCategory();
2329       }
2330 
2331       if (!GlobHeadCat) {
2332         GlobHeadCat = HeadCat;
2333         GlobTailCat = TailCat;
2334       } else {
2335         ASTDeclReader::setNextObjCCategory(GlobTailCat, HeadCat);
2336         GlobTailCat = TailCat;
2337       }
2338 
2339       llvm::DenseSet<DeclarationName> Checked;
2340       for (ObjCCategoryDecl *Cat = HeadCat,
2341                             *CatEnd = TailCat->getNextClassCategory();
2342              Cat != CatEnd; Cat = Cat->getNextClassCategory()) {
2343         if (Checked.count(Cat->getDeclName()))
2344           continue;
2345         Checked.insert(Cat->getDeclName());
2346         checkForDuplicate(Cat);
2347       }
2348     }
2349 
2350     /// \brief Warns for duplicate categories that come from different modules.
2351     void checkForDuplicate(ObjCCategoryDecl *Cat) {
2352       DeclarationName Name = Cat->getDeclName();
2353       // Find the top category with the same name. We do not want to warn for
2354       // duplicates along the established chain because there were already
2355       // warnings for them when the module was created. We only want to warn for
2356       // duplicates between non-dependent modules:
2357       //
2358       //   MT     //
2359       //  /  \    //
2360       // ML  MR   //
2361       //
2362       // We want to warn for duplicates between ML and MR,not between ML and MT.
2363       //
2364       // FIXME: We should not warn for duplicates in diamond:
2365       //
2366       //   MT     //
2367       //  /  \    //
2368       // ML  MR   //
2369       //  \  /    //
2370       //   MB     //
2371       //
2372       // If there are duplicates in ML/MR, there will be warning when creating
2373       // MB *and* when importing MB. We should not warn when importing.
2374       for (ObjCCategoryDecl *Next = Cat->getNextClassCategory(); Next;
2375              Next = Next->getNextClassCategory()) {
2376         if (Next->getDeclName() == Name)
2377           Cat = Next;
2378       }
2379 
2380       ObjCCategoryDecl *&PrevCat = NameCategoryMap[Name];
2381       if (!PrevCat)
2382         PrevCat = Cat;
2383 
2384       if (PrevCat != Cat) {
2385         Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
2386           << Interface->getDeclName() << Name;
2387         Reader.Diag(PrevCat->getLocation(), diag::note_previous_definition);
2388       }
2389     }
2390 
2391     ObjCCategoryDecl *getHeadCategory() const { return GlobHeadCat; }
2392   };
2393 }
2394 
2395 void ASTReader::loadObjCChainedCategories(serialization::GlobalDeclID ID,
2396                                           ObjCInterfaceDecl *D) {
2397   ObjCChainedCategoriesVisitor Visitor(*this, ID, D);
2398   ModuleMgr.visit(ObjCChainedCategoriesVisitor::visit, &Visitor);
2399   // Also add the categories that the interface already links to.
2400   Visitor.addCategories(D->getCategoryList());
2401   D->setCategoryList(Visitor.getHeadCategory());
2402 }
2403 
2404 void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile,
2405                                const RecordData &Record) {
2406   unsigned Idx = 0;
2407   while (Idx < Record.size()) {
2408     switch ((DeclUpdateKind)Record[Idx++]) {
2409     case UPD_CXX_SET_DEFINITIONDATA: {
2410       CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
2411       CXXRecordDecl *DefinitionDecl
2412         = Reader.ReadDeclAs<CXXRecordDecl>(ModuleFile, Record, Idx);
2413       assert(!RD->DefinitionData && "DefinitionData is already set!");
2414       InitializeCXXDefinitionData(RD, DefinitionDecl, Record, Idx);
2415       break;
2416     }
2417 
2418     case UPD_CXX_ADDED_IMPLICIT_MEMBER:
2419       cast<CXXRecordDecl>(D)->addedMember(Reader.ReadDecl(ModuleFile, Record, Idx));
2420       break;
2421 
2422     case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
2423       // It will be added to the template's specializations set when loaded.
2424       (void)Reader.ReadDecl(ModuleFile, Record, Idx);
2425       break;
2426 
2427     case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
2428       NamespaceDecl *Anon
2429         = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx);
2430       // Guard against these being loaded out of original order. Don't use
2431       // getNextNamespace(), since it tries to access the context and can't in
2432       // the middle of deserialization.
2433       if (!Anon->NextNamespace) {
2434         if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
2435           TU->setAnonymousNamespace(Anon);
2436         else
2437           cast<NamespaceDecl>(D)->OrigOrAnonNamespace.setPointer(Anon);
2438       }
2439       break;
2440     }
2441 
2442     case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
2443       cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation(
2444           Reader.ReadSourceLocation(ModuleFile, Record, Idx));
2445       break;
2446 
2447     case UPD_OBJC_SET_CLASS_DEFINITIONDATA: {
2448       ObjCInterfaceDecl *ID = cast<ObjCInterfaceDecl>(D);
2449       ObjCInterfaceDecl *Def
2450         = Reader.ReadDeclAs<ObjCInterfaceDecl>(ModuleFile, Record, Idx);
2451       if (Def->Data)
2452         ID->Data = Def->Data;
2453       break;
2454     }
2455     }
2456   }
2457 }
2458