blob: e9428cc0b4bd8d68f8349c371090b39bc0928c27 [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;
Chris Lattner698f9252009-04-27 05:27:42 +000034 const PCHReader::RecordData &Record;
35 unsigned &Idx;
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +000036 pch::TypeID TypeIDForTypeDecl;
Chris Lattner698f9252009-04-27 05:27:42 +000037
Sebastian Redl577d4792010-07-22 22:43:28 +000038 uint64_t GetCurrentCursorOffset();
39
Chris Lattner698f9252009-04-27 05:27:42 +000040 public:
Sebastian Redl577d4792010-07-22 22:43:28 +000041 PCHDeclReader(PCHReader &Reader, llvm::BitstreamCursor &Cursor,
42 const PCHReader::RecordData &Record, unsigned &Idx)
43 : Reader(Reader), Cursor(Cursor), Record(Record), Idx(Idx),
44 TypeIDForTypeDecl(0) { }
Chris Lattner698f9252009-04-27 05:27:42 +000045
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +000046 void Visit(Decl *D);
47
Chris Lattner698f9252009-04-27 05:27:42 +000048 void VisitDecl(Decl *D);
49 void VisitTranslationUnitDecl(TranslationUnitDecl *TU);
50 void VisitNamedDecl(NamedDecl *ND);
Douglas Gregor0cef4832010-02-21 18:22:14 +000051 void VisitNamespaceDecl(NamespaceDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000052 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D);
53 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000054 void VisitTypeDecl(TypeDecl *TD);
55 void VisitTypedefDecl(TypedefDecl *TD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +000056 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000057 void VisitTagDecl(TagDecl *TD);
58 void VisitEnumDecl(EnumDecl *ED);
59 void VisitRecordDecl(RecordDecl *RD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000060 void VisitCXXRecordDecl(CXXRecordDecl *D);
61 void VisitClassTemplateSpecializationDecl(
62 ClassTemplateSpecializationDecl *D);
63 void VisitClassTemplatePartialSpecializationDecl(
64 ClassTemplatePartialSpecializationDecl *D);
65 void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000066 void VisitValueDecl(ValueDecl *VD);
67 void VisitEnumConstantDecl(EnumConstantDecl *ECD);
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +000068 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D);
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +000069 void VisitDeclaratorDecl(DeclaratorDecl *DD);
Chris Lattner698f9252009-04-27 05:27:42 +000070 void VisitFunctionDecl(FunctionDecl *FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000071 void VisitCXXMethodDecl(CXXMethodDecl *D);
72 void VisitCXXConstructorDecl(CXXConstructorDecl *D);
73 void VisitCXXDestructorDecl(CXXDestructorDecl *D);
74 void VisitCXXConversionDecl(CXXConversionDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000075 void VisitFieldDecl(FieldDecl *FD);
76 void VisitVarDecl(VarDecl *VD);
77 void VisitImplicitParamDecl(ImplicitParamDecl *PD);
78 void VisitParmVarDecl(ParmVarDecl *PD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000079 void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D);
80 void VisitTemplateDecl(TemplateDecl *D);
Peter Collingbourne9eabeba2010-07-29 16:11:51 +000081 void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000082 void VisitClassTemplateDecl(ClassTemplateDecl *D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +000083 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000084 void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D);
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +000085 void VisitUsingDecl(UsingDecl *D);
86 void VisitUsingShadowDecl(UsingShadowDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000087 void VisitLinkageSpecDecl(LinkageSpecDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000088 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD);
Abramo Bagnara6206d532010-06-05 05:09:32 +000089 void VisitAccessSpecDecl(AccessSpecDecl *D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +000090 void VisitFriendDecl(FriendDecl *D);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000091 void VisitFriendTemplateDecl(FriendTemplateDecl *D);
92 void VisitStaticAssertDecl(StaticAssertDecl *D);
Chris Lattner698f9252009-04-27 05:27:42 +000093 void VisitBlockDecl(BlockDecl *BD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000094
Chris Lattner698f9252009-04-27 05:27:42 +000095 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC);
Chris Lattner6ad9ac02010-05-07 21:43:38 +000096
Sean Hunt9a555912010-05-30 07:21:58 +000097 // FIXME: Reorder according to DeclNodes.td?
Chris Lattner698f9252009-04-27 05:27:42 +000098 void VisitObjCMethodDecl(ObjCMethodDecl *D);
99 void VisitObjCContainerDecl(ObjCContainerDecl *D);
100 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
101 void VisitObjCIvarDecl(ObjCIvarDecl *D);
102 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
103 void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
104 void VisitObjCClassDecl(ObjCClassDecl *D);
105 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
106 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
107 void VisitObjCImplDecl(ObjCImplDecl *D);
108 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
109 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
110 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
111 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
112 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
113 };
114}
115
Sebastian Redl577d4792010-07-22 22:43:28 +0000116uint64_t PCHDeclReader::GetCurrentCursorOffset() {
117 uint64_t Off = 0;
118 for (unsigned I = 0, N = Reader.Chain.size(); I != N; ++I) {
119 PCHReader::PerFileData &F = *Reader.Chain[N - I - 1];
120 if (&Cursor == &F.DeclsCursor) {
121 Off += F.DeclsCursor.GetCurrentBitNo();
122 break;
123 }
124 Off += F.SizeInBits;
125 }
126 return Off;
127}
128
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000129void PCHDeclReader::Visit(Decl *D) {
130 DeclVisitor<PCHDeclReader, void>::Visit(D);
131
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000132 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
133 // if we have a fully initialized TypeDecl, we can safely read its type now.
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000134 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtr());
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000135 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
136 // FunctionDecl's body was written last after all other Stmts/Exprs.
137 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000138 FD->setLazyBody(GetCurrentCursorOffset());
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000139 }
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000140}
141
Chris Lattner698f9252009-04-27 05:27:42 +0000142void PCHDeclReader::VisitDecl(Decl *D) {
143 D->setDeclContext(cast_or_null<DeclContext>(Reader.GetDecl(Record[Idx++])));
144 D->setLexicalDeclContext(
145 cast_or_null<DeclContext>(Reader.GetDecl(Record[Idx++])));
146 D->setLocation(SourceLocation::getFromRawEncoding(Record[Idx++]));
147 D->setInvalidDecl(Record[Idx++]);
148 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000149 D->initAttrs(Reader.ReadAttributes(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000150 D->setImplicit(Record[Idx++]);
Douglas Gregore0762c92009-06-19 23:52:42 +0000151 D->setUsed(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000152 D->setAccess((AccessSpecifier)Record[Idx++]);
Douglas Gregor7d1d49d2009-10-16 20:01:17 +0000153 D->setPCHLevel(Record[Idx++] + 1);
Chris Lattner698f9252009-04-27 05:27:42 +0000154}
155
156void PCHDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) {
157 VisitDecl(TU);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000158 TU->setAnonymousNamespace(
159 cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000160}
161
162void PCHDeclReader::VisitNamedDecl(NamedDecl *ND) {
163 VisitDecl(ND);
Mike Stump1eb44332009-09-09 15:08:12 +0000164 ND->setDeclName(Reader.ReadDeclarationName(Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000165}
166
167void PCHDeclReader::VisitTypeDecl(TypeDecl *TD) {
168 VisitNamedDecl(TD);
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000169 // Delay type reading until after we have fully initialized the decl.
170 TypeIDForTypeDecl = Record[Idx++];
Chris Lattner698f9252009-04-27 05:27:42 +0000171}
172
173void PCHDeclReader::VisitTypedefDecl(TypedefDecl *TD) {
Argyrios Kyrtzidisd8a0c6f2010-07-02 11:55:01 +0000174 VisitTypeDecl(TD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000175 TD->setTypeSourceInfo(Reader.GetTypeSourceInfo(Cursor, Record, Idx));
Chris Lattner698f9252009-04-27 05:27:42 +0000176}
177
178void PCHDeclReader::VisitTagDecl(TagDecl *TD) {
179 VisitTypeDecl(TD);
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000180 TD->IdentifierNamespace = Record[Idx++];
Douglas Gregor8e9e9ef2009-07-29 23:36:44 +0000181 TD->setPreviousDeclaration(
182 cast_or_null<TagDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000183 TD->setTagKind((TagDecl::TagKind)Record[Idx++]);
184 TD->setDefinition(Record[Idx++]);
Douglas Gregorb37b6482010-02-12 17:40:34 +0000185 TD->setEmbeddedInDeclarator(Record[Idx++]);
Argyrios Kyrtzidisad93a742009-07-14 03:18:02 +0000186 TD->setRBraceLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
Douglas Gregor741dd9a2009-07-21 14:46:17 +0000187 TD->setTagKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
John McCallb6217662010-03-15 10:12:16 +0000188 // FIXME: maybe read optional qualifier and its range.
189 TD->setTypedefForAnonDecl(
190 cast_or_null<TypedefDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000191}
192
193void PCHDeclReader::VisitEnumDecl(EnumDecl *ED) {
194 VisitTagDecl(ED);
195 ED->setIntegerType(Reader.GetType(Record[Idx++]));
John McCall842aef82009-12-09 09:09:27 +0000196 ED->setPromotionType(Reader.GetType(Record[Idx++]));
John McCall1b5a6182010-05-06 08:49:23 +0000197 ED->setNumPositiveBits(Record[Idx++]);
198 ED->setNumNegativeBits(Record[Idx++]);
Argyrios Kyrtzidis74228272010-07-06 15:36:48 +0000199 ED->setInstantiationOfMemberEnum(
200 cast_or_null<EnumDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner698f9252009-04-27 05:27:42 +0000201}
202
203void PCHDeclReader::VisitRecordDecl(RecordDecl *RD) {
204 VisitTagDecl(RD);
205 RD->setHasFlexibleArrayMember(Record[Idx++]);
206 RD->setAnonymousStructOrUnion(Record[Idx++]);
Fariborz Jahanian643b7df2009-07-08 16:37:44 +0000207 RD->setHasObjectMember(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000208}
209
210void PCHDeclReader::VisitValueDecl(ValueDecl *VD) {
211 VisitNamedDecl(VD);
212 VD->setType(Reader.GetType(Record[Idx++]));
213}
214
215void PCHDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) {
216 VisitValueDecl(ECD);
217 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000218 ECD->setInitExpr(Reader.ReadExpr(Cursor));
Chris Lattner698f9252009-04-27 05:27:42 +0000219 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx));
220}
221
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000222void PCHDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) {
223 VisitValueDecl(DD);
Sebastian Redl577d4792010-07-22 22:43:28 +0000224 TypeSourceInfo *TInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
John McCalla93c9342009-12-07 02:54:59 +0000225 if (TInfo)
226 DD->setTypeSourceInfo(TInfo);
John McCallb6217662010-03-15 10:12:16 +0000227 // FIXME: read optional qualifier and its range.
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000228}
229
Chris Lattner698f9252009-04-27 05:27:42 +0000230void PCHDeclReader::VisitFunctionDecl(FunctionDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000231 VisitDeclaratorDecl(FD);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000232
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000233 FD->IdentifierNamespace = Record[Idx++];
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000234 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) {
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000235 default: assert(false && "Unhandled TemplatedKind!");
236 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000237 case FunctionDecl::TK_NonTemplate:
238 break;
239 case FunctionDecl::TK_FunctionTemplate:
240 FD->setDescribedFunctionTemplate(
241 cast<FunctionTemplateDecl>(Reader.GetDecl(Record[Idx++])));
242 break;
243 case FunctionDecl::TK_MemberSpecialization: {
244 FunctionDecl *InstFD = cast<FunctionDecl>(Reader.GetDecl(Record[Idx++]));
245 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
246 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
247 FD->setInstantiationOfMemberFunction(InstFD, TSK);
248 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
249 break;
250 }
251 case FunctionDecl::TK_FunctionTemplateSpecialization: {
252 FunctionTemplateDecl *Template
253 = cast<FunctionTemplateDecl>(Reader.GetDecl(Record[Idx++]));
254 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
255
256 // Template arguments.
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000257 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000258 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000259
260 // Template args as written.
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000261 llvm::SmallVector<TemplateArgumentLoc, 8> TemplArgLocs;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000262 SourceLocation LAngleLoc, RAngleLoc;
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000263 if (Record[Idx++]) { // TemplateArgumentsAsWritten != 0
264 unsigned NumTemplateArgLocs = Record[Idx++];
265 TemplArgLocs.reserve(NumTemplateArgLocs);
266 for (unsigned i=0; i != NumTemplateArgLocs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000267 TemplArgLocs.push_back(
268 Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx));
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000269
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000270 LAngleLoc = Reader.ReadSourceLocation(Record, Idx);
271 RAngleLoc = Reader.ReadSourceLocation(Record, Idx);
272 }
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000273
274 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000275
Argyrios Kyrtzidis2c853e42010-07-20 13:59:58 +0000276 if (FD->isCanonicalDecl()) // if canonical add to template's set.
277 FD->setFunctionTemplateSpecialization(Template, TemplArgs.size(),
278 TemplArgs.data(), TSK,
279 TemplArgLocs.size(),
280 TemplArgLocs.data(),
281 LAngleLoc, RAngleLoc, POI);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000282 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000283 }
284 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: {
285 // Templates.
286 UnresolvedSet<8> TemplDecls;
287 unsigned NumTemplates = Record[Idx++];
288 while (NumTemplates--)
289 TemplDecls.addDecl(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
290
291 // Templates args.
292 TemplateArgumentListInfo TemplArgs;
293 unsigned NumArgs = Record[Idx++];
294 while (NumArgs--)
Sebastian Redl577d4792010-07-22 22:43:28 +0000295 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(Cursor,Record, Idx));
Argyrios Kyrtzidis7b081c82010-07-05 10:37:55 +0000296 TemplArgs.setLAngleLoc(Reader.ReadSourceLocation(Record, Idx));
297 TemplArgs.setRAngleLoc(Reader.ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000298
299 FD->setDependentTemplateSpecialization(*Reader.getContext(),
300 TemplDecls, TemplArgs);
Argyrios Kyrtzidisdc767e32010-06-28 09:31:34 +0000301 break;
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +0000302 }
303 }
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000304
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000305 // FunctionDecl's body is handled last at PCHReaderDecl::Visit,
306 // after everything else is read.
307
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000308 // Avoid side effects and invariant checking of FunctionDecl's
309 // setPreviousDeclaration.
310 FD->redeclarable_base::setPreviousDeclaration(
Argyrios Kyrtzidis5efb06f2010-07-02 11:55:40 +0000311 cast_or_null<FunctionDecl>(Reader.GetDecl(Record[Idx++])));
312 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);
371 ID->setTypeForDecl(Reader.GetType(Record[Idx++]).getTypePtr());
372 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++])));
392 ID->setForwardDecl(Record[Idx++]);
393 ID->setImplicitInterfaceDecl(Record[Idx++]);
394 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++])));
Fariborz Jahaniane4498c62010-04-28 16:11:27 +0000518 // FIXME. Add reading of IvarInitializers and NumIvarInitializers.
Chris Lattner698f9252009-04-27 05:27:42 +0000519}
520
521
522void PCHDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
523 VisitDecl(D);
524 D->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++]));
525 D->setPropertyDecl(
526 cast_or_null<ObjCPropertyDecl>(Reader.GetDecl(Record[Idx++])));
527 D->setPropertyIvarDecl(
528 cast_or_null<ObjCIvarDecl>(Reader.GetDecl(Record[Idx++])));
Fariborz Jahanian17cb3262010-05-05 21:52:17 +0000529 // FIXME. read GetterCXXConstructor and SetterCXXAssignment
Chris Lattner698f9252009-04-27 05:27:42 +0000530}
531
532void PCHDeclReader::VisitFieldDecl(FieldDecl *FD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000533 VisitDeclaratorDecl(FD);
Chris Lattner698f9252009-04-27 05:27:42 +0000534 FD->setMutable(Record[Idx++]);
535 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000536 FD->setBitWidth(Reader.ReadExpr(Cursor));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000537 if (!FD->getDeclName()) {
538 FieldDecl *Tmpl = cast_or_null<FieldDecl>(Reader.GetDecl(Record[Idx++]));
539 if (Tmpl)
540 Reader.getContext()->setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
541 }
Chris Lattner698f9252009-04-27 05:27:42 +0000542}
543
544void PCHDeclReader::VisitVarDecl(VarDecl *VD) {
Argyrios Kyrtzidisd4a7e542009-08-19 01:28:35 +0000545 VisitDeclaratorDecl(VD);
Chris Lattner698f9252009-04-27 05:27:42 +0000546 VD->setStorageClass((VarDecl::StorageClass)Record[Idx++]);
Douglas Gregor16573fa2010-04-19 22:54:31 +0000547 VD->setStorageClassAsWritten((VarDecl::StorageClass)Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000548 VD->setThreadSpecified(Record[Idx++]);
549 VD->setCXXDirectInitializer(Record[Idx++]);
550 VD->setDeclaredInCondition(Record[Idx++]);
Douglas Gregor324b54d2010-05-03 18:51:14 +0000551 VD->setExceptionVariable(Record[Idx++]);
Douglas Gregor5077c382010-05-15 06:01:05 +0000552 VD->setNRVOVariable(Record[Idx++]);
Chris Lattner698f9252009-04-27 05:27:42 +0000553 VD->setPreviousDeclaration(
554 cast_or_null<VarDecl>(Reader.GetDecl(Record[Idx++])));
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));
629
630 // FIXME: It would probably be more efficient to read these into a vector
631 // and then re-cosntruct the shadow decl set over that vector since it
632 // would avoid existence checks.
633 unsigned NumShadows = Record[Idx++];
634 for(unsigned I = 0; I != NumShadows; ++I) {
Argyrios Kyrtzidis82f8e792010-07-08 13:09:41 +0000635 // Avoid invariant checking of UsingDecl::addShadowDecl, the decl may still
636 // be initializing.
637 D->Shadows.insert(cast<UsingShadowDecl>(Reader.GetDecl(Record[Idx++])));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000638 }
639 D->setTypeName(Record[Idx++]);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000640 NamedDecl *Pattern = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++]));
641 if (Pattern)
642 Reader.getContext()->setInstantiatedFromUsingDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000643}
644
Argyrios Kyrtzidisb01a5522010-06-20 14:40:59 +0000645void PCHDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000646 VisitNamedDecl(D);
647 D->setTargetDecl(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
648 D->setUsingDecl(cast<UsingDecl>(Reader.GetDecl(Record[Idx++])));
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000649 UsingShadowDecl *Pattern
650 = cast_or_null<UsingShadowDecl>(Reader.GetDecl(Record[Idx++]));
651 if (Pattern)
652 Reader.getContext()->setInstantiatedFromUsingShadowDecl(D, Pattern);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000653}
654
655void PCHDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) {
656 VisitNamedDecl(D);
657 D->setNamespaceKeyLocation(Reader.ReadSourceLocation(Record, Idx));
658 D->setQualifierRange(Reader.ReadSourceRange(Record, Idx));
659 D->setQualifier(Reader.ReadNestedNameSpecifier(Record, Idx));
660 D->setIdentLocation(Reader.ReadSourceLocation(Record, Idx));
661 D->setNominatedNamespace(cast<NamedDecl>(Reader.GetDecl(Record[Idx++])));
662 D->setCommonAncestor(cast_or_null<DeclContext>(
663 Reader.GetDecl(Record[Idx++])));
664}
665
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000666void PCHDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000667 VisitValueDecl(D);
668 D->setTargetNestedNameRange(Reader.ReadSourceRange(Record, Idx));
669 D->setUsingLoc(Reader.ReadSourceLocation(Record, Idx));
670 D->setTargetNestedNameSpecifier(Reader.ReadNestedNameSpecifier(Record, Idx));
671}
672
Argyrios Kyrtzidis8f4eae92010-06-30 08:49:30 +0000673void PCHDeclReader::VisitUnresolvedUsingTypenameDecl(
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000674 UnresolvedUsingTypenameDecl *D) {
675 VisitTypeDecl(D);
676 D->setTargetNestedNameRange(Reader.ReadSourceRange(Record, Idx));
677 D->setUsingLoc(Reader.ReadSourceLocation(Record, Idx));
678 D->setTypenameLoc(Reader.ReadSourceLocation(Record, Idx));
679 D->setTargetNestedNameSpecifier(Reader.ReadNestedNameSpecifier(Record, Idx));
680}
681
682void PCHDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) {
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000683 ASTContext &C = *Reader.getContext();
684
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000685 // We need to allocate the DefinitionData struct ahead of VisitRecordDecl
686 // so that the other CXXRecordDecls can get a pointer even when the owner
687 // is still initializing.
688 bool OwnsDefinitionData = false;
689 enum DataOwnership { Data_NoDefData, Data_Owner, Data_NotOwner };
690 switch ((DataOwnership)Record[Idx++]) {
691 default:
692 assert(0 && "Out of sync with PCHDeclWriter or messed up reading");
693 case Data_NoDefData:
694 break;
695 case Data_Owner:
696 OwnsDefinitionData = true;
697 D->DefinitionData = new (C) struct CXXRecordDecl::DefinitionData(D);
698 break;
699 case Data_NotOwner:
700 D->DefinitionData
701 = cast<CXXRecordDecl>(Reader.GetDecl(Record[Idx++]))->DefinitionData;
702 break;
703 }
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000704
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000705 VisitRecordDecl(D);
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000706
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000707 if (OwnsDefinitionData) {
708 assert(D->DefinitionData);
709 struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData;
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000710
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000711 Data.UserDeclaredConstructor = Record[Idx++];
712 Data.UserDeclaredCopyConstructor = Record[Idx++];
713 Data.UserDeclaredCopyAssignment = Record[Idx++];
714 Data.UserDeclaredDestructor = Record[Idx++];
715 Data.Aggregate = Record[Idx++];
716 Data.PlainOldData = Record[Idx++];
717 Data.Empty = Record[Idx++];
718 Data.Polymorphic = Record[Idx++];
719 Data.Abstract = Record[Idx++];
720 Data.HasTrivialConstructor = Record[Idx++];
721 Data.HasTrivialCopyConstructor = Record[Idx++];
722 Data.HasTrivialCopyAssignment = Record[Idx++];
723 Data.HasTrivialDestructor = Record[Idx++];
724 Data.ComputedVisibleConversions = Record[Idx++];
725 Data.DeclaredDefaultConstructor = Record[Idx++];
726 Data.DeclaredCopyConstructor = Record[Idx++];
727 Data.DeclaredCopyAssignment = Record[Idx++];
728 Data.DeclaredDestructor = Record[Idx++];
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000729
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000730 // setBases() is unsuitable since it may try to iterate the bases of an
Nick Lewycky56062202010-07-26 16:56:01 +0000731 // uninitialized base.
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000732 Data.NumBases = Record[Idx++];
733 Data.Bases = new(C) CXXBaseSpecifier [Data.NumBases];
734 for (unsigned i = 0; i != Data.NumBases; ++i)
Nick Lewycky56062202010-07-26 16:56:01 +0000735 Data.Bases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx);
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000736
737 // FIXME: Make VBases lazily computed when needed to avoid storing them.
738 Data.NumVBases = Record[Idx++];
739 Data.VBases = new(C) CXXBaseSpecifier [Data.NumVBases];
740 for (unsigned i = 0; i != Data.NumVBases; ++i)
Nick Lewycky56062202010-07-26 16:56:01 +0000741 Data.VBases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx);
Argyrios Kyrtzidis0f47bb92010-07-06 15:36:58 +0000742
743 Reader.ReadUnresolvedSet(Data.Conversions, Record, Idx);
744 Reader.ReadUnresolvedSet(Data.VisibleConversions, Record, Idx);
745 assert(Data.Definition && "Data.Definition should be already set!");
746 Data.FirstFriend
747 = cast_or_null<FriendDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +0000748 }
749
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000750 enum CXXRecKind {
751 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization
752 };
753 switch ((CXXRecKind)Record[Idx++]) {
754 default:
755 assert(false && "Out of sync with PCHDeclWriter::VisitCXXRecordDecl?");
756 case CXXRecNotTemplate:
757 break;
758 case CXXRecTemplate:
759 D->setDescribedClassTemplate(
760 cast<ClassTemplateDecl>(Reader.GetDecl(Record[Idx++])));
761 break;
762 case CXXRecMemberSpecialization: {
763 CXXRecordDecl *RD = cast<CXXRecordDecl>(Reader.GetDecl(Record[Idx++]));
764 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++];
765 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
766 D->setInstantiationOfMemberClass(RD, TSK);
767 D->getMemberSpecializationInfo()->setPointOfInstantiation(POI);
768 break;
769 }
770 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000771}
772
773void PCHDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000774 VisitFunctionDecl(D);
Argyrios Kyrtzidisc91e9f42010-07-04 21:44:35 +0000775 unsigned NumOverridenMethods = Record[Idx++];
776 while (NumOverridenMethods--) {
777 CXXMethodDecl *MD = cast<CXXMethodDecl>(Reader.GetDecl(Record[Idx++]));
778 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
779 // MD may be initializing.
780 Reader.getContext()->addOverriddenMethod(D, MD);
781 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000782}
783
784void PCHDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000785 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000786
787 D->IsExplicitSpecified = Record[Idx++];
788 D->ImplicitlyDefined = Record[Idx++];
789
790 unsigned NumInitializers = Record[Idx++];
791 D->NumBaseOrMemberInitializers = NumInitializers;
792 if (NumInitializers) {
793 ASTContext &C = *Reader.getContext();
794
795 D->BaseOrMemberInitializers
796 = new (C) CXXBaseOrMemberInitializer*[NumInitializers];
797 for (unsigned i=0; i != NumInitializers; ++i) {
Duncan Sands1f377b12010-07-06 18:19:40 +0000798 TypeSourceInfo *BaseClassInfo = 0;
799 bool IsBaseVirtual = false;
800 FieldDecl *Member = 0;
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000801
802 bool IsBaseInitializer = Record[Idx++];
803 if (IsBaseInitializer) {
Sebastian Redl577d4792010-07-22 22:43:28 +0000804 BaseClassInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000805 IsBaseVirtual = Record[Idx++];
806 } else {
807 Member = cast<FieldDecl>(Reader.GetDecl(Record[Idx++]));
808 }
809 SourceLocation MemberLoc = Reader.ReadSourceLocation(Record, Idx);
Sebastian Redl577d4792010-07-22 22:43:28 +0000810 Expr *Init = Reader.ReadExpr(Cursor);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000811 FieldDecl *AnonUnionMember
812 = cast_or_null<FieldDecl>(Reader.GetDecl(Record[Idx++]));
813 SourceLocation LParenLoc = Reader.ReadSourceLocation(Record, Idx);
814 SourceLocation RParenLoc = Reader.ReadSourceLocation(Record, Idx);
815 bool IsWritten = Record[Idx++];
816 unsigned SourceOrderOrNumArrayIndices;
817 llvm::SmallVector<VarDecl *, 8> Indices;
818 if (IsWritten) {
819 SourceOrderOrNumArrayIndices = Record[Idx++];
820 } else {
821 SourceOrderOrNumArrayIndices = Record[Idx++];
822 Indices.reserve(SourceOrderOrNumArrayIndices);
823 for (unsigned i=0; i != SourceOrderOrNumArrayIndices; ++i)
824 Indices.push_back(cast<VarDecl>(Reader.GetDecl(Record[Idx++])));
825 }
826
827 CXXBaseOrMemberInitializer *BOMInit;
828 if (IsBaseInitializer) {
829 BOMInit = new (C) CXXBaseOrMemberInitializer(C, BaseClassInfo,
830 IsBaseVirtual, LParenLoc,
831 Init, RParenLoc);
832 } else if (IsWritten) {
833 BOMInit = new (C) CXXBaseOrMemberInitializer(C, Member, MemberLoc,
834 LParenLoc, Init, RParenLoc);
835 } else {
836 BOMInit = CXXBaseOrMemberInitializer::Create(C, Member, MemberLoc,
837 LParenLoc, Init, RParenLoc,
838 Indices.data(),
839 Indices.size());
840 }
841
842 BOMInit->setAnonUnionMember(AnonUnionMember);
843 D->BaseOrMemberInitializers[i] = BOMInit;
844 }
845 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000846}
847
848void PCHDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000849 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000850
851 D->ImplicitlyDefined = Record[Idx++];
852 D->OperatorDelete = cast_or_null<FunctionDecl>(Reader.GetDecl(Record[Idx++]));
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000853}
854
855void PCHDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000856 VisitCXXMethodDecl(D);
Argyrios Kyrtzidis91468322010-07-02 15:58:43 +0000857 D->IsExplicitSpecified = Record[Idx++];
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000858}
859
Abramo Bagnara6206d532010-06-05 05:09:32 +0000860void PCHDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) {
861 VisitDecl(D);
862 D->setColonLoc(Reader.ReadSourceLocation(Record, Idx));
863}
864
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000865void PCHDeclReader::VisitFriendDecl(FriendDecl *D) {
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000866 VisitDecl(D);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000867 if (Record[Idx++])
Sebastian Redl577d4792010-07-22 22:43:28 +0000868 D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +0000869 else
870 D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++]));
871 D->NextFriend = cast_or_null<FriendDecl>(Reader.GetDecl(Record[Idx++]));
872 D->FriendLoc = Reader.ReadSourceLocation(Record, Idx);
873}
874
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000875void PCHDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) {
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +0000876 VisitDecl(D);
877 unsigned NumParams = Record[Idx++];
878 D->NumParams = NumParams;
879 D->Params = new TemplateParameterList*[NumParams];
880 for (unsigned i = 0; i != NumParams; ++i)
881 D->Params[i] = Reader.ReadTemplateParameterList(Record, Idx);
882 if (Record[Idx++]) // HasFriendDecl
883 D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++]));
884 else
Sebastian Redl577d4792010-07-22 22:43:28 +0000885 D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +0000886 D->FriendLoc = Reader.ReadSourceLocation(Record, Idx);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000887}
888
889void PCHDeclReader::VisitTemplateDecl(TemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000890 VisitNamedDecl(D);
891
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +0000892 NamedDecl *TemplatedDecl
893 = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000894 TemplateParameterList* TemplateParams
895 = Reader.ReadTemplateParameterList(Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000896 D->init(TemplatedDecl, TemplateParams);
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000897}
898
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000899void PCHDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000900 VisitTemplateDecl(D);
901
Argyrios Kyrtzidisc8f9af22010-07-05 10:38:01 +0000902 D->IdentifierNamespace = Record[Idx++];
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000903 RedeclarableTemplateDecl *PrevDecl =
904 cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]));
905 assert((PrevDecl == 0 || PrevDecl->getKind() == D->getKind()) &&
906 "PrevDecl kind mismatch");
907 if (PrevDecl)
908 D->CommonOrPrev = PrevDecl;
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000909 if (PrevDecl == 0) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000910 if (RedeclarableTemplateDecl *RTD
911 = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]))) {
912 assert(RTD->getKind() == D->getKind() &&
913 "InstantiatedFromMemberTemplate kind mismatch");
914 D->setInstantiatedFromMemberTemplateImpl(RTD);
915 if (Record[Idx++])
916 D->setMemberSpecialization();
917 }
Peter Collingbourne8a798a72010-07-29 16:12:01 +0000918
919 RedeclarableTemplateDecl *LatestDecl =
920 cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]));
921 assert(LatestDecl->getKind() == D->getKind() && "Latest kind mismatch");
922 D->getCommonPtr()->Latest = LatestDecl;
Peter Collingbourne9eabeba2010-07-29 16:11:51 +0000923 }
924}
925
926void PCHDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) {
927 VisitRedeclarableTemplateDecl(D);
928
929 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000930 // This ClassTemplateDecl owns a CommonPtr; read it.
931
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000932 // FoldingSets are filled in VisitClassTemplateSpecializationDecl.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000933 unsigned size = Record[Idx++];
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000934 while (size--)
935 cast<ClassTemplateSpecializationDecl>(Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000936
937 size = Record[Idx++];
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000938 while (size--)
939 cast<ClassTemplatePartialSpecializationDecl>(
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000940 Reader.GetDecl(Record[Idx++]));
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000941
942 // InjectedClassNameType is computed.
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +0000943 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000944}
945
946void PCHDeclReader::VisitClassTemplateSpecializationDecl(
947 ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000948 VisitCXXRecordDecl(D);
949
950 if (Decl *InstD = Reader.GetDecl(Record[Idx++])) {
951 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
952 D->setInstantiationOf(CTD);
953 } else {
954 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000955 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000956 D->setInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(InstD),
957 TemplArgs.data(), TemplArgs.size());
958 }
959 }
960
961 // Explicit info.
Sebastian Redl577d4792010-07-22 22:43:28 +0000962 if (TypeSourceInfo *TyInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx)) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000963 D->setTypeAsWritten(TyInfo);
964 D->setExternLoc(Reader.ReadSourceLocation(Record, Idx));
965 D->setTemplateKeywordLoc(Reader.ReadSourceLocation(Record, Idx));
966 }
967
968 llvm::SmallVector<TemplateArgument, 8> TemplArgs;
Sebastian Redl577d4792010-07-22 22:43:28 +0000969 Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx);
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000970 D->initTemplateArgs(TemplArgs.data(), TemplArgs.size());
971 SourceLocation POI = Reader.ReadSourceLocation(Record, Idx);
972 if (POI.isValid())
973 D->setPointOfInstantiation(POI);
974 D->setSpecializationKind((TemplateSpecializationKind)Record[Idx++]);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000975
Argyrios Kyrtzidisbc5ab7c2010-07-20 13:59:40 +0000976 if (D->isCanonicalDecl()) { // It's kept in the folding set.
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000977 ClassTemplateDecl *CanonPattern
978 = cast<ClassTemplateDecl>(Reader.GetDecl(Record[Idx++]));
979 if (ClassTemplatePartialSpecializationDecl *Partial
980 = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
Argyrios Kyrtzidis0a67edd2010-07-12 21:41:31 +0000981 CanonPattern->getPartialSpecializations().InsertNode(Partial);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000982 } else {
Argyrios Kyrtzidis0a67edd2010-07-12 21:41:31 +0000983 CanonPattern->getSpecializations().InsertNode(D);
Argyrios Kyrtzidisecf966e2010-07-09 21:11:43 +0000984 }
985 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +0000986}
987
988void PCHDeclReader::VisitClassTemplatePartialSpecializationDecl(
989 ClassTemplatePartialSpecializationDecl *D) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000990 VisitClassTemplateSpecializationDecl(D);
991
992 D->initTemplateParameters(Reader.ReadTemplateParameterList(Record, Idx));
993
994 TemplateArgumentListInfo ArgInfos;
995 unsigned NumArgs = Record[Idx++];
996 while (NumArgs--)
Sebastian Redl577d4792010-07-22 22:43:28 +0000997 ArgInfos.addArgument(Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx));
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +0000998 D->initTemplateArgsAsWritten(ArgInfos);
999
1000 D->setSequenceNumber(Record[Idx++]);
1001
1002 // These are read/set from/to the first declaration.
1003 if (D->getPreviousDeclaration() == 0) {
1004 D->setInstantiatedFromMember(
1005 cast_or_null<ClassTemplatePartialSpecializationDecl>(
1006 Reader.GetDecl(Record[Idx++])));
1007 if (Record[Idx++])
Argyrios Kyrtzidis64a5e2c2010-07-09 21:11:35 +00001008 D->setMemberSpecialization();
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00001009 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001010}
1011
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001012void PCHDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) {
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001013 VisitRedeclarableTemplateDecl(D);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001014
Peter Collingbourne9eabeba2010-07-29 16:11:51 +00001015 if (D->getPreviousDeclaration() == 0) {
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001016 // This FunctionTemplateDecl owns a CommonPtr; read it.
1017
Argyrios Kyrtzidis057d9af2010-07-06 15:37:09 +00001018 // Read the function specialization declarations.
1019 // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled
1020 // through the specialized FunctionDecl's setFunctionTemplateSpecialization.
1021 unsigned NumSpecs = Record[Idx++];
1022 while (NumSpecs--)
1023 Reader.GetDecl(Record[Idx++]);
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001024 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001025}
1026
1027void PCHDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) {
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001028 VisitTypeDecl(D);
1029
1030 D->setDeclaredWithTypename(Record[Idx++]);
1031 D->setParameterPack(Record[Idx++]);
1032
1033 bool Inherited = Record[Idx++];
Sebastian Redl577d4792010-07-22 22:43:28 +00001034 TypeSourceInfo *DefArg = Reader.GetTypeSourceInfo(Cursor, Record, Idx);
Argyrios Kyrtzidis8731ca72010-06-19 19:29:09 +00001035 D->setDefaultArgument(DefArg, Inherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001036}
1037
1038void PCHDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) {
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001039 VisitVarDecl(D);
1040 // TemplateParmPosition.
1041 D->setDepth(Record[Idx++]);
1042 D->setPosition(Record[Idx++]);
1043 // Rest of NonTypeTemplateParmDecl.
1044 if (Record[Idx++]) {
Sebastian Redl577d4792010-07-22 22:43:28 +00001045 Expr *DefArg = Reader.ReadExpr(Cursor);
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001046 bool Inherited = Record[Idx++];
1047 D->setDefaultArgument(DefArg, Inherited);
1048 }
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001049}
1050
1051void PCHDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) {
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001052 VisitTemplateDecl(D);
1053 // TemplateParmPosition.
1054 D->setDepth(Record[Idx++]);
1055 D->setPosition(Record[Idx++]);
1056 // Rest of TemplateTemplateParmDecl.
Sebastian Redl577d4792010-07-22 22:43:28 +00001057 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx);
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001058 bool IsInherited = Record[Idx++];
1059 D->setDefaultArgument(Arg, IsInherited);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001060}
1061
1062void PCHDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) {
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001063 VisitDecl(D);
Sebastian Redl577d4792010-07-22 22:43:28 +00001064 D->AssertExpr = Reader.ReadExpr(Cursor);
1065 D->Message = cast<StringLiteral>(Reader.ReadExpr(Cursor));
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001066}
1067
Mike Stump1eb44332009-09-09 15:08:12 +00001068std::pair<uint64_t, uint64_t>
Chris Lattner698f9252009-04-27 05:27:42 +00001069PCHDeclReader::VisitDeclContext(DeclContext *DC) {
1070 uint64_t LexicalOffset = Record[Idx++];
1071 uint64_t VisibleOffset = Record[Idx++];
1072 return std::make_pair(LexicalOffset, VisibleOffset);
1073}
1074
1075//===----------------------------------------------------------------------===//
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001076// Attribute Reading
Chris Lattner698f9252009-04-27 05:27:42 +00001077//===----------------------------------------------------------------------===//
1078
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001079/// \brief Reads attributes from the current stream position.
Sebastian Redl577d4792010-07-22 22:43:28 +00001080Attr *PCHReader::ReadAttributes(llvm::BitstreamCursor &DeclsCursor) {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001081 unsigned Code = DeclsCursor.ReadCode();
Mike Stump1eb44332009-09-09 15:08:12 +00001082 assert(Code == llvm::bitc::UNABBREV_RECORD &&
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001083 "Expected unabbreviated record"); (void)Code;
Mike Stump1eb44332009-09-09 15:08:12 +00001084
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001085 RecordData Record;
1086 unsigned Idx = 0;
1087 unsigned RecCode = DeclsCursor.ReadRecord(Code, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001088 assert(RecCode == pch::DECL_ATTR && "Expected attribute record");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001089 (void)RecCode;
1090
1091#define SIMPLE_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001092 case attr::Name: \
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001093 New = ::new (*Context) Name##Attr(); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001094 break
1095
1096#define STRING_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001097 case attr::Name: \
Ted Kremenek3d2c43e2010-02-11 05:28:37 +00001098 New = ::new (*Context) Name##Attr(*Context, ReadString(Record, Idx)); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001099 break
1100
1101#define UNSIGNED_ATTR(Name) \
Sean Hunt387475d2010-06-16 23:43:53 +00001102 case attr::Name: \
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001103 New = ::new (*Context) Name##Attr(Record[Idx++]); \
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001104 break
1105
1106 Attr *Attrs = 0;
1107 while (Idx < Record.size()) {
1108 Attr *New = 0;
Sean Hunt387475d2010-06-16 23:43:53 +00001109 attr::Kind Kind = (attr::Kind)Record[Idx++];
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001110 bool IsInherited = Record[Idx++];
1111
1112 switch (Kind) {
Anton Korobeynikov82d0a412010-01-10 12:58:08 +00001113 default:
1114 assert(0 && "Unknown attribute!");
1115 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001116 STRING_ATTR(Alias);
Daniel Dunbar4e9255f2010-05-27 02:25:39 +00001117 SIMPLE_ATTR(AlignMac68k);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001118 UNSIGNED_ATTR(Aligned);
1119 SIMPLE_ATTR(AlwaysInline);
1120 SIMPLE_ATTR(AnalyzerNoReturn);
1121 STRING_ATTR(Annotate);
1122 STRING_ATTR(AsmLabel);
Sean Hunt7725e672009-11-25 04:20:27 +00001123 SIMPLE_ATTR(BaseCheck);
Mike Stump1eb44332009-09-09 15:08:12 +00001124
Sean Hunt387475d2010-06-16 23:43:53 +00001125 case attr::Blocks:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001126 New = ::new (*Context) BlocksAttr(
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001127 (BlocksAttr::BlocksAttrTypes)Record[Idx++]);
1128 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001129
Eli Friedman8f4c59e2009-11-09 18:38:53 +00001130 SIMPLE_ATTR(CDecl);
1131
Sean Hunt387475d2010-06-16 23:43:53 +00001132 case attr::Cleanup:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001133 New = ::new (*Context) CleanupAttr(
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001134 cast<FunctionDecl>(GetDecl(Record[Idx++])));
1135 break;
1136
1137 SIMPLE_ATTR(Const);
1138 UNSIGNED_ATTR(Constructor);
1139 SIMPLE_ATTR(DLLExport);
1140 SIMPLE_ATTR(DLLImport);
1141 SIMPLE_ATTR(Deprecated);
1142 UNSIGNED_ATTR(Destructor);
1143 SIMPLE_ATTR(FastCall);
Sean Huntbbd37c62009-11-21 08:43:09 +00001144 SIMPLE_ATTR(Final);
Mike Stump1eb44332009-09-09 15:08:12 +00001145
Sean Hunt387475d2010-06-16 23:43:53 +00001146 case attr::Format: {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001147 std::string Type = ReadString(Record, Idx);
1148 unsigned FormatIdx = Record[Idx++];
1149 unsigned FirstArg = Record[Idx++];
Ted Kremenek3d2c43e2010-02-11 05:28:37 +00001150 New = ::new (*Context) FormatAttr(*Context, Type, FormatIdx, FirstArg);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001151 break;
1152 }
Mike Stump1eb44332009-09-09 15:08:12 +00001153
Sean Hunt387475d2010-06-16 23:43:53 +00001154 case attr::FormatArg: {
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001155 unsigned FormatIdx = Record[Idx++];
1156 New = ::new (*Context) FormatArgAttr(FormatIdx);
1157 break;
1158 }
Mike Stump1eb44332009-09-09 15:08:12 +00001159
Sean Hunt387475d2010-06-16 23:43:53 +00001160 case attr::Sentinel: {
Fariborz Jahanian5b530052009-05-13 18:09:35 +00001161 int sentinel = Record[Idx++];
1162 int nullPos = Record[Idx++];
1163 New = ::new (*Context) SentinelAttr(sentinel, nullPos);
1164 break;
1165 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001166
1167 SIMPLE_ATTR(GNUInline);
Sean Hunt7725e672009-11-25 04:20:27 +00001168 SIMPLE_ATTR(Hiding);
Mike Stump1eb44332009-09-09 15:08:12 +00001169
Sean Hunt387475d2010-06-16 23:43:53 +00001170 case attr::IBAction:
Ted Kremenekefbddd22010-02-17 02:37:45 +00001171 New = ::new (*Context) IBActionAttr();
1172 break;
1173
Sean Hunt387475d2010-06-16 23:43:53 +00001174 case attr::IBOutlet:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001175 New = ::new (*Context) IBOutletAttr();
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001176 break;
1177
Sean Hunt387475d2010-06-16 23:43:53 +00001178 case attr::IBOutletCollection: {
Ted Kremenek857e9182010-05-19 17:38:06 +00001179 ObjCInterfaceDecl *D =
1180 cast_or_null<ObjCInterfaceDecl>(GetDecl(Record[Idx++]));
1181 New = ::new (*Context) IBOutletCollectionAttr(D);
1182 break;
1183 }
1184
Ryan Flynn76168e22009-08-09 20:07:29 +00001185 SIMPLE_ATTR(Malloc);
Mike Stump1feade82009-08-26 22:31:08 +00001186 SIMPLE_ATTR(NoDebug);
1187 SIMPLE_ATTR(NoInline);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001188 SIMPLE_ATTR(NoReturn);
1189 SIMPLE_ATTR(NoThrow);
Mike Stump1eb44332009-09-09 15:08:12 +00001190
Sean Hunt387475d2010-06-16 23:43:53 +00001191 case attr::NonNull: {
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001192 unsigned Size = Record[Idx++];
1193 llvm::SmallVector<unsigned, 16> ArgNums;
1194 ArgNums.insert(ArgNums.end(), &Record[Idx], &Record[Idx] + Size);
1195 Idx += Size;
Ted Kremenek59616112010-02-11 07:31:47 +00001196 New = ::new (*Context) NonNullAttr(*Context, ArgNums.data(), Size);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001197 break;
1198 }
Mike Stump1eb44332009-09-09 15:08:12 +00001199
Sean Hunt387475d2010-06-16 23:43:53 +00001200 case attr::ReqdWorkGroupSize: {
Nate Begeman6f3d8382009-06-26 06:32:41 +00001201 unsigned X = Record[Idx++];
1202 unsigned Y = Record[Idx++];
1203 unsigned Z = Record[Idx++];
1204 New = ::new (*Context) ReqdWorkGroupSizeAttr(X, Y, Z);
1205 break;
1206 }
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001207
1208 SIMPLE_ATTR(ObjCException);
1209 SIMPLE_ATTR(ObjCNSObject);
Ted Kremenek31c780d2010-02-18 00:05:45 +00001210 SIMPLE_ATTR(CFReturnsNotRetained);
Ted Kremenekb71368d2009-05-09 02:44:38 +00001211 SIMPLE_ATTR(CFReturnsRetained);
Ted Kremenek31c780d2010-02-18 00:05:45 +00001212 SIMPLE_ATTR(NSReturnsNotRetained);
Ted Kremenekb71368d2009-05-09 02:44:38 +00001213 SIMPLE_ATTR(NSReturnsRetained);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001214 SIMPLE_ATTR(Overloadable);
Sean Hunt7725e672009-11-25 04:20:27 +00001215 SIMPLE_ATTR(Override);
Anders Carlssona860e752009-08-08 18:23:56 +00001216 SIMPLE_ATTR(Packed);
Daniel Dunbar8a2c92c2010-05-27 01:12:46 +00001217 UNSIGNED_ATTR(MaxFieldAlignment);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001218 SIMPLE_ATTR(Pure);
1219 UNSIGNED_ATTR(Regparm);
1220 STRING_ATTR(Section);
1221 SIMPLE_ATTR(StdCall);
Douglas Gregorf813a2c2010-05-18 16:57:00 +00001222 SIMPLE_ATTR(ThisCall);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001223 SIMPLE_ATTR(TransparentUnion);
1224 SIMPLE_ATTR(Unavailable);
1225 SIMPLE_ATTR(Unused);
1226 SIMPLE_ATTR(Used);
Mike Stump1eb44332009-09-09 15:08:12 +00001227
Sean Hunt387475d2010-06-16 23:43:53 +00001228 case attr::Visibility:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001229 New = ::new (*Context) VisibilityAttr(
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001230 (VisibilityAttr::VisibilityTypes)Record[Idx++]);
1231 break;
1232
1233 SIMPLE_ATTR(WarnUnusedResult);
1234 SIMPLE_ATTR(Weak);
Rafael Espindola11e8ce72010-02-23 22:00:30 +00001235 SIMPLE_ATTR(WeakRef);
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001236 SIMPLE_ATTR(WeakImport);
1237 }
1238
1239 assert(New && "Unable to decode attribute?");
1240 New->setInherited(IsInherited);
1241 New->setNext(Attrs);
1242 Attrs = New;
1243 }
1244#undef UNSIGNED_ATTR
1245#undef STRING_ATTR
1246#undef SIMPLE_ATTR
1247
1248 // The list of attributes was built backwards. Reverse the list
1249 // before returning it.
1250 Attr *PrevAttr = 0, *NextAttr = 0;
1251 while (Attrs) {
1252 NextAttr = Attrs->getNext();
1253 Attrs->setNext(PrevAttr);
1254 PrevAttr = Attrs;
1255 Attrs = NextAttr;
1256 }
1257
1258 return PrevAttr;
1259}
1260
1261//===----------------------------------------------------------------------===//
1262// PCHReader Implementation
1263//===----------------------------------------------------------------------===//
Chris Lattner698f9252009-04-27 05:27:42 +00001264
1265/// \brief Note that we have loaded the declaration with the given
1266/// Index.
Mike Stump1eb44332009-09-09 15:08:12 +00001267///
Chris Lattner698f9252009-04-27 05:27:42 +00001268/// This routine notes that this declaration has already been loaded,
1269/// so that future GetDecl calls will return this declaration rather
1270/// than trying to load a new declaration.
1271inline void PCHReader::LoadedDecl(unsigned Index, Decl *D) {
1272 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
1273 DeclsLoaded[Index] = D;
1274}
1275
1276
1277/// \brief Determine whether the consumer will be interested in seeing
1278/// this declaration (via HandleTopLevelDecl).
1279///
1280/// This routine should return true for anything that might affect
1281/// code generation, e.g., inline function definitions, Objective-C
1282/// declarations with metadata, etc.
1283static bool isConsumerInterestedIn(Decl *D) {
Daniel Dunbar04a0b502009-09-17 03:06:44 +00001284 if (isa<FileScopeAsmDecl>(D))
1285 return true;
Chris Lattner698f9252009-04-27 05:27:42 +00001286 if (VarDecl *Var = dyn_cast<VarDecl>(D))
1287 return Var->isFileVarDecl() && Var->getInit();
1288 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D))
1289 return Func->isThisDeclarationADefinition();
1290 return isa<ObjCProtocolDecl>(D);
1291}
1292
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001293/// \brief Get the correct cursor and offset for loading a type.
1294PCHReader::RecordLocation PCHReader::DeclCursorForIndex(unsigned Index) {
1295 PerFileData *F = 0;
1296 for (unsigned I = 0, N = Chain.size(); I != N; ++I) {
1297 F = Chain[N - I - 1];
1298 if (Index < F->LocalNumDecls)
1299 break;
1300 Index -= F->LocalNumDecls;
1301 }
1302 assert(F && F->LocalNumDecls > Index && "Broken chain");
Sebastian Redl971dd442010-07-20 22:55:31 +00001303 return RecordLocation(&F->DeclsCursor, F->DeclOffsets[Index]);
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001304}
1305
Chris Lattner698f9252009-04-27 05:27:42 +00001306/// \brief Read the declaration at the given offset from the PCH file.
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001307Decl *PCHReader::ReadDeclRecord(unsigned Index) {
1308 RecordLocation Loc = DeclCursorForIndex(Index);
Sebastian Redl971dd442010-07-20 22:55:31 +00001309 llvm::BitstreamCursor &DeclsCursor = *Loc.first;
Chris Lattner698f9252009-04-27 05:27:42 +00001310 // Keep track of where we are in the stream, then jump back there
1311 // after reading this declaration.
Chris Lattnerda930612009-04-27 05:58:23 +00001312 SavedStreamPosition SavedPosition(DeclsCursor);
Chris Lattner698f9252009-04-27 05:27:42 +00001313
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001314 ReadingKindTracker ReadingKind(Read_Decl, *this);
1315
Douglas Gregord89275b2009-07-06 18:54:52 +00001316 // Note that we are loading a declaration record.
Argyrios Kyrtzidis29ee3a22010-07-30 10:03:16 +00001317 Deserializing ADecl(this);
Mike Stump1eb44332009-09-09 15:08:12 +00001318
Sebastian Redlcb526aa2010-07-20 22:46:15 +00001319 DeclsCursor.JumpToBit(Loc.second);
Chris Lattner698f9252009-04-27 05:27:42 +00001320 RecordData Record;
Chris Lattnerda930612009-04-27 05:58:23 +00001321 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner698f9252009-04-27 05:27:42 +00001322 unsigned Idx = 0;
Sebastian Redl577d4792010-07-22 22:43:28 +00001323 PCHDeclReader Reader(*this, DeclsCursor, Record, Idx);
Chris Lattner698f9252009-04-27 05:27:42 +00001324
Chris Lattnerda930612009-04-27 05:58:23 +00001325 Decl *D = 0;
1326 switch ((pch::DeclCode)DeclsCursor.ReadRecord(Code, Record)) {
Chris Lattner698f9252009-04-27 05:27:42 +00001327 case pch::DECL_ATTR:
1328 case pch::DECL_CONTEXT_LEXICAL:
1329 case pch::DECL_CONTEXT_VISIBLE:
1330 assert(false && "Record cannot be de-serialized with ReadDeclRecord");
1331 break;
Chris Lattner698f9252009-04-27 05:27:42 +00001332 case pch::DECL_TRANSLATION_UNIT:
1333 assert(Index == 0 && "Translation unit must be at index 0");
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001334 D = Context->getTranslationUnitDecl();
Chris Lattner698f9252009-04-27 05:27:42 +00001335 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001336 case pch::DECL_TYPEDEF:
John McCallba6a9bd2009-10-24 08:00:42 +00001337 D = TypedefDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001338 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001339 case pch::DECL_ENUM:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001340 D = EnumDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001341 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001342 case pch::DECL_RECORD:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001343 D = RecordDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner698f9252009-04-27 05:27:42 +00001344 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001345 case pch::DECL_ENUM_CONSTANT:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001346 D = EnumConstantDecl::Create(*Context, 0, SourceLocation(), 0, QualType(),
Chris Lattner698f9252009-04-27 05:27:42 +00001347 0, llvm::APSInt());
1348 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001349 case pch::DECL_FUNCTION:
Mike Stump1eb44332009-09-09 15:08:12 +00001350 D = FunctionDecl::Create(*Context, 0, SourceLocation(), DeclarationName(),
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001351 QualType(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001352 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001353 case pch::DECL_LINKAGE_SPEC:
1354 D = LinkageSpecDecl::Create(*Context, 0, SourceLocation(),
1355 (LinkageSpecDecl::LanguageIDs)0,
1356 false);
1357 break;
1358 case pch::DECL_NAMESPACE:
1359 D = NamespaceDecl::Create(*Context, 0, SourceLocation(), 0);
1360 break;
1361 case pch::DECL_NAMESPACE_ALIAS:
1362 D = NamespaceAliasDecl::Create(*Context, 0, SourceLocation(),
1363 SourceLocation(), 0, SourceRange(), 0,
1364 SourceLocation(), 0);
1365 break;
1366 case pch::DECL_USING:
1367 D = UsingDecl::Create(*Context, 0, SourceLocation(), SourceRange(),
1368 SourceLocation(), 0, DeclarationName(), false);
1369 break;
1370 case pch::DECL_USING_SHADOW:
1371 D = UsingShadowDecl::Create(*Context, 0, SourceLocation(), 0, 0);
1372 break;
1373 case pch::DECL_USING_DIRECTIVE:
1374 D = UsingDirectiveDecl::Create(*Context, 0, SourceLocation(),
1375 SourceLocation(), SourceRange(), 0,
1376 SourceLocation(), 0, 0);
1377 break;
1378 case pch::DECL_UNRESOLVED_USING_VALUE:
1379 D = UnresolvedUsingValueDecl::Create(*Context, 0, SourceLocation(),
1380 SourceRange(), 0, SourceLocation(),
1381 DeclarationName());
1382 break;
1383 case pch::DECL_UNRESOLVED_USING_TYPENAME:
1384 D = UnresolvedUsingTypenameDecl::Create(*Context, 0, SourceLocation(),
1385 SourceLocation(), SourceRange(),
1386 0, SourceLocation(),
1387 DeclarationName());
1388 break;
1389 case pch::DECL_CXX_RECORD:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001390 D = CXXRecordDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001391 break;
1392 case pch::DECL_CXX_METHOD:
1393 D = CXXMethodDecl::Create(*Context, 0, SourceLocation(), DeclarationName(),
1394 QualType(), 0);
1395 break;
1396 case pch::DECL_CXX_CONSTRUCTOR:
1397 D = CXXConstructorDecl::Create(*Context, Decl::EmptyShell());
1398 break;
1399 case pch::DECL_CXX_DESTRUCTOR:
1400 D = CXXDestructorDecl::Create(*Context, Decl::EmptyShell());
1401 break;
1402 case pch::DECL_CXX_CONVERSION:
1403 D = CXXConversionDecl::Create(*Context, Decl::EmptyShell());
1404 break;
Abramo Bagnara6206d532010-06-05 05:09:32 +00001405 case pch::DECL_ACCESS_SPEC:
1406 D = AccessSpecDecl::Create(*Context, AS_none, 0, SourceLocation(),
1407 SourceLocation());
1408 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001409 case pch::DECL_FRIEND:
Argyrios Kyrtzidis67643342010-06-29 22:47:00 +00001410 D = FriendDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001411 break;
1412 case pch::DECL_FRIEND_TEMPLATE:
Argyrios Kyrtzidis554e6aa2010-07-22 16:04:10 +00001413 D = FriendTemplateDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001414 break;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001415 case pch::DECL_CLASS_TEMPLATE:
Argyrios Kyrtzidis5bf1bdc2010-06-21 10:57:41 +00001416 D = ClassTemplateDecl::Create(*Context, 0, SourceLocation(),
1417 DeclarationName(), 0, 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001418 break;
1419 case pch::DECL_CLASS_TEMPLATE_SPECIALIZATION:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001420 D = ClassTemplateSpecializationDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001421 break;
1422 case pch::DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001423 D = ClassTemplatePartialSpecializationDecl::Create(*Context,
1424 Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001425 break;
1426 case pch::DECL_FUNCTION_TEMPLATE:
Argyrios Kyrtzidisf511ba62010-06-22 09:55:07 +00001427 D = FunctionTemplateDecl::Create(*Context, 0, SourceLocation(),
1428 DeclarationName(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001429 break;
1430 case pch::DECL_TEMPLATE_TYPE_PARM:
Argyrios Kyrtzidisb8b03e62010-07-02 11:54:55 +00001431 D = TemplateTypeParmDecl::Create(*Context, Decl::EmptyShell());
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001432 break;
1433 case pch::DECL_NON_TYPE_TEMPLATE_PARM:
Argyrios Kyrtzidisb24e1992010-06-25 16:25:09 +00001434 D = NonTypeTemplateParmDecl::Create(*Context, 0, SourceLocation(), 0,0,0,
1435 QualType(),0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001436 break;
1437 case pch::DECL_TEMPLATE_TEMPLATE_PARM:
Argyrios Kyrtzidisbfcc92c2010-07-08 17:12:57 +00001438 D = TemplateTemplateParmDecl::Create(*Context, 0, SourceLocation(),0,0,0,0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001439 break;
1440 case pch::DECL_STATIC_ASSERT:
Argyrios Kyrtzidis0d396892010-07-22 17:28:12 +00001441 D = StaticAssertDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner6ad9ac02010-05-07 21:43:38 +00001442 break;
1443
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001444 case pch::DECL_OBJC_METHOD:
Mike Stump1eb44332009-09-09 15:08:12 +00001445 D = ObjCMethodDecl::Create(*Context, SourceLocation(), SourceLocation(),
Douglas Gregor4bc1cb62010-03-08 14:59:44 +00001446 Selector(), QualType(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001447 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001448 case pch::DECL_OBJC_INTERFACE:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001449 D = ObjCInterfaceDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001450 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001451 case pch::DECL_OBJC_IVAR:
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001452 D = ObjCIvarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001453 ObjCIvarDecl::None);
1454 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001455 case pch::DECL_OBJC_PROTOCOL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001456 D = ObjCProtocolDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001457 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001458 case pch::DECL_OBJC_AT_DEFS_FIELD:
Mike Stump1eb44332009-09-09 15:08:12 +00001459 D = ObjCAtDefsFieldDecl::Create(*Context, 0, SourceLocation(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001460 QualType(), 0);
1461 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001462 case pch::DECL_OBJC_CLASS:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001463 D = ObjCClassDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001464 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001465 case pch::DECL_OBJC_FORWARD_PROTOCOL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001466 D = ObjCForwardProtocolDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001467 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001468 case pch::DECL_OBJC_CATEGORY:
Douglas Gregor3db211b2010-01-16 16:38:58 +00001469 D = ObjCCategoryDecl::Create(*Context, 0, SourceLocation(),
1470 SourceLocation(), SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001471 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001472 case pch::DECL_OBJC_CATEGORY_IMPL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001473 D = ObjCCategoryImplDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001474 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001475 case pch::DECL_OBJC_IMPLEMENTATION:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001476 D = ObjCImplementationDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001477 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001478 case pch::DECL_OBJC_COMPATIBLE_ALIAS:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001479 D = ObjCCompatibleAliasDecl::Create(*Context, 0, SourceLocation(), 0, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001480 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001481 case pch::DECL_OBJC_PROPERTY:
Fariborz Jahaniand0502402010-01-21 17:36:00 +00001482 D = ObjCPropertyDecl::Create(*Context, 0, SourceLocation(), 0, SourceLocation(),
John McCall83a230c2010-06-04 20:50:08 +00001483 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001484 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001485 case pch::DECL_OBJC_PROPERTY_IMPL:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001486 D = ObjCPropertyImplDecl::Create(*Context, 0, SourceLocation(),
Mike Stump1eb44332009-09-09 15:08:12 +00001487 SourceLocation(), 0,
Chris Lattner698f9252009-04-27 05:27:42 +00001488 ObjCPropertyImplDecl::Dynamic, 0);
1489 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001490 case pch::DECL_FIELD:
Mike Stump1eb44332009-09-09 15:08:12 +00001491 D = FieldDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, 0,
Argyrios Kyrtzidisa5d82002009-08-21 00:31:54 +00001492 false);
Chris Lattner698f9252009-04-27 05:27:42 +00001493 break;
Chris Lattner698f9252009-04-27 05:27:42 +00001494 case pch::DECL_VAR:
Argyrios Kyrtzidisa1d56622009-08-19 01:27:57 +00001495 D = VarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001496 VarDecl::None, VarDecl::None);
Chris Lattner698f9252009-04-27 05:27:42 +00001497 break;
1498
1499 case pch::DECL_IMPLICIT_PARAM:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001500 D = ImplicitParamDecl::Create(*Context, 0, SourceLocation(), 0, QualType());
Chris Lattner698f9252009-04-27 05:27:42 +00001501 break;
1502
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001503 case pch::DECL_PARM_VAR:
Mike Stump1eb44332009-09-09 15:08:12 +00001504 D = ParmVarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0,
Douglas Gregor16573fa2010-04-19 22:54:31 +00001505 VarDecl::None, VarDecl::None, 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001506 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001507 case pch::DECL_FILE_SCOPE_ASM:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001508 D = FileScopeAsmDecl::Create(*Context, 0, SourceLocation(), 0);
Chris Lattner698f9252009-04-27 05:27:42 +00001509 break;
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001510 case pch::DECL_BLOCK:
Chris Lattnerd1d64a02009-04-27 21:45:14 +00001511 D = BlockDecl::Create(*Context, 0, SourceLocation());
Chris Lattner698f9252009-04-27 05:27:42 +00001512 break;
1513 }
Chris Lattner698f9252009-04-27 05:27:42 +00001514
1515 assert(D && "Unknown declaration reading PCH file");
Chris Lattner4e3fcc82009-04-27 06:01:06 +00001516 LoadedDecl(Index, D);
1517 Reader.Visit(D);
Chris Lattner698f9252009-04-27 05:27:42 +00001518
1519 // If this declaration is also a declaration context, get the
1520 // offsets for its tables of lexical and visible declarations.
1521 if (DeclContext *DC = dyn_cast<DeclContext>(D)) {
1522 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC);
1523 if (Offsets.first || Offsets.second) {
1524 DC->setHasExternalLexicalStorage(Offsets.first != 0);
1525 DC->setHasExternalVisibleStorage(Offsets.second != 0);
Sebastian Redl681d7232010-07-27 00:17:23 +00001526 DeclContextInfo Info;
1527 if (ReadDeclContextStorage(DeclsCursor, Offsets, Info))
1528 return 0;
Sebastian Redld692af72010-07-27 18:24:41 +00001529 DeclContextInfos &Infos = DeclContextOffsets[DC];
1530 // Reading the TU will happen after reading its update blocks, so we need
1531 // to make sure we insert in front. For all other contexts, the vector
1532 // is empty here anyway, so there's no loss in efficiency.
1533 Infos.insert(Infos.begin(), Info);
Chris Lattner698f9252009-04-27 05:27:42 +00001534 }
1535 }
1536 assert(Idx == Record.size());
1537
1538 // If we have deserialized a declaration that has a definition the
Argyrios Kyrtzidisbb80a8e2010-07-07 15:46:26 +00001539 // AST consumer might need to know about, queue it.
1540 // We don't pass it to the consumer immediately because we may be in recursive
1541 // loading, and some declarations may still be initializing.
1542 if (isConsumerInterestedIn(D))
1543 InterestingDecls.push_back(D);
Chris Lattner698f9252009-04-27 05:27:42 +00001544
1545 return D;
1546}
Sebastian Redl681d7232010-07-27 00:17:23 +00001547
1548bool PCHReader::ReadDeclContextStorage(llvm::BitstreamCursor &Cursor,
1549 const std::pair<uint64_t, uint64_t> &Offsets,
1550 DeclContextInfo &Info) {
1551 SavedStreamPosition SavedPosition(Cursor);
1552 // First the lexical decls.
1553 if (Offsets.first != 0) {
1554 Cursor.JumpToBit(Offsets.first);
1555
1556 RecordData Record;
1557 const char *Blob;
1558 unsigned BlobLen;
1559 unsigned Code = Cursor.ReadCode();
1560 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
1561 if (RecCode != pch::DECL_CONTEXT_LEXICAL) {
1562 Error("Expected lexical block");
1563 return true;
1564 }
1565
1566 Info.LexicalDecls = reinterpret_cast<const pch::DeclID*>(Blob);
1567 Info.NumLexicalDecls = BlobLen / sizeof(pch::DeclID);
1568 } else {
1569 Info.LexicalDecls = 0;
1570 Info.NumLexicalDecls = 0;
1571 }
1572
1573 // Now the visible decls.
1574 Info.Stream = &Cursor;
1575 Info.OffsetToVisibleDecls = Offsets.second;
1576
1577 return false;
1578}