blob: 66dcf14582dc2c86184490db884213949323efee [file] [log] [blame]
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001//===- ASTReader.cpp - AST File Reader ------------------------------------===//
Guy Benyei11169dd2012-12-18 14:30:41 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the ASTReader class, which reads AST files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Serialization/ASTReader.h"
15#include "ASTCommon.h"
16#include "ASTReaderInternals.h"
17#include "clang/AST/ASTConsumer.h"
18#include "clang/AST/ASTContext.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000019#include "clang/AST/ASTMutationListener.h"
20#include "clang/AST/ASTUnresolvedSet.h"
21#include "clang/AST/Decl.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000022#include "clang/AST/DeclBase.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000023#include "clang/AST/DeclCXX.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000024#include "clang/AST/DeclFriend.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000025#include "clang/AST/DeclGroup.h"
26#include "clang/AST/DeclObjC.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000027#include "clang/AST/DeclTemplate.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000028#include "clang/AST/DeclarationName.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000029#include "clang/AST/Expr.h"
30#include "clang/AST/ExprCXX.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000031#include "clang/AST/ExternalASTSource.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000032#include "clang/AST/NestedNameSpecifier.h"
Richard Trieue7f7ed22017-02-22 01:11:25 +000033#include "clang/AST/ODRHash.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000034#include "clang/AST/RawCommentList.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000035#include "clang/AST/TemplateBase.h"
36#include "clang/AST/TemplateName.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000037#include "clang/AST/Type.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000038#include "clang/AST/TypeLoc.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000039#include "clang/AST/TypeLocVisitor.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000040#include "clang/AST/UnresolvedSet.h"
41#include "clang/Basic/CommentOptions.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000042#include "clang/Basic/Diagnostic.h"
Benjamin Kramerf3ca26982014-05-10 16:31:55 +000043#include "clang/Basic/DiagnosticOptions.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000044#include "clang/Basic/ExceptionSpecificationType.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000045#include "clang/Basic/FileManager.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000046#include "clang/Basic/FileSystemOptions.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000047#include "clang/Basic/IdentifierTable.h"
48#include "clang/Basic/LLVM.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000049#include "clang/Basic/LangOptions.h"
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +000050#include "clang/Basic/MemoryBufferCache.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000051#include "clang/Basic/Module.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000052#include "clang/Basic/ObjCRuntime.h"
53#include "clang/Basic/OperatorKinds.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000054#include "clang/Basic/PragmaKinds.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000055#include "clang/Basic/Sanitizers.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000056#include "clang/Basic/SourceLocation.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000057#include "clang/Basic/SourceManager.h"
58#include "clang/Basic/SourceManagerInternals.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000059#include "clang/Basic/Specifiers.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000060#include "clang/Basic/TargetInfo.h"
61#include "clang/Basic/TargetOptions.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000062#include "clang/Basic/TokenKinds.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000063#include "clang/Basic/Version.h"
64#include "clang/Basic/VersionTuple.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000065#include "clang/Frontend/PCHContainerOperations.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000066#include "clang/Lex/HeaderSearch.h"
67#include "clang/Lex/HeaderSearchOptions.h"
68#include "clang/Lex/MacroInfo.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000069#include "clang/Lex/ModuleMap.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000070#include "clang/Lex/PreprocessingRecord.h"
71#include "clang/Lex/Preprocessor.h"
72#include "clang/Lex/PreprocessorOptions.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000073#include "clang/Lex/Token.h"
74#include "clang/Sema/ObjCMethodList.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000075#include "clang/Sema/Scope.h"
76#include "clang/Sema/Sema.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000077#include "clang/Sema/Weak.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000078#include "clang/Serialization/ASTBitCodes.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000079#include "clang/Serialization/ASTDeserializationListener.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000080#include "clang/Serialization/ContinuousRangeMap.h"
Douglas Gregore060e572013-01-25 01:03:03 +000081#include "clang/Serialization/GlobalModuleIndex.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000082#include "clang/Serialization/Module.h"
83#include "clang/Serialization/ModuleFileExtension.h"
Guy Benyei11169dd2012-12-18 14:30:41 +000084#include "clang/Serialization/ModuleManager.h"
85#include "clang/Serialization/SerializationDiagnostic.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000086#include "llvm/ADT/APFloat.h"
87#include "llvm/ADT/APInt.h"
88#include "llvm/ADT/APSInt.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000089#include "llvm/ADT/ArrayRef.h"
90#include "llvm/ADT/DenseMap.h"
91#include "llvm/ADT/FoldingSet.h"
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +000092#include "llvm/ADT/Hashing.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000093#include "llvm/ADT/IntrusiveRefCntPtr.h"
94#include "llvm/ADT/None.h"
95#include "llvm/ADT/Optional.h"
96#include "llvm/ADT/STLExtras.h"
97#include "llvm/ADT/SmallPtrSet.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +000098#include "llvm/ADT/SmallString.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000099#include "llvm/ADT/SmallVector.h"
Guy Benyei11169dd2012-12-18 14:30:41 +0000100#include "llvm/ADT/StringExtras.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000101#include "llvm/ADT/StringMap.h"
102#include "llvm/ADT/StringRef.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000103#include "llvm/ADT/Triple.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000104#include "llvm/ADT/iterator_range.h"
Guy Benyei11169dd2012-12-18 14:30:41 +0000105#include "llvm/Bitcode/BitstreamReader.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000106#include "llvm/Support/Casting.h"
Richard Smithaada85c2016-02-06 02:06:43 +0000107#include "llvm/Support/Compression.h"
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000108#include "llvm/Support/Compiler.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000109#include "llvm/Support/Endian.h"
George Rimarc39f5492017-01-17 15:45:31 +0000110#include "llvm/Support/Error.h"
Guy Benyei11169dd2012-12-18 14:30:41 +0000111#include "llvm/Support/ErrorHandling.h"
112#include "llvm/Support/FileSystem.h"
113#include "llvm/Support/MemoryBuffer.h"
114#include "llvm/Support/Path.h"
115#include "llvm/Support/SaveAndRestore.h"
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000116#include "llvm/Support/Timer.h"
Dmitri Gribenkof430da42014-02-12 10:33:14 +0000117#include "llvm/Support/raw_ostream.h"
Guy Benyei11169dd2012-12-18 14:30:41 +0000118#include <algorithm>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000119#include <cassert>
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000120#include <cstddef>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000121#include <cstdint>
Chris Lattner91f373e2013-01-20 00:57:52 +0000122#include <cstdio>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000123#include <ctime>
Guy Benyei11169dd2012-12-18 14:30:41 +0000124#include <iterator>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000125#include <limits>
126#include <map>
127#include <memory>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000128#include <string>
Rafael Espindola8a8e5542014-06-12 17:19:42 +0000129#include <system_error>
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000130#include <tuple>
131#include <utility>
132#include <vector>
Guy Benyei11169dd2012-12-18 14:30:41 +0000133
134using namespace clang;
135using namespace clang::serialization;
136using namespace clang::serialization::reader;
Chris Lattner7fb3bef2013-01-20 00:56:42 +0000137using llvm::BitstreamCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +0000138
Ben Langmuircb69b572014-03-07 06:40:32 +0000139//===----------------------------------------------------------------------===//
140// ChainedASTReaderListener implementation
141//===----------------------------------------------------------------------===//
142
143bool
144ChainedASTReaderListener::ReadFullVersionInformation(StringRef FullVersion) {
145 return First->ReadFullVersionInformation(FullVersion) ||
146 Second->ReadFullVersionInformation(FullVersion);
147}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000148
Ben Langmuir4f5212a2014-04-14 22:12:44 +0000149void ChainedASTReaderListener::ReadModuleName(StringRef ModuleName) {
150 First->ReadModuleName(ModuleName);
151 Second->ReadModuleName(ModuleName);
152}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000153
Ben Langmuir4f5212a2014-04-14 22:12:44 +0000154void ChainedASTReaderListener::ReadModuleMapFile(StringRef ModuleMapPath) {
155 First->ReadModuleMapFile(ModuleMapPath);
156 Second->ReadModuleMapFile(ModuleMapPath);
157}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000158
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000159bool
160ChainedASTReaderListener::ReadLanguageOptions(const LangOptions &LangOpts,
161 bool Complain,
162 bool AllowCompatibleDifferences) {
163 return First->ReadLanguageOptions(LangOpts, Complain,
164 AllowCompatibleDifferences) ||
165 Second->ReadLanguageOptions(LangOpts, Complain,
166 AllowCompatibleDifferences);
Ben Langmuircb69b572014-03-07 06:40:32 +0000167}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000168
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000169bool ChainedASTReaderListener::ReadTargetOptions(
170 const TargetOptions &TargetOpts, bool Complain,
171 bool AllowCompatibleDifferences) {
172 return First->ReadTargetOptions(TargetOpts, Complain,
173 AllowCompatibleDifferences) ||
174 Second->ReadTargetOptions(TargetOpts, Complain,
175 AllowCompatibleDifferences);
Ben Langmuircb69b572014-03-07 06:40:32 +0000176}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000177
Ben Langmuircb69b572014-03-07 06:40:32 +0000178bool ChainedASTReaderListener::ReadDiagnosticOptions(
Ben Langmuirb92de022014-04-29 16:25:26 +0000179 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts, bool Complain) {
Ben Langmuircb69b572014-03-07 06:40:32 +0000180 return First->ReadDiagnosticOptions(DiagOpts, Complain) ||
181 Second->ReadDiagnosticOptions(DiagOpts, Complain);
182}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000183
Ben Langmuircb69b572014-03-07 06:40:32 +0000184bool
185ChainedASTReaderListener::ReadFileSystemOptions(const FileSystemOptions &FSOpts,
186 bool Complain) {
187 return First->ReadFileSystemOptions(FSOpts, Complain) ||
188 Second->ReadFileSystemOptions(FSOpts, Complain);
189}
190
191bool ChainedASTReaderListener::ReadHeaderSearchOptions(
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +0000192 const HeaderSearchOptions &HSOpts, StringRef SpecificModuleCachePath,
193 bool Complain) {
194 return First->ReadHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
195 Complain) ||
196 Second->ReadHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
197 Complain);
Ben Langmuircb69b572014-03-07 06:40:32 +0000198}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000199
Ben Langmuircb69b572014-03-07 06:40:32 +0000200bool ChainedASTReaderListener::ReadPreprocessorOptions(
201 const PreprocessorOptions &PPOpts, bool Complain,
202 std::string &SuggestedPredefines) {
203 return First->ReadPreprocessorOptions(PPOpts, Complain,
204 SuggestedPredefines) ||
205 Second->ReadPreprocessorOptions(PPOpts, Complain, SuggestedPredefines);
206}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000207
Ben Langmuircb69b572014-03-07 06:40:32 +0000208void ChainedASTReaderListener::ReadCounter(const serialization::ModuleFile &M,
209 unsigned Value) {
210 First->ReadCounter(M, Value);
211 Second->ReadCounter(M, Value);
212}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000213
Ben Langmuircb69b572014-03-07 06:40:32 +0000214bool ChainedASTReaderListener::needsInputFileVisitation() {
215 return First->needsInputFileVisitation() ||
216 Second->needsInputFileVisitation();
217}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000218
Ben Langmuircb69b572014-03-07 06:40:32 +0000219bool ChainedASTReaderListener::needsSystemInputFileVisitation() {
220 return First->needsSystemInputFileVisitation() ||
221 Second->needsSystemInputFileVisitation();
222}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000223
Richard Smith216a3bd2015-08-13 17:57:10 +0000224void ChainedASTReaderListener::visitModuleFile(StringRef Filename,
225 ModuleKind Kind) {
226 First->visitModuleFile(Filename, Kind);
227 Second->visitModuleFile(Filename, Kind);
Argyrios Kyrtzidis6d0753d2014-03-14 03:07:38 +0000228}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000229
Ben Langmuircb69b572014-03-07 06:40:32 +0000230bool ChainedASTReaderListener::visitInputFile(StringRef Filename,
Argyrios Kyrtzidis68ccbe02014-03-14 02:26:31 +0000231 bool isSystem,
Richard Smith216a3bd2015-08-13 17:57:10 +0000232 bool isOverridden,
233 bool isExplicitModule) {
Justin Bognerc65a66d2014-05-22 06:04:59 +0000234 bool Continue = false;
235 if (First->needsInputFileVisitation() &&
236 (!isSystem || First->needsSystemInputFileVisitation()))
Richard Smith216a3bd2015-08-13 17:57:10 +0000237 Continue |= First->visitInputFile(Filename, isSystem, isOverridden,
238 isExplicitModule);
Justin Bognerc65a66d2014-05-22 06:04:59 +0000239 if (Second->needsInputFileVisitation() &&
240 (!isSystem || Second->needsSystemInputFileVisitation()))
Richard Smith216a3bd2015-08-13 17:57:10 +0000241 Continue |= Second->visitInputFile(Filename, isSystem, isOverridden,
242 isExplicitModule);
Justin Bognerc65a66d2014-05-22 06:04:59 +0000243 return Continue;
Ben Langmuircb69b572014-03-07 06:40:32 +0000244}
245
Douglas Gregor6623e1f2015-11-03 18:33:07 +0000246void ChainedASTReaderListener::readModuleFileExtension(
247 const ModuleFileExtensionMetadata &Metadata) {
248 First->readModuleFileExtension(Metadata);
249 Second->readModuleFileExtension(Metadata);
250}
251
Guy Benyei11169dd2012-12-18 14:30:41 +0000252//===----------------------------------------------------------------------===//
253// PCH validator implementation
254//===----------------------------------------------------------------------===//
255
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000256ASTReaderListener::~ASTReaderListener() = default;
Guy Benyei11169dd2012-12-18 14:30:41 +0000257
258/// \brief Compare the given set of language options against an existing set of
259/// language options.
260///
261/// \param Diags If non-NULL, diagnostics will be emitted via this engine.
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000262/// \param AllowCompatibleDifferences If true, differences between compatible
263/// language options will be permitted.
Guy Benyei11169dd2012-12-18 14:30:41 +0000264///
265/// \returns true if the languagae options mis-match, false otherwise.
266static bool checkLanguageOptions(const LangOptions &LangOpts,
267 const LangOptions &ExistingLangOpts,
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000268 DiagnosticsEngine *Diags,
269 bool AllowCompatibleDifferences = true) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000270#define LANGOPT(Name, Bits, Default, Description) \
271 if (ExistingLangOpts.Name != LangOpts.Name) { \
272 if (Diags) \
273 Diags->Report(diag::err_pch_langopt_mismatch) \
274 << Description << LangOpts.Name << ExistingLangOpts.Name; \
275 return true; \
276 }
277
278#define VALUE_LANGOPT(Name, Bits, Default, Description) \
279 if (ExistingLangOpts.Name != LangOpts.Name) { \
280 if (Diags) \
281 Diags->Report(diag::err_pch_langopt_value_mismatch) \
282 << Description; \
283 return true; \
284 }
285
286#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
287 if (ExistingLangOpts.get##Name() != LangOpts.get##Name()) { \
288 if (Diags) \
289 Diags->Report(diag::err_pch_langopt_value_mismatch) \
290 << Description; \
291 return true; \
292 }
293
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000294#define COMPATIBLE_LANGOPT(Name, Bits, Default, Description) \
295 if (!AllowCompatibleDifferences) \
296 LANGOPT(Name, Bits, Default, Description)
297
298#define COMPATIBLE_ENUM_LANGOPT(Name, Bits, Default, Description) \
299 if (!AllowCompatibleDifferences) \
300 ENUM_LANGOPT(Name, Bits, Default, Description)
301
Richard Smitha1ddf5e2016-04-07 20:47:37 +0000302#define COMPATIBLE_VALUE_LANGOPT(Name, Bits, Default, Description) \
303 if (!AllowCompatibleDifferences) \
304 VALUE_LANGOPT(Name, Bits, Default, Description)
305
Guy Benyei11169dd2012-12-18 14:30:41 +0000306#define BENIGN_LANGOPT(Name, Bits, Default, Description)
307#define BENIGN_ENUM_LANGOPT(Name, Type, Bits, Default, Description)
Richard Smitha1ddf5e2016-04-07 20:47:37 +0000308#define BENIGN_VALUE_LANGOPT(Name, Type, Bits, Default, Description)
Guy Benyei11169dd2012-12-18 14:30:41 +0000309#include "clang/Basic/LangOptions.def"
310
Ben Langmuircd98cb72015-06-23 18:20:18 +0000311 if (ExistingLangOpts.ModuleFeatures != LangOpts.ModuleFeatures) {
312 if (Diags)
313 Diags->Report(diag::err_pch_langopt_value_mismatch) << "module features";
314 return true;
315 }
316
Guy Benyei11169dd2012-12-18 14:30:41 +0000317 if (ExistingLangOpts.ObjCRuntime != LangOpts.ObjCRuntime) {
318 if (Diags)
319 Diags->Report(diag::err_pch_langopt_value_mismatch)
320 << "target Objective-C runtime";
321 return true;
322 }
323
Dmitri Gribenkoacf2e782013-02-22 14:21:27 +0000324 if (ExistingLangOpts.CommentOpts.BlockCommandNames !=
325 LangOpts.CommentOpts.BlockCommandNames) {
326 if (Diags)
327 Diags->Report(diag::err_pch_langopt_value_mismatch)
328 << "block command names";
329 return true;
330 }
331
Vedant Kumar85a83c22017-06-01 20:01:01 +0000332 // Sanitizer feature mismatches are treated as compatible differences. If
333 // compatible differences aren't allowed, we still only want to check for
334 // mismatches of non-modular sanitizers (the only ones which can affect AST
335 // generation).
336 if (!AllowCompatibleDifferences) {
337 SanitizerMask ModularSanitizers = getPPTransparentSanitizers();
338 SanitizerSet ExistingSanitizers = ExistingLangOpts.Sanitize;
339 SanitizerSet ImportedSanitizers = LangOpts.Sanitize;
340 ExistingSanitizers.clear(ModularSanitizers);
341 ImportedSanitizers.clear(ModularSanitizers);
342 if (ExistingSanitizers.Mask != ImportedSanitizers.Mask) {
343 const std::string Flag = "-fsanitize=";
344 if (Diags) {
345#define SANITIZER(NAME, ID) \
346 { \
347 bool InExistingModule = ExistingSanitizers.has(SanitizerKind::ID); \
348 bool InImportedModule = ImportedSanitizers.has(SanitizerKind::ID); \
349 if (InExistingModule != InImportedModule) \
350 Diags->Report(diag::err_pch_targetopt_feature_mismatch) \
351 << InExistingModule << (Flag + NAME); \
352 }
353#include "clang/Basic/Sanitizers.def"
354 }
355 return true;
356 }
357 }
358
Guy Benyei11169dd2012-12-18 14:30:41 +0000359 return false;
360}
361
362/// \brief Compare the given set of target options against an existing set of
363/// target options.
364///
365/// \param Diags If non-NULL, diagnostics will be emitted via this engine.
366///
367/// \returns true if the target options mis-match, false otherwise.
368static bool checkTargetOptions(const TargetOptions &TargetOpts,
369 const TargetOptions &ExistingTargetOpts,
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000370 DiagnosticsEngine *Diags,
371 bool AllowCompatibleDifferences = true) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000372#define CHECK_TARGET_OPT(Field, Name) \
373 if (TargetOpts.Field != ExistingTargetOpts.Field) { \
374 if (Diags) \
375 Diags->Report(diag::err_pch_targetopt_mismatch) \
376 << Name << TargetOpts.Field << ExistingTargetOpts.Field; \
377 return true; \
378 }
379
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000380 // The triple and ABI must match exactly.
Guy Benyei11169dd2012-12-18 14:30:41 +0000381 CHECK_TARGET_OPT(Triple, "target");
Guy Benyei11169dd2012-12-18 14:30:41 +0000382 CHECK_TARGET_OPT(ABI, "target ABI");
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000383
384 // We can tolerate different CPUs in many cases, notably when one CPU
385 // supports a strict superset of another. When allowing compatible
386 // differences skip this check.
387 if (!AllowCompatibleDifferences)
388 CHECK_TARGET_OPT(CPU, "target CPU");
389
Guy Benyei11169dd2012-12-18 14:30:41 +0000390#undef CHECK_TARGET_OPT
391
392 // Compare feature sets.
393 SmallVector<StringRef, 4> ExistingFeatures(
394 ExistingTargetOpts.FeaturesAsWritten.begin(),
395 ExistingTargetOpts.FeaturesAsWritten.end());
396 SmallVector<StringRef, 4> ReadFeatures(TargetOpts.FeaturesAsWritten.begin(),
397 TargetOpts.FeaturesAsWritten.end());
398 std::sort(ExistingFeatures.begin(), ExistingFeatures.end());
399 std::sort(ReadFeatures.begin(), ReadFeatures.end());
400
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000401 // We compute the set difference in both directions explicitly so that we can
402 // diagnose the differences differently.
403 SmallVector<StringRef, 4> UnmatchedExistingFeatures, UnmatchedReadFeatures;
404 std::set_difference(
405 ExistingFeatures.begin(), ExistingFeatures.end(), ReadFeatures.begin(),
406 ReadFeatures.end(), std::back_inserter(UnmatchedExistingFeatures));
407 std::set_difference(ReadFeatures.begin(), ReadFeatures.end(),
408 ExistingFeatures.begin(), ExistingFeatures.end(),
409 std::back_inserter(UnmatchedReadFeatures));
Guy Benyei11169dd2012-12-18 14:30:41 +0000410
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000411 // If we are allowing compatible differences and the read feature set is
412 // a strict subset of the existing feature set, there is nothing to diagnose.
413 if (AllowCompatibleDifferences && UnmatchedReadFeatures.empty())
414 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +0000415
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000416 if (Diags) {
417 for (StringRef Feature : UnmatchedReadFeatures)
Guy Benyei11169dd2012-12-18 14:30:41 +0000418 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000419 << /* is-existing-feature */ false << Feature;
420 for (StringRef Feature : UnmatchedExistingFeatures)
421 Diags->Report(diag::err_pch_targetopt_feature_mismatch)
422 << /* is-existing-feature */ true << Feature;
Guy Benyei11169dd2012-12-18 14:30:41 +0000423 }
424
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000425 return !UnmatchedReadFeatures.empty() || !UnmatchedExistingFeatures.empty();
Guy Benyei11169dd2012-12-18 14:30:41 +0000426}
427
428bool
429PCHValidator::ReadLanguageOptions(const LangOptions &LangOpts,
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000430 bool Complain,
431 bool AllowCompatibleDifferences) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000432 const LangOptions &ExistingLangOpts = PP.getLangOpts();
433 return checkLanguageOptions(LangOpts, ExistingLangOpts,
Richard Smith1e2cf0d2014-10-31 02:28:58 +0000434 Complain ? &Reader.Diags : nullptr,
435 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +0000436}
437
438bool PCHValidator::ReadTargetOptions(const TargetOptions &TargetOpts,
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000439 bool Complain,
440 bool AllowCompatibleDifferences) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000441 const TargetOptions &ExistingTargetOpts = PP.getTargetInfo().getTargetOpts();
442 return checkTargetOptions(TargetOpts, ExistingTargetOpts,
Chandler Carruth0d745bc2015-03-14 04:47:43 +0000443 Complain ? &Reader.Diags : nullptr,
444 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +0000445}
446
447namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000448
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000449using MacroDefinitionsMap =
450 llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/>>;
451using DeclsMap = llvm::DenseMap<DeclarationName, SmallVector<NamedDecl *, 8>>;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +0000452
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000453} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +0000454
Ben Langmuirb92de022014-04-29 16:25:26 +0000455static bool checkDiagnosticGroupMappings(DiagnosticsEngine &StoredDiags,
456 DiagnosticsEngine &Diags,
457 bool Complain) {
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000458 using Level = DiagnosticsEngine::Level;
Ben Langmuirb92de022014-04-29 16:25:26 +0000459
460 // Check current mappings for new -Werror mappings, and the stored mappings
461 // for cases that were explicitly mapped to *not* be errors that are now
462 // errors because of options like -Werror.
463 DiagnosticsEngine *MappingSources[] = { &Diags, &StoredDiags };
464
465 for (DiagnosticsEngine *MappingSource : MappingSources) {
466 for (auto DiagIDMappingPair : MappingSource->getDiagnosticMappings()) {
467 diag::kind DiagID = DiagIDMappingPair.first;
468 Level CurLevel = Diags.getDiagnosticLevel(DiagID, SourceLocation());
469 if (CurLevel < DiagnosticsEngine::Error)
470 continue; // not significant
471 Level StoredLevel =
472 StoredDiags.getDiagnosticLevel(DiagID, SourceLocation());
473 if (StoredLevel < DiagnosticsEngine::Error) {
474 if (Complain)
475 Diags.Report(diag::err_pch_diagopt_mismatch) << "-Werror=" +
476 Diags.getDiagnosticIDs()->getWarningOptionForDiag(DiagID).str();
477 return true;
478 }
479 }
480 }
481
482 return false;
483}
484
Alp Tokerac4e8e52014-06-22 21:58:33 +0000485static bool isExtHandlingFromDiagsError(DiagnosticsEngine &Diags) {
486 diag::Severity Ext = Diags.getExtensionHandlingBehavior();
487 if (Ext == diag::Severity::Warning && Diags.getWarningsAsErrors())
488 return true;
489 return Ext >= diag::Severity::Error;
Ben Langmuirb92de022014-04-29 16:25:26 +0000490}
491
492static bool checkDiagnosticMappings(DiagnosticsEngine &StoredDiags,
493 DiagnosticsEngine &Diags,
494 bool IsSystem, bool Complain) {
495 // Top-level options
496 if (IsSystem) {
497 if (Diags.getSuppressSystemWarnings())
498 return false;
499 // If -Wsystem-headers was not enabled before, be conservative
500 if (StoredDiags.getSuppressSystemWarnings()) {
501 if (Complain)
502 Diags.Report(diag::err_pch_diagopt_mismatch) << "-Wsystem-headers";
503 return true;
504 }
505 }
506
507 if (Diags.getWarningsAsErrors() && !StoredDiags.getWarningsAsErrors()) {
508 if (Complain)
509 Diags.Report(diag::err_pch_diagopt_mismatch) << "-Werror";
510 return true;
511 }
512
513 if (Diags.getWarningsAsErrors() && Diags.getEnableAllWarnings() &&
514 !StoredDiags.getEnableAllWarnings()) {
515 if (Complain)
516 Diags.Report(diag::err_pch_diagopt_mismatch) << "-Weverything -Werror";
517 return true;
518 }
519
520 if (isExtHandlingFromDiagsError(Diags) &&
521 !isExtHandlingFromDiagsError(StoredDiags)) {
522 if (Complain)
523 Diags.Report(diag::err_pch_diagopt_mismatch) << "-pedantic-errors";
524 return true;
525 }
526
527 return checkDiagnosticGroupMappings(StoredDiags, Diags, Complain);
528}
529
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +0000530/// Return the top import module if it is implicit, nullptr otherwise.
531static Module *getTopImportImplicitModule(ModuleManager &ModuleMgr,
532 Preprocessor &PP) {
533 // If the original import came from a file explicitly generated by the user,
534 // don't check the diagnostic mappings.
535 // FIXME: currently this is approximated by checking whether this is not a
536 // module import of an implicitly-loaded module file.
537 // Note: ModuleMgr.rbegin() may not be the current module, but it must be in
538 // the transitive closure of its imports, since unrelated modules cannot be
539 // imported until after this module finishes validation.
540 ModuleFile *TopImport = &*ModuleMgr.rbegin();
541 while (!TopImport->ImportedBy.empty())
542 TopImport = TopImport->ImportedBy[0];
543 if (TopImport->Kind != MK_ImplicitModule)
544 return nullptr;
545
546 StringRef ModuleName = TopImport->ModuleName;
547 assert(!ModuleName.empty() && "diagnostic options read before module name");
548
549 Module *M = PP.getHeaderSearchInfo().lookupModule(ModuleName);
550 assert(M && "missing module");
551 return M;
552}
553
Ben Langmuirb92de022014-04-29 16:25:26 +0000554bool PCHValidator::ReadDiagnosticOptions(
555 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts, bool Complain) {
556 DiagnosticsEngine &ExistingDiags = PP.getDiagnostics();
557 IntrusiveRefCntPtr<DiagnosticIDs> DiagIDs(ExistingDiags.getDiagnosticIDs());
558 IntrusiveRefCntPtr<DiagnosticsEngine> Diags(
Alp Tokerf994cef2014-07-05 03:08:06 +0000559 new DiagnosticsEngine(DiagIDs, DiagOpts.get()));
Ben Langmuirb92de022014-04-29 16:25:26 +0000560 // This should never fail, because we would have processed these options
561 // before writing them to an ASTFile.
562 ProcessWarningOptions(*Diags, *DiagOpts, /*Report*/false);
563
564 ModuleManager &ModuleMgr = Reader.getModuleManager();
565 assert(ModuleMgr.size() >= 1 && "what ASTFile is this then");
566
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +0000567 Module *TopM = getTopImportImplicitModule(ModuleMgr, PP);
568 if (!TopM)
Ben Langmuirb92de022014-04-29 16:25:26 +0000569 return false;
570
Ben Langmuirb92de022014-04-29 16:25:26 +0000571 // FIXME: if the diagnostics are incompatible, save a DiagnosticOptions that
572 // contains the union of their flags.
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +0000573 return checkDiagnosticMappings(*Diags, ExistingDiags, TopM->IsSystem,
574 Complain);
Ben Langmuirb92de022014-04-29 16:25:26 +0000575}
576
Guy Benyei11169dd2012-12-18 14:30:41 +0000577/// \brief Collect the macro definitions provided by the given preprocessor
578/// options.
Craig Toppera13603a2014-05-22 05:54:18 +0000579static void
580collectMacroDefinitions(const PreprocessorOptions &PPOpts,
581 MacroDefinitionsMap &Macros,
582 SmallVectorImpl<StringRef> *MacroNames = nullptr) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000583 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
584 StringRef Macro = PPOpts.Macros[I].first;
585 bool IsUndef = PPOpts.Macros[I].second;
586
587 std::pair<StringRef, StringRef> MacroPair = Macro.split('=');
588 StringRef MacroName = MacroPair.first;
589 StringRef MacroBody = MacroPair.second;
590
591 // For an #undef'd macro, we only care about the name.
592 if (IsUndef) {
593 if (MacroNames && !Macros.count(MacroName))
594 MacroNames->push_back(MacroName);
595
596 Macros[MacroName] = std::make_pair("", true);
597 continue;
598 }
599
600 // For a #define'd macro, figure out the actual definition.
601 if (MacroName.size() == Macro.size())
602 MacroBody = "1";
603 else {
604 // Note: GCC drops anything following an end-of-line character.
605 StringRef::size_type End = MacroBody.find_first_of("\n\r");
606 MacroBody = MacroBody.substr(0, End);
607 }
608
609 if (MacroNames && !Macros.count(MacroName))
610 MacroNames->push_back(MacroName);
611 Macros[MacroName] = std::make_pair(MacroBody, false);
612 }
613}
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +0000614
Guy Benyei11169dd2012-12-18 14:30:41 +0000615/// \brief Check the preprocessor options deserialized from the control block
616/// against the preprocessor options in an existing preprocessor.
617///
618/// \param Diags If non-null, produce diagnostics for any mismatches incurred.
Yaxun Liu43712e02016-09-07 18:40:20 +0000619/// \param Validate If true, validate preprocessor options. If false, allow
620/// macros defined by \p ExistingPPOpts to override those defined by
621/// \p PPOpts in SuggestedPredefines.
Guy Benyei11169dd2012-12-18 14:30:41 +0000622static bool checkPreprocessorOptions(const PreprocessorOptions &PPOpts,
623 const PreprocessorOptions &ExistingPPOpts,
624 DiagnosticsEngine *Diags,
625 FileManager &FileMgr,
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +0000626 std::string &SuggestedPredefines,
Yaxun Liu43712e02016-09-07 18:40:20 +0000627 const LangOptions &LangOpts,
628 bool Validate = true) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000629 // Check macro definitions.
630 MacroDefinitionsMap ASTFileMacros;
631 collectMacroDefinitions(PPOpts, ASTFileMacros);
632 MacroDefinitionsMap ExistingMacros;
633 SmallVector<StringRef, 4> ExistingMacroNames;
634 collectMacroDefinitions(ExistingPPOpts, ExistingMacros, &ExistingMacroNames);
635
636 for (unsigned I = 0, N = ExistingMacroNames.size(); I != N; ++I) {
637 // Dig out the macro definition in the existing preprocessor options.
638 StringRef MacroName = ExistingMacroNames[I];
639 std::pair<StringRef, bool> Existing = ExistingMacros[MacroName];
640
641 // Check whether we know anything about this macro name or not.
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000642 llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/>>::iterator Known =
643 ASTFileMacros.find(MacroName);
Yaxun Liu43712e02016-09-07 18:40:20 +0000644 if (!Validate || Known == ASTFileMacros.end()) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000645 // FIXME: Check whether this identifier was referenced anywhere in the
646 // AST file. If so, we should reject the AST file. Unfortunately, this
647 // information isn't in the control block. What shall we do about it?
648
649 if (Existing.second) {
650 SuggestedPredefines += "#undef ";
651 SuggestedPredefines += MacroName.str();
652 SuggestedPredefines += '\n';
653 } else {
654 SuggestedPredefines += "#define ";
655 SuggestedPredefines += MacroName.str();
656 SuggestedPredefines += ' ';
657 SuggestedPredefines += Existing.first.str();
658 SuggestedPredefines += '\n';
659 }
660 continue;
661 }
662
663 // If the macro was defined in one but undef'd in the other, we have a
664 // conflict.
665 if (Existing.second != Known->second.second) {
666 if (Diags) {
667 Diags->Report(diag::err_pch_macro_def_undef)
668 << MacroName << Known->second.second;
669 }
670 return true;
671 }
672
673 // If the macro was #undef'd in both, or if the macro bodies are identical,
674 // it's fine.
675 if (Existing.second || Existing.first == Known->second.first)
676 continue;
677
678 // The macro bodies differ; complain.
679 if (Diags) {
680 Diags->Report(diag::err_pch_macro_def_conflict)
681 << MacroName << Known->second.first << Existing.first;
682 }
683 return true;
684 }
685
686 // Check whether we're using predefines.
Yaxun Liu43712e02016-09-07 18:40:20 +0000687 if (PPOpts.UsePredefines != ExistingPPOpts.UsePredefines && Validate) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000688 if (Diags) {
689 Diags->Report(diag::err_pch_undef) << ExistingPPOpts.UsePredefines;
690 }
691 return true;
692 }
693
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +0000694 // Detailed record is important since it is used for the module cache hash.
695 if (LangOpts.Modules &&
Yaxun Liu43712e02016-09-07 18:40:20 +0000696 PPOpts.DetailedRecord != ExistingPPOpts.DetailedRecord && Validate) {
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +0000697 if (Diags) {
698 Diags->Report(diag::err_pch_pp_detailed_record) << PPOpts.DetailedRecord;
699 }
700 return true;
701 }
702
Guy Benyei11169dd2012-12-18 14:30:41 +0000703 // Compute the #include and #include_macros lines we need.
704 for (unsigned I = 0, N = ExistingPPOpts.Includes.size(); I != N; ++I) {
705 StringRef File = ExistingPPOpts.Includes[I];
706 if (File == ExistingPPOpts.ImplicitPCHInclude)
707 continue;
708
709 if (std::find(PPOpts.Includes.begin(), PPOpts.Includes.end(), File)
710 != PPOpts.Includes.end())
711 continue;
712
713 SuggestedPredefines += "#include \"";
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000714 SuggestedPredefines += File;
Guy Benyei11169dd2012-12-18 14:30:41 +0000715 SuggestedPredefines += "\"\n";
716 }
717
718 for (unsigned I = 0, N = ExistingPPOpts.MacroIncludes.size(); I != N; ++I) {
719 StringRef File = ExistingPPOpts.MacroIncludes[I];
720 if (std::find(PPOpts.MacroIncludes.begin(), PPOpts.MacroIncludes.end(),
721 File)
722 != PPOpts.MacroIncludes.end())
723 continue;
724
725 SuggestedPredefines += "#__include_macros \"";
Manuel Klimek9af34ae2014-08-12 08:25:57 +0000726 SuggestedPredefines += File;
Guy Benyei11169dd2012-12-18 14:30:41 +0000727 SuggestedPredefines += "\"\n##\n";
728 }
729
730 return false;
731}
732
733bool PCHValidator::ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
734 bool Complain,
735 std::string &SuggestedPredefines) {
736 const PreprocessorOptions &ExistingPPOpts = PP.getPreprocessorOpts();
737
738 return checkPreprocessorOptions(PPOpts, ExistingPPOpts,
Craig Toppera13603a2014-05-22 05:54:18 +0000739 Complain? &Reader.Diags : nullptr,
Guy Benyei11169dd2012-12-18 14:30:41 +0000740 PP.getFileManager(),
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +0000741 SuggestedPredefines,
742 PP.getLangOpts());
Guy Benyei11169dd2012-12-18 14:30:41 +0000743}
744
Yaxun Liu43712e02016-09-07 18:40:20 +0000745bool SimpleASTReaderListener::ReadPreprocessorOptions(
746 const PreprocessorOptions &PPOpts,
747 bool Complain,
748 std::string &SuggestedPredefines) {
749 return checkPreprocessorOptions(PPOpts,
750 PP.getPreprocessorOpts(),
751 nullptr,
752 PP.getFileManager(),
753 SuggestedPredefines,
754 PP.getLangOpts(),
755 false);
756}
757
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +0000758/// Check the header search options deserialized from the control block
759/// against the header search options in an existing preprocessor.
760///
761/// \param Diags If non-null, produce diagnostics for any mismatches incurred.
762static bool checkHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
763 StringRef SpecificModuleCachePath,
764 StringRef ExistingModuleCachePath,
765 DiagnosticsEngine *Diags,
766 const LangOptions &LangOpts) {
767 if (LangOpts.Modules) {
768 if (SpecificModuleCachePath != ExistingModuleCachePath) {
769 if (Diags)
770 Diags->Report(diag::err_pch_modulecache_mismatch)
771 << SpecificModuleCachePath << ExistingModuleCachePath;
772 return true;
773 }
774 }
775
776 return false;
777}
778
779bool PCHValidator::ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
780 StringRef SpecificModuleCachePath,
781 bool Complain) {
782 return checkHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
783 PP.getHeaderSearchInfo().getModuleCachePath(),
784 Complain ? &Reader.Diags : nullptr,
785 PP.getLangOpts());
786}
787
Guy Benyei11169dd2012-12-18 14:30:41 +0000788void PCHValidator::ReadCounter(const ModuleFile &M, unsigned Value) {
789 PP.setCounterValue(Value);
790}
791
792//===----------------------------------------------------------------------===//
793// AST reader implementation
794//===----------------------------------------------------------------------===//
795
Nico Weber824285e2014-05-08 04:26:47 +0000796void ASTReader::setDeserializationListener(ASTDeserializationListener *Listener,
797 bool TakeOwnership) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000798 DeserializationListener = Listener;
Nico Weber824285e2014-05-08 04:26:47 +0000799 OwnsDeserializationListener = TakeOwnership;
Guy Benyei11169dd2012-12-18 14:30:41 +0000800}
801
Guy Benyei11169dd2012-12-18 14:30:41 +0000802unsigned ASTSelectorLookupTrait::ComputeHash(Selector Sel) {
803 return serialization::ComputeHash(Sel);
804}
805
Guy Benyei11169dd2012-12-18 14:30:41 +0000806std::pair<unsigned, unsigned>
807ASTSelectorLookupTrait::ReadKeyDataLength(const unsigned char*& d) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000808 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000809
Justin Bogner57ba0b22014-03-28 22:03:24 +0000810 unsigned KeyLen = endian::readNext<uint16_t, little, unaligned>(d);
811 unsigned DataLen = endian::readNext<uint16_t, little, unaligned>(d);
Guy Benyei11169dd2012-12-18 14:30:41 +0000812 return std::make_pair(KeyLen, DataLen);
813}
814
David L. Jonesc4808b9e2016-12-15 20:53:26 +0000815ASTSelectorLookupTrait::internal_key_type
Guy Benyei11169dd2012-12-18 14:30:41 +0000816ASTSelectorLookupTrait::ReadKey(const unsigned char* d, unsigned) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000817 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000818
Guy Benyei11169dd2012-12-18 14:30:41 +0000819 SelectorTable &SelTable = Reader.getContext().Selectors;
Justin Bogner57ba0b22014-03-28 22:03:24 +0000820 unsigned N = endian::readNext<uint16_t, little, unaligned>(d);
821 IdentifierInfo *FirstII = Reader.getLocalIdentifier(
822 F, endian::readNext<uint32_t, little, unaligned>(d));
Guy Benyei11169dd2012-12-18 14:30:41 +0000823 if (N == 0)
824 return SelTable.getNullarySelector(FirstII);
825 else if (N == 1)
826 return SelTable.getUnarySelector(FirstII);
827
828 SmallVector<IdentifierInfo *, 16> Args;
829 Args.push_back(FirstII);
830 for (unsigned I = 1; I != N; ++I)
Justin Bogner57ba0b22014-03-28 22:03:24 +0000831 Args.push_back(Reader.getLocalIdentifier(
832 F, endian::readNext<uint32_t, little, unaligned>(d)));
Guy Benyei11169dd2012-12-18 14:30:41 +0000833
834 return SelTable.getSelector(N, Args.data());
835}
836
David L. Jonesc4808b9e2016-12-15 20:53:26 +0000837ASTSelectorLookupTrait::data_type
838ASTSelectorLookupTrait::ReadData(Selector, const unsigned char* d,
Guy Benyei11169dd2012-12-18 14:30:41 +0000839 unsigned DataLen) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000840 using namespace llvm::support;
Guy Benyei11169dd2012-12-18 14:30:41 +0000841
842 data_type Result;
843
Justin Bogner57ba0b22014-03-28 22:03:24 +0000844 Result.ID = Reader.getGlobalSelectorID(
845 F, endian::readNext<uint32_t, little, unaligned>(d));
Nico Weberff4b35e2014-12-27 22:14:15 +0000846 unsigned FullInstanceBits = endian::readNext<uint16_t, little, unaligned>(d);
847 unsigned FullFactoryBits = endian::readNext<uint16_t, little, unaligned>(d);
848 Result.InstanceBits = FullInstanceBits & 0x3;
849 Result.InstanceHasMoreThanOneDecl = (FullInstanceBits >> 2) & 0x1;
850 Result.FactoryBits = FullFactoryBits & 0x3;
851 Result.FactoryHasMoreThanOneDecl = (FullFactoryBits >> 2) & 0x1;
852 unsigned NumInstanceMethods = FullInstanceBits >> 3;
853 unsigned NumFactoryMethods = FullFactoryBits >> 3;
Guy Benyei11169dd2012-12-18 14:30:41 +0000854
855 // Load instance methods
856 for (unsigned I = 0; I != NumInstanceMethods; ++I) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000857 if (ObjCMethodDecl *Method = Reader.GetLocalDeclAs<ObjCMethodDecl>(
858 F, endian::readNext<uint32_t, little, unaligned>(d)))
Guy Benyei11169dd2012-12-18 14:30:41 +0000859 Result.Instance.push_back(Method);
860 }
861
862 // Load factory methods
863 for (unsigned I = 0; I != NumFactoryMethods; ++I) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000864 if (ObjCMethodDecl *Method = Reader.GetLocalDeclAs<ObjCMethodDecl>(
865 F, endian::readNext<uint32_t, little, unaligned>(d)))
Guy Benyei11169dd2012-12-18 14:30:41 +0000866 Result.Factory.push_back(Method);
867 }
868
869 return Result;
870}
871
Douglas Gregorbfd73d72013-01-23 18:53:14 +0000872unsigned ASTIdentifierLookupTraitBase::ComputeHash(const internal_key_type& a) {
873 return llvm::HashString(a);
Guy Benyei11169dd2012-12-18 14:30:41 +0000874}
875
876std::pair<unsigned, unsigned>
Douglas Gregorbfd73d72013-01-23 18:53:14 +0000877ASTIdentifierLookupTraitBase::ReadKeyDataLength(const unsigned char*& d) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000878 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000879
Justin Bogner57ba0b22014-03-28 22:03:24 +0000880 unsigned DataLen = endian::readNext<uint16_t, little, unaligned>(d);
881 unsigned KeyLen = endian::readNext<uint16_t, little, unaligned>(d);
Guy Benyei11169dd2012-12-18 14:30:41 +0000882 return std::make_pair(KeyLen, DataLen);
883}
884
Douglas Gregorbfd73d72013-01-23 18:53:14 +0000885ASTIdentifierLookupTraitBase::internal_key_type
886ASTIdentifierLookupTraitBase::ReadKey(const unsigned char* d, unsigned n) {
Guy Benyei11169dd2012-12-18 14:30:41 +0000887 assert(n >= 2 && d[n-1] == '\0');
Douglas Gregorbfd73d72013-01-23 18:53:14 +0000888 return StringRef((const char*) d, n-1);
Guy Benyei11169dd2012-12-18 14:30:41 +0000889}
890
Douglas Gregordcf25082013-02-11 18:16:18 +0000891/// \brief Whether the given identifier is "interesting".
Richard Smitha534a312015-07-21 23:54:07 +0000892static bool isInterestingIdentifier(ASTReader &Reader, IdentifierInfo &II,
893 bool IsModule) {
Richard Smithcab89802015-07-17 20:19:56 +0000894 return II.hadMacroDefinition() ||
895 II.isPoisoned() ||
Richard Smith9c254182015-07-19 21:41:12 +0000896 (IsModule ? II.hasRevertedBuiltin() : II.getObjCOrBuiltinID()) ||
Douglas Gregordcf25082013-02-11 18:16:18 +0000897 II.hasRevertedTokenIDToIdentifier() ||
Richard Smithdbafb6c2017-06-29 23:23:46 +0000898 (!(IsModule && Reader.getPreprocessor().getLangOpts().CPlusPlus) &&
Richard Smitha534a312015-07-21 23:54:07 +0000899 II.getFETokenInfo<void>());
Douglas Gregordcf25082013-02-11 18:16:18 +0000900}
901
Richard Smith76c2f2c2015-07-17 20:09:43 +0000902static bool readBit(unsigned &Bits) {
903 bool Value = Bits & 0x1;
904 Bits >>= 1;
905 return Value;
906}
907
Richard Smith79bf9202015-08-24 03:33:22 +0000908IdentID ASTIdentifierLookupTrait::ReadIdentifierID(const unsigned char *d) {
909 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000910
Richard Smith79bf9202015-08-24 03:33:22 +0000911 unsigned RawID = endian::readNext<uint32_t, little, unaligned>(d);
912 return Reader.getGlobalIdentifierID(F, RawID >> 1);
913}
914
Richard Smitheb4b58f62016-02-05 01:40:54 +0000915static void markIdentifierFromAST(ASTReader &Reader, IdentifierInfo &II) {
916 if (!II.isFromAST()) {
917 II.setIsFromAST();
918 bool IsModule = Reader.getPreprocessor().getCurrentModule() != nullptr;
919 if (isInterestingIdentifier(Reader, II, IsModule))
920 II.setChangedSinceDeserialization();
921 }
922}
923
Guy Benyei11169dd2012-12-18 14:30:41 +0000924IdentifierInfo *ASTIdentifierLookupTrait::ReadData(const internal_key_type& k,
925 const unsigned char* d,
926 unsigned DataLen) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000927 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +0000928
Justin Bogner57ba0b22014-03-28 22:03:24 +0000929 unsigned RawID = endian::readNext<uint32_t, little, unaligned>(d);
Guy Benyei11169dd2012-12-18 14:30:41 +0000930 bool IsInteresting = RawID & 0x01;
931
932 // Wipe out the "is interesting" bit.
933 RawID = RawID >> 1;
934
Richard Smith76c2f2c2015-07-17 20:09:43 +0000935 // Build the IdentifierInfo and link the identifier ID with it.
936 IdentifierInfo *II = KnownII;
937 if (!II) {
938 II = &Reader.getIdentifierTable().getOwn(k);
939 KnownII = II;
940 }
Richard Smitheb4b58f62016-02-05 01:40:54 +0000941 markIdentifierFromAST(Reader, *II);
Richard Smith76c2f2c2015-07-17 20:09:43 +0000942 Reader.markIdentifierUpToDate(II);
943
Guy Benyei11169dd2012-12-18 14:30:41 +0000944 IdentID ID = Reader.getGlobalIdentifierID(F, RawID);
945 if (!IsInteresting) {
Richard Smith76c2f2c2015-07-17 20:09:43 +0000946 // For uninteresting identifiers, there's nothing else to do. Just notify
947 // the reader that we've finished loading this identifier.
Guy Benyei11169dd2012-12-18 14:30:41 +0000948 Reader.SetIdentifierInfo(ID, II);
Guy Benyei11169dd2012-12-18 14:30:41 +0000949 return II;
950 }
951
Justin Bogner57ba0b22014-03-28 22:03:24 +0000952 unsigned ObjCOrBuiltinID = endian::readNext<uint16_t, little, unaligned>(d);
953 unsigned Bits = endian::readNext<uint16_t, little, unaligned>(d);
Richard Smith76c2f2c2015-07-17 20:09:43 +0000954 bool CPlusPlusOperatorKeyword = readBit(Bits);
955 bool HasRevertedTokenIDToIdentifier = readBit(Bits);
Richard Smith9c254182015-07-19 21:41:12 +0000956 bool HasRevertedBuiltin = readBit(Bits);
Richard Smith76c2f2c2015-07-17 20:09:43 +0000957 bool Poisoned = readBit(Bits);
958 bool ExtensionToken = readBit(Bits);
959 bool HadMacroDefinition = readBit(Bits);
Guy Benyei11169dd2012-12-18 14:30:41 +0000960
961 assert(Bits == 0 && "Extra bits in the identifier?");
962 DataLen -= 8;
963
Guy Benyei11169dd2012-12-18 14:30:41 +0000964 // Set or check the various bits in the IdentifierInfo structure.
965 // Token IDs are read-only.
Argyrios Kyrtzidisddee8c92013-02-27 01:13:51 +0000966 if (HasRevertedTokenIDToIdentifier && II->getTokenID() != tok::identifier)
Richard Smith9c254182015-07-19 21:41:12 +0000967 II->revertTokenIDToIdentifier();
968 if (!F.isModule())
969 II->setObjCOrBuiltinID(ObjCOrBuiltinID);
970 else if (HasRevertedBuiltin && II->getBuiltinID()) {
971 II->revertBuiltin();
972 assert((II->hasRevertedBuiltin() ||
973 II->getObjCOrBuiltinID() == ObjCOrBuiltinID) &&
974 "Incorrect ObjC keyword or builtin ID");
975 }
Guy Benyei11169dd2012-12-18 14:30:41 +0000976 assert(II->isExtensionToken() == ExtensionToken &&
977 "Incorrect extension token flag");
978 (void)ExtensionToken;
979 if (Poisoned)
980 II->setIsPoisoned(true);
981 assert(II->isCPlusPlusOperatorKeyword() == CPlusPlusOperatorKeyword &&
982 "Incorrect C++ operator keyword flag");
983 (void)CPlusPlusOperatorKeyword;
984
985 // If this identifier is a macro, deserialize the macro
986 // definition.
Richard Smith76c2f2c2015-07-17 20:09:43 +0000987 if (HadMacroDefinition) {
Justin Bogner57ba0b22014-03-28 22:03:24 +0000988 uint32_t MacroDirectivesOffset =
989 endian::readNext<uint32_t, little, unaligned>(d);
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +0000990 DataLen -= 4;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +0000991
Richard Smithd7329392015-04-21 21:46:32 +0000992 Reader.addPendingMacro(II, &F, MacroDirectivesOffset);
Guy Benyei11169dd2012-12-18 14:30:41 +0000993 }
994
995 Reader.SetIdentifierInfo(ID, II);
996
997 // Read all of the declarations visible at global scope with this
998 // name.
999 if (DataLen > 0) {
1000 SmallVector<uint32_t, 4> DeclIDs;
1001 for (; DataLen > 0; DataLen -= 4)
Justin Bogner57ba0b22014-03-28 22:03:24 +00001002 DeclIDs.push_back(Reader.getGlobalDeclID(
1003 F, endian::readNext<uint32_t, little, unaligned>(d)));
Guy Benyei11169dd2012-12-18 14:30:41 +00001004 Reader.SetGloballyVisibleDecls(II, DeclIDs);
1005 }
1006
1007 return II;
1008}
1009
Richard Smitha06c7e62015-08-26 23:55:49 +00001010DeclarationNameKey::DeclarationNameKey(DeclarationName Name)
1011 : Kind(Name.getNameKind()) {
1012 switch (Kind) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001013 case DeclarationName::Identifier:
Richard Smitha06c7e62015-08-26 23:55:49 +00001014 Data = (uint64_t)Name.getAsIdentifierInfo();
Guy Benyei11169dd2012-12-18 14:30:41 +00001015 break;
1016 case DeclarationName::ObjCZeroArgSelector:
1017 case DeclarationName::ObjCOneArgSelector:
1018 case DeclarationName::ObjCMultiArgSelector:
Richard Smitha06c7e62015-08-26 23:55:49 +00001019 Data = (uint64_t)Name.getObjCSelector().getAsOpaquePtr();
Guy Benyei11169dd2012-12-18 14:30:41 +00001020 break;
1021 case DeclarationName::CXXOperatorName:
Richard Smitha06c7e62015-08-26 23:55:49 +00001022 Data = Name.getCXXOverloadedOperator();
1023 break;
1024 case DeclarationName::CXXLiteralOperatorName:
1025 Data = (uint64_t)Name.getCXXLiteralIdentifier();
1026 break;
Richard Smith35845152017-02-07 01:37:30 +00001027 case DeclarationName::CXXDeductionGuideName:
1028 Data = (uint64_t)Name.getCXXDeductionGuideTemplate()
1029 ->getDeclName().getAsIdentifierInfo();
1030 break;
Richard Smitha06c7e62015-08-26 23:55:49 +00001031 case DeclarationName::CXXConstructorName:
1032 case DeclarationName::CXXDestructorName:
1033 case DeclarationName::CXXConversionFunctionName:
1034 case DeclarationName::CXXUsingDirective:
1035 Data = 0;
1036 break;
1037 }
1038}
1039
1040unsigned DeclarationNameKey::getHash() const {
1041 llvm::FoldingSetNodeID ID;
1042 ID.AddInteger(Kind);
1043
1044 switch (Kind) {
1045 case DeclarationName::Identifier:
1046 case DeclarationName::CXXLiteralOperatorName:
Richard Smith35845152017-02-07 01:37:30 +00001047 case DeclarationName::CXXDeductionGuideName:
Richard Smitha06c7e62015-08-26 23:55:49 +00001048 ID.AddString(((IdentifierInfo*)Data)->getName());
1049 break;
1050 case DeclarationName::ObjCZeroArgSelector:
1051 case DeclarationName::ObjCOneArgSelector:
1052 case DeclarationName::ObjCMultiArgSelector:
1053 ID.AddInteger(serialization::ComputeHash(Selector(Data)));
1054 break;
1055 case DeclarationName::CXXOperatorName:
1056 ID.AddInteger((OverloadedOperatorKind)Data);
Guy Benyei11169dd2012-12-18 14:30:41 +00001057 break;
1058 case DeclarationName::CXXConstructorName:
1059 case DeclarationName::CXXDestructorName:
1060 case DeclarationName::CXXConversionFunctionName:
1061 case DeclarationName::CXXUsingDirective:
1062 break;
1063 }
1064
1065 return ID.ComputeHash();
1066}
1067
Richard Smithd88a7f12015-09-01 20:35:42 +00001068ModuleFile *
1069ASTDeclContextNameLookupTrait::ReadFileRef(const unsigned char *&d) {
1070 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001071
Richard Smithd88a7f12015-09-01 20:35:42 +00001072 uint32_t ModuleFileID = endian::readNext<uint32_t, little, unaligned>(d);
1073 return Reader.getLocalModuleFile(F, ModuleFileID);
1074}
1075
Guy Benyei11169dd2012-12-18 14:30:41 +00001076std::pair<unsigned, unsigned>
Richard Smitha06c7e62015-08-26 23:55:49 +00001077ASTDeclContextNameLookupTrait::ReadKeyDataLength(const unsigned char *&d) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001078 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001079
Justin Bogner57ba0b22014-03-28 22:03:24 +00001080 unsigned KeyLen = endian::readNext<uint16_t, little, unaligned>(d);
1081 unsigned DataLen = endian::readNext<uint16_t, little, unaligned>(d);
Guy Benyei11169dd2012-12-18 14:30:41 +00001082 return std::make_pair(KeyLen, DataLen);
1083}
1084
Richard Smitha06c7e62015-08-26 23:55:49 +00001085ASTDeclContextNameLookupTrait::internal_key_type
1086ASTDeclContextNameLookupTrait::ReadKey(const unsigned char *d, unsigned) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001087 using namespace llvm::support;
Guy Benyei11169dd2012-12-18 14:30:41 +00001088
Richard Smitha06c7e62015-08-26 23:55:49 +00001089 auto Kind = (DeclarationName::NameKind)*d++;
1090 uint64_t Data;
1091 switch (Kind) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001092 case DeclarationName::Identifier:
Richard Smith35845152017-02-07 01:37:30 +00001093 case DeclarationName::CXXLiteralOperatorName:
1094 case DeclarationName::CXXDeductionGuideName:
Richard Smitha06c7e62015-08-26 23:55:49 +00001095 Data = (uint64_t)Reader.getLocalIdentifier(
Justin Bogner57ba0b22014-03-28 22:03:24 +00001096 F, endian::readNext<uint32_t, little, unaligned>(d));
Guy Benyei11169dd2012-12-18 14:30:41 +00001097 break;
1098 case DeclarationName::ObjCZeroArgSelector:
1099 case DeclarationName::ObjCOneArgSelector:
1100 case DeclarationName::ObjCMultiArgSelector:
Richard Smitha06c7e62015-08-26 23:55:49 +00001101 Data =
Justin Bogner57ba0b22014-03-28 22:03:24 +00001102 (uint64_t)Reader.getLocalSelector(
1103 F, endian::readNext<uint32_t, little, unaligned>(
1104 d)).getAsOpaquePtr();
Guy Benyei11169dd2012-12-18 14:30:41 +00001105 break;
1106 case DeclarationName::CXXOperatorName:
Richard Smitha06c7e62015-08-26 23:55:49 +00001107 Data = *d++; // OverloadedOperatorKind
Guy Benyei11169dd2012-12-18 14:30:41 +00001108 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001109 case DeclarationName::CXXConstructorName:
1110 case DeclarationName::CXXDestructorName:
1111 case DeclarationName::CXXConversionFunctionName:
1112 case DeclarationName::CXXUsingDirective:
Richard Smitha06c7e62015-08-26 23:55:49 +00001113 Data = 0;
Guy Benyei11169dd2012-12-18 14:30:41 +00001114 break;
1115 }
1116
Richard Smitha06c7e62015-08-26 23:55:49 +00001117 return DeclarationNameKey(Kind, Data);
Guy Benyei11169dd2012-12-18 14:30:41 +00001118}
1119
Richard Smithd88a7f12015-09-01 20:35:42 +00001120void ASTDeclContextNameLookupTrait::ReadDataInto(internal_key_type,
1121 const unsigned char *d,
1122 unsigned DataLen,
1123 data_type_builder &Val) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001124 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001125
Richard Smithd88a7f12015-09-01 20:35:42 +00001126 for (unsigned NumDecls = DataLen / 4; NumDecls; --NumDecls) {
1127 uint32_t LocalID = endian::readNext<uint32_t, little, unaligned>(d);
1128 Val.insert(Reader.getGlobalDeclID(F, LocalID));
1129 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001130}
1131
Richard Smith0f4e2c42015-08-06 04:23:48 +00001132bool ASTReader::ReadLexicalDeclContextStorage(ModuleFile &M,
1133 BitstreamCursor &Cursor,
1134 uint64_t Offset,
1135 DeclContext *DC) {
1136 assert(Offset != 0);
1137
Guy Benyei11169dd2012-12-18 14:30:41 +00001138 SavedStreamPosition SavedPosition(Cursor);
Richard Smith0f4e2c42015-08-06 04:23:48 +00001139 Cursor.JumpToBit(Offset);
Guy Benyei11169dd2012-12-18 14:30:41 +00001140
Richard Smith0f4e2c42015-08-06 04:23:48 +00001141 RecordData Record;
1142 StringRef Blob;
1143 unsigned Code = Cursor.ReadCode();
1144 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
1145 if (RecCode != DECL_CONTEXT_LEXICAL) {
1146 Error("Expected lexical block");
1147 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +00001148 }
1149
Richard Smith82f8fcd2015-08-06 22:07:25 +00001150 assert(!isa<TranslationUnitDecl>(DC) &&
1151 "expected a TU_UPDATE_LEXICAL record for TU");
Richard Smith9c9173d2015-08-11 22:00:24 +00001152 // If we are handling a C++ class template instantiation, we can see multiple
1153 // lexical updates for the same record. It's important that we select only one
1154 // of them, so that field numbering works properly. Just pick the first one we
1155 // see.
1156 auto &Lex = LexicalDecls[DC];
1157 if (!Lex.first) {
1158 Lex = std::make_pair(
1159 &M, llvm::makeArrayRef(
1160 reinterpret_cast<const llvm::support::unaligned_uint32_t *>(
1161 Blob.data()),
1162 Blob.size() / 4));
1163 }
Richard Smith0f4e2c42015-08-06 04:23:48 +00001164 DC->setHasExternalLexicalStorage(true);
1165 return false;
1166}
Guy Benyei11169dd2012-12-18 14:30:41 +00001167
Richard Smith0f4e2c42015-08-06 04:23:48 +00001168bool ASTReader::ReadVisibleDeclContextStorage(ModuleFile &M,
1169 BitstreamCursor &Cursor,
1170 uint64_t Offset,
1171 DeclID ID) {
1172 assert(Offset != 0);
1173
1174 SavedStreamPosition SavedPosition(Cursor);
1175 Cursor.JumpToBit(Offset);
1176
1177 RecordData Record;
1178 StringRef Blob;
1179 unsigned Code = Cursor.ReadCode();
1180 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
1181 if (RecCode != DECL_CONTEXT_VISIBLE) {
1182 Error("Expected visible lookup table block");
1183 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +00001184 }
1185
Richard Smith0f4e2c42015-08-06 04:23:48 +00001186 // We can't safely determine the primary context yet, so delay attaching the
1187 // lookup table until we're done with recursive deserialization.
Richard Smithd88a7f12015-09-01 20:35:42 +00001188 auto *Data = (const unsigned char*)Blob.data();
1189 PendingVisibleUpdates[ID].push_back(PendingVisibleUpdate{&M, Data});
Guy Benyei11169dd2012-12-18 14:30:41 +00001190 return false;
1191}
1192
Richard Smith37a93df2017-02-18 00:32:02 +00001193void ASTReader::Error(StringRef Msg) const {
Guy Benyei11169dd2012-12-18 14:30:41 +00001194 Error(diag::err_fe_pch_malformed, Msg);
Richard Smithdbafb6c2017-06-29 23:23:46 +00001195 if (PP.getLangOpts().Modules && !Diags.isDiagnosticInFlight() &&
Richard Smithfb1e7f72015-08-14 05:02:58 +00001196 !PP.getHeaderSearchInfo().getModuleCachePath().empty()) {
Douglas Gregor940e8052013-05-10 22:15:13 +00001197 Diag(diag::note_module_cache_path)
1198 << PP.getHeaderSearchInfo().getModuleCachePath();
1199 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001200}
1201
1202void ASTReader::Error(unsigned DiagID,
Richard Smith37a93df2017-02-18 00:32:02 +00001203 StringRef Arg1, StringRef Arg2) const {
Guy Benyei11169dd2012-12-18 14:30:41 +00001204 if (Diags.isDiagnosticInFlight())
1205 Diags.SetDelayedDiagnostic(DiagID, Arg1, Arg2);
1206 else
1207 Diag(DiagID) << Arg1 << Arg2;
1208}
1209
1210//===----------------------------------------------------------------------===//
1211// Source Manager Deserialization
1212//===----------------------------------------------------------------------===//
1213
1214/// \brief Read the line table in the source manager block.
1215/// \returns true if there was an error.
1216bool ASTReader::ParseLineTable(ModuleFile &F,
Richard Smith7ed1bc92014-12-05 22:42:13 +00001217 const RecordData &Record) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001218 unsigned Idx = 0;
1219 LineTableInfo &LineTable = SourceMgr.getLineTable();
1220
1221 // Parse the file names
1222 std::map<int, int> FileIDs;
Hans Wennborg14487362017-12-04 22:28:45 +00001223 FileIDs[-1] = -1; // For unspecified filenames.
Richard Smith63078492015-09-01 07:41:55 +00001224 for (unsigned I = 0; Record[Idx]; ++I) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001225 // Extract the file name
Richard Smith7ed1bc92014-12-05 22:42:13 +00001226 auto Filename = ReadPath(F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00001227 FileIDs[I] = LineTable.getLineTableFilenameID(Filename);
1228 }
Richard Smith63078492015-09-01 07:41:55 +00001229 ++Idx;
Guy Benyei11169dd2012-12-18 14:30:41 +00001230
1231 // Parse the line entries
1232 std::vector<LineEntry> Entries;
1233 while (Idx < Record.size()) {
1234 int FID = Record[Idx++];
1235 assert(FID >= 0 && "Serialized line entries for non-local file.");
1236 // Remap FileID from 1-based old view.
1237 FID += F.SLocEntryBaseID - 1;
1238
1239 // Extract the line entries
1240 unsigned NumEntries = Record[Idx++];
Richard Smith63078492015-09-01 07:41:55 +00001241 assert(NumEntries && "no line entries for file ID");
Guy Benyei11169dd2012-12-18 14:30:41 +00001242 Entries.clear();
1243 Entries.reserve(NumEntries);
1244 for (unsigned I = 0; I != NumEntries; ++I) {
1245 unsigned FileOffset = Record[Idx++];
1246 unsigned LineNo = Record[Idx++];
1247 int FilenameID = FileIDs[Record[Idx++]];
1248 SrcMgr::CharacteristicKind FileKind
1249 = (SrcMgr::CharacteristicKind)Record[Idx++];
1250 unsigned IncludeOffset = Record[Idx++];
1251 Entries.push_back(LineEntry::get(FileOffset, LineNo, FilenameID,
1252 FileKind, IncludeOffset));
1253 }
1254 LineTable.AddEntry(FileID::get(FID), Entries);
1255 }
1256
1257 return false;
1258}
1259
1260/// \brief Read a source manager block
1261bool ASTReader::ReadSourceManagerBlock(ModuleFile &F) {
1262 using namespace SrcMgr;
1263
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001264 BitstreamCursor &SLocEntryCursor = F.SLocEntryCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00001265
1266 // Set the source-location entry cursor to the current position in
1267 // the stream. This cursor will be used to read the contents of the
1268 // source manager block initially, and then lazily read
1269 // source-location entries as needed.
1270 SLocEntryCursor = F.Stream;
1271
1272 // The stream itself is going to skip over the source manager block.
1273 if (F.Stream.SkipBlock()) {
1274 Error("malformed block record in AST file");
1275 return true;
1276 }
1277
1278 // Enter the source manager block.
1279 if (SLocEntryCursor.EnterSubBlock(SOURCE_MANAGER_BLOCK_ID)) {
1280 Error("malformed source manager block record in AST file");
1281 return true;
1282 }
1283
1284 RecordData Record;
1285 while (true) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00001286 llvm::BitstreamEntry E = SLocEntryCursor.advanceSkippingSubblocks();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001287
Chris Lattnere7b154b2013-01-19 21:39:22 +00001288 switch (E.Kind) {
1289 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
1290 case llvm::BitstreamEntry::Error:
1291 Error("malformed block record in AST file");
1292 return true;
1293 case llvm::BitstreamEntry::EndBlock:
Guy Benyei11169dd2012-12-18 14:30:41 +00001294 return false;
Chris Lattnere7b154b2013-01-19 21:39:22 +00001295 case llvm::BitstreamEntry::Record:
1296 // The interesting case.
1297 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001298 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001299
Guy Benyei11169dd2012-12-18 14:30:41 +00001300 // Read a record.
Guy Benyei11169dd2012-12-18 14:30:41 +00001301 Record.clear();
Chris Lattner15c3e7d2013-01-21 18:28:26 +00001302 StringRef Blob;
1303 switch (SLocEntryCursor.readRecord(E.ID, Record, &Blob)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001304 default: // Default behavior: ignore.
1305 break;
1306
1307 case SM_SLOC_FILE_ENTRY:
1308 case SM_SLOC_BUFFER_ENTRY:
1309 case SM_SLOC_EXPANSION_ENTRY:
1310 // Once we hit one of the source location entries, we're done.
1311 return false;
1312 }
1313 }
1314}
1315
1316/// \brief If a header file is not found at the path that we expect it to be
1317/// and the PCH file was moved from its original location, try to resolve the
1318/// file by assuming that header+PCH were moved together and the header is in
1319/// the same place relative to the PCH.
1320static std::string
1321resolveFileRelativeToOriginalDir(const std::string &Filename,
1322 const std::string &OriginalDir,
1323 const std::string &CurrDir) {
1324 assert(OriginalDir != CurrDir &&
1325 "No point trying to resolve the file if the PCH dir didn't change");
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001326
Guy Benyei11169dd2012-12-18 14:30:41 +00001327 using namespace llvm::sys;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001328
Guy Benyei11169dd2012-12-18 14:30:41 +00001329 SmallString<128> filePath(Filename);
1330 fs::make_absolute(filePath);
1331 assert(path::is_absolute(OriginalDir));
1332 SmallString<128> currPCHPath(CurrDir);
1333
1334 path::const_iterator fileDirI = path::begin(path::parent_path(filePath)),
1335 fileDirE = path::end(path::parent_path(filePath));
1336 path::const_iterator origDirI = path::begin(OriginalDir),
1337 origDirE = path::end(OriginalDir);
1338 // Skip the common path components from filePath and OriginalDir.
1339 while (fileDirI != fileDirE && origDirI != origDirE &&
1340 *fileDirI == *origDirI) {
1341 ++fileDirI;
1342 ++origDirI;
1343 }
1344 for (; origDirI != origDirE; ++origDirI)
1345 path::append(currPCHPath, "..");
1346 path::append(currPCHPath, fileDirI, fileDirE);
1347 path::append(currPCHPath, path::filename(Filename));
1348 return currPCHPath.str();
1349}
1350
1351bool ASTReader::ReadSLocEntry(int ID) {
1352 if (ID == 0)
1353 return false;
1354
1355 if (unsigned(-ID) - 2 >= getTotalNumSLocs() || ID > 0) {
1356 Error("source location entry ID out-of-range for AST file");
1357 return true;
1358 }
1359
Richard Smithaada85c2016-02-06 02:06:43 +00001360 // Local helper to read the (possibly-compressed) buffer data following the
1361 // entry record.
1362 auto ReadBuffer = [this](
1363 BitstreamCursor &SLocEntryCursor,
1364 StringRef Name) -> std::unique_ptr<llvm::MemoryBuffer> {
1365 RecordData Record;
1366 StringRef Blob;
1367 unsigned Code = SLocEntryCursor.ReadCode();
1368 unsigned RecCode = SLocEntryCursor.readRecord(Code, Record, &Blob);
1369
1370 if (RecCode == SM_SLOC_BUFFER_BLOB_COMPRESSED) {
George Rimarc39f5492017-01-17 15:45:31 +00001371 if (!llvm::zlib::isAvailable()) {
1372 Error("zlib is not available");
1373 return nullptr;
1374 }
Richard Smithaada85c2016-02-06 02:06:43 +00001375 SmallString<0> Uncompressed;
George Rimarc39f5492017-01-17 15:45:31 +00001376 if (llvm::Error E =
1377 llvm::zlib::uncompress(Blob, Uncompressed, Record[0])) {
1378 Error("could not decompress embedded file contents: " +
1379 llvm::toString(std::move(E)));
Richard Smithaada85c2016-02-06 02:06:43 +00001380 return nullptr;
1381 }
1382 return llvm::MemoryBuffer::getMemBufferCopy(Uncompressed, Name);
1383 } else if (RecCode == SM_SLOC_BUFFER_BLOB) {
1384 return llvm::MemoryBuffer::getMemBuffer(Blob.drop_back(1), Name, true);
1385 } else {
1386 Error("AST record has invalid code");
1387 return nullptr;
1388 }
1389 };
1390
Guy Benyei11169dd2012-12-18 14:30:41 +00001391 ModuleFile *F = GlobalSLocEntryMap.find(-ID)->second;
1392 F->SLocEntryCursor.JumpToBit(F->SLocEntryOffsets[ID - F->SLocEntryBaseID]);
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001393 BitstreamCursor &SLocEntryCursor = F->SLocEntryCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00001394 unsigned BaseOffset = F->SLocEntryBaseOffset;
1395
1396 ++NumSLocEntriesRead;
Chris Lattnere7b154b2013-01-19 21:39:22 +00001397 llvm::BitstreamEntry Entry = SLocEntryCursor.advance();
1398 if (Entry.Kind != llvm::BitstreamEntry::Record) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001399 Error("incorrectly-formatted source location entry in AST file");
1400 return true;
1401 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001402
Guy Benyei11169dd2012-12-18 14:30:41 +00001403 RecordData Record;
Chris Lattner0e6c9402013-01-20 02:38:54 +00001404 StringRef Blob;
1405 switch (SLocEntryCursor.readRecord(Entry.ID, Record, &Blob)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001406 default:
1407 Error("incorrectly-formatted source location entry in AST file");
1408 return true;
1409
1410 case SM_SLOC_FILE_ENTRY: {
1411 // We will detect whether a file changed and return 'Failure' for it, but
1412 // we will also try to fail gracefully by setting up the SLocEntry.
1413 unsigned InputID = Record[4];
1414 InputFile IF = getInputFile(*F, InputID);
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00001415 const FileEntry *File = IF.getFile();
1416 bool OverriddenBuffer = IF.isOverridden();
Guy Benyei11169dd2012-12-18 14:30:41 +00001417
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00001418 // Note that we only check if a File was returned. If it was out-of-date
1419 // we have complained but we will continue creating a FileID to recover
1420 // gracefully.
1421 if (!File)
Guy Benyei11169dd2012-12-18 14:30:41 +00001422 return true;
1423
1424 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
1425 if (IncludeLoc.isInvalid() && F->Kind != MK_MainFile) {
1426 // This is the module's main file.
1427 IncludeLoc = getImportLocation(F);
1428 }
1429 SrcMgr::CharacteristicKind
1430 FileCharacter = (SrcMgr::CharacteristicKind)Record[2];
1431 FileID FID = SourceMgr.createFileID(File, IncludeLoc, FileCharacter,
1432 ID, BaseOffset + Record[0]);
1433 SrcMgr::FileInfo &FileInfo =
1434 const_cast<SrcMgr::FileInfo&>(SourceMgr.getSLocEntry(FID).getFile());
1435 FileInfo.NumCreatedFIDs = Record[5];
1436 if (Record[3])
1437 FileInfo.setHasLineDirectives();
1438
1439 const DeclID *FirstDecl = F->FileSortedDecls + Record[6];
1440 unsigned NumFileDecls = Record[7];
Richard Smithdbafb6c2017-06-29 23:23:46 +00001441 if (NumFileDecls && ContextObj) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001442 assert(F->FileSortedDecls && "FILE_SORTED_DECLS not encountered yet ?");
1443 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
1444 NumFileDecls));
1445 }
Richard Smithaada85c2016-02-06 02:06:43 +00001446
Guy Benyei11169dd2012-12-18 14:30:41 +00001447 const SrcMgr::ContentCache *ContentCache
Richard Smithf3f84612017-06-29 02:19:42 +00001448 = SourceMgr.getOrCreateContentCache(File, isSystem(FileCharacter));
Guy Benyei11169dd2012-12-18 14:30:41 +00001449 if (OverriddenBuffer && !ContentCache->BufferOverridden &&
Richard Smitha8cfffa2015-11-26 02:04:16 +00001450 ContentCache->ContentsEntry == ContentCache->OrigEntry &&
1451 !ContentCache->getRawBuffer()) {
Richard Smithaada85c2016-02-06 02:06:43 +00001452 auto Buffer = ReadBuffer(SLocEntryCursor, File->getName());
1453 if (!Buffer)
Guy Benyei11169dd2012-12-18 14:30:41 +00001454 return true;
David Blaikie49cc3182014-08-27 20:54:45 +00001455 SourceMgr.overrideFileContents(File, std::move(Buffer));
Guy Benyei11169dd2012-12-18 14:30:41 +00001456 }
1457
1458 break;
1459 }
1460
1461 case SM_SLOC_BUFFER_ENTRY: {
Chris Lattner0e6c9402013-01-20 02:38:54 +00001462 const char *Name = Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00001463 unsigned Offset = Record[0];
1464 SrcMgr::CharacteristicKind
1465 FileCharacter = (SrcMgr::CharacteristicKind)Record[2];
1466 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]);
Manman Ren11f2a472016-08-18 17:42:15 +00001467 if (IncludeLoc.isInvalid() && F->isModule()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001468 IncludeLoc = getImportLocation(F);
1469 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001470
Richard Smithaada85c2016-02-06 02:06:43 +00001471 auto Buffer = ReadBuffer(SLocEntryCursor, Name);
1472 if (!Buffer)
Guy Benyei11169dd2012-12-18 14:30:41 +00001473 return true;
David Blaikie50a5f972014-08-29 07:59:55 +00001474 SourceMgr.createFileID(std::move(Buffer), FileCharacter, ID,
Rafael Espindolad87f8d72014-08-27 20:03:29 +00001475 BaseOffset + Offset, IncludeLoc);
Guy Benyei11169dd2012-12-18 14:30:41 +00001476 break;
1477 }
1478
1479 case SM_SLOC_EXPANSION_ENTRY: {
1480 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
1481 SourceMgr.createExpansionLoc(SpellingLoc,
1482 ReadSourceLocation(*F, Record[2]),
1483 ReadSourceLocation(*F, Record[3]),
1484 Record[4],
1485 ID,
1486 BaseOffset + Record[0]);
1487 break;
1488 }
1489 }
1490
1491 return false;
1492}
1493
1494std::pair<SourceLocation, StringRef> ASTReader::getModuleImportLoc(int ID) {
1495 if (ID == 0)
1496 return std::make_pair(SourceLocation(), "");
1497
1498 if (unsigned(-ID) - 2 >= getTotalNumSLocs() || ID > 0) {
1499 Error("source location entry ID out-of-range for AST file");
1500 return std::make_pair(SourceLocation(), "");
1501 }
1502
1503 // Find which module file this entry lands in.
1504 ModuleFile *M = GlobalSLocEntryMap.find(-ID)->second;
Manman Ren11f2a472016-08-18 17:42:15 +00001505 if (!M->isModule())
Guy Benyei11169dd2012-12-18 14:30:41 +00001506 return std::make_pair(SourceLocation(), "");
1507
1508 // FIXME: Can we map this down to a particular submodule? That would be
1509 // ideal.
Ben Langmuirbeee15e2014-04-14 18:00:01 +00001510 return std::make_pair(M->ImportLoc, StringRef(M->ModuleName));
Guy Benyei11169dd2012-12-18 14:30:41 +00001511}
1512
1513/// \brief Find the location where the module F is imported.
1514SourceLocation ASTReader::getImportLocation(ModuleFile *F) {
1515 if (F->ImportLoc.isValid())
1516 return F->ImportLoc;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001517
Guy Benyei11169dd2012-12-18 14:30:41 +00001518 // Otherwise we have a PCH. It's considered to be "imported" at the first
1519 // location of its includer.
1520 if (F->ImportedBy.empty() || !F->ImportedBy[0]) {
Ben Langmuirbeee15e2014-04-14 18:00:01 +00001521 // Main file is the importer.
Yaron Keren8b563662015-10-03 10:46:20 +00001522 assert(SourceMgr.getMainFileID().isValid() && "missing main file");
Ben Langmuirbeee15e2014-04-14 18:00:01 +00001523 return SourceMgr.getLocForStartOfFile(SourceMgr.getMainFileID());
Guy Benyei11169dd2012-12-18 14:30:41 +00001524 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001525 return F->ImportedBy[0]->FirstLoc;
1526}
1527
1528/// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1529/// specified cursor. Read the abbreviations that are at the top of the block
1530/// and then leave the cursor pointing into the block.
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001531bool ASTReader::ReadBlockAbbrevs(BitstreamCursor &Cursor, unsigned BlockID) {
Richard Smith0516b182015-09-08 19:40:14 +00001532 if (Cursor.EnterSubBlock(BlockID))
1533 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +00001534
1535 while (true) {
1536 uint64_t Offset = Cursor.GetCurrentBitNo();
1537 unsigned Code = Cursor.ReadCode();
1538
1539 // We expect all abbrevs to be at the start of the block.
1540 if (Code != llvm::bitc::DEFINE_ABBREV) {
1541 Cursor.JumpToBit(Offset);
1542 return false;
1543 }
1544 Cursor.ReadAbbrevRecord();
1545 }
1546}
1547
Richard Smithe40f2ba2013-08-07 21:41:30 +00001548Token ASTReader::ReadToken(ModuleFile &F, const RecordDataImpl &Record,
John McCallf413f5e2013-05-03 00:10:13 +00001549 unsigned &Idx) {
1550 Token Tok;
1551 Tok.startToken();
1552 Tok.setLocation(ReadSourceLocation(F, Record, Idx));
1553 Tok.setLength(Record[Idx++]);
1554 if (IdentifierInfo *II = getLocalIdentifier(F, Record[Idx++]))
1555 Tok.setIdentifierInfo(II);
1556 Tok.setKind((tok::TokenKind)Record[Idx++]);
1557 Tok.setFlag((Token::TokenFlags)Record[Idx++]);
1558 return Tok;
1559}
1560
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001561MacroInfo *ASTReader::ReadMacroRecord(ModuleFile &F, uint64_t Offset) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001562 BitstreamCursor &Stream = F.MacroCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00001563
1564 // Keep track of where we are in the stream, then jump back there
1565 // after reading this macro.
1566 SavedStreamPosition SavedPosition(Stream);
1567
1568 Stream.JumpToBit(Offset);
1569 RecordData Record;
Faisal Valiac506d72017-07-17 17:18:43 +00001570 SmallVector<IdentifierInfo*, 16> MacroParams;
Craig Toppera13603a2014-05-22 05:54:18 +00001571 MacroInfo *Macro = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00001572
Guy Benyei11169dd2012-12-18 14:30:41 +00001573 while (true) {
Chris Lattnerefa77172013-01-20 00:00:22 +00001574 // Advance to the next record, but if we get to the end of the block, don't
1575 // pop it (removing all the abbreviations from the cursor) since we want to
1576 // be able to reseek within the block and read entries.
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001577 unsigned Flags = BitstreamCursor::AF_DontPopBlockAtEnd;
Chris Lattnerefa77172013-01-20 00:00:22 +00001578 llvm::BitstreamEntry Entry = Stream.advanceSkippingSubblocks(Flags);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001579
Chris Lattnerefa77172013-01-20 00:00:22 +00001580 switch (Entry.Kind) {
1581 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
1582 case llvm::BitstreamEntry::Error:
1583 Error("malformed block record in AST file");
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001584 return Macro;
Chris Lattnerefa77172013-01-20 00:00:22 +00001585 case llvm::BitstreamEntry::EndBlock:
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001586 return Macro;
Chris Lattnerefa77172013-01-20 00:00:22 +00001587 case llvm::BitstreamEntry::Record:
1588 // The interesting case.
1589 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001590 }
1591
1592 // Read a record.
Guy Benyei11169dd2012-12-18 14:30:41 +00001593 Record.clear();
1594 PreprocessorRecordTypes RecType =
Chris Lattner0e6c9402013-01-20 02:38:54 +00001595 (PreprocessorRecordTypes)Stream.readRecord(Entry.ID, Record);
Guy Benyei11169dd2012-12-18 14:30:41 +00001596 switch (RecType) {
Richard Smithd7329392015-04-21 21:46:32 +00001597 case PP_MODULE_MACRO:
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001598 case PP_MACRO_DIRECTIVE_HISTORY:
1599 return Macro;
1600
Guy Benyei11169dd2012-12-18 14:30:41 +00001601 case PP_MACRO_OBJECT_LIKE:
1602 case PP_MACRO_FUNCTION_LIKE: {
1603 // If we already have a macro, that means that we've hit the end
1604 // of the definition of the macro we were looking for. We're
1605 // done.
1606 if (Macro)
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001607 return Macro;
Guy Benyei11169dd2012-12-18 14:30:41 +00001608
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001609 unsigned NextIndex = 1; // Skip identifier ID.
Guy Benyei11169dd2012-12-18 14:30:41 +00001610 SourceLocation Loc = ReadSourceLocation(F, Record, NextIndex);
Richard Smith3f6dd7a2017-05-12 23:40:52 +00001611 MacroInfo *MI = PP.AllocateMacroInfo(Loc);
Argyrios Kyrtzidis7572be22013-01-07 19:16:23 +00001612 MI->setDefinitionEndLoc(ReadSourceLocation(F, Record, NextIndex));
Guy Benyei11169dd2012-12-18 14:30:41 +00001613 MI->setIsUsed(Record[NextIndex++]);
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00001614 MI->setUsedForHeaderGuard(Record[NextIndex++]);
Guy Benyei11169dd2012-12-18 14:30:41 +00001615
Guy Benyei11169dd2012-12-18 14:30:41 +00001616 if (RecType == PP_MACRO_FUNCTION_LIKE) {
1617 // Decode function-like macro info.
1618 bool isC99VarArgs = Record[NextIndex++];
1619 bool isGNUVarArgs = Record[NextIndex++];
1620 bool hasCommaPasting = Record[NextIndex++];
Faisal Valiac506d72017-07-17 17:18:43 +00001621 MacroParams.clear();
Guy Benyei11169dd2012-12-18 14:30:41 +00001622 unsigned NumArgs = Record[NextIndex++];
1623 for (unsigned i = 0; i != NumArgs; ++i)
Faisal Valiac506d72017-07-17 17:18:43 +00001624 MacroParams.push_back(getLocalIdentifier(F, Record[NextIndex++]));
Guy Benyei11169dd2012-12-18 14:30:41 +00001625
1626 // Install function-like macro info.
1627 MI->setIsFunctionLike();
1628 if (isC99VarArgs) MI->setIsC99Varargs();
1629 if (isGNUVarArgs) MI->setIsGNUVarargs();
1630 if (hasCommaPasting) MI->setHasCommaPasting();
Faisal Valiac506d72017-07-17 17:18:43 +00001631 MI->setParameterList(MacroParams, PP.getPreprocessorAllocator());
Guy Benyei11169dd2012-12-18 14:30:41 +00001632 }
1633
Guy Benyei11169dd2012-12-18 14:30:41 +00001634 // Remember that we saw this macro last so that we add the tokens that
1635 // form its body to it.
1636 Macro = MI;
1637
1638 if (NextIndex + 1 == Record.size() && PP.getPreprocessingRecord() &&
1639 Record[NextIndex]) {
1640 // We have a macro definition. Register the association
1641 PreprocessedEntityID
1642 GlobalID = getGlobalPreprocessedEntityID(F, Record[NextIndex]);
1643 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
Richard Smith66a81862015-05-04 02:25:31 +00001644 PreprocessingRecord::PPEntityID PPID =
1645 PPRec.getPPEntityID(GlobalID - 1, /*isLoaded=*/true);
1646 MacroDefinitionRecord *PPDef = cast_or_null<MacroDefinitionRecord>(
1647 PPRec.getPreprocessedEntity(PPID));
Argyrios Kyrtzidis832de9f2013-02-22 18:35:59 +00001648 if (PPDef)
1649 PPRec.RegisterMacroDefinition(Macro, PPDef);
Guy Benyei11169dd2012-12-18 14:30:41 +00001650 }
1651
1652 ++NumMacrosRead;
1653 break;
1654 }
1655
1656 case PP_TOKEN: {
1657 // If we see a TOKEN before a PP_MACRO_*, then the file is
1658 // erroneous, just pretend we didn't see this.
Craig Toppera13603a2014-05-22 05:54:18 +00001659 if (!Macro) break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001660
John McCallf413f5e2013-05-03 00:10:13 +00001661 unsigned Idx = 0;
1662 Token Tok = ReadToken(F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00001663 Macro->AddTokenToBody(Tok);
1664 break;
1665 }
1666 }
1667 }
1668}
1669
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001670PreprocessedEntityID
Richard Smith37a93df2017-02-18 00:32:02 +00001671ASTReader::getGlobalPreprocessedEntityID(ModuleFile &M,
1672 unsigned LocalID) const {
1673 if (!M.ModuleOffsetMap.empty())
1674 ReadModuleOffsetMap(M);
1675
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001676 ContinuousRangeMap<uint32_t, int, 2>::const_iterator
Guy Benyei11169dd2012-12-18 14:30:41 +00001677 I = M.PreprocessedEntityRemap.find(LocalID - NUM_PREDEF_PP_ENTITY_IDS);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001678 assert(I != M.PreprocessedEntityRemap.end()
Guy Benyei11169dd2012-12-18 14:30:41 +00001679 && "Invalid index into preprocessed entity index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001680
Guy Benyei11169dd2012-12-18 14:30:41 +00001681 return LocalID + I->second;
1682}
1683
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001684unsigned HeaderFileInfoTrait::ComputeHash(internal_key_ref ikey) {
1685 return llvm::hash_combine(ikey.Size, ikey.ModTime);
Guy Benyei11169dd2012-12-18 14:30:41 +00001686}
Richard Smith7ed1bc92014-12-05 22:42:13 +00001687
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001688HeaderFileInfoTrait::internal_key_type
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001689HeaderFileInfoTrait::GetInternalKey(const FileEntry *FE) {
Richard Smithe75ee0f2015-08-17 07:13:32 +00001690 internal_key_type ikey = {FE->getSize(),
1691 M.HasTimestamps ? FE->getModificationTime() : 0,
1692 FE->getName(), /*Imported*/ false};
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001693 return ikey;
1694}
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001695
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001696bool HeaderFileInfoTrait::EqualKey(internal_key_ref a, internal_key_ref b) {
Richard Smithe75ee0f2015-08-17 07:13:32 +00001697 if (a.Size != b.Size || (a.ModTime && b.ModTime && a.ModTime != b.ModTime))
Guy Benyei11169dd2012-12-18 14:30:41 +00001698 return false;
1699
Mehdi Amini004b9c72016-10-10 22:52:47 +00001700 if (llvm::sys::path::is_absolute(a.Filename) && a.Filename == b.Filename)
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001701 return true;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001702
Guy Benyei11169dd2012-12-18 14:30:41 +00001703 // Determine whether the actual files are equivalent.
Argyrios Kyrtzidis2a513e82013-03-04 20:33:40 +00001704 FileManager &FileMgr = Reader.getFileManager();
Richard Smith7ed1bc92014-12-05 22:42:13 +00001705 auto GetFile = [&](const internal_key_type &Key) -> const FileEntry* {
1706 if (!Key.Imported)
1707 return FileMgr.getFile(Key.Filename);
1708
1709 std::string Resolved = Key.Filename;
1710 Reader.ResolveImportedPath(M, Resolved);
1711 return FileMgr.getFile(Resolved);
1712 };
1713
1714 const FileEntry *FEA = GetFile(a);
1715 const FileEntry *FEB = GetFile(b);
1716 return FEA && FEA == FEB;
Guy Benyei11169dd2012-12-18 14:30:41 +00001717}
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001718
Guy Benyei11169dd2012-12-18 14:30:41 +00001719std::pair<unsigned, unsigned>
1720HeaderFileInfoTrait::ReadKeyDataLength(const unsigned char*& d) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001721 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001722
Justin Bogner57ba0b22014-03-28 22:03:24 +00001723 unsigned KeyLen = (unsigned) endian::readNext<uint16_t, little, unaligned>(d);
Guy Benyei11169dd2012-12-18 14:30:41 +00001724 unsigned DataLen = (unsigned) *d++;
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001725 return std::make_pair(KeyLen, DataLen);
Guy Benyei11169dd2012-12-18 14:30:41 +00001726}
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001727
1728HeaderFileInfoTrait::internal_key_type
1729HeaderFileInfoTrait::ReadKey(const unsigned char *d, unsigned) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001730 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001731
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001732 internal_key_type ikey;
Justin Bogner57ba0b22014-03-28 22:03:24 +00001733 ikey.Size = off_t(endian::readNext<uint64_t, little, unaligned>(d));
1734 ikey.ModTime = time_t(endian::readNext<uint64_t, little, unaligned>(d));
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001735 ikey.Filename = (const char *)d;
Richard Smith7ed1bc92014-12-05 22:42:13 +00001736 ikey.Imported = true;
Argyrios Kyrtzidis5c2a3452013-03-06 18:12:47 +00001737 return ikey;
1738}
1739
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001740HeaderFileInfoTrait::data_type
Argyrios Kyrtzidisb146baa2013-03-13 21:13:51 +00001741HeaderFileInfoTrait::ReadData(internal_key_ref key, const unsigned char *d,
Guy Benyei11169dd2012-12-18 14:30:41 +00001742 unsigned DataLen) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001743 using namespace llvm::support;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001744
1745 const unsigned char *End = d + DataLen;
Guy Benyei11169dd2012-12-18 14:30:41 +00001746 HeaderFileInfo HFI;
1747 unsigned Flags = *d++;
Richard Smith386bb072015-08-18 23:42:23 +00001748 // FIXME: Refactor with mergeHeaderFileInfo in HeaderSearch.cpp.
Richard Smithf3f84612017-06-29 02:19:42 +00001749 HFI.isImport |= (Flags >> 5) & 0x01;
1750 HFI.isPragmaOnce |= (Flags >> 4) & 0x01;
1751 HFI.DirInfo = (Flags >> 1) & 0x07;
Guy Benyei11169dd2012-12-18 14:30:41 +00001752 HFI.IndexHeaderMapHeader = Flags & 0x01;
Richard Smith386bb072015-08-18 23:42:23 +00001753 // FIXME: Find a better way to handle this. Maybe just store a
1754 // "has been included" flag?
1755 HFI.NumIncludes = std::max(endian::readNext<uint16_t, little, unaligned>(d),
1756 HFI.NumIncludes);
Justin Bogner57ba0b22014-03-28 22:03:24 +00001757 HFI.ControllingMacroID = Reader.getGlobalIdentifierID(
1758 M, endian::readNext<uint32_t, little, unaligned>(d));
1759 if (unsigned FrameworkOffset =
1760 endian::readNext<uint32_t, little, unaligned>(d)) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001761 // The framework offset is 1 greater than the actual offset,
Guy Benyei11169dd2012-12-18 14:30:41 +00001762 // since 0 is used as an indicator for "no framework name".
1763 StringRef FrameworkName(FrameworkStrings + FrameworkOffset - 1);
1764 HFI.Framework = HS->getUniqueFrameworkName(FrameworkName);
1765 }
Richard Smith386bb072015-08-18 23:42:23 +00001766
1767 assert((End - d) % 4 == 0 &&
1768 "Wrong data length in HeaderFileInfo deserialization");
1769 while (d != End) {
Justin Bogner57ba0b22014-03-28 22:03:24 +00001770 uint32_t LocalSMID = endian::readNext<uint32_t, little, unaligned>(d);
Richard Smith386bb072015-08-18 23:42:23 +00001771 auto HeaderRole = static_cast<ModuleMap::ModuleHeaderRole>(LocalSMID & 3);
1772 LocalSMID >>= 2;
1773
1774 // This header is part of a module. Associate it with the module to enable
1775 // implicit module import.
1776 SubmoduleID GlobalSMID = Reader.getGlobalSubmoduleID(M, LocalSMID);
1777 Module *Mod = Reader.getSubmodule(GlobalSMID);
1778 FileManager &FileMgr = Reader.getFileManager();
1779 ModuleMap &ModMap =
1780 Reader.getPreprocessor().getHeaderSearchInfo().getModuleMap();
1781
1782 std::string Filename = key.Filename;
1783 if (key.Imported)
1784 Reader.ResolveImportedPath(M, Filename);
1785 // FIXME: This is not always the right filename-as-written, but we're not
1786 // going to use this information to rebuild the module, so it doesn't make
1787 // a lot of difference.
1788 Module::Header H = { key.Filename, FileMgr.getFile(Filename) };
Richard Smithd8879c82015-08-24 21:59:32 +00001789 ModMap.addHeader(Mod, H, HeaderRole, /*Imported*/true);
1790 HFI.isModuleHeader |= !(HeaderRole & ModuleMap::TextualHeader);
Argyrios Kyrtzidisb146baa2013-03-13 21:13:51 +00001791 }
1792
Guy Benyei11169dd2012-12-18 14:30:41 +00001793 // This HeaderFileInfo was externally loaded.
1794 HFI.External = true;
Richard Smithd8879c82015-08-24 21:59:32 +00001795 HFI.IsValid = true;
Guy Benyei11169dd2012-12-18 14:30:41 +00001796 return HFI;
1797}
1798
Richard Smithd7329392015-04-21 21:46:32 +00001799void ASTReader::addPendingMacro(IdentifierInfo *II,
1800 ModuleFile *M,
1801 uint64_t MacroDirectivesOffset) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001802 assert(NumCurrentElementsDeserializing > 0 &&"Missing deserialization guard");
1803 PendingMacroIDs[II].push_back(PendingMacroInfo(M, MacroDirectivesOffset));
Guy Benyei11169dd2012-12-18 14:30:41 +00001804}
1805
1806void ASTReader::ReadDefinedMacros() {
1807 // Note that we are loading defined macros.
1808 Deserializing Macros(this);
1809
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00001810 for (ModuleFile &I : llvm::reverse(ModuleMgr)) {
1811 BitstreamCursor &MacroCursor = I.MacroCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00001812
1813 // If there was no preprocessor block, skip this file.
Peter Collingbourne77c89b62016-11-08 04:17:11 +00001814 if (MacroCursor.getBitcodeBytes().empty())
Guy Benyei11169dd2012-12-18 14:30:41 +00001815 continue;
1816
Chris Lattner7fb3bef2013-01-20 00:56:42 +00001817 BitstreamCursor Cursor = MacroCursor;
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00001818 Cursor.JumpToBit(I.MacroStartOffset);
Guy Benyei11169dd2012-12-18 14:30:41 +00001819
1820 RecordData Record;
1821 while (true) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00001822 llvm::BitstreamEntry E = Cursor.advanceSkippingSubblocks();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001823
Chris Lattnere7b154b2013-01-19 21:39:22 +00001824 switch (E.Kind) {
1825 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
1826 case llvm::BitstreamEntry::Error:
1827 Error("malformed block record in AST file");
1828 return;
1829 case llvm::BitstreamEntry::EndBlock:
1830 goto NextCursor;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001831
Chris Lattnere7b154b2013-01-19 21:39:22 +00001832 case llvm::BitstreamEntry::Record:
Chris Lattnere7b154b2013-01-19 21:39:22 +00001833 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00001834 switch (Cursor.readRecord(E.ID, Record)) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00001835 default: // Default behavior: ignore.
1836 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001837
Chris Lattnere7b154b2013-01-19 21:39:22 +00001838 case PP_MACRO_OBJECT_LIKE:
Sean Callananf3682a72016-05-14 06:24:14 +00001839 case PP_MACRO_FUNCTION_LIKE: {
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00001840 IdentifierInfo *II = getLocalIdentifier(I, Record[0]);
Sean Callananf3682a72016-05-14 06:24:14 +00001841 if (II->isOutOfDate())
1842 updateOutOfDateIdentifier(*II);
Chris Lattnere7b154b2013-01-19 21:39:22 +00001843 break;
Sean Callananf3682a72016-05-14 06:24:14 +00001844 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001845
Chris Lattnere7b154b2013-01-19 21:39:22 +00001846 case PP_TOKEN:
1847 // Ignore tokens.
1848 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00001849 }
Guy Benyei11169dd2012-12-18 14:30:41 +00001850 break;
1851 }
1852 }
Chris Lattnere7b154b2013-01-19 21:39:22 +00001853 NextCursor: ;
Guy Benyei11169dd2012-12-18 14:30:41 +00001854 }
1855}
1856
1857namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001858
Guy Benyei11169dd2012-12-18 14:30:41 +00001859 /// \brief Visitor class used to look up identifirs in an AST file.
1860 class IdentifierLookupVisitor {
1861 StringRef Name;
Richard Smith3b637412015-07-14 18:42:41 +00001862 unsigned NameHash;
Guy Benyei11169dd2012-12-18 14:30:41 +00001863 unsigned PriorGeneration;
Douglas Gregor00a50f72013-01-25 00:38:33 +00001864 unsigned &NumIdentifierLookups;
1865 unsigned &NumIdentifierLookupHits;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001866 IdentifierInfo *Found = nullptr;
Douglas Gregor00a50f72013-01-25 00:38:33 +00001867
Guy Benyei11169dd2012-12-18 14:30:41 +00001868 public:
Douglas Gregor00a50f72013-01-25 00:38:33 +00001869 IdentifierLookupVisitor(StringRef Name, unsigned PriorGeneration,
1870 unsigned &NumIdentifierLookups,
1871 unsigned &NumIdentifierLookupHits)
Richard Smith3b637412015-07-14 18:42:41 +00001872 : Name(Name), NameHash(ASTIdentifierLookupTrait::ComputeHash(Name)),
1873 PriorGeneration(PriorGeneration),
Douglas Gregor00a50f72013-01-25 00:38:33 +00001874 NumIdentifierLookups(NumIdentifierLookups),
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001875 NumIdentifierLookupHits(NumIdentifierLookupHits) {}
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00001876
1877 bool operator()(ModuleFile &M) {
Guy Benyei11169dd2012-12-18 14:30:41 +00001878 // If we've already searched this module file, skip it now.
Richard Smithbdf2d932015-07-30 03:37:16 +00001879 if (M.Generation <= PriorGeneration)
Guy Benyei11169dd2012-12-18 14:30:41 +00001880 return true;
Douglas Gregore060e572013-01-25 01:03:03 +00001881
Guy Benyei11169dd2012-12-18 14:30:41 +00001882 ASTIdentifierLookupTable *IdTable
1883 = (ASTIdentifierLookupTable *)M.IdentifierLookupTable;
1884 if (!IdTable)
1885 return false;
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00001886
1887 ASTIdentifierLookupTrait Trait(IdTable->getInfoObj().getReader(), M,
Richard Smithbdf2d932015-07-30 03:37:16 +00001888 Found);
1889 ++NumIdentifierLookups;
Richard Smith3b637412015-07-14 18:42:41 +00001890 ASTIdentifierLookupTable::iterator Pos =
Richard Smithbdf2d932015-07-30 03:37:16 +00001891 IdTable->find_hashed(Name, NameHash, &Trait);
Guy Benyei11169dd2012-12-18 14:30:41 +00001892 if (Pos == IdTable->end())
1893 return false;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001894
Guy Benyei11169dd2012-12-18 14:30:41 +00001895 // Dereferencing the iterator has the effect of building the
1896 // IdentifierInfo node and populating it with the various
1897 // declarations it needs.
Richard Smithbdf2d932015-07-30 03:37:16 +00001898 ++NumIdentifierLookupHits;
1899 Found = *Pos;
Guy Benyei11169dd2012-12-18 14:30:41 +00001900 return true;
1901 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001902
Guy Benyei11169dd2012-12-18 14:30:41 +00001903 // \brief Retrieve the identifier info found within the module
1904 // files.
1905 IdentifierInfo *getIdentifierInfo() const { return Found; }
1906 };
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00001907
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00001908} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00001909
1910void ASTReader::updateOutOfDateIdentifier(IdentifierInfo &II) {
1911 // Note that we are loading an identifier.
1912 Deserializing AnIdentifier(this);
1913
1914 unsigned PriorGeneration = 0;
1915 if (getContext().getLangOpts().Modules)
1916 PriorGeneration = IdentifierGeneration[&II];
Douglas Gregore060e572013-01-25 01:03:03 +00001917
1918 // If there is a global index, look there first to determine which modules
1919 // provably do not have any results for this identifier.
Douglas Gregor7211ac12013-01-25 23:32:03 +00001920 GlobalModuleIndex::HitSet Hits;
Craig Toppera13603a2014-05-22 05:54:18 +00001921 GlobalModuleIndex::HitSet *HitsPtr = nullptr;
Douglas Gregore060e572013-01-25 01:03:03 +00001922 if (!loadGlobalIndex()) {
Douglas Gregor7211ac12013-01-25 23:32:03 +00001923 if (GlobalIndex->lookupIdentifier(II.getName(), Hits)) {
1924 HitsPtr = &Hits;
Douglas Gregore060e572013-01-25 01:03:03 +00001925 }
1926 }
1927
Douglas Gregor7211ac12013-01-25 23:32:03 +00001928 IdentifierLookupVisitor Visitor(II.getName(), PriorGeneration,
Douglas Gregor00a50f72013-01-25 00:38:33 +00001929 NumIdentifierLookups,
1930 NumIdentifierLookupHits);
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00001931 ModuleMgr.visit(Visitor, HitsPtr);
Guy Benyei11169dd2012-12-18 14:30:41 +00001932 markIdentifierUpToDate(&II);
1933}
1934
1935void ASTReader::markIdentifierUpToDate(IdentifierInfo *II) {
1936 if (!II)
1937 return;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00001938
Guy Benyei11169dd2012-12-18 14:30:41 +00001939 II->setOutOfDate(false);
1940
1941 // Update the generation for this identifier.
1942 if (getContext().getLangOpts().Modules)
Richard Smith053f6c62014-05-16 23:01:30 +00001943 IdentifierGeneration[II] = getGeneration();
Guy Benyei11169dd2012-12-18 14:30:41 +00001944}
1945
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001946void ASTReader::resolvePendingMacro(IdentifierInfo *II,
1947 const PendingMacroInfo &PMInfo) {
Richard Smithd7329392015-04-21 21:46:32 +00001948 ModuleFile &M = *PMInfo.M;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001949
1950 BitstreamCursor &Cursor = M.MacroCursor;
1951 SavedStreamPosition SavedPosition(Cursor);
Richard Smithd7329392015-04-21 21:46:32 +00001952 Cursor.JumpToBit(PMInfo.MacroDirectivesOffset);
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001953
Richard Smith713369b2015-04-23 20:40:50 +00001954 struct ModuleMacroRecord {
1955 SubmoduleID SubModID;
1956 MacroInfo *MI;
1957 SmallVector<SubmoduleID, 8> Overrides;
1958 };
1959 llvm::SmallVector<ModuleMacroRecord, 8> ModuleMacros;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001960
Richard Smithd7329392015-04-21 21:46:32 +00001961 // We expect to see a sequence of PP_MODULE_MACRO records listing exported
1962 // macros, followed by a PP_MACRO_DIRECTIVE_HISTORY record with the complete
1963 // macro histroy.
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001964 RecordData Record;
Richard Smithd7329392015-04-21 21:46:32 +00001965 while (true) {
1966 llvm::BitstreamEntry Entry =
1967 Cursor.advance(BitstreamCursor::AF_DontPopBlockAtEnd);
1968 if (Entry.Kind != llvm::BitstreamEntry::Record) {
1969 Error("malformed block record in AST file");
1970 return;
1971 }
1972
1973 Record.clear();
Aaron Ballmanc75a1922015-04-22 15:25:05 +00001974 switch ((PreprocessorRecordTypes)Cursor.readRecord(Entry.ID, Record)) {
Richard Smithd7329392015-04-21 21:46:32 +00001975 case PP_MACRO_DIRECTIVE_HISTORY:
1976 break;
1977
1978 case PP_MODULE_MACRO: {
Richard Smith713369b2015-04-23 20:40:50 +00001979 ModuleMacros.push_back(ModuleMacroRecord());
1980 auto &Info = ModuleMacros.back();
Richard Smithe56c8bc2015-04-22 00:26:11 +00001981 Info.SubModID = getGlobalSubmoduleID(M, Record[0]);
1982 Info.MI = getMacro(getGlobalMacroID(M, Record[1]));
Richard Smith713369b2015-04-23 20:40:50 +00001983 for (int I = 2, N = Record.size(); I != N; ++I)
1984 Info.Overrides.push_back(getGlobalSubmoduleID(M, Record[I]));
Richard Smithd7329392015-04-21 21:46:32 +00001985 continue;
1986 }
1987
1988 default:
1989 Error("malformed block record in AST file");
1990 return;
1991 }
1992
1993 // We found the macro directive history; that's the last record
1994 // for this macro.
1995 break;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00001996 }
1997
Richard Smithd7329392015-04-21 21:46:32 +00001998 // Module macros are listed in reverse dependency order.
Richard Smithe56c8bc2015-04-22 00:26:11 +00001999 {
2000 std::reverse(ModuleMacros.begin(), ModuleMacros.end());
Richard Smithe56c8bc2015-04-22 00:26:11 +00002001 llvm::SmallVector<ModuleMacro*, 8> Overrides;
Richard Smith713369b2015-04-23 20:40:50 +00002002 for (auto &MMR : ModuleMacros) {
Richard Smithe56c8bc2015-04-22 00:26:11 +00002003 Overrides.clear();
Richard Smith713369b2015-04-23 20:40:50 +00002004 for (unsigned ModID : MMR.Overrides) {
Richard Smithb8b2ed62015-04-23 18:18:26 +00002005 Module *Mod = getSubmodule(ModID);
2006 auto *Macro = PP.getModuleMacro(Mod, II);
Richard Smithe56c8bc2015-04-22 00:26:11 +00002007 assert(Macro && "missing definition for overridden macro");
Richard Smith5dbef922015-04-22 02:09:43 +00002008 Overrides.push_back(Macro);
Richard Smithe56c8bc2015-04-22 00:26:11 +00002009 }
2010
2011 bool Inserted = false;
Richard Smith713369b2015-04-23 20:40:50 +00002012 Module *Owner = getSubmodule(MMR.SubModID);
Richard Smith20e883e2015-04-29 23:20:19 +00002013 PP.addModuleMacro(Owner, II, MMR.MI, Overrides, Inserted);
Richard Smithd7329392015-04-21 21:46:32 +00002014 }
2015 }
2016
2017 // Don't read the directive history for a module; we don't have anywhere
2018 // to put it.
Manman Ren11f2a472016-08-18 17:42:15 +00002019 if (M.isModule())
Richard Smithd7329392015-04-21 21:46:32 +00002020 return;
2021
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00002022 // Deserialize the macro directives history in reverse source-order.
Craig Toppera13603a2014-05-22 05:54:18 +00002023 MacroDirective *Latest = nullptr, *Earliest = nullptr;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00002024 unsigned Idx = 0, N = Record.size();
2025 while (Idx < N) {
Craig Toppera13603a2014-05-22 05:54:18 +00002026 MacroDirective *MD = nullptr;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00002027 SourceLocation Loc = ReadSourceLocation(M, Record, Idx);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002028 MacroDirective::Kind K = (MacroDirective::Kind)Record[Idx++];
2029 switch (K) {
2030 case MacroDirective::MD_Define: {
Richard Smith713369b2015-04-23 20:40:50 +00002031 MacroInfo *MI = getMacro(getGlobalMacroID(M, Record[Idx++]));
Richard Smith3981b172015-04-30 02:16:23 +00002032 MD = PP.AllocateDefMacroDirective(MI, Loc);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002033 break;
2034 }
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00002035 case MacroDirective::MD_Undefine:
Richard Smith3981b172015-04-30 02:16:23 +00002036 MD = PP.AllocateUndefMacroDirective(Loc);
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002037 break;
Richard Smithdaa69e02014-07-25 04:40:03 +00002038 case MacroDirective::MD_Visibility:
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002039 bool isPublic = Record[Idx++];
2040 MD = PP.AllocateVisibilityMacroDirective(Loc, isPublic);
2041 break;
2042 }
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00002043
2044 if (!Latest)
2045 Latest = MD;
2046 if (Earliest)
2047 Earliest->setPrevious(MD);
2048 Earliest = MD;
2049 }
2050
Richard Smithd6e8c0d2015-05-04 19:58:00 +00002051 if (Latest)
Nico Weberfd870702016-12-09 17:32:52 +00002052 PP.setLoadedMacroDirective(II, Earliest, Latest);
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00002053}
2054
Argyrios Kyrtzidisce9b49e2014-03-14 02:26:27 +00002055ASTReader::InputFileInfo
2056ASTReader::readInputFileInfo(ModuleFile &F, unsigned ID) {
Ben Langmuir198c1682014-03-07 07:27:49 +00002057 // Go find this input file.
2058 BitstreamCursor &Cursor = F.InputFilesCursor;
2059 SavedStreamPosition SavedPosition(Cursor);
2060 Cursor.JumpToBit(F.InputFileOffsets[ID-1]);
2061
2062 unsigned Code = Cursor.ReadCode();
2063 RecordData Record;
2064 StringRef Blob;
2065
2066 unsigned Result = Cursor.readRecord(Code, Record, &Blob);
2067 assert(static_cast<InputFileRecordTypes>(Result) == INPUT_FILE &&
2068 "invalid record type for input file");
2069 (void)Result;
2070
2071 assert(Record[0] == ID && "Bogus stored ID or offset");
Richard Smitha8cfffa2015-11-26 02:04:16 +00002072 InputFileInfo R;
2073 R.StoredSize = static_cast<off_t>(Record[1]);
2074 R.StoredTime = static_cast<time_t>(Record[2]);
2075 R.Overridden = static_cast<bool>(Record[3]);
2076 R.Transient = static_cast<bool>(Record[4]);
Richard Smithf3f84612017-06-29 02:19:42 +00002077 R.TopLevelModuleMap = static_cast<bool>(Record[5]);
Richard Smitha8cfffa2015-11-26 02:04:16 +00002078 R.Filename = Blob;
2079 ResolveImportedPath(F, R.Filename);
Hans Wennborg73945142014-03-14 17:45:06 +00002080 return R;
Ben Langmuir198c1682014-03-07 07:27:49 +00002081}
2082
Manman Renc8c94152016-10-21 23:35:03 +00002083static unsigned moduleKindForDiagnostic(ModuleKind Kind);
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00002084InputFile ASTReader::getInputFile(ModuleFile &F, unsigned ID, bool Complain) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002085 // If this ID is bogus, just return an empty input file.
2086 if (ID == 0 || ID > F.InputFilesLoaded.size())
2087 return InputFile();
2088
2089 // If we've already loaded this input file, return it.
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00002090 if (F.InputFilesLoaded[ID-1].getFile())
Guy Benyei11169dd2012-12-18 14:30:41 +00002091 return F.InputFilesLoaded[ID-1];
2092
Argyrios Kyrtzidis9308f0a2014-01-08 19:13:34 +00002093 if (F.InputFilesLoaded[ID-1].isNotFound())
2094 return InputFile();
2095
Guy Benyei11169dd2012-12-18 14:30:41 +00002096 // Go find this input file.
Chris Lattner7fb3bef2013-01-20 00:56:42 +00002097 BitstreamCursor &Cursor = F.InputFilesCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00002098 SavedStreamPosition SavedPosition(Cursor);
2099 Cursor.JumpToBit(F.InputFileOffsets[ID-1]);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002100
Argyrios Kyrtzidisce9b49e2014-03-14 02:26:27 +00002101 InputFileInfo FI = readInputFileInfo(F, ID);
2102 off_t StoredSize = FI.StoredSize;
2103 time_t StoredTime = FI.StoredTime;
2104 bool Overridden = FI.Overridden;
Richard Smitha8cfffa2015-11-26 02:04:16 +00002105 bool Transient = FI.Transient;
Argyrios Kyrtzidisce9b49e2014-03-14 02:26:27 +00002106 StringRef Filename = FI.Filename;
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00002107
Richard Smitha8cfffa2015-11-26 02:04:16 +00002108 const FileEntry *File = FileMgr.getFile(Filename, /*OpenFile=*/false);
Ben Langmuir198c1682014-03-07 07:27:49 +00002109 // If we didn't find the file, resolve it relative to the
2110 // original directory from which this AST file was created.
Manuel Klimek1b29b4f2017-07-25 10:22:06 +00002111 if (File == nullptr && !F.OriginalDir.empty() && !F.BaseDirectory.empty() &&
2112 F.OriginalDir != F.BaseDirectory) {
2113 std::string Resolved = resolveFileRelativeToOriginalDir(
2114 Filename, F.OriginalDir, F.BaseDirectory);
Ben Langmuir198c1682014-03-07 07:27:49 +00002115 if (!Resolved.empty())
2116 File = FileMgr.getFile(Resolved);
2117 }
2118
2119 // For an overridden file, create a virtual file with the stored
2120 // size/timestamp.
Richard Smitha8cfffa2015-11-26 02:04:16 +00002121 if ((Overridden || Transient) && File == nullptr)
Ben Langmuir198c1682014-03-07 07:27:49 +00002122 File = FileMgr.getVirtualFile(Filename, StoredSize, StoredTime);
Ben Langmuir198c1682014-03-07 07:27:49 +00002123
Craig Toppera13603a2014-05-22 05:54:18 +00002124 if (File == nullptr) {
Ben Langmuir198c1682014-03-07 07:27:49 +00002125 if (Complain) {
2126 std::string ErrorStr = "could not find file '";
2127 ErrorStr += Filename;
Richard Smith68142212015-10-13 01:26:26 +00002128 ErrorStr += "' referenced by AST file '";
2129 ErrorStr += F.FileName;
2130 ErrorStr += "'";
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00002131 Error(ErrorStr);
Guy Benyei11169dd2012-12-18 14:30:41 +00002132 }
Ben Langmuir198c1682014-03-07 07:27:49 +00002133 // Record that we didn't find the file.
2134 F.InputFilesLoaded[ID-1] = InputFile::getNotFound();
2135 return InputFile();
2136 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002137
Ben Langmuir198c1682014-03-07 07:27:49 +00002138 // Check if there was a request to override the contents of the file
2139 // that was part of the precompiled header. Overridding such a file
2140 // can lead to problems when lexing using the source locations from the
2141 // PCH.
2142 SourceManager &SM = getSourceManager();
Richard Smith64daf7b2015-12-01 03:32:49 +00002143 // FIXME: Reject if the overrides are different.
2144 if ((!Overridden && !Transient) && SM.isFileOverridden(File)) {
Ben Langmuir198c1682014-03-07 07:27:49 +00002145 if (Complain)
2146 Error(diag::err_fe_pch_file_overridden, Filename);
2147 // After emitting the diagnostic, recover by disabling the override so
2148 // that the original file will be used.
Richard Smitha8cfffa2015-11-26 02:04:16 +00002149 //
2150 // FIXME: This recovery is just as broken as the original state; there may
2151 // be another precompiled module that's using the overridden contents, or
2152 // we might be half way through parsing it. Instead, we should treat the
2153 // overridden contents as belonging to a separate FileEntry.
Ben Langmuir198c1682014-03-07 07:27:49 +00002154 SM.disableFileContentsOverride(File);
2155 // The FileEntry is a virtual file entry with the size of the contents
2156 // that would override the original contents. Set it to the original's
2157 // size/time.
2158 FileMgr.modifyFileEntry(const_cast<FileEntry*>(File),
2159 StoredSize, StoredTime);
2160 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002161
Ben Langmuir198c1682014-03-07 07:27:49 +00002162 bool IsOutOfDate = false;
2163
2164 // For an overridden file, there is nothing to validate.
Richard Smith96fdab62014-10-28 16:24:08 +00002165 if (!Overridden && //
2166 (StoredSize != File->getSize() ||
Richard Smithe75ee0f2015-08-17 07:13:32 +00002167 (StoredTime && StoredTime != File->getModificationTime() &&
2168 !DisableValidation)
Ben Langmuir198c1682014-03-07 07:27:49 +00002169 )) {
2170 if (Complain) {
2171 // Build a list of the PCH imports that got us here (in reverse).
2172 SmallVector<ModuleFile *, 4> ImportStack(1, &F);
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00002173 while (!ImportStack.back()->ImportedBy.empty())
Ben Langmuir198c1682014-03-07 07:27:49 +00002174 ImportStack.push_back(ImportStack.back()->ImportedBy[0]);
Ben Langmuire82630d2014-01-17 00:19:09 +00002175
Ben Langmuir198c1682014-03-07 07:27:49 +00002176 // The top-level PCH is stale.
2177 StringRef TopLevelPCHName(ImportStack.back()->FileName);
Manman Renc8c94152016-10-21 23:35:03 +00002178 unsigned DiagnosticKind = moduleKindForDiagnostic(ImportStack.back()->Kind);
2179 if (DiagnosticKind == 0)
2180 Error(diag::err_fe_pch_file_modified, Filename, TopLevelPCHName);
2181 else if (DiagnosticKind == 1)
2182 Error(diag::err_fe_module_file_modified, Filename, TopLevelPCHName);
2183 else
2184 Error(diag::err_fe_ast_file_modified, Filename, TopLevelPCHName);
Ben Langmuire82630d2014-01-17 00:19:09 +00002185
Ben Langmuir198c1682014-03-07 07:27:49 +00002186 // Print the import stack.
2187 if (ImportStack.size() > 1 && !Diags.isDiagnosticInFlight()) {
2188 Diag(diag::note_pch_required_by)
2189 << Filename << ImportStack[0]->FileName;
2190 for (unsigned I = 1; I < ImportStack.size(); ++I)
Ben Langmuire82630d2014-01-17 00:19:09 +00002191 Diag(diag::note_pch_required_by)
Ben Langmuir198c1682014-03-07 07:27:49 +00002192 << ImportStack[I-1]->FileName << ImportStack[I]->FileName;
Douglas Gregor7029ce12013-03-19 00:28:20 +00002193 }
2194
Ben Langmuir198c1682014-03-07 07:27:49 +00002195 if (!Diags.isDiagnosticInFlight())
2196 Diag(diag::note_pch_rebuild_required) << TopLevelPCHName;
Guy Benyei11169dd2012-12-18 14:30:41 +00002197 }
2198
Ben Langmuir198c1682014-03-07 07:27:49 +00002199 IsOutOfDate = true;
Guy Benyei11169dd2012-12-18 14:30:41 +00002200 }
Richard Smitha8cfffa2015-11-26 02:04:16 +00002201 // FIXME: If the file is overridden and we've already opened it,
2202 // issue an error (or split it into a separate FileEntry).
Guy Benyei11169dd2012-12-18 14:30:41 +00002203
Richard Smitha8cfffa2015-11-26 02:04:16 +00002204 InputFile IF = InputFile(File, Overridden || Transient, IsOutOfDate);
Ben Langmuir198c1682014-03-07 07:27:49 +00002205
2206 // Note that we've loaded this input file.
2207 F.InputFilesLoaded[ID-1] = IF;
2208 return IF;
Guy Benyei11169dd2012-12-18 14:30:41 +00002209}
2210
Richard Smith7ed1bc92014-12-05 22:42:13 +00002211/// \brief If we are loading a relocatable PCH or module file, and the filename
2212/// is not an absolute path, add the system or module root to the beginning of
2213/// the file name.
2214void ASTReader::ResolveImportedPath(ModuleFile &M, std::string &Filename) {
2215 // Resolve relative to the base directory, if we have one.
2216 if (!M.BaseDirectory.empty())
2217 return ResolveImportedPath(Filename, M.BaseDirectory);
Guy Benyei11169dd2012-12-18 14:30:41 +00002218}
2219
Richard Smith7ed1bc92014-12-05 22:42:13 +00002220void ASTReader::ResolveImportedPath(std::string &Filename, StringRef Prefix) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002221 if (Filename.empty() || llvm::sys::path::is_absolute(Filename))
2222 return;
2223
Richard Smith7ed1bc92014-12-05 22:42:13 +00002224 SmallString<128> Buffer;
2225 llvm::sys::path::append(Buffer, Prefix, Filename);
2226 Filename.assign(Buffer.begin(), Buffer.end());
Guy Benyei11169dd2012-12-18 14:30:41 +00002227}
2228
Richard Smith0f99d6a2015-08-09 08:48:41 +00002229static bool isDiagnosedResult(ASTReader::ASTReadResult ARR, unsigned Caps) {
2230 switch (ARR) {
2231 case ASTReader::Failure: return true;
2232 case ASTReader::Missing: return !(Caps & ASTReader::ARR_Missing);
2233 case ASTReader::OutOfDate: return !(Caps & ASTReader::ARR_OutOfDate);
2234 case ASTReader::VersionMismatch: return !(Caps & ASTReader::ARR_VersionMismatch);
2235 case ASTReader::ConfigurationMismatch:
2236 return !(Caps & ASTReader::ARR_ConfigurationMismatch);
2237 case ASTReader::HadErrors: return true;
2238 case ASTReader::Success: return false;
2239 }
2240
2241 llvm_unreachable("unknown ASTReadResult");
2242}
2243
Richard Smith0516b182015-09-08 19:40:14 +00002244ASTReader::ASTReadResult ASTReader::ReadOptionsBlock(
2245 BitstreamCursor &Stream, unsigned ClientLoadCapabilities,
2246 bool AllowCompatibleConfigurationMismatch, ASTReaderListener &Listener,
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002247 std::string &SuggestedPredefines) {
Richard Smith0516b182015-09-08 19:40:14 +00002248 if (Stream.EnterSubBlock(OPTIONS_BLOCK_ID))
2249 return Failure;
2250
2251 // Read all of the records in the options block.
2252 RecordData Record;
2253 ASTReadResult Result = Success;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00002254 while (true) {
Richard Smith0516b182015-09-08 19:40:14 +00002255 llvm::BitstreamEntry Entry = Stream.advance();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002256
Richard Smith0516b182015-09-08 19:40:14 +00002257 switch (Entry.Kind) {
2258 case llvm::BitstreamEntry::Error:
2259 case llvm::BitstreamEntry::SubBlock:
2260 return Failure;
2261
2262 case llvm::BitstreamEntry::EndBlock:
2263 return Result;
2264
2265 case llvm::BitstreamEntry::Record:
2266 // The interesting case.
2267 break;
2268 }
2269
2270 // Read and process a record.
2271 Record.clear();
2272 switch ((OptionsRecordTypes)Stream.readRecord(Entry.ID, Record)) {
2273 case LANGUAGE_OPTIONS: {
2274 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
2275 if (ParseLanguageOptions(Record, Complain, Listener,
2276 AllowCompatibleConfigurationMismatch))
2277 Result = ConfigurationMismatch;
2278 break;
2279 }
2280
2281 case TARGET_OPTIONS: {
2282 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
2283 if (ParseTargetOptions(Record, Complain, Listener,
2284 AllowCompatibleConfigurationMismatch))
2285 Result = ConfigurationMismatch;
2286 break;
2287 }
2288
Richard Smith0516b182015-09-08 19:40:14 +00002289 case FILE_SYSTEM_OPTIONS: {
2290 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
2291 if (!AllowCompatibleConfigurationMismatch &&
2292 ParseFileSystemOptions(Record, Complain, Listener))
2293 Result = ConfigurationMismatch;
2294 break;
2295 }
2296
2297 case HEADER_SEARCH_OPTIONS: {
2298 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
2299 if (!AllowCompatibleConfigurationMismatch &&
2300 ParseHeaderSearchOptions(Record, Complain, Listener))
2301 Result = ConfigurationMismatch;
2302 break;
2303 }
2304
2305 case PREPROCESSOR_OPTIONS:
2306 bool Complain = (ClientLoadCapabilities & ARR_ConfigurationMismatch) == 0;
2307 if (!AllowCompatibleConfigurationMismatch &&
2308 ParsePreprocessorOptions(Record, Complain, Listener,
2309 SuggestedPredefines))
2310 Result = ConfigurationMismatch;
2311 break;
2312 }
2313 }
2314}
2315
Guy Benyei11169dd2012-12-18 14:30:41 +00002316ASTReader::ASTReadResult
2317ASTReader::ReadControlBlock(ModuleFile &F,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00002318 SmallVectorImpl<ImportedModule> &Loaded,
Ben Langmuirbeee15e2014-04-14 18:00:01 +00002319 const ModuleFile *ImportedBy,
Guy Benyei11169dd2012-12-18 14:30:41 +00002320 unsigned ClientLoadCapabilities) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00002321 BitstreamCursor &Stream = F.Stream;
Richard Smith8a308ec2015-11-05 00:54:55 +00002322 ASTReadResult Result = Success;
Guy Benyei11169dd2012-12-18 14:30:41 +00002323
2324 if (Stream.EnterSubBlock(CONTROL_BLOCK_ID)) {
2325 Error("malformed block record in AST file");
2326 return Failure;
2327 }
2328
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002329 // Lambda to read the unhashed control block the first time it's called.
2330 //
2331 // For PCM files, the unhashed control block cannot be read until after the
2332 // MODULE_NAME record. However, PCH files have no MODULE_NAME, and yet still
2333 // need to look ahead before reading the IMPORTS record. For consistency,
2334 // this block is always read somehow (see BitstreamEntry::EndBlock).
2335 bool HasReadUnhashedControlBlock = false;
2336 auto readUnhashedControlBlockOnce = [&]() {
2337 if (!HasReadUnhashedControlBlock) {
2338 HasReadUnhashedControlBlock = true;
2339 if (ASTReadResult Result =
2340 readUnhashedControlBlock(F, ImportedBy, ClientLoadCapabilities))
2341 return Result;
2342 }
2343 return Success;
2344 };
2345
Guy Benyei11169dd2012-12-18 14:30:41 +00002346 // Read all of the records and blocks in the control block.
2347 RecordData Record;
Richard Smitha1825302014-10-23 22:18:29 +00002348 unsigned NumInputs = 0;
2349 unsigned NumUserInputs = 0;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00002350 while (true) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00002351 llvm::BitstreamEntry Entry = Stream.advance();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002352
Chris Lattnere7b154b2013-01-19 21:39:22 +00002353 switch (Entry.Kind) {
2354 case llvm::BitstreamEntry::Error:
2355 Error("malformed block record in AST file");
2356 return Failure;
Dmitri Gribenkof430da42014-02-12 10:33:14 +00002357 case llvm::BitstreamEntry::EndBlock: {
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002358 // Validate the module before returning. This call catches an AST with
2359 // no module name and no imports.
2360 if (ASTReadResult Result = readUnhashedControlBlockOnce())
2361 return Result;
2362
Dmitri Gribenkof430da42014-02-12 10:33:14 +00002363 // Validate input files.
2364 const HeaderSearchOptions &HSOpts =
2365 PP.getHeaderSearchInfo().getHeaderSearchOpts();
Ben Langmuircb69b572014-03-07 06:40:32 +00002366
Richard Smitha1825302014-10-23 22:18:29 +00002367 // All user input files reside at the index range [0, NumUserInputs), and
Richard Smith0f99d6a2015-08-09 08:48:41 +00002368 // system input files reside at [NumUserInputs, NumInputs). For explicitly
2369 // loaded module files, ignore missing inputs.
Manman Ren11f2a472016-08-18 17:42:15 +00002370 if (!DisableValidation && F.Kind != MK_ExplicitModule &&
2371 F.Kind != MK_PrebuiltModule) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002372 bool Complain = (ClientLoadCapabilities & ARR_OutOfDate) == 0;
Ben Langmuircb69b572014-03-07 06:40:32 +00002373
Dmitri Gribenkof430da42014-02-12 10:33:14 +00002374 // If we are reading a module, we will create a verification timestamp,
2375 // so we verify all input files. Otherwise, verify only user input
2376 // files.
Ben Langmuircb69b572014-03-07 06:40:32 +00002377
2378 unsigned N = NumUserInputs;
2379 if (ValidateSystemInputs ||
Richard Smithe842a472014-10-22 02:05:46 +00002380 (HSOpts.ModulesValidateOncePerBuildSession &&
Ben Langmuiracb803e2014-11-10 22:13:10 +00002381 F.InputFilesValidationTimestamp <= HSOpts.BuildSessionTimestamp &&
Richard Smithe842a472014-10-22 02:05:46 +00002382 F.Kind == MK_ImplicitModule))
Ben Langmuircb69b572014-03-07 06:40:32 +00002383 N = NumInputs;
2384
Ben Langmuir3d4417c2014-02-07 17:31:11 +00002385 for (unsigned I = 0; I < N; ++I) {
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00002386 InputFile IF = getInputFile(F, I+1, Complain);
2387 if (!IF.getFile() || IF.isOutOfDate())
Guy Benyei11169dd2012-12-18 14:30:41 +00002388 return OutOfDate;
Argyrios Kyrtzidis61c3d872013-03-01 03:26:04 +00002389 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002390 }
Ben Langmuircb69b572014-03-07 06:40:32 +00002391
Argyrios Kyrtzidis6d0753d2014-03-14 03:07:38 +00002392 if (Listener)
Richard Smith216a3bd2015-08-13 17:57:10 +00002393 Listener->visitModuleFile(F.FileName, F.Kind);
Argyrios Kyrtzidis6d0753d2014-03-14 03:07:38 +00002394
Ben Langmuircb69b572014-03-07 06:40:32 +00002395 if (Listener && Listener->needsInputFileVisitation()) {
2396 unsigned N = Listener->needsSystemInputFileVisitation() ? NumInputs
2397 : NumUserInputs;
Argyrios Kyrtzidis68ccbe02014-03-14 02:26:31 +00002398 for (unsigned I = 0; I < N; ++I) {
2399 bool IsSystem = I >= NumUserInputs;
2400 InputFileInfo FI = readInputFileInfo(F, I+1);
Richard Smith216a3bd2015-08-13 17:57:10 +00002401 Listener->visitInputFile(FI.Filename, IsSystem, FI.Overridden,
Manman Ren11f2a472016-08-18 17:42:15 +00002402 F.Kind == MK_ExplicitModule ||
2403 F.Kind == MK_PrebuiltModule);
Argyrios Kyrtzidis68ccbe02014-03-14 02:26:31 +00002404 }
Ben Langmuircb69b572014-03-07 06:40:32 +00002405 }
2406
Richard Smith8a308ec2015-11-05 00:54:55 +00002407 return Result;
Dmitri Gribenkof430da42014-02-12 10:33:14 +00002408 }
2409
Chris Lattnere7b154b2013-01-19 21:39:22 +00002410 case llvm::BitstreamEntry::SubBlock:
2411 switch (Entry.ID) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002412 case INPUT_FILES_BLOCK_ID:
2413 F.InputFilesCursor = Stream;
2414 if (Stream.SkipBlock() || // Skip with the main cursor
2415 // Read the abbreviations
2416 ReadBlockAbbrevs(F.InputFilesCursor, INPUT_FILES_BLOCK_ID)) {
2417 Error("malformed block record in AST file");
2418 return Failure;
2419 }
2420 continue;
Richard Smith0516b182015-09-08 19:40:14 +00002421
2422 case OPTIONS_BLOCK_ID:
2423 // If we're reading the first module for this group, check its options
2424 // are compatible with ours. For modules it imports, no further checking
2425 // is required, because we checked them when we built it.
2426 if (Listener && !ImportedBy) {
2427 // Should we allow the configuration of the module file to differ from
2428 // the configuration of the current translation unit in a compatible
2429 // way?
2430 //
2431 // FIXME: Allow this for files explicitly specified with -include-pch.
2432 bool AllowCompatibleConfigurationMismatch =
Manman Ren11f2a472016-08-18 17:42:15 +00002433 F.Kind == MK_ExplicitModule || F.Kind == MK_PrebuiltModule;
Richard Smith0516b182015-09-08 19:40:14 +00002434
Richard Smith8a308ec2015-11-05 00:54:55 +00002435 Result = ReadOptionsBlock(Stream, ClientLoadCapabilities,
2436 AllowCompatibleConfigurationMismatch,
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002437 *Listener, SuggestedPredefines);
Richard Smith0516b182015-09-08 19:40:14 +00002438 if (Result == Failure) {
2439 Error("malformed block record in AST file");
2440 return Result;
2441 }
2442
Richard Smith8a308ec2015-11-05 00:54:55 +00002443 if (DisableValidation ||
2444 (AllowConfigurationMismatch && Result == ConfigurationMismatch))
2445 Result = Success;
2446
Ben Langmuir9b1e442e2016-02-11 18:54:02 +00002447 // If we can't load the module, exit early since we likely
2448 // will rebuild the module anyway. The stream may be in the
2449 // middle of a block.
2450 if (Result != Success)
Richard Smith0516b182015-09-08 19:40:14 +00002451 return Result;
2452 } else if (Stream.SkipBlock()) {
2453 Error("malformed block record in AST file");
2454 return Failure;
2455 }
2456 continue;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002457
Guy Benyei11169dd2012-12-18 14:30:41 +00002458 default:
Chris Lattnere7b154b2013-01-19 21:39:22 +00002459 if (Stream.SkipBlock()) {
2460 Error("malformed block record in AST file");
2461 return Failure;
2462 }
2463 continue;
Guy Benyei11169dd2012-12-18 14:30:41 +00002464 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002465
Chris Lattnere7b154b2013-01-19 21:39:22 +00002466 case llvm::BitstreamEntry::Record:
2467 // The interesting case.
2468 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00002469 }
2470
2471 // Read and process a record.
2472 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00002473 StringRef Blob;
2474 switch ((ControlRecordTypes)Stream.readRecord(Entry.ID, Record, &Blob)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002475 case METADATA: {
2476 if (Record[0] != VERSION_MAJOR && !DisableValidation) {
2477 if ((ClientLoadCapabilities & ARR_VersionMismatch) == 0)
Dmitri Gribenko2228cd32014-02-11 15:40:09 +00002478 Diag(Record[0] < VERSION_MAJOR? diag::err_pch_version_too_old
2479 : diag::err_pch_version_too_new);
Guy Benyei11169dd2012-12-18 14:30:41 +00002480 return VersionMismatch;
2481 }
2482
Richard Smithe75ee0f2015-08-17 07:13:32 +00002483 bool hasErrors = Record[6];
Guy Benyei11169dd2012-12-18 14:30:41 +00002484 if (hasErrors && !DisableValidation && !AllowASTWithCompilerErrors) {
2485 Diag(diag::err_pch_with_compiler_errors);
2486 return HadErrors;
2487 }
Argyrios Kyrtzidis70ec1c72016-07-13 20:35:26 +00002488 if (hasErrors) {
2489 Diags.ErrorOccurred = true;
2490 Diags.UncompilableErrorOccurred = true;
2491 Diags.UnrecoverableErrorOccurred = true;
2492 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002493
2494 F.RelocatablePCH = Record[4];
Richard Smith7ed1bc92014-12-05 22:42:13 +00002495 // Relative paths in a relocatable PCH are relative to our sysroot.
2496 if (F.RelocatablePCH)
2497 F.BaseDirectory = isysroot.empty() ? "/" : isysroot;
Guy Benyei11169dd2012-12-18 14:30:41 +00002498
Richard Smithe75ee0f2015-08-17 07:13:32 +00002499 F.HasTimestamps = Record[5];
2500
Guy Benyei11169dd2012-12-18 14:30:41 +00002501 const std::string &CurBranch = getClangFullRepositoryVersion();
Chris Lattner0e6c9402013-01-20 02:38:54 +00002502 StringRef ASTBranch = Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00002503 if (StringRef(CurBranch) != ASTBranch && !DisableValidation) {
2504 if ((ClientLoadCapabilities & ARR_VersionMismatch) == 0)
Dmitri Gribenko2228cd32014-02-11 15:40:09 +00002505 Diag(diag::err_pch_different_branch) << ASTBranch << CurBranch;
Guy Benyei11169dd2012-12-18 14:30:41 +00002506 return VersionMismatch;
2507 }
2508 break;
2509 }
2510
2511 case IMPORTS: {
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002512 // Validate the AST before processing any imports (otherwise, untangling
2513 // them can be error-prone and expensive). A module will have a name and
2514 // will already have been validated, but this catches the PCH case.
2515 if (ASTReadResult Result = readUnhashedControlBlockOnce())
2516 return Result;
2517
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002518 // Load each of the imported PCH files.
Guy Benyei11169dd2012-12-18 14:30:41 +00002519 unsigned Idx = 0, N = Record.size();
2520 while (Idx < N) {
2521 // Read information about the AST file.
2522 ModuleKind ImportedKind = (ModuleKind)Record[Idx++];
2523 // The import location will be the local one for now; we will adjust
2524 // all import locations of module imports after the global source
Richard Smithb22a1d12016-03-27 20:13:24 +00002525 // location info are setup, in ReadAST.
Guy Benyei11169dd2012-12-18 14:30:41 +00002526 SourceLocation ImportLoc =
Richard Smithb22a1d12016-03-27 20:13:24 +00002527 ReadUntranslatedSourceLocation(Record[Idx++]);
Douglas Gregor7029ce12013-03-19 00:28:20 +00002528 off_t StoredSize = (off_t)Record[Idx++];
2529 time_t StoredModTime = (time_t)Record[Idx++];
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002530 ASTFileSignature StoredSignature = {
2531 {{(uint32_t)Record[Idx++], (uint32_t)Record[Idx++],
2532 (uint32_t)Record[Idx++], (uint32_t)Record[Idx++],
2533 (uint32_t)Record[Idx++]}}};
Boris Kolpackovd30446f2017-08-31 06:26:43 +00002534
2535 std::string ImportedName = ReadString(Record, Idx);
2536 std::string ImportedFile;
2537
2538 // For prebuilt and explicit modules first consult the file map for
2539 // an override. Note that here we don't search prebuilt module
2540 // directories, only the explicit name to file mappings. Also, we will
2541 // still verify the size/signature making sure it is essentially the
2542 // same file but perhaps in a different location.
2543 if (ImportedKind == MK_PrebuiltModule || ImportedKind == MK_ExplicitModule)
2544 ImportedFile = PP.getHeaderSearchInfo().getPrebuiltModuleFileName(
2545 ImportedName, /*FileMapOnly*/ true);
2546
2547 if (ImportedFile.empty())
2548 ImportedFile = ReadPath(F, Record, Idx);
2549 else
2550 SkipPath(Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00002551
Richard Smith0f99d6a2015-08-09 08:48:41 +00002552 // If our client can't cope with us being out of date, we can't cope with
2553 // our dependency being missing.
2554 unsigned Capabilities = ClientLoadCapabilities;
2555 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
2556 Capabilities &= ~ARR_Missing;
2557
Guy Benyei11169dd2012-12-18 14:30:41 +00002558 // Load the AST file.
Richard Smith0f99d6a2015-08-09 08:48:41 +00002559 auto Result = ReadASTCore(ImportedFile, ImportedKind, ImportLoc, &F,
2560 Loaded, StoredSize, StoredModTime,
2561 StoredSignature, Capabilities);
2562
2563 // If we diagnosed a problem, produce a backtrace.
2564 if (isDiagnosedResult(Result, Capabilities))
2565 Diag(diag::note_module_file_imported_by)
2566 << F.FileName << !F.ModuleName.empty() << F.ModuleName;
2567
2568 switch (Result) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002569 case Failure: return Failure;
2570 // If we have to ignore the dependency, we'll have to ignore this too.
Douglas Gregor2f1806e2013-03-19 00:38:50 +00002571 case Missing:
Guy Benyei11169dd2012-12-18 14:30:41 +00002572 case OutOfDate: return OutOfDate;
2573 case VersionMismatch: return VersionMismatch;
2574 case ConfigurationMismatch: return ConfigurationMismatch;
2575 case HadErrors: return HadErrors;
2576 case Success: break;
2577 }
2578 }
2579 break;
2580 }
2581
Guy Benyei11169dd2012-12-18 14:30:41 +00002582 case ORIGINAL_FILE:
2583 F.OriginalSourceFileID = FileID::get(Record[0]);
Chris Lattner0e6c9402013-01-20 02:38:54 +00002584 F.ActualOriginalSourceFileName = Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00002585 F.OriginalSourceFileName = F.ActualOriginalSourceFileName;
Richard Smith7ed1bc92014-12-05 22:42:13 +00002586 ResolveImportedPath(F, F.OriginalSourceFileName);
Guy Benyei11169dd2012-12-18 14:30:41 +00002587 break;
2588
2589 case ORIGINAL_FILE_ID:
2590 F.OriginalSourceFileID = FileID::get(Record[0]);
2591 break;
2592
2593 case ORIGINAL_PCH_DIR:
Chris Lattner0e6c9402013-01-20 02:38:54 +00002594 F.OriginalDir = Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00002595 break;
2596
Ben Langmuirbeee15e2014-04-14 18:00:01 +00002597 case MODULE_NAME:
2598 F.ModuleName = Blob;
Ben Langmuir4f5212a2014-04-14 22:12:44 +00002599 if (Listener)
2600 Listener->ReadModuleName(F.ModuleName);
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00002601
2602 // Validate the AST as soon as we have a name so we can exit early on
2603 // failure.
2604 if (ASTReadResult Result = readUnhashedControlBlockOnce())
2605 return Result;
2606
Ben Langmuirbeee15e2014-04-14 18:00:01 +00002607 break;
2608
Richard Smith223d3f22014-12-06 03:21:08 +00002609 case MODULE_DIRECTORY: {
2610 assert(!F.ModuleName.empty() &&
2611 "MODULE_DIRECTORY found before MODULE_NAME");
2612 // If we've already loaded a module map file covering this module, we may
2613 // have a better path for it (relative to the current build).
2614 Module *M = PP.getHeaderSearchInfo().lookupModule(F.ModuleName);
2615 if (M && M->Directory) {
2616 // If we're implicitly loading a module, the base directory can't
2617 // change between the build and use.
Manman Ren11f2a472016-08-18 17:42:15 +00002618 if (F.Kind != MK_ExplicitModule && F.Kind != MK_PrebuiltModule) {
Richard Smith223d3f22014-12-06 03:21:08 +00002619 const DirectoryEntry *BuildDir =
2620 PP.getFileManager().getDirectory(Blob);
2621 if (!BuildDir || BuildDir != M->Directory) {
2622 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
2623 Diag(diag::err_imported_module_relocated)
2624 << F.ModuleName << Blob << M->Directory->getName();
2625 return OutOfDate;
2626 }
2627 }
2628 F.BaseDirectory = M->Directory->getName();
2629 } else {
2630 F.BaseDirectory = Blob;
2631 }
Richard Smith7ed1bc92014-12-05 22:42:13 +00002632 break;
Richard Smith223d3f22014-12-06 03:21:08 +00002633 }
Richard Smith7ed1bc92014-12-05 22:42:13 +00002634
Ben Langmuirbeee15e2014-04-14 18:00:01 +00002635 case MODULE_MAP_FILE:
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00002636 if (ASTReadResult Result =
2637 ReadModuleMapFileBlock(Record, F, ImportedBy, ClientLoadCapabilities))
2638 return Result;
Ben Langmuir264ea152014-11-08 00:06:39 +00002639 break;
2640
Justin Bognerca9c0cc2015-06-21 20:32:36 +00002641 case INPUT_FILE_OFFSETS:
Richard Smitha1825302014-10-23 22:18:29 +00002642 NumInputs = Record[0];
2643 NumUserInputs = Record[1];
Justin Bogner4c183242015-06-21 20:32:40 +00002644 F.InputFileOffsets =
2645 (const llvm::support::unaligned_uint64_t *)Blob.data();
Richard Smitha1825302014-10-23 22:18:29 +00002646 F.InputFilesLoaded.resize(NumInputs);
Argyrios Kyrtzidisa38cb202017-01-30 06:05:58 +00002647 F.NumUserInputFiles = NumUserInputs;
Guy Benyei11169dd2012-12-18 14:30:41 +00002648 break;
2649 }
2650 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002651}
2652
Ben Langmuir2c9af442014-04-10 17:57:43 +00002653ASTReader::ASTReadResult
2654ASTReader::ReadASTBlock(ModuleFile &F, unsigned ClientLoadCapabilities) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00002655 BitstreamCursor &Stream = F.Stream;
Guy Benyei11169dd2012-12-18 14:30:41 +00002656
2657 if (Stream.EnterSubBlock(AST_BLOCK_ID)) {
2658 Error("malformed block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002659 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002660 }
2661
2662 // Read all of the records and blocks for the AST file.
2663 RecordData Record;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00002664 while (true) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00002665 llvm::BitstreamEntry Entry = Stream.advance();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002666
Chris Lattnere7b154b2013-01-19 21:39:22 +00002667 switch (Entry.Kind) {
2668 case llvm::BitstreamEntry::Error:
2669 Error("error at end of module block in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002670 return Failure;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00002671 case llvm::BitstreamEntry::EndBlock:
Richard Smithc0fbba72013-04-03 22:49:41 +00002672 // Outside of C++, we do not store a lookup map for the translation unit.
2673 // Instead, mark it as needing a lookup map to be built if this module
2674 // contains any declarations lexically within it (which it always does!).
2675 // This usually has no cost, since we very rarely need the lookup map for
2676 // the translation unit outside C++.
Richard Smithdbafb6c2017-06-29 23:23:46 +00002677 if (ASTContext *Ctx = ContextObj) {
2678 DeclContext *DC = Ctx->getTranslationUnitDecl();
2679 if (DC->hasExternalLexicalStorage() && !Ctx->getLangOpts().CPlusPlus)
2680 DC->setMustBuildLookupTable();
2681 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002682
Ben Langmuir2c9af442014-04-10 17:57:43 +00002683 return Success;
Chris Lattnere7b154b2013-01-19 21:39:22 +00002684 case llvm::BitstreamEntry::SubBlock:
2685 switch (Entry.ID) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002686 case DECLTYPES_BLOCK_ID:
2687 // We lazily load the decls block, but we want to set up the
2688 // DeclsCursor cursor to point into it. Clone our current bitcode
2689 // cursor to it, enter the block and read the abbrevs in that block.
2690 // With the main cursor, we just skip over it.
2691 F.DeclsCursor = Stream;
2692 if (Stream.SkipBlock() || // Skip with the main cursor.
2693 // Read the abbrevs.
2694 ReadBlockAbbrevs(F.DeclsCursor, DECLTYPES_BLOCK_ID)) {
2695 Error("malformed block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002696 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002697 }
2698 break;
Richard Smithb9eab6d2014-03-20 19:44:17 +00002699
Guy Benyei11169dd2012-12-18 14:30:41 +00002700 case PREPROCESSOR_BLOCK_ID:
2701 F.MacroCursor = Stream;
2702 if (!PP.getExternalSource())
2703 PP.setExternalSource(this);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002704
Guy Benyei11169dd2012-12-18 14:30:41 +00002705 if (Stream.SkipBlock() ||
2706 ReadBlockAbbrevs(F.MacroCursor, PREPROCESSOR_BLOCK_ID)) {
2707 Error("malformed block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002708 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002709 }
2710 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo();
2711 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002712
Guy Benyei11169dd2012-12-18 14:30:41 +00002713 case PREPROCESSOR_DETAIL_BLOCK_ID:
2714 F.PreprocessorDetailCursor = Stream;
2715 if (Stream.SkipBlock() ||
Chris Lattnere7b154b2013-01-19 21:39:22 +00002716 ReadBlockAbbrevs(F.PreprocessorDetailCursor,
Guy Benyei11169dd2012-12-18 14:30:41 +00002717 PREPROCESSOR_DETAIL_BLOCK_ID)) {
Chris Lattnere7b154b2013-01-19 21:39:22 +00002718 Error("malformed preprocessor detail record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002719 return Failure;
Chris Lattnere7b154b2013-01-19 21:39:22 +00002720 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002721 F.PreprocessorDetailStartOffset
Chris Lattnere7b154b2013-01-19 21:39:22 +00002722 = F.PreprocessorDetailCursor.GetCurrentBitNo();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002723
Guy Benyei11169dd2012-12-18 14:30:41 +00002724 if (!PP.getPreprocessingRecord())
2725 PP.createPreprocessingRecord();
2726 if (!PP.getPreprocessingRecord()->getExternalSource())
2727 PP.getPreprocessingRecord()->SetExternalSource(*this);
2728 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002729
Guy Benyei11169dd2012-12-18 14:30:41 +00002730 case SOURCE_MANAGER_BLOCK_ID:
2731 if (ReadSourceManagerBlock(F))
Ben Langmuir2c9af442014-04-10 17:57:43 +00002732 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002733 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002734
Guy Benyei11169dd2012-12-18 14:30:41 +00002735 case SUBMODULE_BLOCK_ID:
David Blaikie9ffe5a32017-01-30 05:00:26 +00002736 if (ASTReadResult Result =
2737 ReadSubmoduleBlock(F, ClientLoadCapabilities))
Ben Langmuir2c9af442014-04-10 17:57:43 +00002738 return Result;
Guy Benyei11169dd2012-12-18 14:30:41 +00002739 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002740
Guy Benyei11169dd2012-12-18 14:30:41 +00002741 case COMMENTS_BLOCK_ID: {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00002742 BitstreamCursor C = Stream;
Guy Benyei11169dd2012-12-18 14:30:41 +00002743 if (Stream.SkipBlock() ||
2744 ReadBlockAbbrevs(C, COMMENTS_BLOCK_ID)) {
2745 Error("malformed comments block in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002746 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002747 }
2748 CommentsCursors.push_back(std::make_pair(C, &F));
2749 break;
2750 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002751
Guy Benyei11169dd2012-12-18 14:30:41 +00002752 default:
Chris Lattnere7b154b2013-01-19 21:39:22 +00002753 if (Stream.SkipBlock()) {
2754 Error("malformed block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002755 return Failure;
Chris Lattnere7b154b2013-01-19 21:39:22 +00002756 }
2757 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00002758 }
2759 continue;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002760
Chris Lattnere7b154b2013-01-19 21:39:22 +00002761 case llvm::BitstreamEntry::Record:
2762 // The interesting case.
2763 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00002764 }
2765
2766 // Read and process a record.
2767 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00002768 StringRef Blob;
Richard Smithdbafb6c2017-06-29 23:23:46 +00002769 auto RecordType =
2770 (ASTRecordTypes)Stream.readRecord(Entry.ID, Record, &Blob);
2771
2772 // If we're not loading an AST context, we don't care about most records.
2773 if (!ContextObj) {
2774 switch (RecordType) {
2775 case IDENTIFIER_TABLE:
2776 case IDENTIFIER_OFFSET:
2777 case INTERESTING_IDENTIFIERS:
2778 case STATISTICS:
2779 case PP_CONDITIONAL_STACK:
2780 case PP_COUNTER_VALUE:
2781 case SOURCE_LOCATION_OFFSETS:
2782 case MODULE_OFFSET_MAP:
2783 case SOURCE_MANAGER_LINE_TABLE:
2784 case SOURCE_LOCATION_PRELOADS:
2785 case PPD_ENTITIES_OFFSETS:
2786 case HEADER_SEARCH_TABLE:
2787 case IMPORTED_MODULES:
2788 case MACRO_OFFSET:
2789 break;
2790 default:
2791 continue;
2792 }
2793 }
2794
2795 switch (RecordType) {
Guy Benyei11169dd2012-12-18 14:30:41 +00002796 default: // Default behavior: ignore.
2797 break;
2798
2799 case TYPE_OFFSET: {
2800 if (F.LocalNumTypes != 0) {
2801 Error("duplicate TYPE_OFFSET record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002802 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002803 }
Chris Lattner0e6c9402013-01-20 02:38:54 +00002804 F.TypeOffsets = (const uint32_t *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00002805 F.LocalNumTypes = Record[0];
2806 unsigned LocalBaseTypeIndex = Record[1];
2807 F.BaseTypeIndex = getTotalNumTypes();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002808
Guy Benyei11169dd2012-12-18 14:30:41 +00002809 if (F.LocalNumTypes > 0) {
2810 // Introduce the global -> local mapping for types within this module.
2811 GlobalTypeMap.insert(std::make_pair(getTotalNumTypes(), &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002812
Guy Benyei11169dd2012-12-18 14:30:41 +00002813 // Introduce the local -> global mapping for types within this module.
2814 F.TypeRemap.insertOrReplace(
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002815 std::make_pair(LocalBaseTypeIndex,
Guy Benyei11169dd2012-12-18 14:30:41 +00002816 F.BaseTypeIndex - LocalBaseTypeIndex));
Ben Langmuir52ca6782014-10-20 16:27:32 +00002817
2818 TypesLoaded.resize(TypesLoaded.size() + F.LocalNumTypes);
Guy Benyei11169dd2012-12-18 14:30:41 +00002819 }
2820 break;
2821 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002822
Guy Benyei11169dd2012-12-18 14:30:41 +00002823 case DECL_OFFSET: {
2824 if (F.LocalNumDecls != 0) {
2825 Error("duplicate DECL_OFFSET record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002826 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002827 }
Chris Lattner0e6c9402013-01-20 02:38:54 +00002828 F.DeclOffsets = (const DeclOffset *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00002829 F.LocalNumDecls = Record[0];
2830 unsigned LocalBaseDeclID = Record[1];
2831 F.BaseDeclID = getTotalNumDecls();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002832
Guy Benyei11169dd2012-12-18 14:30:41 +00002833 if (F.LocalNumDecls > 0) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002834 // Introduce the global -> local mapping for declarations within this
Guy Benyei11169dd2012-12-18 14:30:41 +00002835 // module.
2836 GlobalDeclMap.insert(
2837 std::make_pair(getTotalNumDecls() + NUM_PREDEF_DECL_IDS, &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002838
Guy Benyei11169dd2012-12-18 14:30:41 +00002839 // Introduce the local -> global mapping for declarations within this
2840 // module.
2841 F.DeclRemap.insertOrReplace(
2842 std::make_pair(LocalBaseDeclID, F.BaseDeclID - LocalBaseDeclID));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002843
Guy Benyei11169dd2012-12-18 14:30:41 +00002844 // Introduce the global -> local mapping for declarations within this
2845 // module.
2846 F.GlobalToLocalDeclIDs[&F] = LocalBaseDeclID;
Ben Langmuirfe971d92014-08-16 04:54:18 +00002847
Ben Langmuir52ca6782014-10-20 16:27:32 +00002848 DeclsLoaded.resize(DeclsLoaded.size() + F.LocalNumDecls);
2849 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002850 break;
2851 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002852
Guy Benyei11169dd2012-12-18 14:30:41 +00002853 case TU_UPDATE_LEXICAL: {
Richard Smithdbafb6c2017-06-29 23:23:46 +00002854 DeclContext *TU = ContextObj->getTranslationUnitDecl();
Richard Smith82f8fcd2015-08-06 22:07:25 +00002855 LexicalContents Contents(
2856 reinterpret_cast<const llvm::support::unaligned_uint32_t *>(
2857 Blob.data()),
2858 static_cast<unsigned int>(Blob.size() / 4));
2859 TULexicalDecls.push_back(std::make_pair(&F, Contents));
Guy Benyei11169dd2012-12-18 14:30:41 +00002860 TU->setHasExternalLexicalStorage(true);
2861 break;
2862 }
2863
2864 case UPDATE_VISIBLE: {
2865 unsigned Idx = 0;
2866 serialization::DeclID ID = ReadDeclID(F, Record, Idx);
Richard Smith0f4e2c42015-08-06 04:23:48 +00002867 auto *Data = (const unsigned char*)Blob.data();
Richard Smithd88a7f12015-09-01 20:35:42 +00002868 PendingVisibleUpdates[ID].push_back(PendingVisibleUpdate{&F, Data});
Richard Smith0f4e2c42015-08-06 04:23:48 +00002869 // If we've already loaded the decl, perform the updates when we finish
2870 // loading this block.
2871 if (Decl *D = GetExistingDecl(ID))
Vassil Vassilev74c3e8c2017-05-19 16:46:06 +00002872 PendingUpdateRecords.push_back(
2873 PendingUpdateRecord(ID, D, /*JustLoaded=*/false));
Guy Benyei11169dd2012-12-18 14:30:41 +00002874 break;
2875 }
2876
2877 case IDENTIFIER_TABLE:
Chris Lattner0e6c9402013-01-20 02:38:54 +00002878 F.IdentifierTableData = Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00002879 if (Record[0]) {
Justin Bognerda4e6502014-04-14 16:34:29 +00002880 F.IdentifierLookupTable = ASTIdentifierLookupTable::Create(
2881 (const unsigned char *)F.IdentifierTableData + Record[0],
2882 (const unsigned char *)F.IdentifierTableData + sizeof(uint32_t),
2883 (const unsigned char *)F.IdentifierTableData,
2884 ASTIdentifierLookupTrait(*this, F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002885
Guy Benyei11169dd2012-12-18 14:30:41 +00002886 PP.getIdentifierTable().setExternalIdentifierLookup(this);
2887 }
2888 break;
2889
2890 case IDENTIFIER_OFFSET: {
2891 if (F.LocalNumIdentifiers != 0) {
2892 Error("duplicate IDENTIFIER_OFFSET record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002893 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002894 }
Chris Lattner0e6c9402013-01-20 02:38:54 +00002895 F.IdentifierOffsets = (const uint32_t *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00002896 F.LocalNumIdentifiers = Record[0];
2897 unsigned LocalBaseIdentifierID = Record[1];
2898 F.BaseIdentifierID = getTotalNumIdentifiers();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002899
Guy Benyei11169dd2012-12-18 14:30:41 +00002900 if (F.LocalNumIdentifiers > 0) {
2901 // Introduce the global -> local mapping for identifiers within this
2902 // module.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002903 GlobalIdentifierMap.insert(std::make_pair(getTotalNumIdentifiers() + 1,
Guy Benyei11169dd2012-12-18 14:30:41 +00002904 &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002905
Guy Benyei11169dd2012-12-18 14:30:41 +00002906 // Introduce the local -> global mapping for identifiers within this
2907 // module.
2908 F.IdentifierRemap.insertOrReplace(
2909 std::make_pair(LocalBaseIdentifierID,
2910 F.BaseIdentifierID - LocalBaseIdentifierID));
Ben Langmuirfe971d92014-08-16 04:54:18 +00002911
Ben Langmuir52ca6782014-10-20 16:27:32 +00002912 IdentifiersLoaded.resize(IdentifiersLoaded.size()
2913 + F.LocalNumIdentifiers);
2914 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002915 break;
2916 }
2917
Richard Smith33e0f7e2015-07-22 02:08:40 +00002918 case INTERESTING_IDENTIFIERS:
2919 F.PreloadIdentifierOffsets.assign(Record.begin(), Record.end());
2920 break;
2921
Ben Langmuir332aafe2014-01-31 01:06:56 +00002922 case EAGERLY_DESERIALIZED_DECLS:
Richard Smith9e2341d2015-03-23 03:25:59 +00002923 // FIXME: Skip reading this record if our ASTConsumer doesn't care
2924 // about "interesting" decls (for instance, if we're building a module).
Guy Benyei11169dd2012-12-18 14:30:41 +00002925 for (unsigned I = 0, N = Record.size(); I != N; ++I)
Ben Langmuir332aafe2014-01-31 01:06:56 +00002926 EagerlyDeserializedDecls.push_back(getGlobalDeclID(F, Record[I]));
Guy Benyei11169dd2012-12-18 14:30:41 +00002927 break;
2928
David Blaikie9ffe5a32017-01-30 05:00:26 +00002929 case MODULAR_CODEGEN_DECLS:
2930 // FIXME: Skip reading this record if our ASTConsumer doesn't care about
2931 // them (ie: if we're not codegenerating this module).
2932 if (F.Kind == MK_MainFile)
2933 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2934 EagerlyDeserializedDecls.push_back(getGlobalDeclID(F, Record[I]));
2935 break;
2936
Guy Benyei11169dd2012-12-18 14:30:41 +00002937 case SPECIAL_TYPES:
Douglas Gregor44180f82013-02-01 23:45:03 +00002938 if (SpecialTypes.empty()) {
2939 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2940 SpecialTypes.push_back(getGlobalTypeID(F, Record[I]));
2941 break;
2942 }
2943
2944 if (SpecialTypes.size() != Record.size()) {
2945 Error("invalid special-types record");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002946 return Failure;
Douglas Gregor44180f82013-02-01 23:45:03 +00002947 }
2948
2949 for (unsigned I = 0, N = Record.size(); I != N; ++I) {
2950 serialization::TypeID ID = getGlobalTypeID(F, Record[I]);
2951 if (!SpecialTypes[I])
2952 SpecialTypes[I] = ID;
2953 // FIXME: If ID && SpecialTypes[I] != ID, do we need a separate
2954 // merge step?
2955 }
Guy Benyei11169dd2012-12-18 14:30:41 +00002956 break;
2957
2958 case STATISTICS:
2959 TotalNumStatements += Record[0];
2960 TotalNumMacros += Record[1];
2961 TotalLexicalDeclContexts += Record[2];
2962 TotalVisibleDeclContexts += Record[3];
2963 break;
2964
2965 case UNUSED_FILESCOPED_DECLS:
2966 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2967 UnusedFileScopedDecls.push_back(getGlobalDeclID(F, Record[I]));
2968 break;
2969
2970 case DELEGATING_CTORS:
2971 for (unsigned I = 0, N = Record.size(); I != N; ++I)
2972 DelegatingCtorDecls.push_back(getGlobalDeclID(F, Record[I]));
2973 break;
2974
2975 case WEAK_UNDECLARED_IDENTIFIERS:
2976 if (Record.size() % 4 != 0) {
2977 Error("invalid weak identifiers record");
Ben Langmuir2c9af442014-04-10 17:57:43 +00002978 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00002979 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002980
2981 // FIXME: Ignore weak undeclared identifiers from non-original PCH
Guy Benyei11169dd2012-12-18 14:30:41 +00002982 // files. This isn't the way to do it :)
2983 WeakUndeclaredIdentifiers.clear();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00002984
Guy Benyei11169dd2012-12-18 14:30:41 +00002985 // Translate the weak, undeclared identifiers into global IDs.
2986 for (unsigned I = 0, N = Record.size(); I < N; /* in loop */) {
2987 WeakUndeclaredIdentifiers.push_back(
2988 getGlobalIdentifierID(F, Record[I++]));
2989 WeakUndeclaredIdentifiers.push_back(
2990 getGlobalIdentifierID(F, Record[I++]));
2991 WeakUndeclaredIdentifiers.push_back(
2992 ReadSourceLocation(F, Record, I).getRawEncoding());
2993 WeakUndeclaredIdentifiers.push_back(Record[I++]);
2994 }
2995 break;
2996
Guy Benyei11169dd2012-12-18 14:30:41 +00002997 case SELECTOR_OFFSETS: {
Chris Lattner0e6c9402013-01-20 02:38:54 +00002998 F.SelectorOffsets = (const uint32_t *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00002999 F.LocalNumSelectors = Record[0];
3000 unsigned LocalBaseSelectorID = Record[1];
3001 F.BaseSelectorID = getTotalNumSelectors();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003002
Guy Benyei11169dd2012-12-18 14:30:41 +00003003 if (F.LocalNumSelectors > 0) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003004 // Introduce the global -> local mapping for selectors within this
Guy Benyei11169dd2012-12-18 14:30:41 +00003005 // module.
3006 GlobalSelectorMap.insert(std::make_pair(getTotalNumSelectors()+1, &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003007
3008 // Introduce the local -> global mapping for selectors within this
Guy Benyei11169dd2012-12-18 14:30:41 +00003009 // module.
3010 F.SelectorRemap.insertOrReplace(
3011 std::make_pair(LocalBaseSelectorID,
3012 F.BaseSelectorID - LocalBaseSelectorID));
Ben Langmuir52ca6782014-10-20 16:27:32 +00003013
3014 SelectorsLoaded.resize(SelectorsLoaded.size() + F.LocalNumSelectors);
Guy Benyei11169dd2012-12-18 14:30:41 +00003015 }
3016 break;
3017 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003018
Guy Benyei11169dd2012-12-18 14:30:41 +00003019 case METHOD_POOL:
Chris Lattner0e6c9402013-01-20 02:38:54 +00003020 F.SelectorLookupTableData = (const unsigned char *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003021 if (Record[0])
3022 F.SelectorLookupTable
3023 = ASTSelectorLookupTable::Create(
3024 F.SelectorLookupTableData + Record[0],
3025 F.SelectorLookupTableData,
3026 ASTSelectorLookupTrait(*this, F));
3027 TotalNumMethodPoolEntries += Record[1];
3028 break;
3029
3030 case REFERENCED_SELECTOR_POOL:
3031 if (!Record.empty()) {
3032 for (unsigned Idx = 0, N = Record.size() - 1; Idx < N; /* in loop */) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003033 ReferencedSelectorsData.push_back(getGlobalSelectorID(F,
Guy Benyei11169dd2012-12-18 14:30:41 +00003034 Record[Idx++]));
3035 ReferencedSelectorsData.push_back(ReadSourceLocation(F, Record, Idx).
3036 getRawEncoding());
3037 }
3038 }
3039 break;
3040
Erik Verbruggenb34c79f2017-05-30 11:54:55 +00003041 case PP_CONDITIONAL_STACK:
3042 if (!Record.empty()) {
Erik Verbruggen4d1eb2d2017-11-03 09:40:07 +00003043 unsigned Idx = 0, End = Record.size() - 1;
3044 bool ReachedEOFWhileSkipping = Record[Idx++];
3045 llvm::Optional<Preprocessor::PreambleSkipInfo> SkipInfo;
3046 if (ReachedEOFWhileSkipping) {
3047 SourceLocation HashToken = ReadSourceLocation(F, Record, Idx);
3048 SourceLocation IfTokenLoc = ReadSourceLocation(F, Record, Idx);
3049 bool FoundNonSkipPortion = Record[Idx++];
3050 bool FoundElse = Record[Idx++];
3051 SourceLocation ElseLoc = ReadSourceLocation(F, Record, Idx);
3052 SkipInfo.emplace(HashToken, IfTokenLoc, FoundNonSkipPortion,
3053 FoundElse, ElseLoc);
3054 }
Erik Verbruggenb34c79f2017-05-30 11:54:55 +00003055 SmallVector<PPConditionalInfo, 4> ConditionalStack;
Erik Verbruggen4d1eb2d2017-11-03 09:40:07 +00003056 while (Idx < End) {
Erik Verbruggenb34c79f2017-05-30 11:54:55 +00003057 auto Loc = ReadSourceLocation(F, Record, Idx);
3058 bool WasSkipping = Record[Idx++];
3059 bool FoundNonSkip = Record[Idx++];
3060 bool FoundElse = Record[Idx++];
3061 ConditionalStack.push_back(
3062 {Loc, WasSkipping, FoundNonSkip, FoundElse});
3063 }
Erik Verbruggen4d1eb2d2017-11-03 09:40:07 +00003064 PP.setReplayablePreambleConditionalStack(ConditionalStack, SkipInfo);
Erik Verbruggenb34c79f2017-05-30 11:54:55 +00003065 }
3066 break;
3067
Guy Benyei11169dd2012-12-18 14:30:41 +00003068 case PP_COUNTER_VALUE:
3069 if (!Record.empty() && Listener)
3070 Listener->ReadCounter(F, Record[0]);
3071 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003072
Guy Benyei11169dd2012-12-18 14:30:41 +00003073 case FILE_SORTED_DECLS:
Chris Lattner0e6c9402013-01-20 02:38:54 +00003074 F.FileSortedDecls = (const DeclID *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003075 F.NumFileSortedDecls = Record[0];
3076 break;
3077
3078 case SOURCE_LOCATION_OFFSETS: {
Chris Lattner0e6c9402013-01-20 02:38:54 +00003079 F.SLocEntryOffsets = (const uint32_t *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003080 F.LocalNumSLocEntries = Record[0];
3081 unsigned SLocSpaceSize = Record[1];
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00003082 std::tie(F.SLocEntryBaseID, F.SLocEntryBaseOffset) =
Ben Langmuir52ca6782014-10-20 16:27:32 +00003083 SourceMgr.AllocateLoadedSLocEntries(F.LocalNumSLocEntries,
Guy Benyei11169dd2012-12-18 14:30:41 +00003084 SLocSpaceSize);
Richard Smith78d81ec2015-08-12 22:25:24 +00003085 if (!F.SLocEntryBaseID) {
3086 Error("ran out of source locations");
3087 break;
3088 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003089 // Make our entry in the range map. BaseID is negative and growing, so
3090 // we invert it. Because we invert it, though, we need the other end of
3091 // the range.
3092 unsigned RangeStart =
3093 unsigned(-F.SLocEntryBaseID) - F.LocalNumSLocEntries + 1;
3094 GlobalSLocEntryMap.insert(std::make_pair(RangeStart, &F));
3095 F.FirstLoc = SourceLocation::getFromRawEncoding(F.SLocEntryBaseOffset);
3096
3097 // SLocEntryBaseOffset is lower than MaxLoadedOffset and decreasing.
3098 assert((F.SLocEntryBaseOffset & (1U << 31U)) == 0);
3099 GlobalSLocOffsetMap.insert(
3100 std::make_pair(SourceManager::MaxLoadedOffset - F.SLocEntryBaseOffset
3101 - SLocSpaceSize,&F));
3102
3103 // Initialize the remapping table.
3104 // Invalid stays invalid.
Richard Smithb9eab6d2014-03-20 19:44:17 +00003105 F.SLocRemap.insertOrReplace(std::make_pair(0U, 0));
Guy Benyei11169dd2012-12-18 14:30:41 +00003106 // This module. Base was 2 when being compiled.
Richard Smithb9eab6d2014-03-20 19:44:17 +00003107 F.SLocRemap.insertOrReplace(std::make_pair(2U,
Guy Benyei11169dd2012-12-18 14:30:41 +00003108 static_cast<int>(F.SLocEntryBaseOffset - 2)));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003109
Guy Benyei11169dd2012-12-18 14:30:41 +00003110 TotalNumSLocEntries += F.LocalNumSLocEntries;
3111 break;
3112 }
3113
Richard Smith37a93df2017-02-18 00:32:02 +00003114 case MODULE_OFFSET_MAP:
3115 F.ModuleOffsetMap = Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00003116 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00003117
3118 case SOURCE_MANAGER_LINE_TABLE:
3119 if (ParseLineTable(F, Record))
Ben Langmuir2c9af442014-04-10 17:57:43 +00003120 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003121 break;
3122
3123 case SOURCE_LOCATION_PRELOADS: {
3124 // Need to transform from the local view (1-based IDs) to the global view,
3125 // which is based off F.SLocEntryBaseID.
3126 if (!F.PreloadSLocEntries.empty()) {
3127 Error("Multiple SOURCE_LOCATION_PRELOADS records in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003128 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003129 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003130
Guy Benyei11169dd2012-12-18 14:30:41 +00003131 F.PreloadSLocEntries.swap(Record);
3132 break;
3133 }
3134
3135 case EXT_VECTOR_DECLS:
3136 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3137 ExtVectorDecls.push_back(getGlobalDeclID(F, Record[I]));
3138 break;
3139
3140 case VTABLE_USES:
3141 if (Record.size() % 3 != 0) {
3142 Error("Invalid VTABLE_USES record");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003143 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003144 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003145
Guy Benyei11169dd2012-12-18 14:30:41 +00003146 // Later tables overwrite earlier ones.
3147 // FIXME: Modules will have some trouble with this. This is clearly not
3148 // the right way to do this.
3149 VTableUses.clear();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003150
Guy Benyei11169dd2012-12-18 14:30:41 +00003151 for (unsigned Idx = 0, N = Record.size(); Idx != N; /* In loop */) {
3152 VTableUses.push_back(getGlobalDeclID(F, Record[Idx++]));
3153 VTableUses.push_back(
3154 ReadSourceLocation(F, Record, Idx).getRawEncoding());
3155 VTableUses.push_back(Record[Idx++]);
3156 }
3157 break;
3158
Guy Benyei11169dd2012-12-18 14:30:41 +00003159 case PENDING_IMPLICIT_INSTANTIATIONS:
3160 if (PendingInstantiations.size() % 2 != 0) {
3161 Error("Invalid existing PendingInstantiations");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003162 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003163 }
3164
3165 if (Record.size() % 2 != 0) {
3166 Error("Invalid PENDING_IMPLICIT_INSTANTIATIONS block");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003167 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003168 }
3169
3170 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
3171 PendingInstantiations.push_back(getGlobalDeclID(F, Record[I++]));
3172 PendingInstantiations.push_back(
3173 ReadSourceLocation(F, Record, I).getRawEncoding());
3174 }
3175 break;
3176
3177 case SEMA_DECL_REFS:
Richard Smith96269c52016-09-29 22:49:46 +00003178 if (Record.size() != 3) {
Richard Smith3d8e97e2013-10-18 06:54:39 +00003179 Error("Invalid SEMA_DECL_REFS block");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003180 return Failure;
Richard Smith3d8e97e2013-10-18 06:54:39 +00003181 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003182 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3183 SemaDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
3184 break;
3185
3186 case PPD_ENTITIES_OFFSETS: {
Chris Lattner0e6c9402013-01-20 02:38:54 +00003187 F.PreprocessedEntityOffsets = (const PPEntityOffset *)Blob.data();
3188 assert(Blob.size() % sizeof(PPEntityOffset) == 0);
3189 F.NumPreprocessedEntities = Blob.size() / sizeof(PPEntityOffset);
Guy Benyei11169dd2012-12-18 14:30:41 +00003190
3191 unsigned LocalBasePreprocessedEntityID = Record[0];
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003192
Guy Benyei11169dd2012-12-18 14:30:41 +00003193 unsigned StartingID;
3194 if (!PP.getPreprocessingRecord())
3195 PP.createPreprocessingRecord();
3196 if (!PP.getPreprocessingRecord()->getExternalSource())
3197 PP.getPreprocessingRecord()->SetExternalSource(*this);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003198 StartingID
Guy Benyei11169dd2012-12-18 14:30:41 +00003199 = PP.getPreprocessingRecord()
Ben Langmuir52ca6782014-10-20 16:27:32 +00003200 ->allocateLoadedEntities(F.NumPreprocessedEntities);
Guy Benyei11169dd2012-12-18 14:30:41 +00003201 F.BasePreprocessedEntityID = StartingID;
3202
3203 if (F.NumPreprocessedEntities > 0) {
3204 // Introduce the global -> local mapping for preprocessed entities in
3205 // this module.
3206 GlobalPreprocessedEntityMap.insert(std::make_pair(StartingID, &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003207
Guy Benyei11169dd2012-12-18 14:30:41 +00003208 // Introduce the local -> global mapping for preprocessed entities in
3209 // this module.
3210 F.PreprocessedEntityRemap.insertOrReplace(
3211 std::make_pair(LocalBasePreprocessedEntityID,
3212 F.BasePreprocessedEntityID - LocalBasePreprocessedEntityID));
3213 }
3214
3215 break;
3216 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003217
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003218 case DECL_UPDATE_OFFSETS:
Guy Benyei11169dd2012-12-18 14:30:41 +00003219 if (Record.size() % 2 != 0) {
3220 Error("invalid DECL_UPDATE_OFFSETS block in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003221 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003222 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00003223 for (unsigned I = 0, N = Record.size(); I != N; I += 2) {
3224 GlobalDeclID ID = getGlobalDeclID(F, Record[I]);
3225 DeclUpdateOffsets[ID].push_back(std::make_pair(&F, Record[I + 1]));
3226
3227 // If we've already loaded the decl, perform the updates when we finish
3228 // loading this block.
3229 if (Decl *D = GetExistingDecl(ID))
Vassil Vassilev74c3e8c2017-05-19 16:46:06 +00003230 PendingUpdateRecords.push_back(
3231 PendingUpdateRecord(ID, D, /*JustLoaded=*/false));
Richard Smithcd45dbc2014-04-19 03:48:30 +00003232 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003233 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00003234
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003235 case OBJC_CATEGORIES_MAP:
Guy Benyei11169dd2012-12-18 14:30:41 +00003236 if (F.LocalNumObjCCategoriesInMap != 0) {
3237 Error("duplicate OBJC_CATEGORIES_MAP record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003238 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003239 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003240
Guy Benyei11169dd2012-12-18 14:30:41 +00003241 F.LocalNumObjCCategoriesInMap = Record[0];
Chris Lattner0e6c9402013-01-20 02:38:54 +00003242 F.ObjCCategoriesMap = (const ObjCCategoriesInfo *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003243 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003244
Guy Benyei11169dd2012-12-18 14:30:41 +00003245 case OBJC_CATEGORIES:
3246 F.ObjCCategories.swap(Record);
3247 break;
Richard Smithc2bb8182015-03-24 06:36:48 +00003248
Guy Benyei11169dd2012-12-18 14:30:41 +00003249 case CUDA_SPECIAL_DECL_REFS:
3250 // Later tables overwrite earlier ones.
3251 // FIXME: Modules will have trouble with this.
3252 CUDASpecialDeclRefs.clear();
3253 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3254 CUDASpecialDeclRefs.push_back(getGlobalDeclID(F, Record[I]));
3255 break;
3256
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003257 case HEADER_SEARCH_TABLE:
Chris Lattner0e6c9402013-01-20 02:38:54 +00003258 F.HeaderFileInfoTableData = Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003259 F.LocalNumHeaderFileInfos = Record[1];
Guy Benyei11169dd2012-12-18 14:30:41 +00003260 if (Record[0]) {
3261 F.HeaderFileInfoTable
3262 = HeaderFileInfoLookupTable::Create(
3263 (const unsigned char *)F.HeaderFileInfoTableData + Record[0],
3264 (const unsigned char *)F.HeaderFileInfoTableData,
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003265 HeaderFileInfoTrait(*this, F,
Guy Benyei11169dd2012-12-18 14:30:41 +00003266 &PP.getHeaderSearchInfo(),
Chris Lattner0e6c9402013-01-20 02:38:54 +00003267 Blob.data() + Record[2]));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003268
Guy Benyei11169dd2012-12-18 14:30:41 +00003269 PP.getHeaderSearchInfo().SetExternalSource(this);
3270 if (!PP.getHeaderSearchInfo().getExternalLookup())
3271 PP.getHeaderSearchInfo().SetExternalLookup(this);
3272 }
3273 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003274
Guy Benyei11169dd2012-12-18 14:30:41 +00003275 case FP_PRAGMA_OPTIONS:
3276 // Later tables overwrite earlier ones.
3277 FPPragmaOptions.swap(Record);
3278 break;
3279
3280 case OPENCL_EXTENSIONS:
Yaxun Liu5b746652016-12-18 05:18:55 +00003281 for (unsigned I = 0, E = Record.size(); I != E; ) {
3282 auto Name = ReadString(Record, I);
3283 auto &Opt = OpenCLExtensions.OptMap[Name];
Yaxun Liucc2741c2016-12-18 06:35:06 +00003284 Opt.Supported = Record[I++] != 0;
3285 Opt.Enabled = Record[I++] != 0;
Yaxun Liu5b746652016-12-18 05:18:55 +00003286 Opt.Avail = Record[I++];
3287 Opt.Core = Record[I++];
3288 }
3289 break;
3290
3291 case OPENCL_EXTENSION_TYPES:
3292 for (unsigned I = 0, E = Record.size(); I != E;) {
3293 auto TypeID = static_cast<::TypeID>(Record[I++]);
3294 auto *Type = GetType(TypeID).getTypePtr();
3295 auto NumExt = static_cast<unsigned>(Record[I++]);
3296 for (unsigned II = 0; II != NumExt; ++II) {
3297 auto Ext = ReadString(Record, I);
3298 OpenCLTypeExtMap[Type].insert(Ext);
3299 }
3300 }
3301 break;
3302
3303 case OPENCL_EXTENSION_DECLS:
3304 for (unsigned I = 0, E = Record.size(); I != E;) {
3305 auto DeclID = static_cast<::DeclID>(Record[I++]);
3306 auto *Decl = GetDecl(DeclID);
3307 auto NumExt = static_cast<unsigned>(Record[I++]);
3308 for (unsigned II = 0; II != NumExt; ++II) {
3309 auto Ext = ReadString(Record, I);
3310 OpenCLDeclExtMap[Decl].insert(Ext);
3311 }
3312 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003313 break;
3314
3315 case TENTATIVE_DEFINITIONS:
3316 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3317 TentativeDefinitions.push_back(getGlobalDeclID(F, Record[I]));
3318 break;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003319
Guy Benyei11169dd2012-12-18 14:30:41 +00003320 case KNOWN_NAMESPACES:
3321 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3322 KnownNamespaces.push_back(getGlobalDeclID(F, Record[I]));
3323 break;
Nick Lewycky8334af82013-01-26 00:35:08 +00003324
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00003325 case UNDEFINED_BUT_USED:
3326 if (UndefinedButUsed.size() % 2 != 0) {
3327 Error("Invalid existing UndefinedButUsed");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003328 return Failure;
Nick Lewycky8334af82013-01-26 00:35:08 +00003329 }
3330
3331 if (Record.size() % 2 != 0) {
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00003332 Error("invalid undefined-but-used record");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003333 return Failure;
Nick Lewycky8334af82013-01-26 00:35:08 +00003334 }
3335 for (unsigned I = 0, N = Record.size(); I != N; /* in loop */) {
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00003336 UndefinedButUsed.push_back(getGlobalDeclID(F, Record[I++]));
3337 UndefinedButUsed.push_back(
Nick Lewycky8334af82013-01-26 00:35:08 +00003338 ReadSourceLocation(F, Record, I).getRawEncoding());
3339 }
3340 break;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003341
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00003342 case DELETE_EXPRS_TO_ANALYZE:
3343 for (unsigned I = 0, N = Record.size(); I != N;) {
3344 DelayedDeleteExprs.push_back(getGlobalDeclID(F, Record[I++]));
3345 const uint64_t Count = Record[I++];
3346 DelayedDeleteExprs.push_back(Count);
3347 for (uint64_t C = 0; C < Count; ++C) {
3348 DelayedDeleteExprs.push_back(ReadSourceLocation(F, Record, I).getRawEncoding());
3349 bool IsArrayForm = Record[I++] == 1;
3350 DelayedDeleteExprs.push_back(IsArrayForm);
3351 }
3352 }
3353 break;
Nick Lewycky8334af82013-01-26 00:35:08 +00003354
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003355 case IMPORTED_MODULES:
Manman Ren11f2a472016-08-18 17:42:15 +00003356 if (!F.isModule()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003357 // If we aren't loading a module (which has its own exports), make
3358 // all of the imported modules visible.
3359 // FIXME: Deal with macros-only imports.
Richard Smith56be7542014-03-21 00:33:59 +00003360 for (unsigned I = 0, N = Record.size(); I != N; /**/) {
3361 unsigned GlobalID = getGlobalSubmoduleID(F, Record[I++]);
3362 SourceLocation Loc = ReadSourceLocation(F, Record, I);
Graydon Hoare9c982442017-01-18 20:36:59 +00003363 if (GlobalID) {
Aaron Ballman4f45b712014-03-21 15:22:56 +00003364 ImportedModules.push_back(ImportedSubmodule(GlobalID, Loc));
Graydon Hoare9c982442017-01-18 20:36:59 +00003365 if (DeserializationListener)
3366 DeserializationListener->ModuleImportRead(GlobalID, Loc);
3367 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003368 }
3369 }
3370 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00003371
Guy Benyei11169dd2012-12-18 14:30:41 +00003372 case MACRO_OFFSET: {
3373 if (F.LocalNumMacros != 0) {
3374 Error("duplicate MACRO_OFFSET record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00003375 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00003376 }
Chris Lattner0e6c9402013-01-20 02:38:54 +00003377 F.MacroOffsets = (const uint32_t *)Blob.data();
Guy Benyei11169dd2012-12-18 14:30:41 +00003378 F.LocalNumMacros = Record[0];
3379 unsigned LocalBaseMacroID = Record[1];
3380 F.BaseMacroID = getTotalNumMacros();
3381
3382 if (F.LocalNumMacros > 0) {
3383 // Introduce the global -> local mapping for macros within this module.
3384 GlobalMacroMap.insert(std::make_pair(getTotalNumMacros() + 1, &F));
3385
3386 // Introduce the local -> global mapping for macros within this module.
3387 F.MacroRemap.insertOrReplace(
3388 std::make_pair(LocalBaseMacroID,
3389 F.BaseMacroID - LocalBaseMacroID));
Ben Langmuir52ca6782014-10-20 16:27:32 +00003390
3391 MacrosLoaded.resize(MacrosLoaded.size() + F.LocalNumMacros);
Guy Benyei11169dd2012-12-18 14:30:41 +00003392 }
3393 break;
3394 }
3395
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003396 case LATE_PARSED_TEMPLATE:
Richard Smithe40f2ba2013-08-07 21:41:30 +00003397 LateParsedTemplates.append(Record.begin(), Record.end());
3398 break;
Dario Domizioli13a0a382014-05-23 12:13:25 +00003399
3400 case OPTIMIZE_PRAGMA_OPTIONS:
3401 if (Record.size() != 1) {
3402 Error("invalid pragma optimize record");
3403 return Failure;
3404 }
3405 OptimizeOffPragmaLocation = ReadSourceLocation(F, Record[0]);
3406 break;
Nico Weber72889432014-09-06 01:25:55 +00003407
Nico Weber779355f2016-03-02 23:22:00 +00003408 case MSSTRUCT_PRAGMA_OPTIONS:
3409 if (Record.size() != 1) {
3410 Error("invalid pragma ms_struct record");
3411 return Failure;
3412 }
3413 PragmaMSStructState = Record[0];
3414 break;
3415
Nico Weber42932312016-03-03 00:17:35 +00003416 case POINTERS_TO_MEMBERS_PRAGMA_OPTIONS:
3417 if (Record.size() != 2) {
3418 Error("invalid pragma ms_struct record");
3419 return Failure;
3420 }
3421 PragmaMSPointersToMembersState = Record[0];
3422 PointersToMembersPragmaLocation = ReadSourceLocation(F, Record[1]);
3423 break;
3424
Nico Weber72889432014-09-06 01:25:55 +00003425 case UNUSED_LOCAL_TYPEDEF_NAME_CANDIDATES:
3426 for (unsigned I = 0, N = Record.size(); I != N; ++I)
3427 UnusedLocalTypedefNameCandidates.push_back(
3428 getGlobalDeclID(F, Record[I]));
3429 break;
Justin Lebar67a78a62016-10-08 22:15:58 +00003430
3431 case CUDA_PRAGMA_FORCE_HOST_DEVICE_DEPTH:
3432 if (Record.size() != 1) {
3433 Error("invalid cuda pragma options record");
3434 return Failure;
3435 }
3436 ForceCUDAHostDeviceDepth = Record[0];
3437 break;
Alex Lorenz7d7e1e02017-03-31 15:36:21 +00003438
3439 case PACK_PRAGMA_OPTIONS: {
3440 if (Record.size() < 3) {
3441 Error("invalid pragma pack record");
3442 return Failure;
3443 }
3444 PragmaPackCurrentValue = Record[0];
3445 PragmaPackCurrentLocation = ReadSourceLocation(F, Record[1]);
3446 unsigned NumStackEntries = Record[2];
3447 unsigned Idx = 3;
3448 // Reset the stack when importing a new module.
3449 PragmaPackStack.clear();
3450 for (unsigned I = 0; I < NumStackEntries; ++I) {
3451 PragmaPackStackEntry Entry;
3452 Entry.Value = Record[Idx++];
3453 Entry.Location = ReadSourceLocation(F, Record[Idx++]);
Alex Lorenz45b40142017-07-28 14:41:21 +00003454 Entry.PushLocation = ReadSourceLocation(F, Record[Idx++]);
Alex Lorenz7d7e1e02017-03-31 15:36:21 +00003455 PragmaPackStrings.push_back(ReadString(Record, Idx));
3456 Entry.SlotLabel = PragmaPackStrings.back();
3457 PragmaPackStack.push_back(Entry);
3458 }
3459 break;
3460 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003461 }
3462 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003463}
3464
Richard Smith37a93df2017-02-18 00:32:02 +00003465void ASTReader::ReadModuleOffsetMap(ModuleFile &F) const {
3466 assert(!F.ModuleOffsetMap.empty() && "no module offset map to read");
3467
3468 // Additional remapping information.
3469 const unsigned char *Data = (const unsigned char*)F.ModuleOffsetMap.data();
3470 const unsigned char *DataEnd = Data + F.ModuleOffsetMap.size();
3471 F.ModuleOffsetMap = StringRef();
3472
3473 // If we see this entry before SOURCE_LOCATION_OFFSETS, add placeholders.
3474 if (F.SLocRemap.find(0) == F.SLocRemap.end()) {
3475 F.SLocRemap.insert(std::make_pair(0U, 0));
3476 F.SLocRemap.insert(std::make_pair(2U, 1));
3477 }
3478
3479 // Continuous range maps we may be updating in our module.
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00003480 using RemapBuilder = ContinuousRangeMap<uint32_t, int, 2>::Builder;
Richard Smith37a93df2017-02-18 00:32:02 +00003481 RemapBuilder SLocRemap(F.SLocRemap);
3482 RemapBuilder IdentifierRemap(F.IdentifierRemap);
3483 RemapBuilder MacroRemap(F.MacroRemap);
3484 RemapBuilder PreprocessedEntityRemap(F.PreprocessedEntityRemap);
3485 RemapBuilder SubmoduleRemap(F.SubmoduleRemap);
3486 RemapBuilder SelectorRemap(F.SelectorRemap);
3487 RemapBuilder DeclRemap(F.DeclRemap);
3488 RemapBuilder TypeRemap(F.TypeRemap);
3489
3490 while (Data < DataEnd) {
Boris Kolpackovd30446f2017-08-31 06:26:43 +00003491 // FIXME: Looking up dependency modules by filename is horrible. Let's
3492 // start fixing this with prebuilt and explicit modules and see how it
3493 // goes...
Richard Smith37a93df2017-02-18 00:32:02 +00003494 using namespace llvm::support;
Boris Kolpackovd30446f2017-08-31 06:26:43 +00003495 ModuleKind Kind = static_cast<ModuleKind>(
3496 endian::readNext<uint8_t, little, unaligned>(Data));
Richard Smith37a93df2017-02-18 00:32:02 +00003497 uint16_t Len = endian::readNext<uint16_t, little, unaligned>(Data);
3498 StringRef Name = StringRef((const char*)Data, Len);
3499 Data += Len;
Boris Kolpackovd30446f2017-08-31 06:26:43 +00003500 ModuleFile *OM = (Kind == MK_PrebuiltModule || Kind == MK_ExplicitModule
3501 ? ModuleMgr.lookupByModuleName(Name)
3502 : ModuleMgr.lookupByFileName(Name));
Richard Smith37a93df2017-02-18 00:32:02 +00003503 if (!OM) {
3504 std::string Msg =
3505 "SourceLocation remap refers to unknown module, cannot find ";
3506 Msg.append(Name);
3507 Error(Msg);
3508 return;
3509 }
3510
3511 uint32_t SLocOffset =
3512 endian::readNext<uint32_t, little, unaligned>(Data);
3513 uint32_t IdentifierIDOffset =
3514 endian::readNext<uint32_t, little, unaligned>(Data);
3515 uint32_t MacroIDOffset =
3516 endian::readNext<uint32_t, little, unaligned>(Data);
3517 uint32_t PreprocessedEntityIDOffset =
3518 endian::readNext<uint32_t, little, unaligned>(Data);
3519 uint32_t SubmoduleIDOffset =
3520 endian::readNext<uint32_t, little, unaligned>(Data);
3521 uint32_t SelectorIDOffset =
3522 endian::readNext<uint32_t, little, unaligned>(Data);
3523 uint32_t DeclIDOffset =
3524 endian::readNext<uint32_t, little, unaligned>(Data);
3525 uint32_t TypeIndexOffset =
3526 endian::readNext<uint32_t, little, unaligned>(Data);
3527
3528 uint32_t None = std::numeric_limits<uint32_t>::max();
3529
3530 auto mapOffset = [&](uint32_t Offset, uint32_t BaseOffset,
3531 RemapBuilder &Remap) {
3532 if (Offset != None)
3533 Remap.insert(std::make_pair(Offset,
3534 static_cast<int>(BaseOffset - Offset)));
3535 };
3536 mapOffset(SLocOffset, OM->SLocEntryBaseOffset, SLocRemap);
3537 mapOffset(IdentifierIDOffset, OM->BaseIdentifierID, IdentifierRemap);
3538 mapOffset(MacroIDOffset, OM->BaseMacroID, MacroRemap);
3539 mapOffset(PreprocessedEntityIDOffset, OM->BasePreprocessedEntityID,
3540 PreprocessedEntityRemap);
3541 mapOffset(SubmoduleIDOffset, OM->BaseSubmoduleID, SubmoduleRemap);
3542 mapOffset(SelectorIDOffset, OM->BaseSelectorID, SelectorRemap);
3543 mapOffset(DeclIDOffset, OM->BaseDeclID, DeclRemap);
3544 mapOffset(TypeIndexOffset, OM->BaseTypeIndex, TypeRemap);
3545
3546 // Global -> local mappings.
3547 F.GlobalToLocalDeclIDs[OM] = DeclIDOffset;
3548 }
3549}
3550
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003551ASTReader::ASTReadResult
3552ASTReader::ReadModuleMapFileBlock(RecordData &Record, ModuleFile &F,
3553 const ModuleFile *ImportedBy,
3554 unsigned ClientLoadCapabilities) {
3555 unsigned Idx = 0;
Richard Smith7ed1bc92014-12-05 22:42:13 +00003556 F.ModuleMapPath = ReadPath(F, Record, Idx);
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003557
3558 // Try to resolve ModuleName in the current header search context and
3559 // verify that it is found in the same module map file as we saved. If the
3560 // top-level AST file is a main file, skip this check because there is no
3561 // usable header search context.
3562 assert(!F.ModuleName.empty() &&
Richard Smithe842a472014-10-22 02:05:46 +00003563 "MODULE_NAME should come before MODULE_MAP_FILE");
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00003564 if (F.Kind == MK_ImplicitModule && ModuleMgr.begin()->Kind != MK_MainFile) {
Richard Smithe842a472014-10-22 02:05:46 +00003565 // An implicitly-loaded module file should have its module listed in some
3566 // module map file that we've already loaded.
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003567 Module *M = PP.getHeaderSearchInfo().lookupModule(F.ModuleName);
Richard Smithe842a472014-10-22 02:05:46 +00003568 auto &Map = PP.getHeaderSearchInfo().getModuleMap();
3569 const FileEntry *ModMap = M ? Map.getModuleMapFileForUniquing(M) : nullptr;
3570 if (!ModMap) {
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003571 assert(ImportedBy && "top-level import should be verified");
Richard Smith0f99d6a2015-08-09 08:48:41 +00003572 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0) {
Bruno Cardoso Lopesa66a3252017-11-17 03:24:11 +00003573 if (auto *ASTFE = M ? M->getASTFile() : nullptr) {
Richard Smith0f99d6a2015-08-09 08:48:41 +00003574 // This module was defined by an imported (explicit) module.
3575 Diag(diag::err_module_file_conflict) << F.ModuleName << F.FileName
3576 << ASTFE->getName();
Bruno Cardoso Lopesa66a3252017-11-17 03:24:11 +00003577 } else {
Richard Smith0f99d6a2015-08-09 08:48:41 +00003578 // This module was built with a different module map.
3579 Diag(diag::err_imported_module_not_found)
3580 << F.ModuleName << F.FileName << ImportedBy->FileName
3581 << F.ModuleMapPath;
Bruno Cardoso Lopesa66a3252017-11-17 03:24:11 +00003582 // In case it was imported by a PCH, there's a chance the user is
3583 // just missing to include the search path to the directory containing
3584 // the modulemap.
3585 if (ImportedBy->Kind == MK_PCH)
3586 Diag(diag::note_imported_by_pch_module_not_found)
3587 << llvm::sys::path::parent_path(F.ModuleMapPath);
3588 }
Richard Smith0f99d6a2015-08-09 08:48:41 +00003589 }
3590 return OutOfDate;
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003591 }
3592
Richard Smithe842a472014-10-22 02:05:46 +00003593 assert(M->Name == F.ModuleName && "found module with different name");
3594
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003595 // Check the primary module map file.
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003596 const FileEntry *StoredModMap = FileMgr.getFile(F.ModuleMapPath);
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003597 if (StoredModMap == nullptr || StoredModMap != ModMap) {
3598 assert(ModMap && "found module is missing module map file");
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003599 assert(ImportedBy && "top-level import should be verified");
3600 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
3601 Diag(diag::err_imported_module_modmap_changed)
3602 << F.ModuleName << ImportedBy->FileName
3603 << ModMap->getName() << F.ModuleMapPath;
3604 return OutOfDate;
3605 }
3606
3607 llvm::SmallPtrSet<const FileEntry *, 1> AdditionalStoredMaps;
3608 for (unsigned I = 0, N = Record[Idx++]; I < N; ++I) {
3609 // FIXME: we should use input files rather than storing names.
Richard Smith7ed1bc92014-12-05 22:42:13 +00003610 std::string Filename = ReadPath(F, Record, Idx);
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00003611 const FileEntry *F =
3612 FileMgr.getFile(Filename, false, false);
3613 if (F == nullptr) {
3614 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
3615 Error("could not find file '" + Filename +"' referenced by AST file");
3616 return OutOfDate;
3617 }
3618 AdditionalStoredMaps.insert(F);
3619 }
3620
3621 // Check any additional module map files (e.g. module.private.modulemap)
3622 // that are not in the pcm.
3623 if (auto *AdditionalModuleMaps = Map.getAdditionalModuleMapFiles(M)) {
3624 for (const FileEntry *ModMap : *AdditionalModuleMaps) {
3625 // Remove files that match
3626 // Note: SmallPtrSet::erase is really remove
3627 if (!AdditionalStoredMaps.erase(ModMap)) {
3628 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
3629 Diag(diag::err_module_different_modmap)
3630 << F.ModuleName << /*new*/0 << ModMap->getName();
3631 return OutOfDate;
3632 }
3633 }
3634 }
3635
3636 // Check any additional module map files that are in the pcm, but not
3637 // found in header search. Cases that match are already removed.
3638 for (const FileEntry *ModMap : AdditionalStoredMaps) {
3639 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
3640 Diag(diag::err_module_different_modmap)
3641 << F.ModuleName << /*not new*/1 << ModMap->getName();
3642 return OutOfDate;
3643 }
3644 }
3645
3646 if (Listener)
3647 Listener->ReadModuleMapFile(F.ModuleMapPath);
3648 return Success;
3649}
3650
Douglas Gregorc1489562013-02-12 23:36:21 +00003651/// \brief Move the given method to the back of the global list of methods.
3652static void moveMethodToBackOfGlobalList(Sema &S, ObjCMethodDecl *Method) {
3653 // Find the entry for this selector in the method pool.
3654 Sema::GlobalMethodPool::iterator Known
3655 = S.MethodPool.find(Method->getSelector());
3656 if (Known == S.MethodPool.end())
3657 return;
3658
3659 // Retrieve the appropriate method list.
3660 ObjCMethodList &Start = Method->isInstanceMethod()? Known->second.first
3661 : Known->second.second;
3662 bool Found = false;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00003663 for (ObjCMethodList *List = &Start; List; List = List->getNext()) {
Douglas Gregorc1489562013-02-12 23:36:21 +00003664 if (!Found) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00003665 if (List->getMethod() == Method) {
Douglas Gregorc1489562013-02-12 23:36:21 +00003666 Found = true;
3667 } else {
3668 // Keep searching.
3669 continue;
3670 }
3671 }
3672
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00003673 if (List->getNext())
Nico Weber2e0c8f72014-12-27 03:58:08 +00003674 List->setMethod(List->getNext()->getMethod());
Douglas Gregorc1489562013-02-12 23:36:21 +00003675 else
Nico Weber2e0c8f72014-12-27 03:58:08 +00003676 List->setMethod(Method);
Douglas Gregorc1489562013-02-12 23:36:21 +00003677 }
3678}
3679
Richard Smithde711422015-04-23 21:20:19 +00003680void ASTReader::makeNamesVisible(const HiddenNames &Names, Module *Owner) {
Richard Smith10434f32015-05-02 02:08:26 +00003681 assert(Owner->NameVisibility != Module::Hidden && "nothing to make visible?");
Richard Smith20e883e2015-04-29 23:20:19 +00003682 for (Decl *D : Names) {
Richard Smith90dc5252017-06-23 01:04:34 +00003683 bool wasHidden = D->isHidden();
3684 D->setVisibleDespiteOwningModule();
Guy Benyei11169dd2012-12-18 14:30:41 +00003685
Richard Smith49f906a2014-03-01 00:08:04 +00003686 if (wasHidden && SemaObj) {
3687 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(D)) {
3688 moveMethodToBackOfGlobalList(*SemaObj, Method);
Douglas Gregorc1489562013-02-12 23:36:21 +00003689 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003690 }
3691 }
3692}
3693
Richard Smith49f906a2014-03-01 00:08:04 +00003694void ASTReader::makeModuleVisible(Module *Mod,
Argyrios Kyrtzidis125df052013-02-01 16:36:12 +00003695 Module::NameVisibilityKind NameVisibility,
Richard Smitha7e2cc62015-05-01 01:53:09 +00003696 SourceLocation ImportLoc) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003697 llvm::SmallPtrSet<Module *, 4> Visited;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003698 SmallVector<Module *, 4> Stack;
Robert Wilhelm25284cc2013-08-23 16:11:15 +00003699 Stack.push_back(Mod);
Guy Benyei11169dd2012-12-18 14:30:41 +00003700 while (!Stack.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +00003701 Mod = Stack.pop_back_val();
Guy Benyei11169dd2012-12-18 14:30:41 +00003702
3703 if (NameVisibility <= Mod->NameVisibility) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +00003704 // This module already has this level of visibility (or greater), so
Guy Benyei11169dd2012-12-18 14:30:41 +00003705 // there is nothing more to do.
3706 continue;
3707 }
Richard Smith49f906a2014-03-01 00:08:04 +00003708
Guy Benyei11169dd2012-12-18 14:30:41 +00003709 if (!Mod->isAvailable()) {
3710 // Modules that aren't available cannot be made visible.
3711 continue;
3712 }
3713
3714 // Update the module's name visibility.
3715 Mod->NameVisibility = NameVisibility;
Richard Smith49f906a2014-03-01 00:08:04 +00003716
Guy Benyei11169dd2012-12-18 14:30:41 +00003717 // If we've already deserialized any names from this module,
3718 // mark them as visible.
3719 HiddenNamesMapType::iterator Hidden = HiddenNamesMap.find(Mod);
3720 if (Hidden != HiddenNamesMap.end()) {
Richard Smith57721ac2014-07-21 04:10:40 +00003721 auto HiddenNames = std::move(*Hidden);
Guy Benyei11169dd2012-12-18 14:30:41 +00003722 HiddenNamesMap.erase(Hidden);
Richard Smithde711422015-04-23 21:20:19 +00003723 makeNamesVisible(HiddenNames.second, HiddenNames.first);
Richard Smith57721ac2014-07-21 04:10:40 +00003724 assert(HiddenNamesMap.find(Mod) == HiddenNamesMap.end() &&
3725 "making names visible added hidden names");
Guy Benyei11169dd2012-12-18 14:30:41 +00003726 }
Dmitri Gribenkoe9bcf5b2013-11-04 21:51:33 +00003727
Guy Benyei11169dd2012-12-18 14:30:41 +00003728 // Push any exported modules onto the stack to be marked as visible.
Argyrios Kyrtzidis8739f7b2013-02-19 19:34:40 +00003729 SmallVector<Module *, 16> Exports;
3730 Mod->getExportedModules(Exports);
3731 for (SmallVectorImpl<Module *>::iterator
3732 I = Exports.begin(), E = Exports.end(); I != E; ++I) {
3733 Module *Exported = *I;
David Blaikie82e95a32014-11-19 07:49:47 +00003734 if (Visited.insert(Exported).second)
Argyrios Kyrtzidis8739f7b2013-02-19 19:34:40 +00003735 Stack.push_back(Exported);
Guy Benyei11169dd2012-12-18 14:30:41 +00003736 }
3737 }
3738}
3739
Richard Smith6561f922016-09-12 21:06:40 +00003740/// We've merged the definition \p MergedDef into the existing definition
3741/// \p Def. Ensure that \p Def is made visible whenever \p MergedDef is made
3742/// visible.
3743void ASTReader::mergeDefinitionVisibility(NamedDecl *Def,
3744 NamedDecl *MergedDef) {
Benjamin Kramera72a70a2016-10-17 13:00:44 +00003745 // FIXME: This doesn't correctly handle the case where MergedDef is visible
3746 // in modules other than its owning module. We should instead give the
3747 // ASTContext a list of merged definitions for Def.
Richard Smith6561f922016-09-12 21:06:40 +00003748 if (Def->isHidden()) {
3749 // If MergedDef is visible or becomes visible, make the definition visible.
Benjamin Kramera72a70a2016-10-17 13:00:44 +00003750 if (!MergedDef->isHidden())
Richard Smith90dc5252017-06-23 01:04:34 +00003751 Def->setVisibleDespiteOwningModule();
Benjamin Kramera72a70a2016-10-17 13:00:44 +00003752 else if (getContext().getLangOpts().ModulesLocalVisibility) {
3753 getContext().mergeDefinitionIntoModule(
3754 Def, MergedDef->getImportedOwningModule(),
3755 /*NotifyListeners*/ false);
3756 PendingMergedDefinitionsToDeduplicate.insert(Def);
3757 } else {
3758 auto SubmoduleID = MergedDef->getOwningModuleID();
3759 assert(SubmoduleID && "hidden definition in no module");
3760 HiddenNamesMap[getSubmodule(SubmoduleID)].push_back(Def);
3761 }
Richard Smith6561f922016-09-12 21:06:40 +00003762 }
3763}
3764
Douglas Gregore060e572013-01-25 01:03:03 +00003765bool ASTReader::loadGlobalIndex() {
3766 if (GlobalIndex)
3767 return false;
3768
3769 if (TriedLoadingGlobalIndex || !UseGlobalIndex ||
Richard Smithdbafb6c2017-06-29 23:23:46 +00003770 !PP.getLangOpts().Modules)
Douglas Gregore060e572013-01-25 01:03:03 +00003771 return true;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003772
Douglas Gregore060e572013-01-25 01:03:03 +00003773 // Try to load the global index.
3774 TriedLoadingGlobalIndex = true;
3775 StringRef ModuleCachePath
3776 = getPreprocessor().getHeaderSearchInfo().getModuleCachePath();
3777 std::pair<GlobalModuleIndex *, GlobalModuleIndex::ErrorCode> Result
Douglas Gregor7029ce12013-03-19 00:28:20 +00003778 = GlobalModuleIndex::readIndex(ModuleCachePath);
Douglas Gregore060e572013-01-25 01:03:03 +00003779 if (!Result.first)
3780 return true;
3781
3782 GlobalIndex.reset(Result.first);
Douglas Gregor7211ac12013-01-25 23:32:03 +00003783 ModuleMgr.setGlobalIndex(GlobalIndex.get());
Douglas Gregore060e572013-01-25 01:03:03 +00003784 return false;
3785}
3786
3787bool ASTReader::isGlobalIndexUnavailable() const {
Richard Smithdbafb6c2017-06-29 23:23:46 +00003788 return PP.getLangOpts().Modules && UseGlobalIndex &&
Douglas Gregore060e572013-01-25 01:03:03 +00003789 !hasGlobalIndex() && TriedLoadingGlobalIndex;
3790}
3791
Dmitri Gribenkof430da42014-02-12 10:33:14 +00003792static void updateModuleTimestamp(ModuleFile &MF) {
3793 // Overwrite the timestamp file contents so that file's mtime changes.
3794 std::string TimestampFilename = MF.getTimestampFilename();
Rafael Espindoladae941a2014-08-25 18:17:04 +00003795 std::error_code EC;
3796 llvm::raw_fd_ostream OS(TimestampFilename, EC, llvm::sys::fs::F_Text);
3797 if (EC)
Dmitri Gribenkof430da42014-02-12 10:33:14 +00003798 return;
3799 OS << "Timestamp file\n";
Alex Lorenz0bafa022017-06-02 10:36:56 +00003800 OS.close();
3801 OS.clear_error(); // Avoid triggering a fatal error.
Dmitri Gribenkof430da42014-02-12 10:33:14 +00003802}
3803
Douglas Gregor6623e1f2015-11-03 18:33:07 +00003804/// \brief Given a cursor at the start of an AST file, scan ahead and drop the
3805/// cursor into the start of the given block ID, returning false on success and
3806/// true on failure.
3807static bool SkipCursorToBlock(BitstreamCursor &Cursor, unsigned BlockID) {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00003808 while (true) {
Douglas Gregor6623e1f2015-11-03 18:33:07 +00003809 llvm::BitstreamEntry Entry = Cursor.advance();
3810 switch (Entry.Kind) {
3811 case llvm::BitstreamEntry::Error:
3812 case llvm::BitstreamEntry::EndBlock:
3813 return true;
3814
3815 case llvm::BitstreamEntry::Record:
3816 // Ignore top-level records.
3817 Cursor.skipRecord(Entry.ID);
3818 break;
3819
3820 case llvm::BitstreamEntry::SubBlock:
3821 if (Entry.ID == BlockID) {
3822 if (Cursor.EnterSubBlock(BlockID))
3823 return true;
3824 // Found it!
3825 return false;
3826 }
3827
3828 if (Cursor.SkipBlock())
3829 return true;
3830 }
3831 }
3832}
3833
Benjamin Kramer0772c422016-02-13 13:42:54 +00003834ASTReader::ASTReadResult ASTReader::ReadAST(StringRef FileName,
Guy Benyei11169dd2012-12-18 14:30:41 +00003835 ModuleKind Type,
3836 SourceLocation ImportLoc,
Graydon Hoaree7196af2016-12-09 21:45:49 +00003837 unsigned ClientLoadCapabilities,
3838 SmallVectorImpl<ImportedSubmodule> *Imported) {
Argyrios Kyrtzidisdc9fdaf2013-05-24 05:44:08 +00003839 llvm::SaveAndRestore<SourceLocation>
3840 SetCurImportLocRAII(CurrentImportLoc, ImportLoc);
3841
Richard Smithd1c46742014-04-30 02:24:17 +00003842 // Defer any pending actions until we get to the end of reading the AST file.
3843 Deserializing AnASTFile(this);
3844
Guy Benyei11169dd2012-12-18 14:30:41 +00003845 // Bump the generation number.
Richard Smithdbafb6c2017-06-29 23:23:46 +00003846 unsigned PreviousGeneration = 0;
3847 if (ContextObj)
3848 PreviousGeneration = incrementGeneration(*ContextObj);
Guy Benyei11169dd2012-12-18 14:30:41 +00003849
3850 unsigned NumModules = ModuleMgr.size();
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003851 SmallVector<ImportedModule, 4> Loaded;
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00003852 switch (ASTReadResult ReadResult =
3853 ReadASTCore(FileName, Type, ImportLoc,
3854 /*ImportedBy=*/nullptr, Loaded, 0, 0,
3855 ASTFileSignature(), ClientLoadCapabilities)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00003856 case Failure:
Douglas Gregor7029ce12013-03-19 00:28:20 +00003857 case Missing:
Guy Benyei11169dd2012-12-18 14:30:41 +00003858 case OutOfDate:
3859 case VersionMismatch:
3860 case ConfigurationMismatch:
Ben Langmuir9801b252014-06-20 00:24:56 +00003861 case HadErrors: {
3862 llvm::SmallPtrSet<ModuleFile *, 4> LoadedSet;
3863 for (const ImportedModule &IM : Loaded)
3864 LoadedSet.insert(IM.Mod);
3865
Duncan P. N. Exon Smith8e6bc1972017-01-28 23:02:12 +00003866 ModuleMgr.removeModules(ModuleMgr.begin() + NumModules, LoadedSet,
Richard Smithdbafb6c2017-06-29 23:23:46 +00003867 PP.getLangOpts().Modules
Duncan P. N. Exon Smith8e6bc1972017-01-28 23:02:12 +00003868 ? &PP.getHeaderSearchInfo().getModuleMap()
3869 : nullptr);
Douglas Gregore060e572013-01-25 01:03:03 +00003870
3871 // If we find that any modules are unusable, the global index is going
3872 // to be out-of-date. Just remove it.
3873 GlobalIndex.reset();
Craig Toppera13603a2014-05-22 05:54:18 +00003874 ModuleMgr.setGlobalIndex(nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00003875 return ReadResult;
Ben Langmuir9801b252014-06-20 00:24:56 +00003876 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003877 case Success:
3878 break;
3879 }
3880
3881 // Here comes stuff that we only do once the entire chain is loaded.
3882
3883 // Load the AST blocks of all of the modules that we loaded.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003884 for (SmallVectorImpl<ImportedModule>::iterator M = Loaded.begin(),
3885 MEnd = Loaded.end();
Guy Benyei11169dd2012-12-18 14:30:41 +00003886 M != MEnd; ++M) {
3887 ModuleFile &F = *M->Mod;
3888
3889 // Read the AST block.
Ben Langmuir2c9af442014-04-10 17:57:43 +00003890 if (ASTReadResult Result = ReadASTBlock(F, ClientLoadCapabilities))
3891 return Result;
Guy Benyei11169dd2012-12-18 14:30:41 +00003892
Douglas Gregor6623e1f2015-11-03 18:33:07 +00003893 // Read the extension blocks.
3894 while (!SkipCursorToBlock(F.Stream, EXTENSION_BLOCK_ID)) {
3895 if (ASTReadResult Result = ReadExtensionBlock(F))
3896 return Result;
3897 }
3898
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003899 // Once read, set the ModuleFile bit base offset and update the size in
Guy Benyei11169dd2012-12-18 14:30:41 +00003900 // bits of all files we've seen.
3901 F.GlobalBitOffset = TotalModulesSizeInBits;
3902 TotalModulesSizeInBits += F.SizeInBits;
3903 GlobalBitOffsetsMap.insert(std::make_pair(F.GlobalBitOffset, &F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003904
Guy Benyei11169dd2012-12-18 14:30:41 +00003905 // Preload SLocEntries.
3906 for (unsigned I = 0, N = F.PreloadSLocEntries.size(); I != N; ++I) {
3907 int Index = int(F.PreloadSLocEntries[I] - 1) + F.SLocEntryBaseID;
3908 // Load it through the SourceManager and don't call ReadSLocEntry()
3909 // directly because the entry may have already been loaded in which case
3910 // calling ReadSLocEntry() directly would trigger an assertion in
3911 // SourceManager.
3912 SourceMgr.getLoadedSLocEntryByID(Index);
3913 }
Richard Smith33e0f7e2015-07-22 02:08:40 +00003914
Richard Smithea741482017-05-01 22:10:47 +00003915 // Map the original source file ID into the ID space of the current
3916 // compilation.
3917 if (F.OriginalSourceFileID.isValid()) {
3918 F.OriginalSourceFileID = FileID::get(
3919 F.SLocEntryBaseID + F.OriginalSourceFileID.getOpaqueValue() - 1);
3920 }
3921
Richard Smith33e0f7e2015-07-22 02:08:40 +00003922 // Preload all the pending interesting identifiers by marking them out of
3923 // date.
3924 for (auto Offset : F.PreloadIdentifierOffsets) {
3925 const unsigned char *Data = reinterpret_cast<const unsigned char *>(
3926 F.IdentifierTableData + Offset);
3927
3928 ASTIdentifierLookupTrait Trait(*this, F);
3929 auto KeyDataLen = Trait.ReadKeyDataLength(Data);
3930 auto Key = Trait.ReadKey(Data, KeyDataLen.first);
Richard Smith79bf9202015-08-24 03:33:22 +00003931 auto &II = PP.getIdentifierTable().getOwn(Key);
3932 II.setOutOfDate(true);
3933
3934 // Mark this identifier as being from an AST file so that we can track
3935 // whether we need to serialize it.
Richard Smitheb4b58f62016-02-05 01:40:54 +00003936 markIdentifierFromAST(*this, II);
Richard Smith79bf9202015-08-24 03:33:22 +00003937
3938 // Associate the ID with the identifier so that the writer can reuse it.
3939 auto ID = Trait.ReadIdentifierID(Data + KeyDataLen.first);
3940 SetIdentifierInfo(ID, &II);
Richard Smith33e0f7e2015-07-22 02:08:40 +00003941 }
Guy Benyei11169dd2012-12-18 14:30:41 +00003942 }
3943
Douglas Gregor603cd862013-03-22 18:50:14 +00003944 // Setup the import locations and notify the module manager that we've
3945 // committed to these module files.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003946 for (SmallVectorImpl<ImportedModule>::iterator M = Loaded.begin(),
3947 MEnd = Loaded.end();
Guy Benyei11169dd2012-12-18 14:30:41 +00003948 M != MEnd; ++M) {
3949 ModuleFile &F = *M->Mod;
Douglas Gregor603cd862013-03-22 18:50:14 +00003950
3951 ModuleMgr.moduleFileAccepted(&F);
3952
3953 // Set the import location.
Argyrios Kyrtzidis71c1af82013-02-01 16:36:14 +00003954 F.DirectImportLoc = ImportLoc;
Richard Smithb22a1d12016-03-27 20:13:24 +00003955 // FIXME: We assume that locations from PCH / preamble do not need
3956 // any translation.
Guy Benyei11169dd2012-12-18 14:30:41 +00003957 if (!M->ImportedBy)
3958 F.ImportLoc = M->ImportLoc;
3959 else
Richard Smithb22a1d12016-03-27 20:13:24 +00003960 F.ImportLoc = TranslateSourceLocation(*M->ImportedBy, M->ImportLoc);
Guy Benyei11169dd2012-12-18 14:30:41 +00003961 }
3962
Richard Smithdbafb6c2017-06-29 23:23:46 +00003963 if (!PP.getLangOpts().CPlusPlus ||
Manman Ren11f2a472016-08-18 17:42:15 +00003964 (Type != MK_ImplicitModule && Type != MK_ExplicitModule &&
3965 Type != MK_PrebuiltModule)) {
Richard Smith33e0f7e2015-07-22 02:08:40 +00003966 // Mark all of the identifiers in the identifier table as being out of date,
3967 // so that various accessors know to check the loaded modules when the
3968 // identifier is used.
3969 //
3970 // For C++ modules, we don't need information on many identifiers (just
3971 // those that provide macros or are poisoned), so we mark all of
3972 // the interesting ones via PreloadIdentifierOffsets.
3973 for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
3974 IdEnd = PP.getIdentifierTable().end();
3975 Id != IdEnd; ++Id)
3976 Id->second->setOutOfDate(true);
3977 }
Manman Rena0f31a02016-04-29 19:04:05 +00003978 // Mark selectors as out of date.
3979 for (auto Sel : SelectorGeneration)
3980 SelectorOutOfDate[Sel.first] = true;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00003981
Guy Benyei11169dd2012-12-18 14:30:41 +00003982 // Resolve any unresolved module exports.
Douglas Gregorfb912652013-03-20 21:10:35 +00003983 for (unsigned I = 0, N = UnresolvedModuleRefs.size(); I != N; ++I) {
3984 UnresolvedModuleRef &Unresolved = UnresolvedModuleRefs[I];
Guy Benyei11169dd2012-12-18 14:30:41 +00003985 SubmoduleID GlobalID = getGlobalSubmoduleID(*Unresolved.File,Unresolved.ID);
3986 Module *ResolvedMod = getSubmodule(GlobalID);
Douglas Gregorfb912652013-03-20 21:10:35 +00003987
3988 switch (Unresolved.Kind) {
3989 case UnresolvedModuleRef::Conflict:
3990 if (ResolvedMod) {
3991 Module::Conflict Conflict;
3992 Conflict.Other = ResolvedMod;
3993 Conflict.Message = Unresolved.String.str();
3994 Unresolved.Mod->Conflicts.push_back(Conflict);
3995 }
3996 continue;
3997
3998 case UnresolvedModuleRef::Import:
Guy Benyei11169dd2012-12-18 14:30:41 +00003999 if (ResolvedMod)
Richard Smith38477db2015-05-02 00:45:56 +00004000 Unresolved.Mod->Imports.insert(ResolvedMod);
Guy Benyei11169dd2012-12-18 14:30:41 +00004001 continue;
Guy Benyei11169dd2012-12-18 14:30:41 +00004002
Douglas Gregorfb912652013-03-20 21:10:35 +00004003 case UnresolvedModuleRef::Export:
4004 if (ResolvedMod || Unresolved.IsWildcard)
4005 Unresolved.Mod->Exports.push_back(
4006 Module::ExportDecl(ResolvedMod, Unresolved.IsWildcard));
4007 continue;
4008 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004009 }
Douglas Gregorfb912652013-03-20 21:10:35 +00004010 UnresolvedModuleRefs.clear();
Daniel Jasperba7f2f72013-09-24 09:14:14 +00004011
Graydon Hoaree7196af2016-12-09 21:45:49 +00004012 if (Imported)
4013 Imported->append(ImportedModules.begin(),
4014 ImportedModules.end());
4015
Daniel Jasperba7f2f72013-09-24 09:14:14 +00004016 // FIXME: How do we load the 'use'd modules? They may not be submodules.
4017 // Might be unnecessary as use declarations are only used to build the
4018 // module itself.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004019
Richard Smithdbafb6c2017-06-29 23:23:46 +00004020 if (ContextObj)
4021 InitializeContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00004022
Richard Smith3d8e97e2013-10-18 06:54:39 +00004023 if (SemaObj)
4024 UpdateSema();
4025
Guy Benyei11169dd2012-12-18 14:30:41 +00004026 if (DeserializationListener)
4027 DeserializationListener->ReaderInitialized(this);
4028
4029 ModuleFile &PrimaryModule = ModuleMgr.getPrimaryModule();
Yaron Keren8b563662015-10-03 10:46:20 +00004030 if (PrimaryModule.OriginalSourceFileID.isValid()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004031 // If this AST file is a precompiled preamble, then set the
4032 // preamble file ID of the source manager to the file source file
4033 // from which the preamble was built.
4034 if (Type == MK_Preamble) {
4035 SourceMgr.setPreambleFileID(PrimaryModule.OriginalSourceFileID);
4036 } else if (Type == MK_MainFile) {
4037 SourceMgr.setMainFileID(PrimaryModule.OriginalSourceFileID);
4038 }
4039 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004040
Guy Benyei11169dd2012-12-18 14:30:41 +00004041 // For any Objective-C class definitions we have already loaded, make sure
4042 // that we load any additional categories.
Richard Smithdbafb6c2017-06-29 23:23:46 +00004043 if (ContextObj) {
4044 for (unsigned I = 0, N = ObjCClassesLoaded.size(); I != N; ++I) {
4045 loadObjCCategories(ObjCClassesLoaded[I]->getGlobalID(),
4046 ObjCClassesLoaded[I],
4047 PreviousGeneration);
4048 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004049 }
Douglas Gregore060e572013-01-25 01:03:03 +00004050
Dmitri Gribenkof430da42014-02-12 10:33:14 +00004051 if (PP.getHeaderSearchInfo()
4052 .getHeaderSearchOpts()
4053 .ModulesValidateOncePerBuildSession) {
4054 // Now we are certain that the module and all modules it depends on are
4055 // up to date. Create or update timestamp files for modules that are
4056 // located in the module cache (not for PCH files that could be anywhere
4057 // in the filesystem).
4058 for (unsigned I = 0, N = Loaded.size(); I != N; ++I) {
4059 ImportedModule &M = Loaded[I];
Richard Smithe842a472014-10-22 02:05:46 +00004060 if (M.Mod->Kind == MK_ImplicitModule) {
Dmitri Gribenkof430da42014-02-12 10:33:14 +00004061 updateModuleTimestamp(*M.Mod);
4062 }
4063 }
4064 }
4065
Guy Benyei11169dd2012-12-18 14:30:41 +00004066 return Success;
4067}
4068
Peter Collingbourne77c89b62016-11-08 04:17:11 +00004069static ASTFileSignature readASTFileSignature(StringRef PCH);
Ben Langmuir487ea142014-10-23 18:05:36 +00004070
Ben Langmuir70a1b812015-03-24 04:43:52 +00004071/// \brief Whether \p Stream starts with the AST/PCH file magic number 'CPCH'.
4072static bool startsWithASTFileMagic(BitstreamCursor &Stream) {
Peter Collingbourne028eb5a2016-11-02 00:08:19 +00004073 return Stream.canSkipToPos(4) &&
4074 Stream.Read(8) == 'C' &&
Ben Langmuir70a1b812015-03-24 04:43:52 +00004075 Stream.Read(8) == 'P' &&
4076 Stream.Read(8) == 'C' &&
4077 Stream.Read(8) == 'H';
4078}
4079
Richard Smith0f99d6a2015-08-09 08:48:41 +00004080static unsigned moduleKindForDiagnostic(ModuleKind Kind) {
4081 switch (Kind) {
4082 case MK_PCH:
4083 return 0; // PCH
4084 case MK_ImplicitModule:
4085 case MK_ExplicitModule:
Manman Ren11f2a472016-08-18 17:42:15 +00004086 case MK_PrebuiltModule:
Richard Smith0f99d6a2015-08-09 08:48:41 +00004087 return 1; // module
4088 case MK_MainFile:
4089 case MK_Preamble:
4090 return 2; // main source file
4091 }
4092 llvm_unreachable("unknown module kind");
4093}
4094
Guy Benyei11169dd2012-12-18 14:30:41 +00004095ASTReader::ASTReadResult
4096ASTReader::ReadASTCore(StringRef FileName,
4097 ModuleKind Type,
4098 SourceLocation ImportLoc,
4099 ModuleFile *ImportedBy,
Dmitri Gribenkof8579502013-01-12 19:30:44 +00004100 SmallVectorImpl<ImportedModule> &Loaded,
Douglas Gregor7029ce12013-03-19 00:28:20 +00004101 off_t ExpectedSize, time_t ExpectedModTime,
Ben Langmuir487ea142014-10-23 18:05:36 +00004102 ASTFileSignature ExpectedSignature,
Guy Benyei11169dd2012-12-18 14:30:41 +00004103 unsigned ClientLoadCapabilities) {
4104 ModuleFile *M;
Guy Benyei11169dd2012-12-18 14:30:41 +00004105 std::string ErrorStr;
Douglas Gregor7029ce12013-03-19 00:28:20 +00004106 ModuleManager::AddModuleResult AddResult
4107 = ModuleMgr.addModule(FileName, Type, ImportLoc, ImportedBy,
Richard Smith053f6c62014-05-16 23:01:30 +00004108 getGeneration(), ExpectedSize, ExpectedModTime,
Ben Langmuir487ea142014-10-23 18:05:36 +00004109 ExpectedSignature, readASTFileSignature,
Douglas Gregor7029ce12013-03-19 00:28:20 +00004110 M, ErrorStr);
Guy Benyei11169dd2012-12-18 14:30:41 +00004111
Douglas Gregor7029ce12013-03-19 00:28:20 +00004112 switch (AddResult) {
4113 case ModuleManager::AlreadyLoaded:
4114 return Success;
4115
4116 case ModuleManager::NewlyLoaded:
4117 // Load module file below.
4118 break;
4119
4120 case ModuleManager::Missing:
Richard Smithe842a472014-10-22 02:05:46 +00004121 // The module file was missing; if the client can handle that, return
Douglas Gregor7029ce12013-03-19 00:28:20 +00004122 // it.
4123 if (ClientLoadCapabilities & ARR_Missing)
4124 return Missing;
4125
4126 // Otherwise, return an error.
Richard Smith0f99d6a2015-08-09 08:48:41 +00004127 Diag(diag::err_module_file_not_found) << moduleKindForDiagnostic(Type)
Adrian Prantlb3b5a732016-08-29 20:46:59 +00004128 << FileName << !ErrorStr.empty()
Richard Smith0f99d6a2015-08-09 08:48:41 +00004129 << ErrorStr;
Douglas Gregor7029ce12013-03-19 00:28:20 +00004130 return Failure;
4131
4132 case ModuleManager::OutOfDate:
4133 // We couldn't load the module file because it is out-of-date. If the
4134 // client can handle out-of-date, return it.
4135 if (ClientLoadCapabilities & ARR_OutOfDate)
4136 return OutOfDate;
4137
4138 // Otherwise, return an error.
Richard Smith0f99d6a2015-08-09 08:48:41 +00004139 Diag(diag::err_module_file_out_of_date) << moduleKindForDiagnostic(Type)
Adrian Prantl9a06a882016-08-29 20:46:56 +00004140 << FileName << !ErrorStr.empty()
Richard Smith0f99d6a2015-08-09 08:48:41 +00004141 << ErrorStr;
Guy Benyei11169dd2012-12-18 14:30:41 +00004142 return Failure;
4143 }
4144
Douglas Gregor7029ce12013-03-19 00:28:20 +00004145 assert(M && "Missing module file");
Guy Benyei11169dd2012-12-18 14:30:41 +00004146
Guy Benyei11169dd2012-12-18 14:30:41 +00004147 ModuleFile &F = *M;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004148 BitstreamCursor &Stream = F.Stream;
Peter Collingbourne77c89b62016-11-08 04:17:11 +00004149 Stream = BitstreamCursor(PCHContainerRdr.ExtractPCH(*F.Buffer));
Adrian Prantlcbc368c2015-02-25 02:44:04 +00004150 F.SizeInBits = F.Buffer->getBufferSize() * 8;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004151
Guy Benyei11169dd2012-12-18 14:30:41 +00004152 // Sniff for the signature.
Ben Langmuir70a1b812015-03-24 04:43:52 +00004153 if (!startsWithASTFileMagic(Stream)) {
Richard Smith0f99d6a2015-08-09 08:48:41 +00004154 Diag(diag::err_module_file_invalid) << moduleKindForDiagnostic(Type)
4155 << FileName;
Guy Benyei11169dd2012-12-18 14:30:41 +00004156 return Failure;
4157 }
4158
4159 // This is used for compatibility with older PCH formats.
4160 bool HaveReadControlBlock = false;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004161 while (true) {
Chris Lattnerefa77172013-01-20 00:00:22 +00004162 llvm::BitstreamEntry Entry = Stream.advance();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004163
Chris Lattnerefa77172013-01-20 00:00:22 +00004164 switch (Entry.Kind) {
4165 case llvm::BitstreamEntry::Error:
Chris Lattnerefa77172013-01-20 00:00:22 +00004166 case llvm::BitstreamEntry::Record:
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004167 case llvm::BitstreamEntry::EndBlock:
Guy Benyei11169dd2012-12-18 14:30:41 +00004168 Error("invalid record at top-level of AST file");
4169 return Failure;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004170
Chris Lattnerefa77172013-01-20 00:00:22 +00004171 case llvm::BitstreamEntry::SubBlock:
4172 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00004173 }
4174
Chris Lattnerefa77172013-01-20 00:00:22 +00004175 switch (Entry.ID) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004176 case CONTROL_BLOCK_ID:
4177 HaveReadControlBlock = true;
Ben Langmuirbeee15e2014-04-14 18:00:01 +00004178 switch (ReadControlBlock(F, Loaded, ImportedBy, ClientLoadCapabilities)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004179 case Success:
Richard Smith0f99d6a2015-08-09 08:48:41 +00004180 // Check that we didn't try to load a non-module AST file as a module.
4181 //
4182 // FIXME: Should we also perform the converse check? Loading a module as
4183 // a PCH file sort of works, but it's a bit wonky.
Manman Ren11f2a472016-08-18 17:42:15 +00004184 if ((Type == MK_ImplicitModule || Type == MK_ExplicitModule ||
4185 Type == MK_PrebuiltModule) &&
Richard Smith0f99d6a2015-08-09 08:48:41 +00004186 F.ModuleName.empty()) {
4187 auto Result = (Type == MK_ImplicitModule) ? OutOfDate : Failure;
4188 if (Result != OutOfDate ||
4189 (ClientLoadCapabilities & ARR_OutOfDate) == 0)
4190 Diag(diag::err_module_file_not_module) << FileName;
4191 return Result;
4192 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004193 break;
4194
4195 case Failure: return Failure;
Douglas Gregor7029ce12013-03-19 00:28:20 +00004196 case Missing: return Missing;
Guy Benyei11169dd2012-12-18 14:30:41 +00004197 case OutOfDate: return OutOfDate;
4198 case VersionMismatch: return VersionMismatch;
4199 case ConfigurationMismatch: return ConfigurationMismatch;
4200 case HadErrors: return HadErrors;
4201 }
4202 break;
Richard Smithf8c32552015-09-02 17:45:54 +00004203
Guy Benyei11169dd2012-12-18 14:30:41 +00004204 case AST_BLOCK_ID:
4205 if (!HaveReadControlBlock) {
4206 if ((ClientLoadCapabilities & ARR_VersionMismatch) == 0)
Dmitri Gribenko2228cd32014-02-11 15:40:09 +00004207 Diag(diag::err_pch_version_too_old);
Guy Benyei11169dd2012-12-18 14:30:41 +00004208 return VersionMismatch;
4209 }
4210
4211 // Record that we've loaded this module.
4212 Loaded.push_back(ImportedModule(M, ImportedBy, ImportLoc));
4213 return Success;
4214
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004215 case UNHASHED_CONTROL_BLOCK_ID:
4216 // This block is handled using look-ahead during ReadControlBlock. We
4217 // shouldn't get here!
4218 Error("malformed block record in AST file");
4219 return Failure;
4220
Guy Benyei11169dd2012-12-18 14:30:41 +00004221 default:
4222 if (Stream.SkipBlock()) {
4223 Error("malformed block record in AST file");
4224 return Failure;
4225 }
4226 break;
4227 }
4228 }
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004229
4230 return Success;
4231}
4232
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004233ASTReader::ASTReadResult
4234ASTReader::readUnhashedControlBlock(ModuleFile &F, bool WasImportedBy,
4235 unsigned ClientLoadCapabilities) {
4236 const HeaderSearchOptions &HSOpts =
4237 PP.getHeaderSearchInfo().getHeaderSearchOpts();
4238 bool AllowCompatibleConfigurationMismatch =
4239 F.Kind == MK_ExplicitModule || F.Kind == MK_PrebuiltModule;
4240
4241 ASTReadResult Result = readUnhashedControlBlockImpl(
4242 &F, F.Data, ClientLoadCapabilities, AllowCompatibleConfigurationMismatch,
4243 Listener.get(),
4244 WasImportedBy ? false : HSOpts.ModulesValidateDiagnosticOptions);
4245
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +00004246 // If F was directly imported by another module, it's implicitly validated by
4247 // the importing module.
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004248 if (DisableValidation || WasImportedBy ||
4249 (AllowConfigurationMismatch && Result == ConfigurationMismatch))
4250 return Success;
4251
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +00004252 if (Result == Failure) {
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004253 Error("malformed block record in AST file");
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +00004254 return Failure;
4255 }
4256
4257 if (Result == OutOfDate && F.Kind == MK_ImplicitModule) {
4258 // If this module has already been finalized in the PCMCache, we're stuck
4259 // with it; we can only load a single version of each module.
4260 //
4261 // This can happen when a module is imported in two contexts: in one, as a
4262 // user module; in another, as a system module (due to an import from
4263 // another module marked with the [system] flag). It usually indicates a
4264 // bug in the module map: this module should also be marked with [system].
4265 //
4266 // If -Wno-system-headers (the default), and the first import is as a
4267 // system module, then validation will fail during the as-user import,
4268 // since -Werror flags won't have been validated. However, it's reasonable
4269 // to treat this consistently as a system module.
4270 //
4271 // If -Wsystem-headers, the PCM on disk was built with
4272 // -Wno-system-headers, and the first import is as a user module, then
4273 // validation will fail during the as-system import since the PCM on disk
4274 // doesn't guarantee that -Werror was respected. However, the -Werror
4275 // flags were checked during the initial as-user import.
4276 if (PCMCache.isBufferFinal(F.FileName)) {
4277 Diag(diag::warn_module_system_bit_conflict) << F.FileName;
4278 return Success;
4279 }
4280 }
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004281
4282 return Result;
4283}
4284
4285ASTReader::ASTReadResult ASTReader::readUnhashedControlBlockImpl(
4286 ModuleFile *F, llvm::StringRef StreamData, unsigned ClientLoadCapabilities,
4287 bool AllowCompatibleConfigurationMismatch, ASTReaderListener *Listener,
4288 bool ValidateDiagnosticOptions) {
4289 // Initialize a stream.
4290 BitstreamCursor Stream(StreamData);
4291
4292 // Sniff for the signature.
4293 if (!startsWithASTFileMagic(Stream))
4294 return Failure;
4295
4296 // Scan for the UNHASHED_CONTROL_BLOCK_ID block.
4297 if (SkipCursorToBlock(Stream, UNHASHED_CONTROL_BLOCK_ID))
4298 return Failure;
4299
4300 // Read all of the records in the options block.
4301 RecordData Record;
4302 ASTReadResult Result = Success;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00004303 while (true) {
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004304 llvm::BitstreamEntry Entry = Stream.advance();
4305
4306 switch (Entry.Kind) {
4307 case llvm::BitstreamEntry::Error:
4308 case llvm::BitstreamEntry::SubBlock:
4309 return Failure;
4310
4311 case llvm::BitstreamEntry::EndBlock:
4312 return Result;
4313
4314 case llvm::BitstreamEntry::Record:
4315 // The interesting case.
4316 break;
4317 }
4318
4319 // Read and process a record.
4320 Record.clear();
4321 switch (
4322 (UnhashedControlBlockRecordTypes)Stream.readRecord(Entry.ID, Record)) {
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00004323 case SIGNATURE:
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004324 if (F)
4325 std::copy(Record.begin(), Record.end(), F->Signature.data());
4326 break;
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004327 case DIAGNOSTIC_OPTIONS: {
4328 bool Complain = (ClientLoadCapabilities & ARR_OutOfDate) == 0;
4329 if (Listener && ValidateDiagnosticOptions &&
4330 !AllowCompatibleConfigurationMismatch &&
4331 ParseDiagnosticOptions(Record, Complain, *Listener))
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +00004332 Result = OutOfDate; // Don't return early. Read the signature.
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004333 break;
4334 }
4335 case DIAG_PRAGMA_MAPPINGS:
4336 if (!F)
4337 break;
4338 if (F->PragmaDiagMappings.empty())
4339 F->PragmaDiagMappings.swap(Record);
4340 else
4341 F->PragmaDiagMappings.insert(F->PragmaDiagMappings.end(),
4342 Record.begin(), Record.end());
4343 break;
4344 }
4345 }
4346}
4347
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004348/// Parse a record and blob containing module file extension metadata.
4349static bool parseModuleFileExtensionMetadata(
4350 const SmallVectorImpl<uint64_t> &Record,
4351 StringRef Blob,
4352 ModuleFileExtensionMetadata &Metadata) {
4353 if (Record.size() < 4) return true;
4354
4355 Metadata.MajorVersion = Record[0];
4356 Metadata.MinorVersion = Record[1];
4357
4358 unsigned BlockNameLen = Record[2];
4359 unsigned UserInfoLen = Record[3];
4360
4361 if (BlockNameLen + UserInfoLen > Blob.size()) return true;
4362
4363 Metadata.BlockName = std::string(Blob.data(), Blob.data() + BlockNameLen);
4364 Metadata.UserInfo = std::string(Blob.data() + BlockNameLen,
4365 Blob.data() + BlockNameLen + UserInfoLen);
4366 return false;
4367}
4368
4369ASTReader::ASTReadResult ASTReader::ReadExtensionBlock(ModuleFile &F) {
4370 BitstreamCursor &Stream = F.Stream;
4371
4372 RecordData Record;
4373 while (true) {
4374 llvm::BitstreamEntry Entry = Stream.advance();
4375 switch (Entry.Kind) {
4376 case llvm::BitstreamEntry::SubBlock:
4377 if (Stream.SkipBlock())
4378 return Failure;
4379
4380 continue;
4381
4382 case llvm::BitstreamEntry::EndBlock:
4383 return Success;
4384
4385 case llvm::BitstreamEntry::Error:
4386 return HadErrors;
4387
4388 case llvm::BitstreamEntry::Record:
4389 break;
4390 }
4391
4392 Record.clear();
4393 StringRef Blob;
4394 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
4395 switch (RecCode) {
4396 case EXTENSION_METADATA: {
4397 ModuleFileExtensionMetadata Metadata;
4398 if (parseModuleFileExtensionMetadata(Record, Blob, Metadata))
4399 return Failure;
4400
4401 // Find a module file extension with this block name.
4402 auto Known = ModuleFileExtensions.find(Metadata.BlockName);
4403 if (Known == ModuleFileExtensions.end()) break;
4404
4405 // Form a reader.
4406 if (auto Reader = Known->second->createExtensionReader(Metadata, *this,
4407 F, Stream)) {
4408 F.ExtensionReaders.push_back(std::move(Reader));
4409 }
4410
4411 break;
4412 }
4413 }
4414 }
4415
4416 return Success;
Guy Benyei11169dd2012-12-18 14:30:41 +00004417}
4418
Richard Smitha7e2cc62015-05-01 01:53:09 +00004419void ASTReader::InitializeContext() {
Richard Smithdbafb6c2017-06-29 23:23:46 +00004420 assert(ContextObj && "no context to initialize");
4421 ASTContext &Context = *ContextObj;
4422
Guy Benyei11169dd2012-12-18 14:30:41 +00004423 // If there's a listener, notify them that we "read" the translation unit.
4424 if (DeserializationListener)
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004425 DeserializationListener->DeclRead(PREDEF_DECL_TRANSLATION_UNIT_ID,
Guy Benyei11169dd2012-12-18 14:30:41 +00004426 Context.getTranslationUnitDecl());
4427
Guy Benyei11169dd2012-12-18 14:30:41 +00004428 // FIXME: Find a better way to deal with collisions between these
4429 // built-in types. Right now, we just ignore the problem.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004430
Guy Benyei11169dd2012-12-18 14:30:41 +00004431 // Load the special types.
4432 if (SpecialTypes.size() >= NumSpecialTypeIDs) {
4433 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) {
4434 if (!Context.CFConstantStringTypeDecl)
4435 Context.setCFConstantStringType(GetType(String));
4436 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004437
Guy Benyei11169dd2012-12-18 14:30:41 +00004438 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) {
4439 QualType FileType = GetType(File);
4440 if (FileType.isNull()) {
4441 Error("FILE type is NULL");
4442 return;
4443 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004444
Guy Benyei11169dd2012-12-18 14:30:41 +00004445 if (!Context.FILEDecl) {
4446 if (const TypedefType *Typedef = FileType->getAs<TypedefType>())
4447 Context.setFILEDecl(Typedef->getDecl());
4448 else {
4449 const TagType *Tag = FileType->getAs<TagType>();
4450 if (!Tag) {
4451 Error("Invalid FILE type in AST file");
4452 return;
4453 }
4454 Context.setFILEDecl(Tag->getDecl());
4455 }
4456 }
4457 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004458
Guy Benyei11169dd2012-12-18 14:30:41 +00004459 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) {
4460 QualType Jmp_bufType = GetType(Jmp_buf);
4461 if (Jmp_bufType.isNull()) {
4462 Error("jmp_buf type is NULL");
4463 return;
4464 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004465
Guy Benyei11169dd2012-12-18 14:30:41 +00004466 if (!Context.jmp_bufDecl) {
4467 if (const TypedefType *Typedef = Jmp_bufType->getAs<TypedefType>())
4468 Context.setjmp_bufDecl(Typedef->getDecl());
4469 else {
4470 const TagType *Tag = Jmp_bufType->getAs<TagType>();
4471 if (!Tag) {
4472 Error("Invalid jmp_buf type in AST file");
4473 return;
4474 }
4475 Context.setjmp_bufDecl(Tag->getDecl());
4476 }
4477 }
4478 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004479
Guy Benyei11169dd2012-12-18 14:30:41 +00004480 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) {
4481 QualType Sigjmp_bufType = GetType(Sigjmp_buf);
4482 if (Sigjmp_bufType.isNull()) {
4483 Error("sigjmp_buf type is NULL");
4484 return;
4485 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004486
Guy Benyei11169dd2012-12-18 14:30:41 +00004487 if (!Context.sigjmp_bufDecl) {
4488 if (const TypedefType *Typedef = Sigjmp_bufType->getAs<TypedefType>())
4489 Context.setsigjmp_bufDecl(Typedef->getDecl());
4490 else {
4491 const TagType *Tag = Sigjmp_bufType->getAs<TagType>();
4492 assert(Tag && "Invalid sigjmp_buf type in AST file");
4493 Context.setsigjmp_bufDecl(Tag->getDecl());
4494 }
4495 }
4496 }
4497
4498 if (unsigned ObjCIdRedef
4499 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) {
4500 if (Context.ObjCIdRedefinitionType.isNull())
4501 Context.ObjCIdRedefinitionType = GetType(ObjCIdRedef);
4502 }
4503
4504 if (unsigned ObjCClassRedef
4505 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) {
4506 if (Context.ObjCClassRedefinitionType.isNull())
4507 Context.ObjCClassRedefinitionType = GetType(ObjCClassRedef);
4508 }
4509
4510 if (unsigned ObjCSelRedef
4511 = SpecialTypes[SPECIAL_TYPE_OBJC_SEL_REDEFINITION]) {
4512 if (Context.ObjCSelRedefinitionType.isNull())
4513 Context.ObjCSelRedefinitionType = GetType(ObjCSelRedef);
4514 }
4515
4516 if (unsigned Ucontext_t = SpecialTypes[SPECIAL_TYPE_UCONTEXT_T]) {
4517 QualType Ucontext_tType = GetType(Ucontext_t);
4518 if (Ucontext_tType.isNull()) {
4519 Error("ucontext_t type is NULL");
4520 return;
4521 }
4522
4523 if (!Context.ucontext_tDecl) {
4524 if (const TypedefType *Typedef = Ucontext_tType->getAs<TypedefType>())
4525 Context.setucontext_tDecl(Typedef->getDecl());
4526 else {
4527 const TagType *Tag = Ucontext_tType->getAs<TagType>();
4528 assert(Tag && "Invalid ucontext_t type in AST file");
4529 Context.setucontext_tDecl(Tag->getDecl());
4530 }
4531 }
4532 }
4533 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004534
Guy Benyei11169dd2012-12-18 14:30:41 +00004535 ReadPragmaDiagnosticMappings(Context.getDiagnostics());
4536
4537 // If there were any CUDA special declarations, deserialize them.
4538 if (!CUDASpecialDeclRefs.empty()) {
4539 assert(CUDASpecialDeclRefs.size() == 1 && "More decl refs than expected!");
4540 Context.setcudaConfigureCallDecl(
4541 cast<FunctionDecl>(GetDecl(CUDASpecialDeclRefs[0])));
4542 }
Richard Smith56be7542014-03-21 00:33:59 +00004543
Guy Benyei11169dd2012-12-18 14:30:41 +00004544 // Re-export any modules that were imported by a non-module AST file.
Richard Smitha7e2cc62015-05-01 01:53:09 +00004545 // FIXME: This does not make macro-only imports visible again.
Richard Smith56be7542014-03-21 00:33:59 +00004546 for (auto &Import : ImportedModules) {
Richard Smitha7e2cc62015-05-01 01:53:09 +00004547 if (Module *Imported = getSubmodule(Import.ID)) {
Argyrios Kyrtzidis125df052013-02-01 16:36:12 +00004548 makeModuleVisible(Imported, Module::AllVisible,
Richard Smitha7e2cc62015-05-01 01:53:09 +00004549 /*ImportLoc=*/Import.ImportLoc);
Ben Langmuir6d25fdc2016-02-11 17:04:42 +00004550 if (Import.ImportLoc.isValid())
4551 PP.makeModuleVisible(Imported, Import.ImportLoc);
4552 // FIXME: should we tell Sema to make the module visible too?
Richard Smitha7e2cc62015-05-01 01:53:09 +00004553 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004554 }
4555 ImportedModules.clear();
4556}
4557
4558void ASTReader::finalizeForWriting() {
Richard Smithde711422015-04-23 21:20:19 +00004559 // Nothing to do for now.
Guy Benyei11169dd2012-12-18 14:30:41 +00004560}
4561
Peter Collingbourne77c89b62016-11-08 04:17:11 +00004562/// \brief Reads and return the signature record from \p PCH's control block, or
4563/// else returns 0.
4564static ASTFileSignature readASTFileSignature(StringRef PCH) {
4565 BitstreamCursor Stream(PCH);
Ben Langmuir70a1b812015-03-24 04:43:52 +00004566 if (!startsWithASTFileMagic(Stream))
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004567 return ASTFileSignature();
Ben Langmuir487ea142014-10-23 18:05:36 +00004568
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004569 // Scan for the UNHASHED_CONTROL_BLOCK_ID block.
4570 if (SkipCursorToBlock(Stream, UNHASHED_CONTROL_BLOCK_ID))
4571 return ASTFileSignature();
Ben Langmuir487ea142014-10-23 18:05:36 +00004572
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004573 // Scan for SIGNATURE inside the diagnostic options block.
Ben Langmuir487ea142014-10-23 18:05:36 +00004574 ASTReader::RecordData Record;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004575 while (true) {
Ben Langmuir487ea142014-10-23 18:05:36 +00004576 llvm::BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Simon Pilgrim0b33f112016-11-16 16:11:08 +00004577 if (Entry.Kind != llvm::BitstreamEntry::Record)
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004578 return ASTFileSignature();
Ben Langmuir487ea142014-10-23 18:05:36 +00004579
4580 Record.clear();
4581 StringRef Blob;
4582 if (SIGNATURE == Stream.readRecord(Entry.ID, Record, &Blob))
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004583 return {{{(uint32_t)Record[0], (uint32_t)Record[1], (uint32_t)Record[2],
4584 (uint32_t)Record[3], (uint32_t)Record[4]}}};
Ben Langmuir487ea142014-10-23 18:05:36 +00004585 }
4586}
4587
Guy Benyei11169dd2012-12-18 14:30:41 +00004588/// \brief Retrieve the name of the original source file name
4589/// directly from the AST file, without actually loading the AST
4590/// file.
Adrian Prantlbb165fb2015-06-20 18:53:08 +00004591std::string ASTReader::getOriginalSourceFile(
4592 const std::string &ASTFileName, FileManager &FileMgr,
Adrian Prantlfb2398d2015-07-17 01:19:54 +00004593 const PCHContainerReader &PCHContainerRdr, DiagnosticsEngine &Diags) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004594 // Open the AST file.
Benjamin Kramera8857962014-10-26 22:44:13 +00004595 auto Buffer = FileMgr.getBufferForFile(ASTFileName);
Guy Benyei11169dd2012-12-18 14:30:41 +00004596 if (!Buffer) {
Benjamin Kramera8857962014-10-26 22:44:13 +00004597 Diags.Report(diag::err_fe_unable_to_read_pch_file)
4598 << ASTFileName << Buffer.getError().message();
Guy Benyei11169dd2012-12-18 14:30:41 +00004599 return std::string();
4600 }
4601
4602 // Initialize the stream
Peter Collingbourne77c89b62016-11-08 04:17:11 +00004603 BitstreamCursor Stream(PCHContainerRdr.ExtractPCH(**Buffer));
Guy Benyei11169dd2012-12-18 14:30:41 +00004604
4605 // Sniff for the signature.
Ben Langmuir70a1b812015-03-24 04:43:52 +00004606 if (!startsWithASTFileMagic(Stream)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004607 Diags.Report(diag::err_fe_not_a_pch_file) << ASTFileName;
4608 return std::string();
4609 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004610
Chris Lattnere7b154b2013-01-19 21:39:22 +00004611 // Scan for the CONTROL_BLOCK_ID block.
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004612 if (SkipCursorToBlock(Stream, CONTROL_BLOCK_ID)) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004613 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
4614 return std::string();
Chris Lattnere7b154b2013-01-19 21:39:22 +00004615 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004616
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004617 // Scan for ORIGINAL_FILE inside the control block.
4618 RecordData Record;
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004619 while (true) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004620 llvm::BitstreamEntry Entry = Stream.advanceSkippingSubblocks();
Chris Lattnere7b154b2013-01-19 21:39:22 +00004621 if (Entry.Kind == llvm::BitstreamEntry::EndBlock)
4622 return std::string();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004623
Chris Lattnere7b154b2013-01-19 21:39:22 +00004624 if (Entry.Kind != llvm::BitstreamEntry::Record) {
4625 Diags.Report(diag::err_fe_pch_malformed_block) << ASTFileName;
4626 return std::string();
Guy Benyei11169dd2012-12-18 14:30:41 +00004627 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004628
Guy Benyei11169dd2012-12-18 14:30:41 +00004629 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00004630 StringRef Blob;
4631 if (Stream.readRecord(Entry.ID, Record, &Blob) == ORIGINAL_FILE)
4632 return Blob.str();
Guy Benyei11169dd2012-12-18 14:30:41 +00004633 }
Guy Benyei11169dd2012-12-18 14:30:41 +00004634}
4635
4636namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004637
Guy Benyei11169dd2012-12-18 14:30:41 +00004638 class SimplePCHValidator : public ASTReaderListener {
4639 const LangOptions &ExistingLangOpts;
4640 const TargetOptions &ExistingTargetOpts;
4641 const PreprocessorOptions &ExistingPPOpts;
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004642 std::string ExistingModuleCachePath;
Guy Benyei11169dd2012-12-18 14:30:41 +00004643 FileManager &FileMgr;
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004644
Guy Benyei11169dd2012-12-18 14:30:41 +00004645 public:
4646 SimplePCHValidator(const LangOptions &ExistingLangOpts,
4647 const TargetOptions &ExistingTargetOpts,
4648 const PreprocessorOptions &ExistingPPOpts,
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004649 StringRef ExistingModuleCachePath,
Guy Benyei11169dd2012-12-18 14:30:41 +00004650 FileManager &FileMgr)
4651 : ExistingLangOpts(ExistingLangOpts),
4652 ExistingTargetOpts(ExistingTargetOpts),
4653 ExistingPPOpts(ExistingPPOpts),
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004654 ExistingModuleCachePath(ExistingModuleCachePath),
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00004655 FileMgr(FileMgr) {}
Guy Benyei11169dd2012-12-18 14:30:41 +00004656
Richard Smith1e2cf0d2014-10-31 02:28:58 +00004657 bool ReadLanguageOptions(const LangOptions &LangOpts, bool Complain,
4658 bool AllowCompatibleDifferences) override {
4659 return checkLanguageOptions(ExistingLangOpts, LangOpts, nullptr,
4660 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +00004661 }
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004662
Chandler Carruth0d745bc2015-03-14 04:47:43 +00004663 bool ReadTargetOptions(const TargetOptions &TargetOpts, bool Complain,
4664 bool AllowCompatibleDifferences) override {
4665 return checkTargetOptions(ExistingTargetOpts, TargetOpts, nullptr,
4666 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +00004667 }
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004668
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004669 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
4670 StringRef SpecificModuleCachePath,
4671 bool Complain) override {
4672 return checkHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
4673 ExistingModuleCachePath,
4674 nullptr, ExistingLangOpts);
4675 }
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004676
Craig Topper3e89dfe2014-03-13 02:13:41 +00004677 bool ReadPreprocessorOptions(const PreprocessorOptions &PPOpts,
4678 bool Complain,
4679 std::string &SuggestedPredefines) override {
Craig Toppera13603a2014-05-22 05:54:18 +00004680 return checkPreprocessorOptions(ExistingPPOpts, PPOpts, nullptr, FileMgr,
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +00004681 SuggestedPredefines, ExistingLangOpts);
Guy Benyei11169dd2012-12-18 14:30:41 +00004682 }
4683 };
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00004684
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00004685} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00004686
Adrian Prantlbb165fb2015-06-20 18:53:08 +00004687bool ASTReader::readASTFileControlBlock(
4688 StringRef Filename, FileManager &FileMgr,
Adrian Prantlfb2398d2015-07-17 01:19:54 +00004689 const PCHContainerReader &PCHContainerRdr,
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004690 bool FindModuleFileExtensions,
Manman Ren47a44452016-07-26 17:12:17 +00004691 ASTReaderListener &Listener, bool ValidateDiagnosticOptions) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004692 // Open the AST file.
Richard Smith7f330cd2015-03-18 01:42:29 +00004693 // FIXME: This allows use of the VFS; we do not allow use of the
4694 // VFS when actually loading a module.
Benjamin Kramera8857962014-10-26 22:44:13 +00004695 auto Buffer = FileMgr.getBufferForFile(Filename);
Guy Benyei11169dd2012-12-18 14:30:41 +00004696 if (!Buffer) {
4697 return true;
4698 }
4699
4700 // Initialize the stream
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004701 StringRef Bytes = PCHContainerRdr.ExtractPCH(**Buffer);
4702 BitstreamCursor Stream(Bytes);
Guy Benyei11169dd2012-12-18 14:30:41 +00004703
4704 // Sniff for the signature.
Ben Langmuir70a1b812015-03-24 04:43:52 +00004705 if (!startsWithASTFileMagic(Stream))
Guy Benyei11169dd2012-12-18 14:30:41 +00004706 return true;
Guy Benyei11169dd2012-12-18 14:30:41 +00004707
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004708 // Scan for the CONTROL_BLOCK_ID block.
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004709 if (SkipCursorToBlock(Stream, CONTROL_BLOCK_ID))
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004710 return true;
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004711
4712 bool NeedsInputFiles = Listener.needsInputFileVisitation();
Ben Langmuircb69b572014-03-07 06:40:32 +00004713 bool NeedsSystemInputFiles = Listener.needsSystemInputFileVisitation();
Richard Smithd4b230b2014-10-27 23:01:16 +00004714 bool NeedsImports = Listener.needsImportVisitation();
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004715 BitstreamCursor InputFilesCursor;
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004716
Guy Benyei11169dd2012-12-18 14:30:41 +00004717 RecordData Record;
Richard Smith7ed1bc92014-12-05 22:42:13 +00004718 std::string ModuleDir;
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004719 bool DoneWithControlBlock = false;
4720 while (!DoneWithControlBlock) {
Richard Smith0516b182015-09-08 19:40:14 +00004721 llvm::BitstreamEntry Entry = Stream.advance();
4722
4723 switch (Entry.Kind) {
4724 case llvm::BitstreamEntry::SubBlock: {
4725 switch (Entry.ID) {
4726 case OPTIONS_BLOCK_ID: {
4727 std::string IgnoredSuggestedPredefines;
4728 if (ReadOptionsBlock(Stream, ARR_ConfigurationMismatch | ARR_OutOfDate,
4729 /*AllowCompatibleConfigurationMismatch*/ false,
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004730 Listener, IgnoredSuggestedPredefines) != Success)
Richard Smith0516b182015-09-08 19:40:14 +00004731 return true;
4732 break;
4733 }
4734
4735 case INPUT_FILES_BLOCK_ID:
4736 InputFilesCursor = Stream;
4737 if (Stream.SkipBlock() ||
4738 (NeedsInputFiles &&
4739 ReadBlockAbbrevs(InputFilesCursor, INPUT_FILES_BLOCK_ID)))
4740 return true;
4741 break;
4742
4743 default:
4744 if (Stream.SkipBlock())
4745 return true;
4746 break;
4747 }
4748
4749 continue;
4750 }
4751
4752 case llvm::BitstreamEntry::EndBlock:
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004753 DoneWithControlBlock = true;
4754 break;
Richard Smith0516b182015-09-08 19:40:14 +00004755
4756 case llvm::BitstreamEntry::Error:
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004757 return true;
Richard Smith0516b182015-09-08 19:40:14 +00004758
4759 case llvm::BitstreamEntry::Record:
4760 break;
4761 }
4762
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004763 if (DoneWithControlBlock) break;
4764
Guy Benyei11169dd2012-12-18 14:30:41 +00004765 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00004766 StringRef Blob;
4767 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004768 switch ((ControlRecordTypes)RecCode) {
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00004769 case METADATA:
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004770 if (Record[0] != VERSION_MAJOR)
4771 return true;
Douglas Gregorbf7fc9c2013-03-27 16:47:18 +00004772 if (Listener.ReadFullVersionInformation(Blob))
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004773 return true;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004774 break;
Ben Langmuir4f5212a2014-04-14 22:12:44 +00004775 case MODULE_NAME:
4776 Listener.ReadModuleName(Blob);
4777 break;
Richard Smith7ed1bc92014-12-05 22:42:13 +00004778 case MODULE_DIRECTORY:
4779 ModuleDir = Blob;
4780 break;
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00004781 case MODULE_MAP_FILE: {
4782 unsigned Idx = 0;
Richard Smith7ed1bc92014-12-05 22:42:13 +00004783 auto Path = ReadString(Record, Idx);
4784 ResolveImportedPath(Path, ModuleDir);
4785 Listener.ReadModuleMapFile(Path);
Ben Langmuir4f5212a2014-04-14 22:12:44 +00004786 break;
Ben Langmuir4b8a9e92014-08-12 16:42:33 +00004787 }
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004788 case INPUT_FILE_OFFSETS: {
4789 if (!NeedsInputFiles)
4790 break;
4791
4792 unsigned NumInputFiles = Record[0];
4793 unsigned NumUserFiles = Record[1];
Richard Smithec216502015-02-13 19:48:37 +00004794 const uint64_t *InputFileOffs = (const uint64_t *)Blob.data();
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004795 for (unsigned I = 0; I != NumInputFiles; ++I) {
4796 // Go find this input file.
4797 bool isSystemFile = I >= NumUserFiles;
Ben Langmuircb69b572014-03-07 06:40:32 +00004798
4799 if (isSystemFile && !NeedsSystemInputFiles)
4800 break; // the rest are system input files
4801
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004802 BitstreamCursor &Cursor = InputFilesCursor;
4803 SavedStreamPosition SavedPosition(Cursor);
4804 Cursor.JumpToBit(InputFileOffs[I]);
4805
4806 unsigned Code = Cursor.ReadCode();
4807 RecordData Record;
4808 StringRef Blob;
4809 bool shouldContinue = false;
4810 switch ((InputFileRecordTypes)Cursor.readRecord(Code, Record, &Blob)) {
4811 case INPUT_FILE:
Argyrios Kyrtzidis68ccbe02014-03-14 02:26:31 +00004812 bool Overridden = static_cast<bool>(Record[3]);
Richard Smith7ed1bc92014-12-05 22:42:13 +00004813 std::string Filename = Blob;
4814 ResolveImportedPath(Filename, ModuleDir);
Richard Smith216a3bd2015-08-13 17:57:10 +00004815 shouldContinue = Listener.visitInputFile(
4816 Filename, isSystemFile, Overridden, /*IsExplicitModule*/false);
Argyrios Kyrtzidisc4cd2c42013-05-06 19:23:40 +00004817 break;
4818 }
4819 if (!shouldContinue)
4820 break;
4821 }
4822 break;
4823 }
4824
Richard Smithd4b230b2014-10-27 23:01:16 +00004825 case IMPORTS: {
4826 if (!NeedsImports)
4827 break;
4828
4829 unsigned Idx = 0, N = Record.size();
4830 while (Idx < N) {
4831 // Read information about the AST file.
Richard Smith79c98cc2014-10-27 23:25:15 +00004832 Idx += 5; // ImportLoc, Size, ModTime, Signature
Boris Kolpackovd30446f2017-08-31 06:26:43 +00004833 SkipString(Record, Idx); // Module name; FIXME: pass to listener?
Richard Smith7ed1bc92014-12-05 22:42:13 +00004834 std::string Filename = ReadString(Record, Idx);
4835 ResolveImportedPath(Filename, ModuleDir);
4836 Listener.visitImport(Filename);
Richard Smithd4b230b2014-10-27 23:01:16 +00004837 }
4838 break;
4839 }
4840
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004841 default:
4842 // No other validation to perform.
4843 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00004844 }
4845 }
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004846
4847 // Look for module file extension blocks, if requested.
4848 if (FindModuleFileExtensions) {
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004849 BitstreamCursor SavedStream = Stream;
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004850 while (!SkipCursorToBlock(Stream, EXTENSION_BLOCK_ID)) {
4851 bool DoneWithExtensionBlock = false;
4852 while (!DoneWithExtensionBlock) {
4853 llvm::BitstreamEntry Entry = Stream.advance();
4854
4855 switch (Entry.Kind) {
4856 case llvm::BitstreamEntry::SubBlock:
4857 if (Stream.SkipBlock())
4858 return true;
4859
4860 continue;
4861
4862 case llvm::BitstreamEntry::EndBlock:
4863 DoneWithExtensionBlock = true;
4864 continue;
4865
4866 case llvm::BitstreamEntry::Error:
4867 return true;
4868
4869 case llvm::BitstreamEntry::Record:
4870 break;
4871 }
4872
4873 Record.clear();
4874 StringRef Blob;
4875 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
4876 switch (RecCode) {
4877 case EXTENSION_METADATA: {
4878 ModuleFileExtensionMetadata Metadata;
4879 if (parseModuleFileExtensionMetadata(Record, Blob, Metadata))
4880 return true;
4881
4882 Listener.readModuleFileExtension(Metadata);
4883 break;
4884 }
4885 }
4886 }
4887 }
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004888 Stream = SavedStream;
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004889 }
4890
Duncan P. N. Exon Smith60fa2882017-03-13 18:45:08 +00004891 // Scan for the UNHASHED_CONTROL_BLOCK_ID block.
4892 if (readUnhashedControlBlockImpl(
4893 nullptr, Bytes, ARR_ConfigurationMismatch | ARR_OutOfDate,
4894 /*AllowCompatibleConfigurationMismatch*/ false, &Listener,
4895 ValidateDiagnosticOptions) != Success)
4896 return true;
4897
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004898 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +00004899}
4900
Benjamin Kramerf6021ec2017-03-21 21:35:04 +00004901bool ASTReader::isAcceptableASTFile(StringRef Filename, FileManager &FileMgr,
4902 const PCHContainerReader &PCHContainerRdr,
4903 const LangOptions &LangOpts,
4904 const TargetOptions &TargetOpts,
4905 const PreprocessorOptions &PPOpts,
4906 StringRef ExistingModuleCachePath) {
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00004907 SimplePCHValidator validator(LangOpts, TargetOpts, PPOpts,
4908 ExistingModuleCachePath, FileMgr);
Adrian Prantlfb2398d2015-07-17 01:19:54 +00004909 return !readASTFileControlBlock(Filename, FileMgr, PCHContainerRdr,
Douglas Gregor6623e1f2015-11-03 18:33:07 +00004910 /*FindModuleFileExtensions=*/false,
Manman Ren47a44452016-07-26 17:12:17 +00004911 validator,
4912 /*ValidateDiagnosticOptions=*/true);
Guy Benyei11169dd2012-12-18 14:30:41 +00004913}
4914
Ben Langmuir2c9af442014-04-10 17:57:43 +00004915ASTReader::ASTReadResult
4916ASTReader::ReadSubmoduleBlock(ModuleFile &F, unsigned ClientLoadCapabilities) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004917 // Enter the submodule block.
4918 if (F.Stream.EnterSubBlock(SUBMODULE_BLOCK_ID)) {
4919 Error("malformed submodule block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00004920 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00004921 }
4922
4923 ModuleMap &ModMap = PP.getHeaderSearchInfo().getModuleMap();
4924 bool First = true;
Craig Toppera13603a2014-05-22 05:54:18 +00004925 Module *CurrentModule = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00004926 RecordData Record;
4927 while (true) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004928 llvm::BitstreamEntry Entry = F.Stream.advanceSkippingSubblocks();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00004929
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004930 switch (Entry.Kind) {
4931 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
4932 case llvm::BitstreamEntry::Error:
4933 Error("malformed block record in AST file");
Ben Langmuir2c9af442014-04-10 17:57:43 +00004934 return Failure;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004935 case llvm::BitstreamEntry::EndBlock:
Ben Langmuir2c9af442014-04-10 17:57:43 +00004936 return Success;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004937 case llvm::BitstreamEntry::Record:
4938 // The interesting case.
4939 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00004940 }
Chris Lattner7fb3bef2013-01-20 00:56:42 +00004941
Guy Benyei11169dd2012-12-18 14:30:41 +00004942 // Read a record.
Chris Lattner0e6c9402013-01-20 02:38:54 +00004943 StringRef Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00004944 Record.clear();
Richard Smith03478d92014-10-23 22:12:14 +00004945 auto Kind = F.Stream.readRecord(Entry.ID, Record, &Blob);
4946
4947 if ((Kind == SUBMODULE_METADATA) != First) {
4948 Error("submodule metadata record should be at beginning of block");
4949 return Failure;
4950 }
4951 First = false;
4952
4953 // Submodule information is only valid if we have a current module.
4954 // FIXME: Should we error on these cases?
4955 if (!CurrentModule && Kind != SUBMODULE_METADATA &&
4956 Kind != SUBMODULE_DEFINITION)
4957 continue;
4958
4959 switch (Kind) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004960 default: // Default behavior: ignore.
4961 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00004962
Richard Smith03478d92014-10-23 22:12:14 +00004963 case SUBMODULE_DEFINITION: {
Douglas Gregor8d932422013-03-20 03:59:18 +00004964 if (Record.size() < 8) {
Guy Benyei11169dd2012-12-18 14:30:41 +00004965 Error("malformed module definition");
Ben Langmuir2c9af442014-04-10 17:57:43 +00004966 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00004967 }
Richard Smith03478d92014-10-23 22:12:14 +00004968
Chris Lattner0e6c9402013-01-20 02:38:54 +00004969 StringRef Name = Blob;
Richard Smith9bca2982014-03-08 00:03:56 +00004970 unsigned Idx = 0;
4971 SubmoduleID GlobalID = getGlobalSubmoduleID(F, Record[Idx++]);
4972 SubmoduleID Parent = getGlobalSubmoduleID(F, Record[Idx++]);
Richard Smithdd8b5332017-09-04 05:37:53 +00004973 Module::ModuleKind Kind = (Module::ModuleKind)Record[Idx++];
Richard Smith9bca2982014-03-08 00:03:56 +00004974 bool IsFramework = Record[Idx++];
4975 bool IsExplicit = Record[Idx++];
4976 bool IsSystem = Record[Idx++];
4977 bool IsExternC = Record[Idx++];
4978 bool InferSubmodules = Record[Idx++];
4979 bool InferExplicitSubmodules = Record[Idx++];
4980 bool InferExportWildcard = Record[Idx++];
4981 bool ConfigMacrosExhaustive = Record[Idx++];
Douglas Gregor8d932422013-03-20 03:59:18 +00004982
Ben Langmuirbeee15e2014-04-14 18:00:01 +00004983 Module *ParentModule = nullptr;
Ben Langmuir9d6448b2014-08-09 00:57:23 +00004984 if (Parent)
Guy Benyei11169dd2012-12-18 14:30:41 +00004985 ParentModule = getSubmodule(Parent);
Ben Langmuirbeee15e2014-04-14 18:00:01 +00004986
Guy Benyei11169dd2012-12-18 14:30:41 +00004987 // Retrieve this (sub)module from the module map, creating it if
4988 // necessary.
David Blaikie9ffe5a32017-01-30 05:00:26 +00004989 CurrentModule =
4990 ModMap.findOrCreateModule(Name, ParentModule, IsFramework, IsExplicit)
4991 .first;
Ben Langmuir9d6448b2014-08-09 00:57:23 +00004992
4993 // FIXME: set the definition loc for CurrentModule, or call
4994 // ModMap.setInferredModuleAllowedBy()
4995
Guy Benyei11169dd2012-12-18 14:30:41 +00004996 SubmoduleID GlobalIndex = GlobalID - NUM_PREDEF_SUBMODULE_IDS;
4997 if (GlobalIndex >= SubmodulesLoaded.size() ||
4998 SubmodulesLoaded[GlobalIndex]) {
4999 Error("too many submodules");
Ben Langmuir2c9af442014-04-10 17:57:43 +00005000 return Failure;
Guy Benyei11169dd2012-12-18 14:30:41 +00005001 }
Douglas Gregor8a114ab2013-02-06 22:40:31 +00005002
Douglas Gregor7029ce12013-03-19 00:28:20 +00005003 if (!ParentModule) {
5004 if (const FileEntry *CurFile = CurrentModule->getASTFile()) {
5005 if (CurFile != F.File) {
5006 if (!Diags.isDiagnosticInFlight()) {
5007 Diag(diag::err_module_file_conflict)
5008 << CurrentModule->getTopLevelModuleName()
5009 << CurFile->getName()
5010 << F.File->getName();
5011 }
Ben Langmuir2c9af442014-04-10 17:57:43 +00005012 return Failure;
Douglas Gregor8a114ab2013-02-06 22:40:31 +00005013 }
Douglas Gregor8a114ab2013-02-06 22:40:31 +00005014 }
Douglas Gregor7029ce12013-03-19 00:28:20 +00005015
5016 CurrentModule->setASTFile(F.File);
Richard Smithab755972017-06-05 18:10:11 +00005017 CurrentModule->PresumedModuleMapFile = F.ModuleMapPath;
Douglas Gregor8a114ab2013-02-06 22:40:31 +00005018 }
Ben Langmuirbeee15e2014-04-14 18:00:01 +00005019
Richard Smithdd8b5332017-09-04 05:37:53 +00005020 CurrentModule->Kind = Kind;
Adrian Prantl15bcf702015-06-30 17:39:43 +00005021 CurrentModule->Signature = F.Signature;
Guy Benyei11169dd2012-12-18 14:30:41 +00005022 CurrentModule->IsFromModuleFile = true;
5023 CurrentModule->IsSystem = IsSystem || CurrentModule->IsSystem;
Richard Smith9bca2982014-03-08 00:03:56 +00005024 CurrentModule->IsExternC = IsExternC;
Guy Benyei11169dd2012-12-18 14:30:41 +00005025 CurrentModule->InferSubmodules = InferSubmodules;
5026 CurrentModule->InferExplicitSubmodules = InferExplicitSubmodules;
5027 CurrentModule->InferExportWildcard = InferExportWildcard;
Douglas Gregor8d932422013-03-20 03:59:18 +00005028 CurrentModule->ConfigMacrosExhaustive = ConfigMacrosExhaustive;
Guy Benyei11169dd2012-12-18 14:30:41 +00005029 if (DeserializationListener)
5030 DeserializationListener->ModuleRead(GlobalID, CurrentModule);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005031
Guy Benyei11169dd2012-12-18 14:30:41 +00005032 SubmodulesLoaded[GlobalIndex] = CurrentModule;
Douglas Gregor6ddfca92013-01-14 17:21:00 +00005033
Richard Smith8a3e39a2016-03-28 21:31:09 +00005034 // Clear out data that will be replaced by what is in the module file.
Douglas Gregor6ddfca92013-01-14 17:21:00 +00005035 CurrentModule->LinkLibraries.clear();
Douglas Gregor8d932422013-03-20 03:59:18 +00005036 CurrentModule->ConfigMacros.clear();
Douglas Gregorfb912652013-03-20 21:10:35 +00005037 CurrentModule->UnresolvedConflicts.clear();
5038 CurrentModule->Conflicts.clear();
Richard Smith8a3e39a2016-03-28 21:31:09 +00005039
5040 // The module is available unless it's missing a requirement; relevant
5041 // requirements will be (re-)added by SUBMODULE_REQUIRES records.
5042 // Missing headers that were present when the module was built do not
5043 // make it unavailable -- if we got this far, this must be an explicitly
5044 // imported module file.
5045 CurrentModule->Requirements.clear();
5046 CurrentModule->MissingHeaders.clear();
5047 CurrentModule->IsMissingRequirement =
5048 ParentModule && ParentModule->IsMissingRequirement;
5049 CurrentModule->IsAvailable = !CurrentModule->IsMissingRequirement;
Guy Benyei11169dd2012-12-18 14:30:41 +00005050 break;
5051 }
Richard Smith8a3e39a2016-03-28 21:31:09 +00005052
Guy Benyei11169dd2012-12-18 14:30:41 +00005053 case SUBMODULE_UMBRELLA_HEADER: {
Richard Smith2b63d152015-05-16 02:28:53 +00005054 std::string Filename = Blob;
5055 ResolveImportedPath(F, Filename);
5056 if (auto *Umbrella = PP.getFileManager().getFile(Filename)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005057 if (!CurrentModule->getUmbrellaHeader())
Richard Smith2b63d152015-05-16 02:28:53 +00005058 ModMap.setUmbrellaHeader(CurrentModule, Umbrella, Blob);
5059 else if (CurrentModule->getUmbrellaHeader().Entry != Umbrella) {
Bruno Cardoso Lopes573b13f2017-03-22 00:11:21 +00005060 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
5061 Error("mismatched umbrella headers in submodule");
5062 return OutOfDate;
Guy Benyei11169dd2012-12-18 14:30:41 +00005063 }
5064 }
5065 break;
5066 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005067
Richard Smith202210b2014-10-24 20:23:01 +00005068 case SUBMODULE_HEADER:
5069 case SUBMODULE_EXCLUDED_HEADER:
5070 case SUBMODULE_PRIVATE_HEADER:
5071 // We lazily associate headers with their modules via the HeaderInfo table.
Argyrios Kyrtzidisb146baa2013-03-13 21:13:51 +00005072 // FIXME: Re-evaluate this section; maybe only store InputFile IDs instead
5073 // of complete filenames or remove it entirely.
Richard Smith202210b2014-10-24 20:23:01 +00005074 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00005075
Richard Smith202210b2014-10-24 20:23:01 +00005076 case SUBMODULE_TEXTUAL_HEADER:
5077 case SUBMODULE_PRIVATE_TEXTUAL_HEADER:
5078 // FIXME: Textual headers are not marked in the HeaderInfo table. Load
5079 // them here.
5080 break;
Lawrence Crowlb53e5482013-06-20 21:14:14 +00005081
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005082 case SUBMODULE_TOPHEADER:
Argyrios Kyrtzidis3c5305c2013-03-13 21:13:43 +00005083 CurrentModule->addTopHeaderFilename(Blob);
Guy Benyei11169dd2012-12-18 14:30:41 +00005084 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00005085
5086 case SUBMODULE_UMBRELLA_DIR: {
Richard Smith2b63d152015-05-16 02:28:53 +00005087 std::string Dirname = Blob;
5088 ResolveImportedPath(F, Dirname);
5089 if (auto *Umbrella = PP.getFileManager().getDirectory(Dirname)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005090 if (!CurrentModule->getUmbrellaDir())
Richard Smith2b63d152015-05-16 02:28:53 +00005091 ModMap.setUmbrellaDir(CurrentModule, Umbrella, Blob);
5092 else if (CurrentModule->getUmbrellaDir().Entry != Umbrella) {
Ben Langmuir2c9af442014-04-10 17:57:43 +00005093 if ((ClientLoadCapabilities & ARR_OutOfDate) == 0)
5094 Error("mismatched umbrella directories in submodule");
5095 return OutOfDate;
Guy Benyei11169dd2012-12-18 14:30:41 +00005096 }
5097 }
5098 break;
5099 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005100
Guy Benyei11169dd2012-12-18 14:30:41 +00005101 case SUBMODULE_METADATA: {
Guy Benyei11169dd2012-12-18 14:30:41 +00005102 F.BaseSubmoduleID = getTotalNumSubmodules();
5103 F.LocalNumSubmodules = Record[0];
5104 unsigned LocalBaseSubmoduleID = Record[1];
5105 if (F.LocalNumSubmodules > 0) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005106 // Introduce the global -> local mapping for submodules within this
Guy Benyei11169dd2012-12-18 14:30:41 +00005107 // module.
5108 GlobalSubmoduleMap.insert(std::make_pair(getTotalNumSubmodules()+1,&F));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005109
5110 // Introduce the local -> global mapping for submodules within this
Guy Benyei11169dd2012-12-18 14:30:41 +00005111 // module.
5112 F.SubmoduleRemap.insertOrReplace(
5113 std::make_pair(LocalBaseSubmoduleID,
5114 F.BaseSubmoduleID - LocalBaseSubmoduleID));
Ben Langmuirfe971d92014-08-16 04:54:18 +00005115
Ben Langmuir52ca6782014-10-20 16:27:32 +00005116 SubmodulesLoaded.resize(SubmodulesLoaded.size() + F.LocalNumSubmodules);
5117 }
Guy Benyei11169dd2012-12-18 14:30:41 +00005118 break;
5119 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005120
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005121 case SUBMODULE_IMPORTS:
Guy Benyei11169dd2012-12-18 14:30:41 +00005122 for (unsigned Idx = 0; Idx != Record.size(); ++Idx) {
Douglas Gregorfb912652013-03-20 21:10:35 +00005123 UnresolvedModuleRef Unresolved;
Guy Benyei11169dd2012-12-18 14:30:41 +00005124 Unresolved.File = &F;
5125 Unresolved.Mod = CurrentModule;
5126 Unresolved.ID = Record[Idx];
Douglas Gregorfb912652013-03-20 21:10:35 +00005127 Unresolved.Kind = UnresolvedModuleRef::Import;
Guy Benyei11169dd2012-12-18 14:30:41 +00005128 Unresolved.IsWildcard = false;
Douglas Gregorfb912652013-03-20 21:10:35 +00005129 UnresolvedModuleRefs.push_back(Unresolved);
Guy Benyei11169dd2012-12-18 14:30:41 +00005130 }
5131 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00005132
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005133 case SUBMODULE_EXPORTS:
Guy Benyei11169dd2012-12-18 14:30:41 +00005134 for (unsigned Idx = 0; Idx + 1 < Record.size(); Idx += 2) {
Douglas Gregorfb912652013-03-20 21:10:35 +00005135 UnresolvedModuleRef Unresolved;
Guy Benyei11169dd2012-12-18 14:30:41 +00005136 Unresolved.File = &F;
5137 Unresolved.Mod = CurrentModule;
5138 Unresolved.ID = Record[Idx];
Douglas Gregorfb912652013-03-20 21:10:35 +00005139 Unresolved.Kind = UnresolvedModuleRef::Export;
Guy Benyei11169dd2012-12-18 14:30:41 +00005140 Unresolved.IsWildcard = Record[Idx + 1];
Douglas Gregorfb912652013-03-20 21:10:35 +00005141 UnresolvedModuleRefs.push_back(Unresolved);
Guy Benyei11169dd2012-12-18 14:30:41 +00005142 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005143
5144 // Once we've loaded the set of exports, there's no reason to keep
Guy Benyei11169dd2012-12-18 14:30:41 +00005145 // the parsed, unresolved exports around.
5146 CurrentModule->UnresolvedExports.clear();
5147 break;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005148
5149 case SUBMODULE_REQUIRES:
Richard Smithdbafb6c2017-06-29 23:23:46 +00005150 CurrentModule->addRequirement(Blob, Record[0], PP.getLangOpts(),
5151 PP.getTargetInfo());
Guy Benyei11169dd2012-12-18 14:30:41 +00005152 break;
Douglas Gregor6ddfca92013-01-14 17:21:00 +00005153
5154 case SUBMODULE_LINK_LIBRARY:
Douglas Gregor6ddfca92013-01-14 17:21:00 +00005155 CurrentModule->LinkLibraries.push_back(
Chris Lattner0e6c9402013-01-20 02:38:54 +00005156 Module::LinkLibrary(Blob, Record[0]));
Douglas Gregor6ddfca92013-01-14 17:21:00 +00005157 break;
Douglas Gregor35b13ec2013-03-20 00:22:05 +00005158
5159 case SUBMODULE_CONFIG_MACRO:
Douglas Gregor35b13ec2013-03-20 00:22:05 +00005160 CurrentModule->ConfigMacros.push_back(Blob.str());
5161 break;
Douglas Gregorfb912652013-03-20 21:10:35 +00005162
5163 case SUBMODULE_CONFLICT: {
Douglas Gregorfb912652013-03-20 21:10:35 +00005164 UnresolvedModuleRef Unresolved;
5165 Unresolved.File = &F;
5166 Unresolved.Mod = CurrentModule;
5167 Unresolved.ID = Record[0];
5168 Unresolved.Kind = UnresolvedModuleRef::Conflict;
5169 Unresolved.IsWildcard = false;
5170 Unresolved.String = Blob;
5171 UnresolvedModuleRefs.push_back(Unresolved);
5172 break;
5173 }
Richard Smithdc1f0422016-07-20 19:10:16 +00005174
Douglas Gregorf0b11de2017-09-14 23:38:44 +00005175 case SUBMODULE_INITIALIZERS: {
Richard Smithdbafb6c2017-06-29 23:23:46 +00005176 if (!ContextObj)
5177 break;
Richard Smithdc1f0422016-07-20 19:10:16 +00005178 SmallVector<uint32_t, 16> Inits;
5179 for (auto &ID : Record)
5180 Inits.push_back(getGlobalDeclID(F, ID));
Richard Smithdbafb6c2017-06-29 23:23:46 +00005181 ContextObj->addLazyModuleInitializers(CurrentModule, Inits);
Richard Smithdc1f0422016-07-20 19:10:16 +00005182 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00005183 }
Douglas Gregorf0b11de2017-09-14 23:38:44 +00005184
5185 case SUBMODULE_EXPORT_AS:
5186 CurrentModule->ExportAsModule = Blob.str();
5187 break;
5188 }
Guy Benyei11169dd2012-12-18 14:30:41 +00005189 }
5190}
5191
5192/// \brief Parse the record that corresponds to a LangOptions data
5193/// structure.
5194///
5195/// This routine parses the language options from the AST file and then gives
5196/// them to the AST listener if one is set.
5197///
5198/// \returns true if the listener deems the file unacceptable, false otherwise.
5199bool ASTReader::ParseLanguageOptions(const RecordData &Record,
5200 bool Complain,
Richard Smith1e2cf0d2014-10-31 02:28:58 +00005201 ASTReaderListener &Listener,
5202 bool AllowCompatibleDifferences) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005203 LangOptions LangOpts;
5204 unsigned Idx = 0;
5205#define LANGOPT(Name, Bits, Default, Description) \
5206 LangOpts.Name = Record[Idx++];
5207#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
5208 LangOpts.set##Name(static_cast<LangOptions::Type>(Record[Idx++]));
5209#include "clang/Basic/LangOptions.def"
Alexey Samsonovedf99a92014-11-07 22:29:38 +00005210#define SANITIZER(NAME, ID) \
5211 LangOpts.Sanitize.set(SanitizerKind::ID, Record[Idx++]);
Will Dietzf54319c2013-01-18 11:30:38 +00005212#include "clang/Basic/Sanitizers.def"
Guy Benyei11169dd2012-12-18 14:30:41 +00005213
Ben Langmuircd98cb72015-06-23 18:20:18 +00005214 for (unsigned N = Record[Idx++]; N; --N)
5215 LangOpts.ModuleFeatures.push_back(ReadString(Record, Idx));
5216
Guy Benyei11169dd2012-12-18 14:30:41 +00005217 ObjCRuntime::Kind runtimeKind = (ObjCRuntime::Kind) Record[Idx++];
5218 VersionTuple runtimeVersion = ReadVersionTuple(Record, Idx);
5219 LangOpts.ObjCRuntime = ObjCRuntime(runtimeKind, runtimeVersion);
Dmitri Gribenkoacf2e782013-02-22 14:21:27 +00005220
Ben Langmuird4a667a2015-06-23 18:20:23 +00005221 LangOpts.CurrentModule = ReadString(Record, Idx);
Dmitri Gribenkoacf2e782013-02-22 14:21:27 +00005222
5223 // Comment options.
5224 for (unsigned N = Record[Idx++]; N; --N) {
5225 LangOpts.CommentOpts.BlockCommandNames.push_back(
5226 ReadString(Record, Idx));
5227 }
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +00005228 LangOpts.CommentOpts.ParseAllComments = Record[Idx++];
Dmitri Gribenkoacf2e782013-02-22 14:21:27 +00005229
Samuel Antaoee8fb302016-01-06 13:42:12 +00005230 // OpenMP offloading options.
5231 for (unsigned N = Record[Idx++]; N; --N) {
5232 LangOpts.OMPTargetTriples.push_back(llvm::Triple(ReadString(Record, Idx)));
5233 }
5234
5235 LangOpts.OMPHostIRFile = ReadString(Record, Idx);
5236
Richard Smith1e2cf0d2014-10-31 02:28:58 +00005237 return Listener.ReadLanguageOptions(LangOpts, Complain,
5238 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +00005239}
5240
Chandler Carruth0d745bc2015-03-14 04:47:43 +00005241bool ASTReader::ParseTargetOptions(const RecordData &Record, bool Complain,
5242 ASTReaderListener &Listener,
5243 bool AllowCompatibleDifferences) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005244 unsigned Idx = 0;
5245 TargetOptions TargetOpts;
5246 TargetOpts.Triple = ReadString(Record, Idx);
5247 TargetOpts.CPU = ReadString(Record, Idx);
5248 TargetOpts.ABI = ReadString(Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00005249 for (unsigned N = Record[Idx++]; N; --N) {
5250 TargetOpts.FeaturesAsWritten.push_back(ReadString(Record, Idx));
5251 }
5252 for (unsigned N = Record[Idx++]; N; --N) {
5253 TargetOpts.Features.push_back(ReadString(Record, Idx));
5254 }
5255
Chandler Carruth0d745bc2015-03-14 04:47:43 +00005256 return Listener.ReadTargetOptions(TargetOpts, Complain,
5257 AllowCompatibleDifferences);
Guy Benyei11169dd2012-12-18 14:30:41 +00005258}
5259
5260bool ASTReader::ParseDiagnosticOptions(const RecordData &Record, bool Complain,
5261 ASTReaderListener &Listener) {
Ben Langmuirb92de022014-04-29 16:25:26 +00005262 IntrusiveRefCntPtr<DiagnosticOptions> DiagOpts(new DiagnosticOptions);
Guy Benyei11169dd2012-12-18 14:30:41 +00005263 unsigned Idx = 0;
Ben Langmuirb92de022014-04-29 16:25:26 +00005264#define DIAGOPT(Name, Bits, Default) DiagOpts->Name = Record[Idx++];
Guy Benyei11169dd2012-12-18 14:30:41 +00005265#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
Ben Langmuirb92de022014-04-29 16:25:26 +00005266 DiagOpts->set##Name(static_cast<Type>(Record[Idx++]));
Guy Benyei11169dd2012-12-18 14:30:41 +00005267#include "clang/Basic/DiagnosticOptions.def"
5268
Richard Smith3be1cb22014-08-07 00:24:21 +00005269 for (unsigned N = Record[Idx++]; N; --N)
Ben Langmuirb92de022014-04-29 16:25:26 +00005270 DiagOpts->Warnings.push_back(ReadString(Record, Idx));
Richard Smith3be1cb22014-08-07 00:24:21 +00005271 for (unsigned N = Record[Idx++]; N; --N)
5272 DiagOpts->Remarks.push_back(ReadString(Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00005273
5274 return Listener.ReadDiagnosticOptions(DiagOpts, Complain);
5275}
5276
5277bool ASTReader::ParseFileSystemOptions(const RecordData &Record, bool Complain,
5278 ASTReaderListener &Listener) {
5279 FileSystemOptions FSOpts;
5280 unsigned Idx = 0;
5281 FSOpts.WorkingDir = ReadString(Record, Idx);
5282 return Listener.ReadFileSystemOptions(FSOpts, Complain);
5283}
5284
5285bool ASTReader::ParseHeaderSearchOptions(const RecordData &Record,
5286 bool Complain,
5287 ASTReaderListener &Listener) {
5288 HeaderSearchOptions HSOpts;
5289 unsigned Idx = 0;
5290 HSOpts.Sysroot = ReadString(Record, Idx);
5291
5292 // Include entries.
5293 for (unsigned N = Record[Idx++]; N; --N) {
5294 std::string Path = ReadString(Record, Idx);
5295 frontend::IncludeDirGroup Group
5296 = static_cast<frontend::IncludeDirGroup>(Record[Idx++]);
Guy Benyei11169dd2012-12-18 14:30:41 +00005297 bool IsFramework = Record[Idx++];
5298 bool IgnoreSysRoot = Record[Idx++];
Benjamin Kramer3204b152015-05-29 19:42:19 +00005299 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework,
5300 IgnoreSysRoot);
Guy Benyei11169dd2012-12-18 14:30:41 +00005301 }
5302
5303 // System header prefixes.
5304 for (unsigned N = Record[Idx++]; N; --N) {
5305 std::string Prefix = ReadString(Record, Idx);
5306 bool IsSystemHeader = Record[Idx++];
Benjamin Kramer3204b152015-05-29 19:42:19 +00005307 HSOpts.SystemHeaderPrefixes.emplace_back(std::move(Prefix), IsSystemHeader);
Guy Benyei11169dd2012-12-18 14:30:41 +00005308 }
5309
5310 HSOpts.ResourceDir = ReadString(Record, Idx);
5311 HSOpts.ModuleCachePath = ReadString(Record, Idx);
Argyrios Kyrtzidis1594c152014-03-03 08:12:05 +00005312 HSOpts.ModuleUserBuildPath = ReadString(Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00005313 HSOpts.DisableModuleHash = Record[Idx++];
Richard Smith18934752017-06-06 00:32:01 +00005314 HSOpts.ImplicitModuleMaps = Record[Idx++];
5315 HSOpts.ModuleMapFileHomeIsCwd = Record[Idx++];
Guy Benyei11169dd2012-12-18 14:30:41 +00005316 HSOpts.UseBuiltinIncludes = Record[Idx++];
5317 HSOpts.UseStandardSystemIncludes = Record[Idx++];
5318 HSOpts.UseStandardCXXIncludes = Record[Idx++];
5319 HSOpts.UseLibcxx = Record[Idx++];
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00005320 std::string SpecificModuleCachePath = ReadString(Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00005321
Argyrios Kyrtzidisbd0b6512015-02-19 20:12:20 +00005322 return Listener.ReadHeaderSearchOptions(HSOpts, SpecificModuleCachePath,
5323 Complain);
Guy Benyei11169dd2012-12-18 14:30:41 +00005324}
5325
5326bool ASTReader::ParsePreprocessorOptions(const RecordData &Record,
5327 bool Complain,
5328 ASTReaderListener &Listener,
5329 std::string &SuggestedPredefines) {
5330 PreprocessorOptions PPOpts;
5331 unsigned Idx = 0;
5332
5333 // Macro definitions/undefs
5334 for (unsigned N = Record[Idx++]; N; --N) {
5335 std::string Macro = ReadString(Record, Idx);
5336 bool IsUndef = Record[Idx++];
5337 PPOpts.Macros.push_back(std::make_pair(Macro, IsUndef));
5338 }
5339
5340 // Includes
5341 for (unsigned N = Record[Idx++]; N; --N) {
5342 PPOpts.Includes.push_back(ReadString(Record, Idx));
5343 }
5344
5345 // Macro Includes
5346 for (unsigned N = Record[Idx++]; N; --N) {
5347 PPOpts.MacroIncludes.push_back(ReadString(Record, Idx));
5348 }
5349
5350 PPOpts.UsePredefines = Record[Idx++];
Argyrios Kyrtzidisd3afa0c2013-04-26 21:33:40 +00005351 PPOpts.DetailedRecord = Record[Idx++];
Guy Benyei11169dd2012-12-18 14:30:41 +00005352 PPOpts.ImplicitPCHInclude = ReadString(Record, Idx);
5353 PPOpts.ImplicitPTHInclude = ReadString(Record, Idx);
5354 PPOpts.ObjCXXARCStandardLibrary =
5355 static_cast<ObjCXXARCStandardLibraryKind>(Record[Idx++]);
5356 SuggestedPredefines.clear();
5357 return Listener.ReadPreprocessorOptions(PPOpts, Complain,
5358 SuggestedPredefines);
5359}
5360
5361std::pair<ModuleFile *, unsigned>
5362ASTReader::getModulePreprocessedEntity(unsigned GlobalIndex) {
5363 GlobalPreprocessedEntityMapType::iterator
5364 I = GlobalPreprocessedEntityMap.find(GlobalIndex);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005365 assert(I != GlobalPreprocessedEntityMap.end() &&
Guy Benyei11169dd2012-12-18 14:30:41 +00005366 "Corrupted global preprocessed entity map");
5367 ModuleFile *M = I->second;
5368 unsigned LocalIndex = GlobalIndex - M->BasePreprocessedEntityID;
5369 return std::make_pair(M, LocalIndex);
5370}
5371
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00005372llvm::iterator_range<PreprocessingRecord::iterator>
Guy Benyei11169dd2012-12-18 14:30:41 +00005373ASTReader::getModulePreprocessedEntities(ModuleFile &Mod) const {
5374 if (PreprocessingRecord *PPRec = PP.getPreprocessingRecord())
5375 return PPRec->getIteratorsForLoadedRange(Mod.BasePreprocessedEntityID,
5376 Mod.NumPreprocessedEntities);
5377
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00005378 return llvm::make_range(PreprocessingRecord::iterator(),
5379 PreprocessingRecord::iterator());
Guy Benyei11169dd2012-12-18 14:30:41 +00005380}
5381
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00005382llvm::iterator_range<ASTReader::ModuleDeclIterator>
Guy Benyei11169dd2012-12-18 14:30:41 +00005383ASTReader::getModuleFileLevelDecls(ModuleFile &Mod) {
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00005384 return llvm::make_range(
5385 ModuleDeclIterator(this, &Mod, Mod.FileSortedDecls),
5386 ModuleDeclIterator(this, &Mod,
5387 Mod.FileSortedDecls + Mod.NumFileSortedDecls));
Guy Benyei11169dd2012-12-18 14:30:41 +00005388}
5389
5390PreprocessedEntity *ASTReader::ReadPreprocessedEntity(unsigned Index) {
5391 PreprocessedEntityID PPID = Index+1;
5392 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
5393 ModuleFile &M = *PPInfo.first;
5394 unsigned LocalIndex = PPInfo.second;
5395 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
5396
Guy Benyei11169dd2012-12-18 14:30:41 +00005397 if (!PP.getPreprocessingRecord()) {
5398 Error("no preprocessing record");
Craig Toppera13603a2014-05-22 05:54:18 +00005399 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00005400 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005401
5402 SavedStreamPosition SavedPosition(M.PreprocessorDetailCursor);
Chris Lattner7fb3bef2013-01-20 00:56:42 +00005403 M.PreprocessorDetailCursor.JumpToBit(PPOffs.BitOffset);
5404
5405 llvm::BitstreamEntry Entry =
5406 M.PreprocessorDetailCursor.advance(BitstreamCursor::AF_DontPopBlockAtEnd);
5407 if (Entry.Kind != llvm::BitstreamEntry::Record)
Craig Toppera13603a2014-05-22 05:54:18 +00005408 return nullptr;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00005409
Guy Benyei11169dd2012-12-18 14:30:41 +00005410 // Read the record.
Richard Smithcb34bd32016-03-27 07:28:06 +00005411 SourceRange Range(TranslateSourceLocation(M, PPOffs.getBegin()),
5412 TranslateSourceLocation(M, PPOffs.getEnd()));
Guy Benyei11169dd2012-12-18 14:30:41 +00005413 PreprocessingRecord &PPRec = *PP.getPreprocessingRecord();
Chris Lattner0e6c9402013-01-20 02:38:54 +00005414 StringRef Blob;
Guy Benyei11169dd2012-12-18 14:30:41 +00005415 RecordData Record;
5416 PreprocessorDetailRecordTypes RecType =
Chris Lattner0e6c9402013-01-20 02:38:54 +00005417 (PreprocessorDetailRecordTypes)M.PreprocessorDetailCursor.readRecord(
5418 Entry.ID, Record, &Blob);
Guy Benyei11169dd2012-12-18 14:30:41 +00005419 switch (RecType) {
5420 case PPD_MACRO_EXPANSION: {
5421 bool isBuiltin = Record[0];
Craig Toppera13603a2014-05-22 05:54:18 +00005422 IdentifierInfo *Name = nullptr;
Richard Smith66a81862015-05-04 02:25:31 +00005423 MacroDefinitionRecord *Def = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00005424 if (isBuiltin)
5425 Name = getLocalIdentifier(M, Record[1]);
5426 else {
Richard Smith66a81862015-05-04 02:25:31 +00005427 PreprocessedEntityID GlobalID =
5428 getGlobalPreprocessedEntityID(M, Record[1]);
5429 Def = cast<MacroDefinitionRecord>(
5430 PPRec.getLoadedPreprocessedEntity(GlobalID - 1));
Guy Benyei11169dd2012-12-18 14:30:41 +00005431 }
5432
5433 MacroExpansion *ME;
5434 if (isBuiltin)
5435 ME = new (PPRec) MacroExpansion(Name, Range);
5436 else
5437 ME = new (PPRec) MacroExpansion(Def, Range);
5438
5439 return ME;
5440 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005441
Guy Benyei11169dd2012-12-18 14:30:41 +00005442 case PPD_MACRO_DEFINITION: {
5443 // Decode the identifier info and then check again; if the macro is
5444 // still defined and associated with the identifier,
5445 IdentifierInfo *II = getLocalIdentifier(M, Record[0]);
Richard Smith66a81862015-05-04 02:25:31 +00005446 MacroDefinitionRecord *MD = new (PPRec) MacroDefinitionRecord(II, Range);
Guy Benyei11169dd2012-12-18 14:30:41 +00005447
5448 if (DeserializationListener)
5449 DeserializationListener->MacroDefinitionRead(PPID, MD);
5450
5451 return MD;
5452 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005453
Guy Benyei11169dd2012-12-18 14:30:41 +00005454 case PPD_INCLUSION_DIRECTIVE: {
Chris Lattner0e6c9402013-01-20 02:38:54 +00005455 const char *FullFileNameStart = Blob.data() + Record[0];
5456 StringRef FullFileName(FullFileNameStart, Blob.size() - Record[0]);
Craig Toppera13603a2014-05-22 05:54:18 +00005457 const FileEntry *File = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00005458 if (!FullFileName.empty())
5459 File = PP.getFileManager().getFile(FullFileName);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005460
Guy Benyei11169dd2012-12-18 14:30:41 +00005461 // FIXME: Stable encoding
5462 InclusionDirective::InclusionKind Kind
5463 = static_cast<InclusionDirective::InclusionKind>(Record[2]);
5464 InclusionDirective *ID
5465 = new (PPRec) InclusionDirective(PPRec, Kind,
Chris Lattner0e6c9402013-01-20 02:38:54 +00005466 StringRef(Blob.data(), Record[0]),
Guy Benyei11169dd2012-12-18 14:30:41 +00005467 Record[1], Record[3],
5468 File,
5469 Range);
5470 return ID;
5471 }
5472 }
5473
5474 llvm_unreachable("Invalid PreprocessorDetailRecordTypes");
5475}
5476
NAKAMURA Takumi12ab07e2017-10-12 09:42:14 +00005477/// \brief Find the next module that contains entities and return the ID
Guy Benyei11169dd2012-12-18 14:30:41 +00005478/// of the first entry.
NAKAMURA Takumi12ab07e2017-10-12 09:42:14 +00005479///
5480/// \param SLocMapI points at a chunk of a module that contains no
5481/// preprocessed entities or the entities it contains are not the ones we are
5482/// looking for.
Guy Benyei11169dd2012-12-18 14:30:41 +00005483PreprocessedEntityID ASTReader::findNextPreprocessedEntity(
5484 GlobalSLocOffsetMapType::const_iterator SLocMapI) const {
5485 ++SLocMapI;
5486 for (GlobalSLocOffsetMapType::const_iterator
5487 EndI = GlobalSLocOffsetMap.end(); SLocMapI != EndI; ++SLocMapI) {
5488 ModuleFile &M = *SLocMapI->second;
5489 if (M.NumPreprocessedEntities)
5490 return M.BasePreprocessedEntityID;
5491 }
5492
5493 return getTotalNumPreprocessedEntities();
5494}
5495
5496namespace {
5497
Guy Benyei11169dd2012-12-18 14:30:41 +00005498struct PPEntityComp {
5499 const ASTReader &Reader;
5500 ModuleFile &M;
5501
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005502 PPEntityComp(const ASTReader &Reader, ModuleFile &M) : Reader(Reader), M(M) {}
Guy Benyei11169dd2012-12-18 14:30:41 +00005503
5504 bool operator()(const PPEntityOffset &L, const PPEntityOffset &R) const {
5505 SourceLocation LHS = getLoc(L);
5506 SourceLocation RHS = getLoc(R);
5507 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5508 }
5509
5510 bool operator()(const PPEntityOffset &L, SourceLocation RHS) const {
5511 SourceLocation LHS = getLoc(L);
5512 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5513 }
5514
5515 bool operator()(SourceLocation LHS, const PPEntityOffset &R) const {
5516 SourceLocation RHS = getLoc(R);
5517 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
5518 }
5519
5520 SourceLocation getLoc(const PPEntityOffset &PPE) const {
Richard Smithb22a1d12016-03-27 20:13:24 +00005521 return Reader.TranslateSourceLocation(M, PPE.getBegin());
Guy Benyei11169dd2012-12-18 14:30:41 +00005522 }
5523};
5524
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005525} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00005526
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005527PreprocessedEntityID ASTReader::findPreprocessedEntity(SourceLocation Loc,
5528 bool EndsAfter) const {
5529 if (SourceMgr.isLocalSourceLocation(Loc))
Guy Benyei11169dd2012-12-18 14:30:41 +00005530 return getTotalNumPreprocessedEntities();
5531
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005532 GlobalSLocOffsetMapType::const_iterator SLocMapI = GlobalSLocOffsetMap.find(
5533 SourceManager::MaxLoadedOffset - Loc.getOffset() - 1);
Guy Benyei11169dd2012-12-18 14:30:41 +00005534 assert(SLocMapI != GlobalSLocOffsetMap.end() &&
5535 "Corrupted global sloc offset map");
5536
5537 if (SLocMapI->second->NumPreprocessedEntities == 0)
5538 return findNextPreprocessedEntity(SLocMapI);
5539
5540 ModuleFile &M = *SLocMapI->second;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005541
5542 using pp_iterator = const PPEntityOffset *;
5543
Guy Benyei11169dd2012-12-18 14:30:41 +00005544 pp_iterator pp_begin = M.PreprocessedEntityOffsets;
5545 pp_iterator pp_end = pp_begin + M.NumPreprocessedEntities;
5546
5547 size_t Count = M.NumPreprocessedEntities;
5548 size_t Half;
5549 pp_iterator First = pp_begin;
5550 pp_iterator PPI;
5551
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005552 if (EndsAfter) {
5553 PPI = std::upper_bound(pp_begin, pp_end, Loc,
Richard Smithb22a1d12016-03-27 20:13:24 +00005554 PPEntityComp(*this, M));
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005555 } else {
5556 // Do a binary search manually instead of using std::lower_bound because
5557 // The end locations of entities may be unordered (when a macro expansion
5558 // is inside another macro argument), but for this case it is not important
5559 // whether we get the first macro expansion or its containing macro.
5560 while (Count > 0) {
5561 Half = Count / 2;
5562 PPI = First;
5563 std::advance(PPI, Half);
Richard Smithb22a1d12016-03-27 20:13:24 +00005564 if (SourceMgr.isBeforeInTranslationUnit(
5565 TranslateSourceLocation(M, PPI->getEnd()), Loc)) {
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005566 First = PPI;
5567 ++First;
5568 Count = Count - Half - 1;
5569 } else
5570 Count = Half;
5571 }
Guy Benyei11169dd2012-12-18 14:30:41 +00005572 }
5573
5574 if (PPI == pp_end)
5575 return findNextPreprocessedEntity(SLocMapI);
5576
5577 return M.BasePreprocessedEntityID + (PPI - pp_begin);
5578}
5579
Guy Benyei11169dd2012-12-18 14:30:41 +00005580/// \brief Returns a pair of [Begin, End) indices of preallocated
5581/// preprocessed entities that \arg Range encompasses.
5582std::pair<unsigned, unsigned>
5583 ASTReader::findPreprocessedEntitiesInRange(SourceRange Range) {
5584 if (Range.isInvalid())
5585 return std::make_pair(0,0);
5586 assert(!SourceMgr.isBeforeInTranslationUnit(Range.getEnd(),Range.getBegin()));
5587
Alp Toker2e9ce4c2014-05-16 18:59:21 +00005588 PreprocessedEntityID BeginID =
5589 findPreprocessedEntity(Range.getBegin(), false);
5590 PreprocessedEntityID EndID = findPreprocessedEntity(Range.getEnd(), true);
Guy Benyei11169dd2012-12-18 14:30:41 +00005591 return std::make_pair(BeginID, EndID);
5592}
5593
5594/// \brief Optionally returns true or false if the preallocated preprocessed
5595/// entity with index \arg Index came from file \arg FID.
David Blaikie05785d12013-02-20 22:23:23 +00005596Optional<bool> ASTReader::isPreprocessedEntityInFileID(unsigned Index,
Guy Benyei11169dd2012-12-18 14:30:41 +00005597 FileID FID) {
5598 if (FID.isInvalid())
5599 return false;
5600
5601 std::pair<ModuleFile *, unsigned> PPInfo = getModulePreprocessedEntity(Index);
5602 ModuleFile &M = *PPInfo.first;
5603 unsigned LocalIndex = PPInfo.second;
5604 const PPEntityOffset &PPOffs = M.PreprocessedEntityOffsets[LocalIndex];
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005605
Richard Smithcb34bd32016-03-27 07:28:06 +00005606 SourceLocation Loc = TranslateSourceLocation(M, PPOffs.getBegin());
Guy Benyei11169dd2012-12-18 14:30:41 +00005607 if (Loc.isInvalid())
5608 return false;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005609
Guy Benyei11169dd2012-12-18 14:30:41 +00005610 if (SourceMgr.isInFileID(SourceMgr.getFileLoc(Loc), FID))
5611 return true;
5612 else
5613 return false;
5614}
5615
5616namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00005617
Guy Benyei11169dd2012-12-18 14:30:41 +00005618 /// \brief Visitor used to search for information about a header file.
5619 class HeaderFileInfoVisitor {
Guy Benyei11169dd2012-12-18 14:30:41 +00005620 const FileEntry *FE;
David Blaikie05785d12013-02-20 22:23:23 +00005621 Optional<HeaderFileInfo> HFI;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005622
Guy Benyei11169dd2012-12-18 14:30:41 +00005623 public:
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005624 explicit HeaderFileInfoVisitor(const FileEntry *FE) : FE(FE) {}
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00005625
5626 bool operator()(ModuleFile &M) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005627 HeaderFileInfoLookupTable *Table
5628 = static_cast<HeaderFileInfoLookupTable *>(M.HeaderFileInfoTable);
5629 if (!Table)
5630 return false;
5631
5632 // Look in the on-disk hash table for an entry for this file name.
Richard Smithbdf2d932015-07-30 03:37:16 +00005633 HeaderFileInfoLookupTable::iterator Pos = Table->find(FE);
Guy Benyei11169dd2012-12-18 14:30:41 +00005634 if (Pos == Table->end())
5635 return false;
5636
Richard Smithbdf2d932015-07-30 03:37:16 +00005637 HFI = *Pos;
Guy Benyei11169dd2012-12-18 14:30:41 +00005638 return true;
5639 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005640
David Blaikie05785d12013-02-20 22:23:23 +00005641 Optional<HeaderFileInfo> getHeaderFileInfo() const { return HFI; }
Guy Benyei11169dd2012-12-18 14:30:41 +00005642 };
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00005643
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00005644} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00005645
5646HeaderFileInfo ASTReader::GetHeaderFileInfo(const FileEntry *FE) {
Argyrios Kyrtzidis61a38962013-03-06 18:12:44 +00005647 HeaderFileInfoVisitor Visitor(FE);
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00005648 ModuleMgr.visit(Visitor);
Argyrios Kyrtzidis1054bbf2013-05-08 23:46:55 +00005649 if (Optional<HeaderFileInfo> HFI = Visitor.getHeaderFileInfo())
Guy Benyei11169dd2012-12-18 14:30:41 +00005650 return *HFI;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005651
Guy Benyei11169dd2012-12-18 14:30:41 +00005652 return HeaderFileInfo();
5653}
5654
5655void ASTReader::ReadPragmaDiagnosticMappings(DiagnosticsEngine &Diag) {
Richard Smithd230de22017-01-26 01:01:01 +00005656 using DiagState = DiagnosticsEngine::DiagState;
5657 SmallVector<DiagState *, 32> DiagStates;
5658
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00005659 for (ModuleFile &F : ModuleMgr) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005660 unsigned Idx = 0;
Richard Smithd230de22017-01-26 01:01:01 +00005661 auto &Record = F.PragmaDiagMappings;
5662 if (Record.empty())
5663 continue;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005664
Richard Smithd230de22017-01-26 01:01:01 +00005665 DiagStates.clear();
5666
5667 auto ReadDiagState =
5668 [&](const DiagState &BasedOn, SourceLocation Loc,
5669 bool IncludeNonPragmaStates) -> DiagnosticsEngine::DiagState * {
5670 unsigned BackrefID = Record[Idx++];
5671 if (BackrefID != 0)
5672 return DiagStates[BackrefID - 1];
5673
Guy Benyei11169dd2012-12-18 14:30:41 +00005674 // A new DiagState was created here.
Richard Smithd230de22017-01-26 01:01:01 +00005675 Diag.DiagStates.push_back(BasedOn);
5676 DiagState *NewState = &Diag.DiagStates.back();
Guy Benyei11169dd2012-12-18 14:30:41 +00005677 DiagStates.push_back(NewState);
Duncan P. N. Exon Smith3cb183b2017-03-14 19:31:27 +00005678 unsigned Size = Record[Idx++];
5679 assert(Idx + Size * 2 <= Record.size() &&
5680 "Invalid data, not enough diag/map pairs");
5681 while (Size--) {
Richard Smithd230de22017-01-26 01:01:01 +00005682 unsigned DiagID = Record[Idx++];
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005683 DiagnosticMapping NewMapping =
Richard Smithe37391c2017-05-03 00:28:49 +00005684 DiagnosticMapping::deserialize(Record[Idx++]);
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005685 if (!NewMapping.isPragma() && !IncludeNonPragmaStates)
5686 continue;
5687
5688 DiagnosticMapping &Mapping = NewState->getOrAddMapping(DiagID);
5689
5690 // If this mapping was specified as a warning but the severity was
5691 // upgraded due to diagnostic settings, simulate the current diagnostic
5692 // settings (and use a warning).
Richard Smithe37391c2017-05-03 00:28:49 +00005693 if (NewMapping.wasUpgradedFromWarning() && !Mapping.isErrorOrFatal()) {
5694 NewMapping.setSeverity(diag::Severity::Warning);
5695 NewMapping.setUpgradedFromWarning(false);
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005696 }
5697
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005698 Mapping = NewMapping;
Richard Smithd230de22017-01-26 01:01:01 +00005699 }
Richard Smithd230de22017-01-26 01:01:01 +00005700 return NewState;
5701 };
5702
Duncan P. N. Exon Smitha351c102017-04-12 03:45:32 +00005703 // Read the first state.
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005704 DiagState *FirstState;
5705 if (F.Kind == MK_ImplicitModule) {
5706 // Implicitly-built modules are reused with different diagnostic
5707 // settings. Use the initial diagnostic state from Diag to simulate this
5708 // compilation's diagnostic settings.
5709 FirstState = Diag.DiagStatesByLoc.FirstDiagState;
5710 DiagStates.push_back(FirstState);
5711
5712 // Skip the initial diagnostic state from the serialized module.
Richard Smithe37391c2017-05-03 00:28:49 +00005713 assert(Record[1] == 0 &&
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005714 "Invalid data, unexpected backref in initial state");
Richard Smithe37391c2017-05-03 00:28:49 +00005715 Idx = 3 + Record[2] * 2;
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005716 assert(Idx < Record.size() &&
5717 "Invalid data, not enough state change pairs in initial state");
Richard Smithe37391c2017-05-03 00:28:49 +00005718 } else if (F.isModule()) {
5719 // For an explicit module, preserve the flags from the module build
5720 // command line (-w, -Weverything, -Werror, ...) along with any explicit
5721 // -Wblah flags.
5722 unsigned Flags = Record[Idx++];
5723 DiagState Initial;
5724 Initial.SuppressSystemWarnings = Flags & 1; Flags >>= 1;
5725 Initial.ErrorsAsFatal = Flags & 1; Flags >>= 1;
5726 Initial.WarningsAsErrors = Flags & 1; Flags >>= 1;
5727 Initial.EnableAllWarnings = Flags & 1; Flags >>= 1;
5728 Initial.IgnoreAllWarnings = Flags & 1; Flags >>= 1;
5729 Initial.ExtBehavior = (diag::Severity)Flags;
5730 FirstState = ReadDiagState(Initial, SourceLocation(), true);
Richard Smithea741482017-05-01 22:10:47 +00005731
Richard Smithe37391c2017-05-03 00:28:49 +00005732 // Set up the root buffer of the module to start with the initial
5733 // diagnostic state of the module itself, to cover files that contain no
5734 // explicit transitions (for which we did not serialize anything).
5735 Diag.DiagStatesByLoc.Files[F.OriginalSourceFileID]
5736 .StateTransitions.push_back({FirstState, 0});
5737 } else {
5738 // For prefix ASTs, start with whatever the user configured on the
5739 // command line.
5740 Idx++; // Skip flags.
5741 FirstState = ReadDiagState(*Diag.DiagStatesByLoc.CurDiagState,
5742 SourceLocation(), false);
Duncan P. N. Exon Smith900f8172017-04-12 03:58:58 +00005743 }
Richard Smithd230de22017-01-26 01:01:01 +00005744
Duncan P. N. Exon Smitha351c102017-04-12 03:45:32 +00005745 // Read the state transitions.
5746 unsigned NumLocations = Record[Idx++];
5747 while (NumLocations--) {
5748 assert(Idx < Record.size() &&
5749 "Invalid data, missing pragma diagnostic states");
Richard Smithd230de22017-01-26 01:01:01 +00005750 SourceLocation Loc = ReadSourceLocation(F, Record[Idx++]);
5751 auto IDAndOffset = SourceMgr.getDecomposedLoc(Loc);
5752 assert(IDAndOffset.second == 0 && "not a start location for a FileID");
5753 unsigned Transitions = Record[Idx++];
5754
5755 // Note that we don't need to set up Parent/ParentOffset here, because
5756 // we won't be changing the diagnostic state within imported FileIDs
5757 // (other than perhaps appending to the main source file, which has no
5758 // parent).
5759 auto &F = Diag.DiagStatesByLoc.Files[IDAndOffset.first];
5760 F.StateTransitions.reserve(F.StateTransitions.size() + Transitions);
5761 for (unsigned I = 0; I != Transitions; ++I) {
5762 unsigned Offset = Record[Idx++];
5763 auto *State =
5764 ReadDiagState(*FirstState, Loc.getLocWithOffset(Offset), false);
5765 F.StateTransitions.push_back({State, Offset});
Guy Benyei11169dd2012-12-18 14:30:41 +00005766 }
5767 }
Richard Smithd230de22017-01-26 01:01:01 +00005768
Duncan P. N. Exon Smitha351c102017-04-12 03:45:32 +00005769 // Read the final state.
5770 assert(Idx < Record.size() &&
5771 "Invalid data, missing final pragma diagnostic state");
5772 SourceLocation CurStateLoc =
5773 ReadSourceLocation(F, F.PragmaDiagMappings[Idx++]);
5774 auto *CurState = ReadDiagState(*FirstState, CurStateLoc, false);
5775
5776 if (!F.isModule()) {
5777 Diag.DiagStatesByLoc.CurDiagState = CurState;
5778 Diag.DiagStatesByLoc.CurDiagStateLoc = CurStateLoc;
5779
5780 // Preserve the property that the imaginary root file describes the
5781 // current state.
Simon Pilgrim22518632017-10-10 13:56:17 +00005782 FileID NullFile;
5783 auto &T = Diag.DiagStatesByLoc.Files[NullFile].StateTransitions;
Duncan P. N. Exon Smitha351c102017-04-12 03:45:32 +00005784 if (T.empty())
5785 T.push_back({CurState, 0});
5786 else
5787 T[0].State = CurState;
5788 }
5789
Richard Smithd230de22017-01-26 01:01:01 +00005790 // Don't try to read these mappings again.
5791 Record.clear();
Guy Benyei11169dd2012-12-18 14:30:41 +00005792 }
5793}
5794
5795/// \brief Get the correct cursor and offset for loading a type.
5796ASTReader::RecordLocation ASTReader::TypeCursorForIndex(unsigned Index) {
5797 GlobalTypeMapType::iterator I = GlobalTypeMap.find(Index);
5798 assert(I != GlobalTypeMap.end() && "Corrupted global type map");
5799 ModuleFile *M = I->second;
5800 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]);
5801}
5802
5803/// \brief Read and return the type with the given index..
5804///
5805/// The index is the type ID, shifted and minus the number of predefs. This
5806/// routine actually reads the record corresponding to the type at the given
5807/// location. It is a helper routine for GetType, which deals with reading type
5808/// IDs.
5809QualType ASTReader::readTypeRecord(unsigned Index) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00005810 assert(ContextObj && "reading type with no AST context");
5811 ASTContext &Context = *ContextObj;
Guy Benyei11169dd2012-12-18 14:30:41 +00005812 RecordLocation Loc = TypeCursorForIndex(Index);
Chris Lattner7fb3bef2013-01-20 00:56:42 +00005813 BitstreamCursor &DeclsCursor = Loc.F->DeclsCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00005814
5815 // Keep track of where we are in the stream, then jump back there
5816 // after reading this type.
5817 SavedStreamPosition SavedPosition(DeclsCursor);
5818
5819 ReadingKindTracker ReadingKind(Read_Type, *this);
5820
5821 // Note that we are loading a type record.
5822 Deserializing AType(this);
5823
5824 unsigned Idx = 0;
5825 DeclsCursor.JumpToBit(Loc.Offset);
5826 RecordData Record;
5827 unsigned Code = DeclsCursor.ReadCode();
Chris Lattner0e6c9402013-01-20 02:38:54 +00005828 switch ((TypeCode)DeclsCursor.readRecord(Code, Record)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005829 case TYPE_EXT_QUAL: {
5830 if (Record.size() != 2) {
5831 Error("Incorrect encoding of extended qualifier type");
5832 return QualType();
5833 }
5834 QualType Base = readType(*Loc.F, Record, Idx);
5835 Qualifiers Quals = Qualifiers::fromOpaqueValue(Record[Idx++]);
5836 return Context.getQualifiedType(Base, Quals);
5837 }
5838
5839 case TYPE_COMPLEX: {
5840 if (Record.size() != 1) {
5841 Error("Incorrect encoding of complex type");
5842 return QualType();
5843 }
5844 QualType ElemType = readType(*Loc.F, Record, Idx);
5845 return Context.getComplexType(ElemType);
5846 }
5847
5848 case TYPE_POINTER: {
5849 if (Record.size() != 1) {
5850 Error("Incorrect encoding of pointer type");
5851 return QualType();
5852 }
5853 QualType PointeeType = readType(*Loc.F, Record, Idx);
5854 return Context.getPointerType(PointeeType);
5855 }
5856
Reid Kleckner8a365022013-06-24 17:51:48 +00005857 case TYPE_DECAYED: {
5858 if (Record.size() != 1) {
5859 Error("Incorrect encoding of decayed type");
5860 return QualType();
5861 }
5862 QualType OriginalType = readType(*Loc.F, Record, Idx);
5863 QualType DT = Context.getAdjustedParameterType(OriginalType);
5864 if (!isa<DecayedType>(DT))
5865 Error("Decayed type does not decay");
5866 return DT;
5867 }
5868
Reid Kleckner0503a872013-12-05 01:23:43 +00005869 case TYPE_ADJUSTED: {
5870 if (Record.size() != 2) {
5871 Error("Incorrect encoding of adjusted type");
5872 return QualType();
5873 }
5874 QualType OriginalTy = readType(*Loc.F, Record, Idx);
5875 QualType AdjustedTy = readType(*Loc.F, Record, Idx);
5876 return Context.getAdjustedType(OriginalTy, AdjustedTy);
5877 }
5878
Guy Benyei11169dd2012-12-18 14:30:41 +00005879 case TYPE_BLOCK_POINTER: {
5880 if (Record.size() != 1) {
5881 Error("Incorrect encoding of block pointer type");
5882 return QualType();
5883 }
5884 QualType PointeeType = readType(*Loc.F, Record, Idx);
5885 return Context.getBlockPointerType(PointeeType);
5886 }
5887
5888 case TYPE_LVALUE_REFERENCE: {
5889 if (Record.size() != 2) {
5890 Error("Incorrect encoding of lvalue reference type");
5891 return QualType();
5892 }
5893 QualType PointeeType = readType(*Loc.F, Record, Idx);
5894 return Context.getLValueReferenceType(PointeeType, Record[1]);
5895 }
5896
5897 case TYPE_RVALUE_REFERENCE: {
5898 if (Record.size() != 1) {
5899 Error("Incorrect encoding of rvalue reference type");
5900 return QualType();
5901 }
5902 QualType PointeeType = readType(*Loc.F, Record, Idx);
5903 return Context.getRValueReferenceType(PointeeType);
5904 }
5905
5906 case TYPE_MEMBER_POINTER: {
5907 if (Record.size() != 2) {
5908 Error("Incorrect encoding of member pointer type");
5909 return QualType();
5910 }
5911 QualType PointeeType = readType(*Loc.F, Record, Idx);
5912 QualType ClassType = readType(*Loc.F, Record, Idx);
5913 if (PointeeType.isNull() || ClassType.isNull())
5914 return QualType();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00005915
Guy Benyei11169dd2012-12-18 14:30:41 +00005916 return Context.getMemberPointerType(PointeeType, ClassType.getTypePtr());
5917 }
5918
5919 case TYPE_CONSTANT_ARRAY: {
5920 QualType ElementType = readType(*Loc.F, Record, Idx);
5921 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
5922 unsigned IndexTypeQuals = Record[2];
5923 unsigned Idx = 3;
5924 llvm::APInt Size = ReadAPInt(Record, Idx);
5925 return Context.getConstantArrayType(ElementType, Size,
5926 ASM, IndexTypeQuals);
5927 }
5928
5929 case TYPE_INCOMPLETE_ARRAY: {
5930 QualType ElementType = readType(*Loc.F, Record, Idx);
5931 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
5932 unsigned IndexTypeQuals = Record[2];
5933 return Context.getIncompleteArrayType(ElementType, ASM, IndexTypeQuals);
5934 }
5935
5936 case TYPE_VARIABLE_ARRAY: {
5937 QualType ElementType = readType(*Loc.F, Record, Idx);
5938 ArrayType::ArraySizeModifier ASM = (ArrayType::ArraySizeModifier)Record[1];
5939 unsigned IndexTypeQuals = Record[2];
5940 SourceLocation LBLoc = ReadSourceLocation(*Loc.F, Record[3]);
5941 SourceLocation RBLoc = ReadSourceLocation(*Loc.F, Record[4]);
5942 return Context.getVariableArrayType(ElementType, ReadExpr(*Loc.F),
5943 ASM, IndexTypeQuals,
5944 SourceRange(LBLoc, RBLoc));
5945 }
5946
5947 case TYPE_VECTOR: {
5948 if (Record.size() != 3) {
5949 Error("incorrect encoding of vector type in AST file");
5950 return QualType();
5951 }
5952
5953 QualType ElementType = readType(*Loc.F, Record, Idx);
5954 unsigned NumElements = Record[1];
5955 unsigned VecKind = Record[2];
5956 return Context.getVectorType(ElementType, NumElements,
5957 (VectorType::VectorKind)VecKind);
5958 }
5959
5960 case TYPE_EXT_VECTOR: {
5961 if (Record.size() != 3) {
5962 Error("incorrect encoding of extended vector type in AST file");
5963 return QualType();
5964 }
5965
5966 QualType ElementType = readType(*Loc.F, Record, Idx);
5967 unsigned NumElements = Record[1];
5968 return Context.getExtVectorType(ElementType, NumElements);
5969 }
5970
5971 case TYPE_FUNCTION_NO_PROTO: {
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00005972 if (Record.size() != 7) {
Guy Benyei11169dd2012-12-18 14:30:41 +00005973 Error("incorrect encoding of no-proto function type");
5974 return QualType();
5975 }
5976 QualType ResultType = readType(*Loc.F, Record, Idx);
5977 FunctionType::ExtInfo Info(Record[1], Record[2], Record[3],
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00005978 (CallingConv)Record[4], Record[5], Record[6]);
Guy Benyei11169dd2012-12-18 14:30:41 +00005979 return Context.getFunctionNoProtoType(ResultType, Info);
5980 }
5981
5982 case TYPE_FUNCTION_PROTO: {
5983 QualType ResultType = readType(*Loc.F, Record, Idx);
5984
5985 FunctionProtoType::ExtProtoInfo EPI;
5986 EPI.ExtInfo = FunctionType::ExtInfo(/*noreturn*/ Record[1],
5987 /*hasregparm*/ Record[2],
5988 /*regparm*/ Record[3],
5989 static_cast<CallingConv>(Record[4]),
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00005990 /*produces*/ Record[5],
5991 /*nocallersavedregs*/ Record[6]);
Guy Benyei11169dd2012-12-18 14:30:41 +00005992
Oren Ben Simhon318a6ea2017-04-27 12:01:00 +00005993 unsigned Idx = 7;
Guy Benyei11169dd2012-12-18 14:30:41 +00005994
5995 EPI.Variadic = Record[Idx++];
5996 EPI.HasTrailingReturn = Record[Idx++];
5997 EPI.TypeQuals = Record[Idx++];
5998 EPI.RefQualifier = static_cast<RefQualifierKind>(Record[Idx++]);
Richard Smith564417a2014-03-20 21:47:22 +00005999 SmallVector<QualType, 8> ExceptionStorage;
Richard Smith8acb4282014-07-31 21:57:55 +00006000 readExceptionSpec(*Loc.F, ExceptionStorage, EPI.ExceptionSpec, Record, Idx);
Richard Smith01b2cb42014-07-26 06:37:51 +00006001
6002 unsigned NumParams = Record[Idx++];
6003 SmallVector<QualType, 16> ParamTypes;
6004 for (unsigned I = 0; I != NumParams; ++I)
6005 ParamTypes.push_back(readType(*Loc.F, Record, Idx));
6006
John McCall18afab72016-03-01 00:49:02 +00006007 SmallVector<FunctionProtoType::ExtParameterInfo, 4> ExtParameterInfos;
6008 if (Idx != Record.size()) {
6009 for (unsigned I = 0; I != NumParams; ++I)
6010 ExtParameterInfos.push_back(
6011 FunctionProtoType::ExtParameterInfo
6012 ::getFromOpaqueValue(Record[Idx++]));
6013 EPI.ExtParameterInfos = ExtParameterInfos.data();
6014 }
6015
6016 assert(Idx == Record.size());
6017
Jordan Rose5c382722013-03-08 21:51:21 +00006018 return Context.getFunctionType(ResultType, ParamTypes, EPI);
Guy Benyei11169dd2012-12-18 14:30:41 +00006019 }
6020
6021 case TYPE_UNRESOLVED_USING: {
6022 unsigned Idx = 0;
6023 return Context.getTypeDeclType(
6024 ReadDeclAs<UnresolvedUsingTypenameDecl>(*Loc.F, Record, Idx));
6025 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006026
Guy Benyei11169dd2012-12-18 14:30:41 +00006027 case TYPE_TYPEDEF: {
6028 if (Record.size() != 2) {
6029 Error("incorrect encoding of typedef type");
6030 return QualType();
6031 }
6032 unsigned Idx = 0;
6033 TypedefNameDecl *Decl = ReadDeclAs<TypedefNameDecl>(*Loc.F, Record, Idx);
6034 QualType Canonical = readType(*Loc.F, Record, Idx);
6035 if (!Canonical.isNull())
6036 Canonical = Context.getCanonicalType(Canonical);
6037 return Context.getTypedefType(Decl, Canonical);
6038 }
6039
6040 case TYPE_TYPEOF_EXPR:
6041 return Context.getTypeOfExprType(ReadExpr(*Loc.F));
6042
6043 case TYPE_TYPEOF: {
6044 if (Record.size() != 1) {
6045 Error("incorrect encoding of typeof(type) in AST file");
6046 return QualType();
6047 }
6048 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
6049 return Context.getTypeOfType(UnderlyingType);
6050 }
6051
6052 case TYPE_DECLTYPE: {
6053 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
6054 return Context.getDecltypeType(ReadExpr(*Loc.F), UnderlyingType);
6055 }
6056
6057 case TYPE_UNARY_TRANSFORM: {
6058 QualType BaseType = readType(*Loc.F, Record, Idx);
6059 QualType UnderlyingType = readType(*Loc.F, Record, Idx);
6060 UnaryTransformType::UTTKind UKind = (UnaryTransformType::UTTKind)Record[2];
6061 return Context.getUnaryTransformType(BaseType, UnderlyingType, UKind);
6062 }
6063
Richard Smith74aeef52013-04-26 16:15:35 +00006064 case TYPE_AUTO: {
6065 QualType Deduced = readType(*Loc.F, Record, Idx);
Richard Smithe301ba22015-11-11 02:02:15 +00006066 AutoTypeKeyword Keyword = (AutoTypeKeyword)Record[Idx++];
Richard Smith27d807c2013-04-30 13:56:41 +00006067 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false;
Richard Smithe301ba22015-11-11 02:02:15 +00006068 return Context.getAutoType(Deduced, Keyword, IsDependent);
Richard Smith74aeef52013-04-26 16:15:35 +00006069 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006070
Richard Smith600b5262017-01-26 20:40:47 +00006071 case TYPE_DEDUCED_TEMPLATE_SPECIALIZATION: {
6072 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
6073 QualType Deduced = readType(*Loc.F, Record, Idx);
6074 bool IsDependent = Deduced.isNull() ? Record[Idx++] : false;
6075 return Context.getDeducedTemplateSpecializationType(Name, Deduced,
6076 IsDependent);
6077 }
6078
Guy Benyei11169dd2012-12-18 14:30:41 +00006079 case TYPE_RECORD: {
6080 if (Record.size() != 2) {
6081 Error("incorrect encoding of record type");
6082 return QualType();
6083 }
6084 unsigned Idx = 0;
6085 bool IsDependent = Record[Idx++];
6086 RecordDecl *RD = ReadDeclAs<RecordDecl>(*Loc.F, Record, Idx);
6087 RD = cast_or_null<RecordDecl>(RD->getCanonicalDecl());
6088 QualType T = Context.getRecordType(RD);
6089 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
6090 return T;
6091 }
6092
6093 case TYPE_ENUM: {
6094 if (Record.size() != 2) {
6095 Error("incorrect encoding of enum type");
6096 return QualType();
6097 }
6098 unsigned Idx = 0;
6099 bool IsDependent = Record[Idx++];
6100 QualType T
6101 = Context.getEnumType(ReadDeclAs<EnumDecl>(*Loc.F, Record, Idx));
6102 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
6103 return T;
6104 }
6105
6106 case TYPE_ATTRIBUTED: {
6107 if (Record.size() != 3) {
6108 Error("incorrect encoding of attributed type");
6109 return QualType();
6110 }
6111 QualType modifiedType = readType(*Loc.F, Record, Idx);
6112 QualType equivalentType = readType(*Loc.F, Record, Idx);
6113 AttributedType::Kind kind = static_cast<AttributedType::Kind>(Record[2]);
6114 return Context.getAttributedType(kind, modifiedType, equivalentType);
6115 }
6116
6117 case TYPE_PAREN: {
6118 if (Record.size() != 1) {
6119 Error("incorrect encoding of paren type");
6120 return QualType();
6121 }
6122 QualType InnerType = readType(*Loc.F, Record, Idx);
6123 return Context.getParenType(InnerType);
6124 }
6125
6126 case TYPE_PACK_EXPANSION: {
6127 if (Record.size() != 2) {
6128 Error("incorrect encoding of pack expansion type");
6129 return QualType();
6130 }
6131 QualType Pattern = readType(*Loc.F, Record, Idx);
6132 if (Pattern.isNull())
6133 return QualType();
David Blaikie05785d12013-02-20 22:23:23 +00006134 Optional<unsigned> NumExpansions;
Guy Benyei11169dd2012-12-18 14:30:41 +00006135 if (Record[1])
6136 NumExpansions = Record[1] - 1;
6137 return Context.getPackExpansionType(Pattern, NumExpansions);
6138 }
6139
6140 case TYPE_ELABORATED: {
6141 unsigned Idx = 0;
6142 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
6143 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
6144 QualType NamedType = readType(*Loc.F, Record, Idx);
6145 return Context.getElaboratedType(Keyword, NNS, NamedType);
6146 }
6147
6148 case TYPE_OBJC_INTERFACE: {
6149 unsigned Idx = 0;
6150 ObjCInterfaceDecl *ItfD
6151 = ReadDeclAs<ObjCInterfaceDecl>(*Loc.F, Record, Idx);
6152 return Context.getObjCInterfaceType(ItfD->getCanonicalDecl());
6153 }
6154
Manman Rene6be26c2016-09-13 17:25:08 +00006155 case TYPE_OBJC_TYPE_PARAM: {
6156 unsigned Idx = 0;
6157 ObjCTypeParamDecl *Decl
6158 = ReadDeclAs<ObjCTypeParamDecl>(*Loc.F, Record, Idx);
6159 unsigned NumProtos = Record[Idx++];
6160 SmallVector<ObjCProtocolDecl*, 4> Protos;
6161 for (unsigned I = 0; I != NumProtos; ++I)
6162 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
6163 return Context.getObjCTypeParamType(Decl, Protos);
6164 }
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006165
Guy Benyei11169dd2012-12-18 14:30:41 +00006166 case TYPE_OBJC_OBJECT: {
6167 unsigned Idx = 0;
6168 QualType Base = readType(*Loc.F, Record, Idx);
Douglas Gregore9d95f12015-07-07 03:57:35 +00006169 unsigned NumTypeArgs = Record[Idx++];
6170 SmallVector<QualType, 4> TypeArgs;
6171 for (unsigned I = 0; I != NumTypeArgs; ++I)
6172 TypeArgs.push_back(readType(*Loc.F, Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00006173 unsigned NumProtos = Record[Idx++];
6174 SmallVector<ObjCProtocolDecl*, 4> Protos;
6175 for (unsigned I = 0; I != NumProtos; ++I)
6176 Protos.push_back(ReadDeclAs<ObjCProtocolDecl>(*Loc.F, Record, Idx));
Douglas Gregorab209d82015-07-07 03:58:42 +00006177 bool IsKindOf = Record[Idx++];
6178 return Context.getObjCObjectType(Base, TypeArgs, Protos, IsKindOf);
Guy Benyei11169dd2012-12-18 14:30:41 +00006179 }
6180
6181 case TYPE_OBJC_OBJECT_POINTER: {
6182 unsigned Idx = 0;
6183 QualType Pointee = readType(*Loc.F, Record, Idx);
6184 return Context.getObjCObjectPointerType(Pointee);
6185 }
6186
6187 case TYPE_SUBST_TEMPLATE_TYPE_PARM: {
6188 unsigned Idx = 0;
6189 QualType Parm = readType(*Loc.F, Record, Idx);
6190 QualType Replacement = readType(*Loc.F, Record, Idx);
Stephan Tolksdorfe96f8b32014-03-15 10:23:27 +00006191 return Context.getSubstTemplateTypeParmType(
6192 cast<TemplateTypeParmType>(Parm),
6193 Context.getCanonicalType(Replacement));
Guy Benyei11169dd2012-12-18 14:30:41 +00006194 }
6195
6196 case TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK: {
6197 unsigned Idx = 0;
6198 QualType Parm = readType(*Loc.F, Record, Idx);
6199 TemplateArgument ArgPack = ReadTemplateArgument(*Loc.F, Record, Idx);
6200 return Context.getSubstTemplateTypeParmPackType(
6201 cast<TemplateTypeParmType>(Parm),
6202 ArgPack);
6203 }
6204
6205 case TYPE_INJECTED_CLASS_NAME: {
6206 CXXRecordDecl *D = ReadDeclAs<CXXRecordDecl>(*Loc.F, Record, Idx);
6207 QualType TST = readType(*Loc.F, Record, Idx); // probably derivable
6208 // FIXME: ASTContext::getInjectedClassNameType is not currently suitable
6209 // for AST reading, too much interdependencies.
Richard Smith6377f8f2014-10-21 21:15:18 +00006210 const Type *T = nullptr;
6211 for (auto *DI = D; DI; DI = DI->getPreviousDecl()) {
6212 if (const Type *Existing = DI->getTypeForDecl()) {
6213 T = Existing;
6214 break;
6215 }
6216 }
6217 if (!T) {
Richard Smithf17fdbd2014-04-24 02:25:27 +00006218 T = new (Context, TypeAlignment) InjectedClassNameType(D, TST);
Richard Smith6377f8f2014-10-21 21:15:18 +00006219 for (auto *DI = D; DI; DI = DI->getPreviousDecl())
6220 DI->setTypeForDecl(T);
6221 }
Richard Smithf17fdbd2014-04-24 02:25:27 +00006222 return QualType(T, 0);
Guy Benyei11169dd2012-12-18 14:30:41 +00006223 }
6224
6225 case TYPE_TEMPLATE_TYPE_PARM: {
6226 unsigned Idx = 0;
6227 unsigned Depth = Record[Idx++];
6228 unsigned Index = Record[Idx++];
6229 bool Pack = Record[Idx++];
6230 TemplateTypeParmDecl *D
6231 = ReadDeclAs<TemplateTypeParmDecl>(*Loc.F, Record, Idx);
6232 return Context.getTemplateTypeParmType(Depth, Index, Pack, D);
6233 }
6234
6235 case TYPE_DEPENDENT_NAME: {
6236 unsigned Idx = 0;
6237 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
6238 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Richard Smithbdf2d932015-07-30 03:37:16 +00006239 const IdentifierInfo *Name = GetIdentifierInfo(*Loc.F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00006240 QualType Canon = readType(*Loc.F, Record, Idx);
6241 if (!Canon.isNull())
6242 Canon = Context.getCanonicalType(Canon);
6243 return Context.getDependentNameType(Keyword, NNS, Name, Canon);
6244 }
6245
6246 case TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION: {
6247 unsigned Idx = 0;
6248 ElaboratedTypeKeyword Keyword = (ElaboratedTypeKeyword)Record[Idx++];
6249 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(*Loc.F, Record, Idx);
Richard Smithbdf2d932015-07-30 03:37:16 +00006250 const IdentifierInfo *Name = GetIdentifierInfo(*Loc.F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00006251 unsigned NumArgs = Record[Idx++];
6252 SmallVector<TemplateArgument, 8> Args;
6253 Args.reserve(NumArgs);
6254 while (NumArgs--)
6255 Args.push_back(ReadTemplateArgument(*Loc.F, Record, Idx));
6256 return Context.getDependentTemplateSpecializationType(Keyword, NNS, Name,
David Majnemer6fbeee32016-07-07 04:43:07 +00006257 Args);
Guy Benyei11169dd2012-12-18 14:30:41 +00006258 }
6259
6260 case TYPE_DEPENDENT_SIZED_ARRAY: {
6261 unsigned Idx = 0;
6262
6263 // ArrayType
6264 QualType ElementType = readType(*Loc.F, Record, Idx);
6265 ArrayType::ArraySizeModifier ASM
6266 = (ArrayType::ArraySizeModifier)Record[Idx++];
6267 unsigned IndexTypeQuals = Record[Idx++];
6268
6269 // DependentSizedArrayType
6270 Expr *NumElts = ReadExpr(*Loc.F);
6271 SourceRange Brackets = ReadSourceRange(*Loc.F, Record, Idx);
6272
6273 return Context.getDependentSizedArrayType(ElementType, NumElts, ASM,
6274 IndexTypeQuals, Brackets);
6275 }
6276
6277 case TYPE_TEMPLATE_SPECIALIZATION: {
6278 unsigned Idx = 0;
6279 bool IsDependent = Record[Idx++];
6280 TemplateName Name = ReadTemplateName(*Loc.F, Record, Idx);
6281 SmallVector<TemplateArgument, 8> Args;
6282 ReadTemplateArgumentList(Args, *Loc.F, Record, Idx);
6283 QualType Underlying = readType(*Loc.F, Record, Idx);
6284 QualType T;
6285 if (Underlying.isNull())
David Majnemer6fbeee32016-07-07 04:43:07 +00006286 T = Context.getCanonicalTemplateSpecializationType(Name, Args);
Guy Benyei11169dd2012-12-18 14:30:41 +00006287 else
David Majnemer6fbeee32016-07-07 04:43:07 +00006288 T = Context.getTemplateSpecializationType(Name, Args, Underlying);
Guy Benyei11169dd2012-12-18 14:30:41 +00006289 const_cast<Type*>(T.getTypePtr())->setDependent(IsDependent);
6290 return T;
6291 }
6292
6293 case TYPE_ATOMIC: {
6294 if (Record.size() != 1) {
6295 Error("Incorrect encoding of atomic type");
6296 return QualType();
6297 }
6298 QualType ValueType = readType(*Loc.F, Record, Idx);
6299 return Context.getAtomicType(ValueType);
6300 }
Xiuli Pan9c14e282016-01-09 12:53:17 +00006301
Joey Goulye3c85de2016-12-01 11:30:49 +00006302 case TYPE_PIPE: {
6303 if (Record.size() != 2) {
Xiuli Pan9c14e282016-01-09 12:53:17 +00006304 Error("Incorrect encoding of pipe type");
6305 return QualType();
6306 }
6307
6308 // Reading the pipe element type.
6309 QualType ElementType = readType(*Loc.F, Record, Idx);
Joey Goulye3c85de2016-12-01 11:30:49 +00006310 unsigned ReadOnly = Record[1];
6311 return Context.getPipeType(ElementType, ReadOnly);
Joey Gouly5788b782016-11-18 14:10:54 +00006312 }
6313
Alex Lorenz00aee432017-03-22 10:04:48 +00006314 case TYPE_DEPENDENT_SIZED_EXT_VECTOR: {
6315 unsigned Idx = 0;
6316
6317 // DependentSizedExtVectorType
6318 QualType ElementType = readType(*Loc.F, Record, Idx);
6319 Expr *SizeExpr = ReadExpr(*Loc.F);
6320 SourceLocation AttrLoc = ReadSourceLocation(*Loc.F, Record, Idx);
6321
6322 return Context.getDependentSizedExtVectorType(ElementType, SizeExpr,
6323 AttrLoc);
6324 }
Andrew Gozillon572bbb02017-10-02 06:25:51 +00006325
6326 case TYPE_DEPENDENT_ADDRESS_SPACE: {
6327 unsigned Idx = 0;
6328
6329 // DependentAddressSpaceType
6330 QualType PointeeType = readType(*Loc.F, Record, Idx);
6331 Expr *AddrSpaceExpr = ReadExpr(*Loc.F);
6332 SourceLocation AttrLoc = ReadSourceLocation(*Loc.F, Record, Idx);
6333
6334 return Context.getDependentAddressSpaceType(PointeeType, AddrSpaceExpr,
6335 AttrLoc);
6336 }
Guy Benyei11169dd2012-12-18 14:30:41 +00006337 }
6338 llvm_unreachable("Invalid TypeCode!");
6339}
6340
Richard Smith564417a2014-03-20 21:47:22 +00006341void ASTReader::readExceptionSpec(ModuleFile &ModuleFile,
6342 SmallVectorImpl<QualType> &Exceptions,
Richard Smith8acb4282014-07-31 21:57:55 +00006343 FunctionProtoType::ExceptionSpecInfo &ESI,
Richard Smith564417a2014-03-20 21:47:22 +00006344 const RecordData &Record, unsigned &Idx) {
6345 ExceptionSpecificationType EST =
6346 static_cast<ExceptionSpecificationType>(Record[Idx++]);
Richard Smith8acb4282014-07-31 21:57:55 +00006347 ESI.Type = EST;
Richard Smith564417a2014-03-20 21:47:22 +00006348 if (EST == EST_Dynamic) {
Richard Smith8acb4282014-07-31 21:57:55 +00006349 for (unsigned I = 0, N = Record[Idx++]; I != N; ++I)
Richard Smith564417a2014-03-20 21:47:22 +00006350 Exceptions.push_back(readType(ModuleFile, Record, Idx));
Richard Smith8acb4282014-07-31 21:57:55 +00006351 ESI.Exceptions = Exceptions;
Richard Smith564417a2014-03-20 21:47:22 +00006352 } else if (EST == EST_ComputedNoexcept) {
Richard Smith8acb4282014-07-31 21:57:55 +00006353 ESI.NoexceptExpr = ReadExpr(ModuleFile);
Richard Smith564417a2014-03-20 21:47:22 +00006354 } else if (EST == EST_Uninstantiated) {
Richard Smith8acb4282014-07-31 21:57:55 +00006355 ESI.SourceDecl = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
6356 ESI.SourceTemplate = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
Richard Smith564417a2014-03-20 21:47:22 +00006357 } else if (EST == EST_Unevaluated) {
Richard Smith8acb4282014-07-31 21:57:55 +00006358 ESI.SourceDecl = ReadDeclAs<FunctionDecl>(ModuleFile, Record, Idx);
Richard Smith564417a2014-03-20 21:47:22 +00006359 }
6360}
6361
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006362namespace clang {
6363
6364class TypeLocReader : public TypeLocVisitor<TypeLocReader> {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006365 ModuleFile *F;
6366 ASTReader *Reader;
6367 const ASTReader::RecordData &Record;
Guy Benyei11169dd2012-12-18 14:30:41 +00006368 unsigned &Idx;
6369
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006370 SourceLocation ReadSourceLocation() {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006371 return Reader->ReadSourceLocation(*F, Record, Idx);
6372 }
6373
6374 TypeSourceInfo *GetTypeSourceInfo() {
6375 return Reader->GetTypeSourceInfo(*F, Record, Idx);
6376 }
6377
6378 NestedNameSpecifierLoc ReadNestedNameSpecifierLoc() {
6379 return Reader->ReadNestedNameSpecifierLoc(*F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00006380 }
6381
Guy Benyei11169dd2012-12-18 14:30:41 +00006382public:
David L. Jonesbe1557a2016-12-21 00:17:49 +00006383 TypeLocReader(ModuleFile &F, ASTReader &Reader,
Guy Benyei11169dd2012-12-18 14:30:41 +00006384 const ASTReader::RecordData &Record, unsigned &Idx)
David L. Jonesbe1557a2016-12-21 00:17:49 +00006385 : F(&F), Reader(&Reader), Record(Record), Idx(Idx) {}
Guy Benyei11169dd2012-12-18 14:30:41 +00006386
6387 // We want compile-time assurance that we've enumerated all of
6388 // these, so unfortunately we have to declare them first, then
6389 // define them out-of-line.
6390#define ABSTRACT_TYPELOC(CLASS, PARENT)
6391#define TYPELOC(CLASS, PARENT) \
6392 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
6393#include "clang/AST/TypeLocNodes.def"
6394
6395 void VisitFunctionTypeLoc(FunctionTypeLoc);
6396 void VisitArrayTypeLoc(ArrayTypeLoc);
6397};
6398
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006399} // namespace clang
6400
Guy Benyei11169dd2012-12-18 14:30:41 +00006401void TypeLocReader::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
6402 // nothing to do
6403}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006404
Guy Benyei11169dd2012-12-18 14:30:41 +00006405void TypeLocReader::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006406 TL.setBuiltinLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006407 if (TL.needsExtraLocalData()) {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006408 TL.setWrittenTypeSpec(static_cast<DeclSpec::TST>(Record[Idx++]));
6409 TL.setWrittenSignSpec(static_cast<DeclSpec::TSS>(Record[Idx++]));
6410 TL.setWrittenWidthSpec(static_cast<DeclSpec::TSW>(Record[Idx++]));
6411 TL.setModeAttr(Record[Idx++]);
Guy Benyei11169dd2012-12-18 14:30:41 +00006412 }
6413}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006414
Guy Benyei11169dd2012-12-18 14:30:41 +00006415void TypeLocReader::VisitComplexTypeLoc(ComplexTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006416 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006417}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006418
Guy Benyei11169dd2012-12-18 14:30:41 +00006419void TypeLocReader::VisitPointerTypeLoc(PointerTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006420 TL.setStarLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006421}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006422
Reid Kleckner8a365022013-06-24 17:51:48 +00006423void TypeLocReader::VisitDecayedTypeLoc(DecayedTypeLoc TL) {
6424 // nothing to do
6425}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006426
Reid Kleckner0503a872013-12-05 01:23:43 +00006427void TypeLocReader::VisitAdjustedTypeLoc(AdjustedTypeLoc TL) {
6428 // nothing to do
6429}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006430
Guy Benyei11169dd2012-12-18 14:30:41 +00006431void TypeLocReader::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006432 TL.setCaretLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006433}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006434
Guy Benyei11169dd2012-12-18 14:30:41 +00006435void TypeLocReader::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006436 TL.setAmpLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006437}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006438
Guy Benyei11169dd2012-12-18 14:30:41 +00006439void TypeLocReader::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006440 TL.setAmpAmpLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006441}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006442
Guy Benyei11169dd2012-12-18 14:30:41 +00006443void TypeLocReader::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006444 TL.setStarLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006445 TL.setClassTInfo(GetTypeSourceInfo());
Guy Benyei11169dd2012-12-18 14:30:41 +00006446}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006447
Guy Benyei11169dd2012-12-18 14:30:41 +00006448void TypeLocReader::VisitArrayTypeLoc(ArrayTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006449 TL.setLBracketLoc(ReadSourceLocation());
6450 TL.setRBracketLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006451 if (Record[Idx++])
6452 TL.setSizeExpr(Reader->ReadExpr(*F));
Guy Benyei11169dd2012-12-18 14:30:41 +00006453 else
Craig Toppera13603a2014-05-22 05:54:18 +00006454 TL.setSizeExpr(nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00006455}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006456
Guy Benyei11169dd2012-12-18 14:30:41 +00006457void TypeLocReader::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
6458 VisitArrayTypeLoc(TL);
6459}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006460
Guy Benyei11169dd2012-12-18 14:30:41 +00006461void TypeLocReader::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
6462 VisitArrayTypeLoc(TL);
6463}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006464
Guy Benyei11169dd2012-12-18 14:30:41 +00006465void TypeLocReader::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
6466 VisitArrayTypeLoc(TL);
6467}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006468
Guy Benyei11169dd2012-12-18 14:30:41 +00006469void TypeLocReader::VisitDependentSizedArrayTypeLoc(
6470 DependentSizedArrayTypeLoc TL) {
6471 VisitArrayTypeLoc(TL);
6472}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006473
Andrew Gozillon572bbb02017-10-02 06:25:51 +00006474void TypeLocReader::VisitDependentAddressSpaceTypeLoc(
6475 DependentAddressSpaceTypeLoc TL) {
6476
6477 TL.setAttrNameLoc(ReadSourceLocation());
6478 SourceRange range;
6479 range.setBegin(ReadSourceLocation());
6480 range.setEnd(ReadSourceLocation());
6481 TL.setAttrOperandParensRange(range);
6482 TL.setAttrExprOperand(Reader->ReadExpr(*F));
6483}
6484
Guy Benyei11169dd2012-12-18 14:30:41 +00006485void TypeLocReader::VisitDependentSizedExtVectorTypeLoc(
6486 DependentSizedExtVectorTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006487 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006488}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006489
Guy Benyei11169dd2012-12-18 14:30:41 +00006490void TypeLocReader::VisitVectorTypeLoc(VectorTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006491 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006492}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006493
Guy Benyei11169dd2012-12-18 14:30:41 +00006494void TypeLocReader::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006495 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006496}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006497
Guy Benyei11169dd2012-12-18 14:30:41 +00006498void TypeLocReader::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006499 TL.setLocalRangeBegin(ReadSourceLocation());
6500 TL.setLParenLoc(ReadSourceLocation());
6501 TL.setRParenLoc(ReadSourceLocation());
Malcolm Parsonsa3220ce2017-01-12 16:11:28 +00006502 TL.setExceptionSpecRange(SourceRange(Reader->ReadSourceLocation(*F, Record, Idx),
6503 Reader->ReadSourceLocation(*F, Record, Idx)));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006504 TL.setLocalRangeEnd(ReadSourceLocation());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00006505 for (unsigned i = 0, e = TL.getNumParams(); i != e; ++i) {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006506 TL.setParam(i, Reader->ReadDeclAs<ParmVarDecl>(*F, Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00006507 }
6508}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006509
Guy Benyei11169dd2012-12-18 14:30:41 +00006510void TypeLocReader::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
6511 VisitFunctionTypeLoc(TL);
6512}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006513
Guy Benyei11169dd2012-12-18 14:30:41 +00006514void TypeLocReader::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
6515 VisitFunctionTypeLoc(TL);
6516}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006517
Guy Benyei11169dd2012-12-18 14:30:41 +00006518void TypeLocReader::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006519 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006520}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006521
Guy Benyei11169dd2012-12-18 14:30:41 +00006522void TypeLocReader::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006523 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006524}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006525
Guy Benyei11169dd2012-12-18 14:30:41 +00006526void TypeLocReader::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006527 TL.setTypeofLoc(ReadSourceLocation());
6528 TL.setLParenLoc(ReadSourceLocation());
6529 TL.setRParenLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006530}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006531
Guy Benyei11169dd2012-12-18 14:30:41 +00006532void TypeLocReader::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006533 TL.setTypeofLoc(ReadSourceLocation());
6534 TL.setLParenLoc(ReadSourceLocation());
6535 TL.setRParenLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006536 TL.setUnderlyingTInfo(GetTypeSourceInfo());
Guy Benyei11169dd2012-12-18 14:30:41 +00006537}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006538
Guy Benyei11169dd2012-12-18 14:30:41 +00006539void TypeLocReader::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006540 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006541}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006542
Guy Benyei11169dd2012-12-18 14:30:41 +00006543void TypeLocReader::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006544 TL.setKWLoc(ReadSourceLocation());
6545 TL.setLParenLoc(ReadSourceLocation());
6546 TL.setRParenLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006547 TL.setUnderlyingTInfo(GetTypeSourceInfo());
Guy Benyei11169dd2012-12-18 14:30:41 +00006548}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006549
Guy Benyei11169dd2012-12-18 14:30:41 +00006550void TypeLocReader::VisitAutoTypeLoc(AutoTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006551 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006552}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006553
Richard Smith600b5262017-01-26 20:40:47 +00006554void TypeLocReader::VisitDeducedTemplateSpecializationTypeLoc(
6555 DeducedTemplateSpecializationTypeLoc TL) {
6556 TL.setTemplateNameLoc(ReadSourceLocation());
6557}
6558
Guy Benyei11169dd2012-12-18 14:30:41 +00006559void TypeLocReader::VisitRecordTypeLoc(RecordTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006560 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006561}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006562
Guy Benyei11169dd2012-12-18 14:30:41 +00006563void TypeLocReader::VisitEnumTypeLoc(EnumTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006564 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006565}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006566
Guy Benyei11169dd2012-12-18 14:30:41 +00006567void TypeLocReader::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006568 TL.setAttrNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006569 if (TL.hasAttrOperand()) {
6570 SourceRange range;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006571 range.setBegin(ReadSourceLocation());
6572 range.setEnd(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006573 TL.setAttrOperandParensRange(range);
6574 }
6575 if (TL.hasAttrExprOperand()) {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006576 if (Record[Idx++])
6577 TL.setAttrExprOperand(Reader->ReadExpr(*F));
Guy Benyei11169dd2012-12-18 14:30:41 +00006578 else
Craig Toppera13603a2014-05-22 05:54:18 +00006579 TL.setAttrExprOperand(nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00006580 } else if (TL.hasAttrEnumOperand())
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006581 TL.setAttrEnumOperandLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006582}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006583
Guy Benyei11169dd2012-12-18 14:30:41 +00006584void TypeLocReader::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006585 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006586}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006587
Guy Benyei11169dd2012-12-18 14:30:41 +00006588void TypeLocReader::VisitSubstTemplateTypeParmTypeLoc(
6589 SubstTemplateTypeParmTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006590 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006591}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006592
Guy Benyei11169dd2012-12-18 14:30:41 +00006593void TypeLocReader::VisitSubstTemplateTypeParmPackTypeLoc(
6594 SubstTemplateTypeParmPackTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006595 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006596}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006597
Guy Benyei11169dd2012-12-18 14:30:41 +00006598void TypeLocReader::VisitTemplateSpecializationTypeLoc(
6599 TemplateSpecializationTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006600 TL.setTemplateKeywordLoc(ReadSourceLocation());
6601 TL.setTemplateNameLoc(ReadSourceLocation());
6602 TL.setLAngleLoc(ReadSourceLocation());
6603 TL.setRAngleLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006604 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
David L. Jonesbe1557a2016-12-21 00:17:49 +00006605 TL.setArgLocInfo(
6606 i,
6607 Reader->GetTemplateArgumentLocInfo(
6608 *F, TL.getTypePtr()->getArg(i).getKind(), Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00006609}
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00006610
Guy Benyei11169dd2012-12-18 14:30:41 +00006611void TypeLocReader::VisitParenTypeLoc(ParenTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006612 TL.setLParenLoc(ReadSourceLocation());
6613 TL.setRParenLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006614}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006615
Guy Benyei11169dd2012-12-18 14:30:41 +00006616void TypeLocReader::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006617 TL.setElaboratedKeywordLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006618 TL.setQualifierLoc(ReadNestedNameSpecifierLoc());
Guy Benyei11169dd2012-12-18 14:30:41 +00006619}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006620
Guy Benyei11169dd2012-12-18 14:30:41 +00006621void TypeLocReader::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006622 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006623}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006624
Guy Benyei11169dd2012-12-18 14:30:41 +00006625void TypeLocReader::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006626 TL.setElaboratedKeywordLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006627 TL.setQualifierLoc(ReadNestedNameSpecifierLoc());
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006628 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006629}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006630
Guy Benyei11169dd2012-12-18 14:30:41 +00006631void TypeLocReader::VisitDependentTemplateSpecializationTypeLoc(
6632 DependentTemplateSpecializationTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006633 TL.setElaboratedKeywordLoc(ReadSourceLocation());
David L. Jonesbe1557a2016-12-21 00:17:49 +00006634 TL.setQualifierLoc(ReadNestedNameSpecifierLoc());
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006635 TL.setTemplateKeywordLoc(ReadSourceLocation());
6636 TL.setTemplateNameLoc(ReadSourceLocation());
6637 TL.setLAngleLoc(ReadSourceLocation());
6638 TL.setRAngleLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006639 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
David L. Jonesbe1557a2016-12-21 00:17:49 +00006640 TL.setArgLocInfo(
6641 I,
6642 Reader->GetTemplateArgumentLocInfo(
6643 *F, TL.getTypePtr()->getArg(I).getKind(), Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00006644}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006645
Guy Benyei11169dd2012-12-18 14:30:41 +00006646void TypeLocReader::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006647 TL.setEllipsisLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006648}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006649
Guy Benyei11169dd2012-12-18 14:30:41 +00006650void TypeLocReader::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006651 TL.setNameLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006652}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006653
Manman Rene6be26c2016-09-13 17:25:08 +00006654void TypeLocReader::VisitObjCTypeParamTypeLoc(ObjCTypeParamTypeLoc TL) {
6655 if (TL.getNumProtocols()) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006656 TL.setProtocolLAngleLoc(ReadSourceLocation());
6657 TL.setProtocolRAngleLoc(ReadSourceLocation());
Manman Rene6be26c2016-09-13 17:25:08 +00006658 }
6659 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006660 TL.setProtocolLoc(i, ReadSourceLocation());
Manman Rene6be26c2016-09-13 17:25:08 +00006661}
6662
Guy Benyei11169dd2012-12-18 14:30:41 +00006663void TypeLocReader::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
David L. Jonesbe1557a2016-12-21 00:17:49 +00006664 TL.setHasBaseTypeAsWritten(Record[Idx++]);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006665 TL.setTypeArgsLAngleLoc(ReadSourceLocation());
6666 TL.setTypeArgsRAngleLoc(ReadSourceLocation());
Douglas Gregore9d95f12015-07-07 03:57:35 +00006667 for (unsigned i = 0, e = TL.getNumTypeArgs(); i != e; ++i)
David L. Jonesbe1557a2016-12-21 00:17:49 +00006668 TL.setTypeArgTInfo(i, GetTypeSourceInfo());
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006669 TL.setProtocolLAngleLoc(ReadSourceLocation());
6670 TL.setProtocolRAngleLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006671 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006672 TL.setProtocolLoc(i, ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006673}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006674
Guy Benyei11169dd2012-12-18 14:30:41 +00006675void TypeLocReader::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006676 TL.setStarLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006677}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006678
Guy Benyei11169dd2012-12-18 14:30:41 +00006679void TypeLocReader::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006680 TL.setKWLoc(ReadSourceLocation());
6681 TL.setLParenLoc(ReadSourceLocation());
6682 TL.setRParenLoc(ReadSourceLocation());
Guy Benyei11169dd2012-12-18 14:30:41 +00006683}
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00006684
Xiuli Pan9c14e282016-01-09 12:53:17 +00006685void TypeLocReader::VisitPipeTypeLoc(PipeTypeLoc TL) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006686 TL.setKWLoc(ReadSourceLocation());
Xiuli Pan9c14e282016-01-09 12:53:17 +00006687}
Guy Benyei11169dd2012-12-18 14:30:41 +00006688
David L. Jonesbe1557a2016-12-21 00:17:49 +00006689TypeSourceInfo *
6690ASTReader::GetTypeSourceInfo(ModuleFile &F, const ASTReader::RecordData &Record,
6691 unsigned &Idx) {
Guy Benyei11169dd2012-12-18 14:30:41 +00006692 QualType InfoTy = readType(F, Record, Idx);
6693 if (InfoTy.isNull())
Craig Toppera13603a2014-05-22 05:54:18 +00006694 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00006695
6696 TypeSourceInfo *TInfo = getContext().CreateTypeSourceInfo(InfoTy);
David L. Jonesbe1557a2016-12-21 00:17:49 +00006697 TypeLocReader TLR(F, *this, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00006698 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
6699 TLR.Visit(TL);
6700 return TInfo;
6701}
6702
6703QualType ASTReader::GetType(TypeID ID) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00006704 assert(ContextObj && "reading type with no AST context");
6705 ASTContext &Context = *ContextObj;
6706
Guy Benyei11169dd2012-12-18 14:30:41 +00006707 unsigned FastQuals = ID & Qualifiers::FastMask;
6708 unsigned Index = ID >> Qualifiers::FastWidth;
6709
6710 if (Index < NUM_PREDEF_TYPE_IDS) {
6711 QualType T;
6712 switch ((PredefinedTypeIDs)Index) {
Alexey Baderbdf7c842015-09-15 12:18:29 +00006713 case PREDEF_TYPE_NULL_ID:
6714 return QualType();
6715 case PREDEF_TYPE_VOID_ID:
6716 T = Context.VoidTy;
6717 break;
6718 case PREDEF_TYPE_BOOL_ID:
6719 T = Context.BoolTy;
6720 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00006721 case PREDEF_TYPE_CHAR_U_ID:
6722 case PREDEF_TYPE_CHAR_S_ID:
6723 // FIXME: Check that the signedness of CharTy is correct!
6724 T = Context.CharTy;
6725 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +00006726 case PREDEF_TYPE_UCHAR_ID:
6727 T = Context.UnsignedCharTy;
6728 break;
6729 case PREDEF_TYPE_USHORT_ID:
6730 T = Context.UnsignedShortTy;
6731 break;
6732 case PREDEF_TYPE_UINT_ID:
6733 T = Context.UnsignedIntTy;
6734 break;
6735 case PREDEF_TYPE_ULONG_ID:
6736 T = Context.UnsignedLongTy;
6737 break;
6738 case PREDEF_TYPE_ULONGLONG_ID:
6739 T = Context.UnsignedLongLongTy;
6740 break;
6741 case PREDEF_TYPE_UINT128_ID:
6742 T = Context.UnsignedInt128Ty;
6743 break;
6744 case PREDEF_TYPE_SCHAR_ID:
6745 T = Context.SignedCharTy;
6746 break;
6747 case PREDEF_TYPE_WCHAR_ID:
6748 T = Context.WCharTy;
6749 break;
6750 case PREDEF_TYPE_SHORT_ID:
6751 T = Context.ShortTy;
6752 break;
6753 case PREDEF_TYPE_INT_ID:
6754 T = Context.IntTy;
6755 break;
6756 case PREDEF_TYPE_LONG_ID:
6757 T = Context.LongTy;
6758 break;
6759 case PREDEF_TYPE_LONGLONG_ID:
6760 T = Context.LongLongTy;
6761 break;
6762 case PREDEF_TYPE_INT128_ID:
6763 T = Context.Int128Ty;
6764 break;
6765 case PREDEF_TYPE_HALF_ID:
6766 T = Context.HalfTy;
6767 break;
6768 case PREDEF_TYPE_FLOAT_ID:
6769 T = Context.FloatTy;
6770 break;
6771 case PREDEF_TYPE_DOUBLE_ID:
6772 T = Context.DoubleTy;
6773 break;
6774 case PREDEF_TYPE_LONGDOUBLE_ID:
6775 T = Context.LongDoubleTy;
6776 break;
Sjoerd Meijercc623ad2017-09-08 15:15:00 +00006777 case PREDEF_TYPE_FLOAT16_ID:
6778 T = Context.Float16Ty;
6779 break;
Nemanja Ivanovicbb1ea2d2016-05-09 08:52:33 +00006780 case PREDEF_TYPE_FLOAT128_ID:
6781 T = Context.Float128Ty;
6782 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +00006783 case PREDEF_TYPE_OVERLOAD_ID:
6784 T = Context.OverloadTy;
6785 break;
6786 case PREDEF_TYPE_BOUND_MEMBER:
6787 T = Context.BoundMemberTy;
6788 break;
6789 case PREDEF_TYPE_PSEUDO_OBJECT:
6790 T = Context.PseudoObjectTy;
6791 break;
6792 case PREDEF_TYPE_DEPENDENT_ID:
6793 T = Context.DependentTy;
6794 break;
6795 case PREDEF_TYPE_UNKNOWN_ANY:
6796 T = Context.UnknownAnyTy;
6797 break;
6798 case PREDEF_TYPE_NULLPTR_ID:
6799 T = Context.NullPtrTy;
6800 break;
6801 case PREDEF_TYPE_CHAR16_ID:
6802 T = Context.Char16Ty;
6803 break;
6804 case PREDEF_TYPE_CHAR32_ID:
6805 T = Context.Char32Ty;
6806 break;
6807 case PREDEF_TYPE_OBJC_ID:
6808 T = Context.ObjCBuiltinIdTy;
6809 break;
6810 case PREDEF_TYPE_OBJC_CLASS:
6811 T = Context.ObjCBuiltinClassTy;
6812 break;
6813 case PREDEF_TYPE_OBJC_SEL:
6814 T = Context.ObjCBuiltinSelTy;
6815 break;
Alexey Bader954ba212016-04-08 13:40:33 +00006816#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
6817 case PREDEF_TYPE_##Id##_ID: \
6818 T = Context.SingletonId; \
Alexey Baderbdf7c842015-09-15 12:18:29 +00006819 break;
Alexey Baderb62f1442016-04-13 08:33:41 +00006820#include "clang/Basic/OpenCLImageTypes.def"
Alexey Baderbdf7c842015-09-15 12:18:29 +00006821 case PREDEF_TYPE_SAMPLER_ID:
6822 T = Context.OCLSamplerTy;
6823 break;
6824 case PREDEF_TYPE_EVENT_ID:
6825 T = Context.OCLEventTy;
6826 break;
Alexey Bader9c8453f2015-09-15 11:18:52 +00006827 case PREDEF_TYPE_CLK_EVENT_ID:
6828 T = Context.OCLClkEventTy;
6829 break;
6830 case PREDEF_TYPE_QUEUE_ID:
6831 T = Context.OCLQueueTy;
6832 break;
Alexey Bader9c8453f2015-09-15 11:18:52 +00006833 case PREDEF_TYPE_RESERVE_ID_ID:
6834 T = Context.OCLReserveIDTy;
6835 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +00006836 case PREDEF_TYPE_AUTO_DEDUCT:
6837 T = Context.getAutoDeductType();
6838 break;
Alexey Baderbdf7c842015-09-15 12:18:29 +00006839 case PREDEF_TYPE_AUTO_RREF_DEDUCT:
6840 T = Context.getAutoRRefDeductType();
Guy Benyei11169dd2012-12-18 14:30:41 +00006841 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00006842 case PREDEF_TYPE_ARC_UNBRIDGED_CAST:
6843 T = Context.ARCUnbridgedCastTy;
6844 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00006845 case PREDEF_TYPE_BUILTIN_FN:
6846 T = Context.BuiltinFnTy;
6847 break;
Alexey Bataev1a3320e2015-08-25 14:24:04 +00006848 case PREDEF_TYPE_OMP_ARRAY_SECTION:
6849 T = Context.OMPArraySectionTy;
6850 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00006851 }
6852
6853 assert(!T.isNull() && "Unknown predefined type");
6854 return T.withFastQualifiers(FastQuals);
6855 }
6856
6857 Index -= NUM_PREDEF_TYPE_IDS;
6858 assert(Index < TypesLoaded.size() && "Type index out-of-range");
6859 if (TypesLoaded[Index].isNull()) {
6860 TypesLoaded[Index] = readTypeRecord(Index);
6861 if (TypesLoaded[Index].isNull())
6862 return QualType();
6863
6864 TypesLoaded[Index]->setFromAST();
6865 if (DeserializationListener)
6866 DeserializationListener->TypeRead(TypeIdx::fromTypeID(ID),
6867 TypesLoaded[Index]);
6868 }
6869
6870 return TypesLoaded[Index].withFastQualifiers(FastQuals);
6871}
6872
6873QualType ASTReader::getLocalType(ModuleFile &F, unsigned LocalID) {
6874 return GetType(getGlobalTypeID(F, LocalID));
6875}
6876
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006877serialization::TypeID
Guy Benyei11169dd2012-12-18 14:30:41 +00006878ASTReader::getGlobalTypeID(ModuleFile &F, unsigned LocalID) const {
6879 unsigned FastQuals = LocalID & Qualifiers::FastMask;
6880 unsigned LocalIndex = LocalID >> Qualifiers::FastWidth;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006881
Guy Benyei11169dd2012-12-18 14:30:41 +00006882 if (LocalIndex < NUM_PREDEF_TYPE_IDS)
6883 return LocalID;
6884
Richard Smith37a93df2017-02-18 00:32:02 +00006885 if (!F.ModuleOffsetMap.empty())
6886 ReadModuleOffsetMap(F);
6887
Guy Benyei11169dd2012-12-18 14:30:41 +00006888 ContinuousRangeMap<uint32_t, int, 2>::iterator I
6889 = F.TypeRemap.find(LocalIndex - NUM_PREDEF_TYPE_IDS);
6890 assert(I != F.TypeRemap.end() && "Invalid index into type index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006891
Guy Benyei11169dd2012-12-18 14:30:41 +00006892 unsigned GlobalIndex = LocalIndex + I->second;
6893 return (GlobalIndex << Qualifiers::FastWidth) | FastQuals;
6894}
6895
6896TemplateArgumentLocInfo
6897ASTReader::GetTemplateArgumentLocInfo(ModuleFile &F,
6898 TemplateArgument::ArgKind Kind,
6899 const RecordData &Record,
6900 unsigned &Index) {
6901 switch (Kind) {
6902 case TemplateArgument::Expression:
6903 return ReadExpr(F);
6904 case TemplateArgument::Type:
6905 return GetTypeSourceInfo(F, Record, Index);
6906 case TemplateArgument::Template: {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006907 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00006908 Index);
6909 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
6910 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
6911 SourceLocation());
6912 }
6913 case TemplateArgument::TemplateExpansion: {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006914 NestedNameSpecifierLoc QualifierLoc = ReadNestedNameSpecifierLoc(F, Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00006915 Index);
6916 SourceLocation TemplateNameLoc = ReadSourceLocation(F, Record, Index);
6917 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Index);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00006918 return TemplateArgumentLocInfo(QualifierLoc, TemplateNameLoc,
Guy Benyei11169dd2012-12-18 14:30:41 +00006919 EllipsisLoc);
6920 }
6921 case TemplateArgument::Null:
6922 case TemplateArgument::Integral:
6923 case TemplateArgument::Declaration:
6924 case TemplateArgument::NullPtr:
6925 case TemplateArgument::Pack:
6926 // FIXME: Is this right?
6927 return TemplateArgumentLocInfo();
6928 }
6929 llvm_unreachable("unexpected template argument loc");
6930}
6931
6932TemplateArgumentLoc
6933ASTReader::ReadTemplateArgumentLoc(ModuleFile &F,
6934 const RecordData &Record, unsigned &Index) {
6935 TemplateArgument Arg = ReadTemplateArgument(F, Record, Index);
6936
6937 if (Arg.getKind() == TemplateArgument::Expression) {
6938 if (Record[Index++]) // bool InfoHasSameExpr.
6939 return TemplateArgumentLoc(Arg, TemplateArgumentLocInfo(Arg.getAsExpr()));
6940 }
6941 return TemplateArgumentLoc(Arg, GetTemplateArgumentLocInfo(F, Arg.getKind(),
6942 Record, Index));
6943}
6944
Enea Zaffanella6dbe1872013-08-10 07:24:53 +00006945const ASTTemplateArgumentListInfo*
6946ASTReader::ReadASTTemplateArgumentListInfo(ModuleFile &F,
6947 const RecordData &Record,
6948 unsigned &Index) {
6949 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Index);
6950 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Index);
6951 unsigned NumArgsAsWritten = Record[Index++];
6952 TemplateArgumentListInfo TemplArgsInfo(LAngleLoc, RAngleLoc);
6953 for (unsigned i = 0; i != NumArgsAsWritten; ++i)
6954 TemplArgsInfo.addArgument(ReadTemplateArgumentLoc(F, Record, Index));
6955 return ASTTemplateArgumentListInfo::Create(getContext(), TemplArgsInfo);
6956}
6957
Guy Benyei11169dd2012-12-18 14:30:41 +00006958Decl *ASTReader::GetExternalDecl(uint32_t ID) {
6959 return GetDecl(ID);
6960}
6961
Richard Smith053f6c62014-05-16 23:01:30 +00006962void ASTReader::CompleteRedeclChain(const Decl *D) {
Richard Smith851072e2014-05-19 20:59:20 +00006963 if (NumCurrentElementsDeserializing) {
6964 // We arrange to not care about the complete redeclaration chain while we're
6965 // deserializing. Just remember that the AST has marked this one as complete
6966 // but that it's not actually complete yet, so we know we still need to
6967 // complete it later.
6968 PendingIncompleteDeclChains.push_back(const_cast<Decl*>(D));
6969 return;
6970 }
6971
Richard Smith053f6c62014-05-16 23:01:30 +00006972 const DeclContext *DC = D->getDeclContext()->getRedeclContext();
6973
Richard Smith053f6c62014-05-16 23:01:30 +00006974 // If this is a named declaration, complete it by looking it up
6975 // within its context.
6976 //
Richard Smith01bdb7a2014-08-28 05:44:07 +00006977 // FIXME: Merging a function definition should merge
Richard Smith053f6c62014-05-16 23:01:30 +00006978 // all mergeable entities within it.
6979 if (isa<TranslationUnitDecl>(DC) || isa<NamespaceDecl>(DC) ||
6980 isa<CXXRecordDecl>(DC) || isa<EnumDecl>(DC)) {
6981 if (DeclarationName Name = cast<NamedDecl>(D)->getDeclName()) {
Richard Smitha534a312015-07-21 23:54:07 +00006982 if (!getContext().getLangOpts().CPlusPlus &&
6983 isa<TranslationUnitDecl>(DC)) {
Richard Smith053f6c62014-05-16 23:01:30 +00006984 // Outside of C++, we don't have a lookup table for the TU, so update
Richard Smitha534a312015-07-21 23:54:07 +00006985 // the identifier instead. (For C++ modules, we don't store decls
6986 // in the serialized identifier table, so we do the lookup in the TU.)
6987 auto *II = Name.getAsIdentifierInfo();
6988 assert(II && "non-identifier name in C?");
Richard Smith053f6c62014-05-16 23:01:30 +00006989 if (II->isOutOfDate())
6990 updateOutOfDateIdentifier(*II);
6991 } else
6992 DC->lookup(Name);
Richard Smith01bdb7a2014-08-28 05:44:07 +00006993 } else if (needsAnonymousDeclarationNumber(cast<NamedDecl>(D))) {
Richard Smith3cb15722015-08-05 22:41:45 +00006994 // Find all declarations of this kind from the relevant context.
6995 for (auto *DCDecl : cast<Decl>(D->getLexicalDeclContext())->redecls()) {
6996 auto *DC = cast<DeclContext>(DCDecl);
6997 SmallVector<Decl*, 8> Decls;
6998 FindExternalLexicalDecls(
6999 DC, [&](Decl::Kind K) { return K == D->getKind(); }, Decls);
7000 }
Richard Smith053f6c62014-05-16 23:01:30 +00007001 }
7002 }
Richard Smith50895422015-01-31 03:04:55 +00007003
7004 if (auto *CTSD = dyn_cast<ClassTemplateSpecializationDecl>(D))
7005 CTSD->getSpecializedTemplate()->LoadLazySpecializations();
7006 if (auto *VTSD = dyn_cast<VarTemplateSpecializationDecl>(D))
7007 VTSD->getSpecializedTemplate()->LoadLazySpecializations();
7008 if (auto *FD = dyn_cast<FunctionDecl>(D)) {
7009 if (auto *Template = FD->getPrimaryTemplate())
7010 Template->LoadLazySpecializations();
7011 }
Richard Smith053f6c62014-05-16 23:01:30 +00007012}
7013
Richard Smithc2bb8182015-03-24 06:36:48 +00007014CXXCtorInitializer **
7015ASTReader::GetExternalCXXCtorInitializers(uint64_t Offset) {
7016 RecordLocation Loc = getLocalBitOffset(Offset);
7017 BitstreamCursor &Cursor = Loc.F->DeclsCursor;
7018 SavedStreamPosition SavedPosition(Cursor);
7019 Cursor.JumpToBit(Loc.Offset);
7020 ReadingKindTracker ReadingKind(Read_Decl, *this);
7021
7022 RecordData Record;
7023 unsigned Code = Cursor.ReadCode();
7024 unsigned RecCode = Cursor.readRecord(Code, Record);
7025 if (RecCode != DECL_CXX_CTOR_INITIALIZERS) {
7026 Error("malformed AST file: missing C++ ctor initializers");
7027 return nullptr;
7028 }
7029
7030 unsigned Idx = 0;
7031 return ReadCXXCtorInitializers(*Loc.F, Record, Idx);
7032}
7033
Guy Benyei11169dd2012-12-18 14:30:41 +00007034CXXBaseSpecifier *ASTReader::GetExternalCXXBaseSpecifiers(uint64_t Offset) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00007035 assert(ContextObj && "reading base specifiers with no AST context");
7036 ASTContext &Context = *ContextObj;
7037
Guy Benyei11169dd2012-12-18 14:30:41 +00007038 RecordLocation Loc = getLocalBitOffset(Offset);
Chris Lattner7fb3bef2013-01-20 00:56:42 +00007039 BitstreamCursor &Cursor = Loc.F->DeclsCursor;
Guy Benyei11169dd2012-12-18 14:30:41 +00007040 SavedStreamPosition SavedPosition(Cursor);
7041 Cursor.JumpToBit(Loc.Offset);
7042 ReadingKindTracker ReadingKind(Read_Decl, *this);
7043 RecordData Record;
7044 unsigned Code = Cursor.ReadCode();
Chris Lattner0e6c9402013-01-20 02:38:54 +00007045 unsigned RecCode = Cursor.readRecord(Code, Record);
Guy Benyei11169dd2012-12-18 14:30:41 +00007046 if (RecCode != DECL_CXX_BASE_SPECIFIERS) {
Richard Smithcd45dbc2014-04-19 03:48:30 +00007047 Error("malformed AST file: missing C++ base specifiers");
Craig Toppera13603a2014-05-22 05:54:18 +00007048 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007049 }
7050
7051 unsigned Idx = 0;
7052 unsigned NumBases = Record[Idx++];
7053 void *Mem = Context.Allocate(sizeof(CXXBaseSpecifier) * NumBases);
7054 CXXBaseSpecifier *Bases = new (Mem) CXXBaseSpecifier [NumBases];
7055 for (unsigned I = 0; I != NumBases; ++I)
7056 Bases[I] = ReadCXXBaseSpecifier(*Loc.F, Record, Idx);
7057 return Bases;
7058}
7059
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007060serialization::DeclID
Guy Benyei11169dd2012-12-18 14:30:41 +00007061ASTReader::getGlobalDeclID(ModuleFile &F, LocalDeclID LocalID) const {
7062 if (LocalID < NUM_PREDEF_DECL_IDS)
7063 return LocalID;
7064
Richard Smith37a93df2017-02-18 00:32:02 +00007065 if (!F.ModuleOffsetMap.empty())
7066 ReadModuleOffsetMap(F);
7067
Guy Benyei11169dd2012-12-18 14:30:41 +00007068 ContinuousRangeMap<uint32_t, int, 2>::iterator I
7069 = F.DeclRemap.find(LocalID - NUM_PREDEF_DECL_IDS);
7070 assert(I != F.DeclRemap.end() && "Invalid index into decl index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007071
Guy Benyei11169dd2012-12-18 14:30:41 +00007072 return LocalID + I->second;
7073}
7074
7075bool ASTReader::isDeclIDFromModule(serialization::GlobalDeclID ID,
7076 ModuleFile &M) const {
Richard Smithfe620d22015-03-05 23:24:12 +00007077 // Predefined decls aren't from any module.
7078 if (ID < NUM_PREDEF_DECL_IDS)
7079 return false;
7080
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007081 return ID - NUM_PREDEF_DECL_IDS >= M.BaseDeclID &&
Richard Smithbcda1a92015-07-12 23:51:20 +00007082 ID - NUM_PREDEF_DECL_IDS < M.BaseDeclID + M.LocalNumDecls;
Guy Benyei11169dd2012-12-18 14:30:41 +00007083}
7084
Douglas Gregor9f782892013-01-21 15:25:38 +00007085ModuleFile *ASTReader::getOwningModuleFile(const Decl *D) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007086 if (!D->isFromASTFile())
Craig Toppera13603a2014-05-22 05:54:18 +00007087 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007088 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(D->getGlobalID());
7089 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
7090 return I->second;
7091}
7092
7093SourceLocation ASTReader::getSourceLocationForDeclID(GlobalDeclID ID) {
7094 if (ID < NUM_PREDEF_DECL_IDS)
7095 return SourceLocation();
Richard Smithcd45dbc2014-04-19 03:48:30 +00007096
Guy Benyei11169dd2012-12-18 14:30:41 +00007097 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
7098
7099 if (Index > DeclsLoaded.size()) {
7100 Error("declaration ID out-of-range for AST file");
7101 return SourceLocation();
7102 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00007103
Guy Benyei11169dd2012-12-18 14:30:41 +00007104 if (Decl *D = DeclsLoaded[Index])
7105 return D->getLocation();
7106
Richard Smithcb34bd32016-03-27 07:28:06 +00007107 SourceLocation Loc;
7108 DeclCursorForID(ID, Loc);
7109 return Loc;
Guy Benyei11169dd2012-12-18 14:30:41 +00007110}
7111
Richard Smithfe620d22015-03-05 23:24:12 +00007112static Decl *getPredefinedDecl(ASTContext &Context, PredefinedDeclIDs ID) {
7113 switch (ID) {
7114 case PREDEF_DECL_NULL_ID:
7115 return nullptr;
7116
7117 case PREDEF_DECL_TRANSLATION_UNIT_ID:
7118 return Context.getTranslationUnitDecl();
7119
7120 case PREDEF_DECL_OBJC_ID_ID:
7121 return Context.getObjCIdDecl();
7122
7123 case PREDEF_DECL_OBJC_SEL_ID:
7124 return Context.getObjCSelDecl();
7125
7126 case PREDEF_DECL_OBJC_CLASS_ID:
7127 return Context.getObjCClassDecl();
7128
7129 case PREDEF_DECL_OBJC_PROTOCOL_ID:
7130 return Context.getObjCProtocolDecl();
7131
7132 case PREDEF_DECL_INT_128_ID:
7133 return Context.getInt128Decl();
7134
7135 case PREDEF_DECL_UNSIGNED_INT_128_ID:
7136 return Context.getUInt128Decl();
7137
7138 case PREDEF_DECL_OBJC_INSTANCETYPE_ID:
7139 return Context.getObjCInstanceTypeDecl();
7140
7141 case PREDEF_DECL_BUILTIN_VA_LIST_ID:
7142 return Context.getBuiltinVaListDecl();
Richard Smithf19e1272015-03-07 00:04:49 +00007143
Richard Smith9b88a4c2015-07-27 05:40:23 +00007144 case PREDEF_DECL_VA_LIST_TAG:
7145 return Context.getVaListTagDecl();
7146
Charles Davisc7d5c942015-09-17 20:55:33 +00007147 case PREDEF_DECL_BUILTIN_MS_VA_LIST_ID:
7148 return Context.getBuiltinMSVaListDecl();
7149
Richard Smithf19e1272015-03-07 00:04:49 +00007150 case PREDEF_DECL_EXTERN_C_CONTEXT_ID:
7151 return Context.getExternCContextDecl();
David Majnemerd9b1a4f2015-11-04 03:40:30 +00007152
7153 case PREDEF_DECL_MAKE_INTEGER_SEQ_ID:
7154 return Context.getMakeIntegerSeqDecl();
Quentin Colombet043406b2016-02-03 22:41:00 +00007155
7156 case PREDEF_DECL_CF_CONSTANT_STRING_ID:
7157 return Context.getCFConstantStringDecl();
Ben Langmuirf5416742016-02-04 00:55:24 +00007158
7159 case PREDEF_DECL_CF_CONSTANT_STRING_TAG_ID:
7160 return Context.getCFConstantStringTagDecl();
Eric Fiselier6ad68552016-07-01 01:24:09 +00007161
7162 case PREDEF_DECL_TYPE_PACK_ELEMENT_ID:
7163 return Context.getTypePackElementDecl();
Richard Smithfe620d22015-03-05 23:24:12 +00007164 }
Yaron Keren322bdad2015-03-06 07:49:14 +00007165 llvm_unreachable("PredefinedDeclIDs unknown enum value");
Richard Smithfe620d22015-03-05 23:24:12 +00007166}
7167
Richard Smithcd45dbc2014-04-19 03:48:30 +00007168Decl *ASTReader::GetExistingDecl(DeclID ID) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00007169 assert(ContextObj && "reading decl with no AST context");
Richard Smithcd45dbc2014-04-19 03:48:30 +00007170 if (ID < NUM_PREDEF_DECL_IDS) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00007171 Decl *D = getPredefinedDecl(*ContextObj, (PredefinedDeclIDs)ID);
Richard Smithfe620d22015-03-05 23:24:12 +00007172 if (D) {
7173 // Track that we have merged the declaration with ID \p ID into the
7174 // pre-existing predefined declaration \p D.
Richard Smith5fc18a92015-07-12 23:43:21 +00007175 auto &Merged = KeyDecls[D->getCanonicalDecl()];
Richard Smithfe620d22015-03-05 23:24:12 +00007176 if (Merged.empty())
7177 Merged.push_back(ID);
Guy Benyei11169dd2012-12-18 14:30:41 +00007178 }
Richard Smithfe620d22015-03-05 23:24:12 +00007179 return D;
Guy Benyei11169dd2012-12-18 14:30:41 +00007180 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00007181
Guy Benyei11169dd2012-12-18 14:30:41 +00007182 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
7183
7184 if (Index >= DeclsLoaded.size()) {
7185 assert(0 && "declaration ID out-of-range for AST file");
7186 Error("declaration ID out-of-range for AST file");
Craig Toppera13603a2014-05-22 05:54:18 +00007187 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00007188 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00007189
7190 return DeclsLoaded[Index];
7191}
7192
7193Decl *ASTReader::GetDecl(DeclID ID) {
7194 if (ID < NUM_PREDEF_DECL_IDS)
7195 return GetExistingDecl(ID);
7196
7197 unsigned Index = ID - NUM_PREDEF_DECL_IDS;
7198
7199 if (Index >= DeclsLoaded.size()) {
7200 assert(0 && "declaration ID out-of-range for AST file");
7201 Error("declaration ID out-of-range for AST file");
Craig Toppera13603a2014-05-22 05:54:18 +00007202 return nullptr;
Richard Smithcd45dbc2014-04-19 03:48:30 +00007203 }
7204
Guy Benyei11169dd2012-12-18 14:30:41 +00007205 if (!DeclsLoaded[Index]) {
7206 ReadDeclRecord(ID);
7207 if (DeserializationListener)
7208 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]);
7209 }
7210
7211 return DeclsLoaded[Index];
7212}
7213
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007214DeclID ASTReader::mapGlobalIDToModuleFileGlobalID(ModuleFile &M,
Guy Benyei11169dd2012-12-18 14:30:41 +00007215 DeclID GlobalID) {
7216 if (GlobalID < NUM_PREDEF_DECL_IDS)
7217 return GlobalID;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007218
Guy Benyei11169dd2012-12-18 14:30:41 +00007219 GlobalDeclMapType::const_iterator I = GlobalDeclMap.find(GlobalID);
7220 assert(I != GlobalDeclMap.end() && "Corrupted global declaration map");
7221 ModuleFile *Owner = I->second;
7222
7223 llvm::DenseMap<ModuleFile *, serialization::DeclID>::iterator Pos
7224 = M.GlobalToLocalDeclIDs.find(Owner);
7225 if (Pos == M.GlobalToLocalDeclIDs.end())
7226 return 0;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007227
Guy Benyei11169dd2012-12-18 14:30:41 +00007228 return GlobalID - Owner->BaseDeclID + Pos->second;
7229}
7230
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007231serialization::DeclID ASTReader::ReadDeclID(ModuleFile &F,
Guy Benyei11169dd2012-12-18 14:30:41 +00007232 const RecordData &Record,
7233 unsigned &Idx) {
7234 if (Idx >= Record.size()) {
7235 Error("Corrupted AST file");
7236 return 0;
7237 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007238
Guy Benyei11169dd2012-12-18 14:30:41 +00007239 return getGlobalDeclID(F, Record[Idx++]);
7240}
7241
7242/// \brief Resolve the offset of a statement into a statement.
7243///
7244/// This operation will read a new statement from the external
7245/// source each time it is called, and is meant to be used via a
7246/// LazyOffsetPtr (which is used by Decls for the body of functions, etc).
7247Stmt *ASTReader::GetExternalDeclStmt(uint64_t Offset) {
7248 // Switch case IDs are per Decl.
7249 ClearSwitchCaseIDs();
7250
7251 // Offset here is a global offset across the entire chain.
7252 RecordLocation Loc = getLocalBitOffset(Offset);
7253 Loc.F->DeclsCursor.JumpToBit(Loc.Offset);
David Blaikie9fd16f82017-03-08 23:57:08 +00007254 assert(NumCurrentElementsDeserializing == 0 &&
7255 "should not be called while already deserializing");
7256 Deserializing D(this);
Guy Benyei11169dd2012-12-18 14:30:41 +00007257 return ReadStmtFromStream(*Loc.F);
7258}
7259
Richard Smith3cb15722015-08-05 22:41:45 +00007260void ASTReader::FindExternalLexicalDecls(
7261 const DeclContext *DC, llvm::function_ref<bool(Decl::Kind)> IsKindWeWant,
7262 SmallVectorImpl<Decl *> &Decls) {
Richard Smith82f8fcd2015-08-06 22:07:25 +00007263 bool PredefsVisited[NUM_PREDEF_DECL_IDS] = {};
7264
Richard Smith9ccdd932015-08-06 22:14:12 +00007265 auto Visit = [&] (ModuleFile *M, LexicalContents LexicalDecls) {
Richard Smith82f8fcd2015-08-06 22:07:25 +00007266 assert(LexicalDecls.size() % 2 == 0 && "expected an even number of entries");
7267 for (int I = 0, N = LexicalDecls.size(); I != N; I += 2) {
7268 auto K = (Decl::Kind)+LexicalDecls[I];
7269 if (!IsKindWeWant(K))
7270 continue;
7271
7272 auto ID = (serialization::DeclID)+LexicalDecls[I + 1];
7273
7274 // Don't add predefined declarations to the lexical context more
7275 // than once.
7276 if (ID < NUM_PREDEF_DECL_IDS) {
7277 if (PredefsVisited[ID])
7278 continue;
7279
7280 PredefsVisited[ID] = true;
7281 }
7282
7283 if (Decl *D = GetLocalDecl(*M, ID)) {
Richard Smith2317a3e2015-08-11 21:21:20 +00007284 assert(D->getKind() == K && "wrong kind for lexical decl");
Richard Smith82f8fcd2015-08-06 22:07:25 +00007285 if (!DC->isDeclInLexicalTraversal(D))
7286 Decls.push_back(D);
7287 }
7288 }
7289 };
7290
7291 if (isa<TranslationUnitDecl>(DC)) {
7292 for (auto Lexical : TULexicalDecls)
7293 Visit(Lexical.first, Lexical.second);
7294 } else {
7295 auto I = LexicalDecls.find(DC);
7296 if (I != LexicalDecls.end())
Richard Smith9c9173d2015-08-11 22:00:24 +00007297 Visit(I->second.first, I->second.second);
Richard Smith82f8fcd2015-08-06 22:07:25 +00007298 }
7299
Guy Benyei11169dd2012-12-18 14:30:41 +00007300 ++NumLexicalDeclContextsRead;
Guy Benyei11169dd2012-12-18 14:30:41 +00007301}
7302
7303namespace {
7304
7305class DeclIDComp {
7306 ASTReader &Reader;
7307 ModuleFile &Mod;
7308
7309public:
7310 DeclIDComp(ASTReader &Reader, ModuleFile &M) : Reader(Reader), Mod(M) {}
7311
7312 bool operator()(LocalDeclID L, LocalDeclID R) const {
7313 SourceLocation LHS = getLocation(L);
7314 SourceLocation RHS = getLocation(R);
7315 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
7316 }
7317
7318 bool operator()(SourceLocation LHS, LocalDeclID R) const {
7319 SourceLocation RHS = getLocation(R);
7320 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
7321 }
7322
7323 bool operator()(LocalDeclID L, SourceLocation RHS) const {
7324 SourceLocation LHS = getLocation(L);
7325 return Reader.getSourceManager().isBeforeInTranslationUnit(LHS, RHS);
7326 }
7327
7328 SourceLocation getLocation(LocalDeclID ID) const {
7329 return Reader.getSourceManager().getFileLoc(
7330 Reader.getSourceLocationForDeclID(Reader.getGlobalDeclID(Mod, ID)));
7331 }
7332};
7333
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007334} // namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00007335
7336void ASTReader::FindFileRegionDecls(FileID File,
7337 unsigned Offset, unsigned Length,
7338 SmallVectorImpl<Decl *> &Decls) {
7339 SourceManager &SM = getSourceManager();
7340
7341 llvm::DenseMap<FileID, FileDeclsInfo>::iterator I = FileDeclIDs.find(File);
7342 if (I == FileDeclIDs.end())
7343 return;
7344
7345 FileDeclsInfo &DInfo = I->second;
7346 if (DInfo.Decls.empty())
7347 return;
7348
7349 SourceLocation
7350 BeginLoc = SM.getLocForStartOfFile(File).getLocWithOffset(Offset);
7351 SourceLocation EndLoc = BeginLoc.getLocWithOffset(Length);
7352
7353 DeclIDComp DIDComp(*this, *DInfo.Mod);
7354 ArrayRef<serialization::LocalDeclID>::iterator
7355 BeginIt = std::lower_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
7356 BeginLoc, DIDComp);
7357 if (BeginIt != DInfo.Decls.begin())
7358 --BeginIt;
7359
7360 // If we are pointing at a top-level decl inside an objc container, we need
7361 // to backtrack until we find it otherwise we will fail to report that the
7362 // region overlaps with an objc container.
7363 while (BeginIt != DInfo.Decls.begin() &&
7364 GetDecl(getGlobalDeclID(*DInfo.Mod, *BeginIt))
7365 ->isTopLevelDeclInObjCContainer())
7366 --BeginIt;
7367
7368 ArrayRef<serialization::LocalDeclID>::iterator
7369 EndIt = std::upper_bound(DInfo.Decls.begin(), DInfo.Decls.end(),
7370 EndLoc, DIDComp);
7371 if (EndIt != DInfo.Decls.end())
7372 ++EndIt;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007373
Guy Benyei11169dd2012-12-18 14:30:41 +00007374 for (ArrayRef<serialization::LocalDeclID>::iterator
7375 DIt = BeginIt; DIt != EndIt; ++DIt)
7376 Decls.push_back(GetDecl(getGlobalDeclID(*DInfo.Mod, *DIt)));
7377}
7378
Richard Smith9ce12e32013-02-07 03:30:24 +00007379bool
Guy Benyei11169dd2012-12-18 14:30:41 +00007380ASTReader::FindExternalVisibleDeclsByName(const DeclContext *DC,
7381 DeclarationName Name) {
Richard Smithd88a7f12015-09-01 20:35:42 +00007382 assert(DC->hasExternalVisibleStorage() && DC == DC->getPrimaryContext() &&
Guy Benyei11169dd2012-12-18 14:30:41 +00007383 "DeclContext has no visible decls in storage");
7384 if (!Name)
Richard Smith9ce12e32013-02-07 03:30:24 +00007385 return false;
Guy Benyei11169dd2012-12-18 14:30:41 +00007386
Richard Smithd88a7f12015-09-01 20:35:42 +00007387 auto It = Lookups.find(DC);
7388 if (It == Lookups.end())
7389 return false;
7390
Richard Smith8c913ec2014-08-14 02:21:01 +00007391 Deserializing LookupResults(this);
7392
Richard Smithd88a7f12015-09-01 20:35:42 +00007393 // Load the list of declarations.
Guy Benyei11169dd2012-12-18 14:30:41 +00007394 SmallVector<NamedDecl *, 64> Decls;
Richard Smithd88a7f12015-09-01 20:35:42 +00007395 for (DeclID ID : It->second.Table.find(Name)) {
7396 NamedDecl *ND = cast<NamedDecl>(GetDecl(ID));
7397 if (ND->getDeclName() == Name)
7398 Decls.push_back(ND);
7399 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00007400
Guy Benyei11169dd2012-12-18 14:30:41 +00007401 ++NumVisibleDeclContextsRead;
7402 SetExternalVisibleDeclsForName(DC, Name, Decls);
Richard Smith9ce12e32013-02-07 03:30:24 +00007403 return !Decls.empty();
Guy Benyei11169dd2012-12-18 14:30:41 +00007404}
7405
Guy Benyei11169dd2012-12-18 14:30:41 +00007406void ASTReader::completeVisibleDeclsMap(const DeclContext *DC) {
7407 if (!DC->hasExternalVisibleStorage())
7408 return;
Richard Smithd88a7f12015-09-01 20:35:42 +00007409
7410 auto It = Lookups.find(DC);
7411 assert(It != Lookups.end() &&
7412 "have external visible storage but no lookup tables");
7413
Craig Topper79be4cd2013-07-05 04:33:53 +00007414 DeclsMap Decls;
Guy Benyei11169dd2012-12-18 14:30:41 +00007415
Richard Smithd88a7f12015-09-01 20:35:42 +00007416 for (DeclID ID : It->second.Table.findAll()) {
7417 NamedDecl *ND = cast<NamedDecl>(GetDecl(ID));
7418 Decls[ND->getDeclName()].push_back(ND);
Guy Benyei11169dd2012-12-18 14:30:41 +00007419 }
7420
Guy Benyei11169dd2012-12-18 14:30:41 +00007421 ++NumVisibleDeclContextsRead;
7422
Craig Topper79be4cd2013-07-05 04:33:53 +00007423 for (DeclsMap::iterator I = Decls.begin(), E = Decls.end(); I != E; ++I) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007424 SetExternalVisibleDeclsForName(DC, I->first, I->second);
7425 }
7426 const_cast<DeclContext *>(DC)->setHasExternalVisibleStorage(false);
7427}
7428
Richard Smithd88a7f12015-09-01 20:35:42 +00007429const serialization::reader::DeclContextLookupTable *
7430ASTReader::getLoadedLookupTables(DeclContext *Primary) const {
7431 auto I = Lookups.find(Primary);
7432 return I == Lookups.end() ? nullptr : &I->second;
7433}
7434
Guy Benyei11169dd2012-12-18 14:30:41 +00007435/// \brief Under non-PCH compilation the consumer receives the objc methods
7436/// before receiving the implementation, and codegen depends on this.
7437/// We simulate this by deserializing and passing to consumer the methods of the
7438/// implementation before passing the deserialized implementation decl.
7439static void PassObjCImplDeclToConsumer(ObjCImplDecl *ImplD,
7440 ASTConsumer *Consumer) {
7441 assert(ImplD && Consumer);
7442
Aaron Ballmanaff18c02014-03-13 19:03:34 +00007443 for (auto *I : ImplD->methods())
7444 Consumer->HandleInterestingDecl(DeclGroupRef(I));
Guy Benyei11169dd2012-12-18 14:30:41 +00007445
7446 Consumer->HandleInterestingDecl(DeclGroupRef(ImplD));
7447}
7448
Guy Benyei11169dd2012-12-18 14:30:41 +00007449void ASTReader::PassInterestingDeclToConsumer(Decl *D) {
7450 if (ObjCImplDecl *ImplD = dyn_cast<ObjCImplDecl>(D))
7451 PassObjCImplDeclToConsumer(ImplD, Consumer);
7452 else
7453 Consumer->HandleInterestingDecl(DeclGroupRef(D));
7454}
7455
7456void ASTReader::StartTranslationUnit(ASTConsumer *Consumer) {
7457 this->Consumer = Consumer;
7458
Richard Smith9e2341d2015-03-23 03:25:59 +00007459 if (Consumer)
7460 PassInterestingDeclsToConsumer();
Richard Smith7f330cd2015-03-18 01:42:29 +00007461
7462 if (DeserializationListener)
7463 DeserializationListener->ReaderInitialized(this);
Guy Benyei11169dd2012-12-18 14:30:41 +00007464}
7465
7466void ASTReader::PrintStats() {
7467 std::fprintf(stderr, "*** AST File Statistics:\n");
7468
7469 unsigned NumTypesLoaded
7470 = TypesLoaded.size() - std::count(TypesLoaded.begin(), TypesLoaded.end(),
7471 QualType());
7472 unsigned NumDeclsLoaded
7473 = DeclsLoaded.size() - std::count(DeclsLoaded.begin(), DeclsLoaded.end(),
Craig Toppera13603a2014-05-22 05:54:18 +00007474 (Decl *)nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00007475 unsigned NumIdentifiersLoaded
7476 = IdentifiersLoaded.size() - std::count(IdentifiersLoaded.begin(),
7477 IdentifiersLoaded.end(),
Craig Toppera13603a2014-05-22 05:54:18 +00007478 (IdentifierInfo *)nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00007479 unsigned NumMacrosLoaded
7480 = MacrosLoaded.size() - std::count(MacrosLoaded.begin(),
7481 MacrosLoaded.end(),
Craig Toppera13603a2014-05-22 05:54:18 +00007482 (MacroInfo *)nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00007483 unsigned NumSelectorsLoaded
7484 = SelectorsLoaded.size() - std::count(SelectorsLoaded.begin(),
7485 SelectorsLoaded.end(),
7486 Selector());
7487
7488 if (unsigned TotalNumSLocEntries = getTotalNumSLocs())
7489 std::fprintf(stderr, " %u/%u source location entries read (%f%%)\n",
7490 NumSLocEntriesRead, TotalNumSLocEntries,
7491 ((float)NumSLocEntriesRead/TotalNumSLocEntries * 100));
7492 if (!TypesLoaded.empty())
7493 std::fprintf(stderr, " %u/%u types read (%f%%)\n",
7494 NumTypesLoaded, (unsigned)TypesLoaded.size(),
7495 ((float)NumTypesLoaded/TypesLoaded.size() * 100));
7496 if (!DeclsLoaded.empty())
7497 std::fprintf(stderr, " %u/%u declarations read (%f%%)\n",
7498 NumDeclsLoaded, (unsigned)DeclsLoaded.size(),
7499 ((float)NumDeclsLoaded/DeclsLoaded.size() * 100));
7500 if (!IdentifiersLoaded.empty())
7501 std::fprintf(stderr, " %u/%u identifiers read (%f%%)\n",
7502 NumIdentifiersLoaded, (unsigned)IdentifiersLoaded.size(),
7503 ((float)NumIdentifiersLoaded/IdentifiersLoaded.size() * 100));
7504 if (!MacrosLoaded.empty())
7505 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
7506 NumMacrosLoaded, (unsigned)MacrosLoaded.size(),
7507 ((float)NumMacrosLoaded/MacrosLoaded.size() * 100));
7508 if (!SelectorsLoaded.empty())
7509 std::fprintf(stderr, " %u/%u selectors read (%f%%)\n",
7510 NumSelectorsLoaded, (unsigned)SelectorsLoaded.size(),
7511 ((float)NumSelectorsLoaded/SelectorsLoaded.size() * 100));
7512 if (TotalNumStatements)
7513 std::fprintf(stderr, " %u/%u statements read (%f%%)\n",
7514 NumStatementsRead, TotalNumStatements,
7515 ((float)NumStatementsRead/TotalNumStatements * 100));
7516 if (TotalNumMacros)
7517 std::fprintf(stderr, " %u/%u macros read (%f%%)\n",
7518 NumMacrosRead, TotalNumMacros,
7519 ((float)NumMacrosRead/TotalNumMacros * 100));
7520 if (TotalLexicalDeclContexts)
7521 std::fprintf(stderr, " %u/%u lexical declcontexts read (%f%%)\n",
7522 NumLexicalDeclContextsRead, TotalLexicalDeclContexts,
7523 ((float)NumLexicalDeclContextsRead/TotalLexicalDeclContexts
7524 * 100));
7525 if (TotalVisibleDeclContexts)
7526 std::fprintf(stderr, " %u/%u visible declcontexts read (%f%%)\n",
7527 NumVisibleDeclContextsRead, TotalVisibleDeclContexts,
7528 ((float)NumVisibleDeclContextsRead/TotalVisibleDeclContexts
7529 * 100));
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007530 if (TotalNumMethodPoolEntries)
Guy Benyei11169dd2012-12-18 14:30:41 +00007531 std::fprintf(stderr, " %u/%u method pool entries read (%f%%)\n",
7532 NumMethodPoolEntriesRead, TotalNumMethodPoolEntries,
7533 ((float)NumMethodPoolEntriesRead/TotalNumMethodPoolEntries
7534 * 100));
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007535 if (NumMethodPoolLookups)
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007536 std::fprintf(stderr, " %u/%u method pool lookups succeeded (%f%%)\n",
7537 NumMethodPoolHits, NumMethodPoolLookups,
7538 ((float)NumMethodPoolHits/NumMethodPoolLookups * 100.0));
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007539 if (NumMethodPoolTableLookups)
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007540 std::fprintf(stderr, " %u/%u method pool table lookups succeeded (%f%%)\n",
7541 NumMethodPoolTableHits, NumMethodPoolTableLookups,
7542 ((float)NumMethodPoolTableHits/NumMethodPoolTableLookups
7543 * 100.0));
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007544 if (NumIdentifierLookupHits)
Douglas Gregor00a50f72013-01-25 00:38:33 +00007545 std::fprintf(stderr,
7546 " %u / %u identifier table lookups succeeded (%f%%)\n",
7547 NumIdentifierLookupHits, NumIdentifierLookups,
7548 (double)NumIdentifierLookupHits*100.0/NumIdentifierLookups);
Douglas Gregor00a50f72013-01-25 00:38:33 +00007549
Douglas Gregore060e572013-01-25 01:03:03 +00007550 if (GlobalIndex) {
7551 std::fprintf(stderr, "\n");
7552 GlobalIndex->printStats();
7553 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007554
Guy Benyei11169dd2012-12-18 14:30:41 +00007555 std::fprintf(stderr, "\n");
7556 dump();
7557 std::fprintf(stderr, "\n");
7558}
7559
7560template<typename Key, typename ModuleFile, unsigned InitialCapacity>
Vassil Vassilevb2710682017-03-02 18:13:19 +00007561LLVM_DUMP_METHOD static void
Guy Benyei11169dd2012-12-18 14:30:41 +00007562dumpModuleIDMap(StringRef Name,
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007563 const ContinuousRangeMap<Key, ModuleFile *,
Guy Benyei11169dd2012-12-18 14:30:41 +00007564 InitialCapacity> &Map) {
7565 if (Map.begin() == Map.end())
7566 return;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007567
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007568 using MapType = ContinuousRangeMap<Key, ModuleFile *, InitialCapacity>;
7569
Guy Benyei11169dd2012-12-18 14:30:41 +00007570 llvm::errs() << Name << ":\n";
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007571 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
Guy Benyei11169dd2012-12-18 14:30:41 +00007572 I != IEnd; ++I) {
7573 llvm::errs() << " " << I->first << " -> " << I->second->FileName
7574 << "\n";
7575 }
7576}
7577
Yaron Kerencdae9412016-01-29 19:38:18 +00007578LLVM_DUMP_METHOD void ASTReader::dump() {
Guy Benyei11169dd2012-12-18 14:30:41 +00007579 llvm::errs() << "*** PCH/ModuleFile Remappings:\n";
7580 dumpModuleIDMap("Global bit offset map", GlobalBitOffsetsMap);
7581 dumpModuleIDMap("Global source location entry map", GlobalSLocEntryMap);
7582 dumpModuleIDMap("Global type map", GlobalTypeMap);
7583 dumpModuleIDMap("Global declaration map", GlobalDeclMap);
7584 dumpModuleIDMap("Global identifier map", GlobalIdentifierMap);
7585 dumpModuleIDMap("Global macro map", GlobalMacroMap);
7586 dumpModuleIDMap("Global submodule map", GlobalSubmoduleMap);
7587 dumpModuleIDMap("Global selector map", GlobalSelectorMap);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007588 dumpModuleIDMap("Global preprocessed entity map",
Guy Benyei11169dd2012-12-18 14:30:41 +00007589 GlobalPreprocessedEntityMap);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007590
Guy Benyei11169dd2012-12-18 14:30:41 +00007591 llvm::errs() << "\n*** PCH/Modules Loaded:";
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00007592 for (ModuleFile &M : ModuleMgr)
7593 M.dump();
Guy Benyei11169dd2012-12-18 14:30:41 +00007594}
7595
7596/// Return the amount of memory used by memory buffers, breaking down
7597/// by heap-backed versus mmap'ed memory.
7598void ASTReader::getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
Duncan P. N. Exon Smith96a06e02017-01-28 22:15:22 +00007599 for (ModuleFile &I : ModuleMgr) {
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +00007600 if (llvm::MemoryBuffer *buf = I.Buffer) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007601 size_t bytes = buf->getBufferSize();
7602 switch (buf->getBufferKind()) {
7603 case llvm::MemoryBuffer::MemoryBuffer_Malloc:
7604 sizes.malloc_bytes += bytes;
7605 break;
7606 case llvm::MemoryBuffer::MemoryBuffer_MMap:
7607 sizes.mmap_bytes += bytes;
7608 break;
7609 }
7610 }
7611 }
7612}
7613
7614void ASTReader::InitializeSema(Sema &S) {
7615 SemaObj = &S;
7616 S.addExternalSource(this);
7617
7618 // Makes sure any declarations that were deserialized "too early"
7619 // still get added to the identifier's declaration chains.
Ben Langmuir5418f402014-09-10 21:29:41 +00007620 for (uint64_t ID : PreloadedDeclIDs) {
7621 NamedDecl *D = cast<NamedDecl>(GetDecl(ID));
7622 pushExternalDeclIntoScope(D, D->getDeclName());
Guy Benyei11169dd2012-12-18 14:30:41 +00007623 }
Ben Langmuir5418f402014-09-10 21:29:41 +00007624 PreloadedDeclIDs.clear();
Guy Benyei11169dd2012-12-18 14:30:41 +00007625
Richard Smith3d8e97e2013-10-18 06:54:39 +00007626 // FIXME: What happens if these are changed by a module import?
Guy Benyei11169dd2012-12-18 14:30:41 +00007627 if (!FPPragmaOptions.empty()) {
7628 assert(FPPragmaOptions.size() == 1 && "Wrong number of FP_PRAGMA_OPTIONS");
Adam Nemet484aa452017-03-27 19:17:25 +00007629 SemaObj->FPFeatures = FPOptions(FPPragmaOptions[0]);
Guy Benyei11169dd2012-12-18 14:30:41 +00007630 }
7631
Yaxun Liu5b746652016-12-18 05:18:55 +00007632 SemaObj->OpenCLFeatures.copy(OpenCLExtensions);
7633 SemaObj->OpenCLTypeExtMap = OpenCLTypeExtMap;
7634 SemaObj->OpenCLDeclExtMap = OpenCLDeclExtMap;
Richard Smith3d8e97e2013-10-18 06:54:39 +00007635
7636 UpdateSema();
7637}
7638
7639void ASTReader::UpdateSema() {
7640 assert(SemaObj && "no Sema to update");
7641
7642 // Load the offsets of the declarations that Sema references.
7643 // They will be lazily deserialized when needed.
7644 if (!SemaDeclRefs.empty()) {
Richard Smith96269c52016-09-29 22:49:46 +00007645 assert(SemaDeclRefs.size() % 3 == 0);
7646 for (unsigned I = 0; I != SemaDeclRefs.size(); I += 3) {
Richard Smith3d8e97e2013-10-18 06:54:39 +00007647 if (!SemaObj->StdNamespace)
7648 SemaObj->StdNamespace = SemaDeclRefs[I];
7649 if (!SemaObj->StdBadAlloc)
7650 SemaObj->StdBadAlloc = SemaDeclRefs[I+1];
Richard Smith96269c52016-09-29 22:49:46 +00007651 if (!SemaObj->StdAlignValT)
7652 SemaObj->StdAlignValT = SemaDeclRefs[I+2];
Richard Smith3d8e97e2013-10-18 06:54:39 +00007653 }
7654 SemaDeclRefs.clear();
7655 }
Dario Domizioli13a0a382014-05-23 12:13:25 +00007656
Nico Weber779355f2016-03-02 23:22:00 +00007657 // Update the state of pragmas. Use the same API as if we had encountered the
7658 // pragma in the source.
Dario Domizioli13a0a382014-05-23 12:13:25 +00007659 if(OptimizeOffPragmaLocation.isValid())
7660 SemaObj->ActOnPragmaOptimize(/* IsOn = */ false, OptimizeOffPragmaLocation);
Nico Weber779355f2016-03-02 23:22:00 +00007661 if (PragmaMSStructState != -1)
7662 SemaObj->ActOnPragmaMSStruct((PragmaMSStructKind)PragmaMSStructState);
Nico Weber42932312016-03-03 00:17:35 +00007663 if (PointersToMembersPragmaLocation.isValid()) {
7664 SemaObj->ActOnPragmaMSPointersToMembers(
7665 (LangOptions::PragmaMSPointersToMembersKind)
7666 PragmaMSPointersToMembersState,
7667 PointersToMembersPragmaLocation);
7668 }
Justin Lebar67a78a62016-10-08 22:15:58 +00007669 SemaObj->ForceCUDAHostDeviceDepth = ForceCUDAHostDeviceDepth;
Alex Lorenz7d7e1e02017-03-31 15:36:21 +00007670
7671 if (PragmaPackCurrentValue) {
7672 // The bottom of the stack might have a default value. It must be adjusted
7673 // to the current value to ensure that the packing state is preserved after
7674 // popping entries that were included/imported from a PCH/module.
7675 bool DropFirst = false;
7676 if (!PragmaPackStack.empty() &&
7677 PragmaPackStack.front().Location.isInvalid()) {
7678 assert(PragmaPackStack.front().Value == SemaObj->PackStack.DefaultValue &&
7679 "Expected a default alignment value");
7680 SemaObj->PackStack.Stack.emplace_back(
7681 PragmaPackStack.front().SlotLabel, SemaObj->PackStack.CurrentValue,
Alex Lorenz45b40142017-07-28 14:41:21 +00007682 SemaObj->PackStack.CurrentPragmaLocation,
7683 PragmaPackStack.front().PushLocation);
Alex Lorenz7d7e1e02017-03-31 15:36:21 +00007684 DropFirst = true;
7685 }
7686 for (const auto &Entry :
7687 llvm::makeArrayRef(PragmaPackStack).drop_front(DropFirst ? 1 : 0))
7688 SemaObj->PackStack.Stack.emplace_back(Entry.SlotLabel, Entry.Value,
Alex Lorenz45b40142017-07-28 14:41:21 +00007689 Entry.Location, Entry.PushLocation);
Alex Lorenz7d7e1e02017-03-31 15:36:21 +00007690 if (PragmaPackCurrentLocation.isInvalid()) {
7691 assert(*PragmaPackCurrentValue == SemaObj->PackStack.DefaultValue &&
7692 "Expected a default alignment value");
7693 // Keep the current values.
7694 } else {
7695 SemaObj->PackStack.CurrentValue = *PragmaPackCurrentValue;
7696 SemaObj->PackStack.CurrentPragmaLocation = PragmaPackCurrentLocation;
7697 }
7698 }
Guy Benyei11169dd2012-12-18 14:30:41 +00007699}
7700
Richard Smitha8d5b6a2015-07-17 19:51:03 +00007701IdentifierInfo *ASTReader::get(StringRef Name) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007702 // Note that we are loading an identifier.
7703 Deserializing AnIdentifier(this);
Douglas Gregore060e572013-01-25 01:03:03 +00007704
Douglas Gregor7211ac12013-01-25 23:32:03 +00007705 IdentifierLookupVisitor Visitor(Name, /*PriorGeneration=*/0,
Douglas Gregor00a50f72013-01-25 00:38:33 +00007706 NumIdentifierLookups,
7707 NumIdentifierLookupHits);
Richard Smith33e0f7e2015-07-22 02:08:40 +00007708
7709 // We don't need to do identifier table lookups in C++ modules (we preload
7710 // all interesting declarations, and don't need to use the scope for name
7711 // lookups). Perform the lookup in PCH files, though, since we don't build
7712 // a complete initial identifier table if we're carrying on from a PCH.
Richard Smithdbafb6c2017-06-29 23:23:46 +00007713 if (PP.getLangOpts().CPlusPlus) {
Richard Smith33e0f7e2015-07-22 02:08:40 +00007714 for (auto F : ModuleMgr.pch_modules())
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00007715 if (Visitor(*F))
Richard Smith33e0f7e2015-07-22 02:08:40 +00007716 break;
7717 } else {
7718 // If there is a global index, look there first to determine which modules
7719 // provably do not have any results for this identifier.
7720 GlobalModuleIndex::HitSet Hits;
7721 GlobalModuleIndex::HitSet *HitsPtr = nullptr;
7722 if (!loadGlobalIndex()) {
7723 if (GlobalIndex->lookupIdentifier(Name, Hits)) {
7724 HitsPtr = &Hits;
7725 }
7726 }
7727
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00007728 ModuleMgr.visit(Visitor, HitsPtr);
Richard Smith33e0f7e2015-07-22 02:08:40 +00007729 }
7730
Guy Benyei11169dd2012-12-18 14:30:41 +00007731 IdentifierInfo *II = Visitor.getIdentifierInfo();
7732 markIdentifierUpToDate(II);
7733 return II;
7734}
7735
7736namespace clang {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007737
Guy Benyei11169dd2012-12-18 14:30:41 +00007738 /// \brief An identifier-lookup iterator that enumerates all of the
7739 /// identifiers stored within a set of AST files.
7740 class ASTIdentifierIterator : public IdentifierIterator {
7741 /// \brief The AST reader whose identifiers are being enumerated.
7742 const ASTReader &Reader;
7743
7744 /// \brief The current index into the chain of AST files stored in
7745 /// the AST reader.
7746 unsigned Index;
7747
7748 /// \brief The current position within the identifier lookup table
7749 /// of the current AST file.
7750 ASTIdentifierLookupTable::key_iterator Current;
7751
7752 /// \brief The end position within the identifier lookup table of
7753 /// the current AST file.
7754 ASTIdentifierLookupTable::key_iterator End;
7755
Ben Langmuir537c5b52016-05-04 00:53:13 +00007756 /// \brief Whether to skip any modules in the ASTReader.
7757 bool SkipModules;
7758
Guy Benyei11169dd2012-12-18 14:30:41 +00007759 public:
Ben Langmuir537c5b52016-05-04 00:53:13 +00007760 explicit ASTIdentifierIterator(const ASTReader &Reader,
7761 bool SkipModules = false);
Guy Benyei11169dd2012-12-18 14:30:41 +00007762
Craig Topper3e89dfe2014-03-13 02:13:41 +00007763 StringRef Next() override;
Guy Benyei11169dd2012-12-18 14:30:41 +00007764 };
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007765
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007766} // namespace clang
Guy Benyei11169dd2012-12-18 14:30:41 +00007767
Ben Langmuir537c5b52016-05-04 00:53:13 +00007768ASTIdentifierIterator::ASTIdentifierIterator(const ASTReader &Reader,
7769 bool SkipModules)
7770 : Reader(Reader), Index(Reader.ModuleMgr.size()), SkipModules(SkipModules) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007771}
7772
7773StringRef ASTIdentifierIterator::Next() {
7774 while (Current == End) {
7775 // If we have exhausted all of our AST files, we're done.
7776 if (Index == 0)
7777 return StringRef();
7778
7779 --Index;
Ben Langmuir537c5b52016-05-04 00:53:13 +00007780 ModuleFile &F = Reader.ModuleMgr[Index];
7781 if (SkipModules && F.isModule())
7782 continue;
7783
7784 ASTIdentifierLookupTable *IdTable =
7785 (ASTIdentifierLookupTable *)F.IdentifierLookupTable;
Guy Benyei11169dd2012-12-18 14:30:41 +00007786 Current = IdTable->key_begin();
7787 End = IdTable->key_end();
7788 }
7789
7790 // We have any identifiers remaining in the current AST file; return
7791 // the next one.
Douglas Gregorbfd73d72013-01-23 18:53:14 +00007792 StringRef Result = *Current;
Guy Benyei11169dd2012-12-18 14:30:41 +00007793 ++Current;
Douglas Gregorbfd73d72013-01-23 18:53:14 +00007794 return Result;
Guy Benyei11169dd2012-12-18 14:30:41 +00007795}
7796
Ben Langmuir537c5b52016-05-04 00:53:13 +00007797namespace {
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007798
Ben Langmuir537c5b52016-05-04 00:53:13 +00007799/// A utility for appending two IdentifierIterators.
7800class ChainedIdentifierIterator : public IdentifierIterator {
7801 std::unique_ptr<IdentifierIterator> Current;
7802 std::unique_ptr<IdentifierIterator> Queued;
7803
7804public:
7805 ChainedIdentifierIterator(std::unique_ptr<IdentifierIterator> First,
7806 std::unique_ptr<IdentifierIterator> Second)
7807 : Current(std::move(First)), Queued(std::move(Second)) {}
7808
7809 StringRef Next() override {
7810 if (!Current)
7811 return StringRef();
7812
7813 StringRef result = Current->Next();
7814 if (!result.empty())
7815 return result;
7816
7817 // Try the queued iterator, which may itself be empty.
7818 Current.reset();
7819 std::swap(Current, Queued);
7820 return Next();
7821 }
7822};
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007823
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007824} // namespace
Ben Langmuir537c5b52016-05-04 00:53:13 +00007825
Argyrios Kyrtzidis9aca3c62013-04-17 22:10:55 +00007826IdentifierIterator *ASTReader::getIdentifiers() {
Ben Langmuir537c5b52016-05-04 00:53:13 +00007827 if (!loadGlobalIndex()) {
7828 std::unique_ptr<IdentifierIterator> ReaderIter(
7829 new ASTIdentifierIterator(*this, /*SkipModules=*/true));
7830 std::unique_ptr<IdentifierIterator> ModulesIter(
7831 GlobalIndex->createIdentifierIterator());
7832 return new ChainedIdentifierIterator(std::move(ReaderIter),
7833 std::move(ModulesIter));
7834 }
Argyrios Kyrtzidis9aca3c62013-04-17 22:10:55 +00007835
Guy Benyei11169dd2012-12-18 14:30:41 +00007836 return new ASTIdentifierIterator(*this);
7837}
7838
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007839namespace clang {
7840namespace serialization {
7841
Guy Benyei11169dd2012-12-18 14:30:41 +00007842 class ReadMethodPoolVisitor {
7843 ASTReader &Reader;
7844 Selector Sel;
7845 unsigned PriorGeneration;
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007846 unsigned InstanceBits = 0;
7847 unsigned FactoryBits = 0;
7848 bool InstanceHasMoreThanOneDecl = false;
7849 bool FactoryHasMoreThanOneDecl = false;
Dmitri Gribenkof8579502013-01-12 19:30:44 +00007850 SmallVector<ObjCMethodDecl *, 4> InstanceMethods;
7851 SmallVector<ObjCMethodDecl *, 4> FactoryMethods;
Guy Benyei11169dd2012-12-18 14:30:41 +00007852
7853 public:
Nico Weber2e0c8f72014-12-27 03:58:08 +00007854 ReadMethodPoolVisitor(ASTReader &Reader, Selector Sel,
Guy Benyei11169dd2012-12-18 14:30:41 +00007855 unsigned PriorGeneration)
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007856 : Reader(Reader), Sel(Sel), PriorGeneration(PriorGeneration) {}
Nico Weber2e0c8f72014-12-27 03:58:08 +00007857
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00007858 bool operator()(ModuleFile &M) {
Guy Benyei11169dd2012-12-18 14:30:41 +00007859 if (!M.SelectorLookupTable)
7860 return false;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007861
Guy Benyei11169dd2012-12-18 14:30:41 +00007862 // If we've already searched this module file, skip it now.
Richard Smithbdf2d932015-07-30 03:37:16 +00007863 if (M.Generation <= PriorGeneration)
Guy Benyei11169dd2012-12-18 14:30:41 +00007864 return true;
7865
Richard Smithbdf2d932015-07-30 03:37:16 +00007866 ++Reader.NumMethodPoolTableLookups;
Guy Benyei11169dd2012-12-18 14:30:41 +00007867 ASTSelectorLookupTable *PoolTable
7868 = (ASTSelectorLookupTable*)M.SelectorLookupTable;
Richard Smithbdf2d932015-07-30 03:37:16 +00007869 ASTSelectorLookupTable::iterator Pos = PoolTable->find(Sel);
Guy Benyei11169dd2012-12-18 14:30:41 +00007870 if (Pos == PoolTable->end())
7871 return false;
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007872
Richard Smithbdf2d932015-07-30 03:37:16 +00007873 ++Reader.NumMethodPoolTableHits;
7874 ++Reader.NumSelectorsRead;
Guy Benyei11169dd2012-12-18 14:30:41 +00007875 // FIXME: Not quite happy with the statistics here. We probably should
7876 // disable this tracking when called via LoadSelector.
7877 // Also, should entries without methods count as misses?
Richard Smithbdf2d932015-07-30 03:37:16 +00007878 ++Reader.NumMethodPoolEntriesRead;
Guy Benyei11169dd2012-12-18 14:30:41 +00007879 ASTSelectorLookupTrait::data_type Data = *Pos;
Richard Smithbdf2d932015-07-30 03:37:16 +00007880 if (Reader.DeserializationListener)
7881 Reader.DeserializationListener->SelectorRead(Data.ID, Sel);
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00007882
Richard Smithbdf2d932015-07-30 03:37:16 +00007883 InstanceMethods.append(Data.Instance.begin(), Data.Instance.end());
7884 FactoryMethods.append(Data.Factory.begin(), Data.Factory.end());
7885 InstanceBits = Data.InstanceBits;
7886 FactoryBits = Data.FactoryBits;
7887 InstanceHasMoreThanOneDecl = Data.InstanceHasMoreThanOneDecl;
7888 FactoryHasMoreThanOneDecl = Data.FactoryHasMoreThanOneDecl;
Guy Benyei11169dd2012-12-18 14:30:41 +00007889 return true;
7890 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007891
Guy Benyei11169dd2012-12-18 14:30:41 +00007892 /// \brief Retrieve the instance methods found by this visitor.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007893 ArrayRef<ObjCMethodDecl *> getInstanceMethods() const {
7894 return InstanceMethods;
Guy Benyei11169dd2012-12-18 14:30:41 +00007895 }
7896
7897 /// \brief Retrieve the instance methods found by this visitor.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007898 ArrayRef<ObjCMethodDecl *> getFactoryMethods() const {
Guy Benyei11169dd2012-12-18 14:30:41 +00007899 return FactoryMethods;
7900 }
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007901
7902 unsigned getInstanceBits() const { return InstanceBits; }
7903 unsigned getFactoryBits() const { return FactoryBits; }
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007904
Nico Weberff4b35e2014-12-27 22:14:15 +00007905 bool instanceHasMoreThanOneDecl() const {
7906 return InstanceHasMoreThanOneDecl;
7907 }
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007908
Nico Weberff4b35e2014-12-27 22:14:15 +00007909 bool factoryHasMoreThanOneDecl() const { return FactoryHasMoreThanOneDecl; }
Guy Benyei11169dd2012-12-18 14:30:41 +00007910 };
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00007911
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00007912} // namespace serialization
7913} // namespace clang
Guy Benyei11169dd2012-12-18 14:30:41 +00007914
7915/// \brief Add the given set of methods to the method list.
7916static void addMethodsToPool(Sema &S, ArrayRef<ObjCMethodDecl *> Methods,
7917 ObjCMethodList &List) {
7918 for (unsigned I = 0, N = Methods.size(); I != N; ++I) {
7919 S.addMethodToGlobalList(&List, Methods[I]);
7920 }
7921}
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007922
Guy Benyei11169dd2012-12-18 14:30:41 +00007923void ASTReader::ReadMethodPool(Selector Sel) {
7924 // Get the selector generation and update it to the current generation.
7925 unsigned &Generation = SelectorGeneration[Sel];
7926 unsigned PriorGeneration = Generation;
Richard Smith053f6c62014-05-16 23:01:30 +00007927 Generation = getGeneration();
Manman Rena0f31a02016-04-29 19:04:05 +00007928 SelectorOutOfDate[Sel] = false;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007929
Guy Benyei11169dd2012-12-18 14:30:41 +00007930 // Search for methods defined with this selector.
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007931 ++NumMethodPoolLookups;
Guy Benyei11169dd2012-12-18 14:30:41 +00007932 ReadMethodPoolVisitor Visitor(*this, Sel, PriorGeneration);
Benjamin Kramer9a9efba2015-07-25 12:14:04 +00007933 ModuleMgr.visit(Visitor);
7934
Guy Benyei11169dd2012-12-18 14:30:41 +00007935 if (Visitor.getInstanceMethods().empty() &&
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007936 Visitor.getFactoryMethods().empty())
Guy Benyei11169dd2012-12-18 14:30:41 +00007937 return;
Douglas Gregorad2f7a52013-01-28 17:54:36 +00007938
7939 ++NumMethodPoolHits;
7940
Guy Benyei11169dd2012-12-18 14:30:41 +00007941 if (!getSema())
7942 return;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007943
Guy Benyei11169dd2012-12-18 14:30:41 +00007944 Sema &S = *getSema();
7945 Sema::GlobalMethodPool::iterator Pos
7946 = S.MethodPool.insert(std::make_pair(Sel, Sema::GlobalMethods())).first;
Ben Langmuira0c32e92015-01-12 19:27:00 +00007947
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007948 Pos->second.first.setBits(Visitor.getInstanceBits());
Nico Weberff4b35e2014-12-27 22:14:15 +00007949 Pos->second.first.setHasMoreThanOneDecl(Visitor.instanceHasMoreThanOneDecl());
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007950 Pos->second.second.setBits(Visitor.getFactoryBits());
Nico Weberff4b35e2014-12-27 22:14:15 +00007951 Pos->second.second.setHasMoreThanOneDecl(Visitor.factoryHasMoreThanOneDecl());
Ben Langmuira0c32e92015-01-12 19:27:00 +00007952
7953 // Add methods to the global pool *after* setting hasMoreThanOneDecl, since
7954 // when building a module we keep every method individually and may need to
7955 // update hasMoreThanOneDecl as we add the methods.
7956 addMethodsToPool(S, Visitor.getInstanceMethods(), Pos->second.first);
7957 addMethodsToPool(S, Visitor.getFactoryMethods(), Pos->second.second);
Guy Benyei11169dd2012-12-18 14:30:41 +00007958}
7959
Manman Rena0f31a02016-04-29 19:04:05 +00007960void ASTReader::updateOutOfDateSelector(Selector Sel) {
7961 if (SelectorOutOfDate[Sel])
7962 ReadMethodPool(Sel);
7963}
7964
Guy Benyei11169dd2012-12-18 14:30:41 +00007965void ASTReader::ReadKnownNamespaces(
7966 SmallVectorImpl<NamespaceDecl *> &Namespaces) {
7967 Namespaces.clear();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007968
Guy Benyei11169dd2012-12-18 14:30:41 +00007969 for (unsigned I = 0, N = KnownNamespaces.size(); I != N; ++I) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00007970 if (NamespaceDecl *Namespace
Guy Benyei11169dd2012-12-18 14:30:41 +00007971 = dyn_cast_or_null<NamespaceDecl>(GetDecl(KnownNamespaces[I])))
7972 Namespaces.push_back(Namespace);
7973 }
7974}
7975
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00007976void ASTReader::ReadUndefinedButUsed(
Richard Smithd6a04d72016-03-25 21:49:43 +00007977 llvm::MapVector<NamedDecl *, SourceLocation> &Undefined) {
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00007978 for (unsigned Idx = 0, N = UndefinedButUsed.size(); Idx != N;) {
7979 NamedDecl *D = cast<NamedDecl>(GetDecl(UndefinedButUsed[Idx++]));
Nick Lewycky8334af82013-01-26 00:35:08 +00007980 SourceLocation Loc =
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +00007981 SourceLocation::getFromRawEncoding(UndefinedButUsed[Idx++]);
Nick Lewycky8334af82013-01-26 00:35:08 +00007982 Undefined.insert(std::make_pair(D, Loc));
7983 }
7984}
Nick Lewycky8334af82013-01-26 00:35:08 +00007985
Ismail Pazarbasie5768d12015-05-18 19:59:11 +00007986void ASTReader::ReadMismatchingDeleteExpressions(llvm::MapVector<
7987 FieldDecl *, llvm::SmallVector<std::pair<SourceLocation, bool>, 4>> &
7988 Exprs) {
7989 for (unsigned Idx = 0, N = DelayedDeleteExprs.size(); Idx != N;) {
7990 FieldDecl *FD = cast<FieldDecl>(GetDecl(DelayedDeleteExprs[Idx++]));
7991 uint64_t Count = DelayedDeleteExprs[Idx++];
7992 for (uint64_t C = 0; C < Count; ++C) {
7993 SourceLocation DeleteLoc =
7994 SourceLocation::getFromRawEncoding(DelayedDeleteExprs[Idx++]);
7995 const bool IsArrayForm = DelayedDeleteExprs[Idx++];
7996 Exprs[FD].push_back(std::make_pair(DeleteLoc, IsArrayForm));
7997 }
7998 }
7999}
8000
Guy Benyei11169dd2012-12-18 14:30:41 +00008001void ASTReader::ReadTentativeDefinitions(
8002 SmallVectorImpl<VarDecl *> &TentativeDefs) {
8003 for (unsigned I = 0, N = TentativeDefinitions.size(); I != N; ++I) {
8004 VarDecl *Var = dyn_cast_or_null<VarDecl>(GetDecl(TentativeDefinitions[I]));
8005 if (Var)
8006 TentativeDefs.push_back(Var);
8007 }
8008 TentativeDefinitions.clear();
8009}
8010
8011void ASTReader::ReadUnusedFileScopedDecls(
8012 SmallVectorImpl<const DeclaratorDecl *> &Decls) {
8013 for (unsigned I = 0, N = UnusedFileScopedDecls.size(); I != N; ++I) {
8014 DeclaratorDecl *D
8015 = dyn_cast_or_null<DeclaratorDecl>(GetDecl(UnusedFileScopedDecls[I]));
8016 if (D)
8017 Decls.push_back(D);
8018 }
8019 UnusedFileScopedDecls.clear();
8020}
8021
8022void ASTReader::ReadDelegatingConstructors(
8023 SmallVectorImpl<CXXConstructorDecl *> &Decls) {
8024 for (unsigned I = 0, N = DelegatingCtorDecls.size(); I != N; ++I) {
8025 CXXConstructorDecl *D
8026 = dyn_cast_or_null<CXXConstructorDecl>(GetDecl(DelegatingCtorDecls[I]));
8027 if (D)
8028 Decls.push_back(D);
8029 }
8030 DelegatingCtorDecls.clear();
8031}
8032
8033void ASTReader::ReadExtVectorDecls(SmallVectorImpl<TypedefNameDecl *> &Decls) {
8034 for (unsigned I = 0, N = ExtVectorDecls.size(); I != N; ++I) {
8035 TypedefNameDecl *D
8036 = dyn_cast_or_null<TypedefNameDecl>(GetDecl(ExtVectorDecls[I]));
8037 if (D)
8038 Decls.push_back(D);
8039 }
8040 ExtVectorDecls.clear();
8041}
8042
Nico Weber72889432014-09-06 01:25:55 +00008043void ASTReader::ReadUnusedLocalTypedefNameCandidates(
8044 llvm::SmallSetVector<const TypedefNameDecl *, 4> &Decls) {
8045 for (unsigned I = 0, N = UnusedLocalTypedefNameCandidates.size(); I != N;
8046 ++I) {
8047 TypedefNameDecl *D = dyn_cast_or_null<TypedefNameDecl>(
8048 GetDecl(UnusedLocalTypedefNameCandidates[I]));
8049 if (D)
8050 Decls.insert(D);
8051 }
8052 UnusedLocalTypedefNameCandidates.clear();
8053}
8054
Guy Benyei11169dd2012-12-18 14:30:41 +00008055void ASTReader::ReadReferencedSelectors(
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00008056 SmallVectorImpl<std::pair<Selector, SourceLocation>> &Sels) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008057 if (ReferencedSelectorsData.empty())
8058 return;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008059
Guy Benyei11169dd2012-12-18 14:30:41 +00008060 // If there are @selector references added them to its pool. This is for
8061 // implementation of -Wselector.
8062 unsigned int DataSize = ReferencedSelectorsData.size()-1;
8063 unsigned I = 0;
8064 while (I < DataSize) {
8065 Selector Sel = DecodeSelector(ReferencedSelectorsData[I++]);
8066 SourceLocation SelLoc
8067 = SourceLocation::getFromRawEncoding(ReferencedSelectorsData[I++]);
8068 Sels.push_back(std::make_pair(Sel, SelLoc));
8069 }
8070 ReferencedSelectorsData.clear();
8071}
8072
8073void ASTReader::ReadWeakUndeclaredIdentifiers(
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00008074 SmallVectorImpl<std::pair<IdentifierInfo *, WeakInfo>> &WeakIDs) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008075 if (WeakUndeclaredIdentifiers.empty())
8076 return;
8077
8078 for (unsigned I = 0, N = WeakUndeclaredIdentifiers.size(); I < N; /*none*/) {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008079 IdentifierInfo *WeakId
Guy Benyei11169dd2012-12-18 14:30:41 +00008080 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008081 IdentifierInfo *AliasId
Guy Benyei11169dd2012-12-18 14:30:41 +00008082 = DecodeIdentifierInfo(WeakUndeclaredIdentifiers[I++]);
8083 SourceLocation Loc
8084 = SourceLocation::getFromRawEncoding(WeakUndeclaredIdentifiers[I++]);
8085 bool Used = WeakUndeclaredIdentifiers[I++];
8086 WeakInfo WI(AliasId, Loc);
8087 WI.setUsed(Used);
8088 WeakIDs.push_back(std::make_pair(WeakId, WI));
8089 }
8090 WeakUndeclaredIdentifiers.clear();
8091}
8092
8093void ASTReader::ReadUsedVTables(SmallVectorImpl<ExternalVTableUse> &VTables) {
8094 for (unsigned Idx = 0, N = VTableUses.size(); Idx < N; /* In loop */) {
8095 ExternalVTableUse VT;
8096 VT.Record = dyn_cast_or_null<CXXRecordDecl>(GetDecl(VTableUses[Idx++]));
8097 VT.Location = SourceLocation::getFromRawEncoding(VTableUses[Idx++]);
8098 VT.DefinitionRequired = VTableUses[Idx++];
8099 VTables.push_back(VT);
8100 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008101
Guy Benyei11169dd2012-12-18 14:30:41 +00008102 VTableUses.clear();
8103}
8104
8105void ASTReader::ReadPendingInstantiations(
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00008106 SmallVectorImpl<std::pair<ValueDecl *, SourceLocation>> &Pending) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008107 for (unsigned Idx = 0, N = PendingInstantiations.size(); Idx < N;) {
8108 ValueDecl *D = cast<ValueDecl>(GetDecl(PendingInstantiations[Idx++]));
8109 SourceLocation Loc
8110 = SourceLocation::getFromRawEncoding(PendingInstantiations[Idx++]);
8111
8112 Pending.push_back(std::make_pair(D, Loc));
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008113 }
Guy Benyei11169dd2012-12-18 14:30:41 +00008114 PendingInstantiations.clear();
8115}
8116
Richard Smithe40f2ba2013-08-07 21:41:30 +00008117void ASTReader::ReadLateParsedTemplates(
Justin Lebar28f09c52016-10-10 16:26:08 +00008118 llvm::MapVector<const FunctionDecl *, std::unique_ptr<LateParsedTemplate>>
8119 &LPTMap) {
Richard Smithe40f2ba2013-08-07 21:41:30 +00008120 for (unsigned Idx = 0, N = LateParsedTemplates.size(); Idx < N;
8121 /* In loop */) {
8122 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(LateParsedTemplates[Idx++]));
8123
Justin Lebar28f09c52016-10-10 16:26:08 +00008124 auto LT = llvm::make_unique<LateParsedTemplate>();
Richard Smithe40f2ba2013-08-07 21:41:30 +00008125 LT->D = GetDecl(LateParsedTemplates[Idx++]);
8126
8127 ModuleFile *F = getOwningModuleFile(LT->D);
8128 assert(F && "No module");
8129
8130 unsigned TokN = LateParsedTemplates[Idx++];
8131 LT->Toks.reserve(TokN);
8132 for (unsigned T = 0; T < TokN; ++T)
8133 LT->Toks.push_back(ReadToken(*F, LateParsedTemplates, Idx));
8134
Justin Lebar28f09c52016-10-10 16:26:08 +00008135 LPTMap.insert(std::make_pair(FD, std::move(LT)));
Richard Smithe40f2ba2013-08-07 21:41:30 +00008136 }
8137
8138 LateParsedTemplates.clear();
8139}
8140
Guy Benyei11169dd2012-12-18 14:30:41 +00008141void ASTReader::LoadSelector(Selector Sel) {
8142 // It would be complicated to avoid reading the methods anyway. So don't.
8143 ReadMethodPool(Sel);
8144}
8145
8146void ASTReader::SetIdentifierInfo(IdentifierID ID, IdentifierInfo *II) {
8147 assert(ID && "Non-zero identifier ID required");
8148 assert(ID <= IdentifiersLoaded.size() && "identifier ID out of range");
8149 IdentifiersLoaded[ID - 1] = II;
8150 if (DeserializationListener)
8151 DeserializationListener->IdentifierRead(ID, II);
8152}
8153
8154/// \brief Set the globally-visible declarations associated with the given
8155/// identifier.
8156///
8157/// If the AST reader is currently in a state where the given declaration IDs
8158/// cannot safely be resolved, they are queued until it is safe to resolve
8159/// them.
8160///
8161/// \param II an IdentifierInfo that refers to one or more globally-visible
8162/// declarations.
8163///
8164/// \param DeclIDs the set of declaration IDs with the name @p II that are
8165/// visible at global scope.
8166///
Douglas Gregor6168bd22013-02-18 15:53:43 +00008167/// \param Decls if non-null, this vector will be populated with the set of
8168/// deserialized declarations. These declarations will not be pushed into
8169/// scope.
Guy Benyei11169dd2012-12-18 14:30:41 +00008170void
8171ASTReader::SetGloballyVisibleDecls(IdentifierInfo *II,
8172 const SmallVectorImpl<uint32_t> &DeclIDs,
Douglas Gregor6168bd22013-02-18 15:53:43 +00008173 SmallVectorImpl<Decl *> *Decls) {
8174 if (NumCurrentElementsDeserializing && !Decls) {
8175 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end());
Guy Benyei11169dd2012-12-18 14:30:41 +00008176 return;
8177 }
8178
8179 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
Ben Langmuir5418f402014-09-10 21:29:41 +00008180 if (!SemaObj) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008181 // Queue this declaration so that it will be added to the
8182 // translation unit scope and identifier's declaration chain
8183 // once a Sema object is known.
Ben Langmuir5418f402014-09-10 21:29:41 +00008184 PreloadedDeclIDs.push_back(DeclIDs[I]);
8185 continue;
Guy Benyei11169dd2012-12-18 14:30:41 +00008186 }
Ben Langmuir5418f402014-09-10 21:29:41 +00008187
8188 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
8189
8190 // If we're simply supposed to record the declarations, do so now.
8191 if (Decls) {
8192 Decls->push_back(D);
8193 continue;
8194 }
8195
8196 // Introduce this declaration into the translation-unit scope
8197 // and add it to the declaration chain for this identifier, so
8198 // that (unqualified) name lookup will find it.
8199 pushExternalDeclIntoScope(D, II);
Guy Benyei11169dd2012-12-18 14:30:41 +00008200 }
8201}
8202
Douglas Gregorc8a992f2013-01-21 16:52:34 +00008203IdentifierInfo *ASTReader::DecodeIdentifierInfo(IdentifierID ID) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008204 if (ID == 0)
Craig Toppera13603a2014-05-22 05:54:18 +00008205 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008206
8207 if (IdentifiersLoaded.empty()) {
8208 Error("no identifier table in AST file");
Craig Toppera13603a2014-05-22 05:54:18 +00008209 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008210 }
8211
8212 ID -= 1;
8213 if (!IdentifiersLoaded[ID]) {
8214 GlobalIdentifierMapType::iterator I = GlobalIdentifierMap.find(ID + 1);
8215 assert(I != GlobalIdentifierMap.end() && "Corrupted global identifier map");
8216 ModuleFile *M = I->second;
8217 unsigned Index = ID - M->BaseIdentifierID;
8218 const char *Str = M->IdentifierTableData + M->IdentifierOffsets[Index];
8219
8220 // All of the strings in the AST file are preceded by a 16-bit length.
8221 // Extract that 16-bit length to avoid having to execute strlen().
8222 // NOTE: 'StrLenPtr' is an 'unsigned char*' so that we load bytes as
8223 // unsigned integers. This is important to avoid integer overflow when
8224 // we cast them to 'unsigned'.
8225 const unsigned char *StrLenPtr = (const unsigned char*) Str - 2;
8226 unsigned StrLen = (((unsigned) StrLenPtr[0])
8227 | (((unsigned) StrLenPtr[1]) << 8)) - 1;
Richard Smitheb4b58f62016-02-05 01:40:54 +00008228 auto &II = PP.getIdentifierTable().get(StringRef(Str, StrLen));
8229 IdentifiersLoaded[ID] = &II;
8230 markIdentifierFromAST(*this, II);
Guy Benyei11169dd2012-12-18 14:30:41 +00008231 if (DeserializationListener)
Richard Smitheb4b58f62016-02-05 01:40:54 +00008232 DeserializationListener->IdentifierRead(ID + 1, &II);
Guy Benyei11169dd2012-12-18 14:30:41 +00008233 }
8234
8235 return IdentifiersLoaded[ID];
8236}
8237
Douglas Gregorc8a992f2013-01-21 16:52:34 +00008238IdentifierInfo *ASTReader::getLocalIdentifier(ModuleFile &M, unsigned LocalID) {
8239 return DecodeIdentifierInfo(getGlobalIdentifierID(M, LocalID));
Guy Benyei11169dd2012-12-18 14:30:41 +00008240}
8241
8242IdentifierID ASTReader::getGlobalIdentifierID(ModuleFile &M, unsigned LocalID) {
8243 if (LocalID < NUM_PREDEF_IDENT_IDS)
8244 return LocalID;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008245
Richard Smith37a93df2017-02-18 00:32:02 +00008246 if (!M.ModuleOffsetMap.empty())
8247 ReadModuleOffsetMap(M);
8248
Guy Benyei11169dd2012-12-18 14:30:41 +00008249 ContinuousRangeMap<uint32_t, int, 2>::iterator I
8250 = M.IdentifierRemap.find(LocalID - NUM_PREDEF_IDENT_IDS);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008251 assert(I != M.IdentifierRemap.end()
Guy Benyei11169dd2012-12-18 14:30:41 +00008252 && "Invalid index into identifier index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008253
Guy Benyei11169dd2012-12-18 14:30:41 +00008254 return LocalID + I->second;
8255}
8256
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00008257MacroInfo *ASTReader::getMacro(MacroID ID) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008258 if (ID == 0)
Craig Toppera13603a2014-05-22 05:54:18 +00008259 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008260
8261 if (MacrosLoaded.empty()) {
8262 Error("no macro table in AST file");
Craig Toppera13603a2014-05-22 05:54:18 +00008263 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008264 }
8265
8266 ID -= NUM_PREDEF_MACRO_IDS;
8267 if (!MacrosLoaded[ID]) {
8268 GlobalMacroMapType::iterator I
8269 = GlobalMacroMap.find(ID + NUM_PREDEF_MACRO_IDS);
8270 assert(I != GlobalMacroMap.end() && "Corrupted global macro map");
8271 ModuleFile *M = I->second;
8272 unsigned Index = ID - M->BaseMacroID;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00008273 MacrosLoaded[ID] = ReadMacroRecord(*M, M->MacroOffsets[Index]);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008274
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00008275 if (DeserializationListener)
8276 DeserializationListener->MacroRead(ID + NUM_PREDEF_MACRO_IDS,
8277 MacrosLoaded[ID]);
Guy Benyei11169dd2012-12-18 14:30:41 +00008278 }
8279
8280 return MacrosLoaded[ID];
8281}
8282
8283MacroID ASTReader::getGlobalMacroID(ModuleFile &M, unsigned LocalID) {
8284 if (LocalID < NUM_PREDEF_MACRO_IDS)
8285 return LocalID;
8286
Richard Smith37a93df2017-02-18 00:32:02 +00008287 if (!M.ModuleOffsetMap.empty())
8288 ReadModuleOffsetMap(M);
8289
Guy Benyei11169dd2012-12-18 14:30:41 +00008290 ContinuousRangeMap<uint32_t, int, 2>::iterator I
8291 = M.MacroRemap.find(LocalID - NUM_PREDEF_MACRO_IDS);
8292 assert(I != M.MacroRemap.end() && "Invalid index into macro index remap");
8293
8294 return LocalID + I->second;
8295}
8296
8297serialization::SubmoduleID
8298ASTReader::getGlobalSubmoduleID(ModuleFile &M, unsigned LocalID) {
8299 if (LocalID < NUM_PREDEF_SUBMODULE_IDS)
8300 return LocalID;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008301
Richard Smith37a93df2017-02-18 00:32:02 +00008302 if (!M.ModuleOffsetMap.empty())
8303 ReadModuleOffsetMap(M);
8304
Guy Benyei11169dd2012-12-18 14:30:41 +00008305 ContinuousRangeMap<uint32_t, int, 2>::iterator I
8306 = M.SubmoduleRemap.find(LocalID - NUM_PREDEF_SUBMODULE_IDS);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008307 assert(I != M.SubmoduleRemap.end()
Guy Benyei11169dd2012-12-18 14:30:41 +00008308 && "Invalid index into submodule index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008309
Guy Benyei11169dd2012-12-18 14:30:41 +00008310 return LocalID + I->second;
8311}
8312
8313Module *ASTReader::getSubmodule(SubmoduleID GlobalID) {
8314 if (GlobalID < NUM_PREDEF_SUBMODULE_IDS) {
8315 assert(GlobalID == 0 && "Unhandled global submodule ID");
Craig Toppera13603a2014-05-22 05:54:18 +00008316 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008317 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008318
Guy Benyei11169dd2012-12-18 14:30:41 +00008319 if (GlobalID > SubmodulesLoaded.size()) {
8320 Error("submodule ID out of range in AST file");
Craig Toppera13603a2014-05-22 05:54:18 +00008321 return nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008322 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008323
Guy Benyei11169dd2012-12-18 14:30:41 +00008324 return SubmodulesLoaded[GlobalID - NUM_PREDEF_SUBMODULE_IDS];
8325}
Douglas Gregorc147b0b2013-01-12 01:29:50 +00008326
8327Module *ASTReader::getModule(unsigned ID) {
8328 return getSubmodule(ID);
8329}
8330
Richard Smithd88a7f12015-09-01 20:35:42 +00008331ModuleFile *ASTReader::getLocalModuleFile(ModuleFile &F, unsigned ID) {
8332 if (ID & 1) {
8333 // It's a module, look it up by submodule ID.
8334 auto I = GlobalSubmoduleMap.find(getGlobalSubmoduleID(F, ID >> 1));
8335 return I == GlobalSubmoduleMap.end() ? nullptr : I->second;
8336 } else {
8337 // It's a prefix (preamble, PCH, ...). Look it up by index.
8338 unsigned IndexFromEnd = ID >> 1;
8339 assert(IndexFromEnd && "got reference to unknown module file");
8340 return getModuleManager().pch_modules().end()[-IndexFromEnd];
8341 }
8342}
8343
8344unsigned ASTReader::getModuleFileID(ModuleFile *F) {
8345 if (!F)
8346 return 1;
8347
8348 // For a file representing a module, use the submodule ID of the top-level
8349 // module as the file ID. For any other kind of file, the number of such
8350 // files loaded beforehand will be the same on reload.
8351 // FIXME: Is this true even if we have an explicit module file and a PCH?
8352 if (F->isModule())
8353 return ((F->BaseSubmoduleID + NUM_PREDEF_SUBMODULE_IDS) << 1) | 1;
8354
8355 auto PCHModules = getModuleManager().pch_modules();
8356 auto I = std::find(PCHModules.begin(), PCHModules.end(), F);
8357 assert(I != PCHModules.end() && "emitting reference to unknown file");
8358 return (I - PCHModules.end()) << 1;
8359}
8360
Adrian Prantl15bcf702015-06-30 17:39:43 +00008361llvm::Optional<ExternalASTSource::ASTSourceDescriptor>
8362ASTReader::getSourceDescriptor(unsigned ID) {
8363 if (const Module *M = getSubmodule(ID))
Adrian Prantlc6458d62015-09-19 00:10:32 +00008364 return ExternalASTSource::ASTSourceDescriptor(*M);
Adrian Prantl15bcf702015-06-30 17:39:43 +00008365
8366 // If there is only a single PCH, return it instead.
Hiroshi Inoue3170de02017-07-01 08:46:43 +00008367 // Chained PCH are not supported.
Saleem Abdulrasool97d25552017-03-02 17:37:11 +00008368 const auto &PCHChain = ModuleMgr.pch_modules();
8369 if (std::distance(std::begin(PCHChain), std::end(PCHChain))) {
Adrian Prantl15bcf702015-06-30 17:39:43 +00008370 ModuleFile &MF = ModuleMgr.getPrimaryModule();
Adrian Prantl3a2d4942016-01-22 23:30:56 +00008371 StringRef ModuleName = llvm::sys::path::filename(MF.OriginalSourceFileName);
Adrian Prantl9bc3c4f2016-04-27 17:06:22 +00008372 StringRef FileName = llvm::sys::path::filename(MF.FileName);
8373 return ASTReader::ASTSourceDescriptor(ModuleName, MF.OriginalDir, FileName,
8374 MF.Signature);
Adrian Prantl15bcf702015-06-30 17:39:43 +00008375 }
8376 return None;
8377}
8378
David Blaikie1ac9c982017-04-11 21:13:37 +00008379ExternalASTSource::ExtKind ASTReader::hasExternalDefinitions(const Decl *FD) {
Richard Smitha4653622017-09-06 20:01:14 +00008380 auto I = DefinitionSource.find(FD);
8381 if (I == DefinitionSource.end())
David Blaikie9ffe5a32017-01-30 05:00:26 +00008382 return EK_ReplyHazy;
David Blaikiee6b7c282017-04-11 20:46:34 +00008383 return I->second ? EK_Never : EK_Always;
David Blaikie9ffe5a32017-01-30 05:00:26 +00008384}
8385
Guy Benyei11169dd2012-12-18 14:30:41 +00008386Selector ASTReader::getLocalSelector(ModuleFile &M, unsigned LocalID) {
8387 return DecodeSelector(getGlobalSelectorID(M, LocalID));
8388}
8389
8390Selector ASTReader::DecodeSelector(serialization::SelectorID ID) {
8391 if (ID == 0)
8392 return Selector();
8393
8394 if (ID > SelectorsLoaded.size()) {
8395 Error("selector ID out of range in AST file");
8396 return Selector();
8397 }
8398
Craig Toppera13603a2014-05-22 05:54:18 +00008399 if (SelectorsLoaded[ID - 1].getAsOpaquePtr() == nullptr) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008400 // Load this selector from the selector table.
8401 GlobalSelectorMapType::iterator I = GlobalSelectorMap.find(ID);
8402 assert(I != GlobalSelectorMap.end() && "Corrupted global selector map");
8403 ModuleFile &M = *I->second;
8404 ASTSelectorLookupTrait Trait(*this, M);
8405 unsigned Idx = ID - M.BaseSelectorID - NUM_PREDEF_SELECTOR_IDS;
8406 SelectorsLoaded[ID - 1] =
8407 Trait.ReadKey(M.SelectorLookupTableData + M.SelectorOffsets[Idx], 0);
8408 if (DeserializationListener)
8409 DeserializationListener->SelectorRead(ID, SelectorsLoaded[ID - 1]);
8410 }
8411
8412 return SelectorsLoaded[ID - 1];
8413}
8414
8415Selector ASTReader::GetExternalSelector(serialization::SelectorID ID) {
8416 return DecodeSelector(ID);
8417}
8418
8419uint32_t ASTReader::GetNumExternalSelectors() {
8420 // ID 0 (the null selector) is considered an external selector.
8421 return getTotalNumSelectors() + 1;
8422}
8423
8424serialization::SelectorID
8425ASTReader::getGlobalSelectorID(ModuleFile &M, unsigned LocalID) const {
8426 if (LocalID < NUM_PREDEF_SELECTOR_IDS)
8427 return LocalID;
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008428
Richard Smith37a93df2017-02-18 00:32:02 +00008429 if (!M.ModuleOffsetMap.empty())
8430 ReadModuleOffsetMap(M);
8431
Guy Benyei11169dd2012-12-18 14:30:41 +00008432 ContinuousRangeMap<uint32_t, int, 2>::iterator I
8433 = M.SelectorRemap.find(LocalID - NUM_PREDEF_SELECTOR_IDS);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008434 assert(I != M.SelectorRemap.end()
Guy Benyei11169dd2012-12-18 14:30:41 +00008435 && "Invalid index into selector index remap");
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008436
Guy Benyei11169dd2012-12-18 14:30:41 +00008437 return LocalID + I->second;
8438}
8439
8440DeclarationName
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008441ASTReader::ReadDeclarationName(ModuleFile &F,
Guy Benyei11169dd2012-12-18 14:30:41 +00008442 const RecordData &Record, unsigned &Idx) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008443 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008444 DeclarationName::NameKind Kind = (DeclarationName::NameKind)Record[Idx++];
8445 switch (Kind) {
8446 case DeclarationName::Identifier:
Douglas Gregorc8a992f2013-01-21 16:52:34 +00008447 return DeclarationName(GetIdentifierInfo(F, Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00008448
8449 case DeclarationName::ObjCZeroArgSelector:
8450 case DeclarationName::ObjCOneArgSelector:
8451 case DeclarationName::ObjCMultiArgSelector:
8452 return DeclarationName(ReadSelector(F, Record, Idx));
8453
8454 case DeclarationName::CXXConstructorName:
8455 return Context.DeclarationNames.getCXXConstructorName(
8456 Context.getCanonicalType(readType(F, Record, Idx)));
8457
8458 case DeclarationName::CXXDestructorName:
8459 return Context.DeclarationNames.getCXXDestructorName(
8460 Context.getCanonicalType(readType(F, Record, Idx)));
8461
Richard Smith35845152017-02-07 01:37:30 +00008462 case DeclarationName::CXXDeductionGuideName:
8463 return Context.DeclarationNames.getCXXDeductionGuideName(
8464 ReadDeclAs<TemplateDecl>(F, Record, Idx));
8465
Guy Benyei11169dd2012-12-18 14:30:41 +00008466 case DeclarationName::CXXConversionFunctionName:
8467 return Context.DeclarationNames.getCXXConversionFunctionName(
8468 Context.getCanonicalType(readType(F, Record, Idx)));
8469
8470 case DeclarationName::CXXOperatorName:
8471 return Context.DeclarationNames.getCXXOperatorName(
8472 (OverloadedOperatorKind)Record[Idx++]);
8473
8474 case DeclarationName::CXXLiteralOperatorName:
8475 return Context.DeclarationNames.getCXXLiteralOperatorName(
8476 GetIdentifierInfo(F, Record, Idx));
8477
8478 case DeclarationName::CXXUsingDirective:
8479 return DeclarationName::getUsingDirectiveName();
8480 }
8481
8482 llvm_unreachable("Invalid NameKind!");
8483}
8484
8485void ASTReader::ReadDeclarationNameLoc(ModuleFile &F,
8486 DeclarationNameLoc &DNLoc,
8487 DeclarationName Name,
8488 const RecordData &Record, unsigned &Idx) {
8489 switch (Name.getNameKind()) {
8490 case DeclarationName::CXXConstructorName:
8491 case DeclarationName::CXXDestructorName:
8492 case DeclarationName::CXXConversionFunctionName:
8493 DNLoc.NamedType.TInfo = GetTypeSourceInfo(F, Record, Idx);
8494 break;
8495
8496 case DeclarationName::CXXOperatorName:
8497 DNLoc.CXXOperatorName.BeginOpNameLoc
8498 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
8499 DNLoc.CXXOperatorName.EndOpNameLoc
8500 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
8501 break;
8502
8503 case DeclarationName::CXXLiteralOperatorName:
8504 DNLoc.CXXLiteralOperatorName.OpNameLoc
8505 = ReadSourceLocation(F, Record, Idx).getRawEncoding();
8506 break;
8507
8508 case DeclarationName::Identifier:
8509 case DeclarationName::ObjCZeroArgSelector:
8510 case DeclarationName::ObjCOneArgSelector:
8511 case DeclarationName::ObjCMultiArgSelector:
8512 case DeclarationName::CXXUsingDirective:
Richard Smith35845152017-02-07 01:37:30 +00008513 case DeclarationName::CXXDeductionGuideName:
Guy Benyei11169dd2012-12-18 14:30:41 +00008514 break;
8515 }
8516}
8517
8518void ASTReader::ReadDeclarationNameInfo(ModuleFile &F,
8519 DeclarationNameInfo &NameInfo,
8520 const RecordData &Record, unsigned &Idx) {
8521 NameInfo.setName(ReadDeclarationName(F, Record, Idx));
8522 NameInfo.setLoc(ReadSourceLocation(F, Record, Idx));
8523 DeclarationNameLoc DNLoc;
8524 ReadDeclarationNameLoc(F, DNLoc, NameInfo.getName(), Record, Idx);
8525 NameInfo.setInfo(DNLoc);
8526}
8527
8528void ASTReader::ReadQualifierInfo(ModuleFile &F, QualifierInfo &Info,
8529 const RecordData &Record, unsigned &Idx) {
8530 Info.QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
8531 unsigned NumTPLists = Record[Idx++];
8532 Info.NumTemplParamLists = NumTPLists;
8533 if (NumTPLists) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008534 Info.TemplParamLists =
8535 new (getContext()) TemplateParameterList *[NumTPLists];
Eugene Zelenkoe95e7d52016-09-07 21:53:17 +00008536 for (unsigned i = 0; i != NumTPLists; ++i)
Guy Benyei11169dd2012-12-18 14:30:41 +00008537 Info.TemplParamLists[i] = ReadTemplateParameterList(F, Record, Idx);
8538 }
8539}
8540
8541TemplateName
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008542ASTReader::ReadTemplateName(ModuleFile &F, const RecordData &Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00008543 unsigned &Idx) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008544 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008545 TemplateName::NameKind Kind = (TemplateName::NameKind)Record[Idx++];
8546 switch (Kind) {
8547 case TemplateName::Template:
8548 return TemplateName(ReadDeclAs<TemplateDecl>(F, Record, Idx));
8549
8550 case TemplateName::OverloadedTemplate: {
8551 unsigned size = Record[Idx++];
8552 UnresolvedSet<8> Decls;
8553 while (size--)
8554 Decls.addDecl(ReadDeclAs<NamedDecl>(F, Record, Idx));
8555
8556 return Context.getOverloadedTemplateName(Decls.begin(), Decls.end());
8557 }
8558
8559 case TemplateName::QualifiedTemplate: {
8560 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
8561 bool hasTemplKeyword = Record[Idx++];
8562 TemplateDecl *Template = ReadDeclAs<TemplateDecl>(F, Record, Idx);
8563 return Context.getQualifiedTemplateName(NNS, hasTemplKeyword, Template);
8564 }
8565
8566 case TemplateName::DependentTemplate: {
8567 NestedNameSpecifier *NNS = ReadNestedNameSpecifier(F, Record, Idx);
8568 if (Record[Idx++]) // isIdentifier
8569 return Context.getDependentTemplateName(NNS,
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008570 GetIdentifierInfo(F, Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00008571 Idx));
8572 return Context.getDependentTemplateName(NNS,
8573 (OverloadedOperatorKind)Record[Idx++]);
8574 }
8575
8576 case TemplateName::SubstTemplateTemplateParm: {
8577 TemplateTemplateParmDecl *param
8578 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
8579 if (!param) return TemplateName();
8580 TemplateName replacement = ReadTemplateName(F, Record, Idx);
8581 return Context.getSubstTemplateTemplateParm(param, replacement);
8582 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008583
Guy Benyei11169dd2012-12-18 14:30:41 +00008584 case TemplateName::SubstTemplateTemplateParmPack: {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008585 TemplateTemplateParmDecl *Param
Guy Benyei11169dd2012-12-18 14:30:41 +00008586 = ReadDeclAs<TemplateTemplateParmDecl>(F, Record, Idx);
8587 if (!Param)
8588 return TemplateName();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008589
Guy Benyei11169dd2012-12-18 14:30:41 +00008590 TemplateArgument ArgPack = ReadTemplateArgument(F, Record, Idx);
8591 if (ArgPack.getKind() != TemplateArgument::Pack)
8592 return TemplateName();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008593
Guy Benyei11169dd2012-12-18 14:30:41 +00008594 return Context.getSubstTemplateTemplateParmPack(Param, ArgPack);
8595 }
8596 }
8597
8598 llvm_unreachable("Unhandled template name kind!");
8599}
8600
Richard Smith2bb3c342015-08-09 01:05:31 +00008601TemplateArgument ASTReader::ReadTemplateArgument(ModuleFile &F,
8602 const RecordData &Record,
8603 unsigned &Idx,
8604 bool Canonicalize) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008605 ASTContext &Context = getContext();
Richard Smith2bb3c342015-08-09 01:05:31 +00008606 if (Canonicalize) {
8607 // The caller wants a canonical template argument. Sometimes the AST only
8608 // wants template arguments in canonical form (particularly as the template
8609 // argument lists of template specializations) so ensure we preserve that
8610 // canonical form across serialization.
8611 TemplateArgument Arg = ReadTemplateArgument(F, Record, Idx, false);
8612 return Context.getCanonicalTemplateArgument(Arg);
8613 }
8614
Guy Benyei11169dd2012-12-18 14:30:41 +00008615 TemplateArgument::ArgKind Kind = (TemplateArgument::ArgKind)Record[Idx++];
8616 switch (Kind) {
8617 case TemplateArgument::Null:
8618 return TemplateArgument();
8619 case TemplateArgument::Type:
8620 return TemplateArgument(readType(F, Record, Idx));
8621 case TemplateArgument::Declaration: {
8622 ValueDecl *D = ReadDeclAs<ValueDecl>(F, Record, Idx);
David Blaikie0f62c8d2014-10-16 04:21:25 +00008623 return TemplateArgument(D, readType(F, Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00008624 }
8625 case TemplateArgument::NullPtr:
8626 return TemplateArgument(readType(F, Record, Idx), /*isNullPtr*/true);
8627 case TemplateArgument::Integral: {
8628 llvm::APSInt Value = ReadAPSInt(Record, Idx);
8629 QualType T = readType(F, Record, Idx);
8630 return TemplateArgument(Context, Value, T);
8631 }
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008632 case TemplateArgument::Template:
Guy Benyei11169dd2012-12-18 14:30:41 +00008633 return TemplateArgument(ReadTemplateName(F, Record, Idx));
8634 case TemplateArgument::TemplateExpansion: {
8635 TemplateName Name = ReadTemplateName(F, Record, Idx);
David Blaikie05785d12013-02-20 22:23:23 +00008636 Optional<unsigned> NumTemplateExpansions;
Guy Benyei11169dd2012-12-18 14:30:41 +00008637 if (unsigned NumExpansions = Record[Idx++])
8638 NumTemplateExpansions = NumExpansions - 1;
8639 return TemplateArgument(Name, NumTemplateExpansions);
8640 }
8641 case TemplateArgument::Expression:
8642 return TemplateArgument(ReadExpr(F));
8643 case TemplateArgument::Pack: {
8644 unsigned NumArgs = Record[Idx++];
8645 TemplateArgument *Args = new (Context) TemplateArgument[NumArgs];
8646 for (unsigned I = 0; I != NumArgs; ++I)
8647 Args[I] = ReadTemplateArgument(F, Record, Idx);
Benjamin Kramercce63472015-08-05 09:40:22 +00008648 return TemplateArgument(llvm::makeArrayRef(Args, NumArgs));
Guy Benyei11169dd2012-12-18 14:30:41 +00008649 }
8650 }
8651
8652 llvm_unreachable("Unhandled template argument kind!");
8653}
8654
8655TemplateParameterList *
8656ASTReader::ReadTemplateParameterList(ModuleFile &F,
8657 const RecordData &Record, unsigned &Idx) {
8658 SourceLocation TemplateLoc = ReadSourceLocation(F, Record, Idx);
8659 SourceLocation LAngleLoc = ReadSourceLocation(F, Record, Idx);
8660 SourceLocation RAngleLoc = ReadSourceLocation(F, Record, Idx);
8661
8662 unsigned NumParams = Record[Idx++];
8663 SmallVector<NamedDecl *, 16> Params;
8664 Params.reserve(NumParams);
8665 while (NumParams--)
8666 Params.push_back(ReadDeclAs<NamedDecl>(F, Record, Idx));
8667
Hubert Tonge4a0c0e2016-07-30 22:33:34 +00008668 // TODO: Concepts
Richard Smithdbafb6c2017-06-29 23:23:46 +00008669 TemplateParameterList *TemplateParams = TemplateParameterList::Create(
8670 getContext(), TemplateLoc, LAngleLoc, Params, RAngleLoc, nullptr);
Guy Benyei11169dd2012-12-18 14:30:41 +00008671 return TemplateParams;
8672}
8673
8674void
8675ASTReader::
Craig Topper5603df42013-07-05 19:34:19 +00008676ReadTemplateArgumentList(SmallVectorImpl<TemplateArgument> &TemplArgs,
Guy Benyei11169dd2012-12-18 14:30:41 +00008677 ModuleFile &F, const RecordData &Record,
Richard Smith2bb3c342015-08-09 01:05:31 +00008678 unsigned &Idx, bool Canonicalize) {
Guy Benyei11169dd2012-12-18 14:30:41 +00008679 unsigned NumTemplateArgs = Record[Idx++];
8680 TemplArgs.reserve(NumTemplateArgs);
8681 while (NumTemplateArgs--)
Richard Smith2bb3c342015-08-09 01:05:31 +00008682 TemplArgs.push_back(ReadTemplateArgument(F, Record, Idx, Canonicalize));
Guy Benyei11169dd2012-12-18 14:30:41 +00008683}
8684
8685/// \brief Read a UnresolvedSet structure.
Richard Smitha4ba74c2013-08-30 04:46:40 +00008686void ASTReader::ReadUnresolvedSet(ModuleFile &F, LazyASTUnresolvedSet &Set,
Guy Benyei11169dd2012-12-18 14:30:41 +00008687 const RecordData &Record, unsigned &Idx) {
8688 unsigned NumDecls = Record[Idx++];
Richard Smithdbafb6c2017-06-29 23:23:46 +00008689 Set.reserve(getContext(), NumDecls);
Guy Benyei11169dd2012-12-18 14:30:41 +00008690 while (NumDecls--) {
Richard Smitha4ba74c2013-08-30 04:46:40 +00008691 DeclID ID = ReadDeclID(F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00008692 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
Richard Smithdbafb6c2017-06-29 23:23:46 +00008693 Set.addLazyDecl(getContext(), ID, AS);
Guy Benyei11169dd2012-12-18 14:30:41 +00008694 }
8695}
8696
8697CXXBaseSpecifier
8698ASTReader::ReadCXXBaseSpecifier(ModuleFile &F,
8699 const RecordData &Record, unsigned &Idx) {
8700 bool isVirtual = static_cast<bool>(Record[Idx++]);
8701 bool isBaseOfClass = static_cast<bool>(Record[Idx++]);
8702 AccessSpecifier AS = static_cast<AccessSpecifier>(Record[Idx++]);
8703 bool inheritConstructors = static_cast<bool>(Record[Idx++]);
8704 TypeSourceInfo *TInfo = GetTypeSourceInfo(F, Record, Idx);
8705 SourceRange Range = ReadSourceRange(F, Record, Idx);
8706 SourceLocation EllipsisLoc = ReadSourceLocation(F, Record, Idx);
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008707 CXXBaseSpecifier Result(Range, isVirtual, isBaseOfClass, AS, TInfo,
Guy Benyei11169dd2012-12-18 14:30:41 +00008708 EllipsisLoc);
8709 Result.setInheritConstructors(inheritConstructors);
8710 return Result;
8711}
8712
Richard Smithc2bb8182015-03-24 06:36:48 +00008713CXXCtorInitializer **
Guy Benyei11169dd2012-12-18 14:30:41 +00008714ASTReader::ReadCXXCtorInitializers(ModuleFile &F, const RecordData &Record,
8715 unsigned &Idx) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008716 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008717 unsigned NumInitializers = Record[Idx++];
Richard Smithc2bb8182015-03-24 06:36:48 +00008718 assert(NumInitializers && "wrote ctor initializers but have no inits");
8719 auto **CtorInitializers = new (Context) CXXCtorInitializer*[NumInitializers];
8720 for (unsigned i = 0; i != NumInitializers; ++i) {
8721 TypeSourceInfo *TInfo = nullptr;
8722 bool IsBaseVirtual = false;
8723 FieldDecl *Member = nullptr;
8724 IndirectFieldDecl *IndirectMember = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008725
Richard Smithc2bb8182015-03-24 06:36:48 +00008726 CtorInitializerType Type = (CtorInitializerType)Record[Idx++];
8727 switch (Type) {
8728 case CTOR_INITIALIZER_BASE:
8729 TInfo = GetTypeSourceInfo(F, Record, Idx);
8730 IsBaseVirtual = Record[Idx++];
8731 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00008732
Richard Smithc2bb8182015-03-24 06:36:48 +00008733 case CTOR_INITIALIZER_DELEGATING:
8734 TInfo = GetTypeSourceInfo(F, Record, Idx);
8735 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00008736
Richard Smithc2bb8182015-03-24 06:36:48 +00008737 case CTOR_INITIALIZER_MEMBER:
8738 Member = ReadDeclAs<FieldDecl>(F, Record, Idx);
8739 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00008740
Richard Smithc2bb8182015-03-24 06:36:48 +00008741 case CTOR_INITIALIZER_INDIRECT_MEMBER:
8742 IndirectMember = ReadDeclAs<IndirectFieldDecl>(F, Record, Idx);
8743 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00008744 }
Richard Smithc2bb8182015-03-24 06:36:48 +00008745
8746 SourceLocation MemberOrEllipsisLoc = ReadSourceLocation(F, Record, Idx);
8747 Expr *Init = ReadExpr(F);
8748 SourceLocation LParenLoc = ReadSourceLocation(F, Record, Idx);
8749 SourceLocation RParenLoc = ReadSourceLocation(F, Record, Idx);
Richard Smithc2bb8182015-03-24 06:36:48 +00008750
8751 CXXCtorInitializer *BOMInit;
Richard Smith30e304e2016-12-14 00:03:17 +00008752 if (Type == CTOR_INITIALIZER_BASE)
Richard Smithc2bb8182015-03-24 06:36:48 +00008753 BOMInit = new (Context)
8754 CXXCtorInitializer(Context, TInfo, IsBaseVirtual, LParenLoc, Init,
8755 RParenLoc, MemberOrEllipsisLoc);
Richard Smith30e304e2016-12-14 00:03:17 +00008756 else if (Type == CTOR_INITIALIZER_DELEGATING)
Richard Smithc2bb8182015-03-24 06:36:48 +00008757 BOMInit = new (Context)
8758 CXXCtorInitializer(Context, TInfo, LParenLoc, Init, RParenLoc);
Richard Smith30e304e2016-12-14 00:03:17 +00008759 else if (Member)
8760 BOMInit = new (Context)
8761 CXXCtorInitializer(Context, Member, MemberOrEllipsisLoc, LParenLoc,
8762 Init, RParenLoc);
8763 else
8764 BOMInit = new (Context)
8765 CXXCtorInitializer(Context, IndirectMember, MemberOrEllipsisLoc,
8766 LParenLoc, Init, RParenLoc);
8767
Richard Smith418ed822016-12-14 19:45:03 +00008768 if (/*IsWritten*/Record[Idx++]) {
Richard Smith30e304e2016-12-14 00:03:17 +00008769 unsigned SourceOrder = Record[Idx++];
8770 BOMInit->setSourceOrder(SourceOrder);
Richard Smithc2bb8182015-03-24 06:36:48 +00008771 }
8772
Richard Smithc2bb8182015-03-24 06:36:48 +00008773 CtorInitializers[i] = BOMInit;
Guy Benyei11169dd2012-12-18 14:30:41 +00008774 }
8775
Richard Smithc2bb8182015-03-24 06:36:48 +00008776 return CtorInitializers;
Guy Benyei11169dd2012-12-18 14:30:41 +00008777}
8778
8779NestedNameSpecifier *
8780ASTReader::ReadNestedNameSpecifier(ModuleFile &F,
8781 const RecordData &Record, unsigned &Idx) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008782 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008783 unsigned N = Record[Idx++];
Craig Toppera13603a2014-05-22 05:54:18 +00008784 NestedNameSpecifier *NNS = nullptr, *Prev = nullptr;
Guy Benyei11169dd2012-12-18 14:30:41 +00008785 for (unsigned I = 0; I != N; ++I) {
8786 NestedNameSpecifier::SpecifierKind Kind
8787 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
8788 switch (Kind) {
8789 case NestedNameSpecifier::Identifier: {
8790 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
8791 NNS = NestedNameSpecifier::Create(Context, Prev, II);
8792 break;
8793 }
8794
8795 case NestedNameSpecifier::Namespace: {
8796 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
8797 NNS = NestedNameSpecifier::Create(Context, Prev, NS);
8798 break;
8799 }
8800
8801 case NestedNameSpecifier::NamespaceAlias: {
8802 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
8803 NNS = NestedNameSpecifier::Create(Context, Prev, Alias);
8804 break;
8805 }
8806
8807 case NestedNameSpecifier::TypeSpec:
8808 case NestedNameSpecifier::TypeSpecWithTemplate: {
8809 const Type *T = readType(F, Record, Idx).getTypePtrOrNull();
8810 if (!T)
Craig Toppera13603a2014-05-22 05:54:18 +00008811 return nullptr;
8812
Guy Benyei11169dd2012-12-18 14:30:41 +00008813 bool Template = Record[Idx++];
8814 NNS = NestedNameSpecifier::Create(Context, Prev, Template, T);
8815 break;
8816 }
8817
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00008818 case NestedNameSpecifier::Global:
Guy Benyei11169dd2012-12-18 14:30:41 +00008819 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
8820 // No associated value, and there can't be a prefix.
8821 break;
Nikola Smiljanic67860242014-09-26 00:28:20 +00008822
8823 case NestedNameSpecifier::Super: {
8824 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(F, Record, Idx);
8825 NNS = NestedNameSpecifier::SuperSpecifier(Context, RD);
8826 break;
8827 }
Guy Benyei11169dd2012-12-18 14:30:41 +00008828 }
8829 Prev = NNS;
8830 }
8831 return NNS;
8832}
8833
8834NestedNameSpecifierLoc
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008835ASTReader::ReadNestedNameSpecifierLoc(ModuleFile &F, const RecordData &Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00008836 unsigned &Idx) {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008837 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008838 unsigned N = Record[Idx++];
8839 NestedNameSpecifierLocBuilder Builder;
8840 for (unsigned I = 0; I != N; ++I) {
8841 NestedNameSpecifier::SpecifierKind Kind
8842 = (NestedNameSpecifier::SpecifierKind)Record[Idx++];
8843 switch (Kind) {
8844 case NestedNameSpecifier::Identifier: {
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008845 IdentifierInfo *II = GetIdentifierInfo(F, Record, Idx);
Guy Benyei11169dd2012-12-18 14:30:41 +00008846 SourceRange Range = ReadSourceRange(F, Record, Idx);
8847 Builder.Extend(Context, II, Range.getBegin(), Range.getEnd());
8848 break;
8849 }
8850
8851 case NestedNameSpecifier::Namespace: {
8852 NamespaceDecl *NS = ReadDeclAs<NamespaceDecl>(F, Record, Idx);
8853 SourceRange Range = ReadSourceRange(F, Record, Idx);
8854 Builder.Extend(Context, NS, Range.getBegin(), Range.getEnd());
8855 break;
8856 }
8857
8858 case NestedNameSpecifier::NamespaceAlias: {
8859 NamespaceAliasDecl *Alias =ReadDeclAs<NamespaceAliasDecl>(F, Record, Idx);
8860 SourceRange Range = ReadSourceRange(F, Record, Idx);
8861 Builder.Extend(Context, Alias, Range.getBegin(), Range.getEnd());
8862 break;
8863 }
8864
8865 case NestedNameSpecifier::TypeSpec:
8866 case NestedNameSpecifier::TypeSpecWithTemplate: {
8867 bool Template = Record[Idx++];
8868 TypeSourceInfo *T = GetTypeSourceInfo(F, Record, Idx);
8869 if (!T)
8870 return NestedNameSpecifierLoc();
8871 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
8872
8873 // FIXME: 'template' keyword location not saved anywhere, so we fake it.
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008874 Builder.Extend(Context,
Guy Benyei11169dd2012-12-18 14:30:41 +00008875 Template? T->getTypeLoc().getBeginLoc() : SourceLocation(),
8876 T->getTypeLoc(), ColonColonLoc);
8877 break;
8878 }
8879
8880 case NestedNameSpecifier::Global: {
8881 SourceLocation ColonColonLoc = ReadSourceLocation(F, Record, Idx);
8882 Builder.MakeGlobal(Context, ColonColonLoc);
8883 break;
8884 }
Nikola Smiljanic67860242014-09-26 00:28:20 +00008885
8886 case NestedNameSpecifier::Super: {
8887 CXXRecordDecl *RD = ReadDeclAs<CXXRecordDecl>(F, Record, Idx);
8888 SourceRange Range = ReadSourceRange(F, Record, Idx);
8889 Builder.MakeSuper(Context, RD, Range.getBegin(), Range.getEnd());
8890 break;
8891 }
Guy Benyei11169dd2012-12-18 14:30:41 +00008892 }
8893 }
Nikola Smiljanic67860242014-09-26 00:28:20 +00008894
Guy Benyei11169dd2012-12-18 14:30:41 +00008895 return Builder.getWithLocInContext(Context);
8896}
8897
8898SourceRange
8899ASTReader::ReadSourceRange(ModuleFile &F, const RecordData &Record,
8900 unsigned &Idx) {
8901 SourceLocation beg = ReadSourceLocation(F, Record, Idx);
8902 SourceLocation end = ReadSourceLocation(F, Record, Idx);
8903 return SourceRange(beg, end);
8904}
8905
8906/// \brief Read an integral value
8907llvm::APInt ASTReader::ReadAPInt(const RecordData &Record, unsigned &Idx) {
8908 unsigned BitWidth = Record[Idx++];
8909 unsigned NumWords = llvm::APInt::getNumWords(BitWidth);
8910 llvm::APInt Result(BitWidth, NumWords, &Record[Idx]);
8911 Idx += NumWords;
8912 return Result;
8913}
8914
8915/// \brief Read a signed integral value
8916llvm::APSInt ASTReader::ReadAPSInt(const RecordData &Record, unsigned &Idx) {
8917 bool isUnsigned = Record[Idx++];
8918 return llvm::APSInt(ReadAPInt(Record, Idx), isUnsigned);
8919}
8920
8921/// \brief Read a floating-point value
Tim Northover178723a2013-01-22 09:46:51 +00008922llvm::APFloat ASTReader::ReadAPFloat(const RecordData &Record,
8923 const llvm::fltSemantics &Sem,
8924 unsigned &Idx) {
8925 return llvm::APFloat(Sem, ReadAPInt(Record, Idx));
Guy Benyei11169dd2012-12-18 14:30:41 +00008926}
8927
8928// \brief Read a string
8929std::string ASTReader::ReadString(const RecordData &Record, unsigned &Idx) {
8930 unsigned Len = Record[Idx++];
8931 std::string Result(Record.data() + Idx, Record.data() + Idx + Len);
8932 Idx += Len;
8933 return Result;
8934}
8935
Richard Smith7ed1bc92014-12-05 22:42:13 +00008936std::string ASTReader::ReadPath(ModuleFile &F, const RecordData &Record,
8937 unsigned &Idx) {
8938 std::string Filename = ReadString(Record, Idx);
8939 ResolveImportedPath(F, Filename);
8940 return Filename;
8941}
8942
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008943VersionTuple ASTReader::ReadVersionTuple(const RecordData &Record,
Guy Benyei11169dd2012-12-18 14:30:41 +00008944 unsigned &Idx) {
8945 unsigned Major = Record[Idx++];
8946 unsigned Minor = Record[Idx++];
8947 unsigned Subminor = Record[Idx++];
8948 if (Minor == 0)
8949 return VersionTuple(Major);
8950 if (Subminor == 0)
8951 return VersionTuple(Major, Minor - 1);
8952 return VersionTuple(Major, Minor - 1, Subminor - 1);
8953}
8954
David L. Jonesc4808b9e2016-12-15 20:53:26 +00008955CXXTemporary *ASTReader::ReadCXXTemporary(ModuleFile &F,
Guy Benyei11169dd2012-12-18 14:30:41 +00008956 const RecordData &Record,
8957 unsigned &Idx) {
8958 CXXDestructorDecl *Decl = ReadDeclAs<CXXDestructorDecl>(F, Record, Idx);
Richard Smithdbafb6c2017-06-29 23:23:46 +00008959 return CXXTemporary::Create(getContext(), Decl);
Guy Benyei11169dd2012-12-18 14:30:41 +00008960}
8961
Richard Smith37a93df2017-02-18 00:32:02 +00008962DiagnosticBuilder ASTReader::Diag(unsigned DiagID) const {
Argyrios Kyrtzidisdc9fdaf2013-05-24 05:44:08 +00008963 return Diag(CurrentImportLoc, DiagID);
Guy Benyei11169dd2012-12-18 14:30:41 +00008964}
8965
Richard Smith37a93df2017-02-18 00:32:02 +00008966DiagnosticBuilder ASTReader::Diag(SourceLocation Loc, unsigned DiagID) const {
Guy Benyei11169dd2012-12-18 14:30:41 +00008967 return Diags.Report(Loc, DiagID);
8968}
8969
8970/// \brief Retrieve the identifier table associated with the
8971/// preprocessor.
8972IdentifierTable &ASTReader::getIdentifierTable() {
8973 return PP.getIdentifierTable();
8974}
8975
8976/// \brief Record that the given ID maps to the given switch-case
8977/// statement.
8978void ASTReader::RecordSwitchCaseID(SwitchCase *SC, unsigned ID) {
Craig Toppera13603a2014-05-22 05:54:18 +00008979 assert((*CurrSwitchCaseStmts)[ID] == nullptr &&
Guy Benyei11169dd2012-12-18 14:30:41 +00008980 "Already have a SwitchCase with this ID");
8981 (*CurrSwitchCaseStmts)[ID] = SC;
8982}
8983
8984/// \brief Retrieve the switch-case statement with the given ID.
8985SwitchCase *ASTReader::getSwitchCaseWithID(unsigned ID) {
Craig Toppera13603a2014-05-22 05:54:18 +00008986 assert((*CurrSwitchCaseStmts)[ID] != nullptr && "No SwitchCase with this ID");
Guy Benyei11169dd2012-12-18 14:30:41 +00008987 return (*CurrSwitchCaseStmts)[ID];
8988}
8989
8990void ASTReader::ClearSwitchCaseIDs() {
8991 CurrSwitchCaseStmts->clear();
8992}
8993
8994void ASTReader::ReadComments() {
Richard Smithdbafb6c2017-06-29 23:23:46 +00008995 ASTContext &Context = getContext();
Guy Benyei11169dd2012-12-18 14:30:41 +00008996 std::vector<RawComment *> Comments;
Chris Lattner7fb3bef2013-01-20 00:56:42 +00008997 for (SmallVectorImpl<std::pair<BitstreamCursor,
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00008998 serialization::ModuleFile *>>::iterator
Guy Benyei11169dd2012-12-18 14:30:41 +00008999 I = CommentsCursors.begin(),
9000 E = CommentsCursors.end();
9001 I != E; ++I) {
Dmitri Gribenko9ee0e302014-03-27 15:40:39 +00009002 Comments.clear();
Chris Lattner7fb3bef2013-01-20 00:56:42 +00009003 BitstreamCursor &Cursor = I->first;
Guy Benyei11169dd2012-12-18 14:30:41 +00009004 serialization::ModuleFile &F = *I->second;
9005 SavedStreamPosition SavedPosition(Cursor);
9006
9007 RecordData Record;
9008 while (true) {
Chris Lattner7fb3bef2013-01-20 00:56:42 +00009009 llvm::BitstreamEntry Entry =
9010 Cursor.advanceSkippingSubblocks(BitstreamCursor::AF_DontPopBlockAtEnd);
Dmitri Gribenko9ee0e302014-03-27 15:40:39 +00009011
Chris Lattner7fb3bef2013-01-20 00:56:42 +00009012 switch (Entry.Kind) {
9013 case llvm::BitstreamEntry::SubBlock: // Handled for us already.
9014 case llvm::BitstreamEntry::Error:
9015 Error("malformed block record in AST file");
9016 return;
9017 case llvm::BitstreamEntry::EndBlock:
9018 goto NextCursor;
9019 case llvm::BitstreamEntry::Record:
9020 // The interesting case.
Guy Benyei11169dd2012-12-18 14:30:41 +00009021 break;
Guy Benyei11169dd2012-12-18 14:30:41 +00009022 }
9023
9024 // Read a record.
9025 Record.clear();
Chris Lattner0e6c9402013-01-20 02:38:54 +00009026 switch ((CommentRecordTypes)Cursor.readRecord(Entry.ID, Record)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00009027 case COMMENTS_RAW_COMMENT: {
9028 unsigned Idx = 0;
9029 SourceRange SR = ReadSourceRange(F, Record, Idx);
9030 RawComment::CommentKind Kind =
9031 (RawComment::CommentKind) Record[Idx++];
9032 bool IsTrailingComment = Record[Idx++];
9033 bool IsAlmostTrailingComment = Record[Idx++];
Dmitri Gribenkoa7d16ce2013-04-10 15:35:17 +00009034 Comments.push_back(new (Context) RawComment(
9035 SR, Kind, IsTrailingComment, IsAlmostTrailingComment,
9036 Context.getLangOpts().CommentOpts.ParseAllComments));
Guy Benyei11169dd2012-12-18 14:30:41 +00009037 break;
9038 }
9039 }
9040 }
Dmitri Gribenko9ee0e302014-03-27 15:40:39 +00009041 NextCursor:
Bruno Cardoso Lopesc23af572016-12-19 21:06:06 +00009042 // De-serialized SourceLocations get negative FileIDs for other modules,
9043 // potentially invalidating the original order. Sort it again.
9044 std::sort(Comments.begin(), Comments.end(),
9045 BeforeThanCompare<RawComment>(SourceMgr));
Dmitri Gribenko9ee0e302014-03-27 15:40:39 +00009046 Context.Comments.addDeserializedComments(Comments);
Guy Benyei11169dd2012-12-18 14:30:41 +00009047 }
Guy Benyei11169dd2012-12-18 14:30:41 +00009048}
9049
Argyrios Kyrtzidisa38cb202017-01-30 06:05:58 +00009050void ASTReader::visitInputFiles(serialization::ModuleFile &MF,
9051 bool IncludeSystem, bool Complain,
9052 llvm::function_ref<void(const serialization::InputFile &IF,
9053 bool isSystem)> Visitor) {
9054 unsigned NumUserInputs = MF.NumUserInputFiles;
9055 unsigned NumInputs = MF.InputFilesLoaded.size();
9056 assert(NumUserInputs <= NumInputs);
9057 unsigned N = IncludeSystem ? NumInputs : NumUserInputs;
9058 for (unsigned I = 0; I < N; ++I) {
9059 bool IsSystem = I >= NumUserInputs;
9060 InputFile IF = getInputFile(MF, I+1, Complain);
9061 Visitor(IF, IsSystem);
9062 }
9063}
9064
Richard Smithf3f84612017-06-29 02:19:42 +00009065void ASTReader::visitTopLevelModuleMaps(
9066 serialization::ModuleFile &MF,
9067 llvm::function_ref<void(const FileEntry *FE)> Visitor) {
9068 unsigned NumInputs = MF.InputFilesLoaded.size();
9069 for (unsigned I = 0; I < NumInputs; ++I) {
9070 InputFileInfo IFI = readInputFileInfo(MF, I + 1);
9071 if (IFI.TopLevelModuleMap)
9072 // FIXME: This unnecessarily re-reads the InputFileInfo.
9073 if (auto *FE = getInputFile(MF, I + 1).getFile())
9074 Visitor(FE);
9075 }
9076}
9077
Richard Smithcd45dbc2014-04-19 03:48:30 +00009078std::string ASTReader::getOwningModuleNameForDiagnostic(const Decl *D) {
9079 // If we know the owning module, use it.
Richard Smith42413142015-05-15 20:05:43 +00009080 if (Module *M = D->getImportedOwningModule())
Richard Smithcd45dbc2014-04-19 03:48:30 +00009081 return M->getFullModuleName();
9082
9083 // Otherwise, use the name of the top-level module the decl is within.
9084 if (ModuleFile *M = getOwningModuleFile(D))
9085 return M->ModuleName;
9086
9087 // Not from a module.
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00009088 return {};
Richard Smithcd45dbc2014-04-19 03:48:30 +00009089}
9090
Guy Benyei11169dd2012-12-18 14:30:41 +00009091void ASTReader::finishPendingActions() {
Richard Smith851072e2014-05-19 20:59:20 +00009092 while (!PendingIdentifierInfos.empty() ||
9093 !PendingIncompleteDeclChains.empty() || !PendingDeclChains.empty() ||
Richard Smith2b9e3e32013-10-18 06:05:18 +00009094 !PendingMacroIDs.empty() || !PendingDeclContextInfos.empty() ||
Richard Smitha0ce9c42014-07-29 23:23:27 +00009095 !PendingUpdateRecords.empty()) {
Guy Benyei11169dd2012-12-18 14:30:41 +00009096 // If any identifiers with corresponding top-level declarations have
9097 // been loaded, load those declarations now.
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +00009098 using TopLevelDeclsMap =
9099 llvm::DenseMap<IdentifierInfo *, SmallVector<Decl *, 2>>;
Craig Topper79be4cd2013-07-05 04:33:53 +00009100 TopLevelDeclsMap TopLevelDecls;
9101
Guy Benyei11169dd2012-12-18 14:30:41 +00009102 while (!PendingIdentifierInfos.empty()) {
Douglas Gregor6168bd22013-02-18 15:53:43 +00009103 IdentifierInfo *II = PendingIdentifierInfos.back().first;
Richard Smithf0ae3c2d2014-03-28 17:31:23 +00009104 SmallVector<uint32_t, 4> DeclIDs =
9105 std::move(PendingIdentifierInfos.back().second);
Douglas Gregorcb15f082013-02-19 18:26:28 +00009106 PendingIdentifierInfos.pop_back();
Douglas Gregor6168bd22013-02-18 15:53:43 +00009107
9108 SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]);
Guy Benyei11169dd2012-12-18 14:30:41 +00009109 }
Richard Smithf0ae3c2d2014-03-28 17:31:23 +00009110
Richard Smith851072e2014-05-19 20:59:20 +00009111 // For each decl chain that we wanted to complete while deserializing, mark
9112 // it as "still needs to be completed".
9113 for (unsigned I = 0; I != PendingIncompleteDeclChains.size(); ++I) {
9114 markIncompleteDeclChain(PendingIncompleteDeclChains[I]);
9115 }
9116 PendingIncompleteDeclChains.clear();
9117
Guy Benyei11169dd2012-12-18 14:30:41 +00009118 // Load pending declaration chains.
Richard Smithd8a83712015-08-22 01:47:18 +00009119 for (unsigned I = 0; I != PendingDeclChains.size(); ++I)
Richard Smithd61d4ac2015-08-22 20:13:39 +00009120 loadPendingDeclChain(PendingDeclChains[I].first, PendingDeclChains[I].second);
Guy Benyei11169dd2012-12-18 14:30:41 +00009121 PendingDeclChains.clear();
9122
Douglas Gregor6168bd22013-02-18 15:53:43 +00009123 // Make the most recent of the top-level declarations visible.
Craig Topper79be4cd2013-07-05 04:33:53 +00009124 for (TopLevelDeclsMap::iterator TLD = TopLevelDecls.begin(),
9125 TLDEnd = TopLevelDecls.end(); TLD != TLDEnd; ++TLD) {
Douglas Gregor6168bd22013-02-18 15:53:43 +00009126 IdentifierInfo *II = TLD->first;
9127 for (unsigned I = 0, N = TLD->second.size(); I != N; ++I) {
Argyrios Kyrtzidise5edbf92013-04-26 21:33:35 +00009128 pushExternalDeclIntoScope(cast<NamedDecl>(TLD->second[I]), II);
Douglas Gregor6168bd22013-02-18 15:53:43 +00009129 }
9130 }
9131
Guy Benyei11169dd2012-12-18 14:30:41 +00009132 // Load any pending macro definitions.
9133 for (unsigned I = 0; I != PendingMacroIDs.size(); ++I) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00009134 IdentifierInfo *II = PendingMacroIDs.begin()[I].first;
9135 SmallVector<PendingMacroInfo, 2> GlobalIDs;
9136 GlobalIDs.swap(PendingMacroIDs.begin()[I].second);
9137 // Initialize the macro history from chained-PCHs ahead of module imports.
Richard Smith49f906a2014-03-01 00:08:04 +00009138 for (unsigned IDIdx = 0, NumIDs = GlobalIDs.size(); IDIdx != NumIDs;
Argyrios Kyrtzidis719736c2013-01-19 03:14:56 +00009139 ++IDIdx) {
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00009140 const PendingMacroInfo &Info = GlobalIDs[IDIdx];
Manman Ren11f2a472016-08-18 17:42:15 +00009141 if (!Info.M->isModule())
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00009142 resolvePendingMacro(II, Info);
9143 }
9144 // Handle module imports.
Richard Smith49f906a2014-03-01 00:08:04 +00009145 for (unsigned IDIdx = 0, NumIDs = GlobalIDs.size(); IDIdx != NumIDs;
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00009146 ++IDIdx) {
9147 const PendingMacroInfo &Info = GlobalIDs[IDIdx];
Manman Ren11f2a472016-08-18 17:42:15 +00009148 if (Info.M->isModule())
Argyrios Kyrtzidiseb663da2013-03-22 21:12:57 +00009149 resolvePendingMacro(II, Info);
Guy Benyei11169dd2012-12-18 14:30:41 +00009150 }
9151 }
9152 PendingMacroIDs.clear();
Argyrios Kyrtzidis83a6e3b2013-02-16 00:48:59 +00009153
9154 // Wire up the DeclContexts for Decls that we delayed setting until
9155 // recursive loading is completed.
9156 while (!PendingDeclContextInfos.empty()) {
9157 PendingDeclContextInfo Info = PendingDeclContextInfos.front();
9158 PendingDeclContextInfos.pop_front();
9159 DeclContext *SemaDC = cast<DeclContext>(GetDecl(Info.SemaDC));
9160 DeclContext *LexicalDC = cast<DeclContext>(GetDecl(Info.LexicalDC));
9161 Info.D->setDeclContextsImpl(SemaDC, LexicalDC, getContext());
9162 }
Richard Smith2b9e3e32013-10-18 06:05:18 +00009163
Richard Smithd1c46742014-04-30 02:24:17 +00009164 // Perform any pending declaration updates.
Richard Smithd6db68c2014-08-07 20:58:41 +00009165 while (!PendingUpdateRecords.empty()) {
Richard Smithd1c46742014-04-30 02:24:17 +00009166 auto Update = PendingUpdateRecords.pop_back_val();
9167 ReadingKindTracker ReadingKind(Read_Decl, *this);
Vassil Vassilev74c3e8c2017-05-19 16:46:06 +00009168 loadDeclUpdateRecords(Update);
Richard Smithd1c46742014-04-30 02:24:17 +00009169 }
Guy Benyei11169dd2012-12-18 14:30:41 +00009170 }
Richard Smith8a639892015-01-24 01:07:20 +00009171
9172 // At this point, all update records for loaded decls are in place, so any
9173 // fake class definitions should have become real.
9174 assert(PendingFakeDefinitionData.empty() &&
9175 "faked up a class definition but never saw the real one");
9176
Guy Benyei11169dd2012-12-18 14:30:41 +00009177 // If we deserialized any C++ or Objective-C class definitions, any
9178 // Objective-C protocol definitions, or any redeclarable templates, make sure
David L. Jonesc4808b9e2016-12-15 20:53:26 +00009179 // that all redeclarations point to the definitions. Note that this can only
Guy Benyei11169dd2012-12-18 14:30:41 +00009180 // happen now, after the redeclaration chains have been fully wired.
Craig Topperc6914d02014-08-25 04:15:02 +00009181 for (Decl *D : PendingDefinitions) {
9182 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
Richard Smith5b21db82014-04-23 18:20:42 +00009183 if (const TagType *TagT = dyn_cast<TagType>(TD->getTypeForDecl())) {
Guy Benyei11169dd2012-12-18 14:30:41 +00009184 // Make sure that the TagType points at the definition.
9185 const_cast<TagType*>(TagT)->decl = TD;
9186 }
Richard Smith8ce51082015-03-11 01:44:51 +00009187
Craig Topperc6914d02014-08-25 04:15:02 +00009188 if (auto RD = dyn_cast<CXXRecordDecl>(D)) {
Richard Smith8ce51082015-03-11 01:44:51 +00009189 for (auto *R = getMostRecentExistingDecl(RD); R;
9190 R = R->getPreviousDecl()) {
9191 assert((R == D) ==
9192 cast<CXXRecordDecl>(R)->isThisDeclarationADefinition() &&
Richard Smith2c381642014-08-27 23:11:59 +00009193 "declaration thinks it's the definition but it isn't");
Aaron Ballman86c93902014-03-06 23:45:36 +00009194 cast<CXXRecordDecl>(R)->DefinitionData = RD->DefinitionData;
Richard Smith2c381642014-08-27 23:11:59 +00009195 }
Guy Benyei11169dd2012-12-18 14:30:41 +00009196 }
9197
9198 continue;
9199 }
Richard Smith8ce51082015-03-11 01:44:51 +00009200
Craig Topperc6914d02014-08-25 04:15:02 +00009201 if (auto ID = dyn_cast<ObjCInterfaceDecl>(D)) {
Guy Benyei11169dd2012-12-18 14:30:41 +00009202 // Make sure that the ObjCInterfaceType points at the definition.
9203 const_cast<ObjCInterfaceType *>(cast<ObjCInterfaceType>(ID->TypeForDecl))
9204 ->Decl = ID;
Richard Smith8ce51082015-03-11 01:44:51 +00009205
9206 for (auto *R = getMostRecentExistingDecl(ID); R; R = R->getPreviousDecl())
9207 cast<ObjCInterfaceDecl>(R)->Data = ID->Data;
9208
Guy Benyei11169dd2012-12-18 14:30:41 +00009209 continue;
9210 }
Richard Smith8ce51082015-03-11 01:44:51 +00009211
Craig Topperc6914d02014-08-25 04:15:02 +00009212 if (auto PD = dyn_cast<ObjCProtocolDecl>(D)) {
Richard Smith8ce51082015-03-11 01:44:51 +00009213 for (auto *R = getMostRecentExistingDecl(PD); R; R = R->getPreviousDecl())
9214 cast<ObjCProtocolDecl>(R)->Data = PD->Data;
9215
Guy Benyei11169dd2012-12-18 14:30:41 +00009216 continue;
9217 }
Richard Smith8ce51082015-03-11 01:44:51 +00009218
Craig Topperc6914d02014-08-25 04:15:02 +00009219 auto RTD = cast<RedeclarableTemplateDecl>(D)->getCanonicalDecl();
Richard Smith8ce51082015-03-11 01:44:51 +00009220 for (auto *R = getMostRecentExistingDecl(RTD); R; R = R->getPreviousDecl())
9221 cast<RedeclarableTemplateDecl>(R)->Common = RTD->Common;
Guy Benyei11169dd2012-12-18 14:30:41 +00009222 }
9223 PendingDefinitions.clear();
9224
Daniel Jasper4a6d5b72017-10-11 07:47:54 +00009225 // Load the bodies of any functions or methods we've encountered. We do
9226 // this now (delayed) so that we can be sure that the declaration chains
9227 // have been fully wired up (hasBody relies on this).
9228 // FIXME: We shouldn't require complete redeclaration chains here.
9229 for (PendingBodiesMap::iterator PB = PendingBodies.begin(),
9230 PBEnd = PendingBodies.end();
9231 PB != PBEnd; ++PB) {
9232 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(PB->first)) {
9233 // FIXME: Check for =delete/=default?
9234 // FIXME: Complain about ODR violations here?
9235 const FunctionDecl *Defn = nullptr;
9236 if (!getContext().getLangOpts().Modules || !FD->hasBody(Defn)) {
9237 FD->setLazyBody(PB->second);
Richard Trieue6caa262017-12-23 00:41:01 +00009238 } else {
9239 auto *NonConstDefn = const_cast<FunctionDecl*>(Defn);
9240 mergeDefinitionVisibility(NonConstDefn, FD);
9241
9242 if (!FD->isLateTemplateParsed() &&
9243 !NonConstDefn->isLateTemplateParsed() &&
9244 FD->getODRHash() != NonConstDefn->getODRHash()) {
9245 PendingFunctionOdrMergeFailures[FD].push_back(NonConstDefn);
9246 }
9247 }
Daniel Jasper4a6d5b72017-10-11 07:47:54 +00009248 continue;
9249 }
9250
9251 ObjCMethodDecl *MD = cast<ObjCMethodDecl>(PB->first);
9252 if (!getContext().getLangOpts().Modules || !MD->hasBody())
9253 MD->setLazyBody(PB->second);
9254 }
9255 PendingBodies.clear();
9256
Richard Smith42413142015-05-15 20:05:43 +00009257 // Do some cleanup.
9258 for (auto *ND : PendingMergedDefinitionsToDeduplicate)
9259 getContext().deduplicateMergedDefinitonsFor(ND);
9260 PendingMergedDefinitionsToDeduplicate.clear();
Richard Smitha0ce9c42014-07-29 23:23:27 +00009261}
9262
9263void ASTReader::diagnoseOdrViolations() {
Richard Trieue6caa262017-12-23 00:41:01 +00009264 if (PendingOdrMergeFailures.empty() && PendingOdrMergeChecks.empty() &&
9265 PendingFunctionOdrMergeFailures.empty())
Richard Smithbb853c72014-08-13 01:23:33 +00009266 return;
9267
Richard Smitha0ce9c42014-07-29 23:23:27 +00009268 // Trigger the import of the full definition of each class that had any
9269 // odr-merging problems, so we can produce better diagnostics for them.
Richard Smithbb853c72014-08-13 01:23:33 +00009270 // These updates may in turn find and diagnose some ODR failures, so take
9271 // ownership of the set first.
9272 auto OdrMergeFailures = std::move(PendingOdrMergeFailures);
9273 PendingOdrMergeFailures.clear();
9274 for (auto &Merge : OdrMergeFailures) {
Richard Smitha0ce9c42014-07-29 23:23:27 +00009275 Merge.first->buildLookup();
9276 Merge.first->decls_begin();
9277 Merge.first->bases_begin();
9278 Merge.first->vbases_begin();
Richard Trieue13eabe2017-09-30 02:19:17 +00009279 for (auto &RecordPair : Merge.second) {
9280 auto *RD = RecordPair.first;
Richard Smitha0ce9c42014-07-29 23:23:27 +00009281 RD->decls_begin();
9282 RD->bases_begin();
9283 RD->vbases_begin();
9284 }
9285 }
9286
Richard Trieue6caa262017-12-23 00:41:01 +00009287 // Trigger the import of functions.
9288 auto FunctionOdrMergeFailures = std::move(PendingFunctionOdrMergeFailures);
9289 PendingFunctionOdrMergeFailures.clear();
9290 for (auto &Merge : FunctionOdrMergeFailures) {
9291 Merge.first->buildLookup();
9292 Merge.first->decls_begin();
9293 Merge.first->getBody();
9294 for (auto &FD : Merge.second) {
9295 FD->buildLookup();
9296 FD->decls_begin();
9297 FD->getBody();
9298 }
9299 }
9300
Richard Smitha0ce9c42014-07-29 23:23:27 +00009301 // For each declaration from a merged context, check that the canonical
9302 // definition of that context also contains a declaration of the same
9303 // entity.
9304 //
9305 // Caution: this loop does things that might invalidate iterators into
9306 // PendingOdrMergeChecks. Don't turn this into a range-based for loop!
9307 while (!PendingOdrMergeChecks.empty()) {
9308 NamedDecl *D = PendingOdrMergeChecks.pop_back_val();
9309
9310 // FIXME: Skip over implicit declarations for now. This matters for things
9311 // like implicitly-declared special member functions. This isn't entirely
9312 // correct; we can end up with multiple unmerged declarations of the same
9313 // implicit entity.
9314 if (D->isImplicit())
9315 continue;
9316
9317 DeclContext *CanonDef = D->getDeclContext();
Richard Smitha0ce9c42014-07-29 23:23:27 +00009318
9319 bool Found = false;
9320 const Decl *DCanon = D->getCanonicalDecl();
9321
Richard Smith01bdb7a2014-08-28 05:44:07 +00009322 for (auto RI : D->redecls()) {
9323 if (RI->getLexicalDeclContext() == CanonDef) {
9324 Found = true;
9325 break;
9326 }
9327 }
9328 if (Found)
9329 continue;
9330
Richard Smith0f4e2c42015-08-06 04:23:48 +00009331 // Quick check failed, time to do the slow thing. Note, we can't just
9332 // look up the name of D in CanonDef here, because the member that is
9333 // in CanonDef might not be found by name lookup (it might have been
9334 // replaced by a more recent declaration in the lookup table), and we
9335 // can't necessarily find it in the redeclaration chain because it might
9336 // be merely mergeable, not redeclarable.
Richard Smitha0ce9c42014-07-29 23:23:27 +00009337 llvm::SmallVector<const NamedDecl*, 4> Candidates;
Richard Smith0f4e2c42015-08-06 04:23:48 +00009338 for (auto *CanonMember : CanonDef->decls()) {
9339 if (CanonMember->getCanonicalDecl() == DCanon) {
9340 // This can happen if the declaration is merely mergeable and not
9341 // actually redeclarable (we looked for redeclarations earlier).
9342 //
9343 // FIXME: We should be able to detect this more efficiently, without
9344 // pulling in all of the members of CanonDef.
9345 Found = true;
9346 break;
Richard Smitha0ce9c42014-07-29 23:23:27 +00009347 }
Richard Smith0f4e2c42015-08-06 04:23:48 +00009348 if (auto *ND = dyn_cast<NamedDecl>(CanonMember))
9349 if (ND->getDeclName() == D->getDeclName())
9350 Candidates.push_back(ND);
Richard Smitha0ce9c42014-07-29 23:23:27 +00009351 }
9352
9353 if (!Found) {
Richard Smithd08aeb62014-08-28 01:33:39 +00009354 // The AST doesn't like TagDecls becoming invalid after they've been
9355 // completed. We only really need to mark FieldDecls as invalid here.
9356 if (!isa<TagDecl>(D))
9357 D->setInvalidDecl();
David L. Jonesc4808b9e2016-12-15 20:53:26 +00009358
Richard Smith4ab3dbd2015-02-13 22:43:51 +00009359 // Ensure we don't accidentally recursively enter deserialization while
9360 // we're producing our diagnostic.
9361 Deserializing RecursionGuard(this);
Richard Smitha0ce9c42014-07-29 23:23:27 +00009362
9363 std::string CanonDefModule =
9364 getOwningModuleNameForDiagnostic(cast<Decl>(CanonDef));
9365 Diag(D->getLocation(), diag::err_module_odr_violation_missing_decl)
9366 << D << getOwningModuleNameForDiagnostic(D)
9367 << CanonDef << CanonDefModule.empty() << CanonDefModule;
9368
9369 if (Candidates.empty())
9370 Diag(cast<Decl>(CanonDef)->getLocation(),
9371 diag::note_module_odr_violation_no_possible_decls) << D;
9372 else {
9373 for (unsigned I = 0, N = Candidates.size(); I != N; ++I)
9374 Diag(Candidates[I]->getLocation(),
9375 diag::note_module_odr_violation_possible_decl)
9376 << Candidates[I];
9377 }
9378
9379 DiagnosedOdrMergeFailures.insert(CanonDef);
9380 }
9381 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00009382
Richard Trieue6caa262017-12-23 00:41:01 +00009383 if (OdrMergeFailures.empty() && FunctionOdrMergeFailures.empty())
Richard Smith4ab3dbd2015-02-13 22:43:51 +00009384 return;
9385
9386 // Ensure we don't accidentally recursively enter deserialization while
9387 // we're producing our diagnostics.
9388 Deserializing RecursionGuard(this);
9389
Richard Trieue6caa262017-12-23 00:41:01 +00009390 // Common code for hashing helpers.
9391 ODRHash Hash;
9392 auto ComputeQualTypeODRHash = [&Hash](QualType Ty) {
9393 Hash.clear();
9394 Hash.AddQualType(Ty);
9395 return Hash.CalculateHash();
9396 };
9397
9398 auto ComputeODRHash = [&Hash](const Stmt *S) {
9399 assert(S);
9400 Hash.clear();
9401 Hash.AddStmt(S);
9402 return Hash.CalculateHash();
9403 };
9404
9405 auto ComputeSubDeclODRHash = [&Hash](const Decl *D) {
9406 assert(D);
9407 Hash.clear();
9408 Hash.AddSubDecl(D);
9409 return Hash.CalculateHash();
9410 };
9411
Richard Smithcd45dbc2014-04-19 03:48:30 +00009412 // Issue any pending ODR-failure diagnostics.
Richard Smithbb853c72014-08-13 01:23:33 +00009413 for (auto &Merge : OdrMergeFailures) {
Richard Smitha0ce9c42014-07-29 23:23:27 +00009414 // If we've already pointed out a specific problem with this class, don't
9415 // bother issuing a general "something's different" diagnostic.
David Blaikie82e95a32014-11-19 07:49:47 +00009416 if (!DiagnosedOdrMergeFailures.insert(Merge.first).second)
Richard Smithcd45dbc2014-04-19 03:48:30 +00009417 continue;
9418
9419 bool Diagnosed = false;
Richard Trieue7f7ed22017-02-22 01:11:25 +00009420 CXXRecordDecl *FirstRecord = Merge.first;
9421 std::string FirstModule = getOwningModuleNameForDiagnostic(FirstRecord);
Richard Trieue13eabe2017-09-30 02:19:17 +00009422 for (auto &RecordPair : Merge.second) {
9423 CXXRecordDecl *SecondRecord = RecordPair.first;
Richard Smithcd45dbc2014-04-19 03:48:30 +00009424 // Multiple different declarations got merged together; tell the user
9425 // where they came from.
Richard Trieue7f7ed22017-02-22 01:11:25 +00009426 if (FirstRecord == SecondRecord)
9427 continue;
9428
9429 std::string SecondModule = getOwningModuleNameForDiagnostic(SecondRecord);
Richard Trieue13eabe2017-09-30 02:19:17 +00009430
9431 auto *FirstDD = FirstRecord->DefinitionData;
9432 auto *SecondDD = RecordPair.second;
9433
9434 assert(FirstDD && SecondDD && "Definitions without DefinitionData");
9435
9436 // Diagnostics from DefinitionData are emitted here.
9437 if (FirstDD != SecondDD) {
9438 enum ODRDefinitionDataDifference {
9439 NumBases,
9440 NumVBases,
9441 BaseType,
9442 BaseVirtual,
9443 BaseAccess,
9444 };
9445 auto ODRDiagError = [FirstRecord, &FirstModule,
9446 this](SourceLocation Loc, SourceRange Range,
9447 ODRDefinitionDataDifference DiffType) {
9448 return Diag(Loc, diag::err_module_odr_violation_definition_data)
9449 << FirstRecord << FirstModule.empty() << FirstModule << Range
9450 << DiffType;
9451 };
9452 auto ODRDiagNote = [&SecondModule,
9453 this](SourceLocation Loc, SourceRange Range,
9454 ODRDefinitionDataDifference DiffType) {
9455 return Diag(Loc, diag::note_module_odr_violation_definition_data)
9456 << SecondModule << Range << DiffType;
9457 };
9458
Richard Trieue13eabe2017-09-30 02:19:17 +00009459 unsigned FirstNumBases = FirstDD->NumBases;
9460 unsigned FirstNumVBases = FirstDD->NumVBases;
9461 unsigned SecondNumBases = SecondDD->NumBases;
9462 unsigned SecondNumVBases = SecondDD->NumVBases;
9463
9464 auto GetSourceRange = [](struct CXXRecordDecl::DefinitionData *DD) {
9465 unsigned NumBases = DD->NumBases;
9466 if (NumBases == 0) return SourceRange();
9467 auto bases = DD->bases();
9468 return SourceRange(bases[0].getLocStart(),
9469 bases[NumBases - 1].getLocEnd());
9470 };
9471
9472 if (FirstNumBases != SecondNumBases) {
9473 ODRDiagError(FirstRecord->getLocation(), GetSourceRange(FirstDD),
9474 NumBases)
9475 << FirstNumBases;
9476 ODRDiagNote(SecondRecord->getLocation(), GetSourceRange(SecondDD),
9477 NumBases)
9478 << SecondNumBases;
9479 Diagnosed = true;
9480 break;
9481 }
9482
9483 if (FirstNumVBases != SecondNumVBases) {
9484 ODRDiagError(FirstRecord->getLocation(), GetSourceRange(FirstDD),
9485 NumVBases)
9486 << FirstNumVBases;
9487 ODRDiagNote(SecondRecord->getLocation(), GetSourceRange(SecondDD),
9488 NumVBases)
9489 << SecondNumVBases;
9490 Diagnosed = true;
9491 break;
9492 }
9493
9494 auto FirstBases = FirstDD->bases();
9495 auto SecondBases = SecondDD->bases();
9496 unsigned i = 0;
9497 for (i = 0; i < FirstNumBases; ++i) {
9498 auto FirstBase = FirstBases[i];
9499 auto SecondBase = SecondBases[i];
9500 if (ComputeQualTypeODRHash(FirstBase.getType()) !=
9501 ComputeQualTypeODRHash(SecondBase.getType())) {
9502 ODRDiagError(FirstRecord->getLocation(), FirstBase.getSourceRange(),
9503 BaseType)
9504 << (i + 1) << FirstBase.getType();
9505 ODRDiagNote(SecondRecord->getLocation(),
9506 SecondBase.getSourceRange(), BaseType)
9507 << (i + 1) << SecondBase.getType();
9508 break;
9509 }
9510
9511 if (FirstBase.isVirtual() != SecondBase.isVirtual()) {
9512 ODRDiagError(FirstRecord->getLocation(), FirstBase.getSourceRange(),
9513 BaseVirtual)
9514 << (i + 1) << FirstBase.isVirtual() << FirstBase.getType();
9515 ODRDiagNote(SecondRecord->getLocation(),
9516 SecondBase.getSourceRange(), BaseVirtual)
9517 << (i + 1) << SecondBase.isVirtual() << SecondBase.getType();
9518 break;
9519 }
9520
9521 if (FirstBase.getAccessSpecifierAsWritten() !=
9522 SecondBase.getAccessSpecifierAsWritten()) {
9523 ODRDiagError(FirstRecord->getLocation(), FirstBase.getSourceRange(),
9524 BaseAccess)
9525 << (i + 1) << FirstBase.getType()
9526 << (int)FirstBase.getAccessSpecifierAsWritten();
9527 ODRDiagNote(SecondRecord->getLocation(),
9528 SecondBase.getSourceRange(), BaseAccess)
9529 << (i + 1) << SecondBase.getType()
9530 << (int)SecondBase.getAccessSpecifierAsWritten();
9531 break;
9532 }
9533 }
9534
9535 if (i != FirstNumBases) {
9536 Diagnosed = true;
9537 break;
9538 }
9539 }
9540
Richard Trieue7f7ed22017-02-22 01:11:25 +00009541 using DeclHashes = llvm::SmallVector<std::pair<Decl *, unsigned>, 4>;
Richard Trieu498117b2017-08-23 02:43:59 +00009542
9543 const ClassTemplateDecl *FirstTemplate =
9544 FirstRecord->getDescribedClassTemplate();
9545 const ClassTemplateDecl *SecondTemplate =
9546 SecondRecord->getDescribedClassTemplate();
9547
9548 assert(!FirstTemplate == !SecondTemplate &&
9549 "Both pointers should be null or non-null");
9550
9551 enum ODRTemplateDifference {
9552 ParamEmptyName,
9553 ParamName,
9554 ParamSingleDefaultArgument,
9555 ParamDifferentDefaultArgument,
9556 };
9557
9558 if (FirstTemplate && SecondTemplate) {
9559 DeclHashes FirstTemplateHashes;
9560 DeclHashes SecondTemplateHashes;
Richard Trieu498117b2017-08-23 02:43:59 +00009561
9562 auto PopulateTemplateParameterHashs =
Richard Trieue6caa262017-12-23 00:41:01 +00009563 [&ComputeSubDeclODRHash](DeclHashes &Hashes,
9564 const ClassTemplateDecl *TD) {
Richard Trieu498117b2017-08-23 02:43:59 +00009565 for (auto *D : TD->getTemplateParameters()->asArray()) {
Richard Trieue6caa262017-12-23 00:41:01 +00009566 Hashes.emplace_back(D, ComputeSubDeclODRHash(D));
Richard Trieu498117b2017-08-23 02:43:59 +00009567 }
9568 };
9569
9570 PopulateTemplateParameterHashs(FirstTemplateHashes, FirstTemplate);
9571 PopulateTemplateParameterHashs(SecondTemplateHashes, SecondTemplate);
9572
9573 assert(FirstTemplateHashes.size() == SecondTemplateHashes.size() &&
9574 "Number of template parameters should be equal.");
9575
9576 auto FirstIt = FirstTemplateHashes.begin();
9577 auto FirstEnd = FirstTemplateHashes.end();
9578 auto SecondIt = SecondTemplateHashes.begin();
9579 for (; FirstIt != FirstEnd; ++FirstIt, ++SecondIt) {
9580 if (FirstIt->second == SecondIt->second)
9581 continue;
9582
9583 auto ODRDiagError = [FirstRecord, &FirstModule,
9584 this](SourceLocation Loc, SourceRange Range,
9585 ODRTemplateDifference DiffType) {
9586 return Diag(Loc, diag::err_module_odr_violation_template_parameter)
9587 << FirstRecord << FirstModule.empty() << FirstModule << Range
9588 << DiffType;
9589 };
9590 auto ODRDiagNote = [&SecondModule,
9591 this](SourceLocation Loc, SourceRange Range,
9592 ODRTemplateDifference DiffType) {
9593 return Diag(Loc, diag::note_module_odr_violation_template_parameter)
9594 << SecondModule << Range << DiffType;
9595 };
9596
9597 const NamedDecl* FirstDecl = cast<NamedDecl>(FirstIt->first);
9598 const NamedDecl* SecondDecl = cast<NamedDecl>(SecondIt->first);
9599
9600 assert(FirstDecl->getKind() == SecondDecl->getKind() &&
9601 "Parameter Decl's should be the same kind.");
9602
9603 DeclarationName FirstName = FirstDecl->getDeclName();
9604 DeclarationName SecondName = SecondDecl->getDeclName();
9605
9606 if (FirstName != SecondName) {
9607 const bool FirstNameEmpty =
9608 FirstName.isIdentifier() && !FirstName.getAsIdentifierInfo();
9609 const bool SecondNameEmpty =
9610 SecondName.isIdentifier() && !SecondName.getAsIdentifierInfo();
9611 assert((!FirstNameEmpty || !SecondNameEmpty) &&
9612 "Both template parameters cannot be unnamed.");
9613 ODRDiagError(FirstDecl->getLocation(), FirstDecl->getSourceRange(),
9614 FirstNameEmpty ? ParamEmptyName : ParamName)
9615 << FirstName;
9616 ODRDiagNote(SecondDecl->getLocation(), SecondDecl->getSourceRange(),
9617 SecondNameEmpty ? ParamEmptyName : ParamName)
9618 << SecondName;
9619 break;
9620 }
9621
9622 switch (FirstDecl->getKind()) {
9623 default:
9624 llvm_unreachable("Invalid template parameter type.");
9625 case Decl::TemplateTypeParm: {
9626 const auto *FirstParam = cast<TemplateTypeParmDecl>(FirstDecl);
9627 const auto *SecondParam = cast<TemplateTypeParmDecl>(SecondDecl);
9628 const bool HasFirstDefaultArgument =
9629 FirstParam->hasDefaultArgument() &&
9630 !FirstParam->defaultArgumentWasInherited();
9631 const bool HasSecondDefaultArgument =
9632 SecondParam->hasDefaultArgument() &&
9633 !SecondParam->defaultArgumentWasInherited();
9634
9635 if (HasFirstDefaultArgument != HasSecondDefaultArgument) {
9636 ODRDiagError(FirstDecl->getLocation(),
9637 FirstDecl->getSourceRange(),
9638 ParamSingleDefaultArgument)
9639 << HasFirstDefaultArgument;
9640 ODRDiagNote(SecondDecl->getLocation(),
9641 SecondDecl->getSourceRange(),
9642 ParamSingleDefaultArgument)
9643 << HasSecondDefaultArgument;
9644 break;
9645 }
9646
9647 assert(HasFirstDefaultArgument && HasSecondDefaultArgument &&
9648 "Expecting default arguments.");
9649
9650 ODRDiagError(FirstDecl->getLocation(), FirstDecl->getSourceRange(),
9651 ParamDifferentDefaultArgument);
9652 ODRDiagNote(SecondDecl->getLocation(), SecondDecl->getSourceRange(),
9653 ParamDifferentDefaultArgument);
9654
9655 break;
9656 }
9657 case Decl::NonTypeTemplateParm: {
9658 const auto *FirstParam = cast<NonTypeTemplateParmDecl>(FirstDecl);
9659 const auto *SecondParam = cast<NonTypeTemplateParmDecl>(SecondDecl);
9660 const bool HasFirstDefaultArgument =
9661 FirstParam->hasDefaultArgument() &&
9662 !FirstParam->defaultArgumentWasInherited();
9663 const bool HasSecondDefaultArgument =
9664 SecondParam->hasDefaultArgument() &&
9665 !SecondParam->defaultArgumentWasInherited();
9666
9667 if (HasFirstDefaultArgument != HasSecondDefaultArgument) {
9668 ODRDiagError(FirstDecl->getLocation(),
9669 FirstDecl->getSourceRange(),
9670 ParamSingleDefaultArgument)
9671 << HasFirstDefaultArgument;
9672 ODRDiagNote(SecondDecl->getLocation(),
9673 SecondDecl->getSourceRange(),
9674 ParamSingleDefaultArgument)
9675 << HasSecondDefaultArgument;
9676 break;
9677 }
9678
9679 assert(HasFirstDefaultArgument && HasSecondDefaultArgument &&
9680 "Expecting default arguments.");
9681
9682 ODRDiagError(FirstDecl->getLocation(), FirstDecl->getSourceRange(),
9683 ParamDifferentDefaultArgument);
9684 ODRDiagNote(SecondDecl->getLocation(), SecondDecl->getSourceRange(),
9685 ParamDifferentDefaultArgument);
9686
9687 break;
9688 }
9689 case Decl::TemplateTemplateParm: {
9690 const auto *FirstParam = cast<TemplateTemplateParmDecl>(FirstDecl);
9691 const auto *SecondParam =
9692 cast<TemplateTemplateParmDecl>(SecondDecl);
9693 const bool HasFirstDefaultArgument =
9694 FirstParam->hasDefaultArgument() &&
9695 !FirstParam->defaultArgumentWasInherited();
9696 const bool HasSecondDefaultArgument =
9697 SecondParam->hasDefaultArgument() &&
9698 !SecondParam->defaultArgumentWasInherited();
9699
9700 if (HasFirstDefaultArgument != HasSecondDefaultArgument) {
9701 ODRDiagError(FirstDecl->getLocation(),
9702 FirstDecl->getSourceRange(),
9703 ParamSingleDefaultArgument)
9704 << HasFirstDefaultArgument;
9705 ODRDiagNote(SecondDecl->getLocation(),
9706 SecondDecl->getSourceRange(),
9707 ParamSingleDefaultArgument)
9708 << HasSecondDefaultArgument;
9709 break;
9710 }
9711
9712 assert(HasFirstDefaultArgument && HasSecondDefaultArgument &&
9713 "Expecting default arguments.");
9714
9715 ODRDiagError(FirstDecl->getLocation(), FirstDecl->getSourceRange(),
9716 ParamDifferentDefaultArgument);
9717 ODRDiagNote(SecondDecl->getLocation(), SecondDecl->getSourceRange(),
9718 ParamDifferentDefaultArgument);
9719
9720 break;
9721 }
9722 }
9723
9724 break;
9725 }
9726
9727 if (FirstIt != FirstEnd) {
9728 Diagnosed = true;
9729 break;
9730 }
9731 }
9732
Richard Trieue7f7ed22017-02-22 01:11:25 +00009733 DeclHashes FirstHashes;
9734 DeclHashes SecondHashes;
Richard Trieue7f7ed22017-02-22 01:11:25 +00009735
Richard Trieue6caa262017-12-23 00:41:01 +00009736 auto PopulateHashes = [&ComputeSubDeclODRHash, FirstRecord](
9737 DeclHashes &Hashes, CXXRecordDecl *Record) {
Richard Trieue7f7ed22017-02-22 01:11:25 +00009738 for (auto *D : Record->decls()) {
9739 // Due to decl merging, the first CXXRecordDecl is the parent of
9740 // Decls in both records.
9741 if (!ODRHash::isWhitelistedDecl(D, FirstRecord))
9742 continue;
Richard Trieue6caa262017-12-23 00:41:01 +00009743 Hashes.emplace_back(D, ComputeSubDeclODRHash(D));
Richard Trieue7f7ed22017-02-22 01:11:25 +00009744 }
9745 };
9746 PopulateHashes(FirstHashes, FirstRecord);
9747 PopulateHashes(SecondHashes, SecondRecord);
9748
9749 // Used with err_module_odr_violation_mismatch_decl and
9750 // note_module_odr_violation_mismatch_decl
Richard Trieu11d566a2017-06-12 21:58:22 +00009751 // This list should be the same Decl's as in ODRHash::isWhiteListedDecl
Richard Trieue7f7ed22017-02-22 01:11:25 +00009752 enum {
9753 EndOfClass,
9754 PublicSpecifer,
9755 PrivateSpecifer,
9756 ProtectedSpecifer,
Richard Trieu639d7b62017-02-22 22:22:42 +00009757 StaticAssert,
Richard Trieud0786092017-02-23 00:23:01 +00009758 Field,
Richard Trieu48143742017-02-28 21:24:38 +00009759 CXXMethod,
Richard Trieu11d566a2017-06-12 21:58:22 +00009760 TypeAlias,
9761 TypeDef,
Richard Trieu6e13ff32017-06-16 02:44:29 +00009762 Var,
Richard Trieuac6a1b62017-07-08 02:04:42 +00009763 Friend,
Richard Trieue7f7ed22017-02-22 01:11:25 +00009764 Other
9765 } FirstDiffType = Other,
9766 SecondDiffType = Other;
9767
9768 auto DifferenceSelector = [](Decl *D) {
9769 assert(D && "valid Decl required");
9770 switch (D->getKind()) {
9771 default:
9772 return Other;
9773 case Decl::AccessSpec:
9774 switch (D->getAccess()) {
9775 case AS_public:
9776 return PublicSpecifer;
9777 case AS_private:
9778 return PrivateSpecifer;
9779 case AS_protected:
9780 return ProtectedSpecifer;
9781 case AS_none:
Simon Pilgrimeeb1b302017-02-22 13:21:24 +00009782 break;
Richard Trieue7f7ed22017-02-22 01:11:25 +00009783 }
Simon Pilgrimeeb1b302017-02-22 13:21:24 +00009784 llvm_unreachable("Invalid access specifier");
Richard Trieu639d7b62017-02-22 22:22:42 +00009785 case Decl::StaticAssert:
9786 return StaticAssert;
Richard Trieud0786092017-02-23 00:23:01 +00009787 case Decl::Field:
9788 return Field;
Richard Trieu48143742017-02-28 21:24:38 +00009789 case Decl::CXXMethod:
Richard Trieu1c71d512017-07-15 02:55:13 +00009790 case Decl::CXXConstructor:
9791 case Decl::CXXDestructor:
Richard Trieu48143742017-02-28 21:24:38 +00009792 return CXXMethod;
Richard Trieu11d566a2017-06-12 21:58:22 +00009793 case Decl::TypeAlias:
9794 return TypeAlias;
9795 case Decl::Typedef:
9796 return TypeDef;
Richard Trieu6e13ff32017-06-16 02:44:29 +00009797 case Decl::Var:
9798 return Var;
Richard Trieuac6a1b62017-07-08 02:04:42 +00009799 case Decl::Friend:
9800 return Friend;
Richard Trieue7f7ed22017-02-22 01:11:25 +00009801 }
9802 };
9803
9804 Decl *FirstDecl = nullptr;
9805 Decl *SecondDecl = nullptr;
9806 auto FirstIt = FirstHashes.begin();
9807 auto SecondIt = SecondHashes.begin();
9808
9809 // If there is a diagnoseable difference, FirstDiffType and
9810 // SecondDiffType will not be Other and FirstDecl and SecondDecl will be
9811 // filled in if not EndOfClass.
9812 while (FirstIt != FirstHashes.end() || SecondIt != SecondHashes.end()) {
Benjamin Kramer6f224d22017-02-22 10:19:45 +00009813 if (FirstIt != FirstHashes.end() && SecondIt != SecondHashes.end() &&
9814 FirstIt->second == SecondIt->second) {
Richard Trieue7f7ed22017-02-22 01:11:25 +00009815 ++FirstIt;
9816 ++SecondIt;
9817 continue;
Richard Trieudc4cb022017-02-17 07:19:24 +00009818 }
Richard Smithcd45dbc2014-04-19 03:48:30 +00009819
Richard Trieue7f7ed22017-02-22 01:11:25 +00009820 FirstDecl = FirstIt == FirstHashes.end() ? nullptr : FirstIt->first;
9821 SecondDecl = SecondIt == SecondHashes.end() ? nullptr : SecondIt->first;
9822
9823 FirstDiffType = FirstDecl ? DifferenceSelector(FirstDecl) : EndOfClass;
9824 SecondDiffType =
9825 SecondDecl ? DifferenceSelector(SecondDecl) : EndOfClass;
9826
9827 break;
Richard Smithcd45dbc2014-04-19 03:48:30 +00009828 }
Richard Trieue7f7ed22017-02-22 01:11:25 +00009829
9830 if (FirstDiffType == Other || SecondDiffType == Other) {
9831 // Reaching this point means an unexpected Decl was encountered
9832 // or no difference was detected. This causes a generic error
9833 // message to be emitted.
9834 Diag(FirstRecord->getLocation(),
9835 diag::err_module_odr_violation_different_definitions)
9836 << FirstRecord << FirstModule.empty() << FirstModule;
9837
Richard Trieuca48d362017-06-21 01:43:13 +00009838 if (FirstDecl) {
9839 Diag(FirstDecl->getLocation(), diag::note_first_module_difference)
9840 << FirstRecord << FirstDecl->getSourceRange();
9841 }
9842
Richard Trieue7f7ed22017-02-22 01:11:25 +00009843 Diag(SecondRecord->getLocation(),
9844 diag::note_module_odr_violation_different_definitions)
9845 << SecondModule;
Richard Trieuca48d362017-06-21 01:43:13 +00009846
9847 if (SecondDecl) {
9848 Diag(SecondDecl->getLocation(), diag::note_second_module_difference)
9849 << SecondDecl->getSourceRange();
9850 }
9851
Richard Trieue7f7ed22017-02-22 01:11:25 +00009852 Diagnosed = true;
9853 break;
9854 }
9855
9856 if (FirstDiffType != SecondDiffType) {
9857 SourceLocation FirstLoc;
9858 SourceRange FirstRange;
9859 if (FirstDiffType == EndOfClass) {
9860 FirstLoc = FirstRecord->getBraceRange().getEnd();
9861 } else {
9862 FirstLoc = FirstIt->first->getLocation();
9863 FirstRange = FirstIt->first->getSourceRange();
9864 }
9865 Diag(FirstLoc, diag::err_module_odr_violation_mismatch_decl)
9866 << FirstRecord << FirstModule.empty() << FirstModule << FirstRange
9867 << FirstDiffType;
9868
9869 SourceLocation SecondLoc;
9870 SourceRange SecondRange;
9871 if (SecondDiffType == EndOfClass) {
9872 SecondLoc = SecondRecord->getBraceRange().getEnd();
9873 } else {
9874 SecondLoc = SecondDecl->getLocation();
9875 SecondRange = SecondDecl->getSourceRange();
9876 }
9877 Diag(SecondLoc, diag::note_module_odr_violation_mismatch_decl)
9878 << SecondModule << SecondRange << SecondDiffType;
9879 Diagnosed = true;
9880 break;
9881 }
9882
Richard Trieu639d7b62017-02-22 22:22:42 +00009883 assert(FirstDiffType == SecondDiffType);
9884
9885 // Used with err_module_odr_violation_mismatch_decl_diff and
9886 // note_module_odr_violation_mismatch_decl_diff
9887 enum ODRDeclDifference{
9888 StaticAssertCondition,
9889 StaticAssertMessage,
9890 StaticAssertOnlyMessage,
Richard Trieud0786092017-02-23 00:23:01 +00009891 FieldName,
Richard Trieu8459ddf2017-02-24 02:59:12 +00009892 FieldTypeName,
Richard Trieu93772fc2017-02-24 20:59:28 +00009893 FieldSingleBitField,
Richard Trieu8d543e22017-02-24 23:35:37 +00009894 FieldDifferentWidthBitField,
9895 FieldSingleMutable,
9896 FieldSingleInitializer,
9897 FieldDifferentInitializers,
Richard Trieu48143742017-02-28 21:24:38 +00009898 MethodName,
Richard Trieu583e2c12017-03-04 00:08:58 +00009899 MethodDeleted,
9900 MethodVirtual,
9901 MethodStatic,
9902 MethodVolatile,
9903 MethodConst,
9904 MethodInline,
Richard Trieu02552272017-05-02 23:58:52 +00009905 MethodNumberParameters,
9906 MethodParameterType,
9907 MethodParameterName,
Richard Trieu6e13ff32017-06-16 02:44:29 +00009908 MethodParameterSingleDefaultArgument,
9909 MethodParameterDifferentDefaultArgument,
Richard Trieu11d566a2017-06-12 21:58:22 +00009910 TypedefName,
9911 TypedefType,
Richard Trieu6e13ff32017-06-16 02:44:29 +00009912 VarName,
9913 VarType,
9914 VarSingleInitializer,
9915 VarDifferentInitializer,
9916 VarConstexpr,
Richard Trieuac6a1b62017-07-08 02:04:42 +00009917 FriendTypeFunction,
9918 FriendType,
9919 FriendFunction,
Richard Trieu639d7b62017-02-22 22:22:42 +00009920 };
9921
9922 // These lambdas have the common portions of the ODR diagnostics. This
9923 // has the same return as Diag(), so addition parameters can be passed
9924 // in with operator<<
9925 auto ODRDiagError = [FirstRecord, &FirstModule, this](
9926 SourceLocation Loc, SourceRange Range, ODRDeclDifference DiffType) {
9927 return Diag(Loc, diag::err_module_odr_violation_mismatch_decl_diff)
9928 << FirstRecord << FirstModule.empty() << FirstModule << Range
9929 << DiffType;
9930 };
9931 auto ODRDiagNote = [&SecondModule, this](
9932 SourceLocation Loc, SourceRange Range, ODRDeclDifference DiffType) {
9933 return Diag(Loc, diag::note_module_odr_violation_mismatch_decl_diff)
9934 << SecondModule << Range << DiffType;
9935 };
9936
Richard Trieu639d7b62017-02-22 22:22:42 +00009937 switch (FirstDiffType) {
9938 case Other:
9939 case EndOfClass:
9940 case PublicSpecifer:
9941 case PrivateSpecifer:
9942 case ProtectedSpecifer:
9943 llvm_unreachable("Invalid diff type");
9944
9945 case StaticAssert: {
9946 StaticAssertDecl *FirstSA = cast<StaticAssertDecl>(FirstDecl);
9947 StaticAssertDecl *SecondSA = cast<StaticAssertDecl>(SecondDecl);
9948
9949 Expr *FirstExpr = FirstSA->getAssertExpr();
9950 Expr *SecondExpr = SecondSA->getAssertExpr();
9951 unsigned FirstODRHash = ComputeODRHash(FirstExpr);
9952 unsigned SecondODRHash = ComputeODRHash(SecondExpr);
9953 if (FirstODRHash != SecondODRHash) {
9954 ODRDiagError(FirstExpr->getLocStart(), FirstExpr->getSourceRange(),
9955 StaticAssertCondition);
9956 ODRDiagNote(SecondExpr->getLocStart(),
9957 SecondExpr->getSourceRange(), StaticAssertCondition);
9958 Diagnosed = true;
9959 break;
9960 }
9961
9962 StringLiteral *FirstStr = FirstSA->getMessage();
9963 StringLiteral *SecondStr = SecondSA->getMessage();
9964 assert((FirstStr || SecondStr) && "Both messages cannot be empty");
9965 if ((FirstStr && !SecondStr) || (!FirstStr && SecondStr)) {
9966 SourceLocation FirstLoc, SecondLoc;
9967 SourceRange FirstRange, SecondRange;
9968 if (FirstStr) {
9969 FirstLoc = FirstStr->getLocStart();
9970 FirstRange = FirstStr->getSourceRange();
9971 } else {
9972 FirstLoc = FirstSA->getLocStart();
9973 FirstRange = FirstSA->getSourceRange();
9974 }
9975 if (SecondStr) {
9976 SecondLoc = SecondStr->getLocStart();
9977 SecondRange = SecondStr->getSourceRange();
9978 } else {
9979 SecondLoc = SecondSA->getLocStart();
9980 SecondRange = SecondSA->getSourceRange();
9981 }
9982 ODRDiagError(FirstLoc, FirstRange, StaticAssertOnlyMessage)
9983 << (FirstStr == nullptr);
9984 ODRDiagNote(SecondLoc, SecondRange, StaticAssertOnlyMessage)
9985 << (SecondStr == nullptr);
9986 Diagnosed = true;
9987 break;
9988 }
9989
9990 if (FirstStr && SecondStr &&
9991 FirstStr->getString() != SecondStr->getString()) {
9992 ODRDiagError(FirstStr->getLocStart(), FirstStr->getSourceRange(),
9993 StaticAssertMessage);
9994 ODRDiagNote(SecondStr->getLocStart(), SecondStr->getSourceRange(),
9995 StaticAssertMessage);
9996 Diagnosed = true;
9997 break;
9998 }
9999 break;
10000 }
Richard Trieud0786092017-02-23 00:23:01 +000010001 case Field: {
10002 FieldDecl *FirstField = cast<FieldDecl>(FirstDecl);
10003 FieldDecl *SecondField = cast<FieldDecl>(SecondDecl);
10004 IdentifierInfo *FirstII = FirstField->getIdentifier();
10005 IdentifierInfo *SecondII = SecondField->getIdentifier();
10006 if (FirstII->getName() != SecondII->getName()) {
10007 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10008 FieldName)
10009 << FirstII;
10010 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10011 FieldName)
10012 << SecondII;
10013
10014 Diagnosed = true;
10015 break;
10016 }
Richard Trieu8459ddf2017-02-24 02:59:12 +000010017
Richard Smithdbafb6c2017-06-29 23:23:46 +000010018 assert(getContext().hasSameType(FirstField->getType(),
10019 SecondField->getType()));
Richard Trieu8459ddf2017-02-24 02:59:12 +000010020
10021 QualType FirstType = FirstField->getType();
10022 QualType SecondType = SecondField->getType();
Richard Trieuce81b192017-05-17 03:23:35 +000010023 if (ComputeQualTypeODRHash(FirstType) !=
10024 ComputeQualTypeODRHash(SecondType)) {
Richard Trieu8459ddf2017-02-24 02:59:12 +000010025 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10026 FieldTypeName)
10027 << FirstII << FirstType;
10028 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10029 FieldTypeName)
10030 << SecondII << SecondType;
10031
10032 Diagnosed = true;
10033 break;
10034 }
10035
Richard Trieu93772fc2017-02-24 20:59:28 +000010036 const bool IsFirstBitField = FirstField->isBitField();
10037 const bool IsSecondBitField = SecondField->isBitField();
10038 if (IsFirstBitField != IsSecondBitField) {
10039 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10040 FieldSingleBitField)
10041 << FirstII << IsFirstBitField;
10042 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10043 FieldSingleBitField)
10044 << SecondII << IsSecondBitField;
10045 Diagnosed = true;
10046 break;
10047 }
10048
10049 if (IsFirstBitField && IsSecondBitField) {
10050 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10051 FieldDifferentWidthBitField)
10052 << FirstII << FirstField->getBitWidth()->getSourceRange();
10053 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10054 FieldDifferentWidthBitField)
10055 << SecondII << SecondField->getBitWidth()->getSourceRange();
10056 Diagnosed = true;
10057 break;
10058 }
10059
Richard Trieu8d543e22017-02-24 23:35:37 +000010060 const bool IsFirstMutable = FirstField->isMutable();
10061 const bool IsSecondMutable = SecondField->isMutable();
10062 if (IsFirstMutable != IsSecondMutable) {
10063 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10064 FieldSingleMutable)
10065 << FirstII << IsFirstMutable;
10066 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10067 FieldSingleMutable)
10068 << SecondII << IsSecondMutable;
10069 Diagnosed = true;
10070 break;
10071 }
10072
10073 const Expr *FirstInitializer = FirstField->getInClassInitializer();
10074 const Expr *SecondInitializer = SecondField->getInClassInitializer();
10075 if ((!FirstInitializer && SecondInitializer) ||
10076 (FirstInitializer && !SecondInitializer)) {
10077 ODRDiagError(FirstField->getLocation(), FirstField->getSourceRange(),
10078 FieldSingleInitializer)
10079 << FirstII << (FirstInitializer != nullptr);
10080 ODRDiagNote(SecondField->getLocation(), SecondField->getSourceRange(),
10081 FieldSingleInitializer)
10082 << SecondII << (SecondInitializer != nullptr);
10083 Diagnosed = true;
10084 break;
10085 }
10086
10087 if (FirstInitializer && SecondInitializer) {
10088 unsigned FirstInitHash = ComputeODRHash(FirstInitializer);
10089 unsigned SecondInitHash = ComputeODRHash(SecondInitializer);
10090 if (FirstInitHash != SecondInitHash) {
10091 ODRDiagError(FirstField->getLocation(),
10092 FirstField->getSourceRange(),
10093 FieldDifferentInitializers)
10094 << FirstII << FirstInitializer->getSourceRange();
10095 ODRDiagNote(SecondField->getLocation(),
10096 SecondField->getSourceRange(),
10097 FieldDifferentInitializers)
10098 << SecondII << SecondInitializer->getSourceRange();
10099 Diagnosed = true;
10100 break;
10101 }
10102 }
10103
Richard Trieud0786092017-02-23 00:23:01 +000010104 break;
10105 }
Richard Trieu48143742017-02-28 21:24:38 +000010106 case CXXMethod: {
Richard Trieu1c71d512017-07-15 02:55:13 +000010107 enum {
10108 DiagMethod,
10109 DiagConstructor,
10110 DiagDestructor,
10111 } FirstMethodType,
10112 SecondMethodType;
10113 auto GetMethodTypeForDiagnostics = [](const CXXMethodDecl* D) {
10114 if (isa<CXXConstructorDecl>(D)) return DiagConstructor;
10115 if (isa<CXXDestructorDecl>(D)) return DiagDestructor;
10116 return DiagMethod;
10117 };
Richard Trieu48143742017-02-28 21:24:38 +000010118 const CXXMethodDecl *FirstMethod = cast<CXXMethodDecl>(FirstDecl);
10119 const CXXMethodDecl *SecondMethod = cast<CXXMethodDecl>(SecondDecl);
Richard Trieu1c71d512017-07-15 02:55:13 +000010120 FirstMethodType = GetMethodTypeForDiagnostics(FirstMethod);
10121 SecondMethodType = GetMethodTypeForDiagnostics(SecondMethod);
Richard Trieu583e2c12017-03-04 00:08:58 +000010122 auto FirstName = FirstMethod->getDeclName();
10123 auto SecondName = SecondMethod->getDeclName();
Richard Trieu1c71d512017-07-15 02:55:13 +000010124 if (FirstMethodType != SecondMethodType || FirstName != SecondName) {
Richard Trieu48143742017-02-28 21:24:38 +000010125 ODRDiagError(FirstMethod->getLocation(),
10126 FirstMethod->getSourceRange(), MethodName)
Richard Trieu1c71d512017-07-15 02:55:13 +000010127 << FirstMethodType << FirstName;
Richard Trieu48143742017-02-28 21:24:38 +000010128 ODRDiagNote(SecondMethod->getLocation(),
10129 SecondMethod->getSourceRange(), MethodName)
Richard Trieu1c71d512017-07-15 02:55:13 +000010130 << SecondMethodType << SecondName;
Richard Trieu48143742017-02-28 21:24:38 +000010131
10132 Diagnosed = true;
10133 break;
10134 }
10135
Richard Trieu583e2c12017-03-04 00:08:58 +000010136 const bool FirstDeleted = FirstMethod->isDeleted();
10137 const bool SecondDeleted = SecondMethod->isDeleted();
10138 if (FirstDeleted != SecondDeleted) {
10139 ODRDiagError(FirstMethod->getLocation(),
10140 FirstMethod->getSourceRange(), MethodDeleted)
Richard Trieu1c71d512017-07-15 02:55:13 +000010141 << FirstMethodType << FirstName << FirstDeleted;
Richard Trieu583e2c12017-03-04 00:08:58 +000010142
10143 ODRDiagNote(SecondMethod->getLocation(),
10144 SecondMethod->getSourceRange(), MethodDeleted)
Richard Trieu1c71d512017-07-15 02:55:13 +000010145 << SecondMethodType << SecondName << SecondDeleted;
Richard Trieu583e2c12017-03-04 00:08:58 +000010146 Diagnosed = true;
10147 break;
10148 }
10149
10150 const bool FirstVirtual = FirstMethod->isVirtualAsWritten();
10151 const bool SecondVirtual = SecondMethod->isVirtualAsWritten();
10152 const bool FirstPure = FirstMethod->isPure();
10153 const bool SecondPure = SecondMethod->isPure();
10154 if ((FirstVirtual || SecondVirtual) &&
10155 (FirstVirtual != SecondVirtual || FirstPure != SecondPure)) {
10156 ODRDiagError(FirstMethod->getLocation(),
10157 FirstMethod->getSourceRange(), MethodVirtual)
Richard Trieu1c71d512017-07-15 02:55:13 +000010158 << FirstMethodType << FirstName << FirstPure << FirstVirtual;
Richard Trieu583e2c12017-03-04 00:08:58 +000010159 ODRDiagNote(SecondMethod->getLocation(),
10160 SecondMethod->getSourceRange(), MethodVirtual)
Richard Trieu1c71d512017-07-15 02:55:13 +000010161 << SecondMethodType << SecondName << SecondPure << SecondVirtual;
Richard Trieu583e2c12017-03-04 00:08:58 +000010162 Diagnosed = true;
10163 break;
10164 }
10165
10166 // CXXMethodDecl::isStatic uses the canonical Decl. With Decl merging,
10167 // FirstDecl is the canonical Decl of SecondDecl, so the storage
10168 // class needs to be checked instead.
10169 const auto FirstStorage = FirstMethod->getStorageClass();
10170 const auto SecondStorage = SecondMethod->getStorageClass();
10171 const bool FirstStatic = FirstStorage == SC_Static;
10172 const bool SecondStatic = SecondStorage == SC_Static;
10173 if (FirstStatic != SecondStatic) {
10174 ODRDiagError(FirstMethod->getLocation(),
10175 FirstMethod->getSourceRange(), MethodStatic)
Richard Trieu1c71d512017-07-15 02:55:13 +000010176 << FirstMethodType << FirstName << FirstStatic;
Richard Trieu583e2c12017-03-04 00:08:58 +000010177 ODRDiagNote(SecondMethod->getLocation(),
10178 SecondMethod->getSourceRange(), MethodStatic)
Richard Trieu1c71d512017-07-15 02:55:13 +000010179 << SecondMethodType << SecondName << SecondStatic;
Richard Trieu583e2c12017-03-04 00:08:58 +000010180 Diagnosed = true;
10181 break;
10182 }
10183
10184 const bool FirstVolatile = FirstMethod->isVolatile();
10185 const bool SecondVolatile = SecondMethod->isVolatile();
10186 if (FirstVolatile != SecondVolatile) {
10187 ODRDiagError(FirstMethod->getLocation(),
10188 FirstMethod->getSourceRange(), MethodVolatile)
Richard Trieu1c71d512017-07-15 02:55:13 +000010189 << FirstMethodType << FirstName << FirstVolatile;
Richard Trieu583e2c12017-03-04 00:08:58 +000010190 ODRDiagNote(SecondMethod->getLocation(),
10191 SecondMethod->getSourceRange(), MethodVolatile)
Richard Trieu1c71d512017-07-15 02:55:13 +000010192 << SecondMethodType << SecondName << SecondVolatile;
Richard Trieu583e2c12017-03-04 00:08:58 +000010193 Diagnosed = true;
10194 break;
10195 }
10196
10197 const bool FirstConst = FirstMethod->isConst();
10198 const bool SecondConst = SecondMethod->isConst();
10199 if (FirstConst != SecondConst) {
10200 ODRDiagError(FirstMethod->getLocation(),
10201 FirstMethod->getSourceRange(), MethodConst)
Richard Trieu1c71d512017-07-15 02:55:13 +000010202 << FirstMethodType << FirstName << FirstConst;
Richard Trieu583e2c12017-03-04 00:08:58 +000010203 ODRDiagNote(SecondMethod->getLocation(),
10204 SecondMethod->getSourceRange(), MethodConst)
Richard Trieu1c71d512017-07-15 02:55:13 +000010205 << SecondMethodType << SecondName << SecondConst;
Richard Trieu583e2c12017-03-04 00:08:58 +000010206 Diagnosed = true;
10207 break;
10208 }
10209
10210 const bool FirstInline = FirstMethod->isInlineSpecified();
10211 const bool SecondInline = SecondMethod->isInlineSpecified();
10212 if (FirstInline != SecondInline) {
10213 ODRDiagError(FirstMethod->getLocation(),
10214 FirstMethod->getSourceRange(), MethodInline)
Richard Trieu1c71d512017-07-15 02:55:13 +000010215 << FirstMethodType << FirstName << FirstInline;
Richard Trieu583e2c12017-03-04 00:08:58 +000010216 ODRDiagNote(SecondMethod->getLocation(),
10217 SecondMethod->getSourceRange(), MethodInline)
Richard Trieu1c71d512017-07-15 02:55:13 +000010218 << SecondMethodType << SecondName << SecondInline;
Richard Trieu583e2c12017-03-04 00:08:58 +000010219 Diagnosed = true;
10220 break;
10221 }
10222
Richard Trieu02552272017-05-02 23:58:52 +000010223 const unsigned FirstNumParameters = FirstMethod->param_size();
10224 const unsigned SecondNumParameters = SecondMethod->param_size();
10225 if (FirstNumParameters != SecondNumParameters) {
10226 ODRDiagError(FirstMethod->getLocation(),
10227 FirstMethod->getSourceRange(), MethodNumberParameters)
Richard Trieu1c71d512017-07-15 02:55:13 +000010228 << FirstMethodType << FirstName << FirstNumParameters;
Richard Trieu02552272017-05-02 23:58:52 +000010229 ODRDiagNote(SecondMethod->getLocation(),
10230 SecondMethod->getSourceRange(), MethodNumberParameters)
Richard Trieu1c71d512017-07-15 02:55:13 +000010231 << SecondMethodType << SecondName << SecondNumParameters;
Richard Trieu02552272017-05-02 23:58:52 +000010232 Diagnosed = true;
10233 break;
10234 }
10235
10236 // Need this status boolean to know when break out of the switch.
10237 bool ParameterMismatch = false;
10238 for (unsigned I = 0; I < FirstNumParameters; ++I) {
10239 const ParmVarDecl *FirstParam = FirstMethod->getParamDecl(I);
10240 const ParmVarDecl *SecondParam = SecondMethod->getParamDecl(I);
10241
10242 QualType FirstParamType = FirstParam->getType();
10243 QualType SecondParamType = SecondParam->getType();
10244 if (FirstParamType != SecondParamType &&
10245 ComputeQualTypeODRHash(FirstParamType) !=
10246 ComputeQualTypeODRHash(SecondParamType)) {
10247 if (const DecayedType *ParamDecayedType =
10248 FirstParamType->getAs<DecayedType>()) {
10249 ODRDiagError(FirstMethod->getLocation(),
10250 FirstMethod->getSourceRange(), MethodParameterType)
Richard Trieu1c71d512017-07-15 02:55:13 +000010251 << FirstMethodType << FirstName << (I + 1) << FirstParamType
10252 << true << ParamDecayedType->getOriginalType();
Richard Trieu02552272017-05-02 23:58:52 +000010253 } else {
10254 ODRDiagError(FirstMethod->getLocation(),
10255 FirstMethod->getSourceRange(), MethodParameterType)
Richard Trieu1c71d512017-07-15 02:55:13 +000010256 << FirstMethodType << FirstName << (I + 1) << FirstParamType
10257 << false;
Richard Trieu02552272017-05-02 23:58:52 +000010258 }
10259
10260 if (const DecayedType *ParamDecayedType =
10261 SecondParamType->getAs<DecayedType>()) {
10262 ODRDiagNote(SecondMethod->getLocation(),
10263 SecondMethod->getSourceRange(), MethodParameterType)
Richard Trieu1c71d512017-07-15 02:55:13 +000010264 << SecondMethodType << SecondName << (I + 1)
10265 << SecondParamType << true
Richard Trieu02552272017-05-02 23:58:52 +000010266 << ParamDecayedType->getOriginalType();
10267 } else {
10268 ODRDiagNote(SecondMethod->getLocation(),
10269 SecondMethod->getSourceRange(), MethodParameterType)
Richard Trieu1c71d512017-07-15 02:55:13 +000010270 << SecondMethodType << SecondName << (I + 1)
10271 << SecondParamType << false;
Richard Trieu02552272017-05-02 23:58:52 +000010272 }
10273 ParameterMismatch = true;
10274 break;
10275 }
10276
10277 DeclarationName FirstParamName = FirstParam->getDeclName();
10278 DeclarationName SecondParamName = SecondParam->getDeclName();
10279 if (FirstParamName != SecondParamName) {
10280 ODRDiagError(FirstMethod->getLocation(),
10281 FirstMethod->getSourceRange(), MethodParameterName)
Richard Trieu1c71d512017-07-15 02:55:13 +000010282 << FirstMethodType << FirstName << (I + 1) << FirstParamName;
Richard Trieu02552272017-05-02 23:58:52 +000010283 ODRDiagNote(SecondMethod->getLocation(),
10284 SecondMethod->getSourceRange(), MethodParameterName)
Richard Trieu1c71d512017-07-15 02:55:13 +000010285 << SecondMethodType << SecondName << (I + 1) << SecondParamName;
Richard Trieu02552272017-05-02 23:58:52 +000010286 ParameterMismatch = true;
10287 break;
10288 }
Richard Trieu6e13ff32017-06-16 02:44:29 +000010289
10290 const Expr *FirstInit = FirstParam->getInit();
10291 const Expr *SecondInit = SecondParam->getInit();
10292 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
10293 ODRDiagError(FirstMethod->getLocation(),
10294 FirstMethod->getSourceRange(),
10295 MethodParameterSingleDefaultArgument)
Richard Trieu1c71d512017-07-15 02:55:13 +000010296 << FirstMethodType << FirstName << (I + 1)
10297 << (FirstInit == nullptr)
Richard Trieu6e13ff32017-06-16 02:44:29 +000010298 << (FirstInit ? FirstInit->getSourceRange() : SourceRange());
10299 ODRDiagNote(SecondMethod->getLocation(),
10300 SecondMethod->getSourceRange(),
10301 MethodParameterSingleDefaultArgument)
Richard Trieu1c71d512017-07-15 02:55:13 +000010302 << SecondMethodType << SecondName << (I + 1)
10303 << (SecondInit == nullptr)
Richard Trieu6e13ff32017-06-16 02:44:29 +000010304 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
10305 ParameterMismatch = true;
10306 break;
10307 }
10308
10309 if (FirstInit && SecondInit &&
10310 ComputeODRHash(FirstInit) != ComputeODRHash(SecondInit)) {
10311 ODRDiagError(FirstMethod->getLocation(),
10312 FirstMethod->getSourceRange(),
10313 MethodParameterDifferentDefaultArgument)
Richard Trieu1c71d512017-07-15 02:55:13 +000010314 << FirstMethodType << FirstName << (I + 1)
10315 << FirstInit->getSourceRange();
Richard Trieu6e13ff32017-06-16 02:44:29 +000010316 ODRDiagNote(SecondMethod->getLocation(),
10317 SecondMethod->getSourceRange(),
10318 MethodParameterDifferentDefaultArgument)
Richard Trieu1c71d512017-07-15 02:55:13 +000010319 << SecondMethodType << SecondName << (I + 1)
10320 << SecondInit->getSourceRange();
Richard Trieu6e13ff32017-06-16 02:44:29 +000010321 ParameterMismatch = true;
10322 break;
10323
10324 }
Richard Trieu02552272017-05-02 23:58:52 +000010325 }
10326
10327 if (ParameterMismatch) {
10328 Diagnosed = true;
10329 break;
10330 }
10331
Richard Trieu48143742017-02-28 21:24:38 +000010332 break;
10333 }
Richard Trieu11d566a2017-06-12 21:58:22 +000010334 case TypeAlias:
10335 case TypeDef: {
10336 TypedefNameDecl *FirstTD = cast<TypedefNameDecl>(FirstDecl);
10337 TypedefNameDecl *SecondTD = cast<TypedefNameDecl>(SecondDecl);
10338 auto FirstName = FirstTD->getDeclName();
10339 auto SecondName = SecondTD->getDeclName();
10340 if (FirstName != SecondName) {
10341 ODRDiagError(FirstTD->getLocation(), FirstTD->getSourceRange(),
10342 TypedefName)
10343 << (FirstDiffType == TypeAlias) << FirstName;
10344 ODRDiagNote(SecondTD->getLocation(), SecondTD->getSourceRange(),
10345 TypedefName)
10346 << (FirstDiffType == TypeAlias) << SecondName;
10347 Diagnosed = true;
10348 break;
10349 }
10350
10351 QualType FirstType = FirstTD->getUnderlyingType();
10352 QualType SecondType = SecondTD->getUnderlyingType();
10353 if (ComputeQualTypeODRHash(FirstType) !=
10354 ComputeQualTypeODRHash(SecondType)) {
10355 ODRDiagError(FirstTD->getLocation(), FirstTD->getSourceRange(),
10356 TypedefType)
10357 << (FirstDiffType == TypeAlias) << FirstName << FirstType;
10358 ODRDiagNote(SecondTD->getLocation(), SecondTD->getSourceRange(),
10359 TypedefType)
10360 << (FirstDiffType == TypeAlias) << SecondName << SecondType;
10361 Diagnosed = true;
10362 break;
10363 }
10364 break;
10365 }
Richard Trieu6e13ff32017-06-16 02:44:29 +000010366 case Var: {
10367 VarDecl *FirstVD = cast<VarDecl>(FirstDecl);
10368 VarDecl *SecondVD = cast<VarDecl>(SecondDecl);
10369 auto FirstName = FirstVD->getDeclName();
10370 auto SecondName = SecondVD->getDeclName();
10371 if (FirstName != SecondName) {
10372 ODRDiagError(FirstVD->getLocation(), FirstVD->getSourceRange(),
10373 VarName)
10374 << FirstName;
10375 ODRDiagNote(SecondVD->getLocation(), SecondVD->getSourceRange(),
10376 VarName)
10377 << SecondName;
10378 Diagnosed = true;
10379 break;
10380 }
10381
10382 QualType FirstType = FirstVD->getType();
10383 QualType SecondType = SecondVD->getType();
10384 if (ComputeQualTypeODRHash(FirstType) !=
10385 ComputeQualTypeODRHash(SecondType)) {
10386 ODRDiagError(FirstVD->getLocation(), FirstVD->getSourceRange(),
10387 VarType)
10388 << FirstName << FirstType;
10389 ODRDiagNote(SecondVD->getLocation(), SecondVD->getSourceRange(),
10390 VarType)
10391 << SecondName << SecondType;
10392 Diagnosed = true;
10393 break;
10394 }
10395
10396 const Expr *FirstInit = FirstVD->getInit();
10397 const Expr *SecondInit = SecondVD->getInit();
10398 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
10399 ODRDiagError(FirstVD->getLocation(), FirstVD->getSourceRange(),
10400 VarSingleInitializer)
10401 << FirstName << (FirstInit == nullptr)
10402 << (FirstInit ? FirstInit->getSourceRange(): SourceRange());
10403 ODRDiagNote(SecondVD->getLocation(), SecondVD->getSourceRange(),
10404 VarSingleInitializer)
10405 << SecondName << (SecondInit == nullptr)
10406 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
10407 Diagnosed = true;
10408 break;
10409 }
10410
10411 if (FirstInit && SecondInit &&
10412 ComputeODRHash(FirstInit) != ComputeODRHash(SecondInit)) {
10413 ODRDiagError(FirstVD->getLocation(), FirstVD->getSourceRange(),
10414 VarDifferentInitializer)
10415 << FirstName << FirstInit->getSourceRange();
10416 ODRDiagNote(SecondVD->getLocation(), SecondVD->getSourceRange(),
10417 VarDifferentInitializer)
10418 << SecondName << SecondInit->getSourceRange();
10419 Diagnosed = true;
10420 break;
10421 }
10422
10423 const bool FirstIsConstexpr = FirstVD->isConstexpr();
10424 const bool SecondIsConstexpr = SecondVD->isConstexpr();
10425 if (FirstIsConstexpr != SecondIsConstexpr) {
10426 ODRDiagError(FirstVD->getLocation(), FirstVD->getSourceRange(),
10427 VarConstexpr)
10428 << FirstName << FirstIsConstexpr;
10429 ODRDiagNote(SecondVD->getLocation(), SecondVD->getSourceRange(),
10430 VarConstexpr)
10431 << SecondName << SecondIsConstexpr;
10432 Diagnosed = true;
10433 break;
10434 }
10435 break;
10436 }
Richard Trieuac6a1b62017-07-08 02:04:42 +000010437 case Friend: {
10438 FriendDecl *FirstFriend = cast<FriendDecl>(FirstDecl);
10439 FriendDecl *SecondFriend = cast<FriendDecl>(SecondDecl);
10440
10441 NamedDecl *FirstND = FirstFriend->getFriendDecl();
10442 NamedDecl *SecondND = SecondFriend->getFriendDecl();
10443
10444 TypeSourceInfo *FirstTSI = FirstFriend->getFriendType();
10445 TypeSourceInfo *SecondTSI = SecondFriend->getFriendType();
10446
10447 if (FirstND && SecondND) {
10448 ODRDiagError(FirstFriend->getFriendLoc(),
10449 FirstFriend->getSourceRange(), FriendFunction)
10450 << FirstND;
10451 ODRDiagNote(SecondFriend->getFriendLoc(),
10452 SecondFriend->getSourceRange(), FriendFunction)
10453 << SecondND;
10454
10455 Diagnosed = true;
10456 break;
10457 }
10458
10459 if (FirstTSI && SecondTSI) {
10460 QualType FirstFriendType = FirstTSI->getType();
10461 QualType SecondFriendType = SecondTSI->getType();
10462 assert(ComputeQualTypeODRHash(FirstFriendType) !=
10463 ComputeQualTypeODRHash(SecondFriendType));
10464 ODRDiagError(FirstFriend->getFriendLoc(),
10465 FirstFriend->getSourceRange(), FriendType)
10466 << FirstFriendType;
10467 ODRDiagNote(SecondFriend->getFriendLoc(),
10468 SecondFriend->getSourceRange(), FriendType)
10469 << SecondFriendType;
10470 Diagnosed = true;
10471 break;
10472 }
10473
10474 ODRDiagError(FirstFriend->getFriendLoc(), FirstFriend->getSourceRange(),
10475 FriendTypeFunction)
10476 << (FirstTSI == nullptr);
10477 ODRDiagNote(SecondFriend->getFriendLoc(),
10478 SecondFriend->getSourceRange(), FriendTypeFunction)
10479 << (SecondTSI == nullptr);
10480
10481 Diagnosed = true;
10482 break;
10483 }
Richard Trieu639d7b62017-02-22 22:22:42 +000010484 }
10485
Eugene Zelenkob8c9e2a2017-11-08 01:03:16 +000010486 if (Diagnosed)
Richard Trieue7f7ed22017-02-22 01:11:25 +000010487 continue;
10488
Richard Trieu708859a2017-06-08 00:56:21 +000010489 Diag(FirstDecl->getLocation(),
10490 diag::err_module_odr_violation_mismatch_decl_unknown)
10491 << FirstRecord << FirstModule.empty() << FirstModule << FirstDiffType
10492 << FirstDecl->getSourceRange();
10493 Diag(SecondDecl->getLocation(),
10494 diag::note_module_odr_violation_mismatch_decl_unknown)
10495 << SecondModule << FirstDiffType << SecondDecl->getSourceRange();
Richard Trieue7f7ed22017-02-22 01:11:25 +000010496 Diagnosed = true;
Richard Smithcd45dbc2014-04-19 03:48:30 +000010497 }
10498
10499 if (!Diagnosed) {
10500 // All definitions are updates to the same declaration. This happens if a
10501 // module instantiates the declaration of a class template specialization
10502 // and two or more other modules instantiate its definition.
10503 //
10504 // FIXME: Indicate which modules had instantiations of this definition.
10505 // FIXME: How can this even happen?
10506 Diag(Merge.first->getLocation(),
10507 diag::err_module_odr_violation_different_instantiations)
10508 << Merge.first;
10509 }
10510 }
Richard Trieue6caa262017-12-23 00:41:01 +000010511
10512 // Issue ODR failures diagnostics for functions.
10513 for (auto &Merge : FunctionOdrMergeFailures) {
10514 enum ODRFunctionDifference {
10515 ReturnType,
10516 ParameterName,
10517 ParameterType,
10518 ParameterSingleDefaultArgument,
10519 ParameterDifferentDefaultArgument,
10520 FunctionBody,
10521 };
10522
10523 FunctionDecl *FirstFunction = Merge.first;
10524 std::string FirstModule = getOwningModuleNameForDiagnostic(FirstFunction);
10525
10526 bool Diagnosed = false;
10527 for (auto &SecondFunction : Merge.second) {
10528
10529 if (FirstFunction == SecondFunction)
10530 continue;
10531
10532 std::string SecondModule =
10533 getOwningModuleNameForDiagnostic(SecondFunction);
10534
10535 auto ODRDiagError = [FirstFunction, &FirstModule,
10536 this](SourceLocation Loc, SourceRange Range,
10537 ODRFunctionDifference DiffType) {
10538 return Diag(Loc, diag::err_module_odr_violation_function)
10539 << FirstFunction << FirstModule.empty() << FirstModule << Range
10540 << DiffType;
10541 };
10542 auto ODRDiagNote = [&SecondModule, this](SourceLocation Loc,
10543 SourceRange Range,
10544 ODRFunctionDifference DiffType) {
10545 return Diag(Loc, diag::note_module_odr_violation_function)
10546 << SecondModule << Range << DiffType;
10547 };
10548
10549 if (ComputeQualTypeODRHash(FirstFunction->getReturnType()) !=
10550 ComputeQualTypeODRHash(SecondFunction->getReturnType())) {
10551 ODRDiagError(FirstFunction->getReturnTypeSourceRange().getBegin(),
10552 FirstFunction->getReturnTypeSourceRange(), ReturnType)
10553 << FirstFunction->getReturnType();
10554 ODRDiagNote(SecondFunction->getReturnTypeSourceRange().getBegin(),
10555 SecondFunction->getReturnTypeSourceRange(), ReturnType)
10556 << SecondFunction->getReturnType();
10557 Diagnosed = true;
10558 break;
10559 }
10560
10561 assert(FirstFunction->param_size() == SecondFunction->param_size() &&
10562 "Merged functions with different number of parameters");
10563
10564 auto ParamSize = FirstFunction->param_size();
10565 bool ParameterMismatch = false;
10566 for (unsigned I = 0; I < ParamSize; ++I) {
10567 auto *FirstParam = FirstFunction->getParamDecl(I);
10568 auto *SecondParam = SecondFunction->getParamDecl(I);
10569
10570 assert(getContext().hasSameType(FirstParam->getType(),
10571 SecondParam->getType()) &&
10572 "Merged function has different parameter types.");
10573
10574 if (FirstParam->getDeclName() != SecondParam->getDeclName()) {
10575 ODRDiagError(FirstParam->getLocation(), FirstParam->getSourceRange(),
10576 ParameterName)
10577 << I + 1 << FirstParam->getDeclName();
10578 ODRDiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(),
10579 ParameterName)
10580 << I + 1 << SecondParam->getDeclName();
10581 ParameterMismatch = true;
10582 break;
10583 };
10584
10585 QualType FirstParamType = FirstParam->getType();
10586 QualType SecondParamType = SecondParam->getType();
10587 if (FirstParamType != SecondParamType &&
10588 ComputeQualTypeODRHash(FirstParamType) !=
10589 ComputeQualTypeODRHash(SecondParamType)) {
10590 if (const DecayedType *ParamDecayedType =
10591 FirstParamType->getAs<DecayedType>()) {
10592 ODRDiagError(FirstParam->getLocation(),
10593 FirstParam->getSourceRange(), ParameterType)
10594 << (I + 1) << FirstParamType << true
10595 << ParamDecayedType->getOriginalType();
10596 } else {
10597 ODRDiagError(FirstParam->getLocation(),
10598 FirstParam->getSourceRange(), ParameterType)
10599 << (I + 1) << FirstParamType << false;
10600 }
10601
10602 if (const DecayedType *ParamDecayedType =
10603 SecondParamType->getAs<DecayedType>()) {
10604 ODRDiagNote(SecondParam->getLocation(),
10605 SecondParam->getSourceRange(), ParameterType)
10606 << (I + 1) << SecondParamType << true
10607 << ParamDecayedType->getOriginalType();
10608 } else {
10609 ODRDiagNote(SecondParam->getLocation(),
10610 SecondParam->getSourceRange(), ParameterType)
10611 << (I + 1) << SecondParamType << false;
10612 }
10613 ParameterMismatch = true;
10614 break;
10615 }
10616
10617 const Expr *FirstInit = FirstParam->getInit();
10618 const Expr *SecondInit = SecondParam->getInit();
10619 if ((FirstInit == nullptr) != (SecondInit == nullptr)) {
10620 ODRDiagError(FirstParam->getLocation(), FirstParam->getSourceRange(),
10621 ParameterSingleDefaultArgument)
10622 << (I + 1) << (FirstInit == nullptr)
10623 << (FirstInit ? FirstInit->getSourceRange() : SourceRange());
10624 ODRDiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(),
10625 ParameterSingleDefaultArgument)
10626 << (I + 1) << (SecondInit == nullptr)
10627 << (SecondInit ? SecondInit->getSourceRange() : SourceRange());
10628 ParameterMismatch = true;
10629 break;
10630 }
10631
10632 if (FirstInit && SecondInit &&
10633 ComputeODRHash(FirstInit) != ComputeODRHash(SecondInit)) {
10634 ODRDiagError(FirstParam->getLocation(), FirstParam->getSourceRange(),
10635 ParameterDifferentDefaultArgument)
10636 << (I + 1) << FirstInit->getSourceRange();
10637 ODRDiagNote(SecondParam->getLocation(), SecondParam->getSourceRange(),
10638 ParameterDifferentDefaultArgument)
10639 << (I + 1) << SecondInit->getSourceRange();
10640 ParameterMismatch = true;
10641 break;
10642 }
10643
10644 assert(ComputeSubDeclODRHash(FirstParam) ==
10645 ComputeSubDeclODRHash(SecondParam) &&
10646 "Undiagnosed parameter difference.");
10647 }
10648
10649 if (ParameterMismatch) {
10650 Diagnosed = true;
10651 break;
10652 }
10653
10654 // If no error has been generated before now, assume the problem is in
10655 // the body and generate a message.
10656 ODRDiagError(FirstFunction->getLocation(),
10657 FirstFunction->getSourceRange(), FunctionBody);
10658 ODRDiagNote(SecondFunction->getLocation(),
10659 SecondFunction->getSourceRange(), FunctionBody);
10660 Diagnosed = true;
10661 break;
10662 }
Evgeny Stupachenkobf25d672018-01-05 02:22:52 +000010663 (void)Diagnosed;
Richard Trieue6caa262017-12-23 00:41:01 +000010664 assert(Diagnosed && "Unable to emit ODR diagnostic.");
10665 }
Guy Benyei11169dd2012-12-18 14:30:41 +000010666}
10667
Richard Smithce18a182015-07-14 00:26:00 +000010668void ASTReader::StartedDeserializing() {
David L. Jonesc4808b9e2016-12-15 20:53:26 +000010669 if (++NumCurrentElementsDeserializing == 1 && ReadTimer.get())
Richard Smithce18a182015-07-14 00:26:00 +000010670 ReadTimer->startTimer();
10671}
10672
Guy Benyei11169dd2012-12-18 14:30:41 +000010673void ASTReader::FinishedDeserializing() {
10674 assert(NumCurrentElementsDeserializing &&
10675 "FinishedDeserializing not paired with StartedDeserializing");
10676 if (NumCurrentElementsDeserializing == 1) {
10677 // We decrease NumCurrentElementsDeserializing only after pending actions
10678 // are finished, to avoid recursively re-calling finishPendingActions().
10679 finishPendingActions();
10680 }
10681 --NumCurrentElementsDeserializing;
10682
Richard Smitha0ce9c42014-07-29 23:23:27 +000010683 if (NumCurrentElementsDeserializing == 0) {
Richard Smith9e2341d2015-03-23 03:25:59 +000010684 // Propagate exception specification updates along redeclaration chains.
Richard Smith7226f2a2015-03-23 19:54:56 +000010685 while (!PendingExceptionSpecUpdates.empty()) {
10686 auto Updates = std::move(PendingExceptionSpecUpdates);
10687 PendingExceptionSpecUpdates.clear();
10688 for (auto Update : Updates) {
Vassil Vassilev19765fb2016-07-22 21:08:24 +000010689 ProcessingUpdatesRAIIObj ProcessingUpdates(*this);
Richard Smith7226f2a2015-03-23 19:54:56 +000010690 auto *FPT = Update.second->getType()->castAs<FunctionProtoType>();
Richard Smith1d0f1992015-08-19 21:09:32 +000010691 auto ESI = FPT->getExtProtoInfo().ExceptionSpec;
Richard Smithdbafb6c2017-06-29 23:23:46 +000010692 if (auto *Listener = getContext().getASTMutationListener())
Richard Smithd88a7f12015-09-01 20:35:42 +000010693 Listener->ResolvedExceptionSpec(cast<FunctionDecl>(Update.second));
Richard Smith1d0f1992015-08-19 21:09:32 +000010694 for (auto *Redecl : Update.second->redecls())
Richard Smithdbafb6c2017-06-29 23:23:46 +000010695 getContext().adjustExceptionSpec(cast<FunctionDecl>(Redecl), ESI);
Richard Smith7226f2a2015-03-23 19:54:56 +000010696 }
Richard Smith9e2341d2015-03-23 03:25:59 +000010697 }
10698
Richard Smithce18a182015-07-14 00:26:00 +000010699 if (ReadTimer)
10700 ReadTimer->stopTimer();
10701
Richard Smith0f4e2c42015-08-06 04:23:48 +000010702 diagnoseOdrViolations();
10703
Richard Smith04d05b52014-03-23 00:27:18 +000010704 // We are not in recursive loading, so it's safe to pass the "interesting"
10705 // decls to the consumer.
Richard Smitha0ce9c42014-07-29 23:23:27 +000010706 if (Consumer)
10707 PassInterestingDeclsToConsumer();
Guy Benyei11169dd2012-12-18 14:30:41 +000010708 }
10709}
10710
Argyrios Kyrtzidise5edbf92013-04-26 21:33:35 +000010711void ASTReader::pushExternalDeclIntoScope(NamedDecl *D, DeclarationName Name) {
Richard Smith9e2341d2015-03-23 03:25:59 +000010712 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) {
10713 // Remove any fake results before adding any real ones.
10714 auto It = PendingFakeLookupResults.find(II);
10715 if (It != PendingFakeLookupResults.end()) {
Richard Smitha534a312015-07-21 23:54:07 +000010716 for (auto *ND : It->second)
Richard Smith9e2341d2015-03-23 03:25:59 +000010717 SemaObj->IdResolver.RemoveDecl(ND);
Ben Langmuireb8bd2d2015-04-10 22:25:42 +000010718 // FIXME: this works around module+PCH performance issue.
10719 // Rather than erase the result from the map, which is O(n), just clear
10720 // the vector of NamedDecls.
10721 It->second.clear();
Richard Smith9e2341d2015-03-23 03:25:59 +000010722 }
10723 }
Argyrios Kyrtzidise5edbf92013-04-26 21:33:35 +000010724
10725 if (SemaObj->IdResolver.tryAddTopLevelDecl(D, Name) && SemaObj->TUScope) {
10726 SemaObj->TUScope->AddDecl(D);
10727 } else if (SemaObj->TUScope) {
10728 // Adding the decl to IdResolver may have failed because it was already in
10729 // (even though it was not added in scope). If it is already in, make sure
10730 // it gets in the scope as well.
10731 if (std::find(SemaObj->IdResolver.begin(Name),
10732 SemaObj->IdResolver.end(), D) != SemaObj->IdResolver.end())
10733 SemaObj->TUScope->AddDecl(D);
10734 }
10735}
10736
Richard Smithdbafb6c2017-06-29 23:23:46 +000010737ASTReader::ASTReader(Preprocessor &PP, ASTContext *Context,
David Blaikie61137e12017-01-05 18:23:18 +000010738 const PCHContainerReader &PCHContainerRdr,
10739 ArrayRef<std::shared_ptr<ModuleFileExtension>> Extensions,
10740 StringRef isysroot, bool DisableValidation,
10741 bool AllowASTWithCompilerErrors,
10742 bool AllowConfigurationMismatch, bool ValidateSystemInputs,
10743 bool UseGlobalIndex,
10744 std::unique_ptr<llvm::Timer> ReadTimer)
10745 : Listener(DisableValidation
10746 ? cast<ASTReaderListener>(new SimpleASTReaderListener(PP))
10747 : cast<ASTReaderListener>(new PCHValidator(PP, *this))),
David Blaikie61137e12017-01-05 18:23:18 +000010748 SourceMgr(PP.getSourceManager()), FileMgr(PP.getFileManager()),
David Blaikie9d7c1ba2017-01-05 18:45:43 +000010749 PCHContainerRdr(PCHContainerRdr), Diags(PP.getDiagnostics()), PP(PP),
Richard Smithdbafb6c2017-06-29 23:23:46 +000010750 ContextObj(Context),
Boris Kolpackovd30446f2017-08-31 06:26:43 +000010751 ModuleMgr(PP.getFileManager(), PP.getPCMCache(), PCHContainerRdr,
10752 PP.getHeaderSearchInfo()),
Duncan P. N. Exon Smith030d7d62017-03-20 17:58:26 +000010753 PCMCache(PP.getPCMCache()), DummyIdResolver(PP),
10754 ReadTimer(std::move(ReadTimer)), isysroot(isysroot),
David Blaikie61137e12017-01-05 18:23:18 +000010755 DisableValidation(DisableValidation),
Nico Weber824285e2014-05-08 04:26:47 +000010756 AllowASTWithCompilerErrors(AllowASTWithCompilerErrors),
10757 AllowConfigurationMismatch(AllowConfigurationMismatch),
10758 ValidateSystemInputs(ValidateSystemInputs),
David Blaikie9d7c1ba2017-01-05 18:45:43 +000010759 UseGlobalIndex(UseGlobalIndex), CurrSwitchCaseStmts(&SwitchCaseStmts) {
Guy Benyei11169dd2012-12-18 14:30:41 +000010760 SourceMgr.setExternalSLocEntrySource(this);
Douglas Gregor6623e1f2015-11-03 18:33:07 +000010761
10762 for (const auto &Ext : Extensions) {
10763 auto BlockName = Ext->getExtensionMetadata().BlockName;
10764 auto Known = ModuleFileExtensions.find(BlockName);
10765 if (Known != ModuleFileExtensions.end()) {
10766 Diags.Report(diag::warn_duplicate_module_file_extension)
10767 << BlockName;
10768 continue;
10769 }
10770
10771 ModuleFileExtensions.insert({BlockName, Ext});
10772 }
Guy Benyei11169dd2012-12-18 14:30:41 +000010773}
10774
10775ASTReader::~ASTReader() {
Nico Weber824285e2014-05-08 04:26:47 +000010776 if (OwnsDeserializationListener)
10777 delete DeserializationListener;
Guy Benyei11169dd2012-12-18 14:30:41 +000010778}
Richard Smith10379092016-05-06 23:14:07 +000010779
10780IdentifierResolver &ASTReader::getIdResolver() {
10781 return SemaObj ? SemaObj->IdResolver : DummyIdResolver;
10782}
David L. Jonesbe1557a2016-12-21 00:17:49 +000010783
10784unsigned ASTRecordReader::readRecord(llvm::BitstreamCursor &Cursor,
10785 unsigned AbbrevID) {
10786 Idx = 0;
10787 Record.clear();
10788 return Cursor.readRecord(AbbrevID, Record);
10789}