blob: 212eaa1332c04b204989e16a07b73bdf1738a59c [file] [log] [blame]
Chris Lattner698f9252009-04-27 05:27:42 +00001//===--- PCHReaderDecl.cpp - Decl Deserialization ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements the PCHReader::ReadDeclRecord method, which is the
11// entrypoint for loading a decl.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Frontend/PCHReader.h"
16#include "clang/AST/ASTConsumer.h"
17#include "clang/AST/ASTContext.h"
18#include "clang/AST/DeclVisitor.h"
19#include "clang/AST/DeclGroup.h"
Chris Lattner6ad9ac02010-05-07 21:43:38 +000020#include "clang/AST/DeclCXX.h"
21#include "clang/AST/DeclTemplate.h"
Chris Lattner698f9252009-04-27 05:27:42 +000022#include "clang/AST/Expr.h"
23using namespace clang;
24
Chris Lattner698f9252009-04-27 05:27:42 +000025
26//===----------------------------------------------------------------------===//
27// Declaration deserialization
28//===----------------------------------------------------------------------===//
29
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +000030namespace clang {
Chris Lattner698f9252009-04-27 05:27:42 +000031 class PCHDeclReader : public DeclVisitor<PCHDeclReader, void> {
32 PCHReader &Reader;
Sebastian Redl577d4792010-07-22 22:43:28 +000033 llvm::BitstreamCursor &Cursor;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +000034 const pch::DeclID ThisDeclID;
Chris Lattner698f9252009-04-27 05:27:42 +000035 const PCHReader::RecordData &Record;
36 unsigned &Idx;
Douglas Gregordeacbdc2010-08-11 12:19:30 +000037 pch::TypeID TypeIDForTypeDecl;
Chris Lattner698f9252009-04-27 05:27:42 +000038
Sebastian Redl577d4792010-07-22 22:43:28 +000039 uint64_t GetCurrentCursorOffset();
40
Chris Lattner698f9252009-04-27 05:27:42 +000041 public:
Sebastian Redl577d4792010-07-22 22:43:28 +000042 PCHDeclReader(PCHReader &Reader, llvm::BitstreamCursor &Cursor,
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +000043 pch::DeclID thisDeclID, const PCHReader::RecordData &Record,
44 unsigned &Idx)
45 : Reader(Reader), Cursor(Cursor), ThisDeclID(thisDeclID), Record(Record),
Douglas Gregordeacbdc2010-08-11 12:19:30 +000046 Idx(Idx), TypeIDForTypeDecl(0) { }
Chris Lattner698f9252009-04-27 05:27:42 +000047
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +000048 void Visit(Decl *D);
49
Chris Lattner698f9252009-04-27 05:27:42 +000050 void VisitDecl(Decl *D);
51 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
52 void VisitNamedDecl(NamedDecl *ND);
Douglas Gregor0cef4832010-02-21 18:22:14 +000053 void VisitNamespaceDecl(NamespaceDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000054 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
55 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000056 void VisitTypeDecl(TypeDecl *TD);
57 void VisitTypedefDecl(TypedefDecl *TD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +000058 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000059 void VisitTagDecl(TagDecl *TD);
60 void VisitEnumDecl(EnumDecl *ED);
61 void VisitRecordDecl(RecordDecl *RD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000062 void VisitCXXRecordDecl(CXXRecordDecl *D);
63 void VisitClassTemplateSpecializationDecl(
64 ClassTemplateSpecializationDecl *D);
65 void VisitClassTemplatePartialSpecializationDecl(
66 ClassTemplatePartialSpecializationDecl *D);
67 void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000068 void VisitValueDecl(ValueDecl *VD);
69 void VisitEnumConstantDecl(EnumConstantDecl *ECD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +000070 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +000071 void VisitDeclaratorDecl(DeclaratorDecl *DD);
Chris Lattner698f9252009-04-27 05:27:42 +000072 void VisitFunctionDecl(FunctionDecl *FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000073 void VisitCXXMethodDecl(CXXMethodDecl *D);
74 void VisitCXXConstructorDecl(CXXConstructorDecl *D);
75 void VisitCXXDestructorDecl(CXXDestructorDecl *D);
76 void VisitCXXConversionDecl(CXXConversionDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000077 void VisitFieldDecl(FieldDecl *FD);
78 void VisitVarDecl(VarDecl *VD);
79 void VisitImplicitParamDecl(ImplicitParamDecl *PD);
80 void VisitParmVarDecl(ParmVarDecl *PD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000081 void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
82 void VisitTemplateDecl(TemplateDecl *D);
Peter Collingbourne9eabeba2010-07-29 16:11:51 +000083 void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000084 void VisitClassTemplateDecl(ClassTemplateDecl *D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +000085 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000086 void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +000087 void VisitUsingDecl(UsingDecl *D);
88 void VisitUsingShadowDecl(UsingShadowDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000089 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000090 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
Abramo Bagnara6206d532010-06-05 05:09:32 +000091 void VisitAccessSpecDecl(AccessSpecDecl *D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +000092 void VisitFriendDecl(FriendDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000093 void VisitFriendTemplateDecl(FriendTemplateDecl *D);
94 void VisitStaticAssertDecl(StaticAssertDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000095 void VisitBlockDecl(BlockDecl *BD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000096
Chris Lattner698f9252009-04-27 05:27:42 +000097 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +000098 template <typename T> void VisitRedeclarable(Redeclarable<T> *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000099
Sean Hunt9a555912010-05-30 07:21:58 +0000100 // FIXME: Reorder according to DeclNodes.td?
Chris Lattner698f9252009-04-27 05:27:42 +0000101 void VisitObjCMethodDecl(ObjCMethodDecl *D);
102 void VisitObjCContainerDecl(ObjCContainerDecl *D);
103 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
104 void VisitObjCIvarDecl(ObjCIvarDecl *D);
105 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
106 void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
107 void VisitObjCClassDecl(ObjCClassDecl *D);
108 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
109 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
110 void VisitObjCImplDecl(ObjCImplDecl *D);
111 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
112 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
113 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
114 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
115 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
116 };
117}
118
Sebastian Redl577d4792010-07-22 22:43:28 +0000119uint64_t PCHDeclReader::GetCurrentCursorOffset() {
120 uint64_t Off = 0;
121 for (unsigned I = 0, N = Reader.Chain.size(); I != N; ++I) {
122 PCHReader::PerFileData &F = *Reader.Chain[N - I - 1];
123 if (&Cursor == &F.DeclsCursor) {
124 Off += F.DeclsCursor.GetCurrentBitNo();
125 break;
126 }
127 Off += F.SizeInBits;
128 }
129 return Off;
130}
131
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000132void PCHDeclReader::Visit(Decl *D) {
133 DeclVisitor<PCHDeclReader, void>::Visit(D);
134
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000135 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000136 // if we have a fully initialized TypeDecl, we can safely read its type now.
137 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtr());
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000138 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
139 // FunctionDecl's body was written last after all other Stmts/Exprs.
140 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000141 FD->setLazyBody(GetCurrentCursorOffset());
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000142 }
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000143}
144
Chris Lattner698f9252009-04-27 05:27:42 +0000145void PCHDeclReader::VisitDecl(Decl *D) {
146 D->setDeclContext(cast_or_null<DeclContext>(Reader.GetDecl(Record[Idx++])));
147 D->setLexicalDeclContext(
148 cast_or_null<DeclContext>(Reader.GetDecl(Record[Idx++])));
149 D->setLocation(SourceLocation::getFromRawEncoding(Record[Idx++]));
150 D->setInvalidDecl(Record[Idx++]);
151 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000152 D->initAttrs(Reader.ReadAttributes(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000153 D->setImplicit(Record[Idx++]);
Douglas Gregore0762c92009-06-19 23:52:42 +0000154 D->setUsed(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000155 D->setAccess((AccessSpecifier)Record[Idx++]);
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000156 D->setPCHLevel(Record[Idx++] + 1);
Chris Lattner698f9252009-04-27 05:27:42 +0000157}
158
159void PCHDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
160 VisitDecl(TU);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000161 TU->setAnonymousNamespace(
162 cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000163}
164
165void PCHDeclReader::VisitNamedDecl(NamedDecl *ND) {
166 VisitDecl(ND);
Mike Stump1eb44332009-09-09 15:08:12 +0000167 ND->setDeclName(Reader.ReadDeclarationName(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000168}
169
170void PCHDeclReader::VisitTypeDecl(TypeDecl *TD) {
171 VisitNamedDecl(TD);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000172 // Delay type reading until after we have fully initialized the decl.
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000173 TypeIDForTypeDecl = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000174}
175
176void PCHDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000177 VisitTypeDecl(TD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000178 TD->setTypeSourceInfo(Reader.GetTypeSourceInfo(Cursor, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000179}
180
181void PCHDeclReader::VisitTagDecl(TagDecl *TD) {
182 VisitTypeDecl(TD);
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000183 TD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000184 VisitRedeclarable(TD);
Chris Lattner698f9252009-04-27 05:27:42 +0000185 TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
186 TD->setDefinition(Record[Idx++]);
Douglas Gregorb37b6482010-02-12 17:40:34 +0000187 TD->setEmbeddedInDeclarator(Record[Idx++]);
Argyrios Kyrtzidisad93a742009-07-14 03:18:02 +0000188 TD->setRBraceLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000189 TD->setTagKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallb6217662010-03-15 10:12:16 +0000190 // FIXME: maybe read optional qualifier and its range.
191 TD->setTypedefForAnonDecl(
192 cast_or_null<TypedefDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000193}
194
195void PCHDeclReader::VisitEnumDecl(EnumDecl *ED) {
196 VisitTagDecl(ED);
197 ED->setIntegerType(Reader.GetType(Record[Idx++]));
John McCall842aef82009-12-09 09:09:27 +0000198 ED->setPromotionType(Reader.GetType(Record[Idx++]));
John McCall1b5a6182010-05-06 08:49:23 +0000199 ED->setNumPositiveBits(Record[Idx++]);
200 ED->setNumNegativeBits(Record[Idx++]);
Argyrios Kyrtzidis74228272010-07-06 15:36:48 +0000201 ED->setInstantiationOfMemberEnum(
202 cast_or_null<EnumDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000203}
204
205void PCHDeclReader::VisitRecordDecl(RecordDecl *RD) {
206 VisitTagDecl(RD);
207 RD->setHasFlexibleArrayMember(Record[Idx++]);
208 RD->setAnonymousStructOrUnion(Record[Idx++]);
Fariborz Jahanian643b7df2009-07-08 16:37:44 +0000209 RD->setHasObjectMember(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000210}
211
212void PCHDeclReader::VisitValueDecl(ValueDecl *VD) {
213 VisitNamedDecl(VD);
214 VD->setType(Reader.GetType(Record[Idx++]));
215}
216
217void PCHDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
218 VisitValueDecl(ECD);
219 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000220 ECD->setInitExpr(Reader.ReadExpr(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000221 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
222}
223
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000224void PCHDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
225 VisitValueDecl(DD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000226 TypeSourceInfo *TInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +0000227 if (TInfo)
228 DD->setTypeSourceInfo(TInfo);
John McCallb6217662010-03-15 10:12:16 +0000229 // FIXME: read optional qualifier and its range.
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000230}
231
Chris Lattner698f9252009-04-27 05:27:42 +0000232void PCHDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000233 VisitDeclaratorDecl(FD);
Abramo Bagnara25777432010-08-11 22:01:17 +0000234 // FIXME: read DeclarationNameLoc.
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000235
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000236 FD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000237 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000238 default: assert(false && "Unhandled TemplatedKind!");
239 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000240 case FunctionDecl::TK_NonTemplate:
241 break;
242 case FunctionDecl::TK_FunctionTemplate:
243 FD->setDescribedFunctionTemplate(
244 cast<FunctionTemplateDecl>(Reader.GetDecl(Record[Idx++])));
245 break;
246 case FunctionDecl::TK_MemberSpecialization: {
247 FunctionDecl *InstFD = cast<FunctionDecl>(Reader.GetDecl(Record[Idx++]));
248 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
249 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
250 FD->setInstantiationOfMemberFunction(InstFD, TSK);
251 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
252 break;
253 }
254 case FunctionDecl::TK_FunctionTemplateSpecialization: {
255 FunctionTemplateDecl *Template
256 = cast<FunctionTemplateDecl>(Reader.GetDecl(Record[Idx++]));
257 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
258
259 // Template arguments.
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000260 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000261 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000262
263 // Template args as written.
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000264 llvm::SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000265 SourceLocation LAngleLoc, RAngleLoc;
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000266 if (Record[Idx++]) { // TemplateArgumentsAsWritten != 0
267 unsigned NumTemplateArgLocs = Record[Idx++];
268 TemplArgLocs.reserve(NumTemplateArgLocs);
269 for (unsigned i=0; i != NumTemplateArgLocs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000270 TemplArgLocs.push_back(
271 Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx));
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000272
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000273 LAngleLoc = Reader.ReadSourceLocation(Record, Idx);
274 RAngleLoc = Reader.ReadSourceLocation(Record, Idx);
275 }
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000276
277 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000278
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000279 if (FD->isCanonicalDecl()) // if canonical add to template's set.
280 FD->setFunctionTemplateSpecialization(Template, TemplArgs.size(),
281 TemplArgs.data(), TSK,
282 TemplArgLocs.size(),
283 TemplArgLocs.data(),
284 LAngleLoc, RAngleLoc, POI);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000285 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000286 }
287 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
288 // Templates.
289 UnresolvedSet<8> TemplDecls;
290 unsigned NumTemplates = Record[Idx++];
291 while (NumTemplates--)
292 TemplDecls.addDecl(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
293
294 // Templates args.
295 TemplateArgumentListInfo TemplArgs;
296 unsigned NumArgs = Record[Idx++];
297 while (NumArgs--)
Sebastian Redl577d4792010-07-22 22:43:28 +0000298 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(Cursor,Record, Idx));
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000299 TemplArgs.setLAngleLoc(Reader.ReadSourceLocation(Record, Idx));
300 TemplArgs.setRAngleLoc(Reader.ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000301
302 FD->setDependentTemplateSpecialization(*Reader.getContext(),
303 TemplDecls, TemplArgs);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000304 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000305 }
306 }
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000307
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000308 // FunctionDecl's body is handled last at PCHReaderDecl::Visit,
309 // after everything else is read.
310
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000311 VisitRedeclarable(FD);
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000312 FD->setStorageClass((FunctionDecl::StorageClass)Record[Idx++]);
313 FD->setStorageClassAsWritten((FunctionDecl::StorageClass)Record[Idx++]);
314 FD->setInlineSpecified(Record[Idx++]);
315 FD->setVirtualAsWritten(Record[Idx++]);
316 FD->setPure(Record[Idx++]);
317 FD->setHasInheritedPrototype(Record[Idx++]);
318 FD->setHasWrittenPrototype(Record[Idx++]);
319 FD->setDeleted(Record[Idx++]);
320 FD->setTrivial(Record[Idx++]);
321 FD->setCopyAssignment(Record[Idx++]);
322 FD->setHasImplicitReturnZero(Record[Idx++]);
323 FD->setLocEnd(SourceLocation::getFromRawEncoding(Record[Idx++]));
324
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000325 // Read in the parameters.
Chris Lattner698f9252009-04-27 05:27:42 +0000326 unsigned NumParams = Record[Idx++];
327 llvm::SmallVector<ParmVarDecl *, 16> Params;
328 Params.reserve(NumParams);
329 for (unsigned I = 0; I != NumParams; ++I)
330 Params.push_back(cast<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor838db382010-02-11 01:19:42 +0000331 FD->setParams(Params.data(), NumParams);
Chris Lattner698f9252009-04-27 05:27:42 +0000332}
333
334void PCHDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) {
335 VisitNamedDecl(MD);
336 if (Record[Idx++]) {
337 // In practice, this won't be executed (since method definitions
338 // don't occur in header files).
Sebastian Redl577d4792010-07-22 22:43:28 +0000339 MD->setBody(Reader.ReadStmt(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000340 MD->setSelfDecl(cast<ImplicitParamDecl>(Reader.GetDecl(Record[Idx++])));
341 MD->setCmdDecl(cast<ImplicitParamDecl>(Reader.GetDecl(Record[Idx++])));
342 }
343 MD->setInstanceMethod(Record[Idx++]);
344 MD->setVariadic(Record[Idx++]);
345 MD->setSynthesized(Record[Idx++]);
Fariborz Jahanian3fe10412010-07-22 18:24:20 +0000346 MD->setDefined(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000347 MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]);
348 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
Fariborz Jahanian7732cc92010-04-08 21:29:11 +0000349 MD->setNumSelectorArgs(unsigned(Record[Idx++]));
Chris Lattner698f9252009-04-27 05:27:42 +0000350 MD->setResultType(Reader.GetType(Record[Idx++]));
Sebastian Redl577d4792010-07-22 22:43:28 +0000351 MD->setResultTypeSourceInfo(Reader.GetTypeSourceInfo(Cursor, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000352 MD->setEndLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
353 unsigned NumParams = Record[Idx++];
354 llvm::SmallVector<ParmVarDecl *, 16> Params;
355 Params.reserve(NumParams);
356 for (unsigned I = 0; I != NumParams; ++I)
357 Params.push_back(cast<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
Fariborz Jahanian4ecb25f2010-04-09 15:40:42 +0000358 MD->setMethodParams(*Reader.getContext(), Params.data(), NumParams,
359 NumParams);
Chris Lattner698f9252009-04-27 05:27:42 +0000360}
361
362void PCHDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) {
363 VisitNamedDecl(CD);
Ted Kremenek782f2f52010-01-07 01:20:12 +0000364 SourceLocation A = SourceLocation::getFromRawEncoding(Record[Idx++]);
365 SourceLocation B = SourceLocation::getFromRawEncoding(Record[Idx++]);
366 CD->setAtEndRange(SourceRange(A, B));
Chris Lattner698f9252009-04-27 05:27:42 +0000367}
368
369void PCHDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) {
370 VisitObjCContainerDecl(ID);
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000371 ID->setTypeForDecl(Reader.GetType(Record[Idx++]).getTypePtr());
Chris Lattner698f9252009-04-27 05:27:42 +0000372 ID->setSuperClass(cast_or_null<ObjCInterfaceDecl>
373 (Reader.GetDecl(Record[Idx++])));
374 unsigned NumProtocols = Record[Idx++];
375 llvm::SmallVector<ObjCProtocolDecl *, 16> Protocols;
376 Protocols.reserve(NumProtocols);
377 for (unsigned I = 0; I != NumProtocols; ++I)
378 Protocols.push_back(cast<ObjCProtocolDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000379 llvm::SmallVector<SourceLocation, 16> ProtoLocs;
380 ProtoLocs.reserve(NumProtocols);
381 for (unsigned I = 0; I != NumProtocols; ++I)
382 ProtoLocs.push_back(SourceLocation::getFromRawEncoding(Record[Idx++]));
383 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(),
384 *Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000385 unsigned NumIvars = Record[Idx++];
386 llvm::SmallVector<ObjCIvarDecl *, 16> IVars;
387 IVars.reserve(NumIvars);
388 for (unsigned I = 0; I != NumIvars; ++I)
389 IVars.push_back(cast<ObjCIvarDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000390 ID->setCategoryList(
391 cast_or_null<ObjCCategoryDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000392 ID->setForwardDecl(Record[Idx++]);
393 ID->setImplicitInterfaceDecl(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000394 ID->setClassLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
395 ID->setSuperClassLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
Argyrios Kyrtzidisc999f1f2009-07-18 00:33:23 +0000396 ID->setLocEnd(SourceLocation::getFromRawEncoding(Record[Idx++]));
Chris Lattner698f9252009-04-27 05:27:42 +0000397}
398
399void PCHDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) {
400 VisitFieldDecl(IVD);
401 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]);
Fariborz Jahanianac0021b2010-07-17 18:35:47 +0000402 bool synth = Record[Idx++];
403 IVD->setSynthesize(synth);
Chris Lattner698f9252009-04-27 05:27:42 +0000404}
405
406void PCHDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) {
407 VisitObjCContainerDecl(PD);
408 PD->setForwardDecl(Record[Idx++]);
409 PD->setLocEnd(SourceLocation::getFromRawEncoding(Record[Idx++]));
410 unsigned NumProtoRefs = Record[Idx++];
411 llvm::SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
412 ProtoRefs.reserve(NumProtoRefs);
413 for (unsigned I = 0; I != NumProtoRefs; ++I)
414 ProtoRefs.push_back(cast<ObjCProtocolDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000415 llvm::SmallVector<SourceLocation, 16> ProtoLocs;
416 ProtoLocs.reserve(NumProtoRefs);
417 for (unsigned I = 0; I != NumProtoRefs; ++I)
418 ProtoLocs.push_back(SourceLocation::getFromRawEncoding(Record[Idx++]));
419 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
420 *Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000421}
422
423void PCHDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) {
424 VisitFieldDecl(FD);
425}
426
427void PCHDeclReader::VisitObjCClassDecl(ObjCClassDecl *CD) {
428 VisitDecl(CD);
429 unsigned NumClassRefs = Record[Idx++];
430 llvm::SmallVector<ObjCInterfaceDecl *, 16> ClassRefs;
431 ClassRefs.reserve(NumClassRefs);
432 for (unsigned I = 0; I != NumClassRefs; ++I)
433 ClassRefs.push_back(cast<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++])));
Ted Kremenek321c22f2009-11-18 00:28:11 +0000434 llvm::SmallVector<SourceLocation, 16> SLocs;
435 SLocs.reserve(NumClassRefs);
436 for (unsigned I = 0; I != NumClassRefs; ++I)
437 SLocs.push_back(SourceLocation::getFromRawEncoding(Record[Idx++]));
438 CD->setClassList(*Reader.getContext(), ClassRefs.data(), SLocs.data(),
439 NumClassRefs);
Chris Lattner698f9252009-04-27 05:27:42 +0000440}
441
442void PCHDeclReader::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *FPD) {
443 VisitDecl(FPD);
444 unsigned NumProtoRefs = Record[Idx++];
445 llvm::SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
446 ProtoRefs.reserve(NumProtoRefs);
447 for (unsigned I = 0; I != NumProtoRefs; ++I)
448 ProtoRefs.push_back(cast<ObjCProtocolDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000449 llvm::SmallVector<SourceLocation, 16> ProtoLocs;
450 ProtoLocs.reserve(NumProtoRefs);
451 for (unsigned I = 0; I != NumProtoRefs; ++I)
452 ProtoLocs.push_back(SourceLocation::getFromRawEncoding(Record[Idx++]));
453 FPD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
454 *Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000455}
456
457void PCHDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) {
458 VisitObjCContainerDecl(CD);
459 CD->setClassInterface(cast<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++])));
460 unsigned NumProtoRefs = Record[Idx++];
461 llvm::SmallVector<ObjCProtocolDecl *, 16> ProtoRefs;
462 ProtoRefs.reserve(NumProtoRefs);
463 for (unsigned I = 0; I != NumProtoRefs; ++I)
464 ProtoRefs.push_back(cast<ObjCProtocolDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor18df52b2010-01-16 15:02:53 +0000465 llvm::SmallVector<SourceLocation, 16> ProtoLocs;
466 ProtoLocs.reserve(NumProtoRefs);
467 for (unsigned I = 0; I != NumProtoRefs; ++I)
468 ProtoLocs.push_back(SourceLocation::getFromRawEncoding(Record[Idx++]));
469 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
470 *Reader.getContext());
Chris Lattner698f9252009-04-27 05:27:42 +0000471 CD->setNextClassCategory(cast_or_null<ObjCCategoryDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor3db211b2010-01-16 16:38:58 +0000472 CD->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
473 CD->setCategoryNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
Chris Lattner698f9252009-04-27 05:27:42 +0000474}
475
476void PCHDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) {
477 VisitNamedDecl(CAD);
478 CAD->setClassInterface(cast<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++])));
479}
480
481void PCHDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
482 VisitNamedDecl(D);
Fariborz Jahaniand0502402010-01-21 17:36:00 +0000483 D->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
Sebastian Redl577d4792010-07-22 22:43:28 +0000484 D->setType(Reader.GetTypeSourceInfo(Cursor, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000485 // FIXME: stable encoding
486 D->setPropertyAttributes(
487 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Fariborz Jahanian80aa1cd2010-06-22 23:20:40 +0000488 D->setPropertyAttributesAsWritten(
489 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000490 // FIXME: stable encoding
491 D->setPropertyImplementation(
492 (ObjCPropertyDecl::PropertyControl)Record[Idx++]);
493 D->setGetterName(Reader.ReadDeclarationName(Record, Idx).getObjCSelector());
494 D->setSetterName(Reader.ReadDeclarationName(Record, Idx).getObjCSelector());
495 D->setGetterMethodDecl(
496 cast_or_null<ObjCMethodDecl>(Reader.GetDecl(Record[Idx++])));
497 D->setSetterMethodDecl(
498 cast_or_null<ObjCMethodDecl>(Reader.GetDecl(Record[Idx++])));
499 D->setPropertyIvarDecl(
500 cast_or_null<ObjCIvarDecl>(Reader.GetDecl(Record[Idx++])));
501}
502
503void PCHDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) {
Argyrios Kyrtzidisaecae622009-07-27 19:04:32 +0000504 VisitObjCContainerDecl(D);
Chris Lattner698f9252009-04-27 05:27:42 +0000505 D->setClassInterface(
506 cast_or_null<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000507}
508
509void PCHDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
510 VisitObjCImplDecl(D);
511 D->setIdentifier(Reader.GetIdentifierInfo(Record, Idx));
512}
513
514void PCHDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
515 VisitObjCImplDecl(D);
516 D->setSuperClass(
517 cast_or_null<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++])));
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +0000518 llvm::tie(D->IvarInitializers, D->NumIvarInitializers)
519 = Reader.ReadCXXBaseOrMemberInitializers(Cursor, Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +0000520}
521
522
523void PCHDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
524 VisitDecl(D);
525 D->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
526 D->setPropertyDecl(
527 cast_or_null<ObjCPropertyDecl>(Reader.GetDecl(Record[Idx++])));
528 D->setPropertyIvarDecl(
529 cast_or_null<ObjCIvarDecl>(Reader.GetDecl(Record[Idx++])));
Argyrios Kyrtzidis2f922302010-08-09 10:54:37 +0000530 D->setGetterCXXConstructor(Reader.ReadExpr(Cursor));
531 D->setSetterCXXAssignment(Reader.ReadExpr(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000532}
533
534void PCHDeclReader::VisitFieldDecl(FieldDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000535 VisitDeclaratorDecl(FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000536 FD->setMutable(Record[Idx++]);
537 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000538 FD->setBitWidth(Reader.ReadExpr(Cursor));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000539 if (!FD->getDeclName()) {
540 FieldDecl *Tmpl = cast_or_null<FieldDecl>(Reader.GetDecl(Record[Idx++]));
541 if (Tmpl)
542 Reader.getContext()->setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
543 }
Chris Lattner698f9252009-04-27 05:27:42 +0000544}
545
546void PCHDeclReader::VisitVarDecl(VarDecl *VD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000547 VisitDeclaratorDecl(VD);
Chris Lattner698f9252009-04-27 05:27:42 +0000548 VD->setStorageClass((VarDecl::StorageClass)Record[Idx++]);
Douglas Gregor16573fa2010-04-19 22:54:31 +0000549 VD->setStorageClassAsWritten((VarDecl::StorageClass)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000550 VD->setThreadSpecified(Record[Idx++]);
551 VD->setCXXDirectInitializer(Record[Idx++]);
Douglas Gregor324b54d2010-05-03 18:51:14 +0000552 VD->setExceptionVariable(Record[Idx++]);
Douglas Gregor5077c382010-05-15 06:01:05 +0000553 VD->setNRVOVariable(Record[Idx++]);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000554 VisitRedeclarable(VD);
Chris Lattner698f9252009-04-27 05:27:42 +0000555 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000556 VD->setInit(Reader.ReadExpr(Cursor));
Argyrios Kyrtzidis9421adc2010-07-04 21:44:00 +0000557
558 if (Record[Idx++]) { // HasMemberSpecializationInfo.
559 VarDecl *Tmpl = cast<VarDecl>(Reader.GetDecl(Record[Idx++]));
560 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
561 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
562 Reader.getContext()->setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
563 }
Chris Lattner698f9252009-04-27 05:27:42 +0000564}
565
566void PCHDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) {
567 VisitVarDecl(PD);
568}
569
570void PCHDeclReader::VisitParmVarDecl(ParmVarDecl *PD) {
571 VisitVarDecl(PD);
572 PD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]);
John McCallbf73b352010-03-12 18:31:32 +0000573 PD->setHasInheritedDefaultArg(Record[Idx++]);
Argyrios Kyrtzidis691d77f2010-07-04 21:44:07 +0000574 if (Record[Idx++]) // hasUninstantiatedDefaultArg.
Sebastian Redl577d4792010-07-22 22:43:28 +0000575 PD->setUninstantiatedDefaultArg(Reader.ReadExpr(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000576}
577
Chris Lattner698f9252009-04-27 05:27:42 +0000578void PCHDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) {
579 VisitDecl(AD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000580 AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(Cursor)));
Chris Lattner698f9252009-04-27 05:27:42 +0000581}
582
583void PCHDeclReader::VisitBlockDecl(BlockDecl *BD) {
584 VisitDecl(BD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000585 BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(Cursor)));
586 BD->setSignatureAsWritten(Reader.GetTypeSourceInfo(Cursor, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000587 unsigned NumParams = Record[Idx++];
588 llvm::SmallVector<ParmVarDecl *, 16> Params;
589 Params.reserve(NumParams);
590 for (unsigned I = 0; I != NumParams; ++I)
591 Params.push_back(cast<ParmVarDecl>(Reader.GetDecl(Record[Idx++])));
Douglas Gregor838db382010-02-11 01:19:42 +0000592 BD->setParams(Params.data(), NumParams);
Chris Lattner698f9252009-04-27 05:27:42 +0000593}
594
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000595void PCHDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) {
596 VisitDecl(D);
597 D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]);
598 D->setHasBraces(Record[Idx++]);
599}
600
601void PCHDeclReader::VisitNamespaceDecl(NamespaceDecl *D) {
602 VisitNamedDecl(D);
603 D->setLBracLoc(Reader.ReadSourceLocation(Record, Idx));
604 D->setRBracLoc(Reader.ReadSourceLocation(Record, Idx));
605 D->setNextNamespace(
606 cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++])));
607
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000608 bool IsOriginal = Record[Idx++];
Argyrios Kyrtzidisa038c1d2010-07-03 07:57:53 +0000609 D->OrigOrAnonNamespace.setInt(IsOriginal);
610 D->OrigOrAnonNamespace.setPointer(
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000611 cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++])));
612}
613
614void PCHDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) {
615 VisitNamedDecl(D);
616
617 D->setAliasLoc(Reader.ReadSourceLocation(Record, Idx));
618 D->setQualifierRange(Reader.ReadSourceRange(Record, Idx));
619 D->setQualifier(Reader.ReadNestedNameSpecifier(Record, Idx));
620 D->setTargetNameLoc(Reader.ReadSourceLocation(Record, Idx));
621 D->setAliasedNamespace(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
622}
623
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +0000624void PCHDeclReader::VisitUsingDecl(UsingDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000625 VisitNamedDecl(D);
626 D->setUsingLocation(Reader.ReadSourceLocation(Record, Idx));
627 D->setNestedNameRange(Reader.ReadSourceRange(Record, Idx));
628 D->setTargetNestedNameDecl(Reader.ReadNestedNameSpecifier(Record, Idx));
Abramo Bagnaraef3dce82010-08-12 11:46:03 +0000629 // FIXME: read the DNLoc component.
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000630
631 // FIXME: It would probably be more efficient to read these into a vector
632 // and then re-cosntruct the shadow decl set over that vector since it
633 // would avoid existence checks.
634 unsigned NumShadows = Record[Idx++];
635 for(unsigned I = 0; I != NumShadows; ++I) {
Argyrios Kyrtzidis82f8e792010-07-08 13:09:41 +0000636 // Avoid invariant checking of UsingDecl::addShadowDecl, the decl may still
637 // be initializing.
638 D->Shadows.insert(cast<UsingShadowDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000639 }
640 D->setTypeName(Record[Idx++]);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000641 NamedDecl *Pattern = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++]));
642 if (Pattern)
643 Reader.getContext()->setInstantiatedFromUsingDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000644}
645
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +0000646void PCHDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000647 VisitNamedDecl(D);
648 D->setTargetDecl(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
649 D->setUsingDecl(cast<UsingDecl>(Reader.GetDecl(Record[Idx++])));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000650 UsingShadowDecl *Pattern
651 = cast_or_null<UsingShadowDecl>(Reader.GetDecl(Record[Idx++]));
652 if (Pattern)
653 Reader.getContext()->setInstantiatedFromUsingShadowDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000654}
655
656void PCHDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
657 VisitNamedDecl(D);
658 D->setNamespaceKeyLocation(Reader.ReadSourceLocation(Record, Idx));
659 D->setQualifierRange(Reader.ReadSourceRange(Record, Idx));
660 D->setQualifier(Reader.ReadNestedNameSpecifier(Record, Idx));
661 D->setIdentLocation(Reader.ReadSourceLocation(Record, Idx));
662 D->setNominatedNamespace(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
663 D->setCommonAncestor(cast_or_null<DeclContext>(
664 Reader.GetDecl(Record[Idx++])));
665}
666
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000667void PCHDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000668 VisitValueDecl(D);
669 D->setTargetNestedNameRange(Reader.ReadSourceRange(Record, Idx));
670 D->setUsingLoc(Reader.ReadSourceLocation(Record, Idx));
671 D->setTargetNestedNameSpecifier(Reader.ReadNestedNameSpecifier(Record, Idx));
Abramo Bagnaraef3dce82010-08-12 11:46:03 +0000672 // FIXME: read the DNLoc component.
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000673}
674
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000675void PCHDeclReader::VisitUnresolvedUsingTypenameDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000676 UnresolvedUsingTypenameDecl *D) {
677 VisitTypeDecl(D);
678 D->setTargetNestedNameRange(Reader.ReadSourceRange(Record, Idx));
679 D->setUsingLoc(Reader.ReadSourceLocation(Record, Idx));
680 D->setTypenameLoc(Reader.ReadSourceLocation(Record, Idx));
681 D->setTargetNestedNameSpecifier(Reader.ReadNestedNameSpecifier(Record, Idx));
682}
683
684void PCHDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000685 ASTContext &C = *Reader.getContext();
686
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000687 // We need to allocate the DefinitionData struct ahead of VisitRecordDecl
688 // so that the other CXXRecordDecls can get a pointer even when the owner
689 // is still initializing.
690 bool OwnsDefinitionData = false;
691 enum DataOwnership { Data_NoDefData, Data_Owner, Data_NotOwner };
692 switch ((DataOwnership)Record[Idx++]) {
693 default:
694 assert(0 && "Out of sync with PCHDeclWriter or messed up reading");
695 case Data_NoDefData:
696 break;
697 case Data_Owner:
698 OwnsDefinitionData = true;
699 D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
700 break;
701 case Data_NotOwner:
702 D->DefinitionData
703 = cast<CXXRecordDecl>(Reader.GetDecl(Record[Idx++]))->DefinitionData;
704 break;
705 }
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000706
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000707 VisitRecordDecl(D);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000708
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000709 if (OwnsDefinitionData) {
710 assert(D->DefinitionData);
711 struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData;
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000712
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000713 Data.UserDeclaredConstructor = Record[Idx++];
714 Data.UserDeclaredCopyConstructor = Record[Idx++];
715 Data.UserDeclaredCopyAssignment = Record[Idx++];
716 Data.UserDeclaredDestructor = Record[Idx++];
717 Data.Aggregate = Record[Idx++];
718 Data.PlainOldData = Record[Idx++];
719 Data.Empty = Record[Idx++];
720 Data.Polymorphic = Record[Idx++];
721 Data.Abstract = Record[Idx++];
722 Data.HasTrivialConstructor = Record[Idx++];
723 Data.HasTrivialCopyConstructor = Record[Idx++];
724 Data.HasTrivialCopyAssignment = Record[Idx++];
725 Data.HasTrivialDestructor = Record[Idx++];
726 Data.ComputedVisibleConversions = Record[Idx++];
727 Data.DeclaredDefaultConstructor = Record[Idx++];
728 Data.DeclaredCopyConstructor = Record[Idx++];
729 Data.DeclaredCopyAssignment = Record[Idx++];
730 Data.DeclaredDestructor = Record[Idx++];
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000731
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000732 // setBases() is unsuitable since it may try to iterate the bases of an
Nick Lewycky56062202010-07-26 16:56:01 +0000733 // uninitialized base.
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000734 Data.NumBases = Record[Idx++];
735 Data.Bases = new(C) CXXBaseSpecifier [Data.NumBases];
736 for (unsigned i = 0; i != Data.NumBases; ++i)
Nick Lewycky56062202010-07-26 16:56:01 +0000737 Data.Bases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx);
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000738
739 // FIXME: Make VBases lazily computed when needed to avoid storing them.
740 Data.NumVBases = Record[Idx++];
741 Data.VBases = new(C) CXXBaseSpecifier [Data.NumVBases];
742 for (unsigned i = 0; i != Data.NumVBases; ++i)
Nick Lewycky56062202010-07-26 16:56:01 +0000743 Data.VBases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx);
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000744
745 Reader.ReadUnresolvedSet(Data.Conversions, Record, Idx);
746 Reader.ReadUnresolvedSet(Data.VisibleConversions, Record, Idx);
747 assert(Data.Definition && "Data.Definition should be already set!");
748 Data.FirstFriend
749 = cast_or_null<FriendDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000750 }
751
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000752 enum CXXRecKind {
753 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
754 };
755 switch ((CXXRecKind)Record[Idx++]) {
756 default:
757 assert(false && "Out of sync with PCHDeclWriter::VisitCXXRecordDecl?");
758 case CXXRecNotTemplate:
759 break;
760 case CXXRecTemplate:
761 D->setDescribedClassTemplate(
762 cast<ClassTemplateDecl>(Reader.GetDecl(Record[Idx++])));
763 break;
764 case CXXRecMemberSpecialization: {
765 CXXRecordDecl *RD = cast<CXXRecordDecl>(Reader.GetDecl(Record[Idx++]));
766 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
767 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
768 D->setInstantiationOfMemberClass(RD, TSK);
769 D->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
770 break;
771 }
772 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000773}
774
775void PCHDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000776 VisitFunctionDecl(D);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000777 unsigned NumOverridenMethods = Record[Idx++];
778 while (NumOverridenMethods--) {
779 CXXMethodDecl *MD = cast<CXXMethodDecl>(Reader.GetDecl(Record[Idx++]));
780 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
781 // MD may be initializing.
782 Reader.getContext()->addOverriddenMethod(D, MD);
783 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000784}
785
786void PCHDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000787 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000788
789 D->IsExplicitSpecified = Record[Idx++];
790 D->ImplicitlyDefined = Record[Idx++];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +0000791 llvm::tie(D->BaseOrMemberInitializers, D->NumBaseOrMemberInitializers)
792 = Reader.ReadCXXBaseOrMemberInitializers(Cursor, Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000793}
794
795void PCHDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000796 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000797
798 D->ImplicitlyDefined = Record[Idx++];
799 D->OperatorDelete = cast_or_null<FunctionDecl>(Reader.GetDecl(Record[Idx++]));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000800}
801
802void PCHDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000803 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000804 D->IsExplicitSpecified = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000805}
806
Abramo Bagnara6206d532010-06-05 05:09:32 +0000807void PCHDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
808 VisitDecl(D);
809 D->setColonLoc(Reader.ReadSourceLocation(Record, Idx));
810}
811
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000812void PCHDeclReader::VisitFriendDecl(FriendDecl *D) {
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000813 VisitDecl(D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000814 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000815 D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000816 else
817 D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++]));
818 D->NextFriend = cast_or_null<FriendDecl>(Reader.GetDecl(Record[Idx++]));
819 D->FriendLoc = Reader.ReadSourceLocation(Record, Idx);
820}
821
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000822void PCHDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +0000823 VisitDecl(D);
824 unsigned NumParams = Record[Idx++];
825 D->NumParams = NumParams;
826 D->Params = new TemplateParameterList*[NumParams];
827 for (unsigned i = 0; i != NumParams; ++i)
828 D->Params[i] = Reader.ReadTemplateParameterList(Record, Idx);
829 if (Record[Idx++]) // HasFriendDecl
830 D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++]));
831 else
Sebastian Redl577d4792010-07-22 22:43:28 +0000832 D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +0000833 D->FriendLoc = Reader.ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000834}
835
836void PCHDeclReader::VisitTemplateDecl(TemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000837 VisitNamedDecl(D);
838
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +0000839 NamedDecl *TemplatedDecl
840 = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000841 TemplateParameterList* TemplateParams
842 = Reader.ReadTemplateParameterList(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000843 D->init(TemplatedDecl, TemplateParams);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000844}
845
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000846void PCHDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000847 VisitTemplateDecl(D);
848
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000849 D->IdentifierNamespace = Record[Idx++];
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000850 RedeclarableTemplateDecl *PrevDecl =
851 cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]));
852 assert((PrevDecl == 0 || PrevDecl->getKind() == D->getKind()) &&
853 "PrevDecl kind mismatch");
854 if (PrevDecl)
855 D->CommonOrPrev = PrevDecl;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000856 if (PrevDecl == 0) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000857 if (RedeclarableTemplateDecl *RTD
858 = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]))) {
859 assert(RTD->getKind() == D->getKind() &&
860 "InstantiatedFromMemberTemplate kind mismatch");
861 D->setInstantiatedFromMemberTemplateImpl(RTD);
862 if (Record[Idx++])
863 D->setMemberSpecialization();
864 }
Peter Collingbourne8a798a72010-07-29 16:12:01 +0000865
866 RedeclarableTemplateDecl *LatestDecl =
867 cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +0000868
869 // This decl is a first one and the latest declaration that it points to is
870 // in the same PCH. However, if this actually needs to point to a
871 // redeclaration in another chained PCH, we need to update it by checking
872 // the FirstLatestDeclIDs map which tracks this kind of decls.
873 assert(Reader.GetDecl(ThisDeclID) == D && "Invalid ThisDeclID ?");
874 PCHReader::FirstLatestDeclIDMap::iterator I
875 = Reader.FirstLatestDeclIDs.find(ThisDeclID);
876 if (I != Reader.FirstLatestDeclIDs.end()) {
877 Decl *NewLatest = Reader.GetDecl(I->second);
878 assert((LatestDecl->getLocation().isInvalid() ||
879 NewLatest->getLocation().isInvalid() ||
880 Reader.SourceMgr.isBeforeInTranslationUnit(
881 LatestDecl->getLocation(),
882 NewLatest->getLocation())) &&
883 "The new latest is supposed to come after the previous latest");
884 LatestDecl = cast<RedeclarableTemplateDecl>(NewLatest);
885 }
886
Peter Collingbourne8a798a72010-07-29 16:12:01 +0000887 assert(LatestDecl->getKind() == D->getKind() && "Latest kind mismatch");
888 D->getCommonPtr()->Latest = LatestDecl;
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000889 }
890}
891
892void PCHDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
893 VisitRedeclarableTemplateDecl(D);
894
895 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000896 // This ClassTemplateDecl owns a CommonPtr; read it.
897
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000898 // FoldingSets are filled in VisitClassTemplateSpecializationDecl.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000899 unsigned size = Record[Idx++];
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000900 while (size--)
901 cast<ClassTemplateSpecializationDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000902
903 size = Record[Idx++];
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000904 while (size--)
905 cast<ClassTemplatePartialSpecializationDecl>(
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000906 Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000907
908 // InjectedClassNameType is computed.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000909 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000910}
911
912void PCHDeclReader::VisitClassTemplateSpecializationDecl(
913 ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000914 VisitCXXRecordDecl(D);
915
916 if (Decl *InstD = Reader.GetDecl(Record[Idx++])) {
917 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
918 D->setInstantiationOf(CTD);
919 } else {
920 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000921 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000922 D->setInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(InstD),
923 TemplArgs.data(), TemplArgs.size());
924 }
925 }
926
927 // Explicit info.
Sebastian Redl577d4792010-07-22 22:43:28 +0000928 if (TypeSourceInfo *TyInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx)) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000929 D->setTypeAsWritten(TyInfo);
930 D->setExternLoc(Reader.ReadSourceLocation(Record, Idx));
931 D->setTemplateKeywordLoc(Reader.ReadSourceLocation(Record, Idx));
932 }
933
934 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000935 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000936 D->initTemplateArgs(TemplArgs.data(), TemplArgs.size());
937 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
938 if (POI.isValid())
939 D->setPointOfInstantiation(POI);
940 D->setSpecializationKind((TemplateSpecializationKind)Record[Idx++]);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000941
Argyrios Kyrtzidisbc5ab7c2010-07-20 13:59:40 +0000942 if (D->isCanonicalDecl()) { // It's kept in the folding set.
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000943 ClassTemplateDecl *CanonPattern
944 = cast<ClassTemplateDecl>(Reader.GetDecl(Record[Idx++]));
945 if (ClassTemplatePartialSpecializationDecl *Partial
946 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
Argyrios Kyrtzidis0a67edd2010-07-12 21:41:31 +0000947 CanonPattern->getPartialSpecializations().InsertNode(Partial);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000948 } else {
Argyrios Kyrtzidis0a67edd2010-07-12 21:41:31 +0000949 CanonPattern->getSpecializations().InsertNode(D);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000950 }
951 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000952}
953
954void PCHDeclReader::VisitClassTemplatePartialSpecializationDecl(
955 ClassTemplatePartialSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000956 VisitClassTemplateSpecializationDecl(D);
957
958 D->initTemplateParameters(Reader.ReadTemplateParameterList(Record, Idx));
959
960 TemplateArgumentListInfo ArgInfos;
961 unsigned NumArgs = Record[Idx++];
962 while (NumArgs--)
Sebastian Redl577d4792010-07-22 22:43:28 +0000963 ArgInfos.addArgument(Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000964 D->initTemplateArgsAsWritten(ArgInfos);
965
966 D->setSequenceNumber(Record[Idx++]);
967
968 // These are read/set from/to the first declaration.
969 if (D->getPreviousDeclaration() == 0) {
970 D->setInstantiatedFromMember(
971 cast_or_null<ClassTemplatePartialSpecializationDecl>(
972 Reader.GetDecl(Record[Idx++])));
973 if (Record[Idx++])
Argyrios Kyrtzidis64a5e2c2010-07-09 21:11:35 +0000974 D->setMemberSpecialization();
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000975 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000976}
977
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000978void PCHDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000979 VisitRedeclarableTemplateDecl(D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000980
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000981 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000982 // This FunctionTemplateDecl owns a CommonPtr; read it.
983
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +0000984 // Read the function specialization declarations.
985 // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
986 // through the specialized FunctionDecl's setFunctionTemplateSpecialization.
987 unsigned NumSpecs = Record[Idx++];
988 while (NumSpecs--)
989 Reader.GetDecl(Record[Idx++]);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000990 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000991}
992
993void PCHDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000994 VisitTypeDecl(D);
995
996 D->setDeclaredWithTypename(Record[Idx++]);
997 D->setParameterPack(Record[Idx++]);
998
999 bool Inherited = Record[Idx++];
Sebastian Redl577d4792010-07-22 22:43:28 +00001000 TypeSourceInfo *DefArg = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001001 D->setDefaultArgument(DefArg, Inherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001002}
1003
1004void PCHDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001005 VisitVarDecl(D);
1006 // TemplateParmPosition.
1007 D->setDepth(Record[Idx++]);
1008 D->setPosition(Record[Idx++]);
1009 // Rest of NonTypeTemplateParmDecl.
1010 if (Record[Idx++]) {
Sebastian Redl577d4792010-07-22 22:43:28 +00001011 Expr *DefArg = Reader.ReadExpr(Cursor);
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001012 bool Inherited = Record[Idx++];
1013 D->setDefaultArgument(DefArg, Inherited);
1014 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001015}
1016
1017void PCHDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001018 VisitTemplateDecl(D);
1019 // TemplateParmPosition.
1020 D->setDepth(Record[Idx++]);
1021 D->setPosition(Record[Idx++]);
1022 // Rest of TemplateTemplateParmDecl.
Sebastian Redl577d4792010-07-22 22:43:28 +00001023 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx);
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001024 bool IsInherited = Record[Idx++];
1025 D->setDefaultArgument(Arg, IsInherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001026}
1027
1028void PCHDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001029 VisitDecl(D);
Sebastian Redl577d4792010-07-22 22:43:28 +00001030 D->AssertExpr = Reader.ReadExpr(Cursor);
1031 D->Message = cast<StringLiteral>(Reader.ReadExpr(Cursor));
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001032}
1033
Mike Stump1eb44332009-09-09 15:08:12 +00001034std::pair<uint64_t, uint64_t>
Chris Lattner698f9252009-04-27 05:27:42 +00001035PCHDeclReader::VisitDeclContext(DeclContext *DC) {
1036 uint64_t LexicalOffset = Record[Idx++];
1037 uint64_t VisibleOffset = Record[Idx++];
1038 return std::make_pair(LexicalOffset, VisibleOffset);
1039}
1040
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001041template <typename T>
1042void PCHDeclReader::VisitRedeclarable(Redeclarable<T> *D) {
1043 enum RedeclKind { NoRedeclaration = 0, PointsToPrevious, PointsToLatest };
1044 RedeclKind Kind = (RedeclKind)Record[Idx++];
1045 switch (Kind) {
1046 default:
1047 assert(0 && "Out of sync with PCHDeclWriter::VisitRedeclarable or messed up"
1048 " reading");
1049 case NoRedeclaration:
1050 break;
1051 case PointsToPrevious:
1052 D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink(
1053 cast_or_null<T>(Reader.GetDecl(Record[Idx++])));
1054 break;
1055 case PointsToLatest:
1056 D->RedeclLink = typename Redeclarable<T>::LatestDeclLink(
1057 cast_or_null<T>(Reader.GetDecl(Record[Idx++])));
1058 break;
1059 }
1060
1061 assert(!(Kind == PointsToPrevious &&
1062 Reader.FirstLatestDeclIDs.find(ThisDeclID) !=
1063 Reader.FirstLatestDeclIDs.end()) &&
1064 "This decl is not first, it should not be in the map");
1065 if (Kind == PointsToPrevious)
1066 return;
1067
1068 // This decl is a first one and the latest declaration that it points to is in
1069 // the same PCH. However, if this actually needs to point to a redeclaration
1070 // in another chained PCH, we need to update it by checking the
1071 // FirstLatestDeclIDs map which tracks this kind of decls.
1072 assert(Reader.GetDecl(ThisDeclID) == static_cast<T*>(D) &&
1073 "Invalid ThisDeclID ?");
1074 PCHReader::FirstLatestDeclIDMap::iterator I
1075 = Reader.FirstLatestDeclIDs.find(ThisDeclID);
1076 if (I != Reader.FirstLatestDeclIDs.end()) {
1077 Decl *NewLatest = Reader.GetDecl(I->second);
1078 assert((D->getMostRecentDeclaration()->getLocation().isInvalid() ||
1079 NewLatest->getLocation().isInvalid() ||
1080 Reader.SourceMgr.isBeforeInTranslationUnit(
1081 D->getMostRecentDeclaration()->getLocation(),
1082 NewLatest->getLocation())) &&
1083 "The new latest is supposed to come after the previous latest");
1084 D->RedeclLink
1085 = typename Redeclarable<T>::LatestDeclLink(cast_or_null<T>(NewLatest));
1086 }
1087}
1088
Chris Lattner698f9252009-04-27 05:27:42 +00001089//===----------------------------------------------------------------------===//
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001090// Attribute Reading
Chris Lattner698f9252009-04-27 05:27:42 +00001091//===----------------------------------------------------------------------===//
1092
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001093/// \brief Reads attributes from the current stream position.
Sebastian Redl577d4792010-07-22 22:43:28 +00001094Attr *PCHReader::ReadAttributes(llvm::BitstreamCursor &DeclsCursor) {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001095 unsigned Code = DeclsCursor.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001096 assert(Code == llvm::bitc::UNABBREV_RECORD &&
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001097 "Expected unabbreviated record"); (void)Code;
Mike Stump1eb44332009-09-09 15:08:12 +00001098
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001099 RecordData Record;
1100 unsigned Idx = 0;
1101 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001102 assert(RecCode == pch::DECL_ATTR && "Expected attribute record");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001103 (void)RecCode;
1104
1105#define SIMPLE_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001106 case attr::Name: \
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001107 New = ::new (*Context) Name##Attr(); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001108 break
1109
1110#define STRING_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001111 case attr::Name: \
Ted Kremenek3d2c43e2010-02-11 05:28:37 +00001112 New = ::new (*Context) Name##Attr(*Context, ReadString(Record, Idx)); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001113 break
1114
1115#define UNSIGNED_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001116 case attr::Name: \
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001117 New = ::new (*Context) Name##Attr(Record[Idx++]); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001118 break
1119
1120 Attr *Attrs = 0;
1121 while (Idx < Record.size()) {
1122 Attr *New = 0;
Sean Hunt387475d2010-06-16 23:43:53 +00001123 attr::Kind Kind = (attr::Kind)Record[Idx++];
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001124 bool IsInherited = Record[Idx++];
1125
1126 switch (Kind) {
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001127 default:
1128 assert(0 && "Unknown attribute!");
1129 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001130 STRING_ATTR(Alias);
Daniel Dunbar4e9255f2010-05-27 02:25:39 +00001131 SIMPLE_ATTR(AlignMac68k);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001132 UNSIGNED_ATTR(Aligned);
1133 SIMPLE_ATTR(AlwaysInline);
1134 SIMPLE_ATTR(AnalyzerNoReturn);
1135 STRING_ATTR(Annotate);
1136 STRING_ATTR(AsmLabel);
Sean Hunt7725e672009-11-25 04:20:27 +00001137 SIMPLE_ATTR(BaseCheck);
Mike Stump1eb44332009-09-09 15:08:12 +00001138
Sean Hunt387475d2010-06-16 23:43:53 +00001139 case attr::Blocks:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001140 New = ::new (*Context) BlocksAttr(
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001141 (BlocksAttr::BlocksAttrTypes)Record[Idx++]);
1142 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001143
Eli Friedman8f4c59e2009-11-09 18:38:53 +00001144 SIMPLE_ATTR(CDecl);
1145
Sean Hunt387475d2010-06-16 23:43:53 +00001146 case attr::Cleanup:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001147 New = ::new (*Context) CleanupAttr(
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001148 cast<FunctionDecl>(GetDecl(Record[Idx++])));
1149 break;
1150
1151 SIMPLE_ATTR(Const);
1152 UNSIGNED_ATTR(Constructor);
1153 SIMPLE_ATTR(DLLExport);
1154 SIMPLE_ATTR(DLLImport);
1155 SIMPLE_ATTR(Deprecated);
1156 UNSIGNED_ATTR(Destructor);
1157 SIMPLE_ATTR(FastCall);
Sean Huntbbd37c62009-11-21 08:43:09 +00001158 SIMPLE_ATTR(Final);
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Sean Hunt387475d2010-06-16 23:43:53 +00001160 case attr::Format: {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001161 std::string Type = ReadString(Record, Idx);
1162 unsigned FormatIdx = Record[Idx++];
1163 unsigned FirstArg = Record[Idx++];
Ted Kremenek3d2c43e2010-02-11 05:28:37 +00001164 New = ::new (*Context) FormatAttr(*Context, Type, FormatIdx, FirstArg);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001165 break;
1166 }
Mike Stump1eb44332009-09-09 15:08:12 +00001167
Sean Hunt387475d2010-06-16 23:43:53 +00001168 case attr::FormatArg: {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001169 unsigned FormatIdx = Record[Idx++];
1170 New = ::new (*Context) FormatArgAttr(FormatIdx);
1171 break;
1172 }
Mike Stump1eb44332009-09-09 15:08:12 +00001173
Sean Hunt387475d2010-06-16 23:43:53 +00001174 case attr::Sentinel: {
Fariborz Jahanian5b530052009-05-13 18:09:35 +00001175 int sentinel = Record[Idx++];
1176 int nullPos = Record[Idx++];
1177 New = ::new (*Context) SentinelAttr(sentinel, nullPos);
1178 break;
1179 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001180
1181 SIMPLE_ATTR(GNUInline);
Sean Hunt7725e672009-11-25 04:20:27 +00001182 SIMPLE_ATTR(Hiding);
Mike Stump1eb44332009-09-09 15:08:12 +00001183
Sean Hunt387475d2010-06-16 23:43:53 +00001184 case attr::IBAction:
Ted Kremenekefbddd22010-02-17 02:37:45 +00001185 New = ::new (*Context) IBActionAttr();
1186 break;
1187
Sean Hunt387475d2010-06-16 23:43:53 +00001188 case attr::IBOutlet:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001189 New = ::new (*Context) IBOutletAttr();
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001190 break;
1191
Sean Hunt387475d2010-06-16 23:43:53 +00001192 case attr::IBOutletCollection: {
Ted Kremenek857e9182010-05-19 17:38:06 +00001193 ObjCInterfaceDecl *D =
1194 cast_or_null<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
1195 New = ::new (*Context) IBOutletCollectionAttr(D);
1196 break;
1197 }
1198
Ryan Flynn76168e22009-08-09 20:07:29 +00001199 SIMPLE_ATTR(Malloc);
Mike Stump1feade82009-08-26 22:31:08 +00001200 SIMPLE_ATTR(NoDebug);
1201 SIMPLE_ATTR(NoInline);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001202 SIMPLE_ATTR(NoReturn);
1203 SIMPLE_ATTR(NoThrow);
Mike Stump1eb44332009-09-09 15:08:12 +00001204
Sean Hunt387475d2010-06-16 23:43:53 +00001205 case attr::NonNull: {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001206 unsigned Size = Record[Idx++];
1207 llvm::SmallVector<unsigned, 16> ArgNums;
1208 ArgNums.insert(ArgNums.end(), &Record[Idx], &Record[Idx] + Size);
1209 Idx += Size;
Ted Kremenek59616112010-02-11 07:31:47 +00001210 New = ::new (*Context) NonNullAttr(*Context, ArgNums.data(), Size);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001211 break;
1212 }
Mike Stump1eb44332009-09-09 15:08:12 +00001213
Sean Hunt387475d2010-06-16 23:43:53 +00001214 case attr::ReqdWorkGroupSize: {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001215 unsigned X = Record[Idx++];
1216 unsigned Y = Record[Idx++];
1217 unsigned Z = Record[Idx++];
1218 New = ::new (*Context) ReqdWorkGroupSizeAttr(X, Y, Z);
1219 break;
1220 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001221
1222 SIMPLE_ATTR(ObjCException);
1223 SIMPLE_ATTR(ObjCNSObject);
Ted Kremenek31c780d2010-02-18 00:05:45 +00001224 SIMPLE_ATTR(CFReturnsNotRetained);
Ted Kremenekb71368d2009-05-09 02:44:38 +00001225 SIMPLE_ATTR(CFReturnsRetained);
Ted Kremenek31c780d2010-02-18 00:05:45 +00001226 SIMPLE_ATTR(NSReturnsNotRetained);
Ted Kremenekb71368d2009-05-09 02:44:38 +00001227 SIMPLE_ATTR(NSReturnsRetained);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001228 SIMPLE_ATTR(Overloadable);
Sean Hunt7725e672009-11-25 04:20:27 +00001229 SIMPLE_ATTR(Override);
Anders Carlssona860e752009-08-08 18:23:56 +00001230 SIMPLE_ATTR(Packed);
Daniel Dunbar8a2c92c2010-05-27 01:12:46 +00001231 UNSIGNED_ATTR(MaxFieldAlignment);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001232 SIMPLE_ATTR(Pure);
1233 UNSIGNED_ATTR(Regparm);
1234 STRING_ATTR(Section);
1235 SIMPLE_ATTR(StdCall);
Douglas Gregorf813a2c2010-05-18 16:57:00 +00001236 SIMPLE_ATTR(ThisCall);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001237 SIMPLE_ATTR(TransparentUnion);
1238 SIMPLE_ATTR(Unavailable);
1239 SIMPLE_ATTR(Unused);
1240 SIMPLE_ATTR(Used);
Mike Stump1eb44332009-09-09 15:08:12 +00001241
Sean Hunt387475d2010-06-16 23:43:53 +00001242 case attr::Visibility:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001243 New = ::new (*Context) VisibilityAttr(
Eli Friedmanaa8b0d12010-08-05 06:57:20 +00001244 (VisibilityAttr::VisibilityTypes)Record[Idx++],
1245 (bool)Record[Idx++]);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001246 break;
1247
1248 SIMPLE_ATTR(WarnUnusedResult);
1249 SIMPLE_ATTR(Weak);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001250 SIMPLE_ATTR(WeakRef);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001251 SIMPLE_ATTR(WeakImport);
1252 }
1253
1254 assert(New && "Unable to decode attribute?");
1255 New->setInherited(IsInherited);
1256 New->setNext(Attrs);
1257 Attrs = New;
1258 }
1259#undef UNSIGNED_ATTR
1260#undef STRING_ATTR
1261#undef SIMPLE_ATTR
1262
1263 // The list of attributes was built backwards. Reverse the list
1264 // before returning it.
1265 Attr *PrevAttr = 0, *NextAttr = 0;
1266 while (Attrs) {
1267 NextAttr = Attrs->getNext();
1268 Attrs->setNext(PrevAttr);
1269 PrevAttr = Attrs;
1270 Attrs = NextAttr;
1271 }
1272
1273 return PrevAttr;
1274}
1275
1276//===----------------------------------------------------------------------===//
1277// PCHReader Implementation
1278//===----------------------------------------------------------------------===//
Chris Lattner698f9252009-04-27 05:27:42 +00001279
1280/// \brief Note that we have loaded the declaration with the given
1281/// Index.
Mike Stump1eb44332009-09-09 15:08:12 +00001282///
Chris Lattner698f9252009-04-27 05:27:42 +00001283/// This routine notes that this declaration has already been loaded,
1284/// so that future GetDecl calls will return this declaration rather
1285/// than trying to load a new declaration.
1286inline void PCHReader::LoadedDecl(unsigned Index, Decl *D) {
1287 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1288 DeclsLoaded[Index] = D;
1289}
1290
1291
1292/// \brief Determine whether the consumer will be interested in seeing
1293/// this declaration (via HandleTopLevelDecl).
1294///
1295/// This routine should return true for anything that might affect
1296/// code generation, e.g., inline function definitions, Objective-C
1297/// declarations with metadata, etc.
1298static bool isConsumerInterestedIn(Decl *D) {
Daniel Dunbar04a0b502009-09-17 03:06:44 +00001299 if (isa<FileScopeAsmDecl>(D))
1300 return true;
Chris Lattner698f9252009-04-27 05:27:42 +00001301 if (VarDecl *Var = dyn_cast<VarDecl>(D))
Argyrios Kyrtzidis3f954772010-08-05 09:47:59 +00001302 return Var->isFileVarDecl() &&
1303 Var->isThisDeclarationADefinition() == VarDecl::Definition;
Chris Lattner698f9252009-04-27 05:27:42 +00001304 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
1305 return Func->isThisDeclarationADefinition();
Argyrios Kyrtzidis9d50c062010-08-09 10:54:20 +00001306 return isa<ObjCProtocolDecl>(D) || isa<ObjCImplementationDecl>(D);
Chris Lattner698f9252009-04-27 05:27:42 +00001307}
1308
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001309/// \brief Get the correct cursor and offset for loading a type.
1310PCHReader::RecordLocation PCHReader::DeclCursorForIndex(unsigned Index) {
1311 PerFileData *F = 0;
1312 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
1313 F = Chain[N - I - 1];
1314 if (Index < F->LocalNumDecls)
1315 break;
1316 Index -= F->LocalNumDecls;
1317 }
1318 assert(F && F->LocalNumDecls > Index && "Broken chain");
Sebastian Redl971dd442010-07-20 22:55:31 +00001319 return RecordLocation(&F->DeclsCursor, F->DeclOffsets[Index]);
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001320}
1321
Chris Lattner698f9252009-04-27 05:27:42 +00001322/// \brief Read the declaration at the given offset from the PCH file.
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001323Decl *PCHReader::ReadDeclRecord(unsigned Index, pch::DeclID ID) {
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001324 RecordLocation Loc = DeclCursorForIndex(Index);
Sebastian Redl971dd442010-07-20 22:55:31 +00001325 llvm::BitstreamCursor &DeclsCursor = *Loc.first;
Chris Lattner698f9252009-04-27 05:27:42 +00001326 // Keep track of where we are in the stream, then jump back there
1327 // after reading this declaration.
Chris Lattnerda930612009-04-27 05:58:23 +00001328 SavedStreamPosition SavedPosition(DeclsCursor);
Chris Lattner698f9252009-04-27 05:27:42 +00001329
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001330 ReadingKindTracker ReadingKind(Read_Decl, *this);
1331
Douglas Gregord89275b2009-07-06 18:54:52 +00001332 // Note that we are loading a declaration record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00001333 Deserializing ADecl(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001334
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001335 DeclsCursor.JumpToBit(Loc.second);
Chris Lattner698f9252009-04-27 05:27:42 +00001336 RecordData Record;
Chris Lattnerda930612009-04-27 05:58:23 +00001337 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner698f9252009-04-27 05:27:42 +00001338 unsigned Idx = 0;
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00001339 PCHDeclReader Reader(*this, DeclsCursor, ID, Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +00001340
Chris Lattnerda930612009-04-27 05:58:23 +00001341 Decl *D = 0;
1342 switch ((pch::DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
Chris Lattner698f9252009-04-27 05:27:42 +00001343 case pch::DECL_ATTR:
1344 case pch::DECL_CONTEXT_LEXICAL:
1345 case pch::DECL_CONTEXT_VISIBLE:
1346 assert(false && "Record cannot be de-serialized with ReadDeclRecord");
1347 break;
Chris Lattner698f9252009-04-27 05:27:42 +00001348 case pch::DECL_TRANSLATION_UNIT:
1349 assert(Index == 0 && "Translation unit must be at index 0");
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001350 D = Context->getTranslationUnitDecl();
Chris Lattner698f9252009-04-27 05:27:42 +00001351 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001352 case pch::DECL_TYPEDEF:
John McCallba6a9bd2009-10-24 08:00:42 +00001353 D = TypedefDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001354 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001355 case pch::DECL_ENUM:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001356 D = EnumDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001357 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001358 case pch::DECL_RECORD:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001359 D = RecordDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001360 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001361 case pch::DECL_ENUM_CONSTANT:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001362 D = EnumConstantDecl::Create(*Context, 0, SourceLocation(), 0, QualType(),
Chris Lattner698f9252009-04-27 05:27:42 +00001363 0, llvm::APSInt());
1364 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001365 case pch::DECL_FUNCTION:
Mike Stump1eb44332009-09-09 15:08:12 +00001366 D = FunctionDecl::Create(*Context, 0, SourceLocation(), DeclarationName(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001367 QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001368 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001369 case pch::DECL_LINKAGE_SPEC:
1370 D = LinkageSpecDecl::Create(*Context, 0, SourceLocation(),
1371 (LinkageSpecDecl::LanguageIDs)0,
1372 false);
1373 break;
1374 case pch::DECL_NAMESPACE:
1375 D = NamespaceDecl::Create(*Context, 0, SourceLocation(), 0);
1376 break;
1377 case pch::DECL_NAMESPACE_ALIAS:
1378 D = NamespaceAliasDecl::Create(*Context, 0, SourceLocation(),
1379 SourceLocation(), 0, SourceRange(), 0,
1380 SourceLocation(), 0);
1381 break;
1382 case pch::DECL_USING:
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001383 D = UsingDecl::Create(*Context, 0, SourceRange(), SourceLocation(),
1384 0, DeclarationNameInfo(), false);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001385 break;
1386 case pch::DECL_USING_SHADOW:
1387 D = UsingShadowDecl::Create(*Context, 0, SourceLocation(), 0, 0);
1388 break;
1389 case pch::DECL_USING_DIRECTIVE:
1390 D = UsingDirectiveDecl::Create(*Context, 0, SourceLocation(),
1391 SourceLocation(), SourceRange(), 0,
1392 SourceLocation(), 0, 0);
1393 break;
1394 case pch::DECL_UNRESOLVED_USING_VALUE:
1395 D = UnresolvedUsingValueDecl::Create(*Context, 0, SourceLocation(),
Abramo Bagnaraef3dce82010-08-12 11:46:03 +00001396 SourceRange(), 0,
1397 DeclarationNameInfo());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001398 break;
1399 case pch::DECL_UNRESOLVED_USING_TYPENAME:
1400 D = UnresolvedUsingTypenameDecl::Create(*Context, 0, SourceLocation(),
1401 SourceLocation(), SourceRange(),
1402 0, SourceLocation(),
1403 DeclarationName());
1404 break;
1405 case pch::DECL_CXX_RECORD:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001406 D = CXXRecordDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001407 break;
1408 case pch::DECL_CXX_METHOD:
Abramo Bagnara25777432010-08-11 22:01:17 +00001409 D = CXXMethodDecl::Create(*Context, 0, DeclarationNameInfo(),
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001410 QualType(), 0);
1411 break;
1412 case pch::DECL_CXX_CONSTRUCTOR:
1413 D = CXXConstructorDecl::Create(*Context, Decl::EmptyShell());
1414 break;
1415 case pch::DECL_CXX_DESTRUCTOR:
1416 D = CXXDestructorDecl::Create(*Context, Decl::EmptyShell());
1417 break;
1418 case pch::DECL_CXX_CONVERSION:
1419 D = CXXConversionDecl::Create(*Context, Decl::EmptyShell());
1420 break;
Abramo Bagnara6206d532010-06-05 05:09:32 +00001421 case pch::DECL_ACCESS_SPEC:
1422 D = AccessSpecDecl::Create(*Context, AS_none, 0, SourceLocation(),
1423 SourceLocation());
1424 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001425 case pch::DECL_FRIEND:
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001426 D = FriendDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001427 break;
1428 case pch::DECL_FRIEND_TEMPLATE:
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001429 D = FriendTemplateDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001430 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001431 case pch::DECL_CLASS_TEMPLATE:
Argyrios Kyrtzidis5bf1bdc2010-06-21 10:57:41 +00001432 D = ClassTemplateDecl::Create(*Context, 0, SourceLocation(),
1433 DeclarationName(), 0, 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001434 break;
1435 case pch::DECL_CLASS_TEMPLATE_SPECIALIZATION:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001436 D = ClassTemplateSpecializationDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001437 break;
1438 case pch::DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001439 D = ClassTemplatePartialSpecializationDecl::Create(*Context,
1440 Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001441 break;
1442 case pch::DECL_FUNCTION_TEMPLATE:
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001443 D = FunctionTemplateDecl::Create(*Context, 0, SourceLocation(),
1444 DeclarationName(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001445 break;
1446 case pch::DECL_TEMPLATE_TYPE_PARM:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001447 D = TemplateTypeParmDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001448 break;
1449 case pch::DECL_NON_TYPE_TEMPLATE_PARM:
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001450 D = NonTypeTemplateParmDecl::Create(*Context, 0, SourceLocation(), 0,0,0,
1451 QualType(),0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001452 break;
1453 case pch::DECL_TEMPLATE_TEMPLATE_PARM:
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001454 D = TemplateTemplateParmDecl::Create(*Context, 0, SourceLocation(),0,0,0,0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001455 break;
1456 case pch::DECL_STATIC_ASSERT:
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001457 D = StaticAssertDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001458 break;
1459
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001460 case pch::DECL_OBJC_METHOD:
Mike Stump1eb44332009-09-09 15:08:12 +00001461 D = ObjCMethodDecl::Create(*Context, SourceLocation(), SourceLocation(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00001462 Selector(), QualType(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001463 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001464 case pch::DECL_OBJC_INTERFACE:
Douglas Gregordeacbdc2010-08-11 12:19:30 +00001465 D = ObjCInterfaceDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001466 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001467 case pch::DECL_OBJC_IVAR:
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001468 D = ObjCIvarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001469 ObjCIvarDecl::None);
1470 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001471 case pch::DECL_OBJC_PROTOCOL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001472 D = ObjCProtocolDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001473 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001474 case pch::DECL_OBJC_AT_DEFS_FIELD:
Mike Stump1eb44332009-09-09 15:08:12 +00001475 D = ObjCAtDefsFieldDecl::Create(*Context, 0, SourceLocation(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001476 QualType(), 0);
1477 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001478 case pch::DECL_OBJC_CLASS:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001479 D = ObjCClassDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001480 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001481 case pch::DECL_OBJC_FORWARD_PROTOCOL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001482 D = ObjCForwardProtocolDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001483 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001484 case pch::DECL_OBJC_CATEGORY:
Douglas Gregor3db211b2010-01-16 16:38:58 +00001485 D = ObjCCategoryDecl::Create(*Context, 0, SourceLocation(),
1486 SourceLocation(), SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001487 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001488 case pch::DECL_OBJC_CATEGORY_IMPL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001489 D = ObjCCategoryImplDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001490 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001491 case pch::DECL_OBJC_IMPLEMENTATION:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001492 D = ObjCImplementationDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001493 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001494 case pch::DECL_OBJC_COMPATIBLE_ALIAS:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001495 D = ObjCCompatibleAliasDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001496 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001497 case pch::DECL_OBJC_PROPERTY:
Fariborz Jahaniand0502402010-01-21 17:36:00 +00001498 D = ObjCPropertyDecl::Create(*Context, 0, SourceLocation(), 0, SourceLocation(),
John McCall83a230c2010-06-04 20:50:08 +00001499 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001500 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001501 case pch::DECL_OBJC_PROPERTY_IMPL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001502 D = ObjCPropertyImplDecl::Create(*Context, 0, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001503 SourceLocation(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001504 ObjCPropertyImplDecl::Dynamic, 0);
1505 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001506 case pch::DECL_FIELD:
Mike Stump1eb44332009-09-09 15:08:12 +00001507 D = FieldDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, 0,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001508 false);
Chris Lattner698f9252009-04-27 05:27:42 +00001509 break;
Chris Lattner698f9252009-04-27 05:27:42 +00001510 case pch::DECL_VAR:
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001511 D = VarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001512 VarDecl::None, VarDecl::None);
Chris Lattner698f9252009-04-27 05:27:42 +00001513 break;
1514
1515 case pch::DECL_IMPLICIT_PARAM:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001516 D = ImplicitParamDecl::Create(*Context, 0, SourceLocation(), 0, QualType());
Chris Lattner698f9252009-04-27 05:27:42 +00001517 break;
1518
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001519 case pch::DECL_PARM_VAR:
Mike Stump1eb44332009-09-09 15:08:12 +00001520 D = ParmVarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001521 VarDecl::None, VarDecl::None, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001522 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001523 case pch::DECL_FILE_SCOPE_ASM:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001524 D = FileScopeAsmDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001525 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001526 case pch::DECL_BLOCK:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001527 D = BlockDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001528 break;
1529 }
Chris Lattner698f9252009-04-27 05:27:42 +00001530
1531 assert(D && "Unknown declaration reading PCH file");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001532 LoadedDecl(Index, D);
1533 Reader.Visit(D);
Chris Lattner698f9252009-04-27 05:27:42 +00001534
1535 // If this declaration is also a declaration context, get the
1536 // offsets for its tables of lexical and visible declarations.
1537 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
1538 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
1539 if (Offsets.first || Offsets.second) {
1540 DC->setHasExternalLexicalStorage(Offsets.first != 0);
1541 DC->setHasExternalVisibleStorage(Offsets.second != 0);
Sebastian Redl681d7232010-07-27 00:17:23 +00001542 DeclContextInfo Info;
1543 if (ReadDeclContextStorage(DeclsCursor, Offsets, Info))
1544 return 0;
Sebastian Redld692af72010-07-27 18:24:41 +00001545 DeclContextInfos &Infos = DeclContextOffsets[DC];
1546 // Reading the TU will happen after reading its update blocks, so we need
1547 // to make sure we insert in front. For all other contexts, the vector
1548 // is empty here anyway, so there's no loss in efficiency.
1549 Infos.insert(Infos.begin(), Info);
Chris Lattner698f9252009-04-27 05:27:42 +00001550 }
1551 }
1552 assert(Idx == Record.size());
1553
1554 // If we have deserialized a declaration that has a definition the
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00001555 // AST consumer might need to know about, queue it.
1556 // We don't pass it to the consumer immediately because we may be in recursive
1557 // loading, and some declarations may still be initializing.
1558 if (isConsumerInterestedIn(D))
1559 InterestingDecls.push_back(D);
Chris Lattner698f9252009-04-27 05:27:42 +00001560
1561 return D;
1562}
Sebastian Redl681d7232010-07-27 00:17:23 +00001563
1564bool PCHReader::ReadDeclContextStorage(llvm::BitstreamCursor &Cursor,
1565 const std::pair<uint64_t, uint64_t> &Offsets,
1566 DeclContextInfo &Info) {
1567 SavedStreamPosition SavedPosition(Cursor);
1568 // First the lexical decls.
1569 if (Offsets.first != 0) {
1570 Cursor.JumpToBit(Offsets.first);
1571
1572 RecordData Record;
1573 const char *Blob;
1574 unsigned BlobLen;
1575 unsigned Code = Cursor.ReadCode();
1576 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
1577 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
1578 Error("Expected lexical block");
1579 return true;
1580 }
1581
1582 Info.LexicalDecls = reinterpret_cast<const pch::DeclID*>(Blob);
1583 Info.NumLexicalDecls = BlobLen / sizeof(pch::DeclID);
1584 } else {
1585 Info.LexicalDecls = 0;
1586 Info.NumLexicalDecls = 0;
1587 }
1588
1589 // Now the visible decls.
1590 Info.Stream = &Cursor;
1591 Info.OffsetToVisibleDecls = Offsets.second;
1592
1593 return false;
1594}