clang 24.0.0git
ASTReaderDecl.cpp
Go to the documentation of this file.
1//===- ASTReaderDecl.cpp - Decl Deserialization ---------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the ASTReader::readDeclRecord method, which is the
10// entrypoint for loading a decl.
11//
12//===----------------------------------------------------------------------===//
13
14#include "ASTCommon.h"
15#include "ASTReaderInternals.h"
19#include "clang/AST/Attr.h"
21#include "clang/AST/Decl.h"
22#include "clang/AST/DeclBase.h"
23#include "clang/AST/DeclCXX.h"
25#include "clang/AST/DeclObjC.h"
30#include "clang/AST/Expr.h"
36#include "clang/AST/Stmt.h"
38#include "clang/AST/Type.h"
44#include "clang/Basic/LLVM.h"
45#include "clang/Basic/Lambda.h"
47#include "clang/Basic/Linkage.h"
48#include "clang/Basic/Module.h"
57#include "llvm/ADT/DenseMap.h"
58#include "llvm/ADT/FoldingSet.h"
59#include "llvm/ADT/SmallPtrSet.h"
60#include "llvm/ADT/SmallVector.h"
61#include "llvm/ADT/iterator_range.h"
62#include "llvm/Bitstream/BitstreamReader.h"
63#include "llvm/Support/ErrorHandling.h"
64#include "llvm/Support/SaveAndRestore.h"
65#include <algorithm>
66#include <cassert>
67#include <cstdint>
68#include <cstring>
69#include <string>
70#include <utility>
71
72using namespace clang;
73using namespace serialization;
74
75//===----------------------------------------------------------------------===//
76// Declaration Merging
77//===----------------------------------------------------------------------===//
78
79namespace {
80/// Results from loading a RedeclarableDecl.
81class RedeclarableResult {
82 Decl *MergeWith;
83 GlobalDeclID FirstID;
84 bool IsKeyDecl;
85
86public:
87 RedeclarableResult(Decl *MergeWith, GlobalDeclID FirstID, bool IsKeyDecl)
88 : MergeWith(MergeWith), FirstID(FirstID), IsKeyDecl(IsKeyDecl) {}
89
90 /// Retrieve the first ID.
91 GlobalDeclID getFirstID() const { return FirstID; }
92
93 /// Is this declaration a key declaration?
94 bool isKeyDecl() const { return IsKeyDecl; }
95
96 /// Get a known declaration that this should be merged with, if
97 /// any.
98 Decl *getKnownMergeTarget() const { return MergeWith; }
99};
100} // namespace
101
102namespace clang {
104 ASTReader &Reader;
105
106public:
107 ASTDeclMerger(ASTReader &Reader) : Reader(Reader) {}
108
109 void mergeLambda(CXXRecordDecl *D, RedeclarableResult &Redecl, Decl &Context,
110 unsigned Number);
111
112 /// \param KeyDeclID the decl ID of the key declaration \param D.
113 /// GlobalDeclID() if \param is not a key declaration.
114 /// See the comments of ASTReader::KeyDecls for the explanation
115 /// of key declaration.
116 template <typename T>
117 void mergeRedeclarableImpl(Redeclarable<T> *D, T *Existing,
118 GlobalDeclID KeyDeclID);
119
120 template <typename T>
122 RedeclarableResult &Redecl) {
124 D, Existing, Redecl.isKeyDecl() ? Redecl.getFirstID() : GlobalDeclID());
125 }
126
128 RedeclarableTemplateDecl *Existing, bool IsKeyDecl);
129
131 struct CXXRecordDecl::DefinitionData &&NewDD);
133 struct ObjCInterfaceDecl::DefinitionData &&NewDD);
135 struct ObjCProtocolDecl::DefinitionData &&NewDD);
136};
137} // namespace clang
138
139//===----------------------------------------------------------------------===//
140// Declaration deserialization
141//===----------------------------------------------------------------------===//
142
143namespace clang {
144class ASTDeclReader : public DeclVisitor<ASTDeclReader, void> {
145 ASTReader &Reader;
146 ASTDeclMerger MergeImpl;
147 ASTRecordReader &Record;
148 ASTReader::RecordLocation Loc;
149 const GlobalDeclID ThisDeclID;
150 const SourceLocation ThisDeclLoc;
151
152 using RecordData = ASTReader::RecordData;
153
154 TypeID DeferredTypeID = 0;
155 unsigned AnonymousDeclNumber = 0;
156 GlobalDeclID NamedDeclForTagDecl = GlobalDeclID();
157 IdentifierInfo *TypedefNameForLinkage = nullptr;
158
159 /// A flag to carry the information for a decl from the entity is
160 /// used. We use it to delay the marking of the canonical decl as used until
161 /// the entire declaration is deserialized and merged.
162 bool IsDeclMarkedUsed = false;
163
164 uint64_t GetCurrentCursorOffset();
165
166 uint64_t ReadLocalOffset() {
167 uint64_t LocalOffset = Record.readInt();
168 assert(LocalOffset < Loc.Offset && "offset point after current record");
169 return LocalOffset ? Loc.Offset - LocalOffset : 0;
170 }
171
172 uint64_t ReadGlobalOffset() {
173 uint64_t Local = ReadLocalOffset();
174 return Local ? Record.getGlobalBitOffset(Local) : 0;
175 }
176
177 SourceLocation readSourceLocation() { return Record.readSourceLocation(); }
178
179 SourceRange readSourceRange() { return Record.readSourceRange(); }
180
181 TypeSourceInfo *readTypeSourceInfo() { return Record.readTypeSourceInfo(); }
182
183 GlobalDeclID readDeclID() { return Record.readDeclID(); }
184
185 std::string readString() { return Record.readString(); }
186
187 Decl *readDecl() { return Record.readDecl(); }
188
189 template <typename T> T *readDeclAs() { return Record.readDeclAs<T>(); }
190
191 serialization::SubmoduleID readSubmoduleID() {
192 if (Record.getIdx() == Record.size())
193 return 0;
194
195 return Record.getGlobalSubmoduleID(Record.readInt());
196 }
197
198 Module *readModule() { return Record.getSubmodule(readSubmoduleID()); }
199
200 void ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update,
201 Decl *LambdaContext = nullptr,
202 unsigned IndexInLambdaContext = 0);
203 void ReadCXXDefinitionData(struct CXXRecordDecl::DefinitionData &Data,
204 const CXXRecordDecl *D, Decl *LambdaContext,
205 unsigned IndexInLambdaContext);
206 void ReadObjCDefinitionData(struct ObjCInterfaceDecl::DefinitionData &Data);
207 void ReadObjCDefinitionData(struct ObjCProtocolDecl::DefinitionData &Data);
208
209 static DeclContext *getPrimaryDCForAnonymousDecl(DeclContext *LexicalDC);
210
211 static NamedDecl *getAnonymousDeclForMerging(ASTReader &Reader,
212 DeclContext *DC, unsigned Index);
213 static void setAnonymousDeclForMerging(ASTReader &Reader, DeclContext *DC,
214 unsigned Index, NamedDecl *D);
215
216 /// Commit to a primary definition of the class RD, which is known to be
217 /// a definition of the class. We might not have read the definition data
218 /// for it yet. If we haven't then allocate placeholder definition data
219 /// now too.
220 static CXXRecordDecl *getOrFakePrimaryClassDefinition(ASTReader &Reader,
221 CXXRecordDecl *RD);
222
223 /// Class used to capture the result of searching for an existing
224 /// declaration of a specific kind and name, along with the ability
225 /// to update the place where this result was found (the declaration
226 /// chain hanging off an identifier or the DeclContext we searched in)
227 /// if requested.
228 class FindExistingResult {
229 ASTReader &Reader;
230 NamedDecl *New = nullptr;
231 NamedDecl *Existing = nullptr;
232 bool AddResult = false;
233 unsigned AnonymousDeclNumber = 0;
234 IdentifierInfo *TypedefNameForLinkage = nullptr;
235
236 public:
237 FindExistingResult(ASTReader &Reader) : Reader(Reader) {}
238
239 FindExistingResult(ASTReader &Reader, NamedDecl *New, NamedDecl *Existing,
240 unsigned AnonymousDeclNumber,
241 IdentifierInfo *TypedefNameForLinkage)
242 : Reader(Reader), New(New), Existing(Existing), AddResult(true),
243 AnonymousDeclNumber(AnonymousDeclNumber),
244 TypedefNameForLinkage(TypedefNameForLinkage) {}
245
246 FindExistingResult(FindExistingResult &&Other)
247 : Reader(Other.Reader), New(Other.New), Existing(Other.Existing),
248 AddResult(Other.AddResult),
249 AnonymousDeclNumber(Other.AnonymousDeclNumber),
250 TypedefNameForLinkage(Other.TypedefNameForLinkage) {
251 Other.AddResult = false;
252 }
253
254 FindExistingResult &operator=(FindExistingResult &&) = delete;
255 ~FindExistingResult();
256
257 /// Suppress the addition of this result into the known set of
258 /// names.
259 void suppress() { AddResult = false; }
260
261 operator NamedDecl *() const { return Existing; }
262
263 template <typename T> operator T *() const {
264 return dyn_cast_or_null<T>(Existing);
265 }
266 };
267
268 static DeclContext *getPrimaryContextForMerging(ASTReader &Reader,
269 DeclContext *DC);
270 FindExistingResult findExisting(NamedDecl *D);
271
272public:
274 ASTReader::RecordLocation Loc, GlobalDeclID thisDeclID,
275 SourceLocation ThisDeclLoc)
276 : Reader(Reader), MergeImpl(Reader), Record(Record), Loc(Loc),
277 ThisDeclID(thisDeclID), ThisDeclLoc(ThisDeclLoc) {}
278
279 template <typename DeclT>
281 static Decl *getMostRecentDeclImpl(...);
282 static Decl *getMostRecentDecl(Decl *D);
283
284 template <typename DeclT>
286 Decl *Previous, Decl *Canon);
287 static void attachPreviousDeclImpl(ASTReader &Reader, ...);
288 static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous,
289 Decl *Canon);
290
292 Decl *Previous);
293
294 template <typename DeclT>
295 static void attachLatestDeclImpl(Redeclarable<DeclT> *D, Decl *Latest);
296 static void attachLatestDeclImpl(...);
297 static void attachLatestDecl(Decl *D, Decl *latest);
298
299 template <typename DeclT>
301 static void markIncompleteDeclChainImpl(...);
302
304 llvm::BitstreamCursor &DeclsCursor, bool IsPartial);
305
307 void Visit(Decl *D);
308
309 void UpdateDecl(Decl *D);
310
313 Cat->NextClassCategory = Next;
314 }
315
316 void VisitDecl(Decl *D);
320 void VisitNamedDecl(NamedDecl *ND);
321 void VisitLabelDecl(LabelDecl *LD);
326 void VisitTypeDecl(TypeDecl *TD);
327 RedeclarableResult VisitTypedefNameDecl(TypedefNameDecl *TD);
332 RedeclarableResult VisitTagDecl(TagDecl *TD);
333 void VisitEnumDecl(EnumDecl *ED);
334 RedeclarableResult VisitRecordDeclImpl(RecordDecl *RD);
335 void VisitRecordDecl(RecordDecl *RD);
336 RedeclarableResult VisitCXXRecordDeclImpl(CXXRecordDecl *D);
338 RedeclarableResult
340
341 void
345
348 RedeclarableResult
350
354
358 void VisitValueDecl(ValueDecl *VD);
368 void VisitFieldDecl(FieldDecl *FD);
374 RedeclarableResult VisitVarDeclImpl(VarDecl *D);
375 void ReadVarDeclInit(VarDecl *VD);
384 void
394 void VisitUsingDecl(UsingDecl *D);
410 void VisitBlockDecl(BlockDecl *BD);
413 void VisitEmptyDecl(EmptyDecl *D);
415
418
420
421 template <typename T>
422 RedeclarableResult VisitRedeclarable(Redeclarable<T> *D);
423
424 template <typename T>
425 void mergeRedeclarable(Redeclarable<T> *D, RedeclarableResult &Redecl);
426
428 RedeclarableResult &Redecl);
429
430 template <typename T> void mergeMergeable(Mergeable<T> *D);
431
433
435
436 // FIXME: Reorder according to DeclNodes.td?
457};
458} // namespace clang
459
460namespace {
461
462/// Iterator over the redeclarations of a declaration that have already
463/// been merged into the same redeclaration chain.
464template <typename DeclT> class MergedRedeclIterator {
465 DeclT *Start = nullptr;
466 DeclT *Canonical = nullptr;
467 DeclT *Current = nullptr;
468
469public:
470 MergedRedeclIterator() = default;
471 MergedRedeclIterator(DeclT *Start) : Start(Start), Current(Start) {}
472
473 DeclT *operator*() { return Current; }
474
475 MergedRedeclIterator &operator++() {
476 if (Current->isFirstDecl()) {
477 Canonical = Current;
478 Current = Current->getMostRecentDecl();
479 } else
480 Current = Current->getPreviousDecl();
481
482 // If we started in the merged portion, we'll reach our start position
483 // eventually. Otherwise, we'll never reach it, but the second declaration
484 // we reached was the canonical declaration, so stop when we see that one
485 // again.
486 if (Current == Start || Current == Canonical)
487 Current = nullptr;
488 return *this;
489 }
490
491 friend bool operator!=(const MergedRedeclIterator &A,
492 const MergedRedeclIterator &B) {
493 return A.Current != B.Current;
494 }
495};
496
497} // namespace
498
499template <typename DeclT>
500static llvm::iterator_range<MergedRedeclIterator<DeclT>>
501merged_redecls(DeclT *D) {
502 return llvm::make_range(MergedRedeclIterator<DeclT>(D),
503 MergedRedeclIterator<DeclT>());
504}
505
506uint64_t ASTDeclReader::GetCurrentCursorOffset() {
507 return Loc.F->DeclsCursor.GetCurrentBitNo() + Loc.F->GlobalBitOffset;
508}
509
511 if (Record.readInt()) {
512 Reader.DefinitionSource[FD] =
513 Loc.F->Kind == ModuleKind::MK_MainFile ||
514 Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
515 }
516 if (auto *CD = dyn_cast<CXXConstructorDecl>(FD)) {
517 CD->setNumCtorInitializers(Record.readInt());
518 if (CD->getNumCtorInitializers())
519 CD->CtorInitializers = ReadGlobalOffset();
520 }
521 // Store the offset of the body so we can lazily load it later.
522 Reader.PendingBodies[FD] = GetCurrentCursorOffset();
523 // For now remember ThisDeclarationWasADefinition only for friend functions.
524 if (FD->getFriendObjectKind())
525 Reader.ThisDeclarationWasADefinitionSet.insert(FD);
526}
527
530
531 // At this point we have deserialized and merged the decl and it is safe to
532 // update its canonical decl to signal that the entire entity is used.
533 D->getCanonicalDecl()->Used |= IsDeclMarkedUsed;
534 IsDeclMarkedUsed = false;
535
536 if (auto *DD = dyn_cast<DeclaratorDecl>(D)) {
537 if (auto *TInfo = DD->getTypeSourceInfo())
538 Record.readTypeLoc(TInfo->getTypeLoc());
539 }
540
541 if (auto *TD = dyn_cast<TypeDecl>(D)) {
542 // We have a fully initialized TypeDecl. Read its type now.
544 assert(DeferredTypeID == 0 &&
545 "Deferred type not used for TagDecls and Typedefs");
546 else
547 TD->setTypeForDecl(Reader.GetType(DeferredTypeID).getTypePtrOrNull());
548
549 // If this is a tag declaration with a typedef name for linkage, it's safe
550 // to load that typedef now.
551 if (NamedDeclForTagDecl.isValid())
552 cast<TagDecl>(D)->TypedefNameDeclOrQualifier =
553 cast<TypedefNameDecl>(Reader.GetDecl(NamedDeclForTagDecl));
554 } else if (auto *ID = dyn_cast<ObjCInterfaceDecl>(D)) {
555 // if we have a fully initialized TypeDecl, we can safely read its type now.
556 ID->TypeForDecl = Reader.GetType(DeferredTypeID).getTypePtrOrNull();
557 } else if (auto *FD = dyn_cast<FunctionDecl>(D)) {
558 // FunctionDecl's body was written last after all other Stmts/Exprs.
559 if (Record.readInt())
561 } else if (auto *VD = dyn_cast<VarDecl>(D)) {
562 ReadVarDeclInit(VD);
563 } else if (auto *FD = dyn_cast<FieldDecl>(D)) {
564 if (FD->hasInClassInitializer() && Record.readInt()) {
565 FD->setLazyInClassInitializer(LazyDeclStmtPtr(GetCurrentCursorOffset()));
566 }
567 }
568}
569
571 BitsUnpacker DeclBits(Record.readInt());
572 auto ModuleOwnership =
573 (Decl::ModuleOwnershipKind)DeclBits.getNextBits(/*Width=*/3);
574 D->setReferenced(DeclBits.getNextBit());
575 D->Used = DeclBits.getNextBit();
576 IsDeclMarkedUsed |= D->Used;
577 D->setAccess((AccessSpecifier)DeclBits.getNextBits(/*Width=*/2));
578 D->setImplicit(DeclBits.getNextBit());
579 bool HasStandaloneLexicalDC = DeclBits.getNextBit();
580 bool HasAttrs = DeclBits.getNextBit();
582 D->InvalidDecl = DeclBits.getNextBit();
583 D->FromASTFile = true;
584
587 // We don't want to deserialize the DeclContext of a template
588 // parameter or of a parameter of a function template immediately. These
589 // entities might be used in the formulation of its DeclContext (for
590 // example, a function parameter can be used in decltype() in trailing
591 // return type of the function). Use the translation unit DeclContext as a
592 // placeholder.
593 GlobalDeclID SemaDCIDForTemplateParmDecl = readDeclID();
594 GlobalDeclID LexicalDCIDForTemplateParmDecl =
595 HasStandaloneLexicalDC ? readDeclID() : GlobalDeclID();
596 if (LexicalDCIDForTemplateParmDecl.isInvalid())
597 LexicalDCIDForTemplateParmDecl = SemaDCIDForTemplateParmDecl;
598 Reader.addPendingDeclContextInfo(D,
599 SemaDCIDForTemplateParmDecl,
600 LexicalDCIDForTemplateParmDecl);
601 D->setDeclContext(Reader.getContext().getTranslationUnitDecl());
602 } else {
603 auto *SemaDC = readDeclAs<DeclContext>();
604 auto *LexicalDC =
605 HasStandaloneLexicalDC ? readDeclAs<DeclContext>() : nullptr;
606 if (!LexicalDC)
607 LexicalDC = SemaDC;
608 // If the context is a class, we might not have actually merged it yet, in
609 // the case where the definition comes from an update record.
610 DeclContext *MergedSemaDC;
611 if (auto *RD = dyn_cast<CXXRecordDecl>(SemaDC))
612 MergedSemaDC = getOrFakePrimaryClassDefinition(Reader, RD);
613 else
614 MergedSemaDC = Reader.MergedDeclContexts.lookup(SemaDC);
615 // Avoid calling setLexicalDeclContext() directly because it uses
616 // Decl::getASTContext() internally which is unsafe during derialization.
617 D->setDeclContextsImpl(MergedSemaDC ? MergedSemaDC : SemaDC, LexicalDC,
618 Reader.getContext());
619 }
620 D->setLocation(ThisDeclLoc);
621
622 if (HasAttrs) {
623 AttrVec Attrs;
624 Record.readAttributes(Attrs);
625 // Avoid calling setAttrs() directly because it uses Decl::getASTContext()
626 // internally which is unsafe during derialization.
627 D->setAttrsImpl(Attrs, Reader.getContext());
628 }
629
630 // Determine whether this declaration is part of a (sub)module. If so, it
631 // may not yet be visible.
632 bool ModulePrivate =
633 (ModuleOwnership == Decl::ModuleOwnershipKind::ModulePrivate);
634 if (unsigned SubmoduleID = readSubmoduleID()) {
635 switch (ModuleOwnership) {
638 break;
644 break;
645 }
646
647 D->setModuleOwnershipKind(ModuleOwnership);
648 // Store the owning submodule ID in the declaration.
650
651 if (ModulePrivate) {
652 // Module-private declarations are never visible, so there is no work to
653 // do.
654 } else if (Reader.getContext().getLangOpts().ModulesLocalVisibility) {
655 // If local visibility is being tracked, this declaration will become
656 // hidden and visible as the owning module does.
657 } else if (Module *Owner = Reader.getSubmodule(SubmoduleID)) {
658 // Mark the declaration as visible when its owning module becomes visible.
659 if (Owner->NameVisibility == Module::AllVisible)
661 else
662 Reader.HiddenNamesMap[Owner].push_back(D);
663 }
664 } else if (ModulePrivate) {
666 }
667}
668
670 VisitDecl(D);
671 D->setLocation(readSourceLocation());
672 D->CommentKind = (PragmaMSCommentKind)Record.readInt();
673 std::string Arg = readString();
674 memcpy(D->getTrailingObjects(), Arg.data(), Arg.size());
675 D->getTrailingObjects()[Arg.size()] = '\0';
676}
677
679 VisitDecl(D);
680 D->setLocation(readSourceLocation());
681 std::string Name = readString();
682 memcpy(D->getTrailingObjects(), Name.data(), Name.size());
683 D->getTrailingObjects()[Name.size()] = '\0';
684
685 D->ValueStart = Name.size() + 1;
686 std::string Value = readString();
687 memcpy(D->getTrailingObjects() + D->ValueStart, Value.data(), Value.size());
688 D->getTrailingObjects()[D->ValueStart + Value.size()] = '\0';
689}
690
692 llvm_unreachable("Translation units are not serialized");
693}
694
696 VisitDecl(ND);
697 ND->setDeclName(Record.readDeclarationName());
698 AnonymousDeclNumber = Record.readInt();
699}
700
702 VisitNamedDecl(TD);
703 TD->setLocStart(readSourceLocation());
704 // Delay type reading until after we have fully initialized the decl.
706 DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
707}
708
710 RedeclarableResult Redecl = VisitRedeclarable(TD);
711 VisitTypeDecl(TD);
712 TypeSourceInfo *TInfo = readTypeSourceInfo();
713 if (Record.readInt()) { // isModed
714 QualType modedT = Record.readType();
715 TD->setModedTypeSourceInfo(TInfo, modedT);
716 } else
717 TD->setTypeSourceInfo(TInfo);
718 // Read and discard the declaration for which this is a typedef name for
719 // linkage, if it exists. We cannot rely on our type to pull in this decl,
720 // because it might have been merged with a type from another module and
721 // thus might not refer to our version of the declaration.
722 readDecl();
723 return Redecl;
724}
725
727 RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
728 mergeRedeclarable(TD, Redecl);
729}
730
732 RedeclarableResult Redecl = VisitTypedefNameDecl(TD);
733 if (auto *Template = readDeclAs<TypeAliasTemplateDecl>())
734 // Merged when we merge the template.
736 else
737 mergeRedeclarable(TD, Redecl);
738}
739
740RedeclarableResult ASTDeclReader::VisitTagDecl(TagDecl *TD) {
741 RedeclarableResult Redecl = VisitRedeclarable(TD);
742 VisitTypeDecl(TD);
743
744 TD->IdentifierNamespace = Record.readInt();
745
746 BitsUnpacker TagDeclBits(Record.readInt());
747 TD->setTagKind(
748 static_cast<TagTypeKind>(TagDeclBits.getNextBits(/*Width=*/3)));
749 TD->setCompleteDefinition(TagDeclBits.getNextBit());
750 TD->setEmbeddedInDeclarator(TagDeclBits.getNextBit());
751 TD->setFreeStanding(TagDeclBits.getNextBit());
752 TD->setCompleteDefinitionRequired(TagDeclBits.getNextBit());
753 TD->setBraceRange(readSourceRange());
754
755 switch (TagDeclBits.getNextBits(/*Width=*/2)) {
756 case 0:
757 break;
758 case 1: { // ExtInfo
759 auto *Info = new (Reader.getContext()) TagDecl::ExtInfo();
760 Record.readQualifierInfo(*Info);
761 TD->TypedefNameDeclOrQualifier = Info;
762 break;
763 }
764 case 2: // TypedefNameForAnonDecl
765 NamedDeclForTagDecl = readDeclID();
766 TypedefNameForLinkage = Record.readIdentifier();
767 break;
768 default:
769 llvm_unreachable("unexpected tag info kind");
770 }
771
772 if (!isa<CXXRecordDecl>(TD))
773 mergeRedeclarable(TD, Redecl);
774 return Redecl;
775}
776
778 VisitTagDecl(ED);
779 if (TypeSourceInfo *TI = readTypeSourceInfo())
781 else
782 ED->setIntegerType(Record.readType());
783 ED->setPromotionType(Record.readType());
784
785 BitsUnpacker EnumDeclBits(Record.readInt());
786 ED->setNumPositiveBits(EnumDeclBits.getNextBits(/*Width=*/8));
787 ED->setNumNegativeBits(EnumDeclBits.getNextBits(/*Width=*/8));
788 ED->setScoped(EnumDeclBits.getNextBit());
789 ED->setScopedUsingClassTag(EnumDeclBits.getNextBit());
790 ED->setFixed(EnumDeclBits.getNextBit());
791
792 ED->setHasODRHash(true);
793 ED->ODRHash = Record.readInt();
794
795 // If this is a definition subject to the ODR, and we already have a
796 // definition, merge this one into it.
797 if (ED->isCompleteDefinition() && Reader.getContext().getLangOpts().Modules) {
798 EnumDecl *&OldDef = Reader.EnumDefinitions[ED->getCanonicalDecl()];
799 if (!OldDef) {
800 // This is the first time we've seen an imported definition. Look for a
801 // local definition before deciding that we are the first definition.
802 for (auto *D : merged_redecls(ED->getCanonicalDecl())) {
803 if (!D->isFromASTFile() && D->isCompleteDefinition()) {
804 OldDef = D;
805 break;
806 }
807 }
808 }
809 if (OldDef) {
810 Reader.MergedDeclContexts.insert(std::make_pair(ED, OldDef));
812 Reader.mergeDefinitionVisibility(OldDef, ED);
813 // We don't want to check the ODR hash value for declarations from global
814 // module fragment.
815 if (!shouldSkipCheckingODR(ED) && !shouldSkipCheckingODR(OldDef) &&
816 OldDef->getODRHash() != ED->getODRHash())
817 Reader.PendingEnumOdrMergeFailures[OldDef].push_back(ED);
818 } else {
819 OldDef = ED;
820 }
821 }
822
823 if (auto *InstED = readDeclAs<EnumDecl>()) {
824 auto TSK = (TemplateSpecializationKind)Record.readInt();
825 SourceLocation POI = readSourceLocation();
826 ED->setInstantiationOfMemberEnum(Reader.getContext(), InstED, TSK);
828 }
829}
830
832 RedeclarableResult Redecl = VisitTagDecl(RD);
833
834 BitsUnpacker RecordDeclBits(Record.readInt());
835 RD->setHasFlexibleArrayMember(RecordDeclBits.getNextBit());
836 RD->setAnonymousStructOrUnion(RecordDeclBits.getNextBit());
837 RD->setHasObjectMember(RecordDeclBits.getNextBit());
838 RD->setHasVolatileMember(RecordDeclBits.getNextBit());
840 RD->setNonTrivialToPrimitiveCopy(RecordDeclBits.getNextBit());
841 RD->setNonTrivialToPrimitiveDestroy(RecordDeclBits.getNextBit());
843 RecordDeclBits.getNextBit());
847 RD->setParamDestroyedInCallee(RecordDeclBits.getNextBit());
849 (RecordArgPassingKind)RecordDeclBits.getNextBits(/*Width=*/2));
850 return Redecl;
851}
852
855 RD->setODRHash(Record.readInt());
856
857 // Maintain the invariant of a redeclaration chain containing only
858 // a single definition.
859 if (RD->isCompleteDefinition()) {
860 RecordDecl *Canon = static_cast<RecordDecl *>(RD->getCanonicalDecl());
861 RecordDecl *&OldDef = Reader.RecordDefinitions[Canon];
862 if (!OldDef) {
863 // This is the first time we've seen an imported definition. Look for a
864 // local definition before deciding that we are the first definition.
865 for (auto *D : merged_redecls(Canon)) {
866 if (!D->isFromASTFile() && D->isCompleteDefinition()) {
867 OldDef = D;
868 break;
869 }
870 }
871 }
872 if (OldDef) {
873 Reader.MergedDeclContexts.insert(std::make_pair(RD, OldDef));
875 Reader.mergeDefinitionVisibility(OldDef, RD);
876 if (OldDef->getODRHash() != RD->getODRHash())
877 Reader.PendingRecordOdrMergeFailures[OldDef].push_back(RD);
878 } else {
879 OldDef = RD;
880 }
881 }
882}
883
885 VisitNamedDecl(VD);
886 // For function or variable declarations, defer reading the type in case the
887 // declaration has a deduced type that references an entity declared within
888 // the function definition or variable initializer.
890 DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
891 else
892 VD->setType(Record.readType());
893}
894
896 VisitValueDecl(ECD);
897 if (Record.readInt())
898 ECD->setInitExpr(Record.readExpr());
899 ECD->setInitVal(Reader.getContext(), Record.readAPSInt());
900 mergeMergeable(ECD);
901}
902
904 VisitValueDecl(DD);
905 DD->setInnerLocStart(readSourceLocation());
906 if (Record.readInt()) { // hasExtInfo
907 auto *Info = new (Reader.getContext()) DeclaratorDecl::ExtInfo();
908 Record.readQualifierInfo(*Info);
909 Info->TrailingRequiresClause = AssociatedConstraint(
910 Record.readExpr(),
911 UnsignedOrNone::fromInternalRepresentation(Record.readUInt32()));
912 DD->DeclInfo = Info;
913 }
914 QualType TSIType = Record.readType();
916 TSIType.isNull() ? nullptr
917 : Reader.getContext().CreateTypeSourceInfo(TSIType));
918}
919
921 RedeclarableResult Redecl = VisitRedeclarable(FD);
922
923 FunctionDecl *Existing = nullptr;
924
925 switch ((FunctionDecl::TemplatedKind)Record.readInt()) {
927 break;
929 FD->setInstantiatedFromDecl(readDeclAs<FunctionDecl>());
930 break;
932 auto *Template = readDeclAs<FunctionTemplateDecl>();
933 Template->init(FD);
935 break;
936 }
938 auto *InstFD = readDeclAs<FunctionDecl>();
939 auto TSK = (TemplateSpecializationKind)Record.readInt();
940 SourceLocation POI = readSourceLocation();
941 FD->setInstantiationOfMemberFunction(Reader.getContext(), InstFD, TSK);
943 break;
944 }
946 auto *Template = readDeclAs<FunctionTemplateDecl>();
947 auto TSK = (TemplateSpecializationKind)Record.readInt();
948
949 // Template arguments.
951 Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
952
953 // Template args as written.
954 TemplateArgumentListInfo TemplArgsWritten;
955 bool HasTemplateArgumentsAsWritten = Record.readBool();
956 if (HasTemplateArgumentsAsWritten)
957 Record.readTemplateArgumentListInfo(TemplArgsWritten);
958
959 SourceLocation POI = readSourceLocation();
960
961 ASTContext &C = Reader.getContext();
962 TemplateArgumentList *TemplArgList =
964
965 MemberSpecializationInfo *MSInfo = nullptr;
966 if (Record.readInt()) {
967 auto *FD = readDeclAs<FunctionDecl>();
968 auto TSK = (TemplateSpecializationKind)Record.readInt();
969 SourceLocation POI = readSourceLocation();
970
971 MSInfo = new (C) MemberSpecializationInfo(FD, TSK);
972 MSInfo->setPointOfInstantiation(POI);
973 }
974
977 C, FD, Template, TSK, TemplArgList,
978 HasTemplateArgumentsAsWritten ? &TemplArgsWritten : nullptr, POI,
979 MSInfo);
980 FD->TemplateOrSpecialization = FTInfo;
981
982 if (FD->isCanonicalDecl()) { // if canonical add to template's set.
983 // The template that contains the specializations set. It's not safe to
984 // use getCanonicalDecl on Template since it may still be initializing.
985 auto *CanonTemplate = readDeclAs<FunctionTemplateDecl>();
986 // Get the InsertPos by FindNodeOrInsertPos() instead of calling
987 // InsertNode(FTInfo) directly to avoid the getASTContext() call in
988 // FunctionTemplateSpecializationInfo's Profile().
989 // We avoid getASTContext because a decl in the parent hierarchy may
990 // be initializing.
991 llvm::FoldingSetNodeID ID;
993 void *InsertPos = nullptr;
994 FunctionTemplateDecl::Common *CommonPtr = CanonTemplate->getCommonPtr();
996 CommonPtr->Specializations.FindNodeOrInsertPos(ID, InsertPos);
997 if (InsertPos)
998 CommonPtr->Specializations.InsertNode(FTInfo, InsertPos);
999 else {
1000 Existing = ExistingInfo->getFunction();
1001 }
1002 }
1003 break;
1004 }
1006 // Templates.
1007 UnresolvedSet<8> Candidates;
1008 unsigned NumCandidates = Record.readInt();
1009 while (NumCandidates--)
1010 Candidates.addDecl(readDeclAs<NamedDecl>());
1011
1012 // Templates args.
1013 TemplateArgumentListInfo TemplArgsWritten;
1014 bool HasTemplateArgumentsAsWritten = Record.readBool();
1015 if (HasTemplateArgumentsAsWritten)
1016 Record.readTemplateArgumentListInfo(TemplArgsWritten);
1017
1019 Reader.getContext(), Candidates,
1020 HasTemplateArgumentsAsWritten ? &TemplArgsWritten : nullptr);
1021 // These are not merged; we don't need to merge redeclarations of dependent
1022 // template friends.
1023 break;
1024 }
1025 }
1026
1028
1029 // Attach a type to this function. Use the real type if possible, but fall
1030 // back to the type as written if it involves a deduced return type.
1031 if (FD->getTypeSourceInfo() && FD->getTypeSourceInfo()
1032 ->getType()
1033 ->castAs<FunctionType>()
1034 ->getReturnType()
1036 // We'll set up the real type in Visit, once we've finished loading the
1037 // function.
1038 FD->setType(FD->getTypeSourceInfo()->getType());
1039 Reader.PendingDeducedFunctionTypes.push_back({FD, DeferredTypeID});
1040 } else {
1041 FD->setType(Reader.GetType(DeferredTypeID));
1042 }
1043 DeferredTypeID = 0;
1044
1045 FD->DNLoc = Record.readDeclarationNameLoc(FD->getDeclName());
1046 FD->IdentifierNamespace = Record.readInt();
1047
1048 // FunctionDecl's body is handled last at ASTDeclReader::Visit,
1049 // after everything else is read.
1050 BitsUnpacker FunctionDeclBits(Record.readInt());
1051
1052 FD->setCachedLinkage((Linkage)FunctionDeclBits.getNextBits(/*Width=*/3));
1053 FD->setStorageClass((StorageClass)FunctionDeclBits.getNextBits(/*Width=*/3));
1054 FD->setInlineSpecified(FunctionDeclBits.getNextBit());
1055 FD->setImplicitlyInline(FunctionDeclBits.getNextBit());
1056 FD->setHasSkippedBody(FunctionDeclBits.getNextBit());
1057 FD->setVirtualAsWritten(FunctionDeclBits.getNextBit());
1058 // We defer calling `FunctionDecl::setPure()` here as for methods of
1059 // `CXXTemplateSpecializationDecl`s, we may not have connected up the
1060 // definition (which is required for `setPure`).
1061 const bool Pure = FunctionDeclBits.getNextBit();
1062 FD->setHasInheritedPrototype(FunctionDeclBits.getNextBit());
1063 FD->setHasWrittenPrototype(FunctionDeclBits.getNextBit());
1064 FD->setDeletedAsWritten(FunctionDeclBits.getNextBit());
1065 FD->setTrivial(FunctionDeclBits.getNextBit());
1066 FD->setTrivialForCall(FunctionDeclBits.getNextBit());
1067 FD->setDefaulted(FunctionDeclBits.getNextBit());
1068 FD->setExplicitlyDefaulted(FunctionDeclBits.getNextBit());
1069 FD->setIneligibleOrNotSelected(FunctionDeclBits.getNextBit());
1070 FD->setConstexprKind(
1071 (ConstexprSpecKind)FunctionDeclBits.getNextBits(/*Width=*/2));
1072 FD->setHasImplicitReturnZero(FunctionDeclBits.getNextBit());
1073 FD->setIsMultiVersion(FunctionDeclBits.getNextBit());
1074 FD->setLateTemplateParsed(FunctionDeclBits.getNextBit());
1075 FD->setInstantiatedFromMemberTemplate(FunctionDeclBits.getNextBit());
1077 FunctionDeclBits.getNextBit());
1078 FD->setUsesSEHTry(FunctionDeclBits.getNextBit());
1079 FD->setIsDestroyingOperatorDelete(FunctionDeclBits.getNextBit());
1080 FD->setIsTypeAwareOperatorNewOrDelete(FunctionDeclBits.getNextBit());
1081
1082 FD->EndRangeLoc = readSourceLocation();
1083 if (FD->isExplicitlyDefaulted())
1084 FD->setDefaultLoc(readSourceLocation());
1085
1086 FD->ODRHash = Record.readInt();
1087 FD->setHasODRHash(true);
1088
1089 if (FD->isDefaulted() || FD->isDeletedAsWritten()) {
1090 // If 'Info' is nonzero, we need to read an DefaultedOrDeletedInfo; if,
1091 // additionally, the second bit is also set, we also need to read
1092 // a DeletedMessage for the DefaultedOrDeletedInfo.
1093 if (auto Info = Record.readInt()) {
1094 bool HasMessage = Info & 2;
1095 StringLiteral *DeletedMessage =
1096 HasMessage ? cast<StringLiteral>(Record.readExpr()) : nullptr;
1097
1098 FPOptionsOverride FPFeatures =
1099 FPOptionsOverride::getFromOpaqueInt(Record.readInt());
1100
1101 unsigned NumLookups = Record.readInt();
1103 for (unsigned I = 0; I != NumLookups; ++I) {
1104 NamedDecl *ND = Record.readDeclAs<NamedDecl>();
1105 AccessSpecifier AS = (AccessSpecifier)Record.readInt();
1106 Lookups.push_back(DeclAccessPair::make(ND, AS));
1107 }
1108
1111 Reader.getContext(), Lookups, FPFeatures, DeletedMessage));
1112 }
1113 }
1114
1115 if (Existing)
1116 MergeImpl.mergeRedeclarable(FD, Existing, Redecl);
1117 else if (auto Kind = FD->getTemplatedKind();
1120 // Function Templates have their FunctionTemplateDecls merged instead of
1121 // their FunctionDecls.
1122 auto merge = [this, &Redecl, FD](auto &&F) {
1123 auto *Existing = cast_or_null<FunctionDecl>(Redecl.getKnownMergeTarget());
1124 RedeclarableResult NewRedecl(Existing ? F(Existing) : nullptr,
1125 Redecl.getFirstID(), Redecl.isKeyDecl());
1126 mergeRedeclarableTemplate(F(FD), NewRedecl);
1127 };
1129 merge(
1130 [](FunctionDecl *FD) { return FD->getDescribedFunctionTemplate(); });
1131 else
1132 merge([](FunctionDecl *FD) {
1134 });
1135 } else
1136 mergeRedeclarable(FD, Redecl);
1137
1138 // Defer calling `setPure` until merging above has guaranteed we've set
1139 // `DefinitionData` (as this will need to access it).
1140 FD->setIsPureVirtual(Pure);
1141
1142 // Read in the parameters.
1143 unsigned NumParams = Record.readInt();
1145 Params.reserve(NumParams);
1146 for (unsigned I = 0; I != NumParams; ++I)
1147 Params.push_back(readDeclAs<ParmVarDecl>());
1148 FD->setParams(Reader.getContext(), Params);
1149
1150 // If the declaration is a SYCL kernel entry point function as indicated by
1151 // the presence of a sycl_kernel_entry_point attribute, register it so that
1152 // associated metadata is recreated.
1153 if (FD->hasAttr<SYCLKernelEntryPointAttr>()) {
1154 auto *SKEPAttr = FD->getAttr<SYCLKernelEntryPointAttr>();
1155 ASTContext &C = Reader.getContext();
1156 const SYCLKernelInfo *SKI = C.findSYCLKernelInfo(SKEPAttr->getKernelName());
1157 if (SKI) {
1159 Reader.Diag(FD->getLocation(), diag::err_sycl_kernel_name_conflict)
1160 << SKEPAttr;
1161 Reader.Diag(SKI->getKernelEntryPointDecl()->getLocation(),
1162 diag::note_previous_declaration);
1163 SKEPAttr->setInvalidAttr();
1164 }
1165 } else {
1166 C.registerSYCLEntryPointFunction(FD);
1167 }
1168 }
1169}
1170
1172 VisitNamedDecl(MD);
1173 if (Record.readInt()) {
1174 // Load the body on-demand. Most clients won't care, because method
1175 // definitions rarely show up in headers.
1176 Reader.PendingBodies[MD] = GetCurrentCursorOffset();
1177 }
1178 MD->setSelfDecl(readDeclAs<ImplicitParamDecl>());
1179 MD->setCmdDecl(readDeclAs<ImplicitParamDecl>());
1180 MD->setInstanceMethod(Record.readInt());
1181 MD->setVariadic(Record.readInt());
1182 MD->setPropertyAccessor(Record.readInt());
1183 MD->setSynthesizedAccessorStub(Record.readInt());
1184 MD->setDefined(Record.readInt());
1185 MD->setOverriding(Record.readInt());
1186 MD->setHasSkippedBody(Record.readInt());
1187
1188 MD->setIsRedeclaration(Record.readInt());
1189 MD->setHasRedeclaration(Record.readInt());
1190 if (MD->hasRedeclaration())
1191 Reader.getContext().setObjCMethodRedeclaration(MD,
1192 readDeclAs<ObjCMethodDecl>());
1193
1195 static_cast<ObjCImplementationControl>(Record.readInt()));
1196 MD->setObjCDeclQualifier((Decl::ObjCDeclQualifier)Record.readInt());
1197 MD->setRelatedResultType(Record.readInt());
1198 MD->setReturnType(Record.readType());
1199 MD->setReturnTypeSourceInfo(readTypeSourceInfo());
1200 MD->DeclEndLoc = readSourceLocation();
1201 unsigned NumParams = Record.readInt();
1203 Params.reserve(NumParams);
1204 for (unsigned I = 0; I != NumParams; ++I)
1205 Params.push_back(readDeclAs<ParmVarDecl>());
1206
1207 MD->setSelLocsKind((SelectorLocationsKind)Record.readInt());
1208 unsigned NumStoredSelLocs = Record.readInt();
1210 SelLocs.reserve(NumStoredSelLocs);
1211 for (unsigned i = 0; i != NumStoredSelLocs; ++i)
1212 SelLocs.push_back(readSourceLocation());
1213
1214 MD->setParamsAndSelLocs(Reader.getContext(), Params, SelLocs);
1215}
1216
1219
1220 D->Variance = Record.readInt();
1221 D->Index = Record.readInt();
1222 D->VarianceLoc = readSourceLocation();
1223 D->ColonLoc = readSourceLocation();
1224}
1225
1227 VisitNamedDecl(CD);
1228 CD->setAtStartLoc(readSourceLocation());
1229 CD->setAtEndRange(readSourceRange());
1230}
1231
1233 unsigned numParams = Record.readInt();
1234 if (numParams == 0)
1235 return nullptr;
1236
1238 typeParams.reserve(numParams);
1239 for (unsigned i = 0; i != numParams; ++i) {
1240 auto *typeParam = readDeclAs<ObjCTypeParamDecl>();
1241 if (!typeParam)
1242 return nullptr;
1243
1244 typeParams.push_back(typeParam);
1245 }
1246
1247 SourceLocation lAngleLoc = readSourceLocation();
1248 SourceLocation rAngleLoc = readSourceLocation();
1249
1250 return ObjCTypeParamList::create(Reader.getContext(), lAngleLoc,
1251 typeParams, rAngleLoc);
1252}
1253
1254void ASTDeclReader::ReadObjCDefinitionData(
1255 struct ObjCInterfaceDecl::DefinitionData &Data) {
1256 // Read the superclass.
1257 Data.SuperClassTInfo = readTypeSourceInfo();
1258
1259 Data.EndLoc = readSourceLocation();
1260 Data.HasDesignatedInitializers = Record.readInt();
1261 Data.ODRHash = Record.readInt();
1262 Data.HasODRHash = true;
1263
1264 // Read the directly referenced protocols and their SourceLocations.
1265 unsigned NumProtocols = Record.readInt();
1267 Protocols.reserve(NumProtocols);
1268 for (unsigned I = 0; I != NumProtocols; ++I)
1269 Protocols.push_back(readDeclAs<ObjCProtocolDecl>());
1271 ProtoLocs.reserve(NumProtocols);
1272 for (unsigned I = 0; I != NumProtocols; ++I)
1273 ProtoLocs.push_back(readSourceLocation());
1274 Data.ReferencedProtocols.set(Protocols.data(), NumProtocols, ProtoLocs.data(),
1275 Reader.getContext());
1276
1277 // Read the transitive closure of protocols referenced by this class.
1278 NumProtocols = Record.readInt();
1279 Protocols.clear();
1280 Protocols.reserve(NumProtocols);
1281 for (unsigned I = 0; I != NumProtocols; ++I)
1282 Protocols.push_back(readDeclAs<ObjCProtocolDecl>());
1283 Data.AllReferencedProtocols.set(Protocols.data(), NumProtocols,
1284 Reader.getContext());
1285}
1286
1288 ObjCInterfaceDecl *D, struct ObjCInterfaceDecl::DefinitionData &&NewDD) {
1289 struct ObjCInterfaceDecl::DefinitionData &DD = D->data();
1290 if (DD.Definition == NewDD.Definition)
1291 return;
1292
1293 Reader.MergedDeclContexts.insert(
1294 std::make_pair(NewDD.Definition, DD.Definition));
1295 Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition);
1296
1297 if (D->getODRHash() != NewDD.ODRHash)
1298 Reader.PendingObjCInterfaceOdrMergeFailures[DD.Definition].push_back(
1299 {NewDD.Definition, &NewDD});
1300}
1301
1303 RedeclarableResult Redecl = VisitRedeclarable(ID);
1305 DeferredTypeID = Record.getGlobalTypeID(Record.readInt());
1306 mergeRedeclarable(ID, Redecl);
1307
1308 ID->TypeParamList = ReadObjCTypeParamList();
1309 if (Record.readInt()) {
1310 // Read the definition.
1311 ID->allocateDefinitionData();
1312
1313 ReadObjCDefinitionData(ID->data());
1314 ObjCInterfaceDecl *Canon = ID->getCanonicalDecl();
1315 if (Canon->Data.getPointer()) {
1316 // If we already have a definition, keep the definition invariant and
1317 // merge the data.
1318 MergeImpl.MergeDefinitionData(Canon, std::move(ID->data()));
1319 ID->Data = Canon->Data;
1320 } else {
1321 // Set the definition data of the canonical declaration, so other
1322 // redeclarations will see it.
1323 ID->getCanonicalDecl()->Data = ID->Data;
1324
1325 // We will rebuild this list lazily.
1326 ID->setIvarList(nullptr);
1327 }
1328
1329 // Note that we have deserialized a definition.
1330 Reader.PendingDefinitions.insert(ID);
1331
1332 // Note that we've loaded this Objective-C class.
1333 Reader.ObjCClassesLoaded.push_back(ID);
1334 } else {
1335 ID->Data = ID->getCanonicalDecl()->Data;
1336 }
1337}
1338
1340 VisitFieldDecl(IVD);
1341 IVD->setAccessControl((ObjCIvarDecl::AccessControl)Record.readInt());
1342 // This field will be built lazily.
1343 IVD->setNextIvar(nullptr);
1344 bool synth = Record.readInt();
1345 IVD->setSynthesize(synth);
1346
1347 // Check ivar redeclaration.
1348 if (IVD->isInvalidDecl())
1349 return;
1350 // Don't check ObjCInterfaceDecl as interfaces are named and mismatches can be
1351 // detected in VisitObjCInterfaceDecl. Here we are looking for redeclarations
1352 // in extensions.
1354 return;
1355 ObjCInterfaceDecl *CanonIntf =
1357 IdentifierInfo *II = IVD->getIdentifier();
1358 ObjCIvarDecl *PrevIvar = CanonIntf->lookupInstanceVariable(II);
1359 if (PrevIvar && PrevIvar != IVD) {
1360 auto *ParentExt = dyn_cast<ObjCCategoryDecl>(IVD->getDeclContext());
1361 auto *PrevParentExt =
1362 dyn_cast<ObjCCategoryDecl>(PrevIvar->getDeclContext());
1363 if (ParentExt && PrevParentExt) {
1364 // Postpone diagnostic as we should merge identical extensions from
1365 // different modules.
1366 Reader
1367 .PendingObjCExtensionIvarRedeclarations[std::make_pair(ParentExt,
1368 PrevParentExt)]
1369 .push_back(std::make_pair(IVD, PrevIvar));
1370 } else if (ParentExt || PrevParentExt) {
1371 // Duplicate ivars in extension + implementation are never compatible.
1372 // Compatibility of implementation + implementation should be handled in
1373 // VisitObjCImplementationDecl.
1374 Reader.Diag(IVD->getLocation(), diag::err_duplicate_ivar_declaration)
1375 << II;
1376 Reader.Diag(PrevIvar->getLocation(), diag::note_previous_definition);
1377 }
1378 }
1379}
1380
1381void ASTDeclReader::ReadObjCDefinitionData(
1382 struct ObjCProtocolDecl::DefinitionData &Data) {
1383 unsigned NumProtoRefs = Record.readInt();
1385 ProtoRefs.reserve(NumProtoRefs);
1386 for (unsigned I = 0; I != NumProtoRefs; ++I)
1387 ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>());
1389 ProtoLocs.reserve(NumProtoRefs);
1390 for (unsigned I = 0; I != NumProtoRefs; ++I)
1391 ProtoLocs.push_back(readSourceLocation());
1392 Data.ReferencedProtocols.set(ProtoRefs.data(), NumProtoRefs,
1393 ProtoLocs.data(), Reader.getContext());
1394 Data.ODRHash = Record.readInt();
1395 Data.HasODRHash = true;
1396}
1397
1399 ObjCProtocolDecl *D, struct ObjCProtocolDecl::DefinitionData &&NewDD) {
1400 struct ObjCProtocolDecl::DefinitionData &DD = D->data();
1401 if (DD.Definition == NewDD.Definition)
1402 return;
1403
1404 Reader.MergedDeclContexts.insert(
1405 std::make_pair(NewDD.Definition, DD.Definition));
1406 Reader.mergeDefinitionVisibility(DD.Definition, NewDD.Definition);
1407
1408 if (D->getODRHash() != NewDD.ODRHash)
1409 Reader.PendingObjCProtocolOdrMergeFailures[DD.Definition].push_back(
1410 {NewDD.Definition, &NewDD});
1411}
1412
1414 RedeclarableResult Redecl = VisitRedeclarable(PD);
1416 mergeRedeclarable(PD, Redecl);
1417
1418 if (Record.readInt()) {
1419 // Read the definition.
1420 PD->allocateDefinitionData();
1421
1422 ReadObjCDefinitionData(PD->data());
1423
1424 ObjCProtocolDecl *Canon = PD->getCanonicalDecl();
1425 if (Canon->Data.getPointer()) {
1426 // If we already have a definition, keep the definition invariant and
1427 // merge the data.
1428 MergeImpl.MergeDefinitionData(Canon, std::move(PD->data()));
1429 PD->Data = Canon->Data;
1430 } else {
1431 // Set the definition data of the canonical declaration, so other
1432 // redeclarations will see it.
1433 PD->getCanonicalDecl()->Data = PD->Data;
1434 }
1435 // Note that we have deserialized a definition.
1436 Reader.PendingDefinitions.insert(PD);
1437 } else {
1438 PD->Data = PD->getCanonicalDecl()->Data;
1439 }
1440}
1441
1445
1448 CD->setCategoryNameLoc(readSourceLocation());
1449 CD->setIvarLBraceLoc(readSourceLocation());
1450 CD->setIvarRBraceLoc(readSourceLocation());
1451
1452 // Note that this category has been deserialized. We do this before
1453 // deserializing the interface declaration, so that it will consider this
1454 /// category.
1455 Reader.CategoriesDeserialized.insert(CD);
1456
1457 CD->ClassInterface = readDeclAs<ObjCInterfaceDecl>();
1458 CD->TypeParamList = ReadObjCTypeParamList();
1459 unsigned NumProtoRefs = Record.readInt();
1461 ProtoRefs.reserve(NumProtoRefs);
1462 for (unsigned I = 0; I != NumProtoRefs; ++I)
1463 ProtoRefs.push_back(readDeclAs<ObjCProtocolDecl>());
1465 ProtoLocs.reserve(NumProtoRefs);
1466 for (unsigned I = 0; I != NumProtoRefs; ++I)
1467 ProtoLocs.push_back(readSourceLocation());
1468 CD->setProtocolList(ProtoRefs.data(), NumProtoRefs, ProtoLocs.data(),
1469 Reader.getContext());
1470
1471 // Protocols in the class extension belong to the class.
1472 if (NumProtoRefs > 0 && CD->ClassInterface && CD->IsClassExtension())
1473 CD->ClassInterface->mergeClassExtensionProtocolList(
1474 (ObjCProtocolDecl *const *)ProtoRefs.data(), NumProtoRefs,
1475 Reader.getContext());
1476}
1477
1479 VisitNamedDecl(CAD);
1480 CAD->setClassInterface(readDeclAs<ObjCInterfaceDecl>());
1481}
1482
1484 VisitNamedDecl(D);
1485 D->setAtLoc(readSourceLocation());
1486 D->setLParenLoc(readSourceLocation());
1487 QualType T = Record.readType();
1488 TypeSourceInfo *TSI = readTypeSourceInfo();
1489 D->setType(T, TSI);
1492 (ObjCPropertyAttribute::Kind)Record.readInt());
1494 (ObjCPropertyDecl::PropertyControl)Record.readInt());
1495 DeclarationName GetterName = Record.readDeclarationName();
1496 SourceLocation GetterLoc = readSourceLocation();
1497 D->setGetterName(GetterName.getObjCSelector(), GetterLoc);
1498 DeclarationName SetterName = Record.readDeclarationName();
1499 SourceLocation SetterLoc = readSourceLocation();
1500 D->setSetterName(SetterName.getObjCSelector(), SetterLoc);
1501 D->setGetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1502 D->setSetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1503 D->setPropertyIvarDecl(readDeclAs<ObjCIvarDecl>());
1504}
1505
1508 D->setClassInterface(readDeclAs<ObjCInterfaceDecl>());
1509}
1510
1513 D->CategoryNameLoc = readSourceLocation();
1514}
1515
1518 D->setSuperClass(readDeclAs<ObjCInterfaceDecl>());
1519 D->SuperLoc = readSourceLocation();
1520 D->setIvarLBraceLoc(readSourceLocation());
1521 D->setIvarRBraceLoc(readSourceLocation());
1522 D->setHasNonZeroConstructors(Record.readInt());
1523 D->setHasDestructors(Record.readInt());
1524 D->NumIvarInitializers = Record.readInt();
1525 if (D->NumIvarInitializers)
1526 D->IvarInitializers = ReadGlobalOffset();
1527}
1528
1530 VisitDecl(D);
1531 D->setAtLoc(readSourceLocation());
1532 D->setPropertyDecl(readDeclAs<ObjCPropertyDecl>());
1533 D->PropertyIvarDecl = readDeclAs<ObjCIvarDecl>();
1534 D->IvarLoc = readSourceLocation();
1535 D->setGetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1536 D->setSetterMethodDecl(readDeclAs<ObjCMethodDecl>());
1537 D->setGetterCXXConstructor(Record.readExpr());
1538 D->setSetterCXXAssignment(Record.readExpr());
1539}
1540
1543 FD->Mutable = Record.readInt();
1544
1545 unsigned Bits = Record.readInt();
1546 FD->StorageKind = Bits >> 1;
1547 if (FD->StorageKind == FieldDecl::ISK_CapturedVLAType)
1548 FD->CapturedVLAType =
1549 cast<VariableArrayType>(Record.readType().getTypePtr());
1550 else if (Bits & 1)
1551 FD->setBitWidth(Record.readExpr());
1552
1553 if (!FD->getDeclName() ||
1554 FD->isPlaceholderVar(Reader.getContext().getLangOpts())) {
1555 if (auto *Tmpl = readDeclAs<FieldDecl>())
1556 Reader.getContext().setInstantiatedFromUnnamedFieldDecl(FD, Tmpl);
1557 }
1558 mergeMergeable(FD);
1559}
1560
1563 PD->GetterId = Record.readIdentifier();
1564 PD->SetterId = Record.readIdentifier();
1565}
1566
1568 VisitValueDecl(D);
1569 D->PartVal.Part1 = Record.readInt();
1570 D->PartVal.Part2 = Record.readInt();
1571 D->PartVal.Part3 = Record.readInt();
1572 for (auto &C : D->PartVal.Part4And5)
1573 C = Record.readInt();
1574
1575 // Add this GUID to the AST context's lookup structure, and merge if needed.
1576 if (MSGuidDecl *Existing = Reader.getContext().MSGuidDecls.GetOrInsertNode(D))
1577 Reader.getContext().setPrimaryMergedDecl(D, Existing->getCanonicalDecl());
1578}
1579
1582 VisitValueDecl(D);
1583 D->Value = Record.readAPValue();
1584
1585 // Add this to the AST context's lookup structure, and merge if needed.
1586 if (UnnamedGlobalConstantDecl *Existing =
1587 Reader.getContext().UnnamedGlobalConstantDecls.GetOrInsertNode(D))
1588 Reader.getContext().setPrimaryMergedDecl(D, Existing->getCanonicalDecl());
1589}
1590
1592 VisitValueDecl(D);
1593 D->Value = Record.readAPValue();
1594
1595 // Add this template parameter object to the AST context's lookup structure,
1596 // and merge if needed.
1597 if (TemplateParamObjectDecl *Existing =
1598 Reader.getContext().TemplateParamObjectDecls.GetOrInsertNode(D))
1599 Reader.getContext().setPrimaryMergedDecl(D, Existing->getCanonicalDecl());
1600}
1601
1603 VisitValueDecl(FD);
1604
1605 FD->ChainingSize = Record.readInt();
1606 assert(FD->ChainingSize >= 2 && "Anonymous chaining must be >= 2");
1607 FD->Chaining = new (Reader.getContext())NamedDecl*[FD->ChainingSize];
1608
1609 for (unsigned I = 0; I != FD->ChainingSize; ++I)
1610 FD->Chaining[I] = readDeclAs<NamedDecl>();
1611
1612 mergeMergeable(FD);
1613}
1614
1616 RedeclarableResult Redecl = VisitRedeclarable(VD);
1618
1619 BitsUnpacker VarDeclBits(Record.readInt());
1620 auto VarLinkage = Linkage(VarDeclBits.getNextBits(/*Width=*/3));
1621 bool DefGeneratedInModule = VarDeclBits.getNextBit();
1622 VD->VarDeclBits.SClass = (StorageClass)VarDeclBits.getNextBits(/*Width=*/3);
1623 VD->VarDeclBits.TSCSpec = VarDeclBits.getNextBits(/*Width=*/2);
1624 VD->VarDeclBits.InitStyle = VarDeclBits.getNextBits(/*Width=*/2);
1625 VD->VarDeclBits.ARCPseudoStrong = VarDeclBits.getNextBit();
1626 bool HasDeducedType = false;
1627 if (!isa<ParmVarDecl>(VD)) {
1628 VD->NonParmVarDeclBits.IsThisDeclarationADemotedDefinition =
1629 VarDeclBits.getNextBit();
1630 VD->NonParmVarDeclBits.ExceptionVar = VarDeclBits.getNextBit();
1631 VD->NonParmVarDeclBits.NRVOVariable = VarDeclBits.getNextBit();
1632 VD->NonParmVarDeclBits.CXXForRangeDecl = VarDeclBits.getNextBit();
1633
1634 VD->NonParmVarDeclBits.IsInline = VarDeclBits.getNextBit();
1635 VD->NonParmVarDeclBits.IsInlineSpecified = VarDeclBits.getNextBit();
1636 VD->NonParmVarDeclBits.IsConstexpr = VarDeclBits.getNextBit();
1637 VD->NonParmVarDeclBits.IsInitCapture = VarDeclBits.getNextBit();
1638 VD->NonParmVarDeclBits.PreviousDeclInSameBlockScope =
1639 VarDeclBits.getNextBit();
1640
1641 VD->NonParmVarDeclBits.EscapingByref = VarDeclBits.getNextBit();
1642 HasDeducedType = VarDeclBits.getNextBit();
1643 VD->NonParmVarDeclBits.ImplicitParamKind =
1644 VarDeclBits.getNextBits(/*Width*/ 3);
1645
1646 VD->NonParmVarDeclBits.ObjCForDecl = VarDeclBits.getNextBit();
1647 VD->NonParmVarDeclBits.IsCXXForRangeImplicitVar = VarDeclBits.getNextBit();
1648 }
1649
1650 // If this variable has a deduced type, defer reading that type until we are
1651 // done deserializing this variable, because the type might refer back to the
1652 // variable.
1653 if (HasDeducedType)
1654 Reader.PendingDeducedVarTypes.push_back({VD, DeferredTypeID});
1655 else
1656 VD->setType(Reader.GetType(DeferredTypeID));
1657 DeferredTypeID = 0;
1658
1659 VD->setCachedLinkage(VarLinkage);
1660
1661 // Reconstruct the one piece of the IdentifierNamespace that we need.
1662 if (VD->getStorageClass() == SC_Extern && VarLinkage != Linkage::None &&
1664 VD->setLocalExternDecl();
1665
1666 if (DefGeneratedInModule) {
1667 Reader.DefinitionSource[VD] =
1668 Loc.F->Kind == ModuleKind::MK_MainFile ||
1669 Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
1670 }
1671
1672 if (VD->hasAttr<BlocksAttr>()) {
1673 Expr *CopyExpr = Record.readExpr();
1674 if (CopyExpr)
1675 Reader.getContext().setBlockVarCopyInit(VD, CopyExpr, Record.readInt());
1676 }
1677
1678 enum VarKind {
1679 VarNotTemplate = 0, VarTemplate, StaticDataMemberSpecialization
1680 };
1681 switch ((VarKind)Record.readInt()) {
1682 case VarNotTemplate:
1683 // Only true variables (not parameters or implicit parameters) can be
1684 // merged; the other kinds are not really redeclarable at all.
1685 if (!isa<ParmVarDecl>(VD) && !isa<ImplicitParamDecl>(VD) &&
1687 mergeRedeclarable(VD, Redecl);
1688 break;
1689 case VarTemplate:
1690 // Merged when we merge the template.
1691 VD->setDescribedVarTemplate(readDeclAs<VarTemplateDecl>());
1692 break;
1693 case StaticDataMemberSpecialization: { // HasMemberSpecializationInfo.
1694 auto *Tmpl = readDeclAs<VarDecl>();
1695 auto TSK = (TemplateSpecializationKind)Record.readInt();
1696 SourceLocation POI = readSourceLocation();
1697 Reader.getContext().setInstantiatedFromStaticDataMember(VD, Tmpl, TSK,POI);
1698 mergeRedeclarable(VD, Redecl);
1699 break;
1700 }
1701 }
1702
1703 return Redecl;
1704}
1705
1707 if (uint64_t Val = Record.readInt()) {
1708 EvaluatedStmt *Eval = VD->ensureEvaluatedStmt();
1709 Eval->HasConstantInitialization = (Val & 2) != 0;
1710 Eval->HasConstantDestruction = (Val & 4) != 0;
1711 Eval->WasEvaluated = (Val & 8) != 0;
1712 Eval->HasSideEffects = (Val & 16) != 0;
1713 Eval->CheckedForSideEffects = true;
1714 if (Eval->WasEvaluated) {
1715 Eval->Evaluated = Record.readAPValue();
1716 if (Eval->Evaluated.needsCleanup())
1717 Reader.getContext().addDestruction(&Eval->Evaluated);
1718 }
1719
1720 // Store the offset of the initializer. Don't deserialize it yet: it might
1721 // not be needed, and might refer back to the variable, for example if it
1722 // contains a lambda.
1723 Eval->Value = GetCurrentCursorOffset();
1724 }
1725}
1726
1730
1732 VisitVarDecl(PD);
1733
1734 unsigned scopeIndex = Record.readInt();
1735 BitsUnpacker ParmVarDeclBits(Record.readInt());
1736 unsigned isObjCMethodParam = ParmVarDeclBits.getNextBit();
1737 unsigned scopeDepth = ParmVarDeclBits.getNextBits(/*Width=*/7);
1738 unsigned declQualifier = ParmVarDeclBits.getNextBits(/*Width=*/7);
1739 if (isObjCMethodParam) {
1740 assert(scopeDepth == 0);
1741 PD->setObjCMethodScopeInfo(scopeIndex);
1742 PD->ParmVarDeclBits.ScopeDepthOrObjCQuals = declQualifier;
1743 } else {
1744 PD->setScopeInfo(scopeDepth, scopeIndex);
1745 }
1746 PD->ParmVarDeclBits.IsKNRPromoted = ParmVarDeclBits.getNextBit();
1747
1748 PD->ParmVarDeclBits.HasInheritedDefaultArg = ParmVarDeclBits.getNextBit();
1749 if (ParmVarDeclBits.getNextBit()) // hasUninstantiatedDefaultArg.
1750 PD->setUninstantiatedDefaultArg(Record.readExpr());
1751
1752 if (ParmVarDeclBits.getNextBit()) // Valid explicit object parameter
1753 PD->ExplicitObjectParameterIntroducerLoc = Record.readSourceLocation();
1754
1755 // FIXME: If this is a redeclaration of a function from another module, handle
1756 // inheritance of default arguments.
1757}
1758
1760 VisitVarDecl(DD);
1761 auto **BDs = DD->getTrailingObjects();
1762 for (unsigned I = 0; I != DD->NumBindings; ++I) {
1763 BDs[I] = readDeclAs<BindingDecl>();
1764 BDs[I]->setDecomposedDecl(DD);
1765 }
1766}
1767
1769 VisitValueDecl(BD);
1770 BD->Binding = Record.readExpr();
1771}
1772
1774 VisitDecl(AD);
1775 AD->setAsmString(cast<StringLiteral>(Record.readExpr()));
1776 AD->setRParenLoc(readSourceLocation());
1777}
1778
1780 VisitDecl(D);
1781 D->Statement = Record.readStmt();
1782}
1783
1785 VisitDecl(BD);
1786 BD->setBody(cast_or_null<CompoundStmt>(Record.readStmt()));
1787 BD->setSignatureAsWritten(readTypeSourceInfo());
1788 unsigned NumParams = Record.readInt();
1790 Params.reserve(NumParams);
1791 for (unsigned I = 0; I != NumParams; ++I)
1792 Params.push_back(readDeclAs<ParmVarDecl>());
1793 BD->setParams(Params);
1794
1795 BD->setIsVariadic(Record.readInt());
1796 BD->setBlockMissingReturnType(Record.readInt());
1797 BD->setIsConversionFromLambda(Record.readInt());
1798 BD->setDoesNotEscape(Record.readInt());
1799 BD->setCanAvoidCopyToHeap(Record.readInt());
1800
1801 bool capturesCXXThis = Record.readInt();
1802 unsigned numCaptures = Record.readInt();
1804 captures.reserve(numCaptures);
1805 for (unsigned i = 0; i != numCaptures; ++i) {
1806 auto *decl = readDeclAs<VarDecl>();
1807 unsigned flags = Record.readInt();
1808 bool byRef = (flags & 1);
1809 bool nested = (flags & 2);
1810 Expr *copyExpr = ((flags & 4) ? Record.readExpr() : nullptr);
1811
1812 captures.push_back(BlockDecl::Capture(decl, byRef, nested, copyExpr));
1813 }
1814 BD->setCaptures(Reader.getContext(), captures, capturesCXXThis);
1815}
1816
1818 // NumParams is deserialized by OutlinedFunctionDecl::CreateDeserialized().
1819 VisitDecl(D);
1820 for (unsigned I = 0; I < D->NumParams; ++I)
1821 D->setParam(I, readDeclAs<ImplicitParamDecl>());
1822 D->setNothrow(Record.readInt() != 0);
1823 D->setBody(cast_or_null<Stmt>(Record.readStmt()));
1824}
1825
1827 VisitDecl(CD);
1828 unsigned ContextParamPos = Record.readInt();
1829 CD->setNothrow(Record.readInt() != 0);
1830 // Body is set by VisitCapturedStmt.
1831 for (unsigned I = 0; I < CD->NumParams; ++I) {
1832 if (I != ContextParamPos)
1833 CD->setParam(I, readDeclAs<ImplicitParamDecl>());
1834 else
1835 CD->setContextParam(I, readDeclAs<ImplicitParamDecl>());
1836 }
1837}
1838
1840 VisitDecl(D);
1841 D->setLanguage(static_cast<LinkageSpecLanguageIDs>(Record.readInt()));
1842 D->setExternLoc(readSourceLocation());
1843 D->setRBraceLoc(readSourceLocation());
1844}
1845
1847 VisitDecl(D);
1848 D->RBraceLoc = readSourceLocation();
1849}
1850
1852 VisitNamedDecl(D);
1853 D->setLocStart(readSourceLocation());
1854}
1855
1857 RedeclarableResult Redecl = VisitRedeclarable(D);
1858 VisitNamedDecl(D);
1859
1860 BitsUnpacker NamespaceDeclBits(Record.readInt());
1861 D->setInline(NamespaceDeclBits.getNextBit());
1862 D->setNested(NamespaceDeclBits.getNextBit());
1863 D->LocStart = readSourceLocation();
1864 D->RBraceLoc = readSourceLocation();
1865
1866 // Defer loading the anonymous namespace until we've finished merging
1867 // this namespace; loading it might load a later declaration of the
1868 // same namespace, and we have an invariant that older declarations
1869 // get merged before newer ones try to merge.
1870 GlobalDeclID AnonNamespace;
1871 if (Redecl.getFirstID() == ThisDeclID)
1872 AnonNamespace = readDeclID();
1873
1874 mergeRedeclarable(D, Redecl);
1875
1876 if (AnonNamespace.isValid()) {
1877 // Each module has its own anonymous namespace, which is disjoint from
1878 // any other module's anonymous namespaces, so don't attach the anonymous
1879 // namespace at all.
1880 auto *Anon = cast<NamespaceDecl>(Reader.GetDecl(AnonNamespace));
1881 if (!Record.isModule())
1882 D->setAnonymousNamespace(Anon);
1883 }
1884}
1885
1887 VisitNamedDecl(D);
1888 LookupBlockOffsets Offsets;
1889 VisitDeclContext(D, Offsets);
1890 D->IsCBuffer = Record.readBool();
1891 D->KwLoc = readSourceLocation();
1892 D->LBraceLoc = readSourceLocation();
1893 D->RBraceLoc = readSourceLocation();
1894}
1895
1897 RedeclarableResult Redecl = VisitRedeclarable(D);
1898 VisitNamedDecl(D);
1899 D->NamespaceLoc = readSourceLocation();
1900 D->IdentLoc = readSourceLocation();
1901 D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1902 D->Namespace = readDeclAs<NamespaceBaseDecl>();
1903 mergeRedeclarable(D, Redecl);
1904}
1905
1907 VisitNamedDecl(D);
1908 D->setUsingLoc(readSourceLocation());
1909 D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1910 D->DNLoc = Record.readDeclarationNameLoc(D->getDeclName());
1911 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>());
1912 D->setTypename(Record.readInt());
1913 if (auto *Pattern = readDeclAs<NamedDecl>())
1914 Reader.getContext().setInstantiatedFromUsingDecl(D, Pattern);
1915 mergeMergeable(D);
1916}
1917
1919 VisitNamedDecl(D);
1920 D->setUsingLoc(readSourceLocation());
1921 D->setEnumLoc(readSourceLocation());
1922 D->setEnumType(Record.readTypeSourceInfo());
1923 D->FirstUsingShadow.setPointer(readDeclAs<UsingShadowDecl>());
1924 if (auto *Pattern = readDeclAs<UsingEnumDecl>())
1925 Reader.getContext().setInstantiatedFromUsingEnumDecl(D, Pattern);
1926 mergeMergeable(D);
1927}
1928
1930 VisitNamedDecl(D);
1931 D->InstantiatedFrom = readDeclAs<NamedDecl>();
1932 auto **Expansions = D->getTrailingObjects();
1933 for (unsigned I = 0; I != D->NumExpansions; ++I)
1934 Expansions[I] = readDeclAs<NamedDecl>();
1935 mergeMergeable(D);
1936}
1937
1939 RedeclarableResult Redecl = VisitRedeclarable(D);
1940 VisitNamedDecl(D);
1941 D->Underlying = readDeclAs<NamedDecl>();
1942 D->IdentifierNamespace = Record.readInt();
1943 D->UsingOrNextShadow = readDeclAs<NamedDecl>();
1944 auto *Pattern = readDeclAs<UsingShadowDecl>();
1945 if (Pattern)
1946 Reader.getContext().setInstantiatedFromUsingShadowDecl(D, Pattern);
1947 mergeRedeclarable(D, Redecl);
1948}
1949
1953 D->NominatedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>();
1954 D->ConstructedBaseClassShadowDecl = readDeclAs<ConstructorUsingShadowDecl>();
1955 D->IsVirtual = Record.readInt();
1956}
1957
1959 VisitNamedDecl(D);
1960 D->UsingLoc = readSourceLocation();
1961 D->NamespaceLoc = readSourceLocation();
1962 D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1963 D->NominatedNamespace = readDeclAs<NamedDecl>();
1964 D->CommonAncestor = readDeclAs<DeclContext>();
1965}
1966
1968 VisitValueDecl(D);
1969 D->setUsingLoc(readSourceLocation());
1970 D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1971 D->DNLoc = Record.readDeclarationNameLoc(D->getDeclName());
1972 D->EllipsisLoc = readSourceLocation();
1973 mergeMergeable(D);
1974}
1975
1978 VisitTypeDecl(D);
1979 D->TypenameLocation = readSourceLocation();
1980 D->QualifierLoc = Record.readNestedNameSpecifierLoc();
1981 D->EllipsisLoc = readSourceLocation();
1982 mergeMergeable(D);
1983}
1984
1989
1990void ASTDeclReader::ReadCXXDefinitionData(
1991 struct CXXRecordDecl::DefinitionData &Data, const CXXRecordDecl *D,
1992 Decl *LambdaContext, unsigned IndexInLambdaContext) {
1993
1994 BitsUnpacker CXXRecordDeclBits = Record.readInt();
1995
1996#define FIELD(Name, Width, Merge) \
1997 if (!CXXRecordDeclBits.canGetNextNBits(Width)) \
1998 CXXRecordDeclBits.updateValue(Record.readInt()); \
1999 Data.Name = CXXRecordDeclBits.getNextBits(Width);
2000
2001#include "clang/AST/CXXRecordDeclDefinitionBits.def"
2002#undef FIELD
2003
2004 // Note: the caller has deserialized the IsLambda bit already.
2005 Data.ODRHash = Record.readInt();
2006 Data.HasODRHash = true;
2007
2008 if (Record.readInt()) {
2009 Reader.DefinitionSource[D] =
2010 Loc.F->Kind == ModuleKind::MK_MainFile ||
2011 Reader.getContext().getLangOpts().BuildingPCHWithObjectFile;
2012 }
2013
2014 Record.readUnresolvedSet(Data.Conversions);
2015 Data.ComputedVisibleConversions = Record.readInt();
2016 if (Data.ComputedVisibleConversions)
2017 Record.readUnresolvedSet(Data.VisibleConversions);
2018 assert(Data.Definition && "Data.Definition should be already set!");
2019
2020 if (!Data.IsLambda) {
2021 assert(!LambdaContext && !IndexInLambdaContext &&
2022 "given lambda context for non-lambda");
2023
2024 Data.NumBases = Record.readInt();
2025 if (Data.NumBases)
2026 Data.Bases = ReadGlobalOffset();
2027
2028 Data.NumVBases = Record.readInt();
2029 if (Data.NumVBases)
2030 Data.VBases = ReadGlobalOffset();
2031
2032 Data.FirstFriend = readDeclID().getRawValue();
2033 } else {
2034 using Capture = LambdaCapture;
2035
2036 auto &Lambda = static_cast<CXXRecordDecl::LambdaDefinitionData &>(Data);
2037
2038 BitsUnpacker LambdaBits(Record.readInt());
2039 Lambda.DependencyKind = LambdaBits.getNextBits(/*Width=*/2);
2040 Lambda.IsGenericLambda = LambdaBits.getNextBit();
2041 Lambda.CaptureDefault = LambdaBits.getNextBits(/*Width=*/2);
2042 Lambda.NumCaptures = LambdaBits.getNextBits(/*Width=*/15);
2043 Lambda.HasKnownInternalLinkage = LambdaBits.getNextBit();
2044
2045 Lambda.NumExplicitCaptures = Record.readInt();
2046 Lambda.ManglingNumber = Record.readInt();
2047 if (unsigned DeviceManglingNumber = Record.readInt())
2048 Reader.getContext().DeviceLambdaManglingNumbers[D] = DeviceManglingNumber;
2049 Lambda.IndexInContext = IndexInLambdaContext;
2050 Lambda.ContextDecl = LambdaContext;
2051 Capture *ToCapture = nullptr;
2052 if (Lambda.NumCaptures) {
2053 ToCapture = (Capture *)Reader.getContext().Allocate(sizeof(Capture) *
2054 Lambda.NumCaptures);
2055 Lambda.AddCaptureList(Reader.getContext(), ToCapture);
2056 }
2057 Lambda.MethodTyInfo = readTypeSourceInfo();
2058 for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {
2059 SourceLocation Loc = readSourceLocation();
2060 BitsUnpacker CaptureBits(Record.readInt());
2061 bool IsImplicit = CaptureBits.getNextBit();
2062 auto Kind =
2063 static_cast<LambdaCaptureKind>(CaptureBits.getNextBits(/*Width=*/3));
2064 switch (Kind) {
2065 case LCK_StarThis:
2066 case LCK_This:
2067 case LCK_VLAType:
2068 new (ToCapture)
2069 Capture(Loc, IsImplicit, Kind, nullptr, SourceLocation());
2070 ToCapture++;
2071 break;
2072 case LCK_ByCopy:
2073 case LCK_ByRef:
2074 auto *Var = readDeclAs<ValueDecl>();
2075 SourceLocation EllipsisLoc = readSourceLocation();
2076 new (ToCapture) Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc);
2077 ToCapture++;
2078 break;
2079 }
2080 }
2081 }
2082}
2083
2085 CXXRecordDecl *D, struct CXXRecordDecl::DefinitionData &&MergeDD) {
2086 assert(D->DefinitionData &&
2087 "merging class definition into non-definition");
2088 auto &DD = *D->DefinitionData;
2089
2090 if (DD.Definition != MergeDD.Definition) {
2091 // Track that we merged the definitions.
2092 Reader.MergedDeclContexts.insert(std::make_pair(MergeDD.Definition,
2093 DD.Definition));
2094 Reader.PendingDefinitions.erase(MergeDD.Definition);
2095 MergeDD.Definition->demoteThisDefinitionToDeclaration();
2096 Reader.mergeDefinitionVisibility(DD.Definition, MergeDD.Definition);
2097 assert(!Reader.Lookups.contains(MergeDD.Definition) &&
2098 "already loaded pending lookups for merged definition");
2099 }
2100
2101 auto PFDI = Reader.PendingFakeDefinitionData.find(&DD);
2102 if (PFDI != Reader.PendingFakeDefinitionData.end() &&
2103 PFDI->second == ASTReader::PendingFakeDefinitionKind::Fake) {
2104 // We faked up this definition data because we found a class for which we'd
2105 // not yet loaded the definition. Replace it with the real thing now.
2106 assert(!DD.IsLambda && !MergeDD.IsLambda && "faked up lambda definition?");
2107 PFDI->second = ASTReader::PendingFakeDefinitionKind::FakeLoaded;
2108
2109 // Don't change which declaration is the definition; that is required
2110 // to be invariant once we select it.
2111 auto *Def = DD.Definition;
2112 DD = std::move(MergeDD);
2113 DD.Definition = Def;
2114 for (auto *R = Reader.getMostRecentExistingDecl(Def); R;
2115 R = R->getPreviousDecl())
2116 cast<CXXRecordDecl>(R)->DefinitionData = &DD;
2117 return;
2118 }
2119
2120 bool DetectedOdrViolation = false;
2121
2122 #define FIELD(Name, Width, Merge) Merge(Name)
2123 #define MERGE_OR(Field) DD.Field |= MergeDD.Field;
2124 #define NO_MERGE(Field) \
2125 DetectedOdrViolation |= DD.Field != MergeDD.Field; \
2126 MERGE_OR(Field)
2127 #include "clang/AST/CXXRecordDeclDefinitionBits.def"
2128 NO_MERGE(IsLambda)
2129 #undef NO_MERGE
2130 #undef MERGE_OR
2131
2132 if (DD.NumBases != MergeDD.NumBases || DD.NumVBases != MergeDD.NumVBases)
2133 DetectedOdrViolation = true;
2134 // FIXME: Issue a diagnostic if the base classes don't match when we come
2135 // to lazily load them.
2136
2137 // FIXME: Issue a diagnostic if the list of conversion functions doesn't
2138 // match when we come to lazily load them.
2139 if (MergeDD.ComputedVisibleConversions && !DD.ComputedVisibleConversions) {
2140 DD.VisibleConversions = std::move(MergeDD.VisibleConversions);
2141 DD.ComputedVisibleConversions = true;
2142 }
2143
2144 // FIXME: Issue a diagnostic if FirstFriend doesn't match when we come to
2145 // lazily load it.
2146
2147 if (DD.IsLambda) {
2148 auto &Lambda1 = static_cast<CXXRecordDecl::LambdaDefinitionData &>(DD);
2149 auto &Lambda2 = static_cast<CXXRecordDecl::LambdaDefinitionData &>(MergeDD);
2150 DetectedOdrViolation |= Lambda1.DependencyKind != Lambda2.DependencyKind;
2151 DetectedOdrViolation |= Lambda1.IsGenericLambda != Lambda2.IsGenericLambda;
2152 DetectedOdrViolation |= Lambda1.CaptureDefault != Lambda2.CaptureDefault;
2153 DetectedOdrViolation |= Lambda1.NumCaptures != Lambda2.NumCaptures;
2154 DetectedOdrViolation |=
2155 Lambda1.NumExplicitCaptures != Lambda2.NumExplicitCaptures;
2156 DetectedOdrViolation |=
2157 Lambda1.HasKnownInternalLinkage != Lambda2.HasKnownInternalLinkage;
2158 DetectedOdrViolation |= Lambda1.ManglingNumber != Lambda2.ManglingNumber;
2159
2160 if (Lambda1.NumCaptures && Lambda1.NumCaptures == Lambda2.NumCaptures) {
2161 for (unsigned I = 0, N = Lambda1.NumCaptures; I != N; ++I) {
2162 LambdaCapture &Cap1 = Lambda1.Captures.front()[I];
2163 LambdaCapture &Cap2 = Lambda2.Captures.front()[I];
2164 DetectedOdrViolation |= Cap1.getCaptureKind() != Cap2.getCaptureKind();
2165 }
2166 Lambda1.AddCaptureList(Reader.getContext(), Lambda2.Captures.front());
2167 }
2168 }
2169
2170 // We don't want to check ODR for decls in the global module fragment.
2171 if (shouldSkipCheckingODR(MergeDD.Definition) || shouldSkipCheckingODR(D))
2172 return;
2173
2174 if (D->getODRHash() != MergeDD.ODRHash) {
2175 DetectedOdrViolation = true;
2176 }
2177
2178 if (DetectedOdrViolation)
2179 Reader.PendingOdrMergeFailures[DD.Definition].push_back(
2180 {MergeDD.Definition, &MergeDD});
2181}
2182
2183void ASTDeclReader::ReadCXXRecordDefinition(CXXRecordDecl *D, bool Update,
2184 Decl *LambdaContext,
2185 unsigned IndexInLambdaContext) {
2186 struct CXXRecordDecl::DefinitionData *DD;
2187 ASTContext &C = Reader.getContext();
2188
2189 // Determine whether this is a lambda closure type, so that we can
2190 // allocate the appropriate DefinitionData structure.
2191 bool IsLambda = Record.readInt();
2192 assert(!(IsLambda && Update) &&
2193 "lambda definition should not be added by update record");
2194 if (IsLambda)
2195 DD = new (C) CXXRecordDecl::LambdaDefinitionData(
2196 D, nullptr, CXXRecordDecl::LDK_Unknown, false, LCD_None);
2197 else
2198 DD = new (C) struct CXXRecordDecl::DefinitionData(D);
2199
2200 CXXRecordDecl *Canon = D->getCanonicalDecl();
2201 // Set decl definition data before reading it, so that during deserialization
2202 // when we read CXXRecordDecl, it already has definition data and we don't
2203 // set fake one.
2204 if (!Canon->DefinitionData)
2205 Canon->DefinitionData = DD;
2206 D->DefinitionData = Canon->DefinitionData;
2207 ReadCXXDefinitionData(*DD, D, LambdaContext, IndexInLambdaContext);
2208
2209 // Mark this declaration as being a definition.
2210 D->setCompleteDefinition(true);
2211
2212 // We might already have a different definition for this record. This can
2213 // happen either because we're reading an update record, or because we've
2214 // already done some merging. Either way, just merge into it.
2215 if (Canon->DefinitionData != DD) {
2216 MergeImpl.MergeDefinitionData(Canon, std::move(*DD));
2217 return;
2218 }
2219
2220 // If this is not the first declaration or is an update record, we can have
2221 // other redeclarations already. Make a note that we need to propagate the
2222 // DefinitionData pointer onto them.
2223 if (Update || Canon != D)
2224 Reader.PendingDefinitions.insert(D);
2225}
2226
2228 RedeclarableResult Redecl = VisitRecordDeclImpl(D);
2229
2230 ASTContext &C = Reader.getContext();
2231
2232 enum CXXRecKind {
2233 CXXRecNotTemplate = 0,
2234 CXXRecTemplate,
2235 CXXRecMemberSpecialization,
2236 CXXLambda
2237 };
2238
2239 Decl *LambdaContext = nullptr;
2240 unsigned IndexInLambdaContext = 0;
2241
2242 switch ((CXXRecKind)Record.readInt()) {
2243 case CXXRecNotTemplate:
2244 // Merged when we merge the folding set entry in the primary template.
2246 mergeRedeclarable(D, Redecl);
2247 break;
2248 case CXXRecTemplate: {
2249 // Merged when we merge the template.
2250 auto *Template = readDeclAs<ClassTemplateDecl>();
2251 D->TemplateOrInstantiation = Template;
2252 break;
2253 }
2254 case CXXRecMemberSpecialization: {
2255 auto *RD = readDeclAs<CXXRecordDecl>();
2256 auto TSK = (TemplateSpecializationKind)Record.readInt();
2257 SourceLocation POI = readSourceLocation();
2259 MSI->setPointOfInstantiation(POI);
2260 D->TemplateOrInstantiation = MSI;
2261 mergeRedeclarable(D, Redecl);
2262 break;
2263 }
2264 case CXXLambda: {
2265 LambdaContext = readDecl();
2266 if (LambdaContext)
2267 IndexInLambdaContext = Record.readInt();
2268 if (LambdaContext)
2269 MergeImpl.mergeLambda(D, Redecl, *LambdaContext, IndexInLambdaContext);
2270 else
2271 // If we don't have a mangling context, treat this like any other
2272 // declaration.
2273 mergeRedeclarable(D, Redecl);
2274 break;
2275 }
2276 }
2277
2278 bool WasDefinition = Record.readInt();
2279 if (WasDefinition)
2280 ReadCXXRecordDefinition(D, /*Update=*/false, LambdaContext,
2281 IndexInLambdaContext);
2282 else
2283 // Propagate DefinitionData pointer from the canonical declaration.
2284 D->DefinitionData = D->getCanonicalDecl()->DefinitionData;
2285
2286 // Lazily load the key function to avoid deserializing every method so we can
2287 // compute it.
2288 if (WasDefinition) {
2289 GlobalDeclID KeyFn = readDeclID();
2290 if (KeyFn.isValid() && D->isCompleteDefinition())
2291 // FIXME: This is wrong for the ARM ABI, where some other module may have
2292 // made this function no longer be a key function. We need an update
2293 // record or similar for that case.
2294 C.KeyFunctions[D] = KeyFn.getRawValue();
2295 }
2296
2297 return Redecl;
2298}
2299
2301 D->setExplicitSpecifier(Record.readExplicitSpec());
2302 D->Ctor = readDeclAs<CXXConstructorDecl>();
2305 static_cast<DeductionCandidate>(Record.readInt()));
2306 D->setSourceDeductionGuide(readDeclAs<CXXDeductionGuideDecl>());
2309 Record.readInt()));
2310}
2311
2314
2315 unsigned NumOverridenMethods = Record.readInt();
2316 if (D->isCanonicalDecl()) {
2317 while (NumOverridenMethods--) {
2318 // Avoid invariant checking of CXXMethodDecl::addOverriddenMethod,
2319 // MD may be initializing.
2320 if (auto *MD = readDeclAs<CXXMethodDecl>())
2321 Reader.getContext().addOverriddenMethod(D, MD->getCanonicalDecl());
2322 }
2323 } else {
2324 // We don't care about which declarations this used to override; we get
2325 // the relevant information from the canonical declaration.
2326 Record.skipInts(NumOverridenMethods);
2327 }
2328}
2329
2331 // We need the inherited constructor information to merge the declaration,
2332 // so we have to read it before we call VisitCXXMethodDecl.
2333 D->setExplicitSpecifier(Record.readExplicitSpec());
2334 if (D->isInheritingConstructor()) {
2335 auto *Shadow = readDeclAs<ConstructorUsingShadowDecl>();
2336 auto *Ctor = readDeclAs<CXXConstructorDecl>();
2337 *D->getTrailingObjects<InheritedConstructor>() =
2338 InheritedConstructor(Shadow, Ctor);
2339 }
2340
2341 if (unsigned NumArgs = Record.readUInt32()) {
2342 CXXDefaultArgExpr **Args =
2343 new (Reader.getContext()) CXXDefaultArgExpr *[NumArgs];
2344 for (unsigned I = 0; I != NumArgs; I++)
2345 Args[I] = cast_or_null<CXXDefaultArgExpr>(Record.readStmt());
2346 D->setCtorClosureDefaultArgs(ArrayRef(Args, NumArgs));
2347 }
2348
2350}
2351
2354
2355 ASTContext &C = Reader.getContext();
2357 if (auto *OperatorDelete = readDeclAs<FunctionDecl>()) {
2358 auto *ThisArg = Record.readExpr();
2359 // FIXME: Check consistency if we have an old and new operator delete.
2360 if (!C.dtorHasOperatorDelete(D, ASTContext::OperatorDeleteKind::Regular)) {
2361 C.addOperatorDeleteForVDtor(D, OperatorDelete,
2363 Canon->OperatorDeleteThisArg = ThisArg;
2364 }
2365 }
2366 if (auto *OperatorGlobDelete = readDeclAs<FunctionDecl>()) {
2367 if (!C.dtorHasOperatorDelete(D,
2369 C.addOperatorDeleteForVDtor(
2370 D, OperatorGlobDelete, ASTContext::OperatorDeleteKind::GlobalRegular);
2371 }
2372 if (auto *OperatorArrayDelete = readDeclAs<FunctionDecl>()) {
2373 if (!C.dtorHasOperatorDelete(D, ASTContext::OperatorDeleteKind::Array))
2374 C.addOperatorDeleteForVDtor(D, OperatorArrayDelete,
2376 }
2377 if (auto *OperatorGlobArrayDelete = readDeclAs<FunctionDecl>()) {
2378 if (!C.dtorHasOperatorDelete(D,
2380 C.addOperatorDeleteForVDtor(D, OperatorGlobArrayDelete,
2382 }
2383}
2384
2386 D->setExplicitSpecifier(Record.readExplicitSpec());
2388}
2389
2391 VisitDecl(D);
2392 D->ImportedModule = readModule();
2393 D->setImportComplete(Record.readInt());
2394 auto *StoredLocs = D->getTrailingObjects();
2395 for (unsigned I = 0, N = Record.back(); I != N; ++I)
2396 StoredLocs[I] = readSourceLocation();
2397 Record.skipInts(1); // The number of stored source locations.
2398}
2399
2401 VisitDecl(D);
2402 D->setColonLoc(readSourceLocation());
2403}
2404
2406 VisitDecl(D);
2407 if (Record.readInt()) // hasFriendDecl
2408 D->Friend = readDeclAs<NamedDecl>();
2409 else
2410 D->Friend = readTypeSourceInfo();
2411 D->NextFriend = readDeclID().getRawValue();
2412 D->FriendLoc = readSourceLocation();
2413 D->EllipsisLoc = readSourceLocation();
2414}
2415
2417 VisitDecl(D);
2418 for (unsigned I = 0; I != D->NumTPLists; ++I)
2419 D->getTrailingObjects()[I] = Record.readTemplateParameterList();
2420 auto Kind = static_cast<FriendTemplateDeclKind>(Record.readInt());
2421 switch (Kind) {
2422 case FTDK_Type:
2423 D->Friend = readTypeSourceInfo();
2424 break;
2425 case FTDK_Decl:
2426 D->Friend = readDeclAs<NamedDecl>();
2427 break;
2428 case FTDK_Template:
2429 D->Template = Record.readTemplateName();
2430 assert(D->Template.getAsTemplateDecl() &&
2431 "friend template name must resolve to a template declaration");
2432 D->Friend = D->Template.getAsTemplateDecl();
2433 break;
2434 case FTDK_Dependent:
2435 D->Friend = readTypeSourceInfo();
2436 D->Template = Record.readTemplateName();
2437 break;
2438 }
2439 D->NextFriend = readDeclID().getRawValue();
2440 D->FriendLoc = readSourceLocation();
2441 D->EllipsisLoc = readSourceLocation();
2442}
2443
2445 VisitNamedDecl(D);
2446
2447 assert(!D->TemplateParams && "TemplateParams already set!");
2448 D->TemplateParams = Record.readTemplateParameterList();
2449 D->init(readDeclAs<NamedDecl>());
2450}
2451
2454 D->ConstraintExpr = Record.readExpr();
2455 mergeMergeable(D);
2456}
2457
2460 // The size of the template list was read during creation of the Decl, so we
2461 // don't have to re-read it here.
2462 VisitDecl(D);
2464 for (unsigned I = 0; I < D->NumTemplateArgs; ++I)
2465 Args.push_back(Record.readTemplateArgument(/*Canonicalize=*/false));
2466 D->setTemplateArguments(Args);
2467}
2468
2471
2473 llvm::BitstreamCursor &DeclsCursor,
2474 bool IsPartial) {
2475 uint64_t Offset = ReadLocalOffset();
2476 bool Failed =
2477 Reader.ReadSpecializations(M, DeclsCursor, Offset, D, IsPartial);
2478 (void)Failed;
2479 assert(!Failed);
2480}
2481
2482RedeclarableResult
2484 RedeclarableResult Redecl = VisitRedeclarable(D);
2485
2486 // Make sure we've allocated the Common pointer first. We do this before
2487 // VisitTemplateDecl so that getCommonPtr() can be used during initialization.
2489 if (!CanonD->Common) {
2490 CanonD->Common = CanonD->newCommon(Reader.getContext());
2491 Reader.PendingDefinitions.insert(CanonD);
2492 }
2493 D->Common = CanonD->Common;
2494
2495 // If this is the first declaration of the template, fill in the information
2496 // for the 'common' pointer.
2497 if (ThisDeclID == Redecl.getFirstID()) {
2498 if (auto *RTD = readDeclAs<RedeclarableTemplateDecl>()) {
2499 assert(RTD->getKind() == D->getKind() &&
2500 "InstantiatedFromMemberTemplate kind mismatch");
2502 if (Record.readInt())
2504 }
2505 }
2506
2508 D->IdentifierNamespace = Record.readInt();
2509
2510 return Redecl;
2511}
2512
2514 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2515 mergeRedeclarableTemplate(D, Redecl);
2516
2517 if (ThisDeclID == Redecl.getFirstID()) {
2518 // This ClassTemplateDecl owns a CommonPtr; read it to keep track of all of
2519 // the specializations.
2520 ReadSpecializations(*Loc.F, D, Loc.F->DeclsCursor, /*IsPartial=*/false);
2521 ReadSpecializations(*Loc.F, D, Loc.F->DeclsCursor, /*IsPartial=*/true);
2522 }
2523}
2524
2526 llvm_unreachable("BuiltinTemplates are not serialized");
2527}
2528
2529/// TODO: Unify with ClassTemplateDecl version?
2530/// May require unifying ClassTemplateDecl and
2531/// VarTemplateDecl beyond TemplateDecl...
2533 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2534 mergeRedeclarableTemplate(D, Redecl);
2535
2536 if (ThisDeclID == Redecl.getFirstID()) {
2537 // This VarTemplateDecl owns a CommonPtr; read it to keep track of all of
2538 // the specializations.
2539 ReadSpecializations(*Loc.F, D, Loc.F->DeclsCursor, /*IsPartial=*/false);
2540 ReadSpecializations(*Loc.F, D, Loc.F->DeclsCursor, /*IsPartial=*/true);
2541 }
2542}
2543
2546 RedeclarableResult Redecl = VisitCXXRecordDeclImpl(D);
2547
2548 ASTContext &C = Reader.getContext();
2549 if (Decl *InstD = readDecl()) {
2550 if (auto *CTD = dyn_cast<ClassTemplateDecl>(InstD)) {
2551 D->SpecializedTemplate = CTD;
2552 } else {
2554 Record.readTemplateArgumentList(TemplArgs);
2555 TemplateArgumentList *ArgList
2556 = TemplateArgumentList::CreateCopy(C, TemplArgs);
2557 auto *PS =
2559 SpecializedPartialSpecialization();
2560 PS->PartialSpecialization
2562 PS->TemplateArgs = ArgList;
2563 D->SpecializedTemplate = PS;
2564 }
2565 }
2566
2568 Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
2569 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs);
2570 D->PointOfInstantiation = readSourceLocation();
2571 D->SpecializationKind = (TemplateSpecializationKind)Record.readInt();
2572 D->StrictPackMatch = Record.readBool();
2573
2574 bool writtenAsCanonicalDecl = Record.readInt();
2575 if (writtenAsCanonicalDecl) {
2576 auto *CanonPattern = readDeclAs<ClassTemplateDecl>();
2577 if (D->isCanonicalDecl()) { // It's kept in the folding set.
2578 // Set this as, or find, the canonical declaration for this specialization
2580 if (auto *Partial = dyn_cast<ClassTemplatePartialSpecializationDecl>(D)) {
2581 CanonSpec = CanonPattern->getCommonPtr()->PartialSpecializations
2582 .GetOrInsertNode(Partial);
2583 } else {
2584 CanonSpec =
2585 CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
2586 }
2587 // If there was already a canonical specialization, merge into it.
2588 if (CanonSpec != D) {
2589 MergeImpl.mergeRedeclarable<TagDecl>(D, CanonSpec, Redecl);
2590
2591 // This declaration might be a definition. Merge with any existing
2592 // definition.
2593 if (auto *DDD = D->DefinitionData) {
2594 if (CanonSpec->DefinitionData)
2595 MergeImpl.MergeDefinitionData(CanonSpec, std::move(*DDD));
2596 else
2597 CanonSpec->DefinitionData = D->DefinitionData;
2598 }
2599 D->DefinitionData = CanonSpec->DefinitionData;
2600 }
2601 }
2602 }
2603
2604 // extern/template keyword locations for explicit instantiations
2605 if (Record.readBool()) {
2606 auto *ExplicitInfo = new (C) ExplicitInstantiationInfo;
2607 ExplicitInfo->ExternKeywordLoc = readSourceLocation();
2608 ExplicitInfo->TemplateKeywordLoc = readSourceLocation();
2609 D->ExplicitInfo = ExplicitInfo;
2610 }
2611
2612 if (Record.readBool())
2613 D->setTemplateArgsAsWritten(Record.readASTTemplateArgumentListInfo());
2614
2615 return Redecl;
2616}
2617
2620 // We need to read the template params first because redeclarable is going to
2621 // need them for profiling
2622 TemplateParameterList *Params = Record.readTemplateParameterList();
2623 D->TemplateParams = Params;
2624
2625 RedeclarableResult Redecl = VisitClassTemplateSpecializationDeclImpl(D);
2626
2627 // These are read/set from/to the first declaration.
2628 if (ThisDeclID == Redecl.getFirstID()) {
2629 D->InstantiatedFromMember.setPointer(
2630 readDeclAs<ClassTemplatePartialSpecializationDecl>());
2631 D->InstantiatedFromMember.setInt(Record.readInt());
2632 }
2633}
2634
2636 RedeclarableResult Redecl = VisitRedeclarableTemplateDecl(D);
2637
2638 if (ThisDeclID == Redecl.getFirstID()) {
2639 // This FunctionTemplateDecl owns a CommonPtr; read it.
2640 ReadSpecializations(*Loc.F, D, Loc.F->DeclsCursor, /*IsPartial=*/false);
2641 }
2642}
2643
2644/// TODO: Unify with ClassTemplateSpecializationDecl version?
2645/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2646/// VarTemplate(Partial)SpecializationDecl with a new data
2647/// structure Template(Partial)SpecializationDecl, and
2648/// using Template(Partial)SpecializationDecl as input type.
2651 ASTContext &C = Reader.getContext();
2652 if (Decl *InstD = readDecl()) {
2653 if (auto *VTD = dyn_cast<VarTemplateDecl>(InstD)) {
2654 D->SpecializedTemplate = VTD;
2655 } else {
2657 Record.readTemplateArgumentList(TemplArgs);
2659 C, TemplArgs);
2660 auto *PS =
2661 new (C)
2662 VarTemplateSpecializationDecl::SpecializedPartialSpecialization();
2663 PS->PartialSpecialization =
2665 PS->TemplateArgs = ArgList;
2666 D->SpecializedTemplate = PS;
2667 }
2668 }
2669
2670 // extern/template keyword locations for explicit instantiations
2671 if (Record.readBool()) {
2672 auto *ExplicitInfo = new (C) ExplicitInstantiationInfo;
2673 ExplicitInfo->ExternKeywordLoc = readSourceLocation();
2674 ExplicitInfo->TemplateKeywordLoc = readSourceLocation();
2675 D->ExplicitInfo = ExplicitInfo;
2676 }
2677
2678 if (Record.readBool())
2679 D->setTemplateArgsAsWritten(Record.readASTTemplateArgumentListInfo());
2680
2682 Record.readTemplateArgumentList(TemplArgs, /*Canonicalize*/ true);
2683 D->TemplateArgs = TemplateArgumentList::CreateCopy(C, TemplArgs);
2684 D->PointOfInstantiation = readSourceLocation();
2685 D->SpecializationKind = (TemplateSpecializationKind)Record.readInt();
2686 D->IsCompleteDefinition = Record.readInt();
2687
2688 RedeclarableResult Redecl = VisitVarDeclImpl(D);
2689
2690 bool writtenAsCanonicalDecl = Record.readInt();
2691 if (writtenAsCanonicalDecl) {
2692 auto *CanonPattern = readDeclAs<VarTemplateDecl>();
2693 if (D->isCanonicalDecl()) { // It's kept in the folding set.
2695 if (auto *Partial = dyn_cast<VarTemplatePartialSpecializationDecl>(D)) {
2696 CanonSpec = CanonPattern->getCommonPtr()
2697 ->PartialSpecializations.GetOrInsertNode(Partial);
2698 } else {
2699 CanonSpec =
2700 CanonPattern->getCommonPtr()->Specializations.GetOrInsertNode(D);
2701 }
2702 // If we already have a matching specialization, merge it.
2703 if (CanonSpec != D)
2704 MergeImpl.mergeRedeclarable<VarDecl>(D, CanonSpec, Redecl);
2705 }
2706 }
2707
2708 return Redecl;
2709}
2710
2711/// TODO: Unify with ClassTemplatePartialSpecializationDecl version?
2712/// May require unifying ClassTemplate(Partial)SpecializationDecl and
2713/// VarTemplate(Partial)SpecializationDecl with a new data
2714/// structure Template(Partial)SpecializationDecl, and
2715/// using Template(Partial)SpecializationDecl as input type.
2718 TemplateParameterList *Params = Record.readTemplateParameterList();
2719 D->TemplateParams = Params;
2720
2721 RedeclarableResult Redecl = VisitVarTemplateSpecializationDeclImpl(D);
2722
2723 // These are read/set from/to the first declaration.
2724 if (ThisDeclID == Redecl.getFirstID()) {
2725 D->InstantiatedFromMember.setPointer(
2726 readDeclAs<VarTemplatePartialSpecializationDecl>());
2727 D->InstantiatedFromMember.setInt(Record.readInt());
2728 }
2729}
2730
2732 VisitTypeDecl(D);
2733
2734 D->setDeclaredWithTypename(Record.readInt());
2735
2736 bool TypeConstraintInitialized = D->hasTypeConstraint() && Record.readBool();
2737 if (TypeConstraintInitialized) {
2738 ConceptReference *CR = nullptr;
2739 if (Record.readBool())
2740 CR = Record.readConceptReference();
2741 Expr *ImmediatelyDeclaredConstraint = Record.readExpr();
2742 UnsignedOrNone ArgPackSubstIndex = Record.readUnsignedOrNone();
2743
2744 D->setTypeConstraint(CR, ImmediatelyDeclaredConstraint, ArgPackSubstIndex);
2745 D->NumExpanded = Record.readUnsignedOrNone();
2746 }
2747
2748 if (Record.readInt())
2749 D->setDefaultArgument(Reader.getContext(),
2750 Record.readTemplateArgumentLoc());
2751}
2752
2755 // TemplateParmPosition.
2756 D->setDepth(Record.readInt());
2757 D->setPosition(Record.readInt());
2759 D->setPlaceholderTypeConstraint(Record.readExpr());
2760 if (D->isExpandedParameterPack()) {
2761 auto TypesAndInfos =
2762 D->getTrailingObjects<std::pair<QualType, TypeSourceInfo *>>();
2763 for (unsigned I = 0, N = D->getNumExpansionTypes(); I != N; ++I) {
2764 new (&TypesAndInfos[I].first) QualType(Record.readType());
2765 TypesAndInfos[I].second = readTypeSourceInfo();
2766 }
2767 } else {
2768 // Rest of NonTypeTemplateParmDecl.
2769 D->ParameterPack = Record.readInt();
2770 if (Record.readInt())
2771 D->setDefaultArgument(Reader.getContext(),
2772 Record.readTemplateArgumentLoc());
2773 }
2774}
2775
2778 D->ParameterKind = static_cast<TemplateNameKind>(Record.readInt());
2779 D->setDeclaredWithTypename(Record.readBool());
2780 // TemplateParmPosition.
2781 D->setDepth(Record.readInt());
2782 D->setPosition(Record.readInt());
2783 if (D->isExpandedParameterPack()) {
2784 auto **Data = D->getTrailingObjects();
2785 for (unsigned I = 0, N = D->getNumExpansionTemplateParameters();
2786 I != N; ++I)
2787 Data[I] = Record.readTemplateParameterList();
2788 } else {
2789 // Rest of TemplateTemplateParmDecl.
2790 D->ParameterPack = Record.readInt();
2791 if (Record.readInt())
2792 D->setDefaultArgument(Reader.getContext(),
2793 Record.readTemplateArgumentLoc());
2794 }
2795}
2796
2801
2803 VisitDecl(D);
2804 D->AssertExprAndFailed.setPointer(Record.readExpr());
2805 D->AssertExprAndFailed.setInt(Record.readInt());
2806 D->Message = cast_or_null<StringLiteral>(Record.readExpr());
2807 D->RParenLoc = readSourceLocation();
2808}
2809
2812 // Note: trailing flags were already read by ReadDeclRecord and passed to
2813 // CreateDeserialized, so TypeAndFlags.getInt() is already set.
2814 VisitDecl(D);
2815 auto *Spec = readDeclAs<NamedDecl>();
2816 D->SpecAndTSK.setPointer(Spec);
2817 D->ExternLoc = readSourceLocation();
2818 D->NameLoc = readSourceLocation();
2819 TypeSourceInfo *TSI = readTypeSourceInfo();
2820 unsigned TSK = Record.readInt();
2821 D->SpecAndTSK.setInt(TSK);
2822 D->TypeAndFlags.setPointer(TSI); // preserves trailing flags in int bits
2823 // Read trailing objects.
2824 if (D->hasTrailingQualifier())
2825 *D->getTrailingObjects<NestedNameSpecifierLoc>() =
2826 Record.readNestedNameSpecifierLoc();
2827 if (D->hasTrailingArgsAsWritten())
2828 *D->getTrailingObjects<const ASTTemplateArgumentListInfo *>() =
2829 Record.readASTTemplateArgumentListInfo();
2830
2831 // Rebuild the ASTContext map from specialization to EID.
2832 if (Spec)
2833 Reader.getContext().addExplicitInstantiationDecl(Spec, D);
2834}
2835
2837 VisitDecl(D);
2838 D->Pattern = cast<CXXExpansionStmtPattern>(Record.readStmt());
2839 D->Instantiations =
2840 cast_or_null<CXXExpansionStmtInstantiation>(Record.readStmt());
2841 D->IndexNTTP = cast<NonTypeTemplateParmDecl>(Record.readDeclRef());
2842}
2843
2847
2850 VisitDecl(D);
2851 D->ExtendingDecl = readDeclAs<ValueDecl>();
2852 D->ExprWithTemporary = Record.readStmt();
2853 if (Record.readInt()) {
2854 D->Value = new (D->getASTContext()) APValue(Record.readAPValue());
2855 D->getASTContext().addDestruction(D->Value);
2856 }
2857 D->ManglingNumber = Record.readInt();
2858 mergeMergeable(D);
2859}
2860
2862 LookupBlockOffsets &Offsets) {
2863 Offsets.LexicalOffset = ReadLocalOffset();
2864 Offsets.VisibleOffset = ReadLocalOffset();
2865 Offsets.ModuleLocalOffset = ReadLocalOffset();
2866 Offsets.TULocalOffset = ReadLocalOffset();
2867}
2868
2869template <typename T>
2871 GlobalDeclID FirstDeclID = readDeclID();
2872 Decl *MergeWith = nullptr;
2873
2874 bool IsKeyDecl = ThisDeclID == FirstDeclID;
2875 bool IsFirstLocalDecl = false;
2876
2877 uint64_t RedeclOffset = 0;
2878
2879 // invalid FirstDeclID indicates that this declaration was the only
2880 // declaration of its entity, and is used for space optimization.
2881 if (FirstDeclID.isInvalid()) {
2882 FirstDeclID = ThisDeclID;
2883 IsKeyDecl = true;
2884 IsFirstLocalDecl = true;
2885 } else if (unsigned N = Record.readInt()) {
2886 // This declaration was the first local declaration, but may have imported
2887 // other declarations.
2888 IsKeyDecl = N == 1;
2889 IsFirstLocalDecl = true;
2890
2891 // We have some declarations that must be before us in our redeclaration
2892 // chain. Read them now, and remember that we ought to merge with one of
2893 // them.
2894 // FIXME: Provide a known merge target to the second and subsequent such
2895 // declaration.
2896 for (unsigned I = 0; I != N - 1; ++I)
2897 MergeWith = readDecl();
2898
2899 RedeclOffset = ReadLocalOffset();
2900 } else {
2901 // This declaration was not the first local declaration. Read the first
2902 // local declaration now, to trigger the import of other redeclarations.
2903 (void)readDecl();
2904 }
2905
2906 auto *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
2907 if (FirstDecl != D) {
2908 // We delay loading of the redeclaration chain to avoid deeply nested calls.
2909 // We temporarily set the first (canonical) declaration as the previous one
2910 // which is the one that matters and mark the real previous DeclID to be
2911 // loaded & attached later on.
2913 D->First = FirstDecl->getCanonicalDecl();
2914 }
2915
2916 auto *DAsT = static_cast<T *>(D);
2917
2918 // Note that we need to load local redeclarations of this decl and build a
2919 // decl chain for them. This must happen *after* we perform the preloading
2920 // above; this ensures that the redeclaration chain is built in the correct
2921 // order.
2922 if (IsFirstLocalDecl)
2923 Reader.PendingDeclChains.push_back(std::make_pair(DAsT, RedeclOffset));
2924
2925 return RedeclarableResult(MergeWith, FirstDeclID, IsKeyDecl);
2926}
2927
2928/// Attempts to merge the given declaration (D) with another declaration
2929/// of the same entity.
2930template <typename T>
2932 RedeclarableResult &Redecl) {
2933 // If modules are not available, there is no reason to perform this merge.
2934 if (!Reader.getContext().getLangOpts().Modules)
2935 return;
2936
2937 // If we're not the canonical declaration, we don't need to merge.
2938 if (!DBase->isFirstDecl())
2939 return;
2940
2941 auto *D = static_cast<T *>(DBase);
2942
2943 if (auto *Existing = Redecl.getKnownMergeTarget())
2944 // We already know of an existing declaration we should merge with.
2945 MergeImpl.mergeRedeclarable(D, cast<T>(Existing), Redecl);
2946 else if (FindExistingResult ExistingRes = findExisting(D))
2947 if (T *Existing = ExistingRes)
2948 MergeImpl.mergeRedeclarable(D, Existing, Redecl);
2949}
2950
2951/// Attempt to merge D with a previous declaration of the same lambda, which is
2952/// found by its index within its context declaration, if it has one.
2953///
2954/// We can't look up lambdas in their enclosing lexical or semantic context in
2955/// general, because for lambdas in variables, both of those might be a
2956/// namespace or the translation unit.
2957void ASTDeclMerger::mergeLambda(CXXRecordDecl *D, RedeclarableResult &Redecl,
2958 Decl &Context, unsigned IndexInContext) {
2959 // If modules are not available, there is no reason to perform this merge.
2960 if (!Reader.getContext().getLangOpts().Modules)
2961 return;
2962
2963 // If we're not the canonical declaration, we don't need to merge.
2964 if (!D->isFirstDecl())
2965 return;
2966
2967 if (auto *Existing = Redecl.getKnownMergeTarget())
2968 // We already know of an existing declaration we should merge with.
2969 mergeRedeclarable(D, cast<TagDecl>(Existing), Redecl);
2970
2971 // Look up this lambda to see if we've seen it before. If so, merge with the
2972 // one we already loaded.
2973 auto *&Slot = Reader.getContext().getLambdaDeclarationSlotForMerging(
2974 &Context, IndexInContext);
2975 if (TagDecl *PrevDecl = Slot)
2976 mergeRedeclarable(D, PrevDecl, Redecl);
2977 else
2978 Slot = D;
2979}
2980
2982 RedeclarableResult &Redecl) {
2983 mergeRedeclarable(D, Redecl);
2984 // If we merged the template with a prior declaration chain, merge the
2985 // common pointer.
2986 // FIXME: Actually merge here, don't just overwrite.
2987 D->Common = D->getCanonicalDecl()->Common;
2988}
2989
2990/// "Cast" to type T, asserting if we don't have an implicit conversion.
2991/// We use this to put code in a template that will only be valid for certain
2992/// instantiations.
2993template<typename T> static T assert_cast(T t) { return t; }
2994template<typename T> static T assert_cast(...) {
2995 llvm_unreachable("bad assert_cast");
2996}
2997
2998/// Merge together the pattern declarations from two template
2999/// declarations.
3001 RedeclarableTemplateDecl *Existing,
3002 bool IsKeyDecl) {
3003 auto *DPattern = D->getTemplatedDecl();
3004 auto *ExistingPattern = Existing->getTemplatedDecl();
3005 RedeclarableResult Result(
3006 /*MergeWith*/ ExistingPattern,
3007 DPattern->getCanonicalDecl()->getGlobalID(), IsKeyDecl);
3008
3009 if (auto *DClass = dyn_cast<CXXRecordDecl>(DPattern)) {
3010 // Merge with any existing definition.
3011 // FIXME: This is duplicated in several places. Refactor.
3012 auto *ExistingClass =
3013 cast<CXXRecordDecl>(ExistingPattern)->getCanonicalDecl();
3014 if (auto *DDD = DClass->DefinitionData) {
3015 if (ExistingClass->DefinitionData) {
3016 MergeDefinitionData(ExistingClass, std::move(*DDD));
3017 } else {
3018 ExistingClass->DefinitionData = DClass->DefinitionData;
3019 // We may have skipped this before because we thought that DClass
3020 // was the canonical declaration.
3021 Reader.PendingDefinitions.insert(DClass);
3022 }
3023 }
3024 DClass->DefinitionData = ExistingClass->DefinitionData;
3025
3026 return mergeRedeclarable(DClass, cast<TagDecl>(ExistingPattern),
3027 Result);
3028 }
3029 if (auto *DFunction = dyn_cast<FunctionDecl>(DPattern))
3030 return mergeRedeclarable(DFunction, cast<FunctionDecl>(ExistingPattern),
3031 Result);
3032 if (auto *DVar = dyn_cast<VarDecl>(DPattern))
3033 return mergeRedeclarable(DVar, cast<VarDecl>(ExistingPattern), Result);
3034 if (auto *DAlias = dyn_cast<TypeAliasDecl>(DPattern))
3035 return mergeRedeclarable(DAlias, cast<TypedefNameDecl>(ExistingPattern),
3036 Result);
3037 llvm_unreachable("merged an unknown kind of redeclarable template");
3038}
3039
3040/// Attempts to merge the given declaration (D) with another declaration
3041/// of the same entity.
3042template <typename T>
3044 GlobalDeclID KeyDeclID) {
3045 auto *D = static_cast<T *>(DBase);
3046 T *ExistingCanon = Existing->getCanonicalDecl();
3047 T *DCanon = D->getCanonicalDecl();
3048 if (ExistingCanon != DCanon) {
3049 // Have our redeclaration link point back at the canonical declaration
3050 // of the existing declaration, so that this declaration has the
3051 // appropriate canonical declaration.
3053 D->First = ExistingCanon;
3054 ExistingCanon->Used |= D->Used;
3055 D->Used = false;
3056
3057 bool IsKeyDecl = KeyDeclID.isValid();
3058
3059 // When we merge a template, merge its pattern.
3060 if (auto *DTemplate = dyn_cast<RedeclarableTemplateDecl>(D))
3062 DTemplate, assert_cast<RedeclarableTemplateDecl *>(ExistingCanon),
3063 IsKeyDecl);
3064
3065 // If this declaration is a key declaration, make a note of that.
3066 if (IsKeyDecl)
3067 Reader.KeyDecls[ExistingCanon].push_back(KeyDeclID);
3068 }
3069}
3070
3071/// ODR-like semantics for C/ObjC allow us to merge tag types and a structural
3072/// check in Sema guarantees the types can be merged (see C11 6.2.7/1 or C89
3073/// 6.1.2.6/1). Although most merging is done in Sema, we need to guarantee
3074/// that some types are mergeable during deserialization, otherwise name
3075/// lookup fails. This is the case for EnumConstantDecl.
3077 if (!ND)
3078 return false;
3079 // TODO: implement merge for other necessary decls.
3081 return true;
3082 return false;
3083}
3084
3085/// Attempts to merge LifetimeExtendedTemporaryDecl with
3086/// identical class definitions from two different modules.
3088 // If modules are not available, there is no reason to perform this merge.
3089 if (!Reader.getContext().getLangOpts().Modules)
3090 return;
3091
3092 LifetimeExtendedTemporaryDecl *LETDecl = D;
3093
3095 Reader.LETemporaryForMerging[std::make_pair(
3096 LETDecl->getExtendingDecl(), LETDecl->getManglingNumber())];
3097 if (LookupResult)
3098 Reader.getContext().setPrimaryMergedDecl(LETDecl,
3099 LookupResult->getCanonicalDecl());
3100 else
3101 LookupResult = LETDecl;
3102}
3103
3104/// Attempts to merge the given declaration (D) with another declaration
3105/// of the same entity, for the case where the entity is not actually
3106/// redeclarable. This happens, for instance, when merging the fields of
3107/// identical class definitions from two different modules.
3108template<typename T>
3110 // If modules are not available, there is no reason to perform this merge.
3111 if (!Reader.getContext().getLangOpts().Modules)
3112 return;
3113
3114 // ODR-based merging is performed in C++ and in some cases (tag types) in C.
3115 // Note that C identically-named things in different translation units are
3116 // not redeclarations, but may still have compatible types, where ODR-like
3117 // semantics may apply.
3118 if (!Reader.getContext().getLangOpts().CPlusPlus &&
3119 !allowODRLikeMergeInC(dyn_cast<NamedDecl>(static_cast<T*>(D))))
3120 return;
3121
3122 if (FindExistingResult ExistingRes = findExisting(static_cast<T*>(D)))
3123 if (T *Existing = ExistingRes)
3124 Reader.getContext().setPrimaryMergedDecl(static_cast<T *>(D),
3125 Existing->getCanonicalDecl());
3126}
3127
3129 Record.readOMPChildren(D->Data);
3130 VisitDecl(D);
3131}
3132
3134 Record.readOMPChildren(D->Data);
3135 VisitDecl(D);
3136}
3137
3139 Record.readOMPChildren(D->Data);
3140 VisitDecl(D);
3141}
3142
3144 VisitValueDecl(D);
3145 D->setLocation(readSourceLocation());
3146 Expr *In = Record.readExpr();
3147 Expr *Out = Record.readExpr();
3148 D->setCombinerData(In, Out);
3149 Expr *Combiner = Record.readExpr();
3150 D->setCombiner(Combiner);
3151 Expr *Orig = Record.readExpr();
3152 Expr *Priv = Record.readExpr();
3153 D->setInitializerData(Orig, Priv);
3154 Expr *Init = Record.readExpr();
3155 auto IK = static_cast<OMPDeclareReductionInitKind>(Record.readInt());
3156 D->setInitializer(Init, IK);
3157 D->PrevDeclInScope = readDeclID().getRawValue();
3158}
3159
3161 Record.readOMPChildren(D->Data);
3162 VisitValueDecl(D);
3163 D->VarName = Record.readDeclarationName();
3164 D->PrevDeclInScope = readDeclID().getRawValue();
3165}
3166
3170
3172 VisitDecl(D);
3173 D->DirKind = Record.readEnum<OpenACCDirectiveKind>();
3174 D->DirectiveLoc = Record.readSourceLocation();
3175 D->EndLoc = Record.readSourceLocation();
3176 Record.readOpenACCClauseList(D->Clauses);
3177}
3179 VisitDecl(D);
3180 D->DirKind = Record.readEnum<OpenACCDirectiveKind>();
3181 D->DirectiveLoc = Record.readSourceLocation();
3182 D->EndLoc = Record.readSourceLocation();
3183 D->ParensLoc = Record.readSourceRange();
3184 D->FuncRef = Record.readExpr();
3185 Record.readOpenACCClauseList(D->Clauses);
3186}
3187
3188//===----------------------------------------------------------------------===//
3189// Attribute Reading
3190//===----------------------------------------------------------------------===//
3191
3192namespace {
3193class AttrReader {
3194 ASTRecordReader &Reader;
3195
3196public:
3197 AttrReader(ASTRecordReader &Reader) : Reader(Reader) {}
3198
3199 uint64_t readInt() {
3200 return Reader.readInt();
3201 }
3202
3203 bool readBool() { return Reader.readBool(); }
3204
3205 SourceRange readSourceRange() {
3206 return Reader.readSourceRange();
3207 }
3208
3209 SourceLocation readSourceLocation() {
3210 return Reader.readSourceLocation();
3211 }
3212
3213 Expr *readExpr() { return Reader.readExpr(); }
3214
3215 Attr *readAttr() { return Reader.readAttr(); }
3216
3217 std::string readString() {
3218 return Reader.readString();
3219 }
3220
3221 TypeSourceInfo *readTypeSourceInfo() {
3222 return Reader.readTypeSourceInfo();
3223 }
3224
3225 IdentifierInfo *readIdentifier() {
3226 return Reader.readIdentifier();
3227 }
3228
3229 VersionTuple readVersionTuple() {
3230 return Reader.readVersionTuple();
3231 }
3232
3233 OMPTraitInfo *readOMPTraitInfo() { return Reader.readOMPTraitInfo(); }
3234
3235 template <typename T> T *readDeclAs() { return Reader.readDeclAs<T>(); }
3236};
3237}
3238
3240 AttrReader Record(*this);
3241 auto V = Record.readInt();
3242 if (!V)
3243 return nullptr;
3244
3245 Attr *New = nullptr;
3246 // Kind is stored as a 1-based integer because 0 is used to indicate a null
3247 // Attr pointer.
3248 auto Kind = static_cast<attr::Kind>(V - 1);
3249 ASTContext &Context = getContext();
3250
3251 IdentifierInfo *AttrName = Record.readIdentifier();
3252 IdentifierInfo *ScopeName = Record.readIdentifier();
3253 SourceRange AttrRange = Record.readSourceRange();
3254 SourceLocation ScopeLoc = Record.readSourceLocation();
3255 unsigned ParsedKind = Record.readInt();
3256 unsigned Syntax = Record.readInt();
3257 unsigned SpellingIndex = Record.readInt();
3258 bool IsAlignas = (ParsedKind == AttributeCommonInfo::AT_Aligned &&
3260 SpellingIndex == AlignedAttr::Keyword_alignas);
3261 bool IsRegularKeywordAttribute = Record.readBool();
3262
3263 AttributeCommonInfo Info(AttrName, AttributeScopeInfo(ScopeName, ScopeLoc),
3264 AttrRange, AttributeCommonInfo::Kind(ParsedKind),
3265 {AttributeCommonInfo::Syntax(Syntax), SpellingIndex,
3266 IsAlignas, IsRegularKeywordAttribute});
3267
3268#include "clang/Serialization/AttrPCHRead.inc"
3269
3270 assert(New && "Unable to decode attribute?");
3271 return New;
3272}
3273
3274/// Reads attributes from the current stream position.
3276 for (unsigned I = 0, E = readInt(); I != E; ++I)
3277 if (auto *A = readAttr())
3278 Attrs.push_back(A);
3279}
3280
3281//===----------------------------------------------------------------------===//
3282// ASTReader Implementation
3283//===----------------------------------------------------------------------===//
3284
3285/// Note that we have loaded the declaration with the given
3286/// Index.
3287///
3288/// This routine notes that this declaration has already been loaded,
3289/// so that future GetDecl calls will return this declaration rather
3290/// than trying to load a new declaration.
3291inline void ASTReader::LoadedDecl(unsigned Index, Decl *D) {
3292 assert(!DeclsLoaded[Index] && "Decl loaded twice?");
3293 DeclsLoaded[Index] = D;
3294}
3295
3296/// Determine whether the consumer will be interested in seeing
3297/// this declaration (via HandleTopLevelDecl).
3298///
3299/// This routine should return true for anything that might affect
3300/// code generation, e.g., inline function definitions, Objective-C
3301/// declarations with metadata, etc.
3302bool ASTReader::isConsumerInterestedIn(Decl *D) {
3303 // An ObjCMethodDecl is never considered as "interesting" because its
3304 // implementation container always is.
3305
3306 // An ImportDecl or VarDecl imported from a module map module will get
3307 // emitted when we import the relevant module.
3309 auto *M = D->getImportedOwningModule();
3310 if (M && M->Kind == Module::ModuleMapModule &&
3311 getContext().DeclMustBeEmitted(D))
3312 return false;
3313 }
3314
3315 if (isa<FileScopeAsmDecl, TopLevelStmtDecl, ObjCProtocolDecl, ObjCImplDecl,
3316 ImportDecl, PragmaCommentDecl, PragmaDetectMismatchDecl>(D))
3317 return true;
3318 if (isa<OMPThreadPrivateDecl, OMPDeclareReductionDecl, OMPDeclareMapperDecl,
3319 OMPAllocateDecl, OMPRequiresDecl>(D))
3320 return !D->getDeclContext()->isFunctionOrMethod();
3321 if (const auto *Var = dyn_cast<VarDecl>(D))
3322 return Var->isFileVarDecl() &&
3323 (Var->isThisDeclarationADefinition() == VarDecl::Definition ||
3324 OMPDeclareTargetDeclAttr::isDeclareTargetDeclaration(Var));
3325 if (const auto *Func = dyn_cast<FunctionDecl>(D))
3326 return Func->doesThisDeclarationHaveABody() || PendingBodies.count(D);
3327
3328 if (auto *ES = D->getASTContext().getExternalSource())
3329 if (ES->hasExternalDefinitions(D) == ExternalASTSource::EK_Never)
3330 return true;
3331
3332 return false;
3333}
3334
3335/// Get the correct cursor and offset for loading a declaration.
3336ASTReader::RecordLocation ASTReader::DeclCursorForID(GlobalDeclID ID,
3337 SourceLocation &Loc) {
3339 assert(M);
3340 unsigned LocalDeclIndex = ID.getLocalDeclIndex();
3341 const DeclOffset &DOffs = M->DeclOffsets[LocalDeclIndex];
3342 Loc = ReadSourceLocation(*M, DOffs.getRawLoc());
3343 return RecordLocation(M, DOffs.getBitOffset(M->DeclsBlockStartOffset));
3344}
3345
3346ASTReader::RecordLocation ASTReader::getLocalBitOffset(uint64_t GlobalOffset) {
3347 auto I = GlobalBitOffsetsMap.find(GlobalOffset);
3348
3349 assert(I != GlobalBitOffsetsMap.end() && "Corrupted global bit offsets map");
3350 return RecordLocation(I->second, GlobalOffset - I->second->GlobalBitOffset);
3351}
3352
3353uint64_t ASTReader::getGlobalBitOffset(ModuleFile &M, uint64_t LocalOffset) {
3354 return LocalOffset + M.GlobalBitOffset;
3355}
3356
3358ASTDeclReader::getOrFakePrimaryClassDefinition(ASTReader &Reader,
3359 CXXRecordDecl *RD) {
3360 // Try to dig out the definition.
3361 auto *DD = RD->DefinitionData;
3362 if (!DD)
3363 DD = RD->getCanonicalDecl()->DefinitionData;
3364
3365 // If there's no definition yet, then DC's definition is added by an update
3366 // record, but we've not yet loaded that update record. In this case, we
3367 // commit to DC being the canonical definition now, and will fix this when
3368 // we load the update record.
3369 if (!DD) {
3370 DD = new (Reader.getContext()) struct CXXRecordDecl::DefinitionData(RD);
3371 RD->setCompleteDefinition(true);
3372 RD->DefinitionData = DD;
3373 RD->getCanonicalDecl()->DefinitionData = DD;
3374
3375 // Track that we did this horrible thing so that we can fix it later.
3376 Reader.PendingFakeDefinitionData.insert(
3377 std::make_pair(DD, ASTReader::PendingFakeDefinitionKind::Fake));
3378 }
3379
3380 return DD->Definition;
3381}
3382
3383/// Find the context in which we should search for previous declarations when
3384/// looking for declarations to merge.
3385DeclContext *ASTDeclReader::getPrimaryContextForMerging(ASTReader &Reader,
3386 DeclContext *DC) {
3387 if (auto *ND = dyn_cast<NamespaceDecl>(DC))
3388 return ND->getFirstDecl();
3389
3390 if (auto *RD = dyn_cast<CXXRecordDecl>(DC))
3391 return getOrFakePrimaryClassDefinition(Reader, RD);
3392
3393 if (auto *RD = dyn_cast<RecordDecl>(DC))
3394 return RD->getDefinition();
3395
3396 if (auto *ED = dyn_cast<EnumDecl>(DC))
3397 return ED->getDefinition();
3398
3399 if (auto *OID = dyn_cast<ObjCInterfaceDecl>(DC))
3400 return OID->getDefinition();
3401
3402 // We can see the TU here only if we have no Sema object. It is possible
3403 // we're in clang-repl so we still need to get the primary context.
3404 if (auto *TU = dyn_cast<TranslationUnitDecl>(DC))
3405 return TU->getPrimaryContext();
3406
3407 return nullptr;
3408}
3409
3410ASTDeclReader::FindExistingResult::~FindExistingResult() {
3411 // Record that we had a typedef name for linkage whether or not we merge
3412 // with that declaration.
3413 if (TypedefNameForLinkage) {
3414 DeclContext *DC = New->getDeclContext()->getRedeclContext();
3415 Reader.ImportedTypedefNamesForLinkage.insert(
3416 std::make_pair(std::make_pair(DC, TypedefNameForLinkage), New));
3417 return;
3418 }
3419
3420 if (!AddResult || Existing)
3421 return;
3422
3423 DeclarationName Name = New->getDeclName();
3424 DeclContext *DC = New->getDeclContext()->getRedeclContext();
3426 setAnonymousDeclForMerging(Reader, New->getLexicalDeclContext(),
3427 AnonymousDeclNumber, New);
3428 } else if (DC->isTranslationUnit() &&
3429 !Reader.getContext().getLangOpts().CPlusPlus) {
3430 if (Reader.getIdResolver().tryAddTopLevelDecl(New, Name))
3431 Reader.PendingFakeLookupResults[Name.getAsIdentifierInfo()]
3432 .push_back(New);
3433 } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) {
3434 // Add the declaration to its redeclaration context so later merging
3435 // lookups will find it.
3436 MergeDC->makeDeclVisibleInContextImpl(New, /*Internal*/true);
3437 }
3438}
3439
3440/// Find the declaration that should be merged into, given the declaration found
3441/// by name lookup. If we're not merging with a UsingShadowDecl but Found is a
3442/// UsingShadowDecl, we need to skip the UsingShadowDecl. If we're merging an
3443/// anonymous declaration within a typedef, we need a matching typedef, and we
3444/// merge with the type inside it.
3446 bool IsTypedefNameForLinkage,
3447 bool FilteringUsingShadowDecl) {
3448 // If the taregt declaration we want is not a UsingShadowDecl, we don't need
3449 // to return the UsingShadowDecl at all.
3450 if (auto *USD = dyn_cast<UsingShadowDecl>(Found);
3451 USD && FilteringUsingShadowDecl)
3452 return getDeclForMerging(USD->getTargetDecl(), IsTypedefNameForLinkage,
3453 FilteringUsingShadowDecl);
3454
3455 if (!IsTypedefNameForLinkage)
3456 return Found;
3457
3458 // If we found a typedef declaration that gives a name to some other
3459 // declaration, then we want that inner declaration. Declarations from
3460 // AST files are handled via ImportedTypedefNamesForLinkage.
3461 if (Found->isFromASTFile())
3462 return nullptr;
3463
3464 if (auto *TND = dyn_cast<TypedefNameDecl>(Found))
3465 return TND->getAnonDeclWithTypedefName(/*AnyRedecl*/true);
3466
3467 return nullptr;
3468}
3469
3470/// Find the declaration to use to populate the anonymous declaration table
3471/// for the given lexical DeclContext. We only care about finding local
3472/// definitions of the context; we'll merge imported ones as we go.
3473DeclContext *
3474ASTDeclReader::getPrimaryDCForAnonymousDecl(DeclContext *LexicalDC) {
3475 // For classes, we track the definition as we merge.
3476 if (auto *RD = dyn_cast<CXXRecordDecl>(LexicalDC)) {
3477 auto *DD = RD->getCanonicalDecl()->DefinitionData;
3478 return DD ? DD->Definition : nullptr;
3479 } else if (auto *OID = dyn_cast<ObjCInterfaceDecl>(LexicalDC)) {
3480 return OID->getCanonicalDecl()->getDefinition();
3481 }
3482
3483 // For anything else, walk its merged redeclarations looking for a definition.
3484 // Note that we can't just call getDefinition here because the redeclaration
3485 // chain isn't wired up.
3486 for (auto *D : merged_redecls(cast<Decl>(LexicalDC))) {
3487 if (auto *FD = dyn_cast<FunctionDecl>(D))
3488 if (FD->isThisDeclarationADefinition())
3489 return FD;
3490 if (auto *MD = dyn_cast<ObjCMethodDecl>(D))
3491 if (MD->isThisDeclarationADefinition())
3492 return MD;
3493 if (auto *RD = dyn_cast<RecordDecl>(D))
3495 return RD;
3496 }
3497
3498 // No merged definition yet.
3499 return nullptr;
3500}
3501
3502NamedDecl *ASTDeclReader::getAnonymousDeclForMerging(ASTReader &Reader,
3503 DeclContext *DC,
3504 unsigned Index) {
3505 // If the lexical context has been merged, look into the now-canonical
3506 // definition.
3507 auto *CanonDC = cast<Decl>(DC)->getCanonicalDecl();
3508
3509 // If we've seen this before, return the canonical declaration.
3510 auto &Previous = Reader.AnonymousDeclarationsForMerging[CanonDC];
3511 if (Index < Previous.size() && Previous[Index])
3512 return Previous[Index];
3513
3514 // If this is the first time, but we have parsed a declaration of the context,
3515 // build the anonymous declaration list from the parsed declaration.
3516 auto *PrimaryDC = getPrimaryDCForAnonymousDecl(DC);
3517 auto needToNumberAnonymousDeclsWithin = [](Decl *D) {
3518 if (!D->isFromASTFile())
3519 return true;
3520 // If this is a class template specialization from an AST file, has at least
3521 // one field, but none of the fields have been loaded from external storage,
3522 // this is a situation where the class template specialization decl
3523 // was imported but the definition was instantiated within the source.
3524 // In such a case, we still need to number the anonymous decls.
3525 auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D);
3526 return CTSD && !CTSD->noload_field_empty() &&
3527 !CTSD->hasLoadedFieldsFromExternalStorage();
3528 };
3529 if (PrimaryDC && needToNumberAnonymousDeclsWithin(cast<Decl>(PrimaryDC))) {
3530 numberAnonymousDeclsWithin(PrimaryDC, [&](NamedDecl *ND, unsigned Number) {
3531 if (Previous.size() == Number)
3532 Previous.push_back(cast<NamedDecl>(ND->getCanonicalDecl()));
3533 else
3535 });
3536 }
3537
3538 return Index < Previous.size() ? Previous[Index] : nullptr;
3539}
3540
3541void ASTDeclReader::setAnonymousDeclForMerging(ASTReader &Reader,
3542 DeclContext *DC, unsigned Index,
3543 NamedDecl *D) {
3544 auto *CanonDC = cast<Decl>(DC)->getCanonicalDecl();
3545
3546 auto &Previous = Reader.AnonymousDeclarationsForMerging[CanonDC];
3547 if (Index >= Previous.size())
3548 Previous.resize(Index + 1);
3549 if (!Previous[Index])
3550 Previous[Index] = D;
3551}
3552
3553ASTDeclReader::FindExistingResult ASTDeclReader::findExisting(NamedDecl *D) {
3554 DeclarationName Name = TypedefNameForLinkage ? TypedefNameForLinkage
3555 : D->getDeclName();
3556
3557 if (!Name && !needsAnonymousDeclarationNumber(D)) {
3558 // Don't bother trying to find unnamed declarations that are in
3559 // unmergeable contexts.
3560 FindExistingResult Result(Reader, D, /*Existing=*/nullptr,
3561 AnonymousDeclNumber, TypedefNameForLinkage);
3562 Result.suppress();
3563 return Result;
3564 }
3565
3566 ASTContext &C = Reader.getContext();
3567 DeclContext *DC = D->getDeclContext()->getRedeclContext();
3568 if (TypedefNameForLinkage) {
3569 auto It = Reader.ImportedTypedefNamesForLinkage.find(
3570 std::make_pair(DC, TypedefNameForLinkage));
3571 if (It != Reader.ImportedTypedefNamesForLinkage.end())
3572 if (C.isSameEntity(It->second, D))
3573 return FindExistingResult(Reader, D, It->second, AnonymousDeclNumber,
3574 TypedefNameForLinkage);
3575 // Go on to check in other places in case an existing typedef name
3576 // was not imported.
3577 }
3578
3580 // This is an anonymous declaration that we may need to merge. Look it up
3581 // in its context by number.
3582 if (auto *Existing = getAnonymousDeclForMerging(
3583 Reader, D->getLexicalDeclContext(), AnonymousDeclNumber))
3584 if (C.isSameEntity(Existing, D))
3585 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3586 TypedefNameForLinkage);
3587 } else if (DC->isTranslationUnit() &&
3588 !Reader.getContext().getLangOpts().CPlusPlus) {
3589 IdentifierResolver &IdResolver = Reader.getIdResolver();
3590
3591 // Temporarily consider the identifier to be up-to-date. We don't want to
3592 // cause additional lookups here.
3593 class UpToDateIdentifierRAII {
3594 IdentifierInfo *II;
3595 bool WasOutToDate = false;
3596
3597 public:
3598 explicit UpToDateIdentifierRAII(IdentifierInfo *II) : II(II) {
3599 if (II) {
3600 WasOutToDate = II->isOutOfDate();
3601 if (WasOutToDate)
3602 II->setOutOfDate(false);
3603 }
3604 }
3605
3606 ~UpToDateIdentifierRAII() {
3607 if (WasOutToDate)
3608 II->setOutOfDate(true);
3609 }
3610 } UpToDate(Name.getAsIdentifierInfo());
3611
3612 for (IdentifierResolver::iterator I = IdResolver.begin(Name),
3613 IEnd = IdResolver.end();
3614 I != IEnd; ++I) {
3615 if (NamedDecl *Existing =
3616 getDeclForMerging(*I, TypedefNameForLinkage,
3617 /*FilteringUsingShadowDecl=*/false))
3618 if (C.isSameEntity(Existing, D))
3619 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3620 TypedefNameForLinkage);
3621 }
3622 } else if (DeclContext *MergeDC = getPrimaryContextForMerging(Reader, DC)) {
3623 DeclContext::lookup_result R = MergeDC->noload_lookup(Name);
3624 for (DeclContext::lookup_iterator I = R.begin(), E = R.end(); I != E; ++I) {
3625 if (NamedDecl *Existing = getDeclForMerging(*I, TypedefNameForLinkage,
3627 if (C.isSameEntity(Existing, D)) {
3628 return FindExistingResult(Reader, D, Existing, AnonymousDeclNumber,
3629 TypedefNameForLinkage);
3630 }
3631 }
3632 } else {
3633 // Not in a mergeable context.
3634 return FindExistingResult(Reader);
3635 }
3636
3637 // If this declaration is from a merged context, make a note that we need to
3638 // check that the canonical definition of that context contains the decl.
3639 //
3640 // Note that we don't perform ODR checks for decls from the global module
3641 // fragment.
3642 //
3643 // FIXME: We should do something similar if we merge two definitions of the
3644 // same template specialization into the same CXXRecordDecl.
3645 auto MergedDCIt = Reader.MergedDeclContexts.find(D->getLexicalDeclContext());
3646 if (MergedDCIt != Reader.MergedDeclContexts.end() &&
3647 !shouldSkipCheckingODR(D) && MergedDCIt->second == D->getDeclContext() &&
3649 Reader.PendingOdrMergeChecks.push_back(D);
3650
3651 return FindExistingResult(Reader, D, /*Existing=*/nullptr,
3652 AnonymousDeclNumber, TypedefNameForLinkage);
3653}
3654
3655template<typename DeclT>
3659
3661 llvm_unreachable("getMostRecentDecl on non-redeclarable declaration");
3662}
3663
3665 assert(D);
3666
3667 switch (D->getKind()) {
3668#define ABSTRACT_DECL(TYPE)
3669#define DECL(TYPE, BASE) \
3670 case Decl::TYPE: \
3671 return getMostRecentDeclImpl(cast<TYPE##Decl>(D));
3672#include "clang/AST/DeclNodes.inc"
3673 }
3674 llvm_unreachable("unknown decl kind");
3675}
3676
3677Decl *ASTReader::getMostRecentExistingDecl(Decl *D) {
3679}
3680
3681namespace {
3682void mergeInheritableAttributes(ASTReader &Reader, Decl *D, Decl *Previous) {
3683 InheritableAttr *NewAttr = nullptr;
3684 ASTContext &Context = Reader.getContext();
3685 const auto *IA = Previous->getAttr<MSInheritanceAttr>();
3686
3687 if (IA && !D->hasAttr<MSInheritanceAttr>()) {
3688 NewAttr = cast<InheritableAttr>(IA->clone(Context));
3689 NewAttr->setInherited(true);
3690 D->addAttr(NewAttr);
3691 }
3692
3693 if (!D->hasAttr<AvailabilityAttr>()) {
3694 for (const auto *AA : Previous->specific_attrs<AvailabilityAttr>()) {
3695 NewAttr = AA->clone(Context);
3696 NewAttr->setInherited(true);
3697 D->addAttr(NewAttr);
3698 }
3699 }
3700}
3701} // namespace
3702
3703template<typename DeclT>
3710
3711namespace clang {
3712
3713template<>
3716 Decl *Previous, Decl *Canon) {
3717 auto *PrevVD = cast<VarDecl>(Previous);
3718 D->RedeclLink.setPrevious(PrevVD);
3719 D->First = PrevVD->First;
3720
3721 // We should keep at most one definition on the chain.
3722 // FIXME: Cache the definition once we've found it. Building a chain with
3723 // N definitions currently takes O(N^2) time here.
3724 auto *VD = static_cast<VarDecl *>(D);
3725 if (VD->isThisDeclarationADefinition() == VarDecl::Definition) {
3726 for (VarDecl *CurD = PrevVD; CurD; CurD = CurD->getPreviousDecl()) {
3727 if (CurD->isThisDeclarationADefinition() == VarDecl::Definition) {
3728 // FIXME: For header modules, there are some problems if we don't
3729 // demote definition to declaration.
3730 // See clang/test/Modules/module-init-forcelly-loaded-module.cpp
3731 // for example. Maybe we are able to handle the CodeGen part
3732 // to avoid it emitting duplicated definitions. But just workaround
3733 // now temporarily.
3734 if (VD->getOwningModule() &&
3735 VD->getOwningModule()->isHeaderLikeModule())
3736 VD->demoteThisDefinitionToDeclaration();
3737 Reader.mergeDefinitionVisibility(CurD, VD);
3738 break;
3739 }
3740 }
3741 }
3742}
3743
3745 auto *DT = T->getContainedDeducedType();
3746 return DT && !DT->isDeduced();
3747}
3748
3749template<>
3752 Decl *Previous, Decl *Canon) {
3753 auto *FD = static_cast<FunctionDecl *>(D);
3754 auto *PrevFD = cast<FunctionDecl>(Previous);
3755
3756 FD->RedeclLink.setPrevious(PrevFD);
3757 FD->First = PrevFD->First;
3758
3759 // If the previous declaration is an inline function declaration, then this
3760 // declaration is too.
3761 if (PrevFD->isInlined() != FD->isInlined()) {
3762 // FIXME: [dcl.fct.spec]p4:
3763 // If a function with external linkage is declared inline in one
3764 // translation unit, it shall be declared inline in all translation
3765 // units in which it appears.
3766 //
3767 // Be careful of this case:
3768 //
3769 // module A:
3770 // template<typename T> struct X { void f(); };
3771 // template<typename T> inline void X<T>::f() {}
3772 //
3773 // module B instantiates the declaration of X<int>::f
3774 // module C instantiates the definition of X<int>::f
3775 //
3776 // If module B and C are merged, we do not have a violation of this rule.
3777 FD->setImplicitlyInline(true);
3778 }
3779
3780 auto *FPT = FD->getType()->getAs<FunctionProtoType>();
3781 auto *PrevFPT = PrevFD->getType()->getAs<FunctionProtoType>();
3782 if (FPT && PrevFPT) {
3783 // If we need to propagate an exception specification along the redecl
3784 // chain, make a note of that so that we can do so later.
3785 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType());
3786 bool WasUnresolved =
3788 if (IsUnresolved != WasUnresolved)
3789 Reader.PendingExceptionSpecUpdates.insert(
3790 {Canon, IsUnresolved ? PrevFD : FD});
3791
3792 // If we need to propagate a deduced return type along the redecl chain,
3793 // make a note of that so that we can do it later.
3794 bool IsUndeduced = isUndeducedReturnType(FPT->getReturnType());
3795 bool WasUndeduced = isUndeducedReturnType(PrevFPT->getReturnType());
3796 if (IsUndeduced != WasUndeduced)
3797 Reader.PendingDeducedTypeUpdates.insert(
3798 {cast<FunctionDecl>(Canon),
3799 (IsUndeduced ? PrevFPT : FPT)->getReturnType()});
3800 }
3801}
3802
3803} // namespace clang
3804
3806 llvm_unreachable("attachPreviousDecl on non-redeclarable declaration");
3807}
3808
3809/// Inherit the default template argument from \p From to \p To. Returns
3810/// \c false if there is no default template for \p From.
3811template <typename ParmDecl>
3812static bool inheritDefaultTemplateArgument(ASTContext &Context, ParmDecl *From,
3813 Decl *ToD) {
3814 auto *To = cast<ParmDecl>(ToD);
3815 if (!From->hasDefaultArgument())
3816 return false;
3817 To->setInheritedDefaultArgument(Context, From);
3818 return true;
3819}
3820
3822 TemplateDecl *From,
3823 TemplateDecl *To) {
3824 auto *FromTP = From->getTemplateParameters();
3825 auto *ToTP = To->getTemplateParameters();
3826 assert(FromTP->size() == ToTP->size() && "merged mismatched templates?");
3827
3828 for (unsigned I = 0, N = FromTP->size(); I != N; ++I) {
3829 NamedDecl *FromParam = FromTP->getParam(I);
3830 NamedDecl *ToParam = ToTP->getParam(I);
3831
3832 if (auto *FTTP = dyn_cast<TemplateTypeParmDecl>(FromParam))
3833 inheritDefaultTemplateArgument(Context, FTTP, ToParam);
3834 else if (auto *FNTTP = dyn_cast<NonTypeTemplateParmDecl>(FromParam))
3835 inheritDefaultTemplateArgument(Context, FNTTP, ToParam);
3836 else
3838 Context, cast<TemplateTemplateParmDecl>(FromParam), ToParam);
3839 }
3840}
3841
3842// [basic.link]/p10:
3843// If two declarations of an entity are attached to different modules,
3844// the program is ill-formed;
3846 Decl *D,
3847 Decl *Previous) {
3848 // If it is previous implcitly introduced, it is not meaningful to
3849 // diagnose it.
3850 if (Previous->isImplicit())
3851 return;
3852
3853 // FIXME: Get rid of the enumeration of decl types once we have an appropriate
3854 // abstract for decls of an entity. e.g., the namespace decl and using decl
3855 // doesn't introduce an entity.
3857 return;
3858
3859 // Skip implicit instantiations since it may give false positive diagnostic
3860 // messages.
3861 // FIXME: Maybe this shows the implicit instantiations may have incorrect
3862 // module owner ships. But given we've finished the compilation of a module,
3863 // how can we add new entities to that module?
3865 return;
3867 return;
3868 if (auto *Func = dyn_cast<FunctionDecl>(Previous);
3869 Func && Func->getTemplateSpecializationInfo())
3870 return;
3871
3872 // The module ownership of in-class friend declaration is not straightforward.
3873 // Avoid diagnosing such cases.
3874 if (D->getFriendObjectKind() || Previous->getFriendObjectKind())
3875 return;
3876
3877 // Skip diagnosing in-class declarations.
3878 if (!Previous->getLexicalDeclContext()
3879 ->getNonTransparentContext()
3880 ->isFileContext() ||
3882 return;
3883
3884 Module *M = Previous->getOwningModule();
3885 if (!M)
3886 return;
3887
3888 // We only forbids merging decls within named modules.
3889 if (!M->isNamedModule()) {
3890 // Try to warn the case that we merged decls from global module.
3891 if (!M->isGlobalModule())
3892 return;
3893
3894 if (D->getOwningModule() &&
3896 return;
3897
3898 Reader.PendingWarningForDuplicatedDefsInModuleUnits.push_back(
3899 {D, Previous});
3900 return;
3901 }
3902
3903 // It is fine if they are in the same module.
3904 if (Reader.getContext().isInSameModule(M, D->getOwningModule()))
3905 return;
3906
3907 Reader.Diag(Previous->getLocation(),
3908 diag::err_multiple_decl_in_different_modules)
3909 << cast<NamedDecl>(Previous) << M->Name;
3910 Reader.Diag(D->getLocation(), diag::note_also_found);
3911}
3912
3914 Decl *Previous, Decl *Canon) {
3915 assert(D && Previous);
3916
3917 switch (D->getKind()) {
3918#define ABSTRACT_DECL(TYPE)
3919#define DECL(TYPE, BASE) \
3920 case Decl::TYPE: \
3921 attachPreviousDeclImpl(Reader, cast<TYPE##Decl>(D), Previous, Canon); \
3922 break;
3923#include "clang/AST/DeclNodes.inc"
3924 }
3925
3927
3928 // If the declaration was visible in one module, a redeclaration of it in
3929 // another module remains visible even if it wouldn't be visible by itself.
3930 //
3931 // FIXME: In this case, the declaration should only be visible if a module
3932 // that makes it visible has been imported.
3934 Previous->IdentifierNamespace &
3936
3937 // If the declaration declares a template, it may inherit default arguments
3938 // from the previous declaration.
3939 if (auto *TD = dyn_cast<TemplateDecl>(D))
3940 inheritDefaultTemplateArguments(Reader.getContext(),
3942
3943 // If any of the declaration in the chain contains an Inheritable attribute,
3944 // it needs to be added to all the declarations in the redeclarable chain.
3945 // FIXME: Only the logic of merging MSInheritableAttr is present, it should
3946 // be extended for all inheritable attributes.
3947 mergeInheritableAttributes(Reader, D, Previous);
3948}
3949
3950template<typename DeclT>
3954
3956 llvm_unreachable("attachLatestDecl on non-redeclarable declaration");
3957}
3958
3960 assert(D && Latest);
3961
3962 switch (D->getKind()) {
3963#define ABSTRACT_DECL(TYPE)
3964#define DECL(TYPE, BASE) \
3965 case Decl::TYPE: \
3966 attachLatestDeclImpl(cast<TYPE##Decl>(D), Latest); \
3967 break;
3968#include "clang/AST/DeclNodes.inc"
3969 }
3970}
3971
3972template<typename DeclT>
3976
3978 llvm_unreachable("markIncompleteDeclChain on non-redeclarable declaration");
3979}
3980
3981void ASTReader::markIncompleteDeclChain(Decl *D) {
3982 switch (D->getKind()) {
3983#define ABSTRACT_DECL(TYPE)
3984#define DECL(TYPE, BASE) \
3985 case Decl::TYPE: \
3986 ASTDeclReader::markIncompleteDeclChainImpl(cast<TYPE##Decl>(D)); \
3987 break;
3988#include "clang/AST/DeclNodes.inc"
3989 }
3990}
3991
3992/// Read the declaration at the given offset from the AST file.
3993Decl *ASTReader::ReadDeclRecord(GlobalDeclID ID) {
3994 SourceLocation DeclLoc;
3995 RecordLocation Loc = DeclCursorForID(ID, DeclLoc);
3996 llvm::BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
3997 // Keep track of where we are in the stream, then jump back there
3998 // after reading this declaration.
3999 SavedStreamPosition SavedPosition(DeclsCursor);
4000
4001 ReadingKindTracker ReadingKind(Read_Decl, *this);
4002
4003 // Note that we are loading a declaration record.
4004 Deserializing ADecl(this);
4005
4006 auto Fail = [](const char *what, llvm::Error &&Err) {
4007 llvm::report_fatal_error(Twine("ASTReader::readDeclRecord failed ") + what +
4008 ": " + toString(std::move(Err)));
4009 };
4010
4011 if (llvm::Error JumpFailed = DeclsCursor.JumpToBit(Loc.Offset))
4012 Fail("jumping", std::move(JumpFailed));
4013 ASTRecordReader Record(*this, *Loc.F);
4014 ASTDeclReader Reader(*this, Record, Loc, ID, DeclLoc);
4015 Expected<unsigned> MaybeCode = DeclsCursor.ReadCode();
4016 if (!MaybeCode)
4017 Fail("reading code", MaybeCode.takeError());
4018 unsigned Code = MaybeCode.get();
4019
4020 ASTContext &Context = getContext();
4021 Decl *D = nullptr;
4022 Expected<unsigned> MaybeDeclCode = Record.readRecord(DeclsCursor, Code);
4023 if (!MaybeDeclCode)
4024 llvm::report_fatal_error(
4025 Twine("ASTReader::readDeclRecord failed reading decl code: ") +
4026 toString(MaybeDeclCode.takeError()));
4027
4028 switch ((DeclCode)MaybeDeclCode.get()) {
4035 llvm_unreachable("Record cannot be de-serialized with readDeclRecord");
4036 case DECL_TYPEDEF:
4037 D = TypedefDecl::CreateDeserialized(Context, ID);
4038 break;
4039 case DECL_TYPEALIAS:
4040 D = TypeAliasDecl::CreateDeserialized(Context, ID);
4041 break;
4042 case DECL_ENUM:
4043 D = EnumDecl::CreateDeserialized(Context, ID);
4044 break;
4045 case DECL_RECORD:
4046 D = RecordDecl::CreateDeserialized(Context, ID);
4047 break;
4048 case DECL_ENUM_CONSTANT:
4049 D = EnumConstantDecl::CreateDeserialized(Context, ID);
4050 break;
4051 case DECL_FUNCTION:
4052 D = FunctionDecl::CreateDeserialized(Context, ID);
4053 break;
4054 case DECL_LINKAGE_SPEC:
4055 D = LinkageSpecDecl::CreateDeserialized(Context, ID);
4056 break;
4057 case DECL_EXPORT:
4058 D = ExportDecl::CreateDeserialized(Context, ID);
4059 break;
4060 case DECL_LABEL:
4061 D = LabelDecl::CreateDeserialized(Context, ID);
4062 break;
4063 case DECL_NAMESPACE:
4064 D = NamespaceDecl::CreateDeserialized(Context, ID);
4065 break;
4068 break;
4069 case DECL_USING:
4070 D = UsingDecl::CreateDeserialized(Context, ID);
4071 break;
4072 case DECL_USING_PACK:
4073 D = UsingPackDecl::CreateDeserialized(Context, ID, Record.readInt());
4074 break;
4075 case DECL_USING_SHADOW:
4076 D = UsingShadowDecl::CreateDeserialized(Context, ID);
4077 break;
4078 case DECL_USING_ENUM:
4079 D = UsingEnumDecl::CreateDeserialized(Context, ID);
4080 break;
4083 break;
4086 break;
4089 break;
4092 break;
4095 break;
4096 case DECL_CXX_RECORD:
4097 D = CXXRecordDecl::CreateDeserialized(Context, ID);
4098 break;
4101 break;
4102 case DECL_CXX_METHOD:
4103 D = CXXMethodDecl::CreateDeserialized(Context, ID);
4104 break;
4106 D = CXXConstructorDecl::CreateDeserialized(Context, ID, Record.readInt());
4107 break;
4110 break;
4113 break;
4114 case DECL_ACCESS_SPEC:
4115 D = AccessSpecDecl::CreateDeserialized(Context, ID);
4116 break;
4117 case DECL_FRIEND:
4118 D = FriendDecl::CreateDeserialized(Context, ID);
4119 break;
4122 /*NumTPLists=*/Record.readInt());
4123 break;
4126 break;
4129 break;
4132 break;
4133 case DECL_VAR_TEMPLATE:
4134 D = VarTemplateDecl::CreateDeserialized(Context, ID);
4135 break;
4138 break;
4141 break;
4144 break;
4146 bool HasTypeConstraint = Record.readInt();
4148 HasTypeConstraint);
4149 break;
4150 }
4152 bool HasTypeConstraint = Record.readInt();
4154 HasTypeConstraint);
4155 break;
4156 }
4158 bool HasTypeConstraint = Record.readInt();
4160 Context, ID, Record.readInt(), HasTypeConstraint);
4161 break;
4162 }
4165 break;
4168 Record.readInt());
4169 break;
4172 break;
4173 case DECL_CONCEPT:
4174 D = ConceptDecl::CreateDeserialized(Context, ID);
4175 break;
4178 break;
4179 case DECL_STATIC_ASSERT:
4180 D = StaticAssertDecl::CreateDeserialized(Context, ID);
4181 break;
4184 Record.readInt());
4185 break;
4188 break;
4189 case DECL_OBJC_METHOD:
4190 D = ObjCMethodDecl::CreateDeserialized(Context, ID);
4191 break;
4194 break;
4195 case DECL_OBJC_IVAR:
4196 D = ObjCIvarDecl::CreateDeserialized(Context, ID);
4197 break;
4198 case DECL_OBJC_PROTOCOL:
4199 D = ObjCProtocolDecl::CreateDeserialized(Context, ID);
4200 break;
4203 break;
4204 case DECL_OBJC_CATEGORY:
4205 D = ObjCCategoryDecl::CreateDeserialized(Context, ID);
4206 break;
4209 break;
4212 break;
4215 break;
4216 case DECL_OBJC_PROPERTY:
4217 D = ObjCPropertyDecl::CreateDeserialized(Context, ID);
4218 break;
4221 break;
4222 case DECL_FIELD:
4223 D = FieldDecl::CreateDeserialized(Context, ID);
4224 break;
4225 case DECL_INDIRECTFIELD:
4227 break;
4228 case DECL_VAR:
4229 D = VarDecl::CreateDeserialized(Context, ID);
4230 break;
4233 break;
4234 case DECL_PARM_VAR:
4235 D = ParmVarDecl::CreateDeserialized(Context, ID);
4236 break;
4237 case DECL_DECOMPOSITION:
4238 D = DecompositionDecl::CreateDeserialized(Context, ID, Record.readInt());
4239 break;
4240 case DECL_BINDING:
4241 D = BindingDecl::CreateDeserialized(Context, ID);
4242 break;
4244 D = FileScopeAsmDecl::CreateDeserialized(Context, ID);
4245 break;
4247 D = TopLevelStmtDecl::CreateDeserialized(Context, ID);
4248 break;
4249 case DECL_BLOCK:
4250 D = BlockDecl::CreateDeserialized(Context, ID);
4251 break;
4252 case DECL_MS_PROPERTY:
4253 D = MSPropertyDecl::CreateDeserialized(Context, ID);
4254 break;
4255 case DECL_MS_GUID:
4256 D = MSGuidDecl::CreateDeserialized(Context, ID);
4257 break;
4259 D = UnnamedGlobalConstantDecl::CreateDeserialized(Context, ID);
4260 break;
4262 D = TemplateParamObjectDecl::CreateDeserialized(Context, ID);
4263 break;
4265 D = OutlinedFunctionDecl::CreateDeserialized(Context, ID, Record.readInt());
4266 break;
4267 case DECL_CAPTURED:
4268 D = CapturedDecl::CreateDeserialized(Context, ID, Record.readInt());
4269 break;
4271 Error("attempt to read a C++ base-specifier record as a declaration");
4272 return nullptr;
4274 Error("attempt to read a C++ ctor initializer record as a declaration");
4275 return nullptr;
4276 case DECL_IMPORT:
4277 // Note: last entry of the ImportDecl record is the number of stored source
4278 // locations.
4279 D = ImportDecl::CreateDeserialized(Context, ID, Record.back());
4280 break;
4282 Record.skipInts(1);
4283 unsigned NumChildren = Record.readInt();
4284 Record.skipInts(1);
4285 D = OMPThreadPrivateDecl::CreateDeserialized(Context, ID, NumChildren);
4286 break;
4287 }
4288 case DECL_OMP_ALLOCATE: {
4289 unsigned NumClauses = Record.readInt();
4290 unsigned NumVars = Record.readInt();
4291 Record.skipInts(1);
4292 D = OMPAllocateDecl::CreateDeserialized(Context, ID, NumVars, NumClauses);
4293 break;
4294 }
4295 case DECL_OMP_REQUIRES: {
4296 unsigned NumClauses = Record.readInt();
4297 Record.skipInts(2);
4298 D = OMPRequiresDecl::CreateDeserialized(Context, ID, NumClauses);
4299 break;
4300 }
4303 break;
4305 unsigned NumClauses = Record.readInt();
4306 Record.skipInts(2);
4307 D = OMPDeclareMapperDecl::CreateDeserialized(Context, ID, NumClauses);
4308 break;
4309 }
4312 break;
4314 D = PragmaCommentDecl::CreateDeserialized(Context, ID, Record.readInt());
4315 break;
4318 Record.readInt());
4319 break;
4320 case DECL_EMPTY:
4321 D = EmptyDecl::CreateDeserialized(Context, ID);
4322 break;
4325 break;
4328 break;
4329 case DECL_HLSL_BUFFER:
4330 D = HLSLBufferDecl::CreateDeserialized(Context, ID);
4331 break;
4334 Record.readInt());
4335 break;
4337 D = OpenACCDeclareDecl::CreateDeserialized(Context, ID, Record.readInt());
4338 break;
4340 D = OpenACCRoutineDecl::CreateDeserialized(Context, ID, Record.readInt());
4341 break;
4342 }
4343
4344 assert(D && "Unknown declaration reading AST file");
4345 LoadedDecl(translateGlobalDeclIDToIndex(ID), D);
4346 // Set the DeclContext before doing any deserialization, to make sure internal
4347 // calls to Decl::getASTContext() by Decl's methods will find the
4348 // TranslationUnitDecl without crashing.
4350
4351 // Reading some declarations can result in deep recursion.
4352 runWithSufficientStackSpace(DeclLoc, [&] { Reader.Visit(D); });
4353
4354 // If this declaration is also a declaration context, get the
4355 // offsets for its tables of lexical and visible declarations.
4356 if (auto *DC = dyn_cast<DeclContext>(D)) {
4357 LookupBlockOffsets Offsets;
4358
4359 Reader.VisitDeclContext(DC, Offsets);
4360
4361 // Get the lexical and visible block for the delayed namespace.
4362 // It is sufficient to judge if ID is in DelayedNamespaceOffsetMap.
4363 // But it may be more efficient to filter the other cases.
4364 if (!Offsets && isa<NamespaceDecl>(D))
4365 if (auto Iter = DelayedNamespaceOffsetMap.find(ID);
4366 Iter != DelayedNamespaceOffsetMap.end())
4367 Offsets = Iter->second;
4368
4369 if (Offsets.VisibleOffset &&
4370 ReadVisibleDeclContextStorage(
4371 *Loc.F, DeclsCursor, Offsets.VisibleOffset, ID,
4372 VisibleDeclContextStorageKind::GenerallyVisible))
4373 return nullptr;
4374 if (Offsets.ModuleLocalOffset &&
4375 ReadVisibleDeclContextStorage(
4376 *Loc.F, DeclsCursor, Offsets.ModuleLocalOffset, ID,
4377 VisibleDeclContextStorageKind::ModuleLocalVisible))
4378 return nullptr;
4379 if (Offsets.TULocalOffset &&
4380 ReadVisibleDeclContextStorage(
4381 *Loc.F, DeclsCursor, Offsets.TULocalOffset, ID,
4382 VisibleDeclContextStorageKind::TULocalVisible))
4383 return nullptr;
4384
4385 if (Offsets.LexicalOffset &&
4386 ReadLexicalDeclContextStorage(*Loc.F, DeclsCursor,
4387 Offsets.LexicalOffset, DC))
4388 return nullptr;
4389 }
4390 assert(Record.getIdx() == Record.size());
4391
4392 // Load any relevant update records.
4393 PendingUpdateRecords.push_back(
4394 PendingUpdateRecord(ID, D, /*JustLoaded=*/true));
4395
4396 // Load the categories after recursive loading is finished.
4397 if (auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
4398 // If we already have a definition when deserializing the ObjCInterfaceDecl,
4399 // we put the Decl in PendingDefinitions so we can pull the categories here.
4400 if (Class->isThisDeclarationADefinition() ||
4401 PendingDefinitions.count(Class))
4402 loadObjCCategories(ID, Class);
4403
4404 // If we have deserialized a declaration that has a definition the
4405 // AST consumer might need to know about, queue it.
4406 // We don't pass it to the consumer immediately because we may be in recursive
4407 // loading, and some declarations may still be initializing.
4408 PotentiallyInterestingDecls.push_back(D);
4409
4410 return D;
4411}
4412
4413void ASTReader::PassInterestingDeclsToConsumer() {
4414 assert(Consumer);
4415
4416 if (!CanPassDeclsToConsumer)
4417 return;
4418
4419 // Guard variable to avoid recursively redoing the process of passing
4420 // decls to consumer.
4421 SaveAndRestore GuardPassingDeclsToConsumer(CanPassDeclsToConsumer,
4422 /*NewValue=*/false);
4423
4424 // Ensure that we've loaded all potentially-interesting declarations
4425 // that need to be eagerly loaded.
4426 for (auto ID : EagerlyDeserializedDecls)
4427 GetDecl(ID);
4428 EagerlyDeserializedDecls.clear();
4429
4430 auto ConsumingPotentialInterestingDecls = [this]() {
4431 while (!PotentiallyInterestingDecls.empty()) {
4432 Decl *D = PotentiallyInterestingDecls.front();
4433 PotentiallyInterestingDecls.pop_front();
4434 if (isConsumerInterestedIn(D))
4435 PassInterestingDeclToConsumer(D);
4436 }
4437 };
4438 std::deque<Decl *> MaybeInterestingDecls =
4439 std::move(PotentiallyInterestingDecls);
4440 PotentiallyInterestingDecls.clear();
4441 assert(PotentiallyInterestingDecls.empty());
4442 while (!MaybeInterestingDecls.empty()) {
4443 Decl *D = MaybeInterestingDecls.front();
4444 MaybeInterestingDecls.pop_front();
4445 // Since we load the variable's initializers lazily, it'd be problematic
4446 // if the initializers dependent on each other. So here we try to load the
4447 // initializers of static variables to make sure they are passed to code
4448 // generator by order. If we read anything interesting, we would consume
4449 // that before emitting the current declaration.
4450 if (auto *VD = dyn_cast<VarDecl>(D);
4451 VD && VD->isFileVarDecl() && !VD->isExternallyVisible())
4452 VD->getInit();
4453 ConsumingPotentialInterestingDecls();
4454 if (isConsumerInterestedIn(D))
4455 PassInterestingDeclToConsumer(D);
4456 }
4457
4458 // If we add any new potential interesting decl in the last call, consume it.
4459 ConsumingPotentialInterestingDecls();
4460
4461 for (GlobalDeclID ID : VTablesToEmit) {
4462 auto *RD = cast<CXXRecordDecl>(GetDecl(ID));
4463 assert(!RD->shouldEmitInExternalSource());
4464 PassVTableToConsumer(RD);
4465 }
4466 VTablesToEmit.clear();
4467}
4468
4469void ASTReader::loadDeclUpdateRecords(PendingUpdateRecord &Record) {
4470 // The declaration may have been modified by files later in the chain.
4471 // If this is the case, read the record containing the updates from each file
4472 // and pass it to ASTDeclReader to make the modifications.
4473 GlobalDeclID ID = Record.ID;
4474 Decl *D = Record.D;
4475 ProcessingUpdatesRAIIObj ProcessingUpdates(*this);
4476 DeclUpdateOffsetsMap::iterator UpdI = DeclUpdateOffsets.find(ID);
4477
4478 if (UpdI != DeclUpdateOffsets.end()) {
4479 auto UpdateOffsets = std::move(UpdI->second);
4480 DeclUpdateOffsets.erase(UpdI);
4481
4482 // Check if this decl was interesting to the consumer. If we just loaded
4483 // the declaration, then we know it was interesting and we skip the call
4484 // to isConsumerInterestedIn because it is unsafe to call in the
4485 // current ASTReader state.
4486 bool WasInteresting = Record.JustLoaded || isConsumerInterestedIn(D);
4487 for (auto &FileAndOffset : UpdateOffsets) {
4488 ModuleFile *F = FileAndOffset.first;
4489 uint64_t Offset = FileAndOffset.second;
4490 llvm::BitstreamCursor &Cursor = F->DeclsCursor;
4491 SavedStreamPosition SavedPosition(Cursor);
4492 if (llvm::Error JumpFailed = Cursor.JumpToBit(Offset))
4493 // FIXME don't do a fatal error.
4494 llvm::report_fatal_error(
4495 Twine("ASTReader::loadDeclUpdateRecords failed jumping: ") +
4496 toString(std::move(JumpFailed)));
4497 Expected<unsigned> MaybeCode = Cursor.ReadCode();
4498 if (!MaybeCode)
4499 llvm::report_fatal_error(
4500 Twine("ASTReader::loadDeclUpdateRecords failed reading code: ") +
4501 toString(MaybeCode.takeError()));
4502 unsigned Code = MaybeCode.get();
4503 ASTRecordReader Record(*this, *F);
4504 if (Expected<unsigned> MaybeRecCode = Record.readRecord(Cursor, Code))
4505 assert(MaybeRecCode.get() == DECL_UPDATES &&
4506 "Expected DECL_UPDATES record!");
4507 else
4508 llvm::report_fatal_error(
4509 Twine("ASTReader::loadDeclUpdateRecords failed reading rec code: ") +
4510 toString(MaybeCode.takeError()));
4511
4512 ASTDeclReader Reader(*this, Record, RecordLocation(F, Offset), ID,
4513 SourceLocation());
4514 Reader.UpdateDecl(D);
4515
4516 // We might have made this declaration interesting. If so, remember that
4517 // we need to hand it off to the consumer.
4518 if (!WasInteresting && isConsumerInterestedIn(D)) {
4519 PotentiallyInterestingDecls.push_back(D);
4520 WasInteresting = true;
4521 }
4522 }
4523 }
4524
4525 // Load the pending visible updates for this decl context, if it has any.
4526 if (auto I = PendingVisibleUpdates.find(ID);
4527 I != PendingVisibleUpdates.end()) {
4528 auto VisibleUpdates = std::move(I->second);
4529 PendingVisibleUpdates.erase(I);
4530
4531 auto *DC = cast<DeclContext>(D)->getPrimaryContext();
4532 for (const auto &Update : VisibleUpdates)
4533 Lookups[DC].Table.add(
4534 Update.Mod, Update.Data,
4535 reader::ASTDeclContextNameLookupTrait(*this, *Update.Mod));
4537 }
4538
4539 if (auto I = PendingModuleLocalVisibleUpdates.find(ID);
4540 I != PendingModuleLocalVisibleUpdates.end()) {
4541 auto ModuleLocalVisibleUpdates = std::move(I->second);
4542 PendingModuleLocalVisibleUpdates.erase(I);
4543
4544 auto *DC = cast<DeclContext>(D)->getPrimaryContext();
4545 for (const auto &Update : ModuleLocalVisibleUpdates)
4546 ModuleLocalLookups[DC].Table.add(
4547 Update.Mod, Update.Data,
4548 reader::ModuleLocalNameLookupTrait(*this, *Update.Mod));
4549 // NOTE: Can we optimize the case that the data being loaded
4550 // is not related to current module?
4552 }
4553
4554 if (auto I = TULocalUpdates.find(ID); I != TULocalUpdates.end()) {
4555 auto Updates = std::move(I->second);
4556 TULocalUpdates.erase(I);
4557
4558 auto *DC = cast<DeclContext>(D)->getPrimaryContext();
4559 for (const auto &Update : Updates)
4560 TULocalLookups[DC].Table.add(
4561 Update.Mod, Update.Data,
4562 reader::ASTDeclContextNameLookupTrait(*this, *Update.Mod));
4564 }
4565
4566 // Load any pending related decls.
4567 if (D->isCanonicalDecl()) {
4568 if (auto IT = RelatedDeclsMap.find(ID); IT != RelatedDeclsMap.end()) {
4569 for (auto LID : IT->second)
4570 GetDecl(LID);
4571 RelatedDeclsMap.erase(IT);
4572 }
4573 }
4574
4575 // Load the pending specializations update for this decl, if it has any.
4576 if (auto I = PendingSpecializationsUpdates.find(ID);
4577 I != PendingSpecializationsUpdates.end()) {
4578 auto SpecializationUpdates = std::move(I->second);
4579 PendingSpecializationsUpdates.erase(I);
4580
4581 for (const auto &Update : SpecializationUpdates)
4582 AddSpecializations(D, Update.Data, *Update.Mod, /*IsPartial=*/false);
4583 }
4584
4585 // Load the pending specializations update for this decl, if it has any.
4586 if (auto I = PendingPartialSpecializationsUpdates.find(ID);
4587 I != PendingPartialSpecializationsUpdates.end()) {
4588 auto SpecializationUpdates = std::move(I->second);
4589 PendingPartialSpecializationsUpdates.erase(I);
4590
4591 for (const auto &Update : SpecializationUpdates)
4592 AddSpecializations(D, Update.Data, *Update.Mod, /*IsPartial=*/true);
4593 }
4594}
4595
4596void ASTReader::loadPendingDeclChain(Decl *FirstLocal, uint64_t LocalOffset) {
4597 // Attach FirstLocal to the end of the decl chain.
4598 Decl *CanonDecl = FirstLocal->getCanonicalDecl();
4599 if (FirstLocal != CanonDecl) {
4600 Decl *PrevMostRecent = ASTDeclReader::getMostRecentDecl(CanonDecl);
4602 *this, FirstLocal, PrevMostRecent ? PrevMostRecent : CanonDecl,
4603 CanonDecl);
4604 }
4605
4606 if (!LocalOffset) {
4607 ASTDeclReader::attachLatestDecl(CanonDecl, FirstLocal);
4608 return;
4609 }
4610
4611 // Load the list of other redeclarations from this module file.
4612 ModuleFile *M = getOwningModuleFile(FirstLocal);
4613 assert(M && "imported decl from no module file");
4614
4615 llvm::BitstreamCursor &Cursor = M->DeclsCursor;
4616 SavedStreamPosition SavedPosition(Cursor);
4617 if (llvm::Error JumpFailed = Cursor.JumpToBit(LocalOffset))
4618 llvm::report_fatal_error(
4619 Twine("ASTReader::loadPendingDeclChain failed jumping: ") +
4620 toString(std::move(JumpFailed)));
4621
4623 Expected<unsigned> MaybeCode = Cursor.ReadCode();
4624 if (!MaybeCode)
4625 llvm::report_fatal_error(
4626 Twine("ASTReader::loadPendingDeclChain failed reading code: ") +
4627 toString(MaybeCode.takeError()));
4628 unsigned Code = MaybeCode.get();
4629 if (Expected<unsigned> MaybeRecCode = Cursor.readRecord(Code, Record))
4630 assert(MaybeRecCode.get() == LOCAL_REDECLARATIONS &&
4631 "expected LOCAL_REDECLARATIONS record!");
4632 else
4633 llvm::report_fatal_error(
4634 Twine("ASTReader::loadPendingDeclChain failed reading rec code: ") +
4635 toString(MaybeCode.takeError()));
4636
4637 // FIXME: We have several different dispatches on decl kind here; maybe
4638 // we should instead generate one loop per kind and dispatch up-front?
4639 Decl *MostRecent = FirstLocal;
4640 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
4641 unsigned Idx = N - I - 1;
4642 auto *D = ReadDecl(*M, Record, Idx);
4643 ASTDeclReader::attachPreviousDecl(*this, D, MostRecent, CanonDecl);
4644 MostRecent = D;
4645 }
4646 ASTDeclReader::attachLatestDecl(CanonDecl, MostRecent);
4647}
4648
4649namespace {
4650
4651 /// Given an ObjC interface, goes through the modules and links to the
4652 /// interface all the categories for it.
4653 class ObjCCategoriesVisitor {
4654 ASTReader &Reader;
4655 ObjCInterfaceDecl *Interface;
4656 llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized;
4657 ObjCCategoryDecl *Tail = nullptr;
4658 llvm::DenseMap<DeclarationName, ObjCCategoryDecl *> NameCategoryMap;
4659 GlobalDeclID InterfaceID;
4660 unsigned PreviousGeneration;
4661
4662 void add(ObjCCategoryDecl *Cat) {
4663 // Only process each category once.
4664 if (!Deserialized.erase(Cat))
4665 return;
4666
4667 // Check for duplicate categories.
4668 if (Cat->getDeclName()) {
4669 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()];
4670 if (Existing && Reader.getOwningModuleFile(Existing) !=
4671 Reader.getOwningModuleFile(Cat)) {
4673 StructuralEquivalenceContext Ctx(
4674 Reader.getContext().getLangOpts(), Cat->getASTContext(),
4675 Existing->getASTContext(), NonEquivalentDecls,
4676 StructuralEquivalenceKind::Default,
4677 /*StrictTypeSpelling=*/false,
4678 /*Complain=*/false,
4679 /*ErrorOnTagTypeMismatch=*/true);
4680 if (!Ctx.IsEquivalent(Cat, Existing)) {
4681 // Warn only if the categories with the same name are different.
4682 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
4683 << Interface->getDeclName() << Cat->getDeclName();
4684 Reader.Diag(Existing->getLocation(),
4685 diag::note_previous_definition);
4686 }
4687 } else if (!Existing) {
4688 // Record this category.
4689 Existing = Cat;
4690 }
4691 }
4692
4693 // Add this category to the end of the chain.
4694 if (Tail)
4696 else
4697 Interface->setCategoryListRaw(Cat);
4698 Tail = Cat;
4699 }
4700
4701 public:
4702 ObjCCategoriesVisitor(
4703 ASTReader &Reader, ObjCInterfaceDecl *Interface,
4704 llvm::SmallPtrSetImpl<ObjCCategoryDecl *> &Deserialized,
4705 GlobalDeclID InterfaceID, unsigned PreviousGeneration)
4706 : Reader(Reader), Interface(Interface), Deserialized(Deserialized),
4707 InterfaceID(InterfaceID), PreviousGeneration(PreviousGeneration) {
4708 // Populate the name -> category map with the set of known categories.
4709 for (auto *Cat : Interface->known_categories()) {
4710 if (Cat->getDeclName())
4711 NameCategoryMap[Cat->getDeclName()] = Cat;
4712
4713 // Keep track of the tail of the category list.
4714 Tail = Cat;
4715 }
4716 }
4717
4718 bool operator()(ModuleFile &M) {
4719 // If we've loaded all of the category information we care about from
4720 // this module file, we're done.
4721 if (M.Generation <= PreviousGeneration)
4722 return true;
4723
4724 // Map global ID of the definition down to the local ID used in this
4725 // module file. If there is no such mapping, we'll find nothing here
4726 // (or in any module it imports).
4727 LocalDeclID LocalID =
4728 Reader.mapGlobalIDToModuleFileGlobalID(M, InterfaceID);
4729 if (LocalID.isInvalid())
4730 return true;
4731
4732 // Perform a binary search to find the local redeclarations for this
4733 // declaration (if any).
4734 const ObjCCategoriesInfo Compare = {LocalID, 0};
4735 const ObjCCategoriesInfo *Result = std::lower_bound(
4739 LocalID != Result->getDefinitionID()) {
4740 // We didn't find anything. If the class definition is in this module
4741 // file, then the module files it depends on cannot have any categories,
4742 // so suppress further lookup.
4743 return Reader.isDeclIDFromModule(InterfaceID, M);
4744 }
4745
4746 // We found something. Dig out all of the categories.
4747 unsigned Offset = Result->Offset;
4748 unsigned N = M.ObjCCategories[Offset];
4749 M.ObjCCategories[Offset++] = 0; // Don't try to deserialize again
4750 for (unsigned I = 0; I != N; ++I)
4751 add(Reader.ReadDeclAs<ObjCCategoryDecl>(M, M.ObjCCategories, Offset));
4752 return true;
4753 }
4754 };
4755
4756} // namespace
4757
4758void ASTReader::loadObjCCategories(GlobalDeclID ID, ObjCInterfaceDecl *D,
4759 unsigned PreviousGeneration) {
4760 ObjCCategoriesVisitor Visitor(*this, D, CategoriesDeserialized, ID,
4761 PreviousGeneration);
4762 ModuleMgr.visit(Visitor);
4763}
4764
4765template<typename DeclT, typename Fn>
4766static void forAllLaterRedecls(DeclT *D, Fn F) {
4767 F(D);
4768
4769 // Check whether we've already merged D into its redeclaration chain.
4770 // MostRecent may or may not be nullptr if D has not been merged. If
4771 // not, walk the merged redecl chain and see if it's there.
4772 auto *MostRecent = D->getMostRecentDecl();
4773 bool Found = false;
4774 for (auto *Redecl = MostRecent; Redecl && !Found;
4775 Redecl = Redecl->getPreviousDecl())
4776 Found = (Redecl == D);
4777
4778 // If this declaration is merged, apply the functor to all later decls.
4779 if (Found) {
4780 for (auto *Redecl = MostRecent; Redecl != D;
4781 Redecl = Redecl->getPreviousDecl())
4782 F(Redecl);
4783 }
4784}
4785
4787 while (Record.getIdx() < Record.size()) {
4788 switch ((DeclUpdateKind)Record.readInt()) {
4790 auto *RD = cast<CXXRecordDecl>(D);
4791 Decl *MD = Record.readDecl();
4792 assert(MD && "couldn't read decl from update record");
4793 Reader.PendingAddedClassMembers.push_back({RD, MD});
4794 break;
4795 }
4796
4798 auto *Anon = readDeclAs<NamespaceDecl>();
4799
4800 // Each module has its own anonymous namespace, which is disjoint from
4801 // any other module's anonymous namespaces, so don't attach the anonymous
4802 // namespace at all.
4803 if (!Record.isModule()) {
4804 if (auto *TU = dyn_cast<TranslationUnitDecl>(D))
4805 TU->setAnonymousNamespace(Anon);
4806 else
4807 cast<NamespaceDecl>(D)->setAnonymousNamespace(Anon);
4808 }
4809 break;
4810 }
4811
4813 auto *VD = cast<VarDecl>(D);
4814 VD->NonParmVarDeclBits.IsInline = Record.readInt();
4815 VD->NonParmVarDeclBits.IsInlineSpecified = Record.readInt();
4816 ReadVarDeclInit(VD);
4817 break;
4818 }
4819
4821 SourceLocation POI = Record.readSourceLocation();
4822 if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(D)) {
4823 VTSD->setPointOfInstantiation(POI);
4824 } else if (auto *VD = dyn_cast<VarDecl>(D)) {
4825 MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo();
4826 assert(MSInfo && "No member specialization information");
4827 MSInfo->setPointOfInstantiation(POI);
4828 } else {
4829 auto *FD = cast<FunctionDecl>(D);
4830 if (auto *FTSInfo = dyn_cast<FunctionTemplateSpecializationInfo *>(
4831 FD->TemplateOrSpecialization))
4832 FTSInfo->setPointOfInstantiation(POI);
4833 else
4834 cast<MemberSpecializationInfo *>(FD->TemplateOrSpecialization)
4835 ->setPointOfInstantiation(POI);
4836 }
4837 break;
4838 }
4839
4841 auto *Param = cast<ParmVarDecl>(D);
4842
4843 // We have to read the default argument regardless of whether we use it
4844 // so that hypothetical further update records aren't messed up.
4845 // TODO: Add a function to skip over the next expr record.
4846 auto *DefaultArg = Record.readExpr();
4847
4848 // Only apply the update if the parameter still has an uninstantiated
4849 // default argument.
4850 if (Param->hasUninstantiatedDefaultArg())
4851 Param->setDefaultArg(DefaultArg);
4852 break;
4853 }
4854
4856 auto *FD = cast<FieldDecl>(D);
4857 auto *DefaultInit = Record.readExpr();
4858
4859 // Only apply the update if the field still has an uninstantiated
4860 // default member initializer.
4861 if (FD->hasInClassInitializer() && !FD->hasNonNullInClassInitializer()) {
4862 if (DefaultInit)
4863 FD->setInClassInitializer(DefaultInit);
4864 else
4865 // Instantiation failed. We can get here if we serialized an AST for
4866 // an invalid program.
4867 FD->removeInClassInitializer();
4868 }
4869 break;
4870 }
4871
4873 auto *FD = cast<FunctionDecl>(D);
4874 if (Reader.PendingBodies[FD]) {
4875 // FIXME: Maybe check for ODR violations.
4876 // It's safe to stop now because this update record is always last.
4877 return;
4878 }
4879
4880 if (Record.readInt()) {
4881 // Maintain AST consistency: any later redeclarations of this function
4882 // are inline if this one is. (We might have merged another declaration
4883 // into this one.)
4884 forAllLaterRedecls(FD, [](FunctionDecl *FD) {
4885 FD->setImplicitlyInline();
4886 });
4887 }
4888 FD->setInnerLocStart(readSourceLocation());
4890 assert(Record.getIdx() == Record.size() && "lazy body must be last");
4891 break;
4892 }
4893
4895 auto *RD = cast<CXXRecordDecl>(D);
4896 auto *OldDD = RD->getCanonicalDecl()->DefinitionData;
4897 bool HadRealDefinition =
4898 OldDD && (OldDD->Definition != RD ||
4899 !Reader.PendingFakeDefinitionData.count(OldDD));
4900 RD->setParamDestroyedInCallee(Record.readInt());
4902 static_cast<RecordArgPassingKind>(Record.readInt()));
4903 ReadCXXRecordDefinition(RD, /*Update*/true);
4904
4905 // Visible update is handled separately.
4906 uint64_t LexicalOffset = ReadLocalOffset();
4907 if (!HadRealDefinition && LexicalOffset) {
4908 Record.readLexicalDeclContextStorage(LexicalOffset, RD);
4909 Reader.PendingFakeDefinitionData.erase(OldDD);
4910 }
4911
4912 auto TSK = (TemplateSpecializationKind)Record.readInt();
4913 SourceLocation POI = readSourceLocation();
4914 if (MemberSpecializationInfo *MSInfo =
4916 MSInfo->setTemplateSpecializationKind(TSK);
4917 MSInfo->setPointOfInstantiation(POI);
4918 } else {
4920 Spec->setTemplateSpecializationKind(TSK);
4921 Spec->setPointOfInstantiation(POI);
4922
4923 if (Record.readInt()) {
4924 auto *PartialSpec =
4925 readDeclAs<ClassTemplatePartialSpecializationDecl>();
4927 Record.readTemplateArgumentList(TemplArgs);
4928 auto *TemplArgList = TemplateArgumentList::CreateCopy(
4929 Reader.getContext(), TemplArgs);
4930
4931 // FIXME: If we already have a partial specialization set,
4932 // check that it matches.
4934 Spec->getSpecializedTemplateOrPartial()))
4935 Spec->setInstantiationOf(PartialSpec, TemplArgList);
4936 }
4937 }
4938
4939 RD->setTagKind(static_cast<TagTypeKind>(Record.readInt()));
4940 RD->setLocation(readSourceLocation());
4941 RD->setLocStart(readSourceLocation());
4942 RD->setBraceRange(readSourceRange());
4943
4944 if (Record.readInt()) {
4945 AttrVec Attrs;
4946 Record.readAttributes(Attrs);
4947 // If the declaration already has attributes, we assume that some other
4948 // AST file already loaded them.
4949 if (!D->hasAttrs())
4950 D->setAttrsImpl(Attrs, Reader.getContext());
4951 }
4952 break;
4953 }
4954
4956 // Set the 'operator delete' directly to avoid emitting another update
4957 // record.
4959 ASTContext &C = Reader.getContext();
4960 auto *Del = readDeclAs<FunctionDecl>();
4961 auto *ThisArg = Record.readExpr();
4962 auto *Dtor = cast<CXXDestructorDecl>(D);
4963 // FIXME: Check consistency if we have an old and new operator delete.
4964 if (!C.dtorHasOperatorDelete(Dtor,
4966 C.addOperatorDeleteForVDtor(Dtor, Del,
4968 Canon->OperatorDeleteThisArg = ThisArg;
4969 }
4970 break;
4971 }
4972
4974 auto *Del = readDeclAs<FunctionDecl>();
4975 auto *Dtor = cast<CXXDestructorDecl>(D);
4976 ASTContext &C = Reader.getContext();
4977 if (!C.dtorHasOperatorDelete(
4979 C.addOperatorDeleteForVDtor(
4981 break;
4982 }
4984 auto *Del = readDeclAs<FunctionDecl>();
4985 auto *Dtor = cast<CXXDestructorDecl>(D);
4986 ASTContext &C = Reader.getContext();
4987 if (!C.dtorHasOperatorDelete(Dtor, ASTContext::OperatorDeleteKind::Array))
4988 C.addOperatorDeleteForVDtor(Dtor, Del,
4990 break;
4991 }
4993 auto *Del = readDeclAs<FunctionDecl>();
4994 auto *Dtor = cast<CXXDestructorDecl>(D);
4995 ASTContext &C = Reader.getContext();
4996 if (!C.dtorHasOperatorDelete(Dtor,
4998 C.addOperatorDeleteForVDtor(
5000 break;
5001 }
5002
5004 SmallVector<QualType, 8> ExceptionStorage;
5005 auto ESI = Record.readExceptionSpecInfo(ExceptionStorage);
5006
5007 // Update this declaration's exception specification, if needed.
5008 auto *FD = cast<FunctionDecl>(D);
5009 auto *FPT = FD->getType()->castAs<FunctionProtoType>();
5010 // FIXME: If the exception specification is already present, check that it
5011 // matches.
5012 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
5013 FD->setType(Reader.getContext().getFunctionType(
5014 FPT->getReturnType(), FPT->getParamTypes(),
5015 FPT->getExtProtoInfo().withExceptionSpec(ESI)));
5016
5017 // When we get to the end of deserializing, see if there are other decls
5018 // that we need to propagate this exception specification onto.
5019 Reader.PendingExceptionSpecUpdates.insert(
5020 std::make_pair(FD->getCanonicalDecl(), FD));
5021 }
5022 break;
5023 }
5024
5026 auto *FD = cast<FunctionDecl>(D);
5027 QualType DeducedResultType = Record.readType();
5028 Reader.PendingDeducedTypeUpdates.insert(
5029 {FD->getCanonicalDecl(), DeducedResultType});
5030 break;
5031 }
5032
5034 // Maintain AST consistency: any later redeclarations are used too.
5035 D->markUsed(Reader.getContext());
5036 break;
5037
5039 Reader.getContext().setManglingNumber(cast<NamedDecl>(D),
5040 Record.readInt());
5041 break;
5042
5044 Reader.getContext().setStaticLocalNumber(cast<VarDecl>(D),
5045 Record.readInt());
5046 break;
5047
5049 D->addAttr(OMPThreadPrivateDeclAttr::CreateImplicit(Reader.getContext(),
5050 readSourceRange()));
5051 break;
5052
5054 auto AllocatorKind =
5055 static_cast<OMPAllocateDeclAttr::AllocatorTypeTy>(Record.readInt());
5056 Expr *Allocator = Record.readExpr();
5057 Expr *Alignment = Record.readExpr();
5058 SourceRange SR = readSourceRange();
5059 D->addAttr(OMPAllocateDeclAttr::CreateImplicit(
5060 Reader.getContext(), AllocatorKind, Allocator, Alignment, SR));
5061 break;
5062 }
5063
5065 D->addAttr(OMPTargetIndirectCallAttr::CreateImplicit(Reader.getContext(),
5066 readSourceRange()));
5067 break;
5068
5070 unsigned SubmoduleID = readSubmoduleID();
5071 auto *Exported = cast<NamedDecl>(D);
5072 Module *Owner = SubmoduleID ? Reader.getSubmodule(SubmoduleID) : nullptr;
5073 Reader.getContext().mergeDefinitionIntoModule(Exported, Owner);
5074 Reader.PendingMergedDefinitionsToDeduplicate.insert(Exported);
5075 break;
5076 }
5077
5079 auto MapType = Record.readEnum<OMPDeclareTargetDeclAttr::MapTypeTy>();
5080 auto DevType = Record.readEnum<OMPDeclareTargetDeclAttr::DevTypeTy>();
5081 Expr *IndirectE = Record.readExpr();
5082 bool Indirect = Record.readBool();
5083 unsigned Level = Record.readInt();
5084 D->addAttr(OMPDeclareTargetDeclAttr::CreateImplicit(
5085 Reader.getContext(), MapType, DevType, IndirectE, Indirect, Level,
5086 readSourceRange()));
5087 break;
5088 }
5089
5091 AttrVec Attrs;
5092 Record.readAttributes(Attrs);
5093 assert(Attrs.size() == 1);
5094 D->addAttr(Attrs[0]);
5095 break;
5096 }
5097 }
5098}
This file provides AST data structures related to concepts.
Defines the clang::ASTContext interface.
#define V(N, I)
static T assert_cast(T t)
"Cast" to type T, asserting if we don't have an implicit conversion.
static bool allowODRLikeMergeInC(NamedDecl *ND)
ODR-like semantics for C/ObjC allow us to merge tag types and a structural check in Sema guarantees t...
static bool inheritDefaultTemplateArgument(ASTContext &Context, ParmDecl *From, Decl *ToD)
Inherit the default template argument from From to To.
static void inheritDefaultTemplateArguments(ASTContext &Context, TemplateDecl *From, TemplateDecl *To)
static void forAllLaterRedecls(DeclT *D, Fn F)
static llvm::iterator_range< MergedRedeclIterator< DeclT > > merged_redecls(DeclT *D)
#define NO_MERGE(Field)
static NamedDecl * getDeclForMerging(NamedDecl *Found, bool IsTypedefNameForLinkage, bool FilteringUsingShadowDecl)
Find the declaration that should be merged into, given the declaration found by name lookup.
Defines the clang::attr::Kind enum.
clang::CharUnits operator*(clang::CharUnits::QuantityType Scale, const clang::CharUnits &CU)
Definition CharUnits.h:225
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
This file defines OpenMP nodes for declarative directives.
Defines the C++ template declaration subclasses.
Defines the ExceptionSpecificationType enumeration and various utility functions.
FormatToken * Previous
The previous token in the unwrapped line.
FormatToken * Next
The next token in the unwrapped line.
Defines the clang::IdentifierInfo, clang::IdentifierTable, and clang::Selector interfaces.
Result
Implement __builtin_bit_cast and related operations.
Forward-declares and imports various common LLVM datatypes that clang wants to use unqualified.
Defines the LambdaCapture class.
Defines several types used to describe C++ lambda expressions that are shared between the parser and ...
Defines the clang::LangOptions interface.
llvm::MachO::Record Record
Definition MachO.h:31
Defines the clang::Module class, which describes a module in the source code.
This file defines OpenMP AST classes for clauses.
static std::string toString(const clang::SanitizerSet &Sanitizers)
Produce a string containing comma-separated names of sanitizers in Sanitizers set.
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
C Language Family Type Representation.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
bool needsCleanup() const
Returns whether the object performed allocations.
Definition APValue.cpp:436
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
Definition ASTContext.h:223
TranslationUnitDecl * getTranslationUnitDecl() const
const LangOptions & getLangOpts() const
Definition ASTContext.h:980
void addDestruction(T *Ptr) const
If T isn't trivially destructible, calls AddDeallocation to register it for destruction.
ExternalASTSource * getExternalSource() const
Retrieve a pointer to the external AST source associated with this AST context, if any.
void mergeTemplatePattern(RedeclarableTemplateDecl *D, RedeclarableTemplateDecl *Existing, bool IsKeyDecl)
Merge together the pattern declarations from two template declarations.
ASTDeclMerger(ASTReader &Reader)
void mergeRedeclarable(Redeclarable< T > *D, T *Existing, RedeclarableResult &Redecl)
void mergeLambda(CXXRecordDecl *D, RedeclarableResult &Redecl, Decl &Context, unsigned Number)
Attempt to merge D with a previous declaration of the same lambda, which is found by its index within...
void MergeDefinitionData(CXXRecordDecl *D, struct CXXRecordDecl::DefinitionData &&NewDD)
void mergeRedeclarableImpl(Redeclarable< T > *D, T *Existing, GlobalDeclID KeyDeclID)
Attempts to merge the given declaration (D) with another declaration of the same entity.
void VisitTemplateParamObjectDecl(TemplateParamObjectDecl *D)
void VisitObjCImplementationDecl(ObjCImplementationDecl *D)
void mergeRedeclarableTemplate(RedeclarableTemplateDecl *D, RedeclarableResult &Redecl)
void VisitImportDecl(ImportDecl *D)
void VisitBindingDecl(BindingDecl *BD)
void VisitNamespaceDecl(NamespaceDecl *D)
void VisitTopLevelStmtDecl(TopLevelStmtDecl *D)
RedeclarableResult VisitRedeclarableTemplateDecl(RedeclarableTemplateDecl *D)
void VisitTemplateTypeParmDecl(TemplateTypeParmDecl *D)
void VisitUnresolvedUsingIfExistsDecl(UnresolvedUsingIfExistsDecl *D)
void ReadFunctionDefinition(FunctionDecl *FD)
void VisitLabelDecl(LabelDecl *LD)
void VisitObjCCategoryDecl(ObjCCategoryDecl *D)
void VisitUsingDirectiveDecl(UsingDirectiveDecl *D)
RedeclarableResult VisitClassTemplateSpecializationDeclImpl(ClassTemplateSpecializationDecl *D)
void VisitFunctionDecl(FunctionDecl *FD)
void VisitObjCMethodDecl(ObjCMethodDecl *D)
void VisitUsingShadowDecl(UsingShadowDecl *D)
void VisitVarTemplateSpecializationDecl(VarTemplateSpecializationDecl *D)
void VisitVarDecl(VarDecl *VD)
RedeclarableResult VisitRedeclarable(Redeclarable< T > *D)
void VisitDeclContext(DeclContext *DC, LookupBlockOffsets &Offsets)
void VisitMSGuidDecl(MSGuidDecl *D)
void VisitPragmaCommentDecl(PragmaCommentDecl *D)
void VisitRecordDecl(RecordDecl *RD)
void VisitLifetimeExtendedTemporaryDecl(LifetimeExtendedTemporaryDecl *D)
void VisitTypeAliasTemplateDecl(TypeAliasTemplateDecl *D)
void VisitRequiresExprBodyDecl(RequiresExprBodyDecl *D)
void ReadVarDeclInit(VarDecl *VD)
static Decl * getMostRecentDeclImpl(Redeclarable< DeclT > *D)
void VisitNamespaceAliasDecl(NamespaceAliasDecl *D)
void VisitIndirectFieldDecl(IndirectFieldDecl *FD)
void VisitObjCContainerDecl(ObjCContainerDecl *D)
void VisitBlockDecl(BlockDecl *BD)
void VisitOpenACCRoutineDecl(OpenACCRoutineDecl *D)
void VisitExportDecl(ExportDecl *D)
static void attachLatestDecl(Decl *D, Decl *latest)
void VisitStaticAssertDecl(StaticAssertDecl *D)
void VisitEmptyDecl(EmptyDecl *D)
void VisitOMPCapturedExprDecl(OMPCapturedExprDecl *D)
void VisitValueDecl(ValueDecl *VD)
void VisitEnumDecl(EnumDecl *ED)
void mergeRedeclarable(Redeclarable< T > *D, RedeclarableResult &Redecl)
Attempts to merge the given declaration (D) with another declaration of the same entity.
void VisitUnresolvedUsingTypenameDecl(UnresolvedUsingTypenameDecl *D)
void VisitFriendTemplateDecl(FriendTemplateDecl *D)
void VisitObjCProtocolDecl(ObjCProtocolDecl *D)
void VisitClassTemplatePartialSpecializationDecl(ClassTemplatePartialSpecializationDecl *D)
void VisitObjCTypeParamDecl(ObjCTypeParamDecl *D)
void VisitDeclaratorDecl(DeclaratorDecl *DD)
RedeclarableResult VisitTypedefNameDecl(TypedefNameDecl *TD)
void VisitExplicitInstantiationDecl(ExplicitInstantiationDecl *D)
void VisitFriendDecl(FriendDecl *D)
void VisitLinkageSpecDecl(LinkageSpecDecl *D)
void VisitCXXRecordDecl(CXXRecordDecl *D)
ASTDeclReader(ASTReader &Reader, ASTRecordReader &Record, ASTReader::RecordLocation Loc, GlobalDeclID thisDeclID, SourceLocation ThisDeclLoc)
void VisitFileScopeAsmDecl(FileScopeAsmDecl *AD)
void VisitImplicitConceptSpecializationDecl(ImplicitConceptSpecializationDecl *D)
void VisitNamedDecl(NamedDecl *ND)
void mergeMergeable(Mergeable< T > *D)
Attempts to merge the given declaration (D) with another declaration of the same entity,...
void VisitBuiltinTemplateDecl(BuiltinTemplateDecl *D)
static Decl * getMostRecentDecl(Decl *D)
void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D)
void VisitCXXConstructorDecl(CXXConstructorDecl *D)
void VisitPragmaDetectMismatchDecl(PragmaDetectMismatchDecl *D)
void VisitImplicitParamDecl(ImplicitParamDecl *PD)
void VisitUnresolvedUsingValueDecl(UnresolvedUsingValueDecl *D)
static void setNextObjCCategory(ObjCCategoryDecl *Cat, ObjCCategoryDecl *Next)
void VisitCXXExpansionStmtDecl(CXXExpansionStmtDecl *D)
void VisitMSPropertyDecl(MSPropertyDecl *FD)
void VisitClassTemplateSpecializationDecl(ClassTemplateSpecializationDecl *D)
void VisitFieldDecl(FieldDecl *FD)
RedeclarableResult VisitVarDeclImpl(VarDecl *D)
void VisitOMPDeclareMapperDecl(OMPDeclareMapperDecl *D)
void VisitCapturedDecl(CapturedDecl *CD)
void VisitNonTypeTemplateParmDecl(NonTypeTemplateParmDecl *D)
void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D)
RedeclarableResult VisitCXXRecordDeclImpl(CXXRecordDecl *D)
void VisitAccessSpecDecl(AccessSpecDecl *D)
void VisitCXXMethodDecl(CXXMethodDecl *D)
void VisitOpenACCDeclareDecl(OpenACCDeclareDecl *D)
void VisitOMPAllocateDecl(OMPAllocateDecl *D)
void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D)
static void attachLatestDeclImpl(Redeclarable< DeclT > *D, Decl *Latest)
static void markIncompleteDeclChainImpl(Redeclarable< DeclT > *D)
RedeclarableResult VisitTagDecl(TagDecl *TD)
ObjCTypeParamList * ReadObjCTypeParamList()
void VisitHLSLBufferDecl(HLSLBufferDecl *D)
void VisitOMPThreadPrivateDecl(OMPThreadPrivateDecl *D)
void VisitCXXDeductionGuideDecl(CXXDeductionGuideDecl *GD)
void VisitConstructorUsingShadowDecl(ConstructorUsingShadowDecl *D)
void VisitTemplateTemplateParmDecl(TemplateTemplateParmDecl *D)
static void checkMultipleDefinitionInNamedModules(ASTReader &Reader, Decl *D, Decl *Previous)
void VisitUsingEnumDecl(UsingEnumDecl *D)
void VisitObjCImplDecl(ObjCImplDecl *D)
void VisitTranslationUnitDecl(TranslationUnitDecl *TU)
void VisitUnnamedGlobalConstantDecl(UnnamedGlobalConstantDecl *D)
void VisitTypeDecl(TypeDecl *TD)
void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D)
void VisitEnumConstantDecl(EnumConstantDecl *ECD)
void VisitTypeAliasDecl(TypeAliasDecl *TD)
static void attachPreviousDeclImpl(ASTReader &Reader, Redeclarable< DeclT > *D, Decl *Previous, Decl *Canon)
void VisitConceptDecl(ConceptDecl *D)
void VisitObjCPropertyDecl(ObjCPropertyDecl *D)
void VisitOutlinedFunctionDecl(OutlinedFunctionDecl *D)
void VisitObjCIvarDecl(ObjCIvarDecl *D)
void VisitUsingPackDecl(UsingPackDecl *D)
void VisitFunctionTemplateDecl(FunctionTemplateDecl *D)
void VisitOMPDeclareReductionDecl(OMPDeclareReductionDecl *D)
RedeclarableResult VisitVarTemplateSpecializationDeclImpl(VarTemplateSpecializationDecl *D)
TODO: Unify with ClassTemplateSpecializationDecl version?
void VisitUsingDecl(UsingDecl *D)
void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D)
void VisitVarTemplatePartialSpecializationDecl(VarTemplatePartialSpecializationDecl *D)
TODO: Unify with ClassTemplatePartialSpecializationDecl version?
void VisitParmVarDecl(ParmVarDecl *PD)
void VisitVarTemplateDecl(VarTemplateDecl *D)
TODO: Unify with ClassTemplateDecl version?
static void attachPreviousDecl(ASTReader &Reader, Decl *D, Decl *Previous, Decl *Canon)
void VisitClassTemplateDecl(ClassTemplateDecl *D)
void VisitCXXDestructorDecl(CXXDestructorDecl *D)
void VisitTemplateDecl(TemplateDecl *D)
void VisitCXXConversionDecl(CXXConversionDecl *D)
void VisitTypedefDecl(TypedefDecl *TD)
void VisitOMPRequiresDecl(OMPRequiresDecl *D)
RedeclarableResult VisitRecordDeclImpl(RecordDecl *RD)
void VisitDecompositionDecl(DecompositionDecl *DD)
void ReadSpecializations(ModuleFile &M, Decl *D, llvm::BitstreamCursor &DeclsCursor, bool IsPartial)
Reads an AST files chain containing the contents of a translation unit.
Definition ASTReader.h:427
bool isDeclIDFromModule(GlobalDeclID ID, ModuleFile &M) const
Returns true if global DeclID ID originated from module M.
DiagnosticBuilder Diag(unsigned DiagID) const
Report a diagnostic.
ASTContext & getContext()
Retrieve the AST context that this AST reader supplements.
Definition ASTReader.h:2593
Decl * ReadDecl(ModuleFile &F, const RecordDataImpl &R, unsigned &I)
Reads a declaration from the given position in a record in the given module.
Definition ASTReader.h:2166
ModuleFile * getOwningModuleFile(const Decl *D) const
Retrieve the module file that owns the given declaration, or NULL if the declaration is not from a mo...
T * ReadDeclAs(ModuleFile &F, const RecordDataImpl &R, unsigned &I)
Reads a declaration from the given position in a record in the given module.
Definition ASTReader.h:2176
LocalDeclID mapGlobalIDToModuleFileGlobalID(ModuleFile &M, GlobalDeclID GlobalID)
Map a global declaration ID into the declaration ID used to refer to this declaration within the give...
friend class ASTDeclReader
Definition ASTReader.h:431
Decl * GetDecl(GlobalDeclID ID)
Resolve a declaration ID into a declaration, potentially building a new declaration.
SourceLocation ReadSourceLocation(ModuleFile &MF, RawLocEncoding Raw) const
Read a source location from raw form.
Definition ASTReader.h:2463
void runWithSufficientStackSpace(SourceLocation Loc, llvm::function_ref< void()> Fn)
friend class ASTRecordReader
Definition ASTReader.h:433
SmallVector< uint64_t, 64 > RecordData
Definition ASTReader.h:442
serialization::ModuleFile ModuleFile
Definition ASTReader.h:473
An object for streaming information from a record.
bool readBool()
Read a boolean value, advancing Idx.
std::string readString()
Read a string, advancing Idx.
SourceRange readSourceRange()
Read a source range, advancing Idx.
SourceLocation readSourceLocation()
Read a source location, advancing Idx.
void readAttributes(AttrVec &Attrs)
Reads attributes from the current stream position, advancing Idx.
T * readDeclAs()
Reads a declaration from the given position in the record, advancing Idx.
IdentifierInfo * readIdentifier()
ASTContext & getContext()
Retrieve the AST context that this AST reader supplements.
TypeSourceInfo * readTypeSourceInfo()
Reads a declarator info from the given record, advancing Idx.
OMPTraitInfo * readOMPTraitInfo()
Read an OMPTraitInfo object, advancing Idx.
VersionTuple readVersionTuple()
Read a version tuple, advancing Idx.
uint64_t readInt()
Returns the current value in this record, and advances to the next value.
Attr * readAttr()
Reads one attribute from the current stream position, advancing Idx.
Expr * readExpr()
Reads an expression.
Represents an access specifier followed by colon ':'.
Definition DeclCXX.h:86
static AccessSpecDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:60
void setColonLoc(SourceLocation CLoc)
Sets the location of the colon.
Definition DeclCXX.h:111
Attr - This represents one attribute.
Definition Attr.h:46
Attr * clone(ASTContext &C) const
Syntax
The style used to specify an attribute.
@ AS_Keyword
__ptr16, alignas(...), etc.
A binding in a decomposition declaration.
Definition DeclCXX.h:4210
static BindingDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3713
A simple helper class to unpack an integer to bits and consuming the bits in order.
Definition ASTReader.h:2655
uint32_t getNextBits(uint32_t Width)
Definition ASTReader.h:2678
A class which contains all the information about a particular captured value.
Definition Decl.h:4812
Represents a block literal declaration, which is like an unnamed FunctionDecl.
Definition Decl.h:4806
void setParams(ArrayRef< ParmVarDecl * > NewParamInfo)
Definition Decl.cpp:5509
void setDoesNotEscape(bool B=true)
Definition Decl.h:4958
void setSignatureAsWritten(TypeSourceInfo *Sig)
Definition Decl.h:4888
void setCanAvoidCopyToHeap(bool B=true)
Definition Decl.h:4963
void setIsConversionFromLambda(bool val=true)
Definition Decl.h:4953
void setBlockMissingReturnType(bool val=true)
Definition Decl.h:4945
static BlockDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5717
void setIsVariadic(bool value)
Definition Decl.h:4882
void setBody(CompoundStmt *B)
Definition Decl.h:4886
void setCaptures(ASTContext &Context, ArrayRef< Capture > Captures, bool CapturesCXXThis)
Definition Decl.cpp:5520
Represents the builtin template declaration which is used to implement __make_integer_seq and other b...
Represents a C++ constructor within a class.
Definition DeclCXX.h:2637
static CXXConstructorDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, uint64_t AllocKind)
Definition DeclCXX.cpp:2998
void setCtorClosureDefaultArgs(ArrayRef< CXXDefaultArgExpr * > Args)
Definition DeclCXX.cpp:3143
void setExplicitSpecifier(ExplicitSpecifier ES)
Definition DeclCXX.h:2698
bool isInheritingConstructor() const
Determine whether this is an implicit constructor synthesized to model a call to a constructor inheri...
Definition DeclCXX.h:2861
Represents a C++ conversion function within a class.
Definition DeclCXX.h:2972
void setExplicitSpecifier(ExplicitSpecifier ES)
Definition DeclCXX.h:3005
static CXXConversionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3275
Represents a C++ deduction guide declaration.
Definition DeclCXX.h:1996
void setDeductionCandidateKind(DeductionCandidate K)
Definition DeclCXX.h:2087
void setSourceDeductionGuide(CXXDeductionGuideDecl *DG)
Definition DeclCXX.h:2075
static CXXDeductionGuideDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:2396
void setSourceDeductionGuideKind(SourceDeductionGuideKind SK)
Definition DeclCXX.h:2083
A default argument (C++ [dcl.fct.default]).
Definition ExprCXX.h:1273
Represents a C++ destructor within a class.
Definition DeclCXX.h:2902
static CXXDestructorDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3150
CXXDestructorDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition DeclCXX.h:2950
Represents a C++26 expansion statement declaration.
static CXXExpansionStmtDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Represents a static or instance method of a struct/union/class.
Definition DeclCXX.h:2145
static CXXMethodDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:2515
CXXMethodDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition DeclCXX.h:2258
Represents a C++ struct/union/class.
Definition DeclCXX.h:258
CXXRecordDecl * getDefinition() const
Definition DeclCXX.h:548
static CXXRecordDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:155
unsigned getODRHash() const
Definition DeclCXX.cpp:496
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this class is an instantiation of a member class of a class template specialization,...
Definition DeclCXX.cpp:2039
CXXRecordDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition DeclCXX.h:522
Represents the body of a CapturedStmt, and serves as its DeclContext.
Definition Decl.h:5078
static CapturedDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumParams)
Definition Decl.cpp:5760
void setContextParam(unsigned i, ImplicitParamDecl *P)
Definition Decl.h:5140
void setNothrow(bool Nothrow=true)
Definition Decl.cpp:5770
void setParam(unsigned i, ImplicitParamDecl *P)
Definition Decl.h:5122
Declaration of a class template.
static ClassTemplateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Create an empty class template node.
static ClassTemplatePartialSpecializationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Represents a class template specialization, which refers to a class template with a given set of temp...
static ClassTemplateSpecializationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
Declaration of a C++20 concept.
static ConceptDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
A reference to a concept and its template args, as it appears in the code.
Definition ASTConcept.h:130
Represents a shadow constructor declaration introduced into a class by a C++11 using-declaration that...
Definition DeclCXX.h:3702
static ConstructorUsingShadowDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3506
static DeclAccessPair make(NamedDecl *D, AccessSpecifier AS)
DeclContext - This is used only as base class of specific decl types that can act as declaration cont...
Definition DeclBase.h:1466
lookup_result::iterator lookup_iterator
Definition DeclBase.h:2608
bool isFileContext() const
Definition DeclBase.h:2197
void setHasExternalVisibleStorage(bool ES=true) const
State whether this DeclContext has external storage for declarations visible in this context.
Definition DeclBase.h:2736
DeclContextLookupResult lookup_result
Definition DeclBase.h:2607
lookup_result lookup(DeclarationName Name) const
lookup - Find the declarations (if any) with the given Name in this context.
bool isTranslationUnit() const
Definition DeclBase.h:2202
DeclContext * getRedeclContext()
getRedeclContext - Retrieve the context in which an entity conflicts with other entities of the same ...
DeclContext * getPrimaryContext()
getPrimaryContext - There may be many different declarations of the same entity (including forward de...
bool isFunctionOrMethod() const
Definition DeclBase.h:2178
DeclContext * getNonTransparentContext()
bool isValid() const
Definition DeclID.h:124
DeclID getRawValue() const
Definition DeclID.h:118
bool isInvalid() const
Definition DeclID.h:126
A simple visitor class that helps create declaration visitors.
Definition DeclVisitor.h:68
Decl - This represents one declaration (or definition), e.g.
Definition DeclBase.h:86
Decl * getPreviousDecl()
Retrieve the previous declaration that declares the same entity as this declaration,...
Definition DeclBase.h:1078
Decl * getMostRecentDecl()
Retrieve the most recent declaration that declares the same entity as this declaration (which may be ...
Definition DeclBase.h:1093
FriendObjectKind getFriendObjectKind() const
Determines whether this declaration is the object of a friend declaration and, if so,...
Definition DeclBase.h:1243
T * getAttr() const
Definition DeclBase.h:581
bool hasAttrs() const
Definition DeclBase.h:526
ASTContext & getASTContext() const LLVM_READONLY
Definition DeclBase.cpp:550
void setOwningModuleID(unsigned ID)
Set the owning module ID.
Definition DeclBase.cpp:126
void addAttr(Attr *A)
void setLocalExternDecl()
Changes the namespace of this declaration to reflect that it's a function-local extern declaration.
Definition DeclBase.h:1168
void setTopLevelDeclInObjCContainer(bool V=true)
Definition DeclBase.h:646
void markUsed(ASTContext &C)
Mark the declaration used, in the sense of odr-use.
Definition DeclBase.cpp:594
bool isCanonicalDecl() const
Whether this particular Decl is a canonical one.
Definition DeclBase.h:1001
Module * getOwningModule() const
Get the module that owns this declaration (for visibility purposes).
Definition DeclBase.h:854
Module * getImportedOwningModule() const
Get the imported owning module, if this decl is from an imported (non-local) module.
Definition DeclBase.h:824
ObjCDeclQualifier
ObjCDeclQualifier - 'Qualifiers' written next to the return and parameter types in method declaration...
Definition DeclBase.h:198
bool isFromASTFile() const
Determine whether this declaration came from an AST file (such as a precompiled header or module) rat...
Definition DeclBase.h:805
bool isTemplateParameter() const
isTemplateParameter - Determines whether this declaration is a template parameter.
Definition DeclBase.h:2823
bool isInvalidDecl() const
Definition DeclBase.h:596
unsigned FromASTFile
Whether this declaration was loaded from an AST file.
Definition DeclBase.h:348
void setAccess(AccessSpecifier AS)
Definition DeclBase.h:510
SourceLocation getLocation() const
Definition DeclBase.h:447
IdentifierNamespace
IdentifierNamespace - The different namespaces in which declarations may appear.
Definition DeclBase.h:115
@ IDNS_Ordinary
Ordinary names.
Definition DeclBase.h:144
@ IDNS_Type
Types, declared with 'struct foo', typedefs, etc.
Definition DeclBase.h:130
@ IDNS_Tag
Tags, declared with 'struct foo;' and referenced with 'struct foo'.
Definition DeclBase.h:125
bool isTemplateParameterPack() const
isTemplateParameter - Determines whether this declaration is a template parameter pack.
Definition DeclBase.cpp:256
void setImplicit(bool I=true)
Definition DeclBase.h:602
void setReferenced(bool R=true)
Definition DeclBase.h:631
void setLocation(SourceLocation L)
Definition DeclBase.h:448
DeclContext * getDeclContext()
Definition DeclBase.h:456
void setCachedLinkage(Linkage L) const
Definition DeclBase.h:425
void setDeclContext(DeclContext *DC)
setDeclContext - Set both the semantic and lexical DeclContext to DC.
Definition DeclBase.cpp:385
DeclContext * getLexicalDeclContext()
getLexicalDeclContext - The declaration context where this Decl was lexically declared (LexicalDC).
Definition DeclBase.h:935
bool hasAttr() const
Definition DeclBase.h:585
virtual Decl * getCanonicalDecl()
Retrieves the "canonical" declaration of the given declaration.
Definition DeclBase.h:995
ModuleOwnershipKind
The kind of ownership a declaration has, for visibility purposes.
Definition DeclBase.h:216
@ VisiblePromoted
This declaration has an owning module, and is not visible to the current TU but we promoted it to be ...
Definition DeclBase.h:237
@ VisibleWhenImported
This declaration has an owning module, and is visible when that module is imported.
Definition DeclBase.h:229
@ Unowned
This declaration is not owned by a module.
Definition DeclBase.h:218
@ ReachableWhenImported
This declaration has an owning module, and is visible to lookups that occurs within that module.
Definition DeclBase.h:242
@ ModulePrivate
This declaration has an owning module, but is only visible to lookups that occur within that module.
Definition DeclBase.h:248
@ Visible
This declaration has an owning module, but is globally visible (typically because its owning module i...
Definition DeclBase.h:225
Kind getKind() const
Definition DeclBase.h:450
void setModuleOwnershipKind(ModuleOwnershipKind MOK)
Set whether this declaration is hidden from name lookup.
Definition DeclBase.h:898
bool shouldEmitInExternalSource() const
Whether the definition of the declaration should be emitted in external sources.
void setVisibleDespiteOwningModule()
Set that this declaration is globally visible, even if it came from a module that is not visible.
Definition DeclBase.h:882
The name of a declaration.
IdentifierInfo * getAsIdentifierInfo() const
Retrieve the IdentifierInfo * stored in this declaration name, or null if this declaration name isn't...
Selector getObjCSelector() const
Get the Objective-C selector stored in this declaration name.
Represents a ValueDecl that came out of a declarator.
Definition Decl.h:780
void setInnerLocStart(SourceLocation L)
Definition Decl.h:823
void setTypeSourceInfo(TypeSourceInfo *TI)
Definition Decl.h:814
TypeSourceInfo * getTypeSourceInfo() const
Definition Decl.h:809
A decomposition declaration.
Definition DeclCXX.h:4274
static DecompositionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumBindings)
Definition DeclCXX.cpp:3751
Represents an empty-declaration.
Definition Decl.h:5313
static EmptyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5962
An instance of this object exists for each enum constant that is defined.
Definition Decl.h:3557
static EnumConstantDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5786
void setInitExpr(Expr *E)
Definition Decl.h:3581
void setInitVal(const ASTContext &C, const llvm::APSInt &V)
Definition Decl.h:3582
Represents an enum.
Definition Decl.h:4145
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this enumeration is an instantiation of a member enumeration of a class template specialization,...
Definition Decl.h:4417
void setFixed(bool Fixed=true)
True if this is an Objective-C, C++11, or Microsoft-style enumeration with a fixed underlying type.
Definition Decl.h:4221
void setIntegerType(QualType T)
Set the underlying integer type.
Definition Decl.h:4327
void setIntegerTypeSourceInfo(TypeSourceInfo *TInfo)
Set the underlying integer type source info.
Definition Decl.h:4330
unsigned getODRHash()
Definition Decl.cpp:5230
static EnumDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5146
void setScoped(bool Scoped=true)
True if this tag declaration is a scoped enumeration.
Definition Decl.h:4209
void setPromotionType(QualType T)
Set the promotion type.
Definition Decl.h:4313
EnumDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition Decl.h:4235
void setScopedUsingClassTag(bool ScopedUCT=true)
If this tag declaration is a scoped enum, then this is true if the scoped enum was declared using the...
Definition Decl.h:4215
Represents an explicit instantiation of a template entity in source code.
static ExplicitInstantiationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned TrailingFlags)
Represents a standard C++ module export declaration.
Definition Decl.h:5266
static ExportDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:6163
This represents one expression.
Definition Expr.h:112
RAII class for safely pairing a StartedDeserializing call with FinishedDeserializing.
Represents difference between two FPOptions values.
static FPOptionsOverride getFromOpaqueInt(storage_type I)
Represents a member of a struct/union/class.
Definition Decl.h:3294
void setBitWidth(Expr *Width)
Set the bit-field width for this member.
Definition Decl.h:3429
static FieldDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:4772
const VariableArrayType * CapturedVLAType
Definition Decl.h:3350
void setRParenLoc(SourceLocation L)
Definition Decl.h:4749
void setAsmString(Expr *Asm)
Definition Decl.h:4756
static FileScopeAsmDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5918
FriendDecl - Represents the declaration of a friend entity, which can be a function,...
Definition DeclFriend.h:46
LazyDeclPtr NextFriend
Definition DeclFriend.h:65
FriendUnion Friend
Definition DeclFriend.h:63
static FriendDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Declaration of a friend template.
static FriendTemplateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumFriendTPLists)
static DefaultedOrDeletedFunctionInfo * Create(ASTContext &Context, ArrayRef< DeclAccessPair > Lookups, FPOptionsOverride FPFeatures, StringLiteral *DeletedMessage=nullptr)
Definition Decl.cpp:3127
Represents a function declaration or definition.
Definition Decl.h:2058
void setDescribedFunctionTemplate(FunctionTemplateDecl *Template)
Definition Decl.cpp:4241
FunctionTemplateDecl * getDescribedFunctionTemplate() const
Retrieves the function template that is described by this function declaration.
Definition Decl.cpp:4236
void setIsPureVirtual(bool P=true)
Definition Decl.cpp:3341
void setDefaultedOrDeletedInfo(DefaultedOrDeletedFunctionInfo *Info)
Definition Decl.cpp:3148
void setFriendConstraintRefersToEnclosingTemplate(bool V=true)
Definition Decl.h:2831
void setHasSkippedBody(bool Skipped=true)
Definition Decl.h:2810
static FunctionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5701
void setUsesSEHTry(bool UST)
Definition Decl.h:2645
void setIsMultiVersion(bool V=true)
Sets the multiversion state for this declaration and all of its redeclarations.
Definition Decl.h:2825
void setHasWrittenPrototype(bool P=true)
State that this function has a written prototype.
Definition Decl.h:2579
bool isExplicitlyDefaulted() const
Whether this function is explicitly defaulted.
Definition Decl.h:2515
MemberSpecializationInfo * getMemberSpecializationInfo() const
If this function is an instantiation of a member function of a class template specialization,...
Definition Decl.cpp:4215
FunctionTemplateSpecializationInfo * getTemplateSpecializationInfo() const
If this function is actually a function template specialization, retrieve information about this func...
Definition Decl.cpp:4366
void setDefaultLoc(SourceLocation NewLoc)
Definition Decl.h:2528
void setInstantiatedFromMemberTemplate(bool Val=true)
Definition Decl.h:2495
void setInlineSpecified(bool I)
Set whether the "inline" keyword was specified for this function.
Definition Decl.h:3032
TemplatedKind
The kind of templated function a FunctionDecl can be.
Definition Decl.h:2063
@ TK_FunctionTemplateSpecialization
Definition Decl.h:2074
@ TK_DependentFunctionTemplateSpecialization
Definition Decl.h:2077
void setTrivial(bool IT)
Definition Decl.h:2504
TemplatedKind getTemplatedKind() const
What kind of templated function this is.
Definition Decl.cpp:4187
void setInstantiatedFromDecl(FunctionDecl *FD)
Specify that this function declaration was instantiated from a FunctionDecl FD.
Definition Decl.cpp:4254
bool isDeletedAsWritten() const
Definition Decl.h:2670
void setHasInheritedPrototype(bool P=true)
State that this function inherited its prototype from a previous declaration.
Definition Decl.h:2591
void setDependentTemplateSpecialization(ASTContext &Context, const UnresolvedSetImpl &Templates, const TemplateArgumentListInfo *TemplateArgs)
Specifies that this function declaration is actually a dependent function template specialization.
Definition Decl.cpp:4421
void setVirtualAsWritten(bool V)
State that this function is marked as virtual explicitly.
Definition Decl.h:2475
void setIsDestroyingOperatorDelete(bool IsDestroyingDelete)
Definition Decl.cpp:3598
void setLateTemplateParsed(bool ILT=true)
State that this templated function will be late parsed.
Definition Decl.h:2488
void setImplicitlyInline(bool I=true)
Flag that this function is implicitly inline.
Definition Decl.h:3046
void setTrivialForCall(bool IT)
Definition Decl.h:2507
void setIsTypeAwareOperatorNewOrDelete(bool IsTypeAwareOperator=true)
Definition Decl.cpp:3606
bool isDefaulted() const
Whether this function is defaulted.
Definition Decl.h:2511
void setIneligibleOrNotSelected(bool II)
Definition Decl.h:2547
void setConstexprKind(ConstexprSpecKind CSK)
Definition Decl.h:2599
void setDefaulted(bool D=true)
Definition Decl.h:2512
void setStorageClass(StorageClass SClass)
Sets the storage class as written in the source.
Definition Decl.h:3023
void setDeletedAsWritten(bool D=true, StringLiteral *Message=nullptr)
Definition Decl.cpp:3157
void setExplicitlyDefaulted(bool ED=true)
State that this function is explicitly defaulted.
Definition Decl.h:2520
void setHasImplicitReturnZero(bool IRZ)
State that falling off this function implicitly returns null/zero.
Definition Decl.h:2561
Represents a prototype with parameter type info, e.g.
Definition TypeBase.h:5421
ExceptionSpecificationType getExceptionSpecType() const
Get the kind of exception specification on this function.
Definition TypeBase.h:5728
Declaration of a template function.
static FunctionTemplateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Create an empty function template node.
Provides information about a function template specialization, which is a FunctionDecl that has been ...
FunctionTemplateDecl * getTemplate() const
Retrieve the template from which this function was specialized.
static FunctionTemplateSpecializationInfo * Create(ASTContext &C, FunctionDecl *FD, FunctionTemplateDecl *Template, TemplateSpecializationKind TSK, TemplateArgumentList *TemplateArgs, const TemplateArgumentListInfo *TemplateArgsAsWritten, SourceLocation POI, MemberSpecializationInfo *MSInfo)
void Profile(llvm::FoldingSetNodeID &ID)
FunctionDecl * getFunction() const
Retrieve the declaration of the function template specialization.
FunctionType - C99 6.7.5.3 - Function Declarators.
Definition TypeBase.h:4617
QualType getReturnType() const
Definition TypeBase.h:4957
HLSLBufferDecl - Represent a cbuffer or tbuffer declaration.
Definition Decl.h:5328
static HLSLBufferDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:6007
One of these records is kept for each identifier that is lexed.
void setOutOfDate(bool OOD)
Set whether the information for this identifier is out of date with respect to the external source.
bool isOutOfDate() const
Determine whether the information for this identifier is out of date with respect to the external sou...
iterator begin(DeclarationName Name)
Returns an iterator over decls with the name 'Name'.
iterator end()
Returns the end iterator.
void setTemplateArguments(ArrayRef< TemplateArgument > Converted)
static ImplicitConceptSpecializationDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID, unsigned NumTemplateArgs)
static ImplicitParamDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5682
Describes a module import declaration, which makes the contents of the named module visible in the cu...
Definition Decl.h:5187
static ImportDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumLocations)
Create a new, deserialized module import declaration.
Definition Decl.cpp:6132
Represents a field injected from an anonymous union/struct into the parent scope.
Definition Decl.h:3601
static IndirectFieldDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5814
void setInherited(bool I)
Definition Attr.h:163
Description of a constructor that was inherited from a base class.
Definition DeclCXX.h:2608
Represents the declaration of a label.
Definition Decl.h:524
void setLocStart(SourceLocation L)
Definition Decl.h:552
static LabelDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5630
Describes the capture of a variable or of this, or of a C++1y init-capture.
LambdaCaptureKind getCaptureKind() const
Determine the kind of capture.
Definition ExprCXX.cpp:1271
Implicit declaration of a temporary that was materialized by a MaterializeTemporaryExpr and lifetime-...
Definition DeclCXX.h:3333
static LifetimeExtendedTemporaryDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.h:3363
Represents a linkage specification.
Definition DeclCXX.h:3040
void setExternLoc(SourceLocation L)
Definition DeclCXX.h:3081
void setLanguage(LinkageSpecLanguageIDs L)
Set the language specified by this linkage specification.
Definition DeclCXX.h:3068
void setRBraceLoc(SourceLocation L)
Definition DeclCXX.h:3082
static LinkageSpecDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3321
Represents the results of name lookup.
Definition Lookup.h:147
A global _GUID constant.
Definition DeclCXX.h:4428
An instance of this class represents the declaration of a property member.
Definition DeclCXX.h:4374
static MSPropertyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3789
Provides information a specialization of a member of a class template, which may be a member function...
void setPointOfInstantiation(SourceLocation POI)
Set the first point of instantiation.
Provides common interface for the Decls that cannot be redeclared, but can be merged if the same decl...
Describes a module or submodule.
Definition Module.h:340
@ AllVisible
All of the names in this module are visible.
Definition Module.h:647
std::string Name
The name of this module.
Definition Module.h:343
bool isGlobalModule() const
Does this Module scope describe a fragment of the global module within some C++ module.
Definition Module.h:438
@ ModuleMapModule
This is a module that was defined by a module map and built out of header files.
Definition Module.h:354
bool isNamedModule() const
Does this Module is a named module of a standard named module?
Definition Module.h:423
Module * getTopLevelModule()
Retrieve the top-level module for this (sub)module, which may be this module.
Definition Module.h:940
This represents a decl that may have a name.
Definition Decl.h:274
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
Definition Decl.h:295
bool isPlaceholderVar(const LangOptions &LangOpts) const
Definition Decl.cpp:1095
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
Definition Decl.h:340
void setDeclName(DeclarationName N)
Set the name of this declaration.
Definition Decl.h:343
Represents a C++ namespace alias.
Definition DeclCXX.h:3226
static NamespaceAliasDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3426
Represent a C++ namespace.
Definition Decl.h:592
void setAnonymousNamespace(NamespaceDecl *D)
Definition Decl.h:679
void setNested(bool Nested)
Set whether this is a nested namespace declaration.
Definition Decl.h:660
void setInline(bool Inline)
Set whether this is an inline namespace declaration.
Definition Decl.h:651
static NamespaceDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3382
A C++ nested-name-specifier augmented with source location information.
NonTypeTemplateParmDecl - Declares a non-type template parameter, e.g., "Size" in.
static NonTypeTemplateParmDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, bool HasTypeConstraint)
unsigned getNumExpansionTypes() const
Retrieves the number of expansion types in an expanded parameter pack.
bool isExpandedParameterPack() const
Whether this parameter is a non-type template parameter pack that has a known list of different types...
bool hasPlaceholderTypeConstraint() const
Determine whether this non-type template parameter's type has a placeholder with a type-constraint.
void setPlaceholderTypeConstraint(Expr *E)
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter, and whether that default argument was inherited...
This represents 'pragma omp allocate ...' directive.
Definition DeclOpenMP.h:536
static OMPAllocateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NVars, unsigned NClauses)
Pseudo declaration for capturing expressions.
Definition DeclOpenMP.h:445
static OMPCapturedExprDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
OMPChildren * Data
Data, associated with the directive.
Definition DeclOpenMP.h:43
This represents 'pragma omp declare mapper ...' directive.
Definition DeclOpenMP.h:349
static OMPDeclareMapperDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned N)
Creates deserialized declare mapper node.
This represents 'pragma omp declare reduction ...' directive.
Definition DeclOpenMP.h:239
void setInitializerData(Expr *OrigE, Expr *PrivE)
Set initializer Orig and Priv vars.
Definition DeclOpenMP.h:319
void setInitializer(Expr *E, OMPDeclareReductionInitKind IK)
Set initializer expression for the declare reduction construct.
Definition DeclOpenMP.h:314
void setCombiner(Expr *E)
Set combiner expression for the declare reduction construct.
Definition DeclOpenMP.h:291
void setCombinerData(Expr *InE, Expr *OutE)
Set combiner In and Out vars.
Definition DeclOpenMP.h:293
static OMPDeclareReductionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Create deserialized declare reduction node.
This represents 'pragma omp requires...' directive.
Definition DeclOpenMP.h:479
static OMPRequiresDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned N)
Create deserialized requires node.
This represents 'pragma omp threadprivate ...' directive.
Definition DeclOpenMP.h:110
static OMPThreadPrivateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned N)
Represents a field declaration created by an @defs(...).
Definition DeclObjC.h:2036
static ObjCAtDefsFieldDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
ObjCCategoryDecl - Represents a category declaration.
Definition DeclObjC.h:2335
void setProtocolList(ObjCProtocolDecl *const *List, unsigned Num, const SourceLocation *Locs, ASTContext &C)
setProtocolList - Set the list of protocols that this interface implements.
Definition DeclObjC.h:2397
static ObjCCategoryDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setIvarLBraceLoc(SourceLocation Loc)
Definition DeclObjC.h:2469
void setCategoryNameLoc(SourceLocation Loc)
Definition DeclObjC.h:2467
void setIvarRBraceLoc(SourceLocation Loc)
Definition DeclObjC.h:2471
bool IsClassExtension() const
Definition DeclObjC.h:2443
ObjCCategoryImplDecl - An object of this class encapsulates a category @implementation declaration.
Definition DeclObjC.h:2551
static ObjCCategoryImplDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
ObjCCompatibleAliasDecl - Represents alias of a class.
Definition DeclObjC.h:2781
static ObjCCompatibleAliasDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setClassInterface(ObjCInterfaceDecl *D)
Definition DeclObjC.h:2801
ObjCContainerDecl - Represents a container for method declarations.
Definition DeclObjC.h:954
void setAtStartLoc(SourceLocation Loc)
Definition DeclObjC.h:1104
void setAtEndRange(SourceRange atEnd)
Definition DeclObjC.h:1111
void setClassInterface(ObjCInterfaceDecl *IFace)
ObjCImplementationDecl - Represents a class definition - this is where method definitions are specifi...
Definition DeclObjC.h:2603
static ObjCImplementationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setIvarLBraceLoc(SourceLocation Loc)
Definition DeclObjC.h:2747
void setSuperClass(ObjCInterfaceDecl *superCls)
Definition DeclObjC.h:2745
void setIvarRBraceLoc(SourceLocation Loc)
Definition DeclObjC.h:2749
void setHasDestructors(bool val)
Definition DeclObjC.h:2714
void setHasNonZeroConstructors(bool val)
Definition DeclObjC.h:2709
Represents an ObjC class declaration.
Definition DeclObjC.h:1160
void mergeClassExtensionProtocolList(ObjCProtocolDecl *const *List, unsigned Num, ASTContext &C)
mergeClassExtensionProtocolList - Merge class extension's protocol list into the protocol list for th...
Definition DeclObjC.cpp:439
ObjCIvarDecl * lookupInstanceVariable(IdentifierInfo *IVarName, ObjCInterfaceDecl *&ClassDeclared)
Definition DeclObjC.cpp:634
unsigned getODRHash()
Get precomputed ODRHash or add a new one.
Definition DeclObjC.cpp:788
static ObjCInterfaceDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID)
ObjCInterfaceDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this Objective-C class.
Definition DeclObjC.h:1921
ObjCIvarDecl - Represents an ObjC instance variable.
Definition DeclObjC.h:1958
void setAccessControl(AccessControl ac)
Definition DeclObjC.h:2004
void setNextIvar(ObjCIvarDecl *ivar)
Definition DeclObjC.h:1995
ObjCInterfaceDecl * getContainingInterface()
Return the class interface that this ivar is logically contained in; this is either the interface whe...
void setSynthesize(bool synth)
Definition DeclObjC.h:2012
static ObjCIvarDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
ObjCMethodDecl - Represents an instance or class method declaration.
Definition DeclObjC.h:140
void setSynthesizedAccessorStub(bool isSynthesizedAccessorStub)
Definition DeclObjC.h:451
void setObjCDeclQualifier(ObjCDeclQualifier QV)
Definition DeclObjC.h:253
void setDefined(bool isDefined)
Definition DeclObjC.h:456
void setSelfDecl(ImplicitParamDecl *SD)
Definition DeclObjC.h:422
void setReturnTypeSourceInfo(TypeSourceInfo *TInfo)
Definition DeclObjC.h:347
void setHasRedeclaration(bool HRD) const
Definition DeclObjC.h:275
void setIsRedeclaration(bool RD)
Definition DeclObjC.h:270
void setCmdDecl(ImplicitParamDecl *CD)
Definition DeclObjC.h:424
bool hasRedeclaration() const
True if redeclared in the same interface.
Definition DeclObjC.h:274
void setRelatedResultType(bool RRT=true)
Note whether this method has a related result type.
Definition DeclObjC.h:264
void setOverriding(bool IsOver)
Definition DeclObjC.h:466
void setPropertyAccessor(bool isAccessor)
Definition DeclObjC.h:443
void setDeclImplementation(ObjCImplementationControl ic)
Definition DeclObjC.h:499
void setReturnType(QualType T)
Definition DeclObjC.h:333
static ObjCMethodDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclObjC.cpp:862
void setHasSkippedBody(bool Skipped=true)
Definition DeclObjC.h:481
void setInstanceMethod(bool isInst)
Definition DeclObjC.h:430
void setVariadic(bool isVar)
Definition DeclObjC.h:435
Represents one property declaration in an Objective-C interface.
Definition DeclObjC.h:734
void setAtLoc(SourceLocation L)
Definition DeclObjC.h:803
void setPropertyImplementation(PropertyControl pc)
Definition DeclObjC.h:914
void setSetterName(Selector Sel, SourceLocation Loc=SourceLocation())
Definition DeclObjC.h:902
void setPropertyAttributes(ObjCPropertyAttribute::Kind PRVal)
Definition DeclObjC.h:825
static ObjCPropertyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setPropertyAttributesAsWritten(ObjCPropertyAttribute::Kind PRVal)
Definition DeclObjC.h:837
void setLParenLoc(SourceLocation L)
Definition DeclObjC.h:806
void setPropertyIvarDecl(ObjCIvarDecl *Ivar)
Definition DeclObjC.h:926
void setSetterMethodDecl(ObjCMethodDecl *gDecl)
Definition DeclObjC.h:911
void setType(QualType T, TypeSourceInfo *TSI)
Definition DeclObjC.h:812
void setGetterName(Selector Sel, SourceLocation Loc=SourceLocation())
Definition DeclObjC.h:894
void setGetterMethodDecl(ObjCMethodDecl *gDecl)
Definition DeclObjC.h:908
ObjCPropertyImplDecl - Represents implementation declaration of a property in a class or category imp...
Definition DeclObjC.h:2811
void setSetterMethodDecl(ObjCMethodDecl *MD)
Definition DeclObjC.h:2911
void setSetterCXXAssignment(Expr *setterCXXAssignment)
Definition DeclObjC.h:2925
static ObjCPropertyImplDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setGetterMethodDecl(ObjCMethodDecl *MD)
Definition DeclObjC.h:2908
void setAtLoc(SourceLocation Loc)
Definition DeclObjC.h:2874
void setPropertyDecl(ObjCPropertyDecl *Prop)
Definition DeclObjC.h:2879
void setGetterCXXConstructor(Expr *getterCXXConstructor)
Definition DeclObjC.h:2917
Represents an Objective-C protocol declaration.
Definition DeclObjC.h:2090
static ObjCProtocolDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
ObjCProtocolDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this Objective-C protocol.
Definition DeclObjC.h:2303
unsigned getODRHash()
Get precomputed ODRHash or add a new one.
Represents the declaration of an Objective-C type parameter.
Definition DeclObjC.h:581
static ObjCTypeParamDecl * CreateDeserialized(ASTContext &ctx, GlobalDeclID ID)
Stores a list of Objective-C type parameters for a parameterized class or a category/extension thereo...
Definition DeclObjC.h:665
static ObjCTypeParamList * create(ASTContext &ctx, SourceLocation lAngleLoc, ArrayRef< ObjCTypeParamDecl * > typeParams, SourceLocation rAngleLoc)
Create a new Objective-C type parameter list.
static OpenACCDeclareDecl * CreateDeserialized(ASTContext &Ctx, GlobalDeclID ID, unsigned NumClauses)
static OpenACCRoutineDecl * CreateDeserialized(ASTContext &Ctx, GlobalDeclID ID, unsigned NumClauses)
Represents a partial function definition.
Definition Decl.h:5013
void setNothrow(bool Nothrow=true)
Definition Decl.cpp:5746
static OutlinedFunctionDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumParams)
Definition Decl.cpp:5734
void setParam(unsigned i, ImplicitParamDecl *P)
Definition Decl.h:5049
Represents a parameter to a function.
Definition Decl.h:1819
static ParmVarDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:2961
void setUninstantiatedDefaultArg(Expr *arg)
Definition Decl.cpp:3034
void setScopeInfo(unsigned scopeDepth, unsigned parameterIndex)
Definition Decl.h:1852
void setObjCMethodScopeInfo(unsigned parameterIndex)
Definition Decl.h:1847
Represents a #pragma comment line.
Definition Decl.h:167
static PragmaCommentDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned ArgSize)
Definition Decl.cpp:5578
Represents a #pragma detect_mismatch line.
Definition Decl.h:201
static PragmaDetectMismatchDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NameValueSize)
Definition Decl.cpp:5603
A (possibly-)qualified type.
Definition TypeBase.h:938
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Definition TypeBase.h:1005
Represents a struct/union/class.
Definition Decl.h:4459
unsigned getODRHash()
Get precomputed ODRHash or add a new one.
Definition Decl.cpp:5481
void setAnonymousStructOrUnion(bool Anon)
Definition Decl.h:4515
void setArgPassingRestrictions(RecordArgPassingKind Kind)
Definition Decl.h:4605
void setNonTrivialToPrimitiveCopy(bool V)
Definition Decl.h:4549
void setHasNonTrivialToPrimitiveCopyCUnion(bool V)
Definition Decl.h:4581
void setHasNonTrivialToPrimitiveDestructCUnion(bool V)
Definition Decl.h:4573
void setHasFlexibleArrayMember(bool V)
Definition Decl.h:4496
void setParamDestroyedInCallee(bool V)
Definition Decl.h:4613
void setNonTrivialToPrimitiveDestroy(bool V)
Definition Decl.h:4557
void setHasObjectMember(bool val)
Definition Decl.h:4520
void setHasVolatileMember(bool val)
Definition Decl.h:4524
void setHasNonTrivialToPrimitiveDefaultInitializeCUnion(bool V)
Definition Decl.h:4565
static RecordDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5302
void setHasUninitializedExplicitInitFields(bool V)
Definition Decl.h:4589
void setNonTrivialToPrimitiveDefaultInitialize(bool V)
Definition Decl.h:4541
Declaration of a redeclarable template.
CommonBase * Common
Pointer to the common data shared by all declarations of this template.
virtual CommonBase * newCommon(ASTContext &C) const =0
RedeclarableTemplateDecl * getCanonicalDecl() override
Retrieves the canonical declaration of this template.
void setMemberSpecialization()
Note that this member template is a specialization.
void setInstantiatedFromMemberTemplate(RedeclarableTemplateDecl *TD)
Provides common interface for the Decls that can be redeclared.
DeclLink RedeclLink
Points to the next redeclaration in the chain.
bool isFirstDecl() const
True if this is the first declaration in its redeclaration chain.
static DeclLink PreviousDeclLink(decl_type *D)
Represents the body of a requires-expression.
Definition DeclCXX.h:2114
static RequiresExprBodyDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:2411
const FunctionDecl * getKernelEntryPointDecl() const
Encodes a location in the source.
A trivial tuple used to represent a source range.
Represents a C++11 static_assert declaration.
Definition DeclCXX.h:4161
static StaticAssertDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3689
StringLiteral - This represents a string literal expression, e.g.
Definition Expr.h:1810
Represents the declaration of a struct/union/class/enum.
Definition Decl.h:3851
void setTagKind(TagKind TK)
Definition Decl.h:4055
void setCompleteDefinitionRequired(bool V=true)
True if this complete decl is required to be complete for some existing use.
Definition Decl.h:3967
void demoteThisDefinitionToDeclaration()
Mark a definition as a declaration and maintain information it was a definition.
Definition Decl.h:4010
bool isThisDeclarationADefinition() const
Return true if this declaration is a completion definition of the type.
Definition Decl.h:3947
void setEmbeddedInDeclarator(bool isInDeclarator)
True if this tag declaration is "embedded" (i.e., defined or declared for the very first time) in the...
Definition Decl.h:3982
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
Definition Decl.h:3952
bool isFirstDecl() const
True if this is the first declaration in its redeclaration chain.
TagDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Definition Decl.cpp:4962
void setFreeStanding(bool isFreeStanding=true)
True if this tag is free standing, e.g. "struct foo;".
Definition Decl.h:3990
void setBraceRange(SourceRange R)
Definition Decl.h:3929
void setCompleteDefinition(bool V=true)
True if this decl has its body fully specified.
Definition Decl.h:3955
A convenient class for passing around template argument information.
A template argument list.
static TemplateArgumentList * CreateCopy(ASTContext &Context, ArrayRef< TemplateArgument > Args)
Create a new template argument list that copies the given set of template arguments.
The base class of all kinds of template declarations (e.g., class, function, etc.).
TemplateParameterList * TemplateParams
void init(NamedDecl *NewTemplatedDecl)
Initialize the underlying templated declaration.
NamedDecl * getTemplatedDecl() const
Get the underlying, templated declaration.
TemplateParameterList * getTemplateParameters() const
Get the list of template parameters.
TemplateDecl * getAsTemplateDecl(bool IgnoreDeduced=false) const
Retrieve the underlying template declaration that this template name refers to, if known.
A template parameter object.
TemplateParamObjectDecl * getCanonicalDecl() override
Retrieves the "canonical" declaration of the given declaration.
Stores a list of template parameters for a TemplateDecl and its derived classes.
TemplateTemplateParmDecl - Declares a template template parameter, e.g., "T" in.
unsigned getNumExpansionTemplateParameters() const
Retrieves the number of expansion template parameters in an expanded parameter pack.
static TemplateTemplateParmDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
void setDeclaredWithTypename(bool withTypename)
Set whether this template template parameter was declared with the 'typename' or 'class' keyword.
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter, and whether that default argument was inherited...
bool isExpandedParameterPack() const
Whether this parameter is a template template parameter pack that has a known list of different templ...
Declaration of a template type parameter.
void setTypeConstraint(ConceptReference *CR, Expr *ImmediatelyDeclaredConstraint, UnsignedOrNone ArgPackSubstIndex)
static TemplateTypeParmDecl * CreateDeserialized(const ASTContext &C, GlobalDeclID ID)
bool hasTypeConstraint() const
Determine whether this template parameter has a type-constraint.
void setDefaultArgument(const ASTContext &C, const TemplateArgumentLoc &DefArg)
Set the default argument for this template parameter.
void setDeclaredWithTypename(bool withTypename)
Set whether this template type parameter was declared with the 'typename' or 'class' keyword.
A declaration that models statements at global scope.
Definition Decl.h:4769
static TopLevelStmtDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5940
The top declaration context.
Definition Decl.h:105
Represents the declaration of a typedef-name via a C++11 alias-declaration.
Definition Decl.h:3822
static TypeAliasDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5888
void setDescribedAliasTemplate(TypeAliasTemplateDecl *TAT)
Definition Decl.h:3841
Declaration of an alias template.
static TypeAliasTemplateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Create an empty alias template node.
Represents a declaration of a type.
Definition Decl.h:3647
void setLocStart(SourceLocation L)
Definition Decl.h:3682
A container of type source information.
Definition TypeBase.h:8475
QualType getType() const
Return the type wrapped by this type source info.
Definition TypeBase.h:8486
const T * castAs() const
Member-template castAs<specific type>.
Definition TypeBase.h:9407
AutoType * getContainedAutoType() const
Get the AutoType whose type will be deduced for a variable with an initializer of this type.
Definition TypeBase.h:2976
const T * getAs() const
Member-template getAs<specific type>'.
Definition TypeBase.h:9340
Represents the declaration of a typedef-name via the 'typedef' type specifier.
Definition Decl.h:3801
static TypedefDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:5875
Base class for declarations which introduce a typedef-name.
Definition Decl.h:3696
void setModedTypeSourceInfo(TypeSourceInfo *unmodedTSI, QualType modedTy)
Definition Decl.h:3761
void setTypeSourceInfo(TypeSourceInfo *newType)
Definition Decl.h:3757
An artificial decl, representing a global anonymous constant value which is uniquified by value withi...
Definition DeclCXX.h:4485
void addDecl(NamedDecl *D)
A set of unresolved declarations.
This node is generated when a using-declaration that was annotated with attribute((using_if_exists)) ...
Definition DeclCXX.h:4143
static UnresolvedUsingIfExistsDecl * CreateDeserialized(ASTContext &Ctx, GlobalDeclID ID)
Definition DeclCXX.cpp:3665
Represents a dependent using declaration which was marked with typename.
Definition DeclCXX.h:4062
static UnresolvedUsingTypenameDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3651
Represents a dependent using declaration which was not marked with typename.
Definition DeclCXX.h:3965
void setUsingLoc(SourceLocation L)
Set the source location of the 'using' keyword.
Definition DeclCXX.h:3999
static UnresolvedUsingValueDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3621
Represents a C++ using-declaration.
Definition DeclCXX.h:3616
void setTypename(bool TN)
Sets whether the using declaration has 'typename'.
Definition DeclCXX.h:3668
void setUsingLoc(SourceLocation L)
Set the source location of the 'using' keyword.
Definition DeclCXX.h:3646
static UsingDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3554
Represents C++ using-directive.
Definition DeclCXX.h:3121
static UsingDirectiveDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3343
Represents a C++ using-enum-declaration.
Definition DeclCXX.h:3817
void setEnumType(TypeSourceInfo *TSI)
Definition DeclCXX.h:3856
void setEnumLoc(SourceLocation L)
Definition DeclCXX.h:3842
void setUsingLoc(SourceLocation L)
Definition DeclCXX.h:3838
static UsingEnumDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3577
Represents a pack of using declarations that a single using-declarator pack-expanded into.
Definition DeclCXX.h:3898
static UsingPackDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID, unsigned NumExpansions)
Definition DeclCXX.cpp:3597
Represents a shadow declaration implicitly introduced into a scope by a (resolved) using-declaration ...
Definition DeclCXX.h:3424
static UsingShadowDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition DeclCXX.cpp:3482
Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it ...
Definition Decl.h:712
void setType(QualType newType)
Definition Decl.h:724
Represents a variable declaration or definition.
Definition Decl.h:932
ParmVarDeclBitfields ParmVarDeclBits
Definition Decl.h:1130
static VarDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Definition Decl.cpp:2138
VarDeclBitfields VarDeclBits
Definition Decl.h:1129
EvaluatedStmt * ensureEvaluatedStmt() const
Convert the initializer for this declaration to the elaborated EvaluatedStmt form,...
Definition Decl.cpp:2538
NonParmVarDeclBitfields NonParmVarDeclBits
Definition Decl.h:1131
@ Definition
This declaration is definitely a definition.
Definition Decl.h:1324
void setDescribedVarTemplate(VarTemplateDecl *Template)
Definition Decl.cpp:2786
StorageClass getStorageClass() const
Returns the storage class as written in the source.
Definition Decl.h:1174
VarDecl * getPreviousDecl()
Return the previous declaration of this declaration or NULL if this is the first declaration.
Declaration of a variable template.
static VarTemplateDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Create an empty variable template node.
static VarTemplatePartialSpecializationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
Represents a variable template specialization, which refers to a variable template with a given set o...
void setTemplateArgsAsWritten(const ASTTemplateArgumentListInfo *ArgsWritten)
Set the template argument list as written in the sources.
static VarTemplateSpecializationDecl * CreateDeserialized(ASTContext &C, GlobalDeclID ID)
RawLocEncoding getRawLoc() const
uint64_t getBitOffset(const uint64_t DeclTypesBlockStartOffset) const
Information about a module that has been loaded by the ASTReader.
Definition ModuleFile.h:158
const serialization::ObjCCategoriesInfo * ObjCCategoriesMap
Array of category list location information within this module file, sorted by the definition ID.
Definition ModuleFile.h:524
unsigned LocalNumObjCCategoriesInMap
The number of redeclaration info entries in ObjCCategoriesMap.
Definition ModuleFile.h:527
llvm::BitstreamCursor DeclsCursor
DeclsCursor - This is a cursor to the start of the DECLTYPES_BLOCK block.
Definition ModuleFile.h:503
uint64_t GlobalBitOffset
The global bit offset (or base) of this module.
Definition ModuleFile.h:254
const DeclOffset * DeclOffsets
Offset of each declaration within the bitstream, indexed by the declaration ID (-1).
Definition ModuleFile.h:513
unsigned Generation
The generation of which this module file is a part.
Definition ModuleFile.h:244
uint64_t DeclsBlockStartOffset
The offset to the start of the DECLTYPES_BLOCK block.
Definition ModuleFile.h:506
ModuleKind Kind
The type of this module.
Definition ModuleFile.h:174
SmallVector< uint64_t, 1 > ObjCCategories
The Objective-C category lists for categories known to this module.
Definition ModuleFile.h:531
const unsigned int LOCAL_REDECLARATIONS
Record code for a list of local redeclarations of a declaration.
FriendTemplateDeclKind
Kinds of friend payloads owned by FriendTemplateDecl.
DeclCode
Record codes for each kind of declaration.
const unsigned int DECL_UPDATES
Record of updates for a declaration that was modified after being deserialized.
@ DECL_EMPTY
An EmptyDecl record.
@ DECL_CAPTURED
A CapturedDecl record.
@ DECL_CXX_BASE_SPECIFIERS
A record containing CXXBaseSpecifiers.
@ DECL_CXX_RECORD
A CXXRecordDecl record.
@ DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION
A VarTemplatePartialSpecializationDecl record.
@ DECL_OMP_ALLOCATE
An OMPAllocateDcl record.
@ DECL_MS_PROPERTY
A MSPropertyDecl record.
@ DECL_OMP_DECLARE_MAPPER
An OMPDeclareMapperDecl record.
@ DECL_TOP_LEVEL_STMT_DECL
A TopLevelStmtDecl record.
@ DECL_REQUIRES_EXPR_BODY
A RequiresExprBodyDecl record.
@ DECL_STATIC_ASSERT
A StaticAssertDecl record.
@ DECL_INDIRECTFIELD
A IndirectFieldDecl record.
@ DECL_TEMPLATE_TEMPLATE_PARM
A TemplateTemplateParmDecl record.
@ DECL_IMPORT
An ImportDecl recording a module import.
@ DECL_UNNAMED_GLOBAL_CONSTANT
A UnnamedGlobalConstantDecl record.
@ DECL_ACCESS_SPEC
An AccessSpecDecl record.
@ DECL_OBJC_TYPE_PARAM
An ObjCTypeParamDecl record.
@ DECL_OBJC_CATEGORY_IMPL
A ObjCCategoryImplDecl record.
@ DECL_ENUM_CONSTANT
An EnumConstantDecl record.
@ DECL_PARM_VAR
A ParmVarDecl record.
@ DECL_TYPEDEF
A TypedefDecl record.
@ DECL_EXPANDED_TEMPLATE_TEMPLATE_PARM_PACK
A TemplateTemplateParmDecl record that stores an expanded template template parameter pack.
@ DECL_HLSL_BUFFER
A HLSLBufferDecl record.
@ DECL_NAMESPACE_ALIAS
A NamespaceAliasDecl record.
@ DECL_TYPEALIAS
A TypeAliasDecl record.
@ DECL_FUNCTION_TEMPLATE
A FunctionTemplateDecl record.
@ DECL_MS_GUID
A MSGuidDecl record.
@ DECL_UNRESOLVED_USING_TYPENAME
An UnresolvedUsingTypenameDecl record.
@ DECL_CLASS_TEMPLATE_SPECIALIZATION
A ClassTemplateSpecializationDecl record.
@ DECL_EXPANSION_STMT
A C++ expansion statement.
@ DECL_FILE_SCOPE_ASM
A FileScopeAsmDecl record.
@ DECL_CXX_CONSTRUCTOR
A CXXConstructorDecl record.
@ DECL_CXX_CONVERSION
A CXXConversionDecl record.
@ DECL_FIELD
A FieldDecl record.
@ DECL_LINKAGE_SPEC
A LinkageSpecDecl record.
@ DECL_CONTEXT_TU_LOCAL_VISIBLE
A record that stores the set of declarations that are only visible to the TU.
@ DECL_NAMESPACE
A NamespaceDecl record.
@ DECL_NON_TYPE_TEMPLATE_PARM
A NonTypeTemplateParmDecl record.
@ DECL_USING_PACK
A UsingPackDecl record.
@ DECL_FUNCTION
A FunctionDecl record.
@ DECL_USING_DIRECTIVE
A UsingDirecitveDecl record.
@ DECL_RECORD
A RecordDecl record.
@ DECL_CONTEXT_LEXICAL
A record that stores the set of declarations that are lexically stored within a given DeclContext.
@ DECL_OUTLINEDFUNCTION
A OutlinedFunctionDecl record.
@ DECL_BLOCK
A BlockDecl record.
@ DECL_UNRESOLVED_USING_VALUE
An UnresolvedUsingValueDecl record.
@ DECL_TYPE_ALIAS_TEMPLATE
A TypeAliasTemplateDecl record.
@ DECL_CXX_CTOR_INITIALIZERS
A record containing CXXCtorInitializers.
@ DECL_OBJC_CATEGORY
A ObjCCategoryDecl record.
@ DECL_VAR
A VarDecl record.
@ DECL_UNRESOLVED_USING_IF_EXISTS
An UnresolvedUsingIfExistsDecl record.
@ DECL_USING
A UsingDecl record.
@ DECL_OBJC_PROTOCOL
A ObjCProtocolDecl record.
@ DECL_TEMPLATE_TYPE_PARM
A TemplateTypeParmDecl record.
@ DECL_VAR_TEMPLATE_SPECIALIZATION
A VarTemplateSpecializationDecl record.
@ DECL_OBJC_IMPLEMENTATION
A ObjCImplementationDecl record.
@ DECL_LABEL
A LabelDecl record.
@ DECL_OBJC_COMPATIBLE_ALIAS
A ObjCCompatibleAliasDecl record.
@ DECL_CONSTRUCTOR_USING_SHADOW
A ConstructorUsingShadowDecl record.
@ DECL_USING_ENUM
A UsingEnumDecl record.
@ DECL_FRIEND_TEMPLATE
A FriendTemplateDecl record.
@ DECL_PRAGMA_DETECT_MISMATCH
A PragmaDetectMismatchDecl record.
@ DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK
A NonTypeTemplateParmDecl record that stores an expanded non-type template parameter pack.
@ DECL_OBJC_AT_DEFS_FIELD
A ObjCAtDefsFieldDecl record.
@ DECL_IMPLICIT_PARAM
An ImplicitParamDecl record.
@ DECL_FRIEND
A FriendDecl record.
@ DECL_CXX_METHOD
A CXXMethodDecl record.
@ DECL_EXPORT
An ExportDecl record.
@ DECL_BINDING
A BindingDecl record.
@ DECL_PRAGMA_COMMENT
A PragmaCommentDecl record.
@ DECL_ENUM
An EnumDecl record.
@ DECL_CONTEXT_MODULE_LOCAL_VISIBLE
A record containing the set of declarations that are only visible from DeclContext in the same module...
@ DECL_DECOMPOSITION
A DecompositionDecl record.
@ DECL_OMP_DECLARE_REDUCTION
An OMPDeclareReductionDecl record.
@ DECL_OMP_THREADPRIVATE
An OMPThreadPrivateDecl record.
@ DECL_OBJC_METHOD
A ObjCMethodDecl record.
@ DECL_CXX_DESTRUCTOR
A CXXDestructorDecl record.
@ DECL_EXPLICIT_INSTANTIATION
An ExplicitInstantiationDecl record.
@ DECL_OMP_CAPTUREDEXPR
An OMPCapturedExprDecl record.
@ DECL_CLASS_TEMPLATE
A ClassTemplateDecl record.
@ DECL_USING_SHADOW
A UsingShadowDecl record.
@ DECL_CONCEPT
A ConceptDecl record.
@ DECL_CXX_DEDUCTION_GUIDE
A CXXDeductionGuideDecl record.
@ DECL_OMP_REQUIRES
An OMPRequiresDecl record.
@ DECL_OBJC_IVAR
A ObjCIvarDecl record.
@ DECL_OBJC_PROPERTY
A ObjCPropertyDecl record.
@ DECL_TEMPLATE_PARAM_OBJECT
A TemplateParamObjectDecl record.
@ DECL_OBJC_INTERFACE
A ObjCInterfaceDecl record.
@ DECL_VAR_TEMPLATE
A VarTemplateDecl record.
@ DECL_LIFETIME_EXTENDED_TEMPORARY
An LifetimeExtendedTemporaryDecl record.
@ DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION
A ClassTemplatePartialSpecializationDecl record.
@ DECL_IMPLICIT_CONCEPT_SPECIALIZATION
An ImplicitConceptSpecializationDecl record.
@ DECL_CONTEXT_VISIBLE
A record that stores the set of declarations that are visible from a given DeclContext.
@ DECL_OBJC_PROPERTY_IMPL
A ObjCPropertyImplDecl record.
Defines the Linkage enumeration and various utility functions.
const internal::VariadicAllOfMatcher< Decl > decl
Matches declarations.
@ Number
Just a number, nothing else.
Definition Primitives.h:26
ComparisonCategoryResult Compare(const T &X, const T &Y)
Helper to compare two comparable types.
Definition Primitives.h:40
std::variant< struct RequiresDecl, struct HeaderDecl, struct UmbrellaDirDecl, struct ModuleDecl, struct ExcludeDecl, struct ExportDecl, struct ExportAsDecl, struct ExternModuleDecl, struct UseDecl, struct LinkDecl, struct ConfigMacrosDecl, struct ConflictDecl > Decl
All declarations that can appear in a module declaration.
bool needsAnonymousDeclarationNumber(const NamedDecl *D)
Determine whether the given declaration needs an anonymous declaration number.
void numberAnonymousDeclsWithin(const DeclContext *DC, Fn Visit)
Visit each declaration within DC that needs an anonymous declaration number and call Visit with the d...
Definition ASTCommon.h:76
uint64_t TypeID
An ID number that refers to a type in an AST file.
Definition ASTBitCodes.h:88
@ MK_MainFile
File is a PCH file treated as the actual main file.
Definition ModuleFile.h:58
uint32_t SubmoduleID
An ID number that refers to a submodule in a module file.
bool isPartOfPerModuleInitializer(const Decl *D)
Determine whether the given declaration will be included in the per-module initializer if it needs to...
Definition ASTCommon.h:96
Top level wrappers for InstallAPI frontend operations.
OpenACCDirectiveKind
bool isa(CodeGen::Address addr)
Definition Address.h:330
SelectorLocationsKind
Whether all locations of the selector identifiers are in a "standard" position.
LazyOffsetPtr< Stmt, uint64_t, &ExternalASTSource::GetExternalDeclStmt > LazyDeclStmtPtr
A lazy pointer to a statement.
PragmaMSCommentKind
Definition PragmaKinds.h:14
bool isUnresolvedExceptionSpec(ExceptionSpecificationType ESpecType)
ConstexprSpecKind
Define the kind of constexpr specifier.
Definition Specifiers.h:36
LinkageSpecLanguageIDs
Represents the language in a linkage specification.
Definition DeclCXX.h:3032
LambdaCaptureKind
The different capture forms in a lambda introducer.
Definition Lambda.h:33
@ LCK_ByCopy
Capturing by copy (a.k.a., by value)
Definition Lambda.h:36
@ LCK_ByRef
Capturing by reference.
Definition Lambda.h:37
@ LCK_VLAType
Capturing variable-length array type.
Definition Lambda.h:38
@ LCK_StarThis
Capturing the *this object by copy.
Definition Lambda.h:35
@ LCK_This
Capturing the *this object by reference.
Definition Lambda.h:34
AccessSpecifier
A C++ access specifier (public, private, protected), plus the special value "none" which means differ...
Definition Specifiers.h:124
SmallVector< Attr *, 4 > AttrVec
AttrVec - A vector of Attr, which is how they are stored on the AST.
OMPDeclareReductionInitKind
Definition DeclOpenMP.h:223
StorageClass
Storage classes.
Definition Specifiers.h:249
@ SC_Extern
Definition Specifiers.h:252
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
Definition Linkage.h:24
@ None
No linkage, which means that the entity is unique and can only be referred to from within its scope.
Definition Linkage.h:30
@ Result
The result type of a method or function.
Definition TypeBase.h:906
OptionalUnsigned< unsigned > UnsignedOrNone
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
Definition Parser.h:81
TagTypeKind
The kind of a tag type.
Definition TypeBase.h:6045
@ VarTemplate
The name was classified as a variable template name.
Definition Sema.h:580
ObjCImplementationControl
Definition DeclObjC.h:118
RecordArgPassingKind
Enum that represents the different ways arguments are passed to and returned from function calls.
Definition Decl.h:4436
static bool isUndeducedReturnType(QualType T)
bool operator!=(CanQual< T > x, CanQual< U > y)
TemplateNameKind
Specifies the kind of template name that an identifier refers to.
@ LCD_None
Definition Lambda.h:23
DeductionCandidate
Only used by CXXDeductionGuideDecl.
Definition DeclBase.h:1438
bool shouldSkipCheckingODR(const Decl *D)
Definition ASTReader.h:2697
bool declaresSameEntity(const Decl *D1, const Decl *D2)
Determine whether two declarations declare the same entity.
Definition DeclBase.h:1305
TemplateSpecializationKind
Describes the kind of template specialization that a particular template specialization declaration r...
Definition Specifiers.h:189
U cast(CodeGen::Address addr)
Definition Address.h:327
@ Interface
The "__interface" keyword introduces the elaborated-type-specifier.
Definition TypeBase.h:6025
@ Class
The "class" keyword introduces the elaborated-type-specifier.
Definition TypeBase.h:6031
@ Other
Other implicit parameter.
Definition Decl.h:1774
unsigned long uint64_t
Represents an explicit template argument list in C++, e.g., the "<int>" in "sort<int>".
Structure used to store a statement, the constant value to which it was evaluated (if any),...
Definition Decl.h:885
unsigned WasEvaluated
Whether this statement was already evaluated.
Definition Decl.h:888
unsigned HasConstantInitialization
Whether this variable is known to have constant initialization.
Definition Decl.h:899
LazyDeclStmtPtr Value
Definition Decl.h:921
unsigned HasSideEffects
Definition Decl.h:917
APValue Evaluated
Definition Decl.h:922
unsigned CheckedForSideEffects
Definition Decl.h:919
unsigned HasConstantDestruction
Whether this variable is known to have constant destruction.
Definition Decl.h:907
Provides information about an explicit instantiation of a variable or class template.
SourceLocation ExternKeywordLoc
The location of the extern keyword.
Data that is common to all of the declarations of a given function template.
llvm::FoldingSetVector< FunctionTemplateSpecializationInfo > Specializations
The function template specializations for this function template, including explicit specializations ...
uint16_t Part2
...-89ab-...
Definition DeclCXX.h:4407
uint32_t Part1
{01234567-...
Definition DeclCXX.h:4405
uint16_t Part3
...-cdef-...
Definition DeclCXX.h:4409
uint8_t Part4And5[8]
...-0123-456789abcdef}
Definition DeclCXX.h:4411
static constexpr OptionalUnsigned fromInternalRepresentation(underlying_type Rep)
llvm::DenseSet< std::tuple< Decl *, Decl *, int > > NonEquivalentDeclSet
Store declaration pairs already found to be non-equivalent.