blob: f88a394e906a6ec1cb3384c5ca499740645b5fc3 [file] [log] [blame]
Sebastian Redl904c9c82010-08-18 23:57:11 +00001//===--- ASTReaderDecl.cpp - Decl Deserialization ---------------*- C++ -*-===//
Chris Lattner698f9252009-04-27 05:27:42 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Sebastian Redlc43b54c2010-08-18 23:56:43 +000010// This file implements the ASTReader::ReadDeclRecord method, which is the
Chris Lattner698f9252009-04-27 05:27:42 +000011// entrypoint for loading a decl.
12//
13//===----------------------------------------------------------------------===//
14
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +000015#include "ASTCommon.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000016#include "clang/Serialization/ASTReader.h"
Douglas Gregor0f753232011-12-22 01:48:48 +000017#include "clang/Sema/IdentifierResolver.h"
18#include "clang/Sema/Sema.h"
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +000019#include "clang/Sema/SemaDiagnostic.h"
Chris Lattner698f9252009-04-27 05:27:42 +000020#include "clang/AST/ASTConsumer.h"
21#include "clang/AST/ASTContext.h"
22#include "clang/AST/DeclVisitor.h"
23#include "clang/AST/DeclGroup.h"
Chris Lattner6ad9ac02010-05-07 21:43:38 +000024#include "clang/AST/DeclCXX.h"
25#include "clang/AST/DeclTemplate.h"
Chris Lattner698f9252009-04-27 05:27:42 +000026#include "clang/AST/Expr.h"
27using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000028using namespace clang::serialization;
Chris Lattner698f9252009-04-27 05:27:42 +000029
30//===----------------------------------------------------------------------===//
31// Declaration deserialization
32//===----------------------------------------------------------------------===//
33
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +000034namespace clang {
Sebastian Redld527cc02010-08-18 23:56:48 +000035 class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
Sebastian Redlc43b54c2010-08-18 23:56:43 +000036 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +000037 ModuleFile &F;
Sebastian Redl577d4792010-07-22 22:43:28 +000038 llvm::BitstreamCursor &Cursor;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000039 const DeclID ThisDeclID;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +000040 const unsigned RawLocation;
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000041 typedef ASTReader::RecordData RecordData;
42 const RecordData &Record;
Chris Lattner698f9252009-04-27 05:27:42 +000043 unsigned &Idx;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000044 TypeID TypeIDForTypeDecl;
Douglas Gregor67da6f62011-03-05 01:35:54 +000045
46 DeclID DeclContextIDForTemplateParmDecl;
47 DeclID LexicalDeclContextIDForTemplateParmDecl;
Chris Lattner698f9252009-04-27 05:27:42 +000048
Sebastian Redl577d4792010-07-22 22:43:28 +000049 uint64_t GetCurrentCursorOffset();
Douglas Gregor409448c2011-07-21 22:35:25 +000050
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000051 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000052 return Reader.ReadSourceLocation(F, R, I);
53 }
Douglas Gregor409448c2011-07-21 22:35:25 +000054
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000055 SourceRange ReadSourceRange(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000056 return Reader.ReadSourceRange(F, R, I);
57 }
Douglas Gregor409448c2011-07-21 22:35:25 +000058
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000059 TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000060 return Reader.GetTypeSourceInfo(F, R, I);
61 }
Douglas Gregor409448c2011-07-21 22:35:25 +000062
63 serialization::DeclID ReadDeclID(const RecordData &R, unsigned &I) {
64 return Reader.ReadDeclID(F, R, I);
65 }
66
67 Decl *ReadDecl(const RecordData &R, unsigned &I) {
68 return Reader.ReadDecl(F, R, I);
69 }
70
71 template<typename T>
72 T *ReadDeclAs(const RecordData &R, unsigned &I) {
73 return Reader.ReadDeclAs<T>(F, R, I);
74 }
75
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000076 void ReadQualifierInfo(QualifierInfo &Info,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000077 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000078 Reader.ReadQualifierInfo(F, Info, R, I);
79 }
Douglas Gregor409448c2011-07-21 22:35:25 +000080
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000081 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000082 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000083 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
84 }
Douglas Gregor409448c2011-07-21 22:35:25 +000085
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000086 void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +000087 const RecordData &R, unsigned &I) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000088 Reader.ReadDeclarationNameInfo(F, NameInfo, R, I);
89 }
Sebastian Redl577d4792010-07-22 22:43:28 +000090
Douglas Gregorecc2c092011-12-01 22:20:10 +000091 serialization::SubmoduleID readSubmoduleID(const RecordData &R,
92 unsigned &I) {
93 if (I >= R.size())
94 return 0;
95
96 return Reader.getGlobalSubmoduleID(F, R[I++]);
97 }
98
Douglas Gregor15de72c2011-12-02 23:23:56 +000099 Module *readModule(const RecordData &R, unsigned &I) {
100 return Reader.getSubmodule(readSubmoduleID(R, I));
101 }
102
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000103 void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data,
104 const RecordData &R, unsigned &I);
105
106 void InitializeCXXDefinitionData(CXXRecordDecl *D,
107 CXXRecordDecl *DefinitionDecl,
108 const RecordData &Record, unsigned &Idx);
Douglas Gregor0f753232011-12-22 01:48:48 +0000109
110 /// \brief RAII class used to capture the first ID within a redeclaration
111 /// chain and to introduce it into the list of pending redeclaration chains
112 /// on destruction.
113 ///
114 /// The caller can choose not to introduce this ID into the redeclaration
115 /// chain by calling \c suppress().
116 class RedeclarableResult {
117 ASTReader &Reader;
118 GlobalDeclID FirstID;
119 mutable bool Owning;
120
121 RedeclarableResult &operator=(RedeclarableResult&); // DO NOT IMPLEMENT
122
123 public:
124 RedeclarableResult(ASTReader &Reader, GlobalDeclID FirstID)
125 : Reader(Reader), FirstID(FirstID), Owning(true) { }
126
127 RedeclarableResult(const RedeclarableResult &Other)
128 : Reader(Other.Reader), FirstID(Other.FirstID), Owning(Other.Owning)
129 {
130 Other.Owning = false;
131 }
132
133 ~RedeclarableResult() {
Douglas Gregorbf1739c2011-12-22 22:05:07 +0000134 // FIXME: We want to suppress this when the declaration is local to
135 // a function, since there's no reason to search other AST files
136 // for redeclarations (they can't exist). However, this is hard to
137 // do locally because the declaration hasn't necessarily loaded its
138 // declaration context yet. Also, local externs still have the function
139 // as their (semantic) declaration context, which is wrong and would
140 // break this optimize.
141
Douglas Gregor0f753232011-12-22 01:48:48 +0000142 if (FirstID && Owning && Reader.PendingDeclChainsKnown.insert(FirstID))
143 Reader.PendingDeclChains.push_back(FirstID);
144 }
145
146 /// \brief Retrieve the first ID.
147 GlobalDeclID getFirstID() const { return FirstID; }
148
149 /// \brief Do not introduce this declaration ID into the set of pending
150 /// declaration chains.
151 void suppress() {
152 Owning = false;
153 }
154 };
155
156 /// \brief Class used to capture the result of searching for an existing
157 /// declaration of a specific kind and name, along with the ability
158 /// to update the place where this result was found (the declaration
159 /// chain hanging off an identifier or the DeclContext we searched in)
160 /// if requested.
161 class FindExistingResult {
162 ASTReader &Reader;
163 NamedDecl *New;
164 NamedDecl *Existing;
165 mutable bool AddResult;
166
167 FindExistingResult &operator=(FindExistingResult&); // DO NOT IMPLEMENT
168
169 public:
170 FindExistingResult(ASTReader &Reader)
171 : Reader(Reader), New(0), Existing(0), AddResult(false) { }
172
173 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing)
174 : Reader(Reader), New(New), Existing(Existing), AddResult(true) { }
175
176 FindExistingResult(const FindExistingResult &Other)
177 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
178 AddResult(Other.AddResult)
179 {
180 Other.AddResult = false;
181 }
182
183 ~FindExistingResult();
184
185 operator NamedDecl*() const { return Existing; }
186
187 template<typename T>
188 operator T*() const { return dyn_cast_or_null<T>(Existing); }
189 };
190
191 FindExistingResult findExisting(NamedDecl *D);
192
Chris Lattner698f9252009-04-27 05:27:42 +0000193 public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000194 ASTDeclReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +0000195 llvm::BitstreamCursor &Cursor, DeclID thisDeclID,
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000196 unsigned RawLocation,
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +0000197 const RecordData &Record, unsigned &Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +0000198 : Reader(Reader), F(F), Cursor(Cursor), ThisDeclID(thisDeclID),
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000199 RawLocation(RawLocation), Record(Record), Idx(Idx),
200 TypeIDForTypeDecl(0) { }
Chris Lattner698f9252009-04-27 05:27:42 +0000201
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +0000202 static void attachPreviousDecl(Decl *D, Decl *previous);
Douglas Gregora1be2782011-12-17 23:38:30 +0000203 static void attachLatestDecl(Decl *D, Decl *latest);
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +0000204
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000205 void Visit(Decl *D);
206
Douglas Gregor1a4761e2011-11-30 23:21:26 +0000207 void UpdateDecl(Decl *D, ModuleFile &ModuleFile,
Sebastian Redlf79a7192011-04-29 08:19:30 +0000208 const RecordData &Record);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +0000209
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +0000210 static void setNextObjCCategory(ObjCCategoryDecl *Cat,
211 ObjCCategoryDecl *Next) {
212 Cat->NextClassCategory = Next;
213 }
214
Chris Lattner698f9252009-04-27 05:27:42 +0000215 void VisitDecl(Decl *D);
216 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
217 void VisitNamedDecl(NamedDecl *ND);
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000218 void VisitLabelDecl(LabelDecl *LD);
Douglas Gregor0cef4832010-02-21 18:22:14 +0000219 void VisitNamespaceDecl(NamespaceDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000220 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
221 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000222 void VisitTypeDecl(TypeDecl *TD);
Douglas Gregor0f456822011-12-19 14:40:25 +0000223 void VisitTypedefNameDecl(TypedefNameDecl *TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000224 void VisitTypedefDecl(TypedefDecl *TD);
Richard Smith162e1c12011-04-15 14:24:37 +0000225 void VisitTypeAliasDecl(TypeAliasDecl *TD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000226 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000227 void VisitTagDecl(TagDecl *TD);
228 void VisitEnumDecl(EnumDecl *ED);
229 void VisitRecordDecl(RecordDecl *RD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000230 void VisitCXXRecordDecl(CXXRecordDecl *D);
231 void VisitClassTemplateSpecializationDecl(
232 ClassTemplateSpecializationDecl *D);
233 void VisitClassTemplatePartialSpecializationDecl(
234 ClassTemplatePartialSpecializationDecl *D);
Sebastian Redl14c36332011-08-31 13:59:56 +0000235 void VisitClassScopeFunctionSpecializationDecl(
236 ClassScopeFunctionSpecializationDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000237 void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000238 void VisitValueDecl(ValueDecl *VD);
239 void VisitEnumConstantDecl(EnumConstantDecl *ECD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000240 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000241 void VisitDeclaratorDecl(DeclaratorDecl *DD);
Chris Lattner698f9252009-04-27 05:27:42 +0000242 void VisitFunctionDecl(FunctionDecl *FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000243 void VisitCXXMethodDecl(CXXMethodDecl *D);
244 void VisitCXXConstructorDecl(CXXConstructorDecl *D);
245 void VisitCXXDestructorDecl(CXXDestructorDecl *D);
246 void VisitCXXConversionDecl(CXXConversionDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000247 void VisitFieldDecl(FieldDecl *FD);
Francois Pichet87c2e122010-11-21 06:08:52 +0000248 void VisitIndirectFieldDecl(IndirectFieldDecl *FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000249 void VisitVarDecl(VarDecl *VD);
250 void VisitImplicitParamDecl(ImplicitParamDecl *PD);
251 void VisitParmVarDecl(ParmVarDecl *PD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000252 void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
253 void VisitTemplateDecl(TemplateDecl *D);
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000254 void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000255 void VisitClassTemplateDecl(ClassTemplateDecl *D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000256 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000257 void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Richard Smith3e4c6c42011-05-05 21:57:07 +0000258 void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D);
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +0000259 void VisitUsingDecl(UsingDecl *D);
260 void VisitUsingShadowDecl(UsingShadowDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000261 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000262 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
Douglas Gregor15de72c2011-12-02 23:23:56 +0000263 void VisitImportDecl(ImportDecl *D);
Abramo Bagnara6206d532010-06-05 05:09:32 +0000264 void VisitAccessSpecDecl(AccessSpecDecl *D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000265 void VisitFriendDecl(FriendDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000266 void VisitFriendTemplateDecl(FriendTemplateDecl *D);
267 void VisitStaticAssertDecl(StaticAssertDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000268 void VisitBlockDecl(BlockDecl *BD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000269
Chris Lattner698f9252009-04-27 05:27:42 +0000270 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
Douglas Gregor0f753232011-12-22 01:48:48 +0000271
272 template <typename T>
273 RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000274
Sean Hunt9a555912010-05-30 07:21:58 +0000275 // FIXME: Reorder according to DeclNodes.td?
Chris Lattner698f9252009-04-27 05:27:42 +0000276 void VisitObjCMethodDecl(ObjCMethodDecl *D);
277 void VisitObjCContainerDecl(ObjCContainerDecl *D);
278 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
279 void VisitObjCIvarDecl(ObjCIvarDecl *D);
280 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
281 void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +0000282 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
283 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
284 void VisitObjCImplDecl(ObjCImplDecl *D);
285 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
286 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
287 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
288 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
289 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
290 };
291}
292
Sebastian Redld527cc02010-08-18 23:56:48 +0000293uint64_t ASTDeclReader::GetCurrentCursorOffset() {
Douglas Gregor8f1231b2011-07-22 06:10:01 +0000294 return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset;
Sebastian Redl577d4792010-07-22 22:43:28 +0000295}
296
Sebastian Redld527cc02010-08-18 23:56:48 +0000297void ASTDeclReader::Visit(Decl *D) {
298 DeclVisitor<ASTDeclReader, void>::Visit(D);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000299
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000300 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
301 if (DD->DeclInfo) {
302 DeclaratorDecl::ExtInfo *Info =
303 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
304 Info->TInfo =
305 GetTypeSourceInfo(Record, Idx);
306 }
307 else {
308 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
309 }
310 }
311
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000312 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000313 // if we have a fully initialized TypeDecl, we can safely read its type now.
Douglas Gregor1ab55e92010-12-10 17:03:06 +0000314 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull());
Douglas Gregor0af55012011-12-16 03:12:41 +0000315 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
316 // if we have a fully initialized TypeDecl, we can safely read its type now.
317 ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull();
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000318 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
319 // FunctionDecl's body was written last after all other Stmts/Exprs.
320 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000321 FD->setLazyBody(GetCurrentCursorOffset());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000322 } else if (D->isTemplateParameter()) {
323 // If we have a fully initialized template parameter, we can now
324 // set its DeclContext.
325 D->setDeclContext(
326 cast_or_null<DeclContext>(
327 Reader.GetDecl(DeclContextIDForTemplateParmDecl)));
328 D->setLexicalDeclContext(
329 cast_or_null<DeclContext>(
330 Reader.GetDecl(LexicalDeclContextIDForTemplateParmDecl)));
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000331 }
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000332}
333
Sebastian Redld527cc02010-08-18 23:56:48 +0000334void ASTDeclReader::VisitDecl(Decl *D) {
Douglas Gregor67da6f62011-03-05 01:35:54 +0000335 if (D->isTemplateParameter()) {
336 // We don't want to deserialize the DeclContext of a template
337 // parameter immediately, because the template parameter might be
338 // used in the formulation of its DeclContext. Use the translation
339 // unit DeclContext as a placeholder.
Douglas Gregor409448c2011-07-21 22:35:25 +0000340 DeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
341 LexicalDeclContextIDForTemplateParmDecl = ReadDeclID(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000342 D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
Douglas Gregor67da6f62011-03-05 01:35:54 +0000343 } else {
Douglas Gregor409448c2011-07-21 22:35:25 +0000344 D->setDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
345 D->setLexicalDeclContext(ReadDeclAs<DeclContext>(Record, Idx));
Douglas Gregor67da6f62011-03-05 01:35:54 +0000346 }
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +0000347 D->setLocation(Reader.ReadSourceLocation(F, RawLocation));
Chris Lattner698f9252009-04-27 05:27:42 +0000348 D->setInvalidDecl(Record[Idx++]);
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000349 if (Record[Idx++]) { // hasAttrs
Sean Huntcf807c42010-08-18 23:23:40 +0000350 AttrVec Attrs;
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +0000351 Reader.ReadAttributes(F, Attrs, Record, Idx);
Sean Huntcf807c42010-08-18 23:23:40 +0000352 D->setAttrs(Attrs);
353 }
Chris Lattner698f9252009-04-27 05:27:42 +0000354 D->setImplicit(Record[Idx++]);
Douglas Gregore0762c92009-06-19 23:52:42 +0000355 D->setUsed(Record[Idx++]);
Argyrios Kyrtzidis6b6b42a2011-04-19 19:51:10 +0000356 D->setReferenced(Record[Idx++]);
Argyrios Kyrtzidisc14a03d2011-11-23 20:27:36 +0000357 D->TopLevelDeclInObjCContainer = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000358 D->setAccess((AccessSpecifier)Record[Idx++]);
Douglas Gregor08e0bc12011-09-10 00:09:20 +0000359 D->FromASTFile = true;
Douglas Gregor8d267c52011-09-09 02:06:17 +0000360 D->ModulePrivate = Record[Idx++];
Douglas Gregorecc2c092011-12-01 22:20:10 +0000361
362 // Determine whether this declaration is part of a (sub)module. If so, it
363 // may not yet be visible.
364 if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) {
365 // Module-private declarations are never visible, so there is no work to do.
366 if (!D->ModulePrivate) {
367 if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
368 if (Owner->NameVisibility != Module::AllVisible) {
369 // The owning module is not visible. Mark this declaration as
370 // module-private,
371 D->ModulePrivate = true;
372
373 // Note that this declaration was hidden because its owning module is
374 // not yet visible.
375 Reader.HiddenNamesMap[Owner].push_back(D);
376 }
377 }
378 }
379 }
Chris Lattner698f9252009-04-27 05:27:42 +0000380}
381
Sebastian Redld527cc02010-08-18 23:56:48 +0000382void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +0000383 llvm_unreachable("Translation units are not serialized");
Chris Lattner698f9252009-04-27 05:27:42 +0000384}
385
Sebastian Redld527cc02010-08-18 23:56:48 +0000386void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) {
Chris Lattner698f9252009-04-27 05:27:42 +0000387 VisitDecl(ND);
Douglas Gregor393f2492011-07-22 00:38:23 +0000388 ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000389}
390
Sebastian Redld527cc02010-08-18 23:56:48 +0000391void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000392 VisitNamedDecl(TD);
Abramo Bagnara344577e2011-03-06 15:48:19 +0000393 TD->setLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000394 // Delay type reading until after we have fully initialized the decl.
Douglas Gregor393f2492011-07-22 00:38:23 +0000395 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000396}
397
Douglas Gregor0f456822011-12-19 14:40:25 +0000398void ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) {
Douglas Gregora1be2782011-12-17 23:38:30 +0000399 VisitRedeclarable(TD);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000400 VisitTypeDecl(TD);
Douglas Gregor0f456822011-12-19 14:40:25 +0000401 TD->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
402}
403
404void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
405 VisitTypedefNameDecl(TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000406}
407
Richard Smith162e1c12011-04-15 14:24:37 +0000408void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) {
Douglas Gregor0f456822011-12-19 14:40:25 +0000409 VisitTypedefNameDecl(TD);
Richard Smith162e1c12011-04-15 14:24:37 +0000410}
411
Sebastian Redld527cc02010-08-18 23:56:48 +0000412void ASTDeclReader::VisitTagDecl(TagDecl *TD) {
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000413 VisitRedeclarable(TD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000414 VisitTypeDecl(TD);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000415 TD->IdentifierNamespace = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000416 TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
John McCall5e1cdac2011-10-07 06:10:15 +0000417 TD->setCompleteDefinition(Record[Idx++]);
Douglas Gregorb37b6482010-02-12 17:40:34 +0000418 TD->setEmbeddedInDeclarator(Record[Idx++]);
Argyrios Kyrtzidis717a20b2011-09-30 22:11:31 +0000419 TD->setFreeStanding(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000420 TD->setRBraceLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000421 if (Record[Idx++]) { // hasExtInfo
Douglas Gregor35942772011-09-09 21:34:22 +0000422 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000423 ReadQualifierInfo(*Info, Record, Idx);
Richard Smith162e1c12011-04-15 14:24:37 +0000424 TD->TypedefNameDeclOrQualifier = Info;
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000425 } else
Douglas Gregor409448c2011-07-21 22:35:25 +0000426 TD->setTypedefNameForAnonDecl(ReadDeclAs<TypedefNameDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000427}
428
Sebastian Redld527cc02010-08-18 23:56:48 +0000429void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) {
Chris Lattner698f9252009-04-27 05:27:42 +0000430 VisitTagDecl(ED);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000431 if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx))
432 ED->setIntegerTypeSourceInfo(TI);
433 else
Douglas Gregor393f2492011-07-22 00:38:23 +0000434 ED->setIntegerType(Reader.readType(F, Record, Idx));
435 ED->setPromotionType(Reader.readType(F, Record, Idx));
John McCall1b5a6182010-05-06 08:49:23 +0000436 ED->setNumPositiveBits(Record[Idx++]);
437 ED->setNumNegativeBits(Record[Idx++]);
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000438 ED->IsScoped = Record[Idx++];
Abramo Bagnaraa88cefd2010-12-03 18:54:17 +0000439 ED->IsScopedUsingClassTag = Record[Idx++];
Douglas Gregor1274ccd2010-10-08 23:50:27 +0000440 ED->IsFixed = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +0000441 ED->setInstantiationOfMemberEnum(ReadDeclAs<EnumDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000442}
443
Sebastian Redld527cc02010-08-18 23:56:48 +0000444void ASTDeclReader::VisitRecordDecl(RecordDecl *RD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000445 VisitTagDecl(RD);
446 RD->setHasFlexibleArrayMember(Record[Idx++]);
447 RD->setAnonymousStructOrUnion(Record[Idx++]);
Fariborz Jahanian643b7df2009-07-08 16:37:44 +0000448 RD->setHasObjectMember(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000449}
450
Sebastian Redld527cc02010-08-18 23:56:48 +0000451void ASTDeclReader::VisitValueDecl(ValueDecl *VD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000452 VisitNamedDecl(VD);
Douglas Gregor393f2492011-07-22 00:38:23 +0000453 VD->setType(Reader.readType(F, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000454}
455
Sebastian Redld527cc02010-08-18 23:56:48 +0000456void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000457 VisitValueDecl(ECD);
458 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +0000459 ECD->setInitExpr(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000460 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
461}
462
Sebastian Redld527cc02010-08-18 23:56:48 +0000463void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000464 VisitValueDecl(DD);
Abramo Bagnaraff676cb2011-03-08 08:55:46 +0000465 DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000466 if (Record[Idx++]) { // hasExtInfo
467 DeclaratorDecl::ExtInfo *Info
Douglas Gregor35942772011-09-09 21:34:22 +0000468 = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000469 ReadQualifierInfo(*Info, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000470 DD->DeclInfo = Info;
Jonathan D. Turner953c5642011-06-03 23:11:16 +0000471 }
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000472}
473
Sebastian Redld527cc02010-08-18 23:56:48 +0000474void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000475 VisitRedeclarable(FD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000476 VisitDeclaratorDecl(FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000477
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000478 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx);
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000479 FD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000480 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
David Blaikieb219cfc2011-09-23 05:06:16 +0000481 default: llvm_unreachable("Unhandled TemplatedKind!");
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000482 case FunctionDecl::TK_NonTemplate:
483 break;
484 case FunctionDecl::TK_FunctionTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +0000485 FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record,
486 Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000487 break;
488 case FunctionDecl::TK_MemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000489 FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000490 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000491 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000492 FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000493 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
494 break;
495 }
496 case FunctionDecl::TK_FunctionTemplateSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000497 FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record,
498 Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000499 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
500
501 // Template arguments.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000502 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +0000503 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000504
505 // Template args as written.
Chris Lattner5f9e2722011-07-23 10:55:15 +0000506 SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000507 SourceLocation LAngleLoc, RAngleLoc;
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000508 bool HasTemplateArgumentsAsWritten = Record[Idx++];
509 if (HasTemplateArgumentsAsWritten) {
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000510 unsigned NumTemplateArgLocs = Record[Idx++];
511 TemplArgLocs.reserve(NumTemplateArgLocs);
512 for (unsigned i=0; i != NumTemplateArgLocs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000513 TemplArgLocs.push_back(
Sebastian Redlc3632732010-10-05 15:59:54 +0000514 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000515
Sebastian Redlc3632732010-10-05 15:59:54 +0000516 LAngleLoc = ReadSourceLocation(Record, Idx);
517 RAngleLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000518 }
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000519
Sebastian Redlc3632732010-10-05 15:59:54 +0000520 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000521
Douglas Gregor35942772011-09-09 21:34:22 +0000522 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000523 TemplateArgumentList *TemplArgList
Douglas Gregor910f8002010-11-07 23:05:16 +0000524 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size());
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000525 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000526 for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i)
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000527 TemplArgsInfo.addArgument(TemplArgLocs[i]);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000528 FunctionTemplateSpecializationInfo *FTInfo
529 = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK,
530 TemplArgList,
Argyrios Kyrtzidis71a76052011-09-22 20:07:09 +0000531 HasTemplateArgumentsAsWritten ? &TemplArgsInfo : 0,
532 POI);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000533 FD->TemplateOrSpecialization = FTInfo;
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000534
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000535 if (FD->isCanonicalDecl()) { // if canonical add to template's set.
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000536 // The template that contains the specializations set. It's not safe to
537 // use getCanonicalDecl on Template since it may still be initializing.
538 FunctionTemplateDecl *CanonTemplate
Douglas Gregor409448c2011-07-21 22:35:25 +0000539 = ReadDeclAs<FunctionTemplateDecl>(Record, Idx);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000540 // Get the InsertPos by FindNodeOrInsertPos() instead of calling
541 // InsertNode(FTInfo) directly to avoid the getASTContext() call in
542 // FunctionTemplateSpecializationInfo's Profile().
543 // We avoid getASTContext because a decl in the parent hierarchy may
544 // be initializing.
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000545 llvm::FoldingSetNodeID ID;
546 FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs.data(),
547 TemplArgs.size(), C);
548 void *InsertPos = 0;
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000549 CanonTemplate->getSpecializations().FindNodeOrInsertPos(ID, InsertPos);
Argyrios Kyrtzidisa626a3d2010-09-09 11:28:23 +0000550 assert(InsertPos && "Another specialization already inserted!");
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +0000551 CanonTemplate->getSpecializations().InsertNode(FTInfo, InsertPos);
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000552 }
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000553 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000554 }
555 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
556 // Templates.
557 UnresolvedSet<8> TemplDecls;
558 unsigned NumTemplates = Record[Idx++];
559 while (NumTemplates--)
Douglas Gregor409448c2011-07-21 22:35:25 +0000560 TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000561
562 // Templates args.
563 TemplateArgumentListInfo TemplArgs;
564 unsigned NumArgs = Record[Idx++];
565 while (NumArgs--)
Sebastian Redlc3632732010-10-05 15:59:54 +0000566 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx));
567 TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx));
568 TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000569
Douglas Gregor35942772011-09-09 21:34:22 +0000570 FD->setDependentTemplateSpecialization(Reader.getContext(),
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000571 TemplDecls, TemplArgs);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000572 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000573 }
574 }
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000575
Sebastian Redld527cc02010-08-18 23:56:48 +0000576 // FunctionDecl's body is handled last at ASTDeclReader::Visit,
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000577 // after everything else is read.
578
Douglas Gregor381d34e2010-12-06 18:36:25 +0000579 FD->SClass = (StorageClass)Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000580 FD->SClassAsWritten = (StorageClass)Record[Idx++];
Douglas Gregor8f150942010-12-09 16:59:22 +0000581 FD->IsInline = Record[Idx++];
582 FD->IsInlineSpecified = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000583 FD->IsVirtualAsWritten = Record[Idx++];
584 FD->IsPure = Record[Idx++];
585 FD->HasInheritedPrototype = Record[Idx++];
586 FD->HasWrittenPrototype = Record[Idx++];
587 FD->IsDeleted = Record[Idx++];
588 FD->IsTrivial = Record[Idx++];
Sean Hunt2be7e902011-05-12 22:46:29 +0000589 FD->IsDefaulted = Record[Idx++];
590 FD->IsExplicitlyDefaulted = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000591 FD->HasImplicitReturnZero = Record[Idx++];
Richard Smithaf1fc7a2011-08-15 21:04:07 +0000592 FD->IsConstexpr = Record[Idx++];
Argyrios Kyrtzidis20df8e72011-01-03 17:57:40 +0000593 FD->EndRangeLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000594
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000595 // Read in the parameters.
Chris Lattner698f9252009-04-27 05:27:42 +0000596 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000597 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000598 Params.reserve(NumParams);
599 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000600 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000601 FD->setParams(Reader.getContext(), Params);
Chris Lattner698f9252009-04-27 05:27:42 +0000602}
603
Sebastian Redld527cc02010-08-18 23:56:48 +0000604void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000605 VisitNamedDecl(MD);
606 if (Record[Idx++]) {
607 // In practice, this won't be executed (since method definitions
608 // don't occur in header files).
Sebastian Redlc3632732010-10-05 15:59:54 +0000609 MD->setBody(Reader.ReadStmt(F));
Douglas Gregor409448c2011-07-21 22:35:25 +0000610 MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
611 MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000612 }
613 MD->setInstanceMethod(Record[Idx++]);
614 MD->setVariadic(Record[Idx++]);
615 MD->setSynthesized(Record[Idx++]);
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000616 MD->setDefined(Record[Idx++]);
Argyrios Kyrtzidis72b26252011-10-14 17:41:52 +0000617
618 MD->IsRedeclaration = Record[Idx++];
619 MD->HasRedeclaration = Record[Idx++];
620 if (MD->HasRedeclaration)
621 Reader.getContext().setObjCMethodRedeclaration(MD,
622 ReadDeclAs<ObjCMethodDecl>(Record, Idx));
623
Chris Lattner698f9252009-04-27 05:27:42 +0000624 MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
625 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
Douglas Gregor926df6c2011-06-11 01:09:30 +0000626 MD->SetRelatedResultType(Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000627 MD->setResultType(Reader.readType(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000628 MD->setResultTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
629 MD->setEndLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000630 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000631 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000632 Params.reserve(NumParams);
633 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000634 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
Argyrios Kyrtzidis491306a2011-10-03 06:37:04 +0000635
636 MD->SelLocsKind = Record[Idx++];
637 unsigned NumStoredSelLocs = Record[Idx++];
638 SmallVector<SourceLocation, 16> SelLocs;
639 SelLocs.reserve(NumStoredSelLocs);
640 for (unsigned i = 0; i != NumStoredSelLocs; ++i)
641 SelLocs.push_back(ReadSourceLocation(Record, Idx));
642
643 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
Chris Lattner698f9252009-04-27 05:27:42 +0000644}
645
Sebastian Redld527cc02010-08-18 23:56:48 +0000646void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000647 VisitNamedDecl(CD);
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +0000648 CD->setAtStartLoc(ReadSourceLocation(Record, Idx));
649 CD->setAtEndRange(ReadSourceRange(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000650}
651
Sebastian Redld527cc02010-08-18 23:56:48 +0000652void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000653 // Record the declaration -> global ID mapping.
654 Reader.DeclToID[ID] = ThisDeclID;
655
Douglas Gregor0f753232011-12-22 01:48:48 +0000656 RedeclarableResult Redecl = VisitRedeclarable(ID);
Chris Lattner698f9252009-04-27 05:27:42 +0000657 VisitObjCContainerDecl(ID);
Douglas Gregor0af55012011-12-16 03:12:41 +0000658 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]);
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000659
Douglas Gregor0f753232011-12-22 01:48:48 +0000660 // Determine whether we need to merge this declaration with another @interface
661 // with the same name.
662 // FIXME: Not needed unless the module file graph is a DAG.
663 if (FindExistingResult ExistingRes = findExisting(ID)) {
664 if (ObjCInterfaceDecl *Existing = ExistingRes) {
665 ObjCInterfaceDecl *ExistingCanon = Existing->getCanonicalDecl();
666 ObjCInterfaceDecl *IDCanon = ID->getCanonicalDecl();
667 if (ExistingCanon != IDCanon) {
668 // Have our redeclaration link point back at the canonical declaration
669 // of the existing declaration, so that this declaration has the
670 // appropriate canonical declaration.
671 ID->RedeclLink = ObjCInterfaceDecl::PreviousDeclLink(ExistingCanon);
672
Douglas Gregorcce54aa2011-12-22 19:44:59 +0000673 // Don't introduce IDCanon into the set of pending declaration chains.
674 Redecl.suppress();
675
676 // Introduce ExistingCanon into the set of pending declaration chains,
677 // if in fact it came from a module file.
678 if (ExistingCanon->isFromASTFile()) {
679 GlobalDeclID ExistingCanonID = Reader.DeclToID[ExistingCanon];
680 assert(ExistingCanonID && "Unrecorded canonical declaration ID?");
681 if (Reader.PendingDeclChainsKnown.insert(ExistingCanonID))
682 Reader.PendingDeclChains.push_back(ExistingCanonID);
683 }
684
Douglas Gregor0f753232011-12-22 01:48:48 +0000685 // If this declaration was the canonical declaration, make a note of
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +0000686 // that. We accept the linear algorithm here because the number of
687 // unique canonical declarations of an entity should always be tiny.
688 if (IDCanon == ID) {
689 SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon];
690 if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID())
691 == Merged.end())
692 Merged.push_back(Redecl.getFirstID());
693 }
Douglas Gregor0f753232011-12-22 01:48:48 +0000694 }
695 }
696 }
697
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000698 ObjCInterfaceDecl *Def = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
699 if (ID == Def) {
700 // Read the definition.
701 ID->allocateDefinitionData();
702
703 ObjCInterfaceDecl::DefinitionData &Data = ID->data();
704
705 // Read the superclass.
706 Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
707 Data.SuperClassLoc = ReadSourceLocation(Record, Idx);
708
Douglas Gregor05c272f2011-12-15 22:34:59 +0000709 Data.EndLoc = ReadSourceLocation(Record, Idx);
710
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000711 // Read the directly referenced protocols and their SourceLocations.
712 unsigned NumProtocols = Record[Idx++];
713 SmallVector<ObjCProtocolDecl *, 16> Protocols;
714 Protocols.reserve(NumProtocols);
715 for (unsigned I = 0; I != NumProtocols; ++I)
716 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
717 SmallVector<SourceLocation, 16> ProtoLocs;
718 ProtoLocs.reserve(NumProtocols);
719 for (unsigned I = 0; I != NumProtocols; ++I)
720 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
721 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
722 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000723
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000724 // Read the transitive closure of protocols referenced by this class.
725 NumProtocols = Record[Idx++];
726 Protocols.clear();
727 Protocols.reserve(NumProtocols);
728 for (unsigned I = 0; I != NumProtocols; ++I)
729 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
730 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols,
731 Reader.getContext());
Ted Kremenek53b94412010-09-01 01:21:15 +0000732
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000733 // Read the ivars.
734 unsigned NumIvars = Record[Idx++];
735 SmallVector<ObjCIvarDecl *, 16> IVars;
736 IVars.reserve(NumIvars);
737 for (unsigned I = 0; I != NumIvars; ++I)
738 IVars.push_back(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
739
740 // Read the categories.
741 ID->setCategoryList(ReadDeclAs<ObjCCategoryDecl>(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000742
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000743 // We will rebuild this list lazily.
744 ID->setIvarList(0);
745
Douglas Gregor21cf08b2011-12-19 20:51:16 +0000746 // Note that we have deserialized a definition.
747 Reader.PendingDefinitions.insert(ID);
748 } else if (Def && Def->Data) {
749 ID->Data = Def->Data;
Douglas Gregor2e5c15b2011-12-15 05:27:12 +0000750 }
Chris Lattner698f9252009-04-27 05:27:42 +0000751}
752
Sebastian Redld527cc02010-08-18 23:56:48 +0000753void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000754 VisitFieldDecl(IVD);
755 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
Fariborz Jahanian2c18bb72010-08-20 21:21:08 +0000756 // This field will be built lazily.
757 IVD->setNextIvar(0);
Fariborz Jahanianac0021b2010-07-17 18:35:47 +0000758 bool synth = Record[Idx++];
759 IVD->setSynthesize(synth);
Chris Lattner698f9252009-04-27 05:27:42 +0000760}
761
Sebastian Redld527cc02010-08-18 23:56:48 +0000762void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000763 VisitObjCContainerDecl(PD);
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +0000764 PD->InitiallyForwardDecl = Record[Idx++];
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +0000765 PD->isForwardProtoDecl = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000766 PD->setLocEnd(ReadSourceLocation(Record, Idx));
Douglas Gregor5e2a1ff2012-01-01 19:29:29 +0000767
768 ObjCProtocolDecl *Def = ReadDeclAs<ObjCProtocolDecl>(Record, Idx);
769 if (PD == Def) {
770 // Read the definition.
771 PD->allocateDefinitionData();
772
773 unsigned NumProtoRefs = Record[Idx++];
774 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
775 ProtoRefs.reserve(NumProtoRefs);
776 for (unsigned I = 0; I != NumProtoRefs; ++I)
777 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
778 SmallVector<SourceLocation, 16> ProtoLocs;
779 ProtoLocs.reserve(NumProtoRefs);
780 for (unsigned I = 0; I != NumProtoRefs; ++I)
781 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
782 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
783 Reader.getContext());
784
785 // FIXME: Note that we have deserialized a definition.
786 // Reader.PendingDefinitions.insert(PD);
787 } else if (Def && Def->Data) {
788 PD->Data = Def->Data;
789 }
Chris Lattner698f9252009-04-27 05:27:42 +0000790}
791
Sebastian Redld527cc02010-08-18 23:56:48 +0000792void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000793 VisitFieldDecl(FD);
794}
795
Sebastian Redld527cc02010-08-18 23:56:48 +0000796void ASTDeclReader::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *FPD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000797 VisitDecl(FPD);
798 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000799 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000800 ProtoRefs.reserve(NumProtoRefs);
801 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000802 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000803 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000804 ProtoLocs.reserve(NumProtoRefs);
805 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000806 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000807 FPD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000808 Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000809}
810
Sebastian Redld527cc02010-08-18 23:56:48 +0000811void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000812 VisitObjCContainerDecl(CD);
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000813 CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000814 unsigned NumProtoRefs = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000815 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
Chris Lattner698f9252009-04-27 05:27:42 +0000816 ProtoRefs.reserve(NumProtoRefs);
817 for (unsigned I = 0; I != NumProtoRefs; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000818 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Chris Lattner5f9e2722011-07-23 10:55:15 +0000819 SmallVector<SourceLocation, 16> ProtoLocs;
Douglas Gregor18df52b2010-01-16 15:02:53 +0000820 ProtoLocs.reserve(NumProtoRefs);
821 for (unsigned I = 0; I != NumProtoRefs; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000822 ProtoLocs.push_back(ReadSourceLocation(Record, Idx));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000823 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
Douglas Gregor35942772011-09-09 21:34:22 +0000824 Reader.getContext());
Argyrios Kyrtzidis955fadb2011-08-30 19:43:26 +0000825 CD->NextClassCategory = ReadDeclAs<ObjCCategoryDecl>(Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000826 CD->setHasSynthBitfield(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000827 CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000828}
829
Sebastian Redld527cc02010-08-18 23:56:48 +0000830void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000831 VisitNamedDecl(CAD);
Douglas Gregor409448c2011-07-21 22:35:25 +0000832 CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000833}
834
Sebastian Redld527cc02010-08-18 23:56:48 +0000835void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000836 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000837 D->setAtLoc(ReadSourceLocation(Record, Idx));
838 D->setType(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000839 // FIXME: stable encoding
840 D->setPropertyAttributes(
841 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000842 D->setPropertyAttributesAsWritten(
843 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000844 // FIXME: stable encoding
845 D->setPropertyImplementation(
846 (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
Douglas Gregor393f2492011-07-22 00:38:23 +0000847 D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
848 D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector());
Douglas Gregor409448c2011-07-21 22:35:25 +0000849 D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
850 D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
851 D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000852}
853
Sebastian Redld527cc02010-08-18 23:56:48 +0000854void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
Argyrios Kyrtzidisaecae622009-07-27 19:04:32 +0000855 VisitObjCContainerDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000856 D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000857}
858
Sebastian Redld527cc02010-08-18 23:56:48 +0000859void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000860 VisitObjCImplDecl(D);
Douglas Gregor95eab172011-07-28 20:55:49 +0000861 D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx));
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +0000862 D->CategoryNameLoc = ReadSourceLocation(Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000863}
864
Sebastian Redld527cc02010-08-18 23:56:48 +0000865void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000866 VisitObjCImplDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +0000867 D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000868 llvm::tie(D->IvarInitializers, D->NumIvarInitializers)
Sean Huntcbb67482011-01-08 20:30:50 +0000869 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Fariborz Jahanian000835d2010-08-23 18:51:39 +0000870 D->setHasSynthBitfield(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000871}
872
873
Sebastian Redld527cc02010-08-18 23:56:48 +0000874void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +0000875 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +0000876 D->setAtLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000877 D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx));
878 D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx);
Douglas Gregora4ffd852010-11-17 01:03:52 +0000879 D->IvarLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +0000880 D->setGetterCXXConstructor(Reader.ReadExpr(F));
881 D->setSetterCXXAssignment(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000882}
883
Sebastian Redld527cc02010-08-18 23:56:48 +0000884void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000885 VisitDeclaratorDecl(FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000886 FD->setMutable(Record[Idx++]);
Richard Smith7a614d82011-06-11 17:19:42 +0000887 int BitWidthOrInitializer = Record[Idx++];
888 if (BitWidthOrInitializer == 1)
Sebastian Redlc3632732010-10-05 15:59:54 +0000889 FD->setBitWidth(Reader.ReadExpr(F));
Richard Smith7a614d82011-06-11 17:19:42 +0000890 else if (BitWidthOrInitializer == 2)
891 FD->setInClassInitializer(Reader.ReadExpr(F));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000892 if (!FD->getDeclName()) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000893 if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +0000894 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000895 }
Chris Lattner698f9252009-04-27 05:27:42 +0000896}
897
Francois Pichet87c2e122010-11-21 06:08:52 +0000898void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) {
899 VisitValueDecl(FD);
900
901 FD->ChainingSize = Record[Idx++];
902 assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
Douglas Gregor35942772011-09-09 21:34:22 +0000903 FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
Francois Pichet87c2e122010-11-21 06:08:52 +0000904
905 for (unsigned I = 0; I != FD->ChainingSize; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000906 FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx);
Francois Pichet87c2e122010-11-21 06:08:52 +0000907}
908
Sebastian Redld527cc02010-08-18 23:56:48 +0000909void ASTDeclReader::VisitVarDecl(VarDecl *VD) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +0000910 VisitRedeclarable(VD);
Douglas Gregord488b3a2011-10-26 17:53:41 +0000911 VisitDeclaratorDecl(VD);
John McCallf1e4fbf2011-05-01 02:13:58 +0000912 VD->VarDeclBits.SClass = (StorageClass)Record[Idx++];
913 VD->VarDeclBits.SClassAsWritten = (StorageClass)Record[Idx++];
914 VD->VarDeclBits.ThreadSpecified = Record[Idx++];
915 VD->VarDeclBits.HasCXXDirectInit = Record[Idx++];
916 VD->VarDeclBits.ExceptionVar = Record[Idx++];
917 VD->VarDeclBits.NRVOVariable = Record[Idx++];
918 VD->VarDeclBits.CXXForRangeDecl = Record[Idx++];
John McCall7acddac2011-06-17 06:42:21 +0000919 VD->VarDeclBits.ARCPseudoStrong = Record[Idx++];
Richard Smith099e7f62011-12-19 06:19:21 +0000920 if (uint64_t Val = Record[Idx++]) {
Sebastian Redlc3632732010-10-05 15:59:54 +0000921 VD->setInit(Reader.ReadExpr(F));
Richard Smith099e7f62011-12-19 06:19:21 +0000922 if (Val > 1) {
923 EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
924 Eval->CheckedICE = true;
925 Eval->IsICE = Val == 3;
926 }
927 }
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000928
929 if (Record[Idx++]) { // HasMemberSpecializationInfo.
Douglas Gregor409448c2011-07-21 22:35:25 +0000930 VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000931 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000932 SourceLocation POI = ReadSourceLocation(Record, Idx);
Douglas Gregor35942772011-09-09 21:34:22 +0000933 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000934 }
Chris Lattner698f9252009-04-27 05:27:42 +0000935}
936
Sebastian Redld527cc02010-08-18 23:56:48 +0000937void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000938 VisitVarDecl(PD);
939}
940
Sebastian Redld527cc02010-08-18 23:56:48 +0000941void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000942 VisitVarDecl(PD);
John McCall70798862011-05-02 00:30:12 +0000943 unsigned isObjCMethodParam = Record[Idx++];
944 unsigned scopeDepth = Record[Idx++];
945 unsigned scopeIndex = Record[Idx++];
946 unsigned declQualifier = Record[Idx++];
947 if (isObjCMethodParam) {
948 assert(scopeDepth == 0);
949 PD->setObjCMethodScopeInfo(scopeIndex);
950 PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
951 } else {
952 PD->setScopeInfo(scopeDepth, scopeIndex);
953 }
John McCallf1e4fbf2011-05-01 02:13:58 +0000954 PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++];
955 PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++];
Argyrios Kyrtzidis691d77f2010-07-04 21:44:07 +0000956 if (Record[Idx++]) // hasUninstantiatedDefaultArg.
Sebastian Redlc3632732010-10-05 15:59:54 +0000957 PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F));
Chris Lattner698f9252009-04-27 05:27:42 +0000958}
959
Sebastian Redld527cc02010-08-18 23:56:48 +0000960void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000961 VisitDecl(AD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000962 AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F)));
Abramo Bagnara21e006e2011-03-03 14:20:18 +0000963 AD->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000964}
965
Sebastian Redld527cc02010-08-18 23:56:48 +0000966void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) {
Chris Lattner698f9252009-04-27 05:27:42 +0000967 VisitDecl(BD);
Sebastian Redlc3632732010-10-05 15:59:54 +0000968 BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F)));
969 BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000970 unsigned NumParams = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000971 SmallVector<ParmVarDecl *, 16> Params;
Chris Lattner698f9252009-04-27 05:27:42 +0000972 Params.reserve(NumParams);
973 for (unsigned I = 0; I != NumParams; ++I)
Douglas Gregor409448c2011-07-21 22:35:25 +0000974 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx));
David Blaikie4278c652011-09-21 18:16:56 +0000975 BD->setParams(Params);
John McCall469a1eb2011-02-02 13:00:07 +0000976
977 bool capturesCXXThis = Record[Idx++];
John McCall6b5a61b2011-02-07 10:33:21 +0000978 unsigned numCaptures = Record[Idx++];
Chris Lattner5f9e2722011-07-23 10:55:15 +0000979 SmallVector<BlockDecl::Capture, 16> captures;
John McCall6b5a61b2011-02-07 10:33:21 +0000980 captures.reserve(numCaptures);
981 for (unsigned i = 0; i != numCaptures; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000982 VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx);
John McCall6b5a61b2011-02-07 10:33:21 +0000983 unsigned flags = Record[Idx++];
984 bool byRef = (flags & 1);
985 bool nested = (flags & 2);
986 Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : 0);
987
988 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
989 }
Douglas Gregor35942772011-09-09 21:34:22 +0000990 BD->setCaptures(Reader.getContext(), captures.begin(),
John McCall6b5a61b2011-02-07 10:33:21 +0000991 captures.end(), capturesCXXThis);
Chris Lattner698f9252009-04-27 05:27:42 +0000992}
993
Sebastian Redld527cc02010-08-18 23:56:48 +0000994void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000995 VisitDecl(D);
996 D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
Abramo Bagnaraa2026c92011-03-08 16:41:52 +0000997 D->setExternLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara5f6bcbe2011-03-03 14:52:38 +0000998 D->setRBraceLoc(ReadSourceLocation(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000999}
1000
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001001void ASTDeclReader::VisitLabelDecl(LabelDecl *D) {
1002 VisitNamedDecl(D);
Abramo Bagnara67843042011-03-05 18:21:20 +00001003 D->setLocStart(ReadSourceLocation(Record, Idx));
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001004}
1005
1006
Sebastian Redld527cc02010-08-18 23:56:48 +00001007void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001008 VisitNamedDecl(D);
Douglas Gregor0a0c3e72010-10-05 20:41:58 +00001009 D->IsInline = Record[Idx++];
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00001010 D->LocStart = ReadSourceLocation(Record, Idx);
1011 D->RBraceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor06c91932010-10-27 19:49:05 +00001012 D->NextNamespace = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001013
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001014 bool IsOriginal = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001015 // FIXME: Modules will likely have trouble with pointing directly at
1016 // the original namespace.
Argyrios Kyrtzidisa038c1d2010-07-03 07:57:53 +00001017 D->OrigOrAnonNamespace.setInt(IsOriginal);
Douglas Gregor409448c2011-07-21 22:35:25 +00001018 D->OrigOrAnonNamespace.setPointer(ReadDeclAs<NamespaceDecl>(Record, Idx));
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001019}
1020
Sebastian Redld527cc02010-08-18 23:56:48 +00001021void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001022 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001023 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00001024 D->IdentLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001025 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001026 D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001027}
1028
Sebastian Redld527cc02010-08-18 23:56:48 +00001029void ASTDeclReader::VisitUsingDecl(UsingDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001030 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001031 D->setUsingLocation(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001032 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001033 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001034 D->FirstUsingShadow = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001035 D->setTypeName(Record[Idx++]);
Douglas Gregor409448c2011-07-21 22:35:25 +00001036 if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001037 Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001038}
1039
Sebastian Redld527cc02010-08-18 23:56:48 +00001040void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001041 VisitNamedDecl(D);
Douglas Gregor409448c2011-07-21 22:35:25 +00001042 D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx));
1043 D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx);
1044 UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001045 if (Pattern)
Douglas Gregor35942772011-09-09 21:34:22 +00001046 Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001047}
1048
Sebastian Redld527cc02010-08-18 23:56:48 +00001049void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001050 VisitNamedDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001051 D->UsingLoc = ReadSourceLocation(Record, Idx);
1052 D->NamespaceLoc = ReadSourceLocation(Record, Idx);
Douglas Gregordb992412011-02-25 16:33:46 +00001053 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001054 D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx);
1055 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001056}
1057
Sebastian Redld527cc02010-08-18 23:56:48 +00001058void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001059 VisitValueDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001060 D->setUsingLoc(ReadSourceLocation(Record, Idx));
Douglas Gregordc355712011-02-25 00:36:19 +00001061 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001062 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001063}
1064
Sebastian Redld527cc02010-08-18 23:56:48 +00001065void ASTDeclReader::VisitUnresolvedUsingTypenameDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001066 UnresolvedUsingTypenameDecl *D) {
1067 VisitTypeDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001068 D->TypenameLocation = ReadSourceLocation(Record, Idx);
Douglas Gregordc355712011-02-25 00:36:19 +00001069 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001070}
1071
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001072void ASTDeclReader::ReadCXXDefinitionData(
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001073 struct CXXRecordDecl::DefinitionData &Data,
1074 const RecordData &Record, unsigned &Idx) {
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001075 Data.UserDeclaredConstructor = Record[Idx++];
1076 Data.UserDeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001077 Data.UserDeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001078 Data.UserDeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001079 Data.UserDeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001080 Data.UserDeclaredDestructor = Record[Idx++];
1081 Data.Aggregate = Record[Idx++];
1082 Data.PlainOldData = Record[Idx++];
1083 Data.Empty = Record[Idx++];
1084 Data.Polymorphic = Record[Idx++];
1085 Data.Abstract = Record[Idx++];
Chandler Carruthec997dc2011-04-30 10:07:30 +00001086 Data.IsStandardLayout = Record[Idx++];
Chandler Carrutha8225442011-04-30 09:17:45 +00001087 Data.HasNoNonEmptyBases = Record[Idx++];
1088 Data.HasPrivateFields = Record[Idx++];
1089 Data.HasProtectedFields = Record[Idx++];
1090 Data.HasPublicFields = Record[Idx++];
Douglas Gregor2bb11012011-05-13 01:05:07 +00001091 Data.HasMutableFields = Record[Idx++];
Sean Hunt023df372011-05-09 18:22:59 +00001092 Data.HasTrivialDefaultConstructor = Record[Idx++];
Richard Smith6b8bc072011-08-10 18:11:37 +00001093 Data.HasConstexprNonCopyMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001094 Data.HasTrivialCopyConstructor = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001095 Data.HasTrivialMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001096 Data.HasTrivialCopyAssignment = Record[Idx++];
Chandler Carruth4d6e5a22011-04-23 23:10:33 +00001097 Data.HasTrivialMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001098 Data.HasTrivialDestructor = Record[Idx++];
Chandler Carruth9b6347c2011-04-24 02:49:34 +00001099 Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001100 Data.ComputedVisibleConversions = Record[Idx++];
Sean Huntcdee3fe2011-05-11 22:34:38 +00001101 Data.UserProvidedDefaultConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001102 Data.DeclaredDefaultConstructor = Record[Idx++];
1103 Data.DeclaredCopyConstructor = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001104 Data.DeclaredMoveConstructor = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001105 Data.DeclaredCopyAssignment = Record[Idx++];
Douglas Gregor58e97972011-09-06 16:38:46 +00001106 Data.DeclaredMoveAssignment = Record[Idx++];
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001107 Data.DeclaredDestructor = Record[Idx++];
Sebastian Redl14c36332011-08-31 13:59:56 +00001108 Data.FailedImplicitMoveConstructor = Record[Idx++];
1109 Data.FailedImplicitMoveAssignment = Record[Idx++];
Anders Carlssonfaa6afd2011-01-22 18:11:02 +00001110
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001111 Data.NumBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001112 if (Data.NumBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001113 Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001114 Data.NumVBases = Record[Idx++];
Douglas Gregor7c789c12010-10-29 22:39:52 +00001115 if (Data.NumVBases)
Douglas Gregore92b8a12011-08-04 00:01:48 +00001116 Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx);
Douglas Gregor7c789c12010-10-29 22:39:52 +00001117
Douglas Gregor409448c2011-07-21 22:35:25 +00001118 Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx);
1119 Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001120 assert(Data.Definition && "Data.Definition should be already set!");
Douglas Gregor409448c2011-07-21 22:35:25 +00001121 Data.FirstFriend = ReadDeclAs<FriendDecl>(Record, Idx);
Argyrios Kyrtzidisc01dc6f2010-10-24 17:26:27 +00001122}
1123
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001124void ASTDeclReader::InitializeCXXDefinitionData(CXXRecordDecl *D,
1125 CXXRecordDecl *DefinitionDecl,
1126 const RecordData &Record,
1127 unsigned &Idx) {
Douglas Gregor35942772011-09-09 21:34:22 +00001128 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis9703b0d2010-10-20 00:11:15 +00001129
Argyrios Kyrtzidis134db1f2010-10-24 17:26:31 +00001130 if (D == DefinitionDecl) {
1131 D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001132 ReadCXXDefinitionData(*D->DefinitionData, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001133
Douglas Gregorfc529f72011-12-19 19:00:47 +00001134 // Note that we have deserialized a definition.
1135 Reader.PendingDefinitions.insert(D);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00001136 } else if (DefinitionDecl && DefinitionDecl->DefinitionData) {
1137 D->DefinitionData = DefinitionDecl->DefinitionData;
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001138 }
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001139}
1140
1141void ASTDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
1142 VisitRecordDecl(D);
1143
Douglas Gregor409448c2011-07-21 22:35:25 +00001144 CXXRecordDecl *DefinitionDecl = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00001145 InitializeCXXDefinitionData(D, DefinitionDecl, Record, Idx);
1146
Douglas Gregor35942772011-09-09 21:34:22 +00001147 ASTContext &C = Reader.getContext();
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00001148
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001149 enum CXXRecKind {
1150 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
1151 };
1152 switch ((CXXRecKind)Record[Idx++]) {
1153 default:
David Blaikieb219cfc2011-09-23 05:06:16 +00001154 llvm_unreachable("Out of sync with ASTDeclWriter::VisitCXXRecordDecl?");
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001155 case CXXRecNotTemplate:
1156 break;
1157 case CXXRecTemplate:
Douglas Gregor409448c2011-07-21 22:35:25 +00001158 D->TemplateOrInstantiation = ReadDeclAs<ClassTemplateDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001159 break;
1160 case CXXRecMemberSpecialization: {
Douglas Gregor409448c2011-07-21 22:35:25 +00001161 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001162 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001163 SourceLocation POI = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis8b996b82010-09-13 11:45:25 +00001164 MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK);
1165 MSI->setPointOfInstantiation(POI);
1166 D->TemplateOrInstantiation = MSI;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001167 break;
1168 }
1169 }
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001170
1171 // Load the key function to avoid deserializing every method so we can
1172 // compute it.
John McCall5e1cdac2011-10-07 06:10:15 +00001173 if (D->IsCompleteDefinition) {
Douglas Gregor409448c2011-07-21 22:35:25 +00001174 if (CXXMethodDecl *Key = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Argyrios Kyrtzidis36d2fd42010-10-14 20:14:38 +00001175 C.KeyFunctions[D] = Key;
1176 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001177}
1178
Sebastian Redld527cc02010-08-18 23:56:48 +00001179void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001180 VisitFunctionDecl(D);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001181 unsigned NumOverridenMethods = Record[Idx++];
1182 while (NumOverridenMethods--) {
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001183 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
1184 // MD may be initializing.
Douglas Gregor409448c2011-07-21 22:35:25 +00001185 if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx))
Douglas Gregor35942772011-09-09 21:34:22 +00001186 Reader.getContext().addOverriddenMethod(D, MD);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +00001187 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001188}
1189
Sebastian Redld527cc02010-08-18 23:56:48 +00001190void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001191 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001192
1193 D->IsExplicitSpecified = Record[Idx++];
1194 D->ImplicitlyDefined = Record[Idx++];
Sean Huntcbb67482011-01-08 20:30:50 +00001195 llvm::tie(D->CtorInitializers, D->NumCtorInitializers)
1196 = Reader.ReadCXXCtorInitializers(F, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001197}
1198
Sebastian Redld527cc02010-08-18 23:56:48 +00001199void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001200 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001201
1202 D->ImplicitlyDefined = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001203 D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001204}
1205
Sebastian Redld527cc02010-08-18 23:56:48 +00001206void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001207 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +00001208 D->IsExplicitSpecified = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001209}
1210
Douglas Gregor15de72c2011-12-02 23:23:56 +00001211void ASTDeclReader::VisitImportDecl(ImportDecl *D) {
1212 VisitDecl(D);
1213 D->ImportedAndComplete.setPointer(readModule(Record, Idx));
1214 D->ImportedAndComplete.setInt(Record[Idx++]);
1215 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1);
1216 for (unsigned I = 0, N = Record.back(); I != N; ++I)
1217 StoredLocs[I] = ReadSourceLocation(Record, Idx);
1218 ++Idx;
1219}
1220
Sebastian Redld527cc02010-08-18 23:56:48 +00001221void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
Abramo Bagnara6206d532010-06-05 05:09:32 +00001222 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001223 D->setColonLoc(ReadSourceLocation(Record, Idx));
Abramo Bagnara6206d532010-06-05 05:09:32 +00001224}
1225
Sebastian Redld527cc02010-08-18 23:56:48 +00001226void ASTDeclReader::VisitFriendDecl(FriendDecl *D) {
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +00001227 VisitDecl(D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001228 if (Record[Idx++])
Sebastian Redlc3632732010-10-05 15:59:54 +00001229 D->Friend = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001230 else
Douglas Gregor409448c2011-07-21 22:35:25 +00001231 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Douglas Gregor69aecc62010-10-27 20:23:41 +00001232 D->NextFriend = Record[Idx++];
John McCall6102ca12010-10-16 06:59:13 +00001233 D->UnsupportedFriend = (Record[Idx++] != 0);
Sebastian Redlc3632732010-10-05 15:59:54 +00001234 D->FriendLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001235}
1236
Sebastian Redld527cc02010-08-18 23:56:48 +00001237void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001238 VisitDecl(D);
1239 unsigned NumParams = Record[Idx++];
1240 D->NumParams = NumParams;
1241 D->Params = new TemplateParameterList*[NumParams];
1242 for (unsigned i = 0; i != NumParams; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001243 D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001244 if (Record[Idx++]) // HasFriendDecl
Douglas Gregor409448c2011-07-21 22:35:25 +00001245 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001246 else
Sebastian Redlc3632732010-10-05 15:59:54 +00001247 D->Friend = GetTypeSourceInfo(Record, Idx);
1248 D->FriendLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001249}
1250
Sebastian Redld527cc02010-08-18 23:56:48 +00001251void ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001252 VisitNamedDecl(D);
1253
Douglas Gregor409448c2011-07-21 22:35:25 +00001254 NamedDecl *TemplatedDecl = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001255 TemplateParameterList* TemplateParams
Sebastian Redlc3632732010-10-05 15:59:54 +00001256 = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001257 D->init(TemplatedDecl, TemplateParams);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001258}
1259
Sebastian Redld527cc02010-08-18 23:56:48 +00001260void ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001261 // Initialize CommonOrPrev before VisitTemplateDecl so that getCommonPtr()
1262 // can be used while this is still initializing.
Douglas Gregorfc529f72011-12-19 19:00:47 +00001263 enum RedeclKind { FirstDeclaration, FirstInFile, PointsToPrevious };
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001264 RedeclKind Kind = (RedeclKind)Record[Idx++];
1265
1266 // Determine the first declaration ID.
1267 DeclID FirstDeclID;
1268 switch (Kind) {
1269 case FirstDeclaration: {
1270 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001271
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001272 // Since this is the first declaration of the template, fill in the
1273 // information for the 'common' pointer.
1274 if (D->CommonOrPrev.isNull()) {
1275 RedeclarableTemplateDecl::CommonBase *Common
1276 = D->newCommon(Reader.getContext());
1277 Common->Latest = D;
1278 D->CommonOrPrev = Common;
1279 }
Douglas Gregor0f753232011-12-22 01:48:48 +00001280
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001281 if (RedeclarableTemplateDecl *RTD
Douglas Gregor0f753232011-12-22 01:48:48 +00001282 = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001283 assert(RTD->getKind() == D->getKind() &&
1284 "InstantiatedFromMemberTemplate kind mismatch");
1285 D->setInstantiatedFromMemberTemplateImpl(RTD);
1286 if (Record[Idx++])
1287 D->setMemberSpecialization();
1288 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001289 break;
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001290 }
Douglas Gregorfc529f72011-12-19 19:00:47 +00001291
1292 case FirstInFile:
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001293 case PointsToPrevious: {
1294 FirstDeclID = ReadDeclID(Record, Idx);
1295 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1296
1297 RedeclarableTemplateDecl *FirstDecl
1298 = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(FirstDeclID));
1299
1300 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1301 // We temporarily set the first (canonical) declaration as the previous one
1302 // which is the one that matters and mark the real previous DeclID to be
1303 // loaded and attached later on.
1304 D->CommonOrPrev = FirstDecl;
1305
Douglas Gregorfc529f72011-12-19 19:00:47 +00001306 if (Kind == PointsToPrevious) {
1307 // Make a note that we need to wire up this declaration to its
1308 // previous declaration, later. We don't need to do this for the first
1309 // declaration in any given module file, because those will be wired
1310 // together later.
1311 Reader.PendingPreviousDecls.push_back(std::make_pair(D, PrevDeclID));
1312 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001313 break;
1314 }
1315 }
1316
Argyrios Kyrtzidis6b541512010-09-08 19:31:22 +00001317 VisitTemplateDecl(D);
1318 D->IdentifierNamespace = Record[Idx++];
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001319}
1320
Sebastian Redld527cc02010-08-18 23:56:48 +00001321void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001322 VisitRedeclarableTemplateDecl(D);
1323
1324 if (D->getPreviousDeclaration() == 0) {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001325 // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
1326 // the specializations.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001327 SmallVector<serialization::DeclID, 2> SpecIDs;
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001328 SpecIDs.push_back(0);
1329
1330 // Specializations.
1331 unsigned Size = Record[Idx++];
1332 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001333 for (unsigned I = 0; I != Size; ++I)
1334 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001335
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001336 // Partial specializations.
1337 Size = Record[Idx++];
1338 SpecIDs[0] += Size;
Douglas Gregor409448c2011-07-21 22:35:25 +00001339 for (unsigned I = 0; I != Size; ++I)
1340 SpecIDs.push_back(ReadDeclID(Record, Idx));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001341
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001342 if (SpecIDs[0]) {
1343 typedef serialization::DeclID DeclID;
1344
1345 ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr();
1346 CommonPtr->LazySpecializations
Douglas Gregor35942772011-09-09 21:34:22 +00001347 = new (Reader.getContext()) DeclID [SpecIDs.size()];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001348 memcpy(CommonPtr->LazySpecializations, SpecIDs.data(),
1349 SpecIDs.size() * sizeof(DeclID));
1350 }
1351
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001352 // InjectedClassNameType is computed.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001353 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001354}
1355
Sebastian Redld527cc02010-08-18 23:56:48 +00001356void ASTDeclReader::VisitClassTemplateSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001357 ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001358 VisitCXXRecordDecl(D);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001359
Douglas Gregor35942772011-09-09 21:34:22 +00001360 ASTContext &C = Reader.getContext();
Douglas Gregor409448c2011-07-21 22:35:25 +00001361 if (Decl *InstD = ReadDecl(Record, Idx)) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001362 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001363 D->SpecializedTemplate = CTD;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001364 } else {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001365 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001366 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001367 TemplateArgumentList *ArgList
Douglas Gregor910f8002010-11-07 23:05:16 +00001368 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1369 TemplArgs.size());
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001370 ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS
1371 = new (C) ClassTemplateSpecializationDecl::
1372 SpecializedPartialSpecialization();
1373 PS->PartialSpecialization
1374 = cast<ClassTemplatePartialSpecializationDecl>(InstD);
1375 PS->TemplateArgs = ArgList;
1376 D->SpecializedTemplate = PS;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001377 }
1378 }
1379
1380 // Explicit info.
Sebastian Redlc3632732010-10-05 15:59:54 +00001381 if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) {
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001382 ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo
1383 = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo;
1384 ExplicitInfo->TypeAsWritten = TyInfo;
Sebastian Redlc3632732010-10-05 15:59:54 +00001385 ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx);
1386 ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001387 D->ExplicitInfo = ExplicitInfo;
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001388 }
1389
Chris Lattner5f9e2722011-07-23 10:55:15 +00001390 SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redlc3632732010-10-05 15:59:54 +00001391 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx);
Douglas Gregor910f8002010-11-07 23:05:16 +00001392 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(),
1393 TemplArgs.size());
Sebastian Redlc3632732010-10-05 15:59:54 +00001394 D->PointOfInstantiation = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis586c7152010-09-13 11:45:32 +00001395 D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++];
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001396
Argyrios Kyrtzidisbc5ab7c2010-07-20 13:59:40 +00001397 if (D->isCanonicalDecl()) { // It's kept in the folding set.
Douglas Gregor409448c2011-07-21 22:35:25 +00001398 ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001399 if (ClassTemplatePartialSpecializationDecl *Partial
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001400 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
1401 CanonPattern->getCommonPtr()->PartialSpecializations.InsertNode(Partial);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001402 } else {
Douglas Gregorc8e5cf82010-10-27 22:21:36 +00001403 CanonPattern->getCommonPtr()->Specializations.InsertNode(D);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +00001404 }
1405 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001406}
1407
Sebastian Redld527cc02010-08-18 23:56:48 +00001408void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001409 ClassTemplatePartialSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001410 VisitClassTemplateSpecializationDecl(D);
1411
Douglas Gregor35942772011-09-09 21:34:22 +00001412 ASTContext &C = Reader.getContext();
Sebastian Redlc3632732010-10-05 15:59:54 +00001413 D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001414
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001415 unsigned NumArgs = Record[Idx++];
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001416 if (NumArgs) {
1417 D->NumArgsAsWritten = NumArgs;
1418 D->ArgsAsWritten = new (C) TemplateArgumentLoc[NumArgs];
1419 for (unsigned i=0; i != NumArgs; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001420 D->ArgsAsWritten[i] = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001421 }
1422
1423 D->SequenceNumber = Record[Idx++];
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001424
1425 // These are read/set from/to the first declaration.
1426 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001427 D->InstantiatedFromMember.setPointer(
Douglas Gregor409448c2011-07-21 22:35:25 +00001428 ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx));
Argyrios Kyrtzidis8fed4b42010-09-13 11:45:41 +00001429 D->InstantiatedFromMember.setInt(Record[Idx++]);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001430 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001431}
1432
Sebastian Redl14c36332011-08-31 13:59:56 +00001433void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl(
1434 ClassScopeFunctionSpecializationDecl *D) {
Francois Pichetbc845322011-08-17 01:06:54 +00001435 VisitDecl(D);
1436 D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx);
1437}
1438
Sebastian Redld527cc02010-08-18 23:56:48 +00001439void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001440 VisitRedeclarableTemplateDecl(D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001441
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001442 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001443 // This FunctionTemplateDecl owns a CommonPtr; read it.
1444
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001445 // Read the function specialization declarations.
1446 // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
Argyrios Kyrtzidis99a8ca02010-09-13 11:45:48 +00001447 // when reading the specialized FunctionDecl.
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001448 unsigned NumSpecs = Record[Idx++];
1449 while (NumSpecs--)
Douglas Gregor409448c2011-07-21 22:35:25 +00001450 (void)ReadDecl(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001451 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001452}
1453
Sebastian Redld527cc02010-08-18 23:56:48 +00001454void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001455 VisitTypeDecl(D);
1456
1457 D->setDeclaredWithTypename(Record[Idx++]);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001458
1459 bool Inherited = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001460 TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001461 D->setDefaultArgument(DefArg, Inherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001462}
1463
Sebastian Redld527cc02010-08-18 23:56:48 +00001464void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
John McCall76a40212011-02-09 01:13:10 +00001465 VisitDeclaratorDecl(D);
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001466 // TemplateParmPosition.
1467 D->setDepth(Record[Idx++]);
1468 D->setPosition(Record[Idx++]);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001469 if (D->isExpandedParameterPack()) {
1470 void **Data = reinterpret_cast<void **>(D + 1);
1471 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
Douglas Gregor393f2492011-07-22 00:38:23 +00001472 Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr();
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001473 Data[2*I + 1] = GetTypeSourceInfo(Record, Idx);
1474 }
1475 } else {
1476 // Rest of NonTypeTemplateParmDecl.
1477 D->ParameterPack = Record[Idx++];
1478 if (Record[Idx++]) {
1479 Expr *DefArg = Reader.ReadExpr(F);
1480 bool Inherited = Record[Idx++];
1481 D->setDefaultArgument(DefArg, Inherited);
1482 }
1483 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001484}
1485
Sebastian Redld527cc02010-08-18 23:56:48 +00001486void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001487 VisitTemplateDecl(D);
1488 // TemplateParmPosition.
1489 D->setDepth(Record[Idx++]);
1490 D->setPosition(Record[Idx++]);
1491 // Rest of TemplateTemplateParmDecl.
Sebastian Redlc3632732010-10-05 15:59:54 +00001492 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx);
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001493 bool IsInherited = Record[Idx++];
1494 D->setDefaultArgument(Arg, IsInherited);
Douglas Gregor61c4d282011-01-05 15:48:55 +00001495 D->ParameterPack = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001496}
1497
Richard Smith3e4c6c42011-05-05 21:57:07 +00001498void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) {
1499 VisitRedeclarableTemplateDecl(D);
1500}
1501
Sebastian Redld527cc02010-08-18 23:56:48 +00001502void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001503 VisitDecl(D);
Sebastian Redlc3632732010-10-05 15:59:54 +00001504 D->AssertExpr = Reader.ReadExpr(F);
1505 D->Message = cast<StringLiteral>(Reader.ReadExpr(F));
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001506 D->RParenLoc = ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001507}
1508
Mike Stump1eb44332009-09-09 15:08:12 +00001509std::pair<uint64_t, uint64_t>
Sebastian Redld527cc02010-08-18 23:56:48 +00001510ASTDeclReader::VisitDeclContext(DeclContext *DC) {
Chris Lattner698f9252009-04-27 05:27:42 +00001511 uint64_t LexicalOffset = Record[Idx++];
1512 uint64_t VisibleOffset = Record[Idx++];
1513 return std::make_pair(LexicalOffset, VisibleOffset);
1514}
1515
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001516template <typename T>
Douglas Gregor0f753232011-12-22 01:48:48 +00001517ASTDeclReader::RedeclarableResult
1518ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
Douglas Gregorfc529f72011-12-19 19:00:47 +00001519 enum RedeclKind { FirstDeclaration = 0, FirstInFile, PointsToPrevious };
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001520 RedeclKind Kind = (RedeclKind)Record[Idx++];
Douglas Gregora1be2782011-12-17 23:38:30 +00001521
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001522 DeclID FirstDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001523 switch (Kind) {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001524 case FirstDeclaration:
1525 FirstDeclID = ThisDeclID;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001526 break;
Douglas Gregorfc529f72011-12-19 19:00:47 +00001527
1528 case FirstInFile:
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001529 case PointsToPrevious: {
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001530 FirstDeclID = ReadDeclID(Record, Idx);
1531 DeclID PrevDeclID = ReadDeclID(Record, Idx);
1532
1533 T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
Douglas Gregora1be2782011-12-17 23:38:30 +00001534
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001535 // We delay loading of the redeclaration chain to avoid deeply nested calls.
1536 // We temporarily set the first (canonical) declaration as the previous one
1537 // which is the one that matters and mark the real previous DeclID to be
1538 // loaded & attached later on.
Douglas Gregord488b3a2011-10-26 17:53:41 +00001539 D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink(FirstDecl);
Douglas Gregord488b3a2011-10-26 17:53:41 +00001540
Douglas Gregorfc529f72011-12-19 19:00:47 +00001541 if (Kind == PointsToPrevious) {
1542 // Make a note that we need to wire up this declaration to its
1543 // previous declaration, later. We don't need to do this for the first
1544 // declaration in any given module file, because those will be wired
1545 // together later.
1546 Reader.PendingPreviousDecls.push_back(std::make_pair(static_cast<T*>(D),
1547 PrevDeclID));
1548 }
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001549 break;
1550 }
Douglas Gregord488b3a2011-10-26 17:53:41 +00001551 }
Douglas Gregorf63b0a52011-12-19 18:19:24 +00001552
Douglas Gregor0f753232011-12-22 01:48:48 +00001553 // The result structure takes care of note that we need to load the
1554 // other declaration chains for this ID.
1555 return RedeclarableResult(Reader, FirstDeclID);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001556}
1557
Chris Lattner698f9252009-04-27 05:27:42 +00001558//===----------------------------------------------------------------------===//
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001559// Attribute Reading
Chris Lattner698f9252009-04-27 05:27:42 +00001560//===----------------------------------------------------------------------===//
1561
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001562/// \brief Reads attributes from the current stream position.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001563void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs,
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +00001564 const RecordData &Record, unsigned &Idx) {
1565 for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001566 Attr *New = 0;
Sean Hunt387475d2010-06-16 23:43:53 +00001567 attr::Kind Kind = (attr::Kind)Record[Idx++];
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00001568 SourceRange Range = ReadSourceRange(F, Record, Idx);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001569
Sean Huntcf807c42010-08-18 23:23:40 +00001570#include "clang/Serialization/AttrPCHRead.inc"
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001571
1572 assert(New && "Unable to decode attribute?");
Sean Huntcf807c42010-08-18 23:23:40 +00001573 Attrs.push_back(New);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001574 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001575}
1576
1577//===----------------------------------------------------------------------===//
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001578// ASTReader Implementation
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001579//===----------------------------------------------------------------------===//
Chris Lattner698f9252009-04-27 05:27:42 +00001580
1581/// \brief Note that we have loaded the declaration with the given
1582/// Index.
Mike Stump1eb44332009-09-09 15:08:12 +00001583///
Chris Lattner698f9252009-04-27 05:27:42 +00001584/// This routine notes that this declaration has already been loaded,
1585/// so that future GetDecl calls will return this declaration rather
1586/// than trying to load a new declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001587inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
Chris Lattner698f9252009-04-27 05:27:42 +00001588 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1589 DeclsLoaded[Index] = D;
1590}
1591
1592
1593/// \brief Determine whether the consumer will be interested in seeing
1594/// this declaration (via HandleTopLevelDecl).
1595///
1596/// This routine should return true for anything that might affect
1597/// code generation, e.g., inline function definitions, Objective-C
1598/// declarations with metadata, etc.
1599static bool isConsumerInterestedIn(Decl *D) {
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00001600 // An ObjCMethodDecl is never considered as "interesting" because its
1601 // implementation container always is.
1602
Douglas Gregor94da1582011-09-10 00:22:34 +00001603 if (isa<FileScopeAsmDecl>(D) ||
1604 isa<ObjCProtocolDecl>(D) ||
1605 isa<ObjCImplDecl>(D))
Daniel Dunbar04a0b502009-09-17 03:06:44 +00001606 return true;
Chris Lattner698f9252009-04-27 05:27:42 +00001607 if (VarDecl *Var = dyn_cast<VarDecl>(D))
Argyrios Kyrtzidis3f954772010-08-05 09:47:59 +00001608 return Var->isFileVarDecl() &&
1609 Var->isThisDeclarationADefinition() == VarDecl::Definition;
Chris Lattner698f9252009-04-27 05:27:42 +00001610 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
Sean Hunt10620eb2011-05-06 20:44:56 +00001611 return Func->doesThisDeclarationHaveABody();
Douglas Gregor94da1582011-09-10 00:22:34 +00001612
1613 return false;
Chris Lattner698f9252009-04-27 05:27:42 +00001614}
1615
Douglas Gregor96e973f2011-07-20 00:27:43 +00001616/// \brief Get the correct cursor and offset for loading a declaration.
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001617ASTReader::RecordLocation
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001618ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) {
Sebastian Redl0b17c612010-08-13 00:28:03 +00001619 // See if there's an override.
1620 DeclReplacementMap::iterator It = ReplacedDecls.find(ID);
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00001621 if (It != ReplacedDecls.end()) {
1622 RawLocation = It->second.RawLoc;
1623 return RecordLocation(It->second.Mod, It->second.Offset);
1624 }
Sebastian Redl0b17c612010-08-13 00:28:03 +00001625
Douglas Gregor96e973f2011-07-20 00:27:43 +00001626 GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID);
1627 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001628 ModuleFile *M = I->second;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001629 const DeclOffset &
1630 DOffs = M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS];
1631 RawLocation = DOffs.Loc;
1632 return RecordLocation(M, DOffs.BitOffset);
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001633}
1634
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001635ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001636 ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I
Douglas Gregor8f1231b2011-07-22 06:10:01 +00001637 = GlobalBitOffsetsMap.find(GlobalOffset);
1638
1639 assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
1640 return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
1641}
1642
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001643uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) {
Douglas Gregore92b8a12011-08-04 00:01:48 +00001644 return LocalOffset + M.GlobalBitOffset;
1645}
1646
Douglas Gregor0f753232011-12-22 01:48:48 +00001647/// \brief Determine whether the two declarations refer to the same entity.
1648static bool isSameEntity(NamedDecl *X, NamedDecl *Y) {
1649 assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!");
1650
1651 if (X == Y)
1652 return true;
1653
1654 // Must have the same kind.
1655 if (X->getKind() != Y->getKind())
1656 return false;
1657
1658 // Must be in the same context.
1659 if (!X->getDeclContext()->getRedeclContext()->Equals(
1660 Y->getDeclContext()->getRedeclContext()))
1661 return false;
1662
1663 // Objective-C classes with the same name always match.
1664 if (isa<ObjCInterfaceDecl>(X))
1665 return true;
1666
1667 // FIXME: Many other cases to implement.
1668 return false;
1669}
1670
1671ASTDeclReader::FindExistingResult::~FindExistingResult() {
1672 if (!AddResult)
1673 return;
1674
1675 DeclContext *DC = New->getDeclContext()->getRedeclContext();
1676 if (DC->isTranslationUnit() && Reader.SemaObj) {
1677 if (!Existing) {
1678 Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, New->getDeclName());
1679 }
1680 }
1681}
1682
1683ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
1684 DeclContext *DC = D->getDeclContext()->getRedeclContext();
1685 if (!DC->isFileContext())
1686 return FindExistingResult(Reader);
1687
1688 if (DC->isTranslationUnit() && Reader.SemaObj) {
1689 IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver;
1690 for (IdentifierResolver::iterator I = IdResolver.begin(D->getDeclName()),
1691 IEnd = IdResolver.end();
1692 I != IEnd; ++I) {
1693 if (isSameEntity(*I, D))
1694 return FindExistingResult(Reader, D, *I);
1695 }
1696 }
1697
1698 // FIXME: Search in the DeclContext.
1699
1700 return FindExistingResult(Reader, D, /*Existing=*/0);
1701}
1702
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001703void ASTDeclReader::attachPreviousDecl(Decl *D, Decl *previous) {
1704 assert(D && previous);
1705 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1706 TD->RedeclLink.setPointer(cast<TagDecl>(previous));
1707 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1708 FD->RedeclLink.setPointer(cast<FunctionDecl>(previous));
1709 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1710 VD->RedeclLink.setPointer(cast<VarDecl>(previous));
Douglas Gregora1be2782011-12-17 23:38:30 +00001711 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1712 TD->RedeclLink.setPointer(cast<TypedefNameDecl>(previous));
1713 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
Douglas Gregor0af55012011-12-16 03:12:41 +00001714 ID->RedeclLink.setPointer(cast<ObjCInterfaceDecl>(previous));
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001715 } else {
1716 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1717 TD->CommonOrPrev = cast<RedeclarableTemplateDecl>(previous);
1718 }
1719}
1720
Douglas Gregora1be2782011-12-17 23:38:30 +00001721void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) {
1722 assert(D && Latest);
1723 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
1724 TD->RedeclLink
1725 = Redeclarable<TagDecl>::LatestDeclLink(cast<TagDecl>(Latest));
1726 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
1727 FD->RedeclLink
1728 = Redeclarable<FunctionDecl>::LatestDeclLink(cast<FunctionDecl>(Latest));
1729 } else if (VarDecl *VD = dyn_cast<VarDecl>(D)) {
1730 VD->RedeclLink
1731 = Redeclarable<VarDecl>::LatestDeclLink(cast<VarDecl>(Latest));
1732 } else if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
1733 TD->RedeclLink
1734 = Redeclarable<TypedefNameDecl>::LatestDeclLink(
1735 cast<TypedefNameDecl>(Latest));
1736 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
1737 ID->RedeclLink
1738 = Redeclarable<ObjCInterfaceDecl>::LatestDeclLink(
1739 cast<ObjCInterfaceDecl>(Latest));
1740 } else {
1741 RedeclarableTemplateDecl *TD = cast<RedeclarableTemplateDecl>(D);
1742 TD->getCommonPtr()->Latest = cast<RedeclarableTemplateDecl>(Latest);
1743 }
1744}
1745
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00001746ASTReader::MergedDeclsMap::iterator
1747ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) {
1748 // If we don't have any stored merged declarations, just look in the
1749 // merged declarations set.
1750 StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID);
1751 if (StoredPos == StoredMergedDecls.end())
1752 return MergedDecls.find(Canon);
1753
1754 // Append the stored merged declarations to the merged declarations set.
1755 MergedDeclsMap::iterator Pos = MergedDecls.find(Canon);
1756 if (Pos == MergedDecls.end())
1757 Pos = MergedDecls.insert(std::make_pair(Canon,
1758 SmallVector<DeclID, 2>())).first;
1759 Pos->second.append(StoredPos->second.begin(), StoredPos->second.end());
1760 StoredMergedDecls.erase(StoredPos);
1761
1762 // Sort and uniquify the set of merged declarations.
1763 llvm::array_pod_sort(Pos->second.begin(), Pos->second.end());
1764 Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()),
1765 Pos->second.end());
1766 return Pos;
1767}
1768
Argyrios Kyrtzidis0895d152011-02-12 07:50:47 +00001769void ASTReader::loadAndAttachPreviousDecl(Decl *D, serialization::DeclID ID) {
1770 Decl *previous = GetDecl(ID);
1771 ASTDeclReader::attachPreviousDecl(D, previous);
1772}
1773
Sebastian Redld527cc02010-08-18 23:56:48 +00001774/// \brief Read the declaration at the given offset from the AST file.
Douglas Gregor496c7092011-08-03 15:48:04 +00001775Decl *ASTReader::ReadDeclRecord(DeclID ID) {
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00001776 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001777 unsigned RawLocation = 0;
1778 RecordLocation Loc = DeclCursorForID(ID, RawLocation);
Sebastian Redlc3632732010-10-05 15:59:54 +00001779 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Chris Lattner698f9252009-04-27 05:27:42 +00001780 // Keep track of where we are in the stream, then jump back there
1781 // after reading this declaration.
Chris Lattnerda930612009-04-27 05:58:23 +00001782 SavedStreamPosition SavedPosition(DeclsCursor);
Chris Lattner698f9252009-04-27 05:27:42 +00001783
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001784 ReadingKindTracker ReadingKind(Read_Decl, *this);
1785
Douglas Gregord89275b2009-07-06 18:54:52 +00001786 // Note that we are loading a declaration record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00001787 Deserializing ADecl(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001788
Sebastian Redlc3632732010-10-05 15:59:54 +00001789 DeclsCursor.JumpToBit(Loc.Offset);
Chris Lattner698f9252009-04-27 05:27:42 +00001790 RecordData Record;
Chris Lattnerda930612009-04-27 05:58:23 +00001791 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner698f9252009-04-27 05:27:42 +00001792 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00001793 ASTDeclReader Reader(*this, *Loc.F, DeclsCursor, ID, RawLocation, Record,Idx);
Chris Lattner698f9252009-04-27 05:27:42 +00001794
Chris Lattnerda930612009-04-27 05:58:23 +00001795 Decl *D = 0;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001796 switch ((DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001797 case DECL_CONTEXT_LEXICAL:
1798 case DECL_CONTEXT_VISIBLE:
David Blaikieb219cfc2011-09-23 05:06:16 +00001799 llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001800 case DECL_TYPEDEF:
Douglas Gregor35942772011-09-09 21:34:22 +00001801 D = TypedefDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnara344577e2011-03-06 15:48:19 +00001802 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001803 break;
Richard Smith162e1c12011-04-15 14:24:37 +00001804 case DECL_TYPEALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001805 D = TypeAliasDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Richard Smith162e1c12011-04-15 14:24:37 +00001806 0, 0);
1807 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001808 case DECL_ENUM:
Douglas Gregor35942772011-09-09 21:34:22 +00001809 D = EnumDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001810 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001811 case DECL_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001812 D = RecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001813 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001814 case DECL_ENUM_CONSTANT:
Douglas Gregor35942772011-09-09 21:34:22 +00001815 D = EnumConstantDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Chris Lattner698f9252009-04-27 05:27:42 +00001816 0, llvm::APSInt());
1817 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001818 case DECL_FUNCTION:
Douglas Gregor35942772011-09-09 21:34:22 +00001819 D = FunctionDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001820 DeclarationName(), QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001821 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001822 case DECL_LINKAGE_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001823 D = LinkageSpecDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001824 (LinkageSpecDecl::LanguageIDs)0,
Abramo Bagnara55a96372011-03-03 16:52:29 +00001825 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001826 break;
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001827 case DECL_LABEL:
Douglas Gregor35942772011-09-09 21:34:22 +00001828 D = LabelDecl::Create(Context, 0, SourceLocation(), 0);
Chris Lattnerad8dcf42011-02-17 07:39:24 +00001829 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001830 case DECL_NAMESPACE:
Douglas Gregor35942772011-09-09 21:34:22 +00001831 D = NamespaceDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraacba90f2011-03-08 12:38:20 +00001832 SourceLocation(), 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001833 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001834 case DECL_NAMESPACE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001835 D = NamespaceAliasDecl::Create(Context, 0, SourceLocation(),
Douglas Gregor0cfaf6a2011-02-25 17:08:07 +00001836 SourceLocation(), 0,
1837 NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001838 SourceLocation(), 0);
1839 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001840 case DECL_USING:
Douglas Gregor35942772011-09-09 21:34:22 +00001841 D = UsingDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001842 NestedNameSpecifierLoc(), DeclarationNameInfo(),
1843 false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001844 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001845 case DECL_USING_SHADOW:
Douglas Gregor35942772011-09-09 21:34:22 +00001846 D = UsingShadowDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001847 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001848 case DECL_USING_DIRECTIVE:
Douglas Gregor35942772011-09-09 21:34:22 +00001849 D = UsingDirectiveDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordb992412011-02-25 16:33:46 +00001850 SourceLocation(), NestedNameSpecifierLoc(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001851 SourceLocation(), 0, 0);
1852 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001853 case DECL_UNRESOLVED_USING_VALUE:
Douglas Gregor35942772011-09-09 21:34:22 +00001854 D = UnresolvedUsingValueDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001855 NestedNameSpecifierLoc(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001856 DeclarationNameInfo());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001857 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001858 case DECL_UNRESOLVED_USING_TYPENAME:
Douglas Gregor35942772011-09-09 21:34:22 +00001859 D = UnresolvedUsingTypenameDecl::Create(Context, 0, SourceLocation(),
Douglas Gregordc355712011-02-25 00:36:19 +00001860 SourceLocation(),
1861 NestedNameSpecifierLoc(),
1862 SourceLocation(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001863 DeclarationName());
1864 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001865 case DECL_CXX_RECORD:
Douglas Gregor35942772011-09-09 21:34:22 +00001866 D = CXXRecordDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001867 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001868 case DECL_CXX_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001869 D = CXXMethodDecl::Create(Context, 0, SourceLocation(),
Douglas Gregorf5251602011-03-08 17:10:18 +00001870 DeclarationNameInfo(), QualType(), 0,
Richard Smithaf1fc7a2011-08-15 21:04:07 +00001871 false, SC_None, false, false, SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001872 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001873 case DECL_CXX_CONSTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001874 D = CXXConstructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001875 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001876 case DECL_CXX_DESTRUCTOR:
Douglas Gregor35942772011-09-09 21:34:22 +00001877 D = CXXDestructorDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001878 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001879 case DECL_CXX_CONVERSION:
Douglas Gregor35942772011-09-09 21:34:22 +00001880 D = CXXConversionDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001881 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001882 case DECL_ACCESS_SPEC:
Douglas Gregor35942772011-09-09 21:34:22 +00001883 D = AccessSpecDecl::Create(Context, Decl::EmptyShell());
Abramo Bagnara6206d532010-06-05 05:09:32 +00001884 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001885 case DECL_FRIEND:
Douglas Gregor35942772011-09-09 21:34:22 +00001886 D = FriendDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001887 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001888 case DECL_FRIEND_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001889 D = FriendTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001890 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001891 case DECL_CLASS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001892 D = ClassTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001893 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001894 case DECL_CLASS_TEMPLATE_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001895 D = ClassTemplateSpecializationDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001896 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001897 case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001898 D = ClassTemplatePartialSpecializationDecl::Create(Context,
Douglas Gregor9a299e02011-03-04 17:52:15 +00001899 Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001900 break;
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001901 case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION:
Douglas Gregor35942772011-09-09 21:34:22 +00001902 D = ClassScopeFunctionSpecializationDecl::Create(Context,
Francois Pichetaf0f4d02011-08-14 03:52:19 +00001903 Decl::EmptyShell());
1904 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001905 case DECL_FUNCTION_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001906 D = FunctionTemplateDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001907 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001908 case DECL_TEMPLATE_TYPE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001909 D = TemplateTypeParmDecl::Create(Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001910 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001911 case DECL_NON_TYPE_TEMPLATE_PARM:
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 false, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001915 break;
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001916 case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK:
Douglas Gregor35942772011-09-09 21:34:22 +00001917 D = NonTypeTemplateParmDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001918 SourceLocation(), 0, 0, 0, QualType(),
1919 0, 0, Record[Idx++], 0);
Douglas Gregor6952f1e2011-01-19 20:10:05 +00001920 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001921 case DECL_TEMPLATE_TEMPLATE_PARM:
Douglas Gregor35942772011-09-09 21:34:22 +00001922 D = TemplateTemplateParmDecl::Create(Context, 0, SourceLocation(), 0, 0,
Douglas Gregor61c4d282011-01-05 15:48:55 +00001923 false, 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001924 break;
Richard Smith3e4c6c42011-05-05 21:57:07 +00001925 case DECL_TYPE_ALIAS_TEMPLATE:
Douglas Gregor35942772011-09-09 21:34:22 +00001926 D = TypeAliasTemplateDecl::Create(Context, Decl::EmptyShell());
Richard Smith3e4c6c42011-05-05 21:57:07 +00001927 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001928 case DECL_STATIC_ASSERT:
Douglas Gregor35942772011-09-09 21:34:22 +00001929 D = StaticAssertDecl::Create(Context, 0, SourceLocation(), 0, 0,
Abramo Bagnaraa2026c92011-03-08 16:41:52 +00001930 SourceLocation());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001931 break;
1932
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001933 case DECL_OBJC_METHOD:
Douglas Gregor35942772011-09-09 21:34:22 +00001934 D = ObjCMethodDecl::Create(Context, SourceLocation(), SourceLocation(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00001935 Selector(), QualType(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001936 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001937 case DECL_OBJC_INTERFACE:
Douglas Gregor0af55012011-12-16 03:12:41 +00001938 D = ObjCInterfaceDecl::CreateEmpty(Context);
Chris Lattner698f9252009-04-27 05:27:42 +00001939 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001940 case DECL_OBJC_IVAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001941 D = ObjCIvarDecl::Create(Context, 0, SourceLocation(), SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001942 0, QualType(), 0, ObjCIvarDecl::None);
Chris Lattner698f9252009-04-27 05:27:42 +00001943 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001944 case DECL_OBJC_PROTOCOL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001945 D = ObjCProtocolDecl::Create(Context, 0, 0, SourceLocation(),
Argyrios Kyrtzidisb05d7b22011-10-17 19:48:06 +00001946 SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001947 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001948 case DECL_OBJC_AT_DEFS_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001949 D = ObjCAtDefsFieldDecl::Create(Context, 0, SourceLocation(),
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001950 SourceLocation(), 0, QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001951 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001952 case DECL_OBJC_FORWARD_PROTOCOL:
Douglas Gregor35942772011-09-09 21:34:22 +00001953 D = ObjCForwardProtocolDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001954 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001955 case DECL_OBJC_CATEGORY:
Douglas Gregor35942772011-09-09 21:34:22 +00001956 D = ObjCCategoryDecl::Create(Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001957 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001958 case DECL_OBJC_CATEGORY_IMPL:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001959 D = ObjCCategoryImplDecl::Create(Context, 0, 0, 0, SourceLocation(),
Argyrios Kyrtzidisc6994002011-12-09 00:31:40 +00001960 SourceLocation(), SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001961 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001962 case DECL_OBJC_IMPLEMENTATION:
Argyrios Kyrtzidis1711fc92011-10-04 04:48:02 +00001963 D = ObjCImplementationDecl::Create(Context, 0, 0, 0, SourceLocation(),
1964 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001965 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001966 case DECL_OBJC_COMPATIBLE_ALIAS:
Douglas Gregor35942772011-09-09 21:34:22 +00001967 D = ObjCCompatibleAliasDecl::Create(Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001968 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001969 case DECL_OBJC_PROPERTY:
Douglas Gregor35942772011-09-09 21:34:22 +00001970 D = ObjCPropertyDecl::Create(Context, 0, SourceLocation(), 0, SourceLocation(),
John McCall83a230c2010-06-04 20:50:08 +00001971 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001972 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001973 case DECL_OBJC_PROPERTY_IMPL:
Douglas Gregor35942772011-09-09 21:34:22 +00001974 D = ObjCPropertyImplDecl::Create(Context, 0, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001975 SourceLocation(), 0,
Douglas Gregora4ffd852010-11-17 01:03:52 +00001976 ObjCPropertyImplDecl::Dynamic, 0,
1977 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001978 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001979 case DECL_FIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001980 D = FieldDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Richard Smith7a614d82011-06-11 17:19:42 +00001981 QualType(), 0, 0, false, false);
Chris Lattner698f9252009-04-27 05:27:42 +00001982 break;
Francois Pichet87c2e122010-11-21 06:08:52 +00001983 case DECL_INDIRECTFIELD:
Douglas Gregor35942772011-09-09 21:34:22 +00001984 D = IndirectFieldDecl::Create(Context, 0, SourceLocation(), 0, QualType(),
Francois Pichet87c2e122010-11-21 06:08:52 +00001985 0, 0);
1986 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001987 case DECL_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001988 D = VarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001989 QualType(), 0, SC_None, SC_None);
Chris Lattner698f9252009-04-27 05:27:42 +00001990 break;
1991
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001992 case DECL_IMPLICIT_PARAM:
Douglas Gregor35942772011-09-09 21:34:22 +00001993 D = ImplicitParamDecl::Create(Context, 0, SourceLocation(), 0, QualType());
Chris Lattner698f9252009-04-27 05:27:42 +00001994 break;
1995
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001996 case DECL_PARM_VAR:
Douglas Gregor35942772011-09-09 21:34:22 +00001997 D = ParmVarDecl::Create(Context, 0, SourceLocation(), SourceLocation(), 0,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001998 QualType(), 0, SC_None, SC_None, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001999 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002000 case DECL_FILE_SCOPE_ASM:
Douglas Gregor35942772011-09-09 21:34:22 +00002001 D = FileScopeAsmDecl::Create(Context, 0, 0, SourceLocation(),
Abramo Bagnara21e006e2011-03-03 14:20:18 +00002002 SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00002003 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002004 case DECL_BLOCK:
Douglas Gregor35942772011-09-09 21:34:22 +00002005 D = BlockDecl::Create(Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00002006 break;
Douglas Gregor7c789c12010-10-29 22:39:52 +00002007 case DECL_CXX_BASE_SPECIFIERS:
2008 Error("attempt to read a C++ base-specifier record as a declaration");
2009 return 0;
Douglas Gregor15de72c2011-12-02 23:23:56 +00002010 case DECL_IMPORT:
2011 // Note: last entry of the ImportDecl record is the number of stored source
2012 // locations.
2013 D = ImportDecl::CreateEmpty(Context, Record.back());
2014 break;
Chris Lattner698f9252009-04-27 05:27:42 +00002015 }
Chris Lattner698f9252009-04-27 05:27:42 +00002016
Sebastian Redld527cc02010-08-18 23:56:48 +00002017 assert(D && "Unknown declaration reading AST file");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00002018 LoadedDecl(Index, D);
2019 Reader.Visit(D);
Chris Lattner698f9252009-04-27 05:27:42 +00002020
2021 // If this declaration is also a declaration context, get the
2022 // offsets for its tables of lexical and visible declarations.
2023 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
2024 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
2025 if (Offsets.first || Offsets.second) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002026 if (Offsets.first != 0)
2027 DC->setHasExternalLexicalStorage(true);
2028 if (Offsets.second != 0)
2029 DC->setHasExternalVisibleStorage(true);
2030 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets,
2031 Loc.F->DeclContextInfos[DC]))
Sebastian Redl681d7232010-07-27 00:17:23 +00002032 return 0;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002033 }
Sebastian Redle1dde812010-08-24 00:50:04 +00002034
Sebastian Redl024e1c42011-04-24 16:27:54 +00002035 // Now add the pending visible updates for this decl context, if it has any.
2036 DeclContextVisibleUpdatesPending::iterator I =
2037 PendingVisibleUpdates.find(ID);
2038 if (I != PendingVisibleUpdates.end()) {
2039 // There are updates. This means the context has external visible
2040 // storage, even if the original stored version didn't.
2041 DC->setHasExternalVisibleStorage(true);
2042 DeclContextVisibleUpdates &U = I->second;
Sebastian Redl024e1c42011-04-24 16:27:54 +00002043 for (DeclContextVisibleUpdates::iterator UI = U.begin(), UE = U.end();
2044 UI != UE; ++UI) {
Douglas Gregor0d95f772011-08-24 19:03:07 +00002045 UI->second->DeclContextInfos[DC].NameLookupTableData = UI->first;
Sebastian Redle1dde812010-08-24 00:50:04 +00002046 }
Sebastian Redl024e1c42011-04-24 16:27:54 +00002047 PendingVisibleUpdates.erase(I);
Chris Lattner698f9252009-04-27 05:27:42 +00002048 }
2049 }
2050 assert(Idx == Record.size());
2051
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002052 // Load any relevant update records.
2053 loadDeclUpdateRecords(ID, D);
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002054
2055 // Load the category chain after recursive loading is finished.
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002056 if (ObjCChainedCategoriesInterfaces.count(ID))
Argyrios Kyrtzidis5a174992011-11-14 07:07:59 +00002057 PendingChainedObjCCategories.push_back(
2058 std::make_pair(cast<ObjCInterfaceDecl>(D), ID));
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002059
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002060 // If we have deserialized a declaration that has a definition the
2061 // AST consumer might need to know about, queue it.
2062 // We don't pass it to the consumer immediately because we may be in recursive
2063 // loading, and some declarations may still be initializing.
Argyrios Kyrtzidis144b38a2011-09-13 21:35:00 +00002064 if (isConsumerInterestedIn(D))
Douglas Gregor94da1582011-09-10 00:22:34 +00002065 InterestingDecls.push_back(D);
Douglas Gregor94da1582011-09-10 00:22:34 +00002066
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002067 return D;
2068}
2069
2070void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) {
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002071 // The declaration may have been modified by files later in the chain.
2072 // If this is the case, read the record containing the updates from each file
2073 // and pass it to ASTDeclReader to make the modifications.
2074 DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
2075 if (UpdI != DeclUpdateOffsets.end()) {
2076 FileOffsetsTy &UpdateOffsets = UpdI->second;
2077 for (FileOffsetsTy::iterator
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002078 I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002079 ModuleFile *F = I->first;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002080 uint64_t Offset = I->second;
2081 llvm::BitstreamCursor &Cursor = F->DeclsCursor;
2082 SavedStreamPosition SavedPosition(Cursor);
2083 Cursor.JumpToBit(Offset);
2084 RecordData Record;
2085 unsigned Code = Cursor.ReadCode();
2086 unsigned RecCode = Cursor.ReadRecord(Code, Record);
2087 (void)RecCode;
2088 assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!");
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002089
2090 unsigned Idx = 0;
Argyrios Kyrtzidis9d31fa72011-10-27 18:47:35 +00002091 ASTDeclReader Reader(*this, *F, Cursor, ID, 0, Record, Idx);
Sebastian Redlf79a7192011-04-29 08:19:30 +00002092 Reader.UpdateDecl(D, *F, Record);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002093 }
2094 }
Chris Lattner698f9252009-04-27 05:27:42 +00002095}
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002096
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002097namespace {
Douglas Gregora1be2782011-12-17 23:38:30 +00002098 struct CompareLocalRedeclarationsInfoToID {
2099 bool operator()(const LocalRedeclarationsInfo &X, DeclID Y) {
2100 return X.FirstID < Y;
2101 }
2102
2103 bool operator()(DeclID X, const LocalRedeclarationsInfo &Y) {
2104 return X < Y.FirstID;
2105 }
2106
2107 bool operator()(const LocalRedeclarationsInfo &X,
2108 const LocalRedeclarationsInfo &Y) {
2109 return X.FirstID < Y.FirstID;
2110 }
2111 bool operator()(DeclID X, DeclID Y) {
2112 return X < Y;
2113 }
2114 };
2115
Douglas Gregor0f753232011-12-22 01:48:48 +00002116 /// \brief Module visitor class that finds all of the redeclarations of a
2117 ///
Douglas Gregora1be2782011-12-17 23:38:30 +00002118 class RedeclChainVisitor {
2119 ASTReader &Reader;
Douglas Gregor0f753232011-12-22 01:48:48 +00002120 SmallVectorImpl<DeclID> &SearchDecls;
2121 GlobalDeclID CanonID;
Douglas Gregora1be2782011-12-17 23:38:30 +00002122 llvm::SmallVector<std::pair<Decl *, Decl *>, 4> Chains;
2123
2124 public:
Douglas Gregor0f753232011-12-22 01:48:48 +00002125 RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls,
2126 GlobalDeclID CanonID)
2127 : Reader(Reader), SearchDecls(SearchDecls), CanonID(CanonID) { }
Douglas Gregora1be2782011-12-17 23:38:30 +00002128
2129 static bool visit(ModuleFile &M, bool Preorder, void *UserData) {
2130 if (Preorder)
2131 return false;
2132
2133 return static_cast<RedeclChainVisitor *>(UserData)->visit(M);
2134 }
2135
Douglas Gregor0f753232011-12-22 01:48:48 +00002136 void searchForID(ModuleFile &M, GlobalDeclID GlobalID) {
Douglas Gregora1be2782011-12-17 23:38:30 +00002137 // Map global ID of the first declaration down to the local ID
2138 // used in this module file.
Douglas Gregor0f753232011-12-22 01:48:48 +00002139 DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID);
2140 if (!ID)
2141 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002142
2143 // Perform a binary search to find the local redeclarations for this
2144 // declaration (if any).
2145 const LocalRedeclarationsInfo *Result
2146 = std::lower_bound(M.RedeclarationsInfo,
2147 M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos,
Douglas Gregor0f753232011-12-22 01:48:48 +00002148 ID, CompareLocalRedeclarationsInfoToID());
Douglas Gregora1be2782011-12-17 23:38:30 +00002149 if (Result == M.RedeclarationsInfo + M.LocalNumRedeclarationsInfos ||
Douglas Gregor0f753232011-12-22 01:48:48 +00002150 Result->FirstID != ID) {
2151 // If we have a previously-canonical singleton declaration that was
2152 // merged into another redeclaration chain, create a trivial chain
2153 // for this single declaration so that it will get wired into the
2154 // complete redeclaration chain.
2155 if (GlobalID != CanonID &&
2156 GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
2157 GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) {
2158 if (Decl *D = Reader.GetDecl(GlobalID))
2159 Chains.push_back(std::make_pair(D, D));
2160 }
2161
2162 return;
2163 }
2164
Douglas Gregora1be2782011-12-17 23:38:30 +00002165 // Dig out the starting/ending declarations.
2166 Decl *FirstLocalDecl = Reader.GetLocalDecl(M, Result->FirstLocalID);
2167 Decl *LastLocalDecl = Reader.GetLocalDecl(M, Result->LastLocalID);
2168 if (!FirstLocalDecl || !LastLocalDecl)
Douglas Gregor0f753232011-12-22 01:48:48 +00002169 return;
Douglas Gregora1be2782011-12-17 23:38:30 +00002170
2171 // Append this redeclaration chain to the list.
2172 Chains.push_back(std::make_pair(FirstLocalDecl, LastLocalDecl));
Douglas Gregor0f753232011-12-22 01:48:48 +00002173 }
2174
2175 bool visit(ModuleFile &M) {
2176 // Visit each of the declarations.
2177 for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I)
2178 searchForID(M, SearchDecls[I]);
Douglas Gregora1be2782011-12-17 23:38:30 +00002179 return false;
2180 }
2181
2182 ArrayRef<std::pair<Decl *, Decl *> > getChains() const {
2183 return Chains;
2184 }
2185
2186 void addParsed(Decl *FirstParsedDecl, Decl *LastParsedDecl) {
2187 Chains.push_back(std::make_pair(FirstParsedDecl, LastParsedDecl));
2188 }
2189 };
2190}
2191
2192/// \brief Retrieve the previous declaration to D.
2193static Decl *getPreviousDecl(Decl *D) {
2194 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2195 return TD->getPreviousDeclaration();
2196 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2197 return FD->getPreviousDeclaration();
2198 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2199 return VD->getPreviousDeclaration();
2200 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2201 return TD->getPreviousDeclaration();
2202 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2203 return ID->getPreviousDeclaration();
2204
2205 return cast<RedeclarableTemplateDecl>(D)->getPreviousDeclaration();
2206}
2207
2208/// \brief Retrieve the most recent declaration of D.
2209static Decl *getMostRecentDecl(Decl *D) {
2210 if (TagDecl *TD = dyn_cast<TagDecl>(D))
2211 return TD->getMostRecentDeclaration();
2212 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
2213 return FD->getMostRecentDeclaration();
2214 if (VarDecl *VD = dyn_cast<VarDecl>(D))
2215 return VD->getMostRecentDeclaration();
2216 if (TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D))
2217 return TD->getMostRecentDeclaration();
2218 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
2219 return ID->getMostRecentDeclaration();
2220
2221 return cast<RedeclarableTemplateDecl>(D)->getMostRecentDeclaration();
2222}
2223
2224void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002225 Decl *D = GetDecl(ID);
2226 Decl *CanonDecl = D->getCanonicalDecl();
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002227
Douglas Gregor0f753232011-12-22 01:48:48 +00002228 // Determine the set of declaration IDs we'll be searching for.
2229 llvm::SmallVector<DeclID, 1> SearchDecls;
2230 GlobalDeclID CanonID = 0;
2231 if (D == CanonDecl) {
2232 SearchDecls.push_back(ID); // Always first.
2233 CanonID = ID;
2234 }
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00002235 MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID);
Douglas Gregor0f753232011-12-22 01:48:48 +00002236 if (MergedPos != MergedDecls.end())
2237 SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end());
2238
Douglas Gregora1be2782011-12-17 23:38:30 +00002239 // Build up the list of redeclaration chains.
Douglas Gregor0f753232011-12-22 01:48:48 +00002240 RedeclChainVisitor Visitor(*this, SearchDecls, CanonID);
Douglas Gregora1be2782011-12-17 23:38:30 +00002241 ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor);
2242
2243 // Retrieve the chains.
2244 ArrayRef<std::pair<Decl *, Decl *> > Chains = Visitor.getChains();
2245 if (Chains.empty())
2246 return;
Douglas Gregor0f753232011-12-22 01:48:48 +00002247
Douglas Gregora1be2782011-12-17 23:38:30 +00002248 // Capture all of the parsed declarations and put them at the end.
2249 Decl *MostRecent = getMostRecentDecl(CanonDecl);
2250 Decl *FirstParsed = MostRecent;
2251 if (CanonDecl != MostRecent && !MostRecent->isFromASTFile()) {
2252 Decl *Current = MostRecent;
2253 while (Decl *Prev = getPreviousDecl(Current)) {
Douglas Gregor0f753232011-12-22 01:48:48 +00002254 if (Prev == CanonDecl)
2255 break;
2256
Douglas Gregora1be2782011-12-17 23:38:30 +00002257 if (Prev->isFromASTFile()) {
2258 Current = Prev;
2259 continue;
2260 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002261
Douglas Gregora1be2782011-12-17 23:38:30 +00002262 // Chain all of the parsed declarations together.
2263 ASTDeclReader::attachPreviousDecl(FirstParsed, Prev);
2264 FirstParsed = Prev;
2265 Current = Prev;
2266 }
2267
2268 Visitor.addParsed(FirstParsed, MostRecent);
2269 }
Douglas Gregor0f753232011-12-22 01:48:48 +00002270
Douglas Gregora1be2782011-12-17 23:38:30 +00002271 // Hook up the separate chains.
2272 Chains = Visitor.getChains();
Douglas Gregor0f753232011-12-22 01:48:48 +00002273 if (Chains[0].first != CanonDecl)
2274 ASTDeclReader::attachPreviousDecl(Chains[0].first, CanonDecl);
Douglas Gregora1be2782011-12-17 23:38:30 +00002275 for (unsigned I = 1, N = Chains.size(); I != N; ++I)
2276 ASTDeclReader::attachPreviousDecl(Chains[I].first, Chains[I-1].second);
2277 ASTDeclReader::attachLatestDecl(CanonDecl, Chains.back().second);
2278}
2279
2280namespace {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002281 /// \brief Given an ObjC interface, goes through the modules and links to the
2282 /// interface all the categories for it.
2283 class ObjCChainedCategoriesVisitor {
2284 ASTReader &Reader;
2285 serialization::GlobalDeclID InterfaceID;
2286 ObjCInterfaceDecl *Interface;
2287 ObjCCategoryDecl *GlobHeadCat, *GlobTailCat;
2288 llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
2289
2290 public:
2291 ObjCChainedCategoriesVisitor(ASTReader &Reader,
2292 serialization::GlobalDeclID InterfaceID,
2293 ObjCInterfaceDecl *Interface)
2294 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface),
2295 GlobHeadCat(0), GlobTailCat(0) { }
2296
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002297 static bool visit(ModuleFile &M, void *UserData) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002298 return static_cast<ObjCChainedCategoriesVisitor *>(UserData)->visit(M);
2299 }
2300
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002301 bool visit(ModuleFile &M) {
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002302 if (Reader.isDeclIDFromModule(InterfaceID, M))
2303 return true; // We reached the module where the interface originated
2304 // from. Stop traversing the imported modules.
2305
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002306 ModuleFile::ChainedObjCCategoriesMap::iterator
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002307 I = M.ChainedObjCCategories.find(InterfaceID);
2308 if (I == M.ChainedObjCCategories.end())
2309 return false;
2310
2311 ObjCCategoryDecl *
2312 HeadCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.first);
2313 ObjCCategoryDecl *
2314 TailCat = Reader.GetLocalDeclAs<ObjCCategoryDecl>(M, I->second.second);
2315
2316 addCategories(HeadCat, TailCat);
2317 return false;
2318 }
2319
2320 void addCategories(ObjCCategoryDecl *HeadCat,
2321 ObjCCategoryDecl *TailCat = 0) {
2322 if (!HeadCat) {
2323 assert(!TailCat);
2324 return;
2325 }
2326
2327 if (!TailCat) {
2328 TailCat = HeadCat;
2329 while (TailCat->getNextClassCategory())
2330 TailCat = TailCat->getNextClassCategory();
2331 }
2332
2333 if (!GlobHeadCat) {
2334 GlobHeadCat = HeadCat;
2335 GlobTailCat = TailCat;
2336 } else {
2337 ASTDeclReader::setNextObjCCategory(GlobTailCat, HeadCat);
2338 GlobTailCat = TailCat;
2339 }
2340
2341 llvm::DenseSet<DeclarationName> Checked;
2342 for (ObjCCategoryDecl *Cat = HeadCat,
2343 *CatEnd = TailCat->getNextClassCategory();
2344 Cat != CatEnd; Cat = Cat->getNextClassCategory()) {
2345 if (Checked.count(Cat->getDeclName()))
2346 continue;
2347 Checked.insert(Cat->getDeclName());
2348 checkForDuplicate(Cat);
2349 }
2350 }
2351
2352 /// \brief Warns for duplicate categories that come from different modules.
2353 void checkForDuplicate(ObjCCategoryDecl *Cat) {
2354 DeclarationName Name = Cat->getDeclName();
2355 // Find the top category with the same name. We do not want to warn for
2356 // duplicates along the established chain because there were already
2357 // warnings for them when the module was created. We only want to warn for
2358 // duplicates between non-dependent modules:
2359 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002360 // MT //
2361 // / \ //
2362 // ML MR //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002363 //
2364 // We want to warn for duplicates between ML and MR,not between ML and MT.
2365 //
2366 // FIXME: We should not warn for duplicates in diamond:
2367 //
Argyrios Kyrtzidisfa77cba2011-09-01 03:07:11 +00002368 // MT //
2369 // / \ //
2370 // ML MR //
2371 // \ / //
2372 // MB //
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00002373 //
2374 // If there are duplicates in ML/MR, there will be warning when creating
2375 // MB *and* when importing MB. We should not warn when importing.
2376 for (ObjCCategoryDecl *Next = Cat->getNextClassCategory(); Next;
2377 Next = Next->getNextClassCategory()) {
2378 if (Next->getDeclName() == Name)
2379 Cat = Next;
2380 }
2381
2382 ObjCCategoryDecl *&PrevCat = NameCategoryMap[Name];
2383 if (!PrevCat)
2384 PrevCat = Cat;
2385
2386 if (PrevCat != Cat) {
2387 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
2388 << Interface->getDeclName() << Name;
2389 Reader.Diag(PrevCat->getLocation(), diag::note_previous_definition);
2390 }
2391 }
2392
2393 ObjCCategoryDecl *getHeadCategory() const { return GlobHeadCat; }
2394 };
2395}
2396
2397void ASTReader::loadObjCChainedCategories(serialization::GlobalDeclID ID,
2398 ObjCInterfaceDecl *D) {
2399 ObjCChainedCategoriesVisitor Visitor(*this, ID, D);
2400 ModuleMgr.visit(ObjCChainedCategoriesVisitor::visit, &Visitor);
2401 // Also add the categories that the interface already links to.
2402 Visitor.addCategories(D->getCategoryList());
2403 D->setCategoryList(Visitor.getHeadCategory());
2404}
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00002405
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002406void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile,
Sebastian Redlf79a7192011-04-29 08:19:30 +00002407 const RecordData &Record) {
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002408 unsigned Idx = 0;
2409 while (Idx < Record.size()) {
2410 switch ((DeclUpdateKind)Record[Idx++]) {
2411 case UPD_CXX_SET_DEFINITIONDATA: {
2412 CXXRecordDecl *RD = cast<CXXRecordDecl>(D);
Douglas Gregor496c7092011-08-03 15:48:04 +00002413 CXXRecordDecl *DefinitionDecl
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002414 = Reader.ReadDeclAs<CXXRecordDecl>(ModuleFile, Record, Idx);
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002415 assert(!RD->DefinitionData && "DefinitionData is already set!");
2416 InitializeCXXDefinitionData(RD, DefinitionDecl, Record, Idx);
2417 break;
2418 }
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002419
2420 case UPD_CXX_ADDED_IMPLICIT_MEMBER:
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002421 cast<CXXRecordDecl>(D)->addedMember(Reader.ReadDecl(ModuleFile, Record, Idx));
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00002422 break;
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00002423
2424 case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
2425 // It will be added to the template's specializations set when loaded.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002426 (void)Reader.ReadDecl(ModuleFile, Record, Idx);
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002427 break;
2428
2429 case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: {
Douglas Gregor496c7092011-08-03 15:48:04 +00002430 NamespaceDecl *Anon
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002431 = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx);
Sebastian Redl74b485a2011-04-24 16:28:21 +00002432 // Guard against these being loaded out of original order. Don't use
2433 // getNextNamespace(), since it tries to access the context and can't in
2434 // the middle of deserialization.
2435 if (!Anon->NextNamespace) {
2436 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D))
2437 TU->setAnonymousNamespace(Anon);
2438 else
2439 cast<NamespaceDecl>(D)->OrigOrAnonNamespace.setPointer(Anon);
2440 }
Sebastian Redl7c0837f2011-04-24 16:28:13 +00002441 break;
2442 }
Sebastian Redlf79a7192011-04-29 08:19:30 +00002443
2444 case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
2445 cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation(
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002446 Reader.ReadSourceLocation(ModuleFile, Record, Idx));
Sebastian Redlf79a7192011-04-29 08:19:30 +00002447 break;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002448
2449 case UPD_OBJC_SET_CLASS_DEFINITIONDATA: {
2450 ObjCInterfaceDecl *ID = cast<ObjCInterfaceDecl>(D);
2451 ObjCInterfaceDecl *Def
2452 = Reader.ReadDeclAs<ObjCInterfaceDecl>(ModuleFile, Record, Idx);
Douglas Gregor21cf08b2011-12-19 20:51:16 +00002453 if (Def->Data)
Douglas Gregor26fec632011-12-15 18:17:27 +00002454 ID->Data = Def->Data;
Douglas Gregor53df7a12011-12-15 18:03:09 +00002455 break;
2456 }
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00002457 }
2458 }
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002459}