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