blob: 3819191e0c291bd967a7dbb28f721120fe5ece10 [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);
282 void VisitObjCClassDecl(ObjCClassDecl *D);
283 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
284 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
285 void VisitObjCImplDecl(ObjCImplDecl *D);
286 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
287 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
288 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
289 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
290 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
291 };
292}
293
Sebastian Redld527cc02010-08-18 23:56:48 +0000294uint64_t ASTDeclReader::GetCurrentCursorOffset() {
Douglas Gregor8f1231b2011-07-22 06:10:01 +0000295 return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset;
Sebastian Redl577d4792010-07-22 22:43:28 +0000296}
297
Sebastian Redld527cc02010-08-18 23:56:48 +0000298void ASTDeclReader::Visit(Decl *D) {
299 DeclVisitor<ASTDeclReader, void>::Visit(D);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000300
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000301 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
302 if (DD->DeclInfo) {
303 DeclaratorDecl::ExtInfo *Info =
304 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
305 Info->TInfo =
306 GetTypeSourceInfo(Record, Idx);
307 }
308 else {
309 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
310 }
311 }
312
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000313 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000314 // if we have a fully initialized TypeDecl, we can safely read its type now.
Douglas Gregor1ab55e92010-12-10 17:03:06 +0000315 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull());
Douglas Gregor0af55012011-12-16 03:12:41 +0000316 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
317 // if we have a fully initialized TypeDecl, we can safely read its type now.
318 ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull();
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000319 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
320 // FunctionDecl's body was written last after all other Stmts/Exprs.
321 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000322 FD->setLazyBody(GetCurrentCursorOffset());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000323 } else if (D->isTemplateParameter()) {
324 // If we have a fully initialized template parameter, we can now
325 // set its DeclContext.
326 D->setDeclContext(
327 cast_or_null<DeclContext>(
328 Reader.GetDecl(DeclContextIDForTemplateParmDecl)));
329 D->setLexicalDeclContext(
330 cast_or_null<DeclContext>(
331 Reader.GetDecl(LexicalDeclContextIDForTemplateParmDecl)));
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000332 }
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000333}
334
Sebastian Redld527cc02010-08-18 23:56:48 +0000335void ASTDeclReader::VisitDecl(Decl *D) {
Douglas Gregor67da6f62011-03-05 01:35:54 +0000336 if (D->isTemplateParameter()) {
337 // We don't want to deserialize the DeclContext of a template
338 // parameter immediately, because the template parameter might be
339 // used in the formulation of its DeclContext. Use the translation
340 // unit DeclContext as a placeholder.
Douglas Gregor409448c2011-07-21 22:35:25 +0000341 DeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
342 LexicalDeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000343 D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000344 } else {
Douglas Gregor409448c2011-07-21 22:35:25 +0000345 D->setDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
346 D->setLexicalDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
Douglas Gregor67da6f62011-03-05 01:35:54 +0000347 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000348 D->setLocation(Reader.ReadSourceLocation(F, RawLocation));
Chris Lattner698f9252009-04-27 05:27:42 +0000349 D->setInvalidDecl(Record[Idx++]);
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000350 if (Record[Idx++]) { // hasAttrs
Sean Huntcf807c42010-08-18 23:23:40 +0000351 AttrVec Attrs;
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000352 Reader.ReadAttributes(F, Attrs, Record, Idx);
Sean Huntcf807c42010-08-18 23:23:40 +0000353 D->setAttrs(Attrs);
354 }
Chris Lattner698f9252009-04-27 05:27:42 +0000355 D->setImplicit(Record[Idx++]);
Douglas Gregore0762c92009-06-19 23:52:42 +0000356 D->setUsed(Record[Idx++]);
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000357 D->setReferenced(Record[Idx++]);
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +0000358 D->TopLevelDeclInObjCContainer = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000359 D->setAccess((AccessSpecifier)Record[Idx++]);
Douglas Gregor08e0bc12011-09-10 00:09:20 +0000360 D->FromASTFile = true;
Douglas Gregor8d267c52011-09-09 02:06:17 +0000361 D->ModulePrivate = Record[Idx++];
Douglas Gregorecc2c092011-12-01 22:20:10 +0000362
363 // Determine whether this declaration is part of a (sub)module. If so, it
364 // may not yet be visible.
365 if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) {
366 // Module-private declarations are never visible, so there is no work to do.
367 if (!D->ModulePrivate) {
368 if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
369 if (Owner->NameVisibility != Module::AllVisible) {
370 // The owning module is not visible. Mark this declaration as
371 // module-private,
372 D->ModulePrivate = true;
373
374 // Note that this declaration was hidden because its owning module is
375 // not yet visible.
376 Reader.HiddenNamesMap[Owner].push_back(D);
377 }
378 }
379 }
380 }
Chris Lattner698f9252009-04-27 05:27:42 +0000381}
382
Sebastian Redld527cc02010-08-18 23:56:48 +0000383void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +0000384 llvm_unreachable("Translation units are not serialized");
Chris Lattner698f9252009-04-27 05:27:42 +0000385}
386
Sebastian Redld527cc02010-08-18 23:56:48 +0000387void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
Chris Lattner698f9252009-04-27 05:27:42 +0000388 VisitDecl(ND);
Douglas Gregor393f2492011-07-22 00:38:23 +0000389 ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000390}
391
Sebastian Redld527cc02010-08-18 23:56:48 +0000392void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000393 VisitNamedDecl(TD);
Abramo Bagnara344577e2011-03-06 15:48:19 +0000394 TD->setLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000395 // Delay type reading until after we have fully initialized the decl.
Douglas Gregor393f2492011-07-22 00:38:23 +0000396 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000397}
398
Douglas Gregor0f456822011-12-19 14:40:25 +0000399void ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
Douglas Gregora1be2782011-12-17 23:38:30 +0000400 VisitRedeclarable(TD);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000401 VisitTypeDecl(TD);
Douglas Gregor0f456822011-12-19 14:40:25 +0000402 TD->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
403}
404
405void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
406 VisitTypedefNameDecl(TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000407}
408
Richard Smith162e1c12011-04-15 14:24:37 +0000409void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
Douglas Gregor0f456822011-12-19 14:40:25 +0000410 VisitTypedefNameDecl(TD);
Richard Smith162e1c12011-04-15 14:24:37 +0000411}
412
Sebastian Redld527cc02010-08-18 23:56:48 +0000413void ASTDeclReader::VisitTagDecl(TagDecl *TD) {
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000414 VisitRedeclarable(TD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000415 VisitTypeDecl(TD);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000416 TD->IdentifierNamespace = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000417 TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
John McCall5e1cdac2011-10-07 06:10:15 +0000418 TD->setCompleteDefinition(Record[Idx++]);
Douglas Gregorb37b6482010-02-12 17:40:34 +0000419 TD->setEmbeddedInDeclarator(Record[Idx++]);
Argyrios Kyrtzidis717a20b2011-09-30 22:11:31 +0000420 TD->setFreeStanding(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000421 TD->setRBraceLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000422 if (Record[Idx++]) { // hasExtInfo
Douglas Gregor35942772011-09-09 21:34:22 +0000423 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000424 ReadQualifierInfo(*Info, Record, Idx);
Richard Smith162e1c12011-04-15 14:24:37 +0000425 TD->TypedefNameDeclOrQualifier = Info;
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000426 } else
Douglas Gregor409448c2011-07-21 22:35:25 +0000427 TD->setTypedefNameForAnonDecl(ReadDeclAs<TypedefNameDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000428}
429
Sebastian Redld527cc02010-08-18 23:56:48 +0000430void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
Chris Lattner698f9252009-04-27 05:27:42 +0000431 VisitTagDecl(ED);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000432 if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
433 ED->setIntegerTypeSourceInfo(TI);
434 else
Douglas Gregor393f2492011-07-22 00:38:23 +0000435 ED->setIntegerType(Reader.readType(F, Record, Idx));
436 ED->setPromotionType(Reader.readType(F, Record, Idx));
John McCall1b5a6182010-05-06 08:49:23 +0000437 ED->setNumPositiveBits(Record[Idx++]);
438 ED->setNumNegativeBits(Record[Idx++]);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000439 ED->IsScoped = Record[Idx++];
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000440 ED->IsScopedUsingClassTag = Record[Idx++];
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000441 ED->IsFixed = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +0000442 ED->setInstantiationOfMemberEnum(ReadDeclAs<EnumDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000443}
444
Sebastian Redld527cc02010-08-18 23:56:48 +0000445void ASTDeclReader::VisitRecordDecl(RecordDecl *RD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000446 VisitTagDecl(RD);
447 RD->setHasFlexibleArrayMember(Record[Idx++]);
448 RD->setAnonymousStructOrUnion(Record[Idx++]);
Fariborz Jahanian643b7df2009-07-08 16:37:44 +0000449 RD->setHasObjectMember(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000450}
451
Sebastian Redld527cc02010-08-18 23:56:48 +0000452void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000453 VisitNamedDecl(VD);
Douglas Gregor393f2492011-07-22 00:38:23 +0000454 VD->setType(Reader.readType(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000455}
456
Sebastian Redld527cc02010-08-18 23:56:48 +0000457void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000458 VisitValueDecl(ECD);
459 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +0000460 ECD->setInitExpr(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000461 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
462}
463
Sebastian Redld527cc02010-08-18 23:56:48 +0000464void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000465 VisitValueDecl(DD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000466 DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000467 if (Record[Idx++]) { // hasExtInfo
468 DeclaratorDecl::ExtInfo *Info
Douglas Gregor35942772011-09-09 21:34:22 +0000469 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000470 ReadQualifierInfo(*Info, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000471 DD->DeclInfo = Info;
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000472 }
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000473}
474
Sebastian Redld527cc02010-08-18 23:56:48 +0000475void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000476 VisitRedeclarable(FD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000477 VisitDeclaratorDecl(FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000478
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000479 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000480 FD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000481 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000482 default: llvm_unreachable("Unhandled TemplatedKind!");
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000483 case FunctionDecl::TK_NonTemplate:
484 break;
485 case FunctionDecl::TK_FunctionTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +0000486 FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record,
487 Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000488 break;
489 case FunctionDecl::TK_MemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000490 FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000491 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000492 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000493 FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000494 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
495 break;
496 }
497 case FunctionDecl::TK_FunctionTemplateSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000498 FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record,
499 Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000500 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
501
502 // Template arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000503 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +0000504 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000505
506 // Template args as written.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000507 SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000508 SourceLocation LAngleLoc, RAngleLoc;
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000509 bool HasTemplateArgumentsAsWritten = Record[Idx++];
510 if (HasTemplateArgumentsAsWritten) {
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000511 unsigned NumTemplateArgLocs = Record[Idx++];
512 TemplArgLocs.reserve(NumTemplateArgLocs);
513 for (unsigned i=0; i != NumTemplateArgLocs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000514 TemplArgLocs.push_back(
Sebastian Redlc3632732010-10-05 15:59:54 +0000515 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000516
Sebastian Redlc3632732010-10-05 15:59:54 +0000517 LAngleLoc = ReadSourceLocation(Record, Idx);
518 RAngleLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000519 }
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000520
Sebastian Redlc3632732010-10-05 15:59:54 +0000521 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000522
Douglas Gregor35942772011-09-09 21:34:22 +0000523 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000524 TemplateArgumentList *TemplArgList
Douglas Gregor910f8002010-11-07 23:05:16 +0000525 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000526 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000527 for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000528 TemplArgsInfo.addArgument(TemplArgLocs[i]);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000529 FunctionTemplateSpecializationInfo *FTInfo
530 = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK,
531 TemplArgList,
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000532 HasTemplateArgumentsAsWritten ? &TemplArgsInfo : 0,
533 POI);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000534 FD->TemplateOrSpecialization = FTInfo;
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000535
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000536 if (FD->isCanonicalDecl()) { // if canonical add to template's set.
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000537 // The template that contains the specializations set. It's not safe to
538 // use getCanonicalDecl on Template since it may still be initializing.
539 FunctionTemplateDecl *CanonTemplate
Douglas Gregor409448c2011-07-21 22:35:25 +0000540 = ReadDeclAs<FunctionTemplateDecl>(Record, Idx);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000541 // Get the InsertPos by FindNodeOrInsertPos() instead of calling
542 // InsertNode(FTInfo) directly to avoid the getASTContext() call in
543 // FunctionTemplateSpecializationInfo's Profile().
544 // We avoid getASTContext because a decl in the parent hierarchy may
545 // be initializing.
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000546 llvm::FoldingSetNodeID ID;
547 FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs.data(),
548 TemplArgs.size(), C);
549 void *InsertPos = 0;
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000550 CanonTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000551 assert(InsertPos && "Another specialization already inserted!");
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000552 CanonTemplate->getSpecializations().InsertNode(FTInfo, InsertPos);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000553 }
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000554 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000555 }
556 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
557 // Templates.
558 UnresolvedSet<8> TemplDecls;
559 unsigned NumTemplates = Record[Idx++];
560 while (NumTemplates--)
Douglas Gregor409448c2011-07-21 22:35:25 +0000561 TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000562
563 // Templates args.
564 TemplateArgumentListInfo TemplArgs;
565 unsigned NumArgs = Record[Idx++];
566 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +0000567 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx));
568 TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx));
569 TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000570
Douglas Gregor35942772011-09-09 21:34:22 +0000571 FD->setDependentTemplateSpecialization(Reader.getContext(),
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000572 TemplDecls, TemplArgs);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000573 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000574 }
575 }
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000576
Sebastian Redld527cc02010-08-18 23:56:48 +0000577 // FunctionDecl's body is handled last at ASTDeclReader::Visit,
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000578 // after everything else is read.
579
Douglas Gregor381d34e2010-12-06 18:36:25 +0000580 FD->SClass = (StorageClass)Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000581 FD->SClassAsWritten = (StorageClass)Record[Idx++];
Douglas Gregor8f150942010-12-09 16:59:22 +0000582 FD->IsInline = Record[Idx++];
583 FD->IsInlineSpecified = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000584 FD->IsVirtualAsWritten = Record[Idx++];
585 FD->IsPure = Record[Idx++];
586 FD->HasInheritedPrototype = Record[Idx++];
587 FD->HasWrittenPrototype = Record[Idx++];
588 FD->IsDeleted = Record[Idx++];
589 FD->IsTrivial = Record[Idx++];
Sean Hunt2be7e902011-05-12 22:46:29 +0000590 FD->IsDefaulted = Record[Idx++];
591 FD->IsExplicitlyDefaulted = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000592 FD->HasImplicitReturnZero = Record[Idx++];
Richard Smithaf1fc7a2011-08-15 21:04:07 +0000593 FD->IsConstexpr = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000594 FD->EndRangeLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000595
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000596 // Read in the parameters.
Chris Lattner698f9252009-04-27 05:27:42 +0000597 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000598 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000599 Params.reserve(NumParams);
600 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000601 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000602 FD->setParams(Reader.getContext(), Params);
Chris Lattner698f9252009-04-27 05:27:42 +0000603}
604
Sebastian Redld527cc02010-08-18 23:56:48 +0000605void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000606 VisitNamedDecl(MD);
607 if (Record[Idx++]) {
608 // In practice, this won't be executed (since method definitions
609 // don't occur in header files).
Sebastian Redlc3632732010-10-05 15:59:54 +0000610 MD->setBody(Reader.ReadStmt(F));
Douglas Gregor409448c2011-07-21 22:35:25 +0000611 MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
612 MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000613 }
614 MD->setInstanceMethod(Record[Idx++]);
615 MD->setVariadic(Record[Idx++]);
616 MD->setSynthesized(Record[Idx++]);
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000617 MD->setDefined(Record[Idx++]);
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000618
619 MD->IsRedeclaration = Record[Idx++];
620 MD->HasRedeclaration = Record[Idx++];
621 if (MD->HasRedeclaration)
622 Reader.getContext().setObjCMethodRedeclaration(MD,
623 ReadDeclAs<ObjCMethodDecl>(Record, Idx));
624
Chris Lattner698f9252009-04-27 05:27:42 +0000625 MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
626 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
Douglas Gregor926df6c2011-06-11 01:09:30 +0000627 MD->SetRelatedResultType(Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000628 MD->setResultType(Reader.readType(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000629 MD->setResultTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
630 MD->setEndLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000631 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000632 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000633 Params.reserve(NumParams);
634 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000635 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000636
637 MD->SelLocsKind = Record[Idx++];
638 unsigned NumStoredSelLocs = Record[Idx++];
639 SmallVector<SourceLocation, 16> SelLocs;
640 SelLocs.reserve(NumStoredSelLocs);
641 for (unsigned i = 0; i != NumStoredSelLocs; ++i)
642 SelLocs.push_back(ReadSourceLocation(Record, Idx));
643
644 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
Chris Lattner698f9252009-04-27 05:27:42 +0000645}
646
Sebastian Redld527cc02010-08-18 23:56:48 +0000647void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000648 VisitNamedDecl(CD);
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000649 CD->setAtStartLoc(ReadSourceLocation(Record, Idx));
650 CD->setAtEndRange(ReadSourceRange(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000651}
652
Sebastian Redld527cc02010-08-18 23:56:48 +0000653void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000654 // Record the declaration -> global ID mapping.
655 Reader.DeclToID[ID] = ThisDeclID;
656
Douglas Gregor0f753232011-12-22 01:48:48 +0000657 RedeclarableResult Redecl = VisitRedeclarable(ID);
Chris Lattner698f9252009-04-27 05:27:42 +0000658 VisitObjCContainerDecl(ID);
Douglas Gregor0af55012011-12-16 03:12:41 +0000659 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000660
Douglas Gregor0f753232011-12-22 01:48:48 +0000661 // Determine whether we need to merge this declaration with another @interface
662 // with the same name.
663 // FIXME: Not needed unless the module file graph is a DAG.
664 if (FindExistingResult ExistingRes = findExisting(ID)) {
665 if (ObjCInterfaceDecl *Existing = ExistingRes) {
666 ObjCInterfaceDecl *ExistingCanon = Existing->getCanonicalDecl();
667 ObjCInterfaceDecl *IDCanon = ID->getCanonicalDecl();
668 if (ExistingCanon != IDCanon) {
669 // Have our redeclaration link point back at the canonical declaration
670 // of the existing declaration, so that this declaration has the
671 // appropriate canonical declaration.
672 ID->RedeclLink = ObjCInterfaceDecl::PreviousDeclLink(ExistingCanon);
673
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000674 // Don't introduce IDCanon into the set of pending declaration chains.
675 Redecl.suppress();
676
677 // Introduce ExistingCanon into the set of pending declaration chains,
678 // if in fact it came from a module file.
679 if (ExistingCanon->isFromASTFile()) {
680 GlobalDeclID ExistingCanonID = Reader.DeclToID[ExistingCanon];
681 assert(ExistingCanonID && "Unrecorded canonical declaration ID?");
682 if (Reader.PendingDeclChainsKnown.insert(ExistingCanonID))
683 Reader.PendingDeclChains.push_back(ExistingCanonID);
684 }
685
Douglas Gregor0f753232011-12-22 01:48:48 +0000686 // If this declaration was the canonical declaration, make a note of
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +0000687 // that. We accept the linear algorithm here because the number of
688 // unique canonical declarations of an entity should always be tiny.
689 if (IDCanon == ID) {
690 SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon];
691 if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID())
692 == Merged.end())
693 Merged.push_back(Redecl.getFirstID());
694 }
Douglas Gregor0f753232011-12-22 01:48:48 +0000695 }
696 }
697 }
698
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000699 ObjCInterfaceDecl *Def = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
700 if (ID == Def) {
701 // Read the definition.
702 ID->allocateDefinitionData();
703
704 ObjCInterfaceDecl::DefinitionData &Data = ID->data();
705
706 // Read the superclass.
707 Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
708 Data.SuperClassLoc = ReadSourceLocation(Record, Idx);
709
Douglas Gregor05c272f2011-12-15 22:34:59 +0000710 Data.EndLoc = ReadSourceLocation(Record, Idx);
711
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000712 // Read the directly referenced protocols and their SourceLocations.
713 unsigned NumProtocols = Record[Idx++];
714 SmallVector<ObjCProtocolDecl *, 16> Protocols;
715 Protocols.reserve(NumProtocols);
716 for (unsigned I = 0; I != NumProtocols; ++I)
717 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
718 SmallVector<SourceLocation, 16> ProtoLocs;
719 ProtoLocs.reserve(NumProtocols);
720 for (unsigned I = 0; I != NumProtocols; ++I)
721 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
722 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
723 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000724
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000725 // Read the transitive closure of protocols referenced by this class.
726 NumProtocols = Record[Idx++];
727 Protocols.clear();
728 Protocols.reserve(NumProtocols);
729 for (unsigned I = 0; I != NumProtocols; ++I)
730 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
731 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
732 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000733
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000734 // Read the ivars.
735 unsigned NumIvars = Record[Idx++];
736 SmallVector<ObjCIvarDecl *, 16> IVars;
737 IVars.reserve(NumIvars);
738 for (unsigned I = 0; I != NumIvars; ++I)
739 IVars.push_back(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
740
741 // Read the categories.
742 ID->setCategoryList(ReadDeclAs<ObjCCategoryDecl>(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000743
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000744 // We will rebuild this list lazily.
745 ID->setIvarList(0);
746
Douglas Gregor21cf08b2011-12-19 20:51:16 +0000747 // Note that we have deserialized a definition.
748 Reader.PendingDefinitions.insert(ID);
749 } else if (Def && Def->Data) {
750 ID->Data = Def->Data;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000751 }
Chris Lattner698f9252009-04-27 05:27:42 +0000752}
753
Sebastian Redld527cc02010-08-18 23:56:48 +0000754void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000755 VisitFieldDecl(IVD);
756 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000757 // This field will be built lazily.
758 IVD->setNextIvar(0);
Fariborz Jahanianac0021b2010-07-17 18:35:47 +0000759 bool synth = Record[Idx++];
760 IVD->setSynthesize(synth);
Chris Lattner698f9252009-04-27 05:27:42 +0000761}
762
Sebastian Redld527cc02010-08-18 23:56:48 +0000763void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000764 VisitObjCContainerDecl(PD);
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000765 PD->InitiallyForwardDecl = Record[Idx++];
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +0000766 PD->isForwardProtoDecl = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000767 PD->setLocEnd(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000768 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000769 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000770 ProtoRefs.reserve(NumProtoRefs);
771 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000772 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000773 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000774 ProtoLocs.reserve(NumProtoRefs);
775 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000776 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000777 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000778 Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000779}
780
Sebastian Redld527cc02010-08-18 23:56:48 +0000781void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000782 VisitFieldDecl(FD);
783}
784
Sebastian Redld527cc02010-08-18 23:56:48 +0000785void ASTDeclReader::VisitObjCClassDecl(ObjCClassDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000786 VisitDecl(CD);
Douglas Gregoraf764722011-12-14 17:12:03 +0000787 CD->Interface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
788 CD->InterfaceLoc = ReadSourceLocation(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000789}
790
Sebastian Redld527cc02010-08-18 23:56:48 +0000791void ASTDeclReader::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *FPD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000792 VisitDecl(FPD);
793 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000794 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000795 ProtoRefs.reserve(NumProtoRefs);
796 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000797 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000798 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000799 ProtoLocs.reserve(NumProtoRefs);
800 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000801 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000802 FPD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000803 Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000804}
805
Sebastian Redld527cc02010-08-18 23:56:48 +0000806void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000807 VisitObjCContainerDecl(CD);
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000808 CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000809 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000810 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000811 ProtoRefs.reserve(NumProtoRefs);
812 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000813 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000814 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000815 ProtoLocs.reserve(NumProtoRefs);
816 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000817 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000818 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000819 Reader.getContext());
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000820 CD->NextClassCategory = ReadDeclAs<ObjCCategoryDecl>(Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000821 CD->setHasSynthBitfield(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000822 CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000823}
824
Sebastian Redld527cc02010-08-18 23:56:48 +0000825void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000826 VisitNamedDecl(CAD);
Douglas Gregor409448c2011-07-21 22:35:25 +0000827 CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000828}
829
Sebastian Redld527cc02010-08-18 23:56:48 +0000830void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000831 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000832 D->setAtLoc(ReadSourceLocation(Record, Idx));
833 D->setType(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000834 // FIXME: stable encoding
835 D->setPropertyAttributes(
836 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000837 D->setPropertyAttributesAsWritten(
838 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000839 // FIXME: stable encoding
840 D->setPropertyImplementation(
841 (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000842 D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
843 D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
Douglas Gregor409448c2011-07-21 22:35:25 +0000844 D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
845 D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
846 D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000847}
848
Sebastian Redld527cc02010-08-18 23:56:48 +0000849void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
Argyrios Kyrtzidisaecae622009-07-27 19:04:32 +0000850 VisitObjCContainerDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000851 D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000852}
853
Sebastian Redld527cc02010-08-18 23:56:48 +0000854void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000855 VisitObjCImplDecl(D);
Douglas Gregor95eab172011-07-28 20:55:49 +0000856 D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx));
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +0000857 D->CategoryNameLoc = ReadSourceLocation(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000858}
859
Sebastian Redld527cc02010-08-18 23:56:48 +0000860void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000861 VisitObjCImplDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000862 D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000863 llvm::tie(D->IvarInitializers, D->NumIvarInitializers)
Sean Huntcbb67482011-01-08 20:30:50 +0000864 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000865 D->setHasSynthBitfield(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000866}
867
868
Sebastian Redld527cc02010-08-18 23:56:48 +0000869void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000870 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000871 D->setAtLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000872 D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx));
873 D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx);
Douglas Gregora4ffd852010-11-17 01:03:52 +0000874 D->IvarLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +0000875 D->setGetterCXXConstructor(Reader.ReadExpr(F));
876 D->setSetterCXXAssignment(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000877}
878
Sebastian Redld527cc02010-08-18 23:56:48 +0000879void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000880 VisitDeclaratorDecl(FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000881 FD->setMutable(Record[Idx++]);
Richard Smith7a614d82011-06-11 17:19:42 +0000882 int BitWidthOrInitializer = Record[Idx++];
883 if (BitWidthOrInitializer == 1)
Sebastian Redlc3632732010-10-05 15:59:54 +0000884 FD->setBitWidth(Reader.ReadExpr(F));
Richard Smith7a614d82011-06-11 17:19:42 +0000885 else if (BitWidthOrInitializer == 2)
886 FD->setInClassInitializer(Reader.ReadExpr(F));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000887 if (!FD->getDeclName()) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000888 if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +0000889 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000890 }
Chris Lattner698f9252009-04-27 05:27:42 +0000891}
892
Francois Pichet87c2e122010-11-21 06:08:52 +0000893void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
894 VisitValueDecl(FD);
895
896 FD->ChainingSize = Record[Idx++];
897 assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
Douglas Gregor35942772011-09-09 21:34:22 +0000898 FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
Francois Pichet87c2e122010-11-21 06:08:52 +0000899
900 for (unsigned I = 0; I != FD->ChainingSize; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000901 FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx);
Francois Pichet87c2e122010-11-21 06:08:52 +0000902}
903
Sebastian Redld527cc02010-08-18 23:56:48 +0000904void ASTDeclReader::VisitVarDecl(VarDecl *VD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000905 VisitRedeclarable(VD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000906 VisitDeclaratorDecl(VD);
John McCallf1e4fbf2011-05-01 02:13:58 +0000907 VD->VarDeclBits.SClass = (StorageClass)Record[Idx++];
908 VD->VarDeclBits.SClassAsWritten = (StorageClass)Record[Idx++];
909 VD->VarDeclBits.ThreadSpecified = Record[Idx++];
910 VD->VarDeclBits.HasCXXDirectInit = Record[Idx++];
911 VD->VarDeclBits.ExceptionVar = Record[Idx++];
912 VD->VarDeclBits.NRVOVariable = Record[Idx++];
913 VD->VarDeclBits.CXXForRangeDecl = Record[Idx++];
John McCall7acddac2011-06-17 06:42:21 +0000914 VD->VarDeclBits.ARCPseudoStrong = Record[Idx++];
Richard Smith099e7f62011-12-19 06:19:21 +0000915 if (uint64_t Val = Record[Idx++]) {
Sebastian Redlc3632732010-10-05 15:59:54 +0000916 VD->setInit(Reader.ReadExpr(F));
Richard Smith099e7f62011-12-19 06:19:21 +0000917 if (Val > 1) {
918 EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
919 Eval->CheckedICE = true;
920 Eval->IsICE = Val == 3;
921 }
922 }
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000923
924 if (Record[Idx++]) { // HasMemberSpecializationInfo.
Douglas Gregor409448c2011-07-21 22:35:25 +0000925 VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000926 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000927 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000928 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000929 }
Chris Lattner698f9252009-04-27 05:27:42 +0000930}
931
Sebastian Redld527cc02010-08-18 23:56:48 +0000932void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000933 VisitVarDecl(PD);
934}
935
Sebastian Redld527cc02010-08-18 23:56:48 +0000936void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000937 VisitVarDecl(PD);
John McCall70798862011-05-02 00:30:12 +0000938 unsigned isObjCMethodParam = Record[Idx++];
939 unsigned scopeDepth = Record[Idx++];
940 unsigned scopeIndex = Record[Idx++];
941 unsigned declQualifier = Record[Idx++];
942 if (isObjCMethodParam) {
943 assert(scopeDepth == 0);
944 PD->setObjCMethodScopeInfo(scopeIndex);
945 PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
946 } else {
947 PD->setScopeInfo(scopeDepth, scopeIndex);
948 }
John McCallf1e4fbf2011-05-01 02:13:58 +0000949 PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++];
950 PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++];
Argyrios Kyrtzidis691d77f2010-07-04 21:44:07 +0000951 if (Record[Idx++]) // hasUninstantiatedDefaultArg.
Sebastian Redlc3632732010-10-05 15:59:54 +0000952 PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000953}
954
Sebastian Redld527cc02010-08-18 23:56:48 +0000955void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000956 VisitDecl(AD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000957 AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F)));
Abramo Bagnara21e006e2011-03-03 14:20:18 +0000958 AD->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000959}
960
Sebastian Redld527cc02010-08-18 23:56:48 +0000961void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000962 VisitDecl(BD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000963 BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F)));
964 BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000965 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000966 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000967 Params.reserve(NumParams);
968 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000969 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000970 BD->setParams(Params);
John McCall469a1eb2011-02-02 13:00:07 +0000971
972 bool capturesCXXThis = Record[Idx++];
John McCall6b5a61b2011-02-07 10:33:21 +0000973 unsigned numCaptures = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000974 SmallVector<BlockDecl::Capture, 16> captures;
John McCall6b5a61b2011-02-07 10:33:21 +0000975 captures.reserve(numCaptures);
976 for (unsigned i = 0; i != numCaptures; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000977 VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx);
John McCall6b5a61b2011-02-07 10:33:21 +0000978 unsigned flags = Record[Idx++];
979 bool byRef = (flags & 1);
980 bool nested = (flags & 2);
981 Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : 0);
982
983 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
984 }
Douglas Gregor35942772011-09-09 21:34:22 +0000985 BD->setCaptures(Reader.getContext(), captures.begin(),
John McCall6b5a61b2011-02-07 10:33:21 +0000986 captures.end(), capturesCXXThis);
Chris Lattner698f9252009-04-27 05:27:42 +0000987}
988
Sebastian Redld527cc02010-08-18 23:56:48 +0000989void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000990 VisitDecl(D);
991 D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000992 D->setExternLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +0000993 D->setRBraceLoc(ReadSourceLocation(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000994}
995
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000996void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
997 VisitNamedDecl(D);
Abramo Bagnara67843042011-03-05 18:21:20 +0000998 D->setLocStart(ReadSourceLocation(Record, Idx));
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000999}
1000
1001
Sebastian Redld527cc02010-08-18 23:56:48 +00001002void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001003 VisitNamedDecl(D);
Douglas Gregor0a0c3e72010-10-05 20:41:58 +00001004 D->IsInline = Record[Idx++];
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00001005 D->LocStart = ReadSourceLocation(Record, Idx);
1006 D->RBraceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor06c91932010-10-27 19:49:05 +00001007 D->NextNamespace = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001008
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001009 bool IsOriginal = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001010 // FIXME: Modules will likely have trouble with pointing directly at
1011 // the original namespace.
Argyrios Kyrtzidisa038c1d2010-07-03 07:57:53 +00001012 D->OrigOrAnonNamespace.setInt(IsOriginal);
Douglas Gregor409448c2011-07-21 22:35:25 +00001013 D->OrigOrAnonNamespace.setPointer(ReadDeclAs<NamespaceDecl>(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001014}
1015
Sebastian Redld527cc02010-08-18 23:56:48 +00001016void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001017 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001018 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00001019 D->IdentLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001020 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001021 D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001022}
1023
Sebastian Redld527cc02010-08-18 23:56:48 +00001024void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001025 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001026 D->setUsingLocation(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001027 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001028 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001029 D->FirstUsingShadow = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001030 D->setTypeName(Record[Idx++]);
Douglas Gregor409448c2011-07-21 22:35:25 +00001031 if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001032 Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001033}
1034
Sebastian Redld527cc02010-08-18 23:56:48 +00001035void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001036 VisitNamedDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +00001037 D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx));
1038 D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx);
1039 UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001040 if (Pattern)
Douglas Gregor35942772011-09-09 21:34:22 +00001041 Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001042}
1043
Sebastian Redld527cc02010-08-18 23:56:48 +00001044void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001045 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001046 D->UsingLoc = ReadSourceLocation(Record, Idx);
1047 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregordb992412011-02-25 16:33:46 +00001048 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001049 D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx);
1050 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001051}
1052
Sebastian Redld527cc02010-08-18 23:56:48 +00001053void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001054 VisitValueDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001055 D->setUsingLoc(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001056 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001057 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001058}
1059
Sebastian Redld527cc02010-08-18 23:56:48 +00001060void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001061 UnresolvedUsingTypenameDecl *D) {
1062 VisitTypeDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001063 D->TypenameLocation = ReadSourceLocation(Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00001064 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001065}
1066
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001067void ASTDeclReader::ReadCXXDefinitionData(
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001068 struct CXXRecordDecl::DefinitionData &Data,
1069 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001070 Data.UserDeclaredConstructor = Record[Idx++];
1071 Data.UserDeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001072 Data.UserDeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001073 Data.UserDeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001074 Data.UserDeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001075 Data.UserDeclaredDestructor = Record[Idx++];
1076 Data.Aggregate = Record[Idx++];
1077 Data.PlainOldData = Record[Idx++];
1078 Data.Empty = Record[Idx++];
1079 Data.Polymorphic = Record[Idx++];
1080 Data.Abstract = Record[Idx++];
Chandler Carruthec997dc2011-04-30 10:07:30 +00001081 Data.IsStandardLayout = Record[Idx++];
Chandler Carrutha8225442011-04-30 09:17:45 +00001082 Data.HasNoNonEmptyBases = Record[Idx++];
1083 Data.HasPrivateFields = Record[Idx++];
1084 Data.HasProtectedFields = Record[Idx++];
1085 Data.HasPublicFields = Record[Idx++];
Douglas Gregor2bb11012011-05-13 01:05:07 +00001086 Data.HasMutableFields = Record[Idx++];
Sean Hunt023df372011-05-09 18:22:59 +00001087 Data.HasTrivialDefaultConstructor = Record[Idx++];
Richard Smith6b8bc072011-08-10 18:11:37 +00001088 Data.HasConstexprNonCopyMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001089 Data.HasTrivialCopyConstructor = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001090 Data.HasTrivialMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001091 Data.HasTrivialCopyAssignment = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001092 Data.HasTrivialMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001093 Data.HasTrivialDestructor = Record[Idx++];
Chandler Carruth9b6347c2011-04-24 02:49:34 +00001094 Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001095 Data.ComputedVisibleConversions = Record[Idx++];
Sean Huntcdee3fe2011-05-11 22:34:38 +00001096 Data.UserProvidedDefaultConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001097 Data.DeclaredDefaultConstructor = Record[Idx++];
1098 Data.DeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001099 Data.DeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001100 Data.DeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001101 Data.DeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001102 Data.DeclaredDestructor = Record[Idx++];
Sebastian Redl14c36332011-08-31 13:59:56 +00001103 Data.FailedImplicitMoveConstructor = Record[Idx++];
1104 Data.FailedImplicitMoveAssignment = Record[Idx++];
Anders Carlssonfaa6afd2011-01-22 18:11:02 +00001105
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001106 Data.NumBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001107 if (Data.NumBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001108 Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001109 Data.NumVBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001110 if (Data.NumVBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001111 Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00001112
Douglas Gregor409448c2011-07-21 22:35:25 +00001113 Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx);
1114 Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001115 assert(Data.Definition && "Data.Definition should be already set!");
Douglas Gregor409448c2011-07-21 22:35:25 +00001116 Data.FirstFriend = ReadDeclAs<FriendDecl>(Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001117}
1118
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001119void ASTDeclReader::InitializeCXXDefinitionData(CXXRecordDecl *D,
1120 CXXRecordDecl *DefinitionDecl,
1121 const RecordData &Record,
1122 unsigned &Idx) {
Douglas Gregor35942772011-09-09 21:34:22 +00001123 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis9703b0d2010-10-20 00:11:15 +00001124
Argyrios Kyrtzidis134db1f2010-10-24 17:26:31 +00001125 if (D == DefinitionDecl) {
1126 D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001127 ReadCXXDefinitionData(*D->DefinitionData, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001128
Douglas Gregorfc529f72011-12-19 19:00:47 +00001129 // Note that we have deserialized a definition.
1130 Reader.PendingDefinitions.insert(D);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001131 } else if (DefinitionDecl && DefinitionDecl->DefinitionData) {
1132 D->DefinitionData = DefinitionDecl->DefinitionData;
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001133 }
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001134}
1135
1136void ASTDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
1137 VisitRecordDecl(D);
1138
Douglas Gregor409448c2011-07-21 22:35:25 +00001139 CXXRecordDecl *DefinitionDecl = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001140 InitializeCXXDefinitionData(D, DefinitionDecl, Record, Idx);
1141
Douglas Gregor35942772011-09-09 21:34:22 +00001142 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001143
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001144 enum CXXRecKind {
1145 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1146 };
1147 switch ((CXXRecKind)Record[Idx++]) {
1148 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001149 llvm_unreachable("Out of sync with ASTDeclWriter::VisitCXXRecordDecl?");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001150 case CXXRecNotTemplate:
1151 break;
1152 case CXXRecTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +00001153 D->TemplateOrInstantiation = ReadDeclAs<ClassTemplateDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001154 break;
1155 case CXXRecMemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +00001156 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001157 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001158 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis8b996b82010-09-13 11:45:25 +00001159 MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1160 MSI->setPointOfInstantiation(POI);
1161 D->TemplateOrInstantiation = MSI;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001162 break;
1163 }
1164 }
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001165
1166 // Load the key function to avoid deserializing every method so we can
1167 // compute it.
John McCall5e1cdac2011-10-07 06:10:15 +00001168 if (D->IsCompleteDefinition) {
Douglas Gregor409448c2011-07-21 22:35:25 +00001169 if (CXXMethodDecl *Key = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001170 C.KeyFunctions[D] = Key;
1171 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001172}
1173
Sebastian Redld527cc02010-08-18 23:56:48 +00001174void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001175 VisitFunctionDecl(D);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001176 unsigned NumOverridenMethods = Record[Idx++];
1177 while (NumOverridenMethods--) {
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001178 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
1179 // MD may be initializing.
Douglas Gregor409448c2011-07-21 22:35:25 +00001180 if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001181 Reader.getContext().addOverriddenMethod(D, MD);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001182 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001183}
1184
Sebastian Redld527cc02010-08-18 23:56:48 +00001185void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001186 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001187
1188 D->IsExplicitSpecified = Record[Idx++];
1189 D->ImplicitlyDefined = Record[Idx++];
Sean Huntcbb67482011-01-08 20:30:50 +00001190 llvm::tie(D->CtorInitializers, D->NumCtorInitializers)
1191 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001192}
1193
Sebastian Redld527cc02010-08-18 23:56:48 +00001194void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001195 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001196
1197 D->ImplicitlyDefined = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001198 D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001199}
1200
Sebastian Redld527cc02010-08-18 23:56:48 +00001201void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001202 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001203 D->IsExplicitSpecified = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001204}
1205
Douglas Gregor15de72c2011-12-02 23:23:56 +00001206void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
1207 VisitDecl(D);
1208 D->ImportedAndComplete.setPointer(readModule(Record, Idx));
1209 D->ImportedAndComplete.setInt(Record[Idx++]);
1210 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1);
1211 for (unsigned I = 0, N = Record.back(); I != N; ++I)
1212 StoredLocs[I] = ReadSourceLocation(Record, Idx);
1213 ++Idx;
1214}
1215
Sebastian Redld527cc02010-08-18 23:56:48 +00001216void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001217 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001218 D->setColonLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara6206d532010-06-05 05:09:32 +00001219}
1220
Sebastian Redld527cc02010-08-18 23:56:48 +00001221void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +00001222 VisitDecl(D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001223 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00001224 D->Friend = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001225 else
Douglas Gregor409448c2011-07-21 22:35:25 +00001226 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Douglas Gregor69aecc62010-10-27 20:23:41 +00001227 D->NextFriend = Record[Idx++];
John McCall6102ca12010-10-16 06:59:13 +00001228 D->UnsupportedFriend = (Record[Idx++] != 0);
Sebastian Redlc3632732010-10-05 15:59:54 +00001229 D->FriendLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001230}
1231
Sebastian Redld527cc02010-08-18 23:56:48 +00001232void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001233 VisitDecl(D);
1234 unsigned NumParams = Record[Idx++];
1235 D->NumParams = NumParams;
1236 D->Params = new TemplateParameterList*[NumParams];
1237 for (unsigned i = 0; i != NumParams; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001238 D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001239 if (Record[Idx++]) // HasFriendDecl
Douglas Gregor409448c2011-07-21 22:35:25 +00001240 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001241 else
Sebastian Redlc3632732010-10-05 15:59:54 +00001242 D->Friend = GetTypeSourceInfo(Record, Idx);
1243 D->FriendLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001244}
1245
Sebastian Redld527cc02010-08-18 23:56:48 +00001246void ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001247 VisitNamedDecl(D);
1248
Douglas Gregor409448c2011-07-21 22:35:25 +00001249 NamedDecl *TemplatedDecl = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001250 TemplateParameterList* TemplateParams
Sebastian Redlc3632732010-10-05 15:59:54 +00001251 = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001252 D->init(TemplatedDecl, TemplateParams);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001253}
1254
Sebastian Redld527cc02010-08-18 23:56:48 +00001255void ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001256 // Initialize CommonOrPrev before VisitTemplateDecl so that getCommonPtr()
1257 // can be used while this is still initializing.
Douglas Gregorfc529f72011-12-19 19:00:47 +00001258 enum RedeclKind { FirstDeclaration, FirstInFile, PointsToPrevious };
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001259 RedeclKind Kind = (RedeclKind)Record[Idx++];
1260
1261 // Determine the first declaration ID.
1262 DeclID FirstDeclID;
1263 switch (Kind) {
1264 case FirstDeclaration: {
1265 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001266
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001267 // Since this is the first declaration of the template, fill in the
1268 // information for the 'common' pointer.
1269 if (D->CommonOrPrev.isNull()) {
1270 RedeclarableTemplateDecl::CommonBase *Common
1271 = D->newCommon(Reader.getContext());
1272 Common->Latest = D;
1273 D->CommonOrPrev = Common;
1274 }
Douglas Gregor0f753232011-12-22 01:48:48 +00001275
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001276 if (RedeclarableTemplateDecl *RTD
Douglas Gregor0f753232011-12-22 01:48:48 +00001277 = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001278 assert(RTD->getKind() == D->getKind() &&
1279 "InstantiatedFromMemberTemplate kind mismatch");
1280 D->setInstantiatedFromMemberTemplateImpl(RTD);
1281 if (Record[Idx++])
1282 D->setMemberSpecialization();
1283 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001284 break;
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001285 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00001286
1287 case FirstInFile:
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001288 case PointsToPrevious: {
1289 FirstDeclID = ReadDeclID(Record, Idx);
1290 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1291
1292 RedeclarableTemplateDecl *FirstDecl
1293 = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(FirstDeclID));
1294
1295 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1296 // We temporarily set the first (canonical) declaration as the previous one
1297 // which is the one that matters and mark the real previous DeclID to be
1298 // loaded and attached later on.
1299 D->CommonOrPrev = FirstDecl;
1300
Douglas Gregorfc529f72011-12-19 19:00:47 +00001301 if (Kind == PointsToPrevious) {
1302 // Make a note that we need to wire up this declaration to its
1303 // previous declaration, later. We don't need to do this for the first
1304 // declaration in any given module file, because those will be wired
1305 // together later.
1306 Reader.PendingPreviousDecls.push_back(std::make_pair(D, PrevDeclID));
1307 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001308 break;
1309 }
1310 }
1311
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001312 VisitTemplateDecl(D);
1313 D->IdentifierNamespace = Record[Idx++];
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001314}
1315
Sebastian Redld527cc02010-08-18 23:56:48 +00001316void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001317 VisitRedeclarableTemplateDecl(D);
1318
1319 if (D->getPreviousDeclaration() == 0) {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001320 // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
1321 // the specializations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001322 SmallVector<serialization::DeclID, 2> SpecIDs;
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001323 SpecIDs.push_back(0);
1324
1325 // Specializations.
1326 unsigned Size = Record[Idx++];
1327 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001328 for (unsigned I = 0; I != Size; ++I)
1329 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001330
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001331 // Partial specializations.
1332 Size = Record[Idx++];
1333 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001334 for (unsigned I = 0; I != Size; ++I)
1335 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001336
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001337 if (SpecIDs[0]) {
1338 typedef serialization::DeclID DeclID;
1339
1340 ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1341 CommonPtr->LazySpecializations
Douglas Gregor35942772011-09-09 21:34:22 +00001342 = new (Reader.getContext()) DeclID [SpecIDs.size()];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001343 memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1344 SpecIDs.size() * sizeof(DeclID));
1345 }
1346
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001347 // InjectedClassNameType is computed.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001348 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001349}
1350
Sebastian Redld527cc02010-08-18 23:56:48 +00001351void ASTDeclReader::VisitClassTemplateSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001352 ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001353 VisitCXXRecordDecl(D);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001354
Douglas Gregor35942772011-09-09 21:34:22 +00001355 ASTContext &C = Reader.getContext();
Douglas Gregor409448c2011-07-21 22:35:25 +00001356 if (Decl *InstD = ReadDecl(Record, Idx)) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001357 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001358 D->SpecializedTemplate = CTD;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001359 } else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001360 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001361 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001362 TemplateArgumentList *ArgList
Douglas Gregor910f8002010-11-07 23:05:16 +00001363 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1364 TemplArgs.size());
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001365 ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS
1366 = new (C) ClassTemplateSpecializationDecl::
1367 SpecializedPartialSpecialization();
1368 PS->PartialSpecialization
1369 = cast<ClassTemplatePartialSpecializationDecl>(InstD);
1370 PS->TemplateArgs = ArgList;
1371 D->SpecializedTemplate = PS;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001372 }
1373 }
1374
1375 // Explicit info.
Sebastian Redlc3632732010-10-05 15:59:54 +00001376 if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001377 ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo
1378 = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
1379 ExplicitInfo->TypeAsWritten = TyInfo;
Sebastian Redlc3632732010-10-05 15:59:54 +00001380 ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1381 ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001382 D->ExplicitInfo = ExplicitInfo;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001383 }
1384
Chris Lattner5f9e2722011-07-23 10:55:15 +00001385 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001386 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Douglas Gregor910f8002010-11-07 23:05:16 +00001387 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1388 TemplArgs.size());
Sebastian Redlc3632732010-10-05 15:59:54 +00001389 D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001390 D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001391
Argyrios Kyrtzidisbc5ab7c2010-07-20 13:59:40 +00001392 if (D->isCanonicalDecl()) { // It's kept in the folding set.
Douglas Gregor409448c2011-07-21 22:35:25 +00001393 ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001394 if (ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001395 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
1396 CanonPattern->getCommonPtr()->PartialSpecializations.InsertNode(Partial);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001397 } else {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001398 CanonPattern->getCommonPtr()->Specializations.InsertNode(D);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001399 }
1400 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001401}
1402
Sebastian Redld527cc02010-08-18 23:56:48 +00001403void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001404 ClassTemplatePartialSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001405 VisitClassTemplateSpecializationDecl(D);
1406
Douglas Gregor35942772011-09-09 21:34:22 +00001407 ASTContext &C = Reader.getContext();
Sebastian Redlc3632732010-10-05 15:59:54 +00001408 D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001409
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001410 unsigned NumArgs = Record[Idx++];
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001411 if (NumArgs) {
1412 D->NumArgsAsWritten = NumArgs;
1413 D->ArgsAsWritten = new (C) TemplateArgumentLoc[NumArgs];
1414 for (unsigned i=0; i != NumArgs; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001415 D->ArgsAsWritten[i] = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001416 }
1417
1418 D->SequenceNumber = Record[Idx++];
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001419
1420 // These are read/set from/to the first declaration.
1421 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001422 D->InstantiatedFromMember.setPointer(
Douglas Gregor409448c2011-07-21 22:35:25 +00001423 ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx));
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001424 D->InstantiatedFromMember.setInt(Record[Idx++]);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001425 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001426}
1427
Sebastian Redl14c36332011-08-31 13:59:56 +00001428void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
1429 ClassScopeFunctionSpecializationDecl *D) {
Francois Pichetbc845322011-08-17 01:06:54 +00001430 VisitDecl(D);
1431 D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx);
1432}
1433
Sebastian Redld527cc02010-08-18 23:56:48 +00001434void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001435 VisitRedeclarableTemplateDecl(D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001436
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001437 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001438 // This FunctionTemplateDecl owns a CommonPtr; read it.
1439
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001440 // Read the function specialization declarations.
1441 // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +00001442 // when reading the specialized FunctionDecl.
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001443 unsigned NumSpecs = Record[Idx++];
1444 while (NumSpecs--)
Douglas Gregor409448c2011-07-21 22:35:25 +00001445 (void)ReadDecl(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001446 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001447}
1448
Sebastian Redld527cc02010-08-18 23:56:48 +00001449void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001450 VisitTypeDecl(D);
1451
1452 D->setDeclaredWithTypename(Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001453
1454 bool Inherited = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001455 TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001456 D->setDefaultArgument(DefArg, Inherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001457}
1458
Sebastian Redld527cc02010-08-18 23:56:48 +00001459void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
John McCall76a40212011-02-09 01:13:10 +00001460 VisitDeclaratorDecl(D);
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001461 // TemplateParmPosition.
1462 D->setDepth(Record[Idx++]);
1463 D->setPosition(Record[Idx++]);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001464 if (D->isExpandedParameterPack()) {
1465 void **Data = reinterpret_cast<void **>(D + 1);
1466 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Douglas Gregor393f2492011-07-22 00:38:23 +00001467 Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001468 Data[2*I + 1] = GetTypeSourceInfo(Record, Idx);
1469 }
1470 } else {
1471 // Rest of NonTypeTemplateParmDecl.
1472 D->ParameterPack = Record[Idx++];
1473 if (Record[Idx++]) {
1474 Expr *DefArg = Reader.ReadExpr(F);
1475 bool Inherited = Record[Idx++];
1476 D->setDefaultArgument(DefArg, Inherited);
1477 }
1478 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001479}
1480
Sebastian Redld527cc02010-08-18 23:56:48 +00001481void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001482 VisitTemplateDecl(D);
1483 // TemplateParmPosition.
1484 D->setDepth(Record[Idx++]);
1485 D->setPosition(Record[Idx++]);
1486 // Rest of TemplateTemplateParmDecl.
Sebastian Redlc3632732010-10-05 15:59:54 +00001487 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001488 bool IsInherited = Record[Idx++];
1489 D->setDefaultArgument(Arg, IsInherited);
Douglas Gregor61c4d282011-01-05 15:48:55 +00001490 D->ParameterPack = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001491}
1492
Richard Smith3e4c6c42011-05-05 21:57:07 +00001493void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
1494 VisitRedeclarableTemplateDecl(D);
1495}
1496
Sebastian Redld527cc02010-08-18 23:56:48 +00001497void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001498 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001499 D->AssertExpr = Reader.ReadExpr(F);
1500 D->Message = cast<StringLiteral>(Reader.ReadExpr(F));
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001501 D->RParenLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001502}
1503
Mike Stump1eb44332009-09-09 15:08:12 +00001504std::pair<uint64_t, uint64_t>
Sebastian Redld527cc02010-08-18 23:56:48 +00001505ASTDeclReader::VisitDeclContext(DeclContext *DC) {
Chris Lattner698f9252009-04-27 05:27:42 +00001506 uint64_t LexicalOffset = Record[Idx++];
1507 uint64_t VisibleOffset = Record[Idx++];
1508 return std::make_pair(LexicalOffset, VisibleOffset);
1509}
1510
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001511template <typename T>
Douglas Gregor0f753232011-12-22 01:48:48 +00001512ASTDeclReader::RedeclarableResult
1513ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
Douglas Gregorfc529f72011-12-19 19:00:47 +00001514 enum RedeclKind { FirstDeclaration = 0, FirstInFile, PointsToPrevious };
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001515 RedeclKind Kind = (RedeclKind)Record[Idx++];
Douglas Gregora1be2782011-12-17 23:38:30 +00001516
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001517 DeclID FirstDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001518 switch (Kind) {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001519 case FirstDeclaration:
1520 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001521 break;
Douglas Gregorfc529f72011-12-19 19:00:47 +00001522
1523 case FirstInFile:
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001524 case PointsToPrevious: {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001525 FirstDeclID = ReadDeclID(Record, Idx);
1526 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1527
1528 T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
Douglas Gregora1be2782011-12-17 23:38:30 +00001529
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001530 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1531 // We temporarily set the first (canonical) declaration as the previous one
1532 // which is the one that matters and mark the real previous DeclID to be
1533 // loaded & attached later on.
Douglas Gregord488b3a2011-10-26 17:53:41 +00001534 D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink(FirstDecl);
Douglas Gregord488b3a2011-10-26 17:53:41 +00001535
Douglas Gregorfc529f72011-12-19 19:00:47 +00001536 if (Kind == PointsToPrevious) {
1537 // Make a note that we need to wire up this declaration to its
1538 // previous declaration, later. We don't need to do this for the first
1539 // declaration in any given module file, because those will be wired
1540 // together later.
1541 Reader.PendingPreviousDecls.push_back(std::make_pair(static_cast<T*>(D),
1542 PrevDeclID));
1543 }
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001544 break;
1545 }
Douglas Gregord488b3a2011-10-26 17:53:41 +00001546 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001547
Douglas Gregor0f753232011-12-22 01:48:48 +00001548 // The result structure takes care of note that we need to load the
1549 // other declaration chains for this ID.
1550 return RedeclarableResult(Reader, FirstDeclID);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001551}
1552
Chris Lattner698f9252009-04-27 05:27:42 +00001553//===----------------------------------------------------------------------===//
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001554// Attribute Reading
Chris Lattner698f9252009-04-27 05:27:42 +00001555//===----------------------------------------------------------------------===//
1556
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001557/// \brief Reads attributes from the current stream position.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001558void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs,
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +00001559 const RecordData &Record, unsigned &Idx) {
1560 for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001561 Attr *New = 0;
Sean Hunt387475d2010-06-16 23:43:53 +00001562 attr::Kind Kind = (attr::Kind)Record[Idx++];
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001563 SourceRange Range = ReadSourceRange(F, Record, Idx);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001564
Sean Huntcf807c42010-08-18 23:23:40 +00001565#include "clang/Serialization/AttrPCHRead.inc"
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001566
1567 assert(New && "Unable to decode attribute?");
Sean Huntcf807c42010-08-18 23:23:40 +00001568 Attrs.push_back(New);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001569 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001570}
1571
1572//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001573// ASTReader Implementation
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001574//===----------------------------------------------------------------------===//
Chris Lattner698f9252009-04-27 05:27:42 +00001575
1576/// \brief Note that we have loaded the declaration with the given
1577/// Index.
Mike Stump1eb44332009-09-09 15:08:12 +00001578///
Chris Lattner698f9252009-04-27 05:27:42 +00001579/// This routine notes that this declaration has already been loaded,
1580/// so that future GetDecl calls will return this declaration rather
1581/// than trying to load a new declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001582inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +00001583 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1584 DeclsLoaded[Index] = D;
1585}
1586
1587
1588/// \brief Determine whether the consumer will be interested in seeing
1589/// this declaration (via HandleTopLevelDecl).
1590///
1591/// This routine should return true for anything that might affect
1592/// code generation, e.g., inline function definitions, Objective-C
1593/// declarations with metadata, etc.
1594static bool isConsumerInterestedIn(Decl *D) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00001595 // An ObjCMethodDecl is never considered as "interesting" because its
1596 // implementation container always is.
1597
Douglas Gregor94da1582011-09-10 00:22:34 +00001598 if (isa<FileScopeAsmDecl>(D) ||
1599 isa<ObjCProtocolDecl>(D) ||
1600 isa<ObjCImplDecl>(D))
Daniel Dunbar04a0b502009-09-17 03:06:44 +00001601 return true;
Chris Lattner698f9252009-04-27 05:27:42 +00001602 if (VarDecl *Var = dyn_cast<VarDecl>(D))
Argyrios Kyrtzidis3f954772010-08-05 09:47:59 +00001603 return Var->isFileVarDecl() &&
1604 Var->isThisDeclarationADefinition() == VarDecl::Definition;
Chris Lattner698f9252009-04-27 05:27:42 +00001605 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
Sean Hunt10620eb2011-05-06 20:44:56 +00001606 return Func->doesThisDeclarationHaveABody();
Douglas Gregor94da1582011-09-10 00:22:34 +00001607
1608 return false;
Chris Lattner698f9252009-04-27 05:27:42 +00001609}
1610
Douglas Gregor96e973f2011-07-20 00:27:43 +00001611/// \brief Get the correct cursor and offset for loading a declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001612ASTReader::RecordLocation
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001613ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) {
Sebastian Redl0b17c612010-08-13 00:28:03 +00001614 // See if there's an override.
1615 DeclReplacementMap::iterator It = ReplacedDecls.find(ID);
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00001616 if (It != ReplacedDecls.end()) {
1617 RawLocation = It->second.RawLoc;
1618 return RecordLocation(It->second.Mod, It->second.Offset);
1619 }
Sebastian Redl0b17c612010-08-13 00:28:03 +00001620
Douglas Gregor96e973f2011-07-20 00:27:43 +00001621 GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
1622 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001623 ModuleFile *M = I->second;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001624 const DeclOffset &
1625 DOffs = M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
1626 RawLocation = DOffs.Loc;
1627 return RecordLocation(M, DOffs.BitOffset);
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001628}
1629
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001630ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001631 ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001632 = GlobalBitOffsetsMap.find(GlobalOffset);
1633
1634 assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
1635 return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
1636}
1637
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001638uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) {
Douglas Gregore92b8a12011-08-04 00:01:48 +00001639 return LocalOffset + M.GlobalBitOffset;
1640}
1641
Douglas Gregor0f753232011-12-22 01:48:48 +00001642/// \brief Determine whether the two declarations refer to the same entity.
1643static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
1644 assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
1645
1646 if (X == Y)
1647 return true;
1648
1649 // Must have the same kind.
1650 if (X->getKind() != Y->getKind())
1651 return false;
1652
1653 // Must be in the same context.
1654 if (!X->getDeclContext()->getRedeclContext()->Equals(
1655 Y->getDeclContext()->getRedeclContext()))
1656 return false;
1657
1658 // Objective-C classes with the same name always match.
1659 if (isa<ObjCInterfaceDecl>(X))
1660 return true;
1661
1662 // FIXME: Many other cases to implement.
1663 return false;
1664}
1665
1666ASTDeclReader::FindExistingResult::~FindExistingResult() {
1667 if (!AddResult)
1668 return;
1669
1670 DeclContext *DC = New->getDeclContext()->getRedeclContext();
1671 if (DC->isTranslationUnit() && Reader.SemaObj) {
1672 if (!Existing) {
1673 Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, New->getDeclName());
1674 }
1675 }
1676}
1677
1678ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
1679 DeclContext *DC = D->getDeclContext()->getRedeclContext();
1680 if (!DC->isFileContext())
1681 return FindExistingResult(Reader);
1682
1683 if (DC->isTranslationUnit() && Reader.SemaObj) {
1684 IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver;
1685 for (IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1686 IEnd = IdResolver.end();
1687 I != IEnd; ++I) {
1688 if (isSameEntity(*I, D))
1689 return FindExistingResult(Reader, D, *I);
1690 }
1691 }
1692
1693 // FIXME: Search in the DeclContext.
1694
1695 return FindExistingResult(Reader, D, /*Existing=*/0);
1696}
1697
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001698void ASTDeclReader::attachPreviousDecl(Decl *D, Decl *previous) {
1699 assert(D && previous);
1700 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1701 TD->RedeclLink.setPointer(cast<TagDecl>(previous));
1702 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1703 FD->RedeclLink.setPointer(cast<FunctionDecl>(previous));
1704 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1705 VD->RedeclLink.setPointer(cast<VarDecl>(previous));
Douglas Gregora1be2782011-12-17 23:38:30 +00001706 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1707 TD->RedeclLink.setPointer(cast<TypedefNameDecl>(previous));
1708 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
Douglas Gregor0af55012011-12-16 03:12:41 +00001709 ID->RedeclLink.setPointer(cast<ObjCInterfaceDecl>(previous));
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001710 } else {
1711 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1712 TD->CommonOrPrev = cast<RedeclarableTemplateDecl>(previous);
1713 }
1714}
1715
Douglas Gregora1be2782011-12-17 23:38:30 +00001716void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
1717 assert(D && Latest);
1718 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1719 TD->RedeclLink
1720 = Redeclarable<TagDecl>::LatestDeclLink(cast<TagDecl>(Latest));
1721 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1722 FD->RedeclLink
1723 = Redeclarable<FunctionDecl>::LatestDeclLink(cast<FunctionDecl>(Latest));
1724 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1725 VD->RedeclLink
1726 = Redeclarable<VarDecl>::LatestDeclLink(cast<VarDecl>(Latest));
1727 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1728 TD->RedeclLink
1729 = Redeclarable<TypedefNameDecl>::LatestDeclLink(
1730 cast<TypedefNameDecl>(Latest));
1731 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
1732 ID->RedeclLink
1733 = Redeclarable<ObjCInterfaceDecl>::LatestDeclLink(
1734 cast<ObjCInterfaceDecl>(Latest));
1735 } else {
1736 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1737 TD->getCommonPtr()->Latest = cast<RedeclarableTemplateDecl>(Latest);
1738 }
1739}
1740
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00001741ASTReader::MergedDeclsMap::iterator
1742ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) {
1743 // If we don't have any stored merged declarations, just look in the
1744 // merged declarations set.
1745 StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID);
1746 if (StoredPos == StoredMergedDecls.end())
1747 return MergedDecls.find(Canon);
1748
1749 // Append the stored merged declarations to the merged declarations set.
1750 MergedDeclsMap::iterator Pos = MergedDecls.find(Canon);
1751 if (Pos == MergedDecls.end())
1752 Pos = MergedDecls.insert(std::make_pair(Canon,
1753 SmallVector<DeclID, 2>())).first;
1754 Pos->second.append(StoredPos->second.begin(), StoredPos->second.end());
1755 StoredMergedDecls.erase(StoredPos);
1756
1757 // Sort and uniquify the set of merged declarations.
1758 llvm::array_pod_sort(Pos->second.begin(), Pos->second.end());
1759 Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()),
1760 Pos->second.end());
1761 return Pos;
1762}
1763
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001764void ASTReader::loadAndAttachPreviousDecl(Decl *D, serialization::DeclID ID) {
1765 Decl *previous = GetDecl(ID);
1766 ASTDeclReader::attachPreviousDecl(D, previous);
1767}
1768
Sebastian Redld527cc02010-08-18 23:56:48 +00001769/// \brief Read the declaration at the given offset from the AST file.
Douglas Gregor496c7092011-08-03 15:48:04 +00001770Decl *ASTReader::ReadDeclRecord(DeclID ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001771 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001772 unsigned RawLocation = 0;
1773 RecordLocation Loc = DeclCursorForID(ID, RawLocation);
Sebastian Redlc3632732010-10-05 15:59:54 +00001774 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Chris Lattner698f9252009-04-27 05:27:42 +00001775 // Keep track of where we are in the stream, then jump back there
1776 // after reading this declaration.
Chris Lattnerda930612009-04-27 05:58:23 +00001777 SavedStreamPosition SavedPosition(DeclsCursor);
Chris Lattner698f9252009-04-27 05:27:42 +00001778
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001779 ReadingKindTracker ReadingKind(Read_Decl, *this);
1780
Douglas Gregord89275b2009-07-06 18:54:52 +00001781 // Note that we are loading a declaration record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00001782 Deserializing ADecl(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001783
Sebastian Redlc3632732010-10-05 15:59:54 +00001784 DeclsCursor.JumpToBit(Loc.Offset);
Chris Lattner698f9252009-04-27 05:27:42 +00001785 RecordData Record;
Chris Lattnerda930612009-04-27 05:58:23 +00001786 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner698f9252009-04-27 05:27:42 +00001787 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001788 ASTDeclReader Reader(*this, *Loc.F, DeclsCursor, ID, RawLocation, Record,Idx);
Chris Lattner698f9252009-04-27 05:27:42 +00001789
Chris Lattnerda930612009-04-27 05:58:23 +00001790 Decl *D = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001791 switch ((DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001792 case DECL_CONTEXT_LEXICAL:
1793 case DECL_CONTEXT_VISIBLE:
David Blaikieb219cfc2011-09-23 05:06:16 +00001794 llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001795 case DECL_TYPEDEF:
Douglas Gregor35942772011-09-09 21:34:22 +00001796 D = TypedefDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnara344577e2011-03-06 15:48:19 +00001797 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001798 break;
Richard Smith162e1c12011-04-15 14:24:37 +00001799 case DECL_TYPEALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001800 D = TypeAliasDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Richard Smith162e1c12011-04-15 14:24:37 +00001801 0, 0);
1802 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001803 case DECL_ENUM:
Douglas Gregor35942772011-09-09 21:34:22 +00001804 D = EnumDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001805 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001806 case DECL_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001807 D = RecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001808 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001809 case DECL_ENUM_CONSTANT:
Douglas Gregor35942772011-09-09 21:34:22 +00001810 D = EnumConstantDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Chris Lattner698f9252009-04-27 05:27:42 +00001811 0, llvm::APSInt());
1812 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001813 case DECL_FUNCTION:
Douglas Gregor35942772011-09-09 21:34:22 +00001814 D = FunctionDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001815 DeclarationName(), QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001816 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001817 case DECL_LINKAGE_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001818 D = LinkageSpecDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001819 (LinkageSpecDecl::LanguageIDs)0,
Abramo Bagnara55a96372011-03-03 16:52:29 +00001820 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001821 break;
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001822 case DECL_LABEL:
Douglas Gregor35942772011-09-09 21:34:22 +00001823 D = LabelDecl::Create(Context, 0, SourceLocation(), 0);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001824 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001825 case DECL_NAMESPACE:
Douglas Gregor35942772011-09-09 21:34:22 +00001826 D = NamespaceDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00001827 SourceLocation(), 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001828 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001829 case DECL_NAMESPACE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001830 D = NamespaceAliasDecl::Create(Context, 0, SourceLocation(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001831 SourceLocation(), 0,
1832 NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001833 SourceLocation(), 0);
1834 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001835 case DECL_USING:
Douglas Gregor35942772011-09-09 21:34:22 +00001836 D = UsingDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001837 NestedNameSpecifierLoc(), DeclarationNameInfo(),
1838 false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001839 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001840 case DECL_USING_SHADOW:
Douglas Gregor35942772011-09-09 21:34:22 +00001841 D = UsingShadowDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001842 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001843 case DECL_USING_DIRECTIVE:
Douglas Gregor35942772011-09-09 21:34:22 +00001844 D = UsingDirectiveDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001845 SourceLocation(), NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001846 SourceLocation(), 0, 0);
1847 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001848 case DECL_UNRESOLVED_USING_VALUE:
Douglas Gregor35942772011-09-09 21:34:22 +00001849 D = UnresolvedUsingValueDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001850 NestedNameSpecifierLoc(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001851 DeclarationNameInfo());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001852 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001853 case DECL_UNRESOLVED_USING_TYPENAME:
Douglas Gregor35942772011-09-09 21:34:22 +00001854 D = UnresolvedUsingTypenameDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001855 SourceLocation(),
1856 NestedNameSpecifierLoc(),
1857 SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001858 DeclarationName());
1859 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001860 case DECL_CXX_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001861 D = CXXRecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001862 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001863 case DECL_CXX_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001864 D = CXXMethodDecl::Create(Context, 0, SourceLocation(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001865 DeclarationNameInfo(), QualType(), 0,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001866 false, SC_None, false, false, SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001867 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001868 case DECL_CXX_CONSTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001869 D = CXXConstructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001870 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001871 case DECL_CXX_DESTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001872 D = CXXDestructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001873 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001874 case DECL_CXX_CONVERSION:
Douglas Gregor35942772011-09-09 21:34:22 +00001875 D = CXXConversionDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001876 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001877 case DECL_ACCESS_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001878 D = AccessSpecDecl::Create(Context, Decl::EmptyShell());
Abramo Bagnara6206d532010-06-05 05:09:32 +00001879 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001880 case DECL_FRIEND:
Douglas Gregor35942772011-09-09 21:34:22 +00001881 D = FriendDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001882 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001883 case DECL_FRIEND_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001884 D = FriendTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001885 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001886 case DECL_CLASS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001887 D = ClassTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001888 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001889 case DECL_CLASS_TEMPLATE_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001890 D = ClassTemplateSpecializationDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001891 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001892 case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001893 D = ClassTemplatePartialSpecializationDecl::Create(Context,
Douglas Gregor9a299e02011-03-04 17:52:15 +00001894 Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001895 break;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001896 case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001897 D = ClassScopeFunctionSpecializationDecl::Create(Context,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001898 Decl::EmptyShell());
1899 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001900 case DECL_FUNCTION_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001901 D = FunctionTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001902 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001903 case DECL_TEMPLATE_TYPE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001904 D = TemplateTypeParmDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001905 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001906 case DECL_NON_TYPE_TEMPLATE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001907 D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001908 SourceLocation(), 0, 0, 0, QualType(),
1909 false, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001910 break;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001911 case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK:
Douglas Gregor35942772011-09-09 21:34:22 +00001912 D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001913 SourceLocation(), 0, 0, 0, QualType(),
1914 0, 0, Record[Idx++], 0);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001915 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001916 case DECL_TEMPLATE_TEMPLATE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001917 D = TemplateTemplateParmDecl::Create(Context, 0, SourceLocation(), 0, 0,
Douglas Gregor61c4d282011-01-05 15:48:55 +00001918 false, 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001919 break;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001920 case DECL_TYPE_ALIAS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001921 D = TypeAliasTemplateDecl::Create(Context, Decl::EmptyShell());
Richard Smith3e4c6c42011-05-05 21:57:07 +00001922 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001923 case DECL_STATIC_ASSERT:
Douglas Gregor35942772011-09-09 21:34:22 +00001924 D = StaticAssertDecl::Create(Context, 0, SourceLocation(), 0, 0,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001925 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001926 break;
1927
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001928 case DECL_OBJC_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001929 D = ObjCMethodDecl::Create(Context, SourceLocation(), SourceLocation(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00001930 Selector(), QualType(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001931 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001932 case DECL_OBJC_INTERFACE:
Douglas Gregor0af55012011-12-16 03:12:41 +00001933 D = ObjCInterfaceDecl::CreateEmpty(Context);
Chris Lattner698f9252009-04-27 05:27:42 +00001934 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001935 case DECL_OBJC_IVAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001936 D = ObjCIvarDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001937 0, QualType(), 0, ObjCIvarDecl::None);
Chris Lattner698f9252009-04-27 05:27:42 +00001938 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001939 case DECL_OBJC_PROTOCOL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001940 D = ObjCProtocolDecl::Create(Context, 0, 0, SourceLocation(),
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +00001941 SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001942 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001943 case DECL_OBJC_AT_DEFS_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001944 D = ObjCAtDefsFieldDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001945 SourceLocation(), 0, QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001946 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001947 case DECL_OBJC_CLASS:
Douglas Gregor35942772011-09-09 21:34:22 +00001948 D = ObjCClassDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001949 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001950 case DECL_OBJC_FORWARD_PROTOCOL:
Douglas Gregor35942772011-09-09 21:34:22 +00001951 D = ObjCForwardProtocolDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001952 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001953 case DECL_OBJC_CATEGORY:
Douglas Gregor35942772011-09-09 21:34:22 +00001954 D = ObjCCategoryDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001955 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001956 case DECL_OBJC_CATEGORY_IMPL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001957 D = ObjCCategoryImplDecl::Create(Context, 0, 0, 0, SourceLocation(),
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001958 SourceLocation(), SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001959 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001960 case DECL_OBJC_IMPLEMENTATION:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001961 D = ObjCImplementationDecl::Create(Context, 0, 0, 0, SourceLocation(),
1962 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001963 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001964 case DECL_OBJC_COMPATIBLE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001965 D = ObjCCompatibleAliasDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001966 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001967 case DECL_OBJC_PROPERTY:
Douglas Gregor35942772011-09-09 21:34:22 +00001968 D = ObjCPropertyDecl::Create(Context, 0, SourceLocation(), 0, SourceLocation(),
John McCall83a230c2010-06-04 20:50:08 +00001969 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001970 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001971 case DECL_OBJC_PROPERTY_IMPL:
Douglas Gregor35942772011-09-09 21:34:22 +00001972 D = ObjCPropertyImplDecl::Create(Context, 0, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001973 SourceLocation(), 0,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001974 ObjCPropertyImplDecl::Dynamic, 0,
1975 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001976 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001977 case DECL_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001978 D = FieldDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00001979 QualType(), 0, 0, false, false);
Chris Lattner698f9252009-04-27 05:27:42 +00001980 break;
Francois Pichet87c2e122010-11-21 06:08:52 +00001981 case DECL_INDIRECTFIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001982 D = IndirectFieldDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Francois Pichet87c2e122010-11-21 06:08:52 +00001983 0, 0);
1984 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001985 case DECL_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001986 D = VarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001987 QualType(), 0, SC_None, SC_None);
Chris Lattner698f9252009-04-27 05:27:42 +00001988 break;
1989
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001990 case DECL_IMPLICIT_PARAM:
Douglas Gregor35942772011-09-09 21:34:22 +00001991 D = ImplicitParamDecl::Create(Context, 0, SourceLocation(), 0, QualType());
Chris Lattner698f9252009-04-27 05:27:42 +00001992 break;
1993
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001994 case DECL_PARM_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001995 D = ParmVarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001996 QualType(), 0, SC_None, SC_None, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001997 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001998 case DECL_FILE_SCOPE_ASM:
Douglas Gregor35942772011-09-09 21:34:22 +00001999 D = FileScopeAsmDecl::Create(Context, 0, 0, SourceLocation(),
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002000 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00002001 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002002 case DECL_BLOCK:
Douglas Gregor35942772011-09-09 21:34:22 +00002003 D = BlockDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00002004 break;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002005 case DECL_CXX_BASE_SPECIFIERS:
2006 Error("attempt to read a C++ base-specifier record as a declaration");
2007 return 0;
Douglas Gregor15de72c2011-12-02 23:23:56 +00002008 case DECL_IMPORT:
2009 // Note: last entry of the ImportDecl record is the number of stored source
2010 // locations.
2011 D = ImportDecl::CreateEmpty(Context, Record.back());
2012 break;
Chris Lattner698f9252009-04-27 05:27:42 +00002013 }
Chris Lattner698f9252009-04-27 05:27:42 +00002014
Sebastian Redld527cc02010-08-18 23:56:48 +00002015 assert(D && "Unknown declaration reading AST file");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00002016 LoadedDecl(Index, D);
2017 Reader.Visit(D);
Chris Lattner698f9252009-04-27 05:27:42 +00002018
2019 // If this declaration is also a declaration context, get the
2020 // offsets for its tables of lexical and visible declarations.
2021 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
2022 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
2023 if (Offsets.first || Offsets.second) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002024 if (Offsets.first != 0)
2025 DC->setHasExternalLexicalStorage(true);
2026 if (Offsets.second != 0)
2027 DC->setHasExternalVisibleStorage(true);
2028 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
2029 Loc.F->DeclContextInfos[DC]))
Sebastian Redl681d7232010-07-27 00:17:23 +00002030 return 0;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002031 }
Sebastian Redle1dde812010-08-24 00:50:04 +00002032
Sebastian Redl024e1c42011-04-24 16:27:54 +00002033 // Now add the pending visible updates for this decl context, if it has any.
2034 DeclContextVisibleUpdatesPending::iterator I =
2035 PendingVisibleUpdates.find(ID);
2036 if (I != PendingVisibleUpdates.end()) {
2037 // There are updates. This means the context has external visible
2038 // storage, even if the original stored version didn't.
2039 DC->setHasExternalVisibleStorage(true);
2040 DeclContextVisibleUpdates &U = I->second;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002041 for (DeclContextVisibleUpdates::iterator UI = U.begin(), UE = U.end();
2042 UI != UE; ++UI) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002043 UI->second->DeclContextInfos[DC].NameLookupTableData = UI->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00002044 }
Sebastian Redl024e1c42011-04-24 16:27:54 +00002045 PendingVisibleUpdates.erase(I);
Chris Lattner698f9252009-04-27 05:27:42 +00002046 }
2047 }
2048 assert(Idx == Record.size());
2049
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002050 // Load any relevant update records.
2051 loadDeclUpdateRecords(ID, D);
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002052
2053 // Load the category chain after recursive loading is finished.
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002054 if (ObjCChainedCategoriesInterfaces.count(ID))
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002055 PendingChainedObjCCategories.push_back(
2056 std::make_pair(cast<ObjCInterfaceDecl>(D), ID));
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002057
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002058 // If we have deserialized a declaration that has a definition the
2059 // AST consumer might need to know about, queue it.
2060 // We don't pass it to the consumer immediately because we may be in recursive
2061 // loading, and some declarations may still be initializing.
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00002062 if (isConsumerInterestedIn(D))
Douglas Gregor94da1582011-09-10 00:22:34 +00002063 InterestingDecls.push_back(D);
Douglas Gregor94da1582011-09-10 00:22:34 +00002064
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002065 return D;
2066}
2067
2068void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) {
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002069 // The declaration may have been modified by files later in the chain.
2070 // If this is the case, read the record containing the updates from each file
2071 // and pass it to ASTDeclReader to make the modifications.
2072 DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
2073 if (UpdI != DeclUpdateOffsets.end()) {
2074 FileOffsetsTy &UpdateOffsets = UpdI->second;
2075 for (FileOffsetsTy::iterator
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002076 I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002077 ModuleFile *F = I->first;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002078 uint64_t Offset = I->second;
2079 llvm::BitstreamCursor &Cursor = F->DeclsCursor;
2080 SavedStreamPosition SavedPosition(Cursor);
2081 Cursor.JumpToBit(Offset);
2082 RecordData Record;
2083 unsigned Code = Cursor.ReadCode();
2084 unsigned RecCode = Cursor.ReadRecord(Code, Record);
2085 (void)RecCode;
2086 assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!");
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002087
2088 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00002089 ASTDeclReader Reader(*this, *F, Cursor, ID, 0, Record, Idx);
Sebastian Redlf79a7192011-04-29 08:19:30 +00002090 Reader.UpdateDecl(D, *F, Record);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002091 }
2092 }
Chris Lattner698f9252009-04-27 05:27:42 +00002093}
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002094
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002095namespace {
Douglas Gregora1be2782011-12-17 23:38:30 +00002096 struct CompareLocalRedeclarationsInfoToID {
2097 bool operator()(const LocalRedeclarationsInfo &X, DeclID Y) {
2098 return X.FirstID < Y;
2099 }
2100
2101 bool operator()(DeclID X, const LocalRedeclarationsInfo &Y) {
2102 return X < Y.FirstID;
2103 }
2104
2105 bool operator()(const LocalRedeclarationsInfo &X,
2106 const LocalRedeclarationsInfo &Y) {
2107 return X.FirstID < Y.FirstID;
2108 }
2109 bool operator()(DeclID X, DeclID Y) {
2110 return X < Y;
2111 }
2112 };
2113
Douglas Gregor0f753232011-12-22 01:48:48 +00002114 /// \brief Module visitor class that finds all of the redeclarations of a
2115 ///
Douglas Gregora1be2782011-12-17 23:38:30 +00002116 class RedeclChainVisitor {
2117 ASTReader &Reader;
Douglas Gregor0f753232011-12-22 01:48:48 +00002118 SmallVectorImpl<DeclID> &SearchDecls;
2119 GlobalDeclID CanonID;
Douglas Gregora1be2782011-12-17 23:38:30 +00002120 llvm::SmallVector<std::pair<Decl *, Decl *>, 4> Chains;
2121
2122 public:
Douglas Gregor0f753232011-12-22 01:48:48 +00002123 RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls,
2124 GlobalDeclID CanonID)
2125 : Reader(Reader), SearchDecls(SearchDecls), CanonID(CanonID) { }
Douglas Gregora1be2782011-12-17 23:38:30 +00002126
2127 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
2128 if (Preorder)
2129 return false;
2130
2131 return static_cast<RedeclChainVisitor *>(UserData)->visit(M);
2132 }
2133
Douglas Gregor0f753232011-12-22 01:48:48 +00002134 void searchForID(ModuleFile &M, GlobalDeclID GlobalID) {
Douglas Gregora1be2782011-12-17 23:38:30 +00002135 // Map global ID of the first declaration down to the local ID
2136 // used in this module file.
Douglas Gregor0f753232011-12-22 01:48:48 +00002137 DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID);
2138 if (!ID)
2139 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002140
2141 // Perform a binary search to find the local redeclarations for this
2142 // declaration (if any).
2143 const LocalRedeclarationsInfo *Result
2144 = std::lower_bound(M.RedeclarationsInfo,
2145 M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos,
Douglas Gregor0f753232011-12-22 01:48:48 +00002146 ID, CompareLocalRedeclarationsInfoToID());
Douglas Gregora1be2782011-12-17 23:38:30 +00002147 if (Result == M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos ||
Douglas Gregor0f753232011-12-22 01:48:48 +00002148 Result->FirstID != ID) {
2149 // If we have a previously-canonical singleton declaration that was
2150 // merged into another redeclaration chain, create a trivial chain
2151 // for this single declaration so that it will get wired into the
2152 // complete redeclaration chain.
2153 if (GlobalID != CanonID &&
2154 GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
2155 GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) {
2156 if (Decl *D = Reader.GetDecl(GlobalID))
2157 Chains.push_back(std::make_pair(D, D));
2158 }
2159
2160 return;
2161 }
2162
Douglas Gregora1be2782011-12-17 23:38:30 +00002163 // Dig out the starting/ending declarations.
2164 Decl *FirstLocalDecl = Reader.GetLocalDecl(M, Result->FirstLocalID);
2165 Decl *LastLocalDecl = Reader.GetLocalDecl(M, Result->LastLocalID);
2166 if (!FirstLocalDecl || !LastLocalDecl)
Douglas Gregor0f753232011-12-22 01:48:48 +00002167 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002168
2169 // Append this redeclaration chain to the list.
2170 Chains.push_back(std::make_pair(FirstLocalDecl, LastLocalDecl));
Douglas Gregor0f753232011-12-22 01:48:48 +00002171 }
2172
2173 bool visit(ModuleFile &M) {
2174 // Visit each of the declarations.
2175 for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
2176 searchForID(M, SearchDecls[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00002177 return false;
2178 }
2179
2180 ArrayRef<std::pair<Decl *, Decl *> > getChains() const {
2181 return Chains;
2182 }
2183
2184 void addParsed(Decl *FirstParsedDecl, Decl *LastParsedDecl) {
2185 Chains.push_back(std::make_pair(FirstParsedDecl, LastParsedDecl));
2186 }
2187 };
2188}
2189
2190/// \brief Retrieve the previous declaration to D.
2191static Decl *getPreviousDecl(Decl *D) {
2192 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2193 return TD->getPreviousDeclaration();
2194 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2195 return FD->getPreviousDeclaration();
2196 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2197 return VD->getPreviousDeclaration();
2198 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2199 return TD->getPreviousDeclaration();
2200 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2201 return ID->getPreviousDeclaration();
2202
2203 return cast<RedeclarableTemplateDecl>(D)->getPreviousDeclaration();
2204}
2205
2206/// \brief Retrieve the most recent declaration of D.
2207static Decl *getMostRecentDecl(Decl *D) {
2208 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2209 return TD->getMostRecentDeclaration();
2210 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2211 return FD->getMostRecentDeclaration();
2212 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2213 return VD->getMostRecentDeclaration();
2214 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2215 return TD->getMostRecentDeclaration();
2216 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2217 return ID->getMostRecentDeclaration();
2218
2219 return cast<RedeclarableTemplateDecl>(D)->getMostRecentDeclaration();
2220}
2221
2222void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002223 Decl *D = GetDecl(ID);
2224 Decl *CanonDecl = D->getCanonicalDecl();
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002225
Douglas Gregor0f753232011-12-22 01:48:48 +00002226 // Determine the set of declaration IDs we'll be searching for.
2227 llvm::SmallVector<DeclID, 1> SearchDecls;
2228 GlobalDeclID CanonID = 0;
2229 if (D == CanonDecl) {
2230 SearchDecls.push_back(ID); // Always first.
2231 CanonID = ID;
2232 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002233 MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID);
Douglas Gregor0f753232011-12-22 01:48:48 +00002234 if (MergedPos != MergedDecls.end())
2235 SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end());
2236
Douglas Gregora1be2782011-12-17 23:38:30 +00002237 // Build up the list of redeclaration chains.
Douglas Gregor0f753232011-12-22 01:48:48 +00002238 RedeclChainVisitor Visitor(*this, SearchDecls, CanonID);
Douglas Gregora1be2782011-12-17 23:38:30 +00002239 ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor);
2240
2241 // Retrieve the chains.
2242 ArrayRef<std::pair<Decl *, Decl *> > Chains = Visitor.getChains();
2243 if (Chains.empty())
2244 return;
Douglas Gregor0f753232011-12-22 01:48:48 +00002245
Douglas Gregora1be2782011-12-17 23:38:30 +00002246 // Capture all of the parsed declarations and put them at the end.
2247 Decl *MostRecent = getMostRecentDecl(CanonDecl);
2248 Decl *FirstParsed = MostRecent;
2249 if (CanonDecl != MostRecent && !MostRecent->isFromASTFile()) {
2250 Decl *Current = MostRecent;
2251 while (Decl *Prev = getPreviousDecl(Current)) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002252 if (Prev == CanonDecl)
2253 break;
2254
Douglas Gregora1be2782011-12-17 23:38:30 +00002255 if (Prev->isFromASTFile()) {
2256 Current = Prev;
2257 continue;
2258 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002259
Douglas Gregora1be2782011-12-17 23:38:30 +00002260 // Chain all of the parsed declarations together.
2261 ASTDeclReader::attachPreviousDecl(FirstParsed, Prev);
2262 FirstParsed = Prev;
2263 Current = Prev;
2264 }
2265
2266 Visitor.addParsed(FirstParsed, MostRecent);
2267 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002268
Douglas Gregora1be2782011-12-17 23:38:30 +00002269 // Hook up the separate chains.
2270 Chains = Visitor.getChains();
Douglas Gregor0f753232011-12-22 01:48:48 +00002271 if (Chains[0].first != CanonDecl)
2272 ASTDeclReader::attachPreviousDecl(Chains[0].first, CanonDecl);
Douglas Gregora1be2782011-12-17 23:38:30 +00002273 for (unsigned I = 1, N = Chains.size(); I != N; ++I)
2274 ASTDeclReader::attachPreviousDecl(Chains[I].first, Chains[I-1].second);
2275 ASTDeclReader::attachLatestDecl(CanonDecl, Chains.back().second);
2276}
2277
2278namespace {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002279 /// \brief Given an ObjC interface, goes through the modules and links to the
2280 /// interface all the categories for it.
2281 class ObjCChainedCategoriesVisitor {
2282 ASTReader &Reader;
2283 serialization::GlobalDeclID InterfaceID;
2284 ObjCInterfaceDecl *Interface;
2285 ObjCCategoryDecl *GlobHeadCat, *GlobTailCat;
2286 llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
2287
2288 public:
2289 ObjCChainedCategoriesVisitor(ASTReader &Reader,
2290 serialization::GlobalDeclID InterfaceID,
2291 ObjCInterfaceDecl *Interface)
2292 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
2293 GlobHeadCat(0), GlobTailCat(0) { }
2294
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002295 static bool visit(ModuleFile &M, void *UserData) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002296 return static_cast<ObjCChainedCategoriesVisitor *>(UserData)->visit(M);
2297 }
2298
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002299 bool visit(ModuleFile &M) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002300 if (Reader.isDeclIDFromModule(InterfaceID, M))
2301 return true; // We reached the module where the interface originated
2302 // from. Stop traversing the imported modules.
2303
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002304 ModuleFile::ChainedObjCCategoriesMap::iterator
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002305 I = M.ChainedObjCCategories.find(InterfaceID);
2306 if (I == M.ChainedObjCCategories.end())
2307 return false;
2308
2309 ObjCCategoryDecl *
2310 HeadCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.first);
2311 ObjCCategoryDecl *
2312 TailCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.second);
2313
2314 addCategories(HeadCat, TailCat);
2315 return false;
2316 }
2317
2318 void addCategories(ObjCCategoryDecl *HeadCat,
2319 ObjCCategoryDecl *TailCat = 0) {
2320 if (!HeadCat) {
2321 assert(!TailCat);
2322 return;
2323 }
2324
2325 if (!TailCat) {
2326 TailCat = HeadCat;
2327 while (TailCat->getNextClassCategory())
2328 TailCat = TailCat->getNextClassCategory();
2329 }
2330
2331 if (!GlobHeadCat) {
2332 GlobHeadCat = HeadCat;
2333 GlobTailCat = TailCat;
2334 } else {
2335 ASTDeclReader::setNextObjCCategory(GlobTailCat, HeadCat);
2336 GlobTailCat = TailCat;
2337 }
2338
2339 llvm::DenseSet<DeclarationName> Checked;
2340 for (ObjCCategoryDecl *Cat = HeadCat,
2341 *CatEnd = TailCat->getNextClassCategory();
2342 Cat != CatEnd; Cat = Cat->getNextClassCategory()) {
2343 if (Checked.count(Cat->getDeclName()))
2344 continue;
2345 Checked.insert(Cat->getDeclName());
2346 checkForDuplicate(Cat);
2347 }
2348 }
2349
2350 /// \brief Warns for duplicate categories that come from different modules.
2351 void checkForDuplicate(ObjCCategoryDecl *Cat) {
2352 DeclarationName Name = Cat->getDeclName();
2353 // Find the top category with the same name. We do not want to warn for
2354 // duplicates along the established chain because there were already
2355 // warnings for them when the module was created. We only want to warn for
2356 // duplicates between non-dependent modules:
2357 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002358 // MT //
2359 // / \ //
2360 // ML MR //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002361 //
2362 // We want to warn for duplicates between ML and MR,not between ML and MT.
2363 //
2364 // FIXME: We should not warn for duplicates in diamond:
2365 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002366 // MT //
2367 // / \ //
2368 // ML MR //
2369 // \ / //
2370 // MB //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002371 //
2372 // If there are duplicates in ML/MR, there will be warning when creating
2373 // MB *and* when importing MB. We should not warn when importing.
2374 for (ObjCCategoryDecl *Next = Cat->getNextClassCategory(); Next;
2375 Next = Next->getNextClassCategory()) {
2376 if (Next->getDeclName() == Name)
2377 Cat = Next;
2378 }
2379
2380 ObjCCategoryDecl *&PrevCat = NameCategoryMap[Name];
2381 if (!PrevCat)
2382 PrevCat = Cat;
2383
2384 if (PrevCat != Cat) {
2385 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
2386 << Interface->getDeclName() << Name;
2387 Reader.Diag(PrevCat->getLocation(), diag::note_previous_definition);
2388 }
2389 }
2390
2391 ObjCCategoryDecl *getHeadCategory() const { return GlobHeadCat; }
2392 };
2393}
2394
2395void ASTReader::loadObjCChainedCategories(serialization::GlobalDeclID ID,
2396 ObjCInterfaceDecl *D) {
2397 ObjCChainedCategoriesVisitor Visitor(*this, ID, D);
2398 ModuleMgr.visit(ObjCChainedCategoriesVisitor::visit, &Visitor);
2399 // Also add the categories that the interface already links to.
2400 Visitor.addCategories(D->getCategoryList());
2401 D->setCategoryList(Visitor.getHeadCategory());
2402}
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002403
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002404void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile,
Sebastian Redlf79a7192011-04-29 08:19:30 +00002405 const RecordData &Record) {
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002406 unsigned Idx = 0;
2407 while (Idx < Record.size()) {
2408 switch ((DeclUpdateKind)Record[Idx++]) {
2409 case UPD_CXX_SET_DEFINITIONDATA: {
2410 CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
Douglas Gregor496c7092011-08-03 15:48:04 +00002411 CXXRecordDecl *DefinitionDecl
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002412 = Reader.ReadDeclAs<CXXRecordDecl>(ModuleFile, Record, Idx);
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002413 assert(!RD->DefinitionData && "DefinitionData is already set!");
2414 InitializeCXXDefinitionData(RD, DefinitionDecl, Record, Idx);
2415 break;
2416 }
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002417
2418 case UPD_CXX_ADDED_IMPLICIT_MEMBER:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002419 cast<CXXRecordDecl>(D)->addedMember(Reader.ReadDecl(ModuleFile, Record, Idx));
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002420 break;
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00002421
2422 case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
2423 // It will be added to the template's specializations set when loaded.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002424 (void)Reader.ReadDecl(ModuleFile, Record, Idx);
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002425 break;
2426
2427 case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00002428 NamespaceDecl *Anon
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002429 = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx);
Sebastian Redl74b485a2011-04-24 16:28:21 +00002430 // Guard against these being loaded out of original order. Don't use
2431 // getNextNamespace(), since it tries to access the context and can't in
2432 // the middle of deserialization.
2433 if (!Anon->NextNamespace) {
2434 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
2435 TU->setAnonymousNamespace(Anon);
2436 else
2437 cast<NamespaceDecl>(D)->OrigOrAnonNamespace.setPointer(Anon);
2438 }
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002439 break;
2440 }
Sebastian Redlf79a7192011-04-29 08:19:30 +00002441
2442 case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
2443 cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation(
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002444 Reader.ReadSourceLocation(ModuleFile, Record, Idx));
Sebastian Redlf79a7192011-04-29 08:19:30 +00002445 break;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002446
2447 case UPD_OBJC_SET_CLASS_DEFINITIONDATA: {
2448 ObjCInterfaceDecl *ID = cast<ObjCInterfaceDecl>(D);
2449 ObjCInterfaceDecl *Def
2450 = Reader.ReadDeclAs<ObjCInterfaceDecl>(ModuleFile, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00002451 if (Def->Data)
Douglas Gregor26fec632011-12-15 18:17:27 +00002452 ID->Data = Def->Data;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002453 break;
2454 }
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002455 }
2456 }
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002457}