Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1 | //===--- 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 Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclCXX.h" |
| 21 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 22 | #include "clang/AST/Expr.h" |
| 23 | using namespace clang; |
| 24 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 25 | |
| 26 | //===----------------------------------------------------------------------===// |
| 27 | // Declaration deserialization |
| 28 | //===----------------------------------------------------------------------===// |
| 29 | |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 30 | namespace clang { |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 31 | class PCHDeclReader : public DeclVisitor<PCHDeclReader, void> { |
| 32 | PCHReader &Reader; |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 33 | llvm::BitstreamCursor &Cursor; |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 34 | const pch::DeclID ThisDeclID; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 35 | const PCHReader::RecordData &Record; |
| 36 | unsigned &Idx; |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 37 | pch::TypeID TypeIDForTypeDecl; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 38 | |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 39 | uint64_t GetCurrentCursorOffset(); |
| 40 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 41 | public: |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 42 | PCHDeclReader(PCHReader &Reader, llvm::BitstreamCursor &Cursor, |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 43 | pch::DeclID thisDeclID, const PCHReader::RecordData &Record, |
| 44 | unsigned &Idx) |
| 45 | : Reader(Reader), Cursor(Cursor), ThisDeclID(thisDeclID), Record(Record), |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 46 | Idx(Idx), TypeIDForTypeDecl(0) { } |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 47 | |
Argyrios Kyrtzidis | d8a0c6f | 2010-07-02 11:55:01 +0000 | [diff] [blame] | 48 | void Visit(Decl *D); |
| 49 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 50 | void VisitDecl(Decl *D); |
| 51 | void VisitTranslationUnitDecl(TranslationUnitDecl *TU); |
| 52 | void VisitNamedDecl(NamedDecl *ND); |
Douglas Gregor | 0cef483 | 2010-02-21 18:22:14 +0000 | [diff] [blame] | 53 | void VisitNamespaceDecl(NamespaceDecl *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 54 | void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); |
| 55 | void VisitNamespaceAliasDecl(NamespaceAliasDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 56 | void VisitTypeDecl(TypeDecl *TD); |
| 57 | void VisitTypedefDecl(TypedefDecl *TD); |
Argyrios Kyrtzidis | 8f4eae9 | 2010-06-30 08:49:30 +0000 | [diff] [blame] | 58 | void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 59 | void VisitTagDecl(TagDecl *TD); |
| 60 | void VisitEnumDecl(EnumDecl *ED); |
| 61 | void VisitRecordDecl(RecordDecl *RD); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 62 | void VisitCXXRecordDecl(CXXRecordDecl *D); |
| 63 | void VisitClassTemplateSpecializationDecl( |
| 64 | ClassTemplateSpecializationDecl *D); |
| 65 | void VisitClassTemplatePartialSpecializationDecl( |
| 66 | ClassTemplatePartialSpecializationDecl *D); |
| 67 | void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 68 | void VisitValueDecl(ValueDecl *VD); |
| 69 | void VisitEnumConstantDecl(EnumConstantDecl *ECD); |
Argyrios Kyrtzidis | 8f4eae9 | 2010-06-30 08:49:30 +0000 | [diff] [blame] | 70 | void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 71 | void VisitDeclaratorDecl(DeclaratorDecl *DD); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 72 | void VisitFunctionDecl(FunctionDecl *FD); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 73 | void VisitCXXMethodDecl(CXXMethodDecl *D); |
| 74 | void VisitCXXConstructorDecl(CXXConstructorDecl *D); |
| 75 | void VisitCXXDestructorDecl(CXXDestructorDecl *D); |
| 76 | void VisitCXXConversionDecl(CXXConversionDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 77 | void VisitFieldDecl(FieldDecl *FD); |
| 78 | void VisitVarDecl(VarDecl *VD); |
| 79 | void VisitImplicitParamDecl(ImplicitParamDecl *PD); |
| 80 | void VisitParmVarDecl(ParmVarDecl *PD); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 81 | void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D); |
| 82 | void VisitTemplateDecl(TemplateDecl *D); |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 83 | void VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 84 | void VisitClassTemplateDecl(ClassTemplateDecl *D); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 85 | void VisitFunctionTemplateDecl(FunctionTemplateDecl *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 86 | void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D); |
Argyrios Kyrtzidis | b01a552 | 2010-06-20 14:40:59 +0000 | [diff] [blame] | 87 | void VisitUsingDecl(UsingDecl *D); |
| 88 | void VisitUsingShadowDecl(UsingShadowDecl *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 89 | void VisitLinkageSpecDecl(LinkageSpecDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 90 | void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD); |
Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 91 | void VisitAccessSpecDecl(AccessSpecDecl *D); |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 92 | void VisitFriendDecl(FriendDecl *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 93 | void VisitFriendTemplateDecl(FriendTemplateDecl *D); |
| 94 | void VisitStaticAssertDecl(StaticAssertDecl *D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 95 | void VisitBlockDecl(BlockDecl *BD); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 96 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 97 | std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC); |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 98 | template <typename T> void VisitRedeclarable(Redeclarable<T> *D); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 99 | |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 100 | // FIXME: Reorder according to DeclNodes.td? |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 101 | 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 Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 119 | uint64_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 Kyrtzidis | d8a0c6f | 2010-07-02 11:55:01 +0000 | [diff] [blame] | 132 | void PCHDeclReader::Visit(Decl *D) { |
| 133 | DeclVisitor<PCHDeclReader, void>::Visit(D); |
| 134 | |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 135 | if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) { |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 136 | // if we have a fully initialized TypeDecl, we can safely read its type now. |
| 137 | TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtr()); |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 138 | } 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 Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 141 | FD->setLazyBody(GetCurrentCursorOffset()); |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 142 | } |
Argyrios Kyrtzidis | d8a0c6f | 2010-07-02 11:55:01 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 145 | void 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 Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 152 | D->initAttrs(Reader.ReadAttributes(Cursor)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 153 | D->setImplicit(Record[Idx++]); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 154 | D->setUsed(Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 155 | D->setAccess((AccessSpecifier)Record[Idx++]); |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 156 | D->setPCHLevel(Record[Idx++] + 1); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | void PCHDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) { |
| 160 | VisitDecl(TU); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 161 | TU->setAnonymousNamespace( |
| 162 | cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++]))); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | void PCHDeclReader::VisitNamedDecl(NamedDecl *ND) { |
| 166 | VisitDecl(ND); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 167 | ND->setDeclName(Reader.ReadDeclarationName(Record, Idx)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 168 | } |
| 169 | |
| 170 | void PCHDeclReader::VisitTypeDecl(TypeDecl *TD) { |
| 171 | VisitNamedDecl(TD); |
Argyrios Kyrtzidis | d8a0c6f | 2010-07-02 11:55:01 +0000 | [diff] [blame] | 172 | // Delay type reading until after we have fully initialized the decl. |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 173 | TypeIDForTypeDecl = Record[Idx++]; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | void PCHDeclReader::VisitTypedefDecl(TypedefDecl *TD) { |
Argyrios Kyrtzidis | d8a0c6f | 2010-07-02 11:55:01 +0000 | [diff] [blame] | 177 | VisitTypeDecl(TD); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 178 | TD->setTypeSourceInfo(Reader.GetTypeSourceInfo(Cursor, Record, Idx)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | void PCHDeclReader::VisitTagDecl(TagDecl *TD) { |
| 182 | VisitTypeDecl(TD); |
Argyrios Kyrtzidis | c8f9af2 | 2010-07-05 10:38:01 +0000 | [diff] [blame] | 183 | TD->IdentifierNamespace = Record[Idx++]; |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 184 | VisitRedeclarable(TD); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 185 | TD->setTagKind((TagDecl::TagKind)Record[Idx++]); |
| 186 | TD->setDefinition(Record[Idx++]); |
Douglas Gregor | b37b648 | 2010-02-12 17:40:34 +0000 | [diff] [blame] | 187 | TD->setEmbeddedInDeclarator(Record[Idx++]); |
Argyrios Kyrtzidis | ad93a74 | 2009-07-14 03:18:02 +0000 | [diff] [blame] | 188 | TD->setRBraceLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
Douglas Gregor | 741dd9a | 2009-07-21 14:46:17 +0000 | [diff] [blame] | 189 | TD->setTagKeywordLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 190 | // FIXME: maybe read optional qualifier and its range. |
| 191 | TD->setTypedefForAnonDecl( |
| 192 | cast_or_null<TypedefDecl>(Reader.GetDecl(Record[Idx++]))); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | void PCHDeclReader::VisitEnumDecl(EnumDecl *ED) { |
| 196 | VisitTagDecl(ED); |
| 197 | ED->setIntegerType(Reader.GetType(Record[Idx++])); |
John McCall | 842aef8 | 2009-12-09 09:09:27 +0000 | [diff] [blame] | 198 | ED->setPromotionType(Reader.GetType(Record[Idx++])); |
John McCall | 1b5a618 | 2010-05-06 08:49:23 +0000 | [diff] [blame] | 199 | ED->setNumPositiveBits(Record[Idx++]); |
| 200 | ED->setNumNegativeBits(Record[Idx++]); |
Argyrios Kyrtzidis | 7422827 | 2010-07-06 15:36:48 +0000 | [diff] [blame] | 201 | ED->setInstantiationOfMemberEnum( |
| 202 | cast_or_null<EnumDecl>(Reader.GetDecl(Record[Idx++]))); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | void PCHDeclReader::VisitRecordDecl(RecordDecl *RD) { |
| 206 | VisitTagDecl(RD); |
| 207 | RD->setHasFlexibleArrayMember(Record[Idx++]); |
| 208 | RD->setAnonymousStructOrUnion(Record[Idx++]); |
Fariborz Jahanian | 643b7df | 2009-07-08 16:37:44 +0000 | [diff] [blame] | 209 | RD->setHasObjectMember(Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | void PCHDeclReader::VisitValueDecl(ValueDecl *VD) { |
| 213 | VisitNamedDecl(VD); |
| 214 | VD->setType(Reader.GetType(Record[Idx++])); |
| 215 | } |
| 216 | |
| 217 | void PCHDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) { |
| 218 | VisitValueDecl(ECD); |
| 219 | if (Record[Idx++]) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 220 | ECD->setInitExpr(Reader.ReadExpr(Cursor)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 221 | ECD->setInitVal(Reader.ReadAPSInt(Record, Idx)); |
| 222 | } |
| 223 | |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 224 | void PCHDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) { |
| 225 | VisitValueDecl(DD); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 226 | TypeSourceInfo *TInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 227 | if (TInfo) |
| 228 | DD->setTypeSourceInfo(TInfo); |
John McCall | b621766 | 2010-03-15 10:12:16 +0000 | [diff] [blame] | 229 | // FIXME: read optional qualifier and its range. |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 232 | void PCHDeclReader::VisitFunctionDecl(FunctionDecl *FD) { |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 233 | VisitDeclaratorDecl(FD); |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 234 | // FIXME: read DeclarationNameLoc. |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 235 | |
Argyrios Kyrtzidis | c8f9af2 | 2010-07-05 10:38:01 +0000 | [diff] [blame] | 236 | FD->IdentifierNamespace = Record[Idx++]; |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 237 | switch ((FunctionDecl::TemplatedKind)Record[Idx++]) { |
Argyrios Kyrtzidis | dc767e3 | 2010-06-28 09:31:34 +0000 | [diff] [blame] | 238 | default: assert(false && "Unhandled TemplatedKind!"); |
| 239 | break; |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 240 | 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 Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 260 | llvm::SmallVector<TemplateArgument, 8> TemplArgs; |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 261 | Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 262 | |
| 263 | // Template args as written. |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 264 | llvm::SmallVector<TemplateArgumentLoc, 8> TemplArgLocs; |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 265 | SourceLocation LAngleLoc, RAngleLoc; |
Argyrios Kyrtzidis | 5efb06f | 2010-07-02 11:55:40 +0000 | [diff] [blame] | 266 | if (Record[Idx++]) { // TemplateArgumentsAsWritten != 0 |
| 267 | unsigned NumTemplateArgLocs = Record[Idx++]; |
| 268 | TemplArgLocs.reserve(NumTemplateArgLocs); |
| 269 | for (unsigned i=0; i != NumTemplateArgLocs; ++i) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 270 | TemplArgLocs.push_back( |
| 271 | Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx)); |
Argyrios Kyrtzidis | 5efb06f | 2010-07-02 11:55:40 +0000 | [diff] [blame] | 272 | |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 273 | LAngleLoc = Reader.ReadSourceLocation(Record, Idx); |
| 274 | RAngleLoc = Reader.ReadSourceLocation(Record, Idx); |
| 275 | } |
Argyrios Kyrtzidis | 7b081c8 | 2010-07-05 10:37:55 +0000 | [diff] [blame] | 276 | |
| 277 | SourceLocation POI = Reader.ReadSourceLocation(Record, Idx); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 278 | |
Argyrios Kyrtzidis | 2c853e4 | 2010-07-20 13:59:58 +0000 | [diff] [blame] | 279 | 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 Kyrtzidis | dc767e3 | 2010-06-28 09:31:34 +0000 | [diff] [blame] | 285 | break; |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 286 | } |
| 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 Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 298 | TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(Cursor,Record, Idx)); |
Argyrios Kyrtzidis | 7b081c8 | 2010-07-05 10:37:55 +0000 | [diff] [blame] | 299 | TemplArgs.setLAngleLoc(Reader.ReadSourceLocation(Record, Idx)); |
| 300 | TemplArgs.setRAngleLoc(Reader.ReadSourceLocation(Record, Idx)); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 301 | |
| 302 | FD->setDependentTemplateSpecialization(*Reader.getContext(), |
| 303 | TemplDecls, TemplArgs); |
Argyrios Kyrtzidis | dc767e3 | 2010-06-28 09:31:34 +0000 | [diff] [blame] | 304 | break; |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 305 | } |
| 306 | } |
Argyrios Kyrtzidis | 5efb06f | 2010-07-02 11:55:40 +0000 | [diff] [blame] | 307 | |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 308 | // FunctionDecl's body is handled last at PCHReaderDecl::Visit, |
| 309 | // after everything else is read. |
| 310 | |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 311 | VisitRedeclarable(FD); |
Argyrios Kyrtzidis | 5efb06f | 2010-07-02 11:55:40 +0000 | [diff] [blame] | 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 Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 325 | // Read in the parameters. |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 326 | 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 Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 331 | FD->setParams(Params.data(), NumParams); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 332 | } |
| 333 | |
| 334 | void 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 Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 339 | MD->setBody(Reader.ReadStmt(Cursor)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 340 | 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 Jahanian | 3fe1041 | 2010-07-22 18:24:20 +0000 | [diff] [blame] | 346 | MD->setDefined(Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 347 | MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]); |
| 348 | MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]); |
Fariborz Jahanian | 7732cc9 | 2010-04-08 21:29:11 +0000 | [diff] [blame] | 349 | MD->setNumSelectorArgs(unsigned(Record[Idx++])); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 350 | MD->setResultType(Reader.GetType(Record[Idx++])); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 351 | MD->setResultTypeSourceInfo(Reader.GetTypeSourceInfo(Cursor, Record, Idx)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 352 | 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 Jahanian | 4ecb25f | 2010-04-09 15:40:42 +0000 | [diff] [blame] | 358 | MD->setMethodParams(*Reader.getContext(), Params.data(), NumParams, |
| 359 | NumParams); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 360 | } |
| 361 | |
| 362 | void PCHDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) { |
| 363 | VisitNamedDecl(CD); |
Ted Kremenek | 782f2f5 | 2010-01-07 01:20:12 +0000 | [diff] [blame] | 364 | SourceLocation A = SourceLocation::getFromRawEncoding(Record[Idx++]); |
| 365 | SourceLocation B = SourceLocation::getFromRawEncoding(Record[Idx++]); |
| 366 | CD->setAtEndRange(SourceRange(A, B)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 367 | } |
| 368 | |
| 369 | void PCHDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) { |
| 370 | VisitObjCContainerDecl(ID); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 371 | ID->setTypeForDecl(Reader.GetType(Record[Idx++]).getTypePtr()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 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 Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 379 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 385 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 390 | ID->setCategoryList( |
| 391 | cast_or_null<ObjCCategoryDecl>(Reader.GetDecl(Record[Idx++]))); |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 392 | ID->setForwardDecl(Record[Idx++]); |
| 393 | ID->setImplicitInterfaceDecl(Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 394 | ID->setClassLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 395 | ID->setSuperClassLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
Argyrios Kyrtzidis | c999f1f | 2009-07-18 00:33:23 +0000 | [diff] [blame] | 396 | ID->setLocEnd(SourceLocation::getFromRawEncoding(Record[Idx++])); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | void PCHDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) { |
| 400 | VisitFieldDecl(IVD); |
| 401 | IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]); |
Fariborz Jahanian | ac0021b | 2010-07-17 18:35:47 +0000 | [diff] [blame] | 402 | bool synth = Record[Idx++]; |
| 403 | IVD->setSynthesize(synth); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | void 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 Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 415 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 421 | } |
| 422 | |
| 423 | void PCHDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) { |
| 424 | VisitFieldDecl(FD); |
| 425 | } |
| 426 | |
| 427 | void 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 Kremenek | 321c22f | 2009-11-18 00:28:11 +0000 | [diff] [blame] | 434 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 440 | } |
| 441 | |
| 442 | void 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 Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 449 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | void 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 Gregor | 18df52b | 2010-01-16 15:02:53 +0000 | [diff] [blame] | 465 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 471 | CD->setNextClassCategory(cast_or_null<ObjCCategoryDecl>(Reader.GetDecl(Record[Idx++]))); |
Douglas Gregor | 3db211b | 2010-01-16 16:38:58 +0000 | [diff] [blame] | 472 | CD->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
| 473 | CD->setCategoryNameLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 474 | } |
| 475 | |
| 476 | void PCHDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) { |
| 477 | VisitNamedDecl(CAD); |
| 478 | CAD->setClassInterface(cast<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++]))); |
| 479 | } |
| 480 | |
| 481 | void PCHDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) { |
| 482 | VisitNamedDecl(D); |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 483 | D->setAtLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 484 | D->setType(Reader.GetTypeSourceInfo(Cursor, Record, Idx)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 485 | // FIXME: stable encoding |
| 486 | D->setPropertyAttributes( |
| 487 | (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]); |
Fariborz Jahanian | 80aa1cd | 2010-06-22 23:20:40 +0000 | [diff] [blame] | 488 | D->setPropertyAttributesAsWritten( |
| 489 | (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 490 | // 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 | |
| 503 | void PCHDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) { |
Argyrios Kyrtzidis | aecae62 | 2009-07-27 19:04:32 +0000 | [diff] [blame] | 504 | VisitObjCContainerDecl(D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 505 | D->setClassInterface( |
| 506 | cast_or_null<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++]))); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 507 | } |
| 508 | |
| 509 | void PCHDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { |
| 510 | VisitObjCImplDecl(D); |
| 511 | D->setIdentifier(Reader.GetIdentifierInfo(Record, Idx)); |
| 512 | } |
| 513 | |
| 514 | void PCHDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) { |
| 515 | VisitObjCImplDecl(D); |
| 516 | D->setSuperClass( |
| 517 | cast_or_null<ObjCInterfaceDecl>(Reader.GetDecl(Record[Idx++]))); |
Argyrios Kyrtzidis | 9d50c06 | 2010-08-09 10:54:20 +0000 | [diff] [blame] | 518 | llvm::tie(D->IvarInitializers, D->NumIvarInitializers) |
| 519 | = Reader.ReadCXXBaseOrMemberInitializers(Cursor, Record, Idx); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | |
| 523 | void 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 Kyrtzidis | 2f92230 | 2010-08-09 10:54:37 +0000 | [diff] [blame] | 530 | D->setGetterCXXConstructor(Reader.ReadExpr(Cursor)); |
| 531 | D->setSetterCXXAssignment(Reader.ReadExpr(Cursor)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | void PCHDeclReader::VisitFieldDecl(FieldDecl *FD) { |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 535 | VisitDeclaratorDecl(FD); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 536 | FD->setMutable(Record[Idx++]); |
| 537 | if (Record[Idx++]) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 538 | FD->setBitWidth(Reader.ReadExpr(Cursor)); |
Argyrios Kyrtzidis | c91e9f4 | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 539 | 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | void PCHDeclReader::VisitVarDecl(VarDecl *VD) { |
Argyrios Kyrtzidis | d4a7e54 | 2009-08-19 01:28:35 +0000 | [diff] [blame] | 547 | VisitDeclaratorDecl(VD); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 548 | VD->setStorageClass((VarDecl::StorageClass)Record[Idx++]); |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 549 | VD->setStorageClassAsWritten((VarDecl::StorageClass)Record[Idx++]); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 550 | VD->setThreadSpecified(Record[Idx++]); |
| 551 | VD->setCXXDirectInitializer(Record[Idx++]); |
Douglas Gregor | 324b54d | 2010-05-03 18:51:14 +0000 | [diff] [blame] | 552 | VD->setExceptionVariable(Record[Idx++]); |
Douglas Gregor | 5077c38 | 2010-05-15 06:01:05 +0000 | [diff] [blame] | 553 | VD->setNRVOVariable(Record[Idx++]); |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 554 | VisitRedeclarable(VD); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 555 | if (Record[Idx++]) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 556 | VD->setInit(Reader.ReadExpr(Cursor)); |
Argyrios Kyrtzidis | 9421adc | 2010-07-04 21:44:00 +0000 | [diff] [blame] | 557 | |
| 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 Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | void PCHDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) { |
| 567 | VisitVarDecl(PD); |
| 568 | } |
| 569 | |
| 570 | void PCHDeclReader::VisitParmVarDecl(ParmVarDecl *PD) { |
| 571 | VisitVarDecl(PD); |
| 572 | PD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]); |
John McCall | bf73b35 | 2010-03-12 18:31:32 +0000 | [diff] [blame] | 573 | PD->setHasInheritedDefaultArg(Record[Idx++]); |
Argyrios Kyrtzidis | 691d77f | 2010-07-04 21:44:07 +0000 | [diff] [blame] | 574 | if (Record[Idx++]) // hasUninstantiatedDefaultArg. |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 575 | PD->setUninstantiatedDefaultArg(Reader.ReadExpr(Cursor)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 576 | } |
| 577 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 578 | void PCHDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) { |
| 579 | VisitDecl(AD); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 580 | AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(Cursor))); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | void PCHDeclReader::VisitBlockDecl(BlockDecl *BD) { |
| 584 | VisitDecl(BD); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 585 | BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(Cursor))); |
| 586 | BD->setSignatureAsWritten(Reader.GetTypeSourceInfo(Cursor, Record, Idx)); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 587 | 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 Gregor | 838db38 | 2010-02-11 01:19:42 +0000 | [diff] [blame] | 592 | BD->setParams(Params.data(), NumParams); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 593 | } |
| 594 | |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 595 | void PCHDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) { |
| 596 | VisitDecl(D); |
| 597 | D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]); |
| 598 | D->setHasBraces(Record[Idx++]); |
| 599 | } |
| 600 | |
| 601 | void 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 Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 608 | bool IsOriginal = Record[Idx++]; |
Argyrios Kyrtzidis | a038c1d | 2010-07-03 07:57:53 +0000 | [diff] [blame] | 609 | D->OrigOrAnonNamespace.setInt(IsOriginal); |
| 610 | D->OrigOrAnonNamespace.setPointer( |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 611 | cast_or_null<NamespaceDecl>(Reader.GetDecl(Record[Idx++]))); |
| 612 | } |
| 613 | |
| 614 | void 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 Kyrtzidis | b01a552 | 2010-06-20 14:40:59 +0000 | [diff] [blame] | 624 | void PCHDeclReader::VisitUsingDecl(UsingDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 625 | 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 Kyrtzidis | 82f8e79 | 2010-07-08 13:09:41 +0000 | [diff] [blame] | 635 | // Avoid invariant checking of UsingDecl::addShadowDecl, the decl may still |
| 636 | // be initializing. |
| 637 | D->Shadows.insert(cast<UsingShadowDecl>(Reader.GetDecl(Record[Idx++]))); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 638 | } |
| 639 | D->setTypeName(Record[Idx++]); |
Argyrios Kyrtzidis | c91e9f4 | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 640 | NamedDecl *Pattern = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++])); |
| 641 | if (Pattern) |
| 642 | Reader.getContext()->setInstantiatedFromUsingDecl(D, Pattern); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 643 | } |
| 644 | |
Argyrios Kyrtzidis | b01a552 | 2010-06-20 14:40:59 +0000 | [diff] [blame] | 645 | void PCHDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 646 | VisitNamedDecl(D); |
| 647 | D->setTargetDecl(cast<NamedDecl>(Reader.GetDecl(Record[Idx++]))); |
| 648 | D->setUsingDecl(cast<UsingDecl>(Reader.GetDecl(Record[Idx++]))); |
Argyrios Kyrtzidis | c91e9f4 | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 649 | UsingShadowDecl *Pattern |
| 650 | = cast_or_null<UsingShadowDecl>(Reader.GetDecl(Record[Idx++])); |
| 651 | if (Pattern) |
| 652 | Reader.getContext()->setInstantiatedFromUsingShadowDecl(D, Pattern); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | void 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 Kyrtzidis | 8f4eae9 | 2010-06-30 08:49:30 +0000 | [diff] [blame] | 666 | void PCHDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 667 | 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 Kyrtzidis | 8f4eae9 | 2010-06-30 08:49:30 +0000 | [diff] [blame] | 673 | void PCHDeclReader::VisitUnresolvedUsingTypenameDecl( |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 674 | 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 | |
| 682 | void PCHDeclReader::VisitCXXRecordDecl(CXXRecordDecl *D) { |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 683 | ASTContext &C = *Reader.getContext(); |
| 684 | |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 685 | // 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 Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 704 | |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 705 | VisitRecordDecl(D); |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 706 | |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 707 | if (OwnsDefinitionData) { |
| 708 | assert(D->DefinitionData); |
| 709 | struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData; |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 710 | |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 711 | 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 Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 729 | |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 730 | // setBases() is unsuitable since it may try to iterate the bases of an |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 731 | // uninitialized base. |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 732 | Data.NumBases = Record[Idx++]; |
| 733 | Data.Bases = new(C) CXXBaseSpecifier [Data.NumBases]; |
| 734 | for (unsigned i = 0; i != Data.NumBases; ++i) |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 735 | Data.Bases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx); |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 736 | |
| 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 Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 741 | Data.VBases[i] = Reader.ReadCXXBaseSpecifier(Cursor, Record, Idx); |
Argyrios Kyrtzidis | 0f47bb9 | 2010-07-06 15:36:58 +0000 | [diff] [blame] | 742 | |
| 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 Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 748 | } |
| 749 | |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 750 | 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 Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 771 | } |
| 772 | |
| 773 | void PCHDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 774 | VisitFunctionDecl(D); |
Argyrios Kyrtzidis | c91e9f4 | 2010-07-04 21:44:35 +0000 | [diff] [blame] | 775 | 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 Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | void PCHDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 785 | VisitCXXMethodDecl(D); |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 786 | |
| 787 | D->IsExplicitSpecified = Record[Idx++]; |
| 788 | D->ImplicitlyDefined = Record[Idx++]; |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 789 | llvm::tie(D->BaseOrMemberInitializers, D->NumBaseOrMemberInitializers) |
| 790 | = Reader.ReadCXXBaseOrMemberInitializers(Cursor, Record, Idx); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | void PCHDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 794 | VisitCXXMethodDecl(D); |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 795 | |
| 796 | D->ImplicitlyDefined = Record[Idx++]; |
| 797 | D->OperatorDelete = cast_or_null<FunctionDecl>(Reader.GetDecl(Record[Idx++])); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 798 | } |
| 799 | |
| 800 | void PCHDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 801 | VisitCXXMethodDecl(D); |
Argyrios Kyrtzidis | 9146832 | 2010-07-02 15:58:43 +0000 | [diff] [blame] | 802 | D->IsExplicitSpecified = Record[Idx++]; |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 803 | } |
| 804 | |
Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 805 | void PCHDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) { |
| 806 | VisitDecl(D); |
| 807 | D->setColonLoc(Reader.ReadSourceLocation(Record, Idx)); |
| 808 | } |
| 809 | |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 810 | void PCHDeclReader::VisitFriendDecl(FriendDecl *D) { |
Argyrios Kyrtzidis | c8f9af2 | 2010-07-05 10:38:01 +0000 | [diff] [blame] | 811 | VisitDecl(D); |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 812 | if (Record[Idx++]) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 813 | D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx); |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 814 | else |
| 815 | D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++])); |
| 816 | D->NextFriend = cast_or_null<FriendDecl>(Reader.GetDecl(Record[Idx++])); |
| 817 | D->FriendLoc = Reader.ReadSourceLocation(Record, Idx); |
| 818 | } |
| 819 | |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 820 | void PCHDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) { |
Argyrios Kyrtzidis | 554e6aa | 2010-07-22 16:04:10 +0000 | [diff] [blame] | 821 | VisitDecl(D); |
| 822 | unsigned NumParams = Record[Idx++]; |
| 823 | D->NumParams = NumParams; |
| 824 | D->Params = new TemplateParameterList*[NumParams]; |
| 825 | for (unsigned i = 0; i != NumParams; ++i) |
| 826 | D->Params[i] = Reader.ReadTemplateParameterList(Record, Idx); |
| 827 | if (Record[Idx++]) // HasFriendDecl |
| 828 | D->Friend = cast<NamedDecl>(Reader.GetDecl(Record[Idx++])); |
| 829 | else |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 830 | D->Friend = Reader.GetTypeSourceInfo(Cursor, Record, Idx); |
Argyrios Kyrtzidis | 554e6aa | 2010-07-22 16:04:10 +0000 | [diff] [blame] | 831 | D->FriendLoc = Reader.ReadSourceLocation(Record, Idx); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 832 | } |
| 833 | |
| 834 | void PCHDeclReader::VisitTemplateDecl(TemplateDecl *D) { |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 835 | VisitNamedDecl(D); |
| 836 | |
Argyrios Kyrtzidis | bfcc92c | 2010-07-08 17:12:57 +0000 | [diff] [blame] | 837 | NamedDecl *TemplatedDecl |
| 838 | = cast_or_null<NamedDecl>(Reader.GetDecl(Record[Idx++])); |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 839 | TemplateParameterList* TemplateParams |
| 840 | = Reader.ReadTemplateParameterList(Record, Idx); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 841 | D->init(TemplatedDecl, TemplateParams); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 842 | } |
| 843 | |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 844 | void PCHDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) { |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 845 | VisitTemplateDecl(D); |
| 846 | |
Argyrios Kyrtzidis | c8f9af2 | 2010-07-05 10:38:01 +0000 | [diff] [blame] | 847 | D->IdentifierNamespace = Record[Idx++]; |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 848 | RedeclarableTemplateDecl *PrevDecl = |
| 849 | cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++])); |
| 850 | assert((PrevDecl == 0 || PrevDecl->getKind() == D->getKind()) && |
| 851 | "PrevDecl kind mismatch"); |
| 852 | if (PrevDecl) |
| 853 | D->CommonOrPrev = PrevDecl; |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 854 | if (PrevDecl == 0) { |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 855 | if (RedeclarableTemplateDecl *RTD |
| 856 | = cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++]))) { |
| 857 | assert(RTD->getKind() == D->getKind() && |
| 858 | "InstantiatedFromMemberTemplate kind mismatch"); |
| 859 | D->setInstantiatedFromMemberTemplateImpl(RTD); |
| 860 | if (Record[Idx++]) |
| 861 | D->setMemberSpecialization(); |
| 862 | } |
Peter Collingbourne | 8a798a7 | 2010-07-29 16:12:01 +0000 | [diff] [blame] | 863 | |
| 864 | RedeclarableTemplateDecl *LatestDecl = |
| 865 | cast_or_null<RedeclarableTemplateDecl>(Reader.GetDecl(Record[Idx++])); |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 866 | |
| 867 | // This decl is a first one and the latest declaration that it points to is |
| 868 | // in the same PCH. However, if this actually needs to point to a |
| 869 | // redeclaration in another chained PCH, we need to update it by checking |
| 870 | // the FirstLatestDeclIDs map which tracks this kind of decls. |
| 871 | assert(Reader.GetDecl(ThisDeclID) == D && "Invalid ThisDeclID ?"); |
| 872 | PCHReader::FirstLatestDeclIDMap::iterator I |
| 873 | = Reader.FirstLatestDeclIDs.find(ThisDeclID); |
| 874 | if (I != Reader.FirstLatestDeclIDs.end()) { |
| 875 | Decl *NewLatest = Reader.GetDecl(I->second); |
| 876 | assert((LatestDecl->getLocation().isInvalid() || |
| 877 | NewLatest->getLocation().isInvalid() || |
| 878 | Reader.SourceMgr.isBeforeInTranslationUnit( |
| 879 | LatestDecl->getLocation(), |
| 880 | NewLatest->getLocation())) && |
| 881 | "The new latest is supposed to come after the previous latest"); |
| 882 | LatestDecl = cast<RedeclarableTemplateDecl>(NewLatest); |
| 883 | } |
| 884 | |
Peter Collingbourne | 8a798a7 | 2010-07-29 16:12:01 +0000 | [diff] [blame] | 885 | assert(LatestDecl->getKind() == D->getKind() && "Latest kind mismatch"); |
| 886 | D->getCommonPtr()->Latest = LatestDecl; |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 887 | } |
| 888 | } |
| 889 | |
| 890 | void PCHDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) { |
| 891 | VisitRedeclarableTemplateDecl(D); |
| 892 | |
| 893 | if (D->getPreviousDeclaration() == 0) { |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 894 | // This ClassTemplateDecl owns a CommonPtr; read it. |
| 895 | |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 896 | // FoldingSets are filled in VisitClassTemplateSpecializationDecl. |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 897 | unsigned size = Record[Idx++]; |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 898 | while (size--) |
| 899 | cast<ClassTemplateSpecializationDecl>(Reader.GetDecl(Record[Idx++])); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 900 | |
| 901 | size = Record[Idx++]; |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 902 | while (size--) |
| 903 | cast<ClassTemplatePartialSpecializationDecl>( |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 904 | Reader.GetDecl(Record[Idx++])); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 905 | |
| 906 | // InjectedClassNameType is computed. |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 907 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | void PCHDeclReader::VisitClassTemplateSpecializationDecl( |
| 911 | ClassTemplateSpecializationDecl *D) { |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 912 | VisitCXXRecordDecl(D); |
| 913 | |
| 914 | if (Decl *InstD = Reader.GetDecl(Record[Idx++])) { |
| 915 | if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) { |
| 916 | D->setInstantiationOf(CTD); |
| 917 | } else { |
| 918 | llvm::SmallVector<TemplateArgument, 8> TemplArgs; |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 919 | Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx); |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 920 | D->setInstantiationOf(cast<ClassTemplatePartialSpecializationDecl>(InstD), |
| 921 | TemplArgs.data(), TemplArgs.size()); |
| 922 | } |
| 923 | } |
| 924 | |
| 925 | // Explicit info. |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 926 | if (TypeSourceInfo *TyInfo = Reader.GetTypeSourceInfo(Cursor, Record, Idx)) { |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 927 | D->setTypeAsWritten(TyInfo); |
| 928 | D->setExternLoc(Reader.ReadSourceLocation(Record, Idx)); |
| 929 | D->setTemplateKeywordLoc(Reader.ReadSourceLocation(Record, Idx)); |
| 930 | } |
| 931 | |
| 932 | llvm::SmallVector<TemplateArgument, 8> TemplArgs; |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 933 | Reader.ReadTemplateArgumentList(TemplArgs, Cursor, Record, Idx); |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 934 | D->initTemplateArgs(TemplArgs.data(), TemplArgs.size()); |
| 935 | SourceLocation POI = Reader.ReadSourceLocation(Record, Idx); |
| 936 | if (POI.isValid()) |
| 937 | D->setPointOfInstantiation(POI); |
| 938 | D->setSpecializationKind((TemplateSpecializationKind)Record[Idx++]); |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 939 | |
Argyrios Kyrtzidis | bc5ab7c | 2010-07-20 13:59:40 +0000 | [diff] [blame] | 940 | if (D->isCanonicalDecl()) { // It's kept in the folding set. |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 941 | ClassTemplateDecl *CanonPattern |
| 942 | = cast<ClassTemplateDecl>(Reader.GetDecl(Record[Idx++])); |
| 943 | if (ClassTemplatePartialSpecializationDecl *Partial |
| 944 | = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) { |
Argyrios Kyrtzidis | 0a67edd | 2010-07-12 21:41:31 +0000 | [diff] [blame] | 945 | CanonPattern->getPartialSpecializations().InsertNode(Partial); |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 946 | } else { |
Argyrios Kyrtzidis | 0a67edd | 2010-07-12 21:41:31 +0000 | [diff] [blame] | 947 | CanonPattern->getSpecializations().InsertNode(D); |
Argyrios Kyrtzidis | ecf966e | 2010-07-09 21:11:43 +0000 | [diff] [blame] | 948 | } |
| 949 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 950 | } |
| 951 | |
| 952 | void PCHDeclReader::VisitClassTemplatePartialSpecializationDecl( |
| 953 | ClassTemplatePartialSpecializationDecl *D) { |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 954 | VisitClassTemplateSpecializationDecl(D); |
| 955 | |
| 956 | D->initTemplateParameters(Reader.ReadTemplateParameterList(Record, Idx)); |
| 957 | |
| 958 | TemplateArgumentListInfo ArgInfos; |
| 959 | unsigned NumArgs = Record[Idx++]; |
| 960 | while (NumArgs--) |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 961 | ArgInfos.addArgument(Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx)); |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 962 | D->initTemplateArgsAsWritten(ArgInfos); |
| 963 | |
| 964 | D->setSequenceNumber(Record[Idx++]); |
| 965 | |
| 966 | // These are read/set from/to the first declaration. |
| 967 | if (D->getPreviousDeclaration() == 0) { |
| 968 | D->setInstantiatedFromMember( |
| 969 | cast_or_null<ClassTemplatePartialSpecializationDecl>( |
| 970 | Reader.GetDecl(Record[Idx++]))); |
| 971 | if (Record[Idx++]) |
Argyrios Kyrtzidis | 64a5e2c | 2010-07-09 21:11:35 +0000 | [diff] [blame] | 972 | D->setMemberSpecialization(); |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 973 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 974 | } |
| 975 | |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 976 | void PCHDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) { |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 977 | VisitRedeclarableTemplateDecl(D); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 978 | |
Peter Collingbourne | 9eabeba | 2010-07-29 16:11:51 +0000 | [diff] [blame] | 979 | if (D->getPreviousDeclaration() == 0) { |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 980 | // This FunctionTemplateDecl owns a CommonPtr; read it. |
| 981 | |
Argyrios Kyrtzidis | 057d9af | 2010-07-06 15:37:09 +0000 | [diff] [blame] | 982 | // Read the function specialization declarations. |
| 983 | // FunctionTemplateDecl's FunctionTemplateSpecializationInfos are filled |
| 984 | // through the specialized FunctionDecl's setFunctionTemplateSpecialization. |
| 985 | unsigned NumSpecs = Record[Idx++]; |
| 986 | while (NumSpecs--) |
| 987 | Reader.GetDecl(Record[Idx++]); |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 988 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 989 | } |
| 990 | |
| 991 | void PCHDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) { |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 992 | VisitTypeDecl(D); |
| 993 | |
| 994 | D->setDeclaredWithTypename(Record[Idx++]); |
| 995 | D->setParameterPack(Record[Idx++]); |
| 996 | |
| 997 | bool Inherited = Record[Idx++]; |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 998 | TypeSourceInfo *DefArg = Reader.GetTypeSourceInfo(Cursor, Record, Idx); |
Argyrios Kyrtzidis | 8731ca7 | 2010-06-19 19:29:09 +0000 | [diff] [blame] | 999 | D->setDefaultArgument(DefArg, Inherited); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1000 | } |
| 1001 | |
| 1002 | void PCHDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) { |
Argyrios Kyrtzidis | b24e199 | 2010-06-25 16:25:09 +0000 | [diff] [blame] | 1003 | VisitVarDecl(D); |
| 1004 | // TemplateParmPosition. |
| 1005 | D->setDepth(Record[Idx++]); |
| 1006 | D->setPosition(Record[Idx++]); |
| 1007 | // Rest of NonTypeTemplateParmDecl. |
| 1008 | if (Record[Idx++]) { |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 1009 | Expr *DefArg = Reader.ReadExpr(Cursor); |
Argyrios Kyrtzidis | b24e199 | 2010-06-25 16:25:09 +0000 | [diff] [blame] | 1010 | bool Inherited = Record[Idx++]; |
| 1011 | D->setDefaultArgument(DefArg, Inherited); |
| 1012 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | void PCHDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) { |
Argyrios Kyrtzidis | bfcc92c | 2010-07-08 17:12:57 +0000 | [diff] [blame] | 1016 | VisitTemplateDecl(D); |
| 1017 | // TemplateParmPosition. |
| 1018 | D->setDepth(Record[Idx++]); |
| 1019 | D->setPosition(Record[Idx++]); |
| 1020 | // Rest of TemplateTemplateParmDecl. |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 1021 | TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(Cursor, Record, Idx); |
Argyrios Kyrtzidis | bfcc92c | 2010-07-08 17:12:57 +0000 | [diff] [blame] | 1022 | bool IsInherited = Record[Idx++]; |
| 1023 | D->setDefaultArgument(Arg, IsInherited); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1024 | } |
| 1025 | |
| 1026 | void PCHDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) { |
Argyrios Kyrtzidis | 0d39689 | 2010-07-22 17:28:12 +0000 | [diff] [blame] | 1027 | VisitDecl(D); |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 1028 | D->AssertExpr = Reader.ReadExpr(Cursor); |
| 1029 | D->Message = cast<StringLiteral>(Reader.ReadExpr(Cursor)); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1030 | } |
| 1031 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1032 | std::pair<uint64_t, uint64_t> |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1033 | PCHDeclReader::VisitDeclContext(DeclContext *DC) { |
| 1034 | uint64_t LexicalOffset = Record[Idx++]; |
| 1035 | uint64_t VisibleOffset = Record[Idx++]; |
| 1036 | return std::make_pair(LexicalOffset, VisibleOffset); |
| 1037 | } |
| 1038 | |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 1039 | template <typename T> |
| 1040 | void PCHDeclReader::VisitRedeclarable(Redeclarable<T> *D) { |
| 1041 | enum RedeclKind { NoRedeclaration = 0, PointsToPrevious, PointsToLatest }; |
| 1042 | RedeclKind Kind = (RedeclKind)Record[Idx++]; |
| 1043 | switch (Kind) { |
| 1044 | default: |
| 1045 | assert(0 && "Out of sync with PCHDeclWriter::VisitRedeclarable or messed up" |
| 1046 | " reading"); |
| 1047 | case NoRedeclaration: |
| 1048 | break; |
| 1049 | case PointsToPrevious: |
| 1050 | D->RedeclLink = typename Redeclarable<T>::PreviousDeclLink( |
| 1051 | cast_or_null<T>(Reader.GetDecl(Record[Idx++]))); |
| 1052 | break; |
| 1053 | case PointsToLatest: |
| 1054 | D->RedeclLink = typename Redeclarable<T>::LatestDeclLink( |
| 1055 | cast_or_null<T>(Reader.GetDecl(Record[Idx++]))); |
| 1056 | break; |
| 1057 | } |
| 1058 | |
| 1059 | assert(!(Kind == PointsToPrevious && |
| 1060 | Reader.FirstLatestDeclIDs.find(ThisDeclID) != |
| 1061 | Reader.FirstLatestDeclIDs.end()) && |
| 1062 | "This decl is not first, it should not be in the map"); |
| 1063 | if (Kind == PointsToPrevious) |
| 1064 | return; |
| 1065 | |
| 1066 | // This decl is a first one and the latest declaration that it points to is in |
| 1067 | // the same PCH. However, if this actually needs to point to a redeclaration |
| 1068 | // in another chained PCH, we need to update it by checking the |
| 1069 | // FirstLatestDeclIDs map which tracks this kind of decls. |
| 1070 | assert(Reader.GetDecl(ThisDeclID) == static_cast<T*>(D) && |
| 1071 | "Invalid ThisDeclID ?"); |
| 1072 | PCHReader::FirstLatestDeclIDMap::iterator I |
| 1073 | = Reader.FirstLatestDeclIDs.find(ThisDeclID); |
| 1074 | if (I != Reader.FirstLatestDeclIDs.end()) { |
| 1075 | Decl *NewLatest = Reader.GetDecl(I->second); |
| 1076 | assert((D->getMostRecentDeclaration()->getLocation().isInvalid() || |
| 1077 | NewLatest->getLocation().isInvalid() || |
| 1078 | Reader.SourceMgr.isBeforeInTranslationUnit( |
| 1079 | D->getMostRecentDeclaration()->getLocation(), |
| 1080 | NewLatest->getLocation())) && |
| 1081 | "The new latest is supposed to come after the previous latest"); |
| 1082 | D->RedeclLink |
| 1083 | = typename Redeclarable<T>::LatestDeclLink(cast_or_null<T>(NewLatest)); |
| 1084 | } |
| 1085 | } |
| 1086 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1087 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1088 | // Attribute Reading |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1089 | //===----------------------------------------------------------------------===// |
| 1090 | |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1091 | /// \brief Reads attributes from the current stream position. |
Sebastian Redl | 577d479 | 2010-07-22 22:43:28 +0000 | [diff] [blame] | 1092 | Attr *PCHReader::ReadAttributes(llvm::BitstreamCursor &DeclsCursor) { |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1093 | unsigned Code = DeclsCursor.ReadCode(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1094 | assert(Code == llvm::bitc::UNABBREV_RECORD && |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1095 | "Expected unabbreviated record"); (void)Code; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1096 | |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1097 | RecordData Record; |
| 1098 | unsigned Idx = 0; |
| 1099 | unsigned RecCode = DeclsCursor.ReadRecord(Code, Record); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1100 | assert(RecCode == pch::DECL_ATTR && "Expected attribute record"); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1101 | (void)RecCode; |
| 1102 | |
| 1103 | #define SIMPLE_ATTR(Name) \ |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1104 | case attr::Name: \ |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1105 | New = ::new (*Context) Name##Attr(); \ |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1106 | break |
| 1107 | |
| 1108 | #define STRING_ATTR(Name) \ |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1109 | case attr::Name: \ |
Ted Kremenek | 3d2c43e | 2010-02-11 05:28:37 +0000 | [diff] [blame] | 1110 | New = ::new (*Context) Name##Attr(*Context, ReadString(Record, Idx)); \ |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1111 | break |
| 1112 | |
| 1113 | #define UNSIGNED_ATTR(Name) \ |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1114 | case attr::Name: \ |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1115 | New = ::new (*Context) Name##Attr(Record[Idx++]); \ |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1116 | break |
| 1117 | |
| 1118 | Attr *Attrs = 0; |
| 1119 | while (Idx < Record.size()) { |
| 1120 | Attr *New = 0; |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1121 | attr::Kind Kind = (attr::Kind)Record[Idx++]; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1122 | bool IsInherited = Record[Idx++]; |
| 1123 | |
| 1124 | switch (Kind) { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 1125 | default: |
| 1126 | assert(0 && "Unknown attribute!"); |
| 1127 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1128 | STRING_ATTR(Alias); |
Daniel Dunbar | 4e9255f | 2010-05-27 02:25:39 +0000 | [diff] [blame] | 1129 | SIMPLE_ATTR(AlignMac68k); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1130 | UNSIGNED_ATTR(Aligned); |
| 1131 | SIMPLE_ATTR(AlwaysInline); |
| 1132 | SIMPLE_ATTR(AnalyzerNoReturn); |
| 1133 | STRING_ATTR(Annotate); |
| 1134 | STRING_ATTR(AsmLabel); |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1135 | SIMPLE_ATTR(BaseCheck); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1136 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1137 | case attr::Blocks: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1138 | New = ::new (*Context) BlocksAttr( |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1139 | (BlocksAttr::BlocksAttrTypes)Record[Idx++]); |
| 1140 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1141 | |
Eli Friedman | 8f4c59e | 2009-11-09 18:38:53 +0000 | [diff] [blame] | 1142 | SIMPLE_ATTR(CDecl); |
| 1143 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1144 | case attr::Cleanup: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1145 | New = ::new (*Context) CleanupAttr( |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1146 | cast<FunctionDecl>(GetDecl(Record[Idx++]))); |
| 1147 | break; |
| 1148 | |
| 1149 | SIMPLE_ATTR(Const); |
| 1150 | UNSIGNED_ATTR(Constructor); |
| 1151 | SIMPLE_ATTR(DLLExport); |
| 1152 | SIMPLE_ATTR(DLLImport); |
| 1153 | SIMPLE_ATTR(Deprecated); |
| 1154 | UNSIGNED_ATTR(Destructor); |
| 1155 | SIMPLE_ATTR(FastCall); |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1156 | SIMPLE_ATTR(Final); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1157 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1158 | case attr::Format: { |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1159 | std::string Type = ReadString(Record, Idx); |
| 1160 | unsigned FormatIdx = Record[Idx++]; |
| 1161 | unsigned FirstArg = Record[Idx++]; |
Ted Kremenek | 3d2c43e | 2010-02-11 05:28:37 +0000 | [diff] [blame] | 1162 | New = ::new (*Context) FormatAttr(*Context, Type, FormatIdx, FirstArg); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1163 | break; |
| 1164 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1165 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1166 | case attr::FormatArg: { |
Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 1167 | unsigned FormatIdx = Record[Idx++]; |
| 1168 | New = ::new (*Context) FormatArgAttr(FormatIdx); |
| 1169 | break; |
| 1170 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1171 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1172 | case attr::Sentinel: { |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 1173 | int sentinel = Record[Idx++]; |
| 1174 | int nullPos = Record[Idx++]; |
| 1175 | New = ::new (*Context) SentinelAttr(sentinel, nullPos); |
| 1176 | break; |
| 1177 | } |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1178 | |
| 1179 | SIMPLE_ATTR(GNUInline); |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1180 | SIMPLE_ATTR(Hiding); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1181 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1182 | case attr::IBAction: |
Ted Kremenek | efbddd2 | 2010-02-17 02:37:45 +0000 | [diff] [blame] | 1183 | New = ::new (*Context) IBActionAttr(); |
| 1184 | break; |
| 1185 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1186 | case attr::IBOutlet: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1187 | New = ::new (*Context) IBOutletAttr(); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1188 | break; |
| 1189 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1190 | case attr::IBOutletCollection: { |
Ted Kremenek | 857e918 | 2010-05-19 17:38:06 +0000 | [diff] [blame] | 1191 | ObjCInterfaceDecl *D = |
| 1192 | cast_or_null<ObjCInterfaceDecl>(GetDecl(Record[Idx++])); |
| 1193 | New = ::new (*Context) IBOutletCollectionAttr(D); |
| 1194 | break; |
| 1195 | } |
| 1196 | |
Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1197 | SIMPLE_ATTR(Malloc); |
Mike Stump | 1feade8 | 2009-08-26 22:31:08 +0000 | [diff] [blame] | 1198 | SIMPLE_ATTR(NoDebug); |
| 1199 | SIMPLE_ATTR(NoInline); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1200 | SIMPLE_ATTR(NoReturn); |
| 1201 | SIMPLE_ATTR(NoThrow); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1202 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1203 | case attr::NonNull: { |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1204 | unsigned Size = Record[Idx++]; |
| 1205 | llvm::SmallVector<unsigned, 16> ArgNums; |
| 1206 | ArgNums.insert(ArgNums.end(), &Record[Idx], &Record[Idx] + Size); |
| 1207 | Idx += Size; |
Ted Kremenek | 5961611 | 2010-02-11 07:31:47 +0000 | [diff] [blame] | 1208 | New = ::new (*Context) NonNullAttr(*Context, ArgNums.data(), Size); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1209 | break; |
| 1210 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1211 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1212 | case attr::ReqdWorkGroupSize: { |
Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 1213 | unsigned X = Record[Idx++]; |
| 1214 | unsigned Y = Record[Idx++]; |
| 1215 | unsigned Z = Record[Idx++]; |
| 1216 | New = ::new (*Context) ReqdWorkGroupSizeAttr(X, Y, Z); |
| 1217 | break; |
| 1218 | } |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1219 | |
| 1220 | SIMPLE_ATTR(ObjCException); |
| 1221 | SIMPLE_ATTR(ObjCNSObject); |
Ted Kremenek | 31c780d | 2010-02-18 00:05:45 +0000 | [diff] [blame] | 1222 | SIMPLE_ATTR(CFReturnsNotRetained); |
Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 1223 | SIMPLE_ATTR(CFReturnsRetained); |
Ted Kremenek | 31c780d | 2010-02-18 00:05:45 +0000 | [diff] [blame] | 1224 | SIMPLE_ATTR(NSReturnsNotRetained); |
Ted Kremenek | b71368d | 2009-05-09 02:44:38 +0000 | [diff] [blame] | 1225 | SIMPLE_ATTR(NSReturnsRetained); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1226 | SIMPLE_ATTR(Overloadable); |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1227 | SIMPLE_ATTR(Override); |
Anders Carlsson | a860e75 | 2009-08-08 18:23:56 +0000 | [diff] [blame] | 1228 | SIMPLE_ATTR(Packed); |
Daniel Dunbar | 8a2c92c | 2010-05-27 01:12:46 +0000 | [diff] [blame] | 1229 | UNSIGNED_ATTR(MaxFieldAlignment); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1230 | SIMPLE_ATTR(Pure); |
| 1231 | UNSIGNED_ATTR(Regparm); |
| 1232 | STRING_ATTR(Section); |
| 1233 | SIMPLE_ATTR(StdCall); |
Douglas Gregor | f813a2c | 2010-05-18 16:57:00 +0000 | [diff] [blame] | 1234 | SIMPLE_ATTR(ThisCall); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1235 | SIMPLE_ATTR(TransparentUnion); |
| 1236 | SIMPLE_ATTR(Unavailable); |
| 1237 | SIMPLE_ATTR(Unused); |
| 1238 | SIMPLE_ATTR(Used); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1239 | |
Sean Hunt | 387475d | 2010-06-16 23:43:53 +0000 | [diff] [blame] | 1240 | case attr::Visibility: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1241 | New = ::new (*Context) VisibilityAttr( |
Eli Friedman | aa8b0d1 | 2010-08-05 06:57:20 +0000 | [diff] [blame] | 1242 | (VisibilityAttr::VisibilityTypes)Record[Idx++], |
| 1243 | (bool)Record[Idx++]); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1244 | break; |
| 1245 | |
| 1246 | SIMPLE_ATTR(WarnUnusedResult); |
| 1247 | SIMPLE_ATTR(Weak); |
Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1248 | SIMPLE_ATTR(WeakRef); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1249 | SIMPLE_ATTR(WeakImport); |
| 1250 | } |
| 1251 | |
| 1252 | assert(New && "Unable to decode attribute?"); |
| 1253 | New->setInherited(IsInherited); |
| 1254 | New->setNext(Attrs); |
| 1255 | Attrs = New; |
| 1256 | } |
| 1257 | #undef UNSIGNED_ATTR |
| 1258 | #undef STRING_ATTR |
| 1259 | #undef SIMPLE_ATTR |
| 1260 | |
| 1261 | // The list of attributes was built backwards. Reverse the list |
| 1262 | // before returning it. |
| 1263 | Attr *PrevAttr = 0, *NextAttr = 0; |
| 1264 | while (Attrs) { |
| 1265 | NextAttr = Attrs->getNext(); |
| 1266 | Attrs->setNext(PrevAttr); |
| 1267 | PrevAttr = Attrs; |
| 1268 | Attrs = NextAttr; |
| 1269 | } |
| 1270 | |
| 1271 | return PrevAttr; |
| 1272 | } |
| 1273 | |
| 1274 | //===----------------------------------------------------------------------===// |
| 1275 | // PCHReader Implementation |
| 1276 | //===----------------------------------------------------------------------===// |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1277 | |
| 1278 | /// \brief Note that we have loaded the declaration with the given |
| 1279 | /// Index. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1280 | /// |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1281 | /// This routine notes that this declaration has already been loaded, |
| 1282 | /// so that future GetDecl calls will return this declaration rather |
| 1283 | /// than trying to load a new declaration. |
| 1284 | inline void PCHReader::LoadedDecl(unsigned Index, Decl *D) { |
| 1285 | assert(!DeclsLoaded[Index] && "Decl loaded twice?"); |
| 1286 | DeclsLoaded[Index] = D; |
| 1287 | } |
| 1288 | |
| 1289 | |
| 1290 | /// \brief Determine whether the consumer will be interested in seeing |
| 1291 | /// this declaration (via HandleTopLevelDecl). |
| 1292 | /// |
| 1293 | /// This routine should return true for anything that might affect |
| 1294 | /// code generation, e.g., inline function definitions, Objective-C |
| 1295 | /// declarations with metadata, etc. |
| 1296 | static bool isConsumerInterestedIn(Decl *D) { |
Daniel Dunbar | 04a0b50 | 2009-09-17 03:06:44 +0000 | [diff] [blame] | 1297 | if (isa<FileScopeAsmDecl>(D)) |
| 1298 | return true; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1299 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) |
Argyrios Kyrtzidis | 3f95477 | 2010-08-05 09:47:59 +0000 | [diff] [blame] | 1300 | return Var->isFileVarDecl() && |
| 1301 | Var->isThisDeclarationADefinition() == VarDecl::Definition; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1302 | if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) |
| 1303 | return Func->isThisDeclarationADefinition(); |
Argyrios Kyrtzidis | 9d50c06 | 2010-08-09 10:54:20 +0000 | [diff] [blame] | 1304 | return isa<ObjCProtocolDecl>(D) || isa<ObjCImplementationDecl>(D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1305 | } |
| 1306 | |
Sebastian Redl | cb526aa | 2010-07-20 22:46:15 +0000 | [diff] [blame] | 1307 | /// \brief Get the correct cursor and offset for loading a type. |
| 1308 | PCHReader::RecordLocation PCHReader::DeclCursorForIndex(unsigned Index) { |
| 1309 | PerFileData *F = 0; |
| 1310 | for (unsigned I = 0, N = Chain.size(); I != N; ++I) { |
| 1311 | F = Chain[N - I - 1]; |
| 1312 | if (Index < F->LocalNumDecls) |
| 1313 | break; |
| 1314 | Index -= F->LocalNumDecls; |
| 1315 | } |
| 1316 | assert(F && F->LocalNumDecls > Index && "Broken chain"); |
Sebastian Redl | 971dd44 | 2010-07-20 22:55:31 +0000 | [diff] [blame] | 1317 | return RecordLocation(&F->DeclsCursor, F->DeclOffsets[Index]); |
Sebastian Redl | cb526aa | 2010-07-20 22:46:15 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1320 | /// \brief Read the declaration at the given offset from the PCH file. |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 1321 | Decl *PCHReader::ReadDeclRecord(unsigned Index, pch::DeclID ID) { |
Sebastian Redl | cb526aa | 2010-07-20 22:46:15 +0000 | [diff] [blame] | 1322 | RecordLocation Loc = DeclCursorForIndex(Index); |
Sebastian Redl | 971dd44 | 2010-07-20 22:55:31 +0000 | [diff] [blame] | 1323 | llvm::BitstreamCursor &DeclsCursor = *Loc.first; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1324 | // Keep track of where we are in the stream, then jump back there |
| 1325 | // after reading this declaration. |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 1326 | SavedStreamPosition SavedPosition(DeclsCursor); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1327 | |
Argyrios Kyrtzidis | 919e693 | 2010-06-28 22:28:35 +0000 | [diff] [blame] | 1328 | ReadingKindTracker ReadingKind(Read_Decl, *this); |
| 1329 | |
Douglas Gregor | d89275b | 2009-07-06 18:54:52 +0000 | [diff] [blame] | 1330 | // Note that we are loading a declaration record. |
Argyrios Kyrtzidis | 29ee3a2 | 2010-07-30 10:03:16 +0000 | [diff] [blame] | 1331 | Deserializing ADecl(this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1332 | |
Sebastian Redl | cb526aa | 2010-07-20 22:46:15 +0000 | [diff] [blame] | 1333 | DeclsCursor.JumpToBit(Loc.second); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1334 | RecordData Record; |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 1335 | unsigned Code = DeclsCursor.ReadCode(); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1336 | unsigned Idx = 0; |
Argyrios Kyrtzidis | a865005 | 2010-08-03 17:30:10 +0000 | [diff] [blame] | 1337 | PCHDeclReader Reader(*this, DeclsCursor, ID, Record, Idx); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1338 | |
Chris Lattner | da93061 | 2009-04-27 05:58:23 +0000 | [diff] [blame] | 1339 | Decl *D = 0; |
| 1340 | switch ((pch::DeclCode)DeclsCursor.ReadRecord(Code, Record)) { |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1341 | case pch::DECL_ATTR: |
| 1342 | case pch::DECL_CONTEXT_LEXICAL: |
| 1343 | case pch::DECL_CONTEXT_VISIBLE: |
| 1344 | assert(false && "Record cannot be de-serialized with ReadDeclRecord"); |
| 1345 | break; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1346 | case pch::DECL_TRANSLATION_UNIT: |
| 1347 | assert(Index == 0 && "Translation unit must be at index 0"); |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1348 | D = Context->getTranslationUnitDecl(); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1349 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1350 | case pch::DECL_TYPEDEF: |
John McCall | ba6a9bd | 2009-10-24 08:00:42 +0000 | [diff] [blame] | 1351 | D = TypedefDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1352 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1353 | case pch::DECL_ENUM: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1354 | D = EnumDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1355 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1356 | case pch::DECL_RECORD: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1357 | D = RecordDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1358 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1359 | case pch::DECL_ENUM_CONSTANT: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1360 | D = EnumConstantDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1361 | 0, llvm::APSInt()); |
| 1362 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1363 | case pch::DECL_FUNCTION: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1364 | D = FunctionDecl::Create(*Context, 0, SourceLocation(), DeclarationName(), |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1365 | QualType(), 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1366 | break; |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1367 | case pch::DECL_LINKAGE_SPEC: |
| 1368 | D = LinkageSpecDecl::Create(*Context, 0, SourceLocation(), |
| 1369 | (LinkageSpecDecl::LanguageIDs)0, |
| 1370 | false); |
| 1371 | break; |
| 1372 | case pch::DECL_NAMESPACE: |
| 1373 | D = NamespaceDecl::Create(*Context, 0, SourceLocation(), 0); |
| 1374 | break; |
| 1375 | case pch::DECL_NAMESPACE_ALIAS: |
| 1376 | D = NamespaceAliasDecl::Create(*Context, 0, SourceLocation(), |
| 1377 | SourceLocation(), 0, SourceRange(), 0, |
| 1378 | SourceLocation(), 0); |
| 1379 | break; |
| 1380 | case pch::DECL_USING: |
| 1381 | D = UsingDecl::Create(*Context, 0, SourceLocation(), SourceRange(), |
| 1382 | SourceLocation(), 0, DeclarationName(), false); |
| 1383 | break; |
| 1384 | case pch::DECL_USING_SHADOW: |
| 1385 | D = UsingShadowDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
| 1386 | break; |
| 1387 | case pch::DECL_USING_DIRECTIVE: |
| 1388 | D = UsingDirectiveDecl::Create(*Context, 0, SourceLocation(), |
| 1389 | SourceLocation(), SourceRange(), 0, |
| 1390 | SourceLocation(), 0, 0); |
| 1391 | break; |
| 1392 | case pch::DECL_UNRESOLVED_USING_VALUE: |
| 1393 | D = UnresolvedUsingValueDecl::Create(*Context, 0, SourceLocation(), |
| 1394 | SourceRange(), 0, SourceLocation(), |
| 1395 | DeclarationName()); |
| 1396 | break; |
| 1397 | case pch::DECL_UNRESOLVED_USING_TYPENAME: |
| 1398 | D = UnresolvedUsingTypenameDecl::Create(*Context, 0, SourceLocation(), |
| 1399 | SourceLocation(), SourceRange(), |
| 1400 | 0, SourceLocation(), |
| 1401 | DeclarationName()); |
| 1402 | break; |
| 1403 | case pch::DECL_CXX_RECORD: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1404 | D = CXXRecordDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1405 | break; |
| 1406 | case pch::DECL_CXX_METHOD: |
Abramo Bagnara | 2577743 | 2010-08-11 22:01:17 +0000 | [diff] [blame] | 1407 | D = CXXMethodDecl::Create(*Context, 0, DeclarationNameInfo(), |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1408 | QualType(), 0); |
| 1409 | break; |
| 1410 | case pch::DECL_CXX_CONSTRUCTOR: |
| 1411 | D = CXXConstructorDecl::Create(*Context, Decl::EmptyShell()); |
| 1412 | break; |
| 1413 | case pch::DECL_CXX_DESTRUCTOR: |
| 1414 | D = CXXDestructorDecl::Create(*Context, Decl::EmptyShell()); |
| 1415 | break; |
| 1416 | case pch::DECL_CXX_CONVERSION: |
| 1417 | D = CXXConversionDecl::Create(*Context, Decl::EmptyShell()); |
| 1418 | break; |
Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 1419 | case pch::DECL_ACCESS_SPEC: |
| 1420 | D = AccessSpecDecl::Create(*Context, AS_none, 0, SourceLocation(), |
| 1421 | SourceLocation()); |
| 1422 | break; |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1423 | case pch::DECL_FRIEND: |
Argyrios Kyrtzidis | 6764334 | 2010-06-29 22:47:00 +0000 | [diff] [blame] | 1424 | D = FriendDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1425 | break; |
| 1426 | case pch::DECL_FRIEND_TEMPLATE: |
Argyrios Kyrtzidis | 554e6aa | 2010-07-22 16:04:10 +0000 | [diff] [blame] | 1427 | D = FriendTemplateDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1428 | break; |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1429 | case pch::DECL_CLASS_TEMPLATE: |
Argyrios Kyrtzidis | 5bf1bdc | 2010-06-21 10:57:41 +0000 | [diff] [blame] | 1430 | D = ClassTemplateDecl::Create(*Context, 0, SourceLocation(), |
| 1431 | DeclarationName(), 0, 0, 0); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1432 | break; |
| 1433 | case pch::DECL_CLASS_TEMPLATE_SPECIALIZATION: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1434 | D = ClassTemplateSpecializationDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1435 | break; |
| 1436 | case pch::DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1437 | D = ClassTemplatePartialSpecializationDecl::Create(*Context, |
| 1438 | Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1439 | break; |
| 1440 | case pch::DECL_FUNCTION_TEMPLATE: |
Argyrios Kyrtzidis | f511ba6 | 2010-06-22 09:55:07 +0000 | [diff] [blame] | 1441 | D = FunctionTemplateDecl::Create(*Context, 0, SourceLocation(), |
| 1442 | DeclarationName(), 0, 0); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1443 | break; |
| 1444 | case pch::DECL_TEMPLATE_TYPE_PARM: |
Argyrios Kyrtzidis | b8b03e6 | 2010-07-02 11:54:55 +0000 | [diff] [blame] | 1445 | D = TemplateTypeParmDecl::Create(*Context, Decl::EmptyShell()); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1446 | break; |
| 1447 | case pch::DECL_NON_TYPE_TEMPLATE_PARM: |
Argyrios Kyrtzidis | b24e199 | 2010-06-25 16:25:09 +0000 | [diff] [blame] | 1448 | D = NonTypeTemplateParmDecl::Create(*Context, 0, SourceLocation(), 0,0,0, |
| 1449 | QualType(),0); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1450 | break; |
| 1451 | case pch::DECL_TEMPLATE_TEMPLATE_PARM: |
Argyrios Kyrtzidis | bfcc92c | 2010-07-08 17:12:57 +0000 | [diff] [blame] | 1452 | D = TemplateTemplateParmDecl::Create(*Context, 0, SourceLocation(),0,0,0,0); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1453 | break; |
| 1454 | case pch::DECL_STATIC_ASSERT: |
Argyrios Kyrtzidis | 0d39689 | 2010-07-22 17:28:12 +0000 | [diff] [blame] | 1455 | D = StaticAssertDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 1456 | break; |
| 1457 | |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1458 | case pch::DECL_OBJC_METHOD: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1459 | D = ObjCMethodDecl::Create(*Context, SourceLocation(), SourceLocation(), |
Douglas Gregor | 4bc1cb6 | 2010-03-08 14:59:44 +0000 | [diff] [blame] | 1460 | Selector(), QualType(), 0, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1461 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1462 | case pch::DECL_OBJC_INTERFACE: |
Douglas Gregor | deacbdc | 2010-08-11 12:19:30 +0000 | [diff] [blame] | 1463 | D = ObjCInterfaceDecl::Create(*Context, 0, SourceLocation(), 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1464 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1465 | case pch::DECL_OBJC_IVAR: |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1466 | D = ObjCIvarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1467 | ObjCIvarDecl::None); |
| 1468 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1469 | case pch::DECL_OBJC_PROTOCOL: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1470 | D = ObjCProtocolDecl::Create(*Context, 0, SourceLocation(), 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1471 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1472 | case pch::DECL_OBJC_AT_DEFS_FIELD: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1473 | D = ObjCAtDefsFieldDecl::Create(*Context, 0, SourceLocation(), 0, |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1474 | QualType(), 0); |
| 1475 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1476 | case pch::DECL_OBJC_CLASS: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1477 | D = ObjCClassDecl::Create(*Context, 0, SourceLocation()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1478 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1479 | case pch::DECL_OBJC_FORWARD_PROTOCOL: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1480 | D = ObjCForwardProtocolDecl::Create(*Context, 0, SourceLocation()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1481 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1482 | case pch::DECL_OBJC_CATEGORY: |
Douglas Gregor | 3db211b | 2010-01-16 16:38:58 +0000 | [diff] [blame] | 1483 | D = ObjCCategoryDecl::Create(*Context, 0, SourceLocation(), |
| 1484 | SourceLocation(), SourceLocation(), 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1485 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1486 | case pch::DECL_OBJC_CATEGORY_IMPL: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1487 | D = ObjCCategoryImplDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1488 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1489 | case pch::DECL_OBJC_IMPLEMENTATION: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1490 | D = ObjCImplementationDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1491 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1492 | case pch::DECL_OBJC_COMPATIBLE_ALIAS: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1493 | D = ObjCCompatibleAliasDecl::Create(*Context, 0, SourceLocation(), 0, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1494 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1495 | case pch::DECL_OBJC_PROPERTY: |
Fariborz Jahanian | d050240 | 2010-01-21 17:36:00 +0000 | [diff] [blame] | 1496 | D = ObjCPropertyDecl::Create(*Context, 0, SourceLocation(), 0, SourceLocation(), |
John McCall | 83a230c | 2010-06-04 20:50:08 +0000 | [diff] [blame] | 1497 | 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1498 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1499 | case pch::DECL_OBJC_PROPERTY_IMPL: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1500 | D = ObjCPropertyImplDecl::Create(*Context, 0, SourceLocation(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1501 | SourceLocation(), 0, |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1502 | ObjCPropertyImplDecl::Dynamic, 0); |
| 1503 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1504 | case pch::DECL_FIELD: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1505 | D = FieldDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, 0, |
Argyrios Kyrtzidis | a5d8200 | 2009-08-21 00:31:54 +0000 | [diff] [blame] | 1506 | false); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1507 | break; |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1508 | case pch::DECL_VAR: |
Argyrios Kyrtzidis | a1d5662 | 2009-08-19 01:27:57 +0000 | [diff] [blame] | 1509 | D = VarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1510 | VarDecl::None, VarDecl::None); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1511 | break; |
| 1512 | |
| 1513 | case pch::DECL_IMPLICIT_PARAM: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1514 | D = ImplicitParamDecl::Create(*Context, 0, SourceLocation(), 0, QualType()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1515 | break; |
| 1516 | |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1517 | case pch::DECL_PARM_VAR: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1518 | D = ParmVarDecl::Create(*Context, 0, SourceLocation(), 0, QualType(), 0, |
Douglas Gregor | 16573fa | 2010-04-19 22:54:31 +0000 | [diff] [blame] | 1519 | VarDecl::None, VarDecl::None, 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1520 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1521 | case pch::DECL_FILE_SCOPE_ASM: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1522 | D = FileScopeAsmDecl::Create(*Context, 0, SourceLocation(), 0); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1523 | break; |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1524 | case pch::DECL_BLOCK: |
Chris Lattner | d1d64a0 | 2009-04-27 21:45:14 +0000 | [diff] [blame] | 1525 | D = BlockDecl::Create(*Context, 0, SourceLocation()); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1526 | break; |
| 1527 | } |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1528 | |
| 1529 | assert(D && "Unknown declaration reading PCH file"); |
Chris Lattner | 4e3fcc8 | 2009-04-27 06:01:06 +0000 | [diff] [blame] | 1530 | LoadedDecl(Index, D); |
| 1531 | Reader.Visit(D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1532 | |
| 1533 | // If this declaration is also a declaration context, get the |
| 1534 | // offsets for its tables of lexical and visible declarations. |
| 1535 | if (DeclContext *DC = dyn_cast<DeclContext>(D)) { |
| 1536 | std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); |
| 1537 | if (Offsets.first || Offsets.second) { |
| 1538 | DC->setHasExternalLexicalStorage(Offsets.first != 0); |
| 1539 | DC->setHasExternalVisibleStorage(Offsets.second != 0); |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 1540 | DeclContextInfo Info; |
| 1541 | if (ReadDeclContextStorage(DeclsCursor, Offsets, Info)) |
| 1542 | return 0; |
Sebastian Redl | d692af7 | 2010-07-27 18:24:41 +0000 | [diff] [blame] | 1543 | DeclContextInfos &Infos = DeclContextOffsets[DC]; |
| 1544 | // Reading the TU will happen after reading its update blocks, so we need |
| 1545 | // to make sure we insert in front. For all other contexts, the vector |
| 1546 | // is empty here anyway, so there's no loss in efficiency. |
| 1547 | Infos.insert(Infos.begin(), Info); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1548 | } |
| 1549 | } |
| 1550 | assert(Idx == Record.size()); |
| 1551 | |
| 1552 | // If we have deserialized a declaration that has a definition the |
Argyrios Kyrtzidis | bb80a8e | 2010-07-07 15:46:26 +0000 | [diff] [blame] | 1553 | // AST consumer might need to know about, queue it. |
| 1554 | // We don't pass it to the consumer immediately because we may be in recursive |
| 1555 | // loading, and some declarations may still be initializing. |
| 1556 | if (isConsumerInterestedIn(D)) |
| 1557 | InterestingDecls.push_back(D); |
Chris Lattner | 698f925 | 2009-04-27 05:27:42 +0000 | [diff] [blame] | 1558 | |
| 1559 | return D; |
| 1560 | } |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 1561 | |
| 1562 | bool PCHReader::ReadDeclContextStorage(llvm::BitstreamCursor &Cursor, |
| 1563 | const std::pair<uint64_t, uint64_t> &Offsets, |
| 1564 | DeclContextInfo &Info) { |
| 1565 | SavedStreamPosition SavedPosition(Cursor); |
| 1566 | // First the lexical decls. |
| 1567 | if (Offsets.first != 0) { |
| 1568 | Cursor.JumpToBit(Offsets.first); |
| 1569 | |
| 1570 | RecordData Record; |
| 1571 | const char *Blob; |
| 1572 | unsigned BlobLen; |
| 1573 | unsigned Code = Cursor.ReadCode(); |
| 1574 | unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen); |
| 1575 | if (RecCode != pch::DECL_CONTEXT_LEXICAL) { |
| 1576 | Error("Expected lexical block"); |
| 1577 | return true; |
| 1578 | } |
| 1579 | |
| 1580 | Info.LexicalDecls = reinterpret_cast<const pch::DeclID*>(Blob); |
| 1581 | Info.NumLexicalDecls = BlobLen / sizeof(pch::DeclID); |
| 1582 | } else { |
| 1583 | Info.LexicalDecls = 0; |
| 1584 | Info.NumLexicalDecls = 0; |
| 1585 | } |
| 1586 | |
| 1587 | // Now the visible decls. |
| 1588 | Info.Stream = &Cursor; |
| 1589 | Info.OffsetToVisibleDecls = Offsets.second; |
| 1590 | |
| 1591 | return false; |
| 1592 | } |