blob: 476f8b5c026de9480d22d5df3ac10818c89b53f4 [file] [log] [blame]
Sebastian Redl904c9c82010-08-18 23:57:11 +00001//===--- ASTReaderDecl.cpp - Decl Deserialization ---------------*- C++ -*-===//
Chris Lattner698f9252009-04-27 05:27:42 +00002//
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//
Sebastian Redlc43b54c2010-08-18 23:56:43 +000010// This file implements the ASTReader::ReadDeclRecord method, which is the
Chris Lattner698f9252009-04-27 05:27:42 +000011// entrypoint for loading a decl.
12//
13//===----------------------------------------------------------------------===//
14
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +000015#include "ASTCommon.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000016#include "clang/Serialization/ASTReader.h"
Douglas Gregor0f753232011-12-22 01:48:48 +000017#include "clang/Sema/IdentifierResolver.h"
18#include "clang/Sema/Sema.h"
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +000019#include "clang/Sema/SemaDiagnostic.h"
Chris Lattner698f9252009-04-27 05:27:42 +000020#include "clang/AST/ASTConsumer.h"
21#include "clang/AST/ASTContext.h"
22#include "clang/AST/DeclVisitor.h"
23#include "clang/AST/DeclGroup.h"
Chris Lattner6ad9ac02010-05-07 21:43:38 +000024#include "clang/AST/DeclCXX.h"
25#include "clang/AST/DeclTemplate.h"
Chris Lattner698f9252009-04-27 05:27:42 +000026#include "clang/AST/Expr.h"
27using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000028using namespace clang::serialization;
Chris Lattner698f9252009-04-27 05:27:42 +000029
30//===----------------------------------------------------------------------===//
31// Declaration deserialization
32//===----------------------------------------------------------------------===//
33
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +000034namespace clang {
Sebastian Redld527cc02010-08-18 23:56:48 +000035 class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +000036 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +000037 ModuleFile &F;
Sebastian Redl577d4792010-07-22 22:43:28 +000038 llvm::BitstreamCursor &Cursor;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000039 const DeclID ThisDeclID;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +000040 const unsigned RawLocation;
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000041 typedef ASTReader::RecordData RecordData;
42 const RecordData &Record;
Chris Lattner698f9252009-04-27 05:27:42 +000043 unsigned &Idx;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000044 TypeID TypeIDForTypeDecl;
Douglas Gregor67da6f62011-03-05 01:35:54 +000045
46 DeclID DeclContextIDForTemplateParmDecl;
47 DeclID LexicalDeclContextIDForTemplateParmDecl;
Chris Lattner698f9252009-04-27 05:27:42 +000048
Sebastian Redl577d4792010-07-22 22:43:28 +000049 uint64_t GetCurrentCursorOffset();
Douglas Gregor409448c2011-07-21 22:35:25 +000050
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000051 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000052 return Reader.ReadSourceLocation(F, R, I);
53 }
Douglas Gregor409448c2011-07-21 22:35:25 +000054
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000055 SourceRange ReadSourceRange(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000056 return Reader.ReadSourceRange(F, R, I);
57 }
Douglas Gregor409448c2011-07-21 22:35:25 +000058
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000059 TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000060 return Reader.GetTypeSourceInfo(F, R, I);
61 }
Douglas Gregor409448c2011-07-21 22:35:25 +000062
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
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000076 void ReadQualifierInfo(QualifierInfo &Info,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000077 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000078 Reader.ReadQualifierInfo(F, Info, R, I);
79 }
Douglas Gregor409448c2011-07-21 22:35:25 +000080
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000081 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000082 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000083 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
84 }
Douglas Gregor409448c2011-07-21 22:35:25 +000085
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000086 void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000087 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000088 Reader.ReadDeclarationNameInfo(F, NameInfo, R, I);
89 }
Sebastian Redl577d4792010-07-22 22:43:28 +000090
Douglas Gregorecc2c092011-12-01 22:20:10 +000091 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
Douglas Gregor15de72c2011-12-02 23:23:56 +000099 Module *readModule(const RecordData &R, unsigned &I) {
100 return Reader.getSubmodule(readSubmoduleID(R, I));
101 }
102
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000103 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);
Douglas Gregor0f753232011-12-22 01:48:48 +0000109
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() {
Douglas Gregorbf1739c2011-12-22 22:05:07 +0000134 // 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
Douglas Gregor0f753232011-12-22 01:48:48 +0000142 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
Chris Lattner698f9252009-04-27 05:27:42 +0000193 public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000194 ASTDeclReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +0000195 llvm::BitstreamCursor &Cursor, DeclID thisDeclID,
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000196 unsigned RawLocation,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +0000197 const RecordData &Record, unsigned &Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +0000198 : Reader(Reader), F(F), Cursor(Cursor), ThisDeclID(thisDeclID),
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000199 RawLocation(RawLocation), Record(Record), Idx(Idx),
200 TypeIDForTypeDecl(0) { }
Chris Lattner698f9252009-04-27 05:27:42 +0000201
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +0000202 static void attachPreviousDecl(Decl *D, Decl *previous);
Douglas Gregora1be2782011-12-17 23:38:30 +0000203 static void attachLatestDecl(Decl *D, Decl *latest);
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +0000204
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000205 void Visit(Decl *D);
206
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000207 void UpdateDecl(Decl *D, ModuleFile &ModuleFile,
Sebastian Redlf79a7192011-04-29 08:19:30 +0000208 const RecordData &Record);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +0000209
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +0000210 static void setNextObjCCategory(ObjCCategoryDecl *Cat,
211 ObjCCategoryDecl *Next) {
212 Cat->NextClassCategory = Next;
213 }
214
Chris Lattner698f9252009-04-27 05:27:42 +0000215 void VisitDecl(Decl *D);
216 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
217 void VisitNamedDecl(NamedDecl *ND);
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000218 void VisitLabelDecl(LabelDecl *LD);
Douglas Gregor0cef4832010-02-21 18:22:14 +0000219 void VisitNamespaceDecl(NamespaceDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000220 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
221 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000222 void VisitTypeDecl(TypeDecl *TD);
Douglas Gregor0f456822011-12-19 14:40:25 +0000223 void VisitTypedefNameDecl(TypedefNameDecl *TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000224 void VisitTypedefDecl(TypedefDecl *TD);
Richard Smith162e1c12011-04-15 14:24:37 +0000225 void VisitTypeAliasDecl(TypeAliasDecl *TD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000226 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000227 void VisitTagDecl(TagDecl *TD);
228 void VisitEnumDecl(EnumDecl *ED);
229 void VisitRecordDecl(RecordDecl *RD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000230 void VisitCXXRecordDecl(CXXRecordDecl *D);
231 void VisitClassTemplateSpecializationDecl(
232 ClassTemplateSpecializationDecl *D);
233 void VisitClassTemplatePartialSpecializationDecl(
234 ClassTemplatePartialSpecializationDecl *D);
Sebastian Redl14c36332011-08-31 13:59:56 +0000235 void VisitClassScopeFunctionSpecializationDecl(
236 ClassScopeFunctionSpecializationDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000237 void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000238 void VisitValueDecl(ValueDecl *VD);
239 void VisitEnumConstantDecl(EnumConstantDecl *ECD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000240 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000241 void VisitDeclaratorDecl(DeclaratorDecl *DD);
Chris Lattner698f9252009-04-27 05:27:42 +0000242 void VisitFunctionDecl(FunctionDecl *FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000243 void VisitCXXMethodDecl(CXXMethodDecl *D);
244 void VisitCXXConstructorDecl(CXXConstructorDecl *D);
245 void VisitCXXDestructorDecl(CXXDestructorDecl *D);
246 void VisitCXXConversionDecl(CXXConversionDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000247 void VisitFieldDecl(FieldDecl *FD);
Francois Pichet87c2e122010-11-21 06:08:52 +0000248 void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000249 void VisitVarDecl(VarDecl *VD);
250 void VisitImplicitParamDecl(ImplicitParamDecl *PD);
251 void VisitParmVarDecl(ParmVarDecl *PD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000252 void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
253 void VisitTemplateDecl(TemplateDecl *D);
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000254 void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000255 void VisitClassTemplateDecl(ClassTemplateDecl *D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000256 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000257 void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Richard Smith3e4c6c42011-05-05 21:57:07 +0000258 void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +0000259 void VisitUsingDecl(UsingDecl *D);
260 void VisitUsingShadowDecl(UsingShadowDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000261 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000262 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
Douglas Gregor15de72c2011-12-02 23:23:56 +0000263 void VisitImportDecl(ImportDecl *D);
Abramo Bagnara6206d532010-06-05 05:09:32 +0000264 void VisitAccessSpecDecl(AccessSpecDecl *D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000265 void VisitFriendDecl(FriendDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000266 void VisitFriendTemplateDecl(FriendTemplateDecl *D);
267 void VisitStaticAssertDecl(StaticAssertDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000268 void VisitBlockDecl(BlockDecl *BD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000269
Chris Lattner698f9252009-04-27 05:27:42 +0000270 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
Douglas Gregor0f753232011-12-22 01:48:48 +0000271
272 template <typename T>
273 RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000274
Sean Hunt9a555912010-05-30 07:21:58 +0000275 // FIXME: Reorder according to DeclNodes.td?
Chris Lattner698f9252009-04-27 05:27:42 +0000276 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);
Chris Lattner698f9252009-04-27 05:27:42 +0000282 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
283 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
284 void VisitObjCImplDecl(ObjCImplDecl *D);
285 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
286 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
287 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
288 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
289 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
290 };
291}
292
Sebastian Redld527cc02010-08-18 23:56:48 +0000293uint64_t ASTDeclReader::GetCurrentCursorOffset() {
Douglas Gregor8f1231b2011-07-22 06:10:01 +0000294 return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset;
Sebastian Redl577d4792010-07-22 22:43:28 +0000295}
296
Sebastian Redld527cc02010-08-18 23:56:48 +0000297void ASTDeclReader::Visit(Decl *D) {
298 DeclVisitor<ASTDeclReader, void>::Visit(D);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000299
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000300 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
301 if (DD->DeclInfo) {
302 DeclaratorDecl::ExtInfo *Info =
303 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
304 Info->TInfo =
305 GetTypeSourceInfo(Record, Idx);
306 }
307 else {
308 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
309 }
310 }
311
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000312 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000313 // if we have a fully initialized TypeDecl, we can safely read its type now.
Douglas Gregor1ab55e92010-12-10 17:03:06 +0000314 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull());
Douglas Gregor0af55012011-12-16 03:12:41 +0000315 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
316 // if we have a fully initialized TypeDecl, we can safely read its type now.
317 ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull();
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000318 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
319 // FunctionDecl's body was written last after all other Stmts/Exprs.
320 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000321 FD->setLazyBody(GetCurrentCursorOffset());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000322 } else if (D->isTemplateParameter()) {
323 // If we have a fully initialized template parameter, we can now
324 // set its DeclContext.
325 D->setDeclContext(
326 cast_or_null<DeclContext>(
327 Reader.GetDecl(DeclContextIDForTemplateParmDecl)));
328 D->setLexicalDeclContext(
329 cast_or_null<DeclContext>(
330 Reader.GetDecl(LexicalDeclContextIDForTemplateParmDecl)));
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000331 }
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000332}
333
Sebastian Redld527cc02010-08-18 23:56:48 +0000334void ASTDeclReader::VisitDecl(Decl *D) {
Douglas Gregor67da6f62011-03-05 01:35:54 +0000335 if (D->isTemplateParameter()) {
336 // We don't want to deserialize the DeclContext of a template
337 // parameter immediately, because the template parameter might be
338 // used in the formulation of its DeclContext. Use the translation
339 // unit DeclContext as a placeholder.
Douglas Gregor409448c2011-07-21 22:35:25 +0000340 DeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
341 LexicalDeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000342 D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000343 } else {
Douglas Gregor409448c2011-07-21 22:35:25 +0000344 D->setDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
345 D->setLexicalDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
Douglas Gregor67da6f62011-03-05 01:35:54 +0000346 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000347 D->setLocation(Reader.ReadSourceLocation(F, RawLocation));
Chris Lattner698f9252009-04-27 05:27:42 +0000348 D->setInvalidDecl(Record[Idx++]);
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000349 if (Record[Idx++]) { // hasAttrs
Sean Huntcf807c42010-08-18 23:23:40 +0000350 AttrVec Attrs;
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000351 Reader.ReadAttributes(F, Attrs, Record, Idx);
Sean Huntcf807c42010-08-18 23:23:40 +0000352 D->setAttrs(Attrs);
353 }
Chris Lattner698f9252009-04-27 05:27:42 +0000354 D->setImplicit(Record[Idx++]);
Douglas Gregore0762c92009-06-19 23:52:42 +0000355 D->setUsed(Record[Idx++]);
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000356 D->setReferenced(Record[Idx++]);
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +0000357 D->TopLevelDeclInObjCContainer = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000358 D->setAccess((AccessSpecifier)Record[Idx++]);
Douglas Gregor08e0bc12011-09-10 00:09:20 +0000359 D->FromASTFile = true;
Douglas Gregor8d267c52011-09-09 02:06:17 +0000360 D->ModulePrivate = Record[Idx++];
Douglas Gregorecc2c092011-12-01 22:20:10 +0000361
362 // Determine whether this declaration is part of a (sub)module. If so, it
363 // may not yet be visible.
364 if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) {
365 // Module-private declarations are never visible, so there is no work to do.
366 if (!D->ModulePrivate) {
367 if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
368 if (Owner->NameVisibility != Module::AllVisible) {
369 // The owning module is not visible. Mark this declaration as
370 // module-private,
371 D->ModulePrivate = true;
372
373 // Note that this declaration was hidden because its owning module is
374 // not yet visible.
375 Reader.HiddenNamesMap[Owner].push_back(D);
376 }
377 }
378 }
379 }
Chris Lattner698f9252009-04-27 05:27:42 +0000380}
381
Sebastian Redld527cc02010-08-18 23:56:48 +0000382void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +0000383 llvm_unreachable("Translation units are not serialized");
Chris Lattner698f9252009-04-27 05:27:42 +0000384}
385
Sebastian Redld527cc02010-08-18 23:56:48 +0000386void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
Chris Lattner698f9252009-04-27 05:27:42 +0000387 VisitDecl(ND);
Douglas Gregor393f2492011-07-22 00:38:23 +0000388 ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000389}
390
Sebastian Redld527cc02010-08-18 23:56:48 +0000391void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000392 VisitNamedDecl(TD);
Abramo Bagnara344577e2011-03-06 15:48:19 +0000393 TD->setLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000394 // Delay type reading until after we have fully initialized the decl.
Douglas Gregor393f2492011-07-22 00:38:23 +0000395 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000396}
397
Douglas Gregor0f456822011-12-19 14:40:25 +0000398void ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
Douglas Gregora1be2782011-12-17 23:38:30 +0000399 VisitRedeclarable(TD);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000400 VisitTypeDecl(TD);
Douglas Gregor0f456822011-12-19 14:40:25 +0000401 TD->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
402}
403
404void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
405 VisitTypedefNameDecl(TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000406}
407
Richard Smith162e1c12011-04-15 14:24:37 +0000408void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
Douglas Gregor0f456822011-12-19 14:40:25 +0000409 VisitTypedefNameDecl(TD);
Richard Smith162e1c12011-04-15 14:24:37 +0000410}
411
Sebastian Redld527cc02010-08-18 23:56:48 +0000412void ASTDeclReader::VisitTagDecl(TagDecl *TD) {
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000413 VisitRedeclarable(TD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000414 VisitTypeDecl(TD);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000415 TD->IdentifierNamespace = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000416 TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
John McCall5e1cdac2011-10-07 06:10:15 +0000417 TD->setCompleteDefinition(Record[Idx++]);
Douglas Gregorb37b6482010-02-12 17:40:34 +0000418 TD->setEmbeddedInDeclarator(Record[Idx++]);
Argyrios Kyrtzidis717a20b2011-09-30 22:11:31 +0000419 TD->setFreeStanding(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000420 TD->setRBraceLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000421 if (Record[Idx++]) { // hasExtInfo
Douglas Gregor35942772011-09-09 21:34:22 +0000422 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000423 ReadQualifierInfo(*Info, Record, Idx);
Richard Smith162e1c12011-04-15 14:24:37 +0000424 TD->TypedefNameDeclOrQualifier = Info;
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000425 } else
Douglas Gregor409448c2011-07-21 22:35:25 +0000426 TD->setTypedefNameForAnonDecl(ReadDeclAs<TypedefNameDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000427}
428
Sebastian Redld527cc02010-08-18 23:56:48 +0000429void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
Chris Lattner698f9252009-04-27 05:27:42 +0000430 VisitTagDecl(ED);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000431 if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
432 ED->setIntegerTypeSourceInfo(TI);
433 else
Douglas Gregor393f2492011-07-22 00:38:23 +0000434 ED->setIntegerType(Reader.readType(F, Record, Idx));
435 ED->setPromotionType(Reader.readType(F, Record, Idx));
John McCall1b5a6182010-05-06 08:49:23 +0000436 ED->setNumPositiveBits(Record[Idx++]);
437 ED->setNumNegativeBits(Record[Idx++]);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000438 ED->IsScoped = Record[Idx++];
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000439 ED->IsScopedUsingClassTag = Record[Idx++];
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000440 ED->IsFixed = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +0000441 ED->setInstantiationOfMemberEnum(ReadDeclAs<EnumDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000442}
443
Sebastian Redld527cc02010-08-18 23:56:48 +0000444void ASTDeclReader::VisitRecordDecl(RecordDecl *RD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000445 VisitTagDecl(RD);
446 RD->setHasFlexibleArrayMember(Record[Idx++]);
447 RD->setAnonymousStructOrUnion(Record[Idx++]);
Fariborz Jahanian643b7df2009-07-08 16:37:44 +0000448 RD->setHasObjectMember(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000449}
450
Sebastian Redld527cc02010-08-18 23:56:48 +0000451void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000452 VisitNamedDecl(VD);
Douglas Gregor393f2492011-07-22 00:38:23 +0000453 VD->setType(Reader.readType(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000454}
455
Sebastian Redld527cc02010-08-18 23:56:48 +0000456void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000457 VisitValueDecl(ECD);
458 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +0000459 ECD->setInitExpr(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000460 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
461}
462
Sebastian Redld527cc02010-08-18 23:56:48 +0000463void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000464 VisitValueDecl(DD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000465 DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000466 if (Record[Idx++]) { // hasExtInfo
467 DeclaratorDecl::ExtInfo *Info
Douglas Gregor35942772011-09-09 21:34:22 +0000468 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000469 ReadQualifierInfo(*Info, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000470 DD->DeclInfo = Info;
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000471 }
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000472}
473
Sebastian Redld527cc02010-08-18 23:56:48 +0000474void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000475 VisitRedeclarable(FD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000476 VisitDeclaratorDecl(FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000477
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000478 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000479 FD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000480 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000481 default: llvm_unreachable("Unhandled TemplatedKind!");
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000482 case FunctionDecl::TK_NonTemplate:
483 break;
484 case FunctionDecl::TK_FunctionTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +0000485 FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record,
486 Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000487 break;
488 case FunctionDecl::TK_MemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000489 FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000490 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000491 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000492 FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000493 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
494 break;
495 }
496 case FunctionDecl::TK_FunctionTemplateSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000497 FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record,
498 Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000499 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
500
501 // Template arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000502 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +0000503 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000504
505 // Template args as written.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000506 SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000507 SourceLocation LAngleLoc, RAngleLoc;
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000508 bool HasTemplateArgumentsAsWritten = Record[Idx++];
509 if (HasTemplateArgumentsAsWritten) {
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000510 unsigned NumTemplateArgLocs = Record[Idx++];
511 TemplArgLocs.reserve(NumTemplateArgLocs);
512 for (unsigned i=0; i != NumTemplateArgLocs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000513 TemplArgLocs.push_back(
Sebastian Redlc3632732010-10-05 15:59:54 +0000514 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000515
Sebastian Redlc3632732010-10-05 15:59:54 +0000516 LAngleLoc = ReadSourceLocation(Record, Idx);
517 RAngleLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000518 }
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000519
Sebastian Redlc3632732010-10-05 15:59:54 +0000520 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000521
Douglas Gregor35942772011-09-09 21:34:22 +0000522 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000523 TemplateArgumentList *TemplArgList
Douglas Gregor910f8002010-11-07 23:05:16 +0000524 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000525 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000526 for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000527 TemplArgsInfo.addArgument(TemplArgLocs[i]);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000528 FunctionTemplateSpecializationInfo *FTInfo
529 = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK,
530 TemplArgList,
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000531 HasTemplateArgumentsAsWritten ? &TemplArgsInfo : 0,
532 POI);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000533 FD->TemplateOrSpecialization = FTInfo;
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000534
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000535 if (FD->isCanonicalDecl()) { // if canonical add to template's set.
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000536 // The template that contains the specializations set. It's not safe to
537 // use getCanonicalDecl on Template since it may still be initializing.
538 FunctionTemplateDecl *CanonTemplate
Douglas Gregor409448c2011-07-21 22:35:25 +0000539 = ReadDeclAs<FunctionTemplateDecl>(Record, Idx);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000540 // Get the InsertPos by FindNodeOrInsertPos() instead of calling
541 // InsertNode(FTInfo) directly to avoid the getASTContext() call in
542 // FunctionTemplateSpecializationInfo's Profile().
543 // We avoid getASTContext because a decl in the parent hierarchy may
544 // be initializing.
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000545 llvm::FoldingSetNodeID ID;
546 FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs.data(),
547 TemplArgs.size(), C);
548 void *InsertPos = 0;
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000549 CanonTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000550 assert(InsertPos && "Another specialization already inserted!");
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000551 CanonTemplate->getSpecializations().InsertNode(FTInfo, InsertPos);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000552 }
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000553 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000554 }
555 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
556 // Templates.
557 UnresolvedSet<8> TemplDecls;
558 unsigned NumTemplates = Record[Idx++];
559 while (NumTemplates--)
Douglas Gregor409448c2011-07-21 22:35:25 +0000560 TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000561
562 // Templates args.
563 TemplateArgumentListInfo TemplArgs;
564 unsigned NumArgs = Record[Idx++];
565 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +0000566 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx));
567 TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx));
568 TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000569
Douglas Gregor35942772011-09-09 21:34:22 +0000570 FD->setDependentTemplateSpecialization(Reader.getContext(),
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000571 TemplDecls, TemplArgs);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000572 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000573 }
574 }
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000575
Sebastian Redld527cc02010-08-18 23:56:48 +0000576 // FunctionDecl's body is handled last at ASTDeclReader::Visit,
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000577 // after everything else is read.
578
Douglas Gregor381d34e2010-12-06 18:36:25 +0000579 FD->SClass = (StorageClass)Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000580 FD->SClassAsWritten = (StorageClass)Record[Idx++];
Douglas Gregor8f150942010-12-09 16:59:22 +0000581 FD->IsInline = Record[Idx++];
582 FD->IsInlineSpecified = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000583 FD->IsVirtualAsWritten = Record[Idx++];
584 FD->IsPure = Record[Idx++];
585 FD->HasInheritedPrototype = Record[Idx++];
586 FD->HasWrittenPrototype = Record[Idx++];
587 FD->IsDeleted = Record[Idx++];
588 FD->IsTrivial = Record[Idx++];
Sean Hunt2be7e902011-05-12 22:46:29 +0000589 FD->IsDefaulted = Record[Idx++];
590 FD->IsExplicitlyDefaulted = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000591 FD->HasImplicitReturnZero = Record[Idx++];
Richard Smithaf1fc7a2011-08-15 21:04:07 +0000592 FD->IsConstexpr = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000593 FD->EndRangeLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000594
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000595 // Read in the parameters.
Chris Lattner698f9252009-04-27 05:27:42 +0000596 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000597 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000598 Params.reserve(NumParams);
599 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000600 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000601 FD->setParams(Reader.getContext(), Params);
Chris Lattner698f9252009-04-27 05:27:42 +0000602}
603
Sebastian Redld527cc02010-08-18 23:56:48 +0000604void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000605 VisitNamedDecl(MD);
606 if (Record[Idx++]) {
607 // In practice, this won't be executed (since method definitions
608 // don't occur in header files).
Sebastian Redlc3632732010-10-05 15:59:54 +0000609 MD->setBody(Reader.ReadStmt(F));
Douglas Gregor409448c2011-07-21 22:35:25 +0000610 MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
611 MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000612 }
613 MD->setInstanceMethod(Record[Idx++]);
614 MD->setVariadic(Record[Idx++]);
615 MD->setSynthesized(Record[Idx++]);
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000616 MD->setDefined(Record[Idx++]);
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000617
618 MD->IsRedeclaration = Record[Idx++];
619 MD->HasRedeclaration = Record[Idx++];
620 if (MD->HasRedeclaration)
621 Reader.getContext().setObjCMethodRedeclaration(MD,
622 ReadDeclAs<ObjCMethodDecl>(Record, Idx));
623
Chris Lattner698f9252009-04-27 05:27:42 +0000624 MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
625 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
Douglas Gregor926df6c2011-06-11 01:09:30 +0000626 MD->SetRelatedResultType(Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000627 MD->setResultType(Reader.readType(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000628 MD->setResultTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
629 MD->setEndLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000630 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000631 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000632 Params.reserve(NumParams);
633 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000634 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000635
636 MD->SelLocsKind = Record[Idx++];
637 unsigned NumStoredSelLocs = Record[Idx++];
638 SmallVector<SourceLocation, 16> SelLocs;
639 SelLocs.reserve(NumStoredSelLocs);
640 for (unsigned i = 0; i != NumStoredSelLocs; ++i)
641 SelLocs.push_back(ReadSourceLocation(Record, Idx));
642
643 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
Chris Lattner698f9252009-04-27 05:27:42 +0000644}
645
Sebastian Redld527cc02010-08-18 23:56:48 +0000646void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000647 VisitNamedDecl(CD);
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000648 CD->setAtStartLoc(ReadSourceLocation(Record, Idx));
649 CD->setAtEndRange(ReadSourceRange(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000650}
651
Sebastian Redld527cc02010-08-18 23:56:48 +0000652void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000653 // Record the declaration -> global ID mapping.
654 Reader.DeclToID[ID] = ThisDeclID;
655
Douglas Gregor0f753232011-12-22 01:48:48 +0000656 RedeclarableResult Redecl = VisitRedeclarable(ID);
Chris Lattner698f9252009-04-27 05:27:42 +0000657 VisitObjCContainerDecl(ID);
Douglas Gregor0af55012011-12-16 03:12:41 +0000658 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000659
Douglas Gregor0f753232011-12-22 01:48:48 +0000660 // Determine whether we need to merge this declaration with another @interface
661 // with the same name.
662 // FIXME: Not needed unless the module file graph is a DAG.
663 if (FindExistingResult ExistingRes = findExisting(ID)) {
664 if (ObjCInterfaceDecl *Existing = ExistingRes) {
665 ObjCInterfaceDecl *ExistingCanon = Existing->getCanonicalDecl();
666 ObjCInterfaceDecl *IDCanon = ID->getCanonicalDecl();
667 if (ExistingCanon != IDCanon) {
668 // Have our redeclaration link point back at the canonical declaration
669 // of the existing declaration, so that this declaration has the
670 // appropriate canonical declaration.
671 ID->RedeclLink = ObjCInterfaceDecl::PreviousDeclLink(ExistingCanon);
672
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000673 // Don't introduce IDCanon into the set of pending declaration chains.
674 Redecl.suppress();
675
676 // Introduce ExistingCanon into the set of pending declaration chains,
677 // if in fact it came from a module file.
678 if (ExistingCanon->isFromASTFile()) {
679 GlobalDeclID ExistingCanonID = Reader.DeclToID[ExistingCanon];
680 assert(ExistingCanonID && "Unrecorded canonical declaration ID?");
681 if (Reader.PendingDeclChainsKnown.insert(ExistingCanonID))
682 Reader.PendingDeclChains.push_back(ExistingCanonID);
683 }
684
Douglas Gregor0f753232011-12-22 01:48:48 +0000685 // If this declaration was the canonical declaration, make a note of
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +0000686 // that. We accept the linear algorithm here because the number of
687 // unique canonical declarations of an entity should always be tiny.
688 if (IDCanon == ID) {
689 SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon];
690 if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID())
691 == Merged.end())
692 Merged.push_back(Redecl.getFirstID());
693 }
Douglas Gregor0f753232011-12-22 01:48:48 +0000694 }
695 }
696 }
697
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000698 ObjCInterfaceDecl *Def = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
699 if (ID == Def) {
700 // Read the definition.
701 ID->allocateDefinitionData();
702
703 ObjCInterfaceDecl::DefinitionData &Data = ID->data();
704
705 // Read the superclass.
706 Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
707 Data.SuperClassLoc = ReadSourceLocation(Record, Idx);
708
Douglas Gregor05c272f2011-12-15 22:34:59 +0000709 Data.EndLoc = ReadSourceLocation(Record, Idx);
710
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000711 // Read the directly referenced protocols and their SourceLocations.
712 unsigned NumProtocols = Record[Idx++];
713 SmallVector<ObjCProtocolDecl *, 16> Protocols;
714 Protocols.reserve(NumProtocols);
715 for (unsigned I = 0; I != NumProtocols; ++I)
716 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
717 SmallVector<SourceLocation, 16> ProtoLocs;
718 ProtoLocs.reserve(NumProtocols);
719 for (unsigned I = 0; I != NumProtocols; ++I)
720 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
721 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
722 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000723
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000724 // Read the transitive closure of protocols referenced by this class.
725 NumProtocols = Record[Idx++];
726 Protocols.clear();
727 Protocols.reserve(NumProtocols);
728 for (unsigned I = 0; I != NumProtocols; ++I)
729 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
730 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
731 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000732
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000733 // Read the ivars.
734 unsigned NumIvars = Record[Idx++];
735 SmallVector<ObjCIvarDecl *, 16> IVars;
736 IVars.reserve(NumIvars);
737 for (unsigned I = 0; I != NumIvars; ++I)
738 IVars.push_back(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
739
740 // Read the categories.
741 ID->setCategoryList(ReadDeclAs<ObjCCategoryDecl>(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000742
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000743 // We will rebuild this list lazily.
744 ID->setIvarList(0);
745
Douglas Gregor21cf08b2011-12-19 20:51:16 +0000746 // Note that we have deserialized a definition.
747 Reader.PendingDefinitions.insert(ID);
748 } else if (Def && Def->Data) {
749 ID->Data = Def->Data;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000750 }
Chris Lattner698f9252009-04-27 05:27:42 +0000751}
752
Sebastian Redld527cc02010-08-18 23:56:48 +0000753void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000754 VisitFieldDecl(IVD);
755 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000756 // This field will be built lazily.
757 IVD->setNextIvar(0);
Fariborz Jahanianac0021b2010-07-17 18:35:47 +0000758 bool synth = Record[Idx++];
759 IVD->setSynthesize(synth);
Chris Lattner698f9252009-04-27 05:27:42 +0000760}
761
Sebastian Redld527cc02010-08-18 23:56:48 +0000762void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000763 VisitObjCContainerDecl(PD);
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000764 PD->InitiallyForwardDecl = Record[Idx++];
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +0000765 PD->isForwardProtoDecl = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000766 PD->setLocEnd(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000767 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000768 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000769 ProtoRefs.reserve(NumProtoRefs);
770 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000771 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000772 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000773 ProtoLocs.reserve(NumProtoRefs);
774 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000775 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000776 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000777 Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000778}
779
Sebastian Redld527cc02010-08-18 23:56:48 +0000780void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000781 VisitFieldDecl(FD);
782}
783
Sebastian Redld527cc02010-08-18 23:56:48 +0000784void ASTDeclReader::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *FPD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000785 VisitDecl(FPD);
786 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000787 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000788 ProtoRefs.reserve(NumProtoRefs);
789 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000790 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000791 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000792 ProtoLocs.reserve(NumProtoRefs);
793 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000794 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000795 FPD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000796 Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000797}
798
Sebastian Redld527cc02010-08-18 23:56:48 +0000799void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000800 VisitObjCContainerDecl(CD);
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000801 CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000802 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000803 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000804 ProtoRefs.reserve(NumProtoRefs);
805 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000806 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000807 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000808 ProtoLocs.reserve(NumProtoRefs);
809 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000810 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000811 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000812 Reader.getContext());
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000813 CD->NextClassCategory = ReadDeclAs<ObjCCategoryDecl>(Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000814 CD->setHasSynthBitfield(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000815 CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000816}
817
Sebastian Redld527cc02010-08-18 23:56:48 +0000818void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000819 VisitNamedDecl(CAD);
Douglas Gregor409448c2011-07-21 22:35:25 +0000820 CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000821}
822
Sebastian Redld527cc02010-08-18 23:56:48 +0000823void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000824 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000825 D->setAtLoc(ReadSourceLocation(Record, Idx));
826 D->setType(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000827 // FIXME: stable encoding
828 D->setPropertyAttributes(
829 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000830 D->setPropertyAttributesAsWritten(
831 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000832 // FIXME: stable encoding
833 D->setPropertyImplementation(
834 (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000835 D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
836 D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
Douglas Gregor409448c2011-07-21 22:35:25 +0000837 D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
838 D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
839 D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000840}
841
Sebastian Redld527cc02010-08-18 23:56:48 +0000842void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
Argyrios Kyrtzidisaecae622009-07-27 19:04:32 +0000843 VisitObjCContainerDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000844 D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000845}
846
Sebastian Redld527cc02010-08-18 23:56:48 +0000847void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000848 VisitObjCImplDecl(D);
Douglas Gregor95eab172011-07-28 20:55:49 +0000849 D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx));
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +0000850 D->CategoryNameLoc = ReadSourceLocation(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000851}
852
Sebastian Redld527cc02010-08-18 23:56:48 +0000853void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000854 VisitObjCImplDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000855 D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000856 llvm::tie(D->IvarInitializers, D->NumIvarInitializers)
Sean Huntcbb67482011-01-08 20:30:50 +0000857 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000858 D->setHasSynthBitfield(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000859}
860
861
Sebastian Redld527cc02010-08-18 23:56:48 +0000862void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000863 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000864 D->setAtLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000865 D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx));
866 D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx);
Douglas Gregora4ffd852010-11-17 01:03:52 +0000867 D->IvarLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +0000868 D->setGetterCXXConstructor(Reader.ReadExpr(F));
869 D->setSetterCXXAssignment(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000870}
871
Sebastian Redld527cc02010-08-18 23:56:48 +0000872void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000873 VisitDeclaratorDecl(FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000874 FD->setMutable(Record[Idx++]);
Richard Smith7a614d82011-06-11 17:19:42 +0000875 int BitWidthOrInitializer = Record[Idx++];
876 if (BitWidthOrInitializer == 1)
Sebastian Redlc3632732010-10-05 15:59:54 +0000877 FD->setBitWidth(Reader.ReadExpr(F));
Richard Smith7a614d82011-06-11 17:19:42 +0000878 else if (BitWidthOrInitializer == 2)
879 FD->setInClassInitializer(Reader.ReadExpr(F));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000880 if (!FD->getDeclName()) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000881 if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +0000882 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000883 }
Chris Lattner698f9252009-04-27 05:27:42 +0000884}
885
Francois Pichet87c2e122010-11-21 06:08:52 +0000886void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
887 VisitValueDecl(FD);
888
889 FD->ChainingSize = Record[Idx++];
890 assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
Douglas Gregor35942772011-09-09 21:34:22 +0000891 FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
Francois Pichet87c2e122010-11-21 06:08:52 +0000892
893 for (unsigned I = 0; I != FD->ChainingSize; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000894 FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx);
Francois Pichet87c2e122010-11-21 06:08:52 +0000895}
896
Sebastian Redld527cc02010-08-18 23:56:48 +0000897void ASTDeclReader::VisitVarDecl(VarDecl *VD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000898 VisitRedeclarable(VD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000899 VisitDeclaratorDecl(VD);
John McCallf1e4fbf2011-05-01 02:13:58 +0000900 VD->VarDeclBits.SClass = (StorageClass)Record[Idx++];
901 VD->VarDeclBits.SClassAsWritten = (StorageClass)Record[Idx++];
902 VD->VarDeclBits.ThreadSpecified = Record[Idx++];
903 VD->VarDeclBits.HasCXXDirectInit = Record[Idx++];
904 VD->VarDeclBits.ExceptionVar = Record[Idx++];
905 VD->VarDeclBits.NRVOVariable = Record[Idx++];
906 VD->VarDeclBits.CXXForRangeDecl = Record[Idx++];
John McCall7acddac2011-06-17 06:42:21 +0000907 VD->VarDeclBits.ARCPseudoStrong = Record[Idx++];
Richard Smith099e7f62011-12-19 06:19:21 +0000908 if (uint64_t Val = Record[Idx++]) {
Sebastian Redlc3632732010-10-05 15:59:54 +0000909 VD->setInit(Reader.ReadExpr(F));
Richard Smith099e7f62011-12-19 06:19:21 +0000910 if (Val > 1) {
911 EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
912 Eval->CheckedICE = true;
913 Eval->IsICE = Val == 3;
914 }
915 }
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000916
917 if (Record[Idx++]) { // HasMemberSpecializationInfo.
Douglas Gregor409448c2011-07-21 22:35:25 +0000918 VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000919 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000920 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000921 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000922 }
Chris Lattner698f9252009-04-27 05:27:42 +0000923}
924
Sebastian Redld527cc02010-08-18 23:56:48 +0000925void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000926 VisitVarDecl(PD);
927}
928
Sebastian Redld527cc02010-08-18 23:56:48 +0000929void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000930 VisitVarDecl(PD);
John McCall70798862011-05-02 00:30:12 +0000931 unsigned isObjCMethodParam = Record[Idx++];
932 unsigned scopeDepth = Record[Idx++];
933 unsigned scopeIndex = Record[Idx++];
934 unsigned declQualifier = Record[Idx++];
935 if (isObjCMethodParam) {
936 assert(scopeDepth == 0);
937 PD->setObjCMethodScopeInfo(scopeIndex);
938 PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
939 } else {
940 PD->setScopeInfo(scopeDepth, scopeIndex);
941 }
John McCallf1e4fbf2011-05-01 02:13:58 +0000942 PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++];
943 PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++];
Argyrios Kyrtzidis691d77f2010-07-04 21:44:07 +0000944 if (Record[Idx++]) // hasUninstantiatedDefaultArg.
Sebastian Redlc3632732010-10-05 15:59:54 +0000945 PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000946}
947
Sebastian Redld527cc02010-08-18 23:56:48 +0000948void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000949 VisitDecl(AD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000950 AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F)));
Abramo Bagnara21e006e2011-03-03 14:20:18 +0000951 AD->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000952}
953
Sebastian Redld527cc02010-08-18 23:56:48 +0000954void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000955 VisitDecl(BD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000956 BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F)));
957 BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000958 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000959 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000960 Params.reserve(NumParams);
961 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000962 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000963 BD->setParams(Params);
John McCall469a1eb2011-02-02 13:00:07 +0000964
965 bool capturesCXXThis = Record[Idx++];
John McCall6b5a61b2011-02-07 10:33:21 +0000966 unsigned numCaptures = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000967 SmallVector<BlockDecl::Capture, 16> captures;
John McCall6b5a61b2011-02-07 10:33:21 +0000968 captures.reserve(numCaptures);
969 for (unsigned i = 0; i != numCaptures; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000970 VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx);
John McCall6b5a61b2011-02-07 10:33:21 +0000971 unsigned flags = Record[Idx++];
972 bool byRef = (flags & 1);
973 bool nested = (flags & 2);
974 Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : 0);
975
976 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
977 }
Douglas Gregor35942772011-09-09 21:34:22 +0000978 BD->setCaptures(Reader.getContext(), captures.begin(),
John McCall6b5a61b2011-02-07 10:33:21 +0000979 captures.end(), capturesCXXThis);
Chris Lattner698f9252009-04-27 05:27:42 +0000980}
981
Sebastian Redld527cc02010-08-18 23:56:48 +0000982void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000983 VisitDecl(D);
984 D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000985 D->setExternLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +0000986 D->setRBraceLoc(ReadSourceLocation(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000987}
988
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000989void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
990 VisitNamedDecl(D);
Abramo Bagnara67843042011-03-05 18:21:20 +0000991 D->setLocStart(ReadSourceLocation(Record, Idx));
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000992}
993
994
Sebastian Redld527cc02010-08-18 23:56:48 +0000995void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000996 VisitNamedDecl(D);
Douglas Gregor0a0c3e72010-10-05 20:41:58 +0000997 D->IsInline = Record[Idx++];
Abramo Bagnaraacba90f2011-03-08 12:38:20 +0000998 D->LocStart = ReadSourceLocation(Record, Idx);
999 D->RBraceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor06c91932010-10-27 19:49:05 +00001000 D->NextNamespace = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001001
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001002 bool IsOriginal = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001003 // FIXME: Modules will likely have trouble with pointing directly at
1004 // the original namespace.
Argyrios Kyrtzidisa038c1d2010-07-03 07:57:53 +00001005 D->OrigOrAnonNamespace.setInt(IsOriginal);
Douglas Gregor409448c2011-07-21 22:35:25 +00001006 D->OrigOrAnonNamespace.setPointer(ReadDeclAs<NamespaceDecl>(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001007}
1008
Sebastian Redld527cc02010-08-18 23:56:48 +00001009void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001010 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001011 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00001012 D->IdentLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001013 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001014 D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001015}
1016
Sebastian Redld527cc02010-08-18 23:56:48 +00001017void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001018 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001019 D->setUsingLocation(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001020 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001021 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001022 D->FirstUsingShadow = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001023 D->setTypeName(Record[Idx++]);
Douglas Gregor409448c2011-07-21 22:35:25 +00001024 if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001025 Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001026}
1027
Sebastian Redld527cc02010-08-18 23:56:48 +00001028void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001029 VisitNamedDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +00001030 D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx));
1031 D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx);
1032 UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001033 if (Pattern)
Douglas Gregor35942772011-09-09 21:34:22 +00001034 Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001035}
1036
Sebastian Redld527cc02010-08-18 23:56:48 +00001037void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001038 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001039 D->UsingLoc = ReadSourceLocation(Record, Idx);
1040 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregordb992412011-02-25 16:33:46 +00001041 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001042 D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx);
1043 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001044}
1045
Sebastian Redld527cc02010-08-18 23:56:48 +00001046void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001047 VisitValueDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001048 D->setUsingLoc(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001049 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001050 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001051}
1052
Sebastian Redld527cc02010-08-18 23:56:48 +00001053void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001054 UnresolvedUsingTypenameDecl *D) {
1055 VisitTypeDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001056 D->TypenameLocation = ReadSourceLocation(Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00001057 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001058}
1059
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001060void ASTDeclReader::ReadCXXDefinitionData(
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001061 struct CXXRecordDecl::DefinitionData &Data,
1062 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001063 Data.UserDeclaredConstructor = Record[Idx++];
1064 Data.UserDeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001065 Data.UserDeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001066 Data.UserDeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001067 Data.UserDeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001068 Data.UserDeclaredDestructor = Record[Idx++];
1069 Data.Aggregate = Record[Idx++];
1070 Data.PlainOldData = Record[Idx++];
1071 Data.Empty = Record[Idx++];
1072 Data.Polymorphic = Record[Idx++];
1073 Data.Abstract = Record[Idx++];
Chandler Carruthec997dc2011-04-30 10:07:30 +00001074 Data.IsStandardLayout = Record[Idx++];
Chandler Carrutha8225442011-04-30 09:17:45 +00001075 Data.HasNoNonEmptyBases = Record[Idx++];
1076 Data.HasPrivateFields = Record[Idx++];
1077 Data.HasProtectedFields = Record[Idx++];
1078 Data.HasPublicFields = Record[Idx++];
Douglas Gregor2bb11012011-05-13 01:05:07 +00001079 Data.HasMutableFields = Record[Idx++];
Sean Hunt023df372011-05-09 18:22:59 +00001080 Data.HasTrivialDefaultConstructor = Record[Idx++];
Richard Smith6b8bc072011-08-10 18:11:37 +00001081 Data.HasConstexprNonCopyMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001082 Data.HasTrivialCopyConstructor = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001083 Data.HasTrivialMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001084 Data.HasTrivialCopyAssignment = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001085 Data.HasTrivialMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001086 Data.HasTrivialDestructor = Record[Idx++];
Chandler Carruth9b6347c2011-04-24 02:49:34 +00001087 Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001088 Data.ComputedVisibleConversions = Record[Idx++];
Sean Huntcdee3fe2011-05-11 22:34:38 +00001089 Data.UserProvidedDefaultConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001090 Data.DeclaredDefaultConstructor = Record[Idx++];
1091 Data.DeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001092 Data.DeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001093 Data.DeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001094 Data.DeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001095 Data.DeclaredDestructor = Record[Idx++];
Sebastian Redl14c36332011-08-31 13:59:56 +00001096 Data.FailedImplicitMoveConstructor = Record[Idx++];
1097 Data.FailedImplicitMoveAssignment = Record[Idx++];
Anders Carlssonfaa6afd2011-01-22 18:11:02 +00001098
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001099 Data.NumBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001100 if (Data.NumBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001101 Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001102 Data.NumVBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001103 if (Data.NumVBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001104 Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00001105
Douglas Gregor409448c2011-07-21 22:35:25 +00001106 Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx);
1107 Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001108 assert(Data.Definition && "Data.Definition should be already set!");
Douglas Gregor409448c2011-07-21 22:35:25 +00001109 Data.FirstFriend = ReadDeclAs<FriendDecl>(Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001110}
1111
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001112void ASTDeclReader::InitializeCXXDefinitionData(CXXRecordDecl *D,
1113 CXXRecordDecl *DefinitionDecl,
1114 const RecordData &Record,
1115 unsigned &Idx) {
Douglas Gregor35942772011-09-09 21:34:22 +00001116 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis9703b0d2010-10-20 00:11:15 +00001117
Argyrios Kyrtzidis134db1f2010-10-24 17:26:31 +00001118 if (D == DefinitionDecl) {
1119 D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001120 ReadCXXDefinitionData(*D->DefinitionData, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001121
Douglas Gregorfc529f72011-12-19 19:00:47 +00001122 // Note that we have deserialized a definition.
1123 Reader.PendingDefinitions.insert(D);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001124 } else if (DefinitionDecl && DefinitionDecl->DefinitionData) {
1125 D->DefinitionData = DefinitionDecl->DefinitionData;
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001126 }
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001127}
1128
1129void ASTDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
1130 VisitRecordDecl(D);
1131
Douglas Gregor409448c2011-07-21 22:35:25 +00001132 CXXRecordDecl *DefinitionDecl = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001133 InitializeCXXDefinitionData(D, DefinitionDecl, Record, Idx);
1134
Douglas Gregor35942772011-09-09 21:34:22 +00001135 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001136
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001137 enum CXXRecKind {
1138 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1139 };
1140 switch ((CXXRecKind)Record[Idx++]) {
1141 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001142 llvm_unreachable("Out of sync with ASTDeclWriter::VisitCXXRecordDecl?");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001143 case CXXRecNotTemplate:
1144 break;
1145 case CXXRecTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +00001146 D->TemplateOrInstantiation = ReadDeclAs<ClassTemplateDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001147 break;
1148 case CXXRecMemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +00001149 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001150 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001151 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis8b996b82010-09-13 11:45:25 +00001152 MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1153 MSI->setPointOfInstantiation(POI);
1154 D->TemplateOrInstantiation = MSI;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001155 break;
1156 }
1157 }
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001158
1159 // Load the key function to avoid deserializing every method so we can
1160 // compute it.
John McCall5e1cdac2011-10-07 06:10:15 +00001161 if (D->IsCompleteDefinition) {
Douglas Gregor409448c2011-07-21 22:35:25 +00001162 if (CXXMethodDecl *Key = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001163 C.KeyFunctions[D] = Key;
1164 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001165}
1166
Sebastian Redld527cc02010-08-18 23:56:48 +00001167void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001168 VisitFunctionDecl(D);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001169 unsigned NumOverridenMethods = Record[Idx++];
1170 while (NumOverridenMethods--) {
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001171 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
1172 // MD may be initializing.
Douglas Gregor409448c2011-07-21 22:35:25 +00001173 if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001174 Reader.getContext().addOverriddenMethod(D, MD);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001175 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001176}
1177
Sebastian Redld527cc02010-08-18 23:56:48 +00001178void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001179 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001180
1181 D->IsExplicitSpecified = Record[Idx++];
1182 D->ImplicitlyDefined = Record[Idx++];
Sean Huntcbb67482011-01-08 20:30:50 +00001183 llvm::tie(D->CtorInitializers, D->NumCtorInitializers)
1184 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001185}
1186
Sebastian Redld527cc02010-08-18 23:56:48 +00001187void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001188 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001189
1190 D->ImplicitlyDefined = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001191 D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001192}
1193
Sebastian Redld527cc02010-08-18 23:56:48 +00001194void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001195 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001196 D->IsExplicitSpecified = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001197}
1198
Douglas Gregor15de72c2011-12-02 23:23:56 +00001199void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
1200 VisitDecl(D);
1201 D->ImportedAndComplete.setPointer(readModule(Record, Idx));
1202 D->ImportedAndComplete.setInt(Record[Idx++]);
1203 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1);
1204 for (unsigned I = 0, N = Record.back(); I != N; ++I)
1205 StoredLocs[I] = ReadSourceLocation(Record, Idx);
1206 ++Idx;
1207}
1208
Sebastian Redld527cc02010-08-18 23:56:48 +00001209void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001210 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001211 D->setColonLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara6206d532010-06-05 05:09:32 +00001212}
1213
Sebastian Redld527cc02010-08-18 23:56:48 +00001214void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +00001215 VisitDecl(D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001216 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00001217 D->Friend = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001218 else
Douglas Gregor409448c2011-07-21 22:35:25 +00001219 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Douglas Gregor69aecc62010-10-27 20:23:41 +00001220 D->NextFriend = Record[Idx++];
John McCall6102ca12010-10-16 06:59:13 +00001221 D->UnsupportedFriend = (Record[Idx++] != 0);
Sebastian Redlc3632732010-10-05 15:59:54 +00001222 D->FriendLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001223}
1224
Sebastian Redld527cc02010-08-18 23:56:48 +00001225void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001226 VisitDecl(D);
1227 unsigned NumParams = Record[Idx++];
1228 D->NumParams = NumParams;
1229 D->Params = new TemplateParameterList*[NumParams];
1230 for (unsigned i = 0; i != NumParams; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001231 D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001232 if (Record[Idx++]) // HasFriendDecl
Douglas Gregor409448c2011-07-21 22:35:25 +00001233 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001234 else
Sebastian Redlc3632732010-10-05 15:59:54 +00001235 D->Friend = GetTypeSourceInfo(Record, Idx);
1236 D->FriendLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001237}
1238
Sebastian Redld527cc02010-08-18 23:56:48 +00001239void ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001240 VisitNamedDecl(D);
1241
Douglas Gregor409448c2011-07-21 22:35:25 +00001242 NamedDecl *TemplatedDecl = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001243 TemplateParameterList* TemplateParams
Sebastian Redlc3632732010-10-05 15:59:54 +00001244 = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001245 D->init(TemplatedDecl, TemplateParams);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001246}
1247
Sebastian Redld527cc02010-08-18 23:56:48 +00001248void ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001249 // Initialize CommonOrPrev before VisitTemplateDecl so that getCommonPtr()
1250 // can be used while this is still initializing.
Douglas Gregorfc529f72011-12-19 19:00:47 +00001251 enum RedeclKind { FirstDeclaration, FirstInFile, PointsToPrevious };
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001252 RedeclKind Kind = (RedeclKind)Record[Idx++];
1253
1254 // Determine the first declaration ID.
1255 DeclID FirstDeclID;
1256 switch (Kind) {
1257 case FirstDeclaration: {
1258 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001259
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001260 // Since this is the first declaration of the template, fill in the
1261 // information for the 'common' pointer.
1262 if (D->CommonOrPrev.isNull()) {
1263 RedeclarableTemplateDecl::CommonBase *Common
1264 = D->newCommon(Reader.getContext());
1265 Common->Latest = D;
1266 D->CommonOrPrev = Common;
1267 }
Douglas Gregor0f753232011-12-22 01:48:48 +00001268
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001269 if (RedeclarableTemplateDecl *RTD
Douglas Gregor0f753232011-12-22 01:48:48 +00001270 = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001271 assert(RTD->getKind() == D->getKind() &&
1272 "InstantiatedFromMemberTemplate kind mismatch");
1273 D->setInstantiatedFromMemberTemplateImpl(RTD);
1274 if (Record[Idx++])
1275 D->setMemberSpecialization();
1276 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001277 break;
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001278 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00001279
1280 case FirstInFile:
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001281 case PointsToPrevious: {
1282 FirstDeclID = ReadDeclID(Record, Idx);
1283 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1284
1285 RedeclarableTemplateDecl *FirstDecl
1286 = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(FirstDeclID));
1287
1288 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1289 // We temporarily set the first (canonical) declaration as the previous one
1290 // which is the one that matters and mark the real previous DeclID to be
1291 // loaded and attached later on.
1292 D->CommonOrPrev = FirstDecl;
1293
Douglas Gregorfc529f72011-12-19 19:00:47 +00001294 if (Kind == PointsToPrevious) {
1295 // Make a note that we need to wire up this declaration to its
1296 // previous declaration, later. We don't need to do this for the first
1297 // declaration in any given module file, because those will be wired
1298 // together later.
1299 Reader.PendingPreviousDecls.push_back(std::make_pair(D, PrevDeclID));
1300 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001301 break;
1302 }
1303 }
1304
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001305 VisitTemplateDecl(D);
1306 D->IdentifierNamespace = Record[Idx++];
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001307}
1308
Sebastian Redld527cc02010-08-18 23:56:48 +00001309void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001310 VisitRedeclarableTemplateDecl(D);
1311
1312 if (D->getPreviousDeclaration() == 0) {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001313 // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
1314 // the specializations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001315 SmallVector<serialization::DeclID, 2> SpecIDs;
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001316 SpecIDs.push_back(0);
1317
1318 // Specializations.
1319 unsigned Size = Record[Idx++];
1320 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001321 for (unsigned I = 0; I != Size; ++I)
1322 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001323
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001324 // Partial specializations.
1325 Size = Record[Idx++];
1326 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001327 for (unsigned I = 0; I != Size; ++I)
1328 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001329
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001330 if (SpecIDs[0]) {
1331 typedef serialization::DeclID DeclID;
1332
1333 ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1334 CommonPtr->LazySpecializations
Douglas Gregor35942772011-09-09 21:34:22 +00001335 = new (Reader.getContext()) DeclID [SpecIDs.size()];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001336 memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1337 SpecIDs.size() * sizeof(DeclID));
1338 }
1339
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001340 // InjectedClassNameType is computed.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001341 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001342}
1343
Sebastian Redld527cc02010-08-18 23:56:48 +00001344void ASTDeclReader::VisitClassTemplateSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001345 ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001346 VisitCXXRecordDecl(D);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001347
Douglas Gregor35942772011-09-09 21:34:22 +00001348 ASTContext &C = Reader.getContext();
Douglas Gregor409448c2011-07-21 22:35:25 +00001349 if (Decl *InstD = ReadDecl(Record, Idx)) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001350 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001351 D->SpecializedTemplate = CTD;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001352 } else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001353 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001354 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001355 TemplateArgumentList *ArgList
Douglas Gregor910f8002010-11-07 23:05:16 +00001356 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1357 TemplArgs.size());
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001358 ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS
1359 = new (C) ClassTemplateSpecializationDecl::
1360 SpecializedPartialSpecialization();
1361 PS->PartialSpecialization
1362 = cast<ClassTemplatePartialSpecializationDecl>(InstD);
1363 PS->TemplateArgs = ArgList;
1364 D->SpecializedTemplate = PS;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001365 }
1366 }
1367
1368 // Explicit info.
Sebastian Redlc3632732010-10-05 15:59:54 +00001369 if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001370 ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo
1371 = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
1372 ExplicitInfo->TypeAsWritten = TyInfo;
Sebastian Redlc3632732010-10-05 15:59:54 +00001373 ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1374 ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001375 D->ExplicitInfo = ExplicitInfo;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001376 }
1377
Chris Lattner5f9e2722011-07-23 10:55:15 +00001378 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001379 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Douglas Gregor910f8002010-11-07 23:05:16 +00001380 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1381 TemplArgs.size());
Sebastian Redlc3632732010-10-05 15:59:54 +00001382 D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001383 D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001384
Argyrios Kyrtzidisbc5ab7c2010-07-20 13:59:40 +00001385 if (D->isCanonicalDecl()) { // It's kept in the folding set.
Douglas Gregor409448c2011-07-21 22:35:25 +00001386 ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001387 if (ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001388 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
1389 CanonPattern->getCommonPtr()->PartialSpecializations.InsertNode(Partial);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001390 } else {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001391 CanonPattern->getCommonPtr()->Specializations.InsertNode(D);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001392 }
1393 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001394}
1395
Sebastian Redld527cc02010-08-18 23:56:48 +00001396void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001397 ClassTemplatePartialSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001398 VisitClassTemplateSpecializationDecl(D);
1399
Douglas Gregor35942772011-09-09 21:34:22 +00001400 ASTContext &C = Reader.getContext();
Sebastian Redlc3632732010-10-05 15:59:54 +00001401 D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001402
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001403 unsigned NumArgs = Record[Idx++];
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001404 if (NumArgs) {
1405 D->NumArgsAsWritten = NumArgs;
1406 D->ArgsAsWritten = new (C) TemplateArgumentLoc[NumArgs];
1407 for (unsigned i=0; i != NumArgs; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001408 D->ArgsAsWritten[i] = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001409 }
1410
1411 D->SequenceNumber = Record[Idx++];
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001412
1413 // These are read/set from/to the first declaration.
1414 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001415 D->InstantiatedFromMember.setPointer(
Douglas Gregor409448c2011-07-21 22:35:25 +00001416 ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx));
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001417 D->InstantiatedFromMember.setInt(Record[Idx++]);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001418 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001419}
1420
Sebastian Redl14c36332011-08-31 13:59:56 +00001421void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
1422 ClassScopeFunctionSpecializationDecl *D) {
Francois Pichetbc845322011-08-17 01:06:54 +00001423 VisitDecl(D);
1424 D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx);
1425}
1426
Sebastian Redld527cc02010-08-18 23:56:48 +00001427void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001428 VisitRedeclarableTemplateDecl(D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001429
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001430 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001431 // This FunctionTemplateDecl owns a CommonPtr; read it.
1432
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001433 // Read the function specialization declarations.
1434 // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +00001435 // when reading the specialized FunctionDecl.
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001436 unsigned NumSpecs = Record[Idx++];
1437 while (NumSpecs--)
Douglas Gregor409448c2011-07-21 22:35:25 +00001438 (void)ReadDecl(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001439 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001440}
1441
Sebastian Redld527cc02010-08-18 23:56:48 +00001442void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001443 VisitTypeDecl(D);
1444
1445 D->setDeclaredWithTypename(Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001446
1447 bool Inherited = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001448 TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001449 D->setDefaultArgument(DefArg, Inherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001450}
1451
Sebastian Redld527cc02010-08-18 23:56:48 +00001452void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
John McCall76a40212011-02-09 01:13:10 +00001453 VisitDeclaratorDecl(D);
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001454 // TemplateParmPosition.
1455 D->setDepth(Record[Idx++]);
1456 D->setPosition(Record[Idx++]);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001457 if (D->isExpandedParameterPack()) {
1458 void **Data = reinterpret_cast<void **>(D + 1);
1459 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Douglas Gregor393f2492011-07-22 00:38:23 +00001460 Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001461 Data[2*I + 1] = GetTypeSourceInfo(Record, Idx);
1462 }
1463 } else {
1464 // Rest of NonTypeTemplateParmDecl.
1465 D->ParameterPack = Record[Idx++];
1466 if (Record[Idx++]) {
1467 Expr *DefArg = Reader.ReadExpr(F);
1468 bool Inherited = Record[Idx++];
1469 D->setDefaultArgument(DefArg, Inherited);
1470 }
1471 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001472}
1473
Sebastian Redld527cc02010-08-18 23:56:48 +00001474void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001475 VisitTemplateDecl(D);
1476 // TemplateParmPosition.
1477 D->setDepth(Record[Idx++]);
1478 D->setPosition(Record[Idx++]);
1479 // Rest of TemplateTemplateParmDecl.
Sebastian Redlc3632732010-10-05 15:59:54 +00001480 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001481 bool IsInherited = Record[Idx++];
1482 D->setDefaultArgument(Arg, IsInherited);
Douglas Gregor61c4d282011-01-05 15:48:55 +00001483 D->ParameterPack = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001484}
1485
Richard Smith3e4c6c42011-05-05 21:57:07 +00001486void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
1487 VisitRedeclarableTemplateDecl(D);
1488}
1489
Sebastian Redld527cc02010-08-18 23:56:48 +00001490void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001491 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001492 D->AssertExpr = Reader.ReadExpr(F);
1493 D->Message = cast<StringLiteral>(Reader.ReadExpr(F));
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001494 D->RParenLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001495}
1496
Mike Stump1eb44332009-09-09 15:08:12 +00001497std::pair<uint64_t, uint64_t>
Sebastian Redld527cc02010-08-18 23:56:48 +00001498ASTDeclReader::VisitDeclContext(DeclContext *DC) {
Chris Lattner698f9252009-04-27 05:27:42 +00001499 uint64_t LexicalOffset = Record[Idx++];
1500 uint64_t VisibleOffset = Record[Idx++];
1501 return std::make_pair(LexicalOffset, VisibleOffset);
1502}
1503
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001504template <typename T>
Douglas Gregor0f753232011-12-22 01:48:48 +00001505ASTDeclReader::RedeclarableResult
1506ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
Douglas Gregorfc529f72011-12-19 19:00:47 +00001507 enum RedeclKind { FirstDeclaration = 0, FirstInFile, PointsToPrevious };
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001508 RedeclKind Kind = (RedeclKind)Record[Idx++];
Douglas Gregora1be2782011-12-17 23:38:30 +00001509
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001510 DeclID FirstDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001511 switch (Kind) {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001512 case FirstDeclaration:
1513 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001514 break;
Douglas Gregorfc529f72011-12-19 19:00:47 +00001515
1516 case FirstInFile:
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001517 case PointsToPrevious: {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001518 FirstDeclID = ReadDeclID(Record, Idx);
1519 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1520
1521 T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
Douglas Gregora1be2782011-12-17 23:38:30 +00001522
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001523 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1524 // We temporarily set the first (canonical) declaration as the previous one
1525 // which is the one that matters and mark the real previous DeclID to be
1526 // loaded & attached later on.
Douglas Gregord488b3a2011-10-26 17:53:41 +00001527 D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink(FirstDecl);
Douglas Gregord488b3a2011-10-26 17:53:41 +00001528
Douglas Gregorfc529f72011-12-19 19:00:47 +00001529 if (Kind == PointsToPrevious) {
1530 // Make a note that we need to wire up this declaration to its
1531 // previous declaration, later. We don't need to do this for the first
1532 // declaration in any given module file, because those will be wired
1533 // together later.
1534 Reader.PendingPreviousDecls.push_back(std::make_pair(static_cast<T*>(D),
1535 PrevDeclID));
1536 }
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001537 break;
1538 }
Douglas Gregord488b3a2011-10-26 17:53:41 +00001539 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001540
Douglas Gregor0f753232011-12-22 01:48:48 +00001541 // The result structure takes care of note that we need to load the
1542 // other declaration chains for this ID.
1543 return RedeclarableResult(Reader, FirstDeclID);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001544}
1545
Chris Lattner698f9252009-04-27 05:27:42 +00001546//===----------------------------------------------------------------------===//
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001547// Attribute Reading
Chris Lattner698f9252009-04-27 05:27:42 +00001548//===----------------------------------------------------------------------===//
1549
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001550/// \brief Reads attributes from the current stream position.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001551void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs,
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +00001552 const RecordData &Record, unsigned &Idx) {
1553 for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001554 Attr *New = 0;
Sean Hunt387475d2010-06-16 23:43:53 +00001555 attr::Kind Kind = (attr::Kind)Record[Idx++];
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001556 SourceRange Range = ReadSourceRange(F, Record, Idx);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001557
Sean Huntcf807c42010-08-18 23:23:40 +00001558#include "clang/Serialization/AttrPCHRead.inc"
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001559
1560 assert(New && "Unable to decode attribute?");
Sean Huntcf807c42010-08-18 23:23:40 +00001561 Attrs.push_back(New);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001562 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001563}
1564
1565//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001566// ASTReader Implementation
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001567//===----------------------------------------------------------------------===//
Chris Lattner698f9252009-04-27 05:27:42 +00001568
1569/// \brief Note that we have loaded the declaration with the given
1570/// Index.
Mike Stump1eb44332009-09-09 15:08:12 +00001571///
Chris Lattner698f9252009-04-27 05:27:42 +00001572/// This routine notes that this declaration has already been loaded,
1573/// so that future GetDecl calls will return this declaration rather
1574/// than trying to load a new declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001575inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +00001576 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1577 DeclsLoaded[Index] = D;
1578}
1579
1580
1581/// \brief Determine whether the consumer will be interested in seeing
1582/// this declaration (via HandleTopLevelDecl).
1583///
1584/// This routine should return true for anything that might affect
1585/// code generation, e.g., inline function definitions, Objective-C
1586/// declarations with metadata, etc.
1587static bool isConsumerInterestedIn(Decl *D) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00001588 // An ObjCMethodDecl is never considered as "interesting" because its
1589 // implementation container always is.
1590
Douglas Gregor94da1582011-09-10 00:22:34 +00001591 if (isa<FileScopeAsmDecl>(D) ||
1592 isa<ObjCProtocolDecl>(D) ||
1593 isa<ObjCImplDecl>(D))
Daniel Dunbar04a0b502009-09-17 03:06:44 +00001594 return true;
Chris Lattner698f9252009-04-27 05:27:42 +00001595 if (VarDecl *Var = dyn_cast<VarDecl>(D))
Argyrios Kyrtzidis3f954772010-08-05 09:47:59 +00001596 return Var->isFileVarDecl() &&
1597 Var->isThisDeclarationADefinition() == VarDecl::Definition;
Chris Lattner698f9252009-04-27 05:27:42 +00001598 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
Sean Hunt10620eb2011-05-06 20:44:56 +00001599 return Func->doesThisDeclarationHaveABody();
Douglas Gregor94da1582011-09-10 00:22:34 +00001600
1601 return false;
Chris Lattner698f9252009-04-27 05:27:42 +00001602}
1603
Douglas Gregor96e973f2011-07-20 00:27:43 +00001604/// \brief Get the correct cursor and offset for loading a declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001605ASTReader::RecordLocation
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001606ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) {
Sebastian Redl0b17c612010-08-13 00:28:03 +00001607 // See if there's an override.
1608 DeclReplacementMap::iterator It = ReplacedDecls.find(ID);
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00001609 if (It != ReplacedDecls.end()) {
1610 RawLocation = It->second.RawLoc;
1611 return RecordLocation(It->second.Mod, It->second.Offset);
1612 }
Sebastian Redl0b17c612010-08-13 00:28:03 +00001613
Douglas Gregor96e973f2011-07-20 00:27:43 +00001614 GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
1615 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001616 ModuleFile *M = I->second;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001617 const DeclOffset &
1618 DOffs = M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
1619 RawLocation = DOffs.Loc;
1620 return RecordLocation(M, DOffs.BitOffset);
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001621}
1622
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001623ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001624 ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001625 = GlobalBitOffsetsMap.find(GlobalOffset);
1626
1627 assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
1628 return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
1629}
1630
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001631uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) {
Douglas Gregore92b8a12011-08-04 00:01:48 +00001632 return LocalOffset + M.GlobalBitOffset;
1633}
1634
Douglas Gregor0f753232011-12-22 01:48:48 +00001635/// \brief Determine whether the two declarations refer to the same entity.
1636static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
1637 assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
1638
1639 if (X == Y)
1640 return true;
1641
1642 // Must have the same kind.
1643 if (X->getKind() != Y->getKind())
1644 return false;
1645
1646 // Must be in the same context.
1647 if (!X->getDeclContext()->getRedeclContext()->Equals(
1648 Y->getDeclContext()->getRedeclContext()))
1649 return false;
1650
1651 // Objective-C classes with the same name always match.
1652 if (isa<ObjCInterfaceDecl>(X))
1653 return true;
1654
1655 // FIXME: Many other cases to implement.
1656 return false;
1657}
1658
1659ASTDeclReader::FindExistingResult::~FindExistingResult() {
1660 if (!AddResult)
1661 return;
1662
1663 DeclContext *DC = New->getDeclContext()->getRedeclContext();
1664 if (DC->isTranslationUnit() && Reader.SemaObj) {
1665 if (!Existing) {
1666 Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, New->getDeclName());
1667 }
1668 }
1669}
1670
1671ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
1672 DeclContext *DC = D->getDeclContext()->getRedeclContext();
1673 if (!DC->isFileContext())
1674 return FindExistingResult(Reader);
1675
1676 if (DC->isTranslationUnit() && Reader.SemaObj) {
1677 IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver;
1678 for (IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1679 IEnd = IdResolver.end();
1680 I != IEnd; ++I) {
1681 if (isSameEntity(*I, D))
1682 return FindExistingResult(Reader, D, *I);
1683 }
1684 }
1685
1686 // FIXME: Search in the DeclContext.
1687
1688 return FindExistingResult(Reader, D, /*Existing=*/0);
1689}
1690
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001691void ASTDeclReader::attachPreviousDecl(Decl *D, Decl *previous) {
1692 assert(D && previous);
1693 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1694 TD->RedeclLink.setPointer(cast<TagDecl>(previous));
1695 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1696 FD->RedeclLink.setPointer(cast<FunctionDecl>(previous));
1697 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1698 VD->RedeclLink.setPointer(cast<VarDecl>(previous));
Douglas Gregora1be2782011-12-17 23:38:30 +00001699 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1700 TD->RedeclLink.setPointer(cast<TypedefNameDecl>(previous));
1701 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
Douglas Gregor0af55012011-12-16 03:12:41 +00001702 ID->RedeclLink.setPointer(cast<ObjCInterfaceDecl>(previous));
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001703 } else {
1704 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1705 TD->CommonOrPrev = cast<RedeclarableTemplateDecl>(previous);
1706 }
1707}
1708
Douglas Gregora1be2782011-12-17 23:38:30 +00001709void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
1710 assert(D && Latest);
1711 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1712 TD->RedeclLink
1713 = Redeclarable<TagDecl>::LatestDeclLink(cast<TagDecl>(Latest));
1714 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1715 FD->RedeclLink
1716 = Redeclarable<FunctionDecl>::LatestDeclLink(cast<FunctionDecl>(Latest));
1717 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1718 VD->RedeclLink
1719 = Redeclarable<VarDecl>::LatestDeclLink(cast<VarDecl>(Latest));
1720 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1721 TD->RedeclLink
1722 = Redeclarable<TypedefNameDecl>::LatestDeclLink(
1723 cast<TypedefNameDecl>(Latest));
1724 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
1725 ID->RedeclLink
1726 = Redeclarable<ObjCInterfaceDecl>::LatestDeclLink(
1727 cast<ObjCInterfaceDecl>(Latest));
1728 } else {
1729 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1730 TD->getCommonPtr()->Latest = cast<RedeclarableTemplateDecl>(Latest);
1731 }
1732}
1733
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00001734ASTReader::MergedDeclsMap::iterator
1735ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) {
1736 // If we don't have any stored merged declarations, just look in the
1737 // merged declarations set.
1738 StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID);
1739 if (StoredPos == StoredMergedDecls.end())
1740 return MergedDecls.find(Canon);
1741
1742 // Append the stored merged declarations to the merged declarations set.
1743 MergedDeclsMap::iterator Pos = MergedDecls.find(Canon);
1744 if (Pos == MergedDecls.end())
1745 Pos = MergedDecls.insert(std::make_pair(Canon,
1746 SmallVector<DeclID, 2>())).first;
1747 Pos->second.append(StoredPos->second.begin(), StoredPos->second.end());
1748 StoredMergedDecls.erase(StoredPos);
1749
1750 // Sort and uniquify the set of merged declarations.
1751 llvm::array_pod_sort(Pos->second.begin(), Pos->second.end());
1752 Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()),
1753 Pos->second.end());
1754 return Pos;
1755}
1756
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001757void ASTReader::loadAndAttachPreviousDecl(Decl *D, serialization::DeclID ID) {
1758 Decl *previous = GetDecl(ID);
1759 ASTDeclReader::attachPreviousDecl(D, previous);
1760}
1761
Sebastian Redld527cc02010-08-18 23:56:48 +00001762/// \brief Read the declaration at the given offset from the AST file.
Douglas Gregor496c7092011-08-03 15:48:04 +00001763Decl *ASTReader::ReadDeclRecord(DeclID ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001764 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001765 unsigned RawLocation = 0;
1766 RecordLocation Loc = DeclCursorForID(ID, RawLocation);
Sebastian Redlc3632732010-10-05 15:59:54 +00001767 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Chris Lattner698f9252009-04-27 05:27:42 +00001768 // Keep track of where we are in the stream, then jump back there
1769 // after reading this declaration.
Chris Lattnerda930612009-04-27 05:58:23 +00001770 SavedStreamPosition SavedPosition(DeclsCursor);
Chris Lattner698f9252009-04-27 05:27:42 +00001771
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001772 ReadingKindTracker ReadingKind(Read_Decl, *this);
1773
Douglas Gregord89275b2009-07-06 18:54:52 +00001774 // Note that we are loading a declaration record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00001775 Deserializing ADecl(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001776
Sebastian Redlc3632732010-10-05 15:59:54 +00001777 DeclsCursor.JumpToBit(Loc.Offset);
Chris Lattner698f9252009-04-27 05:27:42 +00001778 RecordData Record;
Chris Lattnerda930612009-04-27 05:58:23 +00001779 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner698f9252009-04-27 05:27:42 +00001780 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001781 ASTDeclReader Reader(*this, *Loc.F, DeclsCursor, ID, RawLocation, Record,Idx);
Chris Lattner698f9252009-04-27 05:27:42 +00001782
Chris Lattnerda930612009-04-27 05:58:23 +00001783 Decl *D = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001784 switch ((DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001785 case DECL_CONTEXT_LEXICAL:
1786 case DECL_CONTEXT_VISIBLE:
David Blaikieb219cfc2011-09-23 05:06:16 +00001787 llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001788 case DECL_TYPEDEF:
Douglas Gregor35942772011-09-09 21:34:22 +00001789 D = TypedefDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnara344577e2011-03-06 15:48:19 +00001790 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001791 break;
Richard Smith162e1c12011-04-15 14:24:37 +00001792 case DECL_TYPEALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001793 D = TypeAliasDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Richard Smith162e1c12011-04-15 14:24:37 +00001794 0, 0);
1795 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001796 case DECL_ENUM:
Douglas Gregor35942772011-09-09 21:34:22 +00001797 D = EnumDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001798 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001799 case DECL_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001800 D = RecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001801 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001802 case DECL_ENUM_CONSTANT:
Douglas Gregor35942772011-09-09 21:34:22 +00001803 D = EnumConstantDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Chris Lattner698f9252009-04-27 05:27:42 +00001804 0, llvm::APSInt());
1805 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001806 case DECL_FUNCTION:
Douglas Gregor35942772011-09-09 21:34:22 +00001807 D = FunctionDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001808 DeclarationName(), QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001809 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001810 case DECL_LINKAGE_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001811 D = LinkageSpecDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001812 (LinkageSpecDecl::LanguageIDs)0,
Abramo Bagnara55a96372011-03-03 16:52:29 +00001813 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001814 break;
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001815 case DECL_LABEL:
Douglas Gregor35942772011-09-09 21:34:22 +00001816 D = LabelDecl::Create(Context, 0, SourceLocation(), 0);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001817 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001818 case DECL_NAMESPACE:
Douglas Gregor35942772011-09-09 21:34:22 +00001819 D = NamespaceDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00001820 SourceLocation(), 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001821 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001822 case DECL_NAMESPACE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001823 D = NamespaceAliasDecl::Create(Context, 0, SourceLocation(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001824 SourceLocation(), 0,
1825 NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001826 SourceLocation(), 0);
1827 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001828 case DECL_USING:
Douglas Gregor35942772011-09-09 21:34:22 +00001829 D = UsingDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001830 NestedNameSpecifierLoc(), DeclarationNameInfo(),
1831 false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001832 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001833 case DECL_USING_SHADOW:
Douglas Gregor35942772011-09-09 21:34:22 +00001834 D = UsingShadowDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001835 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001836 case DECL_USING_DIRECTIVE:
Douglas Gregor35942772011-09-09 21:34:22 +00001837 D = UsingDirectiveDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001838 SourceLocation(), NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001839 SourceLocation(), 0, 0);
1840 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001841 case DECL_UNRESOLVED_USING_VALUE:
Douglas Gregor35942772011-09-09 21:34:22 +00001842 D = UnresolvedUsingValueDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001843 NestedNameSpecifierLoc(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001844 DeclarationNameInfo());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001845 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001846 case DECL_UNRESOLVED_USING_TYPENAME:
Douglas Gregor35942772011-09-09 21:34:22 +00001847 D = UnresolvedUsingTypenameDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001848 SourceLocation(),
1849 NestedNameSpecifierLoc(),
1850 SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001851 DeclarationName());
1852 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001853 case DECL_CXX_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001854 D = CXXRecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001855 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001856 case DECL_CXX_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001857 D = CXXMethodDecl::Create(Context, 0, SourceLocation(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001858 DeclarationNameInfo(), QualType(), 0,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001859 false, SC_None, false, false, SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001860 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001861 case DECL_CXX_CONSTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001862 D = CXXConstructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001863 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001864 case DECL_CXX_DESTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001865 D = CXXDestructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001866 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001867 case DECL_CXX_CONVERSION:
Douglas Gregor35942772011-09-09 21:34:22 +00001868 D = CXXConversionDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001869 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001870 case DECL_ACCESS_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001871 D = AccessSpecDecl::Create(Context, Decl::EmptyShell());
Abramo Bagnara6206d532010-06-05 05:09:32 +00001872 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001873 case DECL_FRIEND:
Douglas Gregor35942772011-09-09 21:34:22 +00001874 D = FriendDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001875 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001876 case DECL_FRIEND_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001877 D = FriendTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001878 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001879 case DECL_CLASS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001880 D = ClassTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001881 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001882 case DECL_CLASS_TEMPLATE_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001883 D = ClassTemplateSpecializationDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001884 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001885 case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001886 D = ClassTemplatePartialSpecializationDecl::Create(Context,
Douglas Gregor9a299e02011-03-04 17:52:15 +00001887 Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001888 break;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001889 case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001890 D = ClassScopeFunctionSpecializationDecl::Create(Context,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001891 Decl::EmptyShell());
1892 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001893 case DECL_FUNCTION_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001894 D = FunctionTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001895 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001896 case DECL_TEMPLATE_TYPE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001897 D = TemplateTypeParmDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001898 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001899 case DECL_NON_TYPE_TEMPLATE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001900 D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001901 SourceLocation(), 0, 0, 0, QualType(),
1902 false, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001903 break;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001904 case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK:
Douglas Gregor35942772011-09-09 21:34:22 +00001905 D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001906 SourceLocation(), 0, 0, 0, QualType(),
1907 0, 0, Record[Idx++], 0);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001908 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001909 case DECL_TEMPLATE_TEMPLATE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001910 D = TemplateTemplateParmDecl::Create(Context, 0, SourceLocation(), 0, 0,
Douglas Gregor61c4d282011-01-05 15:48:55 +00001911 false, 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001912 break;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001913 case DECL_TYPE_ALIAS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001914 D = TypeAliasTemplateDecl::Create(Context, Decl::EmptyShell());
Richard Smith3e4c6c42011-05-05 21:57:07 +00001915 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001916 case DECL_STATIC_ASSERT:
Douglas Gregor35942772011-09-09 21:34:22 +00001917 D = StaticAssertDecl::Create(Context, 0, SourceLocation(), 0, 0,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001918 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001919 break;
1920
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001921 case DECL_OBJC_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001922 D = ObjCMethodDecl::Create(Context, SourceLocation(), SourceLocation(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00001923 Selector(), QualType(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001924 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001925 case DECL_OBJC_INTERFACE:
Douglas Gregor0af55012011-12-16 03:12:41 +00001926 D = ObjCInterfaceDecl::CreateEmpty(Context);
Chris Lattner698f9252009-04-27 05:27:42 +00001927 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001928 case DECL_OBJC_IVAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001929 D = ObjCIvarDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001930 0, QualType(), 0, ObjCIvarDecl::None);
Chris Lattner698f9252009-04-27 05:27:42 +00001931 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001932 case DECL_OBJC_PROTOCOL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001933 D = ObjCProtocolDecl::Create(Context, 0, 0, SourceLocation(),
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +00001934 SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001935 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001936 case DECL_OBJC_AT_DEFS_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001937 D = ObjCAtDefsFieldDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001938 SourceLocation(), 0, QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001939 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001940 case DECL_OBJC_FORWARD_PROTOCOL:
Douglas Gregor35942772011-09-09 21:34:22 +00001941 D = ObjCForwardProtocolDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001942 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001943 case DECL_OBJC_CATEGORY:
Douglas Gregor35942772011-09-09 21:34:22 +00001944 D = ObjCCategoryDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001945 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001946 case DECL_OBJC_CATEGORY_IMPL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001947 D = ObjCCategoryImplDecl::Create(Context, 0, 0, 0, SourceLocation(),
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001948 SourceLocation(), SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001949 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001950 case DECL_OBJC_IMPLEMENTATION:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001951 D = ObjCImplementationDecl::Create(Context, 0, 0, 0, SourceLocation(),
1952 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001953 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001954 case DECL_OBJC_COMPATIBLE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001955 D = ObjCCompatibleAliasDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001956 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001957 case DECL_OBJC_PROPERTY:
Douglas Gregor35942772011-09-09 21:34:22 +00001958 D = ObjCPropertyDecl::Create(Context, 0, SourceLocation(), 0, SourceLocation(),
John McCall83a230c2010-06-04 20:50:08 +00001959 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001960 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001961 case DECL_OBJC_PROPERTY_IMPL:
Douglas Gregor35942772011-09-09 21:34:22 +00001962 D = ObjCPropertyImplDecl::Create(Context, 0, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001963 SourceLocation(), 0,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001964 ObjCPropertyImplDecl::Dynamic, 0,
1965 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001966 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001967 case DECL_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001968 D = FieldDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00001969 QualType(), 0, 0, false, false);
Chris Lattner698f9252009-04-27 05:27:42 +00001970 break;
Francois Pichet87c2e122010-11-21 06:08:52 +00001971 case DECL_INDIRECTFIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001972 D = IndirectFieldDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Francois Pichet87c2e122010-11-21 06:08:52 +00001973 0, 0);
1974 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001975 case DECL_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001976 D = VarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001977 QualType(), 0, SC_None, SC_None);
Chris Lattner698f9252009-04-27 05:27:42 +00001978 break;
1979
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001980 case DECL_IMPLICIT_PARAM:
Douglas Gregor35942772011-09-09 21:34:22 +00001981 D = ImplicitParamDecl::Create(Context, 0, SourceLocation(), 0, QualType());
Chris Lattner698f9252009-04-27 05:27:42 +00001982 break;
1983
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001984 case DECL_PARM_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001985 D = ParmVarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001986 QualType(), 0, SC_None, SC_None, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001987 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001988 case DECL_FILE_SCOPE_ASM:
Douglas Gregor35942772011-09-09 21:34:22 +00001989 D = FileScopeAsmDecl::Create(Context, 0, 0, SourceLocation(),
Abramo Bagnara21e006e2011-03-03 14:20:18 +00001990 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001991 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001992 case DECL_BLOCK:
Douglas Gregor35942772011-09-09 21:34:22 +00001993 D = BlockDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001994 break;
Douglas Gregor7c789c12010-10-29 22:39:52 +00001995 case DECL_CXX_BASE_SPECIFIERS:
1996 Error("attempt to read a C++ base-specifier record as a declaration");
1997 return 0;
Douglas Gregor15de72c2011-12-02 23:23:56 +00001998 case DECL_IMPORT:
1999 // Note: last entry of the ImportDecl record is the number of stored source
2000 // locations.
2001 D = ImportDecl::CreateEmpty(Context, Record.back());
2002 break;
Chris Lattner698f9252009-04-27 05:27:42 +00002003 }
Chris Lattner698f9252009-04-27 05:27:42 +00002004
Sebastian Redld527cc02010-08-18 23:56:48 +00002005 assert(D && "Unknown declaration reading AST file");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00002006 LoadedDecl(Index, D);
2007 Reader.Visit(D);
Chris Lattner698f9252009-04-27 05:27:42 +00002008
2009 // If this declaration is also a declaration context, get the
2010 // offsets for its tables of lexical and visible declarations.
2011 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
2012 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
2013 if (Offsets.first || Offsets.second) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002014 if (Offsets.first != 0)
2015 DC->setHasExternalLexicalStorage(true);
2016 if (Offsets.second != 0)
2017 DC->setHasExternalVisibleStorage(true);
2018 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
2019 Loc.F->DeclContextInfos[DC]))
Sebastian Redl681d7232010-07-27 00:17:23 +00002020 return 0;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002021 }
Sebastian Redle1dde812010-08-24 00:50:04 +00002022
Sebastian Redl024e1c42011-04-24 16:27:54 +00002023 // Now add the pending visible updates for this decl context, if it has any.
2024 DeclContextVisibleUpdatesPending::iterator I =
2025 PendingVisibleUpdates.find(ID);
2026 if (I != PendingVisibleUpdates.end()) {
2027 // There are updates. This means the context has external visible
2028 // storage, even if the original stored version didn't.
2029 DC->setHasExternalVisibleStorage(true);
2030 DeclContextVisibleUpdates &U = I->second;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002031 for (DeclContextVisibleUpdates::iterator UI = U.begin(), UE = U.end();
2032 UI != UE; ++UI) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002033 UI->second->DeclContextInfos[DC].NameLookupTableData = UI->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00002034 }
Sebastian Redl024e1c42011-04-24 16:27:54 +00002035 PendingVisibleUpdates.erase(I);
Chris Lattner698f9252009-04-27 05:27:42 +00002036 }
2037 }
2038 assert(Idx == Record.size());
2039
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002040 // Load any relevant update records.
2041 loadDeclUpdateRecords(ID, D);
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002042
2043 // Load the category chain after recursive loading is finished.
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002044 if (ObjCChainedCategoriesInterfaces.count(ID))
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002045 PendingChainedObjCCategories.push_back(
2046 std::make_pair(cast<ObjCInterfaceDecl>(D), ID));
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002047
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002048 // If we have deserialized a declaration that has a definition the
2049 // AST consumer might need to know about, queue it.
2050 // We don't pass it to the consumer immediately because we may be in recursive
2051 // loading, and some declarations may still be initializing.
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00002052 if (isConsumerInterestedIn(D))
Douglas Gregor94da1582011-09-10 00:22:34 +00002053 InterestingDecls.push_back(D);
Douglas Gregor94da1582011-09-10 00:22:34 +00002054
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002055 return D;
2056}
2057
2058void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) {
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002059 // The declaration may have been modified by files later in the chain.
2060 // If this is the case, read the record containing the updates from each file
2061 // and pass it to ASTDeclReader to make the modifications.
2062 DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
2063 if (UpdI != DeclUpdateOffsets.end()) {
2064 FileOffsetsTy &UpdateOffsets = UpdI->second;
2065 for (FileOffsetsTy::iterator
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002066 I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002067 ModuleFile *F = I->first;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002068 uint64_t Offset = I->second;
2069 llvm::BitstreamCursor &Cursor = F->DeclsCursor;
2070 SavedStreamPosition SavedPosition(Cursor);
2071 Cursor.JumpToBit(Offset);
2072 RecordData Record;
2073 unsigned Code = Cursor.ReadCode();
2074 unsigned RecCode = Cursor.ReadRecord(Code, Record);
2075 (void)RecCode;
2076 assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!");
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002077
2078 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00002079 ASTDeclReader Reader(*this, *F, Cursor, ID, 0, Record, Idx);
Sebastian Redlf79a7192011-04-29 08:19:30 +00002080 Reader.UpdateDecl(D, *F, Record);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002081 }
2082 }
Chris Lattner698f9252009-04-27 05:27:42 +00002083}
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002084
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002085namespace {
Douglas Gregora1be2782011-12-17 23:38:30 +00002086 struct CompareLocalRedeclarationsInfoToID {
2087 bool operator()(const LocalRedeclarationsInfo &X, DeclID Y) {
2088 return X.FirstID < Y;
2089 }
2090
2091 bool operator()(DeclID X, const LocalRedeclarationsInfo &Y) {
2092 return X < Y.FirstID;
2093 }
2094
2095 bool operator()(const LocalRedeclarationsInfo &X,
2096 const LocalRedeclarationsInfo &Y) {
2097 return X.FirstID < Y.FirstID;
2098 }
2099 bool operator()(DeclID X, DeclID Y) {
2100 return X < Y;
2101 }
2102 };
2103
Douglas Gregor0f753232011-12-22 01:48:48 +00002104 /// \brief Module visitor class that finds all of the redeclarations of a
2105 ///
Douglas Gregora1be2782011-12-17 23:38:30 +00002106 class RedeclChainVisitor {
2107 ASTReader &Reader;
Douglas Gregor0f753232011-12-22 01:48:48 +00002108 SmallVectorImpl<DeclID> &SearchDecls;
2109 GlobalDeclID CanonID;
Douglas Gregora1be2782011-12-17 23:38:30 +00002110 llvm::SmallVector<std::pair<Decl *, Decl *>, 4> Chains;
2111
2112 public:
Douglas Gregor0f753232011-12-22 01:48:48 +00002113 RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls,
2114 GlobalDeclID CanonID)
2115 : Reader(Reader), SearchDecls(SearchDecls), CanonID(CanonID) { }
Douglas Gregora1be2782011-12-17 23:38:30 +00002116
2117 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
2118 if (Preorder)
2119 return false;
2120
2121 return static_cast<RedeclChainVisitor *>(UserData)->visit(M);
2122 }
2123
Douglas Gregor0f753232011-12-22 01:48:48 +00002124 void searchForID(ModuleFile &M, GlobalDeclID GlobalID) {
Douglas Gregora1be2782011-12-17 23:38:30 +00002125 // Map global ID of the first declaration down to the local ID
2126 // used in this module file.
Douglas Gregor0f753232011-12-22 01:48:48 +00002127 DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID);
2128 if (!ID)
2129 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002130
2131 // Perform a binary search to find the local redeclarations for this
2132 // declaration (if any).
2133 const LocalRedeclarationsInfo *Result
2134 = std::lower_bound(M.RedeclarationsInfo,
2135 M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos,
Douglas Gregor0f753232011-12-22 01:48:48 +00002136 ID, CompareLocalRedeclarationsInfoToID());
Douglas Gregora1be2782011-12-17 23:38:30 +00002137 if (Result == M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos ||
Douglas Gregor0f753232011-12-22 01:48:48 +00002138 Result->FirstID != ID) {
2139 // If we have a previously-canonical singleton declaration that was
2140 // merged into another redeclaration chain, create a trivial chain
2141 // for this single declaration so that it will get wired into the
2142 // complete redeclaration chain.
2143 if (GlobalID != CanonID &&
2144 GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
2145 GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) {
2146 if (Decl *D = Reader.GetDecl(GlobalID))
2147 Chains.push_back(std::make_pair(D, D));
2148 }
2149
2150 return;
2151 }
2152
Douglas Gregora1be2782011-12-17 23:38:30 +00002153 // Dig out the starting/ending declarations.
2154 Decl *FirstLocalDecl = Reader.GetLocalDecl(M, Result->FirstLocalID);
2155 Decl *LastLocalDecl = Reader.GetLocalDecl(M, Result->LastLocalID);
2156 if (!FirstLocalDecl || !LastLocalDecl)
Douglas Gregor0f753232011-12-22 01:48:48 +00002157 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002158
2159 // Append this redeclaration chain to the list.
2160 Chains.push_back(std::make_pair(FirstLocalDecl, LastLocalDecl));
Douglas Gregor0f753232011-12-22 01:48:48 +00002161 }
2162
2163 bool visit(ModuleFile &M) {
2164 // Visit each of the declarations.
2165 for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
2166 searchForID(M, SearchDecls[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00002167 return false;
2168 }
2169
2170 ArrayRef<std::pair<Decl *, Decl *> > getChains() const {
2171 return Chains;
2172 }
2173
2174 void addParsed(Decl *FirstParsedDecl, Decl *LastParsedDecl) {
2175 Chains.push_back(std::make_pair(FirstParsedDecl, LastParsedDecl));
2176 }
2177 };
2178}
2179
2180/// \brief Retrieve the previous declaration to D.
2181static Decl *getPreviousDecl(Decl *D) {
2182 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2183 return TD->getPreviousDeclaration();
2184 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2185 return FD->getPreviousDeclaration();
2186 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2187 return VD->getPreviousDeclaration();
2188 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2189 return TD->getPreviousDeclaration();
2190 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2191 return ID->getPreviousDeclaration();
2192
2193 return cast<RedeclarableTemplateDecl>(D)->getPreviousDeclaration();
2194}
2195
2196/// \brief Retrieve the most recent declaration of D.
2197static Decl *getMostRecentDecl(Decl *D) {
2198 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2199 return TD->getMostRecentDeclaration();
2200 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2201 return FD->getMostRecentDeclaration();
2202 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2203 return VD->getMostRecentDeclaration();
2204 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2205 return TD->getMostRecentDeclaration();
2206 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2207 return ID->getMostRecentDeclaration();
2208
2209 return cast<RedeclarableTemplateDecl>(D)->getMostRecentDeclaration();
2210}
2211
2212void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002213 Decl *D = GetDecl(ID);
2214 Decl *CanonDecl = D->getCanonicalDecl();
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002215
Douglas Gregor0f753232011-12-22 01:48:48 +00002216 // Determine the set of declaration IDs we'll be searching for.
2217 llvm::SmallVector<DeclID, 1> SearchDecls;
2218 GlobalDeclID CanonID = 0;
2219 if (D == CanonDecl) {
2220 SearchDecls.push_back(ID); // Always first.
2221 CanonID = ID;
2222 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002223 MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID);
Douglas Gregor0f753232011-12-22 01:48:48 +00002224 if (MergedPos != MergedDecls.end())
2225 SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end());
2226
Douglas Gregora1be2782011-12-17 23:38:30 +00002227 // Build up the list of redeclaration chains.
Douglas Gregor0f753232011-12-22 01:48:48 +00002228 RedeclChainVisitor Visitor(*this, SearchDecls, CanonID);
Douglas Gregora1be2782011-12-17 23:38:30 +00002229 ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor);
2230
2231 // Retrieve the chains.
2232 ArrayRef<std::pair<Decl *, Decl *> > Chains = Visitor.getChains();
2233 if (Chains.empty())
2234 return;
Douglas Gregor0f753232011-12-22 01:48:48 +00002235
Douglas Gregora1be2782011-12-17 23:38:30 +00002236 // Capture all of the parsed declarations and put them at the end.
2237 Decl *MostRecent = getMostRecentDecl(CanonDecl);
2238 Decl *FirstParsed = MostRecent;
2239 if (CanonDecl != MostRecent && !MostRecent->isFromASTFile()) {
2240 Decl *Current = MostRecent;
2241 while (Decl *Prev = getPreviousDecl(Current)) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002242 if (Prev == CanonDecl)
2243 break;
2244
Douglas Gregora1be2782011-12-17 23:38:30 +00002245 if (Prev->isFromASTFile()) {
2246 Current = Prev;
2247 continue;
2248 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002249
Douglas Gregora1be2782011-12-17 23:38:30 +00002250 // Chain all of the parsed declarations together.
2251 ASTDeclReader::attachPreviousDecl(FirstParsed, Prev);
2252 FirstParsed = Prev;
2253 Current = Prev;
2254 }
2255
2256 Visitor.addParsed(FirstParsed, MostRecent);
2257 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002258
Douglas Gregora1be2782011-12-17 23:38:30 +00002259 // Hook up the separate chains.
2260 Chains = Visitor.getChains();
Douglas Gregor0f753232011-12-22 01:48:48 +00002261 if (Chains[0].first != CanonDecl)
2262 ASTDeclReader::attachPreviousDecl(Chains[0].first, CanonDecl);
Douglas Gregora1be2782011-12-17 23:38:30 +00002263 for (unsigned I = 1, N = Chains.size(); I != N; ++I)
2264 ASTDeclReader::attachPreviousDecl(Chains[I].first, Chains[I-1].second);
2265 ASTDeclReader::attachLatestDecl(CanonDecl, Chains.back().second);
2266}
2267
2268namespace {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002269 /// \brief Given an ObjC interface, goes through the modules and links to the
2270 /// interface all the categories for it.
2271 class ObjCChainedCategoriesVisitor {
2272 ASTReader &Reader;
2273 serialization::GlobalDeclID InterfaceID;
2274 ObjCInterfaceDecl *Interface;
2275 ObjCCategoryDecl *GlobHeadCat, *GlobTailCat;
2276 llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
2277
2278 public:
2279 ObjCChainedCategoriesVisitor(ASTReader &Reader,
2280 serialization::GlobalDeclID InterfaceID,
2281 ObjCInterfaceDecl *Interface)
2282 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
2283 GlobHeadCat(0), GlobTailCat(0) { }
2284
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002285 static bool visit(ModuleFile &M, void *UserData) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002286 return static_cast<ObjCChainedCategoriesVisitor *>(UserData)->visit(M);
2287 }
2288
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002289 bool visit(ModuleFile &M) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002290 if (Reader.isDeclIDFromModule(InterfaceID, M))
2291 return true; // We reached the module where the interface originated
2292 // from. Stop traversing the imported modules.
2293
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002294 ModuleFile::ChainedObjCCategoriesMap::iterator
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002295 I = M.ChainedObjCCategories.find(InterfaceID);
2296 if (I == M.ChainedObjCCategories.end())
2297 return false;
2298
2299 ObjCCategoryDecl *
2300 HeadCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.first);
2301 ObjCCategoryDecl *
2302 TailCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.second);
2303
2304 addCategories(HeadCat, TailCat);
2305 return false;
2306 }
2307
2308 void addCategories(ObjCCategoryDecl *HeadCat,
2309 ObjCCategoryDecl *TailCat = 0) {
2310 if (!HeadCat) {
2311 assert(!TailCat);
2312 return;
2313 }
2314
2315 if (!TailCat) {
2316 TailCat = HeadCat;
2317 while (TailCat->getNextClassCategory())
2318 TailCat = TailCat->getNextClassCategory();
2319 }
2320
2321 if (!GlobHeadCat) {
2322 GlobHeadCat = HeadCat;
2323 GlobTailCat = TailCat;
2324 } else {
2325 ASTDeclReader::setNextObjCCategory(GlobTailCat, HeadCat);
2326 GlobTailCat = TailCat;
2327 }
2328
2329 llvm::DenseSet<DeclarationName> Checked;
2330 for (ObjCCategoryDecl *Cat = HeadCat,
2331 *CatEnd = TailCat->getNextClassCategory();
2332 Cat != CatEnd; Cat = Cat->getNextClassCategory()) {
2333 if (Checked.count(Cat->getDeclName()))
2334 continue;
2335 Checked.insert(Cat->getDeclName());
2336 checkForDuplicate(Cat);
2337 }
2338 }
2339
2340 /// \brief Warns for duplicate categories that come from different modules.
2341 void checkForDuplicate(ObjCCategoryDecl *Cat) {
2342 DeclarationName Name = Cat->getDeclName();
2343 // Find the top category with the same name. We do not want to warn for
2344 // duplicates along the established chain because there were already
2345 // warnings for them when the module was created. We only want to warn for
2346 // duplicates between non-dependent modules:
2347 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002348 // MT //
2349 // / \ //
2350 // ML MR //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002351 //
2352 // We want to warn for duplicates between ML and MR,not between ML and MT.
2353 //
2354 // FIXME: We should not warn for duplicates in diamond:
2355 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002356 // MT //
2357 // / \ //
2358 // ML MR //
2359 // \ / //
2360 // MB //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002361 //
2362 // If there are duplicates in ML/MR, there will be warning when creating
2363 // MB *and* when importing MB. We should not warn when importing.
2364 for (ObjCCategoryDecl *Next = Cat->getNextClassCategory(); Next;
2365 Next = Next->getNextClassCategory()) {
2366 if (Next->getDeclName() == Name)
2367 Cat = Next;
2368 }
2369
2370 ObjCCategoryDecl *&PrevCat = NameCategoryMap[Name];
2371 if (!PrevCat)
2372 PrevCat = Cat;
2373
2374 if (PrevCat != Cat) {
2375 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
2376 << Interface->getDeclName() << Name;
2377 Reader.Diag(PrevCat->getLocation(), diag::note_previous_definition);
2378 }
2379 }
2380
2381 ObjCCategoryDecl *getHeadCategory() const { return GlobHeadCat; }
2382 };
2383}
2384
2385void ASTReader::loadObjCChainedCategories(serialization::GlobalDeclID ID,
2386 ObjCInterfaceDecl *D) {
2387 ObjCChainedCategoriesVisitor Visitor(*this, ID, D);
2388 ModuleMgr.visit(ObjCChainedCategoriesVisitor::visit, &Visitor);
2389 // Also add the categories that the interface already links to.
2390 Visitor.addCategories(D->getCategoryList());
2391 D->setCategoryList(Visitor.getHeadCategory());
2392}
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002393
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002394void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile,
Sebastian Redlf79a7192011-04-29 08:19:30 +00002395 const RecordData &Record) {
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002396 unsigned Idx = 0;
2397 while (Idx < Record.size()) {
2398 switch ((DeclUpdateKind)Record[Idx++]) {
2399 case UPD_CXX_SET_DEFINITIONDATA: {
2400 CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
Douglas Gregor496c7092011-08-03 15:48:04 +00002401 CXXRecordDecl *DefinitionDecl
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002402 = Reader.ReadDeclAs<CXXRecordDecl>(ModuleFile, Record, Idx);
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002403 assert(!RD->DefinitionData && "DefinitionData is already set!");
2404 InitializeCXXDefinitionData(RD, DefinitionDecl, Record, Idx);
2405 break;
2406 }
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002407
2408 case UPD_CXX_ADDED_IMPLICIT_MEMBER:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002409 cast<CXXRecordDecl>(D)->addedMember(Reader.ReadDecl(ModuleFile, Record, Idx));
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002410 break;
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00002411
2412 case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
2413 // It will be added to the template's specializations set when loaded.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002414 (void)Reader.ReadDecl(ModuleFile, Record, Idx);
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002415 break;
2416
2417 case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00002418 NamespaceDecl *Anon
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002419 = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx);
Sebastian Redl74b485a2011-04-24 16:28:21 +00002420 // Guard against these being loaded out of original order. Don't use
2421 // getNextNamespace(), since it tries to access the context and can't in
2422 // the middle of deserialization.
2423 if (!Anon->NextNamespace) {
2424 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
2425 TU->setAnonymousNamespace(Anon);
2426 else
2427 cast<NamespaceDecl>(D)->OrigOrAnonNamespace.setPointer(Anon);
2428 }
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002429 break;
2430 }
Sebastian Redlf79a7192011-04-29 08:19:30 +00002431
2432 case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
2433 cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation(
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002434 Reader.ReadSourceLocation(ModuleFile, Record, Idx));
Sebastian Redlf79a7192011-04-29 08:19:30 +00002435 break;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002436
2437 case UPD_OBJC_SET_CLASS_DEFINITIONDATA: {
2438 ObjCInterfaceDecl *ID = cast<ObjCInterfaceDecl>(D);
2439 ObjCInterfaceDecl *Def
2440 = Reader.ReadDeclAs<ObjCInterfaceDecl>(ModuleFile, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00002441 if (Def->Data)
Douglas Gregor26fec632011-12-15 18:17:27 +00002442 ID->Data = Def->Data;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002443 break;
2444 }
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002445 }
2446 }
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002447}