1 //===--- ASTReaderDecl.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 ASTReader::ReadDeclRecord method, which is the 11 // entrypoint for loading a decl. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "clang/Serialization/ASTReader.h" 16 #include "ASTCommon.h" 17 #include "ASTReaderInternals.h" 18 #include "clang/AST/ASTConsumer.h" 19 #include "clang/AST/ASTContext.h" 20 #include "clang/AST/DeclCXX.h" 21 #include "clang/AST/DeclGroup.h" 22 #include "clang/AST/DeclTemplate.h" 23 #include "clang/AST/DeclVisitor.h" 24 #include "clang/AST/Expr.h" 25 #include "clang/Sema/IdentifierResolver.h" 26 #include "clang/Sema/Sema.h" 27 #include "clang/Sema/SemaDiagnostic.h" 28 #include "llvm/Support/SaveAndRestore.h" 29 using namespace clang; 30 using namespace clang::serialization; 31 32 //===----------------------------------------------------------------------===// 33 // Declaration deserialization 34 //===----------------------------------------------------------------------===// 35 36 namespace clang { 37 class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> { 38 ASTReader &Reader; 39 ModuleFile &F; 40 const DeclID ThisDeclID; 41 const unsigned RawLocation; 42 typedef ASTReader::RecordData RecordData; 43 const RecordData &Record; 44 unsigned &Idx; 45 TypeID TypeIDForTypeDecl; 46 unsigned AnonymousDeclNumber; 47 GlobalDeclID NamedDeclForTagDecl; 48 IdentifierInfo *TypedefNameForLinkage; 49 50 bool HasPendingBody; 51 52 uint64_t GetCurrentCursorOffset(); 53 54 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) { 55 return Reader.ReadSourceLocation(F, R, I); 56 } 57 58 SourceRange ReadSourceRange(const RecordData &R, unsigned &I) { 59 return Reader.ReadSourceRange(F, R, I); 60 } 61 62 TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) { 63 return Reader.GetTypeSourceInfo(F, R, I); 64 } 65 66 serialization::DeclID ReadDeclID(const RecordData &R, unsigned &I) { 67 return Reader.ReadDeclID(F, R, I); 68 } 69 70 Decl *ReadDecl(const RecordData &R, unsigned &I) { 71 return Reader.ReadDecl(F, R, I); 72 } 73 74 template<typename T> 75 T *ReadDeclAs(const RecordData &R, unsigned &I) { 76 return Reader.ReadDeclAs<T>(F, R, I); 77 } 78 79 void ReadQualifierInfo(QualifierInfo &Info, 80 const RecordData &R, unsigned &I) { 81 Reader.ReadQualifierInfo(F, Info, R, I); 82 } 83 84 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name, 85 const RecordData &R, unsigned &I) { 86 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I); 87 } 88 89 void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo, 90 const RecordData &R, unsigned &I) { 91 Reader.ReadDeclarationNameInfo(F, NameInfo, R, I); 92 } 93 94 serialization::SubmoduleID readSubmoduleID(const RecordData &R, 95 unsigned &I) { 96 if (I >= R.size()) 97 return 0; 98 99 return Reader.getGlobalSubmoduleID(F, R[I++]); 100 } 101 102 Module *readModule(const RecordData &R, unsigned &I) { 103 return Reader.getSubmodule(readSubmoduleID(R, I)); 104 } 105 106 void ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update); 107 void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data, 108 const RecordData &R, unsigned &I); 109 void MergeDefinitionData(CXXRecordDecl *D, 110 struct CXXRecordDecl::DefinitionData &&NewDD); 111 112 static NamedDecl *getAnonymousDeclForMerging(ASTReader &Reader, 113 DeclContext *DC, 114 unsigned Index); 115 static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC, 116 unsigned Index, NamedDecl *D); 117 118 /// \brief RAII class used to capture the first ID within a redeclaration 119 /// chain and to introduce it into the list of pending redeclaration chains 120 /// on destruction. 121 /// 122 /// The caller can choose not to introduce this ID into the list of pending 123 /// redeclaration chains by calling \c suppress(). 124 class RedeclarableResult { 125 ASTReader &Reader; 126 GlobalDeclID FirstID; 127 Decl *MergeWith; 128 mutable bool Owning; 129 Decl::Kind DeclKind; 130 131 void operator=(RedeclarableResult &) = delete; 132 133 public: 134 RedeclarableResult(ASTReader &Reader, GlobalDeclID FirstID, 135 Decl *MergeWith, Decl::Kind DeclKind) 136 : Reader(Reader), FirstID(FirstID), MergeWith(MergeWith), 137 Owning(true), DeclKind(DeclKind) {} 138 139 RedeclarableResult(RedeclarableResult &&Other) 140 : Reader(Other.Reader), FirstID(Other.FirstID), 141 MergeWith(Other.MergeWith), Owning(Other.Owning), 142 DeclKind(Other.DeclKind) { 143 Other.Owning = false; 144 } 145 146 ~RedeclarableResult() { 147 if (FirstID && Owning && isRedeclarableDeclKind(DeclKind) && 148 Reader.PendingDeclChainsKnown.insert(FirstID).second) 149 Reader.PendingDeclChains.push_back(FirstID); 150 } 151 152 /// \brief Retrieve the first ID. 153 GlobalDeclID getFirstID() const { return FirstID; } 154 155 /// \brief Get a known declaration that this should be merged with, if 156 /// any. 157 Decl *getKnownMergeTarget() const { return MergeWith; } 158 159 /// \brief Do not introduce this declaration ID into the set of pending 160 /// declaration chains. 161 void suppress() { 162 Owning = false; 163 } 164 }; 165 166 /// \brief Class used to capture the result of searching for an existing 167 /// declaration of a specific kind and name, along with the ability 168 /// to update the place where this result was found (the declaration 169 /// chain hanging off an identifier or the DeclContext we searched in) 170 /// if requested. 171 class FindExistingResult { 172 ASTReader &Reader; 173 NamedDecl *New; 174 NamedDecl *Existing; 175 mutable bool AddResult; 176 177 unsigned AnonymousDeclNumber; 178 IdentifierInfo *TypedefNameForLinkage; 179 180 void operator=(FindExistingResult&) = delete; 181 182 public: 183 FindExistingResult(ASTReader &Reader) 184 : Reader(Reader), New(nullptr), Existing(nullptr), AddResult(false), 185 AnonymousDeclNumber(0), TypedefNameForLinkage(0) {} 186 187 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing, 188 unsigned AnonymousDeclNumber, 189 IdentifierInfo *TypedefNameForLinkage) 190 : Reader(Reader), New(New), Existing(Existing), AddResult(true), 191 AnonymousDeclNumber(AnonymousDeclNumber), 192 TypedefNameForLinkage(TypedefNameForLinkage) {} 193 194 FindExistingResult(const FindExistingResult &Other) 195 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing), 196 AddResult(Other.AddResult), 197 AnonymousDeclNumber(Other.AnonymousDeclNumber), 198 TypedefNameForLinkage(Other.TypedefNameForLinkage) { 199 Other.AddResult = false; 200 } 201 202 ~FindExistingResult(); 203 204 /// \brief Suppress the addition of this result into the known set of 205 /// names. 206 void suppress() { AddResult = false; } 207 208 operator NamedDecl*() const { return Existing; } 209 210 template<typename T> 211 operator T*() const { return dyn_cast_or_null<T>(Existing); } 212 }; 213 214 static DeclContext *getPrimaryContextForMerging(ASTReader &Reader, 215 DeclContext *DC); 216 FindExistingResult findExisting(NamedDecl *D); 217 218 public: 219 ASTDeclReader(ASTReader &Reader, ModuleFile &F, DeclID thisDeclID, 220 unsigned RawLocation, const RecordData &Record, unsigned &Idx) 221 : Reader(Reader), F(F), ThisDeclID(thisDeclID), 222 RawLocation(RawLocation), Record(Record), Idx(Idx), 223 TypeIDForTypeDecl(0), NamedDeclForTagDecl(0), 224 TypedefNameForLinkage(nullptr), HasPendingBody(false) {} 225 226 template <typename DeclT> 227 static void attachPreviousDeclImpl(ASTReader &Reader, 228 Redeclarable<DeclT> *D, Decl *Previous); 229 static void attachPreviousDeclImpl(ASTReader &Reader, ...); 230 static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous); 231 232 template <typename DeclT> 233 static void attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest); 234 static void attachLatestDeclImpl(...); 235 static void attachLatestDecl(Decl *D, Decl *latest); 236 237 template <typename DeclT> 238 static void markIncompleteDeclChainImpl(Redeclarable<DeclT> *D); 239 static void markIncompleteDeclChainImpl(...); 240 241 /// \brief Determine whether this declaration has a pending body. 242 bool hasPendingBody() const { return HasPendingBody; } 243 244 void Visit(Decl *D); 245 246 void UpdateDecl(Decl *D, ModuleFile &ModuleFile, 247 const RecordData &Record); 248 249 static void setNextObjCCategory(ObjCCategoryDecl *Cat, 250 ObjCCategoryDecl *Next) { 251 Cat->NextClassCategory = Next; 252 } 253 254 void VisitDecl(Decl *D); 255 void VisitTranslationUnitDecl(TranslationUnitDecl *TU); 256 void VisitNamedDecl(NamedDecl *ND); 257 void VisitLabelDecl(LabelDecl *LD); 258 void VisitNamespaceDecl(NamespaceDecl *D); 259 void VisitUsingDirectiveDecl(UsingDirectiveDecl *D); 260 void VisitNamespaceAliasDecl(NamespaceAliasDecl *D); 261 void VisitTypeDecl(TypeDecl *TD); 262 RedeclarableResult VisitTypedefNameDecl(TypedefNameDecl *TD); 263 void VisitTypedefDecl(TypedefDecl *TD); 264 void VisitTypeAliasDecl(TypeAliasDecl *TD); 265 void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D); 266 RedeclarableResult VisitTagDecl(TagDecl *TD); 267 void VisitEnumDecl(EnumDecl *ED); 268 RedeclarableResult VisitRecordDeclImpl(RecordDecl *RD); 269 void VisitRecordDecl(RecordDecl *RD) { VisitRecordDeclImpl(RD); } 270 RedeclarableResult VisitCXXRecordDeclImpl(CXXRecordDecl *D); 271 void VisitCXXRecordDecl(CXXRecordDecl *D) { VisitCXXRecordDeclImpl(D); } 272 RedeclarableResult VisitClassTemplateSpecializationDeclImpl( 273 ClassTemplateSpecializationDecl *D); 274 void VisitClassTemplateSpecializationDecl( 275 ClassTemplateSpecializationDecl *D) { 276 VisitClassTemplateSpecializationDeclImpl(D); 277 } 278 void VisitClassTemplatePartialSpecializationDecl( 279 ClassTemplatePartialSpecializationDecl *D); 280 void VisitClassScopeFunctionSpecializationDecl( 281 ClassScopeFunctionSpecializationDecl *D); 282 RedeclarableResult 283 VisitVarTemplateSpecializationDeclImpl(VarTemplateSpecializationDecl *D); 284 void VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D) { 285 VisitVarTemplateSpecializationDeclImpl(D); 286 } 287 void VisitVarTemplatePartialSpecializationDecl( 288 VarTemplatePartialSpecializationDecl *D); 289 void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D); 290 void VisitValueDecl(ValueDecl *VD); 291 void VisitEnumConstantDecl(EnumConstantDecl *ECD); 292 void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D); 293 void VisitDeclaratorDecl(DeclaratorDecl *DD); 294 void VisitFunctionDecl(FunctionDecl *FD); 295 void VisitCXXMethodDecl(CXXMethodDecl *D); 296 void VisitCXXConstructorDecl(CXXConstructorDecl *D); 297 void VisitCXXDestructorDecl(CXXDestructorDecl *D); 298 void VisitCXXConversionDecl(CXXConversionDecl *D); 299 void VisitFieldDecl(FieldDecl *FD); 300 void VisitMSPropertyDecl(MSPropertyDecl *FD); 301 void VisitIndirectFieldDecl(IndirectFieldDecl *FD); 302 RedeclarableResult VisitVarDeclImpl(VarDecl *D); 303 void VisitVarDecl(VarDecl *VD) { VisitVarDeclImpl(VD); } 304 void VisitImplicitParamDecl(ImplicitParamDecl *PD); 305 void VisitParmVarDecl(ParmVarDecl *PD); 306 void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D); 307 DeclID VisitTemplateDecl(TemplateDecl *D); 308 RedeclarableResult VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D); 309 void VisitClassTemplateDecl(ClassTemplateDecl *D); 310 void VisitVarTemplateDecl(VarTemplateDecl *D); 311 void VisitFunctionTemplateDecl(FunctionTemplateDecl *D); 312 void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D); 313 void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D); 314 void VisitUsingDecl(UsingDecl *D); 315 void VisitUsingShadowDecl(UsingShadowDecl *D); 316 void VisitLinkageSpecDecl(LinkageSpecDecl *D); 317 void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD); 318 void VisitImportDecl(ImportDecl *D); 319 void VisitAccessSpecDecl(AccessSpecDecl *D); 320 void VisitFriendDecl(FriendDecl *D); 321 void VisitFriendTemplateDecl(FriendTemplateDecl *D); 322 void VisitStaticAssertDecl(StaticAssertDecl *D); 323 void VisitBlockDecl(BlockDecl *BD); 324 void VisitCapturedDecl(CapturedDecl *CD); 325 void VisitEmptyDecl(EmptyDecl *D); 326 327 std::pair<uint64_t, uint64_t> VisitDeclContext(DeclContext *DC); 328 329 template<typename T> 330 RedeclarableResult VisitRedeclarable(Redeclarable<T> *D); 331 332 template<typename T> 333 void mergeRedeclarable(Redeclarable<T> *D, RedeclarableResult &Redecl, 334 DeclID TemplatePatternID = 0); 335 336 template<typename T> 337 void mergeRedeclarable(Redeclarable<T> *D, T *Existing, 338 RedeclarableResult &Redecl, 339 DeclID TemplatePatternID = 0); 340 341 template<typename T> 342 void mergeMergeable(Mergeable<T> *D); 343 344 void mergeTemplatePattern(RedeclarableTemplateDecl *D, 345 RedeclarableTemplateDecl *Existing, 346 DeclID DsID); 347 348 // FIXME: Reorder according to DeclNodes.td? 349 void VisitObjCMethodDecl(ObjCMethodDecl *D); 350 void VisitObjCContainerDecl(ObjCContainerDecl *D); 351 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D); 352 void VisitObjCIvarDecl(ObjCIvarDecl *D); 353 void VisitObjCProtocolDecl(ObjCProtocolDecl *D); 354 void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D); 355 void VisitObjCCategoryDecl(ObjCCategoryDecl *D); 356 void VisitObjCImplDecl(ObjCImplDecl *D); 357 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D); 358 void VisitObjCImplementationDecl(ObjCImplementationDecl *D); 359 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D); 360 void VisitObjCPropertyDecl(ObjCPropertyDecl *D); 361 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D); 362 void VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D); 363 }; 364 } 365 366 uint64_t ASTDeclReader::GetCurrentCursorOffset() { 367 return F.DeclsCursor.GetCurrentBitNo() + F.GlobalBitOffset; 368 } 369 370 void ASTDeclReader::Visit(Decl *D) { 371 DeclVisitor<ASTDeclReader, void>::Visit(D); 372 373 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) { 374 if (DD->DeclInfo) { 375 DeclaratorDecl::ExtInfo *Info = 376 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>(); 377 Info->TInfo = 378 GetTypeSourceInfo(Record, Idx); 379 } 380 else { 381 DD->DeclInfo = GetTypeSourceInfo(Record, Idx); 382 } 383 } 384 385 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) { 386 // We have a fully initialized TypeDecl. Read its type now. 387 TD->setTypeForDecl(Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull()); 388 389 // If this is a tag declaration with a typedef name for linkage, it's safe 390 // to load that typedef now. 391 if (NamedDeclForTagDecl) 392 cast<TagDecl>(D)->NamedDeclOrQualifier = 393 cast<NamedDecl>(Reader.GetDecl(NamedDeclForTagDecl)); 394 } else if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) { 395 // if we have a fully initialized TypeDecl, we can safely read its type now. 396 ID->TypeForDecl = Reader.GetType(TypeIDForTypeDecl).getTypePtrOrNull(); 397 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { 398 // FunctionDecl's body was written last after all other Stmts/Exprs. 399 // We only read it if FD doesn't already have a body (e.g., from another 400 // module). 401 // FIXME: Also consider = default and = delete. 402 // FIXME: Can we diagnose ODR violations somehow? 403 if (Record[Idx++]) { 404 Reader.PendingBodies[FD] = GetCurrentCursorOffset(); 405 HasPendingBody = true; 406 } 407 } 408 } 409 410 void ASTDeclReader::VisitDecl(Decl *D) { 411 if (D->isTemplateParameter() || D->isTemplateParameterPack() || 412 isa<ParmVarDecl>(D)) { 413 // We don't want to deserialize the DeclContext of a template 414 // parameter or of a parameter of a function template immediately. These 415 // entities might be used in the formulation of its DeclContext (for 416 // example, a function parameter can be used in decltype() in trailing 417 // return type of the function). Use the translation unit DeclContext as a 418 // placeholder. 419 GlobalDeclID SemaDCIDForTemplateParmDecl = ReadDeclID(Record, Idx); 420 GlobalDeclID LexicalDCIDForTemplateParmDecl = ReadDeclID(Record, Idx); 421 Reader.addPendingDeclContextInfo(D, 422 SemaDCIDForTemplateParmDecl, 423 LexicalDCIDForTemplateParmDecl); 424 D->setDeclContext(Reader.getContext().getTranslationUnitDecl()); 425 } else { 426 DeclContext *SemaDC = ReadDeclAs<DeclContext>(Record, Idx); 427 DeclContext *LexicalDC = ReadDeclAs<DeclContext>(Record, Idx); 428 DeclContext *MergedSemaDC = Reader.MergedDeclContexts.lookup(SemaDC); 429 // Avoid calling setLexicalDeclContext() directly because it uses 430 // Decl::getASTContext() internally which is unsafe during derialization. 431 D->setDeclContextsImpl(MergedSemaDC ? MergedSemaDC : SemaDC, LexicalDC, 432 Reader.getContext()); 433 } 434 D->setLocation(Reader.ReadSourceLocation(F, RawLocation)); 435 D->setInvalidDecl(Record[Idx++]); 436 if (Record[Idx++]) { // hasAttrs 437 AttrVec Attrs; 438 Reader.ReadAttributes(F, Attrs, Record, Idx); 439 // Avoid calling setAttrs() directly because it uses Decl::getASTContext() 440 // internally which is unsafe during derialization. 441 D->setAttrsImpl(Attrs, Reader.getContext()); 442 } 443 D->setImplicit(Record[Idx++]); 444 D->Used = Record[Idx++]; 445 D->setReferenced(Record[Idx++]); 446 D->setTopLevelDeclInObjCContainer(Record[Idx++]); 447 D->setAccess((AccessSpecifier)Record[Idx++]); 448 D->FromASTFile = true; 449 D->setModulePrivate(Record[Idx++]); 450 D->Hidden = D->isModulePrivate(); 451 452 // Determine whether this declaration is part of a (sub)module. If so, it 453 // may not yet be visible. 454 if (unsigned SubmoduleID = readSubmoduleID(Record, Idx)) { 455 // Store the owning submodule ID in the declaration. 456 D->setOwningModuleID(SubmoduleID); 457 458 // Module-private declarations are never visible, so there is no work to do. 459 if (!D->isModulePrivate()) { 460 if (Module *Owner = Reader.getSubmodule(SubmoduleID)) { 461 if (Owner->NameVisibility != Module::AllVisible) { 462 // The owning module is not visible. Mark this declaration as hidden. 463 D->Hidden = true; 464 465 // Note that this declaration was hidden because its owning module is 466 // not yet visible. 467 Reader.HiddenNamesMap[Owner].HiddenDecls.push_back(D); 468 } 469 } 470 } 471 } 472 } 473 474 void ASTDeclReader::VisitTranslationUnitDecl(TranslationUnitDecl *TU) { 475 llvm_unreachable("Translation units are not serialized"); 476 } 477 478 void ASTDeclReader::VisitNamedDecl(NamedDecl *ND) { 479 VisitDecl(ND); 480 ND->setDeclName(Reader.ReadDeclarationName(F, Record, Idx)); 481 AnonymousDeclNumber = Record[Idx++]; 482 } 483 484 void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) { 485 VisitNamedDecl(TD); 486 TD->setLocStart(ReadSourceLocation(Record, Idx)); 487 // Delay type reading until after we have fully initialized the decl. 488 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]); 489 } 490 491 ASTDeclReader::RedeclarableResult 492 ASTDeclReader::VisitTypedefNameDecl(TypedefNameDecl *TD) { 493 RedeclarableResult Redecl = VisitRedeclarable(TD); 494 VisitTypeDecl(TD); 495 TypeSourceInfo *TInfo = GetTypeSourceInfo(Record, Idx); 496 if (Record[Idx++]) { // isModed 497 QualType modedT = Reader.readType(F, Record, Idx); 498 TD->setModedTypeSourceInfo(TInfo, modedT); 499 } else 500 TD->setTypeSourceInfo(TInfo); 501 return Redecl; 502 } 503 504 void ASTDeclReader::VisitTypedefDecl(TypedefDecl *TD) { 505 RedeclarableResult Redecl = VisitTypedefNameDecl(TD); 506 mergeRedeclarable(TD, Redecl); 507 } 508 509 void ASTDeclReader::VisitTypeAliasDecl(TypeAliasDecl *TD) { 510 RedeclarableResult Redecl = VisitTypedefNameDecl(TD); 511 if (auto *Template = ReadDeclAs<TypeAliasTemplateDecl>(Record, Idx)) 512 // Merged when we merge the template. 513 TD->setDescribedAliasTemplate(Template); 514 else 515 mergeRedeclarable(TD, Redecl); 516 } 517 518 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitTagDecl(TagDecl *TD) { 519 RedeclarableResult Redecl = VisitRedeclarable(TD); 520 VisitTypeDecl(TD); 521 522 TD->IdentifierNamespace = Record[Idx++]; 523 TD->setTagKind((TagDecl::TagKind)Record[Idx++]); 524 if (!isa<CXXRecordDecl>(TD)) 525 TD->setCompleteDefinition(Record[Idx++]); 526 TD->setEmbeddedInDeclarator(Record[Idx++]); 527 TD->setFreeStanding(Record[Idx++]); 528 TD->setCompleteDefinitionRequired(Record[Idx++]); 529 TD->setRBraceLoc(ReadSourceLocation(Record, Idx)); 530 531 switch (Record[Idx++]) { 532 case 0: 533 break; 534 case 1: { // ExtInfo 535 TagDecl::ExtInfo *Info = new (Reader.getContext()) TagDecl::ExtInfo(); 536 ReadQualifierInfo(*Info, Record, Idx); 537 TD->NamedDeclOrQualifier = Info; 538 break; 539 } 540 case 2: // TypedefNameForAnonDecl 541 NamedDeclForTagDecl = ReadDeclID(Record, Idx); 542 TypedefNameForLinkage = Reader.GetIdentifierInfo(F, Record, Idx); 543 break; 544 case 3: // DeclaratorForAnonDecl 545 NamedDeclForTagDecl = ReadDeclID(Record, Idx); 546 break; 547 default: 548 llvm_unreachable("unexpected tag info kind"); 549 } 550 551 if (!isa<CXXRecordDecl>(TD)) 552 mergeRedeclarable(TD, Redecl); 553 return Redecl; 554 } 555 556 void ASTDeclReader::VisitEnumDecl(EnumDecl *ED) { 557 VisitTagDecl(ED); 558 if (TypeSourceInfo *TI = Reader.GetTypeSourceInfo(F, Record, Idx)) 559 ED->setIntegerTypeSourceInfo(TI); 560 else 561 ED->setIntegerType(Reader.readType(F, Record, Idx)); 562 ED->setPromotionType(Reader.readType(F, Record, Idx)); 563 ED->setNumPositiveBits(Record[Idx++]); 564 ED->setNumNegativeBits(Record[Idx++]); 565 ED->IsScoped = Record[Idx++]; 566 ED->IsScopedUsingClassTag = Record[Idx++]; 567 ED->IsFixed = Record[Idx++]; 568 569 // If this is a definition subject to the ODR, and we already have a 570 // definition, merge this one into it. 571 if (ED->IsCompleteDefinition && 572 Reader.getContext().getLangOpts().Modules && 573 Reader.getContext().getLangOpts().CPlusPlus) { 574 if (EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()]) { 575 Reader.MergedDeclContexts.insert(std::make_pair(ED, OldDef)); 576 ED->IsCompleteDefinition = false; 577 } else { 578 OldDef = ED; 579 } 580 } 581 582 if (EnumDecl *InstED = ReadDeclAs<EnumDecl>(Record, Idx)) { 583 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++]; 584 SourceLocation POI = ReadSourceLocation(Record, Idx); 585 ED->setInstantiationOfMemberEnum(Reader.getContext(), InstED, TSK); 586 ED->getMemberSpecializationInfo()->setPointOfInstantiation(POI); 587 } 588 } 589 590 ASTDeclReader::RedeclarableResult 591 ASTDeclReader::VisitRecordDeclImpl(RecordDecl *RD) { 592 RedeclarableResult Redecl = VisitTagDecl(RD); 593 RD->setHasFlexibleArrayMember(Record[Idx++]); 594 RD->setAnonymousStructOrUnion(Record[Idx++]); 595 RD->setHasObjectMember(Record[Idx++]); 596 RD->setHasVolatileMember(Record[Idx++]); 597 return Redecl; 598 } 599 600 void ASTDeclReader::VisitValueDecl(ValueDecl *VD) { 601 VisitNamedDecl(VD); 602 VD->setType(Reader.readType(F, Record, Idx)); 603 } 604 605 void ASTDeclReader::VisitEnumConstantDecl(EnumConstantDecl *ECD) { 606 VisitValueDecl(ECD); 607 if (Record[Idx++]) 608 ECD->setInitExpr(Reader.ReadExpr(F)); 609 ECD->setInitVal(Reader.ReadAPSInt(Record, Idx)); 610 mergeMergeable(ECD); 611 } 612 613 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) { 614 VisitValueDecl(DD); 615 DD->setInnerLocStart(ReadSourceLocation(Record, Idx)); 616 if (Record[Idx++]) { // hasExtInfo 617 DeclaratorDecl::ExtInfo *Info 618 = new (Reader.getContext()) DeclaratorDecl::ExtInfo(); 619 ReadQualifierInfo(*Info, Record, Idx); 620 DD->DeclInfo = Info; 621 } 622 } 623 624 void ASTDeclReader::VisitFunctionDecl(FunctionDecl *FD) { 625 RedeclarableResult Redecl = VisitRedeclarable(FD); 626 VisitDeclaratorDecl(FD); 627 628 ReadDeclarationNameLoc(FD->DNLoc, FD->getDeclName(), Record, Idx); 629 FD->IdentifierNamespace = Record[Idx++]; 630 631 // FunctionDecl's body is handled last at ASTDeclReader::Visit, 632 // after everything else is read. 633 634 FD->SClass = (StorageClass)Record[Idx++]; 635 FD->IsInline = Record[Idx++]; 636 FD->IsInlineSpecified = Record[Idx++]; 637 FD->IsVirtualAsWritten = Record[Idx++]; 638 FD->IsPure = Record[Idx++]; 639 FD->HasInheritedPrototype = Record[Idx++]; 640 FD->HasWrittenPrototype = Record[Idx++]; 641 FD->IsDeleted = Record[Idx++]; 642 FD->IsTrivial = Record[Idx++]; 643 FD->IsDefaulted = Record[Idx++]; 644 FD->IsExplicitlyDefaulted = Record[Idx++]; 645 FD->HasImplicitReturnZero = Record[Idx++]; 646 FD->IsConstexpr = Record[Idx++]; 647 FD->HasSkippedBody = Record[Idx++]; 648 FD->IsLateTemplateParsed = Record[Idx++]; 649 FD->setCachedLinkage(Linkage(Record[Idx++])); 650 FD->EndRangeLoc = ReadSourceLocation(Record, Idx); 651 652 switch ((FunctionDecl::TemplatedKind)Record[Idx++]) { 653 case FunctionDecl::TK_NonTemplate: 654 mergeRedeclarable(FD, Redecl); 655 break; 656 case FunctionDecl::TK_FunctionTemplate: 657 // Merged when we merge the template. 658 FD->setDescribedFunctionTemplate(ReadDeclAs<FunctionTemplateDecl>(Record, 659 Idx)); 660 break; 661 case FunctionDecl::TK_MemberSpecialization: { 662 FunctionDecl *InstFD = ReadDeclAs<FunctionDecl>(Record, Idx); 663 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++]; 664 SourceLocation POI = ReadSourceLocation(Record, Idx); 665 FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK); 666 FD->getMemberSpecializationInfo()->setPointOfInstantiation(POI); 667 mergeRedeclarable(FD, Redecl); 668 break; 669 } 670 case FunctionDecl::TK_FunctionTemplateSpecialization: { 671 FunctionTemplateDecl *Template = ReadDeclAs<FunctionTemplateDecl>(Record, 672 Idx); 673 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++]; 674 675 // Template arguments. 676 SmallVector<TemplateArgument, 8> TemplArgs; 677 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 678 679 // Template args as written. 680 SmallVector<TemplateArgumentLoc, 8> TemplArgLocs; 681 SourceLocation LAngleLoc, RAngleLoc; 682 bool HasTemplateArgumentsAsWritten = Record[Idx++]; 683 if (HasTemplateArgumentsAsWritten) { 684 unsigned NumTemplateArgLocs = Record[Idx++]; 685 TemplArgLocs.reserve(NumTemplateArgLocs); 686 for (unsigned i=0; i != NumTemplateArgLocs; ++i) 687 TemplArgLocs.push_back( 688 Reader.ReadTemplateArgumentLoc(F, Record, Idx)); 689 690 LAngleLoc = ReadSourceLocation(Record, Idx); 691 RAngleLoc = ReadSourceLocation(Record, Idx); 692 } 693 694 SourceLocation POI = ReadSourceLocation(Record, Idx); 695 696 ASTContext &C = Reader.getContext(); 697 TemplateArgumentList *TemplArgList 698 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size()); 699 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc); 700 for (unsigned i=0, e = TemplArgLocs.size(); i != e; ++i) 701 TemplArgsInfo.addArgument(TemplArgLocs[i]); 702 FunctionTemplateSpecializationInfo *FTInfo 703 = FunctionTemplateSpecializationInfo::Create(C, FD, Template, TSK, 704 TemplArgList, 705 HasTemplateArgumentsAsWritten ? &TemplArgsInfo 706 : nullptr, 707 POI); 708 FD->TemplateOrSpecialization = FTInfo; 709 710 if (FD->isCanonicalDecl()) { // if canonical add to template's set. 711 // The template that contains the specializations set. It's not safe to 712 // use getCanonicalDecl on Template since it may still be initializing. 713 FunctionTemplateDecl *CanonTemplate 714 = ReadDeclAs<FunctionTemplateDecl>(Record, Idx); 715 // Get the InsertPos by FindNodeOrInsertPos() instead of calling 716 // InsertNode(FTInfo) directly to avoid the getASTContext() call in 717 // FunctionTemplateSpecializationInfo's Profile(). 718 // We avoid getASTContext because a decl in the parent hierarchy may 719 // be initializing. 720 llvm::FoldingSetNodeID ID; 721 FunctionTemplateSpecializationInfo::Profile(ID, TemplArgs, C); 722 void *InsertPos = nullptr; 723 FunctionTemplateDecl::Common *CommonPtr = CanonTemplate->getCommonPtr(); 724 CommonPtr->Specializations.FindNodeOrInsertPos(ID, InsertPos); 725 if (InsertPos) 726 CommonPtr->Specializations.InsertNode(FTInfo, InsertPos); 727 else { 728 assert(Reader.getContext().getLangOpts().Modules && 729 "already deserialized this template specialization"); 730 // FIXME: This specialization is a redeclaration of one from another 731 // module. Merge it. 732 } 733 } 734 break; 735 } 736 case FunctionDecl::TK_DependentFunctionTemplateSpecialization: { 737 // Templates. 738 UnresolvedSet<8> TemplDecls; 739 unsigned NumTemplates = Record[Idx++]; 740 while (NumTemplates--) 741 TemplDecls.addDecl(ReadDeclAs<NamedDecl>(Record, Idx)); 742 743 // Templates args. 744 TemplateArgumentListInfo TemplArgs; 745 unsigned NumArgs = Record[Idx++]; 746 while (NumArgs--) 747 TemplArgs.addArgument(Reader.ReadTemplateArgumentLoc(F, Record, Idx)); 748 TemplArgs.setLAngleLoc(ReadSourceLocation(Record, Idx)); 749 TemplArgs.setRAngleLoc(ReadSourceLocation(Record, Idx)); 750 751 FD->setDependentTemplateSpecialization(Reader.getContext(), 752 TemplDecls, TemplArgs); 753 754 // FIXME: Merging. 755 break; 756 } 757 } 758 759 // Read in the parameters. 760 unsigned NumParams = Record[Idx++]; 761 SmallVector<ParmVarDecl *, 16> Params; 762 Params.reserve(NumParams); 763 for (unsigned I = 0; I != NumParams; ++I) 764 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx)); 765 FD->setParams(Reader.getContext(), Params); 766 } 767 768 void ASTDeclReader::VisitObjCMethodDecl(ObjCMethodDecl *MD) { 769 VisitNamedDecl(MD); 770 if (Record[Idx++]) { 771 // Load the body on-demand. Most clients won't care, because method 772 // definitions rarely show up in headers. 773 Reader.PendingBodies[MD] = GetCurrentCursorOffset(); 774 HasPendingBody = true; 775 MD->setSelfDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx)); 776 MD->setCmdDecl(ReadDeclAs<ImplicitParamDecl>(Record, Idx)); 777 } 778 MD->setInstanceMethod(Record[Idx++]); 779 MD->setVariadic(Record[Idx++]); 780 MD->setPropertyAccessor(Record[Idx++]); 781 MD->setDefined(Record[Idx++]); 782 MD->IsOverriding = Record[Idx++]; 783 MD->HasSkippedBody = Record[Idx++]; 784 785 MD->IsRedeclaration = Record[Idx++]; 786 MD->HasRedeclaration = Record[Idx++]; 787 if (MD->HasRedeclaration) 788 Reader.getContext().setObjCMethodRedeclaration(MD, 789 ReadDeclAs<ObjCMethodDecl>(Record, Idx)); 790 791 MD->setDeclImplementation((ObjCMethodDecl::ImplementationControl)Record[Idx++]); 792 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record[Idx++]); 793 MD->SetRelatedResultType(Record[Idx++]); 794 MD->setReturnType(Reader.readType(F, Record, Idx)); 795 MD->setReturnTypeSourceInfo(GetTypeSourceInfo(Record, Idx)); 796 MD->DeclEndLoc = ReadSourceLocation(Record, Idx); 797 unsigned NumParams = Record[Idx++]; 798 SmallVector<ParmVarDecl *, 16> Params; 799 Params.reserve(NumParams); 800 for (unsigned I = 0; I != NumParams; ++I) 801 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx)); 802 803 MD->SelLocsKind = Record[Idx++]; 804 unsigned NumStoredSelLocs = Record[Idx++]; 805 SmallVector<SourceLocation, 16> SelLocs; 806 SelLocs.reserve(NumStoredSelLocs); 807 for (unsigned i = 0; i != NumStoredSelLocs; ++i) 808 SelLocs.push_back(ReadSourceLocation(Record, Idx)); 809 810 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs); 811 } 812 813 void ASTDeclReader::VisitObjCContainerDecl(ObjCContainerDecl *CD) { 814 VisitNamedDecl(CD); 815 CD->setAtStartLoc(ReadSourceLocation(Record, Idx)); 816 CD->setAtEndRange(ReadSourceRange(Record, Idx)); 817 } 818 819 void ASTDeclReader::VisitObjCInterfaceDecl(ObjCInterfaceDecl *ID) { 820 RedeclarableResult Redecl = VisitRedeclarable(ID); 821 VisitObjCContainerDecl(ID); 822 TypeIDForTypeDecl = Reader.getGlobalTypeID(F, Record[Idx++]); 823 mergeRedeclarable(ID, Redecl); 824 825 if (Record[Idx++]) { 826 // Read the definition. 827 ID->allocateDefinitionData(); 828 829 // Set the definition data of the canonical declaration, so other 830 // redeclarations will see it. 831 ID->getCanonicalDecl()->Data = ID->Data; 832 833 ObjCInterfaceDecl::DefinitionData &Data = ID->data(); 834 835 // Read the superclass. 836 Data.SuperClass = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx); 837 Data.SuperClassLoc = ReadSourceLocation(Record, Idx); 838 839 Data.EndLoc = ReadSourceLocation(Record, Idx); 840 Data.HasDesignatedInitializers = Record[Idx++]; 841 842 // Read the directly referenced protocols and their SourceLocations. 843 unsigned NumProtocols = Record[Idx++]; 844 SmallVector<ObjCProtocolDecl *, 16> Protocols; 845 Protocols.reserve(NumProtocols); 846 for (unsigned I = 0; I != NumProtocols; ++I) 847 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); 848 SmallVector<SourceLocation, 16> ProtoLocs; 849 ProtoLocs.reserve(NumProtocols); 850 for (unsigned I = 0; I != NumProtocols; ++I) 851 ProtoLocs.push_back(ReadSourceLocation(Record, Idx)); 852 ID->setProtocolList(Protocols.data(), NumProtocols, ProtoLocs.data(), 853 Reader.getContext()); 854 855 // Read the transitive closure of protocols referenced by this class. 856 NumProtocols = Record[Idx++]; 857 Protocols.clear(); 858 Protocols.reserve(NumProtocols); 859 for (unsigned I = 0; I != NumProtocols; ++I) 860 Protocols.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); 861 ID->data().AllReferencedProtocols.set(Protocols.data(), NumProtocols, 862 Reader.getContext()); 863 864 // We will rebuild this list lazily. 865 ID->setIvarList(nullptr); 866 867 // Note that we have deserialized a definition. 868 Reader.PendingDefinitions.insert(ID); 869 870 // Note that we've loaded this Objective-C class. 871 Reader.ObjCClassesLoaded.push_back(ID); 872 } else { 873 ID->Data = ID->getCanonicalDecl()->Data; 874 } 875 } 876 877 void ASTDeclReader::VisitObjCIvarDecl(ObjCIvarDecl *IVD) { 878 VisitFieldDecl(IVD); 879 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record[Idx++]); 880 // This field will be built lazily. 881 IVD->setNextIvar(nullptr); 882 bool synth = Record[Idx++]; 883 IVD->setSynthesize(synth); 884 } 885 886 void ASTDeclReader::VisitObjCProtocolDecl(ObjCProtocolDecl *PD) { 887 RedeclarableResult Redecl = VisitRedeclarable(PD); 888 VisitObjCContainerDecl(PD); 889 mergeRedeclarable(PD, Redecl); 890 891 if (Record[Idx++]) { 892 // Read the definition. 893 PD->allocateDefinitionData(); 894 895 // Set the definition data of the canonical declaration, so other 896 // redeclarations will see it. 897 PD->getCanonicalDecl()->Data = PD->Data; 898 899 unsigned NumProtoRefs = Record[Idx++]; 900 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; 901 ProtoRefs.reserve(NumProtoRefs); 902 for (unsigned I = 0; I != NumProtoRefs; ++I) 903 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); 904 SmallVector<SourceLocation, 16> ProtoLocs; 905 ProtoLocs.reserve(NumProtoRefs); 906 for (unsigned I = 0; I != NumProtoRefs; ++I) 907 ProtoLocs.push_back(ReadSourceLocation(Record, Idx)); 908 PD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(), 909 Reader.getContext()); 910 911 // Note that we have deserialized a definition. 912 Reader.PendingDefinitions.insert(PD); 913 } else { 914 PD->Data = PD->getCanonicalDecl()->Data; 915 } 916 } 917 918 void ASTDeclReader::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *FD) { 919 VisitFieldDecl(FD); 920 } 921 922 void ASTDeclReader::VisitObjCCategoryDecl(ObjCCategoryDecl *CD) { 923 VisitObjCContainerDecl(CD); 924 CD->setCategoryNameLoc(ReadSourceLocation(Record, Idx)); 925 CD->setIvarLBraceLoc(ReadSourceLocation(Record, Idx)); 926 CD->setIvarRBraceLoc(ReadSourceLocation(Record, Idx)); 927 928 // Note that this category has been deserialized. We do this before 929 // deserializing the interface declaration, so that it will consider this 930 /// category. 931 Reader.CategoriesDeserialized.insert(CD); 932 933 CD->ClassInterface = ReadDeclAs<ObjCInterfaceDecl>(Record, Idx); 934 unsigned NumProtoRefs = Record[Idx++]; 935 SmallVector<ObjCProtocolDecl *, 16> ProtoRefs; 936 ProtoRefs.reserve(NumProtoRefs); 937 for (unsigned I = 0; I != NumProtoRefs; ++I) 938 ProtoRefs.push_back(ReadDeclAs<ObjCProtocolDecl>(Record, Idx)); 939 SmallVector<SourceLocation, 16> ProtoLocs; 940 ProtoLocs.reserve(NumProtoRefs); 941 for (unsigned I = 0; I != NumProtoRefs; ++I) 942 ProtoLocs.push_back(ReadSourceLocation(Record, Idx)); 943 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(), 944 Reader.getContext()); 945 } 946 947 void ASTDeclReader::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *CAD) { 948 VisitNamedDecl(CAD); 949 CAD->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx)); 950 } 951 952 void ASTDeclReader::VisitObjCPropertyDecl(ObjCPropertyDecl *D) { 953 VisitNamedDecl(D); 954 D->setAtLoc(ReadSourceLocation(Record, Idx)); 955 D->setLParenLoc(ReadSourceLocation(Record, Idx)); 956 D->setType(GetTypeSourceInfo(Record, Idx)); 957 // FIXME: stable encoding 958 D->setPropertyAttributes( 959 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]); 960 D->setPropertyAttributesAsWritten( 961 (ObjCPropertyDecl::PropertyAttributeKind)Record[Idx++]); 962 // FIXME: stable encoding 963 D->setPropertyImplementation( 964 (ObjCPropertyDecl::PropertyControl)Record[Idx++]); 965 D->setGetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector()); 966 D->setSetterName(Reader.ReadDeclarationName(F,Record, Idx).getObjCSelector()); 967 D->setGetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx)); 968 D->setSetterMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx)); 969 D->setPropertyIvarDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx)); 970 } 971 972 void ASTDeclReader::VisitObjCImplDecl(ObjCImplDecl *D) { 973 VisitObjCContainerDecl(D); 974 D->setClassInterface(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx)); 975 } 976 977 void ASTDeclReader::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) { 978 VisitObjCImplDecl(D); 979 D->setIdentifier(Reader.GetIdentifierInfo(F, Record, Idx)); 980 D->CategoryNameLoc = ReadSourceLocation(Record, Idx); 981 } 982 983 void ASTDeclReader::VisitObjCImplementationDecl(ObjCImplementationDecl *D) { 984 VisitObjCImplDecl(D); 985 D->setSuperClass(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx)); 986 D->SuperLoc = ReadSourceLocation(Record, Idx); 987 D->setIvarLBraceLoc(ReadSourceLocation(Record, Idx)); 988 D->setIvarRBraceLoc(ReadSourceLocation(Record, Idx)); 989 D->setHasNonZeroConstructors(Record[Idx++]); 990 D->setHasDestructors(Record[Idx++]); 991 std::tie(D->IvarInitializers, D->NumIvarInitializers) = 992 Reader.ReadCXXCtorInitializers(F, Record, Idx); 993 } 994 995 996 void ASTDeclReader::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) { 997 VisitDecl(D); 998 D->setAtLoc(ReadSourceLocation(Record, Idx)); 999 D->setPropertyDecl(ReadDeclAs<ObjCPropertyDecl>(Record, Idx)); 1000 D->PropertyIvarDecl = ReadDeclAs<ObjCIvarDecl>(Record, Idx); 1001 D->IvarLoc = ReadSourceLocation(Record, Idx); 1002 D->setGetterCXXConstructor(Reader.ReadExpr(F)); 1003 D->setSetterCXXAssignment(Reader.ReadExpr(F)); 1004 } 1005 1006 void ASTDeclReader::VisitFieldDecl(FieldDecl *FD) { 1007 VisitDeclaratorDecl(FD); 1008 FD->Mutable = Record[Idx++]; 1009 if (int BitWidthOrInitializer = Record[Idx++]) { 1010 FD->InitStorage.setInt( 1011 static_cast<FieldDecl::InitStorageKind>(BitWidthOrInitializer - 1)); 1012 if (FD->InitStorage.getInt() == FieldDecl::ISK_CapturedVLAType) { 1013 // Read captured variable length array. 1014 FD->InitStorage.setPointer( 1015 Reader.readType(F, Record, Idx).getAsOpaquePtr()); 1016 } else { 1017 FD->InitStorage.setPointer(Reader.ReadExpr(F)); 1018 } 1019 } 1020 if (!FD->getDeclName()) { 1021 if (FieldDecl *Tmpl = ReadDeclAs<FieldDecl>(Record, Idx)) 1022 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl); 1023 } 1024 mergeMergeable(FD); 1025 } 1026 1027 void ASTDeclReader::VisitMSPropertyDecl(MSPropertyDecl *PD) { 1028 VisitDeclaratorDecl(PD); 1029 PD->GetterId = Reader.GetIdentifierInfo(F, Record, Idx); 1030 PD->SetterId = Reader.GetIdentifierInfo(F, Record, Idx); 1031 } 1032 1033 void ASTDeclReader::VisitIndirectFieldDecl(IndirectFieldDecl *FD) { 1034 VisitValueDecl(FD); 1035 1036 FD->ChainingSize = Record[Idx++]; 1037 assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2"); 1038 FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize]; 1039 1040 for (unsigned I = 0; I != FD->ChainingSize; ++I) 1041 FD->Chaining[I] = ReadDeclAs<NamedDecl>(Record, Idx); 1042 } 1043 1044 ASTDeclReader::RedeclarableResult ASTDeclReader::VisitVarDeclImpl(VarDecl *VD) { 1045 RedeclarableResult Redecl = VisitRedeclarable(VD); 1046 VisitDeclaratorDecl(VD); 1047 1048 VD->VarDeclBits.SClass = (StorageClass)Record[Idx++]; 1049 VD->VarDeclBits.TSCSpec = Record[Idx++]; 1050 VD->VarDeclBits.InitStyle = Record[Idx++]; 1051 VD->VarDeclBits.ExceptionVar = Record[Idx++]; 1052 VD->VarDeclBits.NRVOVariable = Record[Idx++]; 1053 VD->VarDeclBits.CXXForRangeDecl = Record[Idx++]; 1054 VD->VarDeclBits.ARCPseudoStrong = Record[Idx++]; 1055 VD->VarDeclBits.IsConstexpr = Record[Idx++]; 1056 VD->VarDeclBits.IsInitCapture = Record[Idx++]; 1057 VD->VarDeclBits.PreviousDeclInSameBlockScope = Record[Idx++]; 1058 Linkage VarLinkage = Linkage(Record[Idx++]); 1059 VD->setCachedLinkage(VarLinkage); 1060 1061 // Reconstruct the one piece of the IdentifierNamespace that we need. 1062 if (VD->getStorageClass() == SC_Extern && VarLinkage != NoLinkage && 1063 VD->getLexicalDeclContext()->isFunctionOrMethod()) 1064 VD->setLocalExternDecl(); 1065 1066 if (uint64_t Val = Record[Idx++]) { 1067 VD->setInit(Reader.ReadExpr(F)); 1068 if (Val > 1) { 1069 EvaluatedStmt *Eval = VD->ensureEvaluatedStmt(); 1070 Eval->CheckedICE = true; 1071 Eval->IsICE = Val == 3; 1072 } 1073 } 1074 1075 enum VarKind { 1076 VarNotTemplate = 0, VarTemplate, StaticDataMemberSpecialization 1077 }; 1078 switch ((VarKind)Record[Idx++]) { 1079 case VarNotTemplate: 1080 // Only true variables (not parameters or implicit parameters) can be merged 1081 if (VD->getKind() != Decl::ParmVar && VD->getKind() != Decl::ImplicitParam && 1082 !isa<VarTemplateSpecializationDecl>(VD)) 1083 mergeRedeclarable(VD, Redecl); 1084 break; 1085 case VarTemplate: 1086 // Merged when we merge the template. 1087 VD->setDescribedVarTemplate(ReadDeclAs<VarTemplateDecl>(Record, Idx)); 1088 break; 1089 case StaticDataMemberSpecialization: { // HasMemberSpecializationInfo. 1090 VarDecl *Tmpl = ReadDeclAs<VarDecl>(Record, Idx); 1091 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++]; 1092 SourceLocation POI = ReadSourceLocation(Record, Idx); 1093 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI); 1094 mergeRedeclarable(VD, Redecl); 1095 break; 1096 } 1097 } 1098 1099 return Redecl; 1100 } 1101 1102 void ASTDeclReader::VisitImplicitParamDecl(ImplicitParamDecl *PD) { 1103 VisitVarDecl(PD); 1104 } 1105 1106 void ASTDeclReader::VisitParmVarDecl(ParmVarDecl *PD) { 1107 VisitVarDecl(PD); 1108 unsigned isObjCMethodParam = Record[Idx++]; 1109 unsigned scopeDepth = Record[Idx++]; 1110 unsigned scopeIndex = Record[Idx++]; 1111 unsigned declQualifier = Record[Idx++]; 1112 if (isObjCMethodParam) { 1113 assert(scopeDepth == 0); 1114 PD->setObjCMethodScopeInfo(scopeIndex); 1115 PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier; 1116 } else { 1117 PD->setScopeInfo(scopeDepth, scopeIndex); 1118 } 1119 PD->ParmVarDeclBits.IsKNRPromoted = Record[Idx++]; 1120 PD->ParmVarDeclBits.HasInheritedDefaultArg = Record[Idx++]; 1121 if (Record[Idx++]) // hasUninstantiatedDefaultArg. 1122 PD->setUninstantiatedDefaultArg(Reader.ReadExpr(F)); 1123 1124 // FIXME: If this is a redeclaration of a function from another module, handle 1125 // inheritance of default arguments. 1126 } 1127 1128 void ASTDeclReader::VisitFileScopeAsmDecl(FileScopeAsmDecl *AD) { 1129 VisitDecl(AD); 1130 AD->setAsmString(cast<StringLiteral>(Reader.ReadExpr(F))); 1131 AD->setRParenLoc(ReadSourceLocation(Record, Idx)); 1132 } 1133 1134 void ASTDeclReader::VisitBlockDecl(BlockDecl *BD) { 1135 VisitDecl(BD); 1136 BD->setBody(cast_or_null<CompoundStmt>(Reader.ReadStmt(F))); 1137 BD->setSignatureAsWritten(GetTypeSourceInfo(Record, Idx)); 1138 unsigned NumParams = Record[Idx++]; 1139 SmallVector<ParmVarDecl *, 16> Params; 1140 Params.reserve(NumParams); 1141 for (unsigned I = 0; I != NumParams; ++I) 1142 Params.push_back(ReadDeclAs<ParmVarDecl>(Record, Idx)); 1143 BD->setParams(Params); 1144 1145 BD->setIsVariadic(Record[Idx++]); 1146 BD->setBlockMissingReturnType(Record[Idx++]); 1147 BD->setIsConversionFromLambda(Record[Idx++]); 1148 1149 bool capturesCXXThis = Record[Idx++]; 1150 unsigned numCaptures = Record[Idx++]; 1151 SmallVector<BlockDecl::Capture, 16> captures; 1152 captures.reserve(numCaptures); 1153 for (unsigned i = 0; i != numCaptures; ++i) { 1154 VarDecl *decl = ReadDeclAs<VarDecl>(Record, Idx); 1155 unsigned flags = Record[Idx++]; 1156 bool byRef = (flags & 1); 1157 bool nested = (flags & 2); 1158 Expr *copyExpr = ((flags & 4) ? Reader.ReadExpr(F) : nullptr); 1159 1160 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr)); 1161 } 1162 BD->setCaptures(Reader.getContext(), captures.begin(), 1163 captures.end(), capturesCXXThis); 1164 } 1165 1166 void ASTDeclReader::VisitCapturedDecl(CapturedDecl *CD) { 1167 VisitDecl(CD); 1168 unsigned ContextParamPos = Record[Idx++]; 1169 CD->setNothrow(Record[Idx++] != 0); 1170 // Body is set by VisitCapturedStmt. 1171 for (unsigned I = 0; I < CD->NumParams; ++I) { 1172 if (I != ContextParamPos) 1173 CD->setParam(I, ReadDeclAs<ImplicitParamDecl>(Record, Idx)); 1174 else 1175 CD->setContextParam(I, ReadDeclAs<ImplicitParamDecl>(Record, Idx)); 1176 } 1177 } 1178 1179 void ASTDeclReader::VisitLinkageSpecDecl(LinkageSpecDecl *D) { 1180 VisitDecl(D); 1181 D->setLanguage((LinkageSpecDecl::LanguageIDs)Record[Idx++]); 1182 D->setExternLoc(ReadSourceLocation(Record, Idx)); 1183 D->setRBraceLoc(ReadSourceLocation(Record, Idx)); 1184 } 1185 1186 void ASTDeclReader::VisitLabelDecl(LabelDecl *D) { 1187 VisitNamedDecl(D); 1188 D->setLocStart(ReadSourceLocation(Record, Idx)); 1189 } 1190 1191 1192 void ASTDeclReader::VisitNamespaceDecl(NamespaceDecl *D) { 1193 RedeclarableResult Redecl = VisitRedeclarable(D); 1194 VisitNamedDecl(D); 1195 D->setInline(Record[Idx++]); 1196 D->LocStart = ReadSourceLocation(Record, Idx); 1197 D->RBraceLoc = ReadSourceLocation(Record, Idx); 1198 1199 if (Redecl.getFirstID() == ThisDeclID) { 1200 // Each module has its own anonymous namespace, which is disjoint from 1201 // any other module's anonymous namespaces, so don't attach the anonymous 1202 // namespace at all. 1203 NamespaceDecl *Anon = ReadDeclAs<NamespaceDecl>(Record, Idx); 1204 if (F.Kind != MK_ImplicitModule && F.Kind != MK_ExplicitModule) 1205 D->setAnonymousNamespace(Anon); 1206 } else { 1207 // Link this namespace back to the first declaration, which has already 1208 // been deserialized. 1209 D->AnonOrFirstNamespaceAndInline.setPointer(D->getFirstDecl()); 1210 } 1211 1212 mergeRedeclarable(D, Redecl); 1213 } 1214 1215 void ASTDeclReader::VisitNamespaceAliasDecl(NamespaceAliasDecl *D) { 1216 RedeclarableResult Redecl = VisitRedeclarable(D); 1217 VisitNamedDecl(D); 1218 D->NamespaceLoc = ReadSourceLocation(Record, Idx); 1219 D->IdentLoc = ReadSourceLocation(Record, Idx); 1220 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx); 1221 D->Namespace = ReadDeclAs<NamedDecl>(Record, Idx); 1222 mergeRedeclarable(D, Redecl); 1223 } 1224 1225 void ASTDeclReader::VisitUsingDecl(UsingDecl *D) { 1226 VisitNamedDecl(D); 1227 D->setUsingLoc(ReadSourceLocation(Record, Idx)); 1228 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx); 1229 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx); 1230 D->FirstUsingShadow.setPointer(ReadDeclAs<UsingShadowDecl>(Record, Idx)); 1231 D->setTypename(Record[Idx++]); 1232 if (NamedDecl *Pattern = ReadDeclAs<NamedDecl>(Record, Idx)) 1233 Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern); 1234 mergeMergeable(D); 1235 } 1236 1237 void ASTDeclReader::VisitUsingShadowDecl(UsingShadowDecl *D) { 1238 RedeclarableResult Redecl = VisitRedeclarable(D); 1239 VisitNamedDecl(D); 1240 D->setTargetDecl(ReadDeclAs<NamedDecl>(Record, Idx)); 1241 D->UsingOrNextShadow = ReadDeclAs<NamedDecl>(Record, Idx); 1242 UsingShadowDecl *Pattern = ReadDeclAs<UsingShadowDecl>(Record, Idx); 1243 if (Pattern) 1244 Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern); 1245 mergeRedeclarable(D, Redecl); 1246 } 1247 1248 void ASTDeclReader::VisitUsingDirectiveDecl(UsingDirectiveDecl *D) { 1249 VisitNamedDecl(D); 1250 D->UsingLoc = ReadSourceLocation(Record, Idx); 1251 D->NamespaceLoc = ReadSourceLocation(Record, Idx); 1252 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx); 1253 D->NominatedNamespace = ReadDeclAs<NamedDecl>(Record, Idx); 1254 D->CommonAncestor = ReadDeclAs<DeclContext>(Record, Idx); 1255 } 1256 1257 void ASTDeclReader::VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D) { 1258 VisitValueDecl(D); 1259 D->setUsingLoc(ReadSourceLocation(Record, Idx)); 1260 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx); 1261 ReadDeclarationNameLoc(D->DNLoc, D->getDeclName(), Record, Idx); 1262 mergeMergeable(D); 1263 } 1264 1265 void ASTDeclReader::VisitUnresolvedUsingTypenameDecl( 1266 UnresolvedUsingTypenameDecl *D) { 1267 VisitTypeDecl(D); 1268 D->TypenameLocation = ReadSourceLocation(Record, Idx); 1269 D->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx); 1270 mergeMergeable(D); 1271 } 1272 1273 void ASTDeclReader::ReadCXXDefinitionData( 1274 struct CXXRecordDecl::DefinitionData &Data, 1275 const RecordData &Record, unsigned &Idx) { 1276 // Note: the caller has deserialized the IsLambda bit already. 1277 Data.UserDeclaredConstructor = Record[Idx++]; 1278 Data.UserDeclaredSpecialMembers = Record[Idx++]; 1279 Data.Aggregate = Record[Idx++]; 1280 Data.PlainOldData = Record[Idx++]; 1281 Data.Empty = Record[Idx++]; 1282 Data.Polymorphic = Record[Idx++]; 1283 Data.Abstract = Record[Idx++]; 1284 Data.IsStandardLayout = Record[Idx++]; 1285 Data.HasNoNonEmptyBases = Record[Idx++]; 1286 Data.HasPrivateFields = Record[Idx++]; 1287 Data.HasProtectedFields = Record[Idx++]; 1288 Data.HasPublicFields = Record[Idx++]; 1289 Data.HasMutableFields = Record[Idx++]; 1290 Data.HasVariantMembers = Record[Idx++]; 1291 Data.HasOnlyCMembers = Record[Idx++]; 1292 Data.HasInClassInitializer = Record[Idx++]; 1293 Data.HasUninitializedReferenceMember = Record[Idx++]; 1294 Data.NeedOverloadResolutionForMoveConstructor = Record[Idx++]; 1295 Data.NeedOverloadResolutionForMoveAssignment = Record[Idx++]; 1296 Data.NeedOverloadResolutionForDestructor = Record[Idx++]; 1297 Data.DefaultedMoveConstructorIsDeleted = Record[Idx++]; 1298 Data.DefaultedMoveAssignmentIsDeleted = Record[Idx++]; 1299 Data.DefaultedDestructorIsDeleted = Record[Idx++]; 1300 Data.HasTrivialSpecialMembers = Record[Idx++]; 1301 Data.DeclaredNonTrivialSpecialMembers = Record[Idx++]; 1302 Data.HasIrrelevantDestructor = Record[Idx++]; 1303 Data.HasConstexprNonCopyMoveConstructor = Record[Idx++]; 1304 Data.DefaultedDefaultConstructorIsConstexpr = Record[Idx++]; 1305 Data.HasConstexprDefaultConstructor = Record[Idx++]; 1306 Data.HasNonLiteralTypeFieldsOrBases = Record[Idx++]; 1307 Data.ComputedVisibleConversions = Record[Idx++]; 1308 Data.UserProvidedDefaultConstructor = Record[Idx++]; 1309 Data.DeclaredSpecialMembers = Record[Idx++]; 1310 Data.ImplicitCopyConstructorHasConstParam = Record[Idx++]; 1311 Data.ImplicitCopyAssignmentHasConstParam = Record[Idx++]; 1312 Data.HasDeclaredCopyConstructorWithConstParam = Record[Idx++]; 1313 Data.HasDeclaredCopyAssignmentWithConstParam = Record[Idx++]; 1314 1315 Data.NumBases = Record[Idx++]; 1316 if (Data.NumBases) 1317 Data.Bases = Reader.readCXXBaseSpecifiers(F, Record, Idx); 1318 Data.NumVBases = Record[Idx++]; 1319 if (Data.NumVBases) 1320 Data.VBases = Reader.readCXXBaseSpecifiers(F, Record, Idx); 1321 1322 Reader.ReadUnresolvedSet(F, Data.Conversions, Record, Idx); 1323 Reader.ReadUnresolvedSet(F, Data.VisibleConversions, Record, Idx); 1324 assert(Data.Definition && "Data.Definition should be already set!"); 1325 Data.FirstFriend = ReadDeclID(Record, Idx); 1326 1327 if (Data.IsLambda) { 1328 typedef LambdaCapture Capture; 1329 CXXRecordDecl::LambdaDefinitionData &Lambda 1330 = static_cast<CXXRecordDecl::LambdaDefinitionData &>(Data); 1331 Lambda.Dependent = Record[Idx++]; 1332 Lambda.IsGenericLambda = Record[Idx++]; 1333 Lambda.CaptureDefault = Record[Idx++]; 1334 Lambda.NumCaptures = Record[Idx++]; 1335 Lambda.NumExplicitCaptures = Record[Idx++]; 1336 Lambda.ManglingNumber = Record[Idx++]; 1337 Lambda.ContextDecl = ReadDecl(Record, Idx); 1338 Lambda.Captures 1339 = (Capture*)Reader.Context.Allocate(sizeof(Capture)*Lambda.NumCaptures); 1340 Capture *ToCapture = Lambda.Captures; 1341 Lambda.MethodTyInfo = GetTypeSourceInfo(Record, Idx); 1342 for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) { 1343 SourceLocation Loc = ReadSourceLocation(Record, Idx); 1344 bool IsImplicit = Record[Idx++]; 1345 LambdaCaptureKind Kind = static_cast<LambdaCaptureKind>(Record[Idx++]); 1346 switch (Kind) { 1347 case LCK_This: 1348 case LCK_VLAType: 1349 *ToCapture++ = Capture(Loc, IsImplicit, Kind, nullptr,SourceLocation()); 1350 break; 1351 case LCK_ByCopy: 1352 case LCK_ByRef: 1353 VarDecl *Var = ReadDeclAs<VarDecl>(Record, Idx); 1354 SourceLocation EllipsisLoc = ReadSourceLocation(Record, Idx); 1355 *ToCapture++ = Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc); 1356 break; 1357 } 1358 } 1359 } 1360 } 1361 1362 void ASTDeclReader::MergeDefinitionData( 1363 CXXRecordDecl *D, struct CXXRecordDecl::DefinitionData &&MergeDD) { 1364 assert(D->DefinitionData.getNotUpdated() && 1365 "merging class definition into non-definition"); 1366 auto &DD = *D->DefinitionData.getNotUpdated(); 1367 1368 auto PFDI = Reader.PendingFakeDefinitionData.find(&DD); 1369 if (PFDI != Reader.PendingFakeDefinitionData.end() && 1370 PFDI->second == ASTReader::PendingFakeDefinitionKind::Fake) { 1371 // We faked up this definition data because we found a class for which we'd 1372 // not yet loaded the definition. Replace it with the real thing now. 1373 assert(!DD.IsLambda && !MergeDD.IsLambda && "faked up lambda definition?"); 1374 PFDI->second = ASTReader::PendingFakeDefinitionKind::FakeLoaded; 1375 1376 // Don't change which declaration is the definition; that is required 1377 // to be invariant once we select it. 1378 auto *Def = DD.Definition; 1379 DD = std::move(MergeDD); 1380 DD.Definition = Def; 1381 return; 1382 } 1383 1384 // If the new definition has new special members, let the name lookup 1385 // code know that it needs to look in the new definition too. 1386 // 1387 // FIXME: We only need to do this if the merged definition declares members 1388 // that this definition did not declare, or if it defines members that this 1389 // definition did not define. 1390 if (MergeDD.DeclaredSpecialMembers && DD.Definition != MergeDD.Definition) { 1391 Reader.MergedLookups[DD.Definition].push_back(MergeDD.Definition); 1392 DD.Definition->setHasExternalVisibleStorage(); 1393 } 1394 1395 // FIXME: Move this out into a .def file? 1396 // FIXME: Issue a diagnostic on a mismatched MATCH_FIELD, rather than 1397 // asserting; this can happen in the case of an ODR violation. 1398 bool DetectedOdrViolation = false; 1399 #define OR_FIELD(Field) DD.Field |= MergeDD.Field; 1400 #define MATCH_FIELD(Field) \ 1401 DetectedOdrViolation |= DD.Field != MergeDD.Field; \ 1402 OR_FIELD(Field) 1403 MATCH_FIELD(UserDeclaredConstructor) 1404 MATCH_FIELD(UserDeclaredSpecialMembers) 1405 MATCH_FIELD(Aggregate) 1406 MATCH_FIELD(PlainOldData) 1407 MATCH_FIELD(Empty) 1408 MATCH_FIELD(Polymorphic) 1409 MATCH_FIELD(Abstract) 1410 MATCH_FIELD(IsStandardLayout) 1411 MATCH_FIELD(HasNoNonEmptyBases) 1412 MATCH_FIELD(HasPrivateFields) 1413 MATCH_FIELD(HasProtectedFields) 1414 MATCH_FIELD(HasPublicFields) 1415 MATCH_FIELD(HasMutableFields) 1416 MATCH_FIELD(HasVariantMembers) 1417 MATCH_FIELD(HasOnlyCMembers) 1418 MATCH_FIELD(HasInClassInitializer) 1419 MATCH_FIELD(HasUninitializedReferenceMember) 1420 MATCH_FIELD(NeedOverloadResolutionForMoveConstructor) 1421 MATCH_FIELD(NeedOverloadResolutionForMoveAssignment) 1422 MATCH_FIELD(NeedOverloadResolutionForDestructor) 1423 MATCH_FIELD(DefaultedMoveConstructorIsDeleted) 1424 MATCH_FIELD(DefaultedMoveAssignmentIsDeleted) 1425 MATCH_FIELD(DefaultedDestructorIsDeleted) 1426 OR_FIELD(HasTrivialSpecialMembers) 1427 OR_FIELD(DeclaredNonTrivialSpecialMembers) 1428 MATCH_FIELD(HasIrrelevantDestructor) 1429 OR_FIELD(HasConstexprNonCopyMoveConstructor) 1430 MATCH_FIELD(DefaultedDefaultConstructorIsConstexpr) 1431 OR_FIELD(HasConstexprDefaultConstructor) 1432 MATCH_FIELD(HasNonLiteralTypeFieldsOrBases) 1433 // ComputedVisibleConversions is handled below. 1434 MATCH_FIELD(UserProvidedDefaultConstructor) 1435 OR_FIELD(DeclaredSpecialMembers) 1436 MATCH_FIELD(ImplicitCopyConstructorHasConstParam) 1437 MATCH_FIELD(ImplicitCopyAssignmentHasConstParam) 1438 OR_FIELD(HasDeclaredCopyConstructorWithConstParam) 1439 OR_FIELD(HasDeclaredCopyAssignmentWithConstParam) 1440 MATCH_FIELD(IsLambda) 1441 #undef OR_FIELD 1442 #undef MATCH_FIELD 1443 1444 if (DD.NumBases != MergeDD.NumBases || DD.NumVBases != MergeDD.NumVBases) 1445 DetectedOdrViolation = true; 1446 // FIXME: Issue a diagnostic if the base classes don't match when we come 1447 // to lazily load them. 1448 1449 // FIXME: Issue a diagnostic if the list of conversion functions doesn't 1450 // match when we come to lazily load them. 1451 if (MergeDD.ComputedVisibleConversions && !DD.ComputedVisibleConversions) { 1452 DD.VisibleConversions = std::move(MergeDD.VisibleConversions); 1453 DD.ComputedVisibleConversions = true; 1454 } 1455 1456 // FIXME: Issue a diagnostic if FirstFriend doesn't match when we come to 1457 // lazily load it. 1458 1459 if (DD.IsLambda) { 1460 // FIXME: ODR-checking for merging lambdas (this happens, for instance, 1461 // when they occur within the body of a function template specialization). 1462 } 1463 1464 if (DetectedOdrViolation) 1465 Reader.PendingOdrMergeFailures[DD.Definition].push_back(MergeDD.Definition); 1466 } 1467 1468 void ASTDeclReader::ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update) { 1469 struct CXXRecordDecl::DefinitionData *DD; 1470 ASTContext &C = Reader.getContext(); 1471 1472 // Determine whether this is a lambda closure type, so that we can 1473 // allocate the appropriate DefinitionData structure. 1474 bool IsLambda = Record[Idx++]; 1475 if (IsLambda) 1476 DD = new (C) CXXRecordDecl::LambdaDefinitionData(D, nullptr, false, false, 1477 LCD_None); 1478 else 1479 DD = new (C) struct CXXRecordDecl::DefinitionData(D); 1480 1481 ReadCXXDefinitionData(*DD, Record, Idx); 1482 1483 // We might already have a definition for this record. This can happen either 1484 // because we're reading an update record, or because we've already done some 1485 // merging. Either way, just merge into it. 1486 CXXRecordDecl *Canon = D->getCanonicalDecl(); 1487 if (auto *CanonDD = Canon->DefinitionData.getNotUpdated()) { 1488 if (CanonDD->Definition != DD->Definition) 1489 Reader.MergedDeclContexts.insert( 1490 std::make_pair(DD->Definition, CanonDD->Definition)); 1491 MergeDefinitionData(Canon, std::move(*DD)); 1492 D->DefinitionData = Canon->DefinitionData; 1493 return; 1494 } 1495 1496 // Propagate the DefinitionData pointer to the canonical declaration, so 1497 // that all other deserialized declarations will see it. 1498 if (Canon == D) { 1499 D->DefinitionData = DD; 1500 D->IsCompleteDefinition = true; 1501 1502 // If this is an update record, we can have redeclarations already. Make a 1503 // note that we need to propagate the DefinitionData pointer onto them. 1504 if (Update) 1505 Reader.PendingDefinitions.insert(D); 1506 } else if (auto *CanonDD = Canon->DefinitionData.getNotUpdated()) { 1507 // We have already deserialized a definition of this record. This 1508 // definition is no longer really a definition. Note that the pre-existing 1509 // definition is the *real* definition. 1510 Reader.MergedDeclContexts.insert( 1511 std::make_pair(D, CanonDD->Definition)); 1512 D->DefinitionData = Canon->DefinitionData; 1513 D->IsCompleteDefinition = false; 1514 MergeDefinitionData(D, std::move(*DD)); 1515 } else { 1516 Canon->DefinitionData = DD; 1517 D->DefinitionData = Canon->DefinitionData; 1518 D->IsCompleteDefinition = true; 1519 1520 // Note that we have deserialized a definition. Any declarations 1521 // deserialized before this one will be be given the DefinitionData 1522 // pointer at the end. 1523 Reader.PendingDefinitions.insert(D); 1524 } 1525 } 1526 1527 ASTDeclReader::RedeclarableResult 1528 ASTDeclReader::VisitCXXRecordDeclImpl(CXXRecordDecl *D) { 1529 RedeclarableResult Redecl = VisitRecordDeclImpl(D); 1530 1531 ASTContext &C = Reader.getContext(); 1532 1533 enum CXXRecKind { 1534 CXXRecNotTemplate = 0, CXXRecTemplate, CXXRecMemberSpecialization 1535 }; 1536 switch ((CXXRecKind)Record[Idx++]) { 1537 case CXXRecNotTemplate: 1538 // Merged when we merge the folding set entry in the primary template. 1539 if (!isa<ClassTemplateSpecializationDecl>(D)) 1540 mergeRedeclarable(D, Redecl); 1541 break; 1542 case CXXRecTemplate: { 1543 // Merged when we merge the template. 1544 ClassTemplateDecl *Template = ReadDeclAs<ClassTemplateDecl>(Record, Idx); 1545 D->TemplateOrInstantiation = Template; 1546 if (!Template->getTemplatedDecl()) { 1547 // We've not actually loaded the ClassTemplateDecl yet, because we're 1548 // currently being loaded as its pattern. Rely on it to set up our 1549 // TypeForDecl (see VisitClassTemplateDecl). 1550 // 1551 // Beware: we do not yet know our canonical declaration, and may still 1552 // get merged once the surrounding class template has got off the ground. 1553 TypeIDForTypeDecl = 0; 1554 } 1555 break; 1556 } 1557 case CXXRecMemberSpecialization: { 1558 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(Record, Idx); 1559 TemplateSpecializationKind TSK = (TemplateSpecializationKind)Record[Idx++]; 1560 SourceLocation POI = ReadSourceLocation(Record, Idx); 1561 MemberSpecializationInfo *MSI = new (C) MemberSpecializationInfo(RD, TSK); 1562 MSI->setPointOfInstantiation(POI); 1563 D->TemplateOrInstantiation = MSI; 1564 mergeRedeclarable(D, Redecl); 1565 break; 1566 } 1567 } 1568 1569 bool WasDefinition = Record[Idx++]; 1570 if (WasDefinition) 1571 ReadCXXRecordDefinition(D, /*Update*/false); 1572 else 1573 // Propagate DefinitionData pointer from the canonical declaration. 1574 D->DefinitionData = D->getCanonicalDecl()->DefinitionData; 1575 1576 // Lazily load the key function to avoid deserializing every method so we can 1577 // compute it. 1578 if (WasDefinition) { 1579 DeclID KeyFn = ReadDeclID(Record, Idx); 1580 if (KeyFn && D->IsCompleteDefinition) 1581 // FIXME: This is wrong for the ARM ABI, where some other module may have 1582 // made this function no longer be a key function. We need an update 1583 // record or similar for that case. 1584 C.KeyFunctions[D] = KeyFn; 1585 } 1586 1587 return Redecl; 1588 } 1589 1590 void ASTDeclReader::VisitCXXMethodDecl(CXXMethodDecl *D) { 1591 VisitFunctionDecl(D); 1592 1593 unsigned NumOverridenMethods = Record[Idx++]; 1594 if (D->isCanonicalDecl()) { 1595 while (NumOverridenMethods--) { 1596 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod, 1597 // MD may be initializing. 1598 if (CXXMethodDecl *MD = ReadDeclAs<CXXMethodDecl>(Record, Idx)) 1599 Reader.getContext().addOverriddenMethod(D, MD->getCanonicalDecl()); 1600 } 1601 } else { 1602 // We don't care about which declarations this used to override; we get 1603 // the relevant information from the canonical declaration. 1604 Idx += NumOverridenMethods; 1605 } 1606 } 1607 1608 void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) { 1609 VisitCXXMethodDecl(D); 1610 1611 if (auto *CD = ReadDeclAs<CXXConstructorDecl>(Record, Idx)) 1612 D->setInheritedConstructor(CD); 1613 D->IsExplicitSpecified = Record[Idx++]; 1614 // FIXME: We should defer loading this until we need the constructor's body. 1615 std::tie(D->CtorInitializers, D->NumCtorInitializers) = 1616 Reader.ReadCXXCtorInitializers(F, Record, Idx); 1617 } 1618 1619 void ASTDeclReader::VisitCXXDestructorDecl(CXXDestructorDecl *D) { 1620 VisitCXXMethodDecl(D); 1621 1622 D->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx); 1623 } 1624 1625 void ASTDeclReader::VisitCXXConversionDecl(CXXConversionDecl *D) { 1626 VisitCXXMethodDecl(D); 1627 D->IsExplicitSpecified = Record[Idx++]; 1628 } 1629 1630 void ASTDeclReader::VisitImportDecl(ImportDecl *D) { 1631 VisitDecl(D); 1632 D->ImportedAndComplete.setPointer(readModule(Record, Idx)); 1633 D->ImportedAndComplete.setInt(Record[Idx++]); 1634 SourceLocation *StoredLocs = reinterpret_cast<SourceLocation *>(D + 1); 1635 for (unsigned I = 0, N = Record.back(); I != N; ++I) 1636 StoredLocs[I] = ReadSourceLocation(Record, Idx); 1637 ++Idx; // The number of stored source locations. 1638 } 1639 1640 void ASTDeclReader::VisitAccessSpecDecl(AccessSpecDecl *D) { 1641 VisitDecl(D); 1642 D->setColonLoc(ReadSourceLocation(Record, Idx)); 1643 } 1644 1645 void ASTDeclReader::VisitFriendDecl(FriendDecl *D) { 1646 VisitDecl(D); 1647 if (Record[Idx++]) // hasFriendDecl 1648 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx); 1649 else 1650 D->Friend = GetTypeSourceInfo(Record, Idx); 1651 for (unsigned i = 0; i != D->NumTPLists; ++i) 1652 D->getTPLists()[i] = Reader.ReadTemplateParameterList(F, Record, Idx); 1653 D->NextFriend = ReadDeclID(Record, Idx); 1654 D->UnsupportedFriend = (Record[Idx++] != 0); 1655 D->FriendLoc = ReadSourceLocation(Record, Idx); 1656 } 1657 1658 void ASTDeclReader::VisitFriendTemplateDecl(FriendTemplateDecl *D) { 1659 VisitDecl(D); 1660 unsigned NumParams = Record[Idx++]; 1661 D->NumParams = NumParams; 1662 D->Params = new TemplateParameterList*[NumParams]; 1663 for (unsigned i = 0; i != NumParams; ++i) 1664 D->Params[i] = Reader.ReadTemplateParameterList(F, Record, Idx); 1665 if (Record[Idx++]) // HasFriendDecl 1666 D->Friend = ReadDeclAs<NamedDecl>(Record, Idx); 1667 else 1668 D->Friend = GetTypeSourceInfo(Record, Idx); 1669 D->FriendLoc = ReadSourceLocation(Record, Idx); 1670 } 1671 1672 DeclID ASTDeclReader::VisitTemplateDecl(TemplateDecl *D) { 1673 VisitNamedDecl(D); 1674 1675 DeclID PatternID = ReadDeclID(Record, Idx); 1676 NamedDecl *TemplatedDecl = cast_or_null<NamedDecl>(Reader.GetDecl(PatternID)); 1677 TemplateParameterList* TemplateParams 1678 = Reader.ReadTemplateParameterList(F, Record, Idx); 1679 D->init(TemplatedDecl, TemplateParams); 1680 1681 // FIXME: If this is a redeclaration of a template from another module, handle 1682 // inheritance of default template arguments. 1683 1684 return PatternID; 1685 } 1686 1687 ASTDeclReader::RedeclarableResult 1688 ASTDeclReader::VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D) { 1689 RedeclarableResult Redecl = VisitRedeclarable(D); 1690 1691 // Make sure we've allocated the Common pointer first. We do this before 1692 // VisitTemplateDecl so that getCommonPtr() can be used during initialization. 1693 RedeclarableTemplateDecl *CanonD = D->getCanonicalDecl(); 1694 if (!CanonD->Common) { 1695 CanonD->Common = CanonD->newCommon(Reader.getContext()); 1696 Reader.PendingDefinitions.insert(CanonD); 1697 } 1698 D->Common = CanonD->Common; 1699 1700 // If this is the first declaration of the template, fill in the information 1701 // for the 'common' pointer. 1702 if (ThisDeclID == Redecl.getFirstID()) { 1703 if (RedeclarableTemplateDecl *RTD 1704 = ReadDeclAs<RedeclarableTemplateDecl>(Record, Idx)) { 1705 assert(RTD->getKind() == D->getKind() && 1706 "InstantiatedFromMemberTemplate kind mismatch"); 1707 D->setInstantiatedFromMemberTemplate(RTD); 1708 if (Record[Idx++]) 1709 D->setMemberSpecialization(); 1710 } 1711 } 1712 1713 DeclID PatternID = VisitTemplateDecl(D); 1714 D->IdentifierNamespace = Record[Idx++]; 1715 1716 mergeRedeclarable(D, Redecl, PatternID); 1717 1718 // If we merged the template with a prior declaration chain, merge the common 1719 // pointer. 1720 // FIXME: Actually merge here, don't just overwrite. 1721 D->Common = D->getCanonicalDecl()->Common; 1722 1723 return Redecl; 1724 } 1725 1726 void ASTDeclReader::VisitClassTemplateDecl(ClassTemplateDecl *D) { 1727 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D); 1728 1729 if (ThisDeclID == Redecl.getFirstID()) { 1730 // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of 1731 // the specializations. 1732 SmallVector<serialization::DeclID, 2> SpecIDs; 1733 SpecIDs.push_back(0); 1734 1735 // Specializations. 1736 unsigned Size = Record[Idx++]; 1737 SpecIDs[0] += Size; 1738 for (unsigned I = 0; I != Size; ++I) 1739 SpecIDs.push_back(ReadDeclID(Record, Idx)); 1740 1741 // Partial specializations. 1742 Size = Record[Idx++]; 1743 SpecIDs[0] += Size; 1744 for (unsigned I = 0; I != Size; ++I) 1745 SpecIDs.push_back(ReadDeclID(Record, Idx)); 1746 1747 ClassTemplateDecl::Common *CommonPtr = D->getCommonPtr(); 1748 if (SpecIDs[0]) { 1749 typedef serialization::DeclID DeclID; 1750 1751 // FIXME: Append specializations! 1752 CommonPtr->LazySpecializations 1753 = new (Reader.getContext()) DeclID [SpecIDs.size()]; 1754 memcpy(CommonPtr->LazySpecializations, SpecIDs.data(), 1755 SpecIDs.size() * sizeof(DeclID)); 1756 } 1757 } 1758 1759 if (D->getTemplatedDecl()->TemplateOrInstantiation) { 1760 // We were loaded before our templated declaration was. We've not set up 1761 // its corresponding type yet (see VisitCXXRecordDeclImpl), so reconstruct 1762 // it now. 1763 Reader.Context.getInjectedClassNameType( 1764 D->getTemplatedDecl(), D->getInjectedClassNameSpecialization()); 1765 } 1766 } 1767 1768 /// TODO: Unify with ClassTemplateDecl version? 1769 /// May require unifying ClassTemplateDecl and 1770 /// VarTemplateDecl beyond TemplateDecl... 1771 void ASTDeclReader::VisitVarTemplateDecl(VarTemplateDecl *D) { 1772 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D); 1773 1774 if (ThisDeclID == Redecl.getFirstID()) { 1775 // This VarTemplateDecl owns a CommonPtr; read it to keep track of all of 1776 // the specializations. 1777 SmallVector<serialization::DeclID, 2> SpecIDs; 1778 SpecIDs.push_back(0); 1779 1780 // Specializations. 1781 unsigned Size = Record[Idx++]; 1782 SpecIDs[0] += Size; 1783 for (unsigned I = 0; I != Size; ++I) 1784 SpecIDs.push_back(ReadDeclID(Record, Idx)); 1785 1786 // Partial specializations. 1787 Size = Record[Idx++]; 1788 SpecIDs[0] += Size; 1789 for (unsigned I = 0; I != Size; ++I) 1790 SpecIDs.push_back(ReadDeclID(Record, Idx)); 1791 1792 VarTemplateDecl::Common *CommonPtr = D->getCommonPtr(); 1793 if (SpecIDs[0]) { 1794 typedef serialization::DeclID DeclID; 1795 1796 // FIXME: Append specializations! 1797 CommonPtr->LazySpecializations = 1798 new (Reader.getContext()) DeclID[SpecIDs.size()]; 1799 memcpy(CommonPtr->LazySpecializations, SpecIDs.data(), 1800 SpecIDs.size() * sizeof(DeclID)); 1801 } 1802 } 1803 } 1804 1805 ASTDeclReader::RedeclarableResult 1806 ASTDeclReader::VisitClassTemplateSpecializationDeclImpl( 1807 ClassTemplateSpecializationDecl *D) { 1808 RedeclarableResult Redecl = VisitCXXRecordDeclImpl(D); 1809 1810 ASTContext &C = Reader.getContext(); 1811 if (Decl *InstD = ReadDecl(Record, Idx)) { 1812 if (ClassTemplateDecl *CTD = dyn_cast<ClassTemplateDecl>(InstD)) { 1813 D->SpecializedTemplate = CTD; 1814 } else { 1815 SmallVector<TemplateArgument, 8> TemplArgs; 1816 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 1817 TemplateArgumentList *ArgList 1818 = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), 1819 TemplArgs.size()); 1820 ClassTemplateSpecializationDecl::SpecializedPartialSpecialization *PS 1821 = new (C) ClassTemplateSpecializationDecl:: 1822 SpecializedPartialSpecialization(); 1823 PS->PartialSpecialization 1824 = cast<ClassTemplatePartialSpecializationDecl>(InstD); 1825 PS->TemplateArgs = ArgList; 1826 D->SpecializedTemplate = PS; 1827 } 1828 } 1829 1830 SmallVector<TemplateArgument, 8> TemplArgs; 1831 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 1832 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs.data(), 1833 TemplArgs.size()); 1834 D->PointOfInstantiation = ReadSourceLocation(Record, Idx); 1835 D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++]; 1836 1837 bool writtenAsCanonicalDecl = Record[Idx++]; 1838 if (writtenAsCanonicalDecl) { 1839 ClassTemplateDecl *CanonPattern = ReadDeclAs<ClassTemplateDecl>(Record,Idx); 1840 if (D->isCanonicalDecl()) { // It's kept in the folding set. 1841 // Set this as, or find, the canonical declaration for this specialization 1842 ClassTemplateSpecializationDecl *CanonSpec; 1843 if (ClassTemplatePartialSpecializationDecl *Partial = 1844 dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) { 1845 CanonSpec = CanonPattern->getCommonPtr()->PartialSpecializations 1846 .GetOrInsertNode(Partial); 1847 } else { 1848 CanonSpec = 1849 CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D); 1850 } 1851 // If there was already a canonical specialization, merge into it. 1852 if (CanonSpec != D) { 1853 mergeRedeclarable<TagDecl>(D, CanonSpec, Redecl); 1854 1855 // This declaration might be a definition. Merge with any existing 1856 // definition. 1857 if (auto *DDD = D->DefinitionData.getNotUpdated()) { 1858 if (auto *CanonDD = CanonSpec->DefinitionData.getNotUpdated()) { 1859 MergeDefinitionData(CanonSpec, std::move(*DDD)); 1860 Reader.PendingDefinitions.erase(D); 1861 Reader.MergedDeclContexts.insert( 1862 std::make_pair(D, CanonDD->Definition)); 1863 D->IsCompleteDefinition = false; 1864 } else { 1865 CanonSpec->DefinitionData = D->DefinitionData; 1866 } 1867 } 1868 D->DefinitionData = CanonSpec->DefinitionData; 1869 } 1870 } 1871 } 1872 1873 // Explicit info. 1874 if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) { 1875 ClassTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo 1876 = new (C) ClassTemplateSpecializationDecl::ExplicitSpecializationInfo; 1877 ExplicitInfo->TypeAsWritten = TyInfo; 1878 ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx); 1879 ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx); 1880 D->ExplicitInfo = ExplicitInfo; 1881 } 1882 1883 return Redecl; 1884 } 1885 1886 void ASTDeclReader::VisitClassTemplatePartialSpecializationDecl( 1887 ClassTemplatePartialSpecializationDecl *D) { 1888 RedeclarableResult Redecl = VisitClassTemplateSpecializationDeclImpl(D); 1889 1890 D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx); 1891 D->ArgsAsWritten = Reader.ReadASTTemplateArgumentListInfo(F, Record, Idx); 1892 1893 // These are read/set from/to the first declaration. 1894 if (ThisDeclID == Redecl.getFirstID()) { 1895 D->InstantiatedFromMember.setPointer( 1896 ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx)); 1897 D->InstantiatedFromMember.setInt(Record[Idx++]); 1898 } 1899 } 1900 1901 void ASTDeclReader::VisitClassScopeFunctionSpecializationDecl( 1902 ClassScopeFunctionSpecializationDecl *D) { 1903 VisitDecl(D); 1904 D->Specialization = ReadDeclAs<CXXMethodDecl>(Record, Idx); 1905 } 1906 1907 void ASTDeclReader::VisitFunctionTemplateDecl(FunctionTemplateDecl *D) { 1908 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D); 1909 1910 if (ThisDeclID == Redecl.getFirstID()) { 1911 // This FunctionTemplateDecl owns a CommonPtr; read it. 1912 1913 // Read the function specialization declaration IDs. The specializations 1914 // themselves will be loaded if they're needed. 1915 if (unsigned NumSpecs = Record[Idx++]) { 1916 // FIXME: Append specializations! 1917 FunctionTemplateDecl::Common *CommonPtr = D->getCommonPtr(); 1918 CommonPtr->LazySpecializations = new (Reader.getContext()) 1919 serialization::DeclID[NumSpecs + 1]; 1920 CommonPtr->LazySpecializations[0] = NumSpecs; 1921 for (unsigned I = 0; I != NumSpecs; ++I) 1922 CommonPtr->LazySpecializations[I + 1] = ReadDeclID(Record, Idx); 1923 } 1924 } 1925 } 1926 1927 /// TODO: Unify with ClassTemplateSpecializationDecl version? 1928 /// May require unifying ClassTemplate(Partial)SpecializationDecl and 1929 /// VarTemplate(Partial)SpecializationDecl with a new data 1930 /// structure Template(Partial)SpecializationDecl, and 1931 /// using Template(Partial)SpecializationDecl as input type. 1932 ASTDeclReader::RedeclarableResult 1933 ASTDeclReader::VisitVarTemplateSpecializationDeclImpl( 1934 VarTemplateSpecializationDecl *D) { 1935 RedeclarableResult Redecl = VisitVarDeclImpl(D); 1936 1937 ASTContext &C = Reader.getContext(); 1938 if (Decl *InstD = ReadDecl(Record, Idx)) { 1939 if (VarTemplateDecl *VTD = dyn_cast<VarTemplateDecl>(InstD)) { 1940 D->SpecializedTemplate = VTD; 1941 } else { 1942 SmallVector<TemplateArgument, 8> TemplArgs; 1943 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 1944 TemplateArgumentList *ArgList = TemplateArgumentList::CreateCopy( 1945 C, TemplArgs.data(), TemplArgs.size()); 1946 VarTemplateSpecializationDecl::SpecializedPartialSpecialization *PS = 1947 new (C) 1948 VarTemplateSpecializationDecl::SpecializedPartialSpecialization(); 1949 PS->PartialSpecialization = 1950 cast<VarTemplatePartialSpecializationDecl>(InstD); 1951 PS->TemplateArgs = ArgList; 1952 D->SpecializedTemplate = PS; 1953 } 1954 } 1955 1956 // Explicit info. 1957 if (TypeSourceInfo *TyInfo = GetTypeSourceInfo(Record, Idx)) { 1958 VarTemplateSpecializationDecl::ExplicitSpecializationInfo *ExplicitInfo = 1959 new (C) VarTemplateSpecializationDecl::ExplicitSpecializationInfo; 1960 ExplicitInfo->TypeAsWritten = TyInfo; 1961 ExplicitInfo->ExternLoc = ReadSourceLocation(Record, Idx); 1962 ExplicitInfo->TemplateKeywordLoc = ReadSourceLocation(Record, Idx); 1963 D->ExplicitInfo = ExplicitInfo; 1964 } 1965 1966 SmallVector<TemplateArgument, 8> TemplArgs; 1967 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 1968 D->TemplateArgs = 1969 TemplateArgumentList::CreateCopy(C, TemplArgs.data(), TemplArgs.size()); 1970 D->PointOfInstantiation = ReadSourceLocation(Record, Idx); 1971 D->SpecializationKind = (TemplateSpecializationKind)Record[Idx++]; 1972 1973 bool writtenAsCanonicalDecl = Record[Idx++]; 1974 if (writtenAsCanonicalDecl) { 1975 VarTemplateDecl *CanonPattern = ReadDeclAs<VarTemplateDecl>(Record, Idx); 1976 if (D->isCanonicalDecl()) { // It's kept in the folding set. 1977 if (VarTemplatePartialSpecializationDecl *Partial = 1978 dyn_cast<VarTemplatePartialSpecializationDecl>(D)) { 1979 CanonPattern->getCommonPtr()->PartialSpecializations 1980 .GetOrInsertNode(Partial); 1981 } else { 1982 CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D); 1983 } 1984 } 1985 } 1986 1987 return Redecl; 1988 } 1989 1990 /// TODO: Unify with ClassTemplatePartialSpecializationDecl version? 1991 /// May require unifying ClassTemplate(Partial)SpecializationDecl and 1992 /// VarTemplate(Partial)SpecializationDecl with a new data 1993 /// structure Template(Partial)SpecializationDecl, and 1994 /// using Template(Partial)SpecializationDecl as input type. 1995 void ASTDeclReader::VisitVarTemplatePartialSpecializationDecl( 1996 VarTemplatePartialSpecializationDecl *D) { 1997 RedeclarableResult Redecl = VisitVarTemplateSpecializationDeclImpl(D); 1998 1999 D->TemplateParams = Reader.ReadTemplateParameterList(F, Record, Idx); 2000 D->ArgsAsWritten = Reader.ReadASTTemplateArgumentListInfo(F, Record, Idx); 2001 2002 // These are read/set from/to the first declaration. 2003 if (ThisDeclID == Redecl.getFirstID()) { 2004 D->InstantiatedFromMember.setPointer( 2005 ReadDeclAs<VarTemplatePartialSpecializationDecl>(Record, Idx)); 2006 D->InstantiatedFromMember.setInt(Record[Idx++]); 2007 } 2008 } 2009 2010 void ASTDeclReader::VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D) { 2011 VisitTypeDecl(D); 2012 2013 D->setDeclaredWithTypename(Record[Idx++]); 2014 2015 bool Inherited = Record[Idx++]; 2016 TypeSourceInfo *DefArg = GetTypeSourceInfo(Record, Idx); 2017 D->setDefaultArgument(DefArg, Inherited); 2018 } 2019 2020 void ASTDeclReader::VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D) { 2021 VisitDeclaratorDecl(D); 2022 // TemplateParmPosition. 2023 D->setDepth(Record[Idx++]); 2024 D->setPosition(Record[Idx++]); 2025 if (D->isExpandedParameterPack()) { 2026 void **Data = reinterpret_cast<void **>(D + 1); 2027 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) { 2028 Data[2*I] = Reader.readType(F, Record, Idx).getAsOpaquePtr(); 2029 Data[2*I + 1] = GetTypeSourceInfo(Record, Idx); 2030 } 2031 } else { 2032 // Rest of NonTypeTemplateParmDecl. 2033 D->ParameterPack = Record[Idx++]; 2034 if (Record[Idx++]) { 2035 Expr *DefArg = Reader.ReadExpr(F); 2036 bool Inherited = Record[Idx++]; 2037 D->setDefaultArgument(DefArg, Inherited); 2038 } 2039 } 2040 } 2041 2042 void ASTDeclReader::VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D) { 2043 VisitTemplateDecl(D); 2044 // TemplateParmPosition. 2045 D->setDepth(Record[Idx++]); 2046 D->setPosition(Record[Idx++]); 2047 if (D->isExpandedParameterPack()) { 2048 void **Data = reinterpret_cast<void **>(D + 1); 2049 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters(); 2050 I != N; ++I) 2051 Data[I] = Reader.ReadTemplateParameterList(F, Record, Idx); 2052 } else { 2053 // Rest of TemplateTemplateParmDecl. 2054 TemplateArgumentLoc Arg = Reader.ReadTemplateArgumentLoc(F, Record, Idx); 2055 bool IsInherited = Record[Idx++]; 2056 D->setDefaultArgument(Arg, IsInherited); 2057 D->ParameterPack = Record[Idx++]; 2058 } 2059 } 2060 2061 void ASTDeclReader::VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D) { 2062 VisitRedeclarableTemplateDecl(D); 2063 } 2064 2065 void ASTDeclReader::VisitStaticAssertDecl(StaticAssertDecl *D) { 2066 VisitDecl(D); 2067 D->AssertExprAndFailed.setPointer(Reader.ReadExpr(F)); 2068 D->AssertExprAndFailed.setInt(Record[Idx++]); 2069 D->Message = cast<StringLiteral>(Reader.ReadExpr(F)); 2070 D->RParenLoc = ReadSourceLocation(Record, Idx); 2071 } 2072 2073 void ASTDeclReader::VisitEmptyDecl(EmptyDecl *D) { 2074 VisitDecl(D); 2075 } 2076 2077 std::pair<uint64_t, uint64_t> 2078 ASTDeclReader::VisitDeclContext(DeclContext *DC) { 2079 uint64_t LexicalOffset = Record[Idx++]; 2080 uint64_t VisibleOffset = Record[Idx++]; 2081 return std::make_pair(LexicalOffset, VisibleOffset); 2082 } 2083 2084 template <typename T> 2085 ASTDeclReader::RedeclarableResult 2086 ASTDeclReader::VisitRedeclarable(Redeclarable<T> *D) { 2087 DeclID FirstDeclID = ReadDeclID(Record, Idx); 2088 Decl *MergeWith = nullptr; 2089 2090 // 0 indicates that this declaration was the only declaration of its entity, 2091 // and is used for space optimization. 2092 if (FirstDeclID == 0) 2093 FirstDeclID = ThisDeclID; 2094 else if (Record[Idx++]) { 2095 // We need to merge with FirstDeclID. Read it now to ensure that it is 2096 // before us in the redecl chain, then forget we saw it so that we will 2097 // merge with it. 2098 MergeWith = Reader.GetDecl(FirstDeclID); 2099 FirstDeclID = ThisDeclID; 2100 } 2101 2102 T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID)); 2103 if (FirstDecl != D) { 2104 // We delay loading of the redeclaration chain to avoid deeply nested calls. 2105 // We temporarily set the first (canonical) declaration as the previous one 2106 // which is the one that matters and mark the real previous DeclID to be 2107 // loaded & attached later on. 2108 D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl); 2109 } 2110 2111 // Note that this declaration has been deserialized. 2112 Reader.RedeclsDeserialized.insert(static_cast<T *>(D)); 2113 2114 // The result structure takes care to note that we need to load the 2115 // other declaration chains for this ID. 2116 return RedeclarableResult(Reader, FirstDeclID, MergeWith, 2117 static_cast<T *>(D)->getKind()); 2118 } 2119 2120 /// \brief Attempts to merge the given declaration (D) with another declaration 2121 /// of the same entity. 2122 template<typename T> 2123 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase, 2124 RedeclarableResult &Redecl, 2125 DeclID TemplatePatternID) { 2126 T *D = static_cast<T*>(DBase); 2127 T *DCanon = D->getCanonicalDecl(); 2128 if (D != DCanon && 2129 // IDs < NUM_PREDEF_DECL_IDS are not loaded from an AST file. 2130 Redecl.getFirstID() >= NUM_PREDEF_DECL_IDS && 2131 (!Reader.getContext().getLangOpts().Modules || 2132 Reader.getOwningModuleFile(DCanon) == Reader.getOwningModuleFile(D))) { 2133 // All redeclarations between this declaration and its originally-canonical 2134 // declaration get pulled in when we load DCanon; we don't need to 2135 // perform any more merging now. 2136 Redecl.suppress(); 2137 } 2138 2139 // If modules are not available, there is no reason to perform this merge. 2140 if (!Reader.getContext().getLangOpts().Modules) 2141 return; 2142 2143 if (auto *Existing = Redecl.getKnownMergeTarget()) 2144 // We already know of an existing declaration we should merge with. 2145 mergeRedeclarable(D, cast<T>(Existing), Redecl, TemplatePatternID); 2146 else if (FindExistingResult ExistingRes = findExisting(D)) 2147 if (T *Existing = ExistingRes) 2148 mergeRedeclarable(D, Existing, Redecl, TemplatePatternID); 2149 } 2150 2151 /// \brief "Cast" to type T, asserting if we don't have an implicit conversion. 2152 /// We use this to put code in a template that will only be valid for certain 2153 /// instantiations. 2154 template<typename T> static T assert_cast(T t) { return t; } 2155 template<typename T> static T assert_cast(...) { 2156 llvm_unreachable("bad assert_cast"); 2157 } 2158 2159 /// \brief Merge together the pattern declarations from two template 2160 /// declarations. 2161 void ASTDeclReader::mergeTemplatePattern(RedeclarableTemplateDecl *D, 2162 RedeclarableTemplateDecl *Existing, 2163 DeclID DsID) { 2164 auto *DPattern = D->getTemplatedDecl(); 2165 auto *ExistingPattern = Existing->getTemplatedDecl(); 2166 RedeclarableResult Result(Reader, DPattern->getCanonicalDecl()->getGlobalID(), 2167 /*MergeWith*/ExistingPattern, DPattern->getKind()); 2168 2169 if (auto *DClass = dyn_cast<CXXRecordDecl>(DPattern)) { 2170 // Merge with any existing definition. 2171 // FIXME: This is duplicated in several places. Refactor. 2172 auto *ExistingClass = 2173 cast<CXXRecordDecl>(ExistingPattern)->getCanonicalDecl(); 2174 if (auto *DDD = DClass->DefinitionData.getNotUpdated()) { 2175 if (auto *ExistingDD = ExistingClass->DefinitionData.getNotUpdated()) { 2176 MergeDefinitionData(ExistingClass, std::move(*DDD)); 2177 Reader.PendingDefinitions.erase(DClass); 2178 Reader.MergedDeclContexts.insert( 2179 std::make_pair(DClass, ExistingDD->Definition)); 2180 DClass->IsCompleteDefinition = false; 2181 } else { 2182 ExistingClass->DefinitionData = DClass->DefinitionData; 2183 } 2184 } 2185 DClass->DefinitionData = ExistingClass->DefinitionData; 2186 2187 return mergeRedeclarable(DClass, cast<TagDecl>(ExistingPattern), 2188 Result); 2189 } 2190 if (auto *DFunction = dyn_cast<FunctionDecl>(DPattern)) 2191 return mergeRedeclarable(DFunction, cast<FunctionDecl>(ExistingPattern), 2192 Result); 2193 if (auto *DVar = dyn_cast<VarDecl>(DPattern)) 2194 return mergeRedeclarable(DVar, cast<VarDecl>(ExistingPattern), Result); 2195 if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern)) 2196 return mergeRedeclarable(DAlias, cast<TypedefNameDecl>(ExistingPattern), 2197 Result); 2198 llvm_unreachable("merged an unknown kind of redeclarable template"); 2199 } 2200 2201 /// \brief Attempts to merge the given declaration (D) with another declaration 2202 /// of the same entity. 2203 template<typename T> 2204 void ASTDeclReader::mergeRedeclarable(Redeclarable<T> *DBase, T *Existing, 2205 RedeclarableResult &Redecl, 2206 DeclID TemplatePatternID) { 2207 T *D = static_cast<T*>(DBase); 2208 T *ExistingCanon = Existing->getCanonicalDecl(); 2209 T *DCanon = D->getCanonicalDecl(); 2210 if (ExistingCanon != DCanon) { 2211 assert(DCanon->getGlobalID() == Redecl.getFirstID()); 2212 2213 // Have our redeclaration link point back at the canonical declaration 2214 // of the existing declaration, so that this declaration has the 2215 // appropriate canonical declaration. 2216 D->RedeclLink = Redeclarable<T>::PreviousDeclLink(ExistingCanon); 2217 2218 // When we merge a namespace, update its pointer to the first namespace. 2219 if (auto *Namespace = dyn_cast<NamespaceDecl>(D)) 2220 Namespace->AnonOrFirstNamespaceAndInline.setPointer( 2221 assert_cast<NamespaceDecl*>(ExistingCanon)); 2222 2223 // When we merge a template, merge its pattern. 2224 if (auto *DTemplate = dyn_cast<RedeclarableTemplateDecl>(D)) 2225 mergeTemplatePattern( 2226 DTemplate, assert_cast<RedeclarableTemplateDecl*>(ExistingCanon), 2227 TemplatePatternID); 2228 2229 // If this declaration was the canonical declaration, make a note of 2230 // that. We accept the linear algorithm here because the number of 2231 // unique canonical declarations of an entity should always be tiny. 2232 if (DCanon == D) { 2233 SmallVectorImpl<DeclID> &Merged = Reader.MergedDecls[ExistingCanon]; 2234 if (std::find(Merged.begin(), Merged.end(), Redecl.getFirstID()) 2235 == Merged.end()) 2236 Merged.push_back(Redecl.getFirstID()); 2237 } 2238 } 2239 } 2240 2241 /// \brief Attempts to merge the given declaration (D) with another declaration 2242 /// of the same entity, for the case where the entity is not actually 2243 /// redeclarable. This happens, for instance, when merging the fields of 2244 /// identical class definitions from two different modules. 2245 template<typename T> 2246 void ASTDeclReader::mergeMergeable(Mergeable<T> *D) { 2247 // If modules are not available, there is no reason to perform this merge. 2248 if (!Reader.getContext().getLangOpts().Modules) 2249 return; 2250 2251 // ODR-based merging is only performed in C++. In C, identically-named things 2252 // in different translation units are not redeclarations (but may still have 2253 // compatible types). 2254 if (!Reader.getContext().getLangOpts().CPlusPlus) 2255 return; 2256 2257 if (FindExistingResult ExistingRes = findExisting(static_cast<T*>(D))) 2258 if (T *Existing = ExistingRes) 2259 Reader.Context.setPrimaryMergedDecl(static_cast<T*>(D), 2260 Existing->getCanonicalDecl()); 2261 } 2262 2263 void ASTDeclReader::VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D) { 2264 VisitDecl(D); 2265 unsigned NumVars = D->varlist_size(); 2266 SmallVector<Expr *, 16> Vars; 2267 Vars.reserve(NumVars); 2268 for (unsigned i = 0; i != NumVars; ++i) { 2269 Vars.push_back(Reader.ReadExpr(F)); 2270 } 2271 D->setVars(Vars); 2272 } 2273 2274 //===----------------------------------------------------------------------===// 2275 // Attribute Reading 2276 //===----------------------------------------------------------------------===// 2277 2278 /// \brief Reads attributes from the current stream position. 2279 void ASTReader::ReadAttributes(ModuleFile &F, AttrVec &Attrs, 2280 const RecordData &Record, unsigned &Idx) { 2281 for (unsigned i = 0, e = Record[Idx++]; i != e; ++i) { 2282 Attr *New = nullptr; 2283 attr::Kind Kind = (attr::Kind)Record[Idx++]; 2284 SourceRange Range = ReadSourceRange(F, Record, Idx); 2285 2286 #include "clang/Serialization/AttrPCHRead.inc" 2287 2288 assert(New && "Unable to decode attribute?"); 2289 Attrs.push_back(New); 2290 } 2291 } 2292 2293 //===----------------------------------------------------------------------===// 2294 // ASTReader Implementation 2295 //===----------------------------------------------------------------------===// 2296 2297 /// \brief Note that we have loaded the declaration with the given 2298 /// Index. 2299 /// 2300 /// This routine notes that this declaration has already been loaded, 2301 /// so that future GetDecl calls will return this declaration rather 2302 /// than trying to load a new declaration. 2303 inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) { 2304 assert(!DeclsLoaded[Index] && "Decl loaded twice?"); 2305 DeclsLoaded[Index] = D; 2306 } 2307 2308 2309 /// \brief Determine whether the consumer will be interested in seeing 2310 /// this declaration (via HandleTopLevelDecl). 2311 /// 2312 /// This routine should return true for anything that might affect 2313 /// code generation, e.g., inline function definitions, Objective-C 2314 /// declarations with metadata, etc. 2315 static bool isConsumerInterestedIn(Decl *D, bool HasBody) { 2316 // An ObjCMethodDecl is never considered as "interesting" because its 2317 // implementation container always is. 2318 2319 if (isa<FileScopeAsmDecl>(D) || 2320 isa<ObjCProtocolDecl>(D) || 2321 isa<ObjCImplDecl>(D) || 2322 isa<ImportDecl>(D) || 2323 isa<OMPThreadPrivateDecl>(D)) 2324 return true; 2325 if (VarDecl *Var = dyn_cast<VarDecl>(D)) 2326 return Var->isFileVarDecl() && 2327 Var->isThisDeclarationADefinition() == VarDecl::Definition; 2328 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) 2329 return Func->doesThisDeclarationHaveABody() || HasBody; 2330 2331 return false; 2332 } 2333 2334 /// \brief Get the correct cursor and offset for loading a declaration. 2335 ASTReader::RecordLocation 2336 ASTReader::DeclCursorForID(DeclID ID, unsigned &RawLocation) { 2337 // See if there's an override. 2338 DeclReplacementMap::iterator It = ReplacedDecls.find(ID); 2339 if (It != ReplacedDecls.end()) { 2340 RawLocation = It->second.RawLoc; 2341 return RecordLocation(It->second.Mod, It->second.Offset); 2342 } 2343 2344 GlobalDeclMapType::iterator I = GlobalDeclMap.find(ID); 2345 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map"); 2346 ModuleFile *M = I->second; 2347 const DeclOffset & 2348 DOffs = M->DeclOffsets[ID - M->BaseDeclID - NUM_PREDEF_DECL_IDS]; 2349 RawLocation = DOffs.Loc; 2350 return RecordLocation(M, DOffs.BitOffset); 2351 } 2352 2353 ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) { 2354 ContinuousRangeMap<uint64_t, ModuleFile*, 4>::iterator I 2355 = GlobalBitOffsetsMap.find(GlobalOffset); 2356 2357 assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map"); 2358 return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset); 2359 } 2360 2361 uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint32_t LocalOffset) { 2362 return LocalOffset + M.GlobalBitOffset; 2363 } 2364 2365 static bool isSameTemplateParameterList(const TemplateParameterList *X, 2366 const TemplateParameterList *Y); 2367 2368 /// \brief Determine whether two template parameters are similar enough 2369 /// that they may be used in declarations of the same template. 2370 static bool isSameTemplateParameter(const NamedDecl *X, 2371 const NamedDecl *Y) { 2372 if (X->getKind() != Y->getKind()) 2373 return false; 2374 2375 if (const TemplateTypeParmDecl *TX = dyn_cast<TemplateTypeParmDecl>(X)) { 2376 const TemplateTypeParmDecl *TY = cast<TemplateTypeParmDecl>(Y); 2377 return TX->isParameterPack() == TY->isParameterPack(); 2378 } 2379 2380 if (const NonTypeTemplateParmDecl *TX = dyn_cast<NonTypeTemplateParmDecl>(X)) { 2381 const NonTypeTemplateParmDecl *TY = cast<NonTypeTemplateParmDecl>(Y); 2382 return TX->isParameterPack() == TY->isParameterPack() && 2383 TX->getASTContext().hasSameType(TX->getType(), TY->getType()); 2384 } 2385 2386 const TemplateTemplateParmDecl *TX = cast<TemplateTemplateParmDecl>(X); 2387 const TemplateTemplateParmDecl *TY = cast<TemplateTemplateParmDecl>(Y); 2388 return TX->isParameterPack() == TY->isParameterPack() && 2389 isSameTemplateParameterList(TX->getTemplateParameters(), 2390 TY->getTemplateParameters()); 2391 } 2392 2393 static NamespaceDecl *getNamespace(const NestedNameSpecifier *X) { 2394 if (auto *NS = X->getAsNamespace()) 2395 return NS; 2396 if (auto *NAS = X->getAsNamespaceAlias()) 2397 return NAS->getNamespace(); 2398 return nullptr; 2399 } 2400 2401 static bool isSameQualifier(const NestedNameSpecifier *X, 2402 const NestedNameSpecifier *Y) { 2403 if (auto *NSX = getNamespace(X)) { 2404 auto *NSY = getNamespace(Y); 2405 if (!NSY || NSX->getCanonicalDecl() != NSY->getCanonicalDecl()) 2406 return false; 2407 } else if (X->getKind() != Y->getKind()) 2408 return false; 2409 2410 // FIXME: For namespaces and types, we're permitted to check that the entity 2411 // is named via the same tokens. We should probably do so. 2412 switch (X->getKind()) { 2413 case NestedNameSpecifier::Identifier: 2414 if (X->getAsIdentifier() != Y->getAsIdentifier()) 2415 return false; 2416 break; 2417 case NestedNameSpecifier::Namespace: 2418 case NestedNameSpecifier::NamespaceAlias: 2419 // We've already checked that we named the same namespace. 2420 break; 2421 case NestedNameSpecifier::TypeSpec: 2422 case NestedNameSpecifier::TypeSpecWithTemplate: 2423 if (X->getAsType()->getCanonicalTypeInternal() != 2424 Y->getAsType()->getCanonicalTypeInternal()) 2425 return false; 2426 break; 2427 case NestedNameSpecifier::Global: 2428 case NestedNameSpecifier::Super: 2429 return true; 2430 } 2431 2432 // Recurse into earlier portion of NNS, if any. 2433 auto *PX = X->getPrefix(); 2434 auto *PY = Y->getPrefix(); 2435 if (PX && PY) 2436 return isSameQualifier(PX, PY); 2437 return !PX && !PY; 2438 } 2439 2440 /// \brief Determine whether two template parameter lists are similar enough 2441 /// that they may be used in declarations of the same template. 2442 static bool isSameTemplateParameterList(const TemplateParameterList *X, 2443 const TemplateParameterList *Y) { 2444 if (X->size() != Y->size()) 2445 return false; 2446 2447 for (unsigned I = 0, N = X->size(); I != N; ++I) 2448 if (!isSameTemplateParameter(X->getParam(I), Y->getParam(I))) 2449 return false; 2450 2451 return true; 2452 } 2453 2454 /// \brief Determine whether the two declarations refer to the same entity. 2455 static bool isSameEntity(NamedDecl *X, NamedDecl *Y) { 2456 assert(X->getDeclName() == Y->getDeclName() && "Declaration name mismatch!"); 2457 2458 if (X == Y) 2459 return true; 2460 2461 // Must be in the same context. 2462 if (!X->getDeclContext()->getRedeclContext()->Equals( 2463 Y->getDeclContext()->getRedeclContext())) 2464 return false; 2465 2466 // Two typedefs refer to the same entity if they have the same underlying 2467 // type. 2468 if (TypedefNameDecl *TypedefX = dyn_cast<TypedefNameDecl>(X)) 2469 if (TypedefNameDecl *TypedefY = dyn_cast<TypedefNameDecl>(Y)) 2470 return X->getASTContext().hasSameType(TypedefX->getUnderlyingType(), 2471 TypedefY->getUnderlyingType()); 2472 2473 // Must have the same kind. 2474 if (X->getKind() != Y->getKind()) 2475 return false; 2476 2477 // Objective-C classes and protocols with the same name always match. 2478 if (isa<ObjCInterfaceDecl>(X) || isa<ObjCProtocolDecl>(X)) 2479 return true; 2480 2481 if (isa<ClassTemplateSpecializationDecl>(X)) { 2482 // No need to handle these here: we merge them when adding them to the 2483 // template. 2484 return false; 2485 } 2486 2487 // Compatible tags match. 2488 if (TagDecl *TagX = dyn_cast<TagDecl>(X)) { 2489 TagDecl *TagY = cast<TagDecl>(Y); 2490 return (TagX->getTagKind() == TagY->getTagKind()) || 2491 ((TagX->getTagKind() == TTK_Struct || TagX->getTagKind() == TTK_Class || 2492 TagX->getTagKind() == TTK_Interface) && 2493 (TagY->getTagKind() == TTK_Struct || TagY->getTagKind() == TTK_Class || 2494 TagY->getTagKind() == TTK_Interface)); 2495 } 2496 2497 // Functions with the same type and linkage match. 2498 // FIXME: This needs to cope with merging of prototyped/non-prototyped 2499 // functions, etc. 2500 if (FunctionDecl *FuncX = dyn_cast<FunctionDecl>(X)) { 2501 FunctionDecl *FuncY = cast<FunctionDecl>(Y); 2502 return (FuncX->getLinkageInternal() == FuncY->getLinkageInternal()) && 2503 FuncX->getASTContext().hasSameType(FuncX->getType(), FuncY->getType()); 2504 } 2505 2506 // Variables with the same type and linkage match. 2507 if (VarDecl *VarX = dyn_cast<VarDecl>(X)) { 2508 VarDecl *VarY = cast<VarDecl>(Y); 2509 return (VarX->getLinkageInternal() == VarY->getLinkageInternal()) && 2510 VarX->getASTContext().hasSameType(VarX->getType(), VarY->getType()); 2511 } 2512 2513 // Namespaces with the same name and inlinedness match. 2514 if (NamespaceDecl *NamespaceX = dyn_cast<NamespaceDecl>(X)) { 2515 NamespaceDecl *NamespaceY = cast<NamespaceDecl>(Y); 2516 return NamespaceX->isInline() == NamespaceY->isInline(); 2517 } 2518 2519 // Identical template names and kinds match if their template parameter lists 2520 // and patterns match. 2521 if (TemplateDecl *TemplateX = dyn_cast<TemplateDecl>(X)) { 2522 TemplateDecl *TemplateY = cast<TemplateDecl>(Y); 2523 return isSameEntity(TemplateX->getTemplatedDecl(), 2524 TemplateY->getTemplatedDecl()) && 2525 isSameTemplateParameterList(TemplateX->getTemplateParameters(), 2526 TemplateY->getTemplateParameters()); 2527 } 2528 2529 // Fields with the same name and the same type match. 2530 if (FieldDecl *FDX = dyn_cast<FieldDecl>(X)) { 2531 FieldDecl *FDY = cast<FieldDecl>(Y); 2532 // FIXME: Also check the bitwidth is odr-equivalent, if any. 2533 return X->getASTContext().hasSameType(FDX->getType(), FDY->getType()); 2534 } 2535 2536 // Enumerators with the same name match. 2537 if (isa<EnumConstantDecl>(X)) 2538 // FIXME: Also check the value is odr-equivalent. 2539 return true; 2540 2541 // Using shadow declarations with the same target match. 2542 if (UsingShadowDecl *USX = dyn_cast<UsingShadowDecl>(X)) { 2543 UsingShadowDecl *USY = cast<UsingShadowDecl>(Y); 2544 return USX->getTargetDecl() == USY->getTargetDecl(); 2545 } 2546 2547 // Using declarations with the same qualifier match. (We already know that 2548 // the name matches.) 2549 if (auto *UX = dyn_cast<UsingDecl>(X)) { 2550 auto *UY = cast<UsingDecl>(Y); 2551 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 2552 UX->hasTypename() == UY->hasTypename() && 2553 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 2554 } 2555 if (auto *UX = dyn_cast<UnresolvedUsingValueDecl>(X)) { 2556 auto *UY = cast<UnresolvedUsingValueDecl>(Y); 2557 return isSameQualifier(UX->getQualifier(), UY->getQualifier()) && 2558 UX->isAccessDeclaration() == UY->isAccessDeclaration(); 2559 } 2560 if (auto *UX = dyn_cast<UnresolvedUsingTypenameDecl>(X)) 2561 return isSameQualifier( 2562 UX->getQualifier(), 2563 cast<UnresolvedUsingTypenameDecl>(Y)->getQualifier()); 2564 2565 // Namespace alias definitions with the same target match. 2566 if (auto *NAX = dyn_cast<NamespaceAliasDecl>(X)) { 2567 auto *NAY = cast<NamespaceAliasDecl>(Y); 2568 return NAX->getNamespace()->Equals(NAY->getNamespace()); 2569 } 2570 2571 // FIXME: Many other cases to implement. 2572 return false; 2573 } 2574 2575 /// Find the context in which we should search for previous declarations when 2576 /// looking for declarations to merge. 2577 DeclContext *ASTDeclReader::getPrimaryContextForMerging(ASTReader &Reader, 2578 DeclContext *DC) { 2579 if (NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC)) 2580 return ND->getOriginalNamespace(); 2581 2582 if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) { 2583 // Try to dig out the definition. 2584 auto *DD = RD->DefinitionData.getNotUpdated(); 2585 if (!DD) 2586 DD = RD->getCanonicalDecl()->DefinitionData.getNotUpdated(); 2587 2588 // If there's no definition yet, then DC's definition is added by an update 2589 // record, but we've not yet loaded that update record. In this case, we 2590 // commit to DC being the canonical definition now, and will fix this when 2591 // we load the update record. 2592 if (!DD) { 2593 DD = new (Reader.Context) struct CXXRecordDecl::DefinitionData(RD); 2594 RD->IsCompleteDefinition = true; 2595 RD->DefinitionData = DD; 2596 RD->getCanonicalDecl()->DefinitionData = DD; 2597 2598 // Track that we did this horrible thing so that we can fix it later. 2599 Reader.PendingFakeDefinitionData.insert( 2600 std::make_pair(DD, ASTReader::PendingFakeDefinitionKind::Fake)); 2601 } 2602 2603 return DD->Definition; 2604 } 2605 2606 if (EnumDecl *ED = dyn_cast<EnumDecl>(DC)) 2607 return ED->getASTContext().getLangOpts().CPlusPlus? ED->getDefinition() 2608 : nullptr; 2609 2610 // We can see the TU here only if we have no Sema object. In that case, 2611 // there's no TU scope to look in, so using the DC alone is sufficient. 2612 if (auto *TU = dyn_cast<TranslationUnitDecl>(DC)) 2613 return TU; 2614 2615 return nullptr; 2616 } 2617 2618 ASTDeclReader::FindExistingResult::~FindExistingResult() { 2619 // Record that we had a typedef name for linkage whether or not we merge 2620 // with that declaration. 2621 if (TypedefNameForLinkage) { 2622 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 2623 Reader.ImportedTypedefNamesForLinkage.insert( 2624 std::make_pair(std::make_pair(DC, TypedefNameForLinkage), New)); 2625 return; 2626 } 2627 2628 if (!AddResult || Existing) 2629 return; 2630 2631 DeclarationName Name = New->getDeclName(); 2632 DeclContext *DC = New->getDeclContext()->getRedeclContext(); 2633 if (needsAnonymousDeclarationNumber(New)) { 2634 setAnonymousDeclForMerging(Reader, New->getLexicalDeclContext(), 2635 AnonymousDeclNumber, New); 2636 } else if (DC->isTranslationUnit() && Reader.SemaObj) { 2637 Reader.SemaObj->IdResolver.tryAddTopLevelDecl(New, Name); 2638 } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) { 2639 // Add the declaration to its redeclaration context so later merging 2640 // lookups will find it. 2641 MergeDC->makeDeclVisibleInContextImpl(New, /*Internal*/true); 2642 } 2643 } 2644 2645 /// Find the declaration that should be merged into, given the declaration found 2646 /// by name lookup. If we're merging an anonymous declaration within a typedef, 2647 /// we need a matching typedef, and we merge with the type inside it. 2648 static NamedDecl *getDeclForMerging(NamedDecl *Found, 2649 bool IsTypedefNameForLinkage) { 2650 if (!IsTypedefNameForLinkage) 2651 return Found; 2652 2653 // If we found a typedef declaration that gives a name to some other 2654 // declaration, then we want that inner declaration. Declarations from 2655 // AST files are handled via ImportedTypedefNamesForLinkage. 2656 if (Found->isFromASTFile()) return 0; 2657 if (auto *TND = dyn_cast<TypedefNameDecl>(Found)) { 2658 if (auto *TT = TND->getTypeSourceInfo()->getType()->getAs<TagType>()) 2659 if (TT->getDecl()->getTypedefNameForAnonDecl() == TND) 2660 return TT->getDecl(); 2661 } 2662 2663 return 0; 2664 } 2665 2666 NamedDecl *ASTDeclReader::getAnonymousDeclForMerging(ASTReader &Reader, 2667 DeclContext *DC, 2668 unsigned Index) { 2669 // If the lexical context has been merged, look into the now-canonical 2670 // definition. 2671 if (auto *Merged = Reader.MergedDeclContexts.lookup(DC)) 2672 DC = Merged; 2673 2674 // If we've seen this before, return the canonical declaration. 2675 auto &Previous = Reader.AnonymousDeclarationsForMerging[DC]; 2676 if (Index < Previous.size() && Previous[Index]) 2677 return Previous[Index]; 2678 2679 // If this is the first time, but we have parsed a declaration of the context, 2680 // build the anonymous declaration list from the parsed declaration. 2681 if (!cast<Decl>(DC)->isFromASTFile()) { 2682 numberAnonymousDeclsWithin(DC, [&](NamedDecl *ND, unsigned Number) { 2683 if (Previous.size() == Number) 2684 Previous.push_back(cast<NamedDecl>(ND->getCanonicalDecl())); 2685 else 2686 Previous[Number] = cast<NamedDecl>(ND->getCanonicalDecl()); 2687 }); 2688 } 2689 2690 return Index < Previous.size() ? Previous[Index] : nullptr; 2691 } 2692 2693 void ASTDeclReader::setAnonymousDeclForMerging(ASTReader &Reader, 2694 DeclContext *DC, unsigned Index, 2695 NamedDecl *D) { 2696 if (auto *Merged = Reader.MergedDeclContexts.lookup(DC)) 2697 DC = Merged; 2698 2699 auto &Previous = Reader.AnonymousDeclarationsForMerging[DC]; 2700 if (Index >= Previous.size()) 2701 Previous.resize(Index + 1); 2702 if (!Previous[Index]) 2703 Previous[Index] = D; 2704 } 2705 2706 ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) { 2707 DeclarationName Name = TypedefNameForLinkage ? TypedefNameForLinkage 2708 : D->getDeclName(); 2709 2710 if (!Name && !needsAnonymousDeclarationNumber(D)) { 2711 // Don't bother trying to find unnamed declarations that are in 2712 // unmergeable contexts. 2713 FindExistingResult Result(Reader, D, /*Existing=*/nullptr, 2714 AnonymousDeclNumber, TypedefNameForLinkage); 2715 // FIXME: We may still need to pull in the redeclaration chain; there can 2716 // be redeclarations via 'decltype'. 2717 Result.suppress(); 2718 return Result; 2719 } 2720 2721 // FIXME: Bail out for non-canonical declarations. We will have performed any 2722 // necessary merging already. 2723 2724 DeclContext *DC = D->getDeclContext()->getRedeclContext(); 2725 if (TypedefNameForLinkage) { 2726 auto It = Reader.ImportedTypedefNamesForLinkage.find( 2727 std::make_pair(DC, TypedefNameForLinkage)); 2728 if (It != Reader.ImportedTypedefNamesForLinkage.end()) 2729 if (isSameEntity(It->second, D)) 2730 return FindExistingResult(Reader, D, It->second, AnonymousDeclNumber, 2731 TypedefNameForLinkage); 2732 // Go on to check in other places in case an existing typedef name 2733 // was not imported. 2734 } 2735 2736 if (needsAnonymousDeclarationNumber(D)) { 2737 // This is an anonymous declaration that we may need to merge. Look it up 2738 // in its context by number. 2739 if (auto *Existing = getAnonymousDeclForMerging( 2740 Reader, D->getLexicalDeclContext(), AnonymousDeclNumber)) 2741 if (isSameEntity(Existing, D)) 2742 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber, 2743 TypedefNameForLinkage); 2744 } else if (DC->isTranslationUnit() && Reader.SemaObj) { 2745 IdentifierResolver &IdResolver = Reader.SemaObj->IdResolver; 2746 2747 // Temporarily consider the identifier to be up-to-date. We don't want to 2748 // cause additional lookups here. 2749 class UpToDateIdentifierRAII { 2750 IdentifierInfo *II; 2751 bool WasOutToDate; 2752 2753 public: 2754 explicit UpToDateIdentifierRAII(IdentifierInfo *II) 2755 : II(II), WasOutToDate(false) 2756 { 2757 if (II) { 2758 WasOutToDate = II->isOutOfDate(); 2759 if (WasOutToDate) 2760 II->setOutOfDate(false); 2761 } 2762 } 2763 2764 ~UpToDateIdentifierRAII() { 2765 if (WasOutToDate) 2766 II->setOutOfDate(true); 2767 } 2768 } UpToDate(Name.getAsIdentifierInfo()); 2769 2770 for (IdentifierResolver::iterator I = IdResolver.begin(Name), 2771 IEnd = IdResolver.end(); 2772 I != IEnd; ++I) { 2773 if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage)) 2774 if (isSameEntity(Existing, D)) 2775 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber, 2776 TypedefNameForLinkage); 2777 } 2778 } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) { 2779 DeclContext::lookup_result R = MergeDC->noload_lookup(Name); 2780 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) { 2781 if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage)) 2782 if (isSameEntity(Existing, D)) 2783 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber, 2784 TypedefNameForLinkage); 2785 } 2786 } else { 2787 // Not in a mergeable context. 2788 return FindExistingResult(Reader); 2789 } 2790 2791 // If this declaration is from a merged context, make a note that we need to 2792 // check that the canonical definition of that context contains the decl. 2793 // 2794 // FIXME: We should do something similar if we merge two definitions of the 2795 // same template specialization into the same CXXRecordDecl. 2796 auto MergedDCIt = Reader.MergedDeclContexts.find(D->getLexicalDeclContext()); 2797 if (MergedDCIt != Reader.MergedDeclContexts.end() && 2798 MergedDCIt->second == D->getDeclContext()) 2799 Reader.PendingOdrMergeChecks.push_back(D); 2800 2801 return FindExistingResult(Reader, D, /*Existing=*/nullptr, 2802 AnonymousDeclNumber, TypedefNameForLinkage); 2803 } 2804 2805 template<typename DeclT> 2806 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader, 2807 Redeclarable<DeclT> *D, 2808 Decl *Previous) { 2809 D->RedeclLink.setPrevious(cast<DeclT>(Previous)); 2810 } 2811 namespace clang { 2812 template<> 2813 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader, 2814 Redeclarable<FunctionDecl> *D, 2815 Decl *Previous) { 2816 FunctionDecl *FD = static_cast<FunctionDecl*>(D); 2817 FunctionDecl *PrevFD = cast<FunctionDecl>(Previous); 2818 2819 FD->RedeclLink.setPrevious(PrevFD); 2820 2821 // If the previous declaration is an inline function declaration, then this 2822 // declaration is too. 2823 if (PrevFD->IsInline != FD->IsInline) { 2824 // FIXME: [dcl.fct.spec]p4: 2825 // If a function with external linkage is declared inline in one 2826 // translation unit, it shall be declared inline in all translation 2827 // units in which it appears. 2828 // 2829 // Be careful of this case: 2830 // 2831 // module A: 2832 // template<typename T> struct X { void f(); }; 2833 // template<typename T> inline void X<T>::f() {} 2834 // 2835 // module B instantiates the declaration of X<int>::f 2836 // module C instantiates the definition of X<int>::f 2837 // 2838 // If module B and C are merged, we do not have a violation of this rule. 2839 FD->IsInline = true; 2840 } 2841 2842 // If this declaration has an unresolved exception specification but the 2843 // previous declaration had a resolved one, resolve the exception 2844 // specification now. 2845 auto *FPT = FD->getType()->getAs<FunctionProtoType>(); 2846 auto *PrevFPT = PrevFD->getType()->getAs<FunctionProtoType>(); 2847 if (FPT && PrevFPT && 2848 isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && 2849 !isUnresolvedExceptionSpec(PrevFPT->getExceptionSpecType())) { 2850 Reader.Context.adjustExceptionSpec( 2851 FD, PrevFPT->getExtProtoInfo().ExceptionSpec); 2852 } 2853 } 2854 } 2855 void ASTDeclReader::attachPreviousDeclImpl(ASTReader &Reader, ...) { 2856 llvm_unreachable("attachPreviousDecl on non-redeclarable declaration"); 2857 } 2858 2859 void ASTDeclReader::attachPreviousDecl(ASTReader &Reader, Decl *D, 2860 Decl *Previous) { 2861 assert(D && Previous); 2862 2863 switch (D->getKind()) { 2864 #define ABSTRACT_DECL(TYPE) 2865 #define DECL(TYPE, BASE) \ 2866 case Decl::TYPE: \ 2867 attachPreviousDeclImpl(Reader, cast<TYPE##Decl>(D), Previous); \ 2868 break; 2869 #include "clang/AST/DeclNodes.inc" 2870 } 2871 2872 // If the declaration was visible in one module, a redeclaration of it in 2873 // another module remains visible even if it wouldn't be visible by itself. 2874 // 2875 // FIXME: In this case, the declaration should only be visible if a module 2876 // that makes it visible has been imported. 2877 D->IdentifierNamespace |= 2878 Previous->IdentifierNamespace & 2879 (Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Type); 2880 2881 // If the previous declaration is marked as used, then this declaration should 2882 // be too. 2883 if (Previous->Used) 2884 D->Used = true; 2885 } 2886 2887 template<typename DeclT> 2888 void ASTDeclReader::attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest) { 2889 D->RedeclLink.setLatest(cast<DeclT>(Latest)); 2890 } 2891 void ASTDeclReader::attachLatestDeclImpl(...) { 2892 llvm_unreachable("attachLatestDecl on non-redeclarable declaration"); 2893 } 2894 2895 void ASTDeclReader::attachLatestDecl(Decl *D, Decl *Latest) { 2896 assert(D && Latest); 2897 2898 switch (D->getKind()) { 2899 #define ABSTRACT_DECL(TYPE) 2900 #define DECL(TYPE, BASE) \ 2901 case Decl::TYPE: \ 2902 attachLatestDeclImpl(cast<TYPE##Decl>(D), Latest); \ 2903 break; 2904 #include "clang/AST/DeclNodes.inc" 2905 } 2906 } 2907 2908 template<typename DeclT> 2909 void ASTDeclReader::markIncompleteDeclChainImpl(Redeclarable<DeclT> *D) { 2910 D->RedeclLink.markIncomplete(); 2911 } 2912 void ASTDeclReader::markIncompleteDeclChainImpl(...) { 2913 llvm_unreachable("markIncompleteDeclChain on non-redeclarable declaration"); 2914 } 2915 2916 void ASTReader::markIncompleteDeclChain(Decl *D) { 2917 switch (D->getKind()) { 2918 #define ABSTRACT_DECL(TYPE) 2919 #define DECL(TYPE, BASE) \ 2920 case Decl::TYPE: \ 2921 ASTDeclReader::markIncompleteDeclChainImpl(cast<TYPE##Decl>(D)); \ 2922 break; 2923 #include "clang/AST/DeclNodes.inc" 2924 } 2925 } 2926 2927 ASTReader::MergedDeclsMap::iterator 2928 ASTReader::combineStoredMergedDecls(Decl *Canon, GlobalDeclID CanonID) { 2929 // If we don't have any stored merged declarations, just look in the 2930 // merged declarations set. 2931 StoredMergedDeclsMap::iterator StoredPos = StoredMergedDecls.find(CanonID); 2932 if (StoredPos == StoredMergedDecls.end()) 2933 return MergedDecls.find(Canon); 2934 2935 // Append the stored merged declarations to the merged declarations set. 2936 MergedDeclsMap::iterator Pos = MergedDecls.find(Canon); 2937 if (Pos == MergedDecls.end()) 2938 Pos = MergedDecls.insert(std::make_pair(Canon, 2939 SmallVector<DeclID, 2>())).first; 2940 Pos->second.append(StoredPos->second.begin(), StoredPos->second.end()); 2941 StoredMergedDecls.erase(StoredPos); 2942 2943 // Sort and uniquify the set of merged declarations. 2944 llvm::array_pod_sort(Pos->second.begin(), Pos->second.end()); 2945 Pos->second.erase(std::unique(Pos->second.begin(), Pos->second.end()), 2946 Pos->second.end()); 2947 return Pos; 2948 } 2949 2950 /// \brief Read the declaration at the given offset from the AST file. 2951 Decl *ASTReader::ReadDeclRecord(DeclID ID) { 2952 unsigned Index = ID - NUM_PREDEF_DECL_IDS; 2953 unsigned RawLocation = 0; 2954 RecordLocation Loc = DeclCursorForID(ID, RawLocation); 2955 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor; 2956 // Keep track of where we are in the stream, then jump back there 2957 // after reading this declaration. 2958 SavedStreamPosition SavedPosition(DeclsCursor); 2959 2960 ReadingKindTracker ReadingKind(Read_Decl, *this); 2961 2962 // Note that we are loading a declaration record. 2963 Deserializing ADecl(this); 2964 2965 DeclsCursor.JumpToBit(Loc.Offset); 2966 RecordData Record; 2967 unsigned Code = DeclsCursor.ReadCode(); 2968 unsigned Idx = 0; 2969 ASTDeclReader Reader(*this, *Loc.F, ID, RawLocation, Record,Idx); 2970 2971 Decl *D = nullptr; 2972 switch ((DeclCode)DeclsCursor.readRecord(Code, Record)) { 2973 case DECL_CONTEXT_LEXICAL: 2974 case DECL_CONTEXT_VISIBLE: 2975 llvm_unreachable("Record cannot be de-serialized with ReadDeclRecord"); 2976 case DECL_TYPEDEF: 2977 D = TypedefDecl::CreateDeserialized(Context, ID); 2978 break; 2979 case DECL_TYPEALIAS: 2980 D = TypeAliasDecl::CreateDeserialized(Context, ID); 2981 break; 2982 case DECL_ENUM: 2983 D = EnumDecl::CreateDeserialized(Context, ID); 2984 break; 2985 case DECL_RECORD: 2986 D = RecordDecl::CreateDeserialized(Context, ID); 2987 break; 2988 case DECL_ENUM_CONSTANT: 2989 D = EnumConstantDecl::CreateDeserialized(Context, ID); 2990 break; 2991 case DECL_FUNCTION: 2992 D = FunctionDecl::CreateDeserialized(Context, ID); 2993 break; 2994 case DECL_LINKAGE_SPEC: 2995 D = LinkageSpecDecl::CreateDeserialized(Context, ID); 2996 break; 2997 case DECL_LABEL: 2998 D = LabelDecl::CreateDeserialized(Context, ID); 2999 break; 3000 case DECL_NAMESPACE: 3001 D = NamespaceDecl::CreateDeserialized(Context, ID); 3002 break; 3003 case DECL_NAMESPACE_ALIAS: 3004 D = NamespaceAliasDecl::CreateDeserialized(Context, ID); 3005 break; 3006 case DECL_USING: 3007 D = UsingDecl::CreateDeserialized(Context, ID); 3008 break; 3009 case DECL_USING_SHADOW: 3010 D = UsingShadowDecl::CreateDeserialized(Context, ID); 3011 break; 3012 case DECL_USING_DIRECTIVE: 3013 D = UsingDirectiveDecl::CreateDeserialized(Context, ID); 3014 break; 3015 case DECL_UNRESOLVED_USING_VALUE: 3016 D = UnresolvedUsingValueDecl::CreateDeserialized(Context, ID); 3017 break; 3018 case DECL_UNRESOLVED_USING_TYPENAME: 3019 D = UnresolvedUsingTypenameDecl::CreateDeserialized(Context, ID); 3020 break; 3021 case DECL_CXX_RECORD: 3022 D = CXXRecordDecl::CreateDeserialized(Context, ID); 3023 break; 3024 case DECL_CXX_METHOD: 3025 D = CXXMethodDecl::CreateDeserialized(Context, ID); 3026 break; 3027 case DECL_CXX_CONSTRUCTOR: 3028 D = CXXConstructorDecl::CreateDeserialized(Context, ID); 3029 break; 3030 case DECL_CXX_DESTRUCTOR: 3031 D = CXXDestructorDecl::CreateDeserialized(Context, ID); 3032 break; 3033 case DECL_CXX_CONVERSION: 3034 D = CXXConversionDecl::CreateDeserialized(Context, ID); 3035 break; 3036 case DECL_ACCESS_SPEC: 3037 D = AccessSpecDecl::CreateDeserialized(Context, ID); 3038 break; 3039 case DECL_FRIEND: 3040 D = FriendDecl::CreateDeserialized(Context, ID, Record[Idx++]); 3041 break; 3042 case DECL_FRIEND_TEMPLATE: 3043 D = FriendTemplateDecl::CreateDeserialized(Context, ID); 3044 break; 3045 case DECL_CLASS_TEMPLATE: 3046 D = ClassTemplateDecl::CreateDeserialized(Context, ID); 3047 break; 3048 case DECL_CLASS_TEMPLATE_SPECIALIZATION: 3049 D = ClassTemplateSpecializationDecl::CreateDeserialized(Context, ID); 3050 break; 3051 case DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION: 3052 D = ClassTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID); 3053 break; 3054 case DECL_VAR_TEMPLATE: 3055 D = VarTemplateDecl::CreateDeserialized(Context, ID); 3056 break; 3057 case DECL_VAR_TEMPLATE_SPECIALIZATION: 3058 D = VarTemplateSpecializationDecl::CreateDeserialized(Context, ID); 3059 break; 3060 case DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION: 3061 D = VarTemplatePartialSpecializationDecl::CreateDeserialized(Context, ID); 3062 break; 3063 case DECL_CLASS_SCOPE_FUNCTION_SPECIALIZATION: 3064 D = ClassScopeFunctionSpecializationDecl::CreateDeserialized(Context, ID); 3065 break; 3066 case DECL_FUNCTION_TEMPLATE: 3067 D = FunctionTemplateDecl::CreateDeserialized(Context, ID); 3068 break; 3069 case DECL_TEMPLATE_TYPE_PARM: 3070 D = TemplateTypeParmDecl::CreateDeserialized(Context, ID); 3071 break; 3072 case DECL_NON_TYPE_TEMPLATE_PARM: 3073 D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID); 3074 break; 3075 case DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK: 3076 D = NonTypeTemplateParmDecl::CreateDeserialized(Context, ID, Record[Idx++]); 3077 break; 3078 case DECL_TEMPLATE_TEMPLATE_PARM: 3079 D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID); 3080 break; 3081 case DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK: 3082 D = TemplateTemplateParmDecl::CreateDeserialized(Context, ID, 3083 Record[Idx++]); 3084 break; 3085 case DECL_TYPE_ALIAS_TEMPLATE: 3086 D = TypeAliasTemplateDecl::CreateDeserialized(Context, ID); 3087 break; 3088 case DECL_STATIC_ASSERT: 3089 D = StaticAssertDecl::CreateDeserialized(Context, ID); 3090 break; 3091 case DECL_OBJC_METHOD: 3092 D = ObjCMethodDecl::CreateDeserialized(Context, ID); 3093 break; 3094 case DECL_OBJC_INTERFACE: 3095 D = ObjCInterfaceDecl::CreateDeserialized(Context, ID); 3096 break; 3097 case DECL_OBJC_IVAR: 3098 D = ObjCIvarDecl::CreateDeserialized(Context, ID); 3099 break; 3100 case DECL_OBJC_PROTOCOL: 3101 D = ObjCProtocolDecl::CreateDeserialized(Context, ID); 3102 break; 3103 case DECL_OBJC_AT_DEFS_FIELD: 3104 D = ObjCAtDefsFieldDecl::CreateDeserialized(Context, ID); 3105 break; 3106 case DECL_OBJC_CATEGORY: 3107 D = ObjCCategoryDecl::CreateDeserialized(Context, ID); 3108 break; 3109 case DECL_OBJC_CATEGORY_IMPL: 3110 D = ObjCCategoryImplDecl::CreateDeserialized(Context, ID); 3111 break; 3112 case DECL_OBJC_IMPLEMENTATION: 3113 D = ObjCImplementationDecl::CreateDeserialized(Context, ID); 3114 break; 3115 case DECL_OBJC_COMPATIBLE_ALIAS: 3116 D = ObjCCompatibleAliasDecl::CreateDeserialized(Context, ID); 3117 break; 3118 case DECL_OBJC_PROPERTY: 3119 D = ObjCPropertyDecl::CreateDeserialized(Context, ID); 3120 break; 3121 case DECL_OBJC_PROPERTY_IMPL: 3122 D = ObjCPropertyImplDecl::CreateDeserialized(Context, ID); 3123 break; 3124 case DECL_FIELD: 3125 D = FieldDecl::CreateDeserialized(Context, ID); 3126 break; 3127 case DECL_INDIRECTFIELD: 3128 D = IndirectFieldDecl::CreateDeserialized(Context, ID); 3129 break; 3130 case DECL_VAR: 3131 D = VarDecl::CreateDeserialized(Context, ID); 3132 break; 3133 case DECL_IMPLICIT_PARAM: 3134 D = ImplicitParamDecl::CreateDeserialized(Context, ID); 3135 break; 3136 case DECL_PARM_VAR: 3137 D = ParmVarDecl::CreateDeserialized(Context, ID); 3138 break; 3139 case DECL_FILE_SCOPE_ASM: 3140 D = FileScopeAsmDecl::CreateDeserialized(Context, ID); 3141 break; 3142 case DECL_BLOCK: 3143 D = BlockDecl::CreateDeserialized(Context, ID); 3144 break; 3145 case DECL_MS_PROPERTY: 3146 D = MSPropertyDecl::CreateDeserialized(Context, ID); 3147 break; 3148 case DECL_CAPTURED: 3149 D = CapturedDecl::CreateDeserialized(Context, ID, Record[Idx++]); 3150 break; 3151 case DECL_CXX_BASE_SPECIFIERS: 3152 Error("attempt to read a C++ base-specifier record as a declaration"); 3153 return nullptr; 3154 case DECL_IMPORT: 3155 // Note: last entry of the ImportDecl record is the number of stored source 3156 // locations. 3157 D = ImportDecl::CreateDeserialized(Context, ID, Record.back()); 3158 break; 3159 case DECL_OMP_THREADPRIVATE: 3160 D = OMPThreadPrivateDecl::CreateDeserialized(Context, ID, Record[Idx++]); 3161 break; 3162 case DECL_EMPTY: 3163 D = EmptyDecl::CreateDeserialized(Context, ID); 3164 break; 3165 } 3166 3167 assert(D && "Unknown declaration reading AST file"); 3168 LoadedDecl(Index, D); 3169 // Set the DeclContext before doing any deserialization, to make sure internal 3170 // calls to Decl::getASTContext() by Decl's methods will find the 3171 // TranslationUnitDecl without crashing. 3172 D->setDeclContext(Context.getTranslationUnitDecl()); 3173 Reader.Visit(D); 3174 3175 // If this declaration is also a declaration context, get the 3176 // offsets for its tables of lexical and visible declarations. 3177 if (DeclContext *DC = dyn_cast<DeclContext>(D)) { 3178 // FIXME: This should really be 3179 // DeclContext *LookupDC = DC->getPrimaryContext(); 3180 // but that can walk the redeclaration chain, which might not work yet. 3181 DeclContext *LookupDC = DC; 3182 if (isa<NamespaceDecl>(DC)) 3183 LookupDC = DC->getPrimaryContext(); 3184 std::pair<uint64_t, uint64_t> Offsets = Reader.VisitDeclContext(DC); 3185 if (Offsets.first || Offsets.second) { 3186 if (Offsets.first != 0) 3187 DC->setHasExternalLexicalStorage(true); 3188 if (Offsets.second != 0) 3189 LookupDC->setHasExternalVisibleStorage(true); 3190 if (ReadDeclContextStorage(*Loc.F, DeclsCursor, Offsets, 3191 Loc.F->DeclContextInfos[DC])) 3192 return nullptr; 3193 } 3194 3195 // Now add the pending visible updates for this decl context, if it has any. 3196 DeclContextVisibleUpdatesPending::iterator I = 3197 PendingVisibleUpdates.find(ID); 3198 if (I != PendingVisibleUpdates.end()) { 3199 // There are updates. This means the context has external visible 3200 // storage, even if the original stored version didn't. 3201 LookupDC->setHasExternalVisibleStorage(true); 3202 for (const auto &Update : I->second) { 3203 DeclContextInfo &Info = Update.second->DeclContextInfos[DC]; 3204 delete Info.NameLookupTableData; 3205 Info.NameLookupTableData = Update.first; 3206 } 3207 PendingVisibleUpdates.erase(I); 3208 } 3209 } 3210 assert(Idx == Record.size()); 3211 3212 // Load any relevant update records. 3213 PendingUpdateRecords.push_back(std::make_pair(ID, D)); 3214 3215 // Load the categories after recursive loading is finished. 3216 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(D)) 3217 if (Class->isThisDeclarationADefinition()) 3218 loadObjCCategories(ID, Class); 3219 3220 // If we have deserialized a declaration that has a definition the 3221 // AST consumer might need to know about, queue it. 3222 // We don't pass it to the consumer immediately because we may be in recursive 3223 // loading, and some declarations may still be initializing. 3224 if (isConsumerInterestedIn(D, Reader.hasPendingBody())) 3225 InterestingDecls.push_back(D); 3226 3227 return D; 3228 } 3229 3230 void ASTReader::loadDeclUpdateRecords(serialization::DeclID ID, Decl *D) { 3231 // The declaration may have been modified by files later in the chain. 3232 // If this is the case, read the record containing the updates from each file 3233 // and pass it to ASTDeclReader to make the modifications. 3234 DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID); 3235 if (UpdI != DeclUpdateOffsets.end()) { 3236 FileOffsetsTy &UpdateOffsets = UpdI->second; 3237 bool WasInteresting = isConsumerInterestedIn(D, false); 3238 for (FileOffsetsTy::iterator 3239 I = UpdateOffsets.begin(), E = UpdateOffsets.end(); I != E; ++I) { 3240 ModuleFile *F = I->first; 3241 uint64_t Offset = I->second; 3242 llvm::BitstreamCursor &Cursor = F->DeclsCursor; 3243 SavedStreamPosition SavedPosition(Cursor); 3244 Cursor.JumpToBit(Offset); 3245 RecordData Record; 3246 unsigned Code = Cursor.ReadCode(); 3247 unsigned RecCode = Cursor.readRecord(Code, Record); 3248 (void)RecCode; 3249 assert(RecCode == DECL_UPDATES && "Expected DECL_UPDATES record!"); 3250 3251 unsigned Idx = 0; 3252 ASTDeclReader Reader(*this, *F, ID, 0, Record, Idx); 3253 Reader.UpdateDecl(D, *F, Record); 3254 3255 // We might have made this declaration interesting. If so, remember that 3256 // we need to hand it off to the consumer. 3257 if (!WasInteresting && 3258 isConsumerInterestedIn(D, Reader.hasPendingBody())) { 3259 InterestingDecls.push_back(D); 3260 WasInteresting = true; 3261 } 3262 } 3263 } 3264 } 3265 3266 namespace { 3267 /// \brief Module visitor class that finds all of the redeclarations of a 3268 /// redeclarable declaration. 3269 class RedeclChainVisitor { 3270 ASTReader &Reader; 3271 SmallVectorImpl<DeclID> &SearchDecls; 3272 llvm::SmallPtrSetImpl<Decl *> &Deserialized; 3273 GlobalDeclID CanonID; 3274 SmallVector<Decl *, 4> Chain; 3275 3276 public: 3277 RedeclChainVisitor(ASTReader &Reader, SmallVectorImpl<DeclID> &SearchDecls, 3278 llvm::SmallPtrSetImpl<Decl *> &Deserialized, 3279 GlobalDeclID CanonID) 3280 : Reader(Reader), SearchDecls(SearchDecls), Deserialized(Deserialized), 3281 CanonID(CanonID) { 3282 // Ensure that the canonical ID goes at the start of the chain. 3283 addToChain(Reader.GetDecl(CanonID)); 3284 } 3285 3286 static bool visit(ModuleFile &M, bool Preorder, void *UserData) { 3287 if (Preorder) 3288 return false; 3289 3290 return static_cast<RedeclChainVisitor *>(UserData)->visit(M); 3291 } 3292 3293 void addToChain(Decl *D) { 3294 if (!D) 3295 return; 3296 3297 if (Deserialized.erase(D)) 3298 Chain.push_back(D); 3299 } 3300 3301 void searchForID(ModuleFile &M, GlobalDeclID GlobalID) { 3302 // Map global ID of the first declaration down to the local ID 3303 // used in this module file. 3304 DeclID ID = Reader.mapGlobalIDToModuleFileGlobalID(M, GlobalID); 3305 if (!ID) 3306 return; 3307 3308 // If the search decl was from this module, add it to the chain before any 3309 // of its redeclarations in this module or users of it, and after any from 3310 // imported modules. 3311 if (CanonID != GlobalID && Reader.isDeclIDFromModule(GlobalID, M)) 3312 addToChain(Reader.GetDecl(GlobalID)); 3313 3314 // Perform a binary search to find the local redeclarations for this 3315 // declaration (if any). 3316 const LocalRedeclarationsInfo Compare = { ID, 0 }; 3317 const LocalRedeclarationsInfo *Result 3318 = std::lower_bound(M.RedeclarationsMap, 3319 M.RedeclarationsMap + M.LocalNumRedeclarationsInMap, 3320 Compare); 3321 if (Result == M.RedeclarationsMap + M.LocalNumRedeclarationsInMap || 3322 Result->FirstID != ID) { 3323 // If we have a previously-canonical singleton declaration that was 3324 // merged into another redeclaration chain, create a trivial chain 3325 // for this single declaration so that it will get wired into the 3326 // complete redeclaration chain. 3327 if (GlobalID != CanonID && 3328 GlobalID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID && 3329 GlobalID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls) { 3330 addToChain(Reader.GetDecl(GlobalID)); 3331 } 3332 3333 return; 3334 } 3335 3336 // Dig out all of the redeclarations. 3337 unsigned Offset = Result->Offset; 3338 unsigned N = M.RedeclarationChains[Offset]; 3339 M.RedeclarationChains[Offset++] = 0; // Don't try to deserialize again 3340 for (unsigned I = 0; I != N; ++I) 3341 addToChain(Reader.GetLocalDecl(M, M.RedeclarationChains[Offset++])); 3342 } 3343 3344 bool visit(ModuleFile &M) { 3345 // Visit each of the declarations. 3346 for (unsigned I = 0, N = SearchDecls.size(); I != N; ++I) 3347 searchForID(M, SearchDecls[I]); 3348 // FIXME: If none of the SearchDecls had local IDs in this module, can 3349 // we avoid searching any ancestor module files? 3350 return false; 3351 } 3352 3353 ArrayRef<Decl *> getChain() const { 3354 return Chain; 3355 } 3356 }; 3357 } 3358 3359 void ASTReader::loadPendingDeclChain(serialization::GlobalDeclID ID) { 3360 Decl *D = GetDecl(ID); 3361 Decl *CanonDecl = D->getCanonicalDecl(); 3362 3363 // Determine the set of declaration IDs we'll be searching for. 3364 SmallVector<DeclID, 1> SearchDecls; 3365 GlobalDeclID CanonID = 0; 3366 if (D == CanonDecl) { 3367 SearchDecls.push_back(ID); // Always first. 3368 CanonID = ID; 3369 } 3370 MergedDeclsMap::iterator MergedPos = combineStoredMergedDecls(CanonDecl, ID); 3371 if (MergedPos != MergedDecls.end()) 3372 SearchDecls.append(MergedPos->second.begin(), MergedPos->second.end()); 3373 3374 // Build up the list of redeclarations. 3375 RedeclChainVisitor Visitor(*this, SearchDecls, RedeclsDeserialized, CanonID); 3376 ModuleMgr.visitDepthFirst(&RedeclChainVisitor::visit, &Visitor); 3377 3378 // Retrieve the chains. 3379 ArrayRef<Decl *> Chain = Visitor.getChain(); 3380 if (Chain.empty()) 3381 return; 3382 3383 // Hook up the chains. 3384 Decl *MostRecent = CanonDecl->getMostRecentDecl(); 3385 for (unsigned I = 0, N = Chain.size(); I != N; ++I) { 3386 if (Chain[I] == CanonDecl) 3387 continue; 3388 3389 ASTDeclReader::attachPreviousDecl(*this, Chain[I], MostRecent); 3390 MostRecent = Chain[I]; 3391 } 3392 3393 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent); 3394 } 3395 3396 namespace { 3397 /// \brief Given an ObjC interface, goes through the modules and links to the 3398 /// interface all the categories for it. 3399 class ObjCCategoriesVisitor { 3400 ASTReader &Reader; 3401 serialization::GlobalDeclID InterfaceID; 3402 ObjCInterfaceDecl *Interface; 3403 llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized; 3404 unsigned PreviousGeneration; 3405 ObjCCategoryDecl *Tail; 3406 llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap; 3407 3408 void add(ObjCCategoryDecl *Cat) { 3409 // Only process each category once. 3410 if (!Deserialized.erase(Cat)) 3411 return; 3412 3413 // Check for duplicate categories. 3414 if (Cat->getDeclName()) { 3415 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()]; 3416 if (Existing && 3417 Reader.getOwningModuleFile(Existing) 3418 != Reader.getOwningModuleFile(Cat)) { 3419 // FIXME: We should not warn for duplicates in diamond: 3420 // 3421 // MT // 3422 // / \ // 3423 // ML MR // 3424 // \ / // 3425 // MB // 3426 // 3427 // If there are duplicates in ML/MR, there will be warning when 3428 // creating MB *and* when importing MB. We should not warn when 3429 // importing. 3430 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def) 3431 << Interface->getDeclName() << Cat->getDeclName(); 3432 Reader.Diag(Existing->getLocation(), diag::note_previous_definition); 3433 } else if (!Existing) { 3434 // Record this category. 3435 Existing = Cat; 3436 } 3437 } 3438 3439 // Add this category to the end of the chain. 3440 if (Tail) 3441 ASTDeclReader::setNextObjCCategory(Tail, Cat); 3442 else 3443 Interface->setCategoryListRaw(Cat); 3444 Tail = Cat; 3445 } 3446 3447 public: 3448 ObjCCategoriesVisitor(ASTReader &Reader, 3449 serialization::GlobalDeclID InterfaceID, 3450 ObjCInterfaceDecl *Interface, 3451 llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized, 3452 unsigned PreviousGeneration) 3453 : Reader(Reader), InterfaceID(InterfaceID), Interface(Interface), 3454 Deserialized(Deserialized), PreviousGeneration(PreviousGeneration), 3455 Tail(nullptr) 3456 { 3457 // Populate the name -> category map with the set of known categories. 3458 for (auto *Cat : Interface->known_categories()) { 3459 if (Cat->getDeclName()) 3460 NameCategoryMap[Cat->getDeclName()] = Cat; 3461 3462 // Keep track of the tail of the category list. 3463 Tail = Cat; 3464 } 3465 } 3466 3467 static bool visit(ModuleFile &M, void *UserData) { 3468 return static_cast<ObjCCategoriesVisitor *>(UserData)->visit(M); 3469 } 3470 3471 bool visit(ModuleFile &M) { 3472 // If we've loaded all of the category information we care about from 3473 // this module file, we're done. 3474 if (M.Generation <= PreviousGeneration) 3475 return true; 3476 3477 // Map global ID of the definition down to the local ID used in this 3478 // module file. If there is no such mapping, we'll find nothing here 3479 // (or in any module it imports). 3480 DeclID LocalID = Reader.mapGlobalIDToModuleFileGlobalID(M, InterfaceID); 3481 if (!LocalID) 3482 return true; 3483 3484 // Perform a binary search to find the local redeclarations for this 3485 // declaration (if any). 3486 const ObjCCategoriesInfo Compare = { LocalID, 0 }; 3487 const ObjCCategoriesInfo *Result 3488 = std::lower_bound(M.ObjCCategoriesMap, 3489 M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap, 3490 Compare); 3491 if (Result == M.ObjCCategoriesMap + M.LocalNumObjCCategoriesInMap || 3492 Result->DefinitionID != LocalID) { 3493 // We didn't find anything. If the class definition is in this module 3494 // file, then the module files it depends on cannot have any categories, 3495 // so suppress further lookup. 3496 return Reader.isDeclIDFromModule(InterfaceID, M); 3497 } 3498 3499 // We found something. Dig out all of the categories. 3500 unsigned Offset = Result->Offset; 3501 unsigned N = M.ObjCCategories[Offset]; 3502 M.ObjCCategories[Offset++] = 0; // Don't try to deserialize again 3503 for (unsigned I = 0; I != N; ++I) 3504 add(cast_or_null<ObjCCategoryDecl>( 3505 Reader.GetLocalDecl(M, M.ObjCCategories[Offset++]))); 3506 return true; 3507 } 3508 }; 3509 } 3510 3511 void ASTReader::loadObjCCategories(serialization::GlobalDeclID ID, 3512 ObjCInterfaceDecl *D, 3513 unsigned PreviousGeneration) { 3514 ObjCCategoriesVisitor Visitor(*this, ID, D, CategoriesDeserialized, 3515 PreviousGeneration); 3516 ModuleMgr.visit(ObjCCategoriesVisitor::visit, &Visitor); 3517 } 3518 3519 namespace { 3520 /// Iterator over the redeclarations of a declaration that have already 3521 /// been merged into the same redeclaration chain. 3522 template<typename DeclT> 3523 class MergedRedeclIterator { 3524 DeclT *Start, *Canonical, *Current; 3525 public: 3526 MergedRedeclIterator() : Current(nullptr) {} 3527 MergedRedeclIterator(DeclT *Start) 3528 : Start(Start), Canonical(nullptr), Current(Start) {} 3529 3530 DeclT *operator*() { return Current; } 3531 3532 MergedRedeclIterator &operator++() { 3533 if (Current->isFirstDecl()) { 3534 Canonical = Current; 3535 Current = Current->getMostRecentDecl(); 3536 } else 3537 Current = Current->getPreviousDecl(); 3538 3539 // If we started in the merged portion, we'll reach our start position 3540 // eventually. Otherwise, we'll never reach it, but the second declaration 3541 // we reached was the canonical declaration, so stop when we see that one 3542 // again. 3543 if (Current == Start || Current == Canonical) 3544 Current = nullptr; 3545 return *this; 3546 } 3547 3548 friend bool operator!=(const MergedRedeclIterator &A, 3549 const MergedRedeclIterator &B) { 3550 return A.Current != B.Current; 3551 } 3552 }; 3553 } 3554 template<typename DeclT> 3555 llvm::iterator_range<MergedRedeclIterator<DeclT>> merged_redecls(DeclT *D) { 3556 return llvm::iterator_range<MergedRedeclIterator<DeclT>>( 3557 MergedRedeclIterator<DeclT>(D), 3558 MergedRedeclIterator<DeclT>()); 3559 } 3560 3561 template<typename DeclT, typename Fn> 3562 static void forAllLaterRedecls(DeclT *D, Fn F) { 3563 F(D); 3564 3565 // Check whether we've already merged D into its redeclaration chain. 3566 // MostRecent may or may not be nullptr if D has not been merged. If 3567 // not, walk the merged redecl chain and see if it's there. 3568 auto *MostRecent = D->getMostRecentDecl(); 3569 bool Found = false; 3570 for (auto *Redecl = MostRecent; Redecl && !Found; 3571 Redecl = Redecl->getPreviousDecl()) 3572 Found = (Redecl == D); 3573 3574 // If this declaration is merged, apply the functor to all later decls. 3575 if (Found) { 3576 for (auto *Redecl = MostRecent; Redecl != D; 3577 Redecl = Redecl->getPreviousDecl()) 3578 F(Redecl); 3579 } 3580 } 3581 3582 void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile, 3583 const RecordData &Record) { 3584 while (Idx < Record.size()) { 3585 switch ((DeclUpdateKind)Record[Idx++]) { 3586 case UPD_CXX_ADDED_IMPLICIT_MEMBER: { 3587 auto *RD = cast<CXXRecordDecl>(D); 3588 // FIXME: If we also have an update record for instantiating the 3589 // definition of D, we need that to happen before we get here. 3590 Decl *MD = Reader.ReadDecl(ModuleFile, Record, Idx); 3591 assert(MD && "couldn't read decl from update record"); 3592 // FIXME: We should call addHiddenDecl instead, to add the member 3593 // to its DeclContext. 3594 RD->addedMember(MD); 3595 3596 // If we've added a new special member to a class definition that is not 3597 // the canonical definition, then we need special member lookups in the 3598 // canonical definition to also look into our class. 3599 auto *DD = RD->DefinitionData.getNotUpdated(); 3600 if (DD && DD->Definition != RD) { 3601 auto &Merged = Reader.MergedLookups[DD->Definition]; 3602 // FIXME: Avoid the linear-time scan here. 3603 if (std::find(Merged.begin(), Merged.end(), RD) == Merged.end()) 3604 Merged.push_back(RD); 3605 } 3606 break; 3607 } 3608 3609 case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION: 3610 // It will be added to the template's specializations set when loaded. 3611 (void)Reader.ReadDecl(ModuleFile, Record, Idx); 3612 break; 3613 3614 case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: { 3615 NamespaceDecl *Anon 3616 = Reader.ReadDeclAs<NamespaceDecl>(ModuleFile, Record, Idx); 3617 3618 // Each module has its own anonymous namespace, which is disjoint from 3619 // any other module's anonymous namespaces, so don't attach the anonymous 3620 // namespace at all. 3621 if (ModuleFile.Kind != MK_ImplicitModule && 3622 ModuleFile.Kind != MK_ExplicitModule) { 3623 if (TranslationUnitDecl *TU = dyn_cast<TranslationUnitDecl>(D)) 3624 TU->setAnonymousNamespace(Anon); 3625 else 3626 cast<NamespaceDecl>(D)->setAnonymousNamespace(Anon); 3627 } 3628 break; 3629 } 3630 3631 case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER: 3632 cast<VarDecl>(D)->getMemberSpecializationInfo()->setPointOfInstantiation( 3633 Reader.ReadSourceLocation(ModuleFile, Record, Idx)); 3634 break; 3635 3636 case UPD_CXX_ADDED_FUNCTION_DEFINITION: { 3637 FunctionDecl *FD = cast<FunctionDecl>(D); 3638 if (Reader.PendingBodies[FD]) { 3639 // FIXME: Maybe check for ODR violations. 3640 // It's safe to stop now because this update record is always last. 3641 return; 3642 } 3643 3644 if (Record[Idx++]) { 3645 // Maintain AST consistency: any later redeclarations of this function 3646 // are inline if this one is. (We might have merged another declaration 3647 // into this one.) 3648 forAllLaterRedecls(FD, [](FunctionDecl *FD) { 3649 FD->setImplicitlyInline(); 3650 }); 3651 } 3652 FD->setInnerLocStart(Reader.ReadSourceLocation(ModuleFile, Record, Idx)); 3653 if (auto *CD = dyn_cast<CXXConstructorDecl>(FD)) 3654 std::tie(CD->CtorInitializers, CD->NumCtorInitializers) = 3655 Reader.ReadCXXCtorInitializers(ModuleFile, Record, Idx); 3656 if (auto *DD = dyn_cast<CXXDestructorDecl>(FD)) 3657 // FIXME: Check consistency. 3658 DD->setOperatorDelete(Reader.ReadDeclAs<FunctionDecl>(ModuleFile, 3659 Record, Idx)); 3660 // Store the offset of the body so we can lazily load it later. 3661 Reader.PendingBodies[FD] = GetCurrentCursorOffset(); 3662 HasPendingBody = true; 3663 assert(Idx == Record.size() && "lazy body must be last"); 3664 break; 3665 } 3666 3667 case UPD_CXX_INSTANTIATED_CLASS_DEFINITION: { 3668 auto *RD = cast<CXXRecordDecl>(D); 3669 auto *OldDD = RD->DefinitionData.getNotUpdated(); 3670 bool HadRealDefinition = 3671 OldDD && (OldDD->Definition != RD || 3672 !Reader.PendingFakeDefinitionData.count(OldDD)); 3673 ReadCXXRecordDefinition(RD, /*Update*/true); 3674 3675 // Visible update is handled separately. 3676 uint64_t LexicalOffset = Record[Idx++]; 3677 if (!HadRealDefinition && LexicalOffset) { 3678 RD->setHasExternalLexicalStorage(true); 3679 Reader.ReadDeclContextStorage(ModuleFile, ModuleFile.DeclsCursor, 3680 std::make_pair(LexicalOffset, 0), 3681 ModuleFile.DeclContextInfos[RD]); 3682 Reader.PendingFakeDefinitionData.erase(OldDD); 3683 } 3684 3685 auto TSK = (TemplateSpecializationKind)Record[Idx++]; 3686 SourceLocation POI = Reader.ReadSourceLocation(ModuleFile, Record, Idx); 3687 if (MemberSpecializationInfo *MSInfo = 3688 RD->getMemberSpecializationInfo()) { 3689 MSInfo->setTemplateSpecializationKind(TSK); 3690 MSInfo->setPointOfInstantiation(POI); 3691 } else { 3692 ClassTemplateSpecializationDecl *Spec = 3693 cast<ClassTemplateSpecializationDecl>(RD); 3694 Spec->setTemplateSpecializationKind(TSK); 3695 Spec->setPointOfInstantiation(POI); 3696 3697 if (Record[Idx++]) { 3698 auto PartialSpec = 3699 ReadDeclAs<ClassTemplatePartialSpecializationDecl>(Record, Idx); 3700 SmallVector<TemplateArgument, 8> TemplArgs; 3701 Reader.ReadTemplateArgumentList(TemplArgs, F, Record, Idx); 3702 auto *TemplArgList = TemplateArgumentList::CreateCopy( 3703 Reader.getContext(), TemplArgs.data(), TemplArgs.size()); 3704 3705 // FIXME: If we already have a partial specialization set, 3706 // check that it matches. 3707 if (!Spec->getSpecializedTemplateOrPartial() 3708 .is<ClassTemplatePartialSpecializationDecl *>()) 3709 Spec->setInstantiationOf(PartialSpec, TemplArgList); 3710 } 3711 } 3712 3713 RD->setTagKind((TagTypeKind)Record[Idx++]); 3714 RD->setLocation(Reader.ReadSourceLocation(ModuleFile, Record, Idx)); 3715 RD->setLocStart(Reader.ReadSourceLocation(ModuleFile, Record, Idx)); 3716 RD->setRBraceLoc(Reader.ReadSourceLocation(ModuleFile, Record, Idx)); 3717 3718 if (Record[Idx++]) { 3719 AttrVec Attrs; 3720 Reader.ReadAttributes(F, Attrs, Record, Idx); 3721 D->setAttrsImpl(Attrs, Reader.getContext()); 3722 } 3723 break; 3724 } 3725 3726 case UPD_CXX_RESOLVED_EXCEPTION_SPEC: { 3727 // FIXME: This doesn't send the right notifications if there are 3728 // ASTMutationListeners other than an ASTWriter. 3729 FunctionProtoType::ExceptionSpecInfo ESI; 3730 SmallVector<QualType, 8> ExceptionStorage; 3731 Reader.readExceptionSpec(ModuleFile, ExceptionStorage, ESI, Record, Idx); 3732 for (auto *Redecl : merged_redecls(D)) { 3733 auto *FD = cast<FunctionDecl>(Redecl); 3734 auto *FPT = FD->getType()->castAs<FunctionProtoType>(); 3735 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) { 3736 // AST invariant: if any exception spec in the redecl chain is 3737 // resolved, all are resolved. We don't need to go any further. 3738 // FIXME: If the exception spec is resolved, check that it matches. 3739 break; 3740 } 3741 FD->setType(Reader.Context.getFunctionType( 3742 FPT->getReturnType(), FPT->getParamTypes(), 3743 FPT->getExtProtoInfo().withExceptionSpec(ESI))); 3744 } 3745 break; 3746 } 3747 3748 case UPD_CXX_DEDUCED_RETURN_TYPE: { 3749 // FIXME: Also do this when merging redecls. 3750 QualType DeducedResultType = Reader.readType(ModuleFile, Record, Idx); 3751 for (auto *Redecl : merged_redecls(D)) { 3752 // FIXME: If the return type is already deduced, check that it matches. 3753 FunctionDecl *FD = cast<FunctionDecl>(Redecl); 3754 Reader.Context.adjustDeducedFunctionResultType(FD, DeducedResultType); 3755 } 3756 break; 3757 } 3758 3759 case UPD_DECL_MARKED_USED: { 3760 // FIXME: This doesn't send the right notifications if there are 3761 // ASTMutationListeners other than an ASTWriter. 3762 3763 // Maintain AST consistency: any later redeclarations are used too. 3764 forAllLaterRedecls(D, [](Decl *D) { D->Used = true; }); 3765 break; 3766 } 3767 3768 case UPD_MANGLING_NUMBER: 3769 Reader.Context.setManglingNumber(cast<NamedDecl>(D), Record[Idx++]); 3770 break; 3771 3772 case UPD_STATIC_LOCAL_NUMBER: 3773 Reader.Context.setStaticLocalNumber(cast<VarDecl>(D), Record[Idx++]); 3774 break; 3775 case UPD_DECL_MARKED_OPENMP_THREADPRIVATE: 3776 D->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit( 3777 Reader.Context, ReadSourceRange(Record, Idx))); 3778 break; 3779 } 3780 } 3781 } 3782